Repository: afader/oqa Branch: master Commit: c59161c7bd0f Files: 1065 Total size: 249.1 MB Directory structure: gitextract_8frwjrok/ ├── README.md ├── oqa-core/ │ ├── README.md │ ├── build.sbt │ ├── models/ │ │ └── full.txt │ ├── questions.txt │ └── src/ │ └── main/ │ ├── resources/ │ │ ├── application.conf │ │ ├── edu/ │ │ │ └── knowitall/ │ │ │ ├── execution/ │ │ │ │ ├── stoplist.txt │ │ │ │ └── stopregex.txt │ │ │ ├── paraphrasing/ │ │ │ │ ├── rules/ │ │ │ │ │ └── rules.txt │ │ │ │ └── template/ │ │ │ │ └── templatesStops.txt │ │ │ ├── parsing/ │ │ │ │ └── cg/ │ │ │ │ ├── argFilters.txt │ │ │ │ ├── lexicon.txt │ │ │ │ ├── macros.txt │ │ │ │ └── relFilters.txt │ │ │ └── search/ │ │ │ └── qa/ │ │ │ ├── isa.txt │ │ │ └── tupleFeatures.txt │ │ ├── log4j.properties │ │ └── logback.xml │ └── scala/ │ └── edu/ │ └── knowitall/ │ ├── eval/ │ │ ├── Oracle.scala │ │ ├── OutputRecord.scala │ │ ├── SystemOutput.scala │ │ └── qa/ │ │ ├── QAOutputRecord.scala │ │ ├── QASystemOutput.scala │ │ └── QASystemRunner.scala │ ├── execution/ │ │ ├── AnswerFilter.scala │ │ ├── ConjunctiveQuery.scala │ │ ├── JoinPlanner.scala │ │ ├── QueryExecutor.scala │ │ ├── RelationalAlgebra.scala │ │ └── StopwordExecutor.scala │ ├── learning/ │ │ ├── CorrectnessModel.scala │ │ ├── FeatureFunction.scala │ │ ├── HiddenVariableModel.scala │ │ ├── InteractiveOracle.scala │ │ ├── LabeledDataOracle.scala │ │ ├── MemoryInteractiveOracle.scala │ │ ├── Perceptron.scala │ │ ├── QATrainer.scala │ │ ├── QueryTupleSimilarity.scala │ │ └── SparseVector.scala │ ├── lm/ │ │ └── LanguageModel.scala │ ├── model/ │ │ ├── Derivation.scala │ │ └── QaModel.scala │ ├── paraphrasing/ │ │ ├── Paraphrase.scala │ │ ├── ParaphraseDerivation.scala │ │ ├── Paraphraser.scala │ │ ├── rules/ │ │ │ ├── ParaphraseRule.scala │ │ │ └── ParaphraseRuleSet.scala │ │ └── template/ │ │ ├── LmParaphraseScorer.scala │ │ ├── ParaphraseScorer.scala │ │ ├── PmiLmParaphraseScorer.scala │ │ ├── PmiParaphraseScorer.scala │ │ ├── Template.scala │ │ ├── TemplateIndexer.scala │ │ ├── TemplateParaphraseGenerator.scala │ │ └── TemplateParaphraser.scala │ ├── parsing/ │ │ └── cg/ │ │ ├── CKY.scala │ │ ├── Categories.scala │ │ ├── CategoryPattern.scala │ │ ├── CgParser.scala │ │ ├── Combinators.scala │ │ ├── LexicalRule.scala │ │ ├── LexiconPreprocessor.scala │ │ ├── ParserFieldFilter.scala │ │ ├── PatternExtractor.scala │ │ └── SentencePattern.scala │ ├── relsyn/ │ │ ├── IsaRelSynClient.scala │ │ ├── ListRelSynClient.scala │ │ ├── RelSynClient.scala │ │ ├── RelSynRule.scala │ │ └── SolrRelSynClient.scala │ ├── search/ │ │ ├── Beam.scala │ │ ├── BeamSearch.scala │ │ ├── BestFirstSearch.scala │ │ ├── SearchAlgorithm.scala │ │ ├── SearchProblem.scala │ │ ├── Transition.scala │ │ └── qa/ │ │ ├── AbstractArgTransition.scala │ │ ├── AbstractedArgState.scala │ │ ├── AnswerState.scala │ │ ├── CgParseTransition.scala │ │ ├── DropQueryStopsTransition.scala │ │ ├── ExecutionTransition.scala │ │ ├── ParaphraseRuleTransition.scala │ │ ├── ProjectionTransition.scala │ │ ├── QaAction.scala │ │ ├── QaBeamSearch.scala │ │ ├── QaCostModel.scala │ │ ├── QaFeatures.scala │ │ ├── QaLayeredSearch.scala │ │ ├── QaSearchProblem.scala │ │ ├── QaState.scala │ │ ├── QaStateComparator.scala │ │ ├── QaStep.scala │ │ ├── QaTransitionModel.scala │ │ ├── QueryState.scala │ │ ├── QuestionState.scala │ │ ├── RelSynTransition.scala │ │ ├── TemplateTransition.scala │ │ ├── TupleFeatureTemplate.scala │ │ └── TupleState.scala │ ├── triplestore/ │ │ ├── IsaClient.scala │ │ └── TriplestoreClient.scala │ └── util/ │ ├── AlignedWordProcessor.scala │ ├── Counter.scala │ ├── DummyChunker.scala │ ├── HadoopUtils.scala │ ├── MathUtils.scala │ ├── NlpTools.scala │ ├── NlpUtils.scala │ ├── PPDBParser.scala │ ├── ResourceUtils.scala │ ├── StringUtils.scala │ ├── TimingUtils.scala │ ├── TuplePrinter.scala │ └── WikiAnswersSampler.scala ├── oqa-data/ │ ├── README.md │ ├── predictions/ │ │ ├── README.md │ │ ├── oqa-trec.txt │ │ ├── oqa-webquestions.txt │ │ ├── oqa-wikianswers.txt │ │ ├── paralex-trec.txt │ │ ├── paralex-webquestions.txt │ │ ├── paralex-wikianswers.txt │ │ ├── sempre-trec.txt │ │ ├── sempre-webquestions.txt │ │ └── sempre-wikianswers.txt │ └── src/ │ └── main/ │ └── scripts/ │ └── download-oqa-data.sh ├── oqa-lm/ │ ├── README.md │ └── src/ │ └── main/ │ └── scripts/ │ ├── build-lm.sh │ ├── install-kenlm.sh │ ├── server.py │ ├── start.sh │ └── stop.sh └── oqa-solr/ ├── README.md ├── paraphrase/ │ ├── README.txt │ ├── cloud-scripts/ │ │ ├── zkcli.bat │ │ └── zkcli.sh │ ├── contexts/ │ │ └── solr-jetty-context.xml │ ├── etc/ │ │ ├── create-solrtest.keystore.sh │ │ ├── jetty.xml │ │ ├── logging.properties │ │ ├── solrtest.keystore │ │ └── webdefault.xml │ ├── example-DIH/ │ │ ├── README.txt │ │ ├── hsqldb/ │ │ │ ├── ex.backup │ │ │ ├── ex.data │ │ │ ├── ex.log │ │ │ ├── ex.properties │ │ │ └── ex.script │ │ └── solr/ │ │ ├── db/ │ │ │ ├── conf/ │ │ │ │ ├── admin-extra.html │ │ │ │ ├── admin-extra.menu-bottom.html │ │ │ │ ├── admin-extra.menu-top.html │ │ │ │ ├── db-data-config.xml │ │ │ │ ├── elevate.xml │ │ │ │ ├── protwords.txt │ │ │ │ ├── schema.xml │ │ │ │ ├── scripts.conf │ │ │ │ ├── solrconfig.xml │ │ │ │ ├── stopwords.txt │ │ │ │ ├── synonyms.txt │ │ │ │ └── xslt/ │ │ │ │ ├── example.xsl │ │ │ │ ├── example_atom.xsl │ │ │ │ ├── example_rss.xsl │ │ │ │ └── luke.xsl │ │ │ └── lib/ │ │ │ ├── derby-10.9.1.0.jar │ │ │ └── hsqldb-1.8.0.10.jar │ │ ├── mail/ │ │ │ └── conf/ │ │ │ ├── admin-extra.html │ │ │ ├── admin-extra.menu-bottom.html │ │ │ ├── admin-extra.menu-top.html │ │ │ ├── data-config.xml │ │ │ ├── protwords.txt │ │ │ ├── schema.xml │ │ │ ├── solrconfig.xml │ │ │ ├── stopwords.txt │ │ │ └── synonyms.txt │ │ ├── rss/ │ │ │ └── conf/ │ │ │ ├── admin-extra.html │ │ │ ├── admin-extra.menu-bottom.html │ │ │ ├── admin-extra.menu-top.html │ │ │ ├── elevate.xml │ │ │ ├── protwords.txt │ │ │ ├── rss-data-config.xml │ │ │ ├── schema.xml │ │ │ ├── scripts.conf │ │ │ ├── solrconfig.xml │ │ │ ├── stopwords.txt │ │ │ └── synonyms.txt │ │ ├── solr/ │ │ │ └── conf/ │ │ │ ├── admin-extra.html │ │ │ ├── admin-extra.menu-bottom.html │ │ │ ├── admin-extra.menu-top.html │ │ │ ├── elevate.xml │ │ │ ├── protwords.txt │ │ │ ├── schema.xml │ │ │ ├── scripts.conf │ │ │ ├── solr-data-config.xml │ │ │ ├── solrconfig.xml │ │ │ ├── stopwords.txt │ │ │ └── synonyms.txt │ │ ├── solr.xml │ │ └── tika/ │ │ └── conf/ │ │ ├── admin-extra.html │ │ ├── admin-extra.menu-bottom.html │ │ ├── admin-extra.menu-top.html │ │ ├── schema.xml │ │ ├── solrconfig.xml │ │ └── tika-data-config.xml │ ├── exampledocs/ │ │ ├── books.csv │ │ ├── books.json │ │ ├── gb18030-example.xml │ │ ├── hd.xml │ │ ├── ipod_other.xml │ │ ├── ipod_video.xml │ │ ├── manufacturers.xml │ │ ├── mem.xml │ │ ├── money.xml │ │ ├── monitor.xml │ │ ├── monitor2.xml │ │ ├── mp500.xml │ │ ├── post.jar │ │ ├── post.sh │ │ ├── sd500.xml │ │ ├── solr.xml │ │ ├── test_utf8.sh │ │ ├── utf8-example.xml │ │ └── vidcard.xml │ ├── lib/ │ │ ├── ext/ │ │ │ ├── jcl-over-slf4j-1.6.6.jar │ │ │ ├── jul-to-slf4j-1.6.6.jar │ │ │ ├── log4j-1.2.16.jar │ │ │ ├── slf4j-api-1.6.6.jar │ │ │ └── slf4j-log4j12-1.6.6.jar │ │ ├── jetty-continuation-8.1.8.v20121106.jar │ │ ├── jetty-deploy-8.1.8.v20121106.jar │ │ ├── jetty-http-8.1.8.v20121106.jar │ │ ├── jetty-io-8.1.8.v20121106.jar │ │ ├── jetty-jmx-8.1.8.v20121106.jar │ │ ├── jetty-security-8.1.8.v20121106.jar │ │ ├── jetty-server-8.1.8.v20121106.jar │ │ ├── jetty-servlet-8.1.8.v20121106.jar │ │ ├── jetty-util-8.1.8.v20121106.jar │ │ ├── jetty-webapp-8.1.8.v20121106.jar │ │ ├── jetty-xml-8.1.8.v20121106.jar │ │ └── servlet-api-3.0.jar │ ├── multicore/ │ │ ├── README.txt │ │ ├── core0/ │ │ │ └── conf/ │ │ │ ├── schema.xml │ │ │ └── solrconfig.xml │ │ ├── core1/ │ │ │ └── conf/ │ │ │ ├── schema.xml │ │ │ └── solrconfig.xml │ │ ├── exampledocs/ │ │ │ ├── ipod_other.xml │ │ │ └── ipod_video.xml │ │ ├── solr.xml │ │ └── zoo.cfg │ ├── resources/ │ │ └── log4j.properties │ ├── solr/ │ │ ├── README.txt │ │ ├── paraphrase/ │ │ │ ├── README.txt │ │ │ ├── conf/ │ │ │ │ ├── admin-extra.html │ │ │ │ ├── admin-extra.menu-bottom.html │ │ │ │ ├── admin-extra.menu-top.html │ │ │ │ ├── currency.xml │ │ │ │ ├── elevate.xml │ │ │ │ ├── lang/ │ │ │ │ │ ├── contractions_ca.txt │ │ │ │ │ ├── contractions_fr.txt │ │ │ │ │ ├── contractions_ga.txt │ │ │ │ │ ├── contractions_it.txt │ │ │ │ │ ├── hyphenations_ga.txt │ │ │ │ │ ├── stemdict_nl.txt │ │ │ │ │ ├── stoptags_ja.txt │ │ │ │ │ ├── stopwords_ar.txt │ │ │ │ │ ├── stopwords_bg.txt │ │ │ │ │ ├── stopwords_ca.txt │ │ │ │ │ ├── stopwords_cz.txt │ │ │ │ │ ├── stopwords_da.txt │ │ │ │ │ ├── stopwords_de.txt │ │ │ │ │ ├── stopwords_el.txt │ │ │ │ │ ├── stopwords_en.txt │ │ │ │ │ ├── stopwords_es.txt │ │ │ │ │ ├── stopwords_eu.txt │ │ │ │ │ ├── stopwords_fa.txt │ │ │ │ │ ├── stopwords_fi.txt │ │ │ │ │ ├── stopwords_fr.txt │ │ │ │ │ ├── stopwords_ga.txt │ │ │ │ │ ├── stopwords_gl.txt │ │ │ │ │ ├── stopwords_hi.txt │ │ │ │ │ ├── stopwords_hu.txt │ │ │ │ │ ├── stopwords_hy.txt │ │ │ │ │ ├── stopwords_id.txt │ │ │ │ │ ├── stopwords_it.txt │ │ │ │ │ ├── stopwords_ja.txt │ │ │ │ │ ├── stopwords_lv.txt │ │ │ │ │ ├── stopwords_nl.txt │ │ │ │ │ ├── stopwords_no.txt │ │ │ │ │ ├── stopwords_pt.txt │ │ │ │ │ ├── stopwords_ro.txt │ │ │ │ │ ├── stopwords_ru.txt │ │ │ │ │ ├── stopwords_sv.txt │ │ │ │ │ ├── stopwords_th.txt │ │ │ │ │ ├── stopwords_tr.txt │ │ │ │ │ └── userdict_ja.txt │ │ │ │ ├── mapping-FoldToASCII.txt │ │ │ │ ├── mapping-ISOLatin1Accent.txt │ │ │ │ ├── protwords.txt │ │ │ │ ├── schema.xml │ │ │ │ ├── scripts.conf │ │ │ │ ├── solrconfig.xml │ │ │ │ ├── spellings.txt │ │ │ │ ├── stopwords.txt │ │ │ │ ├── synonyms.txt │ │ │ │ ├── update-script.js │ │ │ │ ├── velocity/ │ │ │ │ │ ├── VM_global_library.vm │ │ │ │ │ ├── browse.vm │ │ │ │ │ ├── cluster.vm │ │ │ │ │ ├── clusterResults.vm │ │ │ │ │ ├── debug.vm │ │ │ │ │ ├── did_you_mean.vm │ │ │ │ │ ├── facet_fields.vm │ │ │ │ │ ├── facet_pivot.vm │ │ │ │ │ ├── facet_queries.vm │ │ │ │ │ ├── facet_ranges.vm │ │ │ │ │ ├── facets.vm │ │ │ │ │ ├── footer.vm │ │ │ │ │ ├── head.vm │ │ │ │ │ ├── header.vm │ │ │ │ │ ├── hit.vm │ │ │ │ │ ├── hitGrouped.vm │ │ │ │ │ ├── join-doc.vm │ │ │ │ │ ├── jquery.autocomplete.css │ │ │ │ │ ├── jquery.autocomplete.js │ │ │ │ │ ├── layout.vm │ │ │ │ │ ├── main.css │ │ │ │ │ ├── product-doc.vm │ │ │ │ │ ├── query.vm │ │ │ │ │ ├── queryGroup.vm │ │ │ │ │ ├── querySpatial.vm │ │ │ │ │ ├── richtext-doc.vm │ │ │ │ │ ├── suggest.vm │ │ │ │ │ └── tabs.vm │ │ │ │ └── xslt/ │ │ │ │ ├── example.xsl │ │ │ │ ├── example_atom.xsl │ │ │ │ ├── example_rss.xsl │ │ │ │ ├── luke.xsl │ │ │ │ └── updateXml.xsl │ │ │ └── lib/ │ │ │ └── triplestore-lemmatizer-assembly-0.1.jar │ │ ├── solr.xml │ │ └── zoo.cfg │ ├── solr-webapp/ │ │ └── webapp/ │ │ ├── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── MANIFEST.MF │ │ │ └── NOTICE.txt │ │ ├── WEB-INF/ │ │ │ ├── lib/ │ │ │ │ ├── commons-cli-1.2.jar │ │ │ │ ├── commons-codec-1.7.jar │ │ │ │ ├── commons-fileupload-1.2.1.jar │ │ │ │ ├── commons-io-2.1.jar │ │ │ │ ├── commons-lang-2.6.jar │ │ │ │ ├── guava-13.0.1.jar │ │ │ │ ├── httpclient-4.2.3.jar │ │ │ │ ├── httpcore-4.2.2.jar │ │ │ │ ├── httpmime-4.2.3.jar │ │ │ │ ├── lucene-analyzers-common-4.3.0.jar │ │ │ │ ├── lucene-analyzers-kuromoji-4.3.0.jar │ │ │ │ ├── lucene-analyzers-phonetic-4.3.0.jar │ │ │ │ ├── lucene-codecs-4.3.0.jar │ │ │ │ ├── lucene-core-4.3.0.jar │ │ │ │ ├── lucene-grouping-4.3.0.jar │ │ │ │ ├── lucene-highlighter-4.3.0.jar │ │ │ │ ├── lucene-memory-4.3.0.jar │ │ │ │ ├── lucene-misc-4.3.0.jar │ │ │ │ ├── lucene-queries-4.3.0.jar │ │ │ │ ├── lucene-queryparser-4.3.0.jar │ │ │ │ ├── lucene-spatial-4.3.0.jar │ │ │ │ ├── lucene-suggest-4.3.0.jar │ │ │ │ ├── noggit-0.5.jar │ │ │ │ ├── org.restlet-2.1.1.jar │ │ │ │ ├── org.restlet.ext.servlet-2.1.1.jar │ │ │ │ ├── solr-core-4.3.0.jar │ │ │ │ ├── solr-solrj-4.3.0.jar │ │ │ │ ├── spatial4j-0.3.jar │ │ │ │ ├── wstx-asl-3.2.7.jar │ │ │ │ └── zookeeper-3.4.5.jar │ │ │ ├── web.xml │ │ │ └── weblogic.xml │ │ ├── admin.html │ │ ├── css/ │ │ │ ├── chosen.css │ │ │ └── styles/ │ │ │ ├── analysis.css │ │ │ ├── cloud.css │ │ │ ├── common.css │ │ │ ├── cores.css │ │ │ ├── dashboard.css │ │ │ ├── dataimport.css │ │ │ ├── index.css │ │ │ ├── java-properties.css │ │ │ ├── logging.css │ │ │ ├── menu.css │ │ │ ├── plugins.css │ │ │ ├── query.css │ │ │ ├── replication.css │ │ │ ├── schema-browser.css │ │ │ └── threads.css │ │ ├── img/ │ │ │ ├── ZeroClipboard.swf │ │ │ └── filetypes/ │ │ │ └── README │ │ ├── js/ │ │ │ ├── lib/ │ │ │ │ ├── ZeroClipboard.js │ │ │ │ ├── chosen.js │ │ │ │ ├── console.js │ │ │ │ ├── d3.js │ │ │ │ ├── highlight.js │ │ │ │ ├── jquery.autogrow.js │ │ │ │ ├── jquery.blockUI.js │ │ │ │ ├── jquery.cookie.js │ │ │ │ ├── jquery.form.js │ │ │ │ ├── jquery.jstree.js │ │ │ │ ├── jquery.sammy.js │ │ │ │ ├── jquery.timeago.js │ │ │ │ ├── linker.js │ │ │ │ └── order.js │ │ │ ├── main.js │ │ │ ├── require.js │ │ │ └── scripts/ │ │ │ ├── analysis.js │ │ │ ├── app.js │ │ │ ├── cloud.js │ │ │ ├── cores.js │ │ │ ├── dashboard.js │ │ │ ├── dataimport.js │ │ │ ├── file.js │ │ │ ├── index.js │ │ │ ├── java-properties.js │ │ │ ├── logging.js │ │ │ ├── ping.js │ │ │ ├── plugins.js │ │ │ ├── query.js │ │ │ ├── replication.js │ │ │ ├── schema-browser.js │ │ │ └── threads.js │ │ └── tpl/ │ │ ├── analysis.html │ │ ├── cloud.html │ │ ├── cores.html │ │ ├── dashboard.html │ │ ├── dataimport.html │ │ ├── index.html │ │ ├── logging.html │ │ ├── plugins.html │ │ ├── query.html │ │ ├── replication.html │ │ ├── schema-browser.html │ │ └── threads.html │ ├── start.jar │ └── webapps/ │ └── solr.war ├── relsyn/ │ ├── README.txt │ ├── cloud-scripts/ │ │ ├── zkcli.bat │ │ └── zkcli.sh │ ├── contexts/ │ │ └── solr-jetty-context.xml │ ├── etc/ │ │ ├── create-solrtest.keystore.sh │ │ ├── jetty.xml │ │ ├── logging.properties │ │ ├── solrtest.keystore │ │ └── webdefault.xml │ ├── example-DIH/ │ │ ├── README.txt │ │ ├── hsqldb/ │ │ │ ├── ex.backup │ │ │ ├── ex.data │ │ │ ├── ex.log │ │ │ ├── ex.properties │ │ │ └── ex.script │ │ └── solr/ │ │ ├── db/ │ │ │ ├── conf/ │ │ │ │ ├── admin-extra.html │ │ │ │ ├── admin-extra.menu-bottom.html │ │ │ │ ├── admin-extra.menu-top.html │ │ │ │ ├── db-data-config.xml │ │ │ │ ├── elevate.xml │ │ │ │ ├── protwords.txt │ │ │ │ ├── schema.xml │ │ │ │ ├── scripts.conf │ │ │ │ ├── solrconfig.xml │ │ │ │ ├── stopwords.txt │ │ │ │ ├── synonyms.txt │ │ │ │ └── xslt/ │ │ │ │ ├── example.xsl │ │ │ │ ├── example_atom.xsl │ │ │ │ ├── example_rss.xsl │ │ │ │ └── luke.xsl │ │ │ └── lib/ │ │ │ ├── derby-10.9.1.0.jar │ │ │ └── hsqldb-1.8.0.10.jar │ │ ├── mail/ │ │ │ └── conf/ │ │ │ ├── admin-extra.html │ │ │ ├── admin-extra.menu-bottom.html │ │ │ ├── admin-extra.menu-top.html │ │ │ ├── data-config.xml │ │ │ ├── protwords.txt │ │ │ ├── schema.xml │ │ │ ├── solrconfig.xml │ │ │ ├── stopwords.txt │ │ │ └── synonyms.txt │ │ ├── rss/ │ │ │ └── conf/ │ │ │ ├── admin-extra.html │ │ │ ├── admin-extra.menu-bottom.html │ │ │ ├── admin-extra.menu-top.html │ │ │ ├── elevate.xml │ │ │ ├── protwords.txt │ │ │ ├── rss-data-config.xml │ │ │ ├── schema.xml │ │ │ ├── scripts.conf │ │ │ ├── solrconfig.xml │ │ │ ├── stopwords.txt │ │ │ └── synonyms.txt │ │ ├── solr/ │ │ │ └── conf/ │ │ │ ├── admin-extra.html │ │ │ ├── admin-extra.menu-bottom.html │ │ │ ├── admin-extra.menu-top.html │ │ │ ├── elevate.xml │ │ │ ├── protwords.txt │ │ │ ├── schema.xml │ │ │ ├── scripts.conf │ │ │ ├── solr-data-config.xml │ │ │ ├── solrconfig.xml │ │ │ ├── stopwords.txt │ │ │ └── synonyms.txt │ │ ├── solr.xml │ │ └── tika/ │ │ └── conf/ │ │ ├── admin-extra.html │ │ ├── admin-extra.menu-bottom.html │ │ ├── admin-extra.menu-top.html │ │ ├── schema.xml │ │ ├── solrconfig.xml │ │ └── tika-data-config.xml │ ├── exampledocs/ │ │ ├── books.csv │ │ ├── books.json │ │ ├── gb18030-example.xml │ │ ├── hd.xml │ │ ├── ipod_other.xml │ │ ├── ipod_video.xml │ │ ├── manufacturers.xml │ │ ├── mem.xml │ │ ├── money.xml │ │ ├── monitor.xml │ │ ├── monitor2.xml │ │ ├── mp500.xml │ │ ├── post.jar │ │ ├── post.sh │ │ ├── sd500.xml │ │ ├── solr.xml │ │ ├── test_utf8.sh │ │ ├── utf8-example.xml │ │ └── vidcard.xml │ ├── lib/ │ │ ├── ext/ │ │ │ ├── jcl-over-slf4j-1.6.6.jar │ │ │ ├── jul-to-slf4j-1.6.6.jar │ │ │ ├── log4j-1.2.16.jar │ │ │ ├── slf4j-api-1.6.6.jar │ │ │ └── slf4j-log4j12-1.6.6.jar │ │ ├── jetty-continuation-8.1.8.v20121106.jar │ │ ├── jetty-deploy-8.1.8.v20121106.jar │ │ ├── jetty-http-8.1.8.v20121106.jar │ │ ├── jetty-io-8.1.8.v20121106.jar │ │ ├── jetty-jmx-8.1.8.v20121106.jar │ │ ├── jetty-security-8.1.8.v20121106.jar │ │ ├── jetty-server-8.1.8.v20121106.jar │ │ ├── jetty-servlet-8.1.8.v20121106.jar │ │ ├── jetty-util-8.1.8.v20121106.jar │ │ ├── jetty-webapp-8.1.8.v20121106.jar │ │ ├── jetty-xml-8.1.8.v20121106.jar │ │ └── servlet-api-3.0.jar │ ├── multicore/ │ │ ├── README.txt │ │ ├── core0/ │ │ │ └── conf/ │ │ │ ├── schema.xml │ │ │ └── solrconfig.xml │ │ ├── core1/ │ │ │ └── conf/ │ │ │ ├── schema.xml │ │ │ └── solrconfig.xml │ │ ├── exampledocs/ │ │ │ ├── ipod_other.xml │ │ │ └── ipod_video.xml │ │ ├── solr.xml │ │ └── zoo.cfg │ ├── resources/ │ │ └── log4j.properties │ ├── solr/ │ │ ├── README.txt │ │ ├── relsyn/ │ │ │ ├── README.txt │ │ │ ├── conf/ │ │ │ │ ├── admin-extra.html │ │ │ │ ├── admin-extra.menu-bottom.html │ │ │ │ ├── admin-extra.menu-top.html │ │ │ │ ├── currency.xml │ │ │ │ ├── elevate.xml │ │ │ │ ├── lang/ │ │ │ │ │ ├── contractions_ca.txt │ │ │ │ │ ├── contractions_fr.txt │ │ │ │ │ ├── contractions_ga.txt │ │ │ │ │ ├── contractions_it.txt │ │ │ │ │ ├── hyphenations_ga.txt │ │ │ │ │ ├── stemdict_nl.txt │ │ │ │ │ ├── stoptags_ja.txt │ │ │ │ │ ├── stopwords_ar.txt │ │ │ │ │ ├── stopwords_bg.txt │ │ │ │ │ ├── stopwords_ca.txt │ │ │ │ │ ├── stopwords_cz.txt │ │ │ │ │ ├── stopwords_da.txt │ │ │ │ │ ├── stopwords_de.txt │ │ │ │ │ ├── stopwords_el.txt │ │ │ │ │ ├── stopwords_en.txt │ │ │ │ │ ├── stopwords_es.txt │ │ │ │ │ ├── stopwords_eu.txt │ │ │ │ │ ├── stopwords_fa.txt │ │ │ │ │ ├── stopwords_fi.txt │ │ │ │ │ ├── stopwords_fr.txt │ │ │ │ │ ├── stopwords_ga.txt │ │ │ │ │ ├── stopwords_gl.txt │ │ │ │ │ ├── stopwords_hi.txt │ │ │ │ │ ├── stopwords_hu.txt │ │ │ │ │ ├── stopwords_hy.txt │ │ │ │ │ ├── stopwords_id.txt │ │ │ │ │ ├── stopwords_it.txt │ │ │ │ │ ├── stopwords_ja.txt │ │ │ │ │ ├── stopwords_lv.txt │ │ │ │ │ ├── stopwords_nl.txt │ │ │ │ │ ├── stopwords_no.txt │ │ │ │ │ ├── stopwords_pt.txt │ │ │ │ │ ├── stopwords_ro.txt │ │ │ │ │ ├── stopwords_ru.txt │ │ │ │ │ ├── stopwords_sv.txt │ │ │ │ │ ├── stopwords_th.txt │ │ │ │ │ ├── stopwords_tr.txt │ │ │ │ │ └── userdict_ja.txt │ │ │ │ ├── mapping-FoldToASCII.txt │ │ │ │ ├── mapping-ISOLatin1Accent.txt │ │ │ │ ├── protwords.txt │ │ │ │ ├── schema.xml │ │ │ │ ├── scripts.conf │ │ │ │ ├── solrconfig.xml │ │ │ │ ├── spellings.txt │ │ │ │ ├── stopwords.txt │ │ │ │ ├── synonyms.txt │ │ │ │ ├── update-script.js │ │ │ │ ├── velocity/ │ │ │ │ │ ├── VM_global_library.vm │ │ │ │ │ ├── browse.vm │ │ │ │ │ ├── cluster.vm │ │ │ │ │ ├── clusterResults.vm │ │ │ │ │ ├── debug.vm │ │ │ │ │ ├── did_you_mean.vm │ │ │ │ │ ├── facet_fields.vm │ │ │ │ │ ├── facet_pivot.vm │ │ │ │ │ ├── facet_queries.vm │ │ │ │ │ ├── facet_ranges.vm │ │ │ │ │ ├── facets.vm │ │ │ │ │ ├── footer.vm │ │ │ │ │ ├── head.vm │ │ │ │ │ ├── header.vm │ │ │ │ │ ├── hit.vm │ │ │ │ │ ├── hitGrouped.vm │ │ │ │ │ ├── join-doc.vm │ │ │ │ │ ├── jquery.autocomplete.css │ │ │ │ │ ├── jquery.autocomplete.js │ │ │ │ │ ├── layout.vm │ │ │ │ │ ├── main.css │ │ │ │ │ ├── product-doc.vm │ │ │ │ │ ├── query.vm │ │ │ │ │ ├── queryGroup.vm │ │ │ │ │ ├── querySpatial.vm │ │ │ │ │ ├── richtext-doc.vm │ │ │ │ │ ├── suggest.vm │ │ │ │ │ └── tabs.vm │ │ │ │ └── xslt/ │ │ │ │ ├── example.xsl │ │ │ │ ├── example_atom.xsl │ │ │ │ ├── example_rss.xsl │ │ │ │ ├── luke.xsl │ │ │ │ └── updateXml.xsl │ │ │ └── lib/ │ │ │ └── triplestore-lemmatizer-assembly-0.1.jar │ │ ├── solr.xml │ │ └── zoo.cfg │ ├── solr-webapp/ │ │ └── webapp/ │ │ ├── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── MANIFEST.MF │ │ │ └── NOTICE.txt │ │ ├── WEB-INF/ │ │ │ ├── lib/ │ │ │ │ ├── commons-cli-1.2.jar │ │ │ │ ├── commons-codec-1.7.jar │ │ │ │ ├── commons-fileupload-1.2.1.jar │ │ │ │ ├── commons-io-2.1.jar │ │ │ │ ├── commons-lang-2.6.jar │ │ │ │ ├── guava-13.0.1.jar │ │ │ │ ├── httpclient-4.2.3.jar │ │ │ │ ├── httpcore-4.2.2.jar │ │ │ │ ├── httpmime-4.2.3.jar │ │ │ │ ├── lucene-analyzers-common-4.3.0.jar │ │ │ │ ├── lucene-analyzers-kuromoji-4.3.0.jar │ │ │ │ ├── lucene-analyzers-phonetic-4.3.0.jar │ │ │ │ ├── lucene-codecs-4.3.0.jar │ │ │ │ ├── lucene-core-4.3.0.jar │ │ │ │ ├── lucene-grouping-4.3.0.jar │ │ │ │ ├── lucene-highlighter-4.3.0.jar │ │ │ │ ├── lucene-memory-4.3.0.jar │ │ │ │ ├── lucene-misc-4.3.0.jar │ │ │ │ ├── lucene-queries-4.3.0.jar │ │ │ │ ├── lucene-queryparser-4.3.0.jar │ │ │ │ ├── lucene-spatial-4.3.0.jar │ │ │ │ ├── lucene-suggest-4.3.0.jar │ │ │ │ ├── noggit-0.5.jar │ │ │ │ ├── org.restlet-2.1.1.jar │ │ │ │ ├── org.restlet.ext.servlet-2.1.1.jar │ │ │ │ ├── solr-core-4.3.0.jar │ │ │ │ ├── solr-solrj-4.3.0.jar │ │ │ │ ├── spatial4j-0.3.jar │ │ │ │ ├── wstx-asl-3.2.7.jar │ │ │ │ └── zookeeper-3.4.5.jar │ │ │ ├── web.xml │ │ │ └── weblogic.xml │ │ ├── admin.html │ │ ├── css/ │ │ │ ├── chosen.css │ │ │ └── styles/ │ │ │ ├── analysis.css │ │ │ ├── cloud.css │ │ │ ├── common.css │ │ │ ├── cores.css │ │ │ ├── dashboard.css │ │ │ ├── dataimport.css │ │ │ ├── index.css │ │ │ ├── java-properties.css │ │ │ ├── logging.css │ │ │ ├── menu.css │ │ │ ├── plugins.css │ │ │ ├── query.css │ │ │ ├── replication.css │ │ │ ├── schema-browser.css │ │ │ └── threads.css │ │ ├── img/ │ │ │ ├── ZeroClipboard.swf │ │ │ └── filetypes/ │ │ │ └── README │ │ ├── js/ │ │ │ ├── lib/ │ │ │ │ ├── ZeroClipboard.js │ │ │ │ ├── chosen.js │ │ │ │ ├── console.js │ │ │ │ ├── d3.js │ │ │ │ ├── highlight.js │ │ │ │ ├── jquery.autogrow.js │ │ │ │ ├── jquery.blockUI.js │ │ │ │ ├── jquery.cookie.js │ │ │ │ ├── jquery.form.js │ │ │ │ ├── jquery.jstree.js │ │ │ │ ├── jquery.sammy.js │ │ │ │ ├── jquery.timeago.js │ │ │ │ ├── linker.js │ │ │ │ └── order.js │ │ │ ├── main.js │ │ │ ├── require.js │ │ │ └── scripts/ │ │ │ ├── analysis.js │ │ │ ├── app.js │ │ │ ├── cloud.js │ │ │ ├── cores.js │ │ │ ├── dashboard.js │ │ │ ├── dataimport.js │ │ │ ├── file.js │ │ │ ├── index.js │ │ │ ├── java-properties.js │ │ │ ├── logging.js │ │ │ ├── ping.js │ │ │ ├── plugins.js │ │ │ ├── query.js │ │ │ ├── replication.js │ │ │ ├── schema-browser.js │ │ │ └── threads.js │ │ └── tpl/ │ │ ├── analysis.html │ │ ├── cloud.html │ │ ├── cores.html │ │ ├── dashboard.html │ │ ├── dataimport.html │ │ ├── index.html │ │ ├── logging.html │ │ ├── plugins.html │ │ ├── query.html │ │ ├── replication.html │ │ ├── schema-browser.html │ │ └── threads.html │ ├── start.jar │ └── webapps/ │ └── solr.war ├── src/ │ └── main/ │ └── scripts/ │ ├── create-indexes-small.sh │ ├── create-indexes.sh │ ├── index-relsyn.py │ ├── index.py │ ├── start-all.sh │ ├── start.sh │ ├── stop-all.sh │ ├── stop.sh │ └── utils.py └── triplestore/ ├── README.txt ├── cloud-scripts/ │ ├── zkcli.bat │ └── zkcli.sh ├── contexts/ │ └── solr-jetty-context.xml ├── etc/ │ ├── create-solrtest.keystore.sh │ ├── jetty.xml │ ├── logging.properties │ ├── solrtest.keystore │ └── webdefault.xml ├── example-DIH/ │ ├── README.txt │ ├── hsqldb/ │ │ ├── ex.backup │ │ ├── ex.data │ │ ├── ex.log │ │ ├── ex.properties │ │ └── ex.script │ └── solr/ │ ├── db/ │ │ ├── conf/ │ │ │ ├── admin-extra.html │ │ │ ├── admin-extra.menu-bottom.html │ │ │ ├── admin-extra.menu-top.html │ │ │ ├── db-data-config.xml │ │ │ ├── elevate.xml │ │ │ ├── protwords.txt │ │ │ ├── schema.xml │ │ │ ├── scripts.conf │ │ │ ├── solrconfig.xml │ │ │ ├── stopwords.txt │ │ │ ├── synonyms.txt │ │ │ └── xslt/ │ │ │ ├── example.xsl │ │ │ ├── example_atom.xsl │ │ │ ├── example_rss.xsl │ │ │ └── luke.xsl │ │ └── lib/ │ │ ├── derby-10.9.1.0.jar │ │ └── hsqldb-1.8.0.10.jar │ ├── mail/ │ │ └── conf/ │ │ ├── admin-extra.html │ │ ├── admin-extra.menu-bottom.html │ │ ├── admin-extra.menu-top.html │ │ ├── data-config.xml │ │ ├── protwords.txt │ │ ├── schema.xml │ │ ├── solrconfig.xml │ │ ├── stopwords.txt │ │ └── synonyms.txt │ ├── rss/ │ │ └── conf/ │ │ ├── admin-extra.html │ │ ├── admin-extra.menu-bottom.html │ │ ├── admin-extra.menu-top.html │ │ ├── elevate.xml │ │ ├── protwords.txt │ │ ├── rss-data-config.xml │ │ ├── schema.xml │ │ ├── scripts.conf │ │ ├── solrconfig.xml │ │ ├── stopwords.txt │ │ └── synonyms.txt │ ├── solr/ │ │ └── conf/ │ │ ├── admin-extra.html │ │ ├── admin-extra.menu-bottom.html │ │ ├── admin-extra.menu-top.html │ │ ├── elevate.xml │ │ ├── protwords.txt │ │ ├── schema.xml │ │ ├── scripts.conf │ │ ├── solr-data-config.xml │ │ ├── solrconfig.xml │ │ ├── stopwords.txt │ │ └── synonyms.txt │ ├── solr.xml │ └── tika/ │ └── conf/ │ ├── admin-extra.html │ ├── admin-extra.menu-bottom.html │ ├── admin-extra.menu-top.html │ ├── schema.xml │ ├── solrconfig.xml │ └── tika-data-config.xml ├── exampledocs/ │ ├── books.csv │ ├── books.json │ ├── gb18030-example.xml │ ├── hd.xml │ ├── ipod_other.xml │ ├── ipod_video.xml │ ├── manufacturers.xml │ ├── mem.xml │ ├── money.xml │ ├── monitor.xml │ ├── monitor2.xml │ ├── mp500.xml │ ├── post.jar │ ├── post.sh │ ├── sd500.xml │ ├── solr.xml │ ├── test_utf8.sh │ ├── utf8-example.xml │ └── vidcard.xml ├── lib/ │ ├── ext/ │ │ ├── jcl-over-slf4j-1.6.6.jar │ │ ├── jul-to-slf4j-1.6.6.jar │ │ ├── log4j-1.2.16.jar │ │ ├── slf4j-api-1.6.6.jar │ │ └── slf4j-log4j12-1.6.6.jar │ ├── jetty-continuation-8.1.8.v20121106.jar │ ├── jetty-deploy-8.1.8.v20121106.jar │ ├── jetty-http-8.1.8.v20121106.jar │ ├── jetty-io-8.1.8.v20121106.jar │ ├── jetty-jmx-8.1.8.v20121106.jar │ ├── jetty-security-8.1.8.v20121106.jar │ ├── jetty-server-8.1.8.v20121106.jar │ ├── jetty-servlet-8.1.8.v20121106.jar │ ├── jetty-util-8.1.8.v20121106.jar │ ├── jetty-webapp-8.1.8.v20121106.jar │ ├── jetty-xml-8.1.8.v20121106.jar │ └── servlet-api-3.0.jar ├── multicore/ │ ├── README.txt │ ├── core0/ │ │ └── conf/ │ │ ├── schema.xml │ │ └── solrconfig.xml │ ├── core1/ │ │ └── conf/ │ │ ├── schema.xml │ │ └── solrconfig.xml │ ├── exampledocs/ │ │ ├── ipod_other.xml │ │ └── ipod_video.xml │ ├── solr.xml │ └── zoo.cfg ├── resources/ │ └── log4j.properties ├── solr/ │ ├── README.txt │ ├── solr.xml │ ├── triplestore/ │ │ ├── README.txt │ │ ├── conf/ │ │ │ ├── admin-extra.html │ │ │ ├── admin-extra.menu-bottom.html │ │ │ ├── admin-extra.menu-top.html │ │ │ ├── currency.xml │ │ │ ├── elevate.xml │ │ │ ├── lang/ │ │ │ │ ├── contractions_ca.txt │ │ │ │ ├── contractions_fr.txt │ │ │ │ ├── contractions_ga.txt │ │ │ │ ├── contractions_it.txt │ │ │ │ ├── hyphenations_ga.txt │ │ │ │ ├── stemdict_nl.txt │ │ │ │ ├── stoptags_ja.txt │ │ │ │ ├── stopwords_ar.txt │ │ │ │ ├── stopwords_bg.txt │ │ │ │ ├── stopwords_ca.txt │ │ │ │ ├── stopwords_cz.txt │ │ │ │ ├── stopwords_da.txt │ │ │ │ ├── stopwords_de.txt │ │ │ │ ├── stopwords_el.txt │ │ │ │ ├── stopwords_en.txt │ │ │ │ ├── stopwords_es.txt │ │ │ │ ├── stopwords_eu.txt │ │ │ │ ├── stopwords_fa.txt │ │ │ │ ├── stopwords_fi.txt │ │ │ │ ├── stopwords_fr.txt │ │ │ │ ├── stopwords_ga.txt │ │ │ │ ├── stopwords_gl.txt │ │ │ │ ├── stopwords_hi.txt │ │ │ │ ├── stopwords_hu.txt │ │ │ │ ├── stopwords_hy.txt │ │ │ │ ├── stopwords_id.txt │ │ │ │ ├── stopwords_it.txt │ │ │ │ ├── stopwords_ja.txt │ │ │ │ ├── stopwords_lv.txt │ │ │ │ ├── stopwords_nl.txt │ │ │ │ ├── stopwords_no.txt │ │ │ │ ├── stopwords_pt.txt │ │ │ │ ├── stopwords_ro.txt │ │ │ │ ├── stopwords_ru.txt │ │ │ │ ├── stopwords_sv.txt │ │ │ │ ├── stopwords_th.txt │ │ │ │ ├── stopwords_tr.txt │ │ │ │ └── userdict_ja.txt │ │ │ ├── mapping-FoldToASCII.txt │ │ │ ├── mapping-ISOLatin1Accent.txt │ │ │ ├── protwords.txt │ │ │ ├── schema.xml │ │ │ ├── scripts.conf │ │ │ ├── solrconfig.xml │ │ │ ├── spellings.txt │ │ │ ├── stopwords.txt │ │ │ ├── synonyms.txt │ │ │ ├── update-script.js │ │ │ ├── velocity/ │ │ │ │ ├── VM_global_library.vm │ │ │ │ ├── browse.vm │ │ │ │ ├── cluster.vm │ │ │ │ ├── clusterResults.vm │ │ │ │ ├── debug.vm │ │ │ │ ├── did_you_mean.vm │ │ │ │ ├── facet_fields.vm │ │ │ │ ├── facet_pivot.vm │ │ │ │ ├── facet_queries.vm │ │ │ │ ├── facet_ranges.vm │ │ │ │ ├── facets.vm │ │ │ │ ├── footer.vm │ │ │ │ ├── head.vm │ │ │ │ ├── header.vm │ │ │ │ ├── hit.vm │ │ │ │ ├── hitGrouped.vm │ │ │ │ ├── join-doc.vm │ │ │ │ ├── jquery.autocomplete.css │ │ │ │ ├── jquery.autocomplete.js │ │ │ │ ├── layout.vm │ │ │ │ ├── main.css │ │ │ │ ├── product-doc.vm │ │ │ │ ├── query.vm │ │ │ │ ├── queryGroup.vm │ │ │ │ ├── querySpatial.vm │ │ │ │ ├── richtext-doc.vm │ │ │ │ ├── suggest.vm │ │ │ │ └── tabs.vm │ │ │ └── xslt/ │ │ │ ├── example.xsl │ │ │ ├── example_atom.xsl │ │ │ ├── example_rss.xsl │ │ │ ├── luke.xsl │ │ │ └── updateXml.xsl │ │ └── lib/ │ │ └── triplestore-lemmatizer-assembly-0.1.jar │ └── zoo.cfg ├── solr-webapp/ │ └── webapp/ │ ├── META-INF/ │ │ ├── LICENSE.txt │ │ ├── MANIFEST.MF │ │ └── NOTICE.txt │ ├── WEB-INF/ │ │ ├── lib/ │ │ │ ├── commons-cli-1.2.jar │ │ │ ├── commons-codec-1.7.jar │ │ │ ├── commons-fileupload-1.2.1.jar │ │ │ ├── commons-io-2.1.jar │ │ │ ├── commons-lang-2.6.jar │ │ │ ├── guava-13.0.1.jar │ │ │ ├── httpclient-4.2.3.jar │ │ │ ├── httpcore-4.2.2.jar │ │ │ ├── httpmime-4.2.3.jar │ │ │ ├── lucene-analyzers-common-4.3.0.jar │ │ │ ├── lucene-analyzers-kuromoji-4.3.0.jar │ │ │ ├── lucene-analyzers-phonetic-4.3.0.jar │ │ │ ├── lucene-codecs-4.3.0.jar │ │ │ ├── lucene-core-4.3.0.jar │ │ │ ├── lucene-grouping-4.3.0.jar │ │ │ ├── lucene-highlighter-4.3.0.jar │ │ │ ├── lucene-memory-4.3.0.jar │ │ │ ├── lucene-misc-4.3.0.jar │ │ │ ├── lucene-queries-4.3.0.jar │ │ │ ├── lucene-queryparser-4.3.0.jar │ │ │ ├── lucene-spatial-4.3.0.jar │ │ │ ├── lucene-suggest-4.3.0.jar │ │ │ ├── noggit-0.5.jar │ │ │ ├── org.restlet-2.1.1.jar │ │ │ ├── org.restlet.ext.servlet-2.1.1.jar │ │ │ ├── solr-core-4.3.0.jar │ │ │ ├── solr-solrj-4.3.0.jar │ │ │ ├── spatial4j-0.3.jar │ │ │ ├── wstx-asl-3.2.7.jar │ │ │ └── zookeeper-3.4.5.jar │ │ ├── web.xml │ │ └── weblogic.xml │ ├── admin.html │ ├── css/ │ │ ├── chosen.css │ │ └── styles/ │ │ ├── analysis.css │ │ ├── cloud.css │ │ ├── common.css │ │ ├── cores.css │ │ ├── dashboard.css │ │ ├── dataimport.css │ │ ├── index.css │ │ ├── java-properties.css │ │ ├── logging.css │ │ ├── menu.css │ │ ├── plugins.css │ │ ├── query.css │ │ ├── replication.css │ │ ├── schema-browser.css │ │ └── threads.css │ ├── img/ │ │ ├── ZeroClipboard.swf │ │ └── filetypes/ │ │ └── README │ ├── js/ │ │ ├── lib/ │ │ │ ├── ZeroClipboard.js │ │ │ ├── chosen.js │ │ │ ├── console.js │ │ │ ├── d3.js │ │ │ ├── highlight.js │ │ │ ├── jquery.autogrow.js │ │ │ ├── jquery.blockUI.js │ │ │ ├── jquery.cookie.js │ │ │ ├── jquery.form.js │ │ │ ├── jquery.jstree.js │ │ │ ├── jquery.sammy.js │ │ │ ├── jquery.timeago.js │ │ │ ├── linker.js │ │ │ └── order.js │ │ ├── main.js │ │ ├── require.js │ │ └── scripts/ │ │ ├── analysis.js │ │ ├── app.js │ │ ├── cloud.js │ │ ├── cores.js │ │ ├── dashboard.js │ │ ├── dataimport.js │ │ ├── file.js │ │ ├── index.js │ │ ├── java-properties.js │ │ ├── logging.js │ │ ├── ping.js │ │ ├── plugins.js │ │ ├── query.js │ │ ├── replication.js │ │ ├── schema-browser.js │ │ └── threads.js │ └── tpl/ │ ├── analysis.html │ ├── cloud.html │ ├── cores.html │ ├── dashboard.html │ ├── dataimport.html │ ├── index.html │ ├── logging.html │ ├── plugins.html │ ├── query.html │ ├── replication.html │ ├── schema-browser.html │ └── threads.html ├── start.jar └── webapps/ └── solr.war ================================================ FILE CONTENTS ================================================ ================================================ FILE: README.md ================================================ This is a repository for the code and data from the paper _Open Question Answering Over Curated and Extracted Knowledge Bases_ from KDD 2014. If you use any of these resources in a published paper, please use the following citation: @inproceedings{Fader14, author = {Anthony Fader and Luke Zettlemoyer and Oren Etzioni}, title = {{Open Question Answering Over Curated and Extracted Knowledge Bases}}, booktitle = {KDD}, year = {2014} } Code === Warning: This project has lots of moving parts. It will probably take quite a bit of effort to get it running. I would recommend playing with the data before trying to run the code. ## Dependencies Below are the dependencies used for OQA. Version numbers are what I have used, but other versions may be compatible. * sbt (0.13) * java (1.8.0) * scala (2.10) * Boost C++ libraries (1.5.7) * Python (2.7.8) * wget (1.15) ## Code Structure OQA consists of the following components: * Solr indexes (used for storing triples, paraphrases, and query rewrites). * Language model (used for scoring answer derivation steps) * Question answering code (used for inference and learning) Getting the code running involves completing these steps in order: 1. [Downloading the data](oqa-data/) in `oqa-data/` 2. [Creating the indexes](oqa-solr/) in `oqa-solr/` 3. [Building the language model](oqa-lm/) in `oqa-lm/` 4. [Running the code](oqa-core/) in `oqa-core/` Please follow the above links to the individual README files. Each README will walk you through the steps. Data === Below is a description of the data included with OQA. ## Knowledge Base (KB) Data You can download the KB data at this url: http://knowitall.cs.washington.edu/oqa/data/kb. The KB is divided into 20 gzip-compressed files. The total compressed filesize is approximately 20GB; the total decompressed filesize is approximately 50GB. Each file contains a newline-separated list of KB records. Each record is a tab-separated list of (field name, field value) pairs. For example, here is a record corresponding to a Freebase assertion (with tabs replaced by newlines): arg1 1,2-Benzoquinone rel Notable types arg2 Chemical Compound arg1_fbid_s 08s9rd id fb-179681780 namespace freebase The following fields names appear in the data: | Field Name | Description | Required? | | --------------------------|-------------------------------|-----------| | `arg1` | Argument 1 of the triple | Yes | | `rel` | Relation phrase of the triple | Yes | | `arg2` | Argument 1 of the triple | Yes | | `id` | Unique ID for the triple | Yes | | `namespace` | The source of this triple | Yes | | `arg1_fbid_s` | Arg1 Freebase ID | No | | `arg2_fbid_s` | Arg2 Freebase ID | No | | `num_extrs_i` | Extraction redundancy | No | | `conf_f` | Extractor confidence | No | | `corpora_ss` | Extractor corpus | No | | `zipfSlope_f` | Probase statistic | No | | `entitySize_i` | Probase statistic | No | | `entityFrequency_i` | Probase statistic | No | | `popularity_i` | Probase statistic | No | | `freq_i` | Probase statistic | No | | `zipfPearsonCoefficient_f`| Probase statistic | No | | `conceptVagueness_f` | Probase statistic | No | | `prob_f` | Probase statistic | No | | `conceptSize_i` | Probase statistic | No | There is a total of 930 million records in the data. The distribution the different `namespace` values is: | Namespace | Count | |-------------------|----------:| | Total |930,143,872| | ReVerb |391,345,565| | Freebase |299,370,817| | Probase |170,278,429| | Open IE 4.0 | 67,221,551| | NELL | 1,927,510| ## WikiAnswers Corpus The WikiAnswers corpus contains clusters of questions tagged by WikiAnswers users as paraphrases. Each cluster optionally contains an answer provided by WikiAnswers users. There are 30,370,994 clusters containing an average of 25 questions per cluster. 3,386,256 (11%) of the clusters have an answer. The data can be downloaded from: http://knowitall.cs.washington.edu/oqa/data/wikianswers/. The corpus is split into 40 gzip-compressed files. The total compressed filesize is 8GB; the total decompressed filesize is 40GB. Each file contains one cluster per line. Each cluster is a tab-separated list of questions and answers. Questions are prefixed by `q:` and answers are prefixed by `a:`. Here is an example cluster (tabs replaced with newlines): q:How many muslims make up indias 1 billion population? q:How many of india's population are muslim? q:How many populations of muslims in india? q:What is population of muslims in india? a:Over 160 million Muslims per Pew Forum Study as of October 2009. This corpus is different than the data used in the Paralex system (see http://knowitall.cs.washington.edu/paralex). First, it contains more questions resulting from a longer crawl of WikiAnswers. Second, it groups questions into clusters, instead of enumerating all pairs of paraphrases. Third, it contains the answers, while the Paralex data does not. We also provide a hierarchical clustering of the lowercased tokens in the WikiAnswers corpus. We used [Percy Liang's implementation of the Brown Clustering Algorithm](https://github.com/percyliang/brown-cluster) with 1000 clusters (i.e. `--c 1000`). The raw output is available [here](https://s3-us-west-2.amazonaws.com/ai2-oqa/wikianswers-brown-clusters-c1000.txt.gz). You can browse the clusters [here](https://s3-us-west-2.amazonaws.com/ai2-oqa/wikianswers-cluster-viewer/cluster_viewer.html). We did not use these in the OQA system, but we probably should have. ## Paraphrase Template Data The paraphrase templates used in OQA are available for download at http://knowitall.cs.washington.edu/oqa/data/paraphrase-templates.txt.gz. The file is 90M compressed and 900M decompressed. Each line in the file contains a paraphrase template pair as a tab-separated list of (field name, field value) pairs. Here is an example record (with tabs replaced with newlines): id pair1718534 template1 how do people use $y ? template2 what be common use for $y ? typ anything count1 0.518446 count2 0.335112 typCount12 0.195711 count12 0.195711 typPmi 0.707756 pmi 0.687842 Each template in a record is a space-delimited list of lowercased, lemmatized tokens. The token `$y` is a variable representing the argument slot position. The numeric values in the records are scaled to be in [0, 1]. | Field | Description | |---------------|-----------------------------------------------------------| | `id` | The unique identifier for the pair of templates | | `template1` | The first template | | `template2` | The second template | | `typ` | Unusued field, ignore | | `count1` | Log count of the first template | | `count2` | Log count of the second template | | `typCount12` | Unused field, ignore | | `count12` | Log joint-count of the template pair | | `typPmi` | Unused field, ignore | | `pmi` | Log pointwise mutual information of the template pair | There are a total of 5,137,558 records in the file. ## Query Rewrite Data The query rewrite operators are available for download at http://knowitall.cs.washington.edu/oqa/data/query-rewrites.txt.gz. The file is 1G compressed and 8G decompressed. Each line in the file is a tab-separated list of (field name, field value) pairs. Here is an example record (with tabs replaced with newlines): inverted 0 joint_count 18 marg_count1 263 marg_count2 102 pmi -7.30675508757 rel1 be the language of the country rel2 be widely speak in Each record has statistics computed over a pair of relation phrases `rel1` and `rel2`. The relation phrases are lowercased and lemmatized. | Field | Description | |---------------|-----------------------------------------------------------| | `inverted` | 1 if the rule inverts arg. order, 0 otherwise | | `joint_count` | The number of shared argument pairs in the KB | | `marg_count1` | The number of argument pairs `rel1` takes in the KB | | `marg_count2` | The number of argument pairs `rel2` takes in the KB | | `pmi` | Log pointwise mutual information of `rel1` and `rel2` | | `rel1` | Lemmatized, lowercased relation phrase 1 | | `rel2` | Lemmatized, lowercased relation phrase 2 | There are a total of 74,461,831 records in the file. ## Labeled Question-Answer Pairs The questions and answers used for the evaluation are available at http://knowitall.cs.washington.edu/oqa/data/questions/. The questions are available in their own files: * WebQuestions [train](http://knowitall.cs.washington.edu/oqa/data/questions/webquestions.train.txt) [devtest](http://knowitall.cs.washington.edu/oqa/data/questions/webquestions.devtest.txt) [test](http://knowitall.cs.washington.edu/oqa/data/questions/webquestions.test.txt) * TREC [train](http://knowitall.cs.washington.edu/oqa/data/questions/trec.train.txt) [devtest](http://knowitall.cs.washington.edu/oqa/data/questions/trec.devtest.txt) [test](http://knowitall.cs.washington.edu/oqa/data/questions/trec.test.txt) * WikiAnswers [train](http://knowitall.cs.washington.edu/oqa/data/questions/wikianswers.train.txt) [devtest](http://knowitall.cs.washington.edu/oqa/data/questions/wikianswers.devtest.txt) [test](http://knowitall.cs.washington.edu/oqa/data/questions/wikianswers.test.txt) I labeled the top predictions for each system as correct or incorrect if they the predicted answer was not found in the label sets provided with WebQuestions, TREC, and WikiAnswers. These labels can be found at http://knowitall.cs.washington.edu/oqa/data/questions/labels.txt. The format of this file is a newline-separated list of tab-separated (`LABEL`, truth value, question, answer) records. The questions and answers may be lowercased and lemmatized. ## System Output See the documentation in [oqa-data/predictions](oqa-data/predictions). ================================================ FILE: oqa-core/README.md ================================================ # Running OQA Create a file called `questions.txt` that has one question per line. Running the following command will run OQA on the questions and write the output to the directory `output/`: sbt 'run-main edu.knowitall.eval.qa.QASystemRunner questions.txt output' Upon completion, `output/` will contain three files: `config.txt`, `output.txt`, and `name.txt`. `config.txt` is a dump of the OQA settings used for this execution. `name.txt` contains the input file name. `output.txt` contains the output of the system, with one line per prediction. Each line is a tab-separated record with the following fields: 1. The input question. 2. The predicted answer. 3. The score of the highest-scoring derivation from question to predicted answer. 4. A string representation of the higest-scoring derivation. By default, OQA uses the feature weights in `models/full.txt`. The configuration settings can be changed by editing `src/main/resources/application.conf`. ================================================ FILE: oqa-core/build.sbt ================================================ scalaVersion := "2.10.2" organization := "edu.knowitall.oqa" name := "oqa" version := "0.1-SNAPSHOT" fork in run := true javaOptions in run += "-Xmx8G" libraryDependencies ++= Seq( "org.slf4j" % "slf4j-api" % "1.7.10", "org.slf4j" % "slf4j-simple" % "1.7.10", "org.slf4j" % "slf4j-log4j12" % "1.7.10", "com.typesafe" % "config" % "1.0.2", "edu.washington.cs.knowitall.nlptools" %% "nlptools-postag-stanford" % "2.4.5", "edu.washington.cs.knowitall.nlptools" %% "nlptools-tokenize-breeze" % "2.4.5", "edu.washington.cs.knowitall.nlptools" %% "nlptools-stem-morpha" % "2.4.5", "edu.washington.cs.knowitall.nlptools" %% "nlptools-tokenize-clear" % "2.4.5", "edu.washington.cs.knowitall.nlptools" %% "nlptools-chunk-opennlp" % "2.4.5", "edu.washington.cs.knowitall.taggers" %% "taggers-core" % "0.4", "com.rockymadden.stringmetric" % "stringmetric-core" % "0.25.3", "org.apache.solr" % "solr-solrj" % "4.3.1", "com.twitter" %% "util-collection" % "6.3.6", "org.scalaj" %% "scalaj-http" % "0.3.10", "commons-logging" % "commons-logging" % "1.2" ) libraryDependencies <+= scalaVersion("org.scala-lang" % "scala-actors" % _) ================================================ FILE: oqa-core/models/full.txt ================================================ question prefix = 'what' ^ answer shape = 'Aaaaa 111 Aaaaa' -0.9569500182415177 question prefix = 'what' ^ answer shape = 'a aaa AAA' 0.7544691718350967 lex category (postags) = Unary(WP VBP DT JJ NN VB) -0.2743524261218534 question prefix = 'where' ^ answer shape = 'Aaa Aaaaa' 1.0291864283108354 question prefix = 'UNK' ^ answer shape = 'aaa Aaaaa Aaaaa' 0.5757022984312294 lex category (postags) = Unary(WDT NN VB DT JJ NN VB IN) -0.9317767238234221 question prefix = 'be' ^ isDate 0.0 lex category (postags) = Unary(WDT NN NN VB NN IN JJ JJ NN) 0.0 question prefix = 'what' ^ answer shape = '1/11' -0.05107624954396206 lex category (postags) = Unary(WDT VB JJ NN NN) -0.8423932871214885 lex category (postags) = Unary(WP VB NN JJ VB VB TO) 0.0 lex category (postags) = Unary(WDT NN VBP IN NN NN) 0.0 lex category (postags) = Unary(WDT NN VB NN) 1.0693177672382341 lex category (postags) = Unary(WP VB DT JJ NN VBP) 0.21597956950018238 template arg pos tags = NN RB 0.8059102517329442 question prefix = 'how many' ^ answer shape = 'Aaaaa aaaa' -0.36847865742429775 parser lexical rule = fullPatternWhenBeIn 0.0 parser lexical rule = quantIdentity 0.8796059832178037 lex category (postags) = Unary(WP VBP JJ NN VB) 0.0 lex type = Unary ^ rightTag = VBP 0.0 template arg pos tags = VB NN NNS -0.6431959139000365 lex category (postags) = Unary(WDT NN VB JJ NN VB) 0.3578985771616199 template prefix how many => how many -0.3028091937249179 action type = RelSynRule -1.4483765049252098 lex category (postags) = Unary(WDT NN VBP NN NN VB) -0.4615103976650857 question prefix = 'who' ^ answer shape = 'Aaaaa AA' 0.0361182050346589 question prefix = 'what' ^ answer shape = 'Aaaa aaaa' 0.6136446552353155 lex category (postags) = Unary(WRB JJ NN VBP DT NN VB VB) 0.9875957679678949 lex category (postags) = Unary(WRB JJ NN VBP VB DT NN) -0.9875957679678949 lex category (postags) = Unary(WRB VBP DT NN NN VB) 0.10981393651951843 question prefix = 'what' ^ answer shape = 'Aaaaa aaaa aaaa' 0.1222181685516235 evidence similarity with question 4.2882653734688905 question prefix = 'what' ^ answer shape = '11-aaaa-aaa aaaa' -0.38270704122583 lex category (postags) = Unary(WDT NN VBP NN RB VB) -0.2218168551623495 action type = ParsedQuestion 0.0 lex category (postags) = Unary(WDT VB DT NN IN DT JJS NN) 0.0 lex category (postags) = Unary(WP VB VB NN NN) -0.7333090113097409 question prefix = 'where' ^ answer shape = 'aaa Aaaaa Aaaaa' -0.7997081357168916 template prefix when => who -0.5508938343670193 lex type = Identity ^ rightTag = WP -0.8701203940167822 question prefix = 'how' ^ answer shape = '1 aaaa 11**1' 0.7325793506019701 template arg pos tags = DT JJ NN NN 0.0 lex category (postags) = Unary(WP VB DT NN IN NN NN) 0.0 relSynRule pmi 0.9996351696461145 template arg pos tags = VBN 0.0 question prefix = 'what' ^ answer shape = 'aaa-aaaa' -0.7329441809558555 question prefix = 'how' ^ answer shape = 'aaa 11' 0.8011674571324334 lex category (postags) = Unary(WDT VB DT NN IN NN JJ NN) 0.0 lex category (postags) = Unary(WP VBP NN NN) 0.7891280554542137 lex category (postags) = Unary(WDT NN VBP NN VB IN) 1.422108719445458 template arg pos tags = VBG NN -0.11492156147391464 parser lexical rule = punctIdentity 0.0 answer is def noun -1.8340021889821232 lex category (postags) = Unary(WDT NN NN VBP VB NN) 0.2002918642831084 question prefix = 'what year' ^ isNumber 0.7650492520977745 template arg pos tags = NN JJ -0.1419190076614374 question prefix = 'who' ^ answer shape = 'Aaaa Aaaaa' -0.24917913170375774 lex category (postags) = Unary(WP VBZ NN IN NN) -0.608172199927034 minimum join key similarity 0.35604514334276016 lex category (postags) = Unary(WP VBP JJ NN) 0.8478657424297702 template prefix what => when 0.47427946005107624 parser lexical rule = fullPatternCop 0.46990149580445095 lex category (postags) = Unary(WDT VB JJ NN NNS NN) 1.6556001459321414 lex category (postags) = Unary(WDT NN VBP NN NNS VBP IN) 0.9452754469171835 template prefix when => what -0.33673841663626414 lex category (postags) = Unary(WDT VB DT NN IN DT JJ NN) 0.2743524261218534 question prefix = 'what' ^ answer shape = 'AA ?' 0.08099233856256838 lex type = Unary ^ leftTag = CC -0.8077344035023714 question prefix = 'what' ^ answer shape = 'Aaaaa Aaa' 0.4801167457132433 lex category (postags) = Unary(WDT NN VB NN VB VB) -0.46990149580445095 lex category (postags) = Unary(WP VB NN IN NN) 0.7482670558190443 question prefix = 'when' ^ answer shape = 'Aaaaa' -0.9317767238234221 lex category (postags) = Unary(WP VBP NNS VB IN) 0.0 lex category (postags) = Unary(WDT VB VBN JJ NN) -0.2725282743524261 lex category (postags) = Unary(WDT NN VB NN IN JJ NN) 0.0 lex type = Identity ^ leftTag = IN -1.1842393287121489 dropNameOf -0.9076979204669828 question prefix = 'how many' ^ answer shape = 'Aaaa' 0.06712878511492155 question prefix = 'what' ^ answer shape = 'aaaa aaaa aaaa' 0.009120758847136081 lex type = Identity ^ leftTag = VBN -0.8011674571324334 template pair pmi 2.0896136658507425 lex category (postags) = Unary(WDT VB DT NN IN JJ NN) 0.0747902225465158 lex category (postags) = Unary(WP VB NN NNS NN) 0.0 fbid join key violation 0.0 question prefix = 'what' ^ answer shape = '1111-11-11' 0.7245530828164903 question prefix = 'what' ^ answer shape = 'aaaa-aa-aaaa A-aaaa aaaa' 0.38380153228748637 lex category (postags) = Unary(WRB VBP NNP NNP) 0.041590660342940566 lex category (postags) = Unary(WRB VB JJ NN NNS NN) 0.4118934695366655 question prefix = 'UNK' ^ answer shape = 'Aaa Aaaaa' 0.2002918642831084 lex category (postags) = Unary(WRB VB DT NN NN NN) 0.0 template arg pos tags = NN NN VB 0.6023349142648668 question prefix = 'UNK' ^ answer shape = 'a aaaa' -0.5231667274717257 template arg pos tags = NN NNS LS 0.0 question prefix = 'what' ^ answer shape = 'aaa Aaaaa' -1.0496169281284202 template arg pos tags = DT JJ NN VB -0.9317767238234221 question prefix = 'what' ^ answer shape = 'aaa Aaaa Aaaaa' 0.3568040860999635 lex category (postags) = Unary(WRB VB NN NN) -0.7132433418460415 lex category (postags) = Unary(WRB VB DT NN VB) 0.8701203940167822 lex category (postags) = Unary(WP VB NN NN VB) -0.016782196278730455 parser lexical rule = fullPatternRelType -0.2929587741700108 lex category (postags) = Identity(WDT) -0.8898212331265961 question prefix = 'what' ^ answer shape = 'Aaa' -0.3079168186793141 question prefix = 'how' ^ answer shape = '11 aaa A' -0.659978110178767 question prefix = 'where' ^ answer shape = 'Aaaaa Aaaaa aa Aaaaa' -0.06785844582269251 answer is linked to freebase 0.6242247354979934 lex category (postags) = Unary(WRB VB DT JJ NN VB) 0.9317767238234221 lex category (postags) = Unary(WDT VB DT JJS NN VB) 0.29186428310835466 posToOf 0.02371397300255381 lex category (postags) = Unary(WDT VB NN NN NN VBZ NN) 0.5527179861364466 template arg pos tags = VB NN -0.7344035023713973 question prefix = 'what' ^ answer shape = '?Aaaaa' 1.2612185333819774 template arg pos tags = VB JJR NN 0.0 template arg pos tags = DT NN NN NN -0.011309740970448741 template arg pos tags = NN VB NN 0.0 question prefix = 'what' ^ answer shape = 'aaa aaaa' -0.29004013133892736 parser lexical rule = fullPatternWhenOn -0.09850419554906968 lex category (postags) = Unary(WDT NN VB JJ NN) -0.3101058008026268 lex category (postags) = Unary(WDT VB DT JJ NN NN VB) -0.037942356804086086 lex category (postags) = Unary(WP VBP CD JJ) 0.0 question prefix = 'what' ^ answer shape = 'AA' 0.009120758847136035 lex category (postags) = Unary(WDT NN VB DT NN NN VB NN IN) 0.6683692083181321 template prefix where => what 0.5534476468442175 lex type = Identity ^ leftTag = TO -0.1711054359722729 lex category (postags) = Unary(WDT VB DT JJ NN VBP IN) -0.543232396935425 question prefix = 'who' ^ answer shape = 'aaaa AAA' 0.4308646479387085 parser lexical rule = auxIdentity -0.44326887997081355 lex category (postags) = Unary(WP VBP DT NN IN NN) 0.9565851878876322 question prefix = 'where' ^ answer shape = 'aaa aaaa 1111a' -0.7132433418460415 lex category (postags) = Unary(WRB VB DT NN NN VB) -0.9689894199197373 template arg pos tags = WDT VB JJ NN -0.9627873039036848 lex category (postags) = Unary(WDT NN VBP VBN NN VB) 0.0 lex category (postags) = Unary(WDT NN NN VBP NN VB IN) 0.0 lex category (postags) = Unary(WDT NN VBP DT NN VB) 0.29259394381612547 question prefix = 'be' ^ isNumber -0.7457132433418461 tuple conceptVagueness_f -0.06978468085790701 question prefix = 'how' ^ answer shape = 'aaaa aaaa' -0.11236774899671652 question prefix = 'be' ^ answer shape = 'a1111' -0.7457132433418461 question prefix = 'what' ^ answer shape = 'a aaaa-aaaa aaaa' 0.07114191900766142 template prefix UNK => UNK -0.9627873039036848 question prefix = 'what' ^ answer shape = 'Aaa aaaa' 0.12951477562933236 template arg pos tags = VB JJ 0.0 lex category (postags) = Unary(WP DT NN VBP NN VB) 0.0 lex type = Identity ^ leftTag = 0.24735497993433053 template arg pos tags = JJ JJ NN 0.0 template arg pos tags = NN NNS -0.9452754469171835 lex category (postags) = Unary(WDT VB DT NN IN JJ NN NN) 0.0 question prefix = 'how' ^ answer shape = 'Aaaaa 11aa' -0.6358993068223276 lex category (postags) = Unary(WDT VB NN NN JJ NNS NN) 0.0 template arg pos tags = DT JJ JJ 0.0 question prefix = 'who' ^ answer shape = 'Aaaa' -0.31047063115651224 template arg pos tags = VB IN NN NN 0.0 question prefix = 'where' ^ answer shape = 'Aaaaa' 1.0645749726377234 lex category (postags) = Unary(WDT VB VB DT NN IN NN) 0.9025902955125866 tuple num_extrs_i 0.23171075013440565 lex category (postags) = Unary(WRB VBP JJ NN VB) -0.10871944545786216 question prefix = 'who' ^ answer shape = 'Aaaa Aaaa' 0.19591390003648304 question prefix = 'how many' ^ answer shape = '111,111 aaaa' 0.21196643560744255 template arg pos tags = NNS JJ 0.0 lex category (postags) = Unary(WDT NN VB VBN NN VBP IN) -0.6402772710689529 question prefix = 'what' ^ answer shape = 'Aaaaa aa aaa Aaaaa'a Aaaaa aa Aaaaa' 0.44910616563298067 question prefix = 'what' ^ answer shape = 'Aaaaa Aaa Aaaaa' 0.2725282743524261 lex category (postags) = Unary(WDT VB VB NN) -0.7344035023713973 dropPP -1.999270339292229 lex type = Identity ^ rightTag = VBP -0.8077344035023714 question prefix = 'what' ^ answer shape = 'Aaa Aaaa aa Aaaaa Aaaaa' 0.2542867566581539 question prefix = 'what year' ^ answer shape = 'aaaa' -0.7650492520977745 parser combinator rule = UnaryIdentity 0.0 question prefix = 'how many' ^ isNumber -0.31229478292593943 lex category (postags) = Unary(WP VB DT NN IN DT NN) 0.0 question prefix = 'what' ^ answer shape = 'aaa Aaaaa Aaaaa aaaa' 0.3542502736227654 lex category (postags) = Unary(WP VBZ NN NN) -0.9551258664720905 question prefix = 'what' ^ answer shape = 'AAAa' -0.012404232032105056 lex category (postags) = Unary(WRB VB RB NN VB) 0.556366289675301 lex category (postags) = Unary(WRB JJ NN VB RB IN DT JJ NN) 0.5242612185333819 lex category (postags) = Unary(WDT VB DT NN VB) -1.1185698650127691 answer from namespace 'probase' 0.029186428310835462 template arg pos tags = NN NN NN 0.34002188982123316 template arg pos tags = NN IN JJ 0.0 action type = ProjectAction$ 0.0 template arg pos tags = VB DT CD NN 0.0 question prefix = 'what' ^ answer shape = 'Aa. AAAA' -0.43889091572418826 answer from namespace 'reverb' -0.4593214155417731 template arg pos tags = VB NN NN 0.0 lex category (postags) = Unary(WP NN VBP NN VB VB) 0.4005837285662167 question prefix = 'UNK' ^ answer shape = 'aaaa Aaaaa' 0.46990149580445095 template arg pos tags = RB JJ 0.0 lex category (postags) = Unary(WDT NN VB NN IN DT NN) 0.0 question prefix = 'UNK' ^ answer shape = 'AAAA' -0.5757022984312294 lex category (postags) = Unary(WP VB JJ NN NN VB IN) 0.0 template arg pos tags = JJ NN -0.3414812112367749 action type = DropStopAction$ -0.40897482670558194 lex type = Identity ^ leftTag = NN -0.7763589930682233 lex category (postags) = Unary(WDT NN VB NN IN NN) -0.08099233856256838 lex category (postags) = Unary(WDT NN VB VB IN CD DT NN NN) -0.7303903684786575 lex category (postags) = Unary(WDT VB JJ NN VB) -0.9627873039036848 parser combinator rule = UnaryIntersect -0.4421743889091573 lex category (postags) = Unary(WDT VB DT NN IN NN NN NN) -0.3009850419554907 lex type = Unary ^ leftTag = VB -0.13900036483035388 template arg pos tags = DT JJ 0.0 lex category (postags) = Unary(WDT VB DT NN NN IN NN) 0.8931047063115651 question prefix = 'UNK' ^ answer shape = 'aaa Aaaaa' 0.21597956950018238 lex type = Identity ^ rightTag = VB -0.096315213425757 template arg pos tags = NNP 0.0 lex category (postags) = Unary(WDT NN VBP NN VBP IN) -0.739875957679679 question prefix = 'be' ^ answer shape = 'a aaaa , aaaa aaaa' 0.4841298796059832 lex category (postags) = Unary(WDT VB NN NN VB VB) 0.0 lex category (postags) = Unary(WDT NN VB NN NN) 0.0 lex category (postags) = Unary(WRB VB JJ NN VBN) -0.8011674571324334 template arg pos tags = DT NN IN NN -0.5231667274717257 question prefix = 'what' ^ answer shape = 'Aaa Aaaa' -0.3870850054724553 question prefix = 'how' ^ answer shape = 'a aaaa' 0.30317402407880334 lex category (postags) = Unary(WDT VB DT JJ NN IN DT NN) -0.6450200656694637 lex category (postags) = Unary(WDT VB PRP$ NN) -0.4421743889091573 template prefix how => UNK 0.0 template prefix what => who -0.990879241152864 question prefix = 'how' ^ answer shape = '11' 0.3163079168186793 template prefix what => how many 0.40167821962787303 question prefix = 'what' ^ answer shape = 'aaaa aaa' 0.315213425757023 question prefix = 'what' ^ answer shape = 'Aaaaa Aaaaa Aaaaa' 0.23166727471725648 paraphrase lm -0.8559275264502015 question prefix = 'what' ^ answer shape = 'Aaaaa aaaa' -0.2032105071141919 num lexical rules -1.6143013498723098 lex category (postags) = Unary(WRB NNS VB NN VBN) -0.8777818314483765 lex category (postags) = Unary(WDT NNS DT NN IN DT JJ NN) 0.4421743889091573 lex category (postags) = Unary(WDT VB NN NNS JJS NN) -0.14921561473914635 parser lexical rule = fullPatternWhereIn -1.6811382707041225 lex category (postags) = Unary(WRB JJ NN VBP NN VB) 0.9755563662896753 lex category (postags) = Unary(WRB VBP NN NN VB RP) 0.0 lex category (postags) = Unary(WDT VB VB DT CD NN) 0.0 lex category (postags) = Unary(WRB JJ NN VBP NNS VB) 0.0 dropTypeOf 0.7128785114921561 lex category (postags) = Unary(WDT VB DT NN IN NN NNP) 0.6504925209777453 lex type = Identity ^ leftTag = RP 0.0 template arg pos tags = DT NN -1.5757022984312294 lex category (postags) = Unary(WDT VB DT NN IN NN JJ) 0.0 question prefix = 'who' ^ answer shape = 'Aa. Aaaa' 0.9565851878876322 template arg pos tags = NN VBN 0.8777818314483765 template prefix where => what year 0.4746442904049617 question prefix = 'who' ^ answer shape = 'Aaaaa' -1.385260853703028 template arg pos tags = NN VBP JJ NN 0.6887997081357169 template arg pos tags = IN NN 0.8704852243706677 lex category (postags) = Unary(WRB VBP NN VB) -0.38124771981028815 question prefix = 'what' ^ answer shape = '1111' -0.7854797519153593 lex category (postags) = Unary(WDT VB DT NN VB NN IN) 0.0 template arg pos tags = CD DT NN NN 0.0 lex category (postags) = Unary(WDT VB DT NN NN IN VBG NNP) -0.11492156147391464 lex category (postags) = Unary(WDT NN VB DT NN NN NN) -0.6683692083181321 question prefix = 'UNK' ^ answer shape = 'Aaaaa' -1.1911711054359722 question prefix = 'what' ^ answer shape = 'aaaa aa aaa Aaaaa Aaaaa' 0.15724188252462604 template arg pos tags = NN CD CD 0.0 lex category (postags) = Unary(WRB JJ NN VBP JJ NNS VB) -0.6898941991973733 lex category (postags) = Unary(WP VBP NN NN VBP VB) 0.3042685151404597 lex category (postags) = Unary(WDT VB NN NN NN VBG) -0.5527179861364466 template prefix be => what 0.0 lex category (postags) = Unary(WP VB VB TO JJ NN) -0.8609996351696461 question prefix = 'what' ^ answer shape = 'aaa Aaaaa aaaa' -0.26669098869025903 question prefix = 'how' ^ isDate -0.9073330901130974 question prefix = 'when' ^ answer shape = 'Aaaa' 0.6391827800072966 lex category (postags) = Identity(CC) -0.8077344035023714 lex category (postags) = Unary(WP VBP NN NN VB VB TO) -0.1711054359722729 question prefix = 'how' ^ isNumber 1.0211601605253557 num conjuncts -1.1762130609266692 lex category (postags) = Unary(WRB JJ NNS VB RB IN DT NN) -0.3283473184968989 question prefix = 'what' ^ answer shape = '11 aaaa' 0.9328712148850784 question prefix = 'where' ^ answer shape = '1111' -0.7971543232396936 template arg pos tags = CD 0.0 lex category (postags) = Unary(WP VBP NN JJ VB) 0.1419190076614374 action type = DropStopAction 0.9996351696461145 question prefix = 'what' ^ answer shape = 'Aa Aaaaa' 0.7643195913900036 template prefix UNK => be 0.7508208682962423 answer from namespace 'nell' -0.6242247354979934 lex category (postags) = Identity(WP) -0.9627873039036848 parser lexical rule = ignoreTypesIdentity 0.0 lex category (postags) = Unary(WDT VB DT NN NN IN DT NN) 0.4035023713973003 question prefix = 'who' ^ answer shape = 'aaa Aaaaa' 0.1944545786209413 question prefix = 'where' ^ answer shape = 'aaa Aaaaa Aaa' 0.8704852243706677 template prefix be => who 0.0 template prefix who => who 1.4611455673112004 lex category (postags) = Unary(WDT NN VB DT NN NN VBP IN) 0.0 question prefix = 'what' ^ answer shape = 'Aaaaa aaaa aaa' -0.5705946734768332 template prefix what => how 0.2725282743524261 lex category (postags) = Unary(WP VB JJ NN) 0.0 question prefix = 'what' ^ answer shape = 'Aaaaa Aaa aaaa' 0.2141554177307552 lex category (postags) = Unary(WDT VB DT NN NN IN JJ NN) 0.1908062750820868 lex category (postags) = Unary(WP VBP NN VB) 0.43013498723093757 question prefix = 'what' ^ answer shape = 'Aaaaa?a aaaa' -0.7814666180226195 lex category (postags) = Unary(WP VB DT NN IN NN) -0.8059102517329442 lex category (postags) = Unary(WDT VB DT NN IN NN NNS JJS NN) 0.14921561473914635 lex category (postags) = Unary(WRB JJ NN VB JJ NN NN) -0.44509303174024084 question prefix = 'how many' ^ answer shape = 'Aaaaa' -0.604888726742065 question prefix = 'UNK' ^ answer shape = 'Aaa aaaa aaaa' -0.2002918642831084 answer from namespace 'freebase' 0.704487413352791 lex category (postags) = Unary(WDT VB JJ NNS) -0.4162714337832908 question prefix = 'what' ^ answer shape = '? Aaaa' 0.6431959139000365 question prefix = 'what' ^ answer shape = 'Aaaa Aaaaa Aaaaa' 0.025173294418095585 parser lexical rule = conjIdentity -0.8077344035023714 question prefix = 'how' ^ answer shape = 'aaa aaaa' 0.7074060561838744 question prefix = 'where' ^ answer shape = 'Aaaaa Aaaa' 0.556366289675301 lex type = Identity ^ leftTag = VBG -0.5527179861364466 lex type = Identity ^ leftTag = RB 0.0 question prefix = 'how' ^ answer shape = 'aaaa Aaa Aaaa' -0.7325793506019701 lex category (postags) = Unary(WP VB NN IN NN NN) 0.4035023713973003 lex type = Identity ^ rightTag = WRB -0.8274352426121854 whatDate -0.8011674571324334 lex category (postags) = Unary(WDT VB NN NN) 0.2914994527544692 lex category (postags) = Unary(WDT NN VBP NN JJ NN) 0.0 lex category (postags) = Unary(WDT VB DT JJ NN VB) 0.9029551258664721 question prefix = 'how' ^ answer shape = 'a aaa aaaa' -0.5964976286026997 lex category (postags) = Unary(WDT NN VBP RP DT NN) 0.6450200656694637 template arg pos tags = NN IN JJ NN 0.688070047427946 lex category (postags) = Unary(WDT VB DT NN IN DT NN NN) 1.4761036118205035 template arg pos tags = DT RBS JJ NN 0.0 question prefix = 'what' ^ answer shape = 'Aaaaa--Aaaaa aaaa aaa aaaa--11aa aaaa' 0.7303903684786575 lex category (postags) = Unary(WDT JJ NN VB JJ NN) 0.0 parser lexical rule = fullPatternDobj 0.1484859540313752 tuple freq_i 0.6551340867111581 template arg pos tags = DT NN NN JJ 0.7617657789128056 question prefix = 'UNK' ^ answer shape = 'aaaa' -0.8475009120758847 lex category (postags) = Unary(WRB JJ NN VB DT NN NN) -0.21196643560744255 question prefix = 'when' and isDate 0.9996351696461145 lex category (postags) = Unary(WDT NN VBP JJ NN VB) 0.5370302809193723 query relation is light verb 1.0244436337103249 question prefix = 'where' ^ answer shape = 'Aaa Aaaa Aaaa' -0.6683692083181321 question prefix = 'where' ^ isDate -0.7971543232396936 lex category (postags) = Unary(WDT VB NN NNS NN) 0.09740970448741337 lex category (postags) = Unary(WDT NN VBP DT NN NN NN VB) -0.12513681138270705 template prefix what => UNK 0.2630426851514046 template arg pos tags = RB IN DT NN 0.3283473184968989 question prefix = 'who' ^ answer shape = 'aaa-aaaa-aaaa' 0.3619117110543597 lex category (postags) = Unary(WP VB NN NN) 0.7792776358993068 question prefix = 'where' ^ answer shape = 'Aaa Aaaa' -0.9675300985041956 lex category (postags) = Unary(WDT VB JJ NNS VBP) 0.0 question prefix = 'what' ^ answer shape = 'aaa 111?A' 0.47172564757387814 question prefix = 'what' ^ answer shape = 'aaa Aaaaa Aaaaa' -0.23166727471725646 question prefix = 'what' ^ answer shape = 'aaaa aaa aaaa' -0.7504560379423568 lex category (postags) = Unary(WP VB IN NN) 0.8059102517329442 template prefix who => where -0.8478657424297702 template prefix how => what 0.9098869025902956 lex category (postags) = Unary(WP VBP NNS VB) 0.0 parser lexical rule = fullPatternSubj 1.135716891645385 question prefix = 'who' ^ answer shape = 'Aaa Aaaaa' 0.5804450930317402 lex category (postags) = Unary(WDT VB JJ NN) 1.5804450930317402 question prefix = 'who' ^ answer shape = 'aaa aaa aaaa' -0.1039766508573513 template prefix when => where -0.9996351696461145 template arg pos tags = JJ NN NN 0.0 question prefix = 'what' ^ answer shape = 'Aaaaa'a Aaaaa' 0.34695366654505655 action type = ExecutionAction$ 0.0 question prefix = 'what year' ^ answer shape = '1111' 0.7650492520977745 question prefix = 'how' ^ answer shape = '1 aaaa' 0.09084275811747544 question prefix = 'what' ^ answer shape = 'a aaa' -0.2743524261218534 question prefix = 'who' ^ answer shape = 'Aaaaa (Aa aaa aaaa)' -0.23859905144107996 question prefix = 'UNK' ^ answer shape = 'Aaaa' -0.5169646114556732 question prefix = 'how' ^ answer shape = 'Aaa Aaaaa Aaa Aaa' 0.659978110178767 template arg pos tags = DT JJ NN VBN 0.0 lex category (postags) = Unary(WP VBP NN VB NN TO) 0.0 question prefix = 'how' ^ answer shape = '111.111' 0.9573148485954032 parser lexical rule = fullPatternPoss 1.036118205034659 question prefix = 'what' ^ answer shape = 'aaaa aaaa aaa' -0.5928493250638454 question prefix = 'what' ^ answer shape = 'aaaa aaaa' -0.35716891645384896 template prefix what => where -0.8445822692448012 question prefix = 'UNK' ^ answer shape = 'Aaaaa Aaaaa' 0.19299525720539948 lex category (postags) = Unary(WDT JJ NN VB IN NN) 0.688070047427946 lex type = Unary ^ leftTag = WRB 0.4005837285662167 lex category (postags) = Unary(WP VB NNP NNP VB) -0.5519883254286757 template arg pos tags = NN NNS VBP 0.0 template pair count1 -2.0042169835066455 lex category (postags) = Unary(WP VBP DT NN NN VB) 0.0 parser lexical rule = fullPatternTypeSubj -0.9525720539948924 lex category (postags) = Unary(WDT NN VBP NN NN VBP DT NN NN IN) 0.0 question prefix = 'how' ^ answer shape = '1111' 0.46625319226559647 question prefix = 'what' ^ answer shape = 'Aaaaa a aaaa' 0.6698285297336739 question prefix = 'UNK' ^ answer shape = 'aa aaaa' 0.08464064210142283 lex category (postags) = Unary(WP VBP DT JJ NN NN) 0.20102152499087922 lex category (postags) = Unary(WDT VB IN NN) 0.15286391827800072 lex type = Identity ^ rightTag = 0.0 lex category (postags) = Unary(WDT VB DT NN TO DT NN) 0.7325793506019701 parser lexical rule = whIdentity -2.2597592119664354 lex category (postags) = Unary(WP VBP NN NN NN VB) 0.6636264137176213 template prefix how => what year -0.8011674571324334 question prefix = 'who' ^ answer shape = 'Aaaaa Aaaa' 0.2013863553447648 lex category (postags) = Unary(WDT VB DT JJ JJS NN IN DT NN) 0.0 question prefix = 'what' ^ isDate -0.40386720175118573 template arg pos tags = VBP NN 0.6822327617657789 question prefix = 'what' ^ answer shape = 'aaaa aa aaaa aaaa' 0.21524990879241152 parser lexical rule = fullPatternWhereIs -0.3870850054724553 lex category (postags) = Unary(WDT VB DT NN IN DT NN) -0.8394746442904051 question prefix = 'who' ^ answer shape = 'aaa AAA' -0.7676030645749726 lex category (postags) = Unary(WDT NN VBP JJ NN VB IN) 0.0 lex category (postags) = Unary(WRB VB DT NN NN) -0.8931047063115651 lex category (postags) = Unary(WDT VB JJ NN VB VB) 0.6202116016052536 lex category (postags) = Unary(WP VB NN) 0.0 lex category (postags) = Unary(WDT VB NN NN VBZ NN) -0.30134987230937615 question prefix = 'what' ^ answer shape = 'Aaaaa?Aaaaa Aaaa Aaaa' 0.13644655235315584 question prefix = 'what' ^ answer shape = '11 aaa aaaa' -0.7223641006931777 question prefix = 'when' ^ answer shape = 'Aaaaa 11' -0.5713243341846042 question prefix = 'where' ^ answer shape = 'Aaaaa Aaaaa' 0.5133163079168187 lex type = Identity ^ leftTag = WP -0.9627873039036848 question prefix = 'who' ^ answer shape = 'Aaaaa & Aaaaa' -0.6898941991973733 lex type = Unary ^ leftTag = -0.24735497993433053 question prefix = 'when' ^ isDate 1.9277635899306822 question prefix = 'what' ^ answer shape = 'Aaaaa aa Aa Aaaaa' 0.3889091572418826 lex type = Identity ^ leftTag = VBP 0.21597956950018238 lex category (postags) = Unary(WRB JJ NN VBP DT JJ NN VB) -0.5242612185333819 lex category (postags) = Unary(WDT VB VB NN NN) 0.0 lex category (postags) = Unary(WP VB NN IN CD) 0.9273987595767967 lex type = Identity ^ leftTag = NNS -1.0594673476833272 question prefix = 'who' ^ answer shape = 'Aaa Aaa' 0.1039766508573513 question prefix = 'what' ^ answer shape = 'a ?aaa' -0.9204669828529733 question prefix = 'where' and isDate -0.9996351696461145 lex category (postags) = Unary(WDT VB JJ NN IN NN) 0.8719445457862094 question prefix = 'where' ^ answer shape = 'Aa Aaaaa aaa Aaa Aaaa' -0.041590660342940566 question prefix = 'who' ^ answer shape = 'aaa 11aa aaaa' -0.9689894199197373 template arg pos tags = JJ NNP -0.2520977745348413 question prefix = 'what' ^ answer shape = 'Aaaaa aaaa aaaa aaaa' 0.3060926669098869 lex category (postags) = Unary(WP VB VB JJ NN IN NN) 0.0 lex category (postags) = Unary(WRB VB NN NNS NN) 0.0 lex category (postags) = Unary(WP VB DT NN NN VB) 0.9689894199197373 lex category (postags) = Unary(WP VBP VB DT NN) -0.8701203940167822 lex category (postags) = Unary(WDT NN VBP NN VB) -0.4797519153593579 question prefix = 'what' ^ answer shape = 'aaa Aaaaa Aaa' 0.855162349507479 question prefix = 'what' ^ answer shape = 'aaaa Aaaaa' 0.40933965705946734 question prefix = 'where' ^ answer shape = 'a Aaaaa Aaaaa aaaa' 0.8128420284567677 question prefix = 'when' ^ answer shape = '11 Aaaa' 0.5746078073695732 question prefix = 'where' ^ answer shape = 'Aaaa' 0.6267785479751915 question prefix = 'what' ^ answer shape = 'a-aaaa' -0.7544691718350967 lex category (postags) = Unary(WDT NN VBP NN VBP TO) 0.0 question prefix = 'who' ^ answer shape = 'aaaa aaaa' 0.6683692083181321 template prefix what => what 0.7701568770521707 template arg pos tags = JJ NNS VBP 0.0 lex category (postags) = Unary(WRB JJ NN VB IN NN) 0.0 lex category (postags) = Unary(WP VBP CD) -0.9273987595767967 question prefix = 'what' ^ answer shape = '?aaaa aaaa?' 0.01824151769427218 question prefix = 'UNK' ^ answer shape = 'aaa Aaaaa aaaa' 0.9029551258664721 lex category (postags) = Unary(WDT VB DT NN NN JJ NN) -0.7617657789128056 lex category (postags) = Unary(WDT NN VBP JJ NNS VB) 0.0 question prefix = 'what' ^ answer shape = 'aa aaaa' 0.037942356804086086 dropAdverb -0.7544691718350967 template arg pos tags = WDT JJ VB VBP 0.7508208682962423 lex category (postags) = Unary(WP VB VBN NN) 0.0 question prefix = 'when' ^ answer shape = '1111 aaaa aaaa' -0.10981393651951843 lex category (postags) = Unary(WP VBP JJ NNS VBP IN) 0.0 lex category (postags) = Unary(WDT NN VB VB JJ NNP) 0.2520977745348413 template prefix when => when -0.46917183509668003 template arg pos tags = WDT NN 0.0 template prefix who => what -0.21233126596132812 template prefix where => who -0.8704852243706677 template arg pos tags = DT NN VB 0.9875957679678949 lex type = Identity ^ leftTag = CD 0.08609996351696461 lex category (postags) = Unary(WRB VBP DT CD DT NN JJ NN VB) 0.0 template prefix where => how many 0.11528639182780007 lex category (postags) = Unary(WRB VB NN JJ JJ VBP IN) 0.0 template prefix UNK => where 0.0 action type = ParaphraseRule -1.726742064939803 lex category (postags) = Unary(WP VB JJ NN VB) 0.8609996351696461 question prefix = 'what' ^ answer shape = 'AAAA AAAA' 0.04706311565122218 question prefix = 'who' ^ answer shape = 'aaaa aaaa aaaa' 0.02991608901860635 question prefix = 'when' ^ answer shape = 'Aaaaa 11 1111' -0.019336008755928558 lex category (postags) = Unary(WP VB NN NNS JJS NN) -0.4035023713973003 question prefix = 'what' ^ answer shape = 'Aaaaa aaaa aa Aaaaa' 0.5060197008391099 question prefix = 'what' ^ answer shape = 'Aaa aaaa aaaa aaaa' 1.1656329806639913 lex category (postags) = Unary(WDT NN VBP IN NN) 0.008755928493250638 question prefix = 'UNK' ^ answer shape = 'Aaaa Aaa Aaaaa' 0.7508208682962423 question prefix = 'what' ^ answer shape = 'Aaaaa Aaaaa aaaa' -0.8566216709230208 template pair count2 -2.9296376158757527 lex category (postags) = Unary(WDT NN VBP NN NN VB TO) 0.0 lex category (postags) = Unary(WDT JJ NN VBP JJ NN) 0.6887997081357169 lex type = Unary ^ leftTag = NN -0.4421743889091573 template arg pos tags = NN NNS NN 0.6431959139000365 question prefix = 'how many' ^ answer shape = 'Aaaaa Aaaaa' -0.2933236045238964 question prefix = 'what' ^ answer shape = 'a aaaa aaaa' -0.4771981028821598 lex category (postags) = Unary(WDT JJ NN VBP DT JJ NN VB) 0.0 question prefix = 'who' ^ answer shape = 'Aaaaa aa-Aaaaa' 0.8059102517329442 lex category (postags) = Unary(WDT JJ NN VBP NN VB) -0.688070047427946 lex category (postags) = Unary(WP VB VBN NNP NNP VBZ NN) -0.03575337468077344 lex category (postags) = Unary(WDT VB DT JJ NN IN NN) 0.0 parser lexical rule = fullPatternDefn -1.2506384531192996 question prefix = 'how' ^ answer shape = 'aaa aaaa aaaa' -0.46625319226559647 parser lexical rule = fullPatternHaveProp 0.026267785479751914 question prefix = 'what' ^ answer shape = 'aaaa' -2.579350601970084 question prefix = 'where' ^ answer shape = 'Aaaaa Aaaa Aaaa' 0.8931047063115651 lex category (postags) = Unary(WDT VB DT NN IN DT JJ NN NN) -0.16307916818679313 question prefix = 'how many' ^ answer shape = 'aaaa' 0.3746807734403502 lex category (postags) = Unary(WDT VB DT NNS IN JJ NN) -0.09157241882524625 question prefix = 'what' ^ answer shape = 'Aaaaa Aaaaa' 0.08427581174753729 lex category (postags) = Identity(VB) -0.44326887997081355 question prefix = 'what' ^ answer shape = 'Aaaaa Aaaa' -0.929222911346224 question prefix = 'what' ^ answer shape = 'Aaa Aaaa Aaaa' -0.527544691718351 lex category (postags) = Unary(WDT VB NN JJ VB VB) -0.7672382342210872 lex category (postags) = Unary(WDT NN VB DT NN VB IN) -0.7325793506019701 lex type = Identity ^ rightTag = NN 1.1514045968624589 template arg pos tags = NN NN 0.6763954761036118 uses full parser pattern 0.9996351696461145 question prefix = 'how' ^ answer shape = 'Aaaaa 11' -0.27143378329076984 lex category (postags) = Unary(WDT VB JJ NN NNS NN NN) -0.9547610361182051 question prefix = 'what' ^ answer shape = 'a aaaa' -0.008391098139365227 question prefix = 'what' ^ answer shape = 'aa aaa aaaa' -0.4264866836920832 question prefix = 'when' ^ answer shape = 'Aaaaa 11 , 1111' 0.019336008755928558 template arg pos tags = NNS 0.0 lex category (postags) = Unary(WDT NN VBP NN NN VB IN) -0.3268879970813572 lex category (postags) = Unary(WDT VB VBG NN NNS NN) 0.11492156147391464 lex category (postags) = Unary(WRB VB JJ NN VB) -0.8478657424297702 question prefix = 'who' ^ answer shape = 'Aaa Aaaa' -0.016782196278730455 lex category (postags) = Unary(WDT NN VB IN DT NN) 0.0 parser lexical rule = fullPatternProperty 1.4739146296971908 lex category (postags) = Unary(WP VBP NN NNS VB) 0.0 question prefix = 'what' ^ answer shape = 'aaaa-aaaa' 0.6278730390368479 lex category (postags) = Unary(WP VB DT NN IN DT JJ NN) 0.0 question prefix = 'who' ^ answer shape = 'aaa aaaa' 0.18642831083546152 question prefix = 'what' ^ isNumber -0.39255746078073694 template arg pos tags = JJ NN IN JJ 0.0 template prefix UNK => why 0.4005837285662167 lex category (postags) = Unary(WDT VB DT NN IN CD DT NN NN) 0.7303903684786575 template prefix UNK => when 0.0 lex type = Unary ^ leftTag = VBP 0.0 question prefix = 'who' ^ isDate -0.8478657424297702 lex category (postags) = Unary(WDT VB DT NN NN VB IN) 0.0 template pair count12 2.0999082942234693 question prefix = 'who' ^ answer shape = 'Aaaaa Aaaaa' 1.1342575702298432 lex category (postags) = Unary(WRB JJ NN VBP JJ NN VB) -0.9368843487778183 template prefix how many => what 0.5403137541043415 lex category (postags) = Unary(WDT VB DT NN IN NN) 1.3495074790222548 question prefix = 'what' ^ answer shape = 'AAAA' -0.9927033929222913 lex category (postags) = Unary(WRB VB JJ NN) -0.5899306822327618 question prefix = 'what' ^ answer shape = 'Aa'aaa-aa' 0.0722364100693178 tuple popularity_i 0.5574075851565106 template arg pos tags = WP VBP NN NN 0.0 template arg pos tags = '' NN '' 0.0 lex category (postags) = Unary(WDT VBP NN NN) 0.0 template prefix UNK => who 0.01568770521707406 question prefix = 'be' ^ answer shape = 'Aaaaa' 0.26158336373586283 lex category (postags) = Unary(WRB VBP NNP NNP VB) -0.041590660342940566 lex category (postags) = Unary(WP VBP DT NN VB) -0.9573148485954032 template arg pos tags = VB JJ NN 0.0 lex type = Identity ^ leftTag = VB 1.150674936154688 question prefix = 'who' ^ answer shape = 'Aaaaa aaaa 111 aaaa aaaa aaaa' 0.704487413352791 template arg pos tags = WRB VBP NNP NNP 0.0 question prefix = 'what' ^ answer shape = 'aa aaaa aaaa' -0.3889091572418826 template arg pos tags = RB 0.543232396935425 lex category (postags) = Unary(WRB VB NN RB VB) 0.09923385625684056 template arg pos tags = NN IN NN 0.0 template arg pos tags = VBN JJ 0.0 template arg pos tags = NNS JJS NN -0.4035023713973003 lex category (postags) = Unary(WRB JJ NN VBP NN NN VB) 1.3940167821962788 question prefix = 'who' ^ answer shape = 'Aaa' 0.4035023713973003 template arg pos tags = VB JJ NNP 0.2520977745348413 question prefix = 'where' ^ answer shape = 'Aaaa aaa Aaaaa' -0.8898212331265961 lex type = Identity ^ leftTag = WDT -0.8898212331265961 question prefix = 'what' ^ answer shape = 'Aaaaa Aaaaa aa Aaaaa' 0.05107624954396206 question prefix = 'what year' ^ isDate 0.7650492520977745 question prefix = 'when' ^ answer shape = 'aaa 1111 'a' 0.29952572053994897 question prefix = 'how' ^ answer shape = 'aaaa' -0.34950747902225465 question prefix = 'what' ^ answer shape = 'Aaa Aaaaa' -0.5257205399489238 template arg pos tags = WDT NN VB NN -0.46990149580445095 lex category (postags) = Unary(WRB VBP NN NN VB) 0.0 question prefix = 'who' ^ answer shape = 'Aaaaa aaaa' -0.608172199927034 question prefix = 'UNK' ^ answer shape = 'Aaaaa.' 0.5169646114556732 question prefix = 'UNK' ^ isNumber 0.0 question prefix = 'how many' ^ answer shape = 'aaaa://aa.aaaa.aaa/aaaa/Aaa%11Aaaaa%11Aaaa%11(AA%11aaaa)' -0.5242612185333819 lex category (postags) = Unary(WDT JJ NN VB RB IN DT NN) 0.3283473184968989 lex category (postags) = Unary(WDT NN VB DT NN NN JJ) 0.7617657789128056 template arg pos tags = VBP DT NN -1.1514045968624589 template arg pos tags = DT JJ NN -1.2013863553447646 template arg pos tags = JJ NNS NN -0.6504925209777453 question prefix = 'UNK' ^ isDate 0.0 question prefix = 'what' ^ answer shape = 'Aaaa' -0.6369937978839839 template prefix UNK => what -1.6563298066399126 parser lexical rule = fullPatternCopRel -0.48704852243706687 question prefix = 'what' ^ answer shape = '?AAAA' -0.5056548704852244 question prefix = 'where' ^ answer shape = 'Aa' 0.09923385625684056 steps -3.2630426851514045 lex category (postags) = Unary(WDT NN VBP DT NN) -0.16380882889456405 question prefix = 'who' ^ answer shape = 'Aaa 11-aaaa-aaa' -0.15432323969354256 question prefix = 'when' ^ answer shape = '1111' 1.3772345859175483 lex category (postags) = Unary(WDT VB DT NN IN NN NN) -1.363006202116016 template prefix when => what month 0.0 action type = AbstractArgAction -2.7347683327252827 lex category (postags) = Unary(WRB VB DT NN NNS VB) 0.0 template arg pos tags = WRB VB VBN -0.8898212331265961 lex category (postags) = Unary(WDT RB VBP NN NN) -0.3042685151404597 lex category (postags) = Unary(WP VBP NNP) 0.0 question prefix = 'what' ^ answer shape = 'Aaaa aa aaa Aaaa' 0.8515140459686246 answer from namespace 'openie4' -1.7599416271433783 question prefix = 'when' ^ answer shape = 'Aaa' 0.10981393651951843 question prefix = 'what' ^ answer shape = '?aaaa aaaa ?' -0.5946734768332725 lex category (postags) = Unary(WDT VB DT NN IN DT NN NN NN) -0.011309740970448741 lex category (postags) = Unary(WRB VB VBN NN NNS NN) -0.8898212331265961 lex category (postags) = Unary(WP VB NNP NNP) 0.5519883254286757 question prefix = 'where' ^ answer shape = 'a aaaa' -0.8128420284567677 lex category (postags) = Unary(WRB JJ NN VBP VB NN NNS) -0.6431959139000365 question prefix = 'what' ^ answer shape = 'aaaa.aaa' -0.3542502736227654 lex category (postags) = Unary(WRB VB NN) -0.9230207953301715 lex category (postags) = Unary(WP VBP NN CD CD) -0.47318496898942 lex category (postags) = Unary(WRB VB NN VB) -0.556366289675301 question prefix = 'how' ^ answer shape = 'aaa-AA, aaa-aaaa aaaa aaaa' 0.8847136081721999 question prefix = 'who' ^ isNumber -0.4188252462604889 template arg pos tags = JJ NN VB -0.02006566946369938 lex category (postags) = Unary(WRB VB NN NN VBZ NN NN) 0.7887632251003283 question prefix = 'what' ^ answer shape = 'Aaaaa'a' -0.03319956220357534 lex category (postags) = Unary(WDT NN VB NNS VB IN) 0.0 parser lexical rule = fullPatternTypeDobj 0.21853338197738048 question prefix = 'how' ^ answer shape = '111 aaaa aaaa' -0.8847136081721999 lex category (postags) = Unary(WDT VB DT JJS NN IN DT NN) 0.0 question prefix = 'what' ^ answer shape = 'aaaa-aaaa aaaa' 0.43305363006202113 template arg pos tags = NNP NNP -0.5519883254286757 template arg pos tags = NN VBP NN -0.9109813936519519 lex category (postags) = Unary(WP VBP NN NN VB) 1.2323969354250273 lex type = Unary ^ rightTag = 0.0 lex category (postags) = Unary(WDT VB NN IN NN) -0.9496534111638089 lex category (postags) = Unary(WDT NN VBP DT JJ NN VBP JJ NN IN) 0.0 template arg pos tags = JJ JJ 0.6504925209777453 template arg pos tags = VBP NNS 0.0 question prefix = 'where' ^ answer shape = 'aaaa' -0.809923385625684 template prefix UNK => how 0.0 question prefix = 'where' ^ answer shape = 'aaaa-aaaa' -0.6950018241517695 lex category (postags) = Unary(WRB VB VBN NN) 1.8128420284567677 query similarity with question 3.3445331594912027 question prefix = 'what' ^ answer shape = 'aaaa.' 0.479022254651587 template arg pos tags = NN NNS JJS NN 0.14921561473914635 template arg pos tags = JJ VB VBP NN -0.7508208682962423 lex category (postags) = Unary(WDT NN VB NN VB) 0.1977380518059103 template arg pos tags = VB DT NN 0.03246990149580445 question prefix = 'how many' ^ answer shape = 'Aaaa Aaaaa' 0.9875957679678949 lex category (postags) = Unary(WP VBP NN NN VBP) 0.0 lex category (postags) = Unary(WDT VB DT NN) 0.0 question prefix = 'when' ^ isNumber 1.1787668734038672 lex category (postags) = Unary(WP VBP DT NN NN NN) 0.0 question prefix = 'who' ^ answer shape = 'aaa Aaa Aaaa Aaaa' 0.39584093396570597 lex type = Identity ^ leftTag = JJ 1.4928858080992338 lex type = Unary ^ leftTag = CD 0.7935060197008391 question prefix = 'what' ^ answer shape = '1,111a' -0.3535206129149946 question prefix = 'who' ^ answer shape = 'aaa Aaaaa Aaaaa' -0.3619117110543597 question prefix = 'where' ^ answer shape = 'aaa AAA' 0.7971543232396936 lex category (postags) = Unary(WRB VB NN VBN) 0.8777818314483765 question prefix = 'how' ^ answer shape = 'Aaaaa' -0.8011674571324334 template prefix who => when -0.9689894199197373 question prefix = 'when' ^ answer shape = 'Aaaaa 1 , 1111' -0.3914629697190807 lex category (postags) = Unary(WDT NN VB DT JJ NN VB) 0.0 question prefix = 'how many' ^ answer shape = 'Aaaaa Aaaa' 0.1495804450930317 template arg pos tags = JJ 1.038672017511857 lex category (postags) = Unary(WDT VB VB JJR NN) 0.0 lex category (postags) = Unary(WDT NNS DT NN IN JJ NN) -0.1908062750820868 question prefix = 'what' ^ answer shape = 'aaaa aa aaaa aaaa aaaa aaaa aaa aaaa aa aaaa aaaa' 0.6840569135352061 lex category (postags) = Identity(WRB) -0.4071506749361547 lex category (postags) = Unary(WP VBP VB NN IN DT NN) -0.2002918642831084 lex type = Identity ^ leftTag = WRB -0.8077344035023714 template prefix when => how many -0.44509303174024084 question prefix = 'what year' and isDate 0.9996351696461145 lex category (postags) = Unary(WDT JJ NN VBP NN NNS VB) 0.0 question prefix = 'what' ^ answer shape = 'AAA' 0.269974461875228 question prefix = 'how' ^ answer shape = '11 aaaa' 0.10871944545786216 question prefix = 'what' ^ answer shape = 'aaaa?a aaaa aaaa' -0.037942356804086086 lex category (postags) = Unary(WP VBP NN VB IN) 0.23823422108719444 question prefix = 'how many' ^ isDate 0.0 template prefix how => where -0.10871944545786216 lex category (postags) = Unary(WDT VB DT JJS NN VB RB VB) -0.29186428310835466 template arg pos tags = NN VBP 0.0 action type = TemplatePair -2.7347683327252827 lex category (postags) = Unary(WP VBP NN) -1.8664720904779277 template prefix where => when -0.9996351696461145 lex category (postags) = Unary(WDT VB NN IN NN JJ) 0.7311200291864283 lex category (postags) = Unary(WP VBP VB DT NN IN NN) -0.9565851878876322 question prefix = 'who' ^ answer shape = 'Aaaaa Aaaaa aa Aaaaa' -0.9273987595767967 lex category (postags) = Unary(WDT VB DT JJ NN IN NNP) 0.0 template arg pos tags = JJ VB 0.0 lex category (postags) = Unary(WDT VB DT JJ NN) -1.3451295147756293 question prefix = 'who' ^ answer shape = 'aaaa' -0.7351331630791682 lex category (postags) = Identity(CD) 0.8796059832178037 question prefix = 'what' ^ answer shape = 'a aaaa aaa' 0.7617657789128056 template arg pos tags = NN VB 1.20977745348413 lex category (postags) = Unary(WDT NN WDT NN VB) 0.0 lex category (postags) = Unary(WDT VB DT NN NN IN DT JJ NN) -0.07515505290040136 lex category (postags) = Unary(WRB VB DT PRP JJ NN) 0.0 question prefix = 'where' ^ isNumber -1.5103976650857351 lex category (postags) = Unary(WDT NN VBP NN VBP VB) 0.0 lex category (postags) = Unary(WP VB DT JJ NN IN NN) 0.0 lex category (postags) = Unary(WDT VB DT NN NN) -0.41663626413717614 lex category (postags) = Unary(WP VB DT NN NN IN DT JJ NN NN) 0.0 question prefix = 'what' ^ answer shape = 'Aaaaa' -0.6917183509668005 lex category (postags) = Identity(WRB RB) 0.0 lex type = Unary ^ rightTag = VB -0.4421743889091573 template prefix where => UNK 1.035388544326888 lex category (postags) = Unary(WP VBP DT NN VB IN) 0.16380882889456405 lex category (postags) = Identity(NNS) 0.0 parser lexical rule = fullPatternWhenIn 0.6410069317767237 template arg pos tags = NN -2.1280554542137904 question prefix = 'what' ^ answer shape = 'Aaaa Aaaaa' 0.32761765778912805 question prefix = 'what' ^ answer shape = 'Aaaaa AAa' -0.08099233856256838 template prefix who => how many -0.6898941991973733 template is typed -0.9689894199197373 lex category (postags) = Unary(WDT NN VBP NN VB NN IN) -0.9109813936519519 tuple conf_f -0.8841977847922853 question prefix = 'who' ^ answer shape = 'AA-Aa Aaaaa' -0.704487413352791 lex category (postags) = Unary(WRB VBP NN JJ VB VB) 0.0 lex category (postags) = Unary(WDT VB NN) 0.7344035023713973 question prefix = 'what' ^ answer shape = 'aa/aaa' -0.16380882889456405 question prefix = 'how' ^ answer shape = 'AAA AAAA' -0.5180591025173295 lex category (postags) = Unary(WDT VB DT NN IN NNP) 0.0 template arg pos tags = DT NN NN -0.19919737322145203 lex category (postags) = Unary(WDT CD NN VBP JJ NN) -0.6887997081357169 lex type = Identity ^ leftTag = NNP 1.3812477198102882 lex category (postags) = Unary(WDT NN VBP DT JJ NN VB) 0.07515505290040136 question prefix = 'what' ^ answer shape = 'Aaa Aaaaa aaa Aaaa aa aaa Aaaaa Aaaaa' -0.5501641736592484 lex category (postags) = Unary(WDT NN VB DT NN VB) -0.26705581904414444 question prefix = 'when' ^ answer shape = 'Aaaaa Aaaaa' -0.9959868661072602 template arg pos tags = DT NN NN VB 0.6683692083181321 question prefix = 'what' ^ answer shape = '?Aaaaa ?' 0.7672382342210872 template prefix when => UNK -0.10981393651951843 lex category (postags) = Unary(WP VB DT NN IN NN VBN) 0.0 lex category (postags) = Unary(WDT NN VBP NN JJ VB) 0.0 question prefix = 'who' ^ answer shape = 'Aaaaa aa Aaaaa' 0.8318132068588107 lex category (postags) = Identity(VBP) 0.0 lex category (postags) = Unary(WDT VB DT NN IN DT RBS JJ NN) 0.0 template prefix where => where -0.005107624954395984 template arg pos tags = WDT NN VBP NN 0.4005837285662167 lex category (postags) = Unary(WRB VBP NN VB NN IN) 0.0 question prefix = 'UNK' ^ answer shape = 'aaaa aaaa' -0.055454213790587376 lex category (postags) = Unary(WDT VB DT NN NN IN NN NN) 0.0 lex category (postags) = Unary(WDT VB NNP) 0.0 lex category (postags) = Unary(WDT VB IN NN NN) -0.05107624954396206 template arg pos tags = NN VBP NN VB 0.0 lex category (postags) = Unary(WDT VBP NN NN VB IN) -0.6410069317767239 lex category (postags) = Unary(WP VB DT NN IN NN CD CD) 0.47318496898942 lex category (postags) = Identity(.) 0.0 question prefix = 'what' ^ answer shape = 'Aaa Aaaaa Aaaaa' -0.04377964246625321 question prefix = 'what' ^ answer shape = 'Aaaaa Aaaa Aaaa' 1.3090113097409706 lex category (postags) = Unary(WDT NN VB NN VB IN) 0.8445822692448012 lex category (postags) = Unary(WDT NN VB VBP NN) 0.0 template arg pos tags = VB NN VBN -0.8777818314483765 question prefix = 'what' ^ answer shape = 'AA Aaaaa' 0.9452754469171835 lex category (postags) = Unary(WP VBD NN) -0.1039766508573513 lex category (postags) = Unary(WDT VB DT NN IN NN NNS NN) 0.6431959139000365 lex category (postags) = Unary(WRB VBP NN VBN IN) 0.0 ================================================ FILE: oqa-core/questions.txt ================================================ Who assassinated JFK? ================================================ FILE: oqa-core/src/main/resources/application.conf ================================================ qa.maxDerivs = 100 qa.maxUQueries = 100 qa.maxParaphrases = 100 qa.maxAnswerGroups = 50 qa.defaultParaphraser = templatesLm qa.defaultParser = regex qa.defaultExecutor = identity qa.defaultGrouper = basic qa.defaultScorer = numDerivations triplestore.url = "http://localhost:8983/solr/triplestore" triplestore.maxHits = 100 triplestore.cacheSize = 100000 triplestore.timeout = 5000 triplestore.skipTimeouts = true triplestore.namespaces = ["reverb", "freebase", "probase", "openie4", "nell"] triplestore.skipNamespaces = "^$" paraphrase.identityScore = 1.0 paraphrase.defaultLm = 1.0 paraphrase.defaultPmi = 1.0 paraphrase.template.maxHits = 100 paraphrase.template.url = "http://localhost:8985/solr/paraphrase" paraphrase.template.maxArgLength = 4 paraphrase.template.scoringModel = pmiLm paraphrase.template.minPmi = -25.0 paraphrase.template.maxPmi = 0.0 paraphrase.template.scale = true paraphrase.template.multipleParaphrases = false paraphrase.template.timeout = 2000 paraphrase.template.useTypes = false paraphrase.template.skipTimeouts = true paraphrase.template.numTemplates = 300000 paraphrase.template.probFalsePos = 0.01 paraphrase.template.stopTemplatesPath = "/edu/knowitall/paraphrasing/template/templatesStops.txt" paraphrase.rules.ruleSetPath = "/edu/knowitall/paraphrasing/rules/rules.txt" relsyn.url = "http://localhost:8984/solr/relsyn" relsyn.scale = true relsyn.maxPmi = 0.0 relsyn.minPmi = -32.0 relsyn.maxHits = 100 relsyn.cacheSize = 100000 relsyn.timeout = 2000 relsyn.skipTimeouts = true relsyn.multipleSyns = false lm.url = "http://localhost:9090" lm.timeout = 2000 lm.batchSize = 100 lm.minValue = -35.0 lm.maxValue = -5.0 lm.scale = true lm.retries = 2 lm.cacheSize = 100000 lm.skipTimeouts = true eval.output.file = output.txt eval.config.file = config.txt eval.name.file = name.txt eval.score.file = scores.txt eval.pr.file = pr random.seed = 123 search.beamType = typed search.beamSize = 10000 search.goalSize = 1000 search.maxIters = 100 search.maxSearchTimeSec = 20 search.expandPerIter = 16 search.transitions.parse = true search.transitions.templateParaphrase = true search.transitions.relSyn = true search.transitions.isaRelSyn = true search.transitions.execute = true search.transitions.project = true search.transitions.ruleParaphrase = true search.transitions.dropStops = true learning.oracleMode = "interactive" learning.labelsPath = "../oqa-data/knowitall.cs.washington.edu/oqa/data/questions/labels.txt" learning.outputsPath = "models" learning.numIters = 10 parsing.cg.lexiconClasspath = "/edu/knowitall/parsing/cg/lexicon.txt" parsing.cg.macroClasspath = "/edu/knowitall/parsing/cg/macros.txt" parsing.cg.lexicalRuleKeep = ".*" parsing.cg.lexicalRuleSkip = "^$" parsing.cg.maxConjuncts = 2 tuplefeatures.resourcePath = "/edu/knowitall/search/qa/tupleFeatures.txt" scoring.weights = models/full.txt ================================================ FILE: oqa-core/src/main/resources/edu/knowitall/execution/stoplist.txt ================================================ there others anything anybody anyone the book the people the woman all the man someone 's not one the ones another option no one another many people the world the right the area today stuff the way many kinds the result both neither some people the name people i've everyone every one i'll inc. inc ltd ltd. most ever the page such the following the first the second the third the last the other the others each all following here text/html the fact lot lots more less former text/html i've ive i'm im i'd who what where when why how sometimes sometime never much little ================================================ FILE: oqa-core/src/main/resources/edu/knowitall/execution/stopregex.txt ================================================ (?i)^this\b.* (?i)^'s.* (?i)^his\b.* (?i)^her\b.* (?i)^its\b.* (?i)^their\b.* (?i)^our\b.* (?i)^my\b.* (?i)^your\b.* (?i)^these\b.* (?i)^those\b.* (?i)^this\b.* (?i)^that\b.* (?i)^another\b.* (?i)^many\b.* (?i)^some\b.* (?i)^all\b.* (?i)^other\b.* (?i)^both\b.* (?i)^most\b.* ^\p{Punct}+.* ================================================ FILE: oqa-core/src/main/resources/edu/knowitall/paraphrasing/rules/rules.txt ================================================ inWhatDate @inOn @whatwhich @dateWord (:@any+) := When $rest whatDate @whatwhich @dateWord (:@any+) := When $rest commonPrefix1 @quant? (:@any+) := $rest commonPrefix2 ? @quant? (:@any+) := $rest commonPrefix3 ? @quant? (:@any+) := $rest commonPrefix4 ? @quant? (:@any+) := $rest dropTypeOf (:@any*) @type @of (:@any*) := $left $right dropNameOf (:@any*) @det @of (:@any*) := $left $right posToOf (:@any*) (:@np) @pos (:@np) (:@any*) := $left $rel of $arg $right presProgToSimple (:@any*) @be (:@vbg) (:@any*) := $left $rel $right dropAdverb (:@any*) @adv+ (:@any*) := $left $right ================================================ FILE: oqa-core/src/main/resources/edu/knowitall/paraphrasing/template/templatesStops.txt ================================================ what be $y ? $y ? what $y ? what be the $y ? what be a $y ? what do $y mean ? who be $y ? what do $y do ? how $y ? who $y ? what do $y ? how do $y ? where $y ? how many $y ? how do you $y ? what be the meaning of $y ? what be the name of the $y ? why $y ? what $y do ? how much $y ? what be an $y ? where do $y ? who be the $y ? where be the $y ? what dose $y mean ? how be $y ? be $y ? the $y ? why do $y ? when do $y ? when $y ? ================================================ FILE: oqa-core/src/main/resources/edu/knowitall/parsing/cg/argFilters.txt ================================================ ^many ================================================ FILE: oqa-core/src/main/resources/edu/knowitall/parsing/cg/lexicon.txt ================================================ # ruleName syntactic-pattern := semantic-type semantic-pattern fullPatternSubj @whowhat (:@reverb) (:@np) := unary $x : ($x, $rel, $arg) fullPatternDobj @whowhat @aux (:@np) (:@reverb) := unary $x : ($arg, $rel, $x) fullPatternWhereIn @where (:@aux) (:@np) (:@reverb) := unary $x : ($arg, $aux $rel in, $x) fullPatternWhereIs @where (:@aux) (:@np) := unary $x : ($arg, $aux in, $x) fullPatternWhenIn @when (:@aux) (:@np) (:@reverb) := unary $x : ($arg, $aux $rel in, $x) fullPatternWhenOn @when (:@aux) (:@np) (:@reverb) := unary $x : ($arg, $aux $rel on, $x) fullPatternWhenBeIn @when @be (:@np) := unary $x : ($arg, be in, $x) fullPatternWhenBeOn @when @be (:@np) := unary $x : ($arg, be on, $x) fullPatternTypeDobj (@whatwhich|@howmany) (:@np) @aux (:@np) (:@reverb) := unary $x : ($x, instance of, $type) ($arg, $rel, $x) fullPatternTypeSubj (@whatwhich|@howmany) (:@np) (:@reverb) (:@np) := unary $x : ($x, instance of, $type) ($x, $rel, $arg) fullPatternProperty @what @be @det (:@np) @of (:@np) := unary $x : ($arg, $rel, $x) fullPatternDefn @whowhat @be (:@np) := unary $x : ($arg, instance of, $x) fullPatternRelType @whatwhich (:@np) @aux (:@np) (:@reverb) := unary $x : ($arg, $rel $type, $x) fullPatternCop @whatwhich (:@np) @be (:@np) := unary $x : ($arg, $rel, $x) fullPatternHaveProp @wh (@be @det)? (:@np) (@aux|@relMarker) (:@np) @have := unary $x : ($arg, $rel, $x) fullPatternPoss @wh @be (:@np) @pos (:@np) := unary $x : ($arg, $rel, $x) fullPatternCopRel @wh (:@noun) @be (:@np) := unary $x : ($arg, $rel, $x) whIdentity @wh := identity auxIdentity @aux := identity punctIdentity @punct := identity relMarkerIdentity @relMarker := identity conjIdentity @conj := identity ignoreTypesIdentity @ignoreTypes := identity quantIdentity @quant := identity ================================================ FILE: oqa-core/src/main/resources/edu/knowitall/parsing/cg/macros.txt ================================================ noun commonNoun propNoun adj adv verb det the num conj wh | ( ) whowhat whatwhich what how howmany some quant ? where when ignoreTypes aux be pos nounMod np (@nounMod* @noun+ @nounMod*)+ vp (@aux? @adv* @verb+ @adv*)+ relMarker prep * * reverb (@vp) | (@vp @prep) | (@vp @np @prep) reverbNoPrep @vp @np type of punct there dateWord any inOn have vbg ================================================ FILE: oqa-core/src/main/resources/edu/knowitall/parsing/cg/relFilters.txt ================================================ ^(do|does|did|doing)$ ^(be|is|are|was|were)$ ^(has|have|had|having)$ ================================================ FILE: oqa-core/src/main/resources/edu/knowitall/search/qa/isa.txt ================================================ is a instance of false 1 1 1 0 is an instance of false 1 1 1 0 be a instance of false 1 1 1 0 be an instance of false 1 1 1 0 isa instance of false 1 1 1 0 ================================================ FILE: oqa-core/src/main/resources/edu/knowitall/search/qa/tupleFeatures.txt ================================================ conf_f min 0 1 linear num_extrs_i min 1 100 log freq_i min 1 24712 log popularity_i min 1 13045 log conceptVagueness_f min 0 0.848391051179 linear ================================================ FILE: oqa-core/src/main/resources/log4j.properties ================================================ # Root logger option log4j.rootLogger=INFO, stdout # Direct log messages to stdout log4j.appender.stdout=org.apache.log4j.ConsoleAppender log4j.appender.stdout.Target=System.out log4j.appender.stdout.layout=org.apache.log4j.PatternLayout log4j.appender.stdout.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %-5p %c{1}:%L - %m%n ================================================ FILE: oqa-core/src/main/resources/logback.xml ================================================ System.err %d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/eval/Oracle.scala ================================================ package edu.knowitall.eval import edu.knowitall.tool.tokenize.StanfordTokenizer import edu.knowitall.tool.postag.StanfordPostagger import edu.knowitall.tool.stem.MorphaStemmer import java.io.InputStream import scala.io.Source import java.io.FileInputStream import java.io.PrintWriter import java.io.File import org.slf4j.LoggerFactory trait Oracle { def inputs: List[String] def getLabel(input: String, output: String): Option[Boolean] def getCorrectOutputs(input: String): List[String] def isCorrect(input: String, output: String): Boolean = { getLabel(input, output) match { case Some(label) => label case _ => throw new IllegalStateException(s"No label for ($input, $output)") } } def hasLabel(input: String, output: String): Boolean = { getLabel(input, output) match { case Some(label) => true case _ => false } } def toTrainingSet: List[(String, Set[String])] = { for (i <- inputs; outputs = getCorrectOutputs(i).toSet; if outputs.size > 0) yield (i, outputs) } } trait UpdateableOracle extends Oracle { def save def update(input: String, output: String, label: Boolean) } object Oracle { val tokenizer = new StanfordTokenizer() val tagger = new StanfordPostagger() val lemmatizer = new MorphaStemmer() def normalizePair(input: String, output: String) = (normalize(input), normalize(output)) def decompose(s: String): String = java.text.Normalizer.normalize(s, java.text.Normalizer.Form.NFD).replaceAll("[\\p{InCombiningDiacriticalMarks}\\p{IsLm}\\p{IsSk}]+", "").replaceAll("\\P{Print}", ""); def normalize(t: String): String = { val s = decompose(t) val tokens = tokenizer(s) if (tokens.size > 0) { val tagged = tagger.postagTokenized(tokens) val result = tagged.map(lemmatizer.lemmatizePostaggedToken(_).lemma.toLowerCase) result.mkString(" ") } else { s.toLowerCase().mkString(" ") } } def readLine(line: String): (String, String, Boolean) = { val fields = line.split("\t", 4) fields match { case Array(tag, l, i, o) => (normalize(i), normalize(o), getBoolean(l)) case _ => throw new IllegalArgumentException(s"Could not parse line: '$line'") } } def getBoolean(s: String) = s.toLowerCase() match { case "0" => false case "false" => false case _ => true } def labelsFromInputStream(is: InputStream) = { val triples = Source.fromInputStream(is, "UTF8").getLines.filter(_.startsWith("LABEL\t")).map(readLine) triples.map(triple => (normalize(triple._1), normalize(triple._2)) -> triple._3).toMap } def fromFile(fn: String) = labelsFromInputStream(new FileInputStream(fn)) } class FileOracle(path: String) extends UpdateableOracle { val logger = LoggerFactory.getLogger(this.getClass) val file = new File(path) val labels = if (file.exists()) { scala.collection.mutable.Map(Oracle.fromFile(path).toSeq: _*) } else { scala.collection.mutable.Map[(String, String), Boolean]() } def correctOutputs = { val pairs = for ((input, output) <- labels.keys; if labels.getOrElse((input, output), false)) yield (input, output) val grouped = pairs.groupBy(_._1).map { case (k,v) => (k,v.map(_._2).toList)} grouped.toMap } override def inputs = { labels.keys.map(_._1).toList } def normalize = Oracle.normalize _ override def getLabel(input: String, output: String) = { val i = normalize(input) val o = normalize(output) val attempt = labels.get((i, o)) attempt match { case Some(value) => Some(value) case None => labels.get(normalize(i), normalize(o)) } } override def getCorrectOutputs(input: String): List[String] = correctOutputs.getOrElse(Oracle.normalize(input), List()) def save = { logger.debug(s"Saving labels to $path") val output = new PrintWriter(path, "UTF8") for (((i, o), l) <- labels) output.println(s"LABEL\t$l\t$i\t$o") output.close() } def update(i: String, o: String, label: Boolean) = { labels += ((normalize(i), normalize(o)) -> label) } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/eval/OutputRecord.scala ================================================ package edu.knowitall.eval abstract class OutputRecord { def input: String def output: String def score: Double override def toString = s"$input\t$output\t$score" } object OutputRecord { private case class OutputRecordImpl(input: String, output: String, score: Double) extends OutputRecord { def apply(input: String, output: String, score: Double) = OutputRecordImpl(input, output, score) } def apply(input: String, output: String, score: Double): OutputRecord = OutputRecordImpl(input, output, score) def fromLine(line: String): OutputRecord = line.split("\t").toList match { case i :: o :: s :: rest => OutputRecordImpl(i, o, s.toDouble) case _ => throw new IllegalArgumentException(s"Could not parse line: $line") } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/eval/SystemOutput.scala ================================================ package edu.knowitall.eval import scala.io.Source import scala.collection.JavaConverters._ import java.io.File import com.typesafe.config.ConfigFactory import java.io.PrintWriter import com.typesafe.config.ConfigRenderOptions abstract class SystemOutput { def inputs: List[String] = records.map(_.input).distinct def inputOutputs: List[(String, String)] = records.map(r => (r.input, r.output)).toList.distinct def config: Map[String, String] def path: String def normalize = Oracle.normalize _ def recordsFor(input: String, output: String): List[OutputRecord] = { val in = normalize(input) val on = normalize(output) inputOutputToRecords.getOrElse((in, on), List()).toList } private val inputToRecords = records.groupBy(r => normalize(r.input)) def recordsFor(input: String): List[OutputRecord] = inputToRecords.getOrElse(normalize(input), List()) private val inputOutputToRecords = records.groupBy(r => (normalize(r.input), normalize(r.output))) def topOutputFor(input: String): Option[String] = { inputToRecords.get(normalize(input)) match { case Some(l) => Some(l.maxBy(_.score).output) case _ => None } } def topScoreFor(input: String, output: String): Option[Double] = { recordsFor(input, output) match { case Nil => None case l: List[OutputRecord] => Some(l.maxBy(_.score).score) } } def hasOutputFor(input: String) = inputToRecords.contains(input) def records: List[OutputRecord] def save = { val dir = new File(path) if (dir.exists() && !dir.isDirectory()) throw new IllegalStateException(s"$dir exists but is not a directory") if (!dir.exists()) dir.mkdirs() val outputPath = new File(path, SystemOutput.outputFile) val outputWriter = new PrintWriter(outputPath) records.foreach(outputWriter.println(_)) outputWriter.close() val configPath = new File(path, SystemOutput.configFile) val configWriter = new PrintWriter(configPath) for ((k, v) <- config) configWriter.println(s"$k\t$v") configWriter.close() } } case object SystemOutput { val conf = ConfigFactory.load() val outputFile = conf.getString("eval.output.file") val configFile = conf.getString("eval.config.file") val nameFile = conf.getString("eval.name.file") private case class SystemOutputImpl(path: String, records: List[OutputRecord], config: Map[String, String]) extends SystemOutput { def apply(path: String, records: List[OutputRecord], config: Map[String, String]) = SystemOutputImpl(path, records, config) } def apply(path: String, records: List[OutputRecord], config: Map[String, String]): SystemOutput = new SystemOutputImpl(path, records, config) def apply(path: String, records: List[OutputRecord]): SystemOutput = new SystemOutputImpl(path, records, getCurrentConfig) def loadRecords(path: String): List[OutputRecord] = { val lines = Source.fromFile(new File(path, outputFile), "UTF8").getLines lines.map(OutputRecord.fromLine).toList } def loadConfig(path: String) = { val lines = Source.fromFile(new File(path, configFile)).getLines val pairs = lines map { line: String => line.split("\t", 2) match { case Array(k, v) => (k, v) case _ => throw new IllegalArgumentException(s"Could not parse line: $line") } } pairs.toMap } def getCurrentConfig = conf.root().asScala.map(pair => (pair._1, pair._2.render(ConfigRenderOptions.concise))).toMap def fromPath(path: String): SystemOutput = SystemOutputImpl(path, loadRecords(path), getCurrentConfig) } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/eval/qa/QAOutputRecord.scala ================================================ package edu.knowitall.eval.qa import edu.knowitall.eval.OutputRecord import edu.knowitall.execution.Tuple import edu.knowitall.execution.Search case class QAOutputRecord(question: String, answer: String, ascore: Double, derivation: String) extends OutputRecord { override def toString = s"$question\t$answer\t$score\t$derivation" override def input = question override def output = answer override def score = ascore } case object QAOutputRecord { def fromLine(line: String) = line.trim.split("\t") match { case Array(q, a, s, d) => QAOutputRecord(q, a, s.toDouble, d) case Array(q, a, s) => QAOutputRecord(q, a, s.toDouble, "") case _ => throw new IllegalArgumentException(s"Could not parse line: $line") } def project(t: Tuple): String = { val tup = Search.ProjectTriples(List(t)).toList(0) tup.toString } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/eval/qa/QASystemOutput.scala ================================================ package edu.knowitall.eval.qa import com.typesafe.config.ConfigFactory import java.io.File import java.io.PrintWriter import scala.collection.JavaConverters._ import scala.io.Source import com.typesafe.config.ConfigRenderOptions import edu.knowitall.eval.SystemOutput import edu.knowitall.eval.OutputRecord case class QASystemOutput(path: String, records: List[QAOutputRecord], config: Map[String, String], name: String) extends SystemOutput { def this(path: String, name: String) = this(path, QASystemOutput.loadRecords(path), SystemOutput.loadConfig(path), name) def this(path: String, records: List[QAOutputRecord], name: String) = this(path, records, SystemOutput.getCurrentConfig, name) val questions = records.map(_.question).distinct val questionAnswers = records.map(r => (r.question, r.answer)).distinct private val questionToRecords = records.groupBy(r => normalize(r.question)) private val questionAnswerToRecords = records.groupBy(r => (normalize(r.question), normalize(r.answer))) val qaRecords = records def qaRecordsFor(input: String, output: String): List[QAOutputRecord] = { val in = normalize(input) val on = normalize(output) questionAnswerToRecords.getOrElse((in, on), List()).toList } override def save = { val dir = new File(path) if (dir.exists() && !dir.isDirectory()) throw new IllegalStateException(s"$dir exists but is not a directory") if (!dir.exists()) dir.mkdirs() val outputPath = new File(path, QASystemOutput.outputFile) val outputWriter = new PrintWriter(outputPath) records.foreach(outputWriter.println(_)) outputWriter.close() val configPath = new File(path, QASystemOutput.configFile) val configWriter = new PrintWriter(configPath) for ((k, v) <- config) configWriter.println(s"$k\t$v") configWriter.close() val namePath = new File(path, QASystemOutput.nameFile) val nameWriter = new PrintWriter(namePath) nameWriter.println(name) nameWriter.close() } } case object QASystemOutput { val conf = ConfigFactory.load() val outputFile = conf.getString("eval.output.file") val configFile = conf.getString("eval.config.file") val nameFile = conf.getString("eval.name.file") def loadRecords(path: String): List[QAOutputRecord] = { val lines = Source.fromFile(new File(path, outputFile), "UTF8").getLines lines.map(QAOutputRecord.fromLine).toList } def fromPath(path: String) = { val name = Source.fromFile(new File(path, nameFile)).getLines.mkString("\n") new QASystemOutput(path, name) } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/eval/qa/QASystemRunner.scala ================================================ package edu.knowitall.eval.qa import java.io.File import java.io.IOException import scala.io.Source import org.slf4j.LoggerFactory import edu.knowitall.model.QaModel class QASystemRunner(qa: QaModel, path: String) { val logger = LoggerFactory.getLogger(this.getClass) val outputFile = new File(path) if (!outputFile.exists()) { outputFile.mkdirs() } if (outputFile.exists() && !outputFile.isDirectory()) { throw new IOException(s"Could not write to $path, file exists") } def runFile(path: String) = { val lines = Source.fromFile(path, "UTF8").getLines.toList logger.info(s"Running QA System on '$path'") logger.info(s"'$path' contains ${lines.size} questions") run(path, lines) } def run(name: String, questions: List[String]) = { val n = questions.size val records = for ((q, i) <- questions.zipWithIndex; deriv <- { logger.info(s"Question ${i+1} of ${n}") qa.candidatePredictions(q) }; r = QAOutputRecord(q, deriv.answer, deriv.score, deriv.toString)) yield r val output = new QASystemOutput(path, records.toList, name) output.save } } object QASystemRunner extends App { val input = args(0) val output = args(1) val model = new QaModel() val runner = new QASystemRunner(model, output) runner.runFile(input) } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/execution/AnswerFilter.scala ================================================ package edu.knowitall.execution import edu.knowitall.tool.tokenize.ClearTokenizer import edu.knowitall.tool.stem.MorphaStemmer import scala.io.Source import java.io.InputStream import org.slf4j.LoggerFactory import scala.util.matching.Regex import edu.knowitall.util.ResourceUtils trait AnswerFilter { def filter(exec: QueryExecutor): QueryExecutor } object AnswerFilter { // Mnemonics type QE = QueryExecutor type ETPred = (ExecTuple => Boolean) type SPred = (String => Boolean) def createExecTupleFilter(f: ETPred): (QE => QE) = exec => new QE { def execute(q: ConjunctiveQuery) = exec.execute(q).filter(f) } def createStringFilter(f: SPred): (QE => QE) = { val etpred = (et: ExecTuple) => f(et.answer.mkString(", ")) createExecTupleFilter(etpred) } def compose(af1: AnswerFilter, af2: AnswerFilter) = new AnswerFilter { override def filter(exec: QueryExecutor) = af2.filter(af1.filter(exec)) } } case class StopListFilter(stops: Iterable[String]) extends AnswerFilter { val tokenizer = new ClearTokenizer() val logger = LoggerFactory.getLogger(this.getClass) logger.debug(s"stop set: $stops") val stopSet = stops.map(normalize).toSet def normalize(s: String): String = { val slc = s.toLowerCase() val toks = tokenizer(slc) val stems = toks.map(MorphaStemmer.stemToken) val lems = stems.map(_.lemma) val result = lems.mkString(" ") result } def this(file: String) = this(Source.fromFile(file, "UTF8").getLines.toList) def this(is: InputStream) = this(Source.fromInputStream(is, "UTF8").getLines.toList) def keepAnswer(ans: String) = !stopSet.contains(normalize(ans)) override def filter(exec: QueryExecutor): QueryExecutor = AnswerFilter.createStringFilter(keepAnswer)(exec) } case class StopRegexFilter(patStrs: Iterable[String]) extends AnswerFilter { val pats = patStrs.toList.map(_.r) def this(file: String) = this(Source.fromFile(file, "UTF8").getLines.toList) def this(is: InputStream) = this(Source.fromInputStream(is, "UTF8").getLines.toList) def keepAnswer(ans: String) = !pats.exists(p => ans match { case p() => true case _ => false }) override def filter(exec: QueryExecutor) = AnswerFilter.createStringFilter(keepAnswer)(exec) } object DefaultFilters { val logger = LoggerFactory.getLogger(this.getClass) val idFilter = new AnswerFilter { override def filter(exec: QueryExecutor) = exec } def wrap(executor: QueryExecutor) = { val filters: List[AnswerFilter] = List( new StopListFilter(ResourceUtils.resource("/edu/knowitall/execution/stoplist.txt")), new StopRegexFilter(ResourceUtils.resource("/edu/knowitall/execution/stopregex.txt"))) val composed = filters.foldLeft(idFilter)(AnswerFilter.compose _) composed.filter(executor) } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/execution/ConjunctiveQuery.scala ================================================ package edu.knowitall.execution import Search.Field import Search.TSQuery import Search.{FieldKeywords, FieldPhrase} import Search.Conjunction import org.slf4j.LoggerFactory import Search._ import scala.Option.option2Iterable import edu.knowitall.util.StringUtils /** * Base trait for triple values. */ trait TVal /** * Base trait for triple literal values. */ trait TLiteral extends TVal { def value: String def update(v: String): TLiteral def toConjunct(field: Field): TSQuery def subs(binding: Map[TVariable, TVal]): TLiteral } /** * Triple literals can be unquoted, which has the semantics of doing a keyword * search over a field. */ case class UnquotedTLiteral(value: String) extends TVal with TLiteral { override def toString = value override def toConjunct(field: Field) = FieldKeywords(field, value) override def subs(binding: Map[TVariable, TVal]) = { val map = binding map { case (k, v) => (k.name, v.toString) } val newVal = StringUtils.interpolate(value, map) copy(value = newVal) } override def update(v: String) = UnquotedTLiteral(v) } /** * Triple literals can also be quoted, which has the semantics of doing an * exact-match search over a field. */ case class QuotedTLiteral(value: String) extends TVal with TLiteral { override def toString = s""""$value"""" override def toConjunct(field: Field) = FieldPhrase(field, value) override def subs(binding: Map[TVariable, TVal]) = { val map = binding map { case (k, v) => (k.name, v.toString) } val newVal = StringUtils.interpolate(value, map) copy(value = newVal) } override def update(v: String) = QuotedTLiteral(v) } case object QuotedTLiteral { val quoted = """^"(.*)"$""".r def fromString(s: String): Option[QuotedTLiteral] = s.trim() match { case quoted(s) => Some(QuotedTLiteral(s)) case _ => None } } /** * Triple values can also be variables, which have a string name. */ case class TVariable(name: String) extends TVal { override def toString = "$" + name } case object TVariable { val vpat = """\$([A-Za-z0-9_]+)""".r def fromString(s: String): Option[TVariable] = s.trim() match { case vpat(v) => Some(TVariable(v)) case "?" => Some(TVariable("?")) case _ => None } def fromStringMult(s: String): List[TVariable] = { val parts = s.split(", *").toList for (p <- parts; t = TVariable.fromString(p)) yield t match { case Some(x) => x case None => throw new IllegalArgumentException(s"Could not parse variables in: $s") } } } /** * TConjunct objects have a name (you can think of this as a unique * identifier for the relational table returned) and map containing the * field values. The field values map a field (arg1, rel, or arg2) to a * value (literal or variable). */ case class TConjunct(name: String, values: Map[Field, TVal]) { def literalFields: Iterable[(Field, TLiteral)] = { for ((f, v) <- values) yield v match { case l: TLiteral => Some((f, l)) case _ => None } }.flatten def variableFields: Iterable[(Field, TVariable)] = { for ((f, v) <- values) yield v match { case TVariable(s) => Some((f, TVariable(s))) case _ => None } }.flatten def varsToFields: Map[TVariable, Field] = variableFields.map(_.swap).toMap def partialQuery: TSQuery = { val lfs = literalFields.toList val conjuncts = for ((f, v) <- lfs) yield v.toConjunct(f) Conjunction(conjuncts.toList:_*) } def joinKeys: Map[TVariable, String] = { val vfs: Map[TVariable, Field] = varsToFields val pairs = for (v <- vfs.keys; f <- vfs.get(v); a = name + "." + f) yield (v, a) pairs.toMap } def attrName(v: TVariable): Option[String] = joinKeys.get(v) def vars: Iterable[TVariable] = varsToFields.keys.toSet def subs(bindings: Map[TVariable, TVal]) = { val newValues = values map { case (field, value: TVariable) if bindings.contains(value) => (field, bindings(value)) case (field, value: TLiteral) => (field, value.subs(bindings)) case (field, value) => (field, value) } copy(values = newValues) } def subs(tvar: TVariable, tval: TVal): TConjunct = subs(Map(tvar -> tval)) def rename(n: String) = copy(name = n) val xs = values.getOrElse(arg1, "") val rs = values.getOrElse(rel, "") val ys = values.getOrElse(arg2, "") override def toString = s"($xs, $rs, $ys)" } case object TConjunct { val logger = LoggerFactory.getLogger(this.getClass) val qpat = """\(?(.+),(.+),(.+?)\)?""".r def fromString(name: String, s: String): Option[TConjunct] = s match { case qpat(x, r, y) => Some(fromTriple(name, x, r, y)) case _ => None } def getTLiteral(s: String): TLiteral = QuotedTLiteral.fromString(s) match { case Some(QuotedTLiteral(y)) => QuotedTLiteral(y) case _ => UnquotedTLiteral(s) } def getTVal(s: String): TVal = { val v = TVariable.fromString(s) v match { case Some(TVariable(x)) => TVariable(x) case _ => getTLiteral(s) } } val fields = List(arg1, rel, arg2) def fromTriple(name: String, x: String, r: String, y: String): TConjunct = { val lst = List(x.trim(), r.trim(), y.trim()) val items = for ((f, a) <- fields.zip(lst); v = getTVal(a)) yield (f, v) TConjunct(name, items.toMap) } val splitPat = """(?<=\))\s*?(?=\()""" def fromStringMult(s: String): Iterable[TConjunct] = { val parts = s.split(splitPat).toList.map(_.trim).filterNot(_ == "") val queries = { for ((s, i) <- parts.zipWithIndex; q <- fromString(s"r$i", s)) yield q }.toList queries } def replaceField(c: TConjunct, f: Field, vs: List[TVal]): List[TConjunct] = { for (v <- vs) yield TConjunct(c.name, c.values + (f -> v)) } } /** * A conjunctive query consists of a list of qvars (query variables) and a list * of conjuncts. A conjunctive query represents a select-join-project type * operation. The list of conjuncts represents the data to be selected. * The shared variables among the conjuncts encodes the join predicates. * The qVars encodes the projection variables. qAttr is the tuple-attribute * to project onto. */ trait ConjunctiveQuery { def qVars: List[TVariable] def qAttrs: List[String] def conjuncts: List[TConjunct] def subs(bindings: Map[TVariable, TVal]): ConjunctiveQuery def subs(tvar: TVariable, tval: TVal): ConjunctiveQuery = subs(Map(tvar -> tval)) def combine(cq: ConjunctiveQuery): ConjunctiveQuery def renameConjuncts(prefix: String): ConjunctiveQuery override def toString(): String = { val varString = qVars.map(_.toString).mkString(",") val conjString = conjuncts.mkString(" ") varString + ": " + conjString } def joinPairs = { val grouped = conjuncts.flatMap(_.joinKeys.toList).groupBy(_._1) for { variable <- grouped.keys (variable1, fieldName1) <- grouped(variable) (variable2, fieldName2) <- grouped(variable) if fieldName1 < fieldName2 } yield (fieldName1, fieldName2) } } case class FieldIndex(conjunctName: String, field: Field) { private def updateConjunct(c: TConjunct, fn: TVal => TVal): TConjunct = { val newVals = for { (f, v) <- c.values newv = if (c.name == conjunctName && f == field) fn(v) else v } yield (f, newv) TConjunct(c.name, newVals) } def updateQuery(q: ConjunctiveQuery, fn: TVal => TVal): ConjunctiveQuery = { val newConjs = q.conjuncts.map(updateConjunct(_, fn)) ListConjunctiveQuery(q.qVars, newConjs) } } /** * A conjunctive query backed by a list of conjuncts. */ case class ListConjunctiveQuery(qVars: List[TVariable], conjuncts: List[TConjunct]) extends ConjunctiveQuery { private val logger = LoggerFactory.getLogger(this.getClass) val conjunctNames = conjuncts.map(_.name) if (conjunctNames.distinct.size != conjunctNames.size) throw new IllegalArgumentException(s"Conjuncts must have distinct names: $conjuncts") val qas = {for (v <- qVars; c <- conjuncts; a <- c.attrName(v)) yield (v, a)}.groupBy(_._1) val qAttrs = for (v <- qVars; group <- qas.get(v); (v, a) <- group.find(x => true)) yield a override def subs(bindings: Map[TVariable, TVal]) = { val newConjs = conjuncts.map(_.subs(bindings)) val newQVars = newConjs.flatMap(_.vars).distinct ListConjunctiveQuery(newQVars, newConjs) } def renameConjuncts(prefix: String) = { val newConjs = conjuncts.zipWithIndex map { case (c, i) => c.rename(s"${prefix}.$i") } copy(conjuncts = newConjs) } override def combine(cq: ConjunctiveQuery) = { val conjNames1 = this.conjunctNames.toSet val conjNames2 = cq.conjuncts.map(_.name).toSet val namesIntersect = !conjNames1.intersect(conjNames2).isEmpty val conjs1 = if (namesIntersect) { logger.warn(s"Conjunction field names in ${this} and $cq intersect, renaming 'r' and 's': $conjNames1 vs. $conjNames2") this.renameConjuncts("r").conjuncts } else { this.conjuncts } val conjs2 = if (namesIntersect) { cq.renameConjuncts("s").conjuncts } else { cq.conjuncts } val newConjs = conjs1 ++ conjs2 val newVars = (this.qVars ++ cq.qVars).distinct ListConjunctiveQuery(newVars, newConjs) } } case object ListConjunctiveQuery { def fromString(s: String): Option[ListConjunctiveQuery] = { val parts = s.split(":", 2) if (parts.size == 2) { val left = parts(0) val qVars = TVariable.fromStringMult(parts(0)) match { case head :: rest => head :: rest case _ => throw new IllegalArgumentException(s"Expected variable: $left") } val conjuncts = TConjunct.fromStringMult(parts(1)) Some(ListConjunctiveQuery(qVars, conjuncts.toList)) } else if (parts.size == 1) { val s = parts(0) val conjuncts = TConjunct.fromStringMult(s) val qVars = conjuncts.flatMap(_.vars).toList match { case v :: rest => v :: rest case _ => throw new IllegalArgumentException(s"Expected variable: $s") } Some(ListConjunctiveQuery(qVars.distinct, conjuncts.toList)) } else { None } } } /** * A simple query is a conjunctive query that has a single conjunct. */ case class SimpleQuery(name: String, map: Map[Field, TVal]) extends ConjunctiveQuery { val conjunct = TConjunct(name, map) val conjuncts = List(conjunct) val vars = map.values.collect{ case x: TVariable => x }.toList val qVars = vars match { case v :: Nil => List(v) case _ => throw new IllegalArgumentException(s"SimpleQuery must have exactly one variable, " + s"got: $vars") } val qAttrs = List(conjunct.joinKeys(qVars(0))) override def subs(bindings: Map[TVariable, TVal]) = { val newConj = conjunct.subs(bindings) copy(map = newConj.values) } override def renameConjuncts(prefix: String) = { copy(map = conjunct.rename(s"${prefix}0").values) } override def combine(cq: ConjunctiveQuery) = { val newConjs = (this.conjuncts ++ cq.conjuncts).distinct val newVars = (this.qVars ++ cq.qVars).distinct ListConjunctiveQuery(newVars, newConjs) } } case object SimpleQuery { def fromString(s: String) = TConjunct.fromString("r", s) match { case Some(TConjunct(name, map)) => Some(SimpleQuery(name, map)) case _ => None } } object Utils { def cartesian[A](xs: Traversable[Traversable[A]]): Seq[Seq[A]] = xs.foldLeft(Seq(Seq.empty[A])) { (x, y) => for (a <- x.view; b <- y) yield a :+ b } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/execution/JoinPlanner.scala ================================================ package edu.knowitall.execution import Search.PartialSearchJoin import PartialFunction._ import Search.Field import Conditions.TuplePred import Operators.{Select, Product} import Conditions.AttrsSim import Operators.NestedLoopJoin import org.slf4j.LoggerFactory import edu.knowitall.triplestore.TriplestoreClient import edu.knowitall.triplestore.TriplestorePlan import scala.Option.option2Iterable /** * A Joiner object interfaces with a triplestore and executes a query * against it. It uses a simple query plan optimizer to take a set of * TConjunct objects and join them appropriately. It heuristically * avoids joining large tables together by (1) limiting the number of rows * returned by the triplestore, and (2) converting join(small table, large * table) calls into a set of join(small table, small table) calls. * * The algorithm first picks a variable that appears in the TConjunct * objects. It then eliminates that variable by executing the TConjunct * and enforcing the join constraints between them. * * For example, suppose the set of queries is aq1 = ($x, type, us president), * aq2 = ($x, born in, $y), and aq3 = ($y, type, us state). The joiner first * picks a variable to eliminate, using a herustic; say it picks $x. Then, * the joiner takes all queries that have $x as a value, loads their data, * and joins them. In this case, it must load the data for aq1 and aq2, then * join them together on the constraint aq1.arg1 = aq2.arg1. It saves the * results as an intermediate table t. Then, it repeats, picking $y as the * next variable to eliminate, and joining intermediate table t with aq3. * * The heuristic used to estimate the cost of a query is the number of rows * returned by the triplestore. * * Internally, the Joiner uses two structures. The first is a QueryNode, which * represents an unexecuted TConjunct. The second is a TuplesNode, which * represents an intermediate table (a set of AbstractQueries that have been * executed and joined across a single variable). The QueryNode class and * TuplesNode class are subclasses of TableNode. * */ case class Joiner(client: TriplestoreClient) { val logger = LoggerFactory.getLogger(this.getClass) val maxJoinHits = 10 /* Import some query plan objects from the client. */ val planning = TriplestorePlan(client) import planning._ /* Runs the join algorithm on the given set of AbstractQuery objects.*/ def joinQueries(conjs: Iterable[TConjunct]): Tuples = { val nodes = conjs.map(QueryNode(_)).toList join(nodes) } /* Any table T joined with the emptyTuples set will return T. */ val emptyTuples = List(Tuple(Map.empty)) /* Takes the cartesian product of two tuple sets. */ val prod = (ts1: Iterable[Tuple], ts2: Iterable[Tuple]) => Product(ts1, ts2).toList /* Joins the given TableNodes together. If the end result is not a single * TableNode object, then just takes the cartesian product of the remaining * nodes. */ def join(nodes: List[TableNode]): Iterable[Tuple] = { val joined = mergeLowest(nodes).map(toTuplesNode(_)) val cleaned = joined map eliminateStrandedVars cleaned.map(_.tuples).foldLeft(emptyTuples)(prod).toList } /* * Eliminates any join variables that were not eliminated * during the join process - for example, * (salad, $r, $x) (beef, $r, $x) will leave $r stranded * in a single TuplesNode at the end of join processing, * but still referring to r0.rel and r1.rel. This method * enforces the join condition within a single TuplesNode. */ def eliminateStrandedVars(tn: TuplesNode): TuplesNode = { tn.joinAttrs.find(_._2.size > 1) match { case Some((v, attrs)) => { val tuples = tn.tuples.filter { t => attrs.sliding(2).forall { case List(a1, a2) => AttrsSim(a1, a2, 0.9).apply(t) case _ => throw new RuntimeException() } } val newTuplesNode = TuplesNode(tuples, tn.joinAttrs-v) eliminateStrandedVars(newTuplesNode) } case None => tn } } /* Picks the lowest-cost variable, merges the nodes, and then repeats until * there are no variables left to merge. */ def mergeLowest(nodes: List[TableNode]): List[TableNode] = { val merged = lowestVariable(nodes) match { case Some(v) => mergeLowest(groupThenMergeNodes(nodes, v)) case None => nodes } merged.map(toTuplesNode(_)) } /* The cost of a Table node is... */ def cost(n: TableNode) = n match { // ...the number of rows that satisfy it, if it's a QueryNode case q: QueryNode => client.count(q.conj.partialQuery) // ...or the number of rows, if it's a TuplesNode case t: TuplesNode => t.tuples.size } /* Joining two tuples nodes together on a variable is easy, since all of * the necessary data is in memory. All that needs to be done is to * create the correct join predicate, and then execute the NestedLoopJoin. */ def joinTT(tn1: TuplesNode, tn2: TuplesNode, v: TVariable): Tuples = { val attrPairs = for(a1 <- tn1.getJoinAttrs(v); a2 <- tn2.getJoinAttrs(v)) yield (a1, a2) val pred = Joiner.pairsToCond(attrPairs) NestedLoopJoin(pred)(tn1.tuples, tn2.tuples) } /* Joining a QueryNode with a TuplesNode involves doing a partial search * join, which executes a query for each row in the TuplesNode. */ def joinQT(qn: QueryNode, tn: TuplesNode, v: TVariable): Tuples = { // Get the names of the attributes to join on. val attrPairs = for ( a1 <- tn.getJoinAttrs(v); a2 <- qn.getJoinAttrs(v)) yield (a1, a2) // The join predicate uses string similarity. val bpred = attrPairs match { case (a1, a2) :: tail => AttrsSim(a1, a2, 0.9) case _ => AttrsSim("", "", 0.0) } // If there are multiple join conditions between the QueryNode and // TuplesNode (i.e. if they share more than one variable) then the // additional constraints need to be encoded in a Select predicate, since // a partial search join can only involve a single field. val spred = attrPairs match { case (a1, a2) :: tail => Joiner.pairsToCond(tail) case _ => Joiner.truep } val left = tn.tuples val right = PartialSearchFor(qn.conj.name, maxJoinHits, qn.conj.partialQuery) val joined = PartialSearchJoin(bpred)(left, right) Select(spred)(joined) } /* Finds the nodes that have the given variable. Merges them together, leaving * the other nodes unmerged. */ def groupThenMergeNodes(nodes: List[TableNode], v: TVariable): List[TableNode] = { val (toMerge, toKeep) = nodes.partition(_.hasVariable(v)) mergeNodes(toMerge, v) +: toKeep } /* Finds the lowest-cost variable to merge. In order to be considered for * merging, a variable must occur in at least two nodes. Variables are then * assigned a cost equal to the lowest-costing node that they occur in. */ def lowestVariable(nodes: List[TableNode]): Option[TVariable] = { val lst = for (n <- nodes; v <- n.joinAttrs.keySet) yield (v, n) val varNodes = lst.groupBy(e => e._1).mapValues(e => e.map(x => x._2).toSet) val varCosts = { for ((v, nodes) <- varNodes; if nodes.size > 1; costs = nodes.map(cost(_)); minCost = costs.min) yield (v, minCost) }.toMap if (varCosts.size > 0) { val vars = varCosts.keys val lowest = vars.minBy(varCosts(_)) logger.debug(s"Lowest variable chosen: $lowest") Some(lowest) } else { None } } /* Merges the given nodes together, and removes the variable. */ def mergeNodes(nodes: List[TableNode], v: TVariable): TuplesNode = { val sorted = nodes.sortBy(cost) val node = eliminateVar(sorted, v) TuplesNode(node.tuples, node.joinAttrs-v) } /* Recursively eliminates the variable from the given list of nodes. */ def eliminateVar(nodes: List[TableNode], v: TVariable): TuplesNode = { nodes match { case node :: Nil => toTuplesNode(node) case node1 :: node2 :: rest => eliminateVar(doJoin(node1, node2, v) :: rest, v) case _ => throw new IllegalArgumentException("empty node list") } } /* Joins together two nodes on the given variable. */ def doJoin(n1: TableNode, n2: TableNode, v: TVariable): TuplesNode = { val t = toTuplesNode(n1) val tuples = n2 match { case q: QueryNode => joinQT(q, t, v) case t2: TuplesNode => joinTT(t, t2, v) } val merged = Joiner.mergeJoinAttrs(n1.joinAttrs, n2.joinAttrs) TuplesNode(tuples.toList, merged) } /* Converts a TableNode to a TuplesNode. If the given node is already a * TuplesNode, does nothing. If it is a QueryNode, it executes it and * wraps the resulting tuples as a TuplesNode. */ def toTuplesNode(node: TableNode): TuplesNode = node match { case t: TuplesNode => t case q: QueryNode => queryToTuples(q) case _ => throw new IllegalArgumentException("invalid node type: " + node) } /* Executes the given QueryNode to create a TuplesNode. */ def queryToTuples(q: QueryNode): TuplesNode = { logger.debug(s"Making TuplesNode from $q") val tuples = SearchFor(q.conj.name, q.conj.partialQuery) val result = TuplesNode(tuples, q.joinAttrs) logger.debug(s"Done making TuplesNode from $q") result } } /* Companion object for Joiner. */ case object Joiner { // Mnemonic type JA = Map[TVariable, List[String]] // The join condition defaults to thresholded string similarity. val eqCond = (a1: String, a2: String) => AttrsSim(a1, a2, 0.9) // Merges the given maps. def mergeJoinAttrs(attrs1: JA, attrs2: JA): JA = { val allVars = attrs1.keySet union attrs2.keySet val newPairs = for (v <- allVars; as1 = attrs1.getOrElse(v, Nil).toSet; as2 = attrs2.getOrElse(v, Nil).toSet) yield (v, (as1 ++ as2).toList) return newPairs.toMap } // Tuple predicate that always returns true. val truep = (t: Tuple) => true // The conjunction of two tuple predicates. def and(p1: TuplePred, p2: TuplePred) = (t: Tuple) => p1(t) && p2(t) // The conjunction of a list of predicates. def andList(preds: Iterable[TuplePred]): TuplePred = preds.foldLeft(truep)(and) // Takes a list of tuple attribute pairs, returns a single predicate // encoding them as a conjunction of join conditions. def pairsToCond(pairs: List[(String, String)]): TuplePred = { val preds = for ((a1, a2) <- pairs) yield eqCond(a1, a2) andList(preds) } } /* TuplesNodes can be either TableNodes or QueryNodes. */ case class TuplesNode(tuples: List[Tuple], joinAttrs: Map[TVariable, List[String]]) extends TableNode { } /* TableNodes store data from partially-executed queries. */ trait TableNode { val joinAttrs: Map[TVariable, List[String]] def getJoinAttrs(v: TVariable) = joinAttrs.getOrElse(v, Nil) def hasVariable(v: TVariable) = joinAttrs.contains(v) } /* QueryNodes represent unexecuted queries. */ case class QueryNode(conj: TConjunct) extends TableNode { val jks = conj.joinKeys val joinAttrs = { for (v <- jks.keys; attr <- jks.get(v)) yield (v, List(attr)) }.toMap } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/execution/QueryExecutor.scala ================================================ package edu.knowitall.execution import edu.knowitall.execution.Search.Field import edu.knowitall.triplestore.TriplestoreClient import org.slf4j.LoggerFactory import edu.knowitall.tool.stem.MorphaStemmer import scala.collection.immutable.SortedMap case class ExecTuple(tuple: Tuple, query: ConjunctiveQuery) { val answer: List[String] = query.qAttrs.flatMap(a => tuple.getString(a)) val answerString: String = answer match { case List(a) => a case _ => "(" + answer.mkString(", ") + ")" } val toTripleString = { val tstrs = for { c <- query.conjuncts n = c.name x = tuple.attrs.getOrElse(s"$n.arg1", "") r = tuple.attrs.getOrElse(s"$n.rel", "") y = tuple.attrs.getOrElse(s"$n.arg2", "") } yield s"($x, $r, $y)" tstrs.mkString(" ") } } trait QueryExecutor { def execute(query: ConjunctiveQuery): Iterable[ExecTuple] } case class IdentityExecutor(client: TriplestoreClient) extends QueryExecutor { val logger = LoggerFactory.getLogger(this.getClass) val joiner = Joiner(client) override def execute(q: ConjunctiveQuery): Iterable[ExecTuple] = { val joined = joiner.joinQueries(q.conjuncts) for (t <- joined; et = ExecTuple(t, q)) yield et } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/execution/RelationalAlgebra.scala ================================================ package edu.knowitall.execution import scala.language.implicitConversions import com.rockymadden.stringmetric.similarity._ import org.apache.solr.client.solrj.util.ClientUtils import scala.Array.canBuildFrom import scala.Option.option2Iterable /** * Used to represent a Tuple (i.e. a row in a relational database). A tuple * has a set of String attributes. Each attribute has a value of type Any. */ case class Tuple(attrs: Map[String, Any]) { /* Concatenates two tuples together. Their attributes must be disjoint. */ def join(other: Tuple): Tuple = { val t = Tuple(this.attrs ++ other.attrs) if (t.attrs.size == this.attrs.size + other.attrs.size) { return t } else { throw new IllegalArgumentException(s"attr names not disjoint: $this, $other") } } def get(a: String) = attrs.get(a) /* Gets the string value of attribute a. Returns None if not possible */ def getString(a: String) = attrs.get(a) match { case Some(x: String) => Some(x) case _ => None } def getBoolean(a: String) = attrs.get(a) match { case Some(x: Boolean) => Some(x) case _ => None } def getFloat(a: String): Option[Float] = attrs.get(a) match { case Some(x: Float) => Some(x) case _ => None } def getInt(a: String): Option[Int] = attrs.get(a) match { case Some(i: Int) => Some(i) case _ => None } def getNumber(a: String): Option[Double] = attrs.get(a) match { case Some(i: Int) => Some(i) case Some(f: Float) => Some(f) case Some(d: Double) => Some(d) case _ => None } /* Renames the attributes using the given function */ def rename(f: String => String): Tuple = { Tuple(attrs.map{ case (k, v) => (f(k), v) }) } /* Adds "$p." before each attribute. */ def renamePrefix(p: String): Tuple = rename(k => p + "." + k) override def toString: String = { val pairs = attrs map { case (k, v) => k + ": " + v } return "(" + pairs.mkString(", ") + ")" } } /** * Contains objects for select and join conditions. */ object Conditions { // Mnemonics type Attr = String type Value = Any type ValuePred = Value => Boolean type BinaryStringPred = (String, String) => Boolean type BinaryValuePred = (Value, Value) => Boolean type TuplePred = Tuple => Boolean def valPair(a1: Attr, a2: Attr, t: Tuple) = for (v1 <- t.attrs.get(a1); v2 <- t.attrs.get(a2)) yield (v1, v2) /* Converts the given predicate over value pairs to a tuple predicate. This * can be used to convert a predicate like "string1 and string2 are equal" * to a tuple predicate like "tuple.a1 and tuple.a2 are equal" */ def binaryAttrPred(a1: Attr, a2: Attr, f: BinaryValuePred): TuplePred = (t: Tuple) => valPair(a1, a2, t).exists(f.tupled) /* Converts the given predicate over value pairs to a tuple predicate. This * can be used to convert a predicate like "string1 and string2 are equal" * to a tuple predicate like "tuple.a = x". */ def unaryAttrPred(a: Attr, x: String, f: BinaryValuePred): TuplePred = (t: Tuple) => { for (v <- t.attrs.get(a)) yield (v, List(x)) }.exists(f.tupled) /* Converts a predicate over (String, String) to a predicate over (Any, Any) * by making non-String input always return false. */ def stringToAnyPred(f: BinaryStringPred): BinaryValuePred = (v1: Value, v2: Value) => (v1, v2) match { case (v1: String, v2: String) => f(v1, v2) case _ => false } /* A shortcut for combining stringToAnyPred and binaryAttrPred. */ def binaryPredFromString(a1: Attr, a2: Attr, f: BinaryStringPred) = binaryAttrPred(a1, a2, stringToAnyPred(f)) /* A shortcut for combining stringToAnyPred and unaryAttrPred. */ def unaryPredFromString(a: Attr, v: String, f: BinaryStringPred) = unaryAttrPred(a, v, stringToAnyPred(f)) /* Wrapper for string equality, with optional case sensitivity. */ def StringEquality(caseSensitive: Boolean = true) = (x: String, y: String) => if (caseSensitive) x == y else x.toLowerCase() == y.toLowerCase() /* Thresholded string-similarity predicate, returns true if the given strings * have similarity above a given threshold. */ def strSim(thresh: Double) = (x: String, y: String) => StrSim.sim(x, y) > thresh val strEq = StringEquality(false) val valEq = (x: Value, y: Value) => x == y /* A BinaryPred is a TuplePred that has access to two attribute names. */ trait BinaryPred { def attr1: Attr def attr2: Attr def apply(t: Tuple): Boolean } /* AttrsEqual is a TuplePred that returns true if t.attr1 equals t.attr2. */ case class AttrsEqual(attr1: Attr, attr2: Attr) extends TuplePred with BinaryPred { val pred = binaryPredFromString(attr1, attr2, strEq) def apply(t: Tuple) = pred(t) } /* AttrEquals is a TuplePred that returns true if t.attr equals value. */ case class AttrEquals(attr: Attr, value: String) extends TuplePred { val pred = unaryPredFromString(attr, value, strEq) def apply(t: Tuple) = pred(t) } /* AttrsSim is a TuplePred that returns true if t.attr1 and t.attr2 have * similarity greater than thresh. */ case class AttrsSim(attr1: Attr, attr2: Attr, thresh: Double) extends TuplePred with BinaryPred { val pred = binaryPredFromString(attr1, attr2, strSim(thresh)) def apply(t: Tuple) = pred(t) } /* AttrSim is a TuplePred that returns true if t.attr and value have * similarity greater than thresh. */ case class AttrSim(attr: Attr, value: String, thresh: Double) extends TuplePred { val pred = unaryPredFromString(attr, value, strSim(thresh)) def apply(t: Tuple) = pred(t) } /* On returns a function Tuple => Tuple that projects a tuple t onto the * given attributes. */ def On(attrs: Attr*) = (t: Tuple) => { val items = for (a <- attrs; v <- t.attrs.get(a)) yield (a, v) Tuple(items.toMap) } } /** * The Operators object defines relational algebra operators, which are used * to join, select, and project Tuple objects. */ object Operators { // Mnemonics type TuplePred = Tuple => Boolean type TupleMap = Tuple => Tuple type Tuples = Iterable[Tuple] /* Select returns only those tuples that satisfy the predicate p. */ def Select(p: TuplePred) = (ts: Tuples) => ts.filter(p) /* Project transforms each tuple using the given map m. */ def Project(m: TupleMap) = (ts: Tuples) => ts.map(m) /* Union groups multiple iterables of tuples into a single iterable. */ def Union(tss: Tuples*) = tss.flatten /* Join takes the cartesian product of two tuples and returns only those * tuples that satisfy the predicate p. NestedLoopJoin implements this * as a nested loop over each iterable of tuples. */ def NestedLoopJoin(p: TuplePred) = (ts1: Tuples, ts2: Tuples) => { for (t1 <- ts1.par; t2 <- ts2; j = t1.join(t2); if p(j)) yield j }.toList /* Joins together all pairs of tuples. */ def Product(ts1: Tuples, ts2: Tuples): Tuples = for (t1 <- ts1; t2 <- ts2) yield t1.join(t2) } /** * Objects used to construct queries against a triplestore. */ object Search { // Mnemonics type Tuples = Iterable[Tuple] type Attr = String type Search = TSQuery => Tuples import Conditions._ /* These are the possible fields in a triplestore. */ /*object Field extends Enumeration { type Field = Value val arg1, rel, arg2, namespace = Value val arg1_exact, rel_exact, arg2_exact = Value // Maps some fields to their exact-match versions val exactMap = Map(arg1 -> arg1_exact, rel -> rel_exact, arg2 -> arg2_exact) } import Field._*/ trait Field { val name: String def toExact: Field } object Field { implicit def field2string(f: Field) = f.name } val exactPat = ".*_exact$".r case class TSField(name: String) extends Field { override def toString = name override def toExact = name match { case exactPat(name) => TSField(name) case _ => TSField(name + "_exact") } } val arg1 = TSField("arg1") val rel = TSField("rel") val arg2 = TSField("arg2") val namespace = TSField("namespace") /* Used to represent a triplestore query. The only requirement is that it * should have some method that converts it to a Lucene query string. */ trait TSQuery { def toQueryString: String } /* Used to escape characters that have special meanings in Lucene. */ def luceneEscape = ClientUtils.escapeQueryChars _ def quoteLogic(w: String) = w match { case "AND" => "\"AND\"" case "OR" => "\"OR\"" case "NOT" => "\"NOT\"" case _ => w } def escape(w: String) = quoteLogic(luceneEscape(w)) /* A query that searches the given field for the given keywords. Splits the * string v into words, and then converts them into a Lucene query * equal to the conjunctions of all the words. For example, if f = arg1 * and v = "barack obama", the resulting Lucene query string will be * "arg1:barack AND arg1:obama". */ case class FieldKeywords(f: Field, v: String) extends TSQuery { def toQueryString = { for (w <- v.trim().split("\\s+"); x = f.toString() + ":" + escape(w)) yield x }.mkString(" AND ") } /* A query that searches the given field for the given phrase. Uses the * exact-match version of the given field. For example, if f = arg1 * and v = "barack obama", then the resulting Lucene query string will be * arg1_exact:"barack obama". */ case class FieldPhrase(f: Field, v: String) extends TSQuery { val realField = f.toExact def toQueryString = realField.toString() + ":\"" + escape(v) + "\"" } case class CountQuery(arg: String) extends TSQuery { def toQueryString = { arg match { case "" => "*:*" // much faster than arg1_exact:* // just do arg1 for speed... case _ => "arg1:\"%s\"".format(arg, arg) } } } /* Some shortcut functions for each of the fields. */ val Arg1Eq = (v: String) => FieldPhrase(arg1.toExact, v) val Arg2Eq = (v: String) => FieldPhrase(arg2.toExact, v) val RelEq = (v: String) => FieldPhrase(rel.toExact, v) val Arg1Cont = (v: String) => FieldKeywords(arg1, v) val Arg2Cont = (v: String) => FieldKeywords(arg2, v) val RelCont = (v: String) => FieldKeywords(rel, v) val NamespaceEq = (v: String) => FieldKeywords(namespace, v) /* Returns the conjunction of the given queries. */ case class Conjunction(conjuncts: TSQuery*) extends TSQuery { def toQueryString = conjuncts.map("(" + _.toQueryString + ")").mkString(" AND ") } /* Returns the disjunction of the given queries. */ case class Disjunction(disjuncts: TSQuery*) extends TSQuery { def toQueryString = disjuncts.map("(" + _.toQueryString + ")").mkString(" OR ") } /* A shortcut method that adds FieldPhrase(f, v) as a conjunct to q. */ def AndPhrase(q: TSQuery, f: Field, v: String) = Conjunction(q, FieldPhrase(f, v)) /* A pattern to match the required triplestore attribute names in a tuple. */ val tripColPat = ".*\\.(arg1|arg2|rel|namespace)$" /* A projection operator that maps a tuple to just the required triplestore * fields (arg1, rel, arg2, namespace). */ def OnTripleCols(t: Tuple): Tuple = Tuple(t.attrs.filterKeys(a => a.matches(tripColPat))) def ProjectTriples(ts: Tuples) = Operators.Project(OnTripleCols)(ts) /* The code below is used for executing partial searches. A partial search * is a way to lazily represent a query's tuples without actually executing * the query against the triplestore. Parital searches are useful for * joining a small table T1 with a large table T2. Instead of loading both * tables into memory (which may be prohibitively slow), a partial-search * joiner loads T1 into memory, then executes a query for each tuple t in T1. * Each query is specifically searching for tuples that may be joined with t. * This allows the system to make many small, restricted queries, instead of * one large, unrestricted one. */ /* This class is just a name for a (query, search) pair, where search * is some function that maps queries onto tuples. */ case class PartialSearcher(query: TSQuery, search: Search) /* These patterns are used to infer the Field object to join from the string * attribute name in a tuple. */ val Arg1Pat = "(.*)\\.arg1$".r val Arg2Pat = "(.*)\\.arg2$".r val RelPat = "(.*)\\.rel$".r /* This defines a partial search join algorithm. The join condition cond is * used both as a predicate (i.e. evaluating whether a joined tuple should * be kept or discarded) but also for creating the tuple-specific queries * on the fly. * * PartialSearchJoin is actually a function that takes a join condition * as input, and returns a function (Tuples, PartialSearcher) => Tuples. * This resulting function takes the smaller table as input, and joins it * using the given PartialSearcher object, which encodes the query for * the larger table. */ def PartialSearchJoin(cond: BinaryPred) = { // The join attribute of the smaller table. val lAttr = cond.attr1 // The join attribute of the larger table. val rAttr = cond.attr2 // Code for inferring which field to search for when creating a query. It // is possible that rAttr might not be mappable to a field, in which case // it is not actually possible to execute the partial search join algo. val (name, field) = rAttr match { case Arg1Pat(n) => (n, arg1) case Arg2Pat(n) => (n, arg2) case RelPat(n) => (n, rel) case _ => throw new IllegalArgumentException(s"field must be arg1, rel, or arg2: $rAttr") } val tripleField = """r\d+\.(arg1|arg2|rel)""".r.pattern (ts: Tuples, ps: PartialSearcher) => { // split up into chunks val splitGroups = ts.grouped(10).map(_.toSeq) // make pairs of (join attributes, tuples) where join attributes is not empty. val attrsGroups = splitGroups.map { tuples => (tuples.flatMap(_.getString(lAttr)), tuples) } filter(_._1.nonEmpty) // map to new pairs of (Join Attribute Disjunction, Tuples) by converting join attributes to queries. val queryGroups = attrsGroups.map { case (attrs, tuples) => (Disjunction(attrs.map(a => FieldKeywords(field, a)): _*), tuples) } // map to (disjunctive search-join query, Tuples to join with) by combining disjunction with val disjunctionGroups = queryGroups.map { case (disj, tuples) => (Conjunction(disj, ps.query), tuples) } // for each pair, execute the disjunction and join the result with tuples disjunctionGroups.toSeq.par.flatMap { case (q, tuples) => val qts = ps.search(q) for ( t1 <- qts; t2 <- tuples; t3 = t1.join(t2); if (cond(t3))) yield t3 } }.toList } } /** * This object is used to create SQL-style table printouts from tuples. The * code is ripped from this stackoverflow post: * http://stackoverflow.com/questions/7539831/scala-draw-table-to-console */ object Tabulator { def trim(s: String, l: Int) = { val n = s.size s.substring(0, Math.min(l, n)) } def valToString(v: Any) = v match { case x @ (_ :: _ :: _) => "{" + trim(x.mkString(", "), 40) + "}" case x @ (y :: _) => y.toString case x => x.toString } def tupleToList(t: Tuple, attrs: List[String]) = { for( a <- attrs; v = t.attrs.getOrElse(a, ""); s = valToString(v)) yield s}.toList def tuplesToTable(cols: List[String], ts: Iterable[Tuple]) = { val lst = ts.toList format(cols :: lst.map(t => tupleToList(t, cols))) } private val namePat = "^(.*)\\.(arg1|arg2|rel|namespace)$".r def triplesToTable(ts: List[Tuple]): String = ts match { case t :: rest => { val conjNames = for { a <- t.attrs.keys (conj, field) <- a match { case namePat(conj, field) => Some((conj, field)) case _ => None } } yield conj val columns = conjNames.toList.distinct.flatMap(n => List(s"${n}.arg1", s"${n}.rel", s"${n}.arg2", s"${n}.namespace")) tuplesToTable(columns, ts) } case _ => "" } def tuplesToTable(ts: Iterable[Tuple]): String = { val lst = ts.toList if (lst.size > 0) { val cols = lst(0).attrs.keys.toList tuplesToTable(cols, ts) } else { "" } } def format(table: Seq[Seq[Any]]) = table match { case Seq() => "" case _ => val sizes = for (row <- table) yield (for (cell <- row) yield if (cell == null) 0 else cell.toString.length) val colSizes = for (col <- sizes.transpose) yield col.max val rows = for (row <- table) yield formatRow(row, colSizes) formatRows(rowSeparator(colSizes), rows) } def formatRows(rowSeparator: String, rows: Seq[String]): String = ( rowSeparator :: rows.head :: rowSeparator :: rows.tail.toList ::: rowSeparator :: List()).mkString("\n") def formatRow(row: Seq[Any], colSizes: Seq[Int]) = { val cells = (for ((item, size) <- row.zip(colSizes)) yield if (size == 0) "" else ("%" + size + "s").format(item)) cells.mkString("|", "|", "|") } def rowSeparator(colSizes: Seq[Int]) = colSizes map { "-" * _ } mkString ("+", "+", "+") } /** * A custom string-similarity object. Measures the similarity between * two strings. Lowercases them and removes some stop words first. */ object StrSim { import edu.knowitall.tool.stem.Lemmatized import edu.knowitall.tool.stem.MorphaStemmer import edu.knowitall.tool.postag.PostaggedToken import edu.knowitall.tool.chunk.OpenNlpChunker import edu.knowitall.tool.chunk.ChunkedToken val stops = Set("a", "an", "and", "are", "as", "at", "be", "but", "by", "for", "if", "in", "into", "is", "it", "no", "not", "of", "on", "or", "such", "that", "the", "their", "then", "there", "these", "they", "this", "to", "was", "will", "with", "i", "me", "your", "our", "ours", "him", "he", "his", "her", "its", "you", "that", "every", "all", "each", "those", "other", "both", "neither", "some", "'s") val morpha = new MorphaStemmer() val chunker = new OpenNlpChunker() def lemmatize[T <: PostaggedToken](tokens: Iterable[T]): Seq[Lemmatized[T]] = morpha.synchronized { tokens.toSeq map morpha.lemmatizePostaggedToken } def lemmatize(string: String): Seq[Lemmatized[ChunkedToken]] = chunker.synchronized(lemmatize(chunker(string))) def normTokens(x: String) = { val lc = x.toLowerCase() val split = lc.split("\\s+") val noStops = split.filter { t => val lookup = !stops.contains(t) lookup } noStops } def norm(x: String) = normTokens(x).mkString(" ") def sim(x: String, y: String): Double = { // hack -- compare forwards and backwards to avoid high scores for prefixes val nx = norm(x) val ny = norm(y) val forward = JaroWinklerMetric.compare(nx, ny).getOrElse(0.0) val backward = JaroWinklerMetric.compare(nx.reverse, ny.reverse).getOrElse(0.0) (forward + backward) / 2.0 } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/execution/StopwordExecutor.scala ================================================ package edu.knowitall.execution case class StopwordExecutor(baseExecutor: QueryExecutor) extends QueryExecutor { import java.util.regex.Pattern val stops = Set("a", "an", "the", "'s", "these", "those", "some", "that", "something") override def execute(q: ConjunctiveQuery): Iterable[ExecTuple] = baseExecutor.execute(cleanQuery(q)) def cleanQuery(q: ConjunctiveQuery): ListConjunctiveQuery = { ListConjunctiveQuery(q.qVars, q.conjuncts map cleanConjunct) } def cleanConjunct(c: TConjunct): TConjunct = { val cleanValues = c.values.map { case (key, UnquotedTLiteral(value)) => (key, UnquotedTLiteral(cleanWords(value))) case (key, value) => (key, value) } c.copy(values = cleanValues) } def cleanWords(str: String) = { val cleaned = str.split(" ").filterNot(stops.contains).mkString(" ") if (cleaned.isEmpty) str else cleaned } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/learning/CorrectnessModel.scala ================================================ package edu.knowitall.learning trait CorrectnessModel[Input, Output] { def isCorrect(input: Input, output: Output): Boolean def pickCorrect(input: Input, candidates: Seq[Output]): Option[Output] } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/learning/FeatureFunction.scala ================================================ package edu.knowitall.learning import scala.language.implicitConversions abstract class FeatureFunction[T] extends Function[T, SparseVector] { override def apply(t: T): SparseVector def sum(that: FeatureFunction[T]): FeatureFunction[T] def +(that: FeatureFunction[T]) = this.sum(that) } object FeatureFunction { def apply[T](f: T => SparseVector): FeatureFunction[T] = FeatureFunctionImpl(f) implicit def functionToFeatureFunction[T](f: T => SparseVector): FeatureFunction[T] = FeatureFunction(f) implicit def pairToFeatureFunction[T](f: T => (String, Double)): FeatureFunction[T] = FeatureFunction((t: T) => { val (name, value) = f(t) SparseVector(name -> value) }) private case class FeatureFunctionImpl[T](f: Function[T, SparseVector]) extends FeatureFunction[T] { override def apply(t: T) = f(t) override def sum(that: FeatureFunction[T]): FeatureFunction[T] = FeatureFunctionImpl((t: T) => this(t) + that(t)) } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/learning/HiddenVariableModel.scala ================================================ package edu.knowitall.learning trait HiddenVariableModel[Input, Output] { def predict(input: Input): Option[Output] def candidatePredictions(input: Input): Seq[Output] def update(input: Input, predicted: Output, expected: Output): Unit } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/learning/InteractiveOracle.scala ================================================ package edu.knowitall.learning import edu.knowitall.util.TuplePrinter.printTuple import edu.knowitall.execution.Tabulator.{format => toTable} import edu.knowitall.model.Derivation import edu.knowitall.search.qa.QueryState class InteractiveOracle extends CorrectnessModel[String, Derivation] { private def parseInt(s: String) = try Some(s.toInt) catch { case e: Throwable => None } private def parseInts(s: String) = try s.split("""[^-0-9]+""").map(_.toInt).toSeq catch { case e: Throwable => Nil } private def derivString(deriv: Derivation) = { deriv.toString } private def derivsToTable(derivs: Seq[Derivation]) = { val paired = derivs.zipWithIndex flatMap { case (a, b) => val sd = derivString(a).split("->").toList.reverse val triples = sd.map((b, a.answer, _)).zipWithIndex map { case ((c, d, e), f) => if (f == 0) { List(c, d, e) } else { List("", "", e) } } triples :+ List("", "", "") } toTable(List("#", "answer", "evidence") +: paired) } private def getBoolean: Boolean = { print("> ") Console.readLine match { case "1" => true case "-1" => false case "0" => false case _ => { println("Type 1 for true, 0 or -1 for false") getBoolean } } } private def getInt(min: Int, max: Int): Int = { print("> ") parseInt(Console.readLine) match { case Some(i) if min <= i && i <= max => i case Some(i) => { println(s"Must choose between $min and $max") getInt(min, max) } case None => { println(s"Must enter an integer") getInt(min, max) } } } private def getInts(min: Int, max: Int): List[Int] = { print("> ") parseInts(Console.readLine) match { case Nil => { println(s"Must enter a list of integers") getInts(min, max) } case lst if lst.contains(-1) && lst.size > 1 => { println("Cannot have -1 in list") getInts(min, max) } case lst if lst.forall(i => min <= i && i <= max) => lst.toList case _ => { println(s"Must enter a list of integers between $min and $max") getInts(min, max) } } } def pickCorrectMultiple(question: String, derivs: Seq[Derivation]) = if (derivs.size > 0) { val iderivs = derivs.toIndexedSeq println(s"Question = $question\n") println(s"Pick from derivations below (-1 means no answer)") println(derivsToTable(derivs)) getInts(-1, derivs.size-1) match { case List(-1) => Nil case lst => lst.map(iderivs(_)) } } else { Nil } override def isCorrect(question: String, deriv: Derivation) = { println(s"Question = $question") println(s"Answer = ${deriv.answer}") println(s"Derivation = ${derivString(deriv)}") println() getBoolean } override def pickCorrect(question: String, derivs: Seq[Derivation]) = if (derivs.size > 0) { val iderivs = derivs.toIndexedSeq println(s"Question = $question\n") println(s"Pick from derivations below (-1 means no answer)") println(derivsToTable(derivs)) getInt(-1, derivs.size-1) match { case -1 => None case i => Some(iderivs(i)) } } else None } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/learning/LabeledDataOracle.scala ================================================ package edu.knowitall.learning import edu.knowitall.eval.Oracle import edu.knowitall.eval.FileOracle import edu.knowitall.model.Derivation class LabeledDataOracle(oracle: Oracle) extends CorrectnessModel[String, Derivation] { def this(path: String) = this(new FileOracle(path)) def isCorrectAnswer(question: String, answer: String) = oracle.getLabel(question, answer).getOrElse(false) override def isCorrect(question: String, deriv: Derivation) = isCorrectAnswer(question, deriv.answer) override def pickCorrect(question: String, derivs: Seq[Derivation]) = derivs.filter(answer => isCorrect(question, answer)) match { case d :: ds => Some(d) case Nil => None } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/learning/MemoryInteractiveOracle.scala ================================================ package edu.knowitall.learning import edu.knowitall.eval.FileOracle import org.slf4j.LoggerFactory import edu.knowitall.model.Derivation class MemoryInteractiveOracle(oracle: FileOracle) extends CorrectnessModel[String, Derivation] { val logger = LoggerFactory.getLogger(this.getClass) def this(path: String) = this(new FileOracle(path)) val labeled = new LabeledDataOracle(oracle) val interactive = new InteractiveOracle() override def isCorrect(question: String, deriv: Derivation) = { val answer = deriv.answer if (oracle.hasLabel(question, answer)) { logger.debug(s"Using saved labels for $question") labeled.isCorrect(question, deriv) } else { val result = interactive.isCorrect(question, deriv) oracle.update(question, answer, result) oracle.save result } } private def haveLabelFor(question: String, deriv: Derivation) = oracle.hasLabel(question, deriv.answer) override def pickCorrect(question: String, derivs: Seq[Derivation]) = { labeled.pickCorrect(question, derivs) match { case Some(deriv) => { logger.debug(s"Using saved labels for $question") logger.debug(s"Found '${deriv.answer}' as answer for '$question'") Some(deriv) } case None => { val unlabeled = derivs.filter(d => !haveLabelFor(question, d)) interactive.pickCorrectMultiple(question, unlabeled) match { case seq: Seq[Derivation] if seq.size > 0 => { for (d <- seq) { oracle.update(question, d.answer, true) } oracle.save logger.debug(s"Found '${seq(0)}' as answer for '$question'") Some(seq(0)) } case Nil => { for (d <- unlabeled) { oracle.update(question, d.answer, false) } oracle.save logger.debug(s"Correct answer for '$question' is unreachable") None } } } } } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/learning/Perceptron.scala ================================================ package edu.knowitall.learning class Perceptron[Input, Output](model: HiddenVariableModel[Input, Output], oracle: CorrectnessModel[Input, Output]) { def learnIter(input: Input) = for { prediction <- model.predict(input) if !oracle.isCorrect(input, prediction) candidates = model.candidatePredictions(input) correct <- oracle.pickCorrect(input, candidates) } model.update(input, prediction, correct) def learn(inputs: Traversable[Input]) = inputs foreach learnIter } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/learning/QATrainer.scala ================================================ package edu.knowitall.learning import com.typesafe.config.ConfigFactory import edu.knowitall.eval.FileOracle import edu.knowitall.eval.Oracle import scala.io.Source import edu.knowitall.eval.FileOracle import java.io.File import java.io.PrintWriter import edu.knowitall.util.Counter import edu.knowitall.model.QaModel import edu.knowitall.model.Derivation import java.text.SimpleDateFormat import java.util.Calendar import org.slf4j.LoggerFactory import java.io.StringWriter class QaTrainer(model: QaModel, oracle: CorrectnessModel[String, Derivation]) extends HiddenVariableModel[String, Derivation] { private var avgWeights = model.costModel.weights private var iter = 1.0 var numUpdates = 0 var numExamples = 0 private val perceptron = new Perceptron(this, oracle) private val logger = LoggerFactory.getLogger(this.getClass) override def predict(question: String) = model.predict(question) override def candidatePredictions(question: String) = model.candidatePredictions(question) override def update(question: String, predicted: Derivation, expected: Derivation) = { logger.info(s"Updating:\ncorrect = ${expected}\n${expected.explainScore(model.costModel.weights)}\npredicted = ${predicted}\n${predicted.explainScore(model.costModel.weights)}") model.update(question, predicted, expected) numUpdates += 1 avgWeights = avgWeights + (expected.features - predicted.features) * iter logger.info(s"Updated weights:\n${model.costModel.weights.toTable}") } def learnIter(question: String) = { try { logger.info(s"Question $iter = $question") perceptron.learnIter(question) iter += 1 numExamples += 1 } catch { case e: Throwable => { logger.warn(s"Encountered problem with example: $question") logger.warn(s"Supressing error.") val sw = new StringWriter() val pw = new PrintWriter(sw) e.printStackTrace(pw) logger.warn(sw.toString()) } } } def learn(inputs: Traversable[String]) = inputs foreach learnIter def averagedWeights = model.costModel.weights - (avgWeights / iter) } object QaTrainer extends App { def timestamp = { val fmt = new SimpleDateFormat("yyyy-MM-dd-HHmmss") val today = Calendar.getInstance.getTime fmt.format(today) } val conf = ConfigFactory.load() val oracleMode = conf.getString("learning.oracleMode") val labelsPath = conf.getString("learning.labelsPath") val inputsPath = conf.getString("learning.inputsPath") val outputsPath = conf.getString("learning.outputsPath") val numIters = conf.getInt("learning.numIters") val runName = if (conf.hasPath("learning.runName")) conf.getString("learning.runName") else "unnamed" val dir = new File(outputsPath, s"${runName}-${timestamp}") if (dir.exists() && !dir.isDirectory()) throw new IllegalStateException(s"$dir exists but is not a directory") if (!dir.exists()) dir.mkdirs() val modelOutput = new File(dir, "model.txt") val configOutput = new PrintWriter(new File(dir, "config.txt")) configOutput.write(conf.root().render) configOutput.close() val oracle = oracleMode match { case "interactive" => new MemoryInteractiveOracle(labelsPath) case "file" => new LabeledDataOracle(labelsPath) case _ => throw new IllegalStateException(s"Invalid oracle mode: $oracleMode") } val inputs = Source.fromFile(inputsPath, "UTF8").getLines.map(Oracle.normalize).toList val model = QaModel() val trainer = new QaTrainer(model, oracle) println("Learning...") for (i <- 1 to numIters) { val start = System.currentTimeMillis trainer.learn(inputs) val file = new File(dir, s"model.$i.txt") SparseVector.toFile(model.costModel.weights, file.toString()) val avgFile = new File(dir, s"model.$i.avg.txt") SparseVector.toFile(trainer.averagedWeights, avgFile.toString()) val delta = System.currentTimeMillis - start println(s"Done with iteration $i (${delta/1000} seconds, ${trainer.numUpdates} updates so far)") } println("Done learning") SparseVector.toFile(model.costModel.weights, modelOutput.toString()) SparseVector.toFile(trainer.averagedWeights, (new File(dir, s"model.avg.txt")).toString()) } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/learning/QueryTupleSimilarity.scala ================================================ package edu.knowitall.learning import edu.knowitall.execution.ConjunctiveQuery import edu.knowitall.execution.Tuple import edu.knowitall.tool.stem.MorphaStemmer import scala.Option.option2Iterable import edu.knowitall.execution.TLiteral import edu.knowitall.execution.Search object QueryTupleSimilarity { def normalize(ss: List[String]): List[String] = ss.map(_.toLowerCase()).map(MorphaStemmer.stem) def tokenize(s: String) = s.split(" ").toList def queryWords(q: ConjunctiveQuery): List[String] = { val literalFields = for (c <- q.conjuncts; (field, literal) <- c.literalFields) yield literal.value normalize(literalFields.flatMap(tokenize)) } def tupleWords(q: ConjunctiveQuery, t: Tuple): List[String] = { val values = for (c <- q.conjuncts; (field, literal) <- c.literalFields; value <- t.getString(s"${c.name}.${field}")) yield value normalize(values.flatMap(tokenize)) } def jaccard(x: List[String], y: List[String]): Double = { val xset = x.toSet val yset = y.toSet if (x.size > 0 || y.size > 0) { xset.intersect(yset).size.toDouble / xset.union(yset).size } else { 0.0 } } def similarity(q: ConjunctiveQuery, t: Tuple): Double = { val qws = queryWords(q) val tws = tupleWords(q, t) jaccard(qws, tws) } def tupleFieldWords(q: ConjunctiveQuery, t: Tuple, fields: Set[Search.Field]) = { val values = for { c <- q.conjuncts (field, literal) <- c.literalFields if fields.contains(field) value <- t.getString(s"${c.name}.${field}") } yield value normalize(values.flatMap(tokenize)) } def tupleWordsFields(t: Tuple, fields: Set[Search.Field]) = { val values = for { (a, v) <- t.attrs collect { case (a: String, v: String) => (a, v) } f <- fields if a.endsWith("." + f.name) } yield v normalize(values.toList.distinct.flatMap(tokenize)) } def queryFieldWords(q: ConjunctiveQuery, fields: Set[Search.Field]) = { val values = for { c <- q.conjuncts (field, literal) <- c.literalFields if fields.contains(field) value = literal.value } yield value normalize(values.flatMap(tokenize)) } def argSimilarity(q: ConjunctiveQuery, t: Tuple) = { val qws = queryFieldWords(q, Set(Search.arg1, Search.arg2)) val tws = tupleFieldWords(q, t, Set(Search.arg1, Search.arg2)) jaccard(qws, tws) } def relSimilarity(q: ConjunctiveQuery, t: Tuple) = { val qws = queryFieldWords(q, Set(Search.rel)) val tws = tupleFieldWords(q, t, Set(Search.rel)) jaccard(qws, tws) } def questionQuerySimilarity(query: ConjunctiveQuery, ques: String) = { val queryws = queryWords(query) val quesws = normalize(tokenize(ques)) jaccard(queryws, quesws) } def questionTupleSimilarity(ques: String, t: Tuple) = { val quesws = normalize(tokenize(ques)) val twords = tupleWordsFields(t, Set(Search.arg1, Search.rel, Search.arg2)) jaccard(quesws, twords) } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/learning/SparseVector.scala ================================================ package edu.knowitall.learning import scala.io.Source import java.io.PrintWriter import scala.language.implicitConversions import java.io.InputStream import java.io.File import java.io.FileInputStream import edu.knowitall.execution.Tabulator abstract class SparseVector { def activeComponents: Iterable[String] def apply(i: String): Double def add(that: SparseVector): SparseVector def scalarMult(x: Double): SparseVector def dot(that: SparseVector): Double def subtract(that: SparseVector): SparseVector = this.add(that.scalarMult(-1.0)) def +(that: SparseVector): SparseVector = this.add(that) def -(that: SparseVector): SparseVector = this.subtract(that) def *(x: Double): SparseVector = this.scalarMult(x) def *(that: SparseVector): Double = this.dot(that) def /(x: Double): SparseVector = this.scalarMult(1/x) def activeComponents(that: SparseVector): Iterable[String] = (this.activeComponents ++ that.activeComponents).toList.distinct def toTable = { val pairs = for (c <- activeComponents.toList.sortBy(-this(_)); if Math.abs(this(c)) > 1e-9) yield Seq(c, this(c)) Tabulator.format(Seq("Feature", "Weight") +: pairs.toSeq) } } object SparseVector { implicit def dPairToSparseVector(x: (String, Double)): SparseVector = SparseVectorImpl(Map(x._1 -> x._2)) implicit def bPairToSparseVector(x: (String, Boolean)): SparseVector = SparseVectorImpl(Map(x._1 -> {if (x._2) 1.0 else 0.0})) implicit def iPairToSparseVector(x: (String, Int)): SparseVector = SparseVectorImpl(Map(x._1 -> x._2.toDouble)) implicit def pairsToSparseVector(pairs: TraversableOnce[(String, Double)]): SparseVector = SparseVectorImpl(pairs.toMap) implicit def stringListToSparseVector(list: TraversableOnce[String]): SparseVector = SparseVectorImpl(list.map(s => (s, 1.0)).toMap) implicit def stringToSparseVector(s: String): SparseVector = SparseVectorImpl(Map(s -> 1.0)) implicit def oStringToSparseVector(os: Option[String]): SparseVector = os match { case Some(s) => SparseVectorImpl(Map(s -> 1.0)) case _ => SparseVectorImpl(Map()) } def apply: SparseVector = SparseVectorImpl(Map()) def apply(pairs: TraversableOnce[(String, Double)]): SparseVector = SparseVectorImpl(pairs.toMap) def apply(pairs: (String, Double)*): SparseVector = SparseVectorImpl(pairs.toMap) def fromFile(path: String): SparseVector = { fromInputStream(new FileInputStream(new File(path))) } def fromInputStream(in: InputStream): SparseVector = { val lines = Source.fromInputStream(in, "UTF8").getLines val pairs = lines.map { line => line.split("\t") match { case Array(k, v) => (k, v.toDouble) case _ => throw new IllegalStateException(s"Could not parse line: '$line'") }}.toIterable SparseVector(pairs) } def toFile(vector: SparseVector, path: String) = { val writer = new PrintWriter(path) vector.activeComponents.foreach(k => writer.println(s"${k}\t${vector(k)}")) writer.close() } private case class SparseVectorImpl(map: Map[String, Double]) extends SparseVector { override def activeComponents = map.keys override def apply(i: String) = map.getOrElse(i, 0.0) override def add(that: SparseVector): SparseVector = { val pairs = for (k <- this.activeComponents(that)) yield (k, this(k) + that(k)) SparseVectorImpl(pairs.toMap) } override def scalarMult(x: Double): SparseVector = { val pairs = for((k, v) <- map) yield (k, x * v) SparseVectorImpl(pairs.toMap) } override def dot(that: SparseVector): Double = { this.activeComponents(that).map(i => this(i) * that(i)).sum } override def toString = this.map.toString.replaceFirst("Map", "SparseVector") } final val zero = SparseVector() } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/lm/LanguageModel.scala ================================================ package edu.knowitall.lm import java.net.URL import java.net.URI import java.net.URLEncoder import scalaj.http.Http import scala.io.Source import scalaj.http.HttpOptions import com.typesafe.config.ConfigFactory import edu.knowitall.util.MathUtils import org.slf4j.LoggerFactory import com.twitter.util.LruMap import scala.collection.mutable.SynchronizedMap trait LanguageModel { /** * Queries a string, returns its log probability. */ def query(s: String): Double /** * Does a batch query of a bunch of strings, returns a list of the (input, * log probability) pairs. */ def query(s: Iterable[String]): List[(String, Double)] } case class KenLmServer(url: String, timeOut: Int, scale: Boolean = KenLmServer.scale, cacheSize: Int = KenLmServer.defaultCacheSize, skipTimeouts: Boolean = KenLmServer.defaultSkipTimeouts) extends LanguageModel { def this() = this(KenLmServer.defaultUrl, KenLmServer.defaultTimeout) val logger = LoggerFactory.getLogger(this.getClass) val root = s"${url}/score" val retries = KenLmServer.retries private val cache = new LruMap[String, Double](cacheSize) with SynchronizedMap[String, Double] override def query(s: String): Double = cache.get(s) match { case Some(x) => x case None => try { val result = queryHelper(s) cache.put(s, result) result } catch { case e: IllegalStateException => if (skipTimeouts) { logger.warn(s"Could not compute LM score for '$s': $e") scaleValue(Double.MinValue) } else { throw e } } } private def queryHelper(s: String, attempt: Int = 0): Double = { if (attempt > retries) { throw new IllegalStateException(s"Unable to query KenLM for '$s'") } else { try { logger.debug(s"Querying for one string (attempt ${attempt+1}/$retries): $s") scaleValue(Http(root).option(HttpOptions.connTimeout(timeOut)).params("q" -> s).asString.toDouble) } catch { case e: Throwable => { queryHelper(s, attempt + 1) } } } } def queryBatch(s: Iterable[String]) = { logger.debug(s"Querying for ${s.size} strings") val lst = s.toList val joined = lst.mkString("|") val lines = Http.post(root). option(HttpOptions.connTimeout(timeOut)). option(HttpOptions.readTimeout(timeOut)). params("q" -> joined). asString.trim.split("\n") val results = lst.zip(lines).map { case (a, b) => (a, scaleValue(b.toDouble)) } for ((a, b) <- results) cache.put(a, b) results } override def query(s: Iterable[String]) = { val groups = s.grouped(KenLmServer.batchSize) groups.flatMap(queryBatch).toList } private def scaleValue(x: Double): Double = if (scale) MathUtils.clipScale(x, KenLmServer.minValue, KenLmServer.maxValue) else x } case object KenLmServer { val conf = ConfigFactory.load() val defaultUrl = conf.getString("lm.url") val defaultTimeout = conf.getInt("lm.timeout") val retries = conf.getInt("lm.retries") val batchSize = conf.getInt("lm.batchSize"); val minValue = conf.getDouble("lm.minValue") val maxValue = conf.getDouble("lm.maxValue") val scale = conf.getBoolean("lm.scale") val defaultSkipTimeouts = conf.getBoolean("lm.skipTimeouts") val defaultCacheSize = conf.getInt("lm.cacheSize") } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/model/Derivation.scala ================================================ package edu.knowitall.model import edu.knowitall.search.qa.AnswerState import edu.knowitall.search.qa.QuestionState import edu.knowitall.search.Edge import edu.knowitall.search.qa.QaState import edu.knowitall.search.qa.QaAction import edu.knowitall.learning.SparseVector import edu.knowitall.search.qa.QaStep import edu.knowitall.execution.ExecTuple import edu.knowitall.search.qa.ExecutionAction import edu.knowitall.execution.Tabulator case class Derivation(question: String, answer: String, steps: IndexedSeq[QaStep], features: SparseVector, score: Double, searchTime: Long = 0L) { assert(steps.size >= 2) def questionState: QuestionState = steps.head.fromState match { case q: QuestionState => q case x => throw new IllegalStateException(s"Expected QuestionState, got $x, steps = $steps") } def answerState: AnswerState = steps.last.toState match { case a: AnswerState => a case x => throw new IllegalStateException(s"Expected AnswerState, got $x, steps = $steps") } def explainScore(weights: SparseVector) = { val rows = for { fname <- features.activeComponents.toList.sortBy(f => -1*features(f)*weights(f)) fvalue = features(fname) weight = weights(fname) product = fvalue * weight } yield Seq(product, weight, fvalue, fname) val allRows: Seq[Seq[Any]] = Seq(Seq("prod", "weight", "value", "feature")) ++ rows.toSeq Tabulator.format(allRows) } override def toString = { val l = List(questionState) ++ steps.map(_.toState) l.map(_.toString).mkString(" -> ") + s" (${searchTime}ms)" } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/model/QaModel.scala ================================================ package edu.knowitall.model import edu.knowitall.search.qa.QaStep import edu.knowitall.search.qa.QaState import edu.knowitall.search.qa.QaAction import edu.knowitall.learning.HiddenVariableModel import edu.knowitall.learning.SparseVector import edu.knowitall.search.qa.QaCostModel import edu.knowitall.search.qa.QaTransitionModel import edu.knowitall.search.qa.QaSearchProblem import edu.knowitall.search.BeamSearch import com.typesafe.config.ConfigFactory import edu.knowitall.search.Edge import edu.knowitall.search.Node import edu.knowitall.search.qa.AnswerState import org.slf4j.LoggerFactory import edu.knowitall.search.qa.QaBeamSearch import edu.knowitall.search.SearchAlgorithm case class QaModel(transitionModel: QaTransitionModel = QaModel.defaultTransitionModel, costModel: QaCostModel = QaModel.defaultCostModel) extends HiddenVariableModel[String, Derivation] { val logger = LoggerFactory.getLogger(this.getClass) private def createSearchProblem(question: String) = new QaSearchProblem(question, transitionModel, costModel) private def pathToSteps(q: String, path: List[(QaState, QaAction, QaState)]) = path map { case (fromState, action, toState) => QaStep(q, fromState, action, toState) } private def makeDerivation(q: String, n: Node[QaState, QaAction], t0: Long) = n.state match { case as: AnswerState => { val a = as.answer val steps = pathToSteps(q, n.path()) val feats = steps.map(costModel.features).fold(SparseVector.zero)(_+_) val score = -1 * n.pathCost val searchTime = n.creationTime - t0 Some(Derivation(q, a, steps.toIndexedSeq, feats, score, searchTime)) } case _ => None } override def predict(question: String) = { val preds = candidatePredictions(question) preds.sortBy(-1 * _.score) match { case d :: rest => { logger.debug(s"Prediction: $question => ${d.answer}") Some(d) } case _ => { logger.debug(s"Prediction: $question => None") None } } } override def candidatePredictions(question: String) = { val problem = createSearchProblem(question) val searcher = new QaBeamSearch(problem) val goals = searcher.search goals.flatMap(makeDerivation(question, _, searcher.startTime)) } override def update(q: String, output: Derivation, expected: Derivation) = { logger.debug(s"Updating model with ${expected.answer} - ${output.answer}") val delta = expected.features - output.features val oldWeights = costModel.weights val newWeights = oldWeights + delta costModel.weights = newWeights logger.debug(s"Updated model = $newWeights") } } case object QaModel { lazy val defaultTransitionModel = new QaTransitionModel lazy val defaultCostModel = new QaCostModel } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/paraphrasing/Paraphrase.scala ================================================ package edu.knowitall.paraphrasing abstract class Paraphrase private () { def source: String def target: String def derivation: ScoredParaphraseDerivation } object Paraphrase { private case class ParaphraseImpl(source: String, target: String, derivation: ScoredParaphraseDerivation) extends Paraphrase def apply(source: String, target: String, derivation: ScoredParaphraseDerivation): Paraphrase = ParaphraseImpl(source, target, derivation) } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/paraphrasing/ParaphraseDerivation.scala ================================================ package edu.knowitall.paraphrasing import com.typesafe.config.ConfigFactory trait ParaphraseDerivation trait ScoredParaphraseDerivation extends ParaphraseDerivation { def score: Double } case object IdentityDerivation extends ScoredParaphraseDerivation { val conf = ConfigFactory.load() override val score = conf.getDouble("paraphrase.identityScore") } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/paraphrasing/Paraphraser.scala ================================================ package edu.knowitall.paraphrasing trait Paraphraser { def paraphrase(s: String): List[Paraphrase] def paraphraseToStrings(s: String): List[String] = paraphrase(s).map(pp => pp.target) } object EmptyParaphraser extends Paraphraser { override def paraphrase(s: String) = List() } object IdentityParaphraser extends Paraphraser { override def paraphrase(s: String) = List(Paraphrase(s, s, IdentityDerivation)) } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/paraphrasing/rules/ParaphraseRule.scala ================================================ package edu.knowitall.paraphrasing.rules import edu.knowitall.parsing.cg.SentencePattern import edu.knowitall.execution.UnquotedTLiteral import edu.knowitall.repr.sentence.Lemmatized import edu.knowitall.repr.sentence.Chunked import edu.knowitall.repr.sentence.Sentence import edu.knowitall.execution.TVariable import edu.knowitall.parsing.cg.LexiconPreprocessor import edu.knowitall.search.qa.QaAction case class ParaphraseRule(name: String, input: SentencePattern, output: String) extends QaAction { private val sp = UnquotedTLiteral(output) def apply(s: Sentence with Chunked with Lemmatized) = if (input.matches(s)) { val groups = input.groups(s) val bindings = groups map { case (name, value) => (TVariable(name), UnquotedTLiteral(value)) } val result = sp.subs(bindings) Some(result.value) } else { None } override def toString = name } case object ParaphraseRule { lazy val preprocessor = LexiconPreprocessor() def fromStrings(strings: IndexedSeq[String]) = for { line <- strings if !line.trim.startsWith("#") && line.trim != "" } yield fromString(line) def fromString(s: String) = s.split("\\s+:=\\s+", 2) match { case Array(input, output) => input.split("\\s+", 2) match { case Array(name, pat) => ParaphraseRule(name, SentencePattern(preprocessor(pat)), output) case _ => throw new IllegalArgumentException(s"Invalid pattern: $input") } case _ => throw new IllegalArgumentException(s"Invalid rule: $s") } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/paraphrasing/rules/ParaphraseRuleSet.scala ================================================ package edu.knowitall.paraphrasing.rules import edu.knowitall.repr.sentence.Sentence import edu.knowitall.repr.sentence.Chunked import edu.knowitall.repr.sentence.Lemmatized import edu.knowitall.util.ResourceUtils import com.typesafe.config.ConfigFactory import edu.knowitall.util.NlpTools import scala.io.Source case class ParaphraseRuleSet(rules: List[ParaphraseRule] = ParaphraseRuleSet.defaultRules) { def apply(s: Sentence with Chunked with Lemmatized) = for { r <- rules p <- r(s) } yield (r, p) } case object ParaphraseRuleSet { val conf = ConfigFactory.load() val defaultRuleSetPath = conf.getString("paraphrase.rules.ruleSetPath") lazy val defaultRules = { val strings = ResourceUtils.resourceSource(defaultRuleSetPath).getLines.toIndexedSeq ParaphraseRule.fromStrings(strings) }.toList def fromPath(p: String) = { val lines = Source.fromFile(p, "UTF-8").getLines.toIndexedSeq ParaphraseRuleSet(ParaphraseRule.fromStrings(lines).toList) } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/paraphrasing/template/LmParaphraseScorer.scala ================================================ package edu.knowitall.paraphrasing.template import edu.knowitall.lm.KenLmServer import edu.knowitall.paraphrasing.ScoredParaphraseDerivation class LmParaphraseScorer extends ParaphraseScorer { val client = new KenLmServer() override def scoreAll(derivs: Iterable[TemplateParaphraseDerivation]): Iterable[TemplateParaphraseDerivation] = { val dlist = derivs.toList val lmScores = client.query(dlist.map(_.paraphrase.question.mkString(" "))).map(_._2) for ((d, score) <- dlist.zip(lmScores)) yield d.copy(score = score, lm = score) } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/paraphrasing/template/ParaphraseScorer.scala ================================================ package edu.knowitall.paraphrasing.template import edu.knowitall.paraphrasing.ScoredParaphraseDerivation trait ParaphraseScorer { def scoreAll(derivs: Iterable[TemplateParaphraseDerivation]): Iterable[TemplateParaphraseDerivation] } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/paraphrasing/template/PmiLmParaphraseScorer.scala ================================================ package edu.knowitall.paraphrasing.template import edu.knowitall.tool.tokenize.ClearTokenizer import edu.knowitall.tool.stem.MorphaStemmer import edu.knowitall.lm.KenLmServer import edu.knowitall.paraphrasing.ScoredParaphraseDerivation class PmiLmParaphraseScorer() extends ParaphraseScorer { val client = new KenLmServer() override def scoreAll(derivs: Iterable[TemplateParaphraseDerivation]): Iterable[TemplateParaphraseDerivation] = { val dlist = derivs.toList val lmScores = client.query(dlist.map(_.paraphrase.question.mkString(" "))).map(_._2) for ((d, lmScore) <- dlist.zip(lmScores)) yield d.copy(score = -lmScore * d.templates.pmi, lm = lmScore) } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/paraphrasing/template/PmiParaphraseScorer.scala ================================================ package edu.knowitall.paraphrasing.template import edu.knowitall.lm.KenLmServer class PmiParaphraseScorer() extends ParaphraseScorer { val client = new KenLmServer() override def scoreAll(derivs: Iterable[TemplateParaphraseDerivation]): Iterable[TemplateParaphraseDerivation] = { val dlist = derivs.toList val lmScores = client.query(dlist.map(_.paraphrase.question.mkString(" "))).map(_._2) for ((d, score) <- dlist.zip(lmScores)) yield d.copy(score = d.templates.pmi) } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/paraphrasing/template/Template.scala ================================================ package edu.knowitall.paraphrasing.template import edu.knowitall.tool.stem.Lemmatized import edu.knowitall.tool.chunk.ChunkedToken import edu.knowitall.util.NlpUtils.makeRegex import scala.collection.JavaConversions._ import edu.knowitall.util.NlpUtils import com.typesafe.config.ConfigFactory import edu.knowitall.tool.stem.Lemmatized.viewAsToken case class Template(left: Seq[Lemmatized[ChunkedToken]], right: Seq[Lemmatized[ChunkedToken]]) { def substitute(value: Seq[Lemmatized[ChunkedToken]]) = left ++ value ++ right def serialize = NlpUtils.serialize(left) + "|" + NlpUtils.serialize(right) val templateString = (left.map(_.lemma.toLowerCase()).mkString(" ") + " $y " + right.map(_.lemma.toLowerCase()).mkString(" ")).trim } case object Template { def deserialize(s: String): Template = { s.split("|") match { case Array(s1, s2) => Template(NlpUtils.deserialize(s1), NlpUtils.deserialize(s2)) case _ => throw new IllegalArgumentException(s"Could not deserialize template: $s") } } } case class AbstractedQuestion(value: Seq[Lemmatized[ChunkedToken]], template: Template) { def this(q: Seq[Lemmatized[ChunkedToken]], i: Int, j: Int) = this(q.slice(i, j), Template(q.slice(0, i), q.slice(j, q.size))) def substitute = template.substitute(value) val valueString = value.map(_.lemma.toLowerCase()).mkString(" ").trim() def serialize = NlpUtils.serialize(value) + "|" + template.serialize } case object AbstractedQuestion { val conf = ConfigFactory.load() def deserialize(s: String): AbstractedQuestion = { s.split("|", 1) match { case Array(value, rest) => AbstractedQuestion(NlpUtils.deserialize(value), Template.deserialize(rest)) case _ => throw new IllegalArgumentException(s"Could not deserialize abstracted question: $s") } } val maxSize = conf.getInt("paraphrase.template.maxArgLength") val valuePattern = makeRegex("^+$") val argPos = "$ PRP$ CD DT JJ JJS JJR NN NNS NNP NNPS POS PRP RB RBR RBS VBN VBG".split(" ").toSet def keepArg(arg: Seq[Lemmatized[ChunkedToken]]) = arg.forall(t => argPos.contains(t.postag)) def intervals(size: Int, max: Int) = for (i <- Range(0, size); j <- Range(i, size); if j+1-i <= max) yield (i, j+1) def detInTemplate(abs: AbstractedQuestion) = abs.template.left.size > 0 && abs.template.left.last.postag == "DT" def keepAbs(abs: AbstractedQuestion) = !detInTemplate(abs) def generateAbstracted(question: Seq[Lemmatized[ChunkedToken]]): Iterable[AbstractedQuestion] = for ((i, j) <- intervals(question.size, maxSize); arg = question.slice(i, j); if keepArg(arg); abs = new AbstractedQuestion(question, i, j); if keepAbs(abs)) //if valuePattern(abs.value) && keepAbs(abs)) yield abs } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/paraphrasing/template/TemplateIndexer.scala ================================================ package edu.knowitall.paraphrasing.template import scala.io.Source import scala.collection.JavaConversions._ import org.apache.solr.common.SolrDocument import org.apache.solr.common.SolrInputDocument import org.apache.solr.client.solrj.impl.ConcurrentUpdateSolrServer import org.apache.solr.client.solrj.SolrServer import org.slf4j.LoggerFactory import org.apache.solr.client.solrj.impl.HttpSolrServer import org.apache.solr.client.solrj.SolrQuery import org.apache.solr.client.solrj.SolrQuery.SortClause import scala.Option.option2Iterable import com.typesafe.config.ConfigFactory import edu.knowitall.util.MathUtils import edu.knowitall.search.qa.QaAction import edu.knowitall.triplestore.SolrClient import edu.knowitall.util.ResourceUtils import org.apache.solr.common.params.GroupParams import org.apache.solr.client.solrj.response.QueryResponse case class ParaphraseTemplateClient(solrUrl: String, maxHits: Int, scale: Boolean = ParaphraseTemplateClient.scale, timeout: Int = ParaphraseTemplateClient.defaultTimeout, stopTemplates: Set[String] = ParaphraseTemplateClient.stopTemplates) { def this() = this(ParaphraseTemplateClient.defaultUrl, ParaphraseTemplateClient.defaultMaxHits, ParaphraseTemplateClient.scale) val logger = LoggerFactory.getLogger(this.getClass) val server = new HttpSolrServer(solrUrl) server.setConnectionTimeout(timeout) server.setSoTimeout(timeout) server.setMaxRetries(1) val searchField = "template1_exact" def paraphrases(s: String, argTypes: List[String] = List("anything"), limit: Int = maxHits) = queryParaphrases(s, argTypes, limit) private def responseToPairs(r: QueryResponse) = for { value <- r.getGroupResponse.getValues groupValue <- value.getValues doc <- groupValue.getResult.toList pair <- TemplatePair.fromDocument(doc) if !(stopTemplates contains pair.template2) } yield pair private def createQuery(s: String, argTypes: List[String], limit: Int = maxHits) = { val typePred = { argTypes map { t => val esc = SolrClient.escape(t) s"""typ_exact:"${t}"""" } }.mkString(s" OR ") val qStr = s"""${searchField}:"${s}" AND ($typePred)""" val query = new SolrQuery(SolrClient.fixQuery(qStr)) query.setRows(maxHits) query.addSort(new SortClause("pmi", SolrQuery.ORDER.desc)) query.set(GroupParams.GROUP, true) query.set(GroupParams.GROUP_FIELD, "template2_exact") query.setParam("shards.tolerant", true) query } def queryParaphrases(s: String, argTypes: List[String] = List("anything"), limit: Int = maxHits): List[TemplatePair] = { val query = createQuery(s, argTypes, limit) val resp = server.query(query) val pairs = responseToPairs(resp).toList pairs } } case object ParaphraseTemplateClient { val conf = ConfigFactory.load() val minPmi = conf.getDouble("paraphrase.template.minPmi") val maxPmi = conf.getDouble("paraphrase.template.maxPmi") val scale = conf.getBoolean("paraphrase.template.scale") val defaultUrl = conf.getString("paraphrase.template.url") val defaultMaxHits = conf.getInt("paraphrase.template.maxHits") val defaultTimeout = conf.getInt("paraphrase.template.timeout") val stopTemplatesPath = conf.getString("paraphrase.template.stopTemplatesPath") lazy val stopTemplates = ResourceUtils.resourceSource(stopTemplatesPath).getLines.toSet } case class TemplatePair(template1: String, template2: String, typ: String, count1: Double, count2: Double, count12: Double, pmi: Double) extends QaAction case object TemplatePair { def fromString(s: String): Option[TemplatePair] = { s.split("\t", 9) match { case Array(t1, t2, typ, count1, count2, count12, pmi) => Some(TemplatePair(t1, t2, typ, count1.toDouble, count2.toDouble, count12.toDouble, pmi.toDouble)) case _ => None } } def fromDocument(doc: SolrDocument): Option[TemplatePair] = { val t1obj: Any = doc.getFieldValue("template1") val t2obj: Any = doc.getFieldValue("template2") val typobj: Any = doc.getFieldValue("typ") val count1obj: Any = doc.getFieldValue("count1") val count2obj: Any = doc.getFieldValue("count2") val count12Obj: Any = doc.getFieldValue("count12") val pmiObj: Any = doc.getFieldValue("pmi") (t1obj, t2obj, typobj, count1obj, count2obj, count12Obj, pmiObj) match { case (t1: String, t2: String, typ: String, count1: Float, count2: Float, count12: Float, pmi: Float) => Some(TemplatePair(t1, t2, typ, count1, count2, count12, pmi)) case _ => None } } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/paraphrasing/template/TemplateParaphraseGenerator.scala ================================================ package edu.knowitall.paraphrasing.template import edu.knowitall.collection.immutable.Interval import com.typesafe.config.ConfigFactory import edu.knowitall.paraphrasing.ScoredParaphraseDerivation import edu.knowitall.lm.KenLmServer case class ArgQuestion(question: Seq[String], argInterval: Interval) { def arg: String = question.slice(argInterval.start, argInterval.end).mkString(" ") } case class TemplateParaphraseDerivation(question: ArgQuestion, paraphrase: ArgQuestion, templates: TemplatePair, score: Double = 0.0, pmi: Double = 0.0, lm: Double = 0.0) extends ScoredParaphraseDerivation { val questionString = question.question.mkString(" ") } trait TemplateParaphraseGenerator { def generate(question: Seq[String]): Iterable[TemplateParaphraseDerivation] } class SolrParaphraseGenerator(url: String, maxHits: Int, maxArgLength: Int) extends TemplateParaphraseGenerator { def this() = this(SolrParaphraseGenerator.defaultUrl, SolrParaphraseGenerator.defaultMaxHits, SolrParaphraseGenerator.defaultMaxArgLength) val client = new ParaphraseTemplateClient() def intervals(size: Int) = for (i <- Range(0, size); j <- Range(i, size); if j+1-i <= maxArgLength) yield Interval.open(i, j+1) def templates(q: ArgQuestion): List[TemplatePair] = { val i = q.argInterval.start val j = q.argInterval.end val n = q.question.size val left = q.question.slice(0, i).mkString(" ") val right = q.question.slice(j, n).mkString(" ") val query = left + " $y " + right client.paraphrases(query, limit = maxHits) } def abstractQuestion(q: Seq[String]): Iterable[ArgQuestion] = { val n = q.size for (i <- intervals(n)) yield ArgQuestion(q, i) } def substitute(q: ArgQuestion, t: TemplatePair): ArgQuestion = { val templ = t.template2 val templSeq = templ.split(" ").toSeq val arg = q.question.slice(q.argInterval.start, q.argInterval.end) val i = templSeq.indexOf("$y") if (i >= 0) { val left = templSeq.slice(0, i) val right = templSeq.slice(i+1, templSeq.size) val para = ArgQuestion(left ++ arg ++ right, Interval.open(i, i+arg.size)) para } else { throw new IllegalArgumentException(s"Could not find var in: $templ") } } override def generate(question: Seq[String]): Iterable[TemplateParaphraseDerivation] = { for (aq <- abstractQuestion(question); t <- templates(aq); para = substitute(aq, t)) yield TemplateParaphraseDerivation(aq, para, t, score = 0.0, pmi = t.pmi, lm = Double.MinValue) } } case object SolrParaphraseGenerator { val conf = ConfigFactory.load() val defaultUrl = conf.getString("paraphrase.template.url") val defaultMaxHits = conf.getInt("paraphrase.template.maxHits") val defaultMaxArgLength = conf.getInt("paraphrase.template.maxArgLength") } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/paraphrasing/template/TemplateParaphraser.scala ================================================ package edu.knowitall.paraphrasing.template import edu.knowitall.paraphrasing.Paraphraser import edu.knowitall.tool.postag.StanfordPostagger import edu.knowitall.tool.tokenize.ClearTokenizer import org.slf4j.LoggerFactory import edu.knowitall.tool.stem.MorphaStemmer import edu.knowitall.paraphrasing.Paraphrase import com.typesafe.config.ConfigFactory case class TemplateParaphraser(scorer: ParaphraseScorer, generator: TemplateParaphraseGenerator) extends Paraphraser { def this() = this(TemplateParaphraser.defaultScorer, new SolrParaphraseGenerator()) lazy val tagger = new StanfordPostagger() lazy val tokenizer = new ClearTokenizer() val logger = LoggerFactory.getLogger(this.getClass) def stemString(s: String): Seq[String] = { val tokens = tokenizer(s) val tagged = tagger.postagTokenized(tokens) val lemmas = tagged.map(t => MorphaStemmer.lemmatizePostaggedToken(t).lemma.toLowerCase()) lemmas } override def paraphrase(s: String) = { val stemmed = stemString(s) val paraphrases = generator.generate(stemmed) val scored = scorer.scoreAll(paraphrases).toList val grouped = scored.groupBy(sp => sp.paraphrase.question).values val maxed = grouped.map(g => g.maxBy(d => d.score)).toList val sorted = maxed.sortBy(d => -d.score) for (deriv <- sorted; target = deriv.paraphrase.question.mkString(" ")) yield Paraphrase(s, target, deriv) } } case object TemplateParaphraser { val conf = ConfigFactory.load() val scoringModel = conf.getString("paraphrase.template.scoringModel") val defaultScorer = scoringModel match { case "pmi" => new PmiParaphraseScorer() case "lm" => new LmParaphraseScorer() case "pmiLm" => new PmiLmParaphraseScorer() case _ => throw new IllegalStateException(s"Could not load default scoring model '$scoringModel'") } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/parsing/cg/CKY.scala ================================================ package edu.knowitall.parsing.cg import edu.knowitall.repr.sentence.Sentence import edu.knowitall.repr.sentence.Lemmatized import edu.knowitall.repr.sentence.Chunked import edu.knowitall.collection.immutable.Interval import scala.collection.mutable.{Map => MutableMap} import edu.knowitall.util.MathUtils sealed trait Node { def span: Interval def category: Category } case class CatSpan(category: Category, span: Interval) case class Terminal(catspan: CatSpan, rule: TerminalRule) extends Node { override val span = catspan.span override val category = catspan.category } case class NonTerminal(catspan: CatSpan, left: CatSpan, right: CatSpan, rule: Combinator) extends Node { override val span = catspan.span override val category = catspan.category } sealed trait Derivation { def catspan: CatSpan def category = catspan.category def interval = catspan.span def terminals: List[LexicalStep] def combinators: List[Combinator] } case class CombinatorStep(catspan: CatSpan, rule: Combinator, left: Derivation, right: Derivation) extends Derivation { override def combinators = rule :: (left.combinators ++ right.combinators) override def terminals = left.terminals ++ right.terminals } case class LexicalStep(catspan: CatSpan, rule: TerminalRule) extends Derivation { override def combinators = Nil override def terminals = List(this) override def toString = s"$rule => $interval $category" } case class CKY(input: Sentence with Chunked with Lemmatized, size: Int, terminalRules: IndexedSeq[TerminalRule], combinators: IndexedSeq[Combinator]) { val cats = MutableMap.empty[Interval, Set[Category]] val nodes = MutableMap.empty[CatSpan, Node] private def applyTerminalRules = for { interval <- MathUtils.allIntervals(size) rule <- terminalRules category <- rule(interval, input) catspan = CatSpan(category, interval) terminal = Terminal(catspan, rule) } yield { cats += (interval -> (cats.getOrElse(interval, Set.empty) + category)) nodes += (catspan -> terminal) } private def applyCombinators(length: Int) = for { interval <- MathUtils.intervals(length, size) (left, right) <- MathUtils.splits(interval) lcat <- cats.getOrElse(left, Set.empty) rcat <- cats.getOrElse(right, Set.empty) combinator <- combinators cat <- combinator(lcat, rcat) node = NonTerminal(CatSpan(cat, interval), CatSpan(lcat, left), CatSpan(rcat, right), combinator) } { cats += (interval -> (cats.getOrElse(interval, Set.empty) + cat)) nodes += (CatSpan(cat, interval) -> node) } def parse = { applyTerminalRules for (length <- 2 to size) applyCombinators(length) } private val fullSpan = Interval.open(0, size) def rootCategories = cats.getOrElse(fullSpan, Set()) def derivations(catspan: CatSpan): Iterable[Derivation] = nodes.get(catspan) match { case None => Iterable.empty case Some(node) => node match { case Terminal(cs, rule) => Iterable(LexicalStep(catspan, rule)) case NonTerminal(cs, left, right, rule) => for { leftd <- derivations(left) rightd <- derivations(right) } yield CombinatorStep(catspan, rule, leftd, rightd) } } def rootDerivations = for { c <- cats.getOrElse(fullSpan, Set.empty) cs = CatSpan(c, fullSpan) d <- derivations(cs) } yield d } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/parsing/cg/Categories.scala ================================================ package edu.knowitall.parsing.cg import edu.knowitall.execution.TLiteral import edu.knowitall.execution.TVariable import edu.knowitall.execution.ConjunctiveQuery import edu.knowitall.execution.FieldIndex import edu.knowitall.execution.TVal import edu.knowitall.execution.UnquotedTLiteral trait Category { def categoryString: String } case class Arg(value: TLiteral) extends Category { override val categoryString = "Arg" } case class Unary(freeVar: TVariable, query: ConjunctiveQuery, modFields: Set[FieldIndex] = Set.empty) extends Category { override val categoryString = "Unary" private def renameFieldIndex(prefix: String, index: FieldIndex) = { val i = query.conjuncts.indexWhere(c => c.name == index.conjunctName) assume(i >= 0, s"field index $index not in query $query") index.copy(conjunctName = s"${prefix}.$i") } def renameConjuncts(prefix: String): Unary = { val newFields = modFields.map(renameFieldIndex(prefix, _)) val newQuery = query.renameConjuncts(prefix) Unary(freeVar, newQuery, newFields) } def intersect(that: Unary): Unary = { val u1 = this.renameConjuncts("r") val u2 = that.renameConjuncts("s") val newVar = TVariable(u1.freeVar.name + u2.freeVar.name) val oldVar1 = u1.freeVar val oldVar2 = u2.freeVar val query1 = u1.query.subs(oldVar1, newVar) val query2 = u2.query.subs(oldVar2, newVar) val newQuery = query1.combine(query2).subs(newVar, Unary.finalVar) Unary(newVar, newQuery, u1.modFields ++ u2.modFields) } } case object Unary { val finalVar = TVariable("x") } case class Binary(leftVar: TVariable, rightVar: TVariable, query: ConjunctiveQuery, modFields: Set[FieldIndex] = Set.empty) extends Category { override val categoryString = "Binary" def leftApply(a: Arg): Unary = { val newQuery = query.subs(leftVar, a.value) Unary(rightVar, newQuery, modFields) } def rightApply(a: Arg): Unary = { val newQuery = query.subs(rightVar, a.value) Unary(leftVar, newQuery, modFields) } } case class Mod(value: String) extends Category { override val categoryString = "Mod" private def updateValue(v: TVal) = v match { case l: TLiteral => l.update(s"${l.value} $value") case _ => v } private def modifyFields(is: List[FieldIndex], q: ConjunctiveQuery): ConjunctiveQuery = is match { case Nil => q case i :: rest => modifyFields(rest, i.updateQuery(q, updateValue)) } def modify(u: Unary): Option[Unary] = { val newQuery = modifyFields(u.modFields.toList, u.query) if (newQuery == u.query) { None } else { Some(u.copy(query = newQuery)) } } override def toString = s"Mod($value)" } object Identity extends Category { override val categoryString = "Identity" override def toString = "Identity" } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/parsing/cg/CategoryPattern.scala ================================================ package edu.knowitall.parsing.cg import edu.knowitall.execution.TVariable import edu.knowitall.execution.ListConjunctiveQuery import edu.knowitall.execution.UnquotedTLiteral import edu.knowitall.execution.Search.rel import edu.knowitall.execution.FieldIndex trait CategoryPattern { def apply(bindings: Map[TVariable, String]): Option[Category] } object CategoryPattern { def fromString(s: String) = s.trim().split("\\s+", 2) match { case Array("identity") => IdentityPattern case Array("unary", pattern) => UnaryPattern(pattern) case Array("binary", pattern) => BinaryPattern(pattern) case Array("argument", pattern) => ArgumentPattern(pattern) case Array("mod", pattern) => ModPattern(pattern) case _ => throw new IllegalArgumentException(s"Invalid pattern string: $s") } } case class UnaryPattern(pattern: String) extends CategoryPattern { private val cqp = ConjunctiveQueryPattern(pattern) assume(cqp.boundVars.size == 1, s"UnaryPattern $pattern must have 1 bound variable") val freeVar = cqp.query.qVars(0) override def apply(bindings: Map[TVariable, String]) = for { query <- cqp(bindings) } yield Unary(freeVar, query) } case class BinaryPattern(pattern: String) extends CategoryPattern { private val cqp = ConjunctiveQueryPattern(pattern) assume(cqp.boundVars.size == 2, s"BinaryPattern $pattern must have 2 bound variables") val leftVar = cqp.query.qVars(0) val rightVar = cqp.query.qVars(1) override def apply(bindings: Map[TVariable, String]) = for { query <- cqp(bindings) relFields = for { c <- query.conjuncts (field, value) <- c.values if field == rel } yield FieldIndex(c.name, field) } yield Binary(leftVar, rightVar, query, relFields.toSet) } case class ArgumentPattern(pattern: String) extends CategoryPattern { private val sp = UnquotedTLiteral(pattern) override def apply(bindings: Map[TVariable, String]) = { val valBindings = bindings map { case (k, v) => (k, UnquotedTLiteral(v)) } Some(Arg(sp.subs(valBindings))) } } case class ModPattern(pattern: String) extends CategoryPattern { private val sp = UnquotedTLiteral(pattern) override def apply(bindings: Map[TVariable, String]) = { val valBindings = bindings map { case (k, v) => (k, UnquotedTLiteral(v)) } Some(Mod(sp.subs(valBindings).toString)) } } object IdentityPattern extends CategoryPattern { override def apply(bindings: Map[TVariable, String]) = Some(Identity) } case class ConjunctiveQueryPattern(pattern: String) { val query = ListConjunctiveQuery.fromString(pattern) match { case Some(x) => x case None => throw new IllegalArgumentException(s"Invalid pattern: $pattern") } val boundVars = query.qVars val freeVars = query.conjuncts.flatMap(_.vars).toSet -- boundVars def apply(bindings: Map[TVariable, String]) = { if (freeVars.subsetOf(bindings.keys.toSet)) { val literals = bindings map { case (tvar, s) => (tvar, UnquotedTLiteral(s)) } Some(query.subs(literals)) } else { None } } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/parsing/cg/CgParser.scala ================================================ package edu.knowitall.parsing.cg import com.typesafe.config.ConfigFactory import java.io.FileInputStream import java.io.File import edu.knowitall.util.ResourceUtils import edu.knowitall.util.NlpTools import edu.knowitall.tool.chunk.Chunker import edu.knowitall.tool.stem.Stemmer import edu.knowitall.execution.ConjunctiveQuery import edu.knowitall.search.qa.QaAction import edu.knowitall.repr.sentence.Lemmatized import edu.knowitall.repr.sentence.Chunked import edu.knowitall.repr.sentence.Sentence import edu.knowitall.collection.immutable.Interval import edu.knowitall.execution.TLiteral case class ParsedQuestion(question: Sentence with Chunked with Lemmatized, query: ConjunctiveQuery, derivation: Derivation) extends QaAction { private def sliceString[A](seq: Traversable[A], i: Interval) = seq.slice(i.start, i.end).mkString(" ") def postags(i: Interval) = sliceString(question.postags, i) } case class CgParser(lexicon: IndexedSeq[LexicalRule] = CgParser.defaultLexicon, combinators: IndexedSeq[Combinator] = CgParser.defaultCombinators, chunker: Chunker = NlpTools.dummyChunker, lemmatizer: Stemmer = NlpTools.stemmer, maxConjuncts: Int = CgParser.defaultMaxConjuncts, outputFilter: ParsedQuestion => Boolean = CgParser.defaultOutputFilter) { private def process(s: String) = NlpTools.process(s, chunker, lemmatizer) private def getQuery(cat: Category) = cat match { case Unary(freeVar, query, _) => Some(query) case _ => None } def parse(s: String) = { val sent = process(s) val n = sent.tokens.size val cky = new CKY(sent, n, lexicon, combinators) cky.parse for { derivation <- cky.rootDerivations query <- derivation.category match { case u: Unary => Some(u.query) case _ => None } output = ParsedQuestion(sent, query, derivation) if output.query.conjuncts.size <= maxConjuncts if outputFilter(output) } yield ParsedQuestion(sent, query, derivation) } def apply(s: String) = parse(s) } case object CgParser { val conf = ConfigFactory.load() val defaultCombinators = IndexedSeq(RightApply, LeftApply, UnaryIntersect, UnaryIdentity, ApplyMod) lazy val lexiconIn = if (conf.hasPath("parsing.cg.lexiconPath")) { new FileInputStream(new File(conf.getString("parsing.cg.lexiconPath"))) } else { ResourceUtils.resource(conf.getString("parsing.cg.lexiconClasspath")) } lazy val ruleKeep = conf.getString("parsing.cg.lexicalRuleKeep").r lazy val ruleSkip = conf.getString("parsing.cg.lexicalRuleSkip").r lazy val defaultLexicon = LexicalRule.fromInputStream(lexiconIn).filter { rule => ruleKeep.findPrefixMatchOf(rule.name).isDefined && !ruleSkip.findPrefixMatchOf(rule.name).isDefined } lazy val defaultMaxConjuncts = conf.getInt("parsing.cg.maxConjuncts") lazy val defaultOutputFilter = { val relIn = ResourceUtils.resource("/edu/knowitall/parsing/cg/relFilters.txt") val rels = ParserRelFilter.fromInputStream(relIn) val argIn = ResourceUtils.resource("/edu/knowitall/parsing/cg/argFilters.txt") val args = ParserArgFilter.fromInputStream(argIn) (rels ++ args).reduce((a, b) => (x => a(x) && b(x))) } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/parsing/cg/Combinators.scala ================================================ package edu.knowitall.parsing.cg import edu.knowitall.execution.ListConjunctiveQuery import edu.knowitall.execution.UnquotedTLiteral import edu.knowitall.execution.TVariable import edu.knowitall.collection.immutable.Interval import edu.knowitall.repr.sentence.Lemmatized import edu.knowitall.repr.sentence.Chunked import edu.knowitall.repr.sentence.Sentence import edu.knowitall.tool.typer.Type trait Combinator { def apply(left: Category, right: Category): Option[Category] } trait TerminalRule { def apply(interval: Interval, sent: Sentence with Chunked with Lemmatized): Option[Category] } object RightApply extends Combinator { override def apply(left: Category, right: Category) = (left, right) match { case (b: Binary, a: Arg) => Some(b.rightApply(a)) case _ => None } override def toString = "RightApply" } object LeftApply extends Combinator { override def apply(left: Category, right: Category) = (left, right) match { case (a: Arg, b: Binary) => Some(b.leftApply(a)) case _ => None } override def toString = "LeftApply" } object UnaryIntersect extends Combinator { override def apply(left: Category, right: Category) = (left, right) match { case (u1: Unary, u2: Unary) => { Some(u1.intersect(u2)) } case _ => None } override def toString = "UnaryIntersect" } object UnaryIdentity extends Combinator { override def apply(left: Category, right: Category) = (left, right) match { case (Identity, u: Unary) => Some(u) case (u: Unary, Identity) => Some(u) case _ => None } override def toString = "UnaryIdentity" } object ApplyMod extends Combinator { override def apply(left: Category, right: Category) = (left, right) match { case (m: Mod, u: Unary) => m.modify(u) case _ => None } override def toString = "Mod" } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/parsing/cg/LexicalRule.scala ================================================ package edu.knowitall.parsing.cg import edu.knowitall.repr.sentence.Lemmatized import edu.knowitall.repr.sentence.Chunked import edu.knowitall.repr.sentence.Sentence import edu.knowitall.collection.immutable.Interval import edu.knowitall.util.NlpUtils import java.io.InputStream import scala.io.Source import edu.knowitall.util.ResourceUtils case class LexicalRule(syntax: PatternExtractor, semantics: CategoryPattern) extends TerminalRule { val name = syntax.patternName override def apply(interval: Interval, sent: Sentence with Chunked with Lemmatized) = { val span = NlpUtils.split(sent, interval.start, interval.end) if (syntax.matches(span)) { semantics(syntax(span)) } else { None } } override def toString = name } object LexicalRule { lazy val preprocessor = LexiconPreprocessor() def fromString(s: String, preprocessor: LexiconPreprocessor = preprocessor) = { s.split(":=", 2) match { case Array(synStr, semStr) => { val syntax = PatternExtractor.fromString(preprocessor(synStr.trim)) val semantics = CategoryPattern.fromString(semStr.trim) LexicalRule(syntax, semantics) } case _ => throw new IllegalArgumentException(s"Invalid lexical rule string: $s") } } def fromStrings(strings: IndexedSeq[String]) = for { line <- strings if !line.trim.startsWith("#") && line.trim != "" } yield LexicalRule.fromString(line.trim()) def fromInputStream(is: InputStream) = fromStrings(Source.fromInputStream(is).getLines.toIndexedSeq) def fromFile(path: String) = fromStrings(Source.fromFile(path).getLines.toIndexedSeq) def fromResource(path: String) = fromInputStream(ResourceUtils.resource(path)) } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/parsing/cg/LexiconPreprocessor.scala ================================================ package edu.knowitall.parsing.cg import com.typesafe.config.ConfigFactory import scala.io.Source import edu.knowitall.util.ResourceUtils import java.util.regex.Matcher case class LexiconPreprocessor(macros: Map[String, String] = LexiconPreprocessor.defaultMacros) { val mlist = macros.toList def apply(s: String) = applyMacros(mlist, s) private def applyMacros(nr: List[(String, String)], s: String): String = nr match { case Nil => s case (name, replacement) :: rest => applyMacros(rest, applyMacro(name, replacement, s)) } private def applyMacro(name: String, replacement: String, s: String) = { s.replaceAll(s"@${name}\\b", Matcher.quoteReplacement(replacement)) } def update(line: String) = line.split(" ", 2) match { case Array(name, value) => copy(macros = macros.updated(name, "(?:" + this(value) + ")")) case _ => throw new IllegalArgumentException(s"Invalid macro instruction: $line") } } object LexiconPreprocessor { val conf = ConfigFactory.load() private def isInstr(line: String) = { val linet = line.trim linet != "" && !linet.startsWith("#") && !linet.startsWith("//") } def fromLines(lines: List[String], prep: LexiconPreprocessor = LexiconPreprocessor(Map.empty)): LexiconPreprocessor = lines match { case Nil => prep case line :: rest if isInstr(line) => fromLines(rest, prep.update(line)) case line :: rest => fromLines(rest, prep) } lazy val defaultPreprocessor = if (conf.hasPath("parsing.cg.macroPath")) { val lines = Source.fromFile(conf.getString("parsing.cg.macroPath"), "UTF-8").getLines fromLines(lines.toList) } else if (conf.hasPath("parsing.cg.macroClasspath")) { val p = conf.getString("parsing.cg.macroClasspath") val lines = Source.fromInputStream(ResourceUtils.resource(p), "UTF-8").getLines fromLines(lines.toList) } else { LexiconPreprocessor(Map.empty[String, String]) } lazy val defaultMacros = defaultPreprocessor.macros } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/parsing/cg/ParserFieldFilter.scala ================================================ package edu.knowitall.parsing.cg import edu.knowitall.execution.Search import edu.knowitall.execution.TLiteral import java.io.InputStream import scala.io.Source class ParserFieldFilter(field: Search.Field, pattern: String) extends Function[ParsedQuestion, Boolean] { private val pat = pattern.r override def apply(pq: ParsedQuestion): Boolean = { val values = for { c <- pq.query.conjuncts (f, v) <- c.values collect { case (a, b: TLiteral) => (a, b.value) } if f == field } yield v val hasMatch = values.exists(pat.findFirstIn(_).isDefined) !hasMatch } } case class ParserRelFilter(pattern: String) extends ParserFieldFilter(Search.rel, pattern) case object ParserRelFilter { def fromInputStream(in: InputStream) = ParserFieldFilter.fromInputStream(Search.rel, in) } case class ParserArgFilter(pattern: String) extends Function[ParsedQuestion, Boolean] { val p1 = new ParserFieldFilter(Search.arg1, pattern) val p2 = new ParserFieldFilter(Search.arg2, pattern) override def apply(pq: ParsedQuestion): Boolean = p1(pq) && p2(pq) } case object ParserArgFilter { def fromInputStream(in: InputStream) = { val lines = Source.fromInputStream(in, "UTF-8").getLines.toList.map(ParserFieldFilter.removeComment).filter(_ != "") lines.map(ParserArgFilter(_)) } } object ParserFieldFilter { def removeComment(line: String) = line.replaceAll("#.*", "").replaceAll("//.*", "").trim def fromLines(field: Search.Field, lines: Iterable[String]) = for { line <- lines replaced = removeComment(line) if replaced != "" } yield new ParserFieldFilter(field, replaced) def fromInputStream(field: Search.Field, in: InputStream) = fromLines(field, Source.fromInputStream(in, "UTF-8").getLines.toIterable) } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/parsing/cg/PatternExtractor.scala ================================================ package edu.knowitall.parsing.cg import edu.knowitall.taggers.tag.PatternTagger import edu.knowitall.repr.sentence.Lemmatized import edu.knowitall.repr.sentence.Chunked import edu.knowitall.repr.sentence.Sentence import edu.knowitall.execution.TVariable import edu.knowitall.taggers.NamedGroupType import edu.knowitall.tool.typer.Type import scala.util.Try import edu.knowitall.util.NlpTools case class PatternExtractor(patternName: String, pattern: SentencePattern) { def matches(s: Sentence with Chunked with Lemmatized) = pattern.matches(s) def extract(s: Sentence with Chunked with Lemmatized): Map[TVariable, String] = { pattern.groups(s) map { case (name, value) => (TVariable(name) -> value) } } def apply(s: Sentence with Chunked with Lemmatized) = extract(s) } case object PatternExtractor { private val defPattern = "^([A-Za-z]+[a-z0-9]*)\\s*(.*)$".r def fromString(s: String) = s.trim match { case defPattern(name, pattern) => PatternExtractor(name, SentencePattern("^"+pattern+"$")) case _ => throw new IllegalArgumentException("Invalid definition: $s") } def fromLines(lines: Iterable[String]) = lines map fromString } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/parsing/cg/SentencePattern.scala ================================================ package edu.knowitall.parsing.cg import edu.knowitall.taggers.pattern.PatternBuilder import edu.knowitall.repr.sentence.Sentence import edu.knowitall.repr.sentence.Chunked import edu.knowitall.repr.sentence.Lemmatized import edu.knowitall.taggers.pattern.TypedToken import edu.washington.cs.knowitall.regex.Expression.NamedGroup import edu.knowitall.tool.tokenize.Tokenizer case class SentencePattern(patternString: String) { private val pattern = PatternBuilder.compile(patternString) private def buildSeq(s: Sentence with Chunked with Lemmatized) = s.lemmatizedTokens.zipWithIndex map { case (t, i) => TypedToken(t, i, Set.empty) } def matches(s: Sentence with Chunked with Lemmatized) = pattern.matches(buildSeq(s)) def groups(s: Sentence with Chunked with Lemmatized) = { val seq = buildSeq(s) val result = pattern.find(seq) match { case None => Map.empty case Some(matchObj) => for { i <- 0 until matchObj.groups.size group = matchObj.groups(i) tokens = s.lemmatizedTokens.slice(group.interval.start, group.interval.end).map(_.token) if !tokens.isEmpty text = Tokenizer.originalText(tokens, tokens.head.offsets.start) name <- group.expr match { case namedGroup: NamedGroup[_] => Some(namedGroup.name) case _ => None } } yield (name, text) } result.toMap } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/relsyn/IsaRelSynClient.scala ================================================ package edu.knowitall.relsyn import edu.knowitall.util.ResourceUtils import edu.knowitall.execution.TConjunct object IsaRelSynClient extends RelSynClient { lazy val client = ListRelSynClient.fromInputStream(ResourceUtils.resource("/edu/knowitall/search/qa/isa.txt")) override def relSyns(c: TConjunct) = client.relSyns(c) } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/relsyn/ListRelSynClient.scala ================================================ package edu.knowitall.relsyn import scala.io.Source import java.io.InputStream import edu.knowitall.execution.TConjunct import edu.knowitall.execution.Search import edu.knowitall.execution.UnquotedTLiteral import edu.knowitall.execution.QuotedTLiteral case class ListRelSynClient(rules: List[RelSynRule]) extends RelSynClient { private def rulesFor(rel: String) = rules.filter(_.rel1 == rel.toLowerCase) override def relSyns(c: TConjunct) = { c.values.get(Search.rel) match { case Some(UnquotedTLiteral(l)) => rulesFor(l) case Some(QuotedTLiteral(l)) => rulesFor(l) case _ => List.empty } } } case object ListRelSynClient { def fromInputStream(is: InputStream) = ListRelSynClient(Source.fromInputStream(is).getLines.map(RelSynRule.deserialize).toList) } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/relsyn/RelSynClient.scala ================================================ package edu.knowitall.relsyn import edu.knowitall.execution.TConjunct trait RelSynClient { def relSyns(c: TConjunct): List[RelSynRule] } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/relsyn/RelSynRule.scala ================================================ package edu.knowitall.relsyn import edu.knowitall.execution.TConjunct import edu.knowitall.execution.Search import edu.knowitall.execution.TLiteral import edu.knowitall.execution.QuotedTLiteral import edu.knowitall.search.qa.QaAction import edu.knowitall.execution.UnquotedTLiteral case class RelSynRule(rel1: String, rel2: String, inverted: Boolean, count1: Double, count2: Double, jointCount: Double, pmi: Double) extends QaAction { private def swapArgs(c: TConjunct) = for { a1 <- c.values.get(Search.arg1) a2 <- c.values.get(Search.arg2) newvals = c.values ++ List((Search.arg1 -> a2), (Search.arg2 -> a1)) } yield c.copy(values = newvals) private def adjustSwap(c: TConjunct) = if (inverted) swapArgs(c) else Some(c) private def replaceRel(c: TConjunct) = { val newr = UnquotedTLiteral(rel2) Some(c.copy(values = c.values + (Search.rel -> newr))) } private def relValue(c: TConjunct) = for { value <- c.values.get(Search.rel) svalue <- value match { case l: TLiteral => Some(l.value) case _ => None } } yield svalue def apply(c: TConjunct) = for { svalue <- relValue(c) withNewRel <- replaceRel(c) newc <- adjustSwap(withNewRel) } yield newc def serialize = List(rel1, rel2, inverted, count1, count2, jointCount, pmi).mkString("\t") } case object RelSynRule { def deserialize(line: String) = line.trim.split("\t").toList match { case rel1 :: rel2 :: inverteds :: count1s :: count2s :: jointCounts :: pmis :: Nil => RelSynRule(rel1, rel2, inverteds.toBoolean, count1s.toDouble, count2s.toDouble, jointCounts.toDouble, pmis.toDouble) case _ => throw new IllegalArgumentException(s"Invalid RelSynRule: $line") } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/relsyn/SolrRelSynClient.scala ================================================ package edu.knowitall.relsyn import com.typesafe.config.ConfigFactory import org.apache.solr.client.solrj.impl.HttpSolrServer import org.apache.solr.common.SolrDocument import org.apache.solr.client.solrj.SolrQuery import scala.collection.JavaConversions._ import org.apache.solr.client.solrj.SolrQuery.SortClause import edu.knowitall.util.MathUtils import edu.knowitall.execution.TConjunct import edu.knowitall.execution.Search import edu.knowitall.execution.TLiteral import edu.knowitall.execution.UnquotedTLiteral import edu.knowitall.execution.QuotedTLiteral import edu.knowitall.execution.ConjunctiveQuery import edu.knowitall.tool.tokenize.ClearTokenizer import edu.knowitall.tool.postag.StanfordPostagger import edu.knowitall.tool.stem.MorphaStemmer import edu.knowitall.tool.stem.Stemmer import edu.knowitall.tool.tokenize.Tokenizer import edu.knowitall.tool.postag.Postagger import org.slf4j.LoggerFactory import edu.knowitall.util.NlpTools import com.twitter.util.LruMap import scala.collection.mutable.SynchronizedMap case class SolrRelSynClient(url: String = SolrRelSynClient.defaultUrl, stemmer: Stemmer = NlpTools.stemmer, tokenizer: Tokenizer = NlpTools.tokenizer, tagger: Postagger = NlpTools.tagger, maxHits: Int = SolrRelSynClient.defaultMaxHits, scale: Boolean = SolrRelSynClient.defaultScale, cacheSize: Int = SolrRelSynClient.defaultCacheSize, timeout: Int = SolrRelSynClient.defaultTimeout) extends RelSynClient { private val client = new HttpSolrServer(url) client.setConnectionTimeout(timeout) client.setSoTimeout(timeout) client.setMaxRetries(1) val logger = LoggerFactory.getLogger(this.getClass) private val cache = new LruMap[(String, Int), List[RelSynRule]](cacheSize) with SynchronizedMap[(String, Int), List[RelSynRule]] private def getValue(n: String, d: SolrDocument): Option[Any] = { val value = d.getFieldValue(n) if (value == null) None else Some(value) } private def getString(n: String, d: SolrDocument) = for { v <- getValue(n, d) s <- v match { case s: String => Some(s) case _ => None } } yield s private def getDouble(n: String, d: SolrDocument) = for { v <- getValue(n, d) d <- v match { case d: Double => Some(d) case f: Float => Some(f.toDouble) case _ => None } } yield d private def getBoolean(n: String, d: SolrDocument) = for { v <- getValue(n, d) b <- v match { case b: Boolean => Some(b) case _ => None } } yield b private def fromDoc(d: SolrDocument) = for { rel1 <- getString("rel1", d) rel2 <- getString("rel2", d) inverted <- getBoolean("inverted", d) count1 <- getDouble("marg_count1", d) count2 <- getDouble("marg_count2", d) joint <- getDouble("joint_count", d) pmi <- getDouble("pmi", d) } yield RelSynRule(rel1, rel2, inverted, count1, count2, joint, pmi) private def stemString(s: String) = NlpTools.normalize(s) private def fetchRelSyns(s: String, limit: Int = maxHits) = { val stems = stemString(s) val query = new SolrQuery(s"""${SolrRelSynClient.searchField}:"${stems}"""") logger.debug(s"Getting relSyns for ${stems}") query.setRows(maxHits) query.addSort(new SortClause("pmi", SolrQuery.ORDER.desc)) query.setParam("shards.tolerant", true) val resp = client.query(query) val pairs = resp.getResults().toList.flatMap(fromDoc) pairs.map(pair => pair.copy(pmi = scalePmi(pair.pmi))) } private def relSyns(s: String, limit: Int = maxHits) = cache.get((s, limit)) match { case Some(x) => x case None => { val results = fetchRelSyns(s, limit) cache.put((s, limit), results) results } } override def relSyns(c: TConjunct): List[RelSynRule] = c.values.get(Search.rel) match { case Some(UnquotedTLiteral(l)) => relSyns(l) case Some(QuotedTLiteral(l)) => relSyns(l) case _ => Nil } private def scalePmi(x: Double): Double = if (scale) MathUtils.clipScale(x, SolrRelSynClient.minPmi, SolrRelSynClient.maxPmi) else x } case object SolrRelSynClient { val conf = ConfigFactory.load() val defaultUrl = conf.getString("relsyn.url") val defaultMaxHits = conf.getInt("relsyn.maxHits") val defaultScale = conf.getBoolean("relsyn.scale") val defaultCacheSize = conf.getInt("relsyn.cacheSize") val defaultTimeout = conf.getInt("relsyn.timeout") val minPmi = conf.getDouble("relsyn.minPmi") val maxPmi = conf.getDouble("relsyn.maxPmi") val searchField = "rel1_exact" } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/search/Beam.scala ================================================ package edu.knowitall.search trait Beam[State, Action] { def nodes: Iterable[Node[State, Action]] def splitAt(k: Int): (Iterable[Node[State, Action]], Iterable[Node[State, Action]]) def setNodes(nodes: Iterable[Node[State, Action]]): Unit def setNodes(nodes: Node[State, Action]*): Unit = setNodes(nodes) def size: Int def isEmpty = size == 0 } object Beam { def distinctByState[State, Action](nodes: Iterable[Node[State, Action]]) = nodes.groupBy(_.state) map { case (state, group) => group.minBy(_.pathCost) } } class SingleBeam[State, Action](beamSize: Int) extends Beam[State, Action] { def this(beamSize: Int, nodes: Iterable[Node[State, Action]]) = { this(beamSize) setNodes(nodes) } private var beam = List.empty[Node[State, Action]] override def nodes = beam override def splitAt(k: Int) = beam.splitAt(k) override def setNodes(nodes: Iterable[Node[State, Action]]) = { beam = Beam.distinctByState(nodes).toList.sortBy(_.pathCost).take(beamSize) } override def size = beam.size } class TypedBeams[State, Action, T](f: Node[State, Action] => T, beamSize: Int) extends Beam[State, Action] { private var beams = Map.empty[T, SingleBeam[State, Action]] override def nodes = beams.values.flatMap(_.nodes).toList.sortBy(_.pathCost) override def splitAt(k: Int) = { val listOfNodes = beams.values.map(_.nodes).toList val orderedNodes = transpose(listOfNodes).flatten orderedNodes.splitAt(k) } override def setNodes(nodes: Iterable[Node[State, Action]]) = { val distinct = Beam.distinctByState(nodes) val grouped = distinct.groupBy(f) beams = for ((t, typed) <- grouped; beam = new SingleBeam(beamSize, typed)) yield (t -> beam) } override def size = beams.values.map(_.size).sum private def transpose[T](xss: List[List[T]]): List[List[T]] = xss.filter(!_.isEmpty) match { case Nil => Nil case ys: List[List[T]] => ys.map{ _.head }::transpose(ys.map{ _.tail }) } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/search/BeamSearch.scala ================================================ package edu.knowitall.search import scala.collection.mutable.{Set => MutableSet} import scala.collection.mutable.{Map => MutableMap} import org.slf4j.LoggerFactory import com.typesafe.config.ConfigFactory class BeamSearch[State, Action]( override val problem: SearchProblem[State, Action], beam: Beam[State, Action], goalSize: Int = BeamSearch.defaultGoalSize, maxIters: Int = BeamSearch.defaultMaxIters, expandPerIter: Int = BeamSearch.defaultExpandPerIter) extends SearchAlgorithm[State, Action] { assert(goalSize >= 1) override val logger = LoggerFactory.getLogger(this.getClass) override def continueSearch = (goals.size < goalSize) && (!beam.isEmpty) && (iterNum < maxIters) override def searchIter = { val initialSize = beam.size logger.debug("Expanding frontier") val (toExpand, toKeep) = beam.splitAt(expandPerIter) toExpand foreach { n => logger.debug(s"Chose to expand: ${n.pathCost} ${n.state}") } val newNodes = toExpand.par.flatMap(expand).toList logger.debug(s"Expanded to ${newNodes.size} new nodes") logger.debug("Adding goal nodes") newNodes.filter(isGoal).foreach(addGoalNode) logger.debug("Updating new frontier") beam.setNodes(newNodes.filter(n => !isGoal(n) && !haveExpanded(n)) ++ toKeep) val numGoals = newNodes.count(isGoal(_)) logger.debug(s"Done with search iteration $iterNum") logger.debug(s"Initial frontier size = $initialSize") logger.debug(s"Final frontier size = ${beam.size}") logger.debug(s"Expanded to ${newNodes.size} new nodes") logger.debug(s"Found $numGoals new goal nodes") } override def initialize = beam.setNodes(rootNode) } object BeamSearch { val conf = ConfigFactory.load() val defaultMaxIters = conf.getInt("search.maxIters") val defaultGoalSize = conf.getInt("search.goalSize") val defaultExpandPerIter = conf.getInt("search.expandPerIter") } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/search/BestFirstSearch.scala ================================================ package edu.knowitall.search import scala.collection.mutable.{Set => MutableSet} import scala.collection.mutable.{Map => MutableMap} import com.google.common.collect.MinMaxPriorityQueue import scala.collection.JavaConversions._ import org.slf4j.LoggerFactory class BestFirstSearch[State, Action](override val problem: SearchProblem[State, Action], beamSize: Int, goalSize: Int) extends SearchAlgorithm[State, Action] { override val logger = LoggerFactory.getLogger(this.getClass) private val beam = MinMaxPriorityQueue.maximumSize(beamSize).create[Node[State, Action]]() override def continueSearch = (beam.size > 0) && (goals.size < goalSize) override def initialize = beam.add(rootNode) override def searchIter = { val node = beam.pollFirst logger.warn(s"Expanding ${node.state}") val successors = expand(node).toList val (newGoals, newNodes) = successors.partition(isGoal) newGoals.foreach(addGoalNode) beam.addAll(newNodes) } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/search/SearchAlgorithm.scala ================================================ package edu.knowitall.search import org.slf4j.LoggerFactory import scala.collection.mutable.{Map => MutableMap} import scala.collection.mutable.{Set => MutableSet} import edu.knowitall.util.TimingUtils import com.typesafe.config.ConfigFactory case class Node[State, Action]( state: State, parent: Option[Edge[State, Action]], pathCost: Double, creationTime: Long) extends Comparable[Node[State, Action]] { def this(state: State, parent: Option[Edge[State, Action]], pathCost: Double) = this(state, parent, pathCost, System.currentTimeMillis) def path(rest: List[(State, Action, State)] = Nil): List[(State, Action, State)] = parent match { case None => rest case Some(e) => e.node.path((e.node.state, e.action, state) :: rest) } def compareTo(that: Node[State, Action]) = this.pathCost.compareTo(that.pathCost) } case class Edge[State, Action](action: Action, node: Node[State, Action]) abstract class SearchAlgorithm[State, Action] { val logger = LoggerFactory.getLogger(this.getClass) def problem: SearchProblem[State, Action] def rootNode: Node[State, Action] = new Node(problem.initialState, None, 0.0) def isGoal(n: Node[State, Action]) = problem.isGoal(n.state) private var iter = 0 protected def iterNum = iter protected val goals = MutableMap.empty[State, Node[State, Action]] protected def addGoalNode(node: Node[State, Action]) = { assert(isGoal(node)) val state = node.state val otherNode = goals.getOrElse(state, node) val bestNode = List(node, otherNode).minBy(_.pathCost) goals.put(state, bestNode) } protected val expanded = MutableSet.empty[State] protected def markExpanded(n: Node[State, Action]) = expanded.add(n.state) protected def haveExpanded(n: Node[State, Action]) = expanded.contains(n.state) def expand(node: Node[State, Action]) = { for { (action, nextState) <- problem.successors(node.state) cost = node.pathCost + problem.cost(node.state, action, nextState) edge = Edge(action, node) } yield { markExpanded(node) new Node(nextState, Some(edge), cost) } } def searchIter: Unit def continueSearch: Boolean def initialize(): Unit private var timedOut = false private var t0 = System.currentTimeMillis def startTime = t0 private def runSearch = { initialize() do { searchIter iter += 1 } while (continueSearch && !timedOut) } def search = { t0 = System.currentTimeMillis val time = SearchAlgorithm.defaultMaxSearchTimeSec * 1000 TimingUtils.runWithTimeout(time) { runSearch } timedOut = true goals.values.toList.distinct.sortBy(_.pathCost) } } object SearchAlgorithm { val conf = ConfigFactory.load() val defaultMaxSearchTimeSec = conf.getLong("search.maxSearchTimeSec") } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/search/SearchProblem.scala ================================================ package edu.knowitall.search trait SearchProblem[State, Action] { def initialState: State def successors(s: State): Iterable[(Action, State)] def isGoal(s: State): Boolean def cost(from: State, action: Action, to: State): Double } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/search/Transition.scala ================================================ package edu.knowitall.search trait Transition[State, Action] extends Function[State, Iterable[(Action, State)]] { def +(other: Transition[State, Action]) = Transition.union(this, other) } object Transition { def union[State, Action](t1: Transition[State, Action], t2: Transition[State, Action]) = new Transition[State, Action] { override def apply(s: State) = t1(s) ++ t2(s) } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/AbstractArgTransition.scala ================================================ package edu.knowitall.search.qa import edu.knowitall.tool.tokenize.Tokenizer import com.typesafe.config.ConfigFactory import edu.knowitall.tool.tokenize.ClearTokenizer import edu.knowitall.search.Transition import edu.knowitall.collection.immutable.Interval import edu.knowitall.tool.stem.Stemmer import edu.knowitall.tool.postag.Postagger import edu.knowitall.tool.postag.StanfordPostagger import edu.knowitall.tool.stem.MorphaStemmer import edu.knowitall.util.NlpTools import edu.knowitall.triplestore.IsaClient import java.io.StringWriter import java.io.PrintWriter import org.slf4j.LoggerFactory class AbstractArgTransition( tokenizer: Tokenizer = NlpTools.tokenizer, stemmer: Stemmer = NlpTools.stemmer, tagger: Postagger = NlpTools.tagger, isaClient: IsaClient = AbstractArgTransition.defaultIsaClient, maxArgLength: Int = AbstractArgTransition.defaultMaxArgLength, useTypes: Boolean = AbstractArgTransition.defaultUseTypes, multipleParaphrases: Boolean = AbstractArgTransition.multipleParaphrases) extends Transition[QaState, QaAction] { private final val action = AbstractArgAction() val logger = LoggerFactory.getLogger(this.getClass) override def apply(s: QaState) = s match { case s: QuestionState if s.question.trim() != "" => try { abstractArgs(s) } catch { case e: Throwable => { val sw = new StringWriter() val pw = new PrintWriter(sw) e.printStackTrace(pw) logger.warn(s"Could not abstract args: $s, got ${sw.toString}") List.empty } } case _ => Nil } private def intervals(size: Int) = for (i <- Range(0, size); j <- Range(i, size); if j+1-i <= maxArgLength) yield Interval.open(i, j+1) private def stemString(s: String): Seq[String] = { val tokens = tokenizer(s) val tagged = tagger.postagTokenized(tokens) tagged.map { t => MorphaStemmer.lemmatizePostaggedToken(t).lemma.toLowerCase() } } private def abstractArgs(s: QuestionState) = if (multipleParaphrases || !s.isParaphrased) { val toks = s.processed.lemmatizedTokens.map(_.lemma.toLowerCase).toIndexedSeq for { interval <- intervals(toks.size) arg = s.processed.strings.slice(interval.start, interval.end).mkString(" ") types = if (useTypes) isaClient.getTypes(arg) else List("anything") newState = AbstractedArgState(s.question, types, s.processed, interval) } yield (action, newState) } else { Nil } } case class AbstractArgAction() extends QaAction case object AbstractArgTransition { val conf = ConfigFactory.load() val defaultMaxArgLength = conf.getInt("paraphrase.template.maxArgLength") val multipleParaphrases = conf.getBoolean("paraphrase.template.multipleParaphrases") val defaultUseTypes = conf.getBoolean("paraphrase.template.useTypes") lazy val defaultIsaClient = IsaClient() } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/AbstractedArgState.scala ================================================ package edu.knowitall.search.qa import edu.knowitall.collection.immutable.Interval import edu.knowitall.repr.sentence.Lemmatized import edu.knowitall.repr.sentence.Chunked import edu.knowitall.repr.sentence.Sentence case class AbstractedArgState( question: String, argTypes: List[String], processed: Sentence with Chunked with Lemmatized, argInterval: Interval) extends QaState { val tokens = processed.lemmatizedTokens.map(_.lemma.toLowerCase) override def toString() = { val left = tokens.slice(0, argInterval.start) val middle = "[" +: tokens.slice(argInterval.start, argInterval.end) :+ "]" val right = tokens.slice(argInterval.end, tokens.size) val s = (left ++ middle ++ right).mkString(" ") s } def queryString = { val left = tokens.slice(0, argInterval.start) val right = tokens.slice(argInterval.end, tokens.size) (left ++ Seq("$y") ++ right).mkString(" ") } def arg = tokens.slice(argInterval.start, argInterval.end).mkString(" ") override def stateType = "AbstractedArgState" } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/AnswerState.scala ================================================ package edu.knowitall.search.qa import edu.knowitall.execution.ExecTuple case class AnswerState(answer: String) extends QaState { override def stateType = "AnswerState" override def toString = answer } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/CgParseTransition.scala ================================================ package edu.knowitall.search.qa import edu.knowitall.parsing.cg.CgParser import edu.knowitall.search.Transition case class CgParseTransition(parser: CgParser = CgParseTransition.defaultParser) extends Transition[QaState, QaAction] { override def apply(s: QaState) = s match { case s: QuestionState => parseQuestion(s) case _ => Nil } def parseQuestion(s: QuestionState) = { val question = s.question for { derivation <- parser.parse(question) newState = QueryState(derivation.query) } yield (derivation, newState) } } case object CgParseTransition { lazy val defaultParser = CgParser() } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/DropQueryStopsTransition.scala ================================================ package edu.knowitall.search.qa import edu.knowitall.search.Transition import org.slf4j.LoggerFactory import edu.knowitall.execution.TLiteral import edu.knowitall.execution.UnquotedTLiteral import edu.knowitall.util.NlpTools import edu.knowitall.execution.ListConjunctiveQuery import edu.knowitall.execution.TConjunct import edu.knowitall.execution.ConjunctiveQuery object DropStopAction extends QaAction { override def toString = "DropStopAction" } class DropQueryStopsTransition( val stops: Set[String] = DropQueryStopsTransition.defaultStops) extends Transition[QaState, QaAction] { val logger = LoggerFactory.getLogger(this.getClass) override def apply(s: QaState) = s match { case qs: QueryState if (!qs.reformulated) => dropStops(qs.query) case _ => Nil } def dropStops(query: ConjunctiveQuery) = { val newConjs = query.conjuncts.map(dropStopsConj) val newQuery = new ListConjunctiveQuery(query.qVars, newConjs) List((DropStopAction, QueryState(newQuery))) } private def dropStopsConj(conj: TConjunct) = { val newVals = for ((f, v) <- conj.values) yield v match { case UnquotedTLiteral(s) => (f, UnquotedTLiteral(dropStopsString(s))) case _ => (f, v) } new TConjunct(conj.name, newVals) } private def dropStopsString(s: String) = { val sent = NlpTools.process(s) val lemmas = sent.lemmatizedTokens.map(_.lemma) if (lemmas.forall(stops contains _)) { s } else { val filtered = lemmas.filterNot(stops contains _) filtered.mkString(" ") } } } case object DropQueryStopsTransition { val defaultStops = Set("the", "a", "an", "be", "have", "do", "'s", "can", "will", "get") } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/ExecutionTransition.scala ================================================ package edu.knowitall.search.qa import edu.knowitall.search.Transition import edu.knowitall.triplestore.TriplestoreClient import edu.knowitall.execution.Joiner import edu.knowitall.execution.ExecTuple import edu.knowitall.triplestore.SolrClient import edu.knowitall.execution.DefaultFilters import edu.knowitall.execution.IdentityExecutor import com.typesafe.config.ConfigFactory import edu.knowitall.execution.ConjunctiveQuery import org.apache.solr.client.solrj.SolrServerException import java.io.StringWriter import java.io.PrintWriter import org.slf4j.LoggerFactory import scala.collection.parallel.CompositeThrowable class ExecutionTransition( client: TriplestoreClient = ExecutionTransition.defaultClient, skipTimeouts: Boolean = ExecutionTransition.defaultSkipTimeouts) extends Transition[QaState, QaAction] { private val logger = LoggerFactory.getLogger(this.getClass) private val executor = DefaultFilters.wrap(IdentityExecutor(client)) override def apply(s: QaState) = s match { case s: QueryState => executeQuery(s) case _ => Nil } private def executeQuery(state: QueryState) = for { etuple <- execute(state.query) newState = TupleState(etuple) } yield (ExecutionAction, newState) private def execute(query: ConjunctiveQuery) = try { executor.execute(query) } catch { case e @ (_ : SolrServerException | _ : CompositeThrowable) => if (skipTimeouts) { val sw = new StringWriter() val pw = new PrintWriter(sw) e.printStackTrace(pw) logger.warn(s"Could not execute query: $query, got ${sw.toString}") List.empty } else { throw e } } } object ExecutionAction extends QaAction object ExecutionTransition { val conf = ConfigFactory.load() val defaultSkipTimeouts = conf.getBoolean("triplestore.skipTimeouts") lazy val defaultClient = new SolrClient() } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/ParaphraseRuleTransition.scala ================================================ package edu.knowitall.search.qa import edu.knowitall.paraphrasing.rules.ParaphraseRuleSet import edu.knowitall.search.Transition case class ParaphraseRuleTransition(ruleSet: ParaphraseRuleSet = ParaphraseRuleSet()) extends Transition[QaState, QaAction] { override def apply(s: QaState) = s match { case s: QuestionState => paraphrase(s) case _ => Nil } private def paraphrase(qs: QuestionState) = for { (rule, result) <- ruleSet.apply(qs.processed) newState = QuestionState(result, qs.isParaphrased) } yield (rule, newState) } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/ProjectionTransition.scala ================================================ package edu.knowitall.search.qa import edu.knowitall.search.Transition class ProjectionTransition extends Transition[QaState, QaAction] { override def apply(s: QaState) = s match { case ts: TupleState => project(ts) case _ => Nil } def project(ts: TupleState) = List((ProjectAction, AnswerState(ts.execTuple.answerString))) } object ProjectAction extends QaAction ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/QaAction.scala ================================================ package edu.knowitall.search.qa trait QaAction ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/QaBeamSearch.scala ================================================ package edu.knowitall.search.qa import com.typesafe.config.ConfigFactory import edu.knowitall.search.SingleBeam import edu.knowitall.search.TypedBeams import edu.knowitall.search.Beam import edu.knowitall.search.BeamSearch class QaBeamSearch(problem: QaSearchProblem) { private var t0 = 0L def search = { val beam = QaBeamSearch.newBeam val beamSearch = new BeamSearch(problem, beam) t0 = System.currentTimeMillis beamSearch.search } def startTime = t0 } object QaBeamSearch { val conf = ConfigFactory.load() val defaultBeamSize = conf.getInt("search.beamSize") val defaultBeamType = conf.getString("search.beamType") def newBeam: Beam[QaState, QaAction] = defaultBeamType match { case "single" => new SingleBeam[QaState, QaAction](defaultBeamSize) case "typed" => new TypedBeams[QaState, QaAction, String](x => x.state.stateType, defaultBeamSize) case _ => throw new IllegalStateException(s"Invalid beam type: defaultBeamType") } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/QaCostModel.scala ================================================ package edu.knowitall.search.qa import edu.knowitall.learning.SparseVector import com.typesafe.config.ConfigFactory import scala.io.Source import java.io.File class QaCostModel( var features: Function[QaStep, SparseVector] = QaCostModel.defaultFeatures, var weights: SparseVector = QaCostModel.defaultWeights) extends Function[QaStep, Double] { // multiply by -1 since search algos find minimum path override def apply(step: QaStep) = -1.0 * (features(step) * weights) } object QaCostModel { val conf = ConfigFactory.load() val defaultFeatures = QaFeatures lazy val defaultWeights = if (conf.hasPath("scoring.weights")) { SparseVector.fromFile(conf.getString("scoring.weights")) } else { val in = getClass.getResourceAsStream("/edu/knowitall/search/qa/defaultWeights.txt") SparseVector.fromInputStream(in) //SparseVector.zero } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/QaFeatures.scala ================================================ package edu.knowitall.search.qa import edu.knowitall.paraphrasing.template.TemplatePair import edu.knowitall.execution.ExecTuple import edu.knowitall.execution.ConjunctiveQuery import edu.knowitall.learning.SparseVector import edu.knowitall.learning.QueryTupleSimilarity import com.typesafe.config.ConfigFactory import edu.knowitall.lm.KenLmServer import edu.knowitall.util.NlpUtils import edu.knowitall.execution.Search import edu.knowitall.relsyn.RelSynRule import com.rockymadden.stringmetric.StringMetric import edu.knowitall.execution.Tuple import edu.knowitall.parsing.cg.ParsedQuestion import edu.knowitall.paraphrasing.rules.ParaphraseRule object QaFeatures extends Function[QaStep, SparseVector] { val conf = ConfigFactory.load() val defaultPmi = conf.getDouble("paraphrase.defaultPmi") val defaultLm = conf.getDouble("paraphrase.defaultLm") val lmClient = new KenLmServer() val tupleTemplates = TupleFeatureTemplate.defaultTemplates val tupleFeatures = ExecutionFeature { (question: String, etuple: ExecTuple) => val tuple = etuple.tuple tupleTemplates.map(t => t(tuple)).reduce(_ + _) } val answerIsLinked = ExecutionFeature { (question: String, etuple: ExecTuple) => val tuple = etuple.tuple val qAttrs = etuple.query.qAttrs val isLinked = qAttrs.exists(attr => { tuple.get(attr + "_fbid_s") match { case Some(value) => true case _ => false } }) ("answer is linked to freebase", isLinked) } val actionType = ActionFeature { a: QaAction => (s"action type = ${a.getClass.getSimpleName}", 1.0) } val tupleNamespace = ExecutionFeature { (q: String, etuple: ExecTuple) => val tuple = etuple.tuple val nss = tuple.attrs.keys.filter(_.endsWith(".namespace")).flatMap(tuple.getString(_)) nss.map(ns => s"answer from namespace '$ns'") } val numConjuncts = ExecutionFeature { (q: String, etup: ExecTuple) => ("num conjuncts" -> etup.query.conjuncts.size) } val querySimilarity = ExecutionFeature { (q: String, etuple: ExecTuple) => val query = etuple.query val tuple = etuple.tuple //val relSim = QueryTupleSimilarity.relSimilarity(query, tuple) //val argSim = QueryTupleSimilarity.argSimilarity(query, tuple) val quesSim = QueryTupleSimilarity.questionQuerySimilarity(query, q) val quesEvSim = QueryTupleSimilarity.questionTupleSimilarity(q, tuple) SparseVector("evidence similarity with question" ->quesEvSim, "query similarity with question" -> quesSim) } def freebaseLink(key: String, tuple: Tuple) = tuple.getString(key + "_fbid_s") val joinSimilarity = ExecutionFeature { (q: String, etuple: ExecTuple) => val query = etuple.query val tuple = etuple.tuple val sims = for { (key1, key2) <- query.joinPairs val1 <- tuple.getString(key1) val2 <- tuple.getString(key2) s <- StringMetric.compareWithDiceSorensen(val1, val2)(1) } yield s val minJoinSim = if (sims.isEmpty) 0.0 else sims.min val fbidPairs = for { (key1, key2) <- query.joinPairs fbid1 <- freebaseLink(key1, tuple) fbid2 <- freebaseLink(key2, tuple) } yield (fbid1, fbid2) val fbidViolation = if (fbidPairs.exists(pair => pair._1 != pair._2)) 1.0 else 0.0 SparseVector( "minimum join key similarity" -> minJoinSim, "fbid join key violation" -> fbidViolation) } val templateFeatures = TemplatePairFeature { (q: String, pair: TemplatePair) => { val prefix1 = NlpUtils.questionPrefix(pair.template1) val prefix2 = NlpUtils.questionPrefix(pair.template2) SparseVector(s"template prefix $prefix1 => $prefix2" -> 1.0, "template pair pmi" -> pair.pmi, "template pair count1" -> pair.count1, "template pair count2" -> pair.count2, "template pair count12" -> pair.count12, "template is typed" -> {if (pair.typ == "anything") 0.0 else 1.0}) } } val numSteps = (step: QaStep) => SparseVector("steps" -> 0.25) def paraphraseLm(step: QaStep): SparseVector = { (step.action, step.toState) match { case (a: TemplatePair, qs: QuestionState) if qs.isParaphrased => ("paraphrase lm", lmClient.query(qs.question)) case _ => SparseVector.zero } } def templateArgFeatures(step: QaStep): SparseVector = step.toState match { case s: AbstractedArgState => { val sent = s.processed val span = s.argInterval val tags = sent.postags.slice(span.start, span.end) val tagPat = tags.mkString(" ") Some(s"template arg pos tags = $tagPat") } case _ => SparseVector.zero } private val defNoun = "^[Tt]he [a-z].*$".r val isDefiniteNoun = ExecutionFeature { (q: String, etuple: ExecTuple) => val answer = etuple.answerString if (defNoun.findFirstIn(answer).isDefined) SparseVector("answer is def noun" -> 1.0) else SparseVector.zero } val prefixAndFeat = ExecutionFeature { (q: String, etuple: ExecTuple) => val a = etuple.answerString val prefix = NlpUtils.questionPrefix(q) val isDate = if (NlpUtils.isDate(a)) 1.0 else 0.0 val isNumber = if (NlpUtils.containsNumber(a)) 1.0 else 0.0 val shape = NlpUtils.stringShape(a, 4) SparseVector( s"question prefix = '$prefix' ^ isDate" -> isDate, s"question prefix = '$prefix' ^ isNumber" -> isNumber, s"question prefix = '$prefix' ^ answer shape = '$shape'" -> 1.0 ) } val lightVerbRel = QueryFeature { (q: String, query: ConjunctiveQuery) => val values = for { c <- query.conjuncts (field, literal) <- c.literalFields value = literal.value if field == Search.rel && NlpUtils.isLightVerb(value) } yield value if (values.isEmpty) { None } else { Some(s"query relation is light verb") } } val relSynFeatures = (step: QaStep) => step.action match { case r: RelSynRule => SparseVector("relSyn pmi" ->r.pmi) case _ => SparseVector.zero } val paraRuleFeatures = (step: QaStep) => step.action match { case r: ParaphraseRule => SparseVector(r.name -> 1.0) case _ => SparseVector.zero } val parserFeatures = (step: QaStep) => step.action match { case parse: ParsedQuestion => { val deriv = parse.derivation val lexRules = deriv.terminals.map(t => s"parser lexical rule = ${t.rule}") val lexRuleContexts = deriv.terminals.flatMap { t => val i = t.interval.start val j = t.interval.end val n = parse.question.postags.size val r = t.category.categoryString val leftTag = if (i > 0) parse.question.postags(i-1) else "" val rightTag = if (j < n - 2) parse.question.postags(j+1) else "" Map(s"lex type = $r ^ leftTag = $leftTag" -> 1.0, s"lex type = $r ^ rightTag = $rightTag" -> 1.0) } val combRules = deriv.combinators.map(c => s"parser combinator rule = $c") val usesFull = if (deriv.terminals.exists(t => t.rule.toString.startsWith("fullPattern"))) 1.0 else 0.0 val posLexRules = deriv.terminals.map { t => val i = t.catspan.span val tags = parse.postags(i) s"lex category (postags) = ${t.catspan.category.categoryString}($tags)" } val counts = (lexRules ++ combRules ++ posLexRules).groupBy(x => x).map { case (name, names) => (name -> 1.0) } SparseVector(counts) + lexRuleContexts + ("num lexical rules" -> lexRules.size / 5.0) + ("uses full parser pattern" -> usesFull) } case _ => SparseVector.zero } def apply(s: QaStep) = actionType(s) + answerIsLinked(s) + tupleNamespace(s) + querySimilarity(s) + templateFeatures(s) + paraphraseLm(s) + numConjuncts(s) + prefixAndFeat(s) + lightVerbRel(s) + relSynFeatures(s) + templateArgFeatures(s) + joinSimilarity(s) + parserFeatures(s) + paraRuleFeatures(s) + numSteps(s) + isDefiniteNoun(s) + tupleFeatures(s) } case class TemplatePairFeature(f: Function2[String, TemplatePair, SparseVector]) extends Function[QaStep, SparseVector] { override def apply(step: QaStep) = step.action match { case a: TemplatePair => f(step.question, a) case _ => SparseVector.zero } } case class ExecutionFeature(f: Function2[String, ExecTuple, SparseVector]) extends Function[QaStep, SparseVector] { override def apply(step: QaStep) = step.toState match { case ts: TupleState => f(step.question, ts.execTuple) case _ => SparseVector.zero } } case class QueryFeature(f: Function2[String, ConjunctiveQuery, SparseVector]) extends Function[QaStep, SparseVector] { override def apply(step: QaStep) = step.toState match { case qs: QueryState => f(step.question, qs.query) case _ => SparseVector.zero } } case class ActionFeature(f: QaAction => SparseVector) extends Function[QaStep, SparseVector] { override def apply(step: QaStep) = f(step.action) } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/QaLayeredSearch.scala ================================================ package edu.knowitall.search.qa import edu.knowitall.search.SearchAlgorithm import com.google.common.collect.MinMaxPriorityQueue import edu.knowitall.search.Node import java.util.Comparator import scala.collection.JavaConversions._ class QaLayeredSearch(override val problem: QaSearchProblem, beamSize: Int, goalSize: Int) extends SearchAlgorithm[QaState, QaAction] { private val comparator = new Comparator[Node[QaState, QaAction]] { override def compare(n1: Node[QaState, QaAction], n2: Node[QaState, QaAction]) = { val r = QaStateComparator.compare(n1.state, n2.state) if (r == 0) { n1.pathCost.compareTo(n2.pathCost) } else { r } } } private val beam = MinMaxPriorityQueue.orderedBy(comparator) .maximumSize(beamSize) .create[Node[QaState, QaAction]] override def continueSearch = (beam.size > 0) && (goals.size < goalSize) override def initialize = beam.add(rootNode) override def searchIter = { val node = beam.pollFirst logger.warn(s"Expanding ${node.state}") val successors = expand(node).toList val (newGoals, newNodes) = successors.partition(isGoal) newGoals.foreach(addGoalNode) beam.addAll(newNodes) } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/QaSearchProblem.scala ================================================ package edu.knowitall.search.qa import edu.knowitall.paraphrasing.template.TemplateParaphraser import edu.knowitall.execution.IdentityExecutor import edu.knowitall.triplestore.SolrClient import edu.knowitall.search.SearchProblem import edu.knowitall.search.BeamSearch import edu.knowitall.search.Transition import edu.knowitall.tool.postag.StanfordPostagger import edu.knowitall.tool.stem.MorphaStemmer import edu.knowitall.tool.tokenize.ClearTokenizer import edu.knowitall.tool.chunk.OpenNlpChunker import edu.knowitall.triplestore.CachedTriplestoreClient case class QaSearchProblem( question: String, transitionModel: Transition[QaState, QaAction] = QaSearchProblem.transitionModel, costModel: Function[QaStep, Double] = QaSearchProblem.costModel) extends SearchProblem[QaState, QaAction] { val initialState = QuestionState(question) override def successors(s: QaState) = transitionModel(s) override def isGoal(s: QaState) = s match { case as: AnswerState => true case _ => false } override def cost(fromState: QaState, action: QaAction, toState: QaState) = costModel(QaStep(question, fromState, action, toState)) } object QaSearchProblem { val transitionModel = new QaTransitionModel val costModel = new QaCostModel } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/QaState.scala ================================================ package edu.knowitall.search.qa trait QaState { def stateType: String } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/QaStateComparator.scala ================================================ package edu.knowitall.search.qa import java.util.Comparator object QaStateComparator extends Comparator[QaState] { def statePosition(s: QaState) = s match { case _: AnswerState => 0 case _: TupleState => 1 case _: QueryState => 2 case _: AbstractedArgState => 3 case _: QuestionState => 3 case _ => throw new IllegalStateException(s"Could not find ordering for state $s") } override def compare(s1: QaState, s2: QaState) = statePosition(s1) compareTo statePosition(s2) } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/QaStep.scala ================================================ package edu.knowitall.search.qa case class QaStep(question: String, fromState: QaState, action: QaAction, toState: QaState) ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/QaTransitionModel.scala ================================================ package edu.knowitall.search.qa import edu.knowitall.tool.postag.StanfordPostagger import edu.knowitall.tool.stem.MorphaStemmer import edu.knowitall.tool.tokenize.ClearTokenizer import edu.knowitall.tool.chunk.OpenNlpChunker import edu.knowitall.paraphrasing.template.ParaphraseTemplateClient import edu.knowitall.triplestore.SolrClient import edu.knowitall.triplestore.CachedTriplestoreClient import edu.knowitall.search.Transition import edu.knowitall.relsyn.SolrRelSynClient import edu.knowitall.relsyn.IsaRelSynClient import edu.knowitall.util.NlpTools import com.typesafe.config.ConfigFactory import edu.knowitall.parsing.cg.CgParser class QaTransitionModel extends Transition[QaState, QaAction] { lazy val cgParser = new CgParser() // Remote services lazy val templateClient = new ParaphraseTemplateClient lazy val baseTriplestoreClient = new SolrClient() lazy val triplestoreClient = CachedTriplestoreClient(baseTriplestoreClient) lazy val relSynClient = SolrRelSynClient() // Individual transition functions lazy val absArgTransition = new AbstractArgTransition() lazy val templateTransition = new TemplateTransition(templateClient) lazy val paraRuleTransition = ParaphraseRuleTransition() lazy val parseTransition = new CgParseTransition(cgParser) lazy val executeTransition = new ExecutionTransition(triplestoreClient) lazy val isaSynTransition = new RelSynTransition(IsaRelSynClient) lazy val relSynTransition = new RelSynTransition(relSynClient) lazy val dropStopsTransition = new DropQueryStopsTransition() lazy val projTransition = new ProjectionTransition val conf = ConfigFactory.load() lazy val components = Map( "parse" -> parseTransition, "templateParaphrase" -> (absArgTransition + templateTransition), "ruleParaphrase" -> paraRuleTransition, "relSyn" -> relSynTransition, "isaRelSyn" -> isaSynTransition, "execute" -> executeTransition, "project" -> projTransition, "dropStops" -> dropStopsTransition ) lazy val activeComponents = for { name <- components.keys active = conf.getBoolean(s"search.transitions.$name") if active component = components(name) } yield component lazy val model = activeComponents.reduce(_ + _) override def apply(s: QaState) = model(s) } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/QueryState.scala ================================================ package edu.knowitall.search.qa import edu.knowitall.execution.ConjunctiveQuery case class QueryState(query: ConjunctiveQuery, reformulated: Boolean = false) extends QaState { override def stateType = "QueryState" override def toString = query.toString } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/QuestionState.scala ================================================ package edu.knowitall.search.qa import edu.knowitall.repr.sentence.Chunked import edu.knowitall.repr.sentence.Lemmatized import edu.knowitall.repr.sentence.Sentence import edu.knowitall.util.NlpTools trait QuestionState extends QaState { def question: String def processed: Sentence with Lemmatized with Chunked def isParaphrased: Boolean override def stateType = "QuestionState" override def toString = question } case object QuestionState { private case class QuestionStateImpl( question: String, processed: Sentence with Lemmatized with Chunked, isParaphrased: Boolean = false) extends QuestionState def apply(question: String): QuestionState = QuestionStateImpl(question, NlpTools.process(question)) def apply(q: String, isP: Boolean): QuestionState = QuestionStateImpl(q, NlpTools.process(q), isP) } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/RelSynTransition.scala ================================================ package edu.knowitall.search.qa import edu.knowitall.relsyn.SolrRelSynClient import edu.knowitall.search.Transition import edu.knowitall.execution.TConjunct import edu.knowitall.execution.ListConjunctiveQuery import org.slf4j.LoggerFactory import edu.knowitall.execution.Search import com.typesafe.config.ConfigFactory import org.apache.solr.client.solrj.SolrServerException import java.io.StringWriter import java.io.PrintWriter import edu.knowitall.relsyn.RelSynClient class RelSynTransition(client: RelSynClient = RelSynTransition.defaultClient, skipTimeouts: Boolean = RelSynTransition.defaultSkipTimeouts, multipleSyns: Boolean = RelSynTransition.defaultMultipleSyns) extends Transition[QaState, QaAction] { val logger = LoggerFactory.getLogger(this.getClass) override def apply(s: QaState) = s match { case qs: QueryState if (!qs.reformulated || multipleSyns) => reformulate(qs) case _ => Nil } private def reformulate(s: QueryState) = { val conjs = s.query.conjuncts for { i <- 0 until conjs.size c = conjs(i) rule <- relSyns(c) newc <- rule(c) newconjs = conjs.updated(i, newc) newq = ListConjunctiveQuery(s.query.qVars, newconjs) newstate = s.copy(query = newq, reformulated = true) } yield { (rule, newstate) } } private def relSyns(c: TConjunct) = try { client.relSyns(c) } catch { case e: SolrServerException => if (skipTimeouts) { val sw = new StringWriter() val pw = new PrintWriter(sw) e.printStackTrace(pw) logger.warn(s"Could not reformulate query: $c, got ${sw.toString}") List.empty } else { throw e } } } object RelSynTransition { val conf = ConfigFactory.load() val defaultSkipTimeouts = conf.getBoolean("relsyn.skipTimeouts") val defaultMultipleSyns = conf.getBoolean("relsyn.multipleSyns") lazy val defaultClient = new SolrRelSynClient() } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/TemplateTransition.scala ================================================ package edu.knowitall.search.qa import edu.knowitall.search.Transition import edu.knowitall.paraphrasing.template.ParaphraseTemplateClient import com.typesafe.config.ConfigFactory import edu.knowitall.paraphrasing.template.TemplatePair import org.apache.solr.client.solrj.SolrServerException import java.io.StringWriter import java.io.PrintWriter import org.slf4j.LoggerFactory class TemplateTransition(client: ParaphraseTemplateClient, skipTimeouts: Boolean = TemplateTransition.defaultSkipTimeouts) extends Transition[QaState, QaAction] { def this() = this(new ParaphraseTemplateClient()) private val logger = LoggerFactory.getLogger(this.getClass) override def apply(s: QaState) = s match { case s: AbstractedArgState => paraphrase(s) case _ => Nil } private def paraphrases(s: String, argTypes: List[String]) = try { client.paraphrases(s, argTypes) } catch { case e: Throwable => if (skipTimeouts) { val sw = new StringWriter() val pw = new PrintWriter(sw) e.printStackTrace(pw) logger.warn(s"Could not get paraphrases: $s, got ${sw.toString}") List.empty } else { throw e } } private def paraphrase(state: AbstractedArgState) = for { templatePair <- paraphrases(state.queryString, state.argTypes) arg = state.arg newQuestion = applyTemplate(arg, templatePair) action = templatePair newState = QuestionState(newQuestion, true) } yield (action, newState) private def applyTemplate(arg: String, pair: TemplatePair) = pair.template2.replace("$y", arg) } object TemplateTransition { val conf = ConfigFactory.load() val defaultSkipTimeouts = conf.getBoolean("paraphrase.template.skipTimeouts") } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/TupleFeatureTemplate.scala ================================================ package edu.knowitall.search.qa import edu.knowitall.execution.Tuple import edu.knowitall.learning.SparseVector import com.typesafe.config.ConfigFactory import edu.knowitall.util.ResourceUtils case class TupleFeatureTemplate( attr: String, agg: (Double, Double) => Double, min: Double, max: Double, scale: Double => Double) { private val smin = scale(min) private val smax = scale(max) private val suffix = s".$attr" private def computeValue(v: Double) = if (min <= v && v <= max) { Some((scale(v) - smin) / (smax - smin)) } else { None } def apply(tuple: Tuple): SparseVector = { val svalues = for { a <- tuple.attrs.keys if a.endsWith(suffix) v <- tuple.getNumber(a) r <- computeValue(v) } yield r if (svalues.isEmpty) { SparseVector.zero } else { SparseVector(s"tuple $attr" -> svalues.reduce(agg)) } } } object TupleFeatureTemplate { val conf = ConfigFactory.load() val res = conf.getString("tuplefeatures.resourcePath") lazy val defaultTemplates = ResourceUtils.resourceSource(res).getLines.map(fromString).toList def fromString(s: String) = { val fields = s.trim.split("\t").toList fields match { case attr :: sagg :: smin :: smax :: sscale :: Nil => { val agg = aggFromString(sagg) val scale = scaleFromString(sscale) val min = smin.toDouble val max = smax.toDouble TupleFeatureTemplate(attr, agg, min, max, scale) } case _ => throw new IllegalArgumentException(s"Invalid feature template: $s") } } def aggFromString(s: String): (Double, Double) => Double = s.trim.toLowerCase match { case "min" => Math.min _ case "max" => Math.max _ case _ => throw new IllegalArgumentException(s"Invalid aggregator: $s") } def scaleFromString(s: String): Double => Double = s.trim.toLowerCase match { case "log" => Math.log case "linear" => (x: Double) => x case _ => throw new IllegalArgumentException(s"Invalid feature scale: $s") } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/search/qa/TupleState.scala ================================================ package edu.knowitall.search.qa import edu.knowitall.execution.ExecTuple case class TupleState(execTuple: ExecTuple) extends QaState { override def stateType = "TupleState" override def toString = execTuple.toTripleString } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/triplestore/IsaClient.scala ================================================ package edu.knowitall.triplestore import edu.knowitall.relsyn.IsaRelSynClient import edu.knowitall.execution.ListConjunctiveQuery import edu.knowitall.execution.IdentityExecutor import edu.knowitall.util.NlpTools import edu.knowitall.execution.Search.TSQuery import edu.knowitall.model.QaModel case class IsaClient(client: TriplestoreClient = IsaClient.defaultTriplestoreClient, maxHits: Int = 500) { private val internalClient = new TriplestoreClient { override def search(q: TSQuery, h: Int) = client.search(q, maxHits) override def count(q: TSQuery) = client.count(q) } private val isaSyns = IsaRelSynClient private val exec = IdentityExecutor(internalClient) private val norm = (s: String) => NlpTools.normalize(s) private def getQuery(a: String) = ListConjunctiveQuery.fromString("$x : (\"" + a.replace(",", " ") + "\", isa, $x)") match { case Some(q) => q case None => throw new IllegalStateException(s"Could not make query from $a") } private def getQueries(a: String) = { val q = getQuery(a) val c = q.conjuncts(0) val rules = isaSyns.relSyns(c) val conjs = rules.flatMap(_(c)) conjs map { c => ListConjunctiveQuery(q.qVars, List(c)) } } def getTypes(a: String) = { val queries = getQueries(a) val results = queries flatMap { q => exec.execute(q) } "anything" :: results.map(a => norm(a.answerString)).distinct } } case object IsaClient { lazy val defaultTriplestoreClient = new SolrClient() } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/triplestore/TriplestoreClient.scala ================================================ package edu.knowitall.triplestore import scala.collection.JavaConverters._ import org.apache.solr.client.solrj.impl.HttpSolrServer import org.apache.solr.client.solrj.util.ClientUtils import org.apache.solr.client.solrj.SolrQuery import scala.collection.JavaConversions._ import org.apache.solr.common.SolrDocument import java.util.ArrayList import org.slf4j.LoggerFactory import edu.knowitall.execution.Conditions._ import edu.knowitall.execution.Search._ import edu.knowitall.execution._ import com.twitter.util.LruMap import scala.collection.mutable.SynchronizedMap import java.util.ArrayList import com.typesafe.config.ConfigFactory import org.apache.solr.common.SolrException /** * The interface to a Triplestore. */ trait TriplestoreClient { /** * Counts the number of triples that match the given query. */ def count(q: TSQuery): Long /** * Searches and returns at most maxHits Tuple objects. */ def search(q: TSQuery, maxHits: Int = 100): List[Tuple] /** * Searches and returns Tuple objects, but adds the prefix * "$name." to all of the attributes. */ def namedSearch(name: String, q: TSQuery): List[Tuple] = search(q) map { t => t.renamePrefix(name) } /** * Searches and returns Tuple objects, but adds the prefix * "$name." to all of the attributes. Returns at most maxHits tuples. */ def namedSearch(name: String, q: TSQuery, maxHits: Int): List[Tuple] = search(q, maxHits) map { t => t.renamePrefix(name) } } case class CachedTriplestoreClient(client: TriplestoreClient, size: Int = 1000) extends TriplestoreClient { val tupleMap = new LruMap[(TSQuery, Int), List[Tuple]](size) with SynchronizedMap[(TSQuery, Int), List[Tuple]] val countMap = new LruMap[TSQuery, Long](size) with SynchronizedMap[TSQuery, Long] def search(q: TSQuery, hits: Int): List[Tuple] = { tupleMap.get((q, hits)) match { case Some(x) => x case _ => { val results = client.search(q, hits) tupleMap.put((q, hits), results) results } } } def count(q: TSQuery) = { countMap.get(q) match { case Some(x) => x case _ => { val results = client.count(q) countMap.put(q, results) results } } } } /** * This class is used to query a Solr server and return Tuple objects. The * URL should point to the Solr instance. "hits" is the default number of hits * that is returned by the search. */ case class SolrClient(url: String, hits: Int = 10, timeout: Int = SolrClient.defaultTimeout, skipTimeouts: Boolean = SolrClient.defaultSkipTimeouts) extends TriplestoreClient { def this() = this(SolrClient.defaultUrl, SolrClient.defaultMaxHits) val logger = LoggerFactory.getLogger(this.getClass) val server = new HttpSolrServer(url) server.setConnectionTimeout(timeout) server.setSoTimeout(timeout) server.setMaxRetries(1) val defaultMaxHits = hits private def execQuery(q: SolrQuery) = try { Some(server.query(q)) } catch { case e: SolrException => if (skipTimeouts) { None } else { throw e } } /** * Returns the number of documents in Solr that match the given query. */ def count(q: TSQuery): Long = { val query = SolrClient.buildCountQuery(q) query.setParam("shards.tolerant", true) val c = for { resp <- execQuery(query) c = resp.getResults().getNumFound() } yield c c.getOrElse(0) } /** * Searches Solr and returns Tuple objects. */ def search(q: TSQuery, maxHits: Int = defaultMaxHits): List[Tuple] ={ logger.debug(s"Searching for query: ${q.toQueryString}") val query = SolrClient.buildQuery(q) query.setRows(maxHits) query.setParam("shards.tolerant", true) val tuples = for { resp <- execQuery(query) results = resp.getResults().toList.map(SolrClient.docToTuple) } yield results tuples.getOrElse(List.empty[Tuple]) } } case object SolrClient { val conf = ConfigFactory.load() val defaultUrl = conf.getString("triplestore.url") val defaultMaxHits = conf.getInt("triplestore.maxHits") val defaultTimeout = conf.getInt("triplestore.timeout") val defaultSkipTimeouts = conf.getBoolean("triplestore.skipTimeouts") val defaultSkipNamespaces = conf.getString("triplestore.skipNamespaces").r val defaultNamespaces = conf.getStringList("triplestore.namespaces") filter { ns => ns match { case defaultSkipNamespaces() => false case _ => true } } private val nsDisjunction = Disjunction(defaultNamespaces.map(NamespaceEq(_)):_*) def escape(s: String): String = ClientUtils.escapeQueryChars(s) private val parenPat = """AND \s*\(+\s*\)+\s*$""".r def removeEmptyParens(s: String): String = { val result = parenPat.replaceAllIn(s, " ") result } val emptyPat = """^\s*$""".r def replaceEmptyQuery(s: String): String = s match { case emptyPat() => "*:*" case _ => s } def fixQuery(s: String) = { replaceEmptyQuery(removeEmptyParens(s)) } /** * Takes a Search.Query object and maps it to a SolrQuery object. */ def buildQuery(q: TSQuery): SolrQuery = { val newQuery = Conjunction(nsDisjunction, q) new SolrQuery(fixQuery(newQuery.toQueryString)) } /** * Builds a SolrQuery object used to count the number of hits returned * by the given Search.Query object. Returns 0 rows. */ def buildCountQuery(q: TSQuery): SolrQuery = new SolrQuery(fixQuery(q.toQueryString)).setRows(0) /** * The string field names of the given solr document. */ def fieldNames(doc: SolrDocument): List[String] = doc.getFieldNames().toList.map { x => x.toString() } // Mnemonics used to remember what the attributes/values of a Tuple are. type Value = Any type Attr = String /** * Used to convert the values of a Solr field into Values for a Tuple. */ def toTupleValue(v: Any): Option[Value] = { v match { case v: String => Some(v) case v: Float => Some(v) case v: Double => Some(v) case v: Integer => Some(v) case v: Boolean => Some(v) case v: ArrayList[_] => Some(v.asScala.toList) // required for support of multiValued fields case _ => None } } /** * Gets the (attribute, value) pairs from the given Solr doc. */ def docToFields(doc: SolrDocument): List[(Attr, Value)] = { for (name <- doc.getFieldNames().toList; value = doc.getFieldValue(name); tvalue <- toTupleValue(value)) yield (name, tvalue) } /** * Converts a Solr document to a Tuple object. */ def docToTuple(doc: SolrDocument): Tuple = Tuple(docToFields(doc).toMap) } /** * This is a utility class used to instantiate some common relational operations * and shortcuts. Builds on a TriplestoreClient, which is used to interact * with the underlying Solr instance. */ case class TriplestorePlan(client: TriplestoreClient) { import Conditions._ import Search._ import Search.Field // Mnemonics type Tuples = Iterable[Tuple] type TuplePred = Tuple => Boolean type TupleMap = Tuple => Tuple /** * Shortcuts for executing the given query with the given name. */ def ExecQuery(n: String, q: TSQuery) = client.namedSearch(n, q) def ExecQuery(n: String, q: TSQuery, h: Int) = client.namedSearch(n, q, h) /** * Searches for the conjunction of the given queries, naming them with * the given name. */ def SearchFor(s: String, q: TSQuery*) = ExecQuery(s, Conjunction(q:_*)) /** * This is a partial search object, which is used in join algorithms. It's * a way to represent a query that has yet to be executed against Solr that * will be joined with another set of tuples. */ def PartialSearchFor(n: String, q: TSQuery*): PartialSearcher = { PartialSearcher(Conjunction(q:_*), ExecQuery(n, _)) } def PartialSearchFor(n: String, h: Int, q: TSQuery*): PartialSearcher = { PartialSearcher(Conjunction(q:_*), ExecQuery(n, _, h)) } /** * A shortcut function for projecting the given tuples on a single attribute. */ def ProjectOn(s: String, ts: Tuples) = Operators.Project(On(s))(ts) /** * A shortcut function for projecting the given tuples using the given * map Tuple => Tuple. */ def Project(m: TupleMap, ts: Tuples) = Operators.Project(m)(ts) /** * A shortcut for doing a nested loop join on the given pair of tuple * iterables. */ def Join(cond: TuplePred, ts1: Tuples, ts2: Tuples) = Operators.NestedLoopJoin(cond)(ts1, ts2) /** * A shortcut function for performing a "search join". A search join is used * when joining two sets of tuples together, but where one tuple set is too * large to fetch from Solr. Instead, this algorithm takes a smaller set of * tuples (in memory) and iteratively makes a query for each row in the * table. This essentially trades off making one large query (possibly * exhausting memory) with making many smaller ones. * * For example, a SearchJoin can be used when joining "($x, type, us * president)" which is relatively small with "($x, type, lawyer)" which is * relatively big. The algorithm will enumerate all $x from the first table * and then substitute it in the second query. */ def SearchJoin(a1: String, a2: String, ts: Tuples, q: PartialSearcher): Tuples = { // Joins using string similarity instead of strict equality val cond = AttrsSim(a1, a2, 0.9) PartialSearchJoin(cond)(ts, q) } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/util/AlignedWordProcessor.scala ================================================ package edu.knowitall.util import scala.collection.JavaConverters._ import edu.knowitall.common.Resource.using object AggregateSortedCounts { val tabRegex = "\\t".r def main(args: Array[String]): Unit = { val inputFile = args(0) val outputFile = args(1) val inputSource = io.Source.fromFile(inputFile, "UTF8") val output = new java.io.PrintStream(outputFile, "UTF8") var lastFields = Option.empty[(String, String)] var runningCount = 0 val outputLines = inputSource.getLines.flatMap { line => tabRegex.split(line) match { case Array(w1, w2, count) => { if (Some((w1, w2)).equals(lastFields)) { runningCount += count.toInt None } else { val result = lastFields match { case Some((w1p, w2p)) => { Some(s"$w1p\t$w2p\t$runningCount") } case None => { None } } runningCount = count.toInt lastFields = Some((w1, w2)) result } } } } ++ lastFields.map { case (w1, w2) => s"$w1\t$w2\t$runningCount" } outputLines.zipWithIndex foreach {case (line, index) => if (index % 10000 == 0) System.err.println(index) output.println(line) } output.close() } } object AlignedWordProcessor { private val wsRegex = "\\s+".r private val walignRegex = "(\\d+)-(\\d+)".r def getAlignedPhrases(q1: String, q2: String, alignment: String): Seq[Set[String]] = { val q1Tokens = wsRegex.split(q1) val q2Tokens = wsRegex.split(q2) val wAlignments = wsRegex.split(alignment).map { case walignRegex(n1, n2) => (n1.toInt, n2.toInt) } val q1q2Phrases = wAlignments.groupBy(_._1).map(p=>(p._1, p._2.map(_._2))).toSeq val q2q1Phrases = wAlignments.map(_.swap).groupBy(_._1).map(p=>(p._1, p._2.map(_._2))).toSeq val q1TokenIndexMap = q1Tokens.zipWithIndex.map(_.swap).toMap val q2TokenIndexMap = q2Tokens.zipWithIndex.map(_.swap).toMap //val finalAlignments = wAlignments.map { case (q1i, q2i) => Set(q1TokenIndexMap(q1i), q2TokenIndexMap(q2i)) } //finalAlignments.distinct.filter(_.size == 2) val q1q2Alignments = q1q2Phrases.map { case (q1, q2s) => Set(q1TokenIndexMap(q1), q2s.map(q2TokenIndexMap.apply).mkString(" ")) } val q2q1Alignments = q2q1Phrases.map { case (q2, q1s) => Set(q2TokenIndexMap(q2), q1s.map(q1TokenIndexMap.apply).mkString(" ")) } (q1q2Alignments ++ q2q1Alignments).distinct.filter(_.size == 2) } def main(args: Array[String]): Unit = { val inputFile = "/scratch/usr/rbart/paralex/wikianswers-paraphrases-1.0/word_alignments.txt" val output = new java.io.PrintStream(args(0)) val tabRegex = "\\t".r using(io.Source.fromFile(inputFile, "UTF8")) { source => val alignedWords = source.getLines.flatMap { line => tabRegex.split(line) match { case Array(q1, q2, wa) => getAlignedPhrases(q1, q2, wa) case _ => { System.err.println(s"Warning, unparseable word alignment line: $line") Seq.empty } } } val cacheCountedAlignedWords = new CacheCountingIterator(1000000, alignedWords) cacheCountedAlignedWords.zipWithIndex foreach { case ((wSet, count), index) => if (index % 10000 == 0) System.err.print(".") val fields = wSet.toSeq.sorted :+ count.toString output.println(fields.mkString("\t")) } } output.close() } } /** * Takes an iterator of T, and keeps an LRU cache of the most recently accessed _cacheSize_ elements, counting * the number of times they were seen. When an element is evicted from the cache, it is output to the * iterator with its count. * * Maybe useful in reducing output size when you're trying to count occurrences but want to avoid * sorting an enormous list of completely distinct elements. */ class CacheCountingIterator[T](val cacheSize: Int, val source: Iterator[T]) extends Iterator[(T, Int)] { import java.util.LinkedHashMap case class MutableInt(var value: Int) { def increment = { value += 1 } } val countCache = new LinkedHashMap[T, MutableInt](cacheSize * 2, 0.75f, true) { override def removeEldestEntry(entry: java.util.Map.Entry[T, MutableInt]): Boolean = { if (this.size() > cacheSize) { nextEvict = Some((entry.getKey, entry.getValue.value)) true } else false } } var nextEvict = Option.empty[(T, Int)] var finalIterator = Option.empty[Iterator[(T, Int)]] def hasNext = source.hasNext || finalIterator.exists(_.hasNext) def next(): (T, Int) = { // if source has more elements, try to iterate over them and wait for nextEvict to become available while (source.hasNext && nextEvict.isEmpty) { val nextT = source.next() countCache.asScala.getOrElseUpdate(nextT, MutableInt(0)).increment } if (finalIterator.isEmpty && !source.hasNext) { finalIterator = Some(countCache.asScala.iterator.map(p => (p._1, p._2.value))) } if (nextEvict.nonEmpty) { val nextTC = nextEvict.get nextEvict = None return nextTC } else return finalIterator.get.next } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/util/Counter.scala ================================================ package edu.knowitall.util import scala.collection.mutable case class Counter(counts: mutable.Map[String, Double]) { def this() = this(mutable.Map.empty[String, Double]) def increment(k: String) = set(k, get(k) + 1.0) def get(k: String) = counts.getOrElse(k, 0.0) def apply(k: String) = get(k) def set(k: String, v: Double) = counts.update(k, v) override def toString = (counts.map { case (k, v) => s"$k\t$v" }).mkString("\n") } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/util/DummyChunker.scala ================================================ package edu.knowitall.util import edu.knowitall.tool.postag.Postagger import edu.knowitall.tool.chunk.Chunker import edu.knowitall.tool.postag.PostaggedToken import edu.knowitall.tool.chunk.ChunkedToken case class DummyChunker(override val postagger: Postagger) extends Chunker { override def chunkPostagged(tokens: Seq[PostaggedToken]) = { tokens map { t => new ChunkedToken(DummyChunker.sym, t.postagSymbol, t.string, t.offset) } } } case object DummyChunker { val sym = Symbol("") } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/util/HadoopUtils.scala ================================================ package edu.knowitall.util object HadoopUtils { def groupIterator[S, T](iter: Iterator[T], f: (T => S)): Iterator[(S, Iterator[T])] = for (head <- iter; headVal = f(head); rest = iter.takeWhile(x => f(x) == headVal)) yield (headVal, List(head).iterator ++ rest) } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/util/MathUtils.scala ================================================ package edu.knowitall.util import org.slf4j.LoggerFactory import edu.knowitall.collection.immutable.Interval object MathUtils { val logger = LoggerFactory.getLogger(this.getClass) def clip(x: Double, min: Double, max: Double) = Math.min(Math.max(x, min), max) def scale(x: Double, min: Double, max: Double) = (x - min) / (max - min) def clipScale(x: Double, min: Double, max: Double) = scale(clip(x, min, max), min, max) def intervals(length: Int, size: Int) = for { i <- 0 until (size - length + 1) } yield Interval.open(i, i + length) def allIntervals(size: Int) = for { length <- 1 to size interval <- intervals(length, size) } yield interval def splits(interval: Interval) = for { k <- (interval.head + 1) until interval.end i = interval.head j = interval.end } yield (Interval.open(i, k), Interval.open(k, j)) } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/util/NlpTools.scala ================================================ package edu.knowitall.util import edu.knowitall.tool.postag.StanfordPostagger import edu.knowitall.tool.stem.MorphaStemmer import edu.knowitall.tool.chunk.OpenNlpChunker import edu.knowitall.repr.sentence.Lemmatized import edu.knowitall.repr.sentence.Chunked import edu.knowitall.repr.sentence.Sentence import edu.knowitall.repr.sentence.{Lemmatizer => RepLemmatizer} import edu.knowitall.repr.sentence.{Chunker => RepChunker} import edu.knowitall.tool.tokenize.PTBTokenizer import edu.knowitall.tool.chunk.Chunker import edu.knowitall.repr.sentence.Lemmatizer import edu.knowitall.tool.stem.Stemmer object NlpTools { lazy val tagger = new StanfordPostagger lazy val stemmer = new MorphaStemmer lazy val tokenizer = new PTBTokenizer lazy val chunker = new OpenNlpChunker lazy val dummyChunker = DummyChunker(tagger) def process(sentence: String, ch: Chunker = dummyChunker, lm: Stemmer = stemmer): Sentence with Chunked with Lemmatized = { new Sentence(sentence) with RepChunker with RepLemmatizer { val chunker = ch val lemmatizer = lm } } def normalize(text: String, ch: Chunker = dummyChunker, lm: Stemmer = stemmer) = process(text, ch, lm).lemmatizedTokens.map(_.lemma.toLowerCase).mkString(" ") } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/util/NlpUtils.scala ================================================ package edu.knowitall.util import edu.knowitall.tool.stem.Lemmatized import edu.knowitall.repr.sentence.{Lemmatized => RepLemmatized} import edu.knowitall.tool.chunk.ChunkedToken import edu.knowitall.tool.tokenize.Token import edu.knowitall.tool.postag.PostaggedToken import edu.knowitall.tool.chunk.Chunker import edu.washington.cs.knowitall.regex.RegularExpression import edu.washington.cs.knowitall.regex.ExpressionFactory import edu.washington.cs.knowitall.regex.Expression import edu.washington.cs.knowitall.logic.Expression.{Arg => LogicArg} import edu.washington.cs.knowitall.regex.Expression.BaseExpression import edu.washington.cs.knowitall.logic.LogicExpression import com.google.common.base.{Function => GuavaFunction} import edu.knowitall.repr.sentence.Sentence import edu.knowitall.repr.sentence.Chunked object NlpUtils { /** * Taken from Factorie: https://github.com/factorie/factorie/blob/master/src/main/scala/cc/factorie/app/strings/package.scala */ def stringShape(word:String, maxRepetitions:Int): String = { val sb = new StringBuffer var i = 0; var c = 'x'; var prevc = 'x'; var repetitions = 0 while (i < word.length) { val char = word(i) if (Character.isUpperCase(char)) c = 'A' else if (Character.isLowerCase(char)) c = 'a' else if (Character.isDigit(char)) c = '1' else if (Character.isWhitespace(char)) c = ' ' else c = char if (c == prevc) repetitions += 1 else { prevc = c; repetitions = 0 } if (repetitions < maxRepetitions) sb.append(c) i += 1 } sb.toString } val months = Set("january", "february", "march", "april", "may", "june", "july", "august", "september", "october", "november", "december") val days = Set("sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday") val year = """^\d\d\d\d$""".r val datePat = """^\d\d\d\d.\d\d.\d\d$""".r def isDateWord(s: String): Boolean = { months.contains(s) || days.contains(s) || datePat.findFirstIn(s).isDefined || year.findFirstIn(s).isDefined } def isDate(s: String): Boolean = { s.split(" ").map(_.toLowerCase()).exists(isDateWord) } val qPrefixes = List("what year", "what month", "what day", "who", "when", "why", "what", "when", "where", "how many", "how", "be") def questionPrefix(s: String): String = { val x = s.toLowerCase() qPrefixes.find(prefix => x.startsWith(prefix)) match { case Some(prefix) => prefix case _ => "UNK" } } val digitPat = "[0-9]".r def containsNumber(s: String) = digitPat.findFirstIn(s).isDefined val lightVerbs = Set("be", "is", "are", "was", "were", "have", "has", "had", "go", "take", "can", "do", "does", "did") def isLightVerb(s: String) = lightVerbs contains s.toLowerCase() def serialize(sent: Seq[Lemmatized[ChunkedToken]]) = { val tokens = sent.map(l => l.token.string) val lemmas = sent.map(l => l.lemma) val tags = sent.map(l => l.postag) val chunks = sent.map(l => l.chunk) List(tokens, lemmas, tags, chunks).transpose.flatten.mkString(" ") } def deserialize(s: String): Seq[Lemmatized[ChunkedToken]]= { s.split(" ").grouped(4).toList.transpose match { case tokens :: lemmas :: tags :: chunks :: Nil => { val chunkedTokens = Chunker.tokensFrom(chunks, tags, tokens.map(t => new Token(t, 0))) (chunkedTokens zip lemmas) map { case (token, lemma) => new Lemmatized(token, lemma) } } case _ => throw new IllegalArgumentException(s"Could not deserialize: '$s'") } } def split(s: Sentence with Chunked with RepLemmatized, i: Int, j: Int) = new Sentence(s.text) with Chunked with RepLemmatized { override val chunks = s.chunks.slice(i, j) val lemmatizedTokens = s.lemmatizedTokens.slice(i, j) override val tokens = s.tokens.slice(i, j) } type TokenType = Lemmatized[ChunkedToken] def makeRegex(expr: String): RegularExpression[TokenType] = { val factory = new ExpressionFactory[TokenType]() { override def create(token: String): BaseExpression[TokenType] = { new BaseExpression[TokenType](token) { val logic = LogicExpression.compile(token, new GuavaFunction[String, LogicArg[TokenType]]() { override def apply(s: String): LogicArg[TokenType] = { new LogicArg[TokenType]() { val pat = "(.*?)\\s*=\\s*'(.*)'".r override def apply(t: TokenType) = s match { case pat("pos", value) => t.postag == value case pat("lemma", value) => t.lemma.toLowerCase() == value.toLowerCase() case pat("string", value) => t.string == value case pat("chunk", value) => t.chunk == value } } } }) override def apply(t: TokenType) = logic.apply(t) } } } RegularExpression.compile(expr, factory) } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/util/PPDBParser.scala ================================================ package edu.knowitall.util object PPDBParser extends App { val source = io.Source.fromFile(args(0), "UTF8") val splitRegex = """\|\|\|""".r val syns = source.getLines.map { line => val split = splitRegex.split(line).map(_.trim) (split(1), split(2)) } val synMap = syns.toSeq.groupBy(_._1).map(p => (p._1, p._2.map(q => q._2).distinct.sorted)) val testSet = Seq("be", "invent", "like", "make", "edison", "chickpea", "garbanzo", "usa", "america", "us", "of", "the", "clinton", "bill clinton") testSet foreach { str => val ss = synMap.getOrElse(str, Seq("Nil")) println(str + "\t" + ss.mkString(", ")) } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/util/ResourceUtils.scala ================================================ package edu.knowitall.util import java.io.InputStream import scala.io.Source object ResourceUtils { def resource(path: String): InputStream = { val stream = getClass.getResourceAsStream(path) if (stream != null) { stream } else { throw new IllegalStateException(s"could not load resource $path") } } def resourceSource(path: String) = Source.fromInputStream(resource(path), "UTF-8") } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/util/StringUtils.scala ================================================ package edu.knowitall.util object StringUtils { def parseDouble(s: String): Option[Double] = try { Some(s.toDouble) } catch { case e:Throwable => None } private val varPat = """\$([A-Za-z0-9_]+)""".r def interpolate(s: String, bindings: Map[String, String]) = { def acc(s: String, pairs: List[(String, String)]): String = pairs match { case Nil => s case (k, v) :: rest => acc(s.replaceAllLiterally("$"+k, v), rest) } acc(s, bindings.toList) } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/util/TimingUtils.scala ================================================ package edu.knowitall.util import scala.actors.Futures object TimingUtils { def time[R](block: => R): (Long, R) = { val t0 = System.nanoTime() val result = block // call-by-name val t1 = System.nanoTime() (t1 - t0, result) } def runWithTimeout[T](timeoutMs: Long)(f: => T) : Option[T] = { Futures.awaitAll(timeoutMs, Futures.future(f)).head.asInstanceOf[Option[T]] } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/util/TuplePrinter.scala ================================================ package edu.knowitall.util import edu.knowitall.execution.Tuple object TuplePrinter { val fieldNames = Seq("arg1", "rel", "arg2") def fieldPartNames(part: Int): Seq[String] = fieldNames.map(fn => s"r$part.$fn") def printTuplePart(tuple: Tuple, part: Int): Option[String] = { val parts = fieldPartNames(part) tuple.get(parts.head) match { case Some(_) => { val values = parts.flatMap(tuple.get) val strings = values.map(_.toString) Some(strings.mkString(", ")) } case None => None } } def printTuple(tuple: Tuple): String = { val partStrings = (0 to 3).map(part => printTuplePart(tuple, part)).takeWhile(_.isDefined).map(_.get) partStrings.map(s => s"($s)").mkString(" ") } } ================================================ FILE: oqa-core/src/main/scala/edu/knowitall/util/WikiAnswersSampler.scala ================================================ package edu.knowitall.util import edu.knowitall.common.Resource.using import java.io.PrintStream import scala.Array.canBuildFrom /** * A utility (throw-away?) for sampling answers. */ class WikiAnswersSampler(val inputFile: String) extends Iterable[Set[String]] { import io.Source /** * Get the median-length question. */ def processLine(line: String): Set[String] = { val parts = line.split("\t") val questions = parts.filter(_.startsWith("q:")) val cleaned = questions.map(_.drop(2).trim) cleaned.toSet } def iterator = new Iterator[Set[String]]() { val source = io.Source.fromFile(inputFile, "UTF8") val lines = source.getLines val questions = lines map processLine var closed = false def hasNext = { if (closed) false else if (!questions.hasNext) { source.close closed = true false } else true } def next = questions.next } } object WikiAnswersSampler { import edu.knowitall.common.Resource.using import java.io.PrintStream def main(args: Array[String]): Unit = { val inputFile = args(0) val outputStream = if (args.length == 1) System.out else new PrintStream(args(1)) val waSampler = new WikiAnswersSampler(inputFile) using(outputStream) { output => waSampler foreach { qset => output.println(qset.mkString("\t")) } } } } ================================================ FILE: oqa-data/README.md ================================================ Data ==== To download the data, run the following command: ./src/main/scripts/download-oqa-data.sh This will download all of the necessary data for OQA and store it in `knowitall.cs.washington.edu/`. Running the above command will download over 33G of compressed data, including the knowledge base and Wikianswers corpus. ================================================ FILE: oqa-data/predictions/README.md ================================================ # System Predictions This directory contains the predictions made by each system during evaluation. Each file is a collection of predictions in the form `(question, prediction, score, trace)` where `question` is the input question, `prediction` is the predicted answer, `score` is the system's score assigned to that answer, and `trace` is a string description of the derivation from question to predicted answer. There is one tab-separated prediction per line. ================================================ FILE: oqa-data/predictions/oqa-trec.txt ================================================ What was the official name of the Big Dig? The Big Dig -1.4649652558726443 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, edition of, $x) -> (The Big Dig, Edition Of, The Big Dig) -> The Big Dig (9021ms) What was the official name of the Big Dig? The Big Dig (Nippers) -1.5819179478763412 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, edition of, the Big Dig) -> (The Big Dig (Nippers), Edition Of, The Big Dig) -> The Big Dig (Nippers) (7905ms) What was the official name of the Big Dig? The Big Dig at night -1.6793785245460886 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, edition of, $x) -> (The Big Dig at night, Edition Of, The Big Dig at night) -> The Big Dig at night (9021ms) What was the official name of the Big Dig? Dora's Big Dig -1.7618451663435675 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, edition of, $x) -> (Dora's Big Dig (Dora the Explorer), Edition Of, Dora's Big Dig) -> Dora's Big Dig (9021ms) What was the official name of the Big Dig? The Big Dig Trivia Quiz Book -1.7618451663435675 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, edition of, $x) -> (The Big Dig Trivia Quiz Book, Edition Of, The Big Dig Trivia Quiz Book) -> The Big Dig Trivia Quiz Book (9021ms) What was the official name of the Big Dig? Barney Backhoe And the Big City Dig -1.9473951103878944 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, edition of, $x) -> (Barney Backhoe And the Big City Dig (John Deere), Edition Of, Barney Backhoe And the Big City Dig) -> Barney Backhoe And the Big City Dig (9100ms) What was the official name of the Big Dig? Barney Backhoe And the Big City Dig (John Deere) -1.9473951103878944 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, edition of, the Big Dig) -> (Barney Backhoe And the Big City Dig (John Deere), Edition Of, Barney Backhoe And the Big City Dig) -> Barney Backhoe And the Big City Dig (John Deere) (7906ms) What was the official name of the Big Dig? Joan Eadington -2.043569630495155 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, author, $x) -> (The Big Dig, Author, Joan Eadington) -> Joan Eadington (8149ms) What was the official name of the Big Dig? Mary Serfozo -2.098547391693474 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, author, $x) -> (The big bug dug, Author, Mary Serfozo) -> Mary Serfozo (8149ms) What was the official name of the Big Dig? Billy Mahonie -2.286911476536746 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, album, the Big Dig) -> (Billy Mahonie, Albums, The Big Dig) -> Billy Mahonie (9128ms) What was the official name of the Big Dig? Linda Barnes -2.286911476536746 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, author, $x) -> (The big dig, Author, Linda Barnes) -> Linda Barnes (8151ms) What was the official name of the Big Dig? Savoir Faire -2.286911476536746 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, release, $x) -> (The Big Dig, Release, Savoir Faire) -> Savoir Faire (9650ms) What was the official name of the Big Dig? William Derbyshire -2.286911476536746 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, track, $x) -> (The Big Dig, Tracks, William Derbyshire) -> William Derbyshire (8880ms) What was the official name of the Big Dig? Family Fodder -2.3418892377350646 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, track, the Big Dig) -> (Family Fodder, Tracks Recorded, The Big Dig) -> Family Fodder (9784ms) What was the official name of the Big Dig? modern America -2.366304804333826 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, is, modern America) -> modern America (1841ms) What was the official name of the Big Dig? Dan McNichol -2.371187288284283 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, author, $x) -> (The Big Dig, Author, Dan McNichol) -> Dan McNichol (8150ms) What was the official name of the Big Dig? Yeah, Yeah, Yeah, Yeah, Yeah -2.371187288284283 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, track, $x) -> (The Big Dig, Tracks, Yeah, Yeah, Yeah, Yeah, Yeah) -> Yeah, Yeah, Yeah, Yeah, Yeah (8881ms) What was the official name of the Big Dig? Watching People Speaking When You Can't Hear What They're Saying -2.408803651209449 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, track, $x) -> (The Big Dig, Tracks, Watching People Speaking When You Can't Hear What They're Saying) -> Watching People Speaking When You Can't Hear What They're Saying (8881ms) What was the official name of the Big Dig? Arthur J. Roth -2.426165049482602 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, author, $x) -> (The big dig, Author, Arthur J. Roth) -> Arthur J. Roth (8149ms) What was the official name of the Big Dig? More Great Hits! -2.426165049482602 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, release, $x) -> (The Big Dig, Release, More Great Hits!) -> More Great Hits! (9865ms) What was the official name of the Big Dig? Nothing to Hide -2.426165049482602 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, release, $x) -> (The Big Dig, Releases, Nothing to Hide) -> Nothing to Hide (9864ms) What was the official name of the Big Dig? Blaumilch Canal -2.4498227268568407 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, know as, the Big Dig) -> (Blaumilch Canal, Also known as, The Big Dig) -> Blaumilch Canal (7570ms) What was the official name of the Big Dig? Susan Knopf -2.4655892004312827 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, author, $x) -> (Barney Backhoe And the Big City Dig, Author, Susan Knopf) -> Susan Knopf (8149ms) What was the official name of the Big Dig? The Smithsonian Institute Blues (Or the Big Dig) -2.473288844795447 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, recording, $x) -> (The Smithsonian Institute Blues (Or the Big Dig), Recording, The Smithsonian Institute Blues (Or the Big Dig)) -> The Smithsonian Institute Blues (Or the Big Dig) (10178ms) What was the official name of the Big Dig? We Accept American Dollars -2.473288844795447 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, track, $x) -> (The Big Dig, Tracks, We Accept American Dollars) -> We Accept American Dollars (8911ms) What was the official name of the Big Dig? In My Eyes -2.473288844795447 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, recording, $x) -> (The Big Dig, Recorded by, In My Eyes) -> In My Eyes (10177ms) What was the official name of the Big Dig? full throttle -2.505250651736513 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the big dig, is at, full throttle) -> full throttle (7517ms) What was the official name of the Big Dig? Jack Webb -2.534098538604378 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, tv episode, the Big Dig) -> (Jack Webb, TV Episodes Directed, The Big Dig) -> Jack Webb (8538ms) What was the official name of the Big Dig? Simon Spotlight/Nickelodeon -2.5813963752190325 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, edition, the Big Dig) -> (Simon Spotlight/Nickelodeon, Book editions published, Dora's Big Dig (Dora the Explorer)) -> Simon Spotlight/Nickelodeon (8506ms) What was the official name of the Big Dig? The Dust Blows Forward -2.5813963752190325 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, track, the Big Dig) -> (The Dust Blows Forward, Tracks, The Smithsonian Institute Blues (Or the Big Dig)) -> The Dust Blows Forward (10229ms) What was the official name of the Big Dig? Don Van Vliet -2.609424253476999 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, track, the Big Dig) -> (Don Van Vliet, Tracks Recorded, The Smithsonian Institute Blues (Or the Big Dig)) -> Don Van Vliet (10228ms) What was the official name of the Big Dig? Lick My Decals Off, Baby -2.6345018287604427 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, release, $x) -> (The Smithsonian Institute Blues (Or the Big Dig), Releases, Lick My Decals Off, Baby) -> Lick My Decals Off, Baby (10363ms) What was the official name of the Big Dig? Running Press Kids -2.677491957817775 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, edition, the Big Dig) -> (Running Press Kids, Book editions published, Barney Backhoe And the Big City Dig (John Deere)) -> Running Press Kids (8506ms) What was the official name of the Big Dig? Captain Beefheart & His Magic Band -2.677491957817775 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, track, the Big Dig) -> (Captain Beefheart & His Magic Band, Tracks Recorded, The Smithsonian Institute Blues (Or the Big Dig)) -> Captain Beefheart & His Magic Band (10363ms) What was the official name of the Big Dig? Ant Farm -2.7582722937567383 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, release, $x) -> (The Big Dig, Releases, Ant Farm) -> Ant Farm (10582ms) What was the official name of the Big Dig? Manywhere M5 -2.7637447490650198 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, release, the Big Dig) -> (Manywhere M5, Release, The Big Dig) -> Manywhere M5 (10582ms) What was the official name of the Big Dig? Manywhere M1 -2.7637447490650198 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, release, the Big Dig) -> (Manywhere M1, Release, The Big Dig) -> Manywhere M1 (10583ms) What was the official name of the Big Dig? Exhibit A -2.794946128492922 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, is, Exhibit A) -> Exhibit A (7571ms) What was the official name of the Big Dig? a scandal -2.8011451557296385 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, may always be, a scandal) -> a scandal (7571ms) What was the official name of the Big Dig? New York City -2.8093931180553655 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, place, $x) -> (The Big Dig at night, Place of publication, New York City) -> New York City (7607ms) What was the official name of the Big Dig? MassDOT officials -2.8387967758542167 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig tunnels, is being touted by, MassDOT officials) -> MassDOT officials (7607ms) What was the official name of the Big Dig? a highway -2.849958131058618 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, is, a highway) -> a highway (7607ms) What was the official name of the Big Dig? Massachusetts -2.8517414875852607 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, is, Massachusetts) -> Massachusetts (7611ms) What was the official name of the Big Dig? 8 Bold Souls -2.8658463055761842 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, recording, $x) -> (The Big Dig, Recorded by, 8 Bold Souls) -> 8 Bold Souls (10670ms) What was the official name of the Big Dig? a less popular choice -2.8953960989940555 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, would be, a less popular choice) -> a less popular choice (7905ms) What was the official name of the Big Dig? Ray Fishwick -2.896907828233207 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, author, $x) -> (The Big Dig, Author, Ray Fishwick) -> Ray Fishwick (8539ms) What was the official name of the Big Dig? Meg -2.9179131354538037 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, is, Meg) -> Meg (8539ms) What was the official name of the Big Dig? Album -2.919963460135454 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, album, the Big Dig) -> (Album, Albums, The Big Dig) -> Album (10670ms) What was the official name of the Big Dig? a maze -2.95134775782805 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig interchange, is, a maze) -> a maze (8539ms) What was the official name of the Big Dig? Animation -2.973566777303815 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, film, the Big Dig) -> (Animation, Films of this genre, Bob the Builder: The Big Dino Dig) -> Animation (10670ms) What was the official name of the Big Dig? a decade -2.9831599600074847 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, was known about, a decade) -> a decade (10670ms) What was the official name of the Big Dig? a couple -2.9877859592834946 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, was supposed to take, a couple) -> a couple (10792ms) What was the official name of the Big Dig? Glenda -2.9979319214712516 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, release, the Big Dig) -> (Glenda, Release, The Big Dig) -> Glenda (10821ms) What was the official name of the Big Dig? Flagiolettes -2.9979319214712516 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, release, the Big Dig) -> (Flagiolettes, Release, The Big Dig) -> Flagiolettes (10822ms) What was the official name of the Big Dig? Drago -2.9979319214712516 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, release, the Big Dig) -> (Drago, Releases, The Big Dig) -> Drago (10793ms) What was the official name of the Big Dig? a prison -2.9997798346218554 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, is, a prison) -> a prison (10821ms) What was the official name of the Big Dig? Crammed Global Soundclash 1980-89, Part One: World Fusion -3.0019817142577363 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, release, $x) -> (The Big Dig, Releases, Crammed Global Soundclash 1980-89, Part One: World Fusion) -> Crammed Global Soundclash 1980-89, Part One: World Fusion (10821ms) What was the official name of the Big Dig? a major public works projects -3.0050366356919946 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, is, a major public works projects) -> a major public works projects (10959ms) What was the official name of the Big Dig? Boston real estate -3.0081083833941573 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the big dig, is going to make, Boston real estate) -> Boston real estate (10960ms) What was the official name of the Big Dig? The Dust Blows Forward (disc 1) -3.02705928954118 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, track, the Big Dig) -> (The Dust Blows Forward (disc 1), Tracks, The Smithsonian Institute Blues (Or the Big Dig)) -> The Dust Blows Forward (disc 1) (11009ms) What was the official name of the Big Dig? Pan Macmillan -3.0398500073488366 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, edition, the Big Dig) -> (Pan Macmillan, Book editions published, The Big Dig (Nippers)) -> Pan Macmillan (11009ms) What was the official name of the Big Dig? a good first step -3.056370194440608 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, is, a good first step) -> a good first step (11009ms) What was the official name of the Big Dig? a Mitt Romney big government project -3.066930474303179 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, was, a Mitt Romney big government project) -> a Mitt Romney big government project (11130ms) What was the official name of the Big Dig? 1999-07-05 -3.067283603497709 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, release, $x) -> (The Big Dig, Release Date, 1999-07-05) -> 1999-07-05 (11130ms) What was the official name of the Big Dig? a nightmare -3.0972404112916028 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig interchange, is, a nightmare) -> a nightmare (11130ms) What was the official name of the Big Dig? Macmillan -3.1178834004494025 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, edition, the Big Dig) -> (Macmillan, Book editions published, The big dig) -> Macmillan (11131ms) What was the official name of the Big Dig? Channel Four -3.1425147160760933 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, was supported by, Channel Four) -> Channel Four (11237ms) What was the official name of the Big Dig? less enchanting -3.1446065023797134 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, is somewhat, less enchanting) -> less enchanting (11237ms) What was the official name of the Big Dig? the MBTA books -3.154466034759934 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig debt, should be on, the MBTA books) -> the MBTA books (11295ms) What was the official name of the Big Dig? Continue reading -3.155501123528821 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, is ?, Continue reading) -> Continue reading (11295ms) What was the official name of the Big Dig? Capital Growth -3.1613127495356004 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, is being organised by, Capital Growth) -> Capital Growth (11295ms) What was the official name of the Big Dig? a tight , self-contained stand-alone mystery -3.1909694332221585 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, is, a tight , self-contained stand-alone mystery) -> a tight , self-contained stand-alone mystery (11294ms) What was the official name of the Big Dig? a Tip O'Neil/Ted Kennedy project -3.20865337205327 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, was actually, a Tip O'Neil/Ted Kennedy project) -> a Tip O'Neil/Ted Kennedy project (11295ms) What was the official name of the Big Dig? Family Film -3.2110713376832383 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, film, the Big Dig) -> (Family Film, Films of this genre, Bob the Builder: The Big Dino Dig) -> Family Film (11295ms) What was the official name of the Big Dig? high school seniors -3.212795620031762 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig Scholarship, is available to, high school seniors) -> high school seniors (11470ms) What was the official name of the Big Dig? seven years -3.227857595060903 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, be completed in, seven years) -> seven years (11470ms) What was the official name of the Big Dig? a total flop -3.2431899997761677 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the big dig, is, a total flop) -> a total flop (11471ms) What was the official name of the Big Dig? Route 93 -3.2938922644676767 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, was improving, Route 93) -> Route 93 (11471ms) What was the official name of the Big Dig? a few years -3.297073171613416 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, was only completed finally, a few years) -> a few years (11632ms) What was the official name of the Big Dig? The big dig -3.2989674448547675 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, edition of, $x) -> (The big dig, Edition Of, The big dig) -> The big dig (11632ms) What was the official name of the Big Dig? Dora's Big Dig (Dora the Explorer) -3.3210339802861206 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: ($x, edition of, big dig) -> (Dora's Big Dig (Dora the Explorer), Edition Of, Dora's Big Dig) -> Dora's Big Dig (Dora the Explorer) (11634ms) What was the official name of the Big Dig? 620 thousand Truckloads -3.3410555440278937 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, is moving, 620 thousand Truckloads) -> 620 thousand Truckloads (11633ms) What was the official name of the Big Dig? an immense overhaul -3.342842930082026 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, was, an immense overhaul) -> an immense overhaul (11843ms) What was the official name of the Big Dig? food charity Sustain -3.3678089796401567 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, will be coordinated by, food charity Sustain) -> food charity Sustain (11843ms) What was the official name of the Big Dig? the Central Artery -3.387067663638055 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, was jacking up, the Central Artery) -> the Central Artery (11843ms) What was the official name of the Big Dig? 18 -3.3879694845630133 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, track, $x) -> (The Big Dig, Track #, 18) -> 18 (12056ms) What was the official name of the Big Dig? 10 -3.3879694845630133 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, track, $x) -> (The Big Dig, Track #, 10) -> 10 (12057ms) What was the official name of the Big Dig? 37 -3.3879694845630133 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, track, $x) -> (The Big Dig, Track #, 37) -> 37 (12055ms) What was the official name of the Big Dig? 6 -3.3879694845630133 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, track, $x) -> (The Big Dig, Track #, 6) -> 6 (12056ms) What was the official name of the Big Dig? 9 -3.3879694845630133 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, track, $x) -> (The Big Dig, Track #, 9) -> 9 (11844ms) What was the official name of the Big Dig? London -3.38818885442899 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, will be also be held in, London) -> London (12055ms) What was the official name of the Big Dig? cost overruns and delays -3.396590193236788 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, has been plagued by, cost overruns and delays) -> cost overruns and delays (12056ms) What was the official name of the Big Dig? The big bug dug -3.4159201368584644 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, edition of, the Big Dig) -> (The big bug dug, Edition Of, The big bug dug) -> The big bug dug (12286ms) What was the official name of the Big Dig? an elevated highway -3.418296623515565 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, is moving, an elevated highway) -> an elevated highway (12287ms) What was the official name of the Big Dig? a local legend -3.510834922243572 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, was, a local legend) -> a local legend (12287ms) What was the official name of the Big Dig? 5.8 billion dollars -3.5311079295117525 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, was supposed to be, 5.8 billion dollars) -> 5.8 billion dollars (12287ms) What was the official name of the Big Dig? 9780312282707 -3.5492245009803796 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, edition, the Big Dig) -> (9780312282707, Book Editions, The big dig) -> 9780312282707 (12395ms) What was the official name of the Big Dig? 9780760723074 -3.5492245009803796 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, edition, the Big Dig) -> (9780760723074, Book Editions, The Big Dig) -> 9780760723074 (12395ms) What was the official name of the Big Dig? 17 -3.5666472084575505 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, track, $x) -> (The Smithsonian Institute Blues (Or the Big Dig), Track #, 17) -> 17 (12395ms) What was the official name of the Big Dig? 12 -3.5666472084575505 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, track, $x) -> (The Smithsonian Institute Blues (Or the Big Dig), Track #, 12) -> 12 (12395ms) What was the official name of the Big Dig? a $ 14.6 billion band-aid -3.590600490616258 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, is just, a $ 14.6 billion band-aid) -> a $ 14.6 billion band-aid (12395ms) What was the official name of the Big Dig? a good idea -3.5996469208944273 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, was, a good idea) -> a good idea (12395ms) What was the official name of the Big Dig? 9780439179331 -3.604202262178698 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, edition, the Big Dig) -> (9780439179331, Book Editions, The big bug dug) -> 9780439179331 (12549ms) What was the official name of the Big Dig? 9780333173060 -3.604202262178698 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, edition, the Big Dig) -> (9780333173060, Book Editions, The Big Dig (Nippers)) -> 9780333173060 (12549ms) What was the official name of the Big Dig? a huge success -3.61059325107916 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, has been, a huge success) -> a huge success (12549ms) What was the official name of the Big Dig? the Authority -3.613507900010158 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig project, was dumped onto, the Authority) -> the Authority (12549ms) What was the official name of the Big Dig? the Queen -3.615132006862778 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Royal Dig, is an example of, the Queen) -> the Queen (12550ms) What was the official name of the Big Dig? Big Pig on a Dig -3.650900547476035 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, edition of, $x) -> (Big Pig on a Dig, Edition Of, Big Pig on a Dig) -> Big Pig on a Dig (12791ms) What was the official name of the Big Dig? 9780760726891 -3.651326057491543 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, edition, the Big Dig) -> (9780760726891, Book Editions, The Big Dig at night) -> 9780760726891 (12791ms) What was the official name of the Big Dig? 9780760733165 -3.651326057491543 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, edition, the Big Dig) -> (9780760733165, Book Editions, The Big Dig Trivia Quiz Book) -> 9780760733165 (12791ms) What was the official name of the Big Dig? a long time -3.6681029679770623 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig all, was a mess for, a long time) -> a long time (12879ms) What was the official name of the Big Dig? 9781416908067 -3.692166680096009 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, edition, the Big Dig) -> (9781416908067, Book Editions, Dora's Big Dig (Dora the Explorer)) -> 9781416908067 (12879ms) What was the official name of the Big Dig? Bob's Big Dig -3.7388649653933457 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, edition of, $x) -> (Bob's Big Dig (Deluxe Tip and Tilt), Edition Of, Bob's Big Dig) -> Bob's Big Dig (12879ms) What was the official name of the Big Dig? Bob's Big Dig (Deluxe Tip and Tilt) -3.7388649653933457 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: ($x, edition of, big dig) -> (Bob's Big Dig (Deluxe Tip and Tilt), Edition Of, Bob's Big Dig) -> Bob's Big Dig (Deluxe Tip and Tilt) (12879ms) What was the official name of the Big Dig? Haymarket -3.7542779556196746 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, is now pushing from, Haymarket) -> Haymarket (12914ms) What was the official name of the Big Dig? Big Dig -3.7746005101722533 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, edition of, $x) -> (Big Dig: A Pop-Up Construction Ragged Bears, Edition Of, Big Dig) -> Big Dig (12914ms) What was the official name of the Big Dig? Big Dig: A Pop-Up Construction Ragged Bears -3.7746005101722533 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: ($x, edition of, big dig) -> (Big Dig: A Pop-Up Construction Ragged Bears, Edition Of, Big Dig) -> Big Dig: A Pop-Up Construction Ragged Bears (12914ms) What was the official name of the Big Dig? 9780762426591 -3.787461466173095 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, edition, the Big Dig) -> (9780762426591, Book Editions, Barney Backhoe And the Big City Dig (John Deere)) -> 9780762426591 (12951ms) What was the official name of the Big Dig? prehistoric fossils -3.790130779063797 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the big dig, is the soaring price of, prehistoric fossils) -> prehistoric fossils (12985ms) What was the official name of the Big Dig? short on cash -3.8117496104661996 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, was, short on cash) -> short on cash (12985ms) What was the official name of the Big Dig? Big Pig on a Dig (Easy Words to Read Series) -3.834159751470432 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: ($x, edition of, big dig) -> (Big Pig on a Dig (Easy Words to Read Series), Edition Of, Big Pig on a Dig) -> Big Pig on a Dig (Easy Words to Read Series) (12985ms) What was the official name of the Big Dig? Big Pig on a Dig (Usborne Easy Words to Read) -3.834159751470432 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: ($x, edition of, big dig) -> (Big Pig on a Dig (Usborne Easy Words to Read), Edition Of, Big Pig on a Dig) -> Big Pig on a Dig (Usborne Easy Words to Read) (12985ms) What was the official name of the Big Dig? Big Digs (Newbridge Discovery Links, Nonfiction Guided Reading, Set B) -3.834159751470432 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: ($x, edition of, big dig) -> (Big Digs (Newbridge Discovery Links, Nonfiction Guided Reading, Set B), Edition Of, Big Digs) -> Big Digs (Newbridge Discovery Links, Nonfiction Guided Reading, Set B) (12985ms) What was the official name of the Big Dig? Boston -3.8484447458393163 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig project, has been completed in, Boston) -> Boston (13053ms) What was the official name of the Big Dig? time and on budget -3.8668186480597995 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, was on, time and on budget) -> time and on budget (13053ms) What was the official name of the Big Dig? individuals and teams -3.943762233246234 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, is open to, individuals and teams) -> individuals and teams (13153ms) What was the official name of the Big Dig? Paul Stickland -3.9601138922267825 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, author, $x) -> (Big Dig, Author, Paul Stickland) -> Paul Stickland (13153ms) What was the official name of the Big Dig? John Fairhurst -3.987602772825942 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: ($x, track, big dig) -> (John Fairhurst, Tracks Recorded, Big Dig) -> John Fairhurst (13355ms) What was the official name of the Big Dig? Big Bug Dug (Scholastic Reader: Level 1 (Paperback)) -4.1671579709529905 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: ($x, edition of, big dig) -> (Big Bug Dug (Scholastic Reader: Level 1 (Paperback)), Edition Of, Big Bug Dug (Scholastic Reader: Level 1) -> Big Bug Dug (Scholastic Reader: Level 1 (Paperback)) (13764ms) What was the official name of the Big Dig? Big Dinosaur Dig (DK Readers: Level 3 (Sagebrush)) -4.1671579709529905 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: ($x, edition of, big dig) -> (Big Dinosaur Dig (DK Readers: Level 3 (Sagebrush)), Edition Of, Big Dinosaur Dig (DK Readers: Level 3) -> Big Dinosaur Dig (DK Readers: Level 3 (Sagebrush)) (13764ms) What was the official name of the Big Dig? Big Bug Dug (Scholastic Reader: Level 1 -4.1671579709529905 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, edition of, $x) -> (Big Bug Dug (Scholastic Reader: Level 1 (Paperback)), Edition Of, Big Bug Dug (Scholastic Reader: Level 1) -> Big Bug Dug (Scholastic Reader: Level 1 (13764ms) What was the official name of the Big Dig? Big Dinosaur Dig (DK Readers: Level 3 -4.1671579709529905 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, edition of, $x) -> (Big Dinosaur Dig (DK Readers: Level 3 (Sagebrush)), Edition Of, Big Dinosaur Dig (DK Readers: Level 3) -> Big Dinosaur Dig (DK Readers: Level 3 (13764ms) What was the official name of the Big Dig? Meish Goldish -4.2034557382683735 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, author, $x) -> (Big Digs, Author, Meish Goldish) -> Meish Goldish (13826ms) What was the official name of the Big Dig? Depth Perception -4.2034557382683735 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: ($x, track, big dig) -> (Depth Perception, Tracks, Big Dig) -> Depth Perception (13858ms) What was the official name of the Big Dig? Big Digs -4.2212447569428875 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, edition of, $x) -> (Big Digs (Newbridge Discovery Links, Nonfiction Guided Reading, Set B), Edition Of, Big Digs) -> Big Digs (13858ms) What was the official name of the Big Dig? Alison Inches -4.230944618867532 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, author, $x) -> (Dora's Big Dig, Author, Alison Inches) -> Alison Inches (13954ms) What was the official name of the Big Dig? Bendix Anderson -4.230944618867532 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, author, $x) -> (Bob's Big Dig, Author, Bendix Anderson) -> Bendix Anderson (13858ms) What was the official name of the Big Dig? Jenny Tyler -4.274926827826189 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, author, $x) -> (Big Pig on a Dig, Author, Jenny Tyler) -> Jenny Tyler (14055ms) What was the official name of the Big Dig? Dig This Big Crux -4.287731550015911 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, recording, $x) -> (Dig This Big Crux, Recording, Dig This Big Crux) -> Dig This Big Crux (14086ms) What was the official name of the Big Dig? Esther Ripley -4.308560281735748 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, author, $x) -> (Big Dinosaur Dig (DK Readers: Level 3, Author, Esther Ripley) -> Esther Ripley (14086ms) What was the official name of the Big Dig? WROR Tom's Townie Tunes -4.338782328271493 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: ($x, track, big dig) -> (WROR Tom's Townie Tunes, Tracks, Big Dig) -> WROR Tom's Townie Tunes (14149ms) What was the official name of the Big Dig? Hillman Morning Show -4.338782328271493 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: ($x, recording, big dig) -> (Hillman Morning Show, Tracks Recorded, Big Dig) -> Hillman Morning Show (14149ms) What was the official name of the Big Dig? Los Changos Trio -4.338782328271493 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: ($x, recording, big dig) -> (Los Changos Trio, Tracks Recorded, Big Dig) -> Los Changos Trio (14149ms) What was the official name of the Big Dig? Tandem Library -4.346397917384003 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: ($x, edition, big dig) -> (Tandem Library, Book editions published, Big Dinosaur Dig (DK Readers: Level 3 (Sagebrush))) -> Tandem Library (14179ms) What was the official name of the Big Dig? Phil Cox -4.359202639573725 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, author, $x) -> (Big Pig on a Dig, Author, Phil Cox) -> Phil Cox (14179ms) What was the official name of the Big Dig? 1998 -4.364821280147983 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, be completed by, 1998) -> 1998 (14180ms) What was the official name of the Big Dig? analogftw - The Waatu Remixes -4.377070411963179 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, release, $x) -> (BigDug (Ft. Verbezerker), Release, analogftw - The Waatu Remixes) -> analogftw - The Waatu Remixes (14214ms) What was the official name of the Big Dig? El Hombre Trajeado -4.377070411963179 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: ($x, recording, big dig) -> (El Hombre Trajeado, Tracks Recorded, Dig This Big Crux) -> El Hombre Trajeado (14214ms) What was the official name of the Big Dig? the big reasons -4.386003896021704 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig plan, is one of, the big reasons) -> the big reasons (14297ms) What was the official name of the Big Dig? Grace MacCarone -4.392836093483285 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, author, $x) -> (Big Bug Dug (Scholastic Reader: Level 1, Author, Grace MacCarone) -> Grace MacCarone (14297ms) What was the official name of the Big Dig? the creation -4.417561297905292 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, is responsible for, the creation) -> the creation (14355ms) What was the official name of the Big Dig? Rebound by Sagebrush -4.458640677219381 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: ($x, edition, big dig) -> (Rebound by Sagebrush, Book editions published, Big Pig on a Dig (Usborne Easy Words to Read)) -> Rebound by Sagebrush (14409ms) What was the official name of the Big Dig? dollars -4.470840540493773 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, is billions of, dollars) -> dollars (14410ms) What was the official name of the Big Dig? the largest ? -4.484149851398502 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, was one of, the largest ?) -> the largest ? (14445ms) What was the official name of the Big Dig? dust -4.502481058350866 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, are clouds of, dust) -> dust (14445ms) What was the official name of the Big Dig? 2007 -4.511598120012633 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, was completed in, 2007) -> 2007 (14445ms) What was the official name of the Big Dig? infrastructure -4.5162199604986695 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, is probably the last piece of, infrastructure) -> infrastructure (14503ms) What was the official name of the Big Dig? the United Kingdom?s number -4.574610315418402 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, be, $x) -> (Big Dug, is, the United Kingdom?s number) -> the United Kingdom?s number (14592ms) What was the official name of the Big Dig? a Woman -4.635685237208452 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, be, $x) -> (Big-Dig Big-Dig, is a guy looking for, a Woman) -> a Woman (14653ms) What was the official name of the Big Dig? BigDug (Ft. Verbezerker) -4.6450869978049845 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: ($x, recording, big dig) -> (BigDug (Ft. Verbezerker), Recording, BigDug (Ft. Verbezerker)) -> BigDug (Ft. Verbezerker) (14728ms) What was the official name of the Big Dig? BigDug -4.6450869978049845 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, recording, $x) -> (BigDug, Recording, BigDug) -> BigDug (14772ms) What was the official name of the Big Dig? 2002 -4.691849248360634 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, was published in, 2002) -> 2002 (14800ms) What was the official name of the Big Dig? 13 times -4.729470703111549 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, be, $x) -> (Boston ?s ?Big Dig?, is over, 13 times) -> 13 times (14801ms) What was the official name of the Big Dig? 107.3 WAAF: Survive This! -4.73133978905223 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, release, $x) -> (Big Dig, Release, 107.3 WAAF: Survive This!) -> 107.3 WAAF: Survive This! (14801ms) What was the official name of the Big Dig? a classic pork barrel project -4.7450766649689 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, be, $x) -> ('s Big Dig, was, a classic pork barrel project) -> a classic pork barrel project (14918ms) What was the official name of the Big Dig? 2011 -4.755994162124095 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, release, $x) -> (Bob the Builder: The Big Dino Dig, Initial release date, 2011) -> 2011 (14918ms) What was the official name of the Big Dig? the MHC -4.757005738464656 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, be, $x) -> ('s Big Dig, will be available on, the MHC) -> the MHC (15181ms) What was the official name of the Big Dig? the Israeli-Palestinian conflict -4.762361024631003 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, be, $x) -> (big dig, were connected to, the Israeli-Palestinian conflict) -> the Israeli-Palestinian conflict (15181ms) What was the official name of the Big Dig? the region?s -4.840621060084185 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, is critical to, the region?s) -> the region?s (15860ms) What was the official name of the Big Dig? Tom Doyle -4.840940970563993 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, recording, $x) -> (Big Dig, Recorded by, Tom Doyle) -> Tom Doyle (16016ms) What was the official name of the Big Dig? the most expensive highway project -4.8837262059925015 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, was, the most expensive highway project) -> the most expensive highway project (16016ms) What was the official name of the Big Dig? ?ann -4.892238489009978 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: ($x, track, big dig) -> (?ann, Tracks, Big Dig) -> ?ann (16086ms) What was the official name of the Big Dig? Band -4.892238489009978 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, release, $x) -> (Big Dig, Releases, Band) -> Band (16085ms) What was the official name of the Big Dig? half a century -4.906394557158104 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, become, the Big Dig) -> (half a century, would become, the Big Dig) -> half a century (16085ms) What was the official name of the Big Dig? underground roadways -4.915105146386068 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, be know as, the Big Dig) -> (underground roadways, was know as, the ?Big Dig?) -> underground roadways (16086ms) What was the official name of the Big Dig? the Silver Line -4.947951845032593 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, become, the Big Dig) -> (the Silver Line, really become, the Big Dig Deux) -> the Silver Line (16212ms) What was the official name of the Big Dig? the ugly raised highways -4.951518634144701 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the big dig, was to take down, the ugly raised highways) -> the ugly raised highways (16213ms) What was the official name of the Big Dig? a series -4.954103186425115 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, be, $x) -> ('s Big Dig, is manifested with, a series) -> a series (16212ms) What was the official name of the Big Dig? the rate -4.964203663031941 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, are better known than, the rate) -> the rate (16212ms) What was the official name of the Big Dig? time -4.98807189082907 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (The Big Dig, was on, time) -> time (16381ms) What was the official name of the Big Dig? Big Dig, Liverpool -4.993411910673951 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, know as, $x) -> (Big Dig, Also known as, Big Dig, Liverpool) -> Big Dig, Liverpool (16381ms) What was the official name of the Big Dig? Saccade -5.00693878158187 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: ($x, track, big dig) -> (Saccade, Tracks, Dig This Big Crux) -> Saccade (16572ms) What was the official name of the Big Dig? the old dump -5.030025511616546 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, were used to cap, the old dump) -> the old dump (16572ms) What was the official name of the Big Dig? cash -5.05534454456879 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, was short on, cash) -> cash (16572ms) What was the official name of the Big Dig? Seoul -5.081027616248525 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, be, $x) -> ('s big dig, is happening in, Seoul) -> Seoul (16572ms) What was the official name of the Big Dig? a winner -5.167730017110162 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, play, the Big Dig) -> (a winner, can play, the ?Big Dig? game) -> a winner (16826ms) What was the official name of the Big Dig? four times -5.191146190782728 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, be, $x) -> (Big Dig construction, is mentioned, four times) -> four times (16826ms) What was the official name of the Big Dig? Milford -5.213076612378963 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: ($x, be know as, the Big Dig) -> (Milford, was known as, the ?Big Dig) -> Milford (16935ms) What was the official name of the Big Dig? Eleven Eyes -5.244443341961294 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, recording, $x) -> (Big Dig, Recorded by, Eleven Eyes) -> Eleven Eyes (16935ms) What was the official name of the Big Dig? 14 -5.304513746294641 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, track, $x) -> (Big Dig, Track #, 14) -> 14 (16988ms) What was the official name of the Big Dig? 2 -5.304513746294641 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, track, $x) -> (Big Dig, Track #, 2) -> 2 (16988ms) What was the official name of the Big Dig? 4 -5.304513746294641 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (big dig, official name, $x) -> $x: (big dig, track, $x) -> (Big Dig, Track #, 4) -> 4 (16988ms) What was the official name of the Big Dig? the money -5.312649962308876 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig mentality, was right on, the money) -> the money (17032ms) What was the official name of the Big Dig? the automobile -5.320949882058865 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, is essentially an investment in, the automobile) -> the automobile (17032ms) What was the official name of the Big Dig? sight -5.373170989504877 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the Big Dig, are in, sight) -> sight (17032ms) What was the official name of the Big Dig? the soaring price of prehistoric fossils -5.383282654180346 What was the official name of the Big Dig? -> $x: (the Big Dig, official name, $x) -> $x: (the Big Dig, be, $x) -> (the big dig, is, the soaring price of prehistoric fossils) -> the soaring price of prehistoric fossils (17032ms) How many times has he married? Ianiv -12.81077192838735 How many times has he married? -> how many time [ have he ] marry ? -> who be have he husband ? -> $x: ($x, be have, he husband) -> (Ianiv, has been, a lucky husband ? he?s) -> Ianiv (13326ms) In what city was the operation performed? Point. -10.840717792966203 In what city was the operation performed? -> in what city be [ the operation perform ] ? -> how many square foot be the operation perform ? -> $x: ($x, instance of, square foot) (the operation, perform, $x) -> (Point., Instance Of, eight foot-square screen) (the sixth operation, performed, point) -> Point. (10190ms) In what city was the operation performed? three waves -10.975307992244609 In what city was the operation performed? -> in what city be [ the operation perform ] ? -> where have the operation perform ? -> $x: (the operation, have perform in, $x) -> (the operation, had to be performed in, three waves) -> three waves (7738ms) In what city was the operation performed? five minutes -10.993876117476816 In what city was the operation performed? -> in what city be [ the operation perform ] ? -> where have the operation perform ? -> $x: (the operation, have perform in, $x) -> (The operation, should have been performed in, five minutes) -> five minutes (7738ms) In what city was the operation performed? a medical spa -11.001074765024127 In what city was the operation performed? -> in what city be [ the operation perform ] ? -> where have the operation perform ? -> $x: (the operation, have perform in, $x) -> (The operation, had been performed in, a medical spa) -> a medical spa (7738ms) In what city was the operation performed? daylight -11.02467710079339 In what city was the operation performed? -> in what city be [ the operation perform ] ? -> where have the operation perform ? -> $x: (the operation, have perform in, $x) -> (the operation, had been successfully performed in, daylight) -> daylight (7738ms) In what city was the operation performed? Chicago and Mon -11.02759722969975 In what city was the operation performed? -> in what city be [ the operation perform ] ? -> what day be the operation perform ? -> $x: (the operation, perform day, $x) -> (The operation, was performed a few days ago in, Chicago and Mon) -> Chicago and Mon (13443ms) In what city was the operation performed? India -11.129157089204035 In what city was the operation performed? -> in what city be [ the operation perform ] ? -> where have the operation perform ? -> $x: (the operation, have perform in, $x) -> (the same operation, has been performed in, India) -> India (7738ms) In what city was the operation performed? every generation -11.234692913709186 In what city was the operation performed? -> in what city be [ the operation perform ] ? -> where have the operation perform ? -> $x: (the operation, have perform in, $x) -> (The operation, still had to be performed in, every generation) -> every generation (7740ms) In what city was the operation performed? Winnipeg -11.253575407563368 In what city was the operation performed? -> in what city be [ the operation perform ] ? -> where have the operation perform ? -> $x: (the operation, have perform in, $x) -> (the operation, have been performed in, Winnipeg) -> Winnipeg (10190ms) In what city was the operation performed? Routine Maintenance -11.404978501078459 In what city was the operation performed? -> in what city be [ the operation perform ] ? -> what day be the operation perform ? -> $x: ($x, instance of, day) (the operation, perform, $x) -> (Routine Maintenance, Instance Of, program of day-to-day repair) (the operation, perform, routine maintenance) -> Routine Maintenance (13444ms) In what city was the operation performed? law -11.435638816378107 In what city was the operation performed? -> in what city be [ the operation perform ] ? -> who be the operation perform by ? -> $x: (the operation, perform by, $x) -> (the operation, is performed by, law) -> law (10190ms) In what city was the operation performed? cases -11.563134648636822 In what city was the operation performed? -> in what city be [ the operation perform ] ? -> where have the operation perform ? -> $x: (the operation, have perform in, $x) -> (the operation, has been frequently performed in, cases) -> cases (10190ms) In what city was the operation performed? Routine maintenance -11.576936446287325 In what city was the operation performed? -> in what city be [ the operation perform ] ? -> what day be the operation perform ? -> $x: ($x, instance of, day) (the operation, perform, $x) -> (Routine maintenance, Instance Of, day-to-day maintenance) (the operation, perform, routine maintenance) -> Routine maintenance (13444ms) In what city was the operation performed? routine maintenance -11.580249871083387 In what city was the operation performed? -> in what city be [ the operation perform ] ? -> what day be the operation perform ? -> $x: ($x, instance of, day) (the operation, perform, $x) -> (routine maintenance, Instance Of, day-today task) (the operation, perform, routine maintenance) -> routine maintenance (13444ms) In what city was the operation performed? operation -11.794276255597424 In what city was the operation performed? -> in what city be [ the operation perform ] ? -> which city be the operation perform ? -> $x: ($x, instance of, city) (the operation, perform, $x) -> (operation, Instance Of, city facility) (the operation thread pool, perform, operations) -> operation (15695ms) In what city was the operation performed? laparoscopic surgery -11.901332366485367 In what city was the operation performed? -> in what city be [ the operation perform ] ? -> who be the operation perform by ? -> $x: (the operation, perform by, $x) -> (The operation, was performed by, laparoscopic surgery) -> laparoscopic surgery (10190ms) In what city was the operation performed? Today's -11.968829928828224 In what city was the operation performed? -> in what city be [ the operation perform ] ? -> what day be the operation perform ? -> $x: ($x, instance of, day) (the operation, perform, $x) -> (Today's, Instance Of, typical day-game-following-a-night-game lineup) (the most common cosmetic operations, performed, today) -> Today's (15695ms) In what city was the operation performed? America -12.029708332818181 In what city was the operation performed? -> in what city be [ the operation perform ] ? -> where have the operation perform ? -> $x: (the operation, have perform in, $x) -> (the ?painless operation, had been performed in, America) -> America (10190ms) In what city was the operation performed? TODAY.. -12.206193357723397 In what city was the operation performed? -> in what city be [ the operation perform ] ? -> what day be the operation perform ? -> $x: ($x, instance of, day) (the operation, perform, $x) -> (TODAY.., Instance Of, interesting day thusfar) (the most common cosmetic operations, performed, today) -> TODAY.. (17541ms) In what city was the operation performed? a medical team -12.292322228206933 In what city was the operation performed? -> in what city be [ the operation perform ] ? -> who be the operation perform by ? -> $x: (the operation, perform by, $x) -> (The operations, will be performed by, a medical team) -> a medical team (11915ms) In what city was the operation performed? Jewish merchants -12.367535948108197 In what city was the operation performed? -> in what city be [ the operation perform ] ? -> who be the operation perform by ? -> $x: (the operation, perform by, $x) -> (the operation, is performed by, Jewish merchants) -> Jewish merchants (11915ms) In what city was the operation performed? the laboratory -12.372478213031377 In what city was the operation performed? -> in what city be [ the operation perform ] ? -> where have the operation perform ? -> $x: (the operation, have perform in, $x) -> (the operation, has been performed in, the laboratory) -> the laboratory (11915ms) In what city was the operation performed? X2Here -12.4175371582942 In what city was the operation performed? -> in what city be [ the operation perform ] ? -> which city be the operation perform ? -> $x: ($x, instance of, city) (the operation, perform, $x) -> (X2Here, Instance Of, city) (the operations, performed, here) -> X2Here (18488ms) In what city was the operation performed? high-volume surgeons -12.4359468278951 In what city was the operation performed? -> in what city be [ the operation perform ] ? -> who be the operation perform by ? -> $x: (the operation, perform by, $x) -> (the operation, was performed by, high-volume surgeons) -> high-volume surgeons (11915ms) In what city was the operation performed? two surgeons -12.501442032940222 In what city was the operation performed? -> in what city be [ the operation perform ] ? -> who be the operation perform by ? -> $x: (the operation, perform by, $x) -> (The operations, were performed by, two surgeons) -> two surgeons (11915ms) In what city was the operation performed? hand -12.509127574827229 In what city was the operation performed? -> in what city be [ the operation perform ] ? -> who be the operation perform by ? -> $x: (the operation, perform by, $x) -> (the operations, are performed by, hand) -> hand (11916ms) In what city was the operation performed? Dr Crist -12.512936614261362 In what city was the operation performed? -> in what city be [ the operation perform ] ? -> who be the operation perform by ? -> $x: (the operation, perform by, $x) -> (The operation, was performed by, Dr Crist) -> Dr Crist (19455ms) In what city was the operation performed? Dr. Pickel -12.514704987063554 In what city was the operation performed? -> in what city be [ the operation perform ] ? -> who be the operation perform by ? -> $x: (the operation, perform by, $x) -> (The operation, was performed by, Dr. Pickel) -> Dr. Pickel (19455ms) In what city was the operation performed? the last step -12.527501297426904 In what city was the operation performed? -> in what city be [ the operation perform ] ? -> where have the operation perform ? -> $x: (the operation, have perform in, $x) -> (the reverse operation, has been performed in, the last step) -> the last step (19455ms) In what city was the operation performed? drag-and-drop and images -12.527518814929435 In what city was the operation performed? -> in what city be [ the operation perform ] ? -> who be the operation perform by ? -> $x: (the operation, perform by, $x) -> (the operations, can be performed by, drag-and-drop and images) -> drag-and-drop and images (19456ms) In what city was the operation performed? local anesthesia -13.88825476199465 In what city was the operation performed? -> in what city be [ the operation perform ] ? -> where be the operation perform and when ? -> $x: (the operation, be perform in, $x) -> (The operation, is performed in, local anesthesia) -> local anesthesia (5123ms) In what city was the operation performed? 16-bit registers -14.15918768872998 In what city was the operation performed? -> in what city be [ the operation perform ] ? -> where be the operation perform and when ? -> $x: (the operation, be perform in, $x) -> (the operations, are performed in, 16-bit registers) -> 16-bit registers (5123ms) In what city was the operation performed? such way -14.170937452379121 In what city was the operation performed? -> in what city be [ the operation perform ] ? -> where be the operation perform and when ? -> $x: (the operation, be perform in, $x) -> (The operation, is performed in, such way) -> such way (5123ms) In what city was the operation performed? 2001 -14.21636408522129 In what city was the operation performed? -> in what city be [ the operation perform ] ? -> where be the operation perform and when ? -> $x: (the operation, be perform in, $x) -> (the operation, was performed in, 2001) -> 2001 (5123ms) In what city was the operation performed? 1980 -14.246983347212284 In what city was the operation performed? -> in what city be [ the operation perform ] ? -> where be the operation perform and when ? -> $x: (the operation, be perform in, $x) -> (the operation, was performed in, 1980) -> 1980 (5123ms) In what city was the operation performed? July -14.250575629934746 In what city was the operation performed? -> in what city be [ the operation perform ] ? -> where be the operation perform and when ? -> $x: (the operation, be perform in, $x) -> (The operation, was performed in, July) -> July (5123ms) Where is the capital of the Mormon Church? Salt Lake City -7.667471418057645 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be capital of the mormon church ? -> $x: ($x, be capital of, the mormon church) -> (Salt Lake City, is the historic capital of, the Mormon church) -> Salt Lake City (6312ms) Where is the capital of the Mormon Church? Christ -9.220530484961152 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the capital of the mormon church ? -> $x: ($x, be the capital of, the mormon church) -> $x: ($x, be the center of, the mormon church) -> (Christ, is the center of, the Mormon Church) -> Christ (13553ms) Where is the capital of the Mormon Church? Sao Paulo -9.398724843282874 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> when be the mormon church build ? -> $x: (the mormon church, be build in, $x) -> (the Mormon Church, is building a Temple in, Sao Paulo) -> Sao Paulo (8770ms) Where is the capital of the Mormon Church? Arizona -10.122963277040464 Where is the capital of the Mormon Church? -> where be the capital [ of the mormon church ] ? -> what state capital be of the mormon church ? -> $x: ($x, instance of, state capital) ($x, be of, the mormon church) -> (Arizona, Instance Of, capital punishment state) (Arizona, are active members of, the Mormon church) -> Arizona (11420ms) Where is the capital of the Mormon Church? Maine -10.150151437728477 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be still, $x) -> (the Mormon Church, is still involved in, Maine) -> Maine (16984ms) Where is the capital of the Mormon Church? Young -10.249128720143759 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: ($x, be make of, the mormon church) -> (Young, was made President of, the Mormon Church) -> Young (16712ms) Where is the capital of the Mormon Church? Christian -10.289809513684032 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be now, $x) -> (The Mormon Church, is Now, Christian) -> Christian (15866ms) Where is the capital of the Mormon Church? Oklahoma -10.375205410473512 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, have be in, $x) -> (the Mormon Church, had been operating in, Oklahoma) -> Oklahoma (16638ms) Where is the capital of the Mormon Church? Manchester -10.410703420865936 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the capital of the mormon church ? -> $x: ($x, be the capital of, the mormon church) -> $x: (the mormon church, be organize at, $x) -> (the Mormon Church, was first regularly organized at, Manchester) -> Manchester (13552ms) Where is the capital of the Mormon Church? The Church -10.53695871477878 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be for, $x) -> (The Mormon Church, is actually a nickname for, The Church) -> The Church (16225ms) Where is the capital of the Mormon Church? Freemasons -10.656849684076963 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, start, $x) -> (the Mormon church, was started by, Freemasons) -> Freemasons (6210ms) Where is the capital of the Mormon Church? Polygamists -10.774786449253762 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: ($x, be now, the mormon church) -> (Polygamists, are now excommunicated from, the Mormon church) -> Polygamists (12680ms) Where is the capital of the Mormon Church? Joseph Smith -11.008664102688456 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be for, $x) -> (the early Mormon Church, is a strong argument for, Joseph Smith) -> Joseph Smith (16224ms) Where is the capital of the Mormon Church? Shawn -11.047985501309784 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be for, $x) -> (the Mormon Church, was too hard for, Shawn) -> Shawn (16225ms) Where is the capital of the Mormon Church? Las Vegas -11.06704915545502 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, choose, $x) -> (the Mormon Church, chose, Las Vegas) -> Las Vegas (15866ms) Where is the capital of the Mormon Church? America -11.078776447623117 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be still, $x) -> (the Mormon Church, is still so strong in, America) -> America (16984ms) Where is the capital of the Mormon Church? Mormonism -11.111630640363432 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, begin, $x) -> (the Mormon Church, began preaching, Mormonism) -> Mormonism (15645ms) Where is the capital of the Mormon Church? Levites -11.18678743309795 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, begin, $x) -> (The Mormon Church, began as, Levites) -> Levites (15644ms) Where is the capital of the Mormon Church? Mesa -11.241063772889943 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, be also in, $x) -> (the Mormon Church, is also deeply rooted in, Mesa) -> Mesa (12834ms) Where is the capital of the Mormon Church? Gods -11.388428340147186 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be north of the mormon church ? -> $x: ($x, be north of, the mormon church) -> $x: ($x, there be in, the mormon church) -> (Gods, Are there any Blacks in, the Mormon church) -> Gods (14298ms) Where is the capital of the Mormon Church? Elie Wiesel -11.482638206094471 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: ($x, call on, the mormon church) -> (Elie Wiesel, has been calling on, the Mormon Church) -> Elie Wiesel (12332ms) Where is the capital of the Mormon Church? a living prophet -11.550465032021856 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, be lead, $x) -> (the Mormon Church, is led by, a living prophet) -> a living prophet (12680ms) Where is the capital of the Mormon Church? Deseret News -11.585291011235176 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, own, $x) -> (the Mormon Church, owned, Deseret News) -> Deseret News (6437ms) Where is the capital of the Mormon Church? same-sex marriage -11.64381405976863 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, fight, $x) -> (The Mormon Church, has been fighting, same-sex marriage) -> same-sex marriage (15866ms) Where is the capital of the Mormon Church? a son -11.667278282103437 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> who be involve with the mormon church ? -> $x: ($x, be involve with, the mormon church) -> (a son, is involved with, the Mormon church) -> a son (11852ms) Where is the capital of the Mormon Church? pound one -11.6919754983055 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be for, $x) -> (the Mormon Church, is pound for, pound one) -> pound one (16225ms) Where is the capital of the Mormon Church? a man -11.692192382936128 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, be lead, $x) -> (The Mormon church, is led by, a man) -> a man (12680ms) Where is the capital of the Mormon Church? the covenant -11.730939870183052 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, be part of, $x) -> (the Mormon Church, is part of, the covenant) -> the covenant (12432ms) Where is the capital of the Mormon Church? priesthood office -11.737106263406082 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, have some of, $x) -> (the Mormon Church, has some sort of, priesthood office) -> priesthood office (12050ms) Where is the capital of the Mormon Church? lawsuits -11.817209064519478 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: ($x, be now, the mormon church) -> (lawsuits, are now being prepared against, the Mormon Church) -> lawsuits (12680ms) Where is the capital of the Mormon Church? two purposes -11.819891033321598 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be for, $x) -> (the Mormon church, is primarily for, two purposes) -> two purposes (16225ms) Where is the capital of the Mormon Church? Fayette -11.832232905733735 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, begin, $x) -> (The Mormon Church, began in, Fayette) -> Fayette (15645ms) Where is the capital of the Mormon Church? Kirtland -11.869953995364005 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, face, $x) -> (the Mormon church, faced financial crisis in, Kirtland) -> Kirtland (16831ms) Where is the capital of the Mormon Church? every nation -11.881586011536442 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be for, $x) -> (the Mormon Church, is for, every nation) -> every nation (16225ms) Where is the capital of the Mormon Church? gay marriage -11.9246365411117 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, fight, $x) -> (the Mormon Church, fought against, gay marriage) -> gay marriage (15866ms) Where is the capital of the Mormon Church? scientific evidence -11.946284644730332 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, find, $x) -> (the Mormon Church, ever found, scientific evidence) -> scientific evidence (16397ms) Where is the capital of the Mormon Church? con artists -11.951751132471959 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, start, $x) -> (The Mormon LDS church, was started by, con artists) -> con artists (6209ms) Where is the capital of the Mormon Church? God -12.03348953450945 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, understand, $x) -> (The Mormon Church, has a wrong understanding of, God) -> God (16831ms) Where is the capital of the Mormon Church? Belmont -12.0348413630417 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> when be the mormon church build ? -> $x: (the mormon church, be build in, $x) -> $x: (the mormon church, open in, $x) -> (the Mormon Church, opened in, Belmont) -> Belmont (18751ms) Where is the capital of the Mormon Church? Josh Powell -12.041497670290292 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: ($x, relate to, the mormon church) -> (Josh Powell, are directly related to, the Mormon church) -> Josh Powell (15866ms) Where is the capital of the Mormon Church? doctrine -12.069545021776715 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be for, $x) -> (the Mormon church, is "profitable for, doctrine) -> doctrine (16225ms) Where is the capital of the Mormon Church? the corner -12.116860732448192 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> when be the mormon church build ? -> $x: (the mormon church, be build on, $x) -> (The Mormon church, is built on, the corner) -> the corner (8770ms) Where is the capital of the Mormon Church? re-election or rejection -12.125175494119341 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be for, $x) -> (the Mormon Church, are proposed for, re-election or rejection) -> re-election or rejection (16225ms) Where is the capital of the Mormon Church? false claims -12.133856740234872 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be base on, $x) -> (the Mormon church, is based on, false claims) -> false claims (16397ms) Where is the capital of the Mormon Church? amnesty -12.14237693897369 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be for, $x) -> (the Mormon Church, are petitioning for, amnesty) -> amnesty (16397ms) Where is the capital of the Mormon Church? a great many records -12.202934783701972 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be now, $x) -> (The Mormon Church, is now microfilming, a great many records) -> a great many records (15866ms) Where is the capital of the Mormon Church? the Territory -12.250318365150443 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, dominate, $x) -> (the Mormon Church, dominates, the Territory) -> the Territory (12050ms) Where is the capital of the Mormon Church? flack -12.27436604766498 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, be already, $x) -> (the Utah-based Mormon church, is already catching enough, flack) -> flack (12332ms) Where is the capital of the Mormon Church? two full years -12.28667841622634 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be for, $x) -> (The Mormon Church, had been operating for, two full years) -> two full years (16397ms) Where is the capital of the Mormon Church? Sixth Avenue Southeast -12.310681678518744 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be now, $x) -> (the existing Mormon church, is now on, Sixth Avenue Southeast) -> Sixth Avenue Southeast (16397ms) Where is the capital of the Mormon Church? Peabody Coal -12.324590912063002 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, own, $x) -> (the Mormon Church, owned a controlling interest in, Peabody Coal) -> Peabody Coal (6437ms) Where is the capital of the Mormon Church? a peculiar dilemma -12.345416283065891 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be face with, $x) -> (The Mormon church, is faced with, a peculiar dilemma) -> a peculiar dilemma (16516ms) Where is the capital of the Mormon Church? ten million -12.38381798282859 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, now have, $x) -> (The Mormon Church, now has a membership of over, ten million) -> ten million (12681ms) Where is the capital of the Mormon Church? ZCMI -12.386521301380117 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, own, $x) -> (the Mormon Church, owned 51 percent of, ZCMI) -> ZCMI (6437ms) Where is the capital of the Mormon Church? fiction -12.396773735515618 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be base on, $x) -> (The Mormon church, is based on, fiction) -> fiction (16397ms) Where is the capital of the Mormon Church? the fastest-growing denominations -12.421973751826659 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, be one of, $x) -> (the Mormon church, is one of, the fastest-growing denominations) -> the fastest-growing denominations (12050ms) Where is the capital of the Mormon Church? the first ones -12.428617593740626 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, be one of, $x) -> (the Mormon Church, is one of, the first ones) -> the first ones (12050ms) Where is the capital of the Mormon Church? prophets -12.447980905271042 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, be lead, $x) -> (The Mormon Church, is led by, prophets) -> prophets (12681ms) Where is the capital of the Mormon Church? social proof -12.46066822344145 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, rely on, $x) -> (The Mormon Church, relies heavily on, social proof) -> social proof (6437ms) Where is the capital of the Mormon Church? last week -12.490835886364252 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, begin, $x) -> (the Mormon church, began, last week) -> last week (15644ms) Where is the capital of the Mormon Church? The Simon Wiesenthal Center -12.497739160992467 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: ($x, call on, the mormon church) -> (The Simon Wiesenthal Center, called on, the Mormon Church) -> The Simon Wiesenthal Center (12332ms) Where is the capital of the Mormon Church? acres -12.511011491603675 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, own, $x) -> (The Mormon church, owns hundreds of, acres) -> acres (6520ms) Where is the capital of the Mormon Church? unflattering publicity -12.514834451784308 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, face, $x) -> (the Mormon Church, faced, unflattering publicity) -> unflattering publicity (16831ms) Where is the capital of the Mormon Church? the Peywa family -12.520819922415908 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> when be the mormon church build ? -> $x: (the mormon church, be build in, $x) -> $x: (the mormon church, be build around, $x) -> (The Mormon Church, is built around, the Peywa family) -> the Peywa family (18932ms) Where is the capital of the Mormon Church? the richest -12.52145837800855 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, be one of, $x) -> (the Mormon Church, is one of, the richest) -> the richest (12050ms) Where is the capital of the Mormon Church? a room -12.528640735212294 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what s the capital of the mormon church ? -> $x: (the mormon church, capital, $x) -> $x: (the mormon church, meet in, $x) -> (the early Mormon Church, used to meet in, a room) -> a room (9018ms) Where is the capital of the Mormon Church? the most prominent proponents -12.541199203860568 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, be one of, $x) -> (the Mormon church, is one of, the most prominent proponents) -> the most prominent proponents (12050ms) Where is the capital of the Mormon Church? historical documents -12.543163853707817 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, buy, $x) -> (The Mormon Church, does buy, historical documents) -> historical documents (16984ms) Where is the capital of the Mormon Church? a group -12.55134036764091 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, be lead, $x) -> (The Mormon Church, is led by, a group) -> a group (12715ms) Where is the capital of the Mormon Church? doubt -12.565069160736467 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be now, $x) -> (the Mormon Church, is now beyond, doubt) -> doubt (16397ms) Where is the capital of the Mormon Church? polygamists -12.57854899949043 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: ($x, be now, the mormon church) -> (polygamists, are now excommunicated from, the Mormon church) -> polygamists (12715ms) Where is the capital of the Mormon Church? six members -12.586742209531105 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, begin, $x) -> (The Mormon Church, was begun with, six members) -> six members (15645ms) Where is the capital of the Mormon Church? reason -12.612451418437196 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, listen to, $x) -> (the Mormon Church, am disposed to listen to, reason) -> reason (15528ms) Where is the capital of the Mormon Church? discrimination -12.61328525207191 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, end, $x) -> (The Mormon Church, ended a policy of, discrimination) -> discrimination (16711ms) Where is the capital of the Mormon Church? the primary backers -12.627031210780231 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, be one of, $x) -> (The Mormon Church, was one of, the primary backers) -> the primary backers (12050ms) Where is the capital of the Mormon Church? racism -12.635191367916752 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, reject, $x) -> (The Mormon Church, rejects allegations of, racism) -> racism (16984ms) Where is the capital of the Mormon Church? the religion -12.635838012805657 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, be part of, $x) -> (the Mormon Church, was officially part of, the religion) -> the religion (12432ms) Where is the capital of the Mormon Church? a personal visit -12.647164698484696 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, begin, $x) -> (The Mormon Church, began with, a personal visit) -> a personal visit (15645ms) Where is the capital of the Mormon Church? very recently Mormons -12.648933123989183 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: ($x, want, the mormon church) -> (very recently Mormons, wanted to leave, the Mormon Church) -> very recently Mormons (15645ms) Where is the capital of the Mormon Church? an activist opposition -12.652247834968112 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, face, $x) -> (the Mormon Church, faces, an activist opposition) -> an activist opposition (16831ms) Where is the capital of the Mormon Church? an embarrassing book -12.670028644750298 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, stick, $x) -> (the Mormon Church, stuck with, an embarrassing book) -> an embarrassing book (16984ms) Where is the capital of the Mormon Church? a small piece -12.679722550445426 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, carry, $x) -> (the Mormon Church, carried, a small piece) -> a small piece (16516ms) Where is the capital of the Mormon Church? a Perpetual Emigration Fund -12.689867509089762 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, start, $x) -> (The Mormon Church, had started, a Perpetual Emigration Fund) -> a Perpetual Emigration Fund (6210ms) Where is the capital of the Mormon Church? charitable programs -12.689867509089762 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, reject, $x) -> (the Mormon church, has rejected funding for, charitable programs) -> charitable programs (16984ms) Where is the capital of the Mormon Church? LGBT individuals -12.69844819487813 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, cause, $x) -> (the Mormon Church, has caused for, LGBT individuals) -> LGBT individuals (15645ms) Where is the capital of the Mormon Church? the fastest growing religions -12.70540480022833 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, be one of, $x) -> (The Mormon Church, is one of, the fastest growing religions) -> the fastest growing religions (12050ms) Where is the capital of the Mormon Church? the largest land owners -12.708248026334658 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, be one of, $x) -> (The Mormon church, is one of, the largest land owners) -> the largest land owners (12119ms) Where is the capital of the Mormon Church? much controversy -12.708508818804676 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, cause, $x) -> (the Mormon Church, has caused, much controversy) -> much controversy (16516ms) Where is the capital of the Mormon Church? negative public reactions -12.71456047640698 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, seem, $x) -> (The Mormon church, seems puzzled by, negative public reactions) -> negative public reactions (16712ms) Where is the capital of the Mormon Church? serious inroads -12.720395599216523 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, begin, $x) -> (the Mormon Church, began making, serious inroads) -> serious inroads (16516ms) Where is the capital of the Mormon Church? Church critics -12.746194840262591 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: ($x, want, the mormon church) -> (Church critics, really want to push, the Mormon Church) -> Church critics (16516ms) Where is the capital of the Mormon Church? the Anthon transcript -12.748689932967679 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, buy, $x) -> (the Mormon Church leaders, bought, the Anthon transcript) -> the Anthon transcript (16984ms) Where is the capital of the Mormon Church? polygamy -12.749451697016514 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, end, $x) -> (The Mormon Church, officially ended the practice of, polygamy) -> polygamy (16712ms) Where is the capital of the Mormon Church? Latter Day Saints -12.760392386255699 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: ($x, refer to, the mormon church) -> (Latter Day Saints, refers to, the Mormon church) -> Latter Day Saints (16516ms) Where is the capital of the Mormon Church? disseminating -12.780128004416317 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be for, $x) -> (the Mormon church, is a vehicle for, disseminating) -> disseminating (16516ms) Where is the capital of the Mormon Church? newspapers -12.790497649451387 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, own, $x) -> (The Mormon Church, owns, newspapers) -> newspapers (6520ms) Where is the capital of the Mormon Church? records -12.809562149976195 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, now have, $x) -> (the Mormon Church, has now millions of, records) -> records (12715ms) Where is the capital of the Mormon Church? criticism -12.834491479196176 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be for, $x) -> (the Mormon Church, is fair game for, criticism) -> criticism (16516ms) Where is the capital of the Mormon Church? The city -12.844540236083622 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what s the capital of the mormon church ? -> $x: (the mormon church, capital, $x) -> $x: ($x, capital, the mormon church) -> (The city, became first the capital for, the Mormon Church) -> The city (8770ms) Where is the capital of the Mormon Church? hand -12.850389920163071 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, handed, $x) -> (the Mormon Church, worked hand in, hand) -> hand (16637ms) Where is the capital of the Mormon Church? the Deseret News -12.853025298556743 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, own, $x) -> (The Mormon Church, also owns, the Deseret News) -> the Deseret News (6520ms) Where is the capital of the Mormon Church? part -12.860689756479392 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be now, $x) -> (the Mormon church, is now published as, part) -> part (16638ms) Where is the capital of the Mormon Church? the LDS world -12.868973167409479 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, spread, $x) -> (the Mormon church, spread widely in, the LDS world) -> the LDS world (16756ms) Where is the capital of the Mormon Church? countries -12.90041216373866 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, go into, $x) -> (the Mormon Church, goes into, countries) -> countries (16756ms) Where is the capital of the Mormon Church? the North -12.906961354153468 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, own, $x) -> (The Mormon Church, owns the property to, the North) -> the North (6521ms) Where is the capital of the Mormon Church? Mr Davies -12.907895893320948 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: ($x, refer to, the mormon church) -> (Mr Davies, referred to, the Mormon Church) -> Mr Davies (16638ms) Where is the capital of the Mormon Church? revelation -12.913652851179952 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be base on, $x) -> (the Mormon Church, is one based on, revelation) -> revelation (16638ms) Where is the capital of the Mormon Church? legitimacy -12.915345694832572 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be for, $x) -> (the Mormon Church, has been fighting for, legitimacy) -> legitimacy (16638ms) Where is the capital of the Mormon Church? a prophet -12.916290908773117 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, head, $x) -> (the Mormon church, is headed by, a prophet) -> a prophet (16831ms) Where is the capital of the Mormon Church? political overdrive -12.917814735728227 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, go into, $x) -> (the Mormon Church, has gone into, political overdrive) -> political overdrive (16756ms) Where is the capital of the Mormon Church? Latter-day Saints -12.926490622290132 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: ($x, refer to, the mormon church) -> (Latter-day Saints, mistakenly referred to as, the Mormon Church) -> Latter-day Saints (16638ms) Where is the capital of the Mormon Church? Lake Drive -12.931718889597942 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, find, $x) -> (the Mormon church, found on, Lake Drive) -> Lake Drive (16637ms) Where is the capital of the Mormon Church? extensive record keeping -12.937990902698115 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, engage in, $x) -> (The Mormon Church, engages in, extensive record keeping) -> extensive record keeping (15528ms) Where is the capital of the Mormon Church? blacks -12.966071186791572 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, have be in, $x) -> (The Mormon church, has been very slow in allowing, blacks) -> blacks (16712ms) Where is the capital of the Mormon Church? an emotional and religious era -12.986870325928818 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, begin, $x) -> (The Mormon Church, began during, an emotional and religious era) -> an emotional and religious era (16712ms) Where is the capital of the Mormon Church? a nuclear issue -12.997735850474566 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, speak, $x) -> (the Mormon Church, has spoken out on, a nuclear issue) -> a nuclear issue (16712ms) Where is the capital of the Mormon Church? walls -13.02080149927233 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be now, $x) -> (The Mormon church, is just now is putting up, walls) -> walls (16712ms) Where is the capital of the Mormon Church? black members -13.023210051189062 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, end, $x) -> (the Mormon church, ended its ban on, black members) -> black members (16756ms) Where is the capital of the Mormon Church? the Great Depression -13.034698056285613 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, cause, $x) -> (the Mormon Church, caused by, the Great Depression) -> the Great Depression (16756ms) Where is the capital of the Mormon Church? the U.S. -13.034704632510202 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, remain, $x) -> (The Mormon church, has remained quite active in, the U.S.) -> the U.S. (15528ms) Where is the capital of the Mormon Church? lies -13.055874414067741 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be base on, $x) -> (The Mormon church, is based on, lies) -> lies (16756ms) Where is the capital of the Mormon Church? cans -13.057193713314776 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, have be in, $x) -> (the Mormon Church, have been storing food in, cans) -> cans (16756ms) Where is the capital of the Mormon Church? earth -13.06171305862442 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, rule, $x) -> (The Mormon Church, will rule on, earth) -> earth (16756ms) Where is the capital of the Mormon Church? a loyalty -13.062028644827862 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, to lead, $x) -> (the Mormon church, leads to, a loyalty) -> a loyalty (12433ms) Where is the capital of the Mormon Church? decades -13.068548197359085 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be for, $x) -> (Even the peaceful Mormon church, was persecuted for, decades) -> decades (16831ms) Where is the capital of the Mormon Church? a plurality -13.085412844504088 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, seem, $x) -> (the Mormon Church, there seemed to be, a plurality) -> a plurality (16831ms) Where is the capital of the Mormon Church? view -13.139100656371802 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, end, $x) -> (the Mormon Church, is the end in, view) -> view (17093ms) Where is the capital of the Mormon Church? control of the papyri -13.148519718761943 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, lose, $x) -> (the Mormon Church, lost, control of the papyri) -> control of the papyri (17093ms) Where is the capital of the Mormon Church? the Inspired Version of the Bible -13.241582815947424 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, reject, $x) -> (the Mormon church, rejects, the Inspired Version of the Bible) -> the Inspired Version of the Bible (17093ms) Where is the capital of the Mormon Church? father -13.25866615658044 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: ($x, hear, the mormon church) -> (father, had heard some of, the Mormon Church) -> father (17093ms) Where is the capital of the Mormon Church? right-wing forces -13.26960617759213 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: ($x, lead by, the mormon church) -> (right-wing forces, led by, the Mormon Church) -> right-wing forces (12433ms) Where is the capital of the Mormon Church? history -13.309014409018431 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, change, $x) -> (the Mormon Church, will undoubtedly change, history) -> history (17093ms) Where is the capital of the Mormon Church? politics -13.312019084061832 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, engage in, $x) -> (the Mormon Church, should be allowed to engage in, politics) -> politics (15528ms) Where is the capital of the Mormon Church? the family -13.327642301052073 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: ($x, be now, the mormon church) -> (the family, is now recorded with, the Mormon Church) -> the family (12715ms) Where is the capital of the Mormon Church? denials -13.372345478801051 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, print, $x) -> (the Mormon Church, printed, denials) -> denials (17242ms) Where is the capital of the Mormon Church? the 19th Century New York -13.532815133966634 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be still, $x) -> (The Mormon Church, is still stuck in, the 19th Century New York) -> the 19th Century New York (17241ms) Where is the capital of the Mormon Church? the Inspired Version -13.555079466207225 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, reject, $x) -> (the Mormon church, fully reject, the Inspired Version) -> the Inspired Version (17241ms) Where is the capital of the Mormon Church? a member -13.573123476257697 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: ($x, refer to, the mormon church) -> (a member, is commonly referred to as, the Mormon Church) -> a member (17242ms) Where is the capital of the Mormon Church? the Parasomnial Order -13.605144255387376 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, read, $x) -> (the Mormon church, read up on, the Parasomnial Order) -> the Parasomnial Order (17241ms) Where is the capital of the Mormon Church? the highest turnover rates -13.618855150474959 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, have one of, $x) -> (the Mormon Church, has one of, the highest turnover rates) -> the highest turnover rates (12835ms) Where is the capital of the Mormon Church? You watch -13.619342687070112 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: ($x, throw, the mormon church) -> (You watch, to throw, the Mormon church) -> You watch (17242ms) Where is the capital of the Mormon Church? a dilemma -13.628303756583737 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, face, $x) -> (The Mormon church, faces, a dilemma) -> a dilemma (17242ms) Where is the capital of the Mormon Church? limits -13.629512799822082 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, find, $x) -> (the Mormon church, have found a way around, limits) -> limits (17242ms) Where is the capital of the Mormon Church? the United States -13.65361762067473 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, begin, $x) -> (the Mormon Church, began in, the United States) -> the United States (17297ms) Where is the capital of the Mormon Church? face -13.654990901167967 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, lose, $x) -> (The Mormon Church, could easily lose, face) -> face (17297ms) Where is the capital of the Mormon Church? favor -13.741799794424123 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, speak, $x) -> (The Mormon church, has spoken strongly in, favor) -> favor (17297ms) Where is the capital of the Mormon Church? The truth -13.767044638113477 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be north of the mormon church ? -> $x: ($x, be north of, the mormon church) -> $x: ($x, there be in, the mormon church) -> (The truth, is there is good in, the Mormon Church) -> The truth (14298ms) Where is the capital of the Mormon Church? the house -13.805124971731287 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the capital of the mormon church ? -> $x: ($x, be the capital of, the mormon church) -> $x: (the mormon church, be organize at, $x) -> (The Mormon church, was first organized at, the house) -> the house (13552ms) Where is the capital of the Mormon Church? the process -13.8332293812839 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be now, $x) -> (The Mormon Church, now appears to be in, the process) -> the process (17297ms) Where is the capital of the Mormon Church? the property -13.847346813192619 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: ($x, allow, the mormon church) -> (the property, was allowing, the Mormon Church) -> the property (6312ms) Where is the capital of the Mormon Church? the revelation -13.8595328280015 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be base on, $x) -> (the Mormon Church, is based on, the revelation) -> the revelation (17298ms) Where is the capital of the Mormon Church? Temple Cards -13.862509902964167 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, to take, $x) -> (the Mormon Church, to consider taking away, Temple Cards) -> Temple Cards (6210ms) Where is the capital of the Mormon Church? 166 different languages -13.885988268557764 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, print, $x) -> (the Mormon Church, are printed in, 166 different languages) -> 166 different languages (17298ms) Where is the capital of the Mormon Church? of politics -13.98474098853031 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, get to, $x) -> (the Mormon Church, to get the hell out, of politics) -> of politics (17530ms) Where is the capital of the Mormon Church? the campaign -14.009821010560618 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: ($x, throw, the mormon church) -> (the campaign, is gonna throw, the Mormon Church) -> the campaign (17530ms) Where is the capital of the Mormon Church? the past -14.015541059176496 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, have be in, $x) -> (the Mormon Church, has been challenged in, the past) -> the past (17530ms) Where is the capital of the Mormon Church? 12 million members -14.023494057460466 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the continent of the mormon church ? -> $x: (the mormon church, continent, $x) -> $x: (the mormon church, now have, $x) -> (the Mormon Church, now has over, 12 million members) -> 12 million members (12715ms) Where is the capital of the Mormon Church? the context -14.089170229216121 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, understand, $x) -> (the Mormon church, must be understood within, the context) -> the context (17530ms) Where is the capital of the Mormon Church? now -14.102826785544883 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, own, $x) -> (the Mormon Church, owns the land, now) -> now (6520ms) Where is the capital of the Mormon Church? 36 percent -14.13877215101047 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, own, $x) -> (the Mormon Church, owns about, 36 percent) -> 36 percent (6520ms) Where is the capital of the Mormon Church? the draft -14.152743414727256 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, deal with, $x) -> (the Mormon church, did n?t have to deal with, the draft) -> the draft (17530ms) Where is the capital of the Mormon Church? the collection -14.164128214256595 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, lose, $x) -> (the Mormon church, lost control of, the collection) -> the collection (17530ms) Where is the capital of the Mormon Church? property -14.256464362332437 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, buy, $x) -> (the Mormon church, bought, property) -> property (17530ms) Where is the capital of the Mormon Church? the land -14.270868179430632 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, own, $x) -> (the Mormon Church, own, the land) -> the land (6545ms) Where is the capital of the Mormon Church? a cover-up situation -14.299594163851674 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, find, $x) -> (the Mormon Church, finds itself in, a cover-up situation) -> a cover-up situation (17530ms) Where is the capital of the Mormon Church? 720 acres -14.306991815340666 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, own, $x) -> (the Mormon church, owns more than, 720 acres) -> 720 acres (6545ms) Where is the capital of the Mormon Church? the initiative campaign -14.357614042054731 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, drive, $x) -> (the Mormon Church, drove, the initiative campaign) -> the initiative campaign (15528ms) Where is the capital of the Mormon Church? the cause -14.39071311484786 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, engage in, $x) -> (the Mormon Church, is very anxiously engaged in, the cause) -> the cause (15528ms) Where is the capital of the Mormon Church? the document -14.404968389130707 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, buy, $x) -> (the Mormon Church, decided to buy, the document) -> the document (17572ms) Where is the capital of the Mormon Church? the state liquor laws -14.422061728011727 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, lose, $x) -> (the Mormon Church, has lost over, the state liquor laws) -> the state liquor laws (17572ms) Where is the capital of the Mormon Church? the patent -14.4517365114657 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, own, $x) -> (The mormon church, owns, the patent) -> the patent (6545ms) Where is the capital of the Mormon Church? an 1812 book -14.45181300907947 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, be base on, $x) -> (the Mormon Church, was based largely on, an 1812 book) -> an 1812 book (17572ms) Where is the capital of the Mormon Church? the truth -14.488109568616661 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, choose, $x) -> (the mormon church, has chosen to deliberately ignore, the truth) -> the truth (17572ms) Where is the capital of the Mormon Church? a judge -14.491297966709729 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: ($x, throw, the mormon church) -> (a judge, threw out, the claims against the Mormon church) -> a judge (17572ms) Where is the capital of the Mormon Church? the prospect -14.505180579752038 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, face, $x) -> (The Mormon church, faced, the prospect) -> the prospect (17572ms) Where is the capital of the Mormon Church? the middle -14.57825692188115 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, go into, $x) -> (the Mormon Church, went right into, the middle) -> the middle (17572ms) Where is the capital of the Mormon Church? the challenges -14.590807424164758 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, face, $x) -> (the Mormon church, will have to face, the challenges) -> the challenges (17572ms) Where is the capital of the Mormon Church? the authenticity -14.633423134703497 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, fall, $x) -> (the mormon church, fell on, the authenticity) -> the authenticity (17612ms) Where is the capital of the Mormon Church? a 43 year old man -14.636392530256831 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, go to, $x) -> (the Mormon church, went to, a 43 year old man) -> a 43 year old man (15528ms) Where is the capital of the Mormon Church? the eighteen hundreds -14.693686000642904 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, go to, $x) -> (the Mormon Church, only go back to, the eighteen hundreds) -> the eighteen hundreds (15528ms) Where is the capital of the Mormon Church? the right wing talk radio station -14.761718896699971 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, own, $x) -> (the Mormon Church, owns, the right wing talk radio station) -> the right wing talk radio station (6785ms) Where is the capital of the Mormon Church? land -14.866324183607546 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, own, $x) -> (the Mormon Church, owns, land) -> land (6784ms) Where is the capital of the Mormon Church? the house of Peter Whitmer -14.870121849241464 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> what be the capital of the mormon church ? -> $x: ($x, be the capital of, the mormon church) -> $x: (the mormon church, be organize at, $x) -> (The Mormon church, was organized at, the house of Peter Whitmer) -> the house of Peter Whitmer (13552ms) Where is the capital of the Mormon Church? August 27 , 1967 -15.270294727381174 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: ($x, refer to, the mormon church) -> (August 27 , 1967, referred to, the Mormon Church) -> August 27 , 1967 (17612ms) Where is the capital of the Mormon Church? 1890 -15.810228050354322 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, end, $x) -> (the mainstream Mormon Church, ended the practice in, 1890) -> 1890 (17612ms) Where is the capital of the Mormon Church? 1830 -15.954651730953218 Where is the capital of the Mormon Church? -> where be the capital of [ the mormon church ] ? -> which side be the mormon church ? -> $x: (the mormon church, side, $x) -> $x: (the mormon church, begin, $x) -> (The Mormon Church, began in, 1830) -> 1830 (17612ms) What was Sinatra's first recording? Reprise Records -2.8805761915202064 What was Sinatra's first recording? -> $x: (Sinatra, first recording, $x) -> (Frank Sinatra, recorded his first session with, Reprise Records) -> Reprise Records (8370ms) What was Sinatra's first recording? karaoke bars -10.603542279065778 What was Sinatra's first recording? -> what be [ sinatra s ] first record ? -> what do sinatra s sing ? -> $x: (sinatra s, sing, $x) -> (Frank Sinatra?s ?My Way ?, is sung in, karaoke bars) -> karaoke bars (18765ms) When was Limbaugh born? 1951 1.8221124191757676 When was Limbaugh born? -> $x: (Limbaugh, was born in, $x) -> (Rush Limbaugh, was born in, 1951) -> 1951 (6050ms) When was Limbaugh born? Cape Girardeau -2.125580658722159 When was Limbaugh born? -> $x: (Limbaugh, was born in, $x) -> (Limbaugh, was born in, Cape Girardeau) -> Cape Girardeau (6050ms) When was Limbaugh born? Jan . 12 -2.7133913812030306 When was Limbaugh born? -> $x: (Limbaugh, was born on, $x) -> (Limbaugh and Stern, were both born on, Jan . 12) -> Jan . 12 (6462ms) When was Limbaugh born? Missouri -2.829375886007769 When was Limbaugh born? -> $x: (Limbaugh, was born in, $x) -> (Limbaugh, was born in, Missouri) -> Missouri (6469ms) When was Limbaugh born? June 5 , 2010 -3.5050125716601443 When was Limbaugh born? -> $x: (Limbaugh, was born on, $x) -> $x: (Limbaugh, marry on, $x) -> (Rush Limbaugh, were married on, June 5 , 2010) -> June 5 , 2010 (9891ms) When was Limbaugh born? a winner -5.773610463897372 When was Limbaugh born? -> $x: (Limbaugh, was born on, $x) -> $x: (Limbaugh, be to come to, $x) -> (Limbaugh, is going to come out, a winner) -> a winner (9891ms) When was Limbaugh born? advertisers -6.293380059418315 When was Limbaugh born? -> $x: (Limbaugh, was born on, $x) -> $x: (Limbaugh, have remain on, $x) -> (Limbaugh, has remained publicly neutral on whether, advertisers) -> advertisers (8853ms) When was Limbaugh born? time -6.498421553408432 When was Limbaugh born? -> $x: (Limbaugh, was born on, $x) -> $x: (Limbaugh, spend a good deal of, $x) -> (Limbaugh, had spent a good deal of, time) -> time (8800ms) When was Limbaugh born? the state -6.516241401161423 When was Limbaugh born? -> $x: (Limbaugh, was born in, $x) -> $x: (Limbaugh, be both from, $x) -> (Limbaugh, are both from, the state) -> the state (6963ms) When was Limbaugh born? a regular basis -6.729294902754759 When was Limbaugh born? -> $x: (Limbaugh, was born on, $x) -> $x: (Limbaugh, have make on, $x) -> (Limbaugh, has been making this argument on, a regular basis) -> a regular basis (8956ms) When was Limbaugh born? the NYTimes -6.835948359437222 When was Limbaugh born? -> $x: (Limbaugh, was born on, $x) -> $x: (Limbaugh, have do on, $x) -> (Rush Limbaugh, has been doing a good job on, the NYTimes) -> the NYTimes (10022ms) When was Limbaugh born? Hawaii -7.015648738370155 When was Limbaugh born? -> $x: (Limbaugh, was born in, $x) -> $x: (Limbaugh, vacation in, $x) -> (Limbaugh, is vacationing in, Hawaii) -> Hawaii (6963ms) When was Limbaugh born? women -7.195551149789873 When was Limbaugh born? -> $x: (Limbaugh, was born on, $x) -> $x: (limbaugh, bear on, $x) -> $x: (limbaugh, there be on, $x) -> (Rush Limbaugh, is there a conservative "war on, women) -> women (12663ms) When was Limbaugh born? Stoltenberg -7.351417782153311 When was Limbaugh born? -> $x: (Limbaugh, was born on, $x) -> $x: (Limbaugh, have do on, $x) -> (Limbaugh, does have the advantage on, Stoltenberg) -> Stoltenberg (10023ms) When was Limbaugh born? Washington -7.981944927301687 When was Limbaugh born? -> $x: (Limbaugh, was born in, $x) -> $x: (limbaugh, bear in, $x) -> $x: (limbaugh, to travel to, $x) -> (Limbaugh, traveled to, Washington) -> Washington (11116ms) When was Limbaugh born? the unholy timeslot -8.04801977825185 When was Limbaugh born? -> $x: (Limbaugh, was born in, $x) -> $x: (Limbaugh, come here in, $x) -> (Rush Limbaugh, comes on here in, the unholy timeslot) -> the unholy timeslot (6515ms) When was Limbaugh born? the bigotry gutter -8.128710254366554 When was Limbaugh born? -> $x: (Limbaugh, was born in, $x) -> $x: (Limbaugh, have reside in, $x) -> (Rush Limbaugh, has resided in, the bigotry gutter) -> the bigotry gutter (6630ms) When was Limbaugh born? the air -8.859235289450542 When was Limbaugh born? -> $x: (Limbaugh, was born on, $x) -> $x: (Limbaugh, have make on, $x) -> (comments Limbaugh, has made on, the air) -> the air (8956ms) When was Limbaugh born? the radio -9.642284006579402 When was Limbaugh born? -> $x: (Limbaugh, was born on, $x) -> $x: (limbaugh, bear on, $x) -> $x: (limbaugh, declare on, $x) -> (Rush Limbaugh, declared on, the radio) -> the radio (12587ms) When was Limbaugh born? the question -9.862713288080734 When was Limbaugh born? -> $x: (Limbaugh, was born on, $x) -> $x: (limbaugh, bear on, $x) -> $x: (limbaugh, dwell on, $x) -> (Limbaugh, dwells on, the question) -> the question (12905ms) When was Limbaugh born? the far -9.94612607537078 When was Limbaugh born? -> $x: (Limbaugh, was born on, $x) -> $x: (limbaugh, bear on, $x) -> $x: (limbaugh, to wander, $x) -> (Rush Limbaugh, has wandered off to, the far) -> the far (12905ms) Who is Warren Moon's agent? African American -9.028415432736116 Who is Warren Moon's agent? -> who be [ warren moon s ] agent ? -> what be warren moon s ethnicity ? -> $x: (warren moon, ethnicity, $x) -> (Warren Moon, Ethnicity, African American) -> African American (13515ms) Who is Warren Moon's agent? 1982-05-27 -10.580879156368646 Who is Warren Moon's agent? -> who be [ warren moon s ] agent ? -> who be warren moon s date ? -> $x: (warren moon, date, $x) -> (Warren Moon, Date of birth, 1982-05-27) -> 1982-05-27 (13031ms) Who is Warren Moon's agent? 1956-11-18 -10.580879156368646 Who is Warren Moon's agent? -> who be [ warren moon s ] agent ? -> who be warren moon s date ? -> $x: (warren moon, date, $x) -> (Warren Moon, Date of birth, 1956-11-18) -> 1956-11-18 (13030ms) Who is Warren Moon's agent? 2001-03-25 -10.580879156368646 Who is Warren Moon's agent? -> who be [ warren moon s ] agent ? -> who be warren moon s date ? -> $x: (warren moon, date, $x) -> (Warren Moon, Original air date, 2001-03-25) -> 2001-03-25 (13031ms) Who is Warren Moon's agent? 2009-08-17 -10.65235024592646 Who is Warren Moon's agent? -> who be [ warren moon s ] agent ? -> who be warren moon s date ? -> $x: (warren moon, date, $x) -> (Dylan McDermott, Warren Moon, Original air date, 2009-08-17) -> 2009-08-17 (13030ms) Who is Warren Moon's agent? 2008-02-14 -10.703401024182043 Who is Warren Moon's agent? -> who be [ warren moon s ] agent ? -> who be warren moon s date ? -> $x: (warren moon, date, $x) -> (Outgun Hall of Famer Warren Moon, Original air date, 2008-02-14) -> 2008-02-14 (13030ms) Who is Warren Moon's agent? 1999 -10.723821335484274 Who is Warren Moon's agent? -> who be [ warren moon s ] agent ? -> who be warren moon s date ? -> $x: (warren moon, date, $x) -> (Warren Moon (NFL Quarterback Club in My Pocket), Publication date, 1999) -> 1999 (13030ms) Who invented the hula hoop? genes -0.7380484888459725 Who invented the hula hoop? -> $x: ($x, invented, the hula hoop) -> (genes, invent, the hula hoop) -> genes (9282ms) Who invented the hula hoop? Total creativity->copying->theft One -1.1501941326739284 Who invented the hula hoop? -> $x: ($x, invented, the hula hoop) -> (Total creativity->copying->theft One, can invent, the hula hoop) -> Total creativity->copying->theft One (9282ms) Who invented the hula hoop? Robbins -2.0257284372184152 Who invented the hula hoop? -> $x: ($x, invented, the hula hoop) -> (Robbins, invents, the hula hoop) -> Robbins (9281ms) Who invented the hula hoop? Somebody -2.6534156839566543 Who invented the hula hoop? -> $x: ($x, invented, the hula hoop) -> (Somebody, had to invent, the hula hoop) -> Somebody (9281ms) Who invented the hula hoop? Wham-O -3.814110818789155 Who invented the hula hoop? -> $x: ($x, invented, the hula hoop) -> $x: ($x, popularize, the hula hoop) -> (Wham-O, popularized, the hula hoop) -> Wham-O (17896ms) Who invented the hula hoop? Wham-O co-founder Arthur -4.078828801350712 Who invented the hula hoop? -> $x: ($x, invented, the hula hoop) -> $x: (the hula hoop, invent by, $x) -> (the hula hoop, was invented by, Wham-O co-founder Arthur) -> Wham-O co-founder Arthur (17118ms) Who invented the hula hoop? HDPE -4.445156666905992 Who invented the hula hoop? -> $x: ($x, invented, the hula hoop) -> $x: ($x, first introduce, the hula hoop) -> (HDPE, was first introduced in, the hula hoop) -> HDPE (17561ms) Who invented the hula hoop? Wham-O Inc. -4.5158321808817625 Who invented the hula hoop? -> $x: ($x, invented, the hula hoop) -> $x: ($x, popularize, the hula hoop) -> (Wham-O Inc., popularized, the Hula Hoop) -> Wham-O Inc. (17896ms) Who invented the hula hoop? the toy company -6.4095405253940365 Who invented the hula hoop? -> $x: ($x, invented, the hula hoop) -> $x: ($x, popularize, the hula hoop) -> (the toy company, popularized, the Hula Hoop) -> the toy company (17897ms) How many layers of skin do we have? The tadpole tail fin -14.016756385185115 How many layers of skin do we have? -> how many [ layer of skin ] do we have ? -> what be the simple layer of skin ? -> $x: ($x, be the simple layer of, skin) -> $x: ($x, simple layer of, skin) -> (The tadpole tail fin, is a simple double layer of, skin) -> The tadpole tail fin (10451ms) When was the U.S. capitol built? 1950 0.6758603655490334 When was the U.S. capitol built? -> $x: (the U.S. capitol, was built in, $x) -> $x: (us capitol, build in, $x) -> (the US Capitol, was built in, 1950) -> 1950 (13773ms) When was the U.S. capitol built? 1932 0.21676149397271027 When was the U.S. capitol built? -> $x: (the U.S. capitol, was built in, $x) -> $x: (the U.S. capitol, open in, $x) -> (the U.S. Capitol, opened in, 1932) -> 1932 (16220ms) When was the U.S. capitol built? 1793 -1.0992461795770172 When was the U.S. capitol built? -> $x: (the U.S. capitol built, be in, $x) -> $x: (us capitol build, in, $x) -> (The U.S Capitol Building, started construction in, 1793) -> 1793 (13772ms) When was the U.S. capitol built? protest -1.5594977389714955 When was the U.S. capitol built? -> $x: (the U.S. capitol built, be in, $x) -> (the U.S. Capitol building, was claimed to be in, protest) -> protest (9522ms) When was the U.S. capitol built? Capitol Hill -2.1913621440925573 When was the U.S. capitol built? -> $x: (the U.S. capitol built, be on, $x) -> (The U.S. Capitol building, is seen on, Capitol Hill) -> Capitol Hill (9522ms) When was the U.S. capitol built? the 1850s -2.377117314976955 When was the U.S. capitol built? -> $x: (the U.S. capitol, was built in, $x) -> $x: (the U.S. capitol, be expand in, $x) -> (the U.S. Capitol, was expanded in, the 1850s) -> the 1850s (17804ms) When was the U.S. capitol built? a Masonic ceremony -2.4516047804782466 When was the U.S. capitol built? -> $x: (the U.S. capitol built, be in, $x) -> (the U.S. Capitol Building, was laid in, a Masonic ceremony) -> a Masonic ceremony (9522ms) When was the U.S. capitol built? the mid-19th century -5.167594349659538 When was the U.S. capitol built? -> $x: (the U.S. capitol, was built in, $x) -> $x: (the U.S. capitol, complete in, $x) -> (the U.S. Capitol Building, completed in, the mid-19th century) -> the mid-19th century (17620ms) When was the U.S. capitol built? a slight hill -5.7538188842353435 When was the U.S. capitol built? -> $x: (the U.S. capitol built, be on, $x) -> $x: (us capitol build, on, $x) -> (The US Capitol Building, sits on, a slight hill) -> a slight hill (13963ms) When was the U.S. capitol built? the background -8.056524924694799 When was the U.S. capitol built? -> $x: (the U.S. capitol, was built in, $x) -> $x: (us capitol, build in, $x) -> (the US Capitol, building in, the background) -> the background (13963ms) What was Bing Crosby's nickname? Bing -2.0992828071692493 What was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> (Bing Crosby, Nickname, Bing) -> Bing (9366ms) What was Bing Crosby's nickname? Der Bingle -2.1241449579157416 What was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> (Bing Crosby, Nickname, Der Bingle) -> Der Bingle (9366ms) What was Bing Crosby's nickname? The old groaner -3.480073999987484 What was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> (Bing Crosby, Nickname, The old groaner) -> The old groaner (9366ms) What was Bing Crosby's nickname? Holiday Inn -4.483102327683232 What was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: (Bing Crosby, call, $x) -> (Bing Crosby, called, Holiday Inn) -> Holiday Inn (18796ms) What was Bing Crosby's nickname? a heartthrob -4.681851374972904 What was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: (Bing Crosby, be consider, $x) -> (Bing Crosby, was considered, a heartthrob) -> a heartthrob (18979ms) What was Bing Crosby's nickname? Giuseppe Gallo -4.874675453879056 What was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: (Bing Crosby, go, $x) -> (The Bing Crosby Parenting Award, goes to, Giuseppe Gallo) -> Giuseppe Gallo (15006ms) What was Bing Crosby's nickname? movie history -5.1989149005548505 What was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: (Bing Crosby, be name, $x) -> (Bing Crosby, are iconic names in, movie history) -> movie history (19276ms) What was Bing Crosby's nickname? an exclusive playground -5.3475147631058215 What was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: (Bing Crosby, be know as, $x) -> (Bing Crosby, is known as, an exclusive playground) -> an exclusive playground (17946ms) What was Bing Crosby's nickname? Rambo -5.403263738817786 What was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: (Bing Crosby, go, $x) -> (User-Agent,Accept-Encoding Bing Crosby, goes, Rambo) -> Rambo (17394ms) What was Bing Crosby's nickname? Hope -5.477035977310048 What was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: ($x, be with, Bing Crosby) -> (Hope, was being teamed up with, singer-actor Bing Crosby) -> Hope (18619ms) What was Bing Crosby's nickname? the Sun -5.621907749806379 What was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: (Bing Crosby, control, $x) -> (Bing Crosby?s White Christmas, controls, the Sun) -> the Sun (17394ms) What was Bing Crosby's nickname? a friend -5.631202784696057 What was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: (Bing Crosby, call, $x) -> (Bing Crosby, called, a friend) -> a friend (18796ms) What was Bing Crosby's nickname? Sinatra -5.658454419618446 What was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: ($x, saw, Bing Crosby) -> (Sinatra, had come to see, Bing Crosby) -> Sinatra (17946ms) What was Bing Crosby's nickname? a ? White Christmas ? -5.6650759274428815 What was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: (Bing Crosby, call, $x) -> (Bing Crosby Lounge, called, a ? White Christmas ?) -> a ? White Christmas ? (18796ms) What was Bing Crosby's nickname? ?Dear Old Donegal -5.666298089749197 What was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: (Bing Crosby, call, $x) -> (a song Bing Crosby, recorded called, ?Dear Old Donegal) -> ?Dear Old Donegal (18796ms) What was Bing Crosby's nickname? Grace -5.693603765355396 What was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: ($x, be with, Bing Crosby) -> (Grace, had been having an affair with, co-star Bing Crosby) -> Grace (18619ms) What was Bing Crosby's nickname? the finest vocalists -6.8603106707053 What was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: (Bing Crosby, be consider, $x) -> (Bing Crosby, is also considered one of, the finest vocalists) -> the finest vocalists (18986ms) What was Bing Crosby's nickname? the host -7.032008639172576 What was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: (Bing Crosby, be name, $x) -> (crooner Bing Crosby, was named, the host) -> the host (19288ms) What was Bing Crosby's nickname? figure -7.06188876060854 What was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: (Bing Crosby, go, $x) -> (Bing Crosby, ? go, figure) -> figure (17394ms) What was Bing Crosby's nickname? the series -7.193393779846029 What was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: ($x, be with, Bing Crosby) -> (the series, will be White Christmas with, Bing Crosby) -> the series (18619ms) What was Bing Crosby's nickname? the same -7.222462783782453 What was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: ($x, be with, Bing Crosby) -> (the same, is done scored with, Bing Crosby ?s Thanks) -> the same (18619ms) What was Bing Crosby's nickname? the top ten -7.388585712691764 What was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: (Bing Crosby, shot, $x) -> (Bing Crosby, shot to, the top ten) -> the top ten (18979ms) What was Bing Crosby's nickname? crooning -7.643706178711695 What was Bing Crosby's nickname? -> $x: (Bing Crosby, nickname, $x) -> $x: (Bing Crosby, call, $x) -> (Bing Crosby, is called, crooning) -> crooning (18796ms) When was U.S Naval Academy founded? 1845 2.4972143328766223 When was U.S Naval Academy founded? -> $x: (U.S Naval Academy, was founded in, $x) -> (The U.S. Naval Academy, was founded in, 1845) -> 1845 (9734ms) When was U.S Naval Academy founded? Annapolis -4.674961770945528 When was U.S Naval Academy founded? -> $x: (U.S Naval Academy, was founded in, $x) -> $x: (U.S Naval Academy, be establish in, $x) -> (The U.S. Naval Academy, was established in, Annapolis) -> Annapolis (11393ms) Where did they honeymoon? Hawaii -4.736403591039556 Where did they honeymoon? -> $x: (they honeymoon, did in, $x) -> $x: (they honeymoon, in, $x) -> (Mosman.The honeymoonThey, spent two weeks in, Hawaii) -> Hawaii (9638ms) Where did they honeymoon? Honolulu -5.485139859096503 Where did they honeymoon? -> $x: (they honeymoon, did in, $x) -> $x: (they honeymoon, in, $x) -> (PM Photography.The honeymoonThey, spent four weeks in, Honolulu) -> Honolulu (9636ms) Where did they honeymoon? the USA -5.71922323677389 Where did they honeymoon? -> $x: (they honeymoon, did in, $x) -> $x: (they honeymoon, in, $x) -> (Nadean.The honeymoonThey, spent three weeks in, the USA) -> the USA (9636ms) Where did they honeymoon? a standstill -15.29161913768025 Where did they honeymoon? -> where [ do they honeymoon ] ? -> when do they honeymoon be ? -> $x: (they honeymoon, do be on, $x) -> $x: (they honeymoon, on, $x) -> (they?re honeymoon, has been put on, a standstill) -> a standstill (19537ms) What is the name of the airport in Amsterdam? schiphol -4.737865834582017 What is the name of the airport in Amsterdam? -> What is the airport in Amsterdam? -> $x: ($x, is the airport in, Amsterdam) -> (schiphol, is an airport in the city, AMSTERDAM) -> schiphol (5541ms) What is the name of the airport in Amsterdam? Schiphol Int -4.90844236190455 What is the name of the airport in Amsterdam? -> What is the airport in Amsterdam? -> $x: ($x, is the airport in, Amsterdam) -> $x: ($x, airport in, amsterdam) -> (Schiphol Int, 'l Airport in, Amsterdam) -> Schiphol Int (7826ms) What is the name of the airport in Amsterdam? Anas marecula -7.878855122365833 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam Duck, Scientific name, Anas marecula) -> Anas marecula (10042ms) What is the name of the airport in Amsterdam? 11945 Amsterdam -8.260832502883892 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, Things named after this, 11945 Amsterdam) -> 11945 Amsterdam (10041ms) What is the name of the airport in Amsterdam? Maksym Kozlenko -8.431785863510033 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam Centraal Station, Author name, Maksym Kozlenko) -> Maksym Kozlenko (10042ms) What is the name of the airport in Amsterdam? Amsterdam -8.50001765358088 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (11945 Amsterdam, Named after, Amsterdam) -> Amsterdam (10041ms) What is the name of the airport in Amsterdam? Diomedea amsterdamensis -8.69571028471534 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam Albatross, Scientific name, Diomedea amsterdamensis) -> Diomedea amsterdamensis (10121ms) What is the name of the airport in Amsterdam? Anne Frank -9.379750794051954 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, named, Anne Frank) -> Anne Frank (10121ms) What is the name of the airport in Amsterdam? the Elm City -9.517299666343291 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, was named, the Elm City) -> the Elm City (10121ms) What is the name of the airport in Amsterdam? Han van Meegeren -9.654580110386824 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, named, Han van Meegeren) -> Han van Meegeren (10121ms) What is the name of the airport in Amsterdam? the airport -9.759591335798287 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam airport ? -> $x: (amsterdam airport, name, $x) -> (Amsterdam Airport Schiphol, is the official name of, the airport) -> the airport (8401ms) What is the name of the airport in Amsterdam? New York -9.775346958661288 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (New Amsterdam, was named, New York) -> New York (10121ms) What is the name of the airport in Amsterdam? Sweelinck -9.791135372453072 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (The Amsterdam Conservatory, was named after, Sweelinck) -> Sweelinck (10121ms) What is the name of the airport in Amsterdam? New York City -9.844122221836125 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Nieuw Amsterdam, was the original Dutch name for, New York City) -> New York City (10139ms) What is the name of the airport in Amsterdam? two American Presidents -9.946653199678092 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (New Amsterdam, became the name of, two American Presidents) -> two American Presidents (10139ms) What is the name of the airport in Amsterdam? a character -9.964716439289239 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, is named after, a character) -> a character (10139ms) What is the name of the airport in Amsterdam? Bram Bos -10.062671879379867 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, named, Bram Bos) -> Bram Bos (10139ms) What is the name of the airport in Amsterdam? Yub-Yum -10.069273669501232 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, named, Yub-Yum) -> Yub-Yum (10175ms) What is the name of the airport in Amsterdam? ?Best International Venue -10.082038910374933 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam RAI, was named, ?Best International Venue) -> ?Best International Venue (10174ms) What is the name of the airport in Amsterdam? the ?Venice -10.113782327906618 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, will once again take its name as, the ?Venice) -> the ?Venice (10174ms) What is the name of the airport in Amsterdam? Expat Employer -10.122319237168718 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Euronext Amsterdam Optiver, named as, Expat Employer) -> Expat Employer (10174ms) What is the name of the airport in Amsterdam? ACCESS. -10.158210884528764 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, named, ACCESS.) -> ACCESS. (10174ms) What is the name of the airport in Amsterdam? Jonathan Andrew -10.162042175247365 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, named, Jonathan Andrew) -> Jonathan Andrew (10174ms) What is the name of the airport in Amsterdam? Bas Rutten -10.173847765084407 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, named, Bas Rutten) -> Bas Rutten (10395ms) What is the name of the airport in Amsterdam? a sandwich -10.188101234119033 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, even named, a sandwich) -> a sandwich (10395ms) What is the name of the airport in Amsterdam? 2010?s best classical albums -10.217435204136121 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (New Amsterdam, was named one of, 2010?s best classical albums) -> 2010?s best classical albums (10395ms) What is the name of the airport in Amsterdam? Vreeland -10.300861345434384 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, named, Vreeland) -> Vreeland (10395ms) What is the name of the airport in Amsterdam? a distinguished alumnus -10.387907969803349 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, was named, a distinguished alumnus) -> a distinguished alumnus (10397ms) What is the name of the airport in Amsterdam? a dam -10.523486764544032 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, named after, a dam) -> a dam (10395ms) What is the name of the airport in Amsterdam? the Trendiest -10.535702666100942 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, has been named, the Trendiest) -> the Trendiest (10426ms) What is the name of the airport in Amsterdam? the question -10.53861086015747 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> (the question, is the modern-day name of, New Amsterdam) -> the question (10426ms) What is the name of the airport in Amsterdam? Buffalo -10.539333922565561 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (1798-1800 New Amsterdam, was the name given to, Buffalo) -> Buffalo (10426ms) What is the name of the airport in Amsterdam? Western Europe -10.585001349390556 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: ($x, be the size of, amsterdam) -> $x: (amsterdam, be the only place in, $x) -> (Amsterdam, will be the only place in, Western Europe) -> Western Europe (13231ms) What is the name of the airport in Amsterdam? Sunday -10.585957526853361 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Nieuw Amsterdam, is named on, Sunday) -> Sunday (10426ms) What is the name of the airport in Amsterdam? a similar chain -10.626283740323744 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam?s Pyongyang, bears the same name as, a similar chain) -> a similar chain (10426ms) What is the name of the airport in Amsterdam? Amstammelledam -10.627279874116915 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, was originally named, Amstammelledam) -> Amstammelledam (10426ms) What is the name of the airport in Amsterdam? the English -10.823829626725072 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (New Amsterdam, had been named by, the English) -> the English (10478ms) What is the name of the airport in Amsterdam? the service provider -10.94927608094328 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, is both the name of, the service provider) -> the service provider (10478ms) What is the name of the airport in Amsterdam? ITBholland -11.021250073313865 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> (ITBholland, is a trade name of, I.T.B. Amsterdam BV) -> ITBholland (10478ms) What is the name of the airport in Amsterdam? Amstellerdam -11.121182603688375 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, derives its name from, Amstellerdam) -> Amstellerdam (10478ms) What is the name of the airport in Amsterdam? The English -11.197526367742446 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> (The English, changed the name of, New Amsterdam) -> The English (10616ms) What is the name of the airport in Amsterdam? the Bolashak complex -11.259062835492575 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: ($x, be the size of, amsterdam) -> $x: ($x, size of, amsterdam) -> (the Bolashak complex, covers an area the size of, Amsterdam) -> the Bolashak complex (10616ms) What is the name of the airport in Amsterdam? Roode Hoek -11.278271577947395 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (New Amsterdam, named, Roode Hoek) -> Roode Hoek (10616ms) What is the name of the airport in Amsterdam? the dam -11.410603730280437 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, was named after, the dam) -> the dam (10616ms) What is the name of the airport in Amsterdam? the UvA , UHA , HvA , EHvA and HES -11.542398971825886 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: ($x, be the size of, amsterdam) -> $x: ($x, be resident in, amsterdam) -> (the UvA , UHA , HvA , EHvA and HES, are resident in, Amsterdam) -> the UvA , UHA , HvA , EHvA and HES (13146ms) What is the name of the airport in Amsterdam? 45 overall -11.648928946795404 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, currently be, $x) -> (Amsterdam, is currently ranked, 45 overall) -> 45 overall (12151ms) What is the name of the airport in Amsterdam? the Five Points -11.66685607971483 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has returned to, the Five Points) -> the Five Points (11516ms) What is the name of the airport in Amsterdam? the avenue -11.740696152512962 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (the Amsterdam News, was named after, the avenue) -> the avenue (10652ms) What is the name of the airport in Amsterdam? the Startup hotspots -11.751990708132396 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, currently be, $x) -> (Amsterdam, is currently one of, the Startup hotspots) -> the Startup hotspots (12151ms) What is the name of the airport in Amsterdam? the honor -11.766273306231277 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (Amsterdam, received its name in, the honor) -> the honor (10652ms) What is the name of the airport in Amsterdam? Europe -11.778324536511795 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, currently be, $x) -> (Amsterdam, is currently ranked 4th in, Europe) -> Europe (12151ms) What is the name of the airport in Amsterdam? a larger one -11.855716032002377 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, sometimes claims to have, a larger one) -> a larger one (11515ms) What is the name of the airport in Amsterdam? sea -11.913554081598214 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, had floated out to, sea) -> sea (11516ms) What is the name of the airport in Amsterdam? Everyone Electric -11.940506110456447 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, currently be, $x) -> (Amsterdam, is currently exhibiting, Everyone Electric) -> Everyone Electric (12151ms) What is the name of the airport in Amsterdam? the Cape Town Waterfront -11.96679291596274 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, currently be, $x) -> (The Stad Amsterdam, is currently at, the Cape Town Waterfront) -> the Cape Town Waterfront (12151ms) What is the name of the airport in Amsterdam? Hebrew plays -12.005321463418914 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: ($x, be the size of, amsterdam) -> $x: ($x, be resident in, amsterdam) -> (Hebrew plays, was also resident in, Amsterdam) -> Hebrew plays (13146ms) What is the name of the airport in Amsterdam? Paso Doble -12.018919551832228 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, are to be had at, Paso Doble) -> Paso Doble (11516ms) What is the name of the airport in Amsterdam? The City boss -12.107537853517915 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam airport ? -> $x: ($x, be the name of, amsterdam airport) -> $x: ($x, name of, amsterdam airport) -> $x: ($x, in, amsterdam airport) -> (The City boss, was spotted in, Amsterdam airport) -> The City boss (15080ms) What is the name of the airport in Amsterdam? the Atlantic Ocean -12.109952620366435 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: ($x, be the size of, amsterdam) -> $x: (amsterdam, be as close to, $x) -> (Amsterdam, is as close to, the Atlantic Ocean) -> the Atlantic Ocean (13146ms) What is the name of the airport in Amsterdam? one PhD student -12.159444290835367 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, currently be, $x) -> (Amsterdam, is currently looking for, one PhD student) -> one PhD student (12151ms) What is the name of the airport in Amsterdam? Amsterdam Stock Exchange -12.165159542333138 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: (amsterdam, exchange, $x) -> (Amsterdam Stock Exchange:LGLCC, Stock exchange, Amsterdam Stock Exchange) -> Amsterdam Stock Exchange (18788ms) What is the name of the airport in Amsterdam? the World Fashion Center -12.180970887533846 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: ($x, be the size of, amsterdam) -> $x: (amsterdam, be opposite, $x) -> (Amsterdam, is situated opposite, the World Fashion Center) -> the World Fashion Center (13621ms) What is the name of the airport in Amsterdam? the Spui Tram Stop -12.212969540722757 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: ($x, be the size of, amsterdam) -> $x: (amsterdam, be opposite, $x) -> (Amsterdam Ajax, is situated opposite, the Spui Tram Stop) -> the Spui Tram Stop (13621ms) What is the name of the airport in Amsterdam? a lot -12.246196928659907 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, be beautiful with, $x) -> (Amsterdam, is really beautiful city with, a lot) -> a lot (10808ms) What is the name of the airport in Amsterdam? six days -12.327773608981586 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, be leave be, $x) -> (Amsterdam, I?ll be leaving after, six days) -> six days (11743ms) What is the name of the airport in Amsterdam? the Anne Frank Museum -12.36272817919671 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, have the opportunity to visit, the Anne Frank Museum) -> the Anne Frank Museum (11516ms) What is the name of the airport in Amsterdam? a mainline container port -12.431545729912445 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has virtually ceased to be, a mainline container port) -> a mainline container port (11515ms) What is the name of the airport in Amsterdam? a lasting impression -12.446676909938905 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, be leave be, $x) -> (Amsterdam, is guaranteed to leave, a lasting impression) -> a lasting impression (11743ms) What is the name of the airport in Amsterdam? an elegant and luxury look -12.46779784667806 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, is said to have, an elegant and luxury look) -> an elegant and luxury look (11547ms) What is the name of the airport in Amsterdam? urban development programs -12.468593240689502 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, have begun to describe, urban development programs) -> urban development programs (11547ms) What is the name of the airport in Amsterdam? decoy Jews -12.483967925173864 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, now have to deploy ?, decoy Jews) -> decoy Jews (11547ms) What is the name of the airport in Amsterdam? urban centres -12.488824083881045 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, be pit against, $x) -> (Amsterdam, is pitted against, urban centres) -> urban centres (10860ms) What is the name of the airport in Amsterdam? fun -12.51377550210151 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, want to have, fun) -> fun (11547ms) What is the name of the airport in Amsterdam? further fundamental rights -12.536741004937914 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, have helped to, further fundamental rights) -> further fundamental rights (11547ms) What is the name of the airport in Amsterdam? less convenient locations -12.543814601551276 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, tend to have, less convenient locations) -> less convenient locations (11547ms) What is the name of the airport in Amsterdam? 160K -12.551375892298292 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: ($x, be as big as, amsterdam) -> (160K, was as big as, London or Amsterdam) -> 160K (10652ms) What is the name of the airport in Amsterdam? a drought -12.551600302721125 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, used to have, a drought) -> a drought (11584ms) What is the name of the airport in Amsterdam? an abundant water supply -12.5607884627525 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, is fortunate to have, an abundant water supply) -> an abundant water supply (11584ms) What is the name of the airport in Amsterdam? Paul McJones -12.563545755318456 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has granted permission to, Paul McJones) -> Paul McJones (11584ms) What is the name of the airport in Amsterdam? London -12.567330546954352 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: ($x, be the size of, amsterdam) -> $x: ($x, be bigger than, amsterdam) -> (London, is bigger than, Amsterdam) -> London (13230ms) What is the name of the airport in Amsterdam? a wonderful place -12.568889469917089 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has the potential to be, a wonderful place) -> a wonderful place (11584ms) What is the name of the airport in Amsterdam? research projects -12.593764960274651 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, had agreed to participate in, research projects) -> research projects (11584ms) What is the name of the airport in Amsterdam? a several numbers -12.599101061263546 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, be beautiful with, $x) -> (Amsterdam, is a beautiful city with, a several numbers) -> a several numbers (10807ms) What is the name of the airport in Amsterdam? the American city -12.638603240104102 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, go to have, $x) -> (2009 Amsterdam, has gone head to head with, the American city) -> the American city (10652ms) What is the name of the airport in Amsterdam? The RAI Elicium -12.651671737354794 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> who be the founder of amsterdam ? -> $x: ($x, be the founder of, amsterdam) -> $x: ($x, be the face of, amsterdam) -> (The RAI Elicium, is the new contemporary face of, Amsterdam) -> The RAI Elicium (16024ms) What is the name of the airport in Amsterdam? cheap vacation rentals tours -12.684555613857992 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> $x: (amsterdam, detailed, $x) -> (Amsterdam, get the details of, cheap vacation rentals tours) -> cheap vacation rentals tours (13776ms) What is the name of the airport in Amsterdam? Leiden -12.690541900123566 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: ($x, be the size of, amsterdam) -> $x: ($x, be smaller than, amsterdam) -> (Leiden, is a much smaller city than, Amsterdam) -> Leiden (13146ms) What is the name of the airport in Amsterdam? Amsterdam Treaty -12.693781004665789 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> $x: (amsterdam, detailed, $x) -> (Amsterdam, See details on, Amsterdam Treaty) -> Amsterdam Treaty (13776ms) What is the name of the airport in Amsterdam? a special player -12.73766749574634 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has a chance to be, a special player) -> a special player (11638ms) What is the name of the airport in Amsterdam? a canal stop -12.75635953691131 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: ($x, be the size of, amsterdam) -> $x: (amsterdam, be opposite, $x) -> (central amsterdam, is opposite, a canal stop) -> a canal stop (13621ms) What is the name of the airport in Amsterdam? Hotel Okura Amsterdam -12.756881929613149 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, in, amsterdam) -> (Hotel Okura Amsterdam, is a hotel in the city, AMSTERDAM) -> Hotel Okura Amsterdam (17345ms) What is the name of the airport in Amsterdam? security problems -12.765607826811241 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, were thought to have, security problems) -> security problems (11638ms) What is the name of the airport in Amsterdam? the Jewish traveler -12.768997194761578 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, also has much to offer, the Jewish traveler) -> the Jewish traveler (11638ms) What is the name of the airport in Amsterdam? an additional argument -12.771025132646935 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has literally proven to be, an additional argument) -> an additional argument (11638ms) What is the name of the airport in Amsterdam? Voorburg -12.776931971548521 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, had moved to, Voorburg) -> Voorburg (11638ms) What is the name of the airport in Amsterdam? Utrecht -12.776931971548521 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has more to offer than, Utrecht) -> Utrecht (11638ms) What is the name of the airport in Amsterdam? an end -12.792552984530987 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, had come to, an end) -> an end (11665ms) What is the name of the airport in Amsterdam? The Esplanade -12.796511813514433 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has been invited to perform at, The Esplanade) -> The Esplanade (11665ms) What is the name of the airport in Amsterdam? an extreme and -12.803163326748736 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has gone to, an extreme and) -> an extreme and (11665ms) What is the name of the airport in Amsterdam? LA -12.811726506732711 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, had moved to, LA) -> LA (11665ms) What is the name of the airport in Amsterdam? a bit -12.819330003505808 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, had to sit out, a bit) -> a bit (11665ms) What is the name of the airport in Amsterdam? the Rotterdam-born Kalf -12.82541528813593 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, be praise, amsterdam) -> (the Rotterdam-born Kalf, was praised by, an Amsterdam poet) -> the Rotterdam-born Kalf (14783ms) What is the name of the airport in Amsterdam? Gresham Memphis Amsterdam -12.827567622582416 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, in, amsterdam) -> (Gresham Memphis Amsterdam, is a hotel in the city, AMSTERDAM) -> Gresham Memphis Amsterdam (17345ms) What is the name of the airport in Amsterdam? a 27th position -12.862378245430172 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has to make do with, a 27th position) -> a 27th position (11665ms) What is the name of the airport in Amsterdam? a solid base -12.869924420504962 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has already proved to be, a solid base) -> a solid base (11743ms) What is the name of the airport in Amsterdam? Rijnsburg -12.876846352429808 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, had gone to, Rijnsburg) -> Rijnsburg (11743ms) What is the name of the airport in Amsterdam? Job Cohen -12.890906950542144 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> who be the founder of amsterdam ? -> $x: ($x, be the founder of, amsterdam) -> $x: ($x, be mayor of, amsterdam) -> (Job Cohen, is the mayor of, Amsterdam) -> Job Cohen (16405ms) What is the name of the airport in Amsterdam? zero emissions -12.904406853950384 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has to produce, zero emissions) -> zero emissions (11743ms) What is the name of the airport in Amsterdam? OraOxygen -12.90483337314437 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam airport ? -> $x: ($x, be the name of, amsterdam airport) -> $x: ($x, name of, amsterdam airport) -> $x: ($x, in, amsterdam airport) -> (OraOxygen, has locations in, Calgary and Amsterdam airports) -> OraOxygen (15080ms) What is the name of the airport in Amsterdam? a mixed blessing -12.961980753889176 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has found this to be, a mixed blessing) -> a mixed blessing (11744ms) What is the name of the airport in Amsterdam? St . Nicholas -12.964881846392505 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> who be the founder of amsterdam ? -> $x: ($x, be the founder of, amsterdam) -> $x: ($x, be patron of, amsterdam) -> (St . Nicholas, is patron saint of, Amsterdam and Russia) -> St . Nicholas (15797ms) What is the name of the airport in Amsterdam? The Butcher -12.968726902132978 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, seems to have fun with, The Butcher) -> The Butcher (11879ms) What is the name of the airport in Amsterdam? bikes and canals -12.980520238894723 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, be beautiful with, $x) -> (Amsterdam, is a really beautiful city with, bikes and canals) -> bikes and canals (10808ms) What is the name of the airport in Amsterdam? a single patient -13.001938865046803 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has yet to euthanize, a single patient) -> a single patient (11879ms) What is the name of the airport in Amsterdam? bicycle gridlock -13.005597620323476 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has started to suffer from, bicycle gridlock) -> bicycle gridlock (11879ms) What is the name of the airport in Amsterdam? 10,000 electric cars -13.014460256403696 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, plans to have, 10,000 electric cars) -> 10,000 electric cars (11879ms) What is the name of the airport in Amsterdam? A Jew -13.050721618878155 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> who be the founder of amsterdam ? -> $x: ($x, be the founder of, amsterdam) -> $x: ($x, be mayor of, amsterdam) -> (A Jew, can be the mayor of, Amsterdam) -> A Jew (16405ms) What is the name of the airport in Amsterdam? klm -13.059234897299673 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, in, amsterdam) -> (klm, is a company headquartered in the city, AMSTERDAM) -> klm (17345ms) What is the name of the airport in Amsterdam? The Trust -13.063926464559186 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> $x: (amsterdam, excerpt, $x) -> (Amsterdam, excerpted in, The Trust) -> The Trust (14112ms) What is the name of the airport in Amsterdam? Caf? -13.064312284860538 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has got to be, Caf?) -> Caf? (11879ms) What is the name of the airport in Amsterdam? a good time -13.065044573724832 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, just seemed keen to have, a good time) -> a good time (11879ms) What is the name of the airport in Amsterdam? a drinks party -13.090194360962307 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, have kindly offered to host, a drinks party) -> a drinks party (11979ms) What is the name of the airport in Amsterdam? Annemieke Kievit -13.101285698823652 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> who be the founder of amsterdam ? -> $x: ($x, be the founder of, amsterdam) -> $x: ($x, be manager of, amsterdam) -> (Annemieke Kievit, is general manager of, the Amsterdam office) -> Annemieke Kievit (15717ms) What is the name of the airport in Amsterdam? 330 -13.13294276251719 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has risen to over, 330) -> 330 (11979ms) What is the name of the airport in Amsterdam? every guest -13.146944072702572 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has something to offer to, every guest) -> every guest (11979ms) What is the name of the airport in Amsterdam? every tourist -13.172646442797564 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has something to offer to, every tourist) -> every tourist (11979ms) What is the name of the airport in Amsterdam? KLM Royal Dutch -13.174099148374733 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, in, amsterdam) -> (KLM Royal Dutch, is a company headquartered in the city, AMSTERDAM) -> KLM Royal Dutch (17345ms) What is the name of the airport in Amsterdam? the parking lot -13.177966838180367 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, currently be, $x) -> (New Amsterdam Market, is currently held in, the parking lot) -> the parking lot (12195ms) What is the name of the airport in Amsterdam? every visitor -13.193047561661517 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has something to offer to, every visitor) -> every visitor (11979ms) What is the name of the airport in Amsterdam? KLM Royal Dutch Airlines -13.221396192935051 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, in, amsterdam) -> (KLM Royal Dutch Airlines, is a company headquartered in the city, AMSTERDAM) -> KLM Royal Dutch Airlines (17345ms) What is the name of the airport in Amsterdam? El-Al -13.221396192935051 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, in, amsterdam) -> (El-Al, is a company that has an office in the city, AMSTERDAM) -> El-Al (17345ms) What is the name of the airport in Amsterdam? the best cities -13.257408069813076 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, currently be, $x) -> (Amsterdam, is currently one of, the best cities) -> the best cities (12195ms) What is the name of the airport in Amsterdam? the best European cities -13.258341876674086 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, currently be, $x) -> (Amsterdam, is currently one of, the best European cities) -> the best European cities (12195ms) What is the name of the airport in Amsterdam? Uncle Cline Gleed -13.26298243275653 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> who be the founder of amsterdam ? -> $x: ($x, be the founder of, amsterdam) -> $x: ($x, be mayor of, amsterdam) -> (Uncle Cline Gleed, was mayor of, Amsterdam) -> Uncle Cline Gleed (16405ms) What is the name of the airport in Amsterdam? more than 100 engineers -13.270877632966286 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has grown to, more than 100 engineers) -> more than 100 engineers (11979ms) What is the name of the airport in Amsterdam? heineken music hall -13.29193361440003 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, in, amsterdam) -> (heineken music hall, is a stadium or event venue located in the city, AMSTERDAM) -> heineken music hall (17345ms) What is the name of the airport in Amsterdam? A.J. d?Ailly -13.339030898193581 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> who be the founder of amsterdam ? -> $x: ($x, be the founder of, amsterdam) -> $x: ($x, be mayor of, amsterdam) -> (A.J. d?Ailly, had been mayor of, Amsterdam) -> A.J. d?Ailly (16405ms) What is the name of the airport in Amsterdam? tourists and locals -13.357327453937495 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has much to offer, tourists and locals) -> tourists and locals (12194ms) What is the name of the airport in Amsterdam? each hotel -13.36316065246596 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> $x: (amsterdam, detailed, $x) -> (the Amsterdam RAI, find detailed information about, each hotel) -> each hotel (13776ms) What is the name of the airport in Amsterdam? Ing -13.367151715978986 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, in, amsterdam) -> (Ing, is a company headquartered in the city, AMSTERDAM) -> Ing (17345ms) What is the name of the airport in Amsterdam? Northwest airlines -13.466648517436193 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, in, amsterdam) -> (Northwest airlines, is a company that has an office in the city, AMSTERDAM) -> Northwest airlines (17447ms) What is the name of the airport in Amsterdam? excellent elementary schools -13.489420356572833 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, to have, excellent elementary schools) -> excellent elementary schools (12195ms) What is the name of the airport in Amsterdam? Liza Gabriela Lansang -13.512146786390675 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> who be the founder of amsterdam ? -> $x: ($x, be the founder of, amsterdam) -> $x: ($x, be a student in, amsterdam) -> (Liza Gabriela Lansang, is a post-graduate student in, Amsterdam) -> Liza Gabriela Lansang (16024ms) What is the name of the airport in Amsterdam? construction -13.606323309016474 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, currently be, $x) -> (The Amsterdam site, is currently under, construction) -> construction (12195ms) What is the name of the airport in Amsterdam? 1000 kilocalories -13.613735182507384 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, had dropped to below, 1000 kilocalories) -> 1000 kilocalories (12234ms) What is the name of the airport in Amsterdam? the unique NAP exhibition -13.74138635710819 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, currently be, $x) -> (Amsterdam, is currently showcasing, the unique NAP exhibition) -> the unique NAP exhibition (12234ms) What is the name of the airport in Amsterdam? 1758 -13.774599049715476 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, had started to build in, 1758) -> 1758 (12234ms) What is the name of the airport in Amsterdam? Air Berlin -13.789158550270924 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, in, amsterdam) -> (Air Berlin, is a company that has an office in the city, AMSTERDAM) -> Air Berlin (17448ms) What is the name of the airport in Amsterdam? The city -13.831020236020095 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: ($x, be the size of, amsterdam) -> $x: ($x, be smaller than, amsterdam) -> (The city, is even smaller than, Amsterdam) -> The city (13146ms) What is the name of the airport in Amsterdam? Netherlands A branch office -13.845724966433949 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> who be the founder of amsterdam ? -> $x: ($x, be the founder of, amsterdam) -> $x: ($x, have establish in, amsterdam) -> (Netherlands A branch office, has been established in, Amsterdam) -> Netherlands A branch office (16120ms) What is the name of the airport in Amsterdam? the public -13.867010605990622 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has opened to, the public) -> the public (12234ms) What is the name of the airport in Amsterdam? so much -13.884494873859909 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has to offer, so much) -> so much (12234ms) What is the name of the airport in Amsterdam? way -13.890944361918233 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> who be the founder of amsterdam ? -> $x: ($x, be the founder of, amsterdam) -> $x: (amsterdam, be found by, $x) -> (Amsterdam, can be found by, way) -> way (15717ms) What is the name of the airport in Amsterdam? the survey -13.919351331965357 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: ($x, be the size of, amsterdam) -> $x: (amsterdam, rank fifth in, $x) -> (Amsterdam, was ranked fifth in, the survey) -> the survey (13303ms) What is the name of the airport in Amsterdam? the city -13.958816444078654 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: ($x, be the size of, amsterdam) -> $x: (amsterdam, be so close to, $x) -> (the Amsterdam airport Schiphol, is just so close to, the city) -> the city (13303ms) What is the name of the airport in Amsterdam? Hilton -13.998877480468517 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam airport ? -> $x: ($x, be the name of, amsterdam airport) -> $x: ($x, name of, amsterdam airport) -> $x: ($x, plan, amsterdam airport) -> (Hilton, plans, Amsterdam Airport Schiphol #hotel) -> Hilton (15080ms) What is the name of the airport in Amsterdam? the current economic slump -14.01005998528381 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, have been shelved due to, the current economic slump) -> the current economic slump (12294ms) What is the name of the airport in Amsterdam? Conversos -14.020546914818539 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> $x: (amsterdam, circumcise, $x) -> (Amsterdam, circumcised, Conversos) -> Conversos (14022ms) What is the name of the airport in Amsterdam? Mr. Philips -14.051675674805024 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, in, amsterdam) -> (Mr. Philips, ins, Amsterdam) -> Mr. Philips (17447ms) What is the name of the airport in Amsterdam? The last two posts -14.073730909301526 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam airport ? -> $x: ($x, be the name of, amsterdam airport) -> $x: ($x, name of, amsterdam airport) -> $x: ($x, in, amsterdam airport) -> (The last two posts, were written in, Amsterdam airport while) -> The last two posts (15080ms) What is the name of the airport in Amsterdam? art -14.08479927579781 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, to have replaced with, art) -> art (12294ms) What is the name of the airport in Amsterdam? a lot more -14.116364261266535 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has to offer, a lot more) -> a lot more (12294ms) What is the name of the airport in Amsterdam? the fifth best city -14.147595812649378 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: ($x, be the size of, amsterdam) -> $x: (amsterdam, be rate as, $x) -> (Economy Amsterdam, was recently rated as, the fifth best city) -> the fifth best city (13343ms) What is the name of the airport in Amsterdam? an end-user ready solution -14.148006704265887 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: (amsterdam, to offer, $x) -> (Amsterdam, are the first to offer, an end-user ready solution) -> an end-user ready solution (17447ms) What is the name of the airport in Amsterdam? Cohen -14.16197475962712 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> who be the founder of amsterdam ? -> $x: ($x, be the founder of, amsterdam) -> $x: ($x, be mayor of, amsterdam) -> (Cohen, has been a fairly successful mayor of, Amsterdam) -> Cohen (16405ms) What is the name of the airport in Amsterdam? the value -14.170472080043737 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has been asked to investigate, the value) -> the value (12294ms) What is the name of the airport in Amsterdam? the best summer -14.172772973796793 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, get ready to have, the best summer) -> the best summer (12294ms) What is the name of the airport in Amsterdam? the bulb -14.207282478753708 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has been connected to, the bulb) -> the bulb (12294ms) What is the name of the airport in Amsterdam? later -14.211121828656776 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> (New Amsterdam, named, later) -> later (10807ms) What is the name of the airport in Amsterdam? NORTHWEST -14.214099585857342 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, in, amsterdam) -> (NORTHWEST, is a company that has an office in the city, AMSTERDAM) -> NORTHWEST (17447ms) What is the name of the airport in Amsterdam? the first citizenM -14.245195687141983 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam airport ? -> $x: ($x, be the name of, amsterdam airport) -> $x: ($x, name of, amsterdam airport) -> $x: ($x, in, amsterdam airport) -> (the first citizenM, opened in, Amsterdam ?s airport) -> the first citizenM (15080ms) What is the name of the airport in Amsterdam? 1870 -14.256958814783257 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has history dating back to, 1870) -> 1870 (12366ms) What is the name of the airport in Amsterdam? More hotel -14.283540259458153 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, in, amsterdam) -> (More hotel, Situated in, Amsterdam) -> More hotel (17447ms) What is the name of the airport in Amsterdam? the USA -14.326247061773984 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, to refer to, amsterdam) -> (the USA, is referred to as, " New Amsterdam) -> the USA (17447ms) What is the name of the airport in Amsterdam? The travelers -14.336605720436012 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: ($x, be the size of, amsterdam) -> $x: ($x, can easily find, amsterdam) -> (The travelers, can easily find, hotel Amsterdam) -> The travelers (13621ms) What is the name of the airport in Amsterdam? the avid shopper -14.364544111622934 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has much to offer, the avid shopper) -> the avid shopper (12366ms) What is the name of the airport in Amsterdam? the watch -14.381691681589167 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: ($x, be the size of, amsterdam) -> $x: ($x, be little more than, amsterdam) -> (the watch, was a little more expensive than, the Amsterdam rate) -> the watch (13302ms) What is the name of the airport in Amsterdam? Churches -14.387257377206506 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> who be the founder of amsterdam ? -> $x: ($x, be the founder of, amsterdam) -> $x: ($x, have establish in, amsterdam) -> (Churches, had previously been established in, Amsterdam) -> Churches (16120ms) What is the name of the airport in Amsterdam? Dutch settlers -14.389888475462818 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> who be the founder of amsterdam ? -> $x: ($x, be the founder of, amsterdam) -> $x: ($x, have establish in, amsterdam) -> (Dutch settlers, had established a church in, New Amsterdam) -> Dutch settlers (16120ms) What is the name of the airport in Amsterdam? the card -14.391093322488203 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, can also have, $x) -> (Amsterdam, can also have benefits for, the card) -> the card (10931ms) What is the name of the airport in Amsterdam? festival formats -14.424998139604721 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: (amsterdam, address, $x) -> (Amsterdam, also addressed the question of, festival formats) -> festival formats (17533ms) What is the name of the airport in Amsterdam? the traveler -14.430798476994962 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has much to offer, the traveler) -> the traveler (12366ms) What is the name of the airport in Amsterdam? display -14.45134686272288 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, currently be, $x) -> (Amsterdam?s wealthiest citizens, is currently at, display) -> display (12366ms) What is the name of the airport in Amsterdam? the sideline -14.455098962372695 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> $x: (amsterdam, have be mention, $x) -> (' Amsterdam ', had only been mentioned on, the sideline) -> the sideline (14160ms) What is the name of the airport in Amsterdam? mushrooms -14.477606268524152 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has proposed to sell, mushrooms) -> mushrooms (12366ms) What is the name of the airport in Amsterdam? the identification -14.483377293991541 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has led to, the identification) -> the identification (12385ms) What is the name of the airport in Amsterdam? the two fishermen -14.485311896518343 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> who be the founder of amsterdam ? -> $x: ($x, be the founder of, amsterdam) -> $x: ($x, founder of, amsterdam) -> (the two fishermen, became the founders of, Amsterdam) -> the two fishermen (14539ms) What is the name of the airport in Amsterdam? the complaints -14.491007650667196 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has promised to seriously consider, the complaints) -> the complaints (12385ms) What is the name of the airport in Amsterdam? the keeping -14.492546947072842 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, had entrusted to, the keeping) -> the keeping (12385ms) What is the name of the airport in Amsterdam? Winds Records -14.50624261932691 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: (amsterdam, address, $x) -> (Amsterdam 1971, gives the address to, Winds Records) -> Winds Records (17533ms) What is the name of the airport in Amsterdam? students -14.51998317467248 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, have also proved inspirational to, students) -> students (12385ms) What is the name of the airport in Amsterdam? work -14.558010950215444 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, currently be, $x) -> (Amsterdam, is currently at, work) -> work (12385ms) What is the name of the airport in Amsterdam? the location -14.566164496104008 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has already agreed to provide, the location) -> the location (12385ms) What is the name of the airport in Amsterdam? Chet Baker -14.569725250568338 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, in, amsterdam) -> (Chet Baker, died in, Amsterdam) -> Chet Baker (17485ms) What is the name of the airport in Amsterdam? meeting -14.570774683755529 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, have had to resort to, meeting) -> meeting (12416ms) What is the name of the airport in Amsterdam? home -14.609312531608559 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, be leave be, $x) -> (Amsterdam, has been left at, home) -> home (12416ms) What is the name of the airport in Amsterdam? the Open Access seminar -14.611404972636478 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, in, amsterdam) -> (the Open Access seminar, organised in, Amsterdam) -> the Open Access seminar (17486ms) What is the name of the airport in Amsterdam? the tourist -14.647426938485255 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has much to offer, the tourist) -> the tourist (12416ms) What is the name of the airport in Amsterdam? the visitor -14.647426938485255 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has much to offer, the visitor) -> the visitor (12416ms) What is the name of the airport in Amsterdam? a more appropriate culture -14.672480779203397 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: (amsterdam, to offer, $x) -> (Amsterdam, arguably seemed to offer, a more appropriate culture) -> a more appropriate culture (17486ms) What is the name of the airport in Amsterdam? a native of South Africa -14.67767725085268 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, in, amsterdam) -> (a native of South Africa, residing in, Amsterdam) -> a native of South Africa (17486ms) What is the name of the airport in Amsterdam? a large wave of Surinamese -14.684853511536456 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, in, amsterdam) -> (a large wave of Surinamese, settled in, Amsterdam) -> a large wave of Surinamese (17487ms) What is the name of the airport in Amsterdam? millions -14.723465337525566 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, be beautiful with, $x) -> (Amsterdam, is a beautiful city with, millions) -> millions (10860ms) What is the name of the airport in Amsterdam? the bases and once -14.731891438558097 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> who be the founder of amsterdam ? -> $x: ($x, be the founder of, amsterdam) -> $x: ($x, be the hero of, amsterdam) -> (the bases and once, again was the hero of, Old New Amsterdam) -> the bases and once (15797ms) What is the name of the airport in Amsterdam? 14 -14.747815521575898 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, to refer to, amsterdam) -> (14, were referred to, the New Amsterdam Hospital) -> 14 (17486ms) What is the name of the airport in Amsterdam? water -14.804267465803093 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, love have, $x) -> (Amsterdam, has a love-hate relationship with, water) -> water (12416ms) What is the name of the airport in Amsterdam? question -14.804427471450452 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam airport ? -> $x: ($x, be the name of, amsterdam airport) -> $x: ($x, name of, amsterdam airport) -> $x: ($x, in, amsterdam airport) -> (question, are in, Amsterdam Schipol airport) -> question (15080ms) What is the name of the airport in Amsterdam? Van der Velden -14.811364404180843 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, to refer to, amsterdam) -> (Van der Velden, refers to, an Amsterdam Court) -> Van der Velden (17533ms) What is the name of the airport in Amsterdam? single women -14.842159641786088 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: (amsterdam, to offer, $x) -> (The Amsterdam Medical Centre, wants to offer, single women) -> single women (17533ms) What is the name of the airport in Amsterdam? the end -14.844306441247678 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> who be the founder of amsterdam ? -> $x: ($x, be the founder of, amsterdam) -> $x: ($x, be mayor of, amsterdam) -> (the end, was appointed Mayor of, Amsterdam) -> the end (16405ms) What is the name of the airport in Amsterdam? Travellers -14.857637229809562 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: (amsterdam, to offer, $x) -> (Amsterdam, Got to Offer, Travellers) -> Travellers (17533ms) What is the name of the airport in Amsterdam? the wreckage -14.882870593214758 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> $x: (amsterdam, detailed, $x) -> (AMSTERDAM ? Investigators, took detailed photos of, the wreckage) -> the wreckage (13776ms) What is the name of the airport in Amsterdam? Schmitt -14.888739120111593 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> who be the founder of amsterdam ? -> $x: ($x, be the founder of, amsterdam) -> $x: ($x, have establish in, amsterdam) -> (Schmitt, had already established connections in, Amsterdam) -> Schmitt (16120ms) What is the name of the airport in Amsterdam? a Canadian -14.917744027221417 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: ($x, be the name of, amsterdam) -> $x: ($x, name of, amsterdam) -> $x: ($x, in, amsterdam) -> (a Canadian, living in, Amsterdam) -> a Canadian (17533ms) What is the name of the airport in Amsterdam? the current state -14.924673900251076 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> $x: (amsterdam, have comment, $x) -> (Amsterdam, has comments on, the current state) -> the current state (14068ms) What is the name of the airport in Amsterdam? debates -14.95798642097741 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> $x: (amsterdam, have be mention, $x) -> (Amsterdam Pride, has been repeatedly mentioned in, debates) -> debates (14160ms) What is the name of the airport in Amsterdam? vengeance -15.02579002488653 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has come to seek, vengeance) -> vengeance (12416ms) What is the name of the airport in Amsterdam? share -15.116370396339578 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has a rich history to, share) -> share (12440ms) What is the name of the airport in Amsterdam? players -15.118630756452161 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has continued to lose, players) -> players (12440ms) What is the name of the airport in Amsterdam? The best known Dutch Jew -15.169303893682502 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> who be the founder of amsterdam ? -> $x: ($x, be the founder of, amsterdam) -> $x: ($x, be mayor of, amsterdam) -> (The best known Dutch Jew, is the mayor of, Amsterdam Job Cohen) -> The best known Dutch Jew (16405ms) What is the name of the airport in Amsterdam? The modern shopping mall -15.248116545768399 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> who be the founder of amsterdam ? -> $x: ($x, be the founder of, amsterdam) -> $x: ($x, have found, amsterdam) -> (The modern shopping mall, has also found its way to, Amsterdam) -> The modern shopping mall (15853ms) What is the name of the airport in Amsterdam? Bill -15.33546440514622 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> $x: (amsterdam, to murder, $x) -> (Amsterdam, attempts to murder, Bill) -> Bill (14160ms) What is the name of the airport in Amsterdam? suit -15.340892072717075 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has something to, suit) -> suit (12440ms) What is the name of the airport in Amsterdam? descriptions -15.715488621502162 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the name of amsterdam ? -> $x: (amsterdam, name, $x) -> $x: (amsterdam, detailed, $x) -> (amsterdam, See detailed, descriptions) -> descriptions (13776ms) What is the name of the airport in Amsterdam? plenty -16.695714863236617 What is the name of the airport in Amsterdam? -> what be the name of the airport in [ amsterdam ] ? -> what be the size of amsterdam ? -> $x: (amsterdam, size, $x) -> $x: (amsterdam, to to have, $x) -> (Amsterdam, has to offer, plenty) -> plenty (12440ms) Who invented basketball? James Naismith -0.9902783816405389 Who invented basketball? -> $x: ($x, invented, basketball) -> (James Naismith, invented, Basketball) -> James Naismith (10394ms) Who invented basketball? Company History -1.6715471958028183 Who invented basketball? -> $x: ($x, invented, basketball) -> (Company History, invented, basketball) -> Company History (10638ms) Who invented basketball? college students -1.6754810454740614 Who invented basketball? -> $x: ($x, invented, basketball) -> (college students, invented, basketball and volleyball) -> college students (10638ms) Who invented basketball? Hanno Mottola -1.6932945048329207 Who invented basketball? -> $x: ($x, invented, basketball) -> (Hanno Mottola, invent game of, basketball) -> Hanno Mottola (10638ms) Who invented basketball? physical education -1.7456506289899891 Who invented basketball? -> $x: ($x, invented, basketball) -> (physical education, invented the game of, basketball) -> physical education (10638ms) Who invented basketball? God -1.8838237830198388 Who invented basketball? -> $x: ($x, invented, basketball) -> (God, invented, the National Basketball Association) -> God (10638ms) Who invented basketball? Dan Biasone -2.0666608853342936 Who invented basketball? -> $x: ($x, invented, basketball) -> (Dan Biasone, invented, basketball) -> Dan Biasone (10638ms) Who invented basketball? Al Gore -2.0935524827675245 Who invented basketball? -> $x: ($x, invented, basketball) -> (Al Gore, invented, Basketball-Reference) -> Al Gore (10679ms) Who invented basketball? A Canadian -2.186202652834705 Who invented basketball? -> $x: ($x, invented, basketball) -> (A Canadian, invented, basketball) -> A Canadian (10679ms) Who invented basketball? The Globetrotters -2.319705084089885 Who invented basketball? -> $x: ($x, invented, basketball) -> (The Globetrotters, invented, show basketball) -> The Globetrotters (10680ms) Who invented basketball? Ont. -2.567433811573074 Who invented basketball? -> $x: ($x, invented, basketball) -> (Ont., invented, basketball) -> Ont. (10754ms) Who invented basketball? a KU Coach -2.7253341858338205 Who invented basketball? -> $x: ($x, invented, basketball) -> (a KU Coach, invented, basketball) -> a KU Coach (10812ms) Who invented basketball? history ?? -2.737721569911506 Who invented basketball? -> $x: ($x, invented, basketball) -> (history ??, invented, basketball) -> history ?? (10812ms) Who invented basketball? YMCA members -2.7425993218372478 Who invented basketball? -> $x: ($x, invented, basketball) -> (YMCA members, invented, basketball) -> YMCA members (10813ms) Who invented basketball? white man -2.7479045456484172 Who invented basketball? -> $x: ($x, invented, basketball) -> (white man, invented, basketball) -> white man (10812ms) Who invented basketball? The YMCA -2.7980486206104613 Who invented basketball? -> $x: ($x, invented, basketball) -> (The YMCA, invented, basketball) -> The YMCA (11043ms) Who invented basketball? the Canadian physical education instructor -2.8017069797622582 Who invented basketball? -> $x: ($x, invented, basketball) -> (the Canadian physical education instructor, invented, basketball) -> the Canadian physical education instructor (11043ms) Who invented basketball? Dr. James Naismith -2.8222469039538893 Who invented basketball? -> $x: ($x, invented, basketball) -> (Dr. James Naismith, would invent, basketball) -> Dr. James Naismith (11042ms) Who invented basketball? Dr. Naismith -2.8262058848966136 Who invented basketball? -> $x: ($x, invented, basketball) -> (Dr. Naismith, invented, basketball) -> Dr. Naismith (11042ms) Who invented basketball? a physical education teacher -2.9398452236662873 Who invented basketball? -> $x: ($x, invented, basketball) -> (a physical education teacher, invented, basketball) -> a physical education teacher (11086ms) Who invented basketball? YMCA instructor James Naismith -2.9575291624973987 Who invented basketball? -> $x: ($x, invented, basketball) -> (YMCA instructor James Naismith, invented, basketball) -> YMCA instructor James Naismith (11088ms) Who invented basketball? Basketball Dr. James Naismith -2.9631833844619067 Who invented basketball? -> $x: ($x, invented, basketball) -> (Basketball Dr. James Naismith, invented, basketball) -> Basketball Dr. James Naismith (11086ms) Who invented basketball? James naismith -3.00297653058424 Who invented basketball? -> $x: ($x, invented, basketball) -> (James naismith, invented the game of, basketball) -> James naismith (11115ms) Who invented basketball? Basketball Canadian Dr James Naismith -3.0060954788579943 Who invented basketball? -> $x: ($x, invented, basketball) -> (Basketball Canadian Dr James Naismith, invented, Basketball) -> Basketball Canadian Dr James Naismith (11115ms) Who invented basketball? roller James Naismith -3.017088403795578 Who invented basketball? -> $x: ($x, invented, basketball) -> (roller James Naismith, invented, the modern basketball) -> roller James Naismith (11115ms) Who invented basketball? physician -3.043424925008395 Who invented basketball? -> $x: ($x, invented, basketball) -> (physician, invented the game of, basketball) -> physician (11115ms) Who invented basketball? a creative advertising agent -3.0600315344547195 Who invented basketball? -> $x: ($x, invented, basketball) -> (a creative advertising agent, invented, a basketball) -> a creative advertising agent (11115ms) Who invented basketball? A Canadian doctor -3.060445153437609 Who invented basketball? -> $x: ($x, invented, basketball) -> (A Canadian doctor, invented, Basketball) -> A Canadian doctor (11156ms) Who invented basketball? a sports stringer -3.0656199832352176 Who invented basketball? -> $x: ($x, invented, basketball) -> (a sports stringer, invented, a college basketball team &) -> a sports stringer (11156ms) Who invented basketball? Canadian James Naismith -3.069092213414643 Who invented basketball? -> $x: ($x, invented, basketball) -> (Canadian James Naismith, invented the game of, basketball) -> Canadian James Naismith (11155ms) Who invented basketball? Program Director James Naismith -3.1016533904564643 Who invented basketball? -> $x: ($x, invented, basketball) -> (Program Director James Naismith, invented, Basketball) -> Program Director James Naismith (11156ms) Who invented basketball? a winter team sport -3.1072568258087014 Who invented basketball? -> $x: ($x, invented, basketball) -> (a winter team sport, invented the game of, basketball) -> a winter team sport (11155ms) Who invented basketball? Any other interesting facts James Naismith -3.1469661861820013 Who invented basketball? -> $x: ($x, invented, basketball) -> (Any other interesting facts James Naismith, invented, basketball) -> Any other interesting facts James Naismith (11212ms) Who invented basketball? the who -3.201021563886907 Who invented basketball? -> $x: ($x, invented, basketball) -> (the who, invented, the game basketball) -> the who (11212ms) Who invented basketball? The Canadian -3.2182459975752993 Who invented basketball? -> $x: ($x, invented, basketball) -> (The Canadian, invented, the game of basketball) -> The Canadian (11212ms) Who invented basketball? Mars -3.222339535664224 Who invented basketball? -> $x: ($x, invented, basketball) -> (Mars, invent, time travel or play basketball) -> Mars (11212ms) Who invented basketball? Canuck -3.3951770048900736 Who invented basketball? -> $x: ($x, invented, basketball) -> (Canuck, invented, basketball) -> Canuck (11261ms) Who invented basketball? The Canadians -3.628545297024787 Who invented basketball? -> $x: ($x, invented, basketball) -> (The Canadians, invented, basketball) -> The Canadians (11262ms) Who invented basketball? the YMCA -3.6308691435174785 Who invented basketball? -> $x: ($x, invented, basketball) -> (the YMCA, invented, basketball) -> the YMCA (11320ms) Who invented basketball? inventor -3.6958069247925405 Who invented basketball? -> $x: ($x, invented, basketball) -> (inventor, invented the game of, basketball) -> inventor (11320ms) Who invented basketball? United States educator -3.912326930597703 Who invented basketball? -> $x: ($x, invented, basketball) -> (United States educator, invented, the game of basketball) -> United States educator (11392ms) Who invented basketball? innovators -3.948985714589516 Who invented basketball? -> $x: ($x, invented, basketball) -> (innovators, have invented the game of, basketball and volleyball) -> innovators (11392ms) Who invented basketball? Naismith -3.9999238951931755 Who invented basketball? -> $x: ($x, invented, basketball) -> (Naismith, invented, basketball) -> Naismith (11628ms) Who invented basketball? Canadians -4.101214449785947 Who invented basketball? -> $x: ($x, invented, basketball) -> (Canadians, invented, Basketball) -> Canadians (11769ms) Who invented basketball? 1891 James Naismith -4.113095724415903 Who invented basketball? -> $x: ($x, invented, basketball) -> (1891 James Naismith, invented, basketball) -> 1891 James Naismith (11769ms) Who invented basketball? America -4.196827610764823 Who invented basketball? -> $x: ($x, invented, basketball) -> (America, invented, Basketball too) -> America (11818ms) Who invented basketball? 1891 Dr. Naismith -4.251849008082084 Who invented basketball? -> $x: ($x, invented, basketball) -> (1891 Dr. Naismith, invented the game of, Basketball) -> 1891 Dr. Naismith (11878ms) Who invented basketball? james naismith -4.312927514359188 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (Basketball, was invented by, james naismith) -> james naismith (11996ms) Who invented basketball? Springfield -4.320429910333538 Who invented basketball? -> $x: ($x, invented, basketball) -> (Springfield, invented the game of, basketball) -> Springfield (11996ms) Who invented basketball? Philip Bryant -4.3691243670440265 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (basketball, was invented by, Philip Bryant) -> Philip Bryant (12028ms) Who invented basketball? Taylor -4.419933943983801 Who invented basketball? -> $x: ($x, invented, basketball) -> (Taylor, is also credited with inventing, a basketball) -> Taylor (12028ms) Who invented basketball? the jews -4.440572509976248 Who invented basketball? -> $x: ($x, invented, basketball) -> (the jews, invented, basketball) -> the jews (12076ms) Who invented basketball? Europeans -4.496074228167627 Who invented basketball? -> $x: ($x, invented, basketball) -> (Europeans, invented, baseball , football and basketball) -> Europeans (12096ms) Who invented basketball? the first try -4.559336374815944 Who invented basketball? -> $x: ($x, invented, basketball) -> (the first try, invented, basketball) -> the first try (12096ms) Who invented basketball? the movement -4.571111283991028 Who invented basketball? -> $x: ($x, invented, basketball) -> (the movement, invented, basketball and volleyball) -> the movement (12339ms) Who invented basketball? The guy -4.608307426500529 Who invented basketball? -> $x: ($x, invented, basketball) -> (The guy, invented, basketball) -> The guy (12339ms) Who invented basketball? the canadian cation instructor -4.6518281082282344 Who invented basketball? -> $x: ($x, invented, basketball) -> (the canadian cation instructor, invented, basketball) -> the canadian cation instructor (12339ms) Who invented basketball? Vince Carter -4.698299863193332 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, popularize, basketball) -> (Vince Carter, has helped to popularize, basketball) -> Vince Carter (12339ms) Who invented basketball? the moment James Naismith -4.765005443232855 Who invented basketball? -> $x: ($x, invented, basketball) -> (the moment James Naismith, invented, basketball) -> the moment James Naismith (12464ms) Who invented basketball? the short time limit Dr. Naismith -4.773181935791682 Who invented basketball? -> $x: ($x, invented, basketball) -> (the short time limit Dr. Naismith, invented, basketball) -> the short time limit Dr. Naismith (12464ms) Who invented basketball? active students -4.784092064932921 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (the Science Guy Basketball, was invented by, active students) -> active students (12464ms) Who invented basketball? the same year James B. Naismith -4.862093669959922 Who invented basketball? -> $x: ($x, invented, basketball) -> (the same year James B. Naismith, invented, basketball) -> the same year James B. Naismith (12464ms) Who invented basketball? 1891 - James Naismith -5.086940954359002 Who invented basketball? -> $x: ($x, invented, basketball) -> (1891 - James Naismith, invents, basketball) -> 1891 - James Naismith (12496ms) Who invented basketball? a native -5.226829647566844 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (basketball, was invented by, a native) -> a native (12511ms) Who invented basketball? the person -5.243670521827106 Who invented basketball? -> $x: ($x, invented, basketball) -> (the person, invented, basketball) -> the person (12511ms) Who invented basketball? a man -5.321127762454148 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (Basketball, was a game invented by, a man) -> a man (12728ms) Who invented basketball? a Canadian baseball football -5.332267909101374 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (basketball, was invented by, a Canadian baseball football) -> a Canadian baseball football (12728ms) Who invented basketball? a Scottish American -5.43302865926467 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (Basketball, was invented by, a Scottish American) -> a Scottish American (12751ms) Who invented basketball? men -5.476647266686143 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (Both basketball and volleyball, were invented by, men) -> men (12767ms) Who invented basketball? a canadian -5.492246923172516 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (Basketball, was invented by, a canadian) -> a canadian (12767ms) Who invented basketball? Aaron Cripe -5.563846027498838 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, have position, basketball) -> (Aaron Cripe, has resigned his position as, head basketball coach) -> Aaron Cripe (12783ms) Who invented basketball? a Canadian -5.581648109131937 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (?basketball, was invented by, a Canadian) -> a Canadian (12783ms) Who invented basketball? a rugby coach -5.599585494428371 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (Basketball, was invented by, a rugby coach) -> a rugby coach (12798ms) Who invented basketball? an individual -5.624407598000101 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (only basketball, was invented by, an individual) -> an individual (12799ms) Who invented basketball? YMCA instructors -5.638455486178614 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (basketball and volleyball, were invented by, YMCA instructors) -> YMCA instructors (12798ms) Who invented basketball? a Y.M.C.A. official -5.6491651334445745 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (Basketball, was invented by, a Y.M.C.A. official) -> a Y.M.C.A. official (12813ms) Who invented basketball? a Canadian , Dr. James A. Naismith -5.6616160317570055 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (basketball, was invented by, a Canadian , Dr. James A. Naismith) -> a Canadian , Dr. James A. Naismith (12813ms) Who invented basketball? Quote Koral -5.663760355677829 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, by play, basketball) -> (Quote Koral, was played by, basketball star James Worthy) -> Quote Koral (12813ms) Who invented basketball? Canadian Dr. James Naismith -5.700284756662542 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (Basketball, was invented by, Canadian Dr. James Naismith) -> Canadian Dr. James Naismith (12828ms) Who invented basketball? professional players -5.77122095638002 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, by play, basketball) -> (professional players, make a living by playing, basketball) -> professional players (12859ms) Who invented basketball? basketball drills -5.786644535098549 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (basketball drills, are extremely perfect for, a basketball team) -> basketball drills (12859ms) Who invented basketball? the country -5.867895257325099 Who invented basketball? -> $x: ($x, invented, basketball) -> (the country, invented, basketball) -> the country (13056ms) Who invented basketball? Square Enix -5.902619781566527 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (Square Enix, almost perfected, basketball) -> Square Enix (13096ms) Who invented basketball? static poses -5.972818038242492 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (static poses, is perfect for, the basketball fan) -> static poses (13095ms) Who invented basketball? spindly body -6.06163008959564 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (spindly body, were perfect for, basketball) -> spindly body (13152ms) Who invented basketball? Canadian drillmaster -6.11144473261035 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (Basketball, was originally invented by, Canadian drillmaster) -> Canadian drillmaster (13153ms) Who invented basketball? the white man -6.164655062336912 Who invented basketball? -> $x: ($x, invented, basketball) -> (the white man, invented, basketball) -> the white man (13152ms) Who invented basketball? John Allison -6.197566459334844 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (John Allison, actually played like, a live basketball center) -> John Allison (13216ms) Who invented basketball? Lin -6.246034909970785 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, reinvent, basketball) -> (Lin, was reinventing, basketball) -> Lin (13216ms) Who invented basketball? the Wizards -6.299463893466939 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (the Wizards, actually played, team basketball) -> the Wizards (13215ms) Who invented basketball? Phog Allen -6.30625824150443 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, be the inventor of, basketball) -> (Phog Allen, was the inventor of, basketball) -> Phog Allen (13251ms) Who invented basketball? PlayStation 3 -6.3322720627101905 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (PlayStation 3, is the perfect way to shoot, basketball hoops) -> PlayStation 3 (13249ms) Who invented basketball? 1869 -6.4012840851728114 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (basketball, was invented by, 1869) -> 1869 (13265ms) Who invented basketball? Ayman Idais Academy -6.4072670980322215 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, to be create, basketball) -> (Ayman Idais Academy, is to create, a lifetime basketball program) -> Ayman Idais Academy (13265ms) Who invented basketball? a full-time actor -6.4850765026723245 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (a full-time actor, has actually played, a basketball player) -> a full-time actor (13265ms) Who invented basketball? any stereotype--she -6.4903171056539435 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, popularize, basketball) -> (any stereotype--she, has helped popularize, basketball) -> any stereotype--she (13264ms) Who invented basketball? the Knights -6.508134571942773 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (the Knights, are actually playing some of, their best basketball) -> the Knights (13297ms) Who invented basketball? the Nets -6.51589817925009 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (the Nets, have actually been playing, decent basketball) -> the Nets (13298ms) Who invented basketball? J.R. -6.519560193933451 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (J.R., actually play, basketball) -> J.R. (13297ms) Who invented basketball? soul -6.520828084816686 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (soul, are perfect for, basketball games) -> soul (13298ms) Who invented basketball? rock -6.536351451754896 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, be the inventor of, basketball) -> (rock, only is the inventor of, basketball) -> rock (13298ms) Who invented basketball? they?re both Italian-Americans -6.580569846143538 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, popularize, basketball) -> (they?re both Italian-Americans, popularized, up-tempo basketball) -> they?re both Italian-Americans (13517ms) Who invented basketball? He?s -6.644232110259211 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (He?s, may actually like to play, basketball) -> He?s (13517ms) Who invented basketball? Illinois-Chicago -6.652681827881764 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (Illinois-Chicago, was a perfect example of, Detroit basketball) -> Illinois-Chicago (13517ms) Who invented basketball? The Heat -6.664551052142328 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (The Heat, are actually playing, great basketball) -> The Heat (13517ms) Who invented basketball? I?ll -6.683136786228115 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, first make, basketball) -> (I?ll, make the first substitution in, pickup basketball history) -> I?ll (13735ms) Who invented basketball? Jeremy Lin -6.708813675463816 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (Jeremy Lin, is the perfect blend of, basketball talent) -> Jeremy Lin (13736ms) Who invented basketball? a street -6.7245688577259255 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, to be create, basketball) -> (a street, can also be used to create, basketball courts) -> a street (13735ms) Who invented basketball? adidas -6.758677283444772 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (adidas, is the perfect way to start off, his basketball wardrobe) -> adidas (13736ms) Who invented basketball? ?China -6.767894571104902 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, be marketing, basketball) -> (?China, is a massive market for, NBA basketball) -> ?China (13736ms) Who invented basketball? Kirk -6.772585329154129 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (Kirk, can actually play, basketball) -> Kirk (13736ms) Who invented basketball? Orange and gray -6.794481127600992 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (Orange and gray, were perfect for, my son?s basketball layout) -> Orange and gray (13811ms) Who invented basketball? The Mohegan Sun Arena -6.796314121232736 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (The Mohegan Sun Arena, is a perfect venue for, basketball) -> The Mohegan Sun Arena (13811ms) Who invented basketball? Kiel Turpin -6.964082481862453 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, think up, basketball) -> (Kiel Turpin, was thinking about giving up, basketball) -> Kiel Turpin (14056ms) Who invented basketball? Nike Blazer -6.968442818320809 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, first make, basketball) -> (Nike Blazer, was first made as, the basketball sneaker) -> Nike Blazer (14057ms) Who invented basketball? Real -7.0183003847018455 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (Real, is the Perfect Exercise to, Jump Higher basketball players) -> Real (14056ms) Who invented basketball? Rose 2.5 -7.028509044429024 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, be marketing, basketball) -> (Rose 2.5, is marketed as, the lightest basketball shoe) -> Rose 2.5 (14056ms) Who invented basketball? almost 6 -7.0418365666796126 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (almost 6, actually plays, basketball) -> almost 6 (14662ms) Who invented basketball? Paul -7.138615831744789 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, have position, basketball) -> (Paul, has held positions such as, College Basketball Coach) -> Paul (14662ms) Who invented basketball? 950 games -7.162907116571436 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, by play, basketball) -> (950 games, were played by, Northern Nevada basketball teams) -> 950 games (14662ms) Who invented basketball? 7... Quote Koral -7.166443914878117 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, by play, basketball) -> (7... Quote Koral, was played by, basketball star James Worthy) -> 7... Quote Koral (14662ms) Who invented basketball? the NBA -7.28539488570623 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, by play, basketball) -> (the NBA, is by playing, basketball) -> the NBA (14890ms) Who invented basketball? alumni -7.357135080720517 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, to be create, basketball) -> (alumni, are given the opportunity to create, a basketball team) -> alumni (14890ms) Who invented basketball? Fairborn -7.402551048431405 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, reinvent, basketball) -> (Fairborn, needed to reinvent, its boys basketball team) -> Fairborn (14890ms) Who invented basketball? style -7.443911671152854 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (style, are perfect for playing, basketball) -> style (14890ms) Who invented basketball? Hawes -7.468538240786916 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (Hawes, actually played on, a basketball team) -> Hawes (14890ms) Who invented basketball? james -7.628799681581837 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: (basketball, invent by, $x) -> (basketball, was invented in naismith by, james) -> james (14955ms) Who invented basketball? Westbrook -7.850759775663074 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (Westbrook, is actually playing, the best basketball) -> Westbrook (14955ms) Who invented basketball? Snyder -7.857074349549724 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (Snyder, has actually been playing, some pretty good basketball) -> Snyder (14955ms) Who invented basketball? Stricklen -7.865032132564183 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (Stricklen, want to actually play, basketball) -> Stricklen (14955ms) Who invented basketball? Phoenix -7.9273533903585 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (Phoenix, can get back to playing actually, fun basketball) -> Phoenix (14980ms) Who invented basketball? Results -7.990760472146174 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, by play, basketball) -> (Results, is visible by playing, pickup basketball) -> Results (14980ms) Who invented basketball? Michael -8.009156413225544 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, have position, basketball) -> (Michael, had positioned, the basketball) -> Michael (14980ms) Who invented basketball? Shaktoolik -8.017606130848096 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, by play, basketball) -> (Shaktoolik, passed time by playing, basketball) -> Shaktoolik (14980ms) Who invented basketball? Gardner -8.06928182633224 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, popularize, basketball) -> (Gardner, also popularized, basketball) -> Gardner (14980ms) Who invented basketball? Kabongo -8.070166012733337 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, by play, basketball) -> (Kabongo, is playing by far, his best basketball) -> Kabongo (14980ms) Who invented basketball? Spalding -8.17096458001572 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, be marketing, basketball) -> (Spalding, is the global market leader in, basketballs) -> Spalding (15002ms) Who invented basketball? The idea -8.400424894601233 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, to be create, basketball) -> (The idea, is to create, basketball team) -> The idea (15003ms) Who invented basketball? the atmosphere -8.401446472401517 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (the atmosphere, was perfect for, basketball) -> the atmosphere (15002ms) Who invented basketball? the particular football game -8.434124134978646 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, conceive, basketball) -> (the particular football game, also conceived, basketball) -> the particular football game (15003ms) Who invented basketball? the design -8.43416179086045 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (the design, is perfect on, this men basketball shoe) -> the design (15003ms) Who invented basketball? The school -8.528633556531378 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, actually play, basketball) -> (The school, actually began playing, basketball) -> The school (15026ms) Who invented basketball? The height advantage -8.578023411043649 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (The height advantage, may be perfect for, basketball) -> The height advantage (15026ms) Who invented basketball? The game -8.604674535666994 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, by play, basketball) -> (The game, was played by, CU men basketball team) -> The game (15026ms) Who invented basketball? the energy level -8.60732714757258 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (the energy level, was perfect for, NBA basketball) -> the energy level (15026ms) Who invented basketball? Friday -8.997609585307696 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, perfect, basketball) -> (Friday, was a perfect night for, basketball) -> Friday (15026ms) Who invented basketball? the guy -9.755265176650415 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, know to play, basketball) -> (the guy, knows to play, basketball) -> the guy (15061ms) Who invented basketball? North America -9.78870306798297 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented in, North America) -> North America (15061ms) Who invented basketball? the kid -9.86930492982457 Who invented basketball? -> $x: ($x, invented, basketball) -> $x: ($x, by play, basketball) -> (the kid, by playing, basketball) -> the kid (15086ms) Who invented basketball? further north -10.704158610759759 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (basketball, was invented, further north) -> further north (15086ms) Who invented basketball? rap fashion -11.10882523914779 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (a basketball player, invent, rap fashion) -> rap fashion (15110ms) Who invented basketball? the University -11.121135522099006 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (basketball, was invented at, the University) -> the University (15137ms) Who invented basketball? two years -11.169317475890491 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (basketball, had been invented, two years) -> two years (15137ms) Who invented basketball? ten miles -11.208958276871149 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (basketball, had just been invented only, ten miles) -> ten miles (15138ms) Who invented basketball? a religious context -11.271598910484242 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (basketball, had been invented in, a religious context) -> a religious context (15137ms) Who invented basketball? a few miles -11.279687034809967 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, invented, a few miles) -> a few miles (15162ms) Who invented basketball? a diversion -11.304587506709195 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (basketball, was invented as, a diversion) -> a diversion (15162ms) Who invented basketball? a couple -11.31593915157558 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented, a couple) -> a couple (15162ms) Who invented basketball? a pursuit -11.412204488276942 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented in, a pursuit) -> a pursuit (15185ms) Who invented basketball? basketball -11.4577944721112 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball Dr. James Naismith, invented, basketball) -> basketball (15185ms) Who invented basketball? a YMCA -11.472192831918635 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented at, a YMCA) -> a YMCA (15185ms) Who invented basketball? a decade -11.48292220086566 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (basketball, had been invented only about, a decade) -> a decade (15210ms) Who invented basketball? a non-contact sport -11.537449496118692 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented as, a non-contact sport) -> a non-contact sport (15210ms) Who invented basketball? a recreational sport -11.6147669661507 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented as, a recreational sport) -> a recreational sport (15324ms) Who invented basketball? 100 years -11.786116540781542 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented more than, 100 years) -> 100 years (15349ms) Who invented basketball? the 1800?s -11.877198568618146 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (basketball, was invented in, the 1800?s) -> the 1800?s (15349ms) Who invented basketball? the United States -11.91072665223968 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented in, the United States) -> the United States (15349ms) Who invented basketball? period -12.07548079924359 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (the best basketball, ever invented, period) -> period (15349ms) Who invented basketball? december th -12.088229245740854 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (basketball, invented, december th) -> december th (15498ms) Who invented basketball? springfield -12.102597312902923 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, is invented in, springfield) -> springfield (15498ms) Who invented basketball? Basketball -12.150834257131148 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball Canadian Dr James Naismith, invented, Basketball) -> Basketball (15498ms) Who invented basketball? Canada -12.15161067446762 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (basketball, was invented in, Canada) -> Canada (15498ms) Who invented basketball? Massachusetts -12.15413729300201 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented in, Massachusetts) -> Massachusetts (15498ms) Who invented basketball? the USA -12.332536945244147 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented in, the USA) -> the USA (15523ms) Who invented basketball? 1891 -12.564064497850545 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented in, 1891) -> 1891 (15523ms) Who invented basketball? originally -12.567322132353617 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented, originally) -> originally (15547ms) Who invented basketball? 1892 -12.679827341114287 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented in, 1892) -> 1892 (15547ms) Who invented basketball? Sheex -12.702084191679706 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> ('s basketball coaches, invented, Sheex) -> Sheex (15571ms) Who invented basketball? 1946 -12.756403508497659 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Wheelchair basketball, was invented in, 1946) -> 1946 (15571ms) Who invented basketball? December 1891 -12.760763844956013 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented in, December 1891) -> December 1891 (15571ms) Who invented basketball? 1861 -12.782109798470486 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (The basketball, was invented in, 1861) -> 1861 (15571ms) Who invented basketball? Almonte -12.92101621421995 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (basketball Basketball, was actually invented in, Almonte) -> Almonte (15616ms) Who invented basketball? a pursuit for an indoor game -12.947120715234622 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented in, a pursuit for an indoor game) -> a pursuit for an indoor game (15617ms) Who invented basketball? the 18th century -13.047655915460586 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (basketball, had n?t been invented in, the 18th century) -> the 18th century (15641ms) Who invented basketball? December -13.065036242772061 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball, was invented in, December) -> December (15641ms) Who invented basketball? first -13.177072043661434 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (basketball, was invented, first) -> first (15641ms) Who invented basketball? more than 120 years ago -13.330441956742005 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (Basketball Shoes, was invented, more than 120 years ago) -> more than 120 years ago (15641ms) Who invented basketball? the end -13.3559283708649 Who invented basketball? -> who invent [ basketball ] ? -> who be basketball invent ? -> $x: (basketball, invent, $x) -> (America Basketball, was invented at, the end) -> the end (15641ms) What are pathogens? disease-causing agent -6.368693462830012 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, disease-causing agent) -> disease-causing agent (5502ms) What are pathogens? environmental cue -6.464685175635649 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, environmental cue) -> environmental cue (5502ms) What are pathogens? micro-environmental factor -6.561467662555906 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, micro-environmental factor) -> micro-environmental factor (5502ms) What are pathogens? disease-causing microorganism -6.589536665450566 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, disease-causing microorganism) -> disease-causing microorganism (5502ms) What are pathogens? disease-causing organism -6.600265620658244 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, disease-causing organism) -> disease-causing organism (5502ms) What are pathogens? water quality issue -6.830989660304228 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, water quality issue) -> water quality issue (5502ms) What are pathogens? primitive life form -6.879479784816725 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, primitive life form) -> primitive life form (5550ms) What are pathogens? biotic and abiotic stress factor -6.8868123844115114 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, biotic and abiotic stress factor) -> biotic and abiotic stress factor (5550ms) What are pathogens? external stimulus -6.918652913155388 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, external stimulus) -> external stimulus (5550ms) What are pathogens? harmful substance -6.925580604070836 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, harmful substance) -> harmful substance (5550ms) What are pathogens? natural disturbance event -6.937150408870297 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, natural disturbance event) -> natural disturbance event (5550ms) What are pathogens? type of risk -6.948468578495012 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, type of risk) -> type of risk (5550ms) What are pathogens? stochastic natural event -6.968575581230309 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, stochastic natural event) -> stochastic natural event (5563ms) What are pathogens? invasive non-native species -6.996947586294257 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, invasive non-native species) -> invasive non-native species (5564ms) What are pathogens? natural population control -7.0134695366654505 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, natural population control) -> natural population control (5564ms) What are pathogens? chronic pulmonary condition -7.016211380944316 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, chronic pulmonary condition) -> chronic pulmonary condition (5563ms) What are pathogens? external environmental influence -7.01871987648705 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, external environmental influence) -> external environmental influence (5563ms) What are pathogens? long drive or stab plate Alternaria spp fungus -7.022590295512587 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (Pathogen, Instance Of, long drive or stab plate Alternaria spp fungus) -> long drive or stab plate Alternaria spp fungus (5564ms) What are pathogens? biological control -7.0230819385392715 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, biological control) -> biological control (5586ms) What are pathogens? natural control agent -7.023751452174951 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, natural control agent) -> natural control agent (5586ms) What are pathogens? component of the environment -7.023961217652019 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, component of the environment) -> component of the environment (5586ms) What are pathogens? biologically active substance -7.030294489205932 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, biologically active substance) -> biologically active substance (5586ms) What are pathogens? actual field condition -7.030487880127178 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, actual field condition) -> actual field condition (5586ms) What are pathogens? non-point-source pollutant -7.03172977603357 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, non-point-source pollutant) -> non-point-source pollutant (5586ms) What are pathogens? type of bacterium -7.0695470771280515 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (Pathogens, Instance Of, type of bacterium) -> type of bacterium (5601ms) What are pathogens? large particle -7.088561506796851 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, large particle) -> large particle (5602ms) What are pathogens? invasive species -7.105013096114074 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, invasive species) -> invasive species (5602ms) What are pathogens? potential contaminant -7.106300628379655 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, potential contaminant) -> potential contaminant (5601ms) What are pathogens? harmful pollutant -7.110051656301443 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, harmful pollutant) -> harmful pollutant (5602ms) What are pathogens? mortality agent -7.1314954023993105 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, mortality agent) -> mortality agent (5602ms) What are pathogens? stormwater pollutant -7.150044554057306 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, stormwater pollutant) -> stormwater pollutant (5635ms) What are pathogens? noxious stimulus -7.15227851840721 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, noxious stimulus) -> noxious stimulus (5635ms) What are pathogens? environmental concern -7.154029515554118 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, environmental concern) -> environmental concern (5635ms) What are pathogens? undesirable contaminant -7.161418326805936 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, undesirable contaminant) -> undesirable contaminant (5635ms) What are pathogens? damaging agent -7.169692698951695 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, damaging agent) -> damaging agent (5635ms) What are pathogens? natural enemy -7.1853771913507405 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, natural enemy) -> natural enemy (5635ms) What are pathogens? potential risk -7.192870099994442 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, potential risk) -> potential risk (5662ms) What are pathogens? waste product -7.195054427039045 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, waste product) -> waste product (5662ms) What are pathogens? soil organism -7.217063152386092 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, soil organism) -> soil organism (5662ms) What are pathogens? environmental contaminant -7.221059143811949 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, environmental contaminant) -> environmental contaminant (5662ms) What are pathogens? biological particle -7.231120929355759 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, biological particle) -> biological particle (5661ms) What are pathogens? selective pressure -7.231675958725765 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, selective pressure) -> selective pressure (5661ms) What are pathogens? water contaminant -7.231842466985201 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, water contaminant) -> water contaminant (5681ms) What are pathogens? secondary agent -7.233412873459438 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, secondary agent) -> secondary agent (5681ms) What are pathogens? Natural stressors -7.242251867687119 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, Natural stressors) -> Natural stressors (5681ms) What are pathogens? pest species -7.242726511219728 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, pest species) -> pest species (5681ms) What are pathogens? undesirable organism -7.249058790043684 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, undesirable organism) -> undesirable organism (5681ms) What are pathogens? living organism -7.26136860571956 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, living organism) -> living organism (5681ms) What are pathogens? environmental variable -7.26466021039123 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, environmental variable) -> environmental variable (5710ms) What are pathogens? catastrophic event -7.271301993478672 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, catastrophic event) -> catastrophic event (5709ms) What are pathogens? common term -7.273775729627325 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, common term) -> common term (5710ms) What are pathogens? living factor -7.296996017193408 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, living factor) -> living factor (5709ms) What are pathogens? experimental condition -7.297255787386844 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, experimental condition) -> experimental condition (5710ms) What are pathogens? others item -7.298688157418235 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, others item) -> others item (5710ms) What are pathogens? environmental source -7.300574545634925 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, environmental source) -> environmental source (5730ms) What are pathogens? physical stressors -7.301728403533129 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, physical stressors) -> physical stressors (5730ms) What are pathogens? micro organism -7.303742953989665 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, micro organism) -> micro organism (5729ms) What are pathogens? unfavorable condition -7.3063003914207085 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, unfavorable condition) -> unfavorable condition (5729ms) What are pathogens? trace element -7.311073626965528 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, trace element) -> trace element (5730ms) What are pathogens? microbial contaminant -7.311540987541405 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, microbial contaminant) -> microbial contaminant (5730ms) What are pathogens? key contaminant -7.317200167112006 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, key contaminant) -> key contaminant (5743ms) What are pathogens? big word -7.324688799397325 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (Pathogens, Instance Of, big word) -> big word (5743ms) What are pathogens? contributing factor -7.325441946081462 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, contributing factor) -> contributing factor (5743ms) What are pathogens? living agent -7.334865256531294 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, living agent) -> living agent (5743ms) What are pathogens? seasonal factor -7.352544568439017 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, seasonal factor) -> seasonal factor (5743ms) What are pathogens? control contaminant -7.3797592119664355 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, control contaminant) -> control contaminant (5761ms) What are pathogens? untreated pollutant -7.3797592119664355 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, untreated pollutant) -> untreated pollutant (5761ms) What are pathogens? trap pollutant -7.3797592119664355 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, trap pollutant) -> trap pollutant (5743ms) What are pathogens? temporary disturbance -7.381547371218787 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, temporary disturbance) -> temporary disturbance (5761ms) What are pathogens? anionic contaminant -7.382696902243332 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, anionic contaminant) -> anionic contaminant (5761ms) What are pathogens? noxious substance -7.384735512574937 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, noxious substance) -> noxious substance (5761ms) What are pathogens? storage issue -7.385431992916062 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, storage issue) -> storage issue (5761ms) What are pathogens? minor species -7.386203177517649 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, minor species) -> minor species (5796ms) What are pathogens? control agent -7.386310521245659 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, control agent) -> control agent (5796ms) What are pathogens? speci?c target -7.386613822510386 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, speci?c target) -> speci?c target (5796ms) What are pathogens? injurious factor -7.3881526126700185 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, injurious factor) -> injurious factor (5796ms) What are pathogens? external signal -7.388732520069739 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, external signal) -> external signal (5796ms) What are pathogens? storage factor -7.389159820484794 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, storage factor) -> storage factor (5797ms) What are pathogens? molecular structure -7.392413877680321 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, molecular structure) -> molecular structure (5817ms) What are pathogens? unfavourable condition -7.39303550974125 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, unfavourable condition) -> unfavourable condition (5817ms) What are pathogens? treatment method -7.394816880608232 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, treatment method) -> treatment method (5817ms) What are pathogens? parasitic organism -7.400323042985436 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, parasitic organism) -> parasitic organism (5817ms) What are pathogens? global challenge -7.402598880780325 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, global challenge) -> global challenge (5817ms) What are pathogens? climate change -7.404324416116655 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, climate change) -> climate change (5817ms) What are pathogens? ecological process -7.40895807141474 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, ecological process) -> ecological process (6012ms) What are pathogens? indoor air pollutant -7.788497609861658 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, indoor air pollutant) -> indoor air pollutant (6012ms) What are pathogens? agent -9.160729890631067 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, agent) -> agent (6012ms) What are pathogens? species -9.185055188458211 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, species) -> species (6012ms) What are pathogens? target -9.195945835666187 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, target) -> target (6012ms) What are pathogens? antigen -9.211739604032257 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, antigen) -> antigen (6012ms) What are pathogens? factor -9.241216909991454 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, factor) -> factor (6039ms) What are pathogens? micro-organisms -9.31700659404001 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, micro-organisms) -> micro-organisms (8678ms) What are pathogens? microbe -9.34600171635515 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, microbe) -> microbe (6039ms) What are pathogens? Pharmacists -9.374082291433155 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: ($x, drug, pathogens) -> (Pharmacists, develop drugs against, particular pathogens) -> Pharmacists (6099ms) What are pathogens? waste -9.377687944849168 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, waste) -> waste (6039ms) What are pathogens? trigger -9.45091045366156 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, trigger) -> trigger (6039ms) What are pathogens? reagent -9.549936818918205 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, reagent) -> reagent (6039ms) What are pathogens? article -9.588476987045437 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, article) -> article (6039ms) What are pathogens? organisims -9.61016643001284 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (Pathogens, Instance Of, organisims) -> organisims (6061ms) What are pathogens? illness -9.632137959529004 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogen, instance of, $x) -> (pathogen, Instance Of, illness) -> illness (6062ms) What are pathogens? disease-causing microorganisms -10.05080530668977 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, disease-causing microorganisms) -> disease-causing microorganisms (8677ms) What are pathogens? gram-positive bacteria -10.22594104843283 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, gram-positive bacteria) -> gram-positive bacteria (8677ms) What are pathogens? poor-quality water -10.339118383437452 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, poor-quality water) -> poor-quality water (8677ms) What are pathogens? disease-producing microorganisms -10.354149710362977 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, disease-producing microorganisms) -> disease-producing microorganisms (8677ms) What are pathogens? antibiotic-resistant -10.509592890586866 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, antibiotic-resistant) -> antibiotic-resistant (8678ms) What are pathogens? A BloodBorne Pathogen -10.521944047149148 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, Is, A BloodBorne Pathogen) -> A BloodBorne Pathogen (8909ms) What are pathogens? Bloodborne Pathogens Guidebook -10.58071964094118 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (Bloodborne Pathogens Guidebook, Edition Of, Bloodborne Pathogens Guidebook) -> Bloodborne Pathogens Guidebook (11929ms) What are pathogens? Annals -10.594156509768073 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, is, Annals) -> Annals (8908ms) What are pathogens? life -10.614322104620861 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogens, be a fact of, $x) -> (pathogens, are a fact of, life) -> life (6061ms) What are pathogens? healthy unbroken skin -10.65382952078208 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, is, healthy unbroken skin) -> healthy unbroken skin (8908ms) What are pathogens? A. terreus -10.669605073414894 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, A. terreus) -> A. terreus (8908ms) What are pathogens? a much better answers -10.675864235599212 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, a much better answers) -> a much better answers (8908ms) What are pathogens? Soilborne plant pathogens -10.690168747106812 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (Soilborne plant pathogens, Edition Of, Soilborne plant pathogens) -> Soilborne plant pathogens (11929ms) What are pathogens? Bacterial fish pathogens -10.690168747106812 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (Bacterial fish pathogens: disease in farmed and wild fish, Edition Of, Bacterial fish pathogens) -> Bacterial fish pathogens (11929ms) What are pathogens? disease causing organisms -10.707765576378806 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, disease causing organisms) -> disease causing organisms (8908ms) What are pathogens? Emerging Pathogens -10.728111103910898 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (Emerging Pathogens: Implications for the Future (Pharmanual (Chicago, Ill.).), Edition Of, Emerging Pathogens) -> Emerging Pathogens (12543ms) What are pathogens? Waterborne Pathogens -10.728111103910898 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Waterborne Pathogens: Selected Papers of the International Symposium on Waterborne Pathogens, Held in Lisbon, Portugal, 22-25 September 2002, Edition Of, Waterborne Pathogens) -> Waterborne Pathogens (13062ms) What are pathogens? Manure Pathogens -10.728111103910898 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Manure Pathogens, Edition Of, Manure Pathogens) -> Manure Pathogens (13062ms) What are pathogens? Plant Pathogens -10.728111103910898 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Plant Pathogens: The Nematodes, Edition Of, Plant Pathogens) -> Plant Pathogens (13062ms) What are pathogens? Emily Hagins -10.729279741268167 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, produce, $x) -> (Pathogen, Produced by, Emily Hagins) -> Emily Hagins (13383ms) What are pathogens? a huge public health challenge -10.743808626392688 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, is, a huge public health challenge) -> a huge public health challenge (8926ms) What are pathogens? such a unique creature -10.785996706905244 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogen, is, such a unique creature) -> such a unique creature (8926ms) What are pathogens? disease-producing micro-organisms -10.787203340424998 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, disease-producing micro-organisms) -> disease-producing micro-organisms (8926ms) What are pathogens? Have constant characteristics -10.787622195954977 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, Have constant characteristics) -> Have constant characteristics (8926ms) What are pathogens? a fairly recent phenomenon -10.7961151145149 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, is, a fairly recent phenomenon) -> a fairly recent phenomenon (8926ms) What are pathogens? Plant Pathogens: The Prokaryotes -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (Plant Pathogens: The Prokaryotes, Edition Of, Plant Pathogens) -> Plant Pathogens: The Prokaryotes (16707ms) What are pathogens? Second World Water Congress -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (Second World Water Congress: Environmental Monitoring, Contaminants and Pathogens (Water Science & Technology), Edition Of, Second World Water Congress) -> Second World Water Congress (14688ms) What are pathogens? Plant pathology and plant pathogens -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (Plant pathology and plant pathogens, Edition Of, Plant pathology and plant pathogens) -> Plant pathology and plant pathogens (16673ms) What are pathogens? Bacteria as plant pathogens -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Bacteria as plant pathogens, Edition Of, Bacteria as plant pathogens) -> Bacteria as plant pathogens (16673ms) What are pathogens? A list of Missouri fungi -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (A list of Missouri fungi; with special reference to plant pathogens and wood-destroying species, Edition Of, A list of Missouri fungi) -> A list of Missouri fungi (16600ms) What are pathogens? Theoretical studies in the evolution of human pathogens -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Theoretical studies in the evolution of human pathogens, Editions, Theoretical studies in the evolution of human pathogens) -> Theoretical studies in the evolution of human pathogens (16600ms) What are pathogens? Infectious Disease and Host-Pathogen Evolution -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Infectious Disease and Host-Pathogen Evolution, Editions, Infectious Disease and Host-Pathogen Evolution) -> Infectious Disease and Host-Pathogen Evolution (16707ms) What are pathogens? Pathogen specific immune responses in Caenorhabditis elegans -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Pathogen specific immune responses in Caenorhabditis elegans, Edition Of, Pathogen specific immune responses in Caenorhabditis elegans) -> Pathogen specific immune responses in Caenorhabditis elegans (16673ms) What are pathogens? Pathogens of marine plants -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (Pathogens of marine plants, Edition Of, Pathogens of marine plants) -> Pathogens of marine plants (16600ms) What are pathogens? Plant viruses, unique and intriguing pathogens -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (Plant viruses, unique and intriguing pathogens: a textbook of plant virology, Edition Of, Plant viruses, unique and intriguing pathogens) -> Plant viruses, unique and intriguing pathogens (14644ms) What are pathogens? Bloodborne Pathogens Clbpa CD-ROM -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (Bloodborne Pathogens Clbpa CD-ROM (System Requirements), Edition Of, Bloodborne Pathogens Clbpa CD-ROM) -> Bloodborne Pathogens Clbpa CD-ROM (16106ms) What are pathogens? Physiology of Pathogen -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (Physiology of Pathogen, Editions, Physiology of Pathogen) -> Physiology of Pathogen (16707ms) What are pathogens? An investigation into the basis of resistance in rice towards the rice blast pathogen, pyricularia oryzae, using tissue culture -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (An investigation into the basis of resistance in rice towards the rice blast pathogen, pyricularia oryzae, using tissue culture, Editions, An investigation into the basis of resistance in rice towards the rice blast pathogen, pyricularia oryzae, using tissue culture) -> An investigation into the basis of resistance in rice towards the rice blast pathogen, pyricularia oryzae, using tissue culture (16566ms) What are pathogens? Emerging Pathogens: Implications for the Future (Pharmanual (Chicago, Ill.).) -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (Emerging Pathogens: Implications for the Future (Pharmanual (Chicago, Ill.).), Edition Of, Emerging Pathogens) -> Emerging Pathogens: Implications for the Future (Pharmanual (Chicago, Ill.).) (16707ms) What are pathogens? McGraw-Hill Professional -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (McGraw-Hill Professional, Book editions published, Manure Pathogens) -> McGraw-Hill Professional (14373ms) What are pathogens? Plant pathogen detection and disease diagnosis -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Plant pathogen detection and disease diagnosis, Editions, Plant pathogen detection and disease diagnosis) -> Plant pathogen detection and disease diagnosis (16640ms) What are pathogens? Plant pathogens and their control in horticulture -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (Plant pathogens and their control in horticulture, Editions, Plant pathogens and their control in horticulture) -> Plant pathogens and their control in horticulture (16468ms) What are pathogens? Water treatment and pathogen control process efficiency in achieving safe drinking-water -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (Water treatment and pathogen control process efficiency in achieving safe drinking-water, Edition Of, Water treatment and pathogen control) -> Water treatment and pathogen control process efficiency in achieving safe drinking-water (14488ms) What are pathogens? Pathogens of Soybean Seeds -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (Pathogens of Soybean Seeds: Bibliography, Edition Of, Pathogens of Soybean Seeds) -> Pathogens of Soybean Seeds (16468ms) What are pathogens? Pathogen survival in sludge stabilization processes -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (Pathogen survival in sludge stabilization processes, Editions, Pathogen survival in sludge stabilization processes) -> Pathogen survival in sludge stabilization processes (16468ms) What are pathogens? Host/pathogen interactions : a study of Y. pseudotuberculosis pathogenesis and host immune response -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition of, pathogen) -> (Host/pathogen interactions : a study of Y. pseudotuberculosis pathogenesis and host immune response, Edition Of, Host/pathogen interactions) -> Host/pathogen interactions : a study of Y. pseudotuberculosis pathogenesis and host immune response (16640ms) What are pathogens? Host/pathogen interactions -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Host/pathogen interactions : a study of Y. pseudotuberculosis pathogenesis and host immune response, Edition Of, Host/pathogen interactions) -> Host/pathogen interactions (14724ms) What are pathogens? Cell wall deficient forms -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (Cell wall deficient forms, Editions, Cell wall deficient forms: stealth pathogens) -> Cell wall deficient forms (15766ms) What are pathogens? At the surface of host-pathogen interactions in toxoplasma gondii infections -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (At the surface of host-pathogen interactions in toxoplasma gondii infections, Edition Of, At the surface of host-pathogen interactions in toxoplasma gondii infections) -> At the surface of host-pathogen interactions in toxoplasma gondii infections (16673ms) What are pathogens? OSHA Bloodborne Pathogens Library Edition -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (OSHA Bloodborne Pathogens Library Edition: Introductory but Comprehensive OSHA Training for the Managers and Employees, Edition Of, OSHA Bloodborne Pathogens Library Edition) -> OSHA Bloodborne Pathogens Library Edition (13976ms) What are pathogens? Function and maintenance of unidirectional actin-based motility in two bacterial pathogens -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (Function and maintenance of unidirectional actin-based motility in two bacterial pathogens, Edition Of, Function and maintenance of unidirectional actin-based motility in two bacterial pathogens) -> Function and maintenance of unidirectional actin-based motility in two bacterial pathogens (14488ms) What are pathogens? Diagnostic manual for the identification of insect pathogens -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (Diagnostic manual for the identification of insect pathogens, Editions, Diagnostic manual for the identification of insect pathogens) -> Diagnostic manual for the identification of insect pathogens (16640ms) What are pathogens? Water treatment and pathogen control -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (Water treatment and pathogen control process efficiency in achieving safe drinking-water, Edition Of, Water treatment and pathogen control) -> Water treatment and pathogen control (14488ms) What are pathogens? The OSHA handbook -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (The OSHA handbook: guidelines for compliance in healthcare facilities and interpretive guidelines for the bloodborne pathogen standard, Edition Of, The OSHA handbook) -> The OSHA handbook (14819ms) What are pathogens? Plant viruses, unique and intriguing pathogens: a textbook of plant virology -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (Plant viruses, unique and intriguing pathogens: a textbook of plant virology, Edition Of, Plant viruses, unique and intriguing pathogens) -> Plant viruses, unique and intriguing pathogens: a textbook of plant virology (14724ms) What are pathogens? Pathogens of Soybean Seeds: Bibliography -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Pathogens of Soybean Seeds, Editions, Pathogens of Soybean Seeds: Bibliography) -> Pathogens of Soybean Seeds: Bibliography (14762ms) What are pathogens? Interstate Transportation of Human Pathogens -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Interstate Transportation of Human Pathogens: Hearing Before the Committee on the Judiciary, U.S. Senate, Edition Of, Interstate Transportation of Human Pathogens) -> Interstate Transportation of Human Pathogens (16468ms) What are pathogens? Subviral Pathogens of Plants and Animals: Viroids and Prions -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Subviral Pathogens of Plants and Animals, Editions, Subviral Pathogens of Plants and Animals: Viroids and Prions) -> Subviral Pathogens of Plants and Animals: Viroids and Prions (14644ms) What are pathogens? Evaluation of the Doodlebug -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (Evaluation of the Doodlebug: A Biochip for Detecting Waterborne Pathogens, Edition Of, Evaluation of the Doodlebug) -> Evaluation of the Doodlebug (16707ms) What are pathogens? Plant-fungal pathogen interaction : a classical and molecular view -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Plant-fungal pathogen interaction, Editions, Plant-fungal pathogen interaction : a classical and molecular view) -> Plant-fungal pathogen interaction : a classical and molecular view (16640ms) What are pathogens? Bacterial fish pathogens disease of farmed and wild fish -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Bacterial fish pathogens, Editions, Bacterial fish pathogens disease of farmed and wild fish) -> Bacterial fish pathogens disease of farmed and wild fish (16566ms) What are pathogens? Bacterial pathogens exploit normal host cell processes to cause gastrointestinal disease -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition of, pathogen) -> (Bacterial pathogens exploit normal host cell processes to cause gastrointestinal disease, Edition Of, Bacterial pathogens exploit normal host cell processes to cause gastrointestinal disease) -> Bacterial pathogens exploit normal host cell processes to cause gastrointestinal disease (16743ms) What are pathogens? Physiology and biochemistry of plant-pathogen interactions -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Physiology and biochemistry of plant-pathogen interactions, Editions, Physiology and biochemistry of plant-pathogen interactions) -> Physiology and biochemistry of plant-pathogen interactions (15023ms) What are pathogens? Bacterial fish pathogens: disease in farmed and wild fish -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Bacterial fish pathogens, Editions, Bacterial fish pathogens: disease in farmed and wild fish) -> Bacterial fish pathogens: disease in farmed and wild fish (16073ms) What are pathogens? Subviral Pathogens of Plants and Animals -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Subviral Pathogens of Plants and Animals: Viroids and Prions, Edition Of, Subviral Pathogens of Plants and Animals) -> Subviral Pathogens of Plants and Animals (14373ms) What are pathogens? Laboratory guide to insect pathogens and parasites -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (Laboratory guide to insect pathogens and parasites, Edition Of, Laboratory guide to insect pathogens and parasites) -> Laboratory guide to insect pathogens and parasites (16743ms) What are pathogens? Interstate Transportation of Human Pathogens: Hearing Before the Committee on the Judiciary, U.S. Senate -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition of, pathogen) -> (Interstate Transportation of Human Pathogens: Hearing Before the Committee on the Judiciary, U.S. Senate, Edition Of, Interstate Transportation of Human Pathogens) -> Interstate Transportation of Human Pathogens: Hearing Before the Committee on the Judiciary, U.S. Senate (16566ms) What are pathogens? Evolution and genomics of the classical Bordetella respiratory pathogens -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (Evolution and genomics of the classical Bordetella respiratory pathogens, Edition Of, Evolution and genomics of the classical Bordetella respiratory pathogens) -> Evolution and genomics of the classical Bordetella respiratory pathogens (16707ms) What are pathogens? Molecular biology in plant pathogenesis and disease management -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Postharvest pathogens and disease management, Editions, Molecular biology in plant pathogenesis and disease management) -> Molecular biology in plant pathogenesis and disease management (16743ms) What are pathogens? Plant Resistance to Microbial Pathogens -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition of, pathogen) -> (Plant Resistance to Microbial Pathogens, Edition Of, Plant Resistance to Microbial Pathogens) -> Plant Resistance to Microbial Pathogens (16468ms) What are pathogens? Bloodborne Pathogens Clbpa CD-ROM (System Requirements) -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Bloodborne Pathogens Clbpa CD-ROM, Editions, Bloodborne Pathogens Clbpa CD-ROM (System Requirements)) -> Bloodborne Pathogens Clbpa CD-ROM (System Requirements) (16707ms) What are pathogens? Plant Pathogens: The Nematodes -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Plant Pathogens, Editions, Plant Pathogens: The Nematodes) -> Plant Pathogens: The Nematodes (16673ms) What are pathogens? Host-pathogen interactions in plant disease -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (Host-pathogen interactions in plant disease, Editions, Host-pathogen interactions in plant disease) -> Host-pathogen interactions in plant disease (16706ms) What are pathogens? Plant-fungal pathogen interaction -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (Plant-fungal pathogen interaction, Editions, Plant-fungal pathogen interaction : a classical and molecular view) -> Plant-fungal pathogen interaction (16673ms) What are pathogens? An online CAL system for teaching infection/diagnosis of bacterial pathogens commonly found in the intestinal tract -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (An online CAL system for teaching infection/diagnosis of bacterial pathogens commonly found in the intestinal tract, Editions, An online CAL system for teaching infection/diagnosis of bacterial pathogens commonly found in the intestinal tract) -> An online CAL system for teaching infection/diagnosis of bacterial pathogens commonly found in the intestinal tract (16640ms) What are pathogens? Postharvest pathogens and disease management -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (Postharvest pathogens and disease management, Edition Of, Postharvest pathogens and disease management) -> Postharvest pathogens and disease management (16743ms) What are pathogens? Precautions for Work with Human and Animal Transmissable Spongiform Encephalopathies -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (Precautions for Work with Human and Animal Transmissable Spongiform Encephalopathies (Advisory Committee on Dangerous Pathogens), Edition Of, Precautions for Work with Human and Animal Transmissable Spongiform Encephalopathies) -> Precautions for Work with Human and Animal Transmissable Spongiform Encephalopathies (16743ms) What are pathogens? Assessment of Pathogens Transmissible by Blood -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (Assessment of Pathogens Transmissible by Blood: Statements of the German National Advisory Committee (Transfusion Medicine & Hemotherapy), Edition Of, Assessment of Pathogens Transmissible by Blood) -> Assessment of Pathogens Transmissible by Blood (15088ms) What are pathogens? Plant pathogens : the plant parasitic nematodes -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (Plant pathogens : the plant parasitic nematodes, Edition Of, Plant Pathogens) -> Plant pathogens : the plant parasitic nematodes (16566ms) What are pathogens? Epidemological Relations of Bacterial Plant Pathogens -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (Epidemological Relations of Bacterial Plant Pathogens, Edition Of, Epidemological Relations of Bacterial Plant Pathogens) -> Epidemological Relations of Bacterial Plant Pathogens (16640ms) What are pathogens? Assessment of Pathogens Transmissible by Blood: Statements of the German National Advisory Committee (Transfusion Medicine & Hemotherapy) -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Assessment of Pathogens Transmissible by Blood, Editions, Assessment of Pathogens Transmissible by Blood: Statements of the German National Advisory Committee (Transfusion Medicine & Hemotherapy)) -> Assessment of Pathogens Transmissible by Blood: Statements of the German National Advisory Committee (Transfusion Medicine & Hemotherapy) (16673ms) What are pathogens? Overcoming Molecular Sample Processing Limitations -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (Overcoming Molecular Sample Processing Limitations: WERF Report Pathogens and Indicators (WERF Report Series), Edition Of, Overcoming Molecular Sample Processing Limitations) -> Overcoming Molecular Sample Processing Limitations (14373ms) What are pathogens? Microbial Plant Pathogens and Crop Disease Management -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (Microbial Plant Pathogens and Crop Disease Management, Editions, Microbial Plant Pathogens and Crop Disease Management) -> Microbial Plant Pathogens and Crop Disease Management (16566ms) What are pathogens? OSHA Bloodborne Pathogens Library Edition: Introductory but Comprehensive OSHA Training for the Managers and Employees -10.812386915658436 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition of, pathogen) -> (OSHA Bloodborne Pathogens Library Edition: Introductory but Comprehensive OSHA Training for the Managers and Employees, Edition Of, OSHA Bloodborne Pathogens Library Edition) -> OSHA Bloodborne Pathogens Library Edition: Introductory but Comprehensive OSHA Training for the Managers and Employees (16106ms) What are pathogens? any foreign organisms -10.814148104201644 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, any foreign organisms) -> any foreign organisms (8926ms) What are pathogens? a scientifically impossible goal -10.820872649959373 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, is, a scientifically impossible goal) -> a scientifically impossible goal (8952ms) What are pathogens? disease causing bacteria -10.821762529657267 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, disease causing bacteria) -> disease causing bacteria (8952ms) What are pathogens? viruses gram positive pneumococcal pneumonia -10.822959037354146 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, viruses gram positive pneumococcal pneumonia) -> viruses gram positive pneumococcal pneumonia (8952ms) What are pathogens? one example -10.85088885445698 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, is, one example) -> one example (8952ms) What are pathogens? a normal and natural part -10.887505487870914 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, a normal and natural part) -> a normal and natural part (8952ms) What are pathogens? such external influences -10.931536333736794 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, were believed to be, such external influences) -> such external influences (8952ms) What are pathogens? politicaly significant and relevant -10.949965550992912 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, politicaly significant and relevant) -> politicaly significant and relevant (8970ms) What are pathogens? indirect detriments -10.965372085865653 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, indirect detriments) -> indirect detriments (8971ms) What are pathogens? larger microorganisms -10.974606307074211 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, larger microorganisms) -> larger microorganisms (8970ms) What are pathogens? an important step -10.991341771971399 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, is, an important step) -> an important step (8971ms) What are pathogens? false security -10.999363842518687 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, is, false security) -> false security (8971ms) What are pathogens? 93.2 % -11.014351267981622 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogen, were, 93.2 %) -> 93.2 % (8970ms) What are pathogens? Bloodborne pathogens -11.015597422772627 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition of, $x) -> (Bloodborne pathogens, Edition Of, Bloodborne pathogens) -> Bloodborne pathogens (16775ms) What are pathogens? Raw milk -11.023232709676947 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (Raw milk, is a known source of, life-threatening pathogens) -> Raw milk (9555ms) What are pathogens? a general nuisance -11.037555961567508 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, be, a general nuisance) -> a general nuisance (9040ms) What are pathogens? 40-200 gamma / -11.050202569301078 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, 40-200 gamma /) -> 40-200 gamma / (9040ms) What are pathogens? a debilitated state -11.11981183177468 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, is, a debilitated state) -> a debilitated state (9040ms) What are pathogens? an excellent medium -11.121711058496743 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, is, an excellent medium) -> an excellent medium (9040ms) What are pathogens? Foodborne Disease Handbook, Volume 1 -11.204944376439173 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (Foodborne Disease Handbook, Volume 1, Editions, Foodborne Disease Handbook, Volume 1: Bacterial Pathogens (FOODBORNE DISEASE HANDBOOK)) -> Foodborne Disease Handbook, Volume 1 (16961ms) What are pathogens? Waterborne Pathogens, 2nd Edition -11.204944376439173 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (Waterborne Pathogens, 2nd Edition, Editions, Waterborne Pathogens, 2nd Edition (Awwa Manual)) -> Waterborne Pathogens, 2nd Edition (16961ms) What are pathogens? Course Reader for CEE-274E: Pathogens in the Environment -11.204944376439173 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition of, pathogen) -> (Course Reader for CEE-274E: Pathogens in the Environment, Edition Of, Course Reader for CEE-274E: Pathogens in the Environment) -> Course Reader for CEE-274E: Pathogens in the Environment (16900ms) What are pathogens? Waterborne Pathogens, 2nd Edition (Awwa Manual) -11.204944376439173 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Waterborne Pathogens, 2nd Edition, Editions, Waterborne Pathogens, 2nd Edition (Awwa Manual)) -> Waterborne Pathogens, 2nd Edition (Awwa Manual) (16900ms) What are pathogens? ?Raw milk -11.264220962933669 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (?Raw milk, is a known source of, life-threatening pathogens) -> ?Raw milk (9555ms) What are pathogens? Present -11.274021105537727 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogen, is, Present) -> Present (9040ms) What are pathogens? young people -11.288486076648917 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, go, $x) -> (a pathogen, is going to kill, young people) -> young people (9040ms) What are pathogens? Colloidal Silver -11.289898384978077 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (Colloidal Silver, is known to kill, 650 pathogens) -> Colloidal Silver (9555ms) What are pathogens? state-certified labs -11.298542930696154 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (pathogens, should be done at, state-certified labs) -> state-certified labs (9146ms) What are pathogens? a potential hazard -11.301072362900456 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, a potential hazard) -> a potential hazard (9146ms) What are pathogens? a great job -11.306601468979514 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (fungal pathogens, can do, a great job) -> a great job (9146ms) What are pathogens? The Pathogen -11.33810745560736 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (The Pathogen, Editions, The Pathogen) -> The Pathogen (16961ms) What are pathogens? OMV -11.33872771361238 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: ($x, be in, pathogen) -> (OMV, has been extensively studied only in, pathogens) -> OMV (17000ms) What are pathogens? White blood cells -11.351988682093099 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: ($x, be in, pathogen) -> (White blood cells, are involved in fighting, pathogens) -> White blood cells (17000ms) What are pathogens? leverage -11.35316962679148 What are pathogens? -> $x: (pathogens, instance of, $x) -> $x: (pathogens, modelling, $x) -> (pathogen transmission, is a great model to, leverage) -> leverage (6085ms) What are pathogens? M hominis -11.398586379136074 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (M hominis, are known, pathogens) -> M hominis (9555ms) What are pathogens? West Nile virus -11.406300409220739 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: ($x, be in, pathogen) -> (West Nile virus, are important in, amplifying the pathogen) -> West Nile virus (17000ms) What are pathogens? subject to natural selection -11.421936696694125 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, subject to natural selection) -> subject to natural selection (9146ms) What are pathogens? HIV-infection -11.46772249404222 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: ($x, be in, pathogen) -> (HIV-infection, is seen in almost, all infectious pathogens) -> HIV-infection (17000ms) What are pathogens? S. aureus -11.497624261335808 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogen, is, S. aureus) -> S. aureus (9146ms) What are pathogens? Prions -11.504105266625237 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: (pathogen, edition, $x) -> (Prions: Novel Infectious Pathogens Causing Scrapie and Creutzfeldt-Jakob Disease, Edition Of, Prions) -> Prions (16999ms) What are pathogens? CMV -11.507790547593371 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: ($x, instance of, pathogen) -> (CMV, Instance Of, pathogen) -> CMV (17000ms) What are pathogens? Dictyostelium -11.521008884259638 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (pathogens, could be done in, Dictyostelium) -> Dictyostelium (9146ms) What are pathogens? transmissible to humans -11.525197597567379 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, transmissible to humans) -> transmissible to humans (9555ms) What are pathogens? cruise ships -11.53770381433145 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (cruise ships, are known to contain, many pathogens) -> cruise ships (9555ms) What are pathogens? deadly to birds -11.54559871643133 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, deadly to birds) -> deadly to birds (9742ms) What are pathogens? harmful to humans -11.54559871643133 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, harmful to humans) -> harmful to humans (9742ms) What are pathogens? a few days -11.606904894083197 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, go, $x) -> (Campy pathogens, will be gone within, a few days) -> a few days (9742ms) What are pathogens? Waterborne Pathogens: Selected Papers of the International Symposium on Waterborne Pathogens, Held in Lisbon, Portugal, 22-25 September 2002 -11.608811578190359 What are pathogens? -> what be [ pathogen ] ? -> what be the expansion of pathogen ? -> $x: (pathogen, expansion, $x) -> $x: ($x, edition, pathogen) -> (Waterborne Pathogens: Selected Papers of the International Symposium on Waterborne Pathogens, Held in Lisbon, Portugal, 22-25 September 2002, Edition Of, Waterborne Pathogens) -> Waterborne Pathogens: Selected Papers of the International Symposium on Waterborne Pathogens, Held in Lisbon, Portugal, 22-25 September 2002 (17000ms) What are pathogens? Bacteria -11.652710264966787 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (Bacteria, are known as, pathogens) -> Bacteria (9742ms) What are pathogens? MLOs -11.67059568247952 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (MLOs, are well known, plant pathogens) -> MLOs (9742ms) What are pathogens? present in the water -11.681734125112882 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, may be, present in the water) -> present in the water (9742ms) What are pathogens? Retroviruses -11.68670202161982 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (Retroviruses, are well known, pathogens) -> Retroviruses (9814ms) What are pathogens? Abstract Ticks -11.731094163845807 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (Abstract Ticks, are well-known vectors of, various pathogens) -> Abstract Ticks (9815ms) What are pathogens? present on or in the seed -11.74439323982326 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, present on or in the seed) -> present on or in the seed (9815ms) What are pathogens? C. albicans -11.751707764179967 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (C. albicans, is known to be, a major pathogen) -> C. albicans (9814ms) What are pathogens? present in the raw milk -11.768365748819324 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, may have been, present in the raw milk) -> present in the raw milk (9814ms) What are pathogens? a new means -11.820801241671207 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (potential pathogens, was done using, a new means) -> a new means (9815ms) What are pathogens? Alum -11.821730970924996 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (Alum, is known to reduce, pathogens) -> Alum (9831ms) What are pathogens? E. ewingii -11.834901841925644 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (E. ewingii, was previously known as, a canine pathogen) -> E. ewingii (9831ms) What are pathogens? Seoul viruses -11.840573472216818 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (Seoul viruses, are known, human pathogens) -> Seoul viruses (9831ms) What are pathogens? Europe -11.844058167439163 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (Europe, is known to transmit, these pathogens) -> Europe (9831ms) What are pathogens? cell growth -11.85436324534151 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (pathogen cells, does inhibit, cell growth) -> cell growth (9831ms) What are pathogens? a snap -11.868176570478472 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (our pathogen enemies, can be done in, a snap) -> a snap (9831ms) What are pathogens? paper logs -11.87358742663364 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (pathogens, is done on, paper logs) -> paper logs (9847ms) What are pathogens? cause disease -11.890624591155193 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are microorganisms that, cause disease) -> cause disease (9847ms) What are pathogens? a normal gut flora -11.924861554718966 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (a normal gut flora, are free of known, mouse pathogens) -> a normal gut flora (9847ms) What are pathogens? 25 % -11.933607411436013 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (25 %, are known, plant pathogens) -> 25 % (9848ms) What are pathogens? a very long time -11.941866135367071 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (the pathogen, have been doing this for, a very long time) -> a very long time (9847ms) What are pathogens? resistant to these antibiotics -11.955471529738253 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, resistant to these antibiotics) -> resistant to these antibiotics (9847ms) What are pathogens? a part -11.965804231795573 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (a part, is known as, the Th1 bacterial pathogens) -> a part (9867ms) What are pathogens? a ?Doctrine -11.98486042035034 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (these pathogens, do indeed have, a ?Doctrine) -> a ?Doctrine (9867ms) What are pathogens? a reverse -11.993643717580413 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (a mildew or pathogen ?, need to do, a reverse) -> a reverse (9867ms) What are pathogens? a very different manner -12.008177213956072 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (pathogens, do so in, a very different manner) -> a very different manner (9867ms) What are pathogens? Rickettsia bacteria -12.025435369776531 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (Rickettsia bacteria, are well known, pathogens) -> Rickettsia bacteria (9866ms) What are pathogens? not much information -12.025888581570367 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (not much information, is known about, the pathogen?s reservoirs) -> not much information (9867ms) What are pathogens? harmful to human health -12.031149710520285 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, harmful to human health) -> harmful to human health (9883ms) What are pathogens? the HSE -12.033818935801643 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (this pathogen, do, the HSE) -> the HSE (9883ms) What are pathogens? irrigation water -12.051172354125054 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (pathogens, can be done with, irrigation water) -> irrigation water (9883ms) What are pathogens? academic centers -12.056835040105977 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (these pathogens, could be done in, academic centers) -> academic centers (9883ms) What are pathogens? pink slime -12.069679005217825 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (pink slime, are known to, harbor pathogens) -> pink slime (9883ms) What are pathogens? the MPs -12.085167000322334 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (nosocomial pathogen colonization, do, the MPs) -> the MPs (9883ms) What are pathogens? more than 8,000 species -12.08938036213333 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (more than 8,000 species, are known, plant pathogens) -> more than 8,000 species (9883ms) What are pathogens? Pestalotiopsis theae -12.09373732814435 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (Pestalotiopsis theae, is commonly known as, a pathogen) -> Pestalotiopsis theae (9883ms) What are pathogens? Stressed animals -12.105331161811407 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (Stressed animals, are known to produce, pathogens) -> Stressed animals (9916ms) What are pathogens? a century -12.118315633906175 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, go, $x) -> (pathogens, have gone undetected for, a century) -> a century (9916ms) What are pathogens? Burkholderia species -12.129105205806571 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (Burkholderia species, are generally known as, plant pathogens) -> Burkholderia species (9916ms) What are pathogens? selective enrichment -12.130322765086513 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (the pathogen, was done using, selective enrichment) -> selective enrichment (9916ms) What are pathogens? great caution -12.136412870250567 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (a pathogen, should be done with, great caution) -> great caution (9916ms) What are pathogens? academic settings -12.148806571842249 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (highly virulent pathogens, will be done in, academic settings) -> academic settings (9916ms) What are pathogens? 10 % -12.155541096737476 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (10 %, are known, animal pathogens) -> 10 % (9916ms) What are pathogens? canker fungi -12.169036830661467 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (canker fungi, are known as, stress pathogens) -> canker fungi (9916ms) What are pathogens? the United States -12.1825251058198 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (dangerous pathogens, as is being done in, the United States) -> the United States (9935ms) What are pathogens? human breast milk -12.206023276207539 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (pathogens, so does, human breast milk) -> human breast milk (9935ms) What are pathogens? threats to wildlife -12.26141134098453 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are growing, threats to wildlife) -> threats to wildlife (9935ms) What are pathogens? diseases -12.262443119248221 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, diseases) -> diseases (9935ms) What are pathogens? disease -12.281960051711078 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, Is, disease) -> disease (9935ms) What are pathogens? medically relevant -12.282202879555138 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, medically relevant) -> medically relevant (9935ms) What are pathogens? present in the body -12.305958860610875 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, may be, present in the body) -> present in the body (9935ms) What are pathogens? a class setting -12.321872693596744 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (Bloodborne Pathogens, is done in, a class setting) -> a class setting (9935ms) What are pathogens? the Rps genes -12.332350155676366 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (This pathogen, does adapt to, the Rps genes) -> the Rps genes (9953ms) What are pathogens? different than normal body tissue -12.343546400826295 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, different than normal body tissue) -> different than normal body tissue (9953ms) What are pathogens? the New World -12.346889547993797 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (Those pathogens, did n?t cross the ocean to, the New World) -> the New World (9953ms) What are pathogens? warm , moist conditions -12.361036688518228 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (Bacterial pathogens, do well in, warm , moist conditions) -> warm , moist conditions (9953ms) What are pathogens? present in the tap water in many countries -12.37756443250054 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, may be, present in the tap water in many countries) -> present in the tap water in many countries (9953ms) What are pathogens? microbes -12.37922182068678 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, microbes) -> microbes (9953ms) What are pathogens? fungicides -12.429621077976822 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, fungicides) -> fungicides (9953ms) What are pathogens? likely to survive for extended periods of time -12.440089064879068 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, likely to survive for extended periods of time) -> likely to survive for extended periods of time (9953ms) What are pathogens? subunit vaccines -12.440567491271695 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (pathogen biology, do, subunit vaccines) -> subunit vaccines (9970ms) What are pathogens? rectal swabs -12.440567491271695 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (enteric pathogens, do, rectal swabs) -> rectal swabs (9970ms) What are pathogens? the main problem -12.476551349747389 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, is, the main problem) -> the main problem (9971ms) What are pathogens? organisms -12.489621327409136 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, organisms) -> organisms (9970ms) What are pathogens? the most immediate danger -12.54130530484617 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, is, the most immediate danger) -> the most immediate danger (9970ms) What are pathogens? the most abundant -12.544306914905091 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, the most abundant) -> the most abundant (9970ms) What are pathogens? the exact phrase -12.557962120821427 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, was, the exact phrase) -> the exact phrase (9970ms) What are pathogens? dried blood -12.57054457870633 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (Bloodborne pathogens, do live in, dried blood) -> dried blood (9970ms) What are pathogens? fish farms -12.605847940943592 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (pathogens, do sometimes become established in, fish farms) -> fish farms (9987ms) What are pathogens? bacteria -12.622868177734128 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, bacteria) -> bacteria (9987ms) What are pathogens? the 1980 -12.639333991239617 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, men, $x) -> (a single pathogen theory, was killing gay men in, the 1980) -> the 1980 (9987ms) What are pathogens? the maintenance -12.646086102987585 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, is, the maintenance) -> the maintenance (9987ms) What are pathogens? the pathogen causing diabetes or hypertension -12.64628626328897 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, is, the pathogen causing diabetes or hypertension) -> the pathogen causing diabetes or hypertension (9987ms) What are pathogens? a level 3 -12.653968801765267 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogen, is clasified, a level 3) -> a level 3 (9987ms) What are pathogens? Curvularia -12.668995798398534 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (Curvularia, is known to be, a plant pathogen) -> Curvularia (9987ms) What are pathogens? the relationship -12.710960184467806 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, is, the relationship) -> the relationship (9987ms) What are pathogens? a dormant stage -12.723597722194857 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are in, a dormant stage) -> a dormant stage (10166ms) What are pathogens? 1 or 2 pathways -12.726184001948907 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, go, $x) -> (organ pathogens, can go on, 1 or 2 pathways) -> 1 or 2 pathways (10166ms) What are pathogens? vein -12.770555220173293 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogen, is a, vein) -> vein (10166ms) What are pathogens? sicknesses -12.912119015093337 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, sicknesses) -> sicknesses (10166ms) What are pathogens? present -12.927405524346863 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are be, present) -> present (10166ms) What are pathogens? examples -12.984813810123013 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, examples) -> examples (10166ms) What are pathogens? agents -12.998961003349738 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, agents) -> agents (10166ms) What are pathogens? microorganisms -13.104672489947994 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (Pathogens, are, microorganisms) -> microorganisms (10166ms) What are pathogens? The viruses -13.381038332095944 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (The viruses, were already known included, human pathogens) -> The viruses (10218ms) What are pathogens? the growing child -13.415185806520755 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, go, $x) -> (pathogens, are going directly to, the growing child) -> the growing child (10218ms) What are pathogens? winter -13.429451900529633 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, go, $x) -> (pathogen, is going to, winter) -> winter (10218ms) What are pathogens? the causes of disease -13.47118879446866 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, the causes of disease) -> the causes of disease (10218ms) What are pathogens? lice -13.523935015333059 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (lice, are known, pathogen vectors) -> lice (10218ms) What are pathogens? so -13.56535805477377 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (The majority of pathogens, do, so) -> so (10218ms) What are pathogens? the meat industry -13.59092769354038 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (food-borne pathogens, is to do away with, the meat industry) -> the meat industry (10218ms) What are pathogens? us harm -13.616147758626957 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (Pollution , chemicals , noise and pathogens, can do, us harm) -> us harm (10360ms) What are pathogens? the system -13.624545264471923 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, go, $x) -> (pathogens, are going into, the system) -> the system (10360ms) What are pathogens? the genus Veronica -13.636844491983208 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (the genus Veronica, are the only known host of, this pathogen) -> the genus Veronica (10360ms) What are pathogens? microscopic -13.745914311830301 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, are, microscopic) -> microscopic (10360ms) What are pathogens? the immune system -13.747597674651262 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (the immune system, is known as, an ?opportunistic? pathogen) -> the immune system (10360ms) What are pathogens? the twenty-teens -13.749984077030536 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, go, $x) -> (Pathogen marketing, is going to be hot in, the twenty-teens) -> the twenty-teens (10360ms) What are pathogens? The bad bacteria -13.767953975737173 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (The bad bacteria, are known as, pathogens) -> The bad bacteria (10360ms) What are pathogens? bacterial -13.769809909058152 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogen, is, bacterial) -> bacterial (10377ms) What are pathogens? The rust fungus -13.774123582897928 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (The rust fungus, is known as, a ?macrocyclic? pathogen) -> The rust fungus (10377ms) What are pathogens? cloth -13.78884531045557 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (cloth, is known to, harbour pathogens) -> cloth (10377ms) What are pathogens? you sick -13.849456160472569 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (The pathogens, do make, you sick) -> you sick (10377ms) What are pathogens? the initiation -13.85740725388142 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (pathogens, is to be done prior to, the initiation) -> the initiation (10377ms) What are pathogens? the job -13.868769879312119 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (updated pathogen definitions, will do, the job) -> the job (10377ms) What are pathogens? dangerous -13.88015982957338 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, be, $x) -> (pathogens, can be, dangerous) -> dangerous (10377ms) What are pathogens? the disease -13.902226407385374 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (the pathogen, little can be done to control, the disease) -> the disease (10583ms) What are pathogens? blood -13.904089229803452 What are pathogens? -> what [ be pathogen ] ? -> what be know be pathogen ? -> $x: ($x, be know be, pathogen) -> (blood, has even been known to, harbor various pathogens) -> blood (10584ms) What are pathogens? market -13.964251834956515 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, go, $x) -> (pathogens, can?t go to, market) -> market (10584ms) What are pathogens? soil -13.989893556802086 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, go, $x) -> (this pathogen, goes through, soil) -> soil (10584ms) What are pathogens? parrots -14.093344735990055 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (other food-borne pathogens, do affect, parrots) -> parrots (10583ms) What are pathogens? nurses -14.106607690113387 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (pathogens, did, nurses) -> nurses (10583ms) What are pathogens? the incidence -14.111947551667683 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (pathogens, does seem to increase, the incidence) -> the incidence (10583ms) What are pathogens? the host -14.114600163573268 What are pathogens? -> what be [ pathogen ] ? -> what be the mening of pathogen ? -> $x: (pathogen, mening, $x) -> $x: (pathogen, do, $x) -> (Most pathogens, do better by letting, the host) -> the host (10584ms) How tall is St. Peter's Basilica? 183 meters -11.500860383878052 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, is about, 183 meters) -> 183 meters (5015ms) How tall is St. Peter's Basilica? 324 -11.698936899712635 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, was first built in, 324) -> 324 (5015ms) How tall is St. Peter's Basilica? William Glisson Jr. ?99 -11.884081592110679 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (William Glisson Jr. ?99, was at, St . Peter?s Basilica) -> William Glisson Jr. ?99 (5633ms) How tall is St. Peter's Basilica? Gian Lorenzo Bernini -11.951896425473723 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, was designed by, Gian Lorenzo Bernini) -> Gian Lorenzo Bernini (5015ms) How tall is St. Peter's Basilica? Rome -12.125426864406458 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, is currently in, Rome) -> Rome (5015ms) How tall is St. Peter's Basilica? the Vatican -12.152525560369563 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, was confirmed by, the Vatican) -> the Vatican (5015ms) How tall is St. Peter's Basilica? 1614 -12.153577037948578 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St Peter?s Basilica, was completed in, 1614) -> 1614 (5053ms) How tall is St. Peter's Basilica? Pope Benedict -12.169409073365115 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, will be baptized by, Pope Benedict) -> Pope Benedict (5053ms) How tall is St. Peter's Basilica? Vatican City -12.228566539505177 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, is located in, Vatican City) -> Vatican City (5053ms) How tall is St. Peter's Basilica? Pope Leo X -12.291269109314612 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (Pope Leo X, was financing the building of, St . Peter?s Basilica) -> Pope Leo X (5633ms) How tall is St. Peter's Basilica? St . Peter -12.348090863183717 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (St . Peter, had indeed been found beneath, St . Peter?s Basilica) -> St . Peter (5633ms) How tall is St. Peter's Basilica? a runway -12.408145634870888 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, is being turned into, a runway) -> a runway (5053ms) How tall is St. Peter's Basilica? a construction site -12.460207453495975 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, was essentially, a construction site) -> a construction site (5053ms) How tall is St. Peter's Basilica? the Colosseum -12.479961539797223 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (the Colosseum, then was moved to, St . Peter?s Basilica) -> the Colosseum (5731ms) How tall is St. Peter's Basilica? a pile -12.487723412313184 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, is reduced to, a pile) -> a pile (5053ms) How tall is St. Peter's Basilica? foot -12.488072081175368 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St Peter?s Basilica, can be reached on, foot) -> foot (5232ms) How tall is St. Peter's Basilica? an annual event -12.52860215370638 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, is, an annual event) -> an annual event (5232ms) How tall is St. Peter's Basilica? The Vatican -12.541855378408409 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (The Vatican, is home to, the famous St . Peter?s Basilica) -> The Vatican (5729ms) How tall is St. Peter's Basilica? a large brazier full -12.606675854835455 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, there was, a large brazier full) -> a large brazier full (5231ms) How tall is St. Peter's Basilica? a ceremony -12.628593689506193 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (a ceremony, will be held in, St . Peter?s Basilica) -> a ceremony (5729ms) How tall is St. Peter's Basilica? a real honor -12.64885303262207 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, was, a real honor) -> a real honor (5231ms) How tall is St. Peter's Basilica? Catholic Tide -12.687757761293268 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica ? Catholic Tide, is, Catholic Tide) -> Catholic Tide (5231ms) How tall is St. Peter's Basilica? the ?the greatest -12.727810920152239 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, has been called, the ?the greatest) -> the ?the greatest (5231ms) How tall is St. Peter's Basilica? numerous pilgrims -12.742276636872367 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, was attended by, numerous pilgrims) -> numerous pilgrims (5294ms) How tall is St. Peter's Basilica? such it -12.75130760829478 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (such it, is as sacred as, St . Peter?s Basilica) -> such it (5729ms) How tall is St. Peter's Basilica? paper -12.786059544874965 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (paper, is now enshrined at, St . Peter?s Basilica) -> paper (5729ms) How tall is St. Peter's Basilica? limited hours -12.825539541314138 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, are usually open for, limited hours) -> limited hours (5294ms) How tall is St. Peter's Basilica? Bernini -12.862853324174118 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St Peter?s Basilica, was given to, Bernini) -> Bernini (5294ms) How tall is St. Peter's Basilica? regarded architect -12.980747929150535 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: (st peter s basilica, instance of, $x) -> (S39 39 St. Peter's Basilica Michelangelo, Instance Of, regarded architect) -> regarded architect (7007ms) How tall is St. Peter's Basilica? the Danei brothers -13.002538689001867 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (the Danei brothers, were ordained in, St . Peter?s Basilica) -> the Danei brothers (5729ms) How tall is St. Peter's Basilica? outside -13.026610988132404 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (the St . Peter?s Basilica, will be only visited from, outside) -> outside (5294ms) How tall is St. Peter's Basilica? Hawk -13.027588483395014 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (Hawk, is sent to, St . Peter?s Basilica) -> Hawk (5760ms) How tall is St. Peter's Basilica? The Gardens -13.031617473636732 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (The Gardens, were founded near, St . Peter?s Basilica roughly) -> The Gardens (5760ms) How tall is St. Peter's Basilica? Proper attire -13.031674232341432 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (Proper attire, must be worn in, St . Peter?s Basilica) -> Proper attire (5760ms) How tall is St. Peter's Basilica? a Vatican archaeologist -13.033936450930979 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (a Vatican archaeologist, is found dead in, St . Peter?s Basilica) -> a Vatican archaeologist (5760ms) How tall is St. Peter's Basilica? the Cathedral dome -13.03571082738106 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (the Cathedral dome, is modeled after, St . Peter?s Basilica) -> the Cathedral dome (5760ms) How tall is St. Peter's Basilica? memory -13.042178212333688 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, was consecrated in, memory) -> memory (5294ms) How tall is St. Peter's Basilica? a Solemn Funeral -13.048089595103296 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (a Solemn Funeral, is celebrated in, St . Peter?s Basilica) -> a Solemn Funeral (5760ms) How tall is St. Peter's Basilica? A special Mass -13.04902709040386 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (A special Mass, was celebrated in, St Peter?s Basilica) -> A special Mass (6000ms) How tall is St. Peter's Basilica? Michelangelo?s La Pieta -13.074799336908306 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (Michelangelo?s La Pieta, can be found in, St . Peter?s Basilica) -> Michelangelo?s La Pieta (6001ms) How tall is St. Peter's Basilica? Lunetta Hotel -13.074943187015709 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (Lunetta Hotel, is a 15-minute walk from, St Peter?s Basilica) -> Lunetta Hotel (6000ms) How tall is St. Peter's Basilica? churches -13.081163688708642 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St Peter?s Basilica Rome, is a city of, churches) -> churches (5314ms) How tall is St. Peter's Basilica? a remarkable ceremony -13.110375632805187 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (a remarkable ceremony, was held in, St . Peter?s basilica) -> a remarkable ceremony (6000ms) How tall is St. Peter's Basilica? Special treatment -13.148312414509753 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (Special treatment, is given to, St . Peter?s Basilica) -> Special treatment (6001ms) How tall is St. Peter's Basilica? stunning architectural masterpiece -13.17468484968731 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: (st peter s basilica, instance of, $x) -> (St. Peter s Basilica, Instance Of, stunning architectural masterpiece) -> stunning architectural masterpiece (7007ms) How tall is St. Peter's Basilica? the public -13.267627111846672 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, is open to, the public) -> the public (5314ms) How tall is St. Peter's Basilica? religious site -13.286543148882858 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: (st peter s basilica, instance of, $x) -> (St. Peter s Basilica, Instance Of, religious site) -> religious site (7007ms) How tall is St. Peter's Basilica? admission -13.312057577292407 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (admission, is separate from, St . Peter?s Basilica) -> admission (6000ms) How tall is St. Peter's Basilica? lives -13.353614865166895 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (lives, were present in, St . Peter?s basilica) -> lives (6020ms) How tall is St. Peter's Basilica? means -13.382874185725196 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (means, was first given at, St . Peter?s Basilica) -> means (6020ms) How tall is St. Peter's Basilica? basilica -13.443444980406873 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: (st peter s basilica, instance of, $x) -> (St. Peter\ s Basilica, Instance Of, basilica) -> basilica (7007ms) How tall is St. Peter's Basilica? wonder -13.449194128751254 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: (st peter s basilica, instance of, $x) -> (St. Peter s Basilica, Instance Of, wonder) -> wonder (7007ms) How tall is St. Peter's Basilica? sight -13.476315091123732 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: (st peter s basilica, instance of, $x) -> (St. Peter s Basilica, Instance Of, sight) -> sight (7007ms) How tall is St. Peter's Basilica? building -13.517081615101592 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: (st peter s basilica, instance of, $x) -> (St. Peter\ s Basilica, Instance Of, building) -> building (7099ms) How tall is St. Peter's Basilica? the chorister -13.566699753695383 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, was, the chorister) -> the chorister (5314ms) How tall is St. Peter's Basilica? the week -13.577871087051314 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (the week, were both centered at, St . Peter?s Basilica) -> the week (6020ms) How tall is St. Peter's Basilica? Justice -13.755759772388126 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (Justice, is bigger than, St . Peter?s Basilica) -> Justice (6020ms) How tall is St. Peter's Basilica? Pieta -13.830196939693131 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (Pieta, is a prime attraction at, St . Peter?s Basilica) -> Pieta (6020ms) How tall is St. Peter's Basilica? the aula -13.839684164550132 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, was known as, the aula) -> the aula (5314ms) How tall is St. Peter's Basilica? the background -13.853750557370809 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, is in, the background) -> the background (5314ms) How tall is St. Peter's Basilica? the dinner -13.871733523319044 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (the dinner, was definitely the view of, St . Peter?s Basilica) -> the dinner (6020ms) How tall is St. Peter's Basilica? Baldassini -13.884049234724321 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (Baldassini, is a 15-minute walk from, St Peter?s Basilica) -> Baldassini (6041ms) How tall is St. Peter's Basilica? the tomb -13.88969122274947 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, was built over, the tomb) -> the tomb (5314ms) How tall is St. Peter's Basilica? the middle -13.945107108599702 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (the middle, is, St Peter?s Basilica) -> the middle (6041ms) How tall is St. Peter's Basilica? the who?s -13.982990951045004 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, was built by, the who?s) -> the who?s (6041ms) How tall is St. Peter's Basilica? the sarcophagus -13.98659547056032 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (the sarcophagus, was placed within, St . Peter?s Basilica) -> the sarcophagus (6041ms) How tall is St. Peter's Basilica? the trip -14.157621678982558 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (the trip, was singing at, St Peter?s Basilica) -> the trip (6041ms) How tall is St. Peter's Basilica? the cathedral -14.16381103649253 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (the cathedral, is inspired by, the St Peter?s Basilica) -> the cathedral (6041ms) How tall is St. Peter's Basilica? the choir -14.165078784813684 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (the choir, was invited to sing at, St . Peter?s Basilica) -> the choir (6058ms) How tall is St. Peter's Basilica? the mal di testa -14.517964842069567 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, is turning into quite, the mal di testa) -> the mal di testa (6058ms) How tall is St. Peter's Basilica? the ancient pagan site -14.522475063036733 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, were built on, the ancient pagan site) -> the ancient pagan site (6058ms) How tall is St. Peter's Basilica? the many glorious churches -14.527650320896583 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St Peter?s Basilica, is just one of, the many glorious churches) -> the many glorious churches (6058ms) How tall is St. Peter's Basilica? the most famous Catholic Church -14.57949710066777 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (The St . Peter?s Basilica, is, the most famous Catholic Church) -> the most famous Catholic Church (6058ms) How tall is St. Peter's Basilica? The largest -14.688015433932657 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (The largest, is, St . Peter?s Basilica) -> The largest (6058ms) How tall is St. Peter's Basilica? The afternoon -14.773643925016042 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (The afternoon, is spent at, St . Peter?s Basilica) -> The afternoon (6073ms) How tall is St. Peter's Basilica? The dome -14.83809312283234 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (The dome, was inspired by, St . Peter?s Basilica) -> The dome (6074ms) How tall is St. Peter's Basilica? The consistory ceremony -14.855809746236666 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (The consistory ceremony, is at, St . Peter?s Basilica) -> The consistory ceremony (6073ms) How tall is St. Peter's Basilica? The sculpture -14.952335604801771 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (The sculpture, can be seen in, St . Peter?s Basilica) -> The sculpture (6074ms) How tall is St. Peter's Basilica? The blue transfer drawings -14.952335604801771 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (The blue transfer drawings, are of, St . Peter?s basilica) -> The blue transfer drawings (6073ms) How tall is St. Peter's Basilica? The young men -14.996545504581844 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, be, st peter s basilica) -> (The young men, were headed to, St . Peter?s Basilica) -> The young men (6090ms) How tall is St. Peter's Basilica? the holiest places -15.017455959182211 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, is one of, the holiest places) -> the holiest places (6090ms) How tall is St. Peter's Basilica? the main body -15.025805941287377 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, is located in, the main body) -> the main body (6091ms) How tall is St. Peter's Basilica? the holiest site -15.122367357420325 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St . Peter?s Basilica, is considered one of, the holiest site) -> the holiest site (6090ms) How tall is St. Peter's Basilica? the largest interior -15.549510903267446 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, have, $x) -> (St . Peter?s Basilica, has, the largest interior) -> the largest interior (6090ms) How tall is St. Peter's Basilica? Madeline -15.554556025026134 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s myspace ? -> $x: (st peter s basilica, myspace, $x) -> $x: ($x, make, st peter s basilica) -> (Madeline, makes her way to, St . Peter?s Basilica) -> Madeline (6975ms) How tall is St. Peter's Basilica? the most important church in the city -16.007229499520754 How tall is St. Peter's Basilica? -> how tall be [ st peter s basilica ] ? -> what be st peter s basilica s height ? -> $x: (st peter s basilica, height, $x) -> $x: (st peter s basilica, be, $x) -> (St Peter 's Basilica, is, the most important church in the city) -> the most important church in the city (6090ms) What is Head Start? quick-rigging system -1.857894113792145 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, quick-rigging system) -> quick-rigging system (10870ms) What is Head Start? award-winning program -2.016262524328909 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, award-winning program) -> award-winning program (10871ms) What is Head Start? federal program -2.137930357809707 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, federal program) -> federal program (10870ms) What is Head Start? part of the community -2.388730978842336 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, part of the community) -> part of the community (10870ms) What is Head Start? Acommunity-based sample -2.40287534828422 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, Acommunity-based sample) -> Acommunity-based sample (10870ms) What is Head Start? child wellness program -2.441401982475627 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, child wellness program) -> child wellness program (10870ms) What is Head Start? quality developmental program -2.441401982475627 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, quality developmental program) -> quality developmental program (11154ms) What is Head Start? formal child care arrangement -2.444968310037213 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, formal child care arrangement) -> formal child care arrangement (11154ms) What is Head Start? pre school program -2.4505227413227635 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, pre school program) -> pre school program (11154ms) What is Head Start? vital, active program -2.4505227413227635 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, vital, active program) -> vital, active program (11154ms) What is Head Start? federally funded program -2.4551112035635274 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, federally funded program) -> federally funded program (11154ms) What is Head Start? community service provider -2.468820424651427 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, community service provider) -> community service provider (11154ms) What is Head Start? state & federally funded program -2.477099875445436 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, state & federally funded program) -> state & federally funded program (11208ms) What is Head Start? third, alternative screening site -2.4895069719906626 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, third, alternative screening site) -> third, alternative screening site (11207ms) What is Head Start? separate, federally-subsidized grant program -2.4895069719906626 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, separate, federally-subsidized grant program) -> separate, federally-subsidized grant program (11207ms) What is Head Start? community-based, family-focused program -2.4916504033607634 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, community-based, family-focused program) -> community-based, family-focused program (11207ms) What is Head Start? popular program -2.510283638293563 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, popular program) -> popular program (11207ms) What is Head Start? federal early childhood development program -2.521993830880578 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, federal early childhood development program) -> federal early childhood development program (11228ms) What is Head Start? non-profit, federally funded preschool program -2.521993830880578 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, non-profit, federally funded preschool program) -> non-profit, federally funded preschool program (11228ms) What is Head Start? program of the United States Department -2.521993830880578 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, program of the United States Department) -> program of the United States Department (11229ms) What is Head Start? preschool, or pre K program -2.521993830880578 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, preschool, or pre K program) -> preschool, or pre K program (11229ms) What is Head Start? income based federally funded preschool program -2.5494827114797376 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, income based federally funded preschool program) -> income based federally funded preschool program (11228ms) What is Head Start? national childhood development and social service program -2.5730446091361605 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, national childhood development and social service program) -> national childhood development and social service program (11228ms) What is Head Start? private company -2.5951190210453685 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, private company) -> private company (11251ms) What is Head Start? community group -2.6038217315249046 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, community group) -> community group (11251ms) What is Head Start? support service -2.629090695694324 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, support service) -> support service (11251ms) What is Head Start? family affair -2.6554163620320965 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, family affair) -> family affair (11251ms) What is Head Start? national organization -2.679729937358724 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, national organization) -> national organization (11273ms) What is Head Start? program area -2.686482403283631 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, program area) -> program area (11273ms) What is Head Start? top priority -2.686959284698516 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, top priority) -> top priority (11273ms) What is Head Start? key service -2.7043691703111588 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, key service) -> key service (11273ms) What is Head Start? academic program -2.705430555475883 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, academic program) -> academic program (11273ms) What is Head Start? good investment -2.7068011654246007 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, good investment) -> good investment (11273ms) What is Head Start? preventative measure -2.732470188408757 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, preventative measure) -> preventative measure (11319ms) What is Head Start? complex organization -2.7339757547484425 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, complex organization) -> complex organization (11318ms) What is Head Start? comprehensive service -2.737583580174036 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, comprehensive service) -> comprehensive service (11318ms) What is Head Start? teaching method -2.7401665317730144 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, teaching method) -> teaching method (11318ms) What is Head Start? multidisciplinary program -2.749871150010609 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, multidisciplinary program) -> multidisciplinary program (11318ms) What is Head Start? complex program -2.7799955559375755 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, complex program) -> complex program (11343ms) What is Head Start? education provider -2.7813697186741804 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, education provider) -> education provider (11343ms) What is Head Start? emergency service -2.7832253105694615 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, emergency service) -> emergency service (11343ms) What is Head Start? supportive service -2.783952684981557 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, supportive service) -> supportive service (11343ms) What is Head Start? wonderful experience -2.7893899973471727 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, wonderful experience) -> wonderful experience (11343ms) What is Head Start? instructional program -2.7905091985823134 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, instructional program) -> instructional program (11343ms) What is Head Start? 3-star facility -2.795432809064957 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, 3-star facility) -> 3-star facility (11497ms) What is Head Start? educational opportunity -2.7974888531857083 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, educational opportunity) -> educational opportunity (11497ms) What is Head Start? 34-year-old federal program -2.798186246668358 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, 34-year-old federal program) -> 34-year-old federal program (11497ms) What is Head Start? flagship program -2.8070473091684116 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, flagship program) -> flagship program (11497ms) What is Head Start? government initiative -2.8169229444023163 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, government initiative) -> government initiative (11521ms) What is Head Start? program -3.9954991830571576 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, program) -> program (11894ms) What is Head Start? area -4.527024510244583 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, area) -> area (11977ms) What is Head Start? model -4.674115088343855 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, model) -> model (11978ms) What is Head Start? opportunity -4.691104629443618 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, opportunity) -> opportunity (11977ms) What is Head Start? location -4.889615624614249 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, location) -> location (11986ms) What is Head Start? control -4.908335807089068 What is Head Start? -> $x: (Head Start, instance of, $x) -> (head start, Instance Of, control) -> control (11986ms) What is Head Start? package -4.954666351379524 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, package) -> package (11986ms) What is Head Start? grant -4.962843441187645 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, grant) -> grant (11986ms) What is Head Start? entity -4.96520197449955 What is Head Start? -> $x: (Head Start, instance of, $x) -> (Head Start, Instance Of, entity) -> entity (11986ms) What is Head Start? the NA'AMAT centers -5.4707373925231675 What is Head Start? -> $x: (Head Start, instance of, $x) -> $x: (Head Start, modelling, $x) -> (the Head Start program, was modeled after, the NA'AMAT centers) -> the NA'AMAT centers (11996ms) What is Head Start? On-site monitoring -5.587943361224787 What is Head Start? -> $x: (Head Start, instance of, $x) -> $x: ($x, element, Head Start) -> (On-site monitoring, has been a key element of, Head Start) -> On-site monitoring (11997ms) What is Head Start? the ?Project Head Start ? -5.877936007069817 What is Head Start? -> $x: (Head Start, instance of, $x) -> $x: (Head Start, modelling, $x) -> (Head Start, become the model for, the ?Project Head Start ?) -> the ?Project Head Start ? (11996ms) What is Head Start? Date Begun -7.130446667767587 What is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (Head II, Has value, Date Begun) -> Date Begun (15587ms) What is Head Start? Date Completed -7.1780940608061305 What is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (Two Male Heads, Has value, Date Completed) -> Date Completed (15587ms) What is Head Start? Release date(s) -7.577182808153073 What is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (Your Voice In My Head, Has value, Release date(s)) -> Release date(s) (15790ms) What is Head Start? IBM -7.698789786102534 What is Head Start? -> what [ be head ] start ? -> when be head be start ? -> $x: (head, be be start in, $x) -> (thin-film head structures, was started in, IBM) -> IBM (13003ms) What is Head Start? one piece -8.191993083458964 What is Head Start? -> what [ be head ] start ? -> when be head be start ? -> $x: (head, be be start in, $x) -> (my head, is starting to feel back in, one piece) -> one piece (13003ms) What is Head Start? mid handicap players -8.935119063824912 What is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (new head shape, is aimed to attract, mid handicap players) -> mid handicap players (14037ms) What is Head Start? Grubb & Ellis -9.009559069275047 What is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (the head, is aiming to integrate, Grubb & Ellis) -> Grubb & Ellis (14036ms) What is Head Start? a hub -9.126947240213449 What is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (the Talking Heads, aims to be, a hub) -> a hub (14036ms) What is Head Start? a fourth Breeders -9.159570504639923 What is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (Head, is aiming the six-year-old at, a fourth Breeders) -> a fourth Breeders (14036ms) What is Head Start? a piece -9.169208541018488 What is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (the other track heads, can be aimed at, a piece) -> a piece (14036ms) What is Head Start? the Extreme Angle output -9.197815149601734 What is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (Pivotable light head, aims, the Extreme Angle output) -> the Extreme Angle output (14036ms) What is Head Start? Coin Value -9.242897729171423 What is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: ($x, be the value of, head) -> (Coin Value, is the value of, your Liberty Head ?Barber) -> Coin Value (15789ms) What is Head Start? Nicholas Payton -9.326060657825877 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (My Head, features, Nicholas Payton) -> Nicholas Payton (15789ms) What is Head Start? nagging problems head-on -9.378612948793267 What is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (an Indian head massage, aims to tackle, nagging problems head-on) -> nagging problems head-on (15839ms) What is Head Start? HU -9.420846699159464 What is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: ($x, be the value of, head) -> (HU, is the value of, upstream head) -> HU (15839ms) What is Head Start? disadvantaged three -9.46019030699219 What is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (Head Start, is aimed at, disadvantaged three) -> disadvantaged three (15839ms) What is Head Start? a music -9.50540776709473 What is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (The West Head Project, aims to create, a music) -> a music (15839ms) What is Head Start? CIRCE -9.521308496065553 What is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (the robotic head, was the primary aim of, CIRCE) -> CIRCE (15839ms) What is Head Start? overdraft fees -9.565305737454368 What is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (the head, has been taking aim at, overdraft fees) -> overdraft fees (15839ms) What is Head Start? vertical light -9.565797572844687 What is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (the head, may be aimed downward to eliminate, vertical light) -> vertical light (15879ms) What is Head Start? young people -9.57664138735529 What is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (our HeadsUp Suicide Prevention Programme, aimed at, young people) -> young people (15879ms) What is Head Start? head-top tensions -9.583682260835163 What is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (an Indian head massage, will aim to release, head-top tensions) -> head-top tensions (15879ms) What is Head Start? a thousand Roman crowns -9.61259167401462 What is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (his head, is valued at, a thousand Roman crowns) -> a thousand Roman crowns (15879ms) What is Head Start? upward light -9.620775334043007 What is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (the head, may be aimed downward to completely stop, upward light) -> upward light (15880ms) What is Head Start? a bit -9.623638316839422 What is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (the heads, Aimed, a bit) -> a bit (15879ms) What is Head Start? the NRL -9.647981828092234 What is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (head BRONCOS coach Anthony Griffin, has taken aim at, the NRL) -> the NRL (15919ms) What is Head Start? January -9.650364962730908 What is Head Start? -> what [ be head ] start ? -> when be head be start ? -> $x: (head, be be start in, $x) -> (private HeadLines newsletter, was started in, January) -> January (13003ms) What is Head Start? television display -9.658251341866698 What is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (a head, aimed, television display) -> television display (15919ms) What is Head Start? eye level -9.673144236460892 What is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (head and shoulders, aim at, eye level) -> eye level (15919ms) What is Head Start? Steve Lyons -9.679720876236852 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (Head Games, features, Steve Lyons) -> Steve Lyons (15919ms) What is Head Start? more than simply amuse -9.723510842908707 What is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (Beavis and Butt-Head?who, aim to do, more than simply amuse) -> more than simply amuse (15919ms) What is Head Start? Full Offset -9.726331343490624 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (This head, features, Full Offset) -> Full Offset (15919ms) What is Head Start? a punk-like ending -9.759979541496364 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (Your Head, featured, a punk-like ending) -> a punk-like ending (15955ms) What is Head Start? the Head Start program -9.762941625640009 What is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (Head Start, can add value to, the Head Start program) -> the Head Start program (15955ms) What is Head Start? school readiness -9.775720453937032 What is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (Head Start Programs, aim to promote, school readiness) -> school readiness (15955ms) What is Head Start? CIMMYT?s team -9.784678532963484 What is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (head, has been an extremely valued member of, CIMMYT?s team) -> CIMMYT?s team (15955ms) What is Head Start? mental health consultant -9.802945812779441 What is Head Start? -> what be [ head ] start ? -> what do head start ? -> $x: (head, start, $x) -> (Head, Start, mental health consultant) -> mental health consultant (13004ms) What is Head Start? big business -9.807322010883674 What is Head Start? -> what be head [ start ] ? -> what be the head start ? -> $x: (the head, start, $x) -> (the head, start, big business) -> big business (18970ms) What is Head Start? global ecosystem goods -9.813717820330552 What is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (former head, estimates the value of, global ecosystem goods) -> global ecosystem goods (15955ms) What is Head Start? rich software performs -9.815026893263207 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (their head, feature, rich software performs) -> rich software performs (15955ms) What is Head Start? a slot -9.830209690882795 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (head, features, a slot) -> a slot (15989ms) What is Head Start? Author s -9.831795623010262 What is Head Start? -> what be [ head ] start ? -> what do head start ? -> $x: (head, start, $x) -> (Head, Start, Author s) -> Author s (13003ms) What is Head Start? healthy nutrition -9.835617460177005 What is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (Head chef Gianni Aste, aims to combine, healthy nutrition) -> healthy nutrition (15990ms) What is Head Start? a hollowed -9.835657798446423 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (this head, features, a hollowed) -> a hollowed (15990ms) What is Head Start? a double-sided design -9.839065384330565 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (Bead head, features, a double-sided design) -> a double-sided design (15989ms) What is Head Start? Opto speed control -9.842124054514777 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The head, features, Opto speed control) -> Opto speed control (15989ms) What is Head Start? a side-feed design -9.855421958493617 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (head, features, a side-feed design) -> a side-feed design (15990ms) What is Head Start? an x-shaped muscle -9.869016786397449 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (the head, features, an x-shaped muscle) -> an x-shaped muscle (16031ms) What is Head Start? an open U-channel -9.882971128705977 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (head, features, an open U-channel) -> an open U-channel (16031ms) What is Head Start? two super- -9.88336338049898 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (this head, features, two super-) -> two super- (16031ms) What is Head Start? research and evaluation project -9.892026931788706 What is Head Start? -> what be [ head ] start ? -> what do head start ? -> $x: (head, start, $x) -> (Head, Start, research and evaluation project) -> research and evaluation project (13003ms) What is Head Start? bud and blossom -9.904776915852674 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (flower heads, feature, bud and blossom) -> bud and blossom (16031ms) What is Head Start? old value -9.90637473418605 What is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: ($x, be the value of, head) -> (old value, is the previous value of, the edge head) -> old value (16031ms) What is Head Start? a golf destination -9.91075576556457 What is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (Hilton Head, is valued as, a golf destination) -> a golf destination (16031ms) What is Head Start? ?50,000 -9.912900486785677 What is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (the head lease, was valued at, ?50,000) -> ?50,000 (16069ms) What is Head Start? buff polished fins -9.930627915699219 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (Cylinder heads, feature, buff polished fins) -> buff polished fins (16069ms) What is Head Start? 24 -9.937618422313943 What is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (head, values, 24) -> 24 (16069ms) What is Head Start? small pointed ears -9.940557444970807 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (heads, feature, small pointed ears) -> small pointed ears (16069ms) What is Head Start? home-based programs -9.947062628543128 What is Head Start? -> what be [ head ] start ? -> what do head start ? -> $x: (head, start, $x) -> (Head, Start, home-based programs) -> home-based programs (16069ms) What is Head Start? authentic stamps and markings -9.95026368429602 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (barrel heads, feature, authentic stamps and markings) -> authentic stamps and markings (16069ms) What is Head Start? fifty pieces -9.953811184120534 What is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (an ass?s head, was valued at, fifty pieces) -> fifty pieces (16103ms) What is Head Start? CONTENT RELATED CONTENT -9.96209213893031 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (our heads, FEATURED, CONTENT RELATED CONTENT) -> CONTENT RELATED CONTENT (16103ms) What is Head Start? partners with community groups and businesses -9.96611224717751 What is Head Start? -> what be [ head ] start ? -> what do head start ? -> $x: (head, start, $x) -> (Head, Start, partners with community groups and businesses) -> partners with community groups and businesses (16103ms) What is Head Start? Parent meeting -9.96784038692518 What is Head Start? -> what be [ head ] start ? -> what do head start ? -> $x: (head, start, $x) -> (Head, Start, Parent meeting) -> Parent meeting (16103ms) What is Head Start? 0 and plus infinity -9.968597618092206 What is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (heads, could be any integer value between, 0 and plus infinity) -> 0 and plus infinity (16103ms) What is Head Start? a Threshold value -9.969982189976049 What is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (Head Flying Height, compares these values to, a Threshold value) -> a Threshold value (16103ms) What is Head Start? the Gospel vocal group Charity -9.972965578001292 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (My Head, features, the Gospel vocal group Charity) -> the Gospel vocal group Charity (16136ms) What is Head Start? a secondary security lock -9.974788921245125 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (Head, features, a secondary security lock) -> a secondary security lock (16137ms) What is Head Start? new raised lip -9.98150933587578 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (Heads, featured, new raised lip) -> new raised lip (16136ms) What is Head Start? Corian countertops -9.985775320330788 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The head, features, Corian countertops) -> Corian countertops (16136ms) What is Head Start? an illusory eye -9.989785080780523 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The head, features, an illusory eye) -> an illusory eye (16136ms) What is Head Start? four double-prongs -9.990778724474467 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The head, features, four double-prongs) -> four double-prongs (16136ms) What is Head Start? conceptual art spanning music -9.993851630814385 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (My Head, features, conceptual art spanning music) -> conceptual art spanning music (16202ms) What is Head Start? program and -9.998120028168161 What is Head Start? -> what be head [ start ] ? -> what be the head start ? -> $x: (the head, start, $x) -> (the head, start, program and) -> program and (18970ms) What is Head Start? a topknot -9.999626589831797 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The head, features, a topknot) -> a topknot (16202ms) What is Head Start? target Two -10.00189558215595 What is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (Fully articulating head, can be aimed precisely at, target Two) -> target Two (16202ms) What is Head Start? a true roll -10.004505990662185 What is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (top-heavy putter heads, aims for, a true roll) -> a true roll (16202ms) What is Head Start? a full sliding bar -10.004652587232876 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The head, features, a full sliding bar) -> a full sliding bar (16202ms) What is Head Start? several sharp holes -10.006798031089346 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The head, features, several sharp holes) -> several sharp holes (16202ms) What is Head Start? solid guitar work -10.009842894787933 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (My Head, features, solid guitar work) -> solid guitar work (16281ms) What is Head Start? a European-made drum shade -10.024169519695732 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (Each head, features, a European-made drum shade) -> a European-made drum shade (16280ms) What is Head Start? a motorized color wheel -10.025053706096829 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (head fixture, features, a motorized color wheel) -> a motorized color wheel (16280ms) What is Head Start? physical activity -10.045400784622954 What is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (Head Start Body Start, aims to increase, physical activity) -> physical activity (16280ms) What is Head Start? the Sort box -10.048244441956282 What is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (a column heading, change the value in, the Sort box) -> the Sort box (16280ms) What is Head Start? a bi-color design -10.05079473299061 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The head, features, a bi-color design) -> a bi-color design (16280ms) What is Head Start? dyno tested and flow bench proven ports -10.05580526375597 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (cylinder heads, feature, dyno tested and flow bench proven ports) -> dyno tested and flow bench proven ports (16318ms) What is Head Start? the Waratah?s Logrite -10.060202926916979 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The heads, feature, the Waratah?s Logrite) -> the Waratah?s Logrite (16318ms) What is Head Start? eligible children -10.078184496506875 What is Head Start? -> what be [ head ] start ? -> what do head start ? -> $x: (head, start, $x) -> (Head, Start, eligible children) -> eligible children (16318ms) What is Head Start? a person -10.078819249585932 What is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (?Nine head coaches, have seen his value as, a person) -> a person (16319ms) What is Head Start? Soviet Russia -10.08096552682523 What is Head Start? -> what be [ head ] start ? -> when be the first head celebrate ? -> $x: (the first head, be celebrate in, $x) -> $x: (the first head, take place in, $x) -> (the first head transplant, took place in, Soviet Russia) -> Soviet Russia (16317ms) What is Head Start? a slim , angled neck -10.08182166381552 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (Each head, features, a slim , angled neck) -> a slim , angled neck (16319ms) What is Head Start? dual continuous drag fluid movement -10.082149294778972 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The head, features, dual continuous drag fluid movement) -> dual continuous drag fluid movement (16429ms) What is Head Start? Amtico vinyl flooring -10.08324661919084 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The heads, feature, Amtico vinyl flooring) -> Amtico vinyl flooring (16428ms) What is Head Start? a large sweetspot and packs plenty -10.088933783573895 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (inch head, features, a large sweetspot and packs plenty) -> a large sweetspot and packs plenty (16428ms) What is Head Start? a long term -10.090273178316746 What is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (Head Resourcing, aims to offer, a long term) -> a long term (16428ms) What is Head Start? 1965 -10.098216389602264 What is Head Start? -> what [ be head ] start ? -> when be head be start ? -> $x: (head, be be start in, $x) -> (Kedren Head Start, was started in, 1965) -> 1965 (16428ms) What is Head Start? a moisture-proof O-ring seal -10.098442126029154 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (THE HEAD, features, a moisture-proof O-ring seal) -> a moisture-proof O-ring seal (16429ms) What is Head Start? physical examination -10.100514131243363 What is Head Start? -> what be [ head ] start ? -> what do head start ? -> $x: (head, start, $x) -> (Head, Start, physical examination) -> physical examination (16464ms) What is Head Start? program funds -10.113060439561004 What is Head Start? -> what be [ head ] start ? -> what do head start ? -> $x: (head, start, $x) -> (Head, Start, program funds) -> program funds (16464ms) What is Head Start? alto , tenor -10.114000177186025 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The head, features, alto , tenor) -> alto , tenor (16465ms) What is Head Start? a combined $ 73.5 billion -10.11445796873194 What is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (head offices, were valued at, a combined $ 73.5 billion) -> a combined $ 73.5 billion (16464ms) What is Head Start? a more mature queen -10.11612611756256 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (small head, featured, a more mature queen) -> a more mature queen (16464ms) What is Head Start? the U.S. -10.116506407626124 What is Head Start? -> what be head [ start ] ? -> what be the head start ? -> $x: (the head, start, $x) -> (the head, start, the U.S.) -> the U.S. (18970ms) What is Head Start? a straight-wall ACOUSTICON? construction -10.122415210589917 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (These heads, feature, a straight-wall ACOUSTICON? construction) -> a straight-wall ACOUSTICON? construction (16464ms) What is Head Start? four leveling bubbles -10.12528053720284 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The head, features, four leveling bubbles) -> four leveling bubbles (16506ms) What is Head Start? a more rounded head -10.134401296049976 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (This head, features, a more rounded head) -> a more rounded head (16506ms) What is Head Start? a sumptuous curved-face teak vanity -10.137426356697052 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The head, features, a sumptuous curved-face teak vanity) -> a sumptuous curved-face teak vanity (16506ms) What is Head Start? 0, 1 -10.141287325066765 What is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (heads, can take on values of, 0, 1) -> 0, 1 (16506ms) What is Head Start? incredible low and mid-lift flow numbers -10.144271493741398 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (these heads, feature, incredible low and mid-lift flow numbers) -> incredible low and mid-lift flow numbers (16506ms) What is Head Start? Pettersson and Colt Knost -10.147892628790846 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (Hilton Head, featured, Pettersson and Colt Knost) -> Pettersson and Colt Knost (16506ms) What is Head Start? two springs -10.153002392973956 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (head, now features, two springs) -> two springs (16556ms) What is Head Start? bright LED emitters -10.169277239104105 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (Its head, features, bright LED emitters) -> bright LED emitters (16556ms) What is Head Start? greenish-yellow -10.169286545881826 What is Head Start? -> what be head [ start ] ? -> what be fruit start ? -> $x: (fruit, start, $x) -> (fruit, start out, greenish-yellow) -> greenish-yellow (16556ms) What is Head Start? a recommendation -10.171645816029717 What is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (School heads, will place greater value on, a recommendation) -> a recommendation (16556ms) What is Head Start? a separate stall shower -10.183260559155363 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The head, features, a separate stall shower) -> a separate stall shower (16556ms) What is Head Start? powder coat paint -10.187502059479772 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The head, features, powder coat paint) -> powder coat paint (16592ms) What is Head Start? Blarg -10.18782416346438 What is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> ('s head, try to aim back for, Blarg) -> Blarg (16592ms) What is Head Start? government advisors -10.200678813753278 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (Heads, will feature, government advisors) -> government advisors (16592ms) What is Head Start? pre-k programs -10.21512293042113 What is Head Start? -> what be head [ start ] ? -> what be the head start ? -> $x: (the head, start, $x) -> (the Head, Start, pre-k programs) -> pre-k programs (18970ms) What is Head Start? Population -10.224185309951277 What is Head Start? -> what be [ head ] start ? -> what do head start ? -> $x: (head, start, $x) -> (Head, Start, Population) -> Population (16592ms) What is Head Start? the Sanchez estate -10.230772876272482 What is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (Head, had claimed the value of, the Sanchez estate) -> the Sanchez estate (16592ms) What is Head Start? three rings -10.238763924150636 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (Each head, features, three rings) -> three rings (16592ms) What is Head Start? Kelly -10.250012091111572 What is Head Start? -> what [ be head ] start ? -> when be head be start ? -> $x: (head, be be start on, $x) -> (her head, were starting to take its toll on, Kelly) -> Kelly (16628ms) What is Head Start? a flickering glow -10.251927874057047 What is Head Start? -> what be [ head ] start ? -> what be the aim of head ? -> $x: (head, aim, $x) -> (Butt-Head, aimed, a flickering glow) -> a flickering glow (16628ms) What is Head Start? Enterprise System -10.260292436323217 What is Head Start? -> what be [ head ] start ? -> what do head start ? -> $x: (head, start, $x) -> (Head, Start, Enterprise System) -> Enterprise System (16628ms) What is Head Start? type list -10.26320085733191 What is Head Start? -> what be [ head ] start ? -> what be the value of head ? -> $x: (head, value, $x) -> (head and tail, must yield a value of, type list) -> type list (16628ms) What is Head Start? 2003 -10.29598896254139 What is Head Start? -> what [ be head ] start ? -> when be head be start ? -> $x: (head, be be start in, $x) -> (The Western Heads East program, was started in, 2003) -> 2003 (16628ms) What is Head Start? program resembling pumpkins -10.296572926656168 What is Head Start? -> what be head [ start ] ? -> what be the head start ? -> $x: (the head, start, $x) -> (the head, start, program resembling pumpkins) -> program resembling pumpkins (18970ms) What is Head Start? Consortium -10.300257336485974 What is Head Start? -> what be head [ start ] ? -> what be the head start ? -> $x: (the head, start, $x) -> (the Head, Start, Consortium) -> Consortium (18970ms) What is Head Start? a wiry , brush-like mustache -10.303655560897301 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The head, features, a wiry , brush-like mustache) -> a wiry , brush-like mustache (16628ms) What is Head Start? two channels -10.315694798867524 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (This head, features, two channels) -> two channels (16661ms) What is Head Start? 70cc combustion chambers -10.341669492790162 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The heads, feature, 70cc combustion chambers) -> 70cc combustion chambers (16662ms) What is Head Start? 70-cc combustion chambers -10.341669492790162 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The heads, feature, 70-cc combustion chambers) -> 70-cc combustion chambers (16661ms) What is Head Start? incredible $ 1,950.00Price -10.347858850300133 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (these heads, feature, incredible $ 1,950.00Price) -> incredible $ 1,950.00Price (16661ms) What is Head Start? rot -10.350748413788885 What is Head Start? -> what be head [ start ] ? -> what be fruit start ? -> $x: (fruit, start, $x) -> (fruit, is just starting to, rot) -> rot (16661ms) What is Head Start? Ferrea valves -10.350884479062964 What is Head Start? -> what be [ head ] start ? -> what be the feature of head ? -> $x: (head, feature, $x) -> (The head, features, Ferrea valves) -> Ferrea valves (16661ms) Who is the governor of Alaska? Sarah Palin 3.2921084567553587 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (Sarah Palin, has been the governor of, Alaska) -> Sarah Palin (7641ms) Who is the governor of Alaska? todd palin 2.7572246676402568 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (todd palin, actually is the governor of, alaska) -> todd palin (7989ms) Who is the governor of Alaska? Frank Murkowki 2.728532782125315 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (Frank Murkowki, is the governor of, Alaska) -> Frank Murkowki (7987ms) Who is the governor of Alaska? Shawn Parnell 2.618444395963863 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (Shawn Parnell, would be appointed the next governor of, Alaska) -> Shawn Parnell (8221ms) Who is the governor of Alaska? McCain 2.603021765140443 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (McCain, is the Governor of, Alaska) -> McCain (8222ms) Who is the governor of Alaska? a woman 1.99304400245952 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (a woman, would be either the Governor of, Alaska) -> a woman (8222ms) Who is the governor of Alaska? VP 1.9540394941979757 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (VP, is being the governor of, Alaska) -> VP (8221ms) Who is the governor of Alaska? Trig?s mum 1.581831876045979 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (Trig?s mum, is the Governor of, Alaska) -> Trig?s mum (8265ms) Who is the governor of Alaska? Pages Governor Sarah Palin 1.4979766834200263 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (Pages Governor Sarah Palin, is the current Governor of, Alaska) -> Pages Governor Sarah Palin (8414ms) Who is the governor of Alaska? Sara Palin 1.383052001632266 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (Sara Palin, was the Governor of, Alaska) -> Sara Palin (8414ms) Who is the governor of Alaska? A contrasting example 1.3692019484801734 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (A contrasting example, is the Governor of, Alaska) -> A contrasting example (8414ms) Who is the governor of Alaska? Sarah Palin Sarah Palin 1.357642799031777 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (Sarah Palin Sarah Palin, is the former governor of, Alaska) -> Sarah Palin Sarah Palin (8414ms) Who is the governor of Alaska? Palin 1.1660524638300527 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (Palin, is the governor of, Alaska) -> Palin (8414ms) Who is the governor of Alaska? John F. A. 1.119569654312233 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (John F. A., was appointed the 8th governor of, Alaska) -> John F. A. (8414ms) Who is the governor of Alaska? a 44 year old mother 0.7198817866886449 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (a 44 year old mother, has been the governor of, Alaska) -> a 44 year old mother (8636ms) Who is the governor of Alaska? 1 Sarah Louise Heath Palin 0.674723132380219 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (1 Sarah Louise Heath Palin, is the current Governor of, Alaska) -> 1 Sarah Louise Heath Palin (8636ms) Who is the governor of Alaska? she?s 0.6228997561227634 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (she?s, been the governor of, Alaska) -> she?s (8636ms) Who is the governor of Alaska? Frank Murkowski 0.6038165165000886 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (Frank Murkowski, was elected governor of, Alaska) -> Frank Murkowski (8636ms) Who is the governor of Alaska? Sarah 0.470697253245405 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (Sarah, is the governor of, Alaska) -> Sarah (8746ms) Who is the governor of Alaska? the brow 0.2105154526598414 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (the brow, is the governor of, Alaska) -> the brow (8747ms) Who is the governor of Alaska? 2010 0.16352055929770748 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (2010, has been the former governor of, Alaska) -> 2010 (8811ms) Who is the governor of Alaska? the Interior -0.41464034095832836 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (the Interior, was elected Governor of, Alaska) -> the Interior (9282ms) Who is the governor of Alaska? the fading carnival attraction -0.47920489887064255 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (the fading carnival attraction, was once the governor of, Alaska) -> the fading carnival attraction (9282ms) Who is the governor of Alaska? The vice presidential choice -0.4852013593659019 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> (The vice presidential choice, is the governor of, Alaska) -> The vice presidential choice (9281ms) Who is the governor of Alaska? gubernatorial chutzpah -0.49812276577433623 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (gubernatorial chutzpah, was elected governor of, Alaska) -> gubernatorial chutzpah (9281ms) Who is the governor of Alaska? Pew -0.5957131914473337 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (Pew, included a former governor of, Alaska) -> Pew (9726ms) Who is the governor of Alaska? Rick Perry -0.7508984852015189 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (Rick Perry, had been governor of, Alaska) -> Rick Perry (9783ms) Who is the governor of Alaska? the Alaska Daily Empire -0.7687375460767025 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (the Alaska Daily Empire, was appointed Governor of, Alaska) -> the Alaska Daily Empire (9783ms) Who is the governor of Alaska? mayor -0.8482751057014407 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (mayor, is Governor of, Alaska) -> mayor (9921ms) Who is the governor of Alaska? Sean Parnell -0.8499286269794143 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (Sean Parnell, has been governor of, Alaska) -> Sean Parnell (9919ms) Who is the governor of Alaska? a Finn -0.9662021574501104 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (a Finn, was Governor of, Alaska) -> a Finn (9919ms) Who is the governor of Alaska? Ms. Palin -1.0112962436312802 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (Ms. Palin, was Governor of, Alaska) -> Ms. Palin (10163ms) Who is the governor of Alaska? a beauty queen -1.0653718031721076 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (a beauty queen, can be elected governor of, Alaska) -> a beauty queen (10163ms) Who is the governor of Alaska? Mr. Parnell -1.1085579599046875 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (Mr. Parnell, is governor of, Alaska) -> Mr. Parnell (10163ms) Who is the governor of Alaska? help Sarah -1.234874429857737 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (help Sarah, become the next governor of, Alaska) -> help Sarah (10388ms) Who is the governor of Alaska? Democrat Tony Knowles -1.2675897483166698 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (Democrat Tony Knowles, was elected governor of, Alaska) -> Democrat Tony Knowles (10388ms) Who is the governor of Alaska? Todd Palin -1.2731521307750904 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (Todd Palin, would later become governor of, Alaska) -> Todd Palin (10388ms) Who is the governor of Alaska? sarah palin -1.3182184082609032 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be a person who lead the organization, Alaska) -> (sarah palin, is a person who leads the organization, alaska) -> sarah palin (10524ms) Who is the governor of Alaska? a small town -1.3251271703473324 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (a small town, has been governor of, Alaska) -> a small town (10523ms) Who is the governor of Alaska? Summary Sarah Palin -1.328897943738189 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (Summary Sarah Palin, is a former Governor of, Alaska) -> Summary Sarah Palin (10523ms) Who is the governor of Alaska? resource development -1.3488451555362924 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be the backbone of, Alaska) -> (resource development, is the backbone of, Alaska?s economy) -> resource development (10731ms) Who is the governor of Alaska? Alaska Anchorage -1.367010578214197 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be head of, Alaska) -> (Alaska Anchorage, was the head of, Alaska State Troopers) -> Alaska Anchorage (10732ms) Who is the governor of Alaska? Robert Brewster -1.3992339620650363 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be president of, Alaska) -> (Robert Brewster, is president of, The Alaska Club) -> Robert Brewster (10732ms) Who is the governor of Alaska? Randy Zarnke -1.4232415506752027 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be president of, Alaska) -> (Randy Zarnke, is president of, the Alaska Trappers Association) -> Randy Zarnke (11058ms) Who is the governor of Alaska? Also Summary Sarah Palin -1.428948788849393 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (Also Summary Sarah Palin, is a former Governor of, Alaska) -> Also Summary Sarah Palin (11058ms) Who is the governor of Alaska? president -1.4377745953812764 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (president, was governor of, Alaska) -> president (11058ms) Who is the governor of Alaska? a person -1.4899263133835359 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (a person, has become governor even of, Alaska) -> a person (11112ms) Who is the governor of Alaska? young Bayard -1.4911083622269712 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (young Bayard, elected governor of, Alaska) -> young Bayard (11112ms) Who is the governor of Alaska? four -1.5792462114347567 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (four, was governor of, Alaska) -> four (11194ms) Who is the governor of Alaska? frank murkowski -1.579780469566394 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be who in, Alaska) -> (frank murkowski, is a person who has residence in the geopolitical location, alaska) -> frank murkowski (11194ms) Who is the governor of Alaska? whose mother -1.603758331842458 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (whose mother, is governor of, Alaska) -> whose mother (11194ms) Who is the governor of Alaska? levi johnston -1.6270775141267124 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be who in, Alaska) -> (levi johnston, is a person who has residence in the state or province, alaska) -> levi johnston (11274ms) Who is the governor of Alaska? Lake Erie -1.6879099826088777 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be outside of, Alaska) -> (Lake Erie, is the only place outside of, Alaska) -> Lake Erie (11274ms) Who is the governor of Alaska? Rhode Island -1.7419409915321296 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be there in, Alaska) -> (Rhode Island, there are in, Alaska) -> Rhode Island (11306ms) Who is the governor of Alaska? last year -1.7758183380155041 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be president of, Alaska) -> (last year, was president of, the Alaska Senate) -> last year (11306ms) Who is the governor of Alaska? Darsha Spalinger -1.800998117328229 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (Darsha Spalinger, is a lifetime resident of, Alaska) -> Darsha Spalinger (11494ms) Who is the governor of Alaska? Jim Minnery -1.8471415085659266 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be president of, Alaska) -> (Jim Minnery, is president of, the Alaska Family Council) -> Jim Minnery (11494ms) Who is the governor of Alaska? John Brady -1.8537236211484303 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (John Brady, eventually became governors of, Alaska) -> John Brady (11494ms) Who is the governor of Alaska? Mr. Geary -1.8899544564526298 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be the chief of, Alaska) -> (Mr. Geary, was the Chief of, the Alaska Department) -> Mr. Geary (11608ms) Who is the governor of Alaska? The MCUs -1.9037984701574087 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be the backbone of, Alaska) -> (The MCUs, are the backbone of, the Alaska Bureau) -> The MCUs (11694ms) Who is the governor of Alaska? Ben Stevens -2.0124865263650795 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be president of, Alaska) -> (Ben Stevens, was president of, the Alaska state senate) -> Ben Stevens (11765ms) Who is the governor of Alaska? William A. Egan -2.017798478740851 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be governor of, Alaska) -> (William A. Egan, was again elected Governor of, Alaska) -> William A. Egan (11764ms) Who is the governor of Alaska? The Aleutian Range -2.088834358282261 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be the backbone of, Alaska) -> (The Aleutian Range, is the backbone of, the Alaska Peninsula) -> The Aleutian Range (11863ms) Who is the governor of Alaska? The writer -2.1667750329713185 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (The writer, is governor of, Alaska) -> The writer (11970ms) Who is the governor of Alaska? Swineford -2.2399842969786605 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (Swineford, was governor of, Alaska) -> Swineford (11970ms) Who is the governor of Alaska? insects -2.254076498481441 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be most of, Alaska) -> (insects, is THE most important component of, Alaska) -> insects (11970ms) Who is the governor of Alaska? John McCain -2.2610999434764323 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be choose as, $x) -> (the Alaska Governor, was chosen as, John McCain) -> John McCain (11970ms) Who is the governor of Alaska? I?oza -2.279436539796787 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be the president of, Alaska) -> (I?oza, had been the president of, the Alaska Milk Workers Union) -> I?oza (12038ms) Who is the governor of Alaska? Vladimir Putin -2.2912712421858012 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (Vladimir Putin, won?t be rearing his head in, Alaska) -> Vladimir Putin (12038ms) Who is the governor of Alaska? Frank H. Murkowski -2.2954467224448445 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be who in, Alaska) -> (Frank H. Murkowski, is a person who has residence in the geopolitical location, alaska) -> Frank H. Murkowski (12038ms) Who is the governor of Alaska? De Gaulle -2.3262197981861026 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be president of, Alaska) -> (De Gaulle, is Elected President of, France Alaska Becomes) -> De Gaulle (12083ms) Who is the governor of Alaska? residents -2.359363159254453 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (residents, then became governor of, Alaska) -> residents (12083ms) Who is the governor of Alaska? Mitigation -2.3919153218121783 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be the foundation of, Alaska) -> (Mitigation, are the foundation of, Alaska) -> Mitigation (12083ms) Who is the governor of Alaska? Mark Wilson -2.395685204285766 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be the president of, Alaska) -> (Mark Wilson, was the president of, Alaska Mountaintop Spirits) -> Mark Wilson (12083ms) Who is the governor of Alaska? ? Students -2.4027527646321056 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (? Students, must be a permanent resident of, Alaska) -> ? Students (12083ms) Who is the governor of Alaska? Jack Phelps -2.4090127265363552 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be the president of, Alaska) -> (Jack Phelps, is the current president of, the Alaska Private) -> Jack Phelps (12395ms) Who is the governor of Alaska? the years Palin -2.415686961211334 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (the years Palin, was Governor of, Alaska) -> the years Palin (12395ms) Who is the governor of Alaska? now and 2012 -2.446571133282739 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (now and 2012, is governor of, Alaska) -> now and 2012 (12395ms) Who is the governor of Alaska? Kirk Hoessle -2.4558751855197185 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be the president of, Alaska) -> (Kirk Hoessle, is the President of, Alaska Wildland Adventures) -> Kirk Hoessle (12395ms) Who is the governor of Alaska? lisa murkowski -2.458506414786599 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, represent the region, Alaska) -> (lisa murkowski, represents the region, alaska) -> lisa murkowski (12455ms) Who is the governor of Alaska? Clemson University -2.479157973733055 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (Clemson University, does work in, Alaska) -> Clemson University (12456ms) Who is the governor of Alaska? polar bears -2.498523218203897 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be also home to, $x) -> (Alaska, is also home to, polar bears) -> polar bears (12456ms) Who is the governor of Alaska? Murkowski -2.500008223819981 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (Murkowski, was elected governor of, Alaska) -> Murkowski (12456ms) Who is the governor of Alaska? Lanette Higham -2.5414612884170413 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be there in, Alaska) -> (Lanette Higham, There is adventure in, Alaska) -> Lanette Higham (12608ms) Who is the governor of Alaska? the hell -2.553129181740266 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (the hell, become governor of, Alaska) -> the hell (12608ms) Who is the governor of Alaska? The late Jay Hammond -2.5815189979210333 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (The late Jay Hammond, was governor of, Alaska) -> The late Jay Hammond (12772ms) Who is the governor of Alaska? an Elephant Maggie -2.605531639199017 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (an Elephant Maggie, has been a resident of, the Alaska Zoo) -> an Elephant Maggie (12773ms) Who is the governor of Alaska? an account -2.6067909966022893 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be outside of, Alaska) -> (an account, was opened outside of, Alaska) -> an account (12772ms) Who is the governor of Alaska? CVEA -2.628011786442377 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be outside of, Alaska) -> (CVEA, is currently looking outside of, Alaska) -> CVEA (12860ms) Who is the governor of Alaska? Exxon Valdez -2.67721830999114 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (Exxon Valdez, did in, Alaska) -> Exxon Valdez (12860ms) Who is the governor of Alaska? Judy Waldron -2.700375706523501 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be president of, Alaska) -> (Judy Waldron, is president of, the Alaska chapter) -> Judy Waldron (12935ms) Who is the governor of Alaska? Chris Hanson -2.70974331097521 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be an expert in, Alaska) -> (Chris Hanson, is an expert in, Alaska Fishing Guides) -> Chris Hanson (12935ms) Who is the governor of Alaska? colored postcards -2.7523871807267497 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (colored postcards, were very popular in, early Alaska) -> colored postcards (13018ms) Who is the governor of Alaska? Mano Frey -2.759678338258285 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (Mano Frey, has been a resident of, Alaska) -> Mano Frey (13018ms) Who is the governor of Alaska? Cripple Creek -2.761709059451603 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (Cripple Creek, did exploratory work in, Alaska) -> Cripple Creek (13018ms) Who is the governor of Alaska? Denver -2.7826536795707497 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be the leader of, Alaska) -> (Denver, will be the new leader of, the Alaska State Council) -> Denver (13018ms) Who is the governor of Alaska? a qualified voter -2.793391819711589 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (a qualified voter, has been a resident of, Alaska) -> a qualified voter (13018ms) Who is the governor of Alaska? bald eagles -2.801490341063797 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (bald eagles, can only be done in, Alaska) -> bald eagles (13142ms) Who is the governor of Alaska? cross-country skiing -2.802838105505854 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (cross-country skiing, is popular in, Alaska) -> cross-country skiing (13142ms) Who is the governor of Alaska? The rising Republican star -2.8028865575104946 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (The rising Republican star, was elected governor of, Alaska) -> The rising Republican star (13142ms) Who is the governor of Alaska? divorce -2.807003410144707 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (divorce, must be a resident of, Alaska) -> divorce (13142ms) Who is the governor of Alaska? John Miller -2.814308351957516 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be president of, Alaska) -> (John Miller, was president of, the Alaska Commercial Co.) -> John Miller (13217ms) Who is the governor of Alaska? Senator John McCain -2.8289555503299137 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be name as, $x) -> (Alaska governor Sarah Palin, was named as, Senator John McCain) -> Senator John McCain (13217ms) Who is the governor of Alaska? a rate -2.8432345215639883 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be outside of, Alaska) -> (a rate, has been found outside of, Alaska) -> a rate (13217ms) Who is the governor of Alaska? The Iditarod -2.859638321526484 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (The Iditarod, is the most popular sporting event in, Alaska) -> The Iditarod (13217ms) Who is the governor of Alaska? conservationist -2.874202472567061 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (conservationist, has been a resident of, Alaska) -> conservationist (13329ms) Who is the governor of Alaska? a student -2.89111045512303 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (a student, must be a resident of, Alaska) -> a student (13329ms) Who is the governor of Alaska? Holly madison -2.9036189223718787 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be who in, Alaska) -> (Holly madison, is a person who has residence in the state or province, alaska) -> Holly madison (13459ms) Who is the governor of Alaska? Sep 5 , 2008 4:40 PM EDT Ms. Palin -2.905562224331568 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (Sep 5 , 2008 4:40 PM EDT Ms. Palin, has been Governor of, Alaska) -> Sep 5 , 2008 4:40 PM EDT Ms. Palin (13459ms) Who is the governor of Alaska? Two additional ports -2.940168659576239 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be outside of, Alaska) -> (Two additional ports, are located outside of, Alaska) -> Two additional ports (13459ms) Who is the governor of Alaska? ted stevens -2.94044731226927 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, represent the region, Alaska) -> (ted stevens, represents the region, alaska) -> ted stevens (13459ms) Who is the governor of Alaska? ASU. Students -2.9433709370707333 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (ASU. Students, must be a permanent resident of, Alaska) -> ASU. Students (13459ms) Who is the governor of Alaska? a former president -2.9502870671858936 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be president of, Alaska) -> (a former president, is currently president of, Alaska Renovators) -> a former president (13499ms) Who is the governor of Alaska? Mr. Davidge -2.953431613699572 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be president of, Alaska) -> (Mr. Davidge, is president of, Alaska Water Exports) -> Mr. Davidge (13499ms) Who is the governor of Alaska? the Republican Party -2.968187142291675 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be select as, $x) -> (Alaska, had been selected as, the Republican Party) -> the Republican Party (13499ms) Who is the governor of Alaska? an Alaska Native artist -2.9914819244907873 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (an Alaska Native artist, must be a full time resident of, Alaska) -> an Alaska Native artist (13499ms) Who is the governor of Alaska? 75.7 % -3.0214830214739608 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be president of, Alaska) -> (75.7 %, was elected president of, the Alaska Conference) -> 75.7 % (13577ms) Who is the governor of Alaska? the America -3.040923491960179 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be choose as, $x) -> (Alaska, has been chosen as, the America) -> the America (13577ms) Who is the governor of Alaska? 1994 Tony Knowles -3.044801189864669 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (1994 Tony Knowles, elected ninth governor of, Alaska) -> 1994 Tony Knowles (13577ms) Who is the governor of Alaska? Seattle -3.075613348037746 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be most of, Alaska) -> (Seattle, is the southern most tip of, Alaska) -> Seattle (13577ms) Who is the governor of Alaska? John McCain?s running mate -3.0776306651638885 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be choose as, $x) -> (the Alaska governor, was chosen as, John McCain?s running mate) -> John McCain?s running mate (13721ms) Who is the governor of Alaska? God -3.0821964452435444 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (God, can do in, Alaska) -> God (13721ms) Who is the governor of Alaska? five species -3.092322396092665 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be also home to, $x) -> (Alaska, is also home to, five species) -> five species (13721ms) Who is the governor of Alaska? Pat Robertson -3.1053774317619145 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (Pat Robertson, won in, Alaska) -> Pat Robertson (13721ms) Who is the governor of Alaska? hand sanizter -3.107820533945389 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (hand sanizter, is most popular in, Alaska) -> hand sanizter (13722ms) Who is the governor of Alaska? evaluation sites -3.1135321219691114 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be select as, $x) -> (Alaska and Hawaii, were selected as, evaluation sites) -> evaluation sites (13721ms) Who is the governor of Alaska? the first woman -3.1139707050210297 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, governor of, alaska) -> (the first woman, ever elected Governor of, Alaska) -> the first woman (13722ms) Who is the governor of Alaska? John McCain?s -3.128782397581769 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be choose as, $x) -> (Alaska Governor, was chosen as, John McCain?s) -> John McCain?s (14626ms) Who is the governor of Alaska? 330 subscribers -3.129792551756147 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be outside of, Alaska) -> (330 subscribers, are outside of, Alaska) -> 330 subscribers (14626ms) Who is the governor of Alaska? Ted Stevens -3.1311164063079566 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (Ted Stevens, will win in, Alaska) -> Ted Stevens (14626ms) Who is the governor of Alaska? Bell -3.136185517534031 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (Bell, has been a resident of, Southeast Alaska) -> Bell (14625ms) Who is the governor of Alaska? Pete -3.1458766578806237 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (Pete, is now a resident of, Alaska) -> Pete (14626ms) Who is the governor of Alaska? Republican Stevens -3.1464532402820256 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (Republican Stevens, will probably win in, Alaska) -> Republican Stevens (14625ms) Who is the governor of Alaska? literacy rates -3.216336608061463 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (literacy rates, have been done in, Alaska) -> literacy rates (14791ms) Who is the governor of Alaska? Laters Soviet -3.2307071847600985 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (Laters Soviet, do in, alaska) -> Laters Soviet (14791ms) Who is the governor of Alaska? Anchorage Daily News -3.254074888228036 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be there in, Alaska) -> (Anchorage Daily News, There is a great fever abroad in, Alaska) -> Anchorage Daily News (14836ms) Who is the governor of Alaska? various studies -3.2949656309754065 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (various studies, were done earlier in, Alaska) -> various studies (14836ms) Who is the governor of Alaska? legal opinions -3.3047564076216096 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (legal opinions, can be done in, Alaska) -> legal opinions (14836ms) Who is the governor of Alaska? The North Slope -3.3061138786078605 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be everything in, Alaska) -> (The North Slope, is everything in, Alaska North) -> The North Slope (14899ms) Who is the governor of Alaska? Travel Guard -3.319126984320245 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, have a plan for, Alaska) -> (Travel Guard, has a plan for, your Alaska trip) -> Travel Guard (14899ms) Who is the governor of Alaska? a state -3.3198862517312575 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, recognize as, $x) -> (Alaska, was recognized as, a state) -> a state (14899ms) Who is the governor of Alaska? Alaskan History -3.3204385899044744 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (Alaskan History, Do in, Alaska) -> Alaskan History (14899ms) Who is the governor of Alaska? quota -3.3229958111144167 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (quota, are also residents of, the SE Alaska coastal communities) -> quota (14900ms) Who is the governor of Alaska? Murphy -3.330681179862181 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be the owner of, Alaska) -> (Murphy, is the owner of, Alaska Excursions) -> Murphy (14899ms) Who is the governor of Alaska? applicable provisions -3.3580367363862553 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, govern by, $x) -> (Alaska, is governed by, applicable provisions) -> applicable provisions (14899ms) Who is the governor of Alaska? Maggie -3.3592729087107283 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (Maggie, has been a resident of, the Alaska Zoo) -> Maggie (14949ms) Who is the governor of Alaska? Mark Begich -3.376054754808489 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, represent the region, Alaska) -> (Mark Begich, represents the region, alaska) -> Mark Begich (14949ms) Who is the governor of Alaska? Cheyenne Brown -3.396052202559251 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, hail from, Alaska) -> (Cheyenne Brown, hails from, Alaska) -> Cheyenne Brown (14950ms) Who is the governor of Alaska? Atlantis -3.397993584600252 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be the kingdom of, $x) -> (Alaska, were once the great kingdom of, Atlantis) -> Atlantis (14949ms) Who is the governor of Alaska? congressional representative -3.4066676208741065 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (Every Alaska governor, elected, congressional representative) -> congressional representative (14950ms) Who is the governor of Alaska? the rules -3.4076104982123048 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be the spirit of, Alaska) -> (the rules, is the spirit of, Alaska) -> the rules (14949ms) Who is the governor of Alaska? 13-90 semester credit hours -3.4152480525268514 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (13-90 semester credit hours, are a resident of, Alaska) -> 13-90 semester credit hours (14950ms) Who is the governor of Alaska? individual citizens -3.418162149492952 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (individual citizens, is done in, Alaska) -> individual citizens (15096ms) Who is the governor of Alaska? a cross-roads -3.4910648305907843 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be consider as, $x) -> (Alaska, can be considered today as, a cross-roads) -> a cross-roads (15096ms) Who is the governor of Alaska? the Yugtarvik Regional Museum -3.529933912247879 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be also home to, $x) -> (Alaska, is also home to, the Yugtarvik Regional Museum) -> the Yugtarvik Regional Museum (15178ms) Who is the governor of Alaska? Deer hunting -3.5343117580183656 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (Deer hunting, is popular in, Southeast Alaska?) -> Deer hunting (15178ms) Who is the governor of Alaska? 20 meters -3.5358136098812856 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be there in, Alaska) -> (20 meters, is the optimum band there in, Alaska) -> 20 meters (15178ms) Who is the governor of Alaska? a number -3.5475999412271855 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be also home to, $x) -> (Alaska, is also home to, a number) -> a number (15178ms) Who is the governor of Alaska? Charlie -3.5632703746771255 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be the owner of, Alaska) -> (Charlie, is the owner of, the hot Alaska Rock Gym) -> Charlie (15178ms) Who is the governor of Alaska? Diesel -3.58593923433136 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be the life of, Alaska) -> (Diesel, has been the life?s blood of, Alaska?s electric co-ops) -> Diesel (15178ms) Who is the governor of Alaska? Reeve -3.586651736410114 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be the president of, Alaska) -> (Reeve, has been the president of, the Alaska Power Association) -> Reeve (15178ms) Who is the governor of Alaska? CNN -3.5974999779339796 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (CNN, did spend a few minutes in, Alaska) -> CNN (15291ms) Who is the governor of Alaska? Students -3.6127850774389016 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (Students, must either be residents of, Alaska) -> Students (15291ms) Who is the governor of Alaska? trip -3.6235910589989087 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be president of, Alaska) -> (trip, is president of, All Alaska Outdoors) -> trip (15291ms) Who is the governor of Alaska? d_p -3.624603226275338 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be there in, Alaska) -> (d_p, Are there jobs in, Alaska) -> d_p (15291ms) Who is the governor of Alaska? seaweeds -3.6277001382101894 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be there in, Alaska) -> (seaweeds, there are in, Alaska !) -> seaweeds (15291ms) Who is the governor of Alaska? much oil -3.637107157671959 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be there in, Alaska) -> (much oil, is there in, Alaska) -> much oil (15292ms) Who is the governor of Alaska? a seven-member Board -3.6415694091967348 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, govern by, $x) -> (The Alaska Railroad, is governed by, a seven-member Board) -> a seven-member Board (15350ms) Who is the governor of Alaska? a Republican -3.6435136124980185 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (a Republican, had been highly popular in, Alaska) -> a Republican (15350ms) Who is the governor of Alaska? Bear hunting -3.6467081498142275 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (Bear hunting, is popular in, Alaska) -> Bear hunting (15350ms) Who is the governor of Alaska? one delegate -3.648841167904287 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (the Alaska Bar Association, shall elect, one delegate) -> one delegate (15350ms) Who is the governor of Alaska? Joe Miller -3.651890015320277 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (Alaska, elect, Joe Miller) -> Joe Miller (15350ms) Who is the governor of Alaska? WUWT -3.656559522007558 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (WUWT, was so popular in, Alaska) -> WUWT (15350ms) Who is the governor of Alaska? Thompson -3.6797158214467784 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be president of, Alaska) -> (Thompson, was president of, the Alaska Federation) -> Thompson (15350ms) Who is the governor of Alaska? Mr McCain?s running mate -3.6811673838344108 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be choose as, $x) -> (Alaska, was chosen as, Mr McCain?s running mate) -> Mr McCain?s running mate (15350ms) Who is the governor of Alaska? provost and vice president -3.684267514377459 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be choose as, $x) -> (Alaska, has been chosen as, provost and vice president) -> provost and vice president (15414ms) Who is the governor of Alaska? The Deering survey -3.712212418070304 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (The Deering survey, was done in, Alaska) -> The Deering survey (15414ms) Who is the governor of Alaska? Boardwalk Wilderness Lodge -3.7171643182720255 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be there in, Alaska) -> (Boardwalk Wilderness Lodge, There are few lodges in, Alaska) -> Boardwalk Wilderness Lodge (15414ms) Who is the governor of Alaska? the Russian-American Company -3.7523935322333077 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, govern by, $x) -> (Alaska, was governed by, the Russian-American Company) -> the Russian-American Company (15414ms) Who is the governor of Alaska? BP -3.7566555855208663 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, have do in, Alaska) -> (BP, has done in, Alaska) -> BP (15415ms) Who is the governor of Alaska? GeoPRISMS Primary Site -3.757888599745343 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be choose as, $x) -> (Alaska, was chosen as, GeoPRISMS Primary Site) -> GeoPRISMS Primary Site (15415ms) Who is the governor of Alaska? Hensley -3.763779204426403 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be president of, Alaska) -> (Hensley, was president of, the Alaska Federation) -> Hensley (15414ms) Who is the governor of Alaska? DIRECTV -3.767507534997942 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (DIRECTV, does offer programming in, Alaska) -> DIRECTV (15478ms) Who is the governor of Alaska? John McCain?s choice -3.7713555561967507 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be select as, $x) -> (Alaska, has been selected as, John McCain?s choice) -> John McCain?s choice (15478ms) Who is the governor of Alaska? Mrs. Palin -3.773123928998944 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (Mrs. Palin, were popular in, Alaska and Delaware) -> Mrs. Palin (15478ms) Who is the governor of Alaska? felt information -3.7744049513119124 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (felt information, may do something similar here in, Alaska) -> felt information (15478ms) Who is the governor of Alaska? an advocate -3.7819658984144993 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (an advocate, evidently is very popular in, Alaska) -> an advocate (15478ms) Who is the governor of Alaska? ?ConocoPhillips -3.7930074378038667 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do make, Alaska) -> (?ConocoPhillips, does make money in, Alaska) -> ?ConocoPhillips (15478ms) Who is the governor of Alaska? Emmons -3.794956899352982 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be president of, Alaska) -> (Emmons, was president of, the Alaska Library Association) -> Emmons (15478ms) Who is the governor of Alaska? an offshoot -3.8134210109581246 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (an offshoot, has been popular in, Scandinavia and Alaska) -> an offshoot (15560ms) Who is the governor of Alaska? Halibut and salmon fishing -3.816957809264806 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (Halibut and salmon fishing, are extremely popular in, Alaska) -> Halibut and salmon fishing (15560ms) Who is the governor of Alaska? Illustrated -3.818515477465446 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be native of, Alaska) -> (Illustrated, here are the Native American tribes of, Alaska) -> Illustrated (15560ms) Who is the governor of Alaska? geothermal and hydropower resources -3.8214685384830314 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be also home to, $x) -> (Alaska, is also home to, geothermal and hydropower resources) -> geothermal and hydropower resources (15560ms) Who is the governor of Alaska? Wolf-haters -3.830310507898587 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be a minority in, Alaska) -> (Wolf-haters, are a minority in, both Idaho and Alaska) -> Wolf-haters (15560ms) Who is the governor of Alaska? Ron Paul -3.834447434009685 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (Ron Paul, finally wins one in, Alaska) -> Ron Paul (15560ms) Who is the governor of Alaska? an eligible Native village -3.8393790647628663 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, recognize as, $x) -> (Alaska, shall be recognized as, an eligible Native village) -> an eligible Native village (15560ms) Who is the governor of Alaska? no governor -3.8785164588696244 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (no governor, has ever won in, Alaska) -> no governor (15624ms) Who is the governor of Alaska? North America?s largest peak -3.886834607273641 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be also home to, $x) -> (Alaska, is also home to, North America?s largest peak) -> North America?s largest peak (15624ms) Who is the governor of Alaska? governor -3.8954019280639627 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (R-Alaska, was elected, governor) -> governor (15624ms) Who is the governor of Alaska? an Inupiat Eskimo -3.901272903374051 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, hail from, Alaska) -> (an Inupiat Eskimo, hails from, the Northwest Alaska village) -> an Inupiat Eskimo (15624ms) Who is the governor of Alaska? the vehicle owner -3.9065880922539615 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be outside of, Alaska) -> (the vehicle owner, is outside of, Alaska) -> the vehicle owner (15624ms) Who is the governor of Alaska? The Valley ! Offer -3.9165369484374315 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (The Valley ! Offer, do in, Alaska) -> The Valley ! Offer (15624ms) Who is the governor of Alaska? Sole Survivor -3.9436339796047397 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be name as, $x) -> (Alaska, was named as, Sole Survivor) -> Sole Survivor (15833ms) Who is the governor of Alaska? the student -3.9485213829223293 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (the student, is a legal resident of, Alaska) -> the student (15833ms) Who is the governor of Alaska? the Senate -3.9528579718312136 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (Alaska, elected a Democrat to, the Senate) -> the Senate (15832ms) Who is the governor of Alaska? a board -3.9846201972608823 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, govern by, $x) -> (Alaska, shall be governed by, a board) -> a board (15833ms) Who is the governor of Alaska? Buist -4.010023552455388 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be president of, Alaska) -> (Buist, is past president of, the Alaska Trappers Association) -> Buist (15833ms) Who is the governor of Alaska? ice -4.032470138539975 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, have do in, Alaska) -> (ice, has been done in, Alaska) -> ice (15891ms) Who is the governor of Alaska? a model -4.033251081748733 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, recognize as, $x) -> (Alaska???s fisheries, are recognized as, a model) -> a model (15891ms) Who is the governor of Alaska? Tony Knowles -4.035013237376877 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (Alaska, elected, Tony Knowles) -> Tony Knowles (15891ms) Who is the governor of Alaska? a historic Alaskan landmark -4.043564190403667 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, recognize as, $x) -> (Talkeetna Alaska, is recognized as, a historic Alaskan landmark) -> a historic Alaskan landmark (15891ms) Who is the governor of Alaska? last night?s results -4.075727723414448 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (last night?s results, were won in, Alaska) -> last night?s results (15891ms) Who is the governor of Alaska? the well -4.076150752948074 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be also home to, $x) -> (Alaska Beach, is also home to, the well) -> the well (15940ms) Who is the governor of Alaska? Such homophobia -4.087201477615176 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (Such homophobia, did n?t even play in, Alaska) -> Such homophobia (15940ms) Who is the governor of Alaska? 16 -4.09175292986329 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be also home to, $x) -> (Alaska, is also home to, 16) -> 16 (15940ms) Who is the governor of Alaska? a dividend check -4.0947526685669144 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (a dividend check, is done in, Alaska) -> a dividend check (15940ms) Who is the governor of Alaska? the place -4.096268002433529 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be consider as, $x) -> (Alaska, is considered as, the place) -> the place (15940ms) Who is the governor of Alaska? the family members -4.104648375809752 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (the family members, ARE residents of, Alaska) -> the family members (15940ms) Who is the governor of Alaska? a real estate developer -4.11290384771017 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (a real estate developer, does business in, Alaska) -> a real estate developer (15940ms) Who is the governor of Alaska? a singer songwriter -4.114215400592104 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, hail from, Alaska) -> (a singer songwriter, hails from, Alaska) -> a singer songwriter (15940ms) Who is the governor of Alaska? specific user benefits -4.11482263547936 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (specific user benefits, could be done in, Alaska) -> specific user benefits (16033ms) Who is the governor of Alaska? Lisa Murkowski -4.1171790585975 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (Lisa Murkowski, won a Senate seat in, Alaska) -> Lisa Murkowski (16033ms) Who is the governor of Alaska? the US Senate -4.12440217376127 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (Alaska, elected a Democrat to, the US Senate) -> the US Senate (16033ms) Who is the governor of Alaska? The breed -4.132817493184229 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be native of, Alaska) -> (The breed, is a native of, Alaska) -> The breed (16033ms) Who is the governor of Alaska? pastor -4.1388780267143765 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (Alaska, was elected as, pastor) -> pastor (16033ms) Who is the governor of Alaska? The Nautilus Swell -4.142007379343281 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (The Nautilus Swell, does trips in, Alaska) -> The Nautilus Swell (16033ms) Who is the governor of Alaska? Kim -4.163059465455113 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (Kim, has done field work in, Alaska) -> Kim (16033ms) Who is the governor of Alaska? sustainable -4.163611820963212 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, recognize as, $x) -> (Alaska seafood, has been recognized as, sustainable) -> sustainable (16172ms) Who is the governor of Alaska? Much work -4.16411230288217 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (Much work, is already being done in, Alaska) -> Much work (16172ms) Who is the governor of Alaska? Mitt Romney -4.1649903248115105 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (Mitt Romney, also won in, Alaska) -> Mitt Romney (16172ms) Who is the governor of Alaska? time -4.1691455043433985 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (time, can be done in, Alaska) -> time (16172ms) Who is the governor of Alaska? territory -4.184798777528751 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be there in, Alaska) -> (territory, there is to explore in, Alaska) -> territory (16172ms) Who is the governor of Alaska? George -4.18788699384095 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (George, has been a resident of, Alaska) -> George (16172ms) Who is the governor of Alaska? CMU -4.189788953416061 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (CMU, won its second game in, the Great Alaska Shootout 90-84) -> CMU (16172ms) Who is the governor of Alaska? a freshman -4.196902609860244 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, hail from, Alaska) -> (a freshman, hails from, Alaska) -> a freshman (16458ms) Who is the governor of Alaska? Kayakers and hunters -4.236756093059794 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, depart from, Alaska) -> (Kayakers and hunters, departed from, Alaska) -> Kayakers and hunters (16458ms) Who is the governor of Alaska? the 1950s and 60s -4.2406400847183825 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (the 1950s and 60s, meanwhile work being done in, Alaska) -> the 1950s and 60s (16458ms) Who is the governor of Alaska? Bruce -4.246700854065713 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (Bruce, is a lifelong resident of, Alaska) -> Bruce (16458ms) Who is the governor of Alaska? a medical and dental plan -4.254440031890907 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (AlaskaCare, must elect, a medical and dental plan) -> a medical and dental plan (16458ms) Who is the governor of Alaska? Chris Chris A -4.261685865359402 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, hail from, Alaska) -> (Chris Chris A, hails from, Alaska) -> Chris Chris A (16458ms) Who is the governor of Alaska? Williams -4.267921591203505 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be president of, Alaska) -> (Williams, is president of, Alaska Conservation Solutions) -> Williams (16458ms) Who is the governor of Alaska? the broader community Patti -4.272535173466817 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be president of, Alaska) -> (the broader community Patti, is Past President of, Alaska Women) -> the broader community Patti (16511ms) Who is the governor of Alaska? so much -4.274003984832216 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (so much, do in, Alaska) -> so much (16511ms) Who is the governor of Alaska? Applicants -4.274538268678834 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (Applicants, must be Native residents of, Southeast Alaska) -> Applicants (16511ms) Who is the governor of Alaska? John McCains -4.282380539691845 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be choose as, $x) -> (the Alaska governor, was chosen as, John McCains) -> John McCains (16511ms) Who is the governor of Alaska? Lescanec -4.288193573812945 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident of, Alaska) -> (Lescanec, is a 25-year resident of, Alaska) -> Lescanec (16511ms) Who is the governor of Alaska? the military and -4.291388121311837 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be outside of, Alaska) -> (the military and, am stationed outside of, Alaska) -> the military and (16511ms) Who is the governor of Alaska? Tilden -4.292679126647979 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be president of, Alaska) -> (Tilden, was elected president of, Alaska Airlines) -> Tilden (16590ms) Who is the governor of Alaska? a radio-collared bear -4.315449684100994 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, depart from, Alaska) -> (a radio-collared bear, departed from, Alaska?s coast) -> a radio-collared bear (16590ms) Who is the governor of Alaska? Obama/Biden -4.3340178620354965 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (Obama/Biden, won in, Alaska) -> Obama/Biden (16590ms) Who is the governor of Alaska? a Democrat -4.376394768183827 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (a Democrat, has won a federal election in, Alaska) -> a Democrat (16590ms) Who is the governor of Alaska? Sport trips -4.384098414449184 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (Sport trips, are popular in, Alaska) -> Sport trips (16590ms) Who is the governor of Alaska? Archimandrite Raphael Hawaweeny -4.401216871755556 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (Alaska, elected, Archimandrite Raphael Hawaweeny) -> Archimandrite Raphael Hawaweeny (16590ms) Who is the governor of Alaska? storms -4.401536008110439 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (storms, usually do in, Alaska) -> storms (16707ms) Who is the governor of Alaska? a rock -4.402985297260043 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, have emerge as, $x) -> (Alaska, has emerged as, a rock) -> a rock (16707ms) Who is the governor of Alaska? an oil tanker -4.4286270191056145 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (an oil tanker, do in, Alaska) -> an oil tanker (16707ms) Who is the governor of Alaska? salmon roe -4.433048003813392 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, hail from, Alaska) -> (salmon roe, hailed from, Alaska) -> salmon roe (16707ms) Who is the governor of Alaska? ?The girls -4.442648943253366 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (?The girls, did a show in, Alaska) -> ?The girls (16707ms) Who is the governor of Alaska? Alder -4.445764757587069 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (Alder, is very popular in, Alaska) -> Alder (16707ms) Who is the governor of Alaska? a chance -4.4502751754265395 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (a chance, do very well in, Alaska) -> a chance (16707ms) Who is the governor of Alaska? a real climate champ -4.460458151163451 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (Alaska, elected, a real climate champ) -> a real climate champ (16758ms) Who is the governor of Alaska? risk -4.471926242063397 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be there in, Alaska) -> (risk, ,there are diverse voices in, Alaska) -> risk (16758ms) Who is the governor of Alaska? Mr Romney -4.477002721265466 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (Mr Romney, also won in, Alaska) -> Mr Romney (16758ms) Who is the governor of Alaska? numerous winter trips -4.481825505835985 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, have do in, Alaska) -> (numerous winter trips, has done some exploring in, Alaska) -> numerous winter trips (16758ms) Who is the governor of Alaska? You?ve -4.486099873009021 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (You?ve, also done plays in, Alaska) -> You?ve (16758ms) Who is the governor of Alaska? There?s so..SO -4.486984059410117 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (There?s so..SO, do in, Alaska) -> There?s so..SO (16758ms) Who is the governor of Alaska? just what Palin -4.4896366713157025 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, have do in, Alaska) -> (just what Palin, has done in, Alaska) -> just what Palin (16830ms) Who is the governor of Alaska? Barr -4.493547450610723 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (Barr, is expected to do relatively well in, Alaska) -> Barr (16830ms) Who is the governor of Alaska? fact -4.494441360505619 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (fact, do in, Alaska visitors) -> fact (16830ms) Who is the governor of Alaska? Nearly three-quarters -4.4992982590051 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, hail from, Alaska) -> (Nearly three-quarters, hail from, southcentral Alaska) -> Nearly three-quarters (16830ms) Who is the governor of Alaska? Max Newman Max Newman -4.501950870910683 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, hail from, Alaska) -> (Max Newman Max Newman, originally hails from, Alaska) -> Max Newman Max Newman (16830ms) Who is the governor of Alaska? AS 25.24.430 -4.515082812590521 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, govern by, $x) -> (Alaska, is governed by, AS 25.24.430) -> AS 25.24.430 (16830ms) Who is the governor of Alaska? Alternative energy -4.527520191341468 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, have a place in, Alaska) -> (Alternative energy, has a place in, rural Alaska) -> Alternative energy (16868ms) Who is the governor of Alaska? AS 40.25.300 -4.538349615393722 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, govern by, $x) -> (Alaska web site, is governed by, AS 40.25.300) -> AS 40.25.300 (16868ms) Who is the governor of Alaska? One biology student -4.554183069130177 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (One biology student, did an internship in, Alaska) -> One biology student (16868ms) Who is the governor of Alaska? Mushing -4.5544178646915725 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (Mushing, is a popular sport in, Alaska) -> Mushing (16868ms) Who is the governor of Alaska? Fishing -4.6013590569240375 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (Fishing, is also a popular pastime in, Alaska) -> Fishing (16868ms) Who is the governor of Alaska? the military -4.643083627506925 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, govern by, $x) -> (Alaska, was loosely governed by, the military) -> the military (16868ms) Who is the governor of Alaska? grizzlies -4.65843584578202 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (grizzlies, is done in, Alaska) -> grizzlies (16868ms) Who is the governor of Alaska? The raven -4.670561287626068 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be resident in, Alaska) -> (The raven, is a permanent resident in, Alaska) -> The raven (16868ms) Who is the governor of Alaska? collegiate 10,000-meter record holder -4.717574913448853 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (collegiate 10,000-meter record holder, did spend time in, Alaska) -> collegiate 10,000-meter record holder (16929ms) Who is the governor of Alaska? family -4.748931880492302 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, hail from, Alaska) -> (family, hails from, the interior Alaska village) -> family (16929ms) Who is the governor of Alaska? Keri -4.759800971932533 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, hail from, Alaska) -> (Keri, originally hails from, Alaska) -> Keri (16929ms) Who is the governor of Alaska? axes -4.771677696211601 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (axes, is done in, Alaska) -> axes (16929ms) Who is the governor of Alaska? wolves -4.787180829629126 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (wolves, is currently being done in, Alaska) -> wolves (16929ms) Who is the governor of Alaska? officials -4.791601814336904 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, govern by, $x) -> (1884 Alaska, was governed by, officials) -> officials (16929ms) Who is the governor of Alaska? Preserve -4.7958028970531235 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (Preserve, is the most popular tourist attraction in, Alaska) -> Preserve (16929ms) Who is the governor of Alaska? a big 5-1 -4.83684187044606 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (a big 5-1, win Saturday in, Alaska) -> a big 5-1 (16929ms) Who is the governor of Alaska? Chelsea -4.853501703900385 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (Chelsea, is doing well in, Alaska) -> Chelsea (17008ms) Who is the governor of Alaska? Treasurer -4.858833597768241 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (Alaska Village Electric Cooperative, was elected, Treasurer) -> Treasurer (17009ms) Who is the governor of Alaska? the site -4.860195981182809 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be choose as, $x) -> (Alaska, was chosen as, the site) -> the site (17008ms) Who is the governor of Alaska? Paul -4.877032468008926 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (Paul, also won substantial percentages in, Alaska) -> Paul (17008ms) Who is the governor of Alaska? everybody -4.878656272780331 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (everybody, did n?t live in, Alaska) -> everybody (17009ms) Who is the governor of Alaska? the venue -4.899259766549703 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be select as, $x) -> (Alaska, has been selected as, the venue) -> the venue (17009ms) Who is the governor of Alaska? the winner -4.901688700930041 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be select as, $x) -> (Alaska, was selected as, the winner) -> the winner (17009ms) Who is the governor of Alaska? 1990 -4.9049848832075 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (the Alaska Independence Party, elected a governor back in, 1990) -> 1990 (17068ms) Who is the governor of Alaska? Florida researcher -4.912619290017276 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, have do in, Alaska) -> (Florida researcher, has done extensive field work in, Alaska) -> Florida researcher (17068ms) Who is the governor of Alaska? Heartbeat -4.9255293037958054 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (Heartbeat, appears to be hugely popular in, rural Alaska) -> Heartbeat (17068ms) Who is the governor of Alaska? Obama -4.941203543762519 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (Obama, could win in, Alaska) -> Obama (17068ms) Who is the governor of Alaska? the MSM -4.973351441283027 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (the MSM, do some in-depth documentaries on, Alaska) -> the MSM (17068ms) Who is the governor of Alaska? more than 28 basins -4.978313539201835 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, have do in, Alaska) -> (more than 28 basins, has done fieldwork in, Alaska) -> more than 28 basins (17112ms) Who is the governor of Alaska? the manager -4.981490155897584 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be select as, $x) -> (Alaska, then was selected as, the manager) -> the manager (17112ms) Who is the governor of Alaska? women -5.0205201406268145 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (women, do in, Alaska) -> women (17112ms) Who is the governor of Alaska? Democrats -5.0278549178181775 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (Democrats, can win in, Alaska) -> Democrats (17169ms) Who is the governor of Alaska? the state -5.046463873677416 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be choose as, $x) -> (the second project Alaska, was chosen as, the state) -> the state (17168ms) Who is the governor of Alaska? Brenda -5.051663698734298 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, hail from, Alaska) -> (Brenda, hails from, Juneau Alaska) -> Brenda (17168ms) Who is the governor of Alaska? the recipient -5.065031998909623 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be select as, $x) -> (Covenant House Alaska, was selected as, the recipient) -> the recipient (17168ms) Who is the governor of Alaska? Seward -5.079169803613258 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (Seward, is an extremely popular destination in, Alaska) -> Seward (17169ms) Who is the governor of Alaska? Kentucky bluegrasses -5.088966901827181 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (Kentucky bluegrasses, do well in, Alaska) -> Kentucky bluegrasses (17248ms) Who is the governor of Alaska? representatives -5.092075566927395 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (Alaska?s, elected, representatives) -> representatives (17248ms) Who is the governor of Alaska? Commercial airlines -5.104882415153805 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (Commercial airlines, do operate in, Alaska) -> Commercial airlines (17248ms) Who is the governor of Alaska? a company -5.106961751626885 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (a company, doing business in, Alaska) -> a company (17248ms) Who is the governor of Alaska? the tremendous diversity -5.110445612829638 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be there in, Alaska) -> (the tremendous diversity, there is in, Alaska) -> the tremendous diversity (17248ms) Who is the governor of Alaska? Willow -5.115347107007604 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be there in, Alaska) -> (Willow, is a community there in, Alaska) -> Willow (17248ms) Who is the governor of Alaska? 1966 -5.129571127712252 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (the Alaska Federation, was elected its first chairman in, 1966) -> 1966 (17298ms) Who is the governor of Alaska? Alaska -5.148990035837256 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, depart from, Alaska) -> (Alaska, depart mostly from, Whittier,Alaska) -> Alaska (17298ms) Who is the governor of Alaska? Heather -5.161368803559494 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, hail from, Alaska) -> (Heather, hails from, Alaska) -> Heather (17298ms) Who is the governor of Alaska? Correct -5.165458379315334 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be there in, Alaska) -> (Correct, Are there more depressed people in, Alaska) -> Correct (17298ms) Who is the governor of Alaska? the sample state -5.166085473101301 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be choose as, $x) -> (Alaska, was chosen as, the sample state) -> the sample state (17352ms) Who is the governor of Alaska? the highest point -5.202462402549717 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be also home to, $x) -> (Alaska, is also home to, the highest point) -> the highest point (17352ms) Who is the governor of Alaska? Exxon -5.208166694415601 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, have do in, Alaska) -> (Exxon, has done in, Alaska) -> Exxon (17352ms) Who is the governor of Alaska? the top carbon-storage forests -5.21094472747219 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be rank as, $x) -> (southeast Alaska, are ranked as, the top carbon-storage forests) -> the top carbon-storage forests (17352ms) Who is the governor of Alaska? The pungent beverage -5.216027811253312 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (The pungent beverage, was so popular in, Alaska) -> The pungent beverage (17417ms) Who is the governor of Alaska? drinking -5.231843378305938 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, also create, Alaska) -> (drinking, also creates problems in, village Alaska) -> drinking (17417ms) Who is the governor of Alaska? the highest priority site -5.24779834776402 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be select as, $x) -> (Alaska, was selected as, the highest priority site) -> the highest priority site (17417ms) Who is the governor of Alaska? the state governments -5.252204008185094 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (the state governments, just is done in, Alaska) -> the state governments (17417ms) Who is the governor of Alaska? the world?s largest volcanic eruption -5.255933074573031 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be also home to, $x) -> (Alaska, was also home to, the world?s largest volcanic eruption) -> the world?s largest volcanic eruption (17416ms) Who is the governor of Alaska? the same system -5.260161791199552 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, govern by, $x) -> (Alaska, should be governed by, the same system) -> the same system (17865ms) Who is the governor of Alaska? the average bear -5.276926475457213 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (the average bear, is being done in, Alaska) -> the average bear (17864ms) Who is the governor of Alaska? the highest priority primary site -5.277194982663897 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be choose as, $x) -> (Alaska, was chosen as, the highest priority primary site) -> the highest priority primary site (17864ms) Who is the governor of Alaska? The race -5.280011898214122 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, be popular in, Alaska) -> (The race, is the most popular sporting event in, Alaska) -> The race (17864ms) Who is the governor of Alaska? Greens -5.30243869432087 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (Greens, are doing in, Alaska) -> Greens (17865ms) Who is the governor of Alaska? the counting -5.305199196614156 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (the counting, is done in, Alaska) -> the counting (17865ms) Who is the governor of Alaska? the grey wolf -5.329294890768379 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be also home to, $x) -> (Alaska, is also home to, the grey wolf) -> the grey wolf (17865ms) Who is the governor of Alaska? the same law -5.3414729259739815 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, govern by, $x) -> (Alaska, is governed by, the same law) -> the same law (18760ms) Who is the governor of Alaska? a 2011 Fellow -5.346179612193794 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (Alaska Fairbanks Institute, has been elected, a 2011 Fellow) -> a 2011 Fellow (18760ms) Who is the governor of Alaska? the abortion -5.3539891377977025 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (the abortion, was n?t done in, Alaska) -> the abortion (18760ms) Who is the governor of Alaska? the legendary Copper River salmon -5.394260144112833 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, be also home to, $x) -> (Alaska, is also the home to, the legendary Copper River salmon) -> the legendary Copper River salmon (18760ms) Who is the governor of Alaska? the board -5.396793311209095 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: (Alaska, elect, $x) -> (Alaska Chris McDowell, was elected to, the board) -> the board (18760ms) Who is the governor of Alaska? Robertson -5.425029488048134 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (Robertson, won the caucuses in, Alaska) -> Robertson (19326ms) Who is the governor of Alaska? Stevens -5.453964202559044 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (Stevens, is winning in, Alaska) -> Stevens (19326ms) Who is the governor of Alaska? Romney -5.512728840728876 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (Romney, also wins in, the Alaska caucus) -> Romney (19457ms) Who is the governor of Alaska? the companies -5.529791026764729 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (the companies, do business in, Alaska) -> the companies (19457ms) Who is the governor of Alaska? Bethel -5.544582033728929 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (Bethel, has won an award in, the Alaska Press Club 2006 contest) -> Bethel (19457ms) Who is the governor of Alaska? the goods -5.567876084459792 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (the goods, do originate in, Alaska) -> the goods (19457ms) Who is the governor of Alaska? 10 troops in Afghanistan -5.613795485962841 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, hail from, Alaska) -> (10 troops in Afghanistan, hailing from, Alaska-based units) -> 10 troops in Afghanistan (19579ms) Who is the governor of Alaska? oil companies -5.614510062397674 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (oil companies, doing business in, Alaska) -> oil companies (19579ms) Who is the governor of Alaska? Defense -5.615702372876173 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (Defense, recently did in, Alaska) -> Defense (19579ms) Who is the governor of Alaska? The former Massachusetts governor -5.616458427768778 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, win in, Alaska) -> (The former Massachusetts governor, won in, Alaska) -> The former Massachusetts governor (19579ms) Who is the governor of Alaska? Doctors -5.617535138657749 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (Doctors, are allowed to do so in, Alaska) -> Doctors (19579ms) Who is the governor of Alaska? the firm -5.676255017615299 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, have do in, Alaska) -> (the firm, does have a 50 % stake in, Alaska) -> the firm (19579ms) Who is the governor of Alaska? the job SP -5.726010061544098 Who is the governor of Alaska? -> $x: ($x, is the governor of, Alaska) -> $x: ($x, do in, Alaska) -> (the job SP, did in, Alaska) -> the job SP (19579ms) What political party does Thabo Mbeki belong to? Monwabise Kwanda Mbeki -7.606067202164608 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> how many child do thabo mbekus have ? -> $x: (thabo mbekus, child, $x) -> (Thabo Mbeki, Children, Monwabise Kwanda Mbeki) -> Monwabise Kwanda Mbeki (3875ms) What political party does Thabo Mbeki belong to? Thabo Mvuyelwa Mbeki -10.203477842447496 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, also know as, $x) -> (Thabo Mbeki, Also known as, Thabo Mvuyelwa Mbeki) -> Thabo Mvuyelwa Mbeki (7261ms) What political party does Thabo Mbeki belong to? Aids sceptic -10.490969514360781 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (President Thabo Mbeki, Instance Of, Aids sceptic) -> Aids sceptic (7260ms) What political party does Thabo Mbeki belong to? african political leader -10.665684688502225 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, african political leader) -> african political leader (7260ms) What political party does Thabo Mbeki belong to? influential political figure -10.683160201761567 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, influential political figure) -> influential political figure (7260ms) What political party does Thabo Mbeki belong to? key political figure -10.707703833872953 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, key political figure) -> key political figure (7259ms) What political party does Thabo Mbeki belong to? prominent South Africans -10.739128006643961 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, prominent South Africans) -> prominent South Africans (7259ms) What political party does Thabo Mbeki belong to? misunderstood man -10.747852423031066 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, misunderstood man) -> misunderstood man (7260ms) What political party does Thabo Mbeki belong to? intelligent man -10.754245549617037 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, intelligent man) -> intelligent man (7284ms) What political party does Thabo Mbeki belong to? political figure -10.896627569094925 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, political figure) -> political figure (7284ms) What political party does Thabo Mbeki belong to? political leader -10.898263679822099 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, political leader) -> political leader (7284ms) What political party does Thabo Mbeki belong to? man -10.901393344057698 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, man) -> man (7284ms) What political party does Thabo Mbeki belong to? leader of neighbouring country -10.930491922841684 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, leader of neighbouring country) -> leader of neighbouring country (7284ms) What political party does Thabo Mbeki belong to? advocate of debt cancellation -10.936488056116529 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (President Thabo Mbeki, Instance Of, advocate of debt cancellation) -> advocate of debt cancellation (7284ms) What political party does Thabo Mbeki belong to? ANC leader -10.94410802065624 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, ANC leader) -> ANC leader (7284ms) What political party does Thabo Mbeki belong to? leader of the ANC -10.949674642596504 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, leader of the ANC) -> leader of the ANC (7308ms) What political party does Thabo Mbeki belong to? VIPs -10.994367668580058 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (President Thabo Mbeki, Instance Of, VIPs) -> VIPs (7308ms) What political party does Thabo Mbeki belong to? prominent world leader -11.032675788979244 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, prominent world leader) -> prominent world leader (7308ms) What political party does Thabo Mbeki belong to? senior ANC leader -11.033814227204042 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, senior ANC leader) -> senior ANC leader (7308ms) What political party does Thabo Mbeki belong to? strong, credible leader -11.059720214160954 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, strong, credible leader) -> strong, credible leader (7308ms) What political party does Thabo Mbeki belong to? no-show -11.069339427965563 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (President Thabo Mbeki, Instance Of, no-show) -> no-show (7308ms) What political party does Thabo Mbeki belong to? man of culture -11.074769979370844 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, man of culture) -> man of culture (7308ms) What political party does Thabo Mbeki belong to? respected african leader -11.09549341074896 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, respected african leader) -> respected african leader (7332ms) What political party does Thabo Mbeki belong to? iconic african leader -11.09549341074896 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, iconic african leader) -> iconic african leader (7332ms) What political party does Thabo Mbeki belong to? world class leader -11.098920716020935 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, world class leader) -> world class leader (7332ms) What political party does Thabo Mbeki belong to? prominent world figure -11.104306481273225 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, prominent world figure) -> prominent world figure (7332ms) What political party does Thabo Mbeki belong to? typical African leader -11.104614169596097 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, typical African leader) -> typical African leader (7332ms) What political party does Thabo Mbeki belong to? AIDS theory denier -11.104614169596097 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, AIDS theory denier) -> AIDS theory denier (7332ms) What political party does Thabo Mbeki belong to? key ANC leader -11.104614169596097 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, key ANC leader) -> key ANC leader (7332ms) What political party does Thabo Mbeki belong to? famous leader from the province -11.106912263521957 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, famous leader from the province) -> famous leader from the province (7355ms) What political party does Thabo Mbeki belong to? political figurehead -11.13191651886003 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (former president Thabo Mbeki, Instance Of, political figurehead) -> political figurehead (7355ms) What political party does Thabo Mbeki belong to? respected African statesman -11.132032611771896 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, respected African statesman) -> respected African statesman (7355ms) What political party does Thabo Mbeki belong to? south african leader -11.139784741360407 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, south african leader) -> south african leader (7355ms) What political party does Thabo Mbeki belong to? extremely embarrassing situation -11.142617206061805 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (President Thabo Mbeki, Instance Of, extremely embarrassing situation) -> extremely embarrassing situation (7355ms) What political party does Thabo Mbeki belong to? responsible, democratic leader -11.147684632078265 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (South Africa's Thabo Mbeki, Instance Of, responsible, democratic leader) -> responsible, democratic leader (7376ms) What political party does Thabo Mbeki belong to? champion of the empowerment of woman -11.147684632078265 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (President Thabo Mbeki, Instance Of, champion of the empowerment of woman) -> champion of the empowerment of woman (7355ms) What political party does Thabo Mbeki belong to? great South African Statesman -11.151737964908941 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, great South African Statesman) -> great South African Statesman (7376ms) What political party does Thabo Mbeki belong to? man of integrity and intelligence -11.151737964908941 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, man of integrity and intelligence) -> man of integrity and intelligence (7376ms) What political party does Thabo Mbeki belong to? south african great leader -11.151737964908941 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, south african great leader) -> south african great leader (7376ms) What political party does Thabo Mbeki belong to? petty and stupid man -11.151737964908941 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, petty and stupid man) -> petty and stupid man (7376ms) What political party does Thabo Mbeki belong to? national and international leader -11.15722165346667 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, national and international leader) -> national and international leader (7376ms) What political party does Thabo Mbeki belong to? african leader -11.159304160642808 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, african leader) -> african leader (7376ms) What political party does Thabo Mbeki belong to? South Africa n politician -11.192578587513406 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mvuyelwa Mbeki, Instance Of, South Africa n politician) -> South Africa n politician (7434ms) What political party does Thabo Mbeki belong to? administrative, policy or technocratic leader -11.192578587513406 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, administrative, policy or technocratic leader) -> administrative, policy or technocratic leader (7376ms) What political party does Thabo Mbeki belong to? strong supporter of Aristide -11.192865626946942 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (President Thabo Mbeki, Instance Of, strong supporter of Aristide) -> strong supporter of Aristide (7434ms) What political party does Thabo Mbeki belong to? senior african national congress figure -11.233706249551407 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, senior african national congress figure) -> senior african national congress figure (7434ms) What political party does Thabo Mbeki belong to? tenacious and courageous champion of the search -11.287873373590493 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Excellency President Thabo Mbeki, Instance Of, tenacious and courageous champion of the search) -> tenacious and courageous champion of the search (7434ms) What political party does Thabo Mbeki belong to? weak leader -11.293214706274345 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, weak leader) -> weak leader (7434ms) What political party does Thabo Mbeki belong to? ethical, extremely hard working, frugal, highly intelligent and capitalistic leader -11.335520766629037 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, ethical, extremely hard working, frugal, highly intelligent and capitalistic leader) -> ethical, extremely hard working, frugal, highly intelligent and capitalistic leader (7434ms) What political party does Thabo Mbeki belong to? prominent leader -11.337708418271667 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, prominent leader) -> prominent leader (7434ms) What political party does Thabo Mbeki belong to? real leader -11.338797483224766 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, real leader) -> real leader (7434ms) What political party does Thabo Mbeki belong to? good leader -11.339887239472576 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, good leader) -> good leader (7513ms) What political party does Thabo Mbeki belong to? revolutionary leader -11.349928363796497 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, revolutionary leader) -> revolutionary leader (7513ms) What political party does Thabo Mbeki belong to? world leader -11.352414102689519 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, world leader) -> world leader (7513ms) What political party does Thabo Mbeki belong to? better leader -11.37400774110883 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, better leader) -> better leader (7513ms) What political party does Thabo Mbeki belong to? militant individual -11.406805324851627 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, militant individual) -> militant individual (7513ms) What political party does Thabo Mbeki belong to? exceptional leader -11.413855781393607 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, exceptional leader) -> exceptional leader (7513ms) What political party does Thabo Mbeki belong to? ruthless hypocrite -11.416889130614802 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (President Thabo Mbeki, Instance Of, ruthless hypocrite) -> ruthless hypocrite (7513ms) What political party does Thabo Mbeki belong to? contemporary figure -11.42124513045951 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, contemporary figure) -> contemporary figure (7535ms) What political party does Thabo Mbeki belong to? international figure -11.423865687755375 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, international figure) -> international figure (7535ms) What political party does Thabo Mbeki belong to? capable leader -11.427481525580843 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, capable leader) -> capable leader (7535ms) What political party does Thabo Mbeki belong to? great leader -11.43373632826242 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, great leader) -> great leader (7535ms) What political party does Thabo Mbeki belong to? close friend -11.439316890739418 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (President Thabo Mbeki, Instance Of, close friend) -> close friend (7535ms) What political party does Thabo Mbeki belong to? parent figure -11.475492307137845 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Mr. Thabo Mbeki, Instance Of, parent figure) -> parent figure (7535ms) What political party does Thabo Mbeki belong to? influential leader -11.475501099229344 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (South Africa's Thabo Mbeki, Instance Of, influential leader) -> influential leader (7535ms) What political party does Thabo Mbeki belong to? public figure -11.482548370643759 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (President Thabo Mbeki, Instance Of, public figure) -> public figure (7535ms) What political party does Thabo Mbeki belong to? good entry -11.48720745921359 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (President Thabo Mbeki, Instance Of, good entry) -> good entry (7555ms) What political party does Thabo Mbeki belong to? thought leader -11.493118448186374 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Mr Thabo Mbeki, Instance Of, thought leader) -> thought leader (7555ms) What political party does Thabo Mbeki belong to? urbane statesman -11.50890688136279 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Current president Thabo Mbeki, Instance Of, urbane statesman) -> urbane statesman (7555ms) What political party does Thabo Mbeki belong to? Democrat -11.677441157043017 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, Democrat) -> Democrat (7555ms) What political party does Thabo Mbeki belong to? prestigious event -11.758868716020359 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki's Presidential Inauguration, Instance Of, prestigious event) -> prestigious event (7555ms) What political party does Thabo Mbeki belong to? leader par excellence -11.922757833870298 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (President Thabo Mbeki, Instance Of, leader par excellence) -> leader par excellence (7555ms) What political party does Thabo Mbeki belong to? Giraldo -12.76212591894626 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: ($x, member, thabo mbekus) -> (Giraldo, was a member of, President Thabo Mbeki) -> Giraldo (7555ms) What political party does Thabo Mbeki belong to? leader -13.24529342758795 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, leader) -> leader (7617ms) What political party does Thabo Mbeki belong to? person -13.301298499454319 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, person) -> person (7617ms) What political party does Thabo Mbeki belong to? dignitary -13.373974605554181 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, dignitary) -> dignitary (7617ms) What political party does Thabo Mbeki belong to? intellectual -13.445756434708034 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, intellectual) -> intellectual (7617ms) What political party does Thabo Mbeki belong to? luminary -13.466418140310905 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, luminary) -> luminary (7617ms) What political party does Thabo Mbeki belong to? president -13.549885474476577 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (President Thabo Mbeki, Instance Of, president) -> president (7652ms) What political party does Thabo Mbeki belong to? dictator -13.551631380496744 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (President Thabo Mbeki, Instance Of, dictator) -> dictator (7652ms) What political party does Thabo Mbeki belong to? individual -13.557237658484688 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, individual) -> individual (7652ms) What political party does Thabo Mbeki belong to? idiot -13.60361136211802 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, idiot) -> idiot (7652ms) What political party does Thabo Mbeki belong to? area -13.627437008399703 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki, Instance Of, area) -> area (7651ms) What political party does Thabo Mbeki belong to? pain -13.657892741247286 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Bloody Thabo Mbeki, Instance Of, pain) -> pain (7672ms) What political party does Thabo Mbeki belong to? shantytown -13.658363912523974 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki Village, Instance Of, shantytown) -> shantytown (7672ms) What political party does Thabo Mbeki belong to? exile -13.681331306615716 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (President Thabo Mbeki, Instance Of, exile) -> exile (7672ms) What political party does Thabo Mbeki belong to? mean -13.711656427139808 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Thabo Mbeki in 2000, Instance Of, mean) -> mean (7672ms) What political party does Thabo Mbeki belong to? guest -13.71963789525297 What political party does Thabo Mbeki belong to? -> what political party do [ thabo mbekus ] belong to ? -> what be the political party of thabo mbekus ? -> $x: (thabo mbekus, political party, $x) -> $x: (thabo mbekus, instance of, $x) -> (Former president Thabo Mbeki, Instance Of, guest) -> guest (7672ms) What is Jerry's last name? the same party -12.298202070722894 What is Jerry's last name? -> what be [ jerry ] s last name ? -> how many girl do jerry have ? -> $x: (jerry, girl, $x) -> (Jerry, meets a girl at, the same party) -> the same party (19929ms) What is Hong Kong's population? 10 million -3.0463143223815905 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of over, 10 million) -> 10 million (4729ms) What is Hong Kong's population? Buddhists and Taoists -3.3661513653020023 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a huge population of, Buddhists and Taoists) -> Buddhists and Taoists (4729ms) What is Hong Kong's population? migrant workers -3.4132326599835525 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a huge population of, migrant workers) -> migrant workers (4729ms) What is Hong Kong's population? a dense urban setting -3.733093464963627 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a large population in, a dense urban setting) -> a dense urban setting (4729ms) What is Hong Kong's population? 7 million -3.7834664142295082 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (densely populated Hong Kong, has a population of, 7 million) -> 7 million (5514ms) What is Hong Kong's population? seven million -3.7959926652976774 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of, seven million) -> seven million (5514ms) What is Hong Kong's population? more than 7.2 million -3.8382866562273303 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has an population of, more than 7.2 million) -> more than 7.2 million (5513ms) What is Hong Kong's population? 247,501 -3.8517823284885173 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population density of, 247,501) -> 247,501 (5513ms) What is Hong Kong's population? 6,600,000 -3.8768680590193942 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of, 6,600,000) -> 6,600,000 (7187ms) What is Hong Kong's population? 4.3 million -3.8792712090876766 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has an online population of, 4.3 million) -> 4.3 million (7187ms) What is Hong Kong's population? 16,470 persons -3.8792712090876766 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population density of, 16,470 persons) -> 16,470 persons (7187ms) What is Hong Kong's population? 6,571 people -3.8886213453901184 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a massive population density of, 6,571 people) -> 6,571 people (7187ms) What is Hong Kong's population? 4.2 million -3.9030012040524027 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, had a population of, 4.2 million) -> 4.2 million (7203ms) What is Hong Kong's population? 6,708,389 -3.930704379098734 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of, 6,708,389) -> 6,708,389 (7203ms) What is Hong Kong's population? 6,900,000 -3.9333569910043185 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of, 6,900,000) -> 6,900,000 (7203ms) What is Hong Kong's population? 5,674,114 -3.948323749802589 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, had a population of, 5,674,114) -> 5,674,114 (7203ms) What is Hong Kong's population? 6.7 million -3.958705685153616 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of, 6.7 million) -> 6.7 million (7728ms) What is Hong Kong's population? six million -3.9924981020327692 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of approximately, six million) -> six million (7728ms) What is Hong Kong's population? 6.80 million -3.9933327304933934 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a total population of, 6.80 million) -> 6.80 million (7747ms) What is Hong Kong's population? 600,000 -4.002915584933689 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, had a population of about, 600,000) -> 600,000 (7747ms) What is Hong Kong's population? 7.3 million -4.005632712264235 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of, 7.3 million) -> 7.3 million (7747ms) What is Hong Kong's population? 7 million people -4.006595684616727 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of, 7 million people) -> 7 million people (7748ms) What is Hong Kong's population? 6.9 million people -4.018909884211708 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of, 6.9 million people) -> 6.9 million people (7763ms) What is Hong Kong's population? 6.78 million -4.030213851332105 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a total population of, 6.78 million) -> 6.78 million (7763ms) What is Hong Kong's population? 5.6 million -4.034746664289231 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of, 5.6 million) -> 5.6 million (7763ms) What is Hong Kong's population? 6 million people -4.047760720698213 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of, 6 million people) -> 6 million people (7780ms) What is Hong Kong's population? 6.9 million -4.055147783153183 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of, 6.9 million) -> 6.9 million (7780ms) What is Hong Kong's population? 6,855,125 people -4.055147783153183 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of, 6,855,125 people) -> 6,855,125 people (7780ms) What is Hong Kong's population? 6,970,000 -4.067526550875419 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has a population of about, 6,970,000) -> 6,970,000 (7780ms) What is Hong Kong's population? 524 200 -4.0783508392790235 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, had a large foreign population of about, 524 200) -> 524 200 (7797ms) What is Hong Kong's population? 324.200 -4.133608708758823 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, had a large foreign population of about, 324.200) -> 324.200 (7798ms) What is Hong Kong's population? pressing issue -4.140344249517652 What is Hong Kong's population? -> $x: (Hong Kong's population, instance of, $x) -> (Hong Kong's population decline, Instance Of, pressing issue) -> pressing issue (7798ms) What is Hong Kong's population? 517 560 -4.154029020061056 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, had a large foreign population of about, 517 560) -> 517 560 (7798ms) What is Hong Kong's population? China -4.315190471670769 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (The Hong Kong SAR, has a small population compared to, China) -> China (7909ms) What is Hong Kong's population? five -6.167012591177029 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, had a population of, five) -> five (8017ms) What is Hong Kong's population? bisexuals -6.27259058373416 What is Hong Kong's population? -> $x: (Hong Kong, population, $x) -> (Hong Kong, has the world 's largest population of, bisexuals) -> bisexuals (8018ms) What is Hong Kong's population? priority -6.587573709789652 What is Hong Kong's population? -> $x: (Hong Kong's population, instance of, $x) -> (Hong Kong's high net worth population, Instance Of, priority) -> priority (8200ms) What is Hong Kong's population? British Hong Kong -8.667684719445695 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, entity involve, $x) -> (Battle of Hong Kong, entity involved, British Hong Kong) -> British Hong Kong (14666ms) What is Hong Kong's population? pearl-river -9.357771466839608 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (hong kong, is a city that lies on the river, pearl-river) -> pearl-river (12627ms) What is Hong Kong's population? NEW -9.470626308374433 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (hong kong, is a proxy for, NEW) -> NEW (12627ms) What is Hong Kong's population? TV show -9.645305984172575 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (hong kong, is a, TV show) -> TV show (12627ms) What is Hong Kong's population? Southern China -9.665394305088327 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is a territory in, Southern China) -> Southern China (12628ms) What is Hong Kong's population? CHina -9.740600770249662 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (hong kong, is a proxy for, CHina) -> CHina (12628ms) What is Hong Kong's population? Asian person -9.848516491286768 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (hong kong, is an, Asian person) -> Asian person (12628ms) What is Hong Kong's population? United Kingdom -9.924907076329044 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, entity involve, $x) -> (Battle of Hong Kong, entity involved, United Kingdom) -> United Kingdom (14666ms) What is Hong Kong's population? Christopher Maltby -9.924907076329044 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, entity involve, $x) -> (Battle of Hong Kong, entity involved, Christopher Maltby) -> Christopher Maltby (14666ms) What is Hong Kong's population? Takashi Sakai -9.924907076329044 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, entity involve, $x) -> (Battle of Hong Kong, entity involved, Takashi Sakai) -> Takashi Sakai (14666ms) What is Hong Kong's population? the Executive Council -9.962249470918461 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> (Hong Kong, is the President of, the Executive Council) -> the Executive Council (10132ms) What is Hong Kong's population? Empire of Japan -10.009182888076582 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, entity involve, $x) -> (Battle of Hong Kong, entity involved, Empire of Japan) -> Empire of Japan (14666ms) What is Hong Kong's population? Mark Aitchison Young -10.011498474257646 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, entity involve, $x) -> (Battle of Hong Kong, entity involved, Mark Aitchison Young) -> Mark Aitchison Young (14666ms) What is Hong Kong's population? a place -10.057824931190206 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hotels Hong Kong Hong Kong, is, a place) -> a place (12741ms) What is Hong Kong's population? a doubt -10.092244054324075 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is without, a doubt) -> a doubt (12741ms) What is Hong Kong's population? hong kong -10.097769686703511 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (hong kong, is a location located within, hong kong) -> hong kong (12741ms) What is Hong Kong's population? a never-ending commercial paradise -10.104875135928374 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is, a never-ending commercial paradise) -> a never-ending commercial paradise (12741ms) What is Hong Kong's population? Asia -10.114370525529068 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is one of, Asia) -> Asia (12741ms) What is Hong Kong's population? a major tourist attraction -10.202201473031334 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is, a major tourist attraction) -> a major tourist attraction (12889ms) What is Hong Kong's population? a Special Administrative Region -10.263703059849515 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is, a Special Administrative Region) -> a Special Administrative Region (12889ms) What is Hong Kong's population? a British dependency -10.264030743515262 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, has been, a British dependency) -> a British dependency (12890ms) What is Hong Kong's population? Kowloon -10.372262028584716 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is made up of, Kowloon) -> Kowloon (12890ms) What is Hong Kong's population? an international city -10.375172713487439 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is, an international city) -> an international city (12889ms) What is Hong Kong's population? growth mode -10.470001835396683 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (HONG KONG*** Hong Kong, is in, growth mode) -> growth mode (12919ms) What is Hong Kong's population? the Far East -10.484419575432893 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is located in, the Far East) -> the Far East (12919ms) What is Hong Kong's population? Taiwan -10.51028758255226 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (hong kong, is a location located within, Taiwan) -> Taiwan (12919ms) What is Hong Kong's population? Countries -10.63023906153041 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (hong kong, is a country located in the geopolitical location, Countries) -> Countries (12919ms) What is Hong Kong's population? Eastern Asia -10.646838324003594 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is located in, Eastern Asia) -> Eastern Asia (12919ms) What is Hong Kong's population? hongkongs population -10.662644612757894 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be population of hong kong ? -> $x: ($x, be population of, hong kong) -> (hongkongs population, was the population of, hong kong) -> hongkongs population (10727ms) What is Hong Kong's population? Canada -10.668414380153466 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, entity involve, $x) -> (Battle of Hong Kong, entity involved, Canada) -> Canada (16249ms) What is Hong Kong's population? sleek skyscrapers -10.707790385775347 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is home to, sleek skyscrapers) -> sleek skyscrapers (12919ms) What is Hong Kong's population? a popular place -10.7154184975818 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, has traditionally been, a popular place) -> a popular place (13044ms) What is Hong Kong's population? 852 -10.847122795339468 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, Calling Code, 852) -> 852 (16250ms) What is Hong Kong's population? the Consortium -10.90081270238112 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> (Hong Kong, was unanimously elected President of, the Consortium) -> the Consortium (10132ms) What is Hong Kong's population? HKD -10.9882019590087 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, give, $x) -> (Hong Kong, is given in, HKD) -> HKD (16248ms) What is Hong Kong's population? Chinese -11.055887047484006 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is an eclectic mix of, Chinese) -> Chinese (13043ms) What is Hong Kong's population? Asia-Pacific -11.058595974444177 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, appoint, hong kong) -> (Asia-Pacific, was appointed, Hong Kong) -> Asia-Pacific (17238ms) What is Hong Kong's population? great fun -11.146209509463123 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, was, great fun) -> great fun (13043ms) What is Hong Kong's population? out -11.16701116602286 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, out) -> out (13074ms) What is Hong Kong's population? SMS -11.169859413124028 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, give, $x) -> (Hong Kong, gives, SMS) -> SMS (16248ms) What is Hong Kong's population? a highly connected transport system -11.19896555272254 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong Hong Kong, has, a highly connected transport system) -> a highly connected transport system (12193ms) What is Hong Kong's population? due -11.210525077113052 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, due) -> due (13074ms) What is Hong Kong's population? new -11.210525077113052 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, new) -> new (13075ms) What is Hong Kong's population? an efficient train network -11.211572780013793 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong Hong Kong, has, an efficient train network) -> an efficient train network (12193ms) What is Hong Kong's population? a free market economy -11.3066739243943 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong Hong Kong, has, a free market economy) -> a free market economy (12193ms) What is Hong Kong's population? HK Honey -11.324852209326572 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, called, HK Honey) -> HK Honey (16248ms) What is Hong Kong's population? so successful -11.324853232461848 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, so successful) -> so successful (13074ms) What is Hong Kong's population? Prof. -11.330546665148283 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, give, $x) -> (Hong Kong, will be given by, Prof.) -> Prof. (16248ms) What is Hong Kong's population? the Basic Law -11.355946855154546 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, as called for in, the Basic Law) -> the Basic Law (16676ms) What is Hong Kong's population? the place -11.361147122707381 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is, the place) -> the place (13074ms) What is Hong Kong's population? Hong Kongers -11.373835745512507 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, are called, Hong Kongers) -> Hong Kongers (16676ms) What is Hong Kong's population? GOD -11.38035911265148 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, called, GOD) -> GOD (16676ms) What is Hong Kong's population? an average connection speed -11.421783424425099 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong Hong Kong, has recorded, an average connection speed) -> an average connection speed (12193ms) What is Hong Kong's population? Papua New Guinea -11.460318967193786 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, beat, hong kong) -> (Papua New Guinea, beat, Hong Kong) -> Papua New Guinea (16676ms) What is Hong Kong's population? universal suffrage -11.463621324407768 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, push, $x) -> (Hong Kong, are pushing for, universal suffrage) -> universal suffrage (16676ms) What is Hong Kong's population? Hong Kong Phooey -11.469137611528186 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, called, Hong Kong Phooey) -> Hong Kong Phooey (16676ms) What is Hong Kong's population? South Korea -11.484190205801907 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, beat, hong kong) -> (South Korea, beat, Hong Kong 92-71 today) -> South Korea (17238ms) What is Hong Kong's population? a British territory -11.49956198580343 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, was, a British territory) -> a British territory (13075ms) What is Hong Kong's population? Hong Kong -11.50823627315965 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, beat, hong kong) -> (Hong Kong, beats, SARS HONG KONG) -> Hong Kong (17238ms) What is Hong Kong's population? a long coastline -11.537428988199569 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong Hong Kong, has, a long coastline) -> a long coastline (13104ms) What is Hong Kong's population? the Model Law -11.53978121223451 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, follow, $x) -> (German and Hong Kong law, follow, the Model Law) -> the Model Law (17238ms) What is Hong Kong's population? an English colony -11.560140298952552 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, was, an English colony) -> an English colony (13104ms) What is Hong Kong's population? 14 million inhabitants -11.579720569834194 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong Hong Kong, has, 14 million inhabitants) -> 14 million inhabitants (13104ms) What is Hong Kong's population? one such example -11.580541417816505 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, one such example) -> one such example (13104ms) What is Hong Kong's population? debenture-holders -11.588546940227717 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, give, $x) -> (Hong Kong International School, gives, debenture-holders) -> debenture-holders (17238ms) What is Hong Kong's population? an international financial center -11.640960260839462 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, an international financial center) -> an international financial center (13104ms) What is Hong Kong's population? ?Aid -11.647671346250249 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong ?, called, ?Aid) -> ?Aid (17238ms) What is Hong Kong's population? where East meets West -11.648977333935655 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, where East meets West) -> where East meets West (13104ms) What is Hong Kong's population? 72 patients -11.660354532306773 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, follow, $x) -> (Hong Kong, followed, 72 patients) -> 72 patients (17475ms) What is Hong Kong's population? way behind -11.673236839468814 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, way behind) -> way behind (13151ms) What is Hong Kong's population? one of the places -11.67583620389359 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, was, one of the places) -> one of the places (13151ms) What is Hong Kong's population? a highly externally-oriented economy -11.67583620389359 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, a highly externally-oriented economy) -> a highly externally-oriented economy (13150ms) What is Hong Kong's population? a pretty safe city -11.67583620389359 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, a pretty safe city) -> a pretty safe city (13150ms) What is Hong Kong's population? a global financial center -11.67583620389359 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, a global financial center) -> a global financial center (13150ms) What is Hong Kong's population? a paradigm of contradictions -11.684178081233089 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is, a paradigm of contradictions) -> a paradigm of contradictions (13150ms) What is Hong Kong's population? Final Appeal -11.699873945093907 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, appoint, hong kong) -> (Final Appeal, are appointed by, Hong Kong) -> Final Appeal (17475ms) What is Hong Kong's population? ?Finding Neverland -11.709892815824887 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, called, ?Finding Neverland) -> ?Finding Neverland (17475ms) What is Hong Kong's population? Lord Patten -11.724319386200547 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, appoint, hong kong) -> (Lord Patten, was appointed Governor of, Hong Kong) -> Lord Patten (17475ms) What is Hong Kong's population? simply dazzling -11.739708524555216 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is, simply dazzling) -> simply dazzling (13220ms) What is Hong Kong's population? very international -11.740365624583736 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, very international) -> very international (13220ms) What is Hong Kong's population? a complete retail therapy course -11.745291927049909 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, a complete retail therapy course) -> a complete retail therapy course (13220ms) What is Hong Kong's population? a territory in perpetual re-invention -11.753804665229389 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, a territory in perpetual re-invention) -> a territory in perpetual re-invention (13220ms) What is Hong Kong's population? Masa -11.75956032926095 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, are calling on, Masa) -> Masa (17475ms) What is Hong Kong's population? INFERNAL AFFAIRS -11.763673085234087 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (a Hong Kong film, called, INFERNAL AFFAIRS) -> INFERNAL AFFAIRS (17475ms) What is Hong Kong's population? ALB -11.765348806736732 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, ask, hong kong) -> (ALB, asks, Hong Kong lawyers) -> ALB (17552ms) What is Hong Kong's population? the skyscraper capital -11.771570292612573 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is, the skyscraper capital) -> the skyscraper capital (13220ms) What is Hong Kong's population? the Hong Kong Museum -11.778230147139793 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, is called, the Hong Kong Museum) -> the Hong Kong Museum (17552ms) What is Hong Kong's population? The World Factbook -11.79202477314168 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be population of hong kong ? -> $x: ($x, be population of, hong kong) -> $x: ($x, population of, hong kong) -> (The World Factbook, estimates the population of, Hong Kong) -> The World Factbook (14451ms) What is Hong Kong's population? North Carolina -11.792546752887716 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, choose, hong kong) -> (North Carolina, chose the University of, Hong Kong) -> North Carolina (17552ms) What is Hong Kong's population? Vtech -11.795472979719403 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, is called, Vtech) -> Vtech (17552ms) What is Hong Kong's population? the Chinese American Museum -11.796533819779505 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, appoint, hong kong) -> (the Chinese American Museum, was appointed, Hong Kong) -> the Chinese American Museum (17552ms) What is Hong Kong's population? a powder keg ready to explode -11.81877838300922 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, a powder keg ready to explode) -> a powder keg ready to explode (13220ms) What is Hong Kong's population? a make -11.82188944012629 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, give, $x) -> (Hong Kong, was given, a make) -> a make (17552ms) What is Hong Kong's population? Hung Fat Fashions -11.824082363665678 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, is called, Hung Fat Fashions) -> Hung Fat Fashions (17585ms) What is Hong Kong's population? a good example -11.832895110855018 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong Hong Kong, has set, a good example) -> a good example (13248ms) What is Hong Kong's population? H shares -11.843561048540273 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, are called, H shares) -> H shares (17585ms) What is Hong Kong's population? IRC -11.847196666067074 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, choose, hong kong) -> (IRC, choose, Hong Kong) -> IRC (17585ms) What is Hong Kong's population? Matthew Gearing -11.855007442052955 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, select, hong kong) -> (Matthew Gearing, is selected in, Hong Kong) -> Matthew Gearing (17585ms) What is Hong Kong's population? ABM -11.861627084263127 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (a Hong Kong company, called, ABM) -> ABM (17585ms) What is Hong Kong's population? a very liveable city in many respects -11.87375614420754 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, a very liveable city in many respects) -> a very liveable city in many respects (13248ms) What is Hong Kong's population? emissions trading -11.874942596314682 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, give, $x) -> (Hong Kong, gave a presentation about, emissions trading) -> emissions trading (17585ms) What is Hong Kong's population? Munich Airport -11.88098071756971 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, follow, $x) -> (Hong Kong, took second place followed by, Munich Airport) -> Munich Airport (17619ms) What is Hong Kong's population? a new lease -11.884686583923326 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, give, $x) -> (Hong Kong, has been given, a new lease) -> a new lease (17619ms) What is Hong Kong's population? a mini-constitution -11.90083534504955 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, give, $x) -> (Hong Kong, has been given, a mini-constitution) -> a mini-constitution (17619ms) What is Hong Kong's population? Chinese parsley -11.9023921453674 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, is called, Chinese parsley) -> Chinese parsley (17619ms) What is Hong Kong's population? a new experience -11.907024702559522 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, give, $x) -> (Hong Kong, were given, a new experience) -> a new experience (17619ms) What is Hong Kong's population? Fine Dining -11.910061715412018 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, called, Fine Dining) -> Fine Dining (17619ms) What is Hong Kong's population? ?The Gateway -11.910496932738948 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, has been called, ?The Gateway) -> ?The Gateway (17654ms) What is Hong Kong's population? one of Asias most popular travel spots -11.928897012616577 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, one of Asias most popular travel spots) -> one of Asias most popular travel spots (13248ms) What is Hong Kong's population? a Hong Kong resident -11.938130704911957 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, choose, hong kong) -> (a Hong Kong resident, was chosen to administer, Hong Kong) -> a Hong Kong resident (17653ms) What is Hong Kong's population? Liao Hui -11.950936739897257 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, appoint, hong kong) -> (Liao Hui, was appointed director of, the Hong Kong) -> Liao Hui (17654ms) What is Hong Kong's population? Asia?s World City -11.952118788740693 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, is called, Asia?s World City) -> Asia?s World City (17653ms) What is Hong Kong's population? ?Asia?s World City -11.952118788740693 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, is called, ?Asia?s World City) -> ?Asia?s World City (17654ms) What is Hong Kong's population? the educational home -11.959477001168578 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is, the educational home) -> the educational home (13248ms) What is Hong Kong's population? Discovery Bay -11.96899133119449 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (a Hong Kong community, called, Discovery Bay) -> Discovery Bay (17654ms) What is Hong Kong's population? due regard -11.976774410427092 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, give, $x) -> (Hong Kong, will be given, due regard) -> due regard (17686ms) What is Hong Kong's population? a cha chaan teng -11.979166505521157 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, would be called, a cha chaan teng) -> a cha chaan teng (17686ms) What is Hong Kong's population? ULI Asia-Pacific -11.982832539300125 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, select, hong kong) -> (ULI Asia-Pacific, has been selected as, Hong Kong) -> ULI Asia-Pacific (17686ms) What is Hong Kong's population? the ' City -11.983001166270176 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, is called, the ' City) -> the ' City (17686ms) What is Hong Kong's population? China ?s leadership -11.984693763957784 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, give, $x) -> (Hong Kong, was given a warning by, China ?s leadership) -> China ?s leadership (17686ms) What is Hong Kong's population? ?Luxury brands -11.990988205157503 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, choose, hong kong) -> (?Luxury brands, choose, Hong Kong) -> ?Luxury brands (17686ms) What is Hong Kong's population? an election -11.99168797413437 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, select, hong kong) -> (an election, will be held to select, Hong Kong) -> an election (17718ms) What is Hong Kong's population? Europeans full access -12.006730818383442 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, give, $x) -> (Hong Kong, gave, Europeans full access) -> Europeans full access (17718ms) What is Hong Kong's population? an examiner -12.011075770342714 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, appoint, hong kong) -> (an examiner, is appointed by, the Hong Kong court) -> an examiner (17718ms) What is Hong Kong's population? a special case -12.01163603173972 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, a special case) -> a special case (13248ms) What is Hong Kong's population? the Pearl River Delta -12.012403311245379 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, is called, the Pearl River Delta) -> the Pearl River Delta (17719ms) What is Hong Kong's population? the US dollar -12.015483190414027 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, pick, hong kong) -> (the US dollar, was picking up, 7.7501 Hong Kong dollars) -> the US dollar (17718ms) What is Hong Kong's population? Singapore -12.033893586703096 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, follow, $x) -> (Hong Kong, was followed by, Singapore) -> Singapore (17750ms) What is Hong Kong's population? girl service provider -12.039565682577013 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, call, girl service provider) -> girl service provider (17750ms) What is Hong Kong's population? the PROC -12.041517263270375 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, give, $x) -> (Hong Kong, was given back to, the PROC) -> the PROC (17750ms) What is Hong Kong's population? a busy city -12.046203146457689 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, a busy city) -> a busy city (13248ms) What is Hong Kong's population? DARKIE many years -12.059265770228743 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, was actually called, DARKIE many years) -> DARKIE many years (17750ms) What is Hong Kong's population? Mrs. Palin -12.060080804056435 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, choose, hong kong) -> (Mrs. Palin, chose, Hong Kong) -> Mrs. Palin (17750ms) What is Hong Kong's population? the U.N. Sanctions Regulation -12.060969627605974 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, is called, the U.N. Sanctions Regulation) -> the U.N. Sanctions Regulation (17750ms) What is Hong Kong's population? ?the Eating Paradise? -12.065455180441008 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, is called as, ?the Eating Paradise?) -> ?the Eating Paradise? (17784ms) What is Hong Kong's population? Sa Sa -12.065455180441008 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, choose, hong kong) -> (Sa Sa, has been chosen one of, Hong Kong) -> Sa Sa (17784ms) What is Hong Kong's population? No. 1 economy freedom -12.068393664674328 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, No. 1 economy freedom) -> No. 1 economy freedom (13276ms) What is Hong Kong's population? the ?most thrilling city -12.070238864284592 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, has been called, the ?most thrilling city) -> the ?most thrilling city (17784ms) What is Hong Kong's population? Beijing -12.073911310862101 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, follow, $x) -> (Hong Kong, was first followed by, Beijing) -> Beijing (17784ms) What is Hong Kong's population? HTC -12.07989875488123 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (a Hong Kong firm, called, HTC) -> HTC (17784ms) What is Hong Kong's population? I?d -12.089433349628791 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, pick, hong kong) -> (I?d, picked, Hong Kong) -> I?d (17784ms) What is Hong Kong's population? acupuncture treatments -12.094035417415734 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, give, $x) -> (Hong Kong, had been given, acupuncture treatments) -> acupuncture treatments (17816ms) What is Hong Kong's population? an ?international city ? -12.102134564469685 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, has been called, an ?international city ?) -> an ?international city ? (17816ms) What is Hong Kong's population? Above Second -12.103129520540243 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, call, $x) -> (Hong Kong, called, Above Second) -> Above Second (17816ms) What is Hong Kong's population? city -12.105538103546301 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (hong kong, is a, city) -> city (13275ms) What is Hong Kong's population? country -12.105538103546301 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (hong kong, is a, country) -> country (13275ms) What is Hong Kong's population? Bangkok -12.107804093299357 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: ($x, beat, hong kong) -> (Bangkok, beats, Hong Kong) -> Bangkok (17815ms) What is Hong Kong's population? New York -12.110698078512403 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, follow, $x) -> (Hong Kong, followed by, New York) -> New York (17816ms) What is Hong Kong's population? freedom of religion -12.117491940883667 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, freedom of religion) -> freedom of religion (13275ms) What is Hong Kong's population? a humid subtropical climate -12.121600228497437 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a humid subtropical climate) -> a humid subtropical climate (13275ms) What is Hong Kong's population? the USA flyers -12.13918206393155 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, give, $x) -> (Hong Kong, will give, the USA flyers) -> the USA flyers (17816ms) What is Hong Kong's population? a first mover advantage -12.147963433372087 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a first mover advantage) -> a first mover advantage (13275ms) What is Hong Kong's population? a comprehensive arbitration law -12.156476171551567 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a comprehensive arbitration law) -> a comprehensive arbitration law (13347ms) What is Hong Kong's population? one active international airport -12.156476171551567 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, one active international airport) -> one active international airport (13347ms) What is Hong Kong's population? a high degree of autonomy -12.16856191157753 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a high degree of autonomy) -> a high degree of autonomy (13347ms) What is Hong Kong's population? the transit point ? -12.172072244515723 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, has sometimes been, the transit point ?) -> the transit point ? (13347ms) What is Hong Kong's population? an established system of rights -12.188963030441482 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, an established system of rights) -> an established system of rights (13347ms) What is Hong Kong's population? a staggering range of international restaurants -12.216451911040641 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a staggering range of international restaurants) -> a staggering range of international restaurants (13377ms) What is Hong Kong's population? the south east coast -12.222044234542706 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (HONG KONG Hong Kong, is on, the south east coast) -> the south east coast (13376ms) What is Hong Kong's population? home to more than 7 million people -12.231437661934148 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, home to more than 7 million people) -> home to more than 7 million people (13376ms) What is Hong Kong's population? a salaries tax on all employment income -12.240013808697064 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong kong, has, a salaries tax on all employment income) -> a salaries tax on all employment income (13376ms) What is Hong Kong's population? the south end -12.251585453830764 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is an island at, the south end) -> the south end (13376ms) What is Hong Kong's population? the jurisdiction -12.30345318810423 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, was under, the jurisdiction) -> the jurisdiction (13406ms) What is Hong Kong's population? the southern coast -12.308695608598363 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is situated on, the southern coast) -> the southern coast (13405ms) What is Hong Kong's population? a British colony for more than 150 years -12.31343740030112 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, was, a British colony for more than 150 years) -> a British colony for more than 150 years (13405ms) What is Hong Kong's population? the China -12.424876554613762 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, the China) -> the China (13405ms) What is Hong Kong's population? yet -12.454903264077654 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, yet) -> yet (13405ms) What is Hong Kong's population? more than 11,000 restaurants -12.549033632332304 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, more than 11,000 restaurants) -> more than 11,000 restaurants (13405ms) What is Hong Kong's population? asia -12.564995107846539 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (hong kong, is a country located in the geopolitical location, asia) -> asia (13545ms) What is Hong Kong's population? a tropical climate -12.574288924901875 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a tropical climate) -> a tropical climate (13545ms) What is Hong Kong's population? much to offer -12.593738563183145 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, much to offer) -> much to offer (13545ms) What is Hong Kong's population? a competitive advantage -12.594690043765828 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a competitive advantage) -> a competitive advantage (13545ms) What is Hong Kong's population? a free market -12.594690043765828 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a free market) -> a free market (13546ms) What is Hong Kong's population? a fertility rate of 0.95 children per woman -12.652991580780034 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a fertility rate of 0.95 children per woman) -> a fertility rate of 0.95 children per woman (13545ms) What is Hong Kong's population? a problem -12.656356892523538 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a problem) -> a problem (13712ms) What is Hong Kong's population? a government -12.702460381482483 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a government) -> a government (13713ms) What is Hong Kong's population? so much to offer -12.702474679959302 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, so much to offer) -> so much to offer (13713ms) What is Hong Kong's population? one of the worlds -12.725423845131479 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, one of the worlds) -> one of the worlds (13712ms) What is Hong Kong's population? a long way to go -12.737509585157444 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a long way to go) -> a long way to go (13712ms) What is Hong Kong's population? two official languages -12.74171667638166 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, two official languages) -> two official languages (13860ms) What is Hong Kong's population? any such prospect -12.74171667638166 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, any such prospect) -> any such prospect (13712ms) What is Hong Kong's population? a lot to offer -12.745824963995432 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a lot to offer) -> a lot to offer (13859ms) What is Hong Kong's population? two licensed terrestrial broadcasters -12.760299788185609 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, two licensed terrestrial broadcasters) -> two licensed terrestrial broadcasters (13859ms) What is Hong Kong's population? a strong services sector -12.760299788185609 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a strong services sector) -> a strong services sector (13860ms) What is Hong Kong's population? a lot of advantages -12.78070090704956 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a lot of advantages) -> a lot of advantages (14069ms) What is Hong Kong's population? a myriad of problems -12.78070090704956 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a myriad of problems) -> a myriad of problems (13860ms) What is Hong Kong's population? two broadcast television stations -12.78070090704956 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, two broadcast television stations) -> two broadcast television stations (14034ms) What is Hong Kong's population? a high market transparency -12.78070090704956 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a high market transparency) -> a high market transparency (14034ms) What is Hong Kong's population? a lot of land -12.78070090704956 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a lot of land) -> a lot of land (14069ms) What is Hong Kong's population? a population of close -12.78070090704956 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a population of close) -> a population of close (13859ms) What is Hong Kong's population? a very bright future -12.78070090704956 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a very bright future) -> a very bright future (14069ms) What is Hong Kong's population? a small domestic market -12.78070090704956 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a small domestic market) -> a small domestic market (14034ms) What is Hong Kong's population? hot , humid summers -12.78070090704956 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, hot , humid summers) -> hot , humid summers (14069ms) What is Hong Kong's population? a very strong economy -12.78070090704956 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a very strong economy) -> a very strong economy (14034ms) What is Hong Kong's population? a low crime rate -12.78070090704956 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a low crime rate) -> a low crime rate (14034ms) What is Hong Kong's population? a relatively free economy -12.78070090704956 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a relatively free economy) -> a relatively free economy (14034ms) What is Hong Kong's population? a highly developed transportation system -12.804675027759997 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a highly developed transportation system) -> a highly developed transportation system (14071ms) What is Hong Kong's population? world-class hospitals providing outstanding care -12.813187765939476 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, world-class hospitals providing outstanding care) -> world-class hospitals providing outstanding care (14111ms) What is Hong Kong's population? a unitary system of government -12.813187765939476 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a unitary system of government) -> a unitary system of government (14111ms) What is Hong Kong's population? an excellent public transportation systems -12.813187765939476 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, an excellent public transportation systems) -> an excellent public transportation systems (14111ms) What is Hong Kong's population? an impressive record of openness -12.813187765939476 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, an impressive record of openness) -> an impressive record of openness (14111ms) What is Hong Kong's population? an edge in its proximity to China -12.827779834433539 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, an edge in its proximity to China) -> an edge in its proximity to China (14110ms) What is Hong Kong's population? a subtropical climate with distinct seasons -12.840676646538636 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a subtropical climate with distinct seasons) -> a subtropical climate with distinct seasons (14110ms) What is Hong Kong's population? contradictions -12.855307213165158 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, is a paradigm of, contradictions) -> contradictions (14195ms) What is Hong Kong's population? one of the freest press in the world -12.864238544195057 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, one of the freest press in the world) -> one of the freest press in the world (14195ms) What is Hong Kong's population? one of the world 's most liberal economies -12.86425773663334 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, one of the world 's most liberal economies) -> one of the world 's most liberal economies (14195ms) What is Hong Kong's population? one of the lowest fertility rates in the world -12.88465885549729 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, one of the lowest fertility rates in the world) -> one of the lowest fertility rates in the world (14196ms) What is Hong Kong's population? the most active market -12.885613657377721 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, was, the most active market) -> the most active market (14195ms) What is Hong Kong's population? low taxes -12.975596676502565 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, low taxes) -> low taxes (14195ms) What is Hong Kong's population? travelers -12.994937545868169 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong Hong Kong, has long been a favorite of, travelers) -> travelers (14228ms) What is Hong Kong's population? 1,755 cases -13.086626744123855 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, had, 1,755 cases) -> 1,755 cases (14228ms) What is Hong Kong's population? it especially rough -13.092832596351231 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, had, it especially rough) -> it especially rough (14228ms) What is Hong Kong's population? 166,960 public servants -13.134274137162398 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, 166,960 public servants) -> 166,960 public servants (14228ms) What is Hong Kong's population? a subtropical climate -13.137935347250746 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a subtropical climate) -> a subtropical climate (14228ms) What is Hong Kong's population? wealthy -13.150294296781102 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, wealthy) -> wealthy (14262ms) What is Hong Kong's population? integral -13.15886520690638 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, was, integral) -> integral (14261ms) What is Hong Kong's population? one operational 3G network -13.174052538711749 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, one operational 3G network) -> one operational 3G network (14260ms) What is Hong Kong's population? the best Chinese food you?ll -13.177351291538557 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong Hong Kong, has some of, the best Chinese food you?ll) -> the best Chinese food you?ll (14261ms) What is Hong Kong's population? a population of 7 million -13.185344107856261 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a population of 7 million) -> a population of 7 million (14260ms) What is Hong Kong's population? an unemployment rate of 5.30 % -13.187130618360428 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, an unemployment rate of 5.30 %) -> an unemployment rate of 5.30 % (14260ms) What is Hong Kong's population? a free press -13.190000922220388 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a free press) -> a free press (14383ms) What is Hong Kong's population? a population of 7 million people -13.198358164265244 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a population of 7 million people) -> a population of 7 million people (14383ms) What is Hong Kong's population? a competitive edge -13.198513660399868 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a competitive edge) -> a competitive edge (14383ms) What is Hong Kong's population? a long history -13.198513660399868 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a long history) -> a long history (14383ms) What is Hong Kong's population? a population of 7.3 million -13.205745226720213 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a population of 7.3 million) -> a population of 7.3 million (14383ms) What is Hong Kong's population? a bright future -13.207378405022846 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a bright future) -> a bright future (14383ms) What is Hong Kong's population? a maximum average tax rate of 16 percent -13.277216316278027 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, a maximum average tax rate of 16 percent) -> a maximum average tax rate of 16 percent (14416ms) What is Hong Kong's population? the place to do it -13.510441985612633 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, was, the place to do it) -> the place to do it (14416ms) What is Hong Kong's population? the preferred choice for enterprises -13.587806854211513 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, the preferred choice for enterprises) -> the preferred choice for enterprises (14416ms) What is Hong Kong's population? the Mainland -13.732149837230562 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, the Mainland) -> the Mainland (14417ms) What is Hong Kong's population? the first free wine port among major economies -13.734481009638555 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, the first free wine port among major economies) -> the first free wine port among major economies (14416ms) What is Hong Kong's population? busy -13.788993856469272 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, busy) -> busy (14451ms) What is Hong Kong's population? successful -13.809394975333225 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, was, successful) -> successful (14451ms) What is Hong Kong's population? flat -13.809394975333225 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, was, flat) -> flat (14451ms) What is Hong Kong's population? cheap -13.809394975333225 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, was, cheap) -> cheap (14487ms) What is Hong Kong's population? easy -13.809394975333225 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, easy) -> easy (14451ms) What is Hong Kong's population? substantially -13.809394975333225 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, substantially) -> substantially (14487ms) What is Hong Kong's population? the world 's 11th largest trading economy -14.06543985091627 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, be, $x) -> (Hong Kong, is, the world 's 11th largest trading economy) -> the world 's 11th largest trading economy (14487ms) What is Hong Kong's population? the edge -14.122340922646416 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, the edge) -> the edge (14487ms) What is Hong Kong's population? the sub-tropical climate -14.52961537640484 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, the sub-tropical climate) -> the sub-tropical climate (14487ms) What is Hong Kong's population? the best food -14.575718865363784 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, the best food) -> the best food (14526ms) What is Hong Kong's population? the same problem -14.575718865363784 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, the same problem) -> the same problem (14526ms) What is Hong Kong's population? the highest population density in the world -14.666166097341279 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, the highest population density in the world) -> the highest population density in the world (14526ms) What is Hong Kong's population? the highest rate of East Asian immigration -14.686704358936206 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, had, the highest rate of East Asian immigration) -> the highest rate of East Asian immigration (14528ms) What is Hong Kong's population? eight -15.116115120674674 What is Hong Kong's population? -> what be [ hong kong ] s population ? -> what be hong kong s president ? -> $x: (hong kong, president, $x) -> $x: (hong kong, have, $x) -> (Hong Kong, has, eight) -> eight (14526ms) Who is the Greek God of the Sea? Pomona Poseidon Poseidon -0.18047137592024765 Who is the Greek God of the Sea? -> $x: ($x, is the Greek God of, the Sea) -> (Pomona Poseidon Poseidon, was the Greek god of, the sea) -> Pomona Poseidon Poseidon (2566ms) Who is the Greek God of the Sea? Neptune -0.3805383817533097 Who is the Greek God of the Sea? -> $x: ($x, is the Greek God of, the Sea) -> (Neptune, was the Greek god of, the sea) -> Neptune (2566ms) Who is the Greek God of the Sea? Poseidon -0.614450720859155 Who is the Greek God of the Sea? -> $x: ($x, is the Greek God of, the Sea) -> (Poseidon, is the Greek god of, the sea) -> Poseidon (2566ms) Who is the Greek God of the Sea? Kellan Lutz -1.905491176801383 Who is the Greek God of the Sea? -> $x: ($x, is the Greek God of, the Sea) -> $x: ($x, greek god of, sea) -> (Kellan Lutz, plays the Greek god of, the sea) -> Kellan Lutz (3960ms) Who is the Greek God of the Sea? Okeanos -5.33197342873326 Who is the Greek God of the Sea? -> $x: ($x, is the Greek God of, the Sea) -> $x: ($x, greek god of, sea) -> (Okeanos, [is] a Greek god of, sea and water) -> Okeanos (4894ms) Who is the Greek God of the Sea? Proteus -5.366027520221086 Who is the Greek God of the Sea? -> $x: ($x, is the Greek God of, the Sea) -> $x: ($x, greek god of, sea) -> (Proteus, [is] a Greek god of, the sea) -> Proteus (4894ms) Who is the Greek God of the Sea? Neptune Neptune -6.787487962520158 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Neptune Neptune, is the God of, the Seas) -> Neptune Neptune (5918ms) Who is the Greek God of the Sea? Poseidon Poseidon -6.839138177145009 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Poseidon Poseidon, is god of, the sea) -> Poseidon Poseidon (5918ms) Who is the Greek God of the Sea? ?Nereus -7.258154385665298 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (?Nereus, was a god of, the sea) -> ?Nereus (5918ms) Who is the Greek God of the Sea? Hea -7.49525399871042 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Hea, was the god of, the sea) -> Hea (5918ms) Who is the Greek God of the Sea? Tyr -7.497022424214908 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Tyr, is god of, the sea) -> Tyr (5918ms) Who is the Greek God of the Sea? ? Tangaroa? -7.527899284478476 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (? Tangaroa?, is the God of, the sea) -> ? Tangaroa? (6179ms) Who is the Greek God of the Sea? Zeus -7.555759177486731 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Zeus, is the god of, the sea) -> Zeus (6179ms) Who is the Greek God of the Sea? Lyr -7.621694287838374 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Lyr, was the god of, the sea) -> Lyr (6179ms) Who is the Greek God of the Sea? Shells from the Greek seas -7.623594729969654 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Shells from the Greek seas, Edition Of, Shells from the Greek seas) -> Shells from the Greek seas (5238ms) Who is the Greek God of the Sea? Greek and Roman mythology -7.683021996544278 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Greek and Roman mythology, is the god of, the sea) -> Greek and Roman mythology (6179ms) Who is the Greek God of the Sea? Mythology Neptune -7.788789013223673 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the god of the sea ? -> $x: ($x, be the god of, the sea) -> (Mythology Neptune, was the ancient Roman god of, the sea) -> Mythology Neptune (6179ms) Who is the Greek God of the Sea? God -7.858118605264256 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the god of the sea ? -> $x: ($x, be the god of, the sea) -> (God, is the God of, the wind , land and sea) -> God (6362ms) Who is the Greek God of the Sea? Poseidon Poseidon Poseidon -7.9200768427628985 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Poseidon Poseidon Poseidon, was the god of, the sea) -> Poseidon Poseidon Poseidon (6362ms) Who is the Greek God of the Sea? AEGIR Aegir -7.95964080594113 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (AEGIR Aegir, is the god of, the sea) -> AEGIR Aegir (6362ms) Who is the Greek God of the Sea? Minos -7.974058962966281 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> (Minos, was lord of, the Greek Sea) -> Minos (6514ms) Who is the Greek God of the Sea? NEPTUNE Neptune -8.005744294900076 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (NEPTUNE Neptune, is the god of, the sea) -> NEPTUNE Neptune (6515ms) Who is the Greek God of the Sea? Aegir Aegir -8.063350638677289 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Aegir Aegir, is the god of, the sea) -> Aegir Aegir (6514ms) Who is the Greek God of the Sea? GREEKS AT SEA - PIRAEUS -8.078410754428475 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (GREEKS AT SEA - PIRAEUS, Edition Of, GREEKS AT SEA - PIRAEUS) -> GREEKS AT SEA - PIRAEUS (6514ms) Who is the Greek God of the Sea? The Greeks and the Black Sea : from the Bronze Age to the early twentieth century -8.116027117353642 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (The Greeks and the Black Sea : from the Bronze Age to the early twentieth century, Edition Of, The Greeks and the Black Sea) -> The Greeks and the Black Sea : from the Bronze Age to the early twentieth century (6640ms) Who is the Greek God of the Sea? Euripides Hippolytos -8.17870518695875 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Euripides Hippolytos, Instance Of, gripping tale of love, loss, jealousy and revenge featuring Aphrodite-the Greek goddess of love, and Poseidon, god of the sea) -> Euripides Hippolytos (6640ms) Who is the Greek God of the Sea? Yamm -8.189774636928632 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Yamm, is the god of, the sea) -> Yamm (6640ms) Who is the Greek God of the Sea? Apostolos Valerianos -8.19878494930344 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Apostolos Valerianos, Instance Of, Greek sea captain) -> Apostolos Valerianos (6715ms) Who is the Greek God of the Sea? Roman mythology Neptune -8.21496497605214 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Roman mythology Neptune, was the god of, the sea) -> Roman mythology Neptune (6716ms) Who is the Greek God of the Sea? Agwe -8.226910992797638 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Agwe, is the god of, the sea) -> Agwe (6715ms) Who is the Greek God of the Sea? Nikolaos Sifounakis -8.229483670304948 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Nikolaos Sifounakis, Instance Of, Greek politician, former Minister of the Aegean Sea and currently Member of the European Parliament) -> Nikolaos Sifounakis (6715ms) Who is the Greek God of the Sea? a magician -8.235492140989582 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (a magician, is called god of, the sea) -> a magician (6715ms) Who is the Greek God of the Sea? Ea or Hea -8.27495337239613 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Ea or Hea, was the god of, the sea) -> Ea or Hea (6744ms) Who is the Greek God of the Sea? Pontus kingdom Poseidon Poseidon -8.330165866186954 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Pontus kingdom Poseidon Poseidon, was the god of, the Sea) -> Pontus kingdom Poseidon Poseidon (6744ms) Who is the Greek God of the Sea? Llyr -8.330392370975893 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Llyr, was a god of, the sea) -> Llyr (6744ms) Who is the Greek God of the Sea? Gerasimos Andreas -8.345780461249745 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Gerasimos Andreas, Instance Of, sea captain of a Greek tanker) -> Gerasimos Andreas (6744ms) Who is the Greek God of the Sea? Greek mythology Poseidon -8.362325680999778 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the god of the sea ? -> $x: ($x, be the god of, the sea) -> (Greek mythology Poseidon, is the god of, the sea and earthquakes) -> Greek mythology Poseidon (6772ms) Who is the Greek God of the Sea? Agios Georgios -8.386621083854212 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Agios Georgios, Instance Of, authentic, quiet Greek sea side village) -> Agios Georgios (6772ms) Who is the Greek God of the Sea? The Greeks and the Sea (Hellenism : Ancient, Mediaeval, Modern, No18) -8.407897138741696 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (The Greeks and the Sea (Hellenism : Ancient, Mediaeval, Modern, No18), Edition Of, The Greeks and the Sea) -> The Greeks and the Sea (Hellenism : Ancient, Mediaeval, Modern, No18) (6772ms) Who is the Greek God of the Sea? Norse mythology Aegir -8.422976998579907 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Norse mythology Aegir, was a god of, the Sea) -> Norse mythology Aegir (6800ms) Who is the Greek God of the Sea? Size Poseidon -8.435722274814097 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Size Poseidon, is the god of, the sea) -> Size Poseidon (6800ms) Who is the Greek God of the Sea? Mannan mac Lyr -8.499017977715521 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Mannan mac Lyr, was a God of, the sea) -> Mannan mac Lyr (6800ms) Who is the Greek God of the Sea? AMPHITRITE -8.514607060161943 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (AMPHITRITE, was the goddess queen of, the sea) -> AMPHITRITE (6800ms) Who is the Greek God of the Sea? HAON -8.645120008236717 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the god of the sea ? -> $x: ($x, be the god of, the sea) -> (HAON, was the god of, the great sea) -> HAON (6859ms) Who is the Greek God of the Sea? Tangaroa -8.667991825884245 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Tangaroa, is God of, the Sea) -> Tangaroa (6859ms) Who is the Greek God of the Sea? Mazu -8.71005375588376 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Mazu, is the Goddess of, the Sea) -> Mazu (6887ms) Who is the Greek God of the Sea? Vesta -8.763179046671173 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Vesta, was the god of, the sea) -> Vesta (6887ms) Who is the Greek God of the Sea? Kanaloa -8.78623277744071 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Kanaloa, was the god of, the sea) -> Kanaloa (6887ms) Who is the Greek God of the Sea? Eastern Sedna -8.862790509179801 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Eastern Sedna, is the mythical Inuit Goddess of, the sea) -> Eastern Sedna (6938ms) Who is the Greek God of the Sea? Visited Mythology Neptune -8.874666169239402 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the god of the sea ? -> $x: ($x, be the god of, the sea) -> (Visited Mythology Neptune, was the ancient Roman god of, the sea) -> Visited Mythology Neptune (6938ms) Who is the Greek God of the Sea? Cos -8.903374202665823 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Cos, Instance Of, greek colonial city at the eastern shore of the mediterranean sea) -> Cos (6938ms) Who is the Greek God of the Sea? Neptune / Poseidon -8.92475044083075 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the god of the sea ? -> $x: ($x, be the god of, the sea) -> (Neptune / Poseidon, was mythologically the God of, the Seas) -> Neptune / Poseidon (6938ms) Who is the Greek God of the Sea? Ma-cho -9.056488011294043 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Ma-cho, is the goddess of, the sea) -> Ma-cho (7118ms) Who is the Greek God of the Sea? wife -9.073671468206197 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (wife, is the goddess of, the sea) -> wife (7119ms) Who is the Greek God of the Sea? Finnish mythology Vellamo -9.099302336531107 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Finnish mythology Vellamo, is the goddess of, the sea) -> Finnish mythology Vellamo (7171ms) Who is the Greek God of the Sea? Billy Joe Leck -9.10304766897683 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Billy Joe Leck, Instance Of, legend of the Greek sea) -> Billy Joe Leck (7171ms) Who is the Greek God of the Sea? the Greek Poseidon -9.12588475661767 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (the Greek Poseidon, [is] the god of, the sea) -> the Greek Poseidon (7171ms) Who is the Greek God of the Sea? rel=shortlink Matzu -9.145581429690228 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (rel=shortlink Matzu, is the goddess of, the sea and she?s) -> rel=shortlink Matzu (7171ms) Who is the Greek God of the Sea? Iemanj ? -9.176292122897369 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Iemanj ?, is the vain goddess of, the sea) -> Iemanj ? (7171ms) Who is the Greek God of the Sea? Triton -9.227465132456851 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Triton, is the god of, the sea) -> Triton (7196ms) Who is the Greek God of the Sea? Ionian Sea -9.234994295852795 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Ionian Sea, Instance Of, greek sea) -> Ionian Sea (7196ms) Who is the Greek God of the Sea? justice -9.266191702612462 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the god of the sea ? -> $x: ($x, be the god of, the sea) -> (justice, was also the god of, the sea) -> justice (7196ms) Who is the Greek God of the Sea? Dylan -9.305604731882251 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Dylan, was the God of, the Sea) -> Dylan (7222ms) Who is the Greek God of the Sea? worshiped Poseidon -9.309752274913897 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (worshiped Poseidon, [is] god of, the sea) -> worshiped Poseidon (7222ms) Who is the Greek God of the Sea? Greek mythology -9.326041756531401 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Greek mythology, [is] god of, the sea) -> Greek mythology (7247ms) Who is the Greek God of the Sea? Lir -9.330278509254592 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the god of the sea ? -> $x: ($x, be the god of, the sea) -> (Lir, [is] the Celtic god of, the sea) -> Lir (7247ms) Who is the Greek God of the Sea? ?Dt 4:19.20 Yam -9.341871829714005 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the god of the sea ? -> $x: ($x, be the god of, the sea) -> (?Dt 4:19.20 Yam, was the Canaanite god of, the sea) -> ?Dt 4:19.20 Yam (7247ms) Who is the Greek God of the Sea? Njord -9.348563674327517 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Njord, was the god of, the sea) -> Njord (7247ms) Who is the Greek God of the Sea? Aegir -9.354688463710232 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Aegir, was the god of, the sea) -> Aegir (7247ms) Who is the Greek God of the Sea? Triton's namesake -9.377936474968426 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Triton's namesake, Instance Of, Greek sea demigod) -> Triton's namesake (7274ms) Who is the Greek God of the Sea? the Greek god Poseidon -9.388197781061304 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (the Greek god Poseidon, [is] the god of, the sea) -> the Greek god Poseidon (7274ms) Who is the Greek God of the Sea? Njordur -9.395426133310881 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Njordur, is the god of, the sea) -> Njordur (7274ms) Who is the Greek God of the Sea? Athena and Poseidon -9.407212851583646 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Athena and Poseidon, [is] the god of, the sea) -> Athena and Poseidon (7380ms) Who is the Greek God of the Sea? POSEIDON -9.411970309893334 Who is the Greek God of the Sea? -> who be the greek [ god of the sea ] ? -> what be great god of the sea ? -> $x: ($x, be great god of, the sea) -> (POSEIDON, was the great Olympian god of, the sea) -> POSEIDON (7380ms) Who is the Greek God of the Sea? Arki -9.413518300133342 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Arki, Instance Of, small Greek island of the East-Aegean Sea) -> Arki (7380ms) Who is the Greek God of the Sea? Nereus -9.427376916281839 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the god of the sea ? -> $x: ($x, be the god of, the sea) -> (Nereus, was the god of, the Aegean sea) -> Nereus (7380ms) Who is the Greek God of the Sea? Susanoo -9.565629847420027 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the god of the sea ? -> $x: ($x, be the god of, the sea) -> (Susanoo, is the God of, the Sea and Storms) -> Susanoo (7581ms) Who is the Greek God of the Sea? Ulysse Nardin -9.58256411563212 Who is the Greek God of the Sea? -> who be the greek god of [ the sea ] ? -> who be the king of the sea ? -> $x: ($x, be the king of, the sea) -> (Ulysse Nardin, has been the king of, the seas) -> Ulysse Nardin (10198ms) Who is the Greek God of the Sea? Teos -9.617347205219636 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Teos, Instance Of, greek colonial city at the eastern shore of the mediterranean sea) -> Teos (7606ms) Who is the Greek God of the Sea? Richard Lewis -9.787925515397172 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the author of, the sea) -> (Richard Lewis, is the author of, THE KILLING SEA) -> Richard Lewis (10852ms) Who is the Greek God of the Sea? Peter Carey -9.798013692572892 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (Peter Carey, was master of, the Sea Unicorn) -> Peter Carey (12117ms) Who is the Greek God of the Sea? Yemaya -9.80160856347016 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Yemaya, is the Goddess of, the sea) -> Yemaya (8108ms) Who is the Greek God of the Sea? the most feared Gods -9.836441574860359 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (the most feared Gods, was the God of, the sea) -> the most feared Gods (8355ms) Who is the Greek God of the Sea? Iemanj? -9.839867664432656 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Iemanj?, is the vain goddess of, the sea) -> Iemanj? (8355ms) Who is the Greek God of the Sea? Yemaja -9.843985469618488 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Yemaja, is the Goddess of, the Sea) -> Yemaja (8355ms) Who is the Greek God of the Sea? Mannanan -9.849120330813967 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the god of the sea ? -> $x: ($x, be the god of, the sea) -> (Mannanan, is the warrior god of, the sea) -> Mannanan (8425ms) Who is the Greek God of the Sea? the behemothic squid -9.866759463741706 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (the behemothic squid, is god of, the sea) -> the behemothic squid (8425ms) Who is the Greek God of the Sea? Tiamat -9.893565108634693 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Tiamat, is the goddess of, the sea) -> Tiamat (8425ms) Who is the Greek God of the Sea? William Cowper -10.0229608888539 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who support of the sea ? -> $x: ($x, support of, the sea) -> $x: ($x, support of, sea) -> (William Cowper, Supports the weight of, sea and land) -> William Cowper (8522ms) Who is the Greek God of the Sea? Manannan mac Lir -10.031437587081639 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Manannan mac Lir, [is] the god of, the sea) -> Manannan mac Lir (8563ms) Who is the Greek God of the Sea? Aquaman Aquaman -10.081404432725598 Who is the Greek God of the Sea? -> who be the greek god of [ the sea ] ? -> who be the king of the sea ? -> $x: ($x, be the king of, the sea) -> (Aquaman Aquaman, is the king of, the seven seas and ruler) -> Aquaman Aquaman (10198ms) Who is the Greek God of the Sea? Yemay? -10.08764182657144 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Yemay?, is the Goddess of, the Sea and Nature) -> Yemay? (8563ms) Who is the Greek God of the Sea? ?gir -10.092619006510578 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (?gir, [is] the god of, the sea) -> ?gir (8563ms) Who is the Greek God of the Sea? Neraeos -10.14122369843017 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the god of the sea ? -> $x: ($x, be the god of, the sea) -> (Neraeos, is the God of, the Sea and Master) -> Neraeos (8694ms) Who is the Greek God of the Sea? a sailor -10.159202814289632 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (a sailor, was a native of, a Greek sea-city) -> a sailor (8694ms) Who is the Greek God of the Sea? King Neptune -10.162755023251696 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (King Neptune, [is] god of, the sea) -> King Neptune (8694ms) Who is the Greek God of the Sea? tsipoura -10.168047399245912 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (tsipoura, Instance Of, authentic greek sea food dish) -> tsipoura (8694ms) Who is the Greek God of the Sea? Dewa Baruna -10.18315614211565 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Dewa Baruna, [is] god of, the seas) -> Dewa Baruna (8694ms) Who is the Greek God of the Sea? Namakaokahai -10.187099913938969 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Namakaokahai, is the Goddess of, the Sea) -> Namakaokahai (8694ms) Who is the Greek God of the Sea? Conon -10.222714980221182 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Conon, Instance Of, Greek general of the sea) -> Conon (8733ms) Who is the Greek God of the Sea? Krisi Davis -10.259480901517271 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the author of, the sea) -> (Krisi Davis, is the author of, The Sea Glass Hunter-) -> Krisi Davis (10852ms) Who is the Greek God of the Sea? killer whales -10.270090859461783 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the cause of, the sea) -> (killer whales, was the cause of, the sea otter decline) -> killer whales (12257ms) Who is the Greek God of the Sea? Halcyone -10.337905486718395 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Halcyone, is the Goddess of, the Sea) -> Halcyone (8760ms) Who is the Greek God of the Sea? Xar?tenga -10.351168440841729 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Xar?tenga, was the goddess of, the sea) -> Xar?tenga (8760ms) Who is the Greek God of the Sea? Matsu -10.387230773103408 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Matsu, is the Goddess of, the Sea) -> Matsu (8787ms) Who is the Greek God of the Sea? Lefkada -10.40584188088238 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Lefkada, Instance Of, Greek island of the Ionian Sea) -> Lefkada (8787ms) Who is the Greek God of the Sea? Dodecanese -10.40584188088238 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Dodecanese, Instance Of, Greek archipelago of the Mediterranean Sea) -> Dodecanese (8813ms) Who is the Greek God of the Sea? Hilton Alves -10.415887742025806 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be a lover of, the sea) -> (Hilton Alves, is a lover of, the sea) -> Hilton Alves (12415ms) Who is the Greek God of the Sea? Vellamo -10.425833298968152 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Vellamo, is the goddess of, the sea) -> Vellamo (8813ms) Who is the Greek God of the Sea? experience -10.4460536832146 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who support of the sea ? -> $x: ($x, support of, the sea) -> (experience, support the growth of, the Sea Star Society) -> experience (8813ms) Who is the Greek God of the Sea? Barbara Kreiger -10.44675915853297 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the author of, the sea) -> (Barbara Kreiger, is the author of, The Dead Sea) -> Barbara Kreiger (10852ms) Who is the Greek God of the Sea? Alcyone -10.474464183456003 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Alcyone, is the goddess of, the sea) -> Alcyone (8813ms) Who is the Greek God of the Sea? The Pliosaur -10.47859679814171 Who is the Greek God of the Sea? -> who be the greek god of [ the sea ] ? -> who be the king of the sea ? -> $x: ($x, be the king of, the sea) -> (The Pliosaur, was the king of, the seas) -> The Pliosaur (10198ms) Who is the Greek God of the Sea? Olbia -10.488308522679858 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Olbia, Instance Of, Greek city Northwest of the Black sea) -> Olbia (8839ms) Who is the Greek God of the Sea? Glaucus -10.49326300563401 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Glaucus, Instance Of, Greek sea-god) -> Glaucus (8839ms) Who is the Greek God of the Sea? Varuna -10.502382255831195 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Varuna, [is] the god of, the sea) -> Varuna (8839ms) Who is the Greek God of the Sea? Lynne Griffin -10.530739043506937 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the author of, the sea) -> (Lynne Griffin, is the author of, the novels Sea Escape) -> Lynne Griffin (10852ms) Who is the Greek God of the Sea? Olokun -10.531956947654283 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Olokun, [is] god of, the sea) -> Olokun (8839ms) Who is the Greek God of the Sea? Taiwanese 14 May 07 Matzu -10.552728276243645 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Taiwanese 14 May 07 Matzu, is the goddess of, the sea and she?s) -> Taiwanese 14 May 07 Matzu (8864ms) Who is the Greek God of the Sea? bell-bottoms -10.563770752668889 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the spirit of, the sea) -> (bell-bottoms, is the spirit of, the sea) -> bell-bottoms (11920ms) Who is the Greek God of the Sea? Horst Kleinschmidt -10.567196174840785 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be director of, the sea) -> (Horst Kleinschmidt, is now a director of, the Sea Shepherd) -> Horst Kleinschmidt (12118ms) Who is the Greek God of the Sea? Neptunus -10.578060436613228 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Neptunus, [is] god of, the sea) -> Neptunus (9050ms) Who is the Greek God of the Sea? Peter Flint -10.582162986341348 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be director of, the sea) -> (Peter Flint, is co-Director of, the Dead Sea Scrolls Institute) -> Peter Flint (12118ms) Who is the Greek God of the Sea? 14 May 07 Matzu -10.59504572172963 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (14 May 07 Matzu, is the goddess of, the sea and she?s) -> 14 May 07 Matzu (9050ms) Who is the Greek God of the Sea? Decapolis -10.620255149555824 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Decapolis, Instance Of, league of ten Greek city east of the Sea of Galilee) -> Decapolis (9050ms) Who is the Greek God of the Sea? Thalassa -10.653329655456478 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Thalassa, Instance Of, Greek sea godess) -> Thalassa (9137ms) Who is the Greek God of the Sea? Delos -10.653329655456478 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Delos, Instance Of, sea-side Greek kingdom) -> Delos (9137ms) Who is the Greek God of the Sea? Lemnos -10.673858466724184 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Lemnos, Instance Of, Greek island of the northeast Aegean Sea located opposite Troy) -> Lemnos (9137ms) Who is the Greek God of the Sea? Chios -10.692137427766152 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Chios, Instance Of, greek colonial city at the eastern shore of the mediterranean sea) -> Chios (9163ms) Who is the Greek God of the Sea? Miletus -10.692137427766152 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Miletus, Instance Of, greek colonial city at the eastern shore of the mediterranean sea) -> Miletus (9163ms) Who is the Greek God of the Sea? Chidos -10.692137427766152 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Chidos, Instance Of, greek colonial city at the eastern shore of the mediterranean sea) -> Chidos (9163ms) Who is the Greek God of the Sea? Phocaea -10.692137427766152 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Phocaea, Instance Of, greek colonial city at the eastern shore of the mediterranean sea) -> Phocaea (9137ms) Who is the Greek God of the Sea? Halicarnassus -10.692137427766152 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Halicarnassus, Instance Of, greek colonial city at the eastern shore of the mediterranean sea) -> Halicarnassus (9137ms) Who is the Greek God of the Sea? Smyrna -10.692137427766152 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Smyrna, Instance Of, greek colonial city at the eastern shore of the mediterranean sea) -> Smyrna (9163ms) Who is the Greek God of the Sea? Mytilene -10.692137427766152 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Mytilene, Instance Of, greek colonial city at the eastern shore of the mediterranean sea) -> Mytilene (9137ms) Who is the Greek God of the Sea? Ephesus -10.692137427766152 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Ephesus, Instance Of, greek colonial city at the eastern shore of the mediterranean sea) -> Ephesus (9163ms) Who is the Greek God of the Sea? Syros -10.69822361089162 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Syros, Instance Of, sea-side Greek kingdom) -> Syros (9188ms) Who is the Greek God of the Sea? Svokos -10.69822361089162 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Svokos, Instance Of, Greek sea captain) -> Svokos (9188ms) Who is the Greek God of the Sea? Takis -10.69822361089162 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Takis, Instance Of, Greek sea captain) -> Takis (9188ms) Who is the Greek God of the Sea? Kraken -10.69822361089162 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Kraken, Instance Of, greek sea monster) -> Kraken (9188ms) Who is the Greek God of the Sea? The Devil -10.720727730139764 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (The Devil, was master of, the sea) -> The Devil (12118ms) Who is the Greek God of the Sea? Blaquiere -10.721155511284502 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Blaquiere, Instance Of, Irish sea captain & founder member of the London Greek Committee) -> Blaquiere (9213ms) Who is the Greek God of the Sea? disabled several -10.726512014589083 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (disabled several, were masters of, the sea) -> disabled several (12118ms) Who is the Greek God of the Sea? the Blessed -10.74148940319209 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be son of, the sea) -> (the Blessed, was the son of, the Sea God) -> the Blessed (12118ms) Who is the Greek God of the Sea? The Romans -10.742768085551397 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (The Romans, were the masters of, the sea) -> The Romans (12118ms) Who is the Greek God of the Sea? Samut Sakhon -10.758876127590781 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be associate with, the sea) -> (Samut Sakhon, has always been associated with, the sea) -> Samut Sakhon (11317ms) Who is the Greek God of the Sea? northern Europe -10.762953834020466 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (northern Europe, were masters of, the sea) -> northern Europe (12118ms) Who is the Greek God of the Sea? The Selkie -10.773779599335391 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the ruler of, the sea) -> (The Selkie, is the ruler of, the sea) -> The Selkie (11317ms) Who is the Greek God of the Sea? The Kingfisher -10.783744366546735 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the guardian of, the sea) -> (The Kingfisher, was the guardian of, the Sea Kingdom) -> The Kingfisher (11746ms) Who is the Greek God of the Sea? The British -10.817989499115464 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (The British, are masters of, the seas) -> The British (12257ms) Who is the Greek God of the Sea? Nerissa -10.818175089869772 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Nerissa, Instance Of, Greek name meaning Sea Nymph) -> Nerissa (9237ms) Who is the Greek God of the Sea? Man -10.84010039787262 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be lord of, the sea) -> (Man, was lord of, the Sea) -> Man (12498ms) Who is the Greek God of the Sea? Blue whales -10.84479202427764 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be king of, the sea) -> (Blue whales, are kings of, the seas) -> Blue whales (12257ms) Who is the Greek God of the Sea? Bob -10.853573947012142 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be man of, the sea) -> (Bob, is a man of, the sea) -> Bob (10985ms) Who is the Greek God of the Sea? Greek mythology Thalassa -10.858452690564318 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the personification of, the sea) -> (Greek mythology Thalassa, was the personification of, the sea) -> Greek mythology Thalassa (11409ms) Who is the Greek God of the Sea? Larus -10.865298885182618 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Larus, Instance Of, Greek word meaning ravenous sea bird) -> Larus (9237ms) Who is the Greek God of the Sea? aggressive warfare -10.907342349335806 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (aggressive warfare, were also masters of, the sea) -> aggressive warfare (12257ms) Who is the Greek God of the Sea? ?Bluefin -10.931984451060725 Who is the Greek God of the Sea? -> who be the greek god of [ the sea ] ? -> who be the king of the sea ? -> $x: ($x, be the king of, the sea) -> (?Bluefin, is the king of, the sea) -> ?Bluefin (10198ms) Who is the Greek God of the Sea? The Essenes -10.933247409634337 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the author of, the sea) -> (The Essenes, were the authors of, the Dead Sea Scrolls) -> The Essenes (10852ms) Who is the Greek God of the Sea? the Moros -10.940489040350313 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (the Moros, were the masters of, the seas) -> the Moros (12257ms) Who is the Greek God of the Sea? Marine research -10.947673872140982 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who support of the sea ? -> $x: ($x, support of, the sea) -> (Marine research, supports the protection of, the Baltic Sea) -> Marine research (9262ms) Who is the Greek God of the Sea? The Dutch -10.94997351804469 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (The Dutch, were masters of, the high seas) -> The Dutch (12415ms) Who is the Greek God of the Sea? Ian -10.951034523681889 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be man of, the sea) -> (Ian, too is a man of, the sea) -> Ian (10984ms) Who is the Greek God of the Sea? The English -10.957931301059148 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (The English, meanwhile were masters of, the sea) -> The English (12415ms) Who is the Greek God of the Sea? the Dutch -10.96813779909506 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (the Dutch, were still masters of, the seas--so) -> the Dutch (12415ms) Who is the Greek God of the Sea? The Minipirates -10.972078494285872 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (The Minipirates, were the masters of, the Zamonian Sea) -> The Minipirates (12415ms) Who is the Greek God of the Sea? Cape Cod -10.987166902530225 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the center of, the sea) -> (Cape Cod, has long been the center of, the Sea Herring Campaign) -> Cape Cod (11668ms) Who is the Greek God of the Sea? final refuge -10.994165407713808 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the author of, the sea) -> (final refuge, were the authors of, the Dead Sea Scrolls) -> final refuge (10852ms) Who is the Greek God of the Sea? the Athenians -10.995938339123526 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (the Athenians, were masters of, the sea) -> the Athenians (12415ms) Who is the Greek God of the Sea? Ron -11.025725473306037 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the head of, the sea) -> (Ron, was the Head of, the Sea Org) -> Ron (10984ms) Who is the Greek God of the Sea? Sedna -11.030151960723668 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Sedna, is the goddess of, the sea) -> Sedna (9362ms) Who is the Greek God of the Sea? the Milesians -11.040895355839693 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (the Milesians, were master of, the sea) -> the Milesians (12498ms) Who is the Greek God of the Sea? Amphitrite -11.08542902264175 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Amphitrite, was the Goddess of, the Sea) -> Amphitrite (9382ms) Who is the Greek God of the Sea? the Vikings -11.093455290427228 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be man of, the sea) -> (the Vikings, were men of, the sea) -> the Vikings (10984ms) Who is the Greek God of the Sea? the English -11.099580079809943 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (the English, were masters of, the sea) -> the English (12498ms) Who is the Greek God of the Sea? Ireon -11.105015583078394 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Ireon, Instance Of, nice little sea shore town, many good tavernas and good Greek food, mini-market, super market, bakery) -> Ireon (9382ms) Who is the Greek God of the Sea? Ea-Oannes -11.107468956196234 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the ruler of, the sea) -> (Ea-Oannes, was the ruler of, the sea) -> Ea-Oannes (11409ms) Who is the Greek God of the Sea? Nereid -11.119041734354921 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the god of the sea ? -> $x: ($x, be the god of, the sea) -> (Nereid, [is] the Roman god of, the sea) -> Nereid (9403ms) Who is the Greek God of the Sea? Manannan -11.139251964770942 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Manannan, [is] god of, the sea) -> Manannan (9403ms) Who is the Greek God of the Sea? the Druchii -11.14473873411837 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (the Druchii, are masters of, the seas) -> the Druchii (12498ms) Who is the Greek God of the Sea? Corinth -11.148041657059686 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be of the sea greek ? -> $x: ($x, be of, the sea greek) -> $x: ($x, of, sea greek) -> (Corinth, Instance Of, cosmopolitan, Greek, sea-port city) -> Corinth (9402ms) Who is the Greek God of the Sea? Posiedon -11.18188405324727 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Posiedon, [is] god of, the sea) -> Posiedon (9424ms) Who is the Greek God of the Sea? Frey -11.182789099240669 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be a god of, the sea) -> (Frey, is also arguably a god of, the sea) -> Frey (11408ms) Who is the Greek God of the Sea? Mananan -11.202285172111223 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Mananan, [is] the god of, the sea) -> Mananan (9424ms) Who is the Greek God of the Sea? Brahadair -11.202285172111223 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Brahadair, [is] god of, the sea) -> Brahadair (9424ms) Who is the Greek God of the Sea? Basque -11.202285172111223 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Basque, [is] god of, the sea) -> Basque (9424ms) Who is the Greek God of the Sea? Liranan -11.202285172111223 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Liranan, [is] the god of, the sea) -> Liranan (9448ms) Who is the Greek God of the Sea? Posideon -11.202285172111223 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (Posideon, [is] god of, the sea) -> Posideon (9424ms) Who is the Greek God of the Sea? chemical waste -11.203479131535149 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be all in, the sea) -> (chemical waste, was all thrown in, the deep sea) -> chemical waste (12594ms) Who is the Greek God of the Sea? the Law -11.203518855105093 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be lord of, the sea) -> (the Law, is the lord of, the sea) -> the Law (12593ms) Who is the Greek God of the Sea? The Persian Goddess Atargatis -11.21306864776999 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, goddess of, sea) -> (The Persian Goddess Atargatis, was a mermaid Goddess of, the Sea) -> The Persian Goddess Atargatis (9448ms) Who is the Greek God of the Sea? the Sultan -11.2157131535398 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the queen of, the sea) -> (the Sultan, is the Queen of, the South Sea) -> the Sultan (11409ms) Who is the Greek God of the Sea? the Romans -11.236933890677593 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (the Romans, were now masters of, the sea) -> the Romans (12594ms) Who is the Greek God of the Sea? whose sons -11.29593613683365 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be son of, the sea) -> (whose sons, are the sons of, the sea) -> whose sons (12594ms) Who is the Greek God of the Sea? Pisces -11.30503252847743 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> $x: ($x, god of, sea) -> (Pisces, is the god of, sea) -> Pisces (9448ms) Who is the Greek God of the Sea? course -11.307100886643116 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> $x: ($x, god of, sea) -> (course, represents the god of, the sea) -> course (9448ms) Who is the Greek God of the Sea? Water Bound -11.318921404737852 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the first in, the sea) -> (Water Bound, is the first book in, the Sea Haven series) -> Water Bound (12594ms) Who is the Greek God of the Sea? the Tsunami -11.34304410245076 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> $x: (the sea, god, $x) -> (the Sea, was God in, the Tsunami) -> the Tsunami (12751ms) Who is the Greek God of the Sea? Dant?s -11.3588842884696 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be man of, the sea) -> (Dant?s, is a man of, the sea) -> Dant?s (10984ms) Who is the Greek God of the Sea? Halioti?s -11.36603147640033 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be man of, the sea) -> (Halioti?s, is truly a man of, the sea) -> Halioti?s (10984ms) Who is the Greek God of the Sea? ?the masses -11.380433045479773 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> $x: (the sea, speaking of, $x) -> (the ?sea?, speaks of, ?the masses) -> ?the masses (13431ms) Who is the Greek God of the Sea? St . Vincent -11.385609004410313 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be man of, the sea) -> (St . Vincent, are men of, the sea) -> St . Vincent (10984ms) Who is the Greek God of the Sea? Atlantic Bluefin Tuna Bluefin -11.385648520230738 Who is the Greek God of the Sea? -> who be the greek god of [ the sea ] ? -> who be the king of the sea ? -> $x: ($x, be the king of, the sea) -> (Atlantic Bluefin Tuna Bluefin, is the king of, the sea) -> Atlantic Bluefin Tuna Bluefin (10198ms) Who is the Greek God of the Sea? the Abyss -11.388064350710888 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be associate with, the sea) -> (the Abyss, is also associated with, the deep sea) -> the Abyss (11409ms) Who is the Greek God of the Sea? Lagoona Blue -11.391883924763608 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the child of, the sea) -> (Lagoona Blue, is the child of, the Sea Monster) -> Lagoona Blue (10984ms) Who is the Greek God of the Sea? Odysseus -11.403739649795723 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> $x: ($x, god of, sea) -> (Odysseus, makes the god of, the sea) -> Odysseus (9469ms) Who is the Greek God of the Sea? Nick Band -11.415165535279678 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be man of, the sea) -> (Nick Band, is a man of, the sea) -> Nick Band (11409ms) Who is the Greek God of the Sea? Ellora?s Cave -11.438535657229263 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be man of, the sea) -> (Ellora?s Cave, is a man of, the sea) -> Ellora?s Cave (11409ms) Who is the Greek God of the Sea? the Chinese fleet -11.44042929911043 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (the Chinese fleet, then were masters of, the sea) -> the Chinese fleet (12594ms) Who is the Greek God of the Sea? fresh blue crab -11.459315726199721 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the essence of, the sea) -> (fresh blue crab, is truly the essence of, the sea) -> fresh blue crab (11746ms) Who is the Greek God of the Sea? The Mackeral Shark -11.459784410745558 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be king of, the sea) -> (The Mackeral Shark, was king of, the Paleocene seas) -> The Mackeral Shark (12696ms) Who is the Greek God of the Sea? Dragon King -11.471758602904924 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the ruler of, the sea) -> (Dragon King, is the divine ruler of, the four seas) -> Dragon King (11409ms) Who is the Greek God of the Sea? The Great Lord Hawke -11.488603363678022 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be king of, the sea) -> (The Great Lord Hawke, was king of, the sea) -> The Great Lord Hawke (12696ms) Who is the Greek God of the Sea? the Royal Navy -11.489944369999378 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (the Royal Navy, were truly the masters of, the seas) -> the Royal Navy (12696ms) Who is the Greek God of the Sea? rich nutrients -11.49285083629496 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who support of the sea ? -> $x: ($x, support of, the sea) -> $x: ($x, support of, sea) -> (rich nutrients, support a large variety of, sea life) -> rich nutrients (9495ms) Who is the Greek God of the Sea? the Portuguese -11.494670513784921 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (the Portuguese, were undisputed masters of, the Surat sea trade) -> the Portuguese (12696ms) Who is the Greek God of the Sea? the Lapis Dragon -11.503158135255891 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the queen of, the sea) -> (the Lapis Dragon, is the queen of, the sea) -> the Lapis Dragon (11668ms) Who is the Greek God of the Sea? Rolla-Mano -11.510017492212476 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be man of, the sea) -> (Rolla-Mano, was the old man of, the sea) -> Rolla-Mano (11668ms) Who is the Greek God of the Sea? The U.S. Navy -11.520766099279438 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (The U.S. Navy, has been the master of, the seas) -> The U.S. Navy (12696ms) Who is the Greek God of the Sea? We?ll -11.529286465057016 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be lord of, the sea) -> (We?ll, be Lords of, the Sea ! ? Laughter and camaraderie) -> We?ll (12751ms) Who is the Greek God of the Sea? iron -11.536107539369738 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be king of, the sea) -> (iron, would be King of, the Seas) -> iron (12751ms) Who is the Greek God of the Sea? The Otodus obliquus shark -11.539670212478631 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be king of, the sea) -> (The Otodus obliquus shark, was king of, the Paleocene seas) -> The Otodus obliquus shark (12751ms) Who is the Greek God of the Sea? Leisure Hotel Cochin -11.546514107623286 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the queen of, the sea) -> (Leisure Hotel Cochin, is the Queen of, the Arabian Sea) -> Leisure Hotel Cochin (11668ms) Who is the Greek God of the Sea? 4 Servings Salmon -11.58175568300835 Who is the Greek God of the Sea? -> who be the greek god of [ the sea ] ? -> who be the king of the sea ? -> $x: ($x, be the king of, the sea) -> (4 Servings Salmon, is the king of, the sea) -> 4 Servings Salmon (10198ms) Who is the Greek God of the Sea? Block Island Chris Warfel -11.59167229097859 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be son of, the sea) -> (Block Island Chris Warfel, is n?t a son of, the sea) -> Block Island Chris Warfel (12865ms) Who is the Greek God of the Sea? the Tsunami? -11.59798117858127 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> $x: (the sea, god, $x) -> (the Sea, Was God in, the Tsunami?) -> the Tsunami? (12865ms) Who is the Greek God of the Sea? the Ocean King -11.601589531949108 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the master of, the sea) -> (the Ocean King, is the master of, all the world?s seas) -> the Ocean King (12865ms) Who is the Greek God of the Sea? out -11.612135306039601 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the end of, the sea) -> (out, is the end of, the sea... Flexaret IV Someone) -> out (11746ms) Who is the Greek God of the Sea? The god Poseidon -11.616150564336188 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> (The god Poseidon, [is] god of, the sea) -> The god Poseidon (9516ms) Who is the Greek God of the Sea? the Atlantic bluefin tuna -11.616998163000295 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be king of, the sea) -> (the Atlantic bluefin tuna, is indisputably a king of, the seas) -> the Atlantic bluefin tuna (12866ms) Who is the Greek God of the Sea? the Clan -11.622026303367663 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who support of the sea ? -> $x: ($x, support of, the sea) -> $x: ($x, support of, sea) -> (the Clan, overwhelmingly supported the change of, Clan Sea Fox) -> the Clan (9516ms) Who is the Greek God of the Sea? Thomas N. Graves -11.635138921751665 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the essence of, the sea) -> (Thomas N. Graves, has been capturing the essence of, the sea) -> Thomas N. Graves (11746ms) Who is the Greek God of the Sea? New South Wales -11.638554074797229 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> $x: (the sea, speaking of, $x) -> (the South Seas, spoke of, New South Wales) -> New South Wales (13431ms) Who is the Greek God of the Sea? Funding -11.649039589113247 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who support of the sea ? -> $x: ($x, support of, the sea) -> (Funding, will support an installation of, The Glass Sea) -> Funding (9516ms) Who is the Greek God of the Sea? marine waters -11.654575295221893 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who support of the sea ? -> $x: ($x, support of, the sea) -> $x: ($x, support of, sea) -> (marine waters, support a multitude of, sea lions) -> marine waters (9536ms) Who is the Greek God of the Sea? music -11.657234781033745 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> $x: (the sea, god, $x) -> (the seas, was the god of, music) -> music (12865ms) Who is the Greek God of the Sea? multiple messiahs -11.658490668920447 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> $x: (the sea, speaking of, $x) -> (The Dead Sea Scrolls, actually speak of, multiple messiahs) -> multiple messiahs (13431ms) Who is the Greek God of the Sea? Lida Pet-Soede -11.661664829998331 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the owner of, the sea) -> (Lida Pet-Soede, are now the proud co-owners of, The Seven Seas) -> Lida Pet-Soede (12951ms) Who is the Greek God of the Sea? King Triton -11.663082469865225 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the ruler of, the sea) -> (King Triton, is the ruler of, the Seven Seas) -> King Triton (11667ms) Who is the Greek God of the Sea? McCormick and Schmick -11.675862138282529 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be king of, the sea) -> (McCormick and Schmick, might be king of, the sea) -> McCormick and Schmick (12951ms) Who is the Greek God of the Sea? The Cetusidae family -11.689362808160077 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> $x: ($x, be the origin of, the sea) -> (The Cetusidae family, is the origin of, the sea lions) -> The Cetusidae family (12951ms) Who is the Greek God of the Sea? A Liquid Mirror Light -11.693546077113641 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the light of, the sea) -> (A Liquid Mirror Light, is also the light of, the sea) -> A Liquid Mirror Light (12951ms) Who is the Greek God of the Sea? Origin Davy Jones -11.693546077113641 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the spirit of, the sea) -> (Origin Davy Jones, is the evil spirit of, the sea) -> Origin Davy Jones (12951ms) Who is the Greek God of the Sea? carbon cycling -11.702871840875003 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be greater than, the sea) -> (carbon cycling, is often greater than in, the deep sea) -> carbon cycling (12951ms) Who is the Greek God of the Sea? the British -11.76985076653084 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the master of, the sea) -> (the British, are the masters of, the seas) -> the British (13003ms) Who is the Greek God of the Sea? Eva -11.775216242427925 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the queen of, the sea) -> (Eva, is the youngest queen of, the Mediterranean sea) -> Eva (11668ms) Who is the Greek God of the Sea? A Purifying Mud Mask -11.784035151632503 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the power of, the sea) -> (A Purifying Mud Mask, is the magical power of, the Dead Sea) -> A Purifying Mud Mask (11668ms) Who is the Greek God of the Sea? the Tsunami ? -11.798173715412918 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> $x: (the sea, god, $x) -> (the Sea, Was God in, the Tsunami ?) -> the Tsunami ? (13003ms) Who is the Greek God of the Sea? The Egyptians -11.804848760037457 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be all in, the sea) -> (The Egyptians, were all drowned in, the sea) -> The Egyptians (13003ms) Who is the Greek God of the Sea? NSW forces -11.806823632800121 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who support of the sea ? -> $x: ($x, support of, the sea) -> $x: ($x, support of, sea) -> (NSW forces, support the requirements of, sea control) -> NSW forces (9536ms) Who is the Greek God of the Sea? PG-13 Bill -11.811722359544508 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> $x: ($x, be the prince of, the sea) -> (PG-13 Bill, is the prince of, the sea) -> PG-13 Bill (13431ms) Who is the Greek God of the Sea? The Captain & the yacht Nick Band -11.825492703989607 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be man of, the sea) -> (The Captain & the yacht Nick Band, is a man of, the sea) -> The Captain & the yacht Nick Band (11746ms) Who is the Greek God of the Sea? Baveras -11.82660645014344 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> (Baveras, is the Santharian Goddess of, the Sea) -> Baveras (9556ms) Who is the Greek God of the Sea? Eardil -11.84072704652266 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the god of the sea ? -> $x: ($x, be the god of, the sea) -> (Eardil, [is] the god of, the lakes and seas) -> Eardil (9556ms) Who is the Greek God of the Sea? the Makah Tribe -11.841245686133693 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the guardian of, the sea) -> (the Makah Tribe, were the traditional guardians of, the sea) -> the Makah Tribe (11746ms) Who is the Greek God of the Sea? Osse -11.843541854138525 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be lord of, the sea) -> (Osse, was lord of, the Inner Seas) -> Osse (13117ms) Who is the Greek God of the Sea? John Oysterman -11.844442789210682 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be man of, the sea) -> (John Oysterman, was a man of, the sea) -> John Oysterman (13117ms) Who is the Greek God of the Sea? Asherah -11.857928831192233 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, goddess of, sea) -> (Asherah, was goddess of, the sea) -> Asherah (9556ms) Who is the Greek God of the Sea? Sharks -11.87257332313647 Who is the Greek God of the Sea? -> who be the greek god of [ the sea ] ? -> who be the king of the sea ? -> $x: ($x, be the king of, the sea) -> (Sharks, are the king of, the sea) -> Sharks (10198ms) Who is the Greek God of the Sea? Iris -11.875939627115862 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, goddess of, sea) -> (Iris, was a goddess of, sea and sky?her father Thaumas) -> Iris (9556ms) Who is the Greek God of the Sea? the Chinese Fleet -11.8792661757015 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be master of, the sea) -> (the Chinese Fleet, then were Masters of, the Sea) -> the Chinese Fleet (13117ms) Who is the Greek God of the Sea? AIDA Cruises -11.899858243578354 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be one in, the sea) -> (AIDA Cruises, is number one in, the German sea travel market) -> AIDA Cruises (10852ms) Who is the Greek God of the Sea? ?Jack -11.906457616165707 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be a lover of, the sea) -> (?Jack, was a lover of, the sea , money and hallucinogens) -> ?Jack (13117ms) Who is the Greek God of the Sea? Pell -11.946307601917148 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be man of, the sea) -> (Pell, clearly was a man of, the sea) -> Pell (13117ms) Who is the Greek God of the Sea? Thetis -11.957136936115397 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, goddess of, sea) -> (Thetis, was a Goddess of, the sea) -> Thetis (9597ms) Who is the Greek God of the Sea? 20m and -11.957736488714701 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be fan of, the sea) -> (20m and, am a huge fan of, the sea) -> 20m and (10852ms) Who is the Greek God of the Sea? reality -11.972421386915595 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who support of the sea ? -> $x: ($x, support of, the sea) -> $x: ($x, support of, sea) -> (reality, supported the killing of, sea lions and dolphins) -> reality (9596ms) Who is the Greek God of the Sea? England -11.983753909027733 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the queen of, the sea) -> (England, was the undisputed queen of, the seas) -> England (13209ms) Who is the Greek God of the Sea? the Essenes -11.984264035204285 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the author of, the sea) -> (the Essenes, were the authors of, the Dead Sea Scrolls) -> the Essenes (13209ms) Who is the Greek God of the Sea? noise -11.992980272871694 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the light of, the sea) -> (noise, is the light of, the sea) -> noise (13209ms) Who is the Greek God of the Sea? daughter -12.010902823097496 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be the queen of, the sea) -> (daughter, is the Queen of, the South Sea) -> daughter (13209ms) Who is the Greek God of the Sea? the Mabinogian -12.027102450306852 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be associate with, the sea) -> (the Mabinogian, are associated with, the sea) -> the Mabinogian (13209ms) Who is the Greek God of the Sea? the 'salvation ' -12.029842583685303 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> $x: (the sea, speaking of, $x) -> (the Dead Sea, speak of, the 'salvation ') -> the 'salvation ' (13431ms) Who is the Greek God of the Sea? storm-water -12.063338866948314 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> $x: ($x, allow into, the sea) -> (storm-water, was allowed to run into, the sea) -> storm-water (13209ms) Who is the Greek God of the Sea? Varunan -12.071290045970397 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> $x: ($x, god of, sea) -> (Varunan, is god of, sea land) -> Varunan (9616ms) Who is the Greek God of the Sea? the Israelites -12.072414552017872 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, be all in, the sea) -> (the Israelites, were all baptized in, the Red Sea) -> the Israelites (13431ms) Who is the Greek God of the Sea? the ancient Greeks -12.085333599784022 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be god of the sea ? -> $x: ($x, be god of, the sea) -> $x: ($x, god of, sea) -> (the ancient Greeks, worshiped their god of, the sea) -> the ancient Greeks (9616ms) Who is the Greek God of the Sea? Bluefin -12.1563819199218 Who is the Greek God of the Sea? -> who be the greek god of [ the sea ] ? -> who be the king of the sea ? -> $x: ($x, be the king of, the sea) -> (Bluefin, is the king of, the sea) -> Bluefin (10269ms) Who is the Greek God of the Sea? the Kenai Peninsula -12.166836055588767 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who support of the sea ? -> $x: ($x, support of, the sea) -> $x: ($x, support of, sea) -> (the Kenai Peninsula, support large numbers of, sea otters) -> the Kenai Peninsula (9616ms) Who is the Greek God of the Sea? The project -12.193904980060022 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who support of the sea ? -> $x: ($x, support of, the sea) -> (The project, supports the work of, the Caribbean Sea Commission) -> The project (9852ms) Who is the Greek God of the Sea? nutrients -12.24469088603992 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who support of the sea ? -> $x: ($x, support of, the sea) -> $x: ($x, support of, sea) -> (nutrients, supports immense varieties of, sea life) -> nutrients (9852ms) Who is the Greek God of the Sea? Dragon -12.339260179316094 Who is the Greek God of the Sea? -> who be the greek god of [ the sea ] ? -> who be the king of the sea ? -> $x: ($x, be the king of, the sea) -> (Dragon, is the king of, the sea) -> Dragon (10269ms) Who is the Greek God of the Sea? Gojun -12.45188193559856 Who is the Greek God of the Sea? -> who be the greek god of [ the sea ] ? -> who be the king of the sea ? -> $x: ($x, be the king of, the sea) -> (Gojun, is the king of, the western seas) -> Gojun (10269ms) Who is the Greek God of the Sea? help -12.48305003728358 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who support of the sea ? -> $x: ($x, support of, the sea) -> $x: ($x, support of, sea) -> (help, support the work of, Sea Watch) -> help (9897ms) Who is the Greek God of the Sea? Brizo -12.524380805020371 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, goddess of, sea) -> (Brizo, is a goddess of, the sea) -> Brizo (9897ms) Who is the Greek God of the Sea? the dolphin -12.539249002803068 Who is the Greek God of the Sea? -> who be the greek god of [ the sea ] ? -> who be the king of the sea ? -> $x: ($x, be the king of, the sea) -> (the dolphin, was the king of, the sea creatures) -> the dolphin (10361ms) Who is the Greek God of the Sea? Nsambakalunga -12.644891139879528 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, goddess of, sea) -> (Nsambakalunga, is an African Goddess of, the seas) -> Nsambakalunga (10361ms) Who is the Greek God of the Sea? Arnemetia -12.66529225874348 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, goddess of, sea) -> (Arnemetia, is a Celtic goddess of, the sea) -> Arnemetia (10361ms) Who is the Greek God of the Sea? Melanie -12.679767082933656 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, goddess of, sea) -> (Melanie, is goddess of, the sea and water) -> Melanie (10382ms) Who is the Greek God of the Sea? Enderalath -12.705529458318791 Who is the Greek God of the Sea? -> who be the greek god of [ the sea ] ? -> what be the name of the sea god ? -> $x: (the sea god, name, $x) -> (the sea god, named, Enderalath) -> Enderalath (10382ms) Who is the Greek God of the Sea? the shark -12.792775208767676 Who is the Greek God of the Sea? -> who be the greek god of [ the sea ] ? -> who be the king of the sea ? -> $x: ($x, be the king of, the sea) -> (the shark, is the king of, the sea) -> the shark (10382ms) Who is the Greek God of the Sea? the island -12.83724637206215 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who support of the sea ? -> $x: ($x, support of, the sea) -> $x: ($x, support of, sea) -> (the island, supports huge numbers of, sea birds) -> the island (10403ms) Who is the Greek God of the Sea? date -12.859339139338882 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who support of the sea ? -> $x: ($x, support of, the sea) -> $x: ($x, support of, sea) -> (date, support versions of, SeaMonkey) -> date (10403ms) Who is the Greek God of the Sea? the trash -13.003395825737789 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who support of the sea ? -> $x: ($x, support of, the sea) -> $x: ($x, support of, sea) -> (the trash, is supporting all kinds of, sea life) -> the trash (10403ms) Who is the Greek God of the Sea? the largest creatures -13.07854586409309 Who is the Greek God of the Sea? -> who be the greek god of [ the sea ] ? -> who be the king of the sea ? -> $x: ($x, be the king of, the sea) -> (the largest creatures, are called the King of, the Sea) -> the largest creatures (10424ms) Who is the Greek God of the Sea? Council -13.139916803708616 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who support of the sea ? -> $x: ($x, support of, the sea) -> $x: ($x, support of, sea) -> (Council, also supported the formation of, a Sea) -> Council (10424ms) Who is the Greek God of the Sea? the depths -13.170015023169373 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who be the goddess of the sea ? -> $x: ($x, be the goddess of, the sea) -> $x: ($x, goddess of, sea) -> (the depths, became the Goddess of, Sea Creatures) -> the depths (10424ms) Who is the Greek God of the Sea? The herring -13.538000675994352 Who is the Greek God of the Sea? -> who be the greek god of [ the sea ] ? -> who be the king of the sea ? -> $x: ($x, be the king of, the sea) -> (The herring, is the king of, the sea) -> The herring (10498ms) Who is the Greek God of the Sea? 2007 -13.541888794143532 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who support of the sea ? -> $x: ($x, support of, the sea) -> $x: ($x, support of, sea) -> (2007, supported lethal removal of, California sea lions) -> 2007 (10498ms) Who is the Greek God of the Sea? the reef -13.588832188756747 Who is the Greek God of the Sea? -> who be the greek god [ of the sea ] ? -> who support of the sea ? -> $x: ($x, support of, the sea) -> $x: ($x, support of, sea) -> (the reef, supports a wide array of, colorful sea life) -> the reef (10567ms) Who developed the Macintosh computer? Jobs -0.9756311819891174 Who developed the Macintosh computer? -> $x: ($x, developed, the Macintosh computer) -> (Jobs, develop, the Macintosh computer) -> Jobs (2936ms) Who developed the Macintosh computer? the unit -1.5798179113116868 Who developed the Macintosh computer? -> $x: ($x, developed, the Macintosh computer) -> (the unit, developed, the Macintosh computer) -> the unit (2936ms) Who developed the Macintosh computer? The program -2.5495523308678885 Who developed the Macintosh computer? -> $x: ($x, developed, the Macintosh computer) -> (The program, was developed for, the Macintosh computer) -> The program (2935ms) Who developed the Macintosh computer? 1984 -2.7193453386362987 Who developed the Macintosh computer? -> $x: ($x, developed, the Macintosh computer) -> (1984, developed to run on, the Macintosh computer) -> 1984 (2935ms) Who developed the Macintosh computer? PageMaker -2.905577179344494 Who developed the Macintosh computer? -> $x: ($x, developed, the Macintosh computer) -> $x: ($x, develop, macintosh computer) -> (PageMaker, was developed for, Macintosh computers) -> PageMaker (5190ms) Who developed the Macintosh computer? Apple -2.9580235425397765 Who developed the Macintosh computer? -> $x: ($x, developed, the Macintosh computer) -> (Apple, developing, the Macintosh computer) -> Apple (2936ms) Who developed the Macintosh computer? a new program Aldus -3.7685602153804236 Who developed the Macintosh computer? -> $x: ($x, developed, the Macintosh computer) -> $x: ($x, develop, macintosh computer) -> (a new program Aldus, developed for, Apple Macintosh computers) -> a new program Aldus (5189ms) Who developed the Macintosh computer? image -4.254846071049126 Who developed the Macintosh computer? -> $x: ($x, developed, the Macintosh computer) -> $x: ($x, develop, macintosh computer) -> (image, was developed on, Macintosh computer) -> image (5204ms) Who developed the Macintosh computer? Later versions -4.289430149165785 Who developed the Macintosh computer? -> $x: ($x, developed, the Macintosh computer) -> $x: ($x, develop, macintosh computer) -> (Later versions, were developed for, Macintosh computers) -> Later versions (5204ms) Who developed the Macintosh computer? a network protocol -4.3596485851052 Who developed the Macintosh computer? -> $x: ($x, developed, the Macintosh computer) -> $x: ($x, develop, macintosh computer) -> (a network protocol, was developed for, Macintosh computers) -> a network protocol (5204ms) Who developed the Macintosh computer? Company -4.369064704207156 Who developed the Macintosh computer? -> $x: ($x, developed, the Macintosh computer) -> $x: ($x, develop, macintosh computer) -> (Company, develops software for, OPENSTEP and Macintosh computers) -> Company (5204ms) Who developed the Macintosh computer? Animal stack -4.9186039552602105 Who developed the Macintosh computer? -> $x: ($x, developed, the Macintosh computer) -> $x: ($x, develop, macintosh computer) -> (Animal stack, was developed on, Macintosh computers) -> Animal stack (5324ms) Who developed the Macintosh computer? Steve Jobs -8.986646420721645 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who design the first the macintosh computer ? -> $x: ($x, design, the first the macintosh computer) -> (Steve Jobs, finished designing, the first Macintosh computer) -> Steve Jobs (6986ms) Who developed the Macintosh computer? CAD users -9.588345930965579 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> (CAD users, work on, the Macintosh computer) -> CAD users (6842ms) Who developed the Macintosh computer? Acrobat Reader -10.192891849886866 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (Acrobat Reader, works on, Windows and Macintosh computers) -> Acrobat Reader (8436ms) Who developed the Macintosh computer? Release Forms -10.81454275943067 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (Release Forms, works on, both Windows and Macintosh computers) -> Release Forms (8436ms) Who developed the Macintosh computer? Steve -11.163759803711706 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who design the first the macintosh computer ? -> $x: ($x, design, the first the macintosh computer) -> (Steve, was designing, the first Macintosh computer) -> Steve (6986ms) Who developed the Macintosh computer? the Aldus PageMaker -11.178838074686931 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (the Aldus PageMaker, worked on, his Macintosh computer) -> the Aldus PageMaker (8436ms) Who developed the Macintosh computer? architects and CAD users -11.210898529778497 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> (architects and CAD users, work on, the Macintosh computer) -> architects and CAD users (6844ms) Who developed the Macintosh computer? Kawasaki -11.244380824250793 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who design the first the macintosh computer ? -> $x: ($x, design, the first the macintosh computer) -> (Kawasaki, originally helped design, the first Macintosh computer) -> Kawasaki (6986ms) Who developed the Macintosh computer? GameTap -11.289620865156996 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (GameTap, now works on, Intel-based Apple Macintosh computers) -> GameTap (8436ms) Who developed the Macintosh computer? FileMaker -11.351985688810284 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (FileMaker, works on, a Macintosh or IBM Compatible computer) -> FileMaker (8436ms) Who developed the Macintosh computer? tool -11.58822734236522 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (tool, works on, any Windows-compatible or Macintosh computer) -> tool (8436ms) Who developed the Macintosh computer? Bart -11.59629122296775 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (Bart, works almost exclusively on, Macintosh computers) -> Bart (8642ms) Who developed the Macintosh computer? IronKey drives -11.703734180340414 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (IronKey drives, will also work on, Macintosh computers) -> IronKey drives (8642ms) Who developed the Macintosh computer? Zune players -11.737025875554796 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (Zune players, work on, Macintosh computers) -> Zune players (8642ms) Who developed the Macintosh computer? a file -11.750428542015474 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (a file, works on, Windows , Macintosh or Unix computers) -> a file (8642ms) Who developed the Macintosh computer? FriendBlasterPro -11.773898632713841 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (FriendBlasterPro, work on, Macintosh Computers) -> FriendBlasterPro (8642ms) Who developed the Macintosh computer? few -11.782713042357624 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (few, had ever worked on, Macintosh computers) -> few (8642ms) Who developed the Macintosh computer? a guy -11.848821380651971 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (a guy, was working on, an older Macintosh computer) -> a guy (8642ms) Who developed the Macintosh computer? The POV.1.5 -11.859291380050443 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (The POV.1.5, will work on, Macintosh computers) -> The POV.1.5 (8642ms) Who developed the Macintosh computer? MacGenogram -11.863103313626873 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (MacGenogram, worked only on, Macintosh computers) -> MacGenogram (8785ms) Who developed the Macintosh computer? Simple WindowSets -11.878214195251395 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (Simple WindowSets, will work on, Macintosh computers) -> Simple WindowSets (8785ms) Who developed the Macintosh computer? Windows-compatible PCs -11.89124868980571 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (Windows-compatible PCs, should also work on, Macintosh computers) -> Windows-compatible PCs (8785ms) Who developed the Macintosh computer? students -11.936954940038037 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (students, will work on, Macintosh Apple computers) -> students (8785ms) Who developed the Macintosh computer? Data Co-op -11.978863036213863 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (Data Co-op, works on, both Windows and Macintosh computers) -> Data Co-op (8785ms) Who developed the Macintosh computer? Manifesto -12.4215774657282 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who construct the macintosh computer ? -> $x: ($x, construct, the macintosh computer) -> $x: ($x, construct, macintosh computer) -> (Manifesto, construct, a Macintosh computer circa 1990) -> Manifesto (8785ms) Who developed the Macintosh computer? users -12.527580170676002 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (users, work on, DOS or Macintosh computers) -> users (8901ms) Who developed the Macintosh computer? designers -12.562868546341523 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (designers, started working on, Macintosh computers) -> designers (8901ms) Who developed the Macintosh computer? command -12.62926292435948 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (command, is only working on, Macintosh computers) -> command (8901ms) Who developed the Macintosh computer? Suppliers -12.653988665387978 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (Suppliers, works on, both Windows and Macintosh computers) -> Suppliers (8901ms) Who developed the Macintosh computer? Firefox -12.743435952725578 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (Firefox, works best on, both Windows and Macintosh computers) -> Firefox (8901ms) Who developed the Macintosh computer? Deutch -13.10158732746525 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (Deutch, worked exclusively on, Macintosh computers) -> Deutch (8999ms) Who developed the Macintosh computer? Syphone -13.116618707093073 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (Syphone, only works on, Macintosh computers) -> Syphone (8999ms) Who developed the Macintosh computer? NT & 2000 -13.15666324030187 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (NT & 2000, also works on, Macintosh computers) -> NT & 2000 (8999ms) Who developed the Macintosh computer? Susan -13.159944367769754 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (Susan, worked on early, Macintosh computers) -> Susan (8999ms) Who developed the Macintosh computer? the game -13.18317097754053 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (the game, should now work again on, Macintosh computers) -> the game (8999ms) Who developed the Macintosh computer? Tinderbox -13.183852453734087 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (Tinderbox, works on, Macintosh computers) -> Tinderbox (8999ms) Who developed the Macintosh computer? The activity -13.275975409280345 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (The activity, works on, a PC or Macintosh computer) -> The activity (8999ms) Who developed the Macintosh computer? Bavari -13.304148150427814 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (Bavari, works on, a Macintosh G3 computer) -> Bavari (9047ms) Who developed the Macintosh computer? The patch -13.315300480941165 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (The patch, should work on, all Macintosh computers) -> The patch (9047ms) Who developed the Macintosh computer? Sorren -13.315414272179938 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (Sorren, was working on, an Apple Macintosh computer) -> Sorren (9047ms) Who developed the Macintosh computer? The same font file -13.348445191755339 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (The same font file, works on, Macintosh and Windows computers) -> The same font file (9047ms) Who developed the Macintosh computer? The instructor -13.407684346071056 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (The instructor, will be working on, a Macintosh computer) -> The instructor (9048ms) Who developed the Macintosh computer? January -13.564816474503829 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> when be the macintosh computer develop ? -> $x: (the macintosh computer, be develop in, $x) -> $x: (the macintosh computer, be be release in, $x) -> (The Macintosh computer, was released in, January) -> January (12845ms) Who developed the Macintosh computer? The files -14.13447415584161 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (The files, will work on, either a PC or Macintosh computer) -> The files (9047ms) Who developed the Macintosh computer? the same font file -14.715020500738094 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> who work on the macintosh computer ? -> $x: ($x, work on, the macintosh computer) -> $x: ($x, work on, macintosh computer) -> (the same font file, works on, Macintosh and Windows computers) -> the same font file (9047ms) Who developed the Macintosh computer? January of 1984 -14.73138971402156 Who developed the Macintosh computer? -> who develop [ the macintosh computer ] ? -> when be the macintosh computer develop ? -> $x: (the macintosh computer, be develop in, $x) -> $x: (the macintosh computer, be be release in, $x) -> (The Macintosh computer, was released in, January of 1984) -> January of 1984 (12845ms) In what city are the three Great Pyramids located? the Sphinx -11.201907535529347 In what city are the three Great Pyramids located? -> in what city be [ the three great pyramid ] locate ? -> what be the city of the three great pyramid ? -> $x: (the three great pyramid, city, $x) -> $x: ($x, be, the three great pyramid) -> (the Sphinx, as were, the three great pyramids) -> the Sphinx (7289ms) In what city are the three Great Pyramids located? such a way -11.222269656902137 In what city are the three Great Pyramids located? -> in what city be [ the three great pyramid ] locate ? -> where be the three great pyramid ? -> $x: (the three great pyramid, be in, $x) -> (the three great pyramids, were laid out in, such a way) -> such a way (7290ms) In what city are the three Great Pyramids located? drake puppy -11.570738748001924 In what city are the three Great Pyramids located? -> in what city be [ the three great pyramid ] locate ? -> what be the city of the three great pyramid ? -> $x: (the three great pyramid, city, $x) -> $x: ($x, be, the three great pyramid) -> (drake puppy, is the largest of, the three Great Pyramids) -> drake puppy (7290ms) In what city are the three Great Pyramids located? Atlantis -12.412368684323813 In what city are the three Great Pyramids located? -> in what city be [ the three great pyramid ] locate ? -> what be the city of the three great pyramid ? -> $x: (the three great pyramid, city, $x) -> $x: ($x, be, the three great pyramid) -> (Atlantis, are, the three Great Pyramids) -> Atlantis (7290ms) In what city are the three Great Pyramids located? the escarpment -12.922570121232038 In what city are the three Great Pyramids located? -> in what city be [ the three great pyramid ] locate ? -> what be the city of the three great pyramid ? -> $x: (the three great pyramid, city, $x) -> $x: ($x, be, the three great pyramid) -> (the escarpment, are, the three Great Pyramids) -> the escarpment (7289ms) In what city are the three Great Pyramids located? The sole exception -13.51424430464509 In what city are the three Great Pyramids located? -> in what city be [ the three great pyramid ] locate ? -> what be the city of the three great pyramid ? -> $x: (the three great pyramid, city, $x) -> $x: ($x, be, the three great pyramid) -> (The sole exception, may be, the three great pyramids) -> The sole exception (7289ms) Who invented television? Robert Adler -1.0206316830629767 Who invented television? -> $x: ($x, invented, television) -> (Robert Adler, invented, the television remote control) -> Robert Adler (4283ms) Who invented television? Philo Farnsworth -1.1178943105700925 Who invented television? -> $x: ($x, invented, television) -> (Philo Farnsworth, invented, the Television) -> Philo Farnsworth (4283ms) Who invented television? Vladimir Zworykin -1.20470107873407 Who invented television? -> $x: ($x, invented, television) -> (Vladimir Zworykin, invented, the television) -> Vladimir Zworykin (4283ms) Who invented television? wishing someone -2.0202940579223903 Who invented television? -> $x: ($x, invented, television) -> (wishing someone, invent, television) -> wishing someone (4283ms) Who invented television? the Americans -2.088380839116369 Who invented television? -> $x: ($x, invented, television) -> (the Americans, invented, television) -> the Americans (4435ms) Who invented television? Vinton Cerf -2.12165672759023 Who invented television? -> $x: ($x, invented, television) -> (Vinton Cerf, invented, the Television) -> Vinton Cerf (4436ms) Who invented television? Philo T Farnsworth -2.141433500953586 Who invented television? -> $x: ($x, invented, television) -> (Philo T Farnsworth, invented, electronic television) -> Philo T Farnsworth (4435ms) Who invented television? weeks pregnant -2.1715616871691634 Who invented television? -> $x: ($x, invented, television) -> (weeks pregnant, invented, the television nina) -> weeks pregnant (4436ms) Who invented television? Papua New Guinea -2.1761100431329075 Who invented television? -> $x: ($x, invented, television) -> (Papua New Guinea, had invented, the television) -> Papua New Guinea (4435ms) Who invented television? David Sarnoff ? -2.288637760001368 Who invented television? -> $x: ($x, invented, television) -> (David Sarnoff ?, invented, the television) -> David Sarnoff ? (4523ms) Who invented television? John Logie Baird -2.3342452006828127 Who invented television? -> $x: ($x, invented, television) -> (John Logie Baird, invented, television) -> John Logie Baird (4523ms) Who invented television? Philo T. Farnsworth -2.339856635565253 Who invented television? -> $x: ($x, invented, television) -> (Philo T. Farnsworth, invented, the Television) -> Philo T. Farnsworth (4523ms) Who invented television? the Mayans -2.5559773625563817 Who invented television? -> $x: ($x, invented, television) -> (the Mayans, invented, television) -> the Mayans (4612ms) Who invented television? a teenager -2.6285378531338255 Who invented television? -> $x: ($x, invented, television) -> (a teenager, invented, television) -> a teenager (4612ms) Who invented television? two people -2.641964802393324 Who invented television? -> $x: ($x, invented, television) -> (two people, invented, the television) -> two people (4612ms) Who invented television? The Boy -2.6653208687839918 Who invented television? -> $x: ($x, invented, television) -> (The Boy, Invented, Television) -> The Boy (4612ms) Who invented television? a boy genius -2.701460836790443 Who invented television? -> $x: ($x, invented, television) -> (a boy genius, invented, television) -> a boy genius (4646ms) Who invented television? ?The Boy -2.7213785846994556 Who invented television? -> $x: ($x, invented, television) -> (?The Boy, Invented, Television) -> ?The Boy (4646ms) Who invented television? a legal battle -2.7394813790605452 Who invented television? -> $x: ($x, invented, television) -> (a legal battle, invented, television) -> a legal battle (4646ms) Who invented television? J.L. Baird -2.7417151354361513 Who invented television? -> $x: ($x, invented, television) -> (J.L. Baird, invented, television) -> J.L. Baird (4646ms) Who invented television? one man -2.786809221617321 Who invented television? -> $x: ($x, invented, television) -> (one man, invented, television) -> one man (4646ms) Who invented television? humans -2.792661770410314 Who invented television? -> $x: ($x, invented, television) -> (humans, invented, radio and television) -> humans (4646ms) Who invented television? ?the country -2.8257094650601466 Who invented television? -> $x: ($x, invented, television) -> (?the country, invented, photography , television , computers) -> ?the country (4793ms) Who invented television? John Lack -2.848694055699707 Who invented television? -> $x: ($x, invented, television) -> (John Lack, invented, MTV Music Television) -> John Lack (4793ms) Who invented television? Sarnoff versus Farnsworth -2.8915633900340696 Who invented television? -> $x: ($x, invented, television) -> (Sarnoff versus Farnsworth, invented, television) -> Sarnoff versus Farnsworth (4793ms) Who invented television? a Mormon -2.919857723785225 Who invented television? -> $x: ($x, invented, television) -> (a Mormon, invented, the Television) -> a Mormon (4793ms) Who invented television? ?Shelly Palmer ? -2.932771627052925 Who invented television? -> $x: ($x, invented, television) -> (?Shelly Palmer ?, invented, Enhanced Television) -> ?Shelly Palmer ? (4793ms) Who invented television? one station?KDKA-TV?which -2.958413348898495 Who invented television? -> $x: ($x, invented, television) -> (one station?KDKA-TV?which, literally invented, television news) -> one station?KDKA-TV?which (4793ms) Who invented television? age 14 -3.0128793554308935 Who invented television? -> $x: ($x, invented, television) -> (age 14, invented, television) -> age 14 (4831ms) Who invented television? Famous Scots scientists -3.1196553438801544 Who invented television? -> $x: ($x, invented, television) -> (Famous Scots scientists, also invented, the television) -> Famous Scots scientists (4831ms) Who invented television? Media event -3.124724293101071 Who invented television? -> $x: ($x, invented, television) -> (Media event, was a term invented by, television) -> Media event (4831ms) Who invented television? the who -3.216445142605437 Who invented television? -> $x: ($x, invented, television) -> (the who, invented, the television reciever) -> the who (4831ms) Who invented television? Mr Adler -3.4771900009341277 Who invented television? -> $x: ($x, invented, television) -> (Mr Adler, co-invented, the television remote control) -> Mr Adler (4925ms) Who invented television? nobody -3.541002497239086 Who invented television? -> $x: ($x, invented, television) -> (nobody, had invented, television) -> nobody (4926ms) Who invented television? Marconi -3.583148702059617 Who invented television? -> $x: ($x, invented, television) -> (Marconi, invented, the television) -> Marconi (4953ms) Who invented television? Scottish pioneers -3.608073084727967 Who invented television? -> $x: ($x, invented, television) -> (Scottish pioneers, invented, television) -> Scottish pioneers (4954ms) Who invented television? Mexico -3.7894552301462854 Who invented television? -> $x: ($x, invented, television) -> (Mexico, invented, the early color television transmission system) -> Mexico (4982ms) Who invented television? Mitsubishi -3.9007100509316013 Who invented television? -> $x: ($x, invented, television) -> (Mitsubishi, invented, the first rear-projection television) -> Mitsubishi (5155ms) Who invented television? Farnsworth -3.9671694894662792 Who invented television? -> $x: ($x, invented, television) -> (Farnsworth, invented, television) -> Farnsworth (5155ms) Who invented television? the age -3.9771343107658517 Who invented television? -> $x: ($x, invented, television) -> (the age, invented, television) -> the age (5270ms) Who invented television? the Philo Farnsworth -4.002548531058695 Who invented television? -> $x: ($x, invented, television) -> (the Philo Farnsworth, invented, television) -> the Philo Farnsworth (5270ms) Who invented television? Junior -4.049166584499076 Who invented television? -> $x: ($x, invented, television) -> (Junior, invented, the television) -> Junior (5270ms) Who invented television? Roone -4.190108301554183 Who invented television? -> $x: ($x, invented, television) -> (Roone, invented many of, television) -> Roone (5481ms) Who invented television? August 1888 -4.192687283373185 Who invented television? -> $x: ($x, invented, television) -> (August 1888, invented, the very first working television system) -> August 1888 (5481ms) Who invented television? Douglas L Ross -4.196979204669828 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, patented, television) -> (Douglas L Ross, Patents, Analog/Digital System for Television Services) -> Douglas L Ross (5481ms) Who invented television? United States Patent and Trademark Office -4.196979204669828 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, patented, television) -> (United States Patent and Trademark Office, Patents, Analog/Digital System for Television Services) -> United States Patent and Trademark Office (5482ms) Who invented television? Princeton -4.2264249864470536 Who invented television? -> $x: ($x, invented, television) -> (Princeton, invented, electronic color television) -> Princeton (5481ms) Who invented television? Repeats -4.235832074953407 Who invented television? -> $x: ($x, invented, television) -> (Repeats, Invented, American Television) -> Repeats (5481ms) Who invented television? a date -4.363374621493697 Who invented television? -> $x: ($x, invented, television) -> (a date, was invented, television) -> a date (5551ms) Who invented television? Ralph Bauer -4.447583337117994 Who invented television? -> $x: ($x, invented, television) -> $x: (television, invent by, $x) -> (the television, was invented by, Ralph Bauer) -> Ralph Bauer (5551ms) Who invented television? the same Farnsworth -4.554915390108166 Who invented television? -> $x: ($x, invented, television) -> (the same Farnsworth, invented, television) -> the same Farnsworth (5591ms) Who invented television? the guy -4.560685997492747 Who invented television? -> $x: ($x, invented, television) -> (the guy, invented, television) -> the guy (5591ms) Who invented television? The issue -4.716240185943402 Who invented television? -> $x: ($x, invented, television) -> (The issue, invented, television) -> The issue (5622ms) Who invented television? James Cameron -4.7192280840555085 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (James Cameron, is set to create, a television show) -> James Cameron (5622ms) Who invented television? the first band -4.789762978677329 Who invented television? -> $x: ($x, invented, television) -> (the first band, invented for, television) -> the first band (5622ms) Who invented television? the cave-men -4.864254294555118 Who invented television? -> $x: ($x, invented, television) -> (the cave-men, had invented, television many thousand years) -> the cave-men (5646ms) Who invented television? the history -4.879502620281124 Who invented television? -> $x: ($x, invented, television) -> (the history, was invented before, the small one ? television) -> the history (5646ms) Who invented television? somebody -4.941317046253138 Who invented television? -> $x: ($x, invented, television) -> (somebody, would invent, television) -> somebody (5646ms) Who invented television? Jamie Oliver -4.947643643142559 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (Jamie Oliver, reinvent, his television career) -> Jamie Oliver (5891ms) Who invented television? Elvis Presley -4.9818721520756855 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Elvis Presley, made his first appearance on, national television) -> Elvis Presley (5892ms) Who invented television? Royal Caribbean -5.02987403249044 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (Royal Caribbean, are marketing on, Television) -> Royal Caribbean (5891ms) Who invented television? bounty hunters -5.158590537720553 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (bounty hunters, have been popularized by, television displays) -> bounty hunters (5920ms) Who invented television? Jim Carrey -5.23177578965474 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (Jim Carrey, popularized, reality television) -> Jim Carrey (5977ms) Who invented television? The Monkees -5.269731711095291 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (The Monkees, first made their debut on, network television) -> The Monkees (5977ms) Who invented television? product placement -5.332185802107486 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, conceive, television) -> (product placement, have been conceived for, television) -> product placement (6038ms) Who invented television? news sources -5.3556668993578604 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, skewed, television) -> (news sources, skewed mostly toward, television) -> news sources (6038ms) Who invented television? the building -5.366322645278413 Who invented television? -> $x: ($x, invented, television) -> (the building, was invented, television) -> the building (6038ms) Who invented television? Constantin Perskyi -5.407644352224885 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, have coin, television) -> (Constantin Perskyi, had coined, the word television) -> Constantin Perskyi (6056ms) Who invented television? Dmitry Shapiro -5.435701880993651 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (Dmitry Shapiro, wants to reinvent, television ?) -> Dmitry Shapiro (6056ms) Who invented television? a Briton -5.469984017303805 Who invented television? -> $x: ($x, invented, television) -> $x: (television, invent by, $x) -> (television, was invented by, a Briton) -> a Briton (6074ms) Who invented television? Joe Biden -5.485148302518741 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (Joe Biden, would be the perfect person to go on, television) -> Joe Biden (6073ms) Who invented television? Growing Bolder -5.493049571222675 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (Growing Bolder, is such a perfect fit on, public television) -> Growing Bolder (6074ms) Who invented television? engineers -5.528444808872983 Who invented television? -> $x: ($x, invented, television) -> $x: (television, invent by, $x) -> (Television, was invented by, engineers) -> engineers (6073ms) Who invented television? Bentley Designs -5.529426851662672 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (Bentley Designs, is perfect for, your television) -> Bentley Designs (6091ms) Who invented television? The Simpsons -5.559748592517909 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (The Simpsons, make their first appearance on, television) -> The Simpsons (6091ms) Who invented television? an inventor -5.5846187356301 Who invented television? -> $x: ($x, invented, television) -> $x: (television, invent by, $x) -> (the television, was invented by, an inventor) -> an inventor (6091ms) Who invented television? Fox -5.6464424935405875 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (Fox, reinvented, television / Daniel M. Kimmel) -> Fox (6108ms) Who invented television? Proactiv Solution -5.665528781182317 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (Proactiv Solution, is marketed on, television and online) -> Proactiv Solution (6108ms) Who invented television? Waverly Hills -5.6717827068195446 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (Waverly Hills, has been popularized on, paranormal television) -> Waverly Hills (6108ms) Who invented television? a Scotsman -5.6765752807946335 Who invented television? -> $x: ($x, invented, television) -> $x: (television, invent by, $x) -> (The television, was invented by, a Scotsman) -> a Scotsman (6108ms) Who invented television? Steve Jobs -5.695652960467925 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (Steve Jobs, was keen to reinvent, the television) -> Steve Jobs (6108ms) Who invented television? Holy Week -5.723294907442352 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (Holy Week, has been so popularized by, the film and television) -> Holy Week (6126ms) Who invented television? the Scot John Logie Baird -5.739268987330442 Who invented television? -> $x: ($x, invented, television) -> $x: (television, invent by, $x) -> (Television, was invented by, the Scot John Logie Baird) -> the Scot John Logie Baird (6127ms) Who invented television? Eye -5.745597851695161 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, experiment, television) -> (Eye, presented this experiment on, television) -> Eye (6126ms) Who invented television? HBO -5.792703950223625 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (HBO, has reinvented, countless television genres) -> HBO (6142ms) Who invented television? LG -5.802986661477922 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (LG, was then marketing, its active-technology televisions) -> LG (6143ms) Who invented television? The Sloth -5.84892692853937 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, conceive, television) -> (The Sloth, was originally conceived as, a television sketch) -> The Sloth (6143ms) Who invented television? the Amish -5.86174029207634 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, can live without, television) -> (the Amish, Can Live Without, Television) -> the Amish (6143ms) Who invented television? the country -5.867895257325099 Who invented television? -> $x: ($x, invented, television) -> (the country, invented, television) -> the country (6160ms) Who invented television? RCA -5.9226810376582595 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, devise, television) -> (RCA, devised, a superior television camera) -> RCA (6160ms) Who invented television? J.J. Abrams -5.952808312338863 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (J.J. Abrams, have helped reinvent, the television drama) -> J.J. Abrams (6160ms) Who invented television? early editions -5.957786711316965 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, devise, television) -> (early editions, has devised, many television formats) -> early editions (6160ms) Who invented television? poultry farmers -5.9906390992409015 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, outraged, television) -> (poultry farmers, are outraged over, his new television show) -> poultry farmers (6177ms) Who invented television? numerous movies -6.004157182989939 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be relatively new to, television) -> (numerous movies, is relatively new to, series television) -> numerous movies (6177ms) Who invented television? dryer sheets -6.008578220400012 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (dryer sheets, are perfect for cleaning, your television screen) -> dryer sheets (6177ms) Who invented television? JVC -6.017656965662088 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (JVC, has also been dedicated to creating, televisions) -> JVC (6177ms) Who invented television? adjustable beds -6.035596115957068 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (adjustable beds, are perfect for watching, television) -> adjustable beds (6193ms) Who invented television? more than -6.041293538858945 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (more than, is being popularized by, television) -> more than (6193ms) Who invented television? DVRs -6.042871268324525 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (DVRs, are the perfect tools for, the television obsessive) -> DVRs (6193ms) Who invented television? BBC Music -6.0730592439568465 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (BBC Music, is a market leader in, music television distribution) -> BBC Music (6193ms) Who invented television? flipping houses -6.079805963034846 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (flipping houses, is popularized on, television) -> flipping houses (6193ms) Who invented television? TiVo -6.091627369189054 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, do this with, television) -> (TiVo, does this with, television shows) -> TiVo (6211ms) Who invented television? EDTV -6.092119356499444 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (EDTV, is the perfect entry point into, digital television) -> EDTV (6211ms) Who invented television? club stores -6.110196353253941 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (club stores, are being marketed on, television) -> club stores (6211ms) Who invented television? LCDs -6.122182063052792 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (LCDs, can also be used to create, flat-panel televisions) -> LCDs (6229ms) Who invented television? Adam Walsh -6.123293853001423 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, do create, television) -> (Adam Walsh, did n?t just create, the television hit ?America?s) -> Adam Walsh (6229ms) Who invented television? ?JONAS -6.12660304776057 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (?JONAS, is the perfect complement to, the hit television show) -> ?JONAS (6229ms) Who invented television? Paul Nipkow -6.139084202653662 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, patented, television) -> (Paul Nipkow, patented, the first mechanical television scanner) -> Paul Nipkow (6229ms) Who invented television? The Stroll -6.141596421867574 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (The Stroll, was perfect for, television) -> The Stroll (6246ms) Who invented television? NASCAR -6.1446792383846836 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (NASCAR, is nearly perfect for, television) -> NASCAR (6246ms) Who invented television? Iraq -6.1474490492874665 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (Iraq, was to create, a 24-hour television feed) -> Iraq (6246ms) Who invented television? MTV -6.157942192508017 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, know to use, television) -> (MTV, used to be known as, Music Television) -> MTV (6246ms) Who invented television? Bell Laboratories -6.1922612882259696 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (Bell Laboratories, perfected, color television) -> Bell Laboratories (6246ms) Who invented television? the Enterprise -6.2101599075056955 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (the Enterprise, was used to create, a television show) -> the Enterprise (6262ms) Who invented television? End -6.214203777912949 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (End, was first made available to, American television) -> End (6262ms) Who invented television? can Apple -6.249064636176895 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (can Apple, reinvent, the television) -> can Apple (6262ms) Who invented television? any part -6.326093453874757 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be actually use, television) -> (any part, is actually used by, NBC Owned Television Stations) -> any part (6262ms) Who invented television? the Doctor -6.36224191847922 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (the Doctor, will be marketed as, *event television*) -> the Doctor (6262ms) Who invented television? Levi -6.3826456360099675 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, experiment, television) -> (Levi, experimented with, television?s visuals) -> Levi (6281ms) Who invented television? a compelling new platform -6.393119904805497 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (a compelling new platform, reinvent, the television experience) -> a compelling new platform (6281ms) Who invented television? John Paul -6.411281642573403 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (John Paul, was the perfect pope for, the television age) -> John Paul (6281ms) Who invented television? the first in the world -6.41308321101499 Who invented television? -> $x: ($x, invented, television) -> (the first in the world, to invent, a television device) -> the first in the world (6281ms) Who invented television? 10 years -6.432643210809441 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, actually produce, television) -> (10 years, is actually produced in, TELEVISION PROGRAMS solutions) -> 10 years (6281ms) Who invented television? the X-wing Squadron format -6.436445618184473 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (the X-wing Squadron format, would be perfect for, television) -> the X-wing Squadron format (6446ms) Who invented television? MyPrimeTime .com -6.463463513741528 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (MyPrimeTime .com, was to create, television programming) -> MyPrimeTime .com (6446ms) Who invented television? RCA televisions -6.464675383808373 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (RCA televisions, are perfect for, the bedroom RCA televisions) -> RCA televisions (6447ms) Who invented television? a woman?s right -6.477118719657865 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, to censor, television) -> (a woman?s right, try to censor, cable television) -> a woman?s right (6447ms) Who invented television? a weekly magazine program -6.479771278861155 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, conceive, television) -> (a weekly magazine program, conceived as, a public television) -> a weekly magazine program (6446ms) Who invented television? the 100 -6.481209527170035 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (the 100, are marketed heavily in, print and television ads) -> the 100 (6446ms) Who invented television? Mulder and Scully -6.481639439883029 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Mulder and Scully, first made, their television debut way) -> Mulder and Scully (6552ms) Who invented television? Fairge Anma -6.484395233366378 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, conceive, television) -> (Fairge Anma, is conceived as, a television series) -> Fairge Anma (6552ms) Who invented television? any other group -6.510200809050509 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, to censor, television) -> (any other group, be able to censor, television or radio programs) -> any other group (6552ms) Who invented television? cycling -6.520828084816686 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (cycling, is to create, a television product) -> cycling (6552ms) Who invented television? a platform -6.521234650573556 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (a platform, is the perfect hybrid of, cinema , television) -> a platform (6552ms) Who invented television? Harvey Radio Labs -6.522212805839035 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, experiment, television) -> (Harvey Radio Labs, was also experimenting with, television) -> Harvey Radio Labs (6552ms) Who invented television? the NTSC -6.523588979550521 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, devise, television) -> (the NTSC, devised, the NTSC television broadcast system) -> the NTSC (6568ms) Who invented television? THE DARK -6.534199321768269 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (THE DARK, is a perfect example of, 1970s television) -> THE DARK (6568ms) Who invented television? HD projection TV -6.541600549345084 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (HD projection TV, is the perfect way to watch, television) -> HD projection TV (6568ms) Who invented television? The HPT -6.544946786153316 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, actually buy, television) -> (The HPT, had to actually buy, television time) -> The HPT (6568ms) Who invented television? ?Our intention -6.546021586755156 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (?Our intention, is to create, another classic television show) -> ?Our intention (6568ms) Who invented television? Me-TV -6.556696497100161 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (Me-TV, is a perfect antidote for, commercial television) -> Me-TV (6568ms) Who invented television? Deputy Dawg -6.562704382037132 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first introduce, television) -> (Deputy Dawg, was first introduced on, television) -> Deputy Dawg (6583ms) Who invented television? NFT?s -6.590331169350321 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, patented, television) -> (NFT?s, patented, NiFTy Online Television player) -> NFT?s (6583ms) Who invented television? an iPhone -6.60493512979501 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (an iPhone, make its first appearance on, a television show) -> an iPhone (6583ms) Who invented television? TrueCar -6.611452223673023 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be relatively new to, television) -> (TrueCar, was relatively new to, television) -> TrueCar (6583ms) Who invented television? the Art -6.6247151777963555 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, have coin, television) -> (the Art, had coined, the word television) -> the Art (6598ms) Who invented television? You?d -6.633621715339167 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (You?d, be a perfect guest on, a radio or television show) -> You?d (6598ms) Who invented television? regurgitated air?conditioner units -6.634505901740264 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, skewed, television) -> (regurgitated air?conditioner units, skewed, television aerials) -> regurgitated air?conditioner units (6598ms) Who invented television? Blog television -6.6406953119525305 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (Blog television, is reinventing, television standards) -> Blog television (6598ms) Who invented television? Mr. Grand -6.649080461447826 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, by play, television) -> (Mr. Grand, is the former play by, play television announcer) -> Mr. Grand (6668ms) Who invented television? a stand -6.650029215976179 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (a stand, be a perfect fit for, your television) -> a stand (6668ms) Who invented television? so many people -6.651305654170279 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, talk over, television) -> (so many people, talked over, a television broadcast viewable) -> so many people (6668ms) Who invented television? small cliffhangers and climaxes -6.667096003822518 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (small cliffhangers and climaxes, are perfect for, television) -> small cliffhangers and climaxes (6668ms) Who invented television? Grace and Henry -6.671642204906975 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (Grace and Henry, are the most perfect couple on, television) -> Grace and Henry (6668ms) Who invented television? PA -6.673410630411462 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, patented, television) -> (PA, patented, the iconoscope television system) -> PA (6668ms) Who invented television? comics -6.681687549780805 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, to censor, television) -> (comics, tried to censor, television) -> comics (6749ms) Who invented television? BILL LIBLICK -6.686216764614537 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (BILL LIBLICK, is a perfect fit for, daytime television) -> BILL LIBLICK (6749ms) Who invented television? Don?t -6.699052352257033 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, by play, television) -> (Don?t, be played by, the television media) -> Don?t (6749ms) Who invented television? Dark Films -6.700199309595794 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Dark Films, is making its first foray into, television) -> Dark Films (6749ms) Who invented television? The Asus LCD panel -6.712315306380367 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (The Asus LCD panel, would be perfect for, television) -> The Asus LCD panel (6749ms) Who invented television? left-wing opinion -6.713199492781463 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, outraged, television) -> (left-wing opinion, was outraged by, television images) -> left-wing opinion (6787ms) Who invented television? The Word -6.714066175733571 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (The Word, makes its first appearance on, television) -> The Word (6787ms) Who invented television? V.K. Zworykin -6.716218875620758 Who invented television? -> $x: ($x, invented, television) -> $x: (television, be patent by, $x) -> (An electronic television system, was patented by, V.K. Zworykin) -> V.K. Zworykin (6787ms) Who invented television? front ? -6.726462499607091 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, coin, television) -> (front ?, was coined in, a BBC television comedy) -> front ? (6787ms) Who invented television? 1931 -6.7266378079945985 Who invented television? -> $x: ($x, invented, television) -> $x: (television, invent by, $x) -> (the television, was already invented by, 1931) -> 1931 (6787ms) Who invented television? A Married Couple -6.7308834843148695 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, actually create, television) -> (A Married Couple, were actually created for, television) -> A Married Couple (6787ms) Who invented television? Jordi Hidalgo S?nchez -6.734420282621551 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, have position, television) -> (Jordi Hidalgo S?nchez, has a position in, television) -> Jordi Hidalgo S?nchez (6845ms) Who invented television? crystal encrusted jewellery -6.738103698462973 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (crystal encrusted jewellery, is perfect on, television) -> crystal encrusted jewellery (6845ms) Who invented television? lunch -6.743520740142567 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (lunch, made more perfect by, flat screen television) -> lunch (6845ms) Who invented television? such a material -6.746799050343787 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (such a material, could be used to create, paper thin televisions) -> such a material (6845ms) Who invented television? KISS -6.759177818066025 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (KISS, made their first mark on, television) -> KISS (6845ms) Who invented television? radio -6.761329895350357 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, by play, television) -> (radio, plays followed by, television work) -> radio (6845ms) Who invented television? rebuses -6.769287678364816 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (rebuses, were popularized by, the television show Concentration) -> rebuses (7048ms) Who invented television? blogs -6.778129647780371 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (blogs, are a perfect extension of, the television mindset) -> blogs (7048ms) Who invented television? the Ica stones -6.783051114407106 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (the Ica stones, was marketed for, cable television) -> the Ica stones (7048ms) Who invented television? Digital media -6.789987741478429 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first introduce, television) -> (Digital media, was first introduced with, the Television) -> Digital media (7048ms) Who invented television? View -6.790241910017667 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (View, is the market leader in, coinmeter television retailing) -> View (7048ms) Who invented television? Cablecom and Swisscom -6.791008897421566 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (Cablecom and Swisscom, are the market leaders for, television) -> Cablecom and Swisscom (7048ms) Who invented television? SmartPay -6.794545695728248 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (SmartPay, is the perfect rental solution for, HD Televisions) -> SmartPay (7165ms) Who invented television? Le Gai Savoir -6.795365314002089 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, actually produce, television) -> (Le Gai Savoir, was actually produced for, television) -> Le Gai Savoir (7166ms) Who invented television? acting and -6.798966680436025 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (acting and, made her first appearance on, British television) -> acting and (7165ms) Who invented television? so many more possibilities -6.801619292341609 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, explore on, television) -> (so many more possibilities, were ever explored on, television) -> so many more possibilities (7165ms) Who invented television? Louis-Dreyfus -6.803387665143803 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Louis-Dreyfus, first made her mark on, television) -> Louis-Dreyfus (7166ms) Who invented television? AC/DC -6.805156090648291 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (AC/DC, made their first appearance on, North American television) -> AC/DC (7325ms) Who invented television? Frye -6.8052732896454895 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, experiment, television) -> (Frye, has experimented with, television commercials) -> Frye (7326ms) Who invented television? HDMI cord HDMI cord -6.806040277049387 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (HDMI cord HDMI cord, is perfect for, your LED television) -> HDMI cord HDMI cord (7325ms) Who invented television? fans -6.82499215946603 Who invented television? -> $x: ($x, invented, television) -> $x: (television, be an invention of, $x) -> (Music Television, was an invention of, fans) -> fans (7325ms) Who invented television? color -6.847981269406015 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first introduce, television) -> (color, was first introduced to, television) -> color (7326ms) Who invented television? toys -6.8788636469355 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (toys, are marketed on, television) -> toys (7353ms) Who invented television? consumers -6.893075355587185 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (consumers, is being marketed on, television) -> consumers (7354ms) Who invented television? Coral Calcium -6.905056131466265 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (Coral Calcium, was popularized by, a television infomercial) -> Coral Calcium (7354ms) Who invented television? Miss Banon -6.929679250720421 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Miss Banon, first made her allegations public on, television) -> Miss Banon (7354ms) Who invented television? Bill Oxnard -6.965031236390805 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (Bill Oxnard, had perfected, true three-dimensional television) -> Bill Oxnard (7379ms) Who invented television? Debt Cures -6.997746554849739 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (Debt Cures, has been marketed on, television) -> Debt Cures (7379ms) Who invented television? the 16 :9 aspect ratio -7.024088059721246 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (the 16 :9 aspect ratio, 's perfect on, a widescreen television) -> the 16 :9 aspect ratio (7379ms) Who invented television? 60 inches -7.052321745222978 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (60 inches, is the perfect size for, a living room television set) -> 60 inches (7379ms) Who invented television? Love -7.054224817801712 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, actually play, television) -> (Love, Actually plays on, the television) -> Love (7560ms) Who invented television? Media consultants -7.069375353555982 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, devise, television) -> (Media consultants, must then devise, television and radio) -> Media consultants (7560ms) Who invented television? Wildlife biology -7.082573739552059 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (Wildlife biology, has been popularized by, television specials) -> Wildlife biology (7561ms) Who invented television? mission -7.11895427854885 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (mission, is to create, an enhanced television experience) -> mission (7560ms) Who invented television? Apple -7.133811662851278 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (Apple, could reinvent, television) -> Apple (7560ms) Who invented television? 1965-66 -7.139098335655315 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, conceive, television) -> (1965-66, was conceived for, television) -> 1965-66 (7598ms) Who invented television? The 1,000 lumens lighting -7.1762346388220255 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (The 1,000 lumens lighting, is perfect for, television coverage) -> The 1,000 lumens lighting (7598ms) Who invented television? the BBC -7.192554101438306 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, devise, television) -> (the BBC, has devised, a television channel) -> the BBC (7598ms) Who invented television? Initially Oxygen8 -7.200599975175791 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (Initially Oxygen8, was marketed on, television) -> Initially Oxygen8 (7598ms) Who invented television? Colleges -7.202330087578124 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, conceive, television) -> (Colleges, conceive to, television show) -> Colleges (7598ms) Who invented television? poop -7.24408301479487 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (poop, is a perfect example of, a television show) -> poop (7598ms) Who invented television? Joost -7.260195193274534 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (Joost, is reinventing, the television experience) -> Joost (7623ms) Who invented television? music -7.287344107344296 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, by play, television) -> (music, is played indirectly by, the radio or television) -> music (7623ms) Who invented television? life -7.320123993930484 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, by play, television) -> (life, is been played by, the biggest music television channel) -> life (7623ms) Who invented television? advice -7.330669820723273 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, outraged, television) -> (advice, has drawn outraged reaction from, television viewers) -> advice (7648ms) Who invented television? Japan -7.344194008126902 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, experiment, television) -> (Japan, first experimented with, a 1025 line television standard) -> Japan (7648ms) Who invented television? Montana -7.361058328684172 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, have position, television) -> (Montana, had found a position as, a television reporter) -> Montana (7648ms) Who invented television? Alias -7.364595126990854 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (Alias, are as perfect as, television) -> Alias (7648ms) Who invented television? the PSA -7.380888229177444 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, by play, television) -> (the PSA, was highly played by, television stations) -> the PSA (7648ms) Who invented television? shelve -7.411196352693921 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (shelve, is perfect for viewing, your television) -> shelve (7648ms) Who invented television? the room -7.415520292925812 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, come along with, television) -> (the room, comes along with, a 24 inch television) -> the room (7675ms) Who invented television? sure -7.4226263658878056 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (sure, is a great marketing ploy for, campaign television ads) -> sure (7675ms) Who invented television? Visual images -7.4239386327930745 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (Visual images, are used to create, television series) -> Visual images (7675ms) Who invented television? Al Gore -7.425449386317537 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (Al Gore, reinventing himself on, television) -> Al Gore (7675ms) Who invented television? Marty -7.42603214568178 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Marty, makes his first appearance on, Fuji Television`) -> Marty (7675ms) Who invented television? sexuality -7.427996105123936 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be glorified in, television) -> (sexuality, is glorified in, television shows) -> sexuality (7701ms) Who invented television? legs -7.428880344227327 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (legs, is the perfect height for, a television) -> legs (7701ms) Who invented television? Germany -7.445057090834246 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, experiment, television) -> (Germany, experimented with, television broadcasting) -> Germany (7701ms) Who invented television? bachelorette -7.448332655860631 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (bachelorette, was popularized by, 1970s television producers) -> bachelorette (7701ms) Who invented television? Eminem -7.449478075542024 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, to censor, television) -> (Eminem, has also taken this censor-free concept to, television) -> Eminem (7701ms) Who invented television? Ecclestone -7.462840817885038 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, experiment, television) -> (Ecclestone, experimented with, a digital television package) -> Ecclestone (7726ms) Who invented television? part -7.483700586225149 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, by play, television) -> (part, was played by, public television stations) -> part (7726ms) Who invented television? Batman -7.4857301923076385 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Batman, first made, his television debut) -> Batman (7726ms) Who invented television? artworks -7.504037136961845 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, conceive, television) -> (artworks, were expressly conceived for, the television screen) -> artworks (7726ms) Who invented television? Costco -7.515537769235282 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (Costco, was marketed on, daytime television programming) -> Costco (7726ms) Who invented television? Provo -7.529055905686615 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, conceive, television) -> (Provo, conceived the idea for, his television set) -> Provo (7727ms) Who invented television? Nancy -7.531643896762649 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Nancy, made her first appearance on, television) -> Nancy (7751ms) Who invented television? Soccer -7.544087232612141 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (Soccer, is the perfect antidote to, television and video games) -> Soccer (7751ms) Who invented television? Hamas -7.573265805466688 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Hamas, made his first appearance on, Gaza television) -> Hamas (7751ms) Who invented television? the models -7.629535282480779 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (the models, are asked to create, their own television commercial) -> the models (7752ms) Who invented television? the kid -7.684735548546799 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, can live without, television) -> (the kid, can?t live without, their television) -> the kid (7752ms) Who invented television? the records -7.706679861837048 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (the records, were marketed through, television commercials) -> the records (7775ms) Who invented television? 1968 -7.773872414901473 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, seek to use, television) -> (1968, sought to use, television) -> 1968 (7775ms) Who invented television? The place -7.791231486028765 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (The place, looks perfect for, your television) -> The place (7775ms) Who invented television? the leader -7.836463016311418 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (the leader, made his first appearance on, Gaza television) -> the leader (7800ms) Who invented television? Patridge -7.838506224317516 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Patridge, would make her first appearance on, television) -> Patridge (7800ms) Who invented television? 7500 -7.872445789461405 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (7500, is perfect for watching, television) -> 7500 (7800ms) Who invented television? Devlin -7.933707104215408 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Devlin, made his first foray into, television) -> Devlin (7800ms) Who invented television? Benny -7.954328309102869 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Benny, made his first appearance on, television) -> Benny (7800ms) Who invented television? 2001 -7.969215571126718 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (2001, was perfect fodder for, the tabloids and television) -> 2001 (7824ms) Who invented television? The BBC -7.998792277427363 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, experiment, television) -> (The BBC, experiments with, television broadcasting) -> The BBC (7824ms) Who invented television? Abrams -8.017933814513842 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Abrams, made his first attempt at, television production) -> Abrams (7824ms) Who invented television? Cyrus -8.017933814513842 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Cyrus, made his first foray into, television) -> Cyrus (7824ms) Who invented television? Whoever -8.018882569042194 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, coin, television) -> (Whoever, coined, the phase describing television) -> Whoever (7824ms) Who invented television? Verity -8.032145523165529 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, actually produce, television) -> (Verity, actually produced one of, the greatest television shows) -> Verity (7824ms) Who invented television? Morgan -8.04318328456641 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first introduce, television) -> (Morgan, was first introduced to, television audiences) -> Morgan (7847ms) Who invented television? Flingo -8.05841630178649 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, reinvent, television) -> (Flingo, is virtually reinventing, television) -> Flingo (7847ms) Who invented television? the producers -8.090208853841105 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, actually produce, television) -> (the producers, can actually produce, a television commercial) -> the producers (7847ms) Who invented television? Samsung -8.098068147393782 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (Samsung, is even marketing, 3D televisions) -> Samsung (7847ms) Who invented television? Jerry -8.107302368602342 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (Jerry, then perfected, the television sit-com format) -> Jerry (7847ms) Who invented television? Corus -8.120073335415288 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (Corus, is a market leader in, specialty television and radio) -> Corus (7871ms) Who invented television? Sotir -8.124102121032356 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, have position, television) -> (Sotir, has held positions in, television stations) -> Sotir (7871ms) Who invented television? Hepburn -8.132944090447912 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Hepburn, made the first of, her several television movies) -> Hepburn (7871ms) Who invented television? Kilmer -8.151512215680121 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Kilmer, made his first foray into, television) -> Kilmer (7871ms) Who invented television? the role -8.155610090021845 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, by play, television) -> (the role, played by, television) -> the role (7871ms) Who invented television? the life -8.161372081050978 Who invented television? -> $x: ($x, invented, television) -> $x: (television, be a creation of, $x) -> (Carl Sagan?s television series, is a re-creation of, the life) -> the life (7893ms) Who invented television? Renae -8.162122610600164 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first introduce, television) -> (Renae, was first introduced to, television broadcasting) -> Renae (7893ms) Who invented television? Humphrey -8.16703558261833 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Humphrey, made his first appearance on, Australian Television) -> Humphrey (7893ms) Who invented television? Tyler -8.184227534139053 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Tyler, made her first appearance on, U.S. television) -> Tyler (7894ms) Who invented television? Idibia -8.188648518846831 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (Idibia, made his first appearance on, National Television) -> Idibia (7894ms) Who invented television? the growing role -8.256792601250261 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, by play, television) -> (the growing role, played by, television) -> the growing role (7917ms) Who invented television? the film -8.263119402861715 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be marketing, television) -> (the film, is marketed on, television) -> the film (7917ms) Who invented television? the morning -8.304184756128109 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, outraged, television) -> (the morning, outraged at, the Sunday morning television shows) -> the morning (7917ms) Who invented television? The model -8.400424894601233 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (The model, is to create, television) -> The model (7917ms) Who invented television? the central role -8.418108833432344 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, by play, television) -> (the central role, played by, conventional television) -> the central role (7917ms) Who invented television? The plan -8.419877206234537 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (The plan, is to create, a television network and multimedia) -> The plan (7940ms) Who invented television? the dominant role -8.428719175650091 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, by play, television) -> (the dominant role, played by, television) -> the dominant role (7940ms) Who invented television? The challenge -8.435728204136197 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (The challenge, was to create, a new television spot) -> The challenge (7940ms) Who invented television? the way viewers -8.444276079649592 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, be actually use, television) -> (the way viewers, are actually using, television) -> the way viewers (7940ms) Who invented television? the characters Jay Ward -8.506628368509874 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (the characters Jay Ward, popularized on, television) -> the characters Jay Ward (7940ms) Who invented television? the first TV cameras -8.545433308961393 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, experiment, television) -> (the first TV cameras, began experimenting with, television) -> the first TV cameras (7940ms) Who invented television? The visionary Powel -8.55034628097956 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, experiment, television) -> (The visionary Powel, was also experimenting with, television) -> The visionary Powel (7940ms) Who invented television? The camera -8.566654046099186 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, first make, television) -> (The camera, first made, its television debut) -> The camera (7964ms) Who invented television? The project -8.57549601551474 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (The project, was created to be, a fun and educational television) -> The project (7964ms) Who invented television? The aim -8.581685425727008 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, to be create, television) -> (The aim, is to create a new model of, local television) -> The aim (7964ms) Who invented television? The term -8.59013514334956 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, coin, television) -> (The term, was coined by, a local television station) -> The term (7964ms) Who invented television? The movement -8.60693494848187 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (The movement, has been popularized on, public television) -> The movement (7964ms) Who invented television? The size -8.613451989657587 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (The size, is just perfect for, relaxed television viewing) -> The size (7964ms) Who invented television? The latter song -8.623242713601496 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, popularize, television) -> (The latter song, was popularized in, the 1970s television show) -> The latter song (7964ms) Who invented television? the southern shaft -8.628483316583115 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, explore on, television) -> (the southern shaft, was explored on, live television) -> the southern shaft (7964ms) Who invented television? The film -8.650652860951556 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, conceive, television) -> (The film, was initially conceived for, Yugoslavian television) -> The film (8040ms) Who invented television? The picture -8.653305420154844 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, perfect, television) -> (The picture, is perfect on, both televisions) -> The picture (8039ms) Who invented television? Whedon -9.430233569715792 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, conceive of, television) -> (Whedon, conceived of, the television series) -> Whedon (8039ms) Who invented television? the hit Somebody -9.857644072763105 Who invented television? -> $x: ($x, invented, television) -> $x: ($x, know to use, television) -> (the hit Somebody, Used to Know on, television) -> the hit Somebody (8168ms) Who invented television? psychic cars -10.705537709854115 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (I?ve seen cable television they?ve, invented, psychic cars) -> psychic cars (8168ms) Who invented television? the United States versus Russia -11.324406833855038 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (the television, was invented in, the United States versus Russia) -> the United States versus Russia (8288ms) Who invented television? a century -11.427624316926899 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (televisions, were invented over, a century) -> a century (8289ms) Who invented television? jet airplane travel -11.44560646729908 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (television and computers, just invent fast, jet airplane travel) -> jet airplane travel (8289ms) Who invented television? a means -11.466528992895803 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (Television, was invented as, a means) -> a means (8289ms) Who invented television? magicians -11.751562279626999 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (television, was invented so, magicians) -> magicians (8319ms) Who invented television? the 1920s -11.830533997158469 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (televisions, were invented in, the 1920s) -> the 1920s (8319ms) Who invented television? the 1930s -11.894688195882235 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (Television, was invented in, the 1930s) -> the 1930s (8319ms) Who invented television? the 1950s -11.91276438650635 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (The television, was invented in, the 1950s) -> the 1950s (8319ms) Who invented television? the 1890s -11.915734960302219 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (television, was actually invented in, the 1890s) -> the 1890s (8319ms) Who invented television? the United States -11.943479904924665 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (Breakfast television, was invented in, the United States) -> the United States (8319ms) Who invented television? the 1950?s -11.953755449870027 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (The color television, was invented in, the 1950?s) -> the 1950?s (8349ms) Who invented television? history -12.00838962806067 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (A television interviewer, is inventing, history) -> history (8349ms) Who invented television? the 1960s -12.022246314825098 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (The plasma flat screen television, was invented in, the 1960s) -> the 1960s (8349ms) Who invented television? hundreds -12.08706549902379 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (Think television, was invented, hundreds) -> hundreds (8349ms) Who invented television? France -12.178399091067522 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (Television, was invented in, France) -> France (8349ms) Who invented television? Scotland -12.241538762078926 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (' Telephone and television, were invented in, Scotland) -> Scotland (8349ms) Who invented television? a means of providing entertainment -12.264573034731827 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (Television, was invented as, a means of providing entertainment) -> a means of providing entertainment (8349ms) Who invented television? yet -12.496702924524152 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (television, been invented, yet) -> yet (8384ms) Who invented television? 1926 -12.578313074217366 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (Television, was invented in, 1926) -> 1926 (8384ms) Who invented television? 1939 -12.581586756985557 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (television, was invented in, 1939) -> 1939 (8413ms) Who invented television? 1924 -12.656643814202688 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (Television, was invented around, 1924) -> 1924 (8413ms) Who invented television? 1855 -12.686183980354063 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (television, has n?t been invented yet in, 1855) -> 1855 (8413ms) Who invented television? 1929 -12.706629505212138 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (television, was invented prior to, 1929) -> 1929 (8414ms) Who invented television? around 1935 -12.727914810477188 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (television, was invented in, around 1935) -> around 1935 (8554ms) Who invented television? centuries ago -12.750384973414139 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (the television, was invented, centuries ago) -> centuries ago (8554ms) Who invented television? 1967 -12.75526038969999 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (standard television, was invented on, 1967) -> 1967 (8554ms) Who invented television? the 1930 -12.762716516330894 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (The television, had been invented in, the 1930) -> the 1930 (8554ms) Who invented television? America -12.76895975357823 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (television, was invented in, America) -> America (8554ms) Who invented television? the radio -13.030322765734464 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (The television, had n?t been invented so, the radio) -> the radio (8584ms) Who invented television? the base -13.130336451663961 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (The first television, was invented at, the base) -> the base (8584ms) Who invented television? first -13.163072273641315 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (the television, was invented, first) -> first (8584ms) Who invented television? initially -13.178670486855355 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (Television, was invented, initially) -> initially (8612ms) Who invented television? the act -13.373746059561615 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (the united states television, was invented in, the act) -> the act (8612ms) Who invented television? the early decades -13.43080648085363 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (the first television set, was invented in, the early decades) -> the early decades (8612ms) Who invented television? the war -13.454600327900305 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (Television, had been invented just before, the war) -> the war (8612ms) Who invented television? the late 1950s -13.523893292083581 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (not only color television, was invented in, the late 1950s) -> the late 1950s (8612ms) Who invented television? the early 19th century -13.775279618783998 Who invented television? -> who invent [ television ] ? -> who be television invent ? -> $x: (television, invent, $x) -> (TELEVISION Television, was invented in, the early 19th century) -> the early 19th century (8641ms) Who invented television? Manly Mitsubishi -13.94462291732042 Who invented television? -> who [ invent television ] ? -> what organization invent television ? -> $x: ($x, instance of, organization) ($x, invent, television) -> (Manly Mitsubishi, Instance Of, organization) (Mitsubishi, invented, the first rear-projection television) -> Manly Mitsubishi (13713ms) Who invented television? junior's -14.68424126168278 Who invented television? -> who [ invent television ] ? -> what organization invent television ? -> $x: ($x, instance of, organization) ($x, invent, television) -> (junior's, Instance Of, organization) (Junior, invented, the television) -> junior's (13713ms) Who invented television? Mitsubishi Corp -14.820898318788146 Who invented television? -> who [ invent television ] ? -> what organization invent television ? -> $x: ($x, instance of, organization) ($x, invent, television) -> (Mitsubishi Corp, Instance Of, organization) (Mitsubishi, invented, the first rear-projection television) -> Mitsubishi Corp (13713ms) Who invented television? Be Someone -14.832776802822465 Who invented television? -> who [ invent television ] ? -> what organization invent television ? -> $x: ($x, instance of, organization) ($x, invent, television) -> (Be Someone, Instance Of, organization) (someone, had just invented, colour television) -> Be Someone (13713ms) What are enzymes? project-independent tool -5.3648011674571325 What are enzymes? -> $x: (enzymes, instance of, $x) -> (Enzyme, Instance Of, project-independent tool) -> project-independent tool (4167ms) What are enzymes? agent-reactive catalyst -5.3648011674571325 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, agent-reactive catalyst) -> agent-reactive catalyst (4167ms) What are enzymes? physiologically-active substance -5.3648011674571325 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, physiologically-active substance) -> physiologically-active substance (4167ms) What are enzymes? biological catalyst -5.6302419753692465 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, biological catalyst) -> biological catalyst (4168ms) What are enzymes? biological product -5.655698910429229 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, biological product) -> biological product (4167ms) What are enzymes? target molecule -5.720014078603011 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, target molecule) -> target molecule (4167ms) What are enzymes? high quality supplement -5.737340765561768 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, high quality supplement) -> high quality supplement (4324ms) What are enzymes? non-radioactive label -5.743034220056205 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, non-radioactive label) -> non-radioactive label (4322ms) What are enzymes? complex organic molecule -5.751673923770983 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, complex organic molecule) -> complex organic molecule (4322ms) What are enzymes? group of protein -5.784801611745147 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, group of protein) -> group of protein (4322ms) What are enzymes? proteinaceous biological catalyst -5.788734038672018 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, proteinaceous biological catalyst) -> proteinaceous biological catalyst (4322ms) What are enzymes? moredifferent surface molecule -5.788734038672018 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, moredifferent surface molecule) -> moredifferent surface molecule (4359ms) What are enzymes? active biological agent -5.788734038672018 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, active biological agent) -> active biological agent (4359ms) What are enzymes? physiologically active protein -5.788734038672018 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, physiologically active protein) -> physiologically active protein (4359ms) What are enzymes? aerobic process additive -5.788734038672018 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, aerobic process additive) -> aerobic process additive (4323ms) What are enzymes? heat-sensitive bioactive agent -5.797854797519154 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, heat-sensitive bioactive agent) -> heat-sensitive bioactive agent (4395ms) What are enzymes? regulator of aggressive Breast Cancer DevelopmentScienceDaily researcher -5.797854797519154 What are enzymes? -> $x: (enzymes, instance of, $x) -> (Enzyme, Instance Of, regulator of aggressive Breast Cancer DevelopmentScienceDaily researcher) -> regulator of aggressive Breast Cancer DevelopmentScienceDaily researcher (4359ms) What are enzymes? kind of macromolecule activated protein -5.797854797519154 What are enzymes? -> $x: (enzymes, instance of, $x) -> (Enzyme, Instance Of, kind of macromolecule activated protein) -> kind of macromolecule activated protein (4395ms) What are enzymes? body's protective compound -5.797854797519154 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, body's protective compound) -> body's protective compound (4359ms) What are enzymes? type of a protein molecule -5.797854797519154 What are enzymes? -> $x: (enzymes, instance of, $x) -> (Enzyme, Instance Of, type of a protein molecule) -> type of a protein molecule (4359ms) What are enzymes? soluble, colloidal, organic catalyst -5.797854797519154 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, soluble, colloidal, organic catalyst) -> soluble, colloidal, organic catalyst (4395ms) What are enzymes? powerful and specific catalyst -5.797854797519154 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, powerful and specific catalyst) -> powerful and specific catalyst (4395ms) What are enzymes? certified organic ingredient -5.807535255708735 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, certified organic ingredient) -> certified organic ingredient (4395ms) What are enzymes? nonimmunologic antibacterial salivary content -5.818418628538154 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, nonimmunologic antibacterial salivary content) -> nonimmunologic antibacterial salivary content (4395ms) What are enzymes? source of energy -5.820624437198207 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, source of energy) -> source of energy (4470ms) What are enzymes? convenient source of information -5.825273239694954 What are enzymes? -> $x: (enzymes, instance of, $x) -> (ENZYME, Instance Of, convenient source of information) -> convenient source of information (4470ms) What are enzymes? readable indicator label -5.829861700710017 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, readable indicator label) -> readable indicator label (4470ms) What are enzymes? soil biochemical property -5.829861700710017 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, soil biochemical property) -> soil biochemical property (4470ms) What are enzymes? novel experimental therapeutic agent -5.838982459557154 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, novel experimental therapeutic agent) -> novel experimental therapeutic agent (4470ms) What are enzymes? polymer of Amino Acids -5.838982459557154 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, polymer of Amino Acids) -> polymer of Amino Acids (4470ms) What are enzymes? catalytic protein -5.890353092755625 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, catalytic protein) -> catalytic protein (4569ms) What are enzymes? regulatory protein -5.918367317919226 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, regulatory protein) -> regulatory protein (4569ms) What are enzymes? chemical substance -5.921865970418829 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, chemical substance) -> chemical substance (4569ms) What are enzymes? structural protein -5.990746490433155 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, structural protein) -> structural protein (4569ms) What are enzymes? chemical species -6.008864525794162 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, chemical species) -> chemical species (4569ms) What are enzymes? body structure -6.02838528339291 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, body structure) -> body structure (4569ms) What are enzymes? large polymer -6.032955023959827 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, large polymer) -> large polymer (4597ms) What are enzymes? active protein -6.052147932992607 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, active protein) -> active protein (4597ms) What are enzymes? plant protein -6.059467315355711 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, plant protein) -> plant protein (4597ms) What are enzymes? label moiety -6.060373464909927 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, label moiety) -> label moiety (4597ms) What are enzymes? cleaning additive -6.069357389981554 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, cleaning additive) -> cleaning additive (4597ms) What are enzymes? bioactive molecule -6.083458303065516 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, bioactive molecule) -> bioactive molecule (4597ms) What are enzymes? large protein -6.085808455041894 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, large protein) -> large protein (4625ms) What are enzymes? biological characteristic -6.086573620231551 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, biological characteristic) -> biological characteristic (4625ms) What are enzymes? biotechnology product -6.091292144212474 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, biotechnology product) -> biotechnology product (4625ms) What are enzymes? natural treatment -6.091463509307538 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, natural treatment) -> natural treatment (4626ms) What are enzymes? amino group -6.092673860937212 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, amino group) -> amino group (4626ms) What are enzymes? complex product -6.094666721409323 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, complex product) -> complex product (4626ms) What are enzymes? nonradioactive label -6.1002031365100535 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, nonradioactive label) -> nonradioactive label (4719ms) What are enzymes? optional component -6.101127963812674 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, optional component) -> optional component (4719ms) What are enzymes? raw ingredient -6.104345993918422 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, raw ingredient) -> raw ingredient (4719ms) What are enzymes? natural substance -6.132410422424304 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, natural substance) -> natural substance (4720ms) What are enzymes? detergent ingredient -6.137548200713661 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, detergent ingredient) -> detergent ingredient (4719ms) What are enzymes? 2-component cleaning system important component -6.145518302864748 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, 2-component cleaning system important component) -> 2-component cleaning system important component (4719ms) What are enzymes? rigid macromolecule -6.155023713973003 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, rigid macromolecule) -> rigid macromolecule (4734ms) What are enzymes? microbiological system -6.155023713973003 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, microbiological system) -> microbiological system (4734ms) What are enzymes? cellular product -6.155023713973003 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, cellular product) -> cellular product (4734ms) What are enzymes? photosynthetic component -6.155023713973003 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, photosynthetic component) -> photosynthetic component (4735ms) What are enzymes? huge protein -6.1595934542334945 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, huge protein) -> huge protein (4734ms) What are enzymes? food factor -6.1595934542334945 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, food factor) -> food factor (4734ms) What are enzymes? health food -6.1659104486186855 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, health food) -> health food (4767ms) What are enzymes? 6 letter word -6.168187824929217 What are enzymes? -> $x: (enzymes, instance of, $x) -> (ENZYME, Instance Of, 6 letter word) -> 6 letter word (4767ms) What are enzymes? management strategy -6.16852647082513 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, management strategy) -> management strategy (4767ms) What are enzymes? chemical contaminant -6.169307572564149 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, chemical contaminant) -> chemical contaminant (4767ms) What are enzymes? protein class -6.171474779033343 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, protein class) -> protein class (4767ms) What are enzymes? pharmaceutical product -6.174005711930979 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, pharmaceutical product) -> pharmaceutical product (4767ms) What are enzymes? animal protein -6.1743181722377845 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, animal protein) -> animal protein (4784ms) What are enzymes? skin treatment -6.176823621609984 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, skin treatment) -> skin treatment (4783ms) What are enzymes? variable factor -6.179098442074003 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, variable factor) -> variable factor (4783ms) What are enzymes? yeast product -6.180333045400772 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, yeast product) -> yeast product (4784ms) What are enzymes? external stimulus -6.180420518695775 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, external stimulus) -> external stimulus (4783ms) What are enzymes? proteinaceous molecule -6.196151376011002 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, proteinaceous molecule) -> proteinaceous molecule (4784ms) What are enzymes? detection method -6.196927371484474 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, detection method) -> detection method (4817ms) What are enzymes? viral protein -6.2011780887347765 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, viral protein) -> viral protein (4818ms) What are enzymes? serine hydrolases -6.204376910379723 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, serine hydrolases) -> serine hydrolases (4818ms) What are enzymes? Biosystems -6.403906824494506 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, Biosystems) -> Biosystems (4818ms) What are enzymes? Babor Cosmetics America -6.530798978475009 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, drug, enzymes) -> (Babor Cosmetics America, Drugs manufactured, BABOR Baborganic Biological Enzyme Cleanser 0.375 powder) -> Babor Cosmetics America (4954ms) What are enzymes? biological new molecule -6.5483108354615105 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, biological new molecule) -> biological new molecule (4818ms) What are enzymes? Samjoko Skyblue -6.678190441444729 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, drug, enzymes) -> (Samjoko Skyblue, Drugs manufactured, E Enzyme 1.2 dentifrice paste) -> Samjoko Skyblue (4954ms) What are enzymes? FDA OTC monograph part 355 -7.155023713973003 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, drug, enzymes) -> (FDA OTC monograph part 355, Drugs regulated, E Enzyme 1.2 dentifrice paste) -> FDA OTC monograph part 355 (5035ms) What are enzymes? FDA OTC monograph part 310.545 -7.155023713973003 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, drug, enzymes) -> (FDA OTC monograph part 310.545, Drugs regulated, BABOR Baborganic Biological Enzyme Cleanser 0.375 powder) -> FDA OTC monograph part 310.545 (5034ms) What are enzymes? molecule -7.639845419736783 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, molecule) -> molecule (5162ms) What are enzymes? protein -7.666612116648472 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, protein) -> protein (5162ms) What are enzymes? chemical -7.754831395966798 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, chemical) -> chemical (5162ms) What are enzymes? substance -7.805310078196275 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, substance) -> substance (5162ms) What are enzymes? Vitamin C -7.834450529481106 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: (enzymes, be great source of, $x) -> (more enzymes, are a great source of, Vitamin C) -> Vitamin C (5176ms) What are enzymes? nutrient -7.902380610605514 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, nutrient) -> nutrient (5176ms) What are enzymes? digestive enzymes -7.911965674365272 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: (enzymes, be a class of, $x) -> (Pancreatic enzymes, are a class of, digestive enzymes) -> digestive enzymes (5176ms) What are enzymes? organism -7.944481298239428 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, organism) -> organism (5176ms) What are enzymes? item -8.010738327055265 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, item) -> item (5176ms) What are enzymes? product -8.049066635039278 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, product) -> product (5184ms) What are enzymes? dietary fiber -8.066188559584777 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: (enzymes, be great source of, $x) -> (digestive enzymes, is a great source of, dietary fiber) -> dietary fiber (5184ms) What are enzymes? solution -8.071288430919829 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, solution) -> solution (5184ms) What are enzymes? alternative -8.108731082838489 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, alternative) -> alternative (5184ms) What are enzymes? database -8.109663182477966 What are enzymes? -> $x: (enzymes, instance of, $x) -> (ENZYME, Instance Of, database) -> database (5184ms) What are enzymes? element -8.223164162034369 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, element) -> element (5193ms) What are enzymes? marker -8.267302833026934 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, marker) -> marker (5193ms) What are enzymes? Vitamin B6 -8.279991288961991 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, element, enzymes) -> (Vitamin B6, is an integral element for, 100 enzymes) -> Vitamin B6 (5193ms) What are enzymes? engine -8.293312381837715 What are enzymes? -> $x: (enzymes, instance of, $x) -> (Enzyme, Instance Of, engine) -> engine (5193ms) What are enzymes? subtance -8.38634488001022 What are enzymes? -> $x: (enzymes, instance of, $x) -> (Enzyme, Instance Of, subtance) -> subtance (5193ms) What are enzymes? moiety -8.405027052788226 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, moiety) -> moiety (5200ms) What are enzymes? speciality -8.409527952536305 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, speciality) -> speciality (5200ms) What are enzymes? target -8.410177833301518 What are enzymes? -> $x: (enzymes, instance of, $x) -> (enzyme, Instance Of, target) -> target (5200ms) What are enzymes? function -8.415401802803842 What are enzymes? -> $x: (enzymes, instance of, $x) -> (Enzymes, Instance Of, function) -> function (5200ms) What are enzymes? quantum mechanics -8.422863695973096 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: (enzymes, modelling, $x) -> (the enzyme, is modeled with, quantum mechanics) -> quantum mechanics (5200ms) What are enzymes? name -8.426461897983934 What are enzymes? -> $x: (enzymes, instance of, $x) -> (Enzymes, Instance Of, name) -> name (5208ms) What are enzymes? bacterial activity -8.707079581065733 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: (enzymes, be a by, $x) -> (Enzyme production, is a by-product of, bacterial activity) -> bacterial activity (5208ms) What are enzymes? protease enzymes -8.777869353542824 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: (enzymes, be a class of, $x) -> (Proteolytic enzymes, are a special class of, protease enzymes) -> protease enzymes (5208ms) What are enzymes? a living organism -8.804199159550759 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: (enzymes, be a by, $x) -> (An enzyme, is a substance produced by, a living organism) -> a living organism (5208ms) What are enzymes? Selenium -8.981015883541492 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, element, enzymes) -> (Selenium, is an essential element in, enzyme production) -> Selenium (5251ms) What are enzymes? BioMarin -9.17693927219546 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, drug, enzymes) -> (BioMarin, makes drugs for extremely, rare enzyme disorders) -> BioMarin (5259ms) What are enzymes? Recent results -9.270573810738968 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, drug, enzymes) -> (Recent results, have linked the drug to, an enzyme) -> Recent results (5259ms) What are enzymes? the body?s cells -10.1811113368184 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: (enzymes, be a by, $x) -> (An enzyme, is a protein made by, the body?s cells) -> the body?s cells (5320ms) What are enzymes? proteins -10.20489288968371 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: (enzymes, be a class of, $x) -> (Enzymes, are a class of, proteins) -> proteins (5321ms) What are enzymes? antioxidants -10.21409763876759 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: (enzymes, be good source of, $x) -> (other enzymes, are considered to be good source of, antioxidants) -> antioxidants (5320ms) What are enzymes? iron -10.284728033469163 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: (enzymes, be good source of, $x) -> (enzymes, are a good source of, iron) -> iron (5319ms) What are enzymes? the heart -10.316416897980515 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: (enzymes, be a by, $x) -> (Co-Enzyme Q 10, is a nutrient required by, the heart) -> the heart (5326ms) What are enzymes? information -10.33876955509335 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: (enzymes, be great source of, $x) -> (a common enzyme deficiency, was a great source of, information) -> information (5327ms) What are enzymes? I and phase II -10.418473740249084 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, drug, enzymes) -> (I and phase II, drug-metabolizing, enzymes) -> I and phase II (5333ms) What are enzymes? Cambridge University Press -10.593330306497545 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition, enzyme) -> (Cambridge University Press, Book editions published, Enzymes) -> Cambridge University Press (10127ms) What are enzymes? fermentation -10.61016517005531 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: (enzymes, be a by, $x) -> (the enzyme, is a by-product of, fermentation) -> fermentation (5334ms) What are enzymes? Phase II -10.615161170337966 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, drug, enzymes) -> (Phase II, drug-metabolizing, enzymes) -> Phase II (5334ms) What are enzymes? gamers -10.70131603439906 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: (enzymes, modelling, $x) -> (the enzyme, was modeled by, gamers) -> gamers (5334ms) What are enzymes? Bioengineered protein drugs -10.702779412663178 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition, enzyme) -> (Bioengineered protein drugs, Editions, Bioengineered protein drugs: enzymes) -> Bioengineered protein drugs (10127ms) What are enzymes? Automated enzyme assays -10.702779412663178 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Automated enzyme assays, Edition Of, Automated enzyme assays) -> Automated enzyme assays (11084ms) What are enzymes? Microbial enzyme production -10.702779412663178 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Microbial enzyme production, Edition Of, Microbial enzyme production) -> Microbial enzyme production (10368ms) What are enzymes? Virus induced enzymes -10.702779412663178 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Virus induced enzymes, Edition Of, Virus induced enzymes) -> Virus induced enzymes (10368ms) What are enzymes? Fibrinolytic enzyme manufacture -10.702779412663178 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Fibrinolytic enzyme manufacture, Edition Of, Fibrinolytic enzyme manufacture) -> Fibrinolytic enzyme manufacture (10368ms) What are enzymes? Allosteric regulatory enzymes -10.702779412663178 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Allosteric regulatory enzymes, Edition Of, Allosteric regulatory enzymes) -> Allosteric regulatory enzymes (10368ms) What are enzymes? copper -10.738987406791523 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, element, enzymes) -> (copper, is an essential element in, many enzyme systems) -> copper (5334ms) What are enzymes? Hydrolytic Enzymes -10.740721769467264 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Hydrolytic Enzymes (New Comprehensive Biochemistry), Edition Of, Hydrolytic Enzymes) -> Hydrolytic Enzymes (12615ms) What are enzymes? Digestive Enzymes -10.740721769467264 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Digestive Enzymes (Good Health Guide Series), Edition Of, Digestive Enzymes) -> Digestive Enzymes (11084ms) What are enzymes? Enzyme Handbook -10.740721769467264 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition, enzyme) -> (Enzyme Handbook, Editions, Enzyme Handbook) -> Enzyme Handbook (12615ms) What are enzymes? Proteolytic Enzymes -10.740721769467264 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Proteolytic Enzymes: A Practical Approach, Edition Of, Proteolytic Enzymes) -> Proteolytic Enzymes (9313ms) What are enzymes? zinc -10.754621350060013 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, element, enzymes) -> (zinc, is a key element of, enzymes) -> zinc (5419ms) What are enzymes? Allosteric enzymes : kinetic behaviour -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (Allosteric enzymes, Editions, Allosteric enzymes : kinetic behaviour) -> Allosteric enzymes : kinetic behaviour (16864ms) What are enzymes? Enzyme Regulation and Metabolic Diseases -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Enzyme Regulation and Metabolic Diseases, Edition Of, Enzyme Regulation and Metabolic Diseases) -> Enzyme Regulation and Metabolic Diseases (16623ms) What are enzymes? Proteins, enzymes, genes : the interplay of chemistry and biology -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Proteins, enzymes, genes : the interplay of chemistry and biology, Edition Of, Proteins, enzymes, genes) -> Proteins, enzymes, genes : the interplay of chemistry and biology (16456ms) What are enzymes? Enzyme structure and function -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Enzyme structure and function, Edition Of, Enzyme structure and function) -> Enzyme structure and function (16692ms) What are enzymes? Practice and theory of enzyme immunoassays -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Practice and theory of enzyme immunoassays, Edition Of, Practice and theory of enzyme immunoassays) -> Practice and theory of enzyme immunoassays (16864ms) What are enzymes? Enzyme kinetics; open and closed systems -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition, enzyme) -> (Enzyme kinetics; open and closed systems, Edition Of, Enzyme kinetics) -> Enzyme kinetics; open and closed systems (17545ms) What are enzymes? Enzymes; properties, distribution, methods and applications -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Enzymes; properties, distribution, methods and applications, Edition Of, Enzymes) -> Enzymes; properties, distribution, methods and applications (15973ms) What are enzymes? Immobilized enzymes, preparation and engineering: recent advances -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Immobilized enzymes, preparation and engineering: recent advances, Edition Of, Immobilized enzymes, preparation and engineering) -> Immobilized enzymes, preparation and engineering: recent advances (16456ms) What are enzymes? Enzymes: Nature's Energizers -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Enzymes: Nature's Energizers, Edition Of, Enzymes) -> Enzymes: Nature's Energizers (16278ms) What are enzymes? Enzymes and enzyme therapy: how to jump start your way to lifelong good health -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (Enzymes and enzyme therapy, Editions, Enzymes and enzyme therapy: how to jump start your way to lifelong good health) -> Enzymes and enzyme therapy: how to jump start your way to lifelong good health (16455ms) What are enzymes? Multi-enzyme systems -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Multi-enzyme systems, Edition Of, Multi-enzyme systems) -> Multi-enzyme systems (17545ms) What are enzymes? Handbook of enzyme biotechnology -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Handbook of enzyme biotechnology, Edition Of, Handbook of enzyme biotechnology) -> Handbook of enzyme biotechnology (16692ms) What are enzymes? Enzyme kinetics : physical bases, data analysis and uses -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (Enzyme kinetics, Editions, Enzyme kinetics : physical bases, data analysis and uses) -> Enzyme kinetics : physical bases, data analysis and uses (16864ms) What are enzymes? The Enzymes: Control by Phosphorylation, Part B -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (The Enzymes: Control by Phosphorylation, Part B: Specific Enzymes, Edition Of, The Enzymes: Control by Phosphorylation, Part B) -> The Enzymes: Control by Phosphorylation, Part B (16950ms) What are enzymes? Industrial enzymes: recent advances -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (Industrial enzymes, Editions, Industrial enzymes: recent advances) -> Industrial enzymes: recent advances (16692ms) What are enzymes? Industrial Enzymes from Microbial Sources: Recent Advances (Chemical technology review) -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (Industrial Enzymes from Microbial Sources, Editions, Industrial Enzymes from Microbial Sources: Recent Advances (Chemical technology review)) -> Industrial Enzymes from Microbial Sources: Recent Advances (Chemical technology review) (16120ms) What are enzymes? Allgemeine chemie der enzyme -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (Allgemeine chemie der enzyme, Editions, Allgemeine chemie der enzyme) -> Allgemeine chemie der enzyme (15171ms) What are enzymes? Enzyme immunoassays : from concept to product development -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Enzyme immunoassays : from concept to product development, Edition Of, Enzyme immunoassays) -> Enzyme immunoassays : from concept to product development (16692ms) What are enzymes? Enzyme kinetics : from diastase to multi-enzyme systems -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Enzyme kinetics : from diastase to multi-enzyme systems, Edition Of, Enzyme kinetics) -> Enzyme kinetics : from diastase to multi-enzyme systems (15172ms) What are enzymes? Digestive Enzymes (Good Health Guide Series) -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Digestive Enzymes (Good Health Guide Series), Edition Of, Digestive Enzymes) -> Digestive Enzymes (Good Health Guide Series) (15772ms) What are enzymes? Enzyme synthesis and degradation in mammalian systems -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Enzyme synthesis and degradation in mammalian systems, Edition Of, Enzyme synthesis and degradation in mammalian systems) -> Enzyme synthesis and degradation in mammalian systems (14963ms) What are enzymes? Enzyme kinetics : principles and methods -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (Enzyme kinetics, Editions, Enzyme kinetics : principles and methods) -> Enzyme kinetics : principles and methods (16547ms) What are enzymes? Handbook of Enzymes -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (Handbook of Enzymes, Editions, Handbook of Enzymes) -> Handbook of Enzymes (15973ms) What are enzymes? Analysis of enzyme kinetic data -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Analysis of enzyme kinetic data, Edition Of, Analysis of enzyme kinetic data) -> Analysis of enzyme kinetic data (16278ms) What are enzymes? Enzymes : biochemistry, biotechnology and clinical chemistry -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Enzymes : biochemistry, biotechnology and clinical chemistry, Edition Of, Enzymes) -> Enzymes : biochemistry, biotechnology and clinical chemistry (16216ms) What are enzymes? Food enzymes: the missing link to radiant health -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (Food enzymes, Editions, Food enzymes: the missing link to radiant health) -> Food enzymes: the missing link to radiant health (17545ms) What are enzymes? Immuno enzyme techniques in cytochemistry -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Immuno enzyme techniques in cytochemistry, Edition Of, Immuno enzyme techniques in cytochemistry) -> Immuno enzyme techniques in cytochemistry (16950ms) What are enzymes? Enzymes, nature's energizer -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Enzymes, nature's energizer, Edition Of, Enzymes, nature's energizer) -> Enzymes, nature's energizer (16692ms) What are enzymes? Mechanism-based enzyme inactivation: chemistry and enzymology -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Mechanism-based enzyme inactivation: chemistry and enzymology, Edition Of, Mechanism-based enzyme inactivation) -> Mechanism-based enzyme inactivation: chemistry and enzymology (12869ms) What are enzymes? Acute trauma and systemic enzyme therapy -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Acute trauma and systemic enzyme therapy, Edition Of, Acute trauma and systemic enzyme therapy) -> Acute trauma and systemic enzyme therapy (14822ms) What are enzymes? Topics Enzyme Fermentation Vol -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (Topics Enzyme Fermentation Vol, Editions, Topics Enzyme Fermentation Vol) -> Topics Enzyme Fermentation Vol (16278ms) What are enzymes? Markets for bugs and enzymes -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Markets for bugs and enzymes, Edition Of, Markets for bugs and enzymes) -> Markets for bugs and enzymes (17545ms) What are enzymes? Practical Guide to Protein & Enzyme -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Practical Guide to Protein & Enzyme, Edition Of, Practical Guide to Protein & Enzyme) -> Practical Guide to Protein & Enzyme (15973ms) What are enzymes? Enzymes, growth and cancer -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition, enzyme) -> (Enzymes, growth and cancer, Editions, Enzymes, growth and cancer) -> Enzymes, growth and cancer (15172ms) What are enzymes? Thermodynamic Kinetic Aspects of Enzyme -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Thermodynamic Kinetic Aspects of Enzyme, Edition Of, Thermodynamic Kinetic Aspects of Enzyme) -> Thermodynamic Kinetic Aspects of Enzyme (16623ms) What are enzymes? Handbook of enzyme electrophoresis in human genetics -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Handbook of enzyme electrophoresis in human genetics, Edition Of, Handbook of enzyme electrophoresis in human genetics) -> Handbook of enzyme electrophoresis in human genetics (15172ms) What are enzymes? Enzyme induction by viruses -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition, enzyme) -> (Enzyme induction by viruses, Editions, Enzyme induction by viruses) -> Enzyme induction by viruses (14822ms) What are enzymes? Bugs & enzymes -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Bugs & enzymes, Edition Of, Bugs & enzymes) -> Bugs & enzymes (16623ms) What are enzymes? Crystalline enzymes; the chemistry of pepsin, trypsin, and bacteriophage -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Crystalline enzymes; the chemistry of pepsin, trypsin, and bacteriophage, Edition Of, Crystalline enzymes) -> Crystalline enzymes; the chemistry of pepsin, trypsin, and bacteriophage (16864ms) What are enzymes? Source book of enzymes -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Source book of enzymes, Edition Of, Source book of enzymes) -> Source book of enzymes (16120ms) What are enzymes? TheM ethuselah enzyme -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (ethuselah enzyme, Editions, TheM ethuselah enzyme) -> TheM ethuselah enzyme (16692ms) What are enzymes? Chemistry and methods of enzymes -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Chemistry and methods of enzymes, Edition Of, Chemistry and methods of enzymes) -> Chemistry and methods of enzymes (16623ms) What are enzymes? Principles of enzyme kinetics -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition, enzyme) -> (Principles of enzyme kinetics, Editions, Principles of enzyme kinetics) -> Principles of enzyme kinetics (16864ms) What are enzymes? Enzyme structure and mechanism -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (Enzyme structure and mechanism, Editions, Enzyme structure and mechanism) -> Enzyme structure and mechanism (17545ms) What are enzymes? Introduction to the chemistry of enzymes -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Introduction to the chemistry of enzymes, Edition Of, Introduction to the chemistry of enzymes) -> Introduction to the chemistry of enzymes (17545ms) What are enzymes? Enzymes in Metabolic Pathways: A Comparative Study of Mechanism, Structure, Evolution, and Control -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Enzymes in Metabolic Pathways: A Comparative Study of Mechanism, Structure, Evolution, and Control, Edition Of, Enzymes in Metabolic Pathways) -> Enzymes in Metabolic Pathways: A Comparative Study of Mechanism, Structure, Evolution, and Control (15973ms) What are enzymes? Digestive Enzymes (Woodland Health) -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition, enzyme) -> (Digestive Enzymes (Woodland Health), Edition Of, Digestive Enzymes) -> Digestive Enzymes (Woodland Health) (16456ms) What are enzymes? Outlines of enzyme chemistry -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Outlines of enzyme chemistry, Edition Of, Outlines of enzyme chemistry) -> Outlines of enzyme chemistry (16950ms) What are enzymes? Proteolytic Enzymes: A Practical Approach -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (Proteolytic Enzymes, Editions, Proteolytic Enzymes: A Practical Approach) -> Proteolytic Enzymes: A Practical Approach (16455ms) What are enzymes? Electroenzymatic synthesis using flavin-containing enzymes -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Electroenzymatic synthesis using flavin-containing enzymes, Edition Of, Electroenzymatic synthesis using flavin-containing enzymes) -> Electroenzymatic synthesis using flavin-containing enzymes (16042ms) What are enzymes? Behavior of enzyme systems -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition, enzyme) -> (Behavior of enzyme systems, Editions, Behavior of enzyme systems) -> Behavior of enzyme systems (16623ms) What are enzymes? Enzymes: The Sparks of Life (Natural Health Guide) -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (Enzymes, Editions, Enzymes: The Sparks of Life (Natural Health Guide)) -> Enzymes: The Sparks of Life (Natural Health Guide) (16950ms) What are enzymes? Fundamentals of enzyme kinetics -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Fundamentals of enzyme kinetics, Edition Of, Fundamentals of Enzyme Kinetics) -> Fundamentals of enzyme kinetics (16951ms) What are enzymes? Immobilized Enzyme Cell Technol -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (Immobilized Enzyme Cell Technol, Editions, Immobilized Enzyme Cell Technol) -> Immobilized Enzyme Cell Technol (16864ms) What are enzymes? Enzyme Kinetics and Mechanism -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (Enzyme Kinetics and Mechanism, Editions, Enzyme Kinetics and Mechanism) -> Enzyme Kinetics and Mechanism (16950ms) What are enzymes? Enzyme catalysis and regulation -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition, enzyme) -> (Enzyme catalysis and regulation, Editions, Enzyme catalysis and regulation) -> Enzyme catalysis and regulation (15113ms) What are enzymes? Enzymes in action -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Enzymes in action, Edition Of, Enzymes in action) -> Enzymes in action (17544ms) What are enzymes? Enzymes: Biochemistry, Biotechnology and Clinical Chemistry (Horwood Chemical Science) -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (Enzymes, Editions, Enzymes: Biochemistry, Biotechnology and Clinical Chemistry (Horwood Chemical Science)) -> Enzymes: Biochemistry, Biotechnology and Clinical Chemistry (Horwood Chemical Science) (16278ms) What are enzymes? Hydrolytic Enzymes (New Comprehensive Biochemistry) -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (Hydrolytic Enzymes, Editions, Hydrolytic Enzymes (New Comprehensive Biochemistry)) -> Hydrolytic Enzymes (New Comprehensive Biochemistry) (15771ms) What are enzymes? Kinetics of enzyme mechanisms -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Kinetics of enzyme mechanisms, Edition Of, Kinetics of enzyme mechanisms) -> Kinetics of enzyme mechanisms (16043ms) What are enzymes? Enzymes in metabolic pathways : a comparative study of mechanism, structure, evolution, and control -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Enzymes in metabolic pathways : a comparative study of mechanism, structure, evolution, and control, Edition Of, Enzymes in Metabolic Pathways) -> Enzymes in metabolic pathways : a comparative study of mechanism, structure, evolution, and control (12615ms) What are enzymes? Digestive Enzymes: The Key to Good Health and Longevity (Woodland Health) -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Digestive Enzymes: The Key to Good Health and Longevity (Woodland Health), Edition Of, Digestive Enzymes) -> Digestive Enzymes: The Key to Good Health and Longevity (Woodland Health) (16623ms) What are enzymes? Biomedical Applications of Immobilized Enzymes and Proteins -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Biomedical Applications of Immobilized Enzymes and Proteins, Edition Of, Biomedical Applications of Immobilized Enzymes and Proteins) -> Biomedical Applications of Immobilized Enzymes and Proteins (12868ms) What are enzymes? Behavior of enzyme systems; an analysis of kinetics and mechanism -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (Behavior of enzyme systems, Editions, Behavior of enzyme systems; an analysis of kinetics and mechanism) -> Behavior of enzyme systems; an analysis of kinetics and mechanism (14822ms) What are enzymes? Enzymes: physical principles -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (Enzymes: physical principles, Edition Of, Enzymes) -> Enzymes: physical principles (16950ms) What are enzymes? Industrial enzymes and their applications -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Industrial enzymes and their applications, Edition Of, Industrial enzymes and their applications) -> Industrial enzymes and their applications (15973ms) What are enzymes? Respiration & Enzyme Action -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition, enzyme) -> (Respiration & Enzyme Action, Editions, Respiration & Enzyme Action) -> Respiration & Enzyme Action (16692ms) What are enzymes? Structure analysis of enzymes -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition, enzyme) -> (Structure analysis of enzymes, Editions, Structure analysis of enzymes) -> Structure analysis of enzymes (15772ms) What are enzymes? Enzyme Biotechnology: Protein Engineering, Structure Prediction and Fermentation (Ellis Horwood Books in the Biological Sciences) -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition, enzyme) -> (Enzyme Biotechnology: Protein Engineering, Structure Prediction and Fermentation (Ellis Horwood Books in the Biological Sciences), Edition Of, Enzyme Biotechnology) -> Enzyme Biotechnology: Protein Engineering, Structure Prediction and Fermentation (Ellis Horwood Books in the Biological Sciences) (16455ms) What are enzymes? The Enzymes. Volume VIII: Group Transfer. Part A. Nucleotidyl Transfer. Nucleosidyl Transfer. Acyl Transfer. Phosphoryl Transfer. Third Edition -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: ($x, edition of, enzyme) -> (The Enzymes. Volume VIII: Group Transfer. Part A. Nucleotidyl Transfer. Nucleosidyl Transfer. Acyl Transfer. Phosphoryl Transfer. Third Edition, Edition Of, The Enzymes. Volume VIII) -> The Enzymes. Volume VIII: Group Transfer. Part A. Nucleotidyl Transfer. Nucleosidyl Transfer. Acyl Transfer. Phosphoryl Transfer. Third Edition (16547ms) What are enzymes? Fundamentals of Enzyme Kinetics -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Fundamentals of Enzyme Kinetics, Edition Of, Fundamentals of Enzyme Kinetics) -> Fundamentals of Enzyme Kinetics (16215ms) What are enzymes? Enzymes in food processing -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Enzymes in food processing, Edition Of, Enzymes in food processing) -> Enzymes in food processing (17545ms) What are enzymes? Enzyme kinetics : a modern approach -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition, $x) -> (Enzyme kinetics, Editions, Enzyme kinetics : a modern approach) -> Enzyme kinetics : a modern approach (16043ms) What are enzymes? Function and Regulation of Monoamine Enzymes -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Function and Regulation of Monoamine Enzymes, Edition Of, Function and Regulation of Monoamine Enzymes) -> Function and Regulation of Monoamine Enzymes (16278ms) What are enzymes? Enzyme assays for food scientists -10.824997581214802 What are enzymes? -> what be [ enzyme ] ? -> what be the expansion of enzyme ? -> $x: (enzyme, expansion, $x) -> $x: (enzyme, edition of, $x) -> (Enzyme assays for food scientists, Edition Of, Enzyme assays for food scientists) -> Enzyme assays for food scientists (16216ms) What are enzymes? Lactic acid bacteria -10.917166292718647 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Lactic acid bacteria, is also known to produce, enzymes) -> Lactic acid bacteria (8116ms) What are enzymes? what make seeds sprout -10.960611764592546 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, what make seeds sprout) -> what make seeds sprout (7604ms) What are enzymes? P-450 -11.022065415752152 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, drug, enzymes) -> (P-450, drug-metabolizing, enzyme system of the liver) -> P-450 (5419ms) What are enzymes? understanding -11.22003203818527 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: (enzymes, modelling, $x) -> (The COX-2 enzyme, has become a primary model for, understanding) -> understanding (5419ms) What are enzymes? pill Galvus -11.293525569570498 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (pill Galvus, is known as, enzyme inhibitors) -> pill Galvus (8116ms) What are enzymes? vitamin C -11.336389781113592 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (vitamin C, is well known as, an antioxidant and enzyme cofactor) -> vitamin C (8116ms) What are enzymes? biodegradable and non-toxic -11.415521449670825 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, biodegradable and non-toxic) -> biodegradable and non-toxic (7603ms) What are enzymes? present in every organism -11.434547362250491 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, present in every organism) -> present in every organism (7603ms) What are enzymes? Folic acid -11.504630213149934 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Folic acid, is known to inhibit, the enzyme) -> Folic acid (8117ms) What are enzymes? Reverse transcriptase -11.5277986133063 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Reverse transcriptase, is a compound known as, an enzyme) -> Reverse transcriptase (8117ms) What are enzymes? Tobacco smoke -11.53485679287875 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Tobacco smoke, is known to induce, enzymes) -> Tobacco smoke (8116ms) What are enzymes? nature 's catalysts -11.538345160605402 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, nature 's catalysts) -> nature 's catalysts (7604ms) What are enzymes? active on carbohydrates -11.558209381987696 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, active on carbohydrates) -> active on carbohydrates (7603ms) What are enzymes? GoutClear -11.589813160704319 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (GoutClear, are known to inhibit, the enzyme) -> GoutClear (8137ms) What are enzymes? ?beta-glucosidase? -11.602191928426556 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (?beta-glucosidase?, is known as, the ?unlocking enzyme?) -> ?beta-glucosidase? (8137ms) What are enzymes? a class of proteins -11.603693782083958 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, a class of proteins) -> a class of proteins (7603ms) What are enzymes? protease inhibitors -11.6092176217246 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (protease inhibitors, also are known to raise, liver enzymes) -> protease inhibitors (8137ms) What are enzymes? a type of protein -11.614921327988775 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, a type of protein) -> a type of protein (7652ms) What are enzymes? special types of proteins -11.614921327988775 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, special types of proteins) -> special types of proteins (7652ms) What are enzymes? what?s -11.62297280324725 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, go, $x) -> (those enzymes, are gone so to get, what?s) -> what?s (7652ms) What are enzymes? a form of proteins -11.649797271042903 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, a form of proteins) -> a form of proteins (7652ms) What are enzymes? present in raw food -11.649797271042903 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, present in raw food) -> present in raw food (7654ms) What are enzymes? specific types of proteins -11.649797271042903 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, specific types of proteins) -> specific types of proteins (7652ms) What are enzymes? ? production -11.665754887494018 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (? production, are known as, ?phase 2 enzymes) -> ? production (8137ms) What are enzymes? a kind of protein -11.68876255465091 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzyme, is, a kind of protein) -> a kind of protein (7668ms) What are enzymes? substances produced by living organisms -11.68895539347713 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, substances produced by living organisms) -> substances produced by living organisms (7668ms) What are enzymes? Vitamin B-6 -11.69315754854264 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Vitamin B-6, is known to be, an essential co-enzyme) -> Vitamin B-6 (8137ms) What are enzymes? essential to digestion and metabolism -11.694344790669248 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, essential to digestion and metabolism) -> essential to digestion and metabolism (7668ms) What are enzymes? essential for health and longevity -11.709356512341081 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, essential for health and longevity) -> essential for health and longevity (7668ms) What are enzymes? promoters instead of inhibitors of inflammation -11.709356512341081 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, promoters instead of inhibitors of inflammation) -> promoters instead of inhibitors of inflammation (7668ms) What are enzymes? biological catalysts -11.723660634439828 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, biological catalysts) -> biological catalysts (7669ms) What are enzymes? a water soluble vitamin -11.72887594224437 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (a water soluble vitamin, is also known as, co-enzyme R) -> a water soluble vitamin (8137ms) What are enzymes? one pill Galvus -11.735969307473242 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (one pill Galvus, is known as, enzyme inhibitors) -> one pill Galvus (8156ms) What are enzymes? one of the fundamental building materials -11.757003905379626 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, one of the fundamental building materials) -> one of the fundamental building materials (7690ms) What are enzymes? A lot -11.776314294811712 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (A lot, is known about, this enzyme) -> A lot (8156ms) What are enzymes? heat sensitive -11.78218497464327 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, heat sensitive) -> heat sensitive (7690ms) What are enzymes? prostate cancer cells -11.786233898157956 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (prostate cancer cells, are known to produce, aromatase enzymes) -> prostate cancer cells (8156ms) What are enzymes? a reaction -11.795760164657416 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, go, $x) -> (an enzyme, is going to facilitate, a reaction) -> a reaction (7690ms) What are enzymes? too large to cross the blood-brain barrier -11.795988136047525 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, too large to cross the blood-brain barrier) -> too large to cross the blood-brain barrier (7690ms) What are enzymes? unable to travel inside of the lysosome -11.795988136047525 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, unable to travel inside of the lysosome) -> unable to travel inside of the lysosome (7690ms) What are enzymes? substrate particular -11.804055526800914 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, substrate particular) -> substrate particular (7690ms) What are enzymes? large proteins -11.828288463602215 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, large proteins) -> large proteins (7707ms) What are enzymes? Europe -11.831119674254746 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (enzymes, were done in, Europe) -> Europe (7707ms) What are enzymes? Orlistat -11.831494193857008 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Orlistat, is known to inhibit, the lipase enzyme) -> Orlistat (8156ms) What are enzymes? worker bees -11.839563816250111 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (enzymes, Do their job as, worker bees) -> worker bees (7707ms) What are enzymes? Alcohol -11.856151993784096 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Alcohol, is known to increase, cytochrome P-450 enzymes) -> Alcohol (8156ms) What are enzymes? Caffeine -11.863705636898239 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Caffeine, is also a known competitive inhibitor of, the enzyme) -> Caffeine (8157ms) What are enzymes? Chlorite dismutase -11.877886866020464 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Chlorite dismutase, is now known to be, a central enzyme) -> Chlorite dismutase (8175ms) What are enzymes? Papaya Papaya -11.893144060787728 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Papaya Papaya, is well known for, its enzyme papain) -> Papaya Papaya (8175ms) What are enzymes? a promising new drug -11.909658703883897 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (a promising new drug, is known to affect, an enzyme pathway) -> a promising new drug (8175ms) What are enzymes? Dead Sea Mud -11.924824823259895 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Dead Sea Mud, is known to activate, enzymes) -> Dead Sea Mud (8175ms) What are enzymes? so important -11.928800052090073 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, so important) -> so important (7707ms) What are enzymes? Viral DNA polymerase -11.93818042707024 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Viral DNA polymerase, is a compound known as, an enzyme) -> Viral DNA polymerase (8175ms) What are enzymes? Copper -11.954397201506811 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Copper, is known to attack, respiratory enzymes) -> Copper (8175ms) What are enzymes? MNT -11.955947297806365 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (enzymes, have to do with, MNT) -> MNT (7707ms) What are enzymes? Glutathione -11.956573243142921 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Glutathione, is also known as, a Phase II enzyme) -> Glutathione (8193ms) What are enzymes? Triclosan -11.957049813412397 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Triclosan, is known to inhibit, this enzyme) -> Triclosan (8193ms) What are enzymes? Fluoride -11.957049813412397 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Fluoride, is known to inhibit, some enzymes) -> Fluoride (8193ms) What are enzymes? Aromatase -11.957442495674574 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Aromatase, is known to be, a key regulatory enzyme) -> Aromatase (8194ms) What are enzymes? Papayas -11.961152783527595 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Papayas, are known for, their enzyme) -> Papayas (8193ms) What are enzymes? a poison -11.972855878899239 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (a poison, is known to interfere with, the enzyme system) -> a poison (8194ms) What are enzymes? Soccol et al -11.974963077980048 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (enzymes, as has been done by, Soccol et al) -> Soccol et al (7707ms) What are enzymes? adult bone marrow -11.97895180220637 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (enzyme deficiencies, does, adult bone marrow) -> adult bone marrow (7726ms) What are enzymes? optical density measurements -12.004658092179195 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (the enzymes, did, optical density measurements) -> optical density measurements (7725ms) What are enzymes? Serotonin -12.013638480914706 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Serotonin, is known as, the happy enzyme) -> Serotonin (8212ms) What are enzymes? raw , unpasteurized honey -12.021873066536024 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (raw , unpasteurized honey, is known to be high in, enzymes) -> raw , unpasteurized honey (8212ms) What are enzymes? Inosine -12.031302669396602 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Inosine, is also known to activate, various enzyme systems) -> Inosine (8212ms) What are enzymes? several other steps -12.031546851481739 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, go, $x) -> (enzymes, go through, several other steps) -> several other steps (7725ms) What are enzymes? seminal plasma -12.031765773363421 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (seminal plasma, is known to contain, antioxidant enzymes) -> seminal plasma (8212ms) What are enzymes? Sprouts -12.032042732971448 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Sprouts, are known for, their high enzyme activity) -> Sprouts (8212ms) What are enzymes? essential to healthy digestion -12.043760376076651 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, essential to healthy digestion) -> essential to healthy digestion (7726ms) What are enzymes? Deramaxx functions -12.059952081550637 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Deramaxx functions, are known as, Cox 2 enzymes) -> Deramaxx functions (8212ms) What are enzymes? one specific job -12.063168705538601 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (Enzymes, can only do, one specific job) -> one specific job (7725ms) What are enzymes? Resveratrol -12.067083032372512 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Resveratrol, is known to activate, the SIRT1 enzyme) -> Resveratrol (8230ms) What are enzymes? expensive to produce -12.068843965405325 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, expensive to produce) -> expensive to produce (7725ms) What are enzymes? Danny J Lewis -12.071681165121245 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Danny J Lewis, is otherwise known as, Enzyme Black) -> Danny J Lewis (8230ms) What are enzymes? Cimetidine -12.088775523300008 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Cimetidine, is a known inhibitor of, hepatic CYP enzymes) -> Cimetidine (8230ms) What are enzymes? identical reactions -12.09015755058888 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (identical reactions, are known as, analogous enzymes) -> identical reactions (8230ms) What are enzymes? Protein catalysts -12.093332929568593 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Protein catalysts, are known as, enzymes) -> Protein catalysts (8230ms) What are enzymes? an AST -12.107503821695353 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, go, $x) -> (my liver enzymes, went from, an AST) -> an AST (7792ms) What are enzymes? The Angel Juicer -12.1311479140474 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (The Angel Juicer, was formerly known as, the Live Enzyme Pro) -> The Angel Juicer (8230ms) What are enzymes? cGMP or sildenafil -12.137566528248701 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (the enzyme, does, cGMP or sildenafil) -> cGMP or sildenafil (7793ms) What are enzymes? certain spices -12.143666670173943 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (certain spices, are widely known as, enzyme inhibitors) -> certain spices (8230ms) What are enzymes? molecular conversions -12.147694972619544 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (molecular conversions, are therefore known as, enzymes) -> molecular conversions (8329ms) What are enzymes? essential to life -12.15134235019858 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, essential to life) -> essential to life (7792ms) What are enzymes? irradiating or microwaving -12.153482094277619 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (enzymes, does, irradiating or microwaving) -> irradiating or microwaving (7792ms) What are enzymes? Cooking foods -12.155480161942807 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Cooking foods, is known to destroy, enzymes) -> Cooking foods (8329ms) What are enzymes? carbon dioxide dissolution -12.161653075170886 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (enzyme, so does, carbon dioxide dissolution) -> carbon dioxide dissolution (7792ms) What are enzymes? Statins Cause Viagra Drink Vodka -12.185805213645844 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (Liver Enzymes, Do, Statins Cause Viagra Drink Vodka) -> Statins Cause Viagra Drink Vodka (7792ms) What are enzymes? rather flexible structures -12.188325080310388 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, rather flexible structures) -> rather flexible structures (8329ms) What are enzymes? non-ideal conditions -12.196807807656596 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (enzymes, do operate under, non-ideal conditions) -> non-ideal conditions (8329ms) What are enzymes? proteins in nature -12.197445839157524 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, proteins in nature) -> proteins in nature (8329ms) What are enzymes? Organophosphate pesticides -12.201423750306413 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Organophosphate pesticides, are known to inhibit, this enzyme) -> Organophosphate pesticides (8329ms) What are enzymes? oil -12.205649777072152 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (Enzymes, do a good job of removing, oil) -> oil (8329ms) What are enzymes? identical to EC -12.224748360605414 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzyme, is, identical to EC) -> identical to EC (8329ms) What are enzymes? highly specific -12.229730943517012 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, highly specific) -> highly specific (8349ms) What are enzymes? damage cell structures -12.235369126066663 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, go, $x) -> (These enzymes, go on to, damage cell structures) -> damage cell structures (8349ms) What are enzymes? rigorous quality control testing -12.23659672272889 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, go, $x) -> (Enzymes, go through, rigorous quality control testing) -> rigorous quality control testing (8348ms) What are enzymes? Galvus -12.237887783699563 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Galvus, is known as, enzyme inhibitors) -> Galvus (8349ms) What are enzymes? necessary for proper digestion -12.238609166005112 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, necessary for proper digestion) -> necessary for proper digestion (8348ms) What are enzymes? beneficial to the body -12.238609166005112 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, beneficial to the body) -> beneficial to the body (8348ms) What are enzymes? extremely sensitive to heat -12.239146063486768 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, extremely sensitive to heat) -> extremely sensitive to heat (8348ms) What are enzymes? catalysts in the body -12.239146063486768 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, catalysts in the body) -> catalysts in the body (8349ms) What are enzymes? seconds & minutes -12.239678057171302 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (Enzymes, can do in, seconds & minutes) -> seconds & minutes (8368ms) What are enzymes? an extent -12.243748452105976 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (enzymes, do work to, an extent) -> an extent (8368ms) What are enzymes? CYP3A4 and fluvoxamine -12.252915388222858 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (CYP3A4 and fluvoxamine, is known to inhibit, this enzyme) -> CYP3A4 and fluvoxamine (8368ms) What are enzymes? off-kilter downstream -12.254280661560003 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, go, $x) -> (other enzyme targets, can go, off-kilter downstream) -> off-kilter downstream (8368ms) What are enzymes? important for proper digestion -12.259010284869063 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, important for proper digestion) -> important for proper digestion (8368ms) What are enzymes? very little -12.264309748180338 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (very little, is known about, most enzyme supplements) -> very little (8368ms) What are enzymes? last a long time -12.265710674753887 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (Enzymes, do, last a long time) -> last a long time (8368ms) What are enzymes? highly specific for their substrate -12.268909049646737 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, highly specific for their substrate) -> highly specific for their substrate (8368ms) What are enzymes? aid digestion -12.2729718249282 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (enzymes, do way more than, aid digestion) -> aid digestion (8387ms) What are enzymes? essential for normal digestion -12.274022006540896 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, essential for normal digestion) -> essential for normal digestion (8386ms) What are enzymes? a bit haywire -12.276385585098891 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, go, $x) -> (my liver enzymes, went, a bit haywire) -> a bit haywire (8386ms) What are enzymes? very useful -12.289035382293878 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, very useful) -> very useful (8386ms) What are enzymes? extremely powerful -12.294813545111504 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, extremely powerful) -> extremely powerful (8386ms) What are enzymes? extremely safe -12.303510206484056 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, extremely safe) -> extremely safe (8445ms) What are enzymes? extremely important -12.303510206484056 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, extremely important) -> extremely important (8386ms) What are enzymes? very delicate -12.303510206484056 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, very delicate) -> very delicate (8386ms) What are enzymes? more concentrated -12.303510206484056 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, more concentrated) -> more concentrated (8386ms) What are enzymes? present in all living cells -12.313180128975123 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, present in all living cells) -> present in all living cells (8444ms) What are enzymes? good for the digestive system -12.318569526167241 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, good for the digestive system) -> good for the digestive system (8444ms) What are enzymes? very fragile -12.323911325348009 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, very fragile) -> very fragile (8444ms) What are enzymes? especially important -12.323911325348009 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, especially important) -> especially important (8444ms) What are enzymes? highly efficient -12.323911325348009 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, highly efficient) -> highly efficient (8444ms) What are enzymes? very selective -12.323911325348009 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, very selective) -> very selective (8445ms) What are enzymes? proteins made by the body -12.333581247839076 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, proteins made by the body) -> proteins made by the body (8444ms) What are enzymes? essential to all bodily functions -12.333581247839076 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, essential to all bodily functions) -> essential to all bodily functions (8527ms) What are enzymes? responsible for every biochemical reaction -12.333581247839076 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, responsible for every biochemical reaction) -> responsible for every biochemical reaction (8527ms) What are enzymes? necessary for replication of DNA -12.334995408517422 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, necessary for replication of DNA) -> necessary for replication of DNA (8527ms) What are enzymes? substances which make life possible -12.35615706638266 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, substances which make life possible) -> substances which make life possible (8527ms) What are enzymes? TADALAFIL -12.36227091590874 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (TADALAFIL, is also known as, PDE5 enzyme inhibitors) -> TADALAFIL (8527ms) What are enzymes? a part of every living cell -12.366216919205785 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, a part of every living cell) -> a part of every living cell (8527ms) What are enzymes? Nattokinase -12.368941855751196 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Nattokinase, is known as, a fibrinolytic enzyme) -> Nattokinase (8527ms) What are enzymes? thorough testing -12.400126287632432 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, go, $x) -> (the enzymes, went through, thorough testing) -> thorough testing (8527ms) What are enzymes? a memory Easter egg hunt -12.40017326232126 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, go, $x) -> (the enzyme kids, goes on, a memory Easter egg hunt) -> a memory Easter egg hunt (8606ms) What are enzymes? present in all living biological systems -12.403804459421204 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, present in all living biological systems) -> present in all living biological systems (8606ms) What are enzymes? normal levels -12.416926040062448 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, go, $x) -> (his liver enzymes, went to, normal levels) -> normal levels (8606ms) What are enzymes? substrate specific -12.417100358564422 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, substrate specific) -> substrate specific (8606ms) What are enzymes? a part of animal and plant life -12.429959844768645 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, a part of animal and plant life) -> a part of animal and plant life (8606ms) What are enzymes? high doses -12.438146829902536 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, go, $x) -> (this enzyme, will often go up to really, high doses) -> high doses (8606ms) What are enzymes? protein molecules -12.45251319910021 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, protein molecules) -> protein molecules (8606ms) What are enzymes? wrong direction -12.453178156828061 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, go, $x) -> (enzymes, go, wrong direction) -> wrong direction (8624ms) What are enzymes? full speed -12.459367567040328 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, go, $x) -> (the enzyme, can go at, full speed) -> full speed (8624ms) What are enzymes? a part of every metabolic process in the body -12.480188611034594 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (enzymes, are, a part of every metabolic process in the body) -> a part of every metabolic process in the body (8624ms) What are enzymes? a must for you to enjoy a full , healthy life -12.491502179148592 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, a must for you to enjoy a full , healthy life) -> a must for you to enjoy a full , healthy life (8624ms) What are enzymes? intestinal lumen -12.496503870207038 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, go, $x) -> (their enzymes, go into, intestinal lumen) -> intestinal lumen (8624ms) What are enzymes? degrade lignin -12.538061158081526 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (these enzymes, do, degrade lignin) -> degrade lignin (8624ms) What are enzymes? genes -12.541656884035966 What are enzymes? -> $x: (enzymes, instance of, $x) -> $x: ($x, drug, enzymes) -> (genes, encoding drug, metabolizing enzymes) -> genes (5477ms) What are enzymes? normal range -12.563702879927098 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, go, $x) -> (his liver enzymes, go back to, normal range) -> normal range (8624ms) What are enzymes? ingredients lists -12.565471305431586 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, go, $x) -> (enzymes, go unmentioned in, ingredients lists) -> ingredients lists (8624ms) What are enzymes? Dianabol -12.56879647613994 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Dianabol, is known to interact with, various enzymes) -> Dianabol (8641ms) What are enzymes? more work -12.583155244262697 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (Enzymes, do, more work) -> more work (8641ms) What are enzymes? ordinary chemistry -12.583155244262697 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (Enzymes, do, ordinary chemistry) -> ordinary chemistry (8641ms) What are enzymes? important work -12.584859048937634 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (The enzyme, does, important work) -> important work (8641ms) What are enzymes? simultaneous reductions -12.59452460920716 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, go, $x) -> (enzyme activities, went along with, simultaneous reductions) -> simultaneous reductions (8641ms) What are enzymes? different material -12.604867968710877 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, go, $x) -> (OTHER enzymes, can go to work on, different material) -> different material (8641ms) What are enzymes? Vanadate -12.655527404894595 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Vanadate, is known to interact with, the enzyme conformation) -> Vanadate (8641ms) What are enzymes? Danny -12.656366773517652 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Danny, is otherwise known as, Enzyme Black) -> Danny (8641ms) What are enzymes? bio-catalysts -12.665066441419174 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, be, $x) -> (Enzymes, are, bio-catalysts) -> bio-catalysts (8702ms) What are enzymes? Papaya -12.669138223502067 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Papaya, is known for, its digestive enzyme papain) -> Papaya (8702ms) What are enzymes? Mood -12.687454225867437 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Mood, is known to be related to, hormone and enzyme balance) -> Mood (8702ms) What are enzymes? Hematin -12.698773563574576 What are enzymes? -> what [ be enzyme ] ? -> what be know be enzyme ? -> $x: ($x, be know be, enzyme) -> (Hematin, also is known to inhibit, parasite enzymes) -> Hematin (8702ms) What are enzymes? a good job cleaning the toxic byproducts -12.818500567879955 What are enzymes? -> what be [ enzyme ] ? -> what be the mening of enzyme ? -> $x: (enzyme, mening, $x) -> $x: (enzyme, do, $x) -> (our enzymes, do, a good job cleaning the toxic byproducts) -> a good job cleaning the toxic byproducts (8702ms) Who is the conductor of the Boston Pops? Casella -0.16780111296264344 Who is the conductor of the Boston Pops? -> $x: ($x, is the conductor of, the Boston Pops) -> (Casella, was the principal conductor of, the Boston Pops) -> Casella (98ms) Who is the conductor of the Boston Pops? Williams -0.5103986544639829 Who is the conductor of the Boston Pops? -> $x: ($x, is the conductor of, the Boston Pops) -> (Williams, was the conductor of, the Boston Pops) -> Williams (98ms) Who is the conductor of the Boston Pops? Keith Lockhart -0.8759290516112841 Who is the conductor of the Boston Pops? -> $x: ($x, is the conductor of, the Boston Pops) -> $x: ($x, conductor of, boston pop) -> (Keith Lockhart, becomes the 20th conductor of, the Boston Pops) -> Keith Lockhart (118ms) Who is the conductor of the Boston Pops? John Williams -1.6433587754232823 Who is the conductor of the Boston Pops? -> $x: ($x, is the conductor of, the Boston Pops) -> $x: ($x, conductor of, boston pop) -> (John Williams, becomes the 19th conductor of, the Boston Pops) -> John Williams (118ms) Who is the conductor of the Boston Pops? Mr. Lockhart -1.7471798257728142 Who is the conductor of the Boston Pops? -> $x: ($x, is the conductor of, the Boston Pops) -> $x: ($x, conductor of, boston pop) -> (Mr. Lockhart, has been Conductor of, the Boston Pops Orchestra) -> Mr. Lockhart (118ms) Who is the conductor of the Boston Pops? 1930 -3.2518892216125277 Who is the conductor of the Boston Pops? -> $x: ($x, is the conductor of, the Boston Pops) -> $x: ($x, conductor of, boston pop) -> (1930, became the 18th conductor of, the Boston Pops) -> 1930 (118ms) When was the Red Cross founded? 1914 3.53458084166472 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (The Australian Red Cross, was founded in, 1914) -> 1914 (4250ms) When was the Red Cross founded? 1864 3.2609854723088834 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (the Red Cross, was founded in, 1864) -> 1864 (4250ms) When was the Red Cross founded? 1836 3.2301637430288217 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (the red cross, was founded in, 1836) -> 1836 (4250ms) When was the Red Cross founded? 1881 3.2234863180862963 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (The Red Cross, was founded in, 1881) -> 1881 (4396ms) When was the Red Cross founded? 1863 3.187661620503814 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (the Red Cross, was founded in, 1863) -> 1863 (4396ms) When was the Red Cross founded? 1886 3.0659749154469327 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (the American Red Cross, was founded in, 1886) -> 1886 (4396ms) When was the Red Cross founded? 1932 3.035549357837708 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (The Haitian Red Cross, was founded in, 1932) -> 1932 (4396ms) When was the Red Cross founded? 1931 3.0063062695582006 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (The Haitian Red Cross, was founded in, 1931) -> 1931 (4427ms) When was the Red Cross founded? 1877 2.9303745435120327 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (The Japanese Red Cross Agency, was founded in, 1877) -> 1877 (4427ms) When was the Red Cross founded? May 1881 1.4882267361440054 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (the American Red Cross, was founded in, May 1881) -> May 1881 (4505ms) When was the Red Cross founded? 1950 1.223518222702611 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be establish in, $x) -> (The Hong Kong Red Cross, was established in, 1950) -> 1950 (4947ms) When was the Red Cross founded? 2004 0.9429122404990964 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be establish in, $x) -> (the Red Cross, was established in, 2004) -> 2004 (4947ms) When was the Red Cross founded? 1954 0.8567225493589503 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be establish in, $x) -> (The Fiji Red Cross, was established in, 1954) -> 1954 (4947ms) When was the Red Cross founded? 1997 0.8219360735986769 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, launch in, $x) -> (the Red Cross, was launched in, 1997) -> 1997 (5360ms) When was the Red Cross founded? 1870 0.7727237872088764 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be establish in, $x) -> (the British Red Cross, was established in, 1870) -> 1870 (4947ms) When was the Red Cross founded? 1923 0.7688982762479308 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be form in, $x) -> (the Belgian Red Cross, is later formed in, 1923) -> 1923 (5642ms) When was the Red Cross founded? 1917 0.7532068547460207 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be charter in, $x) -> (the American Red Cross, was chartered in, 1917) -> 1917 (4619ms) When was the Red Cross founded? 1924 0.7148363387352474 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be set up in, $x) -> (the Soviet Red Cross, is set up in, 1924) -> 1924 (5162ms) When was the Red Cross founded? 1876 0.7018914980033046 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be set up in, $x) -> (the Red Cross, was set up in, 1876) -> 1876 (5162ms) When was the Red Cross founded? 1865 0.6545803806157564 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be set up in, $x) -> (the local Red Cross, was set up in, 1865) -> 1865 (5162ms) When was the Red Cross founded? 1967 0.5371444662654334 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be establish in, $x) -> (The District Red Cross Society, was established in, 1967) -> 1967 (5162ms) When was the Red Cross founded? 1939 0.5142352006426525 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, reform in, $x) -> (the Red Cross, was reformed in, 1939) -> 1939 (5425ms) When was the Red Cross founded? May 0.48096833579484555 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (The American Red Cross, was founded in, May) -> May (4505ms) When was the Red Cross founded? 1955 0.4803933934010476 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be set up in, $x) -> (The Cambodian Red Cross, was set up in, 1955) -> 1955 (5196ms) When was the Red Cross founded? July 0.46914820027357784 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> (The Trinidad and Tobago Red Cross Society, was founded on, July) -> July (4505ms) When was the Red Cross founded? June 2 , 1917 0.4481697695855331 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> (the American Red Cross, was founded on, June 2 , 1917) -> June 2 , 1917 (4568ms) When was the Red Cross founded? May 21 , 1881 0.427074248824419 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> (the American Red Cross, was founded on, May 21 , 1881) -> May 21 , 1881 (4568ms) When was the Red Cross founded? 1900 -0.3023879930050768 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, charter in, $x) -> (The Red Cross, received its first congressional charter in, 1900) -> 1900 (4619ms) When was the Red Cross founded? 2010 -0.35877196914139864 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, break ground in, $x) -> (The Red Cross, broke new ground in, 2010) -> 2010 (5227ms) When was the Red Cross founded? the 19th century -0.42325451682404847 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (the International Red Cross, was founded in, the 19th century) -> the 19th century (4659ms) When was the Red Cross founded? 2007 -0.5416830108222794 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, become a partner in, $x) -> (The American Red Cross, became a partner in, 2007) -> 2007 (4659ms) When was the Red Cross founded? May 1905 -0.8330165230387525 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be form in, $x) -> (the Red Cross, was first formed in, May 1905) -> May 1905 (5708ms) When was the Red Cross founded? September 2002 -1.335936517353646 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, launch in, $x) -> (The Red Cross HOPE program, was launched in, September 2002) -> September 2002 (5360ms) When was the Red Cross founded? 29 May 1904 -1.4893190530488911 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (the Red Cross, be establish on, $x) -> (the Red Cross, is established on, 29 May 1904) -> 29 May 1904 (7225ms) When was the Red Cross founded? Geneva -1.6726874204255149 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (the Red Cross, was founded in, Geneva) -> Geneva (4659ms) When was the Red Cross founded? Switzerland -1.6758270512416455 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (the Red Cross, was originally founded in, Switzerland) -> Switzerland (4658ms) When was the Red Cross founded? February 1941 -1.8281013123703977 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, begin operation in, $x) -> (the Red Cross chapter, began operation in, February 1941) -> February 1941 (4781ms) When was the Red Cross founded? Copenhagen -1.888918714425258 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (The Danish Red Cross, was founded in, Copenhagen) -> Copenhagen (4868ms) When was the Red Cross founded? September -2.185503385635341 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be create in, $x) -> (the American Red Cross, was created in, September) -> September (4868ms) When was the Red Cross founded? Dansville -2.430848492448115 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> (the American Red Cross, was founded in, Dansville) -> Dansville (4868ms) When was the Red Cross founded? 1952as -2.5450358378802376 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be establish in, $x) -> (The Fiji Red Cross Society, was established in, 1952as) -> 1952as (5196ms) When was the Red Cross founded? http://en.wikipedia.org/wiki/Crossing%20the%20Red%20Sea%20with%20The%20Adverts -3.107129714998587 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> (Crossing The Red Sea With The Adverts, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Crossing%20the%20Red%20Sea%20with%20The%20Adverts) -> http://en.wikipedia.org/wiki/Crossing%20the%20Red%20Sea%20with%20The%20Adverts (4896ms) When was the Red Cross founded? response -3.208886387662891 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be form in, $x) -> (the Red Cross, was formed in, response) -> response (5708ms) When was the Red Cross founded? Iraq -3.2108228798121705 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, cease operation in, $x) -> (the Red Cross, ceased its operations in, Iraq) -> Iraq (4897ms) When was the Red Cross founded? http://en.wikipedia.org/wiki/Australian%20Red%20Cross -3.26106744635388 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> (Australian Red Cross, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Australian%20Red%20Cross) -> http://en.wikipedia.org/wiki/Australian%20Red%20Cross (4896ms) When was the Red Cross founded? http://en.wikipedia.org/wiki/Uganda%20Red%20Cross%20Society -3.3317531393231476 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> (Uganda Red Cross Society, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Uganda%20Red%20Cross%20Society) -> http://en.wikipedia.org/wiki/Uganda%20Red%20Cross%20Society (4897ms) When was the Red Cross founded? http://en.wikipedia.org/wiki/Japanese%20Red%20Cross%20College%20of%20Nursing -3.446617390398207 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> (Japanese Red Cross College of Nursing, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Japanese%20Red%20Cross%20College%20of%20Nursing) -> http://en.wikipedia.org/wiki/Japanese%20Red%20Cross%20College%20of%20Nursing (5196ms) When was the Red Cross founded? favor -3.519567503487952 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be discontinue in, $x) -> (the Red Cross, were discontinued in, favor) -> favor (5454ms) When was the Red Cross founded? New York -3.5720249612616244 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be establish in, $x) -> (The first Red Cross blood center, was established in, New York) -> New York (5196ms) When was the Red Cross founded? the ?About -3.664430632890928 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (red cross, found in, $x) -> (Additional Red Cross history, can be found in, the ?About) -> the ?About (5196ms) When was the Red Cross founded? food -3.7513917020063894 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: ($x, be found, the Red Cross) -> (food, are relieved to find, the Red Cross volunteers) -> food (7576ms) When was the Red Cross founded? the belief -3.7707509069229457 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> (The Red Cross, was founded on, the belief) -> the belief (5227ms) When was the Red Cross founded? national laws -3.827189269642522 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be incorporate in, $x) -> (the Red Cross emblem/name, is incorporated in, national laws) -> national laws (5454ms) When was the Red Cross founded? Libya -3.829472002546253 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (red cross, found in, $x) -> (the Red Cross, have been found in, Libya) -> Libya (5227ms) When was the Red Cross founded? celebration -3.8601261168938947 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, launch in, $x) -> (the Red Cross, was launched in, celebration) -> celebration (5360ms) When was the Red Cross founded? the battlefield -3.955448500838017 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> (The Red Cross, was founded on, the battlefield) -> the battlefield (5227ms) When was the Red Cross founded? Europe -4.033689198123728 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be form in, $x) -> (the Red Cross Movement, was being formed in, Europe) -> Europe (5726ms) When was the Red Cross founded? Haiti -4.087168433800194 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be establish in, $x) -> (The Red Cross, is already well-established in, Haiti) -> Haiti (5278ms) When was the Red Cross founded? Paris -4.093814611230425 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be close in, $x) -> (the Red Cross, was closing down in, Paris) -> Paris (5278ms) When was the Red Cross founded? Australia -4.104743119541858 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be establish in, $x) -> (the Red Cross, was an established practice in, Australia) -> Australia (5278ms) When was the Red Cross founded? storm-hit areas -4.123745463228389 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be expand in, $x) -> (The Red Cross, is also expanding its efforts in, storm-hit areas) -> storm-hit areas (5278ms) When was the Red Cross founded? temporary housing -4.154614046150665 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (red cross, found in, $x) -> (The American Red Cross, assisted in finding, temporary housing) -> temporary housing (5310ms) When was the Red Cross founded? North Korea -4.187203326368809 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be establish in, $x) -> (The Red Cross, was established in, North Korea) -> North Korea (5310ms) When was the Red Cross founded? the Town -4.22476506892907 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, have office in, $x) -> (the Red Cross, has opened an office in, the Town) -> the Town (5309ms) When was the Red Cross founded? the United States -4.240256866154335 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, launch in, $x) -> (the Youth Red Cross, was launched in, the United States) -> the United States (5360ms) When was the Red Cross founded? Crossing The Red Sea With The Adverts -4.250269751071338 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: ($x, be found, the Red Cross) -> (Crossing The Red Sea With The Adverts, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Crossing%20the%20Red%20Sea%20with%20The%20Adverts) -> Crossing The Red Sea With The Adverts (7576ms) When was the Red Cross founded? the Bolsheviks -4.25520923314377 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (the Red Cross, be sympathetic to, $x) -> (the American Red Cross, was sympathetic to, the Bolsheviks) -> the Bolsheviks (7703ms) When was the Red Cross founded? humanity -4.3343915571568035 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (the Red Cross, be a beacon of, $x) -> (the Red Cross, was a beacon of, humanity) -> humanity (7274ms) When was the Red Cross founded? the Samouni family -4.409151374237156 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: ($x, be found, the Red Cross) -> (the Samouni family, were finally found by, the Red Cross) -> the Samouni family (7575ms) When was the Red Cross founded? Similar statements -4.422478896487746 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: ($x, be found, the Red Cross) -> (Similar statements, are found in, the Red Cross report) -> Similar statements (7576ms) When was the Red Cross founded? more information -4.434828065037306 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: ($x, be found, the Red Cross) -> (more information, can be found at, the American Red Cross) -> more information (7576ms) When was the Red Cross founded? an HIV infection case -4.4459525330631156 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (red cross, found in, $x) -> (Swiss Red Cross, has been found guilty in, an HIV infection case) -> an HIV infection case (5425ms) When was the Red Cross founded? Five potential donors -4.456013885922815 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: ($x, be found, the Red Cross) -> (Five potential donors, were found in, the Red Cross) -> Five potential donors (7576ms) When was the Red Cross founded? Darfur -4.472577568999798 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (red cross, found in, $x) -> (The Red Cross, found his family in, Darfur) -> Darfur (5424ms) When was the Red Cross founded? a listing -4.495268516544996 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: ($x, be found, the Red Cross) -> (a listing, can be found on, the American Red Cross website) -> a listing (7576ms) When was the Red Cross founded? a compatible donor -4.525835855673487 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: ($x, be found, the Red Cross) -> (a compatible donor, was found by, the American Red Cross) -> a compatible donor (7576ms) When was the Red Cross founded? community resources -4.53032140850852 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: ($x, be found, the Red Cross) -> (community resources, can be found at, the American Red Cross) -> community resources (7618ms) When was the Red Cross founded? size -4.530524296976452 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, expand in, $x) -> (the German Red Cross, expanded in, size) -> size (5454ms) When was the Red Cross founded? More information -4.555014375825738 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: ($x, be found, the Red Cross) -> (More information, can be found through, the American Red Cross) -> More information (7618ms) When was the Red Cross founded? disaster supplies -4.559374712284093 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: ($x, be found, the Red Cross) -> (disaster supplies, can be found on, the Red Cross website) -> disaster supplies (7618ms) When was the Red Cross founded? Pakistan -4.595851551837457 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (red cross, found in, $x) -> (the kidnapped British Red Cross worker, found dead in, Pakistan) -> Pakistan (5726ms) When was the Red Cross founded? mid-February -4.617066587487647 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, go live in, $x) -> (the Red Cross, will go live in, mid-February) -> mid-February (5726ms) When was the Red Cross founded? Chaska -4.6313879726727585 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be organize in, $x) -> (The Red Cross Society, was organized in, Chaska) -> Chaska (5726ms) When was the Red Cross founded? Further advice -4.639961945206459 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: ($x, be found, the Red Cross) -> (Further advice, may be found on, the Red Cross website) -> Further advice (7618ms) When was the Red Cross founded? www.redcross -4.660259540467415 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> (Red Cross, can be found on, www.redcross) -> www.redcross (5745ms) When was the Red Cross founded? the town -4.692732143486627 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (red cross, found in, $x) -> (the Red Cross, had been found in, the town) -> the town (5745ms) When was the Red Cross founded? biomedical research -4.719331011194456 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, expand in, $x) -> (The Red Cross, expanded its role in, biomedical research) -> biomedical research (5746ms) When was the Red Cross founded? Washington -4.745941481388865 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be establish in, $x) -> (The American Red Cross, was established in, Washington) -> Washington (5745ms) When was the Red Cross founded? exceptional volunteers and employees -4.832878898302136 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (the Red Cross, be build on, $x) -> (the Red Cross, is built on, exceptional volunteers and employees) -> exceptional volunteers and employees (7618ms) When was the Red Cross founded? the UK -4.87305484906619 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, launch in, $x) -> (The British Red Cross, has launched an appeal in, the UK) -> the UK (5746ms) When was the Red Cross founded? every county -5.026949789695756 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, have office in, $x) -> (The American Red Cross, has offices in virtually, every county) -> every county (5762ms) When was the Red Cross founded? www.redcross .org -5.1074530891096686 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> (Open Red Cross shelters, can be found on, www.redcross .org) -> www.redcross .org (5820ms) When was the Red Cross founded? Japan -5.132494750600754 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, launch in, $x) -> (The Red Cross, has already launched efforts in, Japan) -> Japan (5820ms) When was the Red Cross founded? class scheduling -5.379846802396177 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> (a local Red Cross, find information on, class scheduling) -> class scheduling (5940ms) When was the Red Cross founded? already -5.523633310977368 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (the Red Cross, be ground on, $x) -> (the Red Cross, is on the ground, already) -> already (7703ms) When was the Red Cross founded? the country -5.568290078809593 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be establish in, $x) -> (the Red Cross Societies, shall be established in, the country) -> the country (5940ms) When was the Red Cross founded? Monday -5.581177601066902 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, search on, $x) -> (Red Cross teams, continued the search on, Monday) -> Monday (9843ms) When was the Red Cross founded? 600 MT -5.814150511188794 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, distribute over, $x) -> (the Red Cross Movement, has distributed over, 600 MT) -> 600 MT (10008ms) When was the Red Cross founded? the parking lot -5.901819151074274 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be set up in, $x) -> (the Red Cross, was set up in, the parking lot) -> the parking lot (5956ms) When was the Red Cross founded? the Internet -5.922822873189293 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, present on, $x) -> (The International Red Cross, is present on, the Internet) -> the Internet (10121ms) When was the Red Cross founded? several -5.952341561835469 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (red cross, found in, $x) -> $x: (red cross, discover in, $x) -> (Red Cross parcels, was discovered in, several) -> several (8580ms) When was the Red Cross founded? war-time knitting -5.976233492998015 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (the Red Cross, have a long tradition of, $x) -> (the Red Cross, has a long tradition of, war-time knitting) -> war-time knitting (7848ms) When was the Red Cross founded? the infield -6.0291785428556075 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, be set up in, $x) -> (The American Red Cross, will be set up in, the infield) -> the infield (5956ms) When was the Red Cross founded? the left -6.029970195420293 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (the Red Cross, be build on, $x) -> (the Red Cross, is the white building on, the left) -> the left (7619ms) When was the Red Cross founded? the D.C. Circuit Court -6.049017006852415 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (red cross, found in, $x) -> $x: (red cross, decide in, $x) -> (American Red Cross, was decided in, the D.C. Circuit Court) -> the D.C. Circuit Court (7940ms) When was the Red Cross founded? 16,000 bottles -6.104763815693548 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, deliver over, $x) -> (Red Cross workers, deliver over, 16,000 bottles) -> 16,000 bottles (10009ms) When was the Red Cross founded? clean water -6.108171749533714 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, provide on, $x) -> (the Red Cross, is concentrating on providing, clean water) -> clean water (9807ms) When was the Red Cross founded? affected areas -6.129015040549 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (the Red Cross, be ground on, $x) -> (The Red Cross, will be on the ground in, affected areas) -> affected areas (7703ms) When was the Red Cross founded? page 56 -6.152035607260742 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, saw on, $x) -> (the red cross output button, see last figure on, page 56) -> page 56 (10008ms) When was the Red Cross founded? evacuees -6.2492761787804945 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, buy off, $x) -> (the Red Cross, are buying off, evacuees) -> evacuees (9927ms) When was the Red Cross founded? 60 community services -6.29087265149246 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, deliver over, $x) -> (Australian Red Cross, delivers over, 60 community services) -> 60 community services (10008ms) When was the Red Cross founded? Haiti earthquake -6.362167988227013 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, search on, $x) -> (the American Red Cross, just do a search on, Haiti earthquake) -> Haiti earthquake (9843ms) When was the Red Cross founded? steps -6.3945022814776085 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, provide on, $x) -> (the American Red Cross, provide advice on, steps) -> steps (9807ms) When was the Red Cross founded? free , safe -6.529575112519191 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (red cross, found in, $x) -> $x: (red cross, have provide in, $x) -> (the Red Cross, has played in providing, free , safe) -> free , safe (8243ms) When was the Red Cross founded? the city -6.5784578201260775 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, maintain office in, $x) -> (The Red Cross, maintains an office in, the city) -> the city (5974ms) When was the Red Cross founded? The lesson plan -6.58391965658522 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: ($x, be found, the Red Cross) -> (The lesson plan, can be found on, the Red Cross education site) -> The lesson plan (7619ms) When was the Red Cross founded? the new county complex -6.620144870758736 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (the Red Cross, have office in, $x) -> (the Red Cross Chapter, has an office in, the new county complex) -> the new county complex (5974ms) When was the Red Cross founded? the Federation -6.770784891597153 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, know on, $x) -> (the Red Cross Society, on know as, the Federation) -> the Federation (9715ms) When was the Red Cross founded? Spanish -6.803291343534992 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (red cross, found in, $x) -> $x: (red cross, have give in, $x) -> (Red Cross volunteers, have given the class in, Spanish) -> Spanish (8243ms) When was the Red Cross founded? essential health care -6.825599869217663 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, provide on, $x) -> (The Red Cross, is focused on providing, essential health care) -> essential health care (9807ms) When was the Red Cross founded? the wake -7.0076823075851244 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (red cross, found in, $x) -> $x: (red cross, discover in, $x) -> (the Red Cross, discovered in, the wake) -> the wake (8580ms) When was the Red Cross founded? Monday?s -7.186357875746629 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, distribute on, $x) -> (Red Cross packages, will be distributed on, Monday?s) -> Monday?s (10120ms) When was the Red Cross founded? one occasion -7.201389202672155 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, distribute on, $x) -> (Red Cross packages, were distributed on, one occasion) -> one occasion (10121ms) When was the Red Cross founded? water safety -7.246682149249666 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, present on, $x) -> (the American Red Cross, presented information on, water safety) -> water safety (10121ms) When was the Red Cross founded? a family ?s -7.324677638579599 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, provide on, $x) -> (Red Cross disaster assistance, is provided based on, a family ?s) -> a family ?s (9807ms) When was the Red Cross founded? a regular basis -7.346832729878256 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, provide on, $x) -> (The Red Cross, provides these courses on, a regular basis) -> a regular basis (9808ms) When was the Red Cross founded? Twitter -7.444269576806431 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, provide on, $x) -> (the Red Cross, provided this response on, Twitter) -> Twitter (9807ms) When was the Red Cross founded? the streets -7.900948254184929 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, saw on, $x) -> (Red Cross emblems, can be seen on, the streets) -> the streets (10053ms) When was the Red Cross founded? the shield -7.971809278588347 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, present on, $x) -> (a red cross, was often present on, the shield) -> the shield (10120ms) When was the Red Cross founded? the night -8.01350659045418 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, there be on, $x) -> (the Irish Red Cross, will be there on, the night) -> the night (9927ms) When was the Red Cross founded? the scene -8.26982974701454 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, there be on, $x) -> (the Red Cross, is always the first out there on, the scene) -> the scene (9927ms) When was the Red Cross founded? Services Offered -8.41745242565377 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, provide on, $x) -> (Red Cross, Provides Information on, Services Offered) -> Services Offered (9807ms) When was the Red Cross founded? the form -8.42258232845961 When was the Red Cross founded? -> $x: (the Red Cross, was founded in, $x) -> $x: (red cross, found in, $x) -> $x: (red cross, have provide in, $x) -> (The Red Cross, had provided temporary accommodation in, the form) -> the form (8243ms) When was the Red Cross founded? the law -8.980571149656457 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, provide on, $x) -> (the Red Cross, have provided courses on, the law) -> the law (9843ms) When was the Red Cross founded? the news -9.078851344600045 When was the Red Cross founded? -> $x: (the Red Cross, was founded on, $x) -> $x: (red cross, found on, $x) -> $x: (red cross, saw on, $x) -> (Red Cross Evelyn, had seen the reports on, the news) -> the news (10053ms) Who is the president of Stanford University? Donald Kennedy 3.523012497813199 Who is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> (Donald Kennedy, is the former president of, Stanford University) -> Donald Kennedy (1495ms) Who is the president of Stanford University? David Starr Jordan 2.634954161018904 Who is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> (David Starr Jordan, was the president of, Stanford University) -> David Starr Jordan (1495ms) Who is the president of Stanford University? John Hennessy 1.7368627427973178 Who is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> (John Hennessy, is the president of, Stanford University) -> John Hennessy (1495ms) Who is the president of Stanford University? Casper 0.9518284973593787 Who is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> (Casper, was the president of, Stanford University) -> Casper (1565ms) Who is the president of Stanford University? Jordan 0.5697695070140518 Who is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> (Jordan, was the first President of, Stanford University) -> Jordan (1565ms) Who is the president of Stanford University? Gerhard Casper 0.47466719684619996 Who is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> $x: ($x, president of, stanford university) -> (Gerhard Casper, is president emeritus of, Stanford University) -> Gerhard Casper (1590ms) Who is the president of Stanford University? the founder 0.4038986332722794 Who is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> (the founder, is the 10th President of, Stanford University) -> the founder (1591ms) Who is the president of Stanford University? The author 0.21386895600288103 Who is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> (The author, was the first president of, Stanford University) -> The author (1591ms) Who is the president of Stanford University? Richard W. Lyman -0.43835036568712327 Who is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> $x: ($x, president of, stanford university) -> (Richard W. Lyman, was president of, Stanford University) -> Richard W. Lyman (2109ms) Who is the president of Stanford University? Hennessy -1.0339834507271617 Who is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> $x: ($x, president of, stanford university) -> (Hennessy, is President of, Stanford University) -> Hennessy (2109ms) Who is the president of Stanford University? Greg -1.073547099980408 Who is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> $x: ($x, president of, stanford university) -> (Greg, is President of, Stanford University DAPER Investment Fund) -> Greg (2157ms) Who is the president of Stanford University? Dr. Shapiro -1.4632309750642802 Who is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> $x: ($x, be the chair of, Stanford University) -> (Dr. Shapiro, was the founding Chair of, Stanford University) -> Dr. Shapiro (2441ms) Who is the president of Stanford University? Kennedy -1.8624529642956644 Who is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> $x: ($x, president of, stanford university) -> (Kennedy, is former President of, Stanford University President) -> Kennedy (2186ms) Who is the president of Stanford University? Lucky Gunasekara -2.0376110133550203 Who is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> $x: ($x, be student in, Stanford University) -> (Lucky Gunasekara, is currently a student in, Stanford University) -> Lucky Gunasekara (2284ms) Who is the president of Stanford University? Dr. Sieburg -3.925803851369801 Who is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> $x: ($x, have position, Stanford University) -> (Dr. Sieburg, has held positions at, Stanford University) -> Dr. Sieburg (2284ms) Who is the president of Stanford University? Eddy -4.014340849927146 Who is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> $x: ($x, have position, Stanford University) -> (Eddy, has accepted a position at, Stanford University) -> Eddy (2284ms) Who is the president of Stanford University? Fellow -4.566645359718104 Who is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> $x: ($x, have position, Stanford University) -> (Fellow, has held positions at, Stanford University) -> Fellow (2284ms) Who is the president of Stanford University? Harvard -4.643514308898154 Who is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> $x: ($x, have position, Stanford University) -> (Harvard, has held faculty positions at, Stanford University) -> Harvard (2284ms) Who is the president of Stanford University? Kosal -5.109175159637035 Who is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> $x: ($x, have position, Stanford University) -> (Kosal, has held positions at, Stanford University?s Center) -> Kosal (2284ms) Who is the president of Stanford University? Summit -5.304875347562858 Who is the president of Stanford University? -> $x: ($x, is the president of, Stanford University) -> $x: ($x, have position, Stanford University) -> (Summit, has held faculty positions at, Stanford University) -> Summit (2304ms) Who is the president of Stanford University? the Institute -7.742536942666818 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> (Stanford University, is President of, the Institute) -> the Institute (3139ms) Who is the president of Stanford University? palo alto -9.107488596611573 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (stanford university, is the home city of the sports team, palo alto) -> palo alto (6704ms) Who is the president of Stanford University? the PSA -9.140405316300528 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> (Stanford University, has been elected President of, the PSA) -> the PSA (3139ms) Who is the president of Stanford University? Villanova University -9.188849514541806 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow of, stanford university) -> (Villanova University, is a fellow of, Stanford University) -> Villanova University (8366ms) Who is the president of Stanford University? Herbert Hoover -9.32445579715604 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be an alumnus of, stanford university) -> (Herbert Hoover, is an alumni of, Stanford University) -> Herbert Hoover (8207ms) Who is the president of Stanford University? Anyone Responsible -9.365090169011303 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, Is, Anyone Responsible) -> Anyone Responsible (6703ms) Who is the president of Stanford University? Tocqueville Right -9.514851224325119 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, Was, Tocqueville Right) -> Tocqueville Right (6704ms) Who is the president of Stanford University? Charles Coolidge -9.526345752943964 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, was, Charles Coolidge) -> Charles Coolidge (6704ms) Who is the president of Stanford University? sports team -9.553022661387562 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (stanford university, is a, sports team) -> sports team (6704ms) Who is the president of Stanford University? NASA -9.679486470303942 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, was, NASA) -> NASA (6703ms) Who is the president of Stanford University? Silicon Valley -9.802451336457105 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has for, Silicon Valley) -> Silicon Valley (6704ms) Who is the president of Stanford University? private corporations -9.829666925338785 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, are, private corporations) -> private corporations (6704ms) Who is the president of Stanford University? campus visitors -9.855800634494745 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, were, campus visitors) -> campus visitors (6890ms) Who is the president of Stanford University? Philip Zimbardo -9.921490398008245 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has featured, Philip Zimbardo) -> Philip Zimbardo (6890ms) Who is the president of Stanford University? private property -9.971138594094562 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, private property) -> private property (6890ms) Who is the president of Stanford University? natural selection -10.061045193604468 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has demonstrated, natural selection) -> natural selection (6890ms) Who is the president of Stanford University? Francis Fukuyama -10.067766849011901 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a senior at, stanford university) -> (Francis Fukuyama, is a senior fellow at, Stanford University) -> Francis Fukuyama (8597ms) Who is the president of Stanford University? Fouad Ajami -10.067766849011901 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a senior at, stanford university) -> (Fouad Ajami, is a senior fellow at, Stanford University) -> Fouad Ajami (8597ms) Who is the president of Stanford University? the U.S. Recovery -10.153143843035142 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, the U.S. Recovery) -> the U.S. Recovery (6890ms) Who is the president of Stanford University? Sebastian Thrun -10.156809551345958 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Sebastian Thrun, is a professor at, Stanford University) -> Sebastian Thrun (8938ms) Who is the president of Stanford University? Computer Science -10.185300600597044 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Computer Science, has been a professor at, Stanford University) -> Computer Science (8938ms) Who is the president of Stanford University? the Robert M. -10.195649885437982 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, the Robert M.) -> the Robert M. (6890ms) Who is the president of Stanford University? Mr. Yang -10.217661526209278 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a trustee of, stanford university) -> (Mr. Yang, is also a trustee of, Stanford University) -> Mr. Yang (8527ms) Who is the president of Stanford University? the Green Dorm -10.2203428527552 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, the Green Dorm) -> the Green Dorm (6890ms) Who is the president of Stanford University? Michael Shanks -10.220733099088818 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Michael Shanks, has been a professor at, Stanford University) -> Michael Shanks (8938ms) Who is the president of Stanford University? the MDI Principal Investigator -10.22516675250231 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, the MDI Principal Investigator) -> the MDI Principal Investigator (6890ms) Who is the president of Stanford University? David Kelley -10.238584559051002 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (David Kelley, is a professor at, Stanford University and founder) -> David Kelley (8937ms) Who is the president of Stanford University? Keith Devlin -10.248143246438875 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a senior at, stanford university) -> (Keith Devlin, is a senior researcher at, Stanford University) -> Keith Devlin (8597ms) Who is the president of Stanford University? the AHPCRC lead organization -10.34342430672174 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, the AHPCRC lead organization) -> the AHPCRC lead organization (6915ms) Who is the president of Stanford University? co-chairperson -10.445118306430455 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, was, co-chairperson) -> co-chairperson (6915ms) Who is the president of Stanford University? a result -10.461784069593598 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a result) -> a result (6915ms) Who is the president of Stanford University? the GP-B prime contractor -10.462032029211914 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, the GP-B prime contractor) -> the GP-B prime contractor (6915ms) Who is the president of Stanford University? a published author -10.464897888299038 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a published author) -> a published author (6915ms) Who is the president of Stanford University? a multi-disciplinary facility -10.478915115574441 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a multi-disciplinary facility) -> a multi-disciplinary facility (6915ms) Who is the president of Stanford University? Sergey Brin -10.483843595967237 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be student at, stanford university) -> (Sergey Brin, were students at, the Stanford University) -> Sergey Brin (8597ms) Who is the president of Stanford University? a former advertising executive -10.49142369732793 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a former advertising executive) -> a former advertising executive (6915ms) Who is the president of Stanford University? a regular client -10.518959160272441 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a regular client) -> a regular client (6915ms) Who is the president of Stanford University? a fully-accredited -10.533278847644757 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a fully-accredited) -> a fully-accredited (6941ms) Who is the president of Stanford University? a respected developmental psychologist -10.54636915570243 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a respected developmental psychologist) -> a respected developmental psychologist (6941ms) Who is the president of Stanford University? an Affirmative Action employer -10.552558565914696 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, an Affirmative Action employer) -> an Affirmative Action employer (6941ms) Who is the president of Stanford University? a good example -10.574236222190523 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a good example) -> a good example (6941ms) Who is the president of Stanford University? non-voting associate members -10.576004594992716 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, are, non-voting associate members) -> non-voting associate members (6941ms) Who is the president of Stanford University? an immediate alert -10.576888834096108 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, an immediate alert) -> an immediate alert (6941ms) Who is the president of Stanford University? a highly respected expert -10.578200287760266 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a highly respected expert) -> a highly respected expert (6941ms) Who is the president of Stanford University? a national leader providing education -10.579604791715441 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a national leader providing education) -> a national leader providing education (6941ms) Who is the president of Stanford University? Accelerated C++ -10.584295308621869 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, Accelerated C++) -> Accelerated C++ (7012ms) Who is the president of Stanford University? a national research -10.597225384832804 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a national research) -> a national research (7011ms) Who is the president of Stanford University? a Junior Research Fellow -10.60735337975552 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, was, a Junior Research Fellow) -> a Junior Research Fellow (7011ms) Who is the president of Stanford University? Economic Advisers -10.61529706995409 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Economic Advisers, is a professor at, Stanford University) -> Economic Advisers (8938ms) Who is the president of Stanford University? an affirmative -10.618916069347998 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, an affirmative) -> an affirmative (7011ms) Who is the president of Stanford University? an Equal -10.626672214770197 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, an Equal) -> an Equal (7011ms) Who is the president of Stanford University? a double-blind randomized study -10.638954757642354 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, was, a double-blind randomized study) -> a double-blind randomized study (7011ms) Who is the president of Stanford University? a week-long journalism camp -10.641862551875938 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a week-long journalism camp) -> a week-long journalism camp (7011ms) Who is the president of Stanford University? an equal opportunity -10.649686736104986 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, an equal opportunity) -> an equal opportunity (7011ms) Who is the president of Stanford University? Professor Eric Dunham -10.664359826425606 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, Professor Eric Dunham) -> Professor Eric Dunham (7097ms) Who is the president of Stanford University? four definitions -10.672727421858534 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has, four definitions) -> four definitions (7097ms) Who is the president of Stanford University? a truly wonderful human being -10.67418561854187 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a truly wonderful human being) -> a truly wonderful human being (7097ms) Who is the president of Stanford University? Andreas Wigend -10.67440738119617 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Andreas Wigend, is now a professor at, Stanford University) -> Andreas Wigend (8938ms) Who is the president of Stanford University? an affirmative action -10.690626872994702 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, an affirmative action) -> an affirmative action (7097ms) Who is the president of Stanford University? Professor Huneeus -10.690846114481612 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow at, stanford university) -> (Professor Huneeus, was a fellow at, Stanford University) -> Professor Huneeus (7867ms) Who is the president of Stanford University? a huge success -10.692718728304017 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, was, a huge success) -> a huge success (7097ms) Who is the president of Stanford University? a typical modern quadrotor design -10.694187701168673 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a typical modern quadrotor design) -> a typical modern quadrotor design (7097ms) Who is the president of Stanford University? a Rhodes Scholar -10.714568522217203 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, was, a Rhodes Scholar) -> a Rhodes Scholar (7097ms) Who is the president of Stanford University? Peter Raven -10.741245371771656 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Peter Raven, was a professor at, Stanford University) -> Peter Raven (8938ms) Who is the president of Stanford University? a proud father and grandfather -10.745406576732558 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a proud father and grandfather) -> a proud father and grandfather (7097ms) Who is the president of Stanford University? a Mechanical Engineer -10.74753897030184 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a Mechanical Engineer) -> a Mechanical Engineer (7251ms) Who is the president of Stanford University? an affirmative-action -10.749148339110633 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, an affirmative-action) -> an affirmative-action (7251ms) Who is the president of Stanford University? Observatory Post-Doctoral Fellow -10.75720061069353 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, was, Observatory Post-Doctoral Fellow) -> Observatory Post-Doctoral Fellow (7252ms) Who is the president of Stanford University? multiple studies -10.76523995833776 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, have conducted, multiple studies) -> multiple studies (7252ms) Who is the president of Stanford University? Brother Billy -10.773960690230588 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a junior at, stanford university) -> (Brother Billy, is a junior at, Stanford University) -> Brother Billy (8465ms) Who is the president of Stanford University? a Fulbright Fellow -10.777601729557482 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, was, a Fulbright Fellow) -> a Fulbright Fellow (7252ms) Who is the president of Stanford University? university -10.783261785371977 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (stanford university, is a, university) -> university (7252ms) Who is the president of Stanford University? Jonathan Gelbart -10.787092728890402 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a senior at, stanford university) -> (Jonathan Gelbart, is a senior at, Stanford University majoring) -> Jonathan Gelbart (8597ms) Who is the president of Stanford University? an NSF Postdoctoral Fellow -10.787298385419234 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, was, an NSF Postdoctoral Fellow) -> an NSF Postdoctoral Fellow (7252ms) Who is the president of Stanford University? much publicity -10.79302469997588 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has received, much publicity) -> much publicity (7252ms) Who is the president of Stanford University? an equal-opportunity employer -10.793452727459144 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, an equal-opportunity employer) -> an equal-opportunity employer (7337ms) Who is the president of Stanford University? a highly-regarded academic institution -10.795712935651657 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a highly-regarded academic institution) -> a highly-regarded academic institution (7337ms) Who is the president of Stanford University? Dragomir Anguelov -10.798230713175055 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be student at, stanford university) -> (Dragomir Anguelov, was a PhD student at, Stanford University) -> Dragomir Anguelov (8662ms) Who is the president of Stanford University? a large , scenic campus -10.799407253158835 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a large , scenic campus) -> a large , scenic campus (7337ms) Who is the president of Stanford University? 250 -10.80204971407976 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, 250) -> 250 (7337ms) Who is the president of Stanford University? David Lobell -10.809610209445026 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be an assistant professor at, stanford university) -> (David Lobell, is an Assistant Professor at, Stanford University) -> David Lobell (8661ms) Who is the president of Stanford University? Today Karim -10.811558288127939 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be student at, stanford university) -> (Today Karim, is a graduate student at, Stanford University) -> Today Karim (8661ms) Who is the president of Stanford University? a smoke-free campus -10.813853846323097 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a smoke-free campus) -> a smoke-free campus (7337ms) Who is the president of Stanford University? an equal opportunity employer -10.816836009661946 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (" Stanford University, is, an equal opportunity employer) -> an equal opportunity employer (7337ms) Who is the president of Stanford University? a four year varsity athlete -10.81974380389553 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, was, a four year varsity athlete) -> a four year varsity athlete (7337ms) Who is the president of Stanford University? 00130500 -10.819798221038127 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, 00130500) -> 00130500 (7337ms) Who is the president of Stanford University? Kenji Hakuta -10.825244186624024 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Kenji Hakuta, is a professor at, Stanford University) -> Kenji Hakuta (8938ms) Who is the president of Stanford University? Ren Ng -10.83553817749144 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be an alumnus of, stanford university) -> (Ren Ng, is an alumnus of, the Stanford University School) -> Ren Ng (8207ms) Who is the president of Stanford University? an additional conference partner -10.846539612124833 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, was, an additional conference partner) -> an additional conference partner (7360ms) Who is the president of Stanford University? yield rates -10.851300173688594 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, had, yield rates) -> yield rates (7360ms) Who is the president of Stanford University? zombie rats -10.856376937930747 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, have created, zombie rats) -> zombie rats (7360ms) Who is the president of Stanford University? the nation -10.856775828277438 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, are, the nation) -> the nation (7360ms) Who is the president of Stanford University? a Wasserstein Public Interest Fellow -10.862677265481505 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, was, a Wasserstein Public Interest Fellow) -> a Wasserstein Public Interest Fellow (7360ms) Who is the president of Stanford University? Ramesh Johari -10.86380144736975 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be an assistant professor at, stanford university) -> (Ramesh Johari, is an Assistant Professor at, Stanford University) -> Ramesh Johari (8661ms) Who is the president of Stanford University? a selective depository library -10.892090518226262 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a selective depository library) -> a selective depository library (7360ms) Who is the president of Stanford University? Dr. Perl -10.926744621664806 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Dr. Perl, is currently a professor at, Stanford University) -> Dr. Perl (9011ms) Who is the president of Stanford University? 12 minutes -10.931008573144132 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, 12 minutes) -> 12 minutes (7360ms) Who is the president of Stanford University? ncaa -10.932159888617425 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (stanford university, is a sports team that plays in the league, ncaa) -> ncaa (7383ms) Who is the president of Stanford University? significant commitments -10.935989882763174 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has made, significant commitments) -> significant commitments (7383ms) Who is the president of Stanford University? Larry Page -10.942978668390865 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be student at, stanford university) -> (Larry Page, were still students at, Stanford University) -> Larry Page (8661ms) Who is the president of Stanford University? Meg Webster -10.951498585558065 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: ($x, select, stanford university) -> (Meg Webster, was selected by, the Stanford University President) -> Meg Webster (9225ms) Who is the president of Stanford University? a social demographer studying race -10.955910248840137 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a social demographer studying race) -> a social demographer studying race (7383ms) Who is the president of Stanford University? Ph.D. -10.957613641021732 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a senior at, stanford university) -> (Ph.D., is a Senior Lecturer at, the Stanford University School) -> Ph.D. (8661ms) Who is the president of Stanford University? David Filo -10.958562630876203 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be student at, stanford university) -> (David Filo, were graduate students at, Stanford University) -> David Filo (8661ms) Who is the president of Stanford University? Dr. Wang -10.982232603006361 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be an assistant professor at, stanford university) -> (Dr. Wang, is an assistant professor at, Stanford University) -> Dr. Wang (9011ms) Who is the president of Stanford University? an intense 3-day course -11.015830516937648 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, was, an intense 3-day course) -> an intense 3-day course (7383ms) Who is the president of Stanford University? invaluable -11.02558141475777 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, invaluable) -> invaluable (7383ms) Who is the president of Stanford University? a debate -11.047596685979856 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, is having, a debate) -> a debate (7383ms) Who is the president of Stanford University? Mr. Moghadam -11.08955487957698 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a trustee of, stanford university) -> (Mr. Moghadam, is a Trustee of, Stanford University) -> Mr. Moghadam (9012ms) Who is the president of Stanford University? a 2011-2012 post-doctoral fellow -11.094779237604552 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, a 2011-2012 post-doctoral fellow) -> a 2011-2012 post-doctoral fellow (7383ms) Who is the president of Stanford University? eligible -11.106927617704555 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, are, eligible) -> eligible (7382ms) Who is the president of Stanford University? Dr. Keith Devlin -11.121194844901282 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be executive director of, stanford university) -> (Dr. Keith Devlin, is Executive Director of, Stanford University) -> Dr. Keith Devlin (8366ms) Who is the president of Stanford University? Ann Arvin -11.134632013327488 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has, Ann Arvin) -> Ann Arvin (7407ms) Who is the president of Stanford University? the University -11.202335762946946 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow at, stanford university) -> (the University, was a national fellow at, Stanford University) -> the University (7867ms) Who is the president of Stanford University? one of the worlds -11.221005767320047 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, one of the worlds) -> one of the worlds (7407ms) Who is the president of Stanford University? Tom Byers -11.271119931799126 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Tom Byers, is a professor at, Stanford University) -> Tom Byers (9012ms) Who is the president of Stanford University? new discoveries -11.28078036068046 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, have made, new discoveries) -> new discoveries (7406ms) Who is the president of Stanford University? The Evans-Wentz Lectureship -11.283220592667716 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has hosted, The Evans-Wentz Lectureship) -> The Evans-Wentz Lectureship (7407ms) Who is the president of Stanford University? Erin Krampetz -11.28790733480756 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a founder of, stanford university) -> (Erin Krampetz, is a co-founder of, Stanford University) -> Erin Krampetz (7954ms) Who is the president of Stanford University? offering -11.300502348425312 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, offering) -> offering (7407ms) Who is the president of Stanford University? The Chair -11.311488267907114 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: ($x, appoint, stanford university) -> (The Chair, is formally appointed to, Stanford University) -> The Chair (9226ms) Who is the president of Stanford University? a great profit center -11.31609337762485 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has been, a great profit center) -> a great profit center (7406ms) Who is the president of Stanford University? an Honorable Mention All-Pac 10 -11.316378454796123 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, was, an Honorable Mention All-Pac 10) -> an Honorable Mention All-Pac 10 (7407ms) Who is the president of Stanford University? stem cells -11.316572344379756 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, follow, $x) -> (a Stanford University law professor, has followed, stem cells) -> stem cells (9226ms) Who is the president of Stanford University? Physiologist -11.320280514168463 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, Physiologist) -> Physiologist (7406ms) Who is the president of Stanford University? the ICTP four times -11.328015378129123 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has visited, the ICTP four times) -> the ICTP four times (7471ms) Who is the president of Stanford University? a review -11.347941714518717 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, have published, a review) -> a review (7471ms) Who is the president of Stanford University? Bill Ascherfeld -11.3674205441226 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be an alumnus of, stanford university) -> (Bill Ascherfeld, is an Alumnus of, Stanford University) -> Bill Ascherfeld (8206ms) Who is the president of Stanford University? a peice -11.368216427808594 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has, a peice) -> a peice (7471ms) Who is the president of Stanford University? a chip -11.368342833382668 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, have invented, a chip) -> a chip (7471ms) Who is the president of Stanford University? immortality -11.396140192889819 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, have earned, immortality) -> immortality (7471ms) Who is the president of Stanford University? a show-and-tell conference -11.401464568756449 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has held, a show-and-tell conference) -> a show-and-tell conference (7471ms) Who is the president of Stanford University? William Hewlett -11.412874828326505 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, call, $x) -> (Stanford University, called, William Hewlett) -> William Hewlett (9225ms) Who is the president of Stanford University? an annual Stressed -11.422179153462007 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has, an annual Stressed) -> an annual Stressed (7471ms) Who is the president of Stanford University? an important new structure -11.429020084639811 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, have discovered, an important new structure) -> an important new structure (7471ms) Who is the president of Stanford University? numerous ongoing exhibits -11.4311677931146 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has, numerous ongoing exhibits) -> numerous ongoing exhibits (7562ms) Who is the president of Stanford University? a number one -11.433673734783149 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, have, a number one) -> a number one (7562ms) Who is the president of Stanford University? an Equal Opportunity -11.446239259116824 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, an Equal Opportunity) -> an Equal Opportunity (7562ms) Who is the president of Stanford University? a novel method -11.46247562972482 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, have found, a novel method) -> a novel method (7562ms) Who is the president of Stanford University? a Java-based application -11.463736494038791 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has, a Java-based application) -> a Java-based application (7562ms) Who is the president of Stanford University? Football -11.467423328166225 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (stanford university, is a sports team that plays the sport, Football) -> Football (7562ms) Who is the president of Stanford University? nanoparticles -11.47761161221328 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, have used, nanoparticles) -> nanoparticles (7562ms) Who is the president of Stanford University? Deliberative Polling -11.478822880711757 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, call, $x) -> (Stanford University, called, Deliberative Polling) -> Deliberative Polling (9225ms) Who is the president of Stanford University? a church -11.479880519636726 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has, a church) -> a church (7562ms) Who is the president of Stanford University? on-campus health facilities -11.484957231176583 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, have, on-campus health facilities) -> on-campus health facilities (7585ms) Who is the president of Stanford University? night and weekend duties -11.488572762732366 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has, night and weekend duties) -> night and weekend duties (7585ms) Who is the president of Stanford University? an admirable job chronicling -11.489145497746508 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, have done, an admirable job chronicling) -> an admirable job chronicling (7585ms) Who is the president of Stanford University? a resurgence -11.495110806176369 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has seen, a resurgence) -> a resurgence (7585ms) Who is the president of Stanford University? a method -11.506052751937698 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has developed, a method) -> a method (7585ms) Who is the president of Stanford University? a C++ compiler -11.5200116429972 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has written, a C++ compiler) -> a C++ compiler (7585ms) Who is the president of Stanford University? a website -11.521045555718212 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has, a website) -> a website (7585ms) Who is the president of Stanford University? the Author Betsy Fields -11.523681241914085 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be student at, stanford university) -> (the Author Betsy Fields, is a student at, Stanford University) -> the Author Betsy Fields (9012ms) Who is the president of Stanford University? the Author Maneesh Sethi -11.525449667418574 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be student at, stanford university) -> (the Author Maneesh Sethi, is a student at, Stanford University) -> the Author Maneesh Sethi (9083ms) Who is the president of Stanford University? a mandate -11.526514519051073 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, have adopted, a mandate) -> a mandate (7664ms) Who is the president of Stanford University? recent stem cell research -11.53146180834771 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, have brought, recent stem cell research) -> recent stem cell research (7664ms) Who is the president of Stanford University? Boyd?s already vital work -11.536827627706007 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has enhanced, Boyd?s already vital work) -> Boyd?s already vital work (7664ms) Who is the president of Stanford University? an institutional organization -11.538009100372213 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has, an institutional organization) -> an institutional organization (7664ms) Who is the president of Stanford University? a pilot project -11.554003399650231 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, have finished, a pilot project) -> a pilot project (7664ms) Who is the president of Stanford University? the Association -11.555065002985565 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, give, $x) -> (Stanford University, gave this presentation at, the Association) -> the Association (9226ms) Who is the president of Stanford University? a technique -11.557336248331133 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, had developed, a technique) -> a technique (7664ms) Who is the president of Stanford University? Sax -11.560617085664276 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Sax, has been a visiting professor at, Stanford University) -> Sax (9083ms) Who is the president of Stanford University? Tory Kiam -11.561175578789157 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be student at, stanford university) -> (Tory Kiam, was a second-year student at, Stanford University) -> Tory Kiam (9083ms) Who is the president of Stanford University? Brian Holloway -11.562821695564127 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: ($x, choose, stanford university) -> (Brian Holloway, chose, Stanford University) -> Brian Holloway (9311ms) Who is the president of Stanford University? piezoelectricity -11.570060144688203 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, have engineered, piezoelectricity) -> piezoelectricity (7664ms) Who is the president of Stanford University? days -11.570060144688203 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, have condensed, days) -> days (7664ms) Who is the president of Stanford University? a key home-fairway edge -11.577876748693608 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, had, a key home-fairway edge) -> a key home-fairway edge (7867ms) Who is the president of Stanford University? a different approach -11.577876748693608 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has devised, a different approach) -> a different approach (7867ms) Who is the president of Stanford University? the Stanford Guidelines -11.580158585942243 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has presented, the Stanford Guidelines) -> the Stanford Guidelines (7867ms) Who is the president of Stanford University? a similar set-up -11.588408357662257 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has, a similar set-up) -> a similar set-up (7925ms) Who is the president of Stanford University? a great time -11.602555550888983 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, had, a great time) -> a great time (7925ms) Who is the president of Stanford University? a young man -11.605073815188382 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be student at, stanford university) -> (a young man, is a student at, Stanford University) -> a young man (9083ms) Who is the president of Stanford University? Rice -11.605566485647088 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Rice, is now a professor at, Stanford University) -> Rice (9083ms) Who is the president of Stanford University? Tom -11.609588025830115 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be an associate professor at, stanford university) -> (Tom, is now an Associate Professor at, Stanford University) -> Tom (7925ms) Who is the president of Stanford University? Olympic-medalist Enith Brigitha -11.611476253553638 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, as has, Olympic-medalist Enith Brigitha) -> Olympic-medalist Enith Brigitha (7925ms) Who is the president of Stanford University? a program -11.614050079507827 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, also has, a program) -> a program (7925ms) Who is the president of Stanford University? Paromita Pain Josh Nesbit -11.616113014866686 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be student at, stanford university) -> (Paromita Pain Josh Nesbit, was a student at, Stanford University) -> Paromita Pain Josh Nesbit (9083ms) Who is the president of Stanford University? a new experiment -11.61652629503681 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has launched, a new experiment) -> a new experiment (7925ms) Who is the president of Stanford University? a wide variety and selection -11.619058017053888 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has, a wide variety and selection) -> a wide variety and selection (7925ms) Who is the president of Stanford University? short-courses and talks -11.6380022145026 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has given, short-courses and talks) -> short-courses and talks (7925ms) Who is the president of Stanford University? a great resource -11.64065477370589 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has compiled, a great resource) -> a great resource (7954ms) Who is the president of Stanford University? a B. S. degree -11.653917727829224 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has, a B. S. degree) -> a B. S. degree (7954ms) Who is the president of Stanford University? Apple?s iPad -11.665269007774008 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has adopted, Apple?s iPad) -> Apple?s iPad (7954ms) Who is the president of Stanford University? a great site -11.683725304756868 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, also has, a great site) -> a great site (7954ms) Who is the president of Stanford University? Wu -11.694284850076384 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be student at, stanford university) -> (Wu, was a student at, Stanford University) -> Wu (9083ms) Who is the president of Stanford University? a booth and FAH -11.704317037821564 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has, a booth and FAH) -> a booth and FAH (7954ms) Who is the president of Stanford University? Soyoung Kwon -11.716819397261801 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow at, stanford university) -> (Soyoung Kwon, is a postdoctoral fellow at, Stanford University) -> Soyoung Kwon (7954ms) Who is the president of Stanford University? Student Initiated Courses -11.747563965249144 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has, Student Initiated Courses) -> Student Initiated Courses (7954ms) Who is the president of Stanford University? a d .school -11.760021466220483 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has started, a d .school) -> a d .school (7990ms) Who is the president of Stanford University? a 16-megapixel camera -11.764524738368596 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has outfitted, a 16-megapixel camera) -> a 16-megapixel camera (7990ms) Who is the president of Stanford University? the ?mother -11.766196827863562 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, call, $x) -> (Stanford University, has been called, the ?mother) -> the ?mother (9225ms) Who is the president of Stanford University? one of many institutions -11.766784996670633 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, one of many institutions) -> one of many institutions (7990ms) Who is the president of Stanford University? a unique training environment -11.77032040975357 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, also has, a unique training environment) -> a unique training environment (7990ms) Who is the president of Stanford University? three waves -11.793940837234175 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, follow, $x) -> (Stanford University, followed, three waves) -> three waves (9312ms) Who is the president of Stanford University? Mr. Steele -11.816825201729541 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a senior at, stanford university) -> (Mr. Steele, is a senior fellow at, Stanford University) -> Mr. Steele (9083ms) Who is the president of Stanford University? Henry I. Miller -11.816825201729541 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow at, stanford university) -> (Henry I. Miller, is a Fellow at, Stanford University) -> Henry I. Miller (7990ms) Who is the president of Stanford University? Dr. Michelson -11.826249154739738 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow at, stanford university) -> (Dr. Michelson, is a visiting fellow at, Stanford University) -> Dr. Michelson (8207ms) Who is the president of Stanford University? CA Emanuel -11.82713339384313 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a freshman at, stanford university) -> (CA Emanuel, will be a freshman at, Stanford University) -> CA Emanuel (8206ms) Who is the president of Stanford University? Mr. Ajami -11.828052747634356 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a senior at, stanford university) -> (Mr. Ajami, is a senior fellow at, Stanford University) -> Mr. Ajami (9312ms) Who is the president of Stanford University? a State Department adviser -11.82900150216271 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow at, stanford university) -> (a State Department adviser, is a fellow at, Stanford University) -> a State Department adviser (8206ms) Who is the president of Stanford University? Dr. Miller -11.836206014239592 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow at, stanford university) -> (Dr. Miller, is a fellow at, Stanford University) -> Dr. Miller (8402ms) Who is the president of Stanford University? Mr. Robinson -11.836533645203044 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow at, stanford university) -> (Mr. Robinson, is a fellow at, Stanford University) -> Mr. Robinson (8402ms) Who is the president of Stanford University? Jean Guo -11.836994939933684 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be student at, stanford university) -> (Jean Guo, is an undergraduate student at, Stanford University) -> Jean Guo (9312ms) Who is the president of Stanford University? Mr. Berkowitz -11.842527571824533 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a senior at, stanford university) -> (Mr. Berkowitz, is a senior fellow at, Stanford University) -> Mr. Berkowitz (9312ms) Who is the president of Stanford University? a PhD -11.84730834376773 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (a PhD, was a long-standing professor at, Stanford University) -> a PhD (9312ms) Who is the president of Stanford University? B.J.Fogg -11.862998957902583 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (B.J.Fogg, is a professor at, Stanford University specialising) -> B.J.Fogg (9312ms) Who is the president of Stanford University? Dr. Robert Sapolsky -11.864269697009842 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Dr. Robert Sapolsky, is a professor at, Stanford University) -> Dr. Robert Sapolsky (9312ms) Who is the president of Stanford University? a decade -11.8648279789542 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a senior at, stanford university) -> (a decade, was a senior administrator at, Stanford University) -> a decade (9404ms) Who is the president of Stanford University? One graduate -11.867644894504426 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a senior at, stanford university) -> (One graduate, is a senior at, Stanford University) -> One graduate (9404ms) Who is the president of Stanford University? nice guys -11.870288909970132 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, give, $x) -> (Stanford University?s Graduate School, gives, nice guys) -> nice guys (9404ms) Who is the president of Stanford University? David Woo David -11.873603653735785 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a junior at, stanford university) -> (David Woo David, is a junior at, Stanford University majoring) -> David Woo David (8465ms) Who is the president of Stanford University? an essayist -11.873966452089366 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (an essayist, was a visiting professor at, Stanford University) -> an essayist (9404ms) Who is the president of Stanford University? economics -11.884664047771938 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow at, stanford university) -> (economics, was a research fellow at, Stanford University) -> economics (8402ms) Who is the president of Stanford University? larrycuban Sean Reardon -11.890795605256509 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (larrycuban Sean Reardon, is a professor at, Stanford University) -> larrycuban Sean Reardon (9403ms) Who is the president of Stanford University? Smith -11.893284983631837 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be dean of, stanford university) -> (Smith, was dean of, the Stanford University School) -> Smith (8402ms) Who is the president of Stanford University? a former U.S. ambassador -11.899637574672063 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (a former U.S. ambassador, is a professor at, Stanford University) -> a former U.S. ambassador (9403ms) Who is the president of Stanford University? Andrew Lo -11.900260477445972 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a junior at, stanford university) -> (Andrew Lo, is a junior at, Stanford University) -> Andrew Lo (8465ms) Who is the president of Stanford University? the next speaker -11.901443412489957 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, the next speaker) -> the next speaker (8465ms) Who is the president of Stanford University? John Kim -11.901605958577708 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be student at, stanford university) -> (John Kim, is a graduate student at, Stanford University) -> John Kim (9404ms) Who is the president of Stanford University? Dr. Mark Holodniy -11.902457707708722 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow at, stanford university) -> (Dr. Mark Holodniy, was a research fellow at, Stanford University) -> Dr. Mark Holodniy (8465ms) Who is the president of Stanford University? Pages Erika Williams -11.907595357686523 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a freshman at, stanford university) -> (Pages Erika Williams, is a freshman at, Stanford University) -> Pages Erika Williams (8465ms) Who is the president of Stanford University? Rui Hu -11.916245086412527 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be student at, stanford university) -> (Rui Hu, was a Ph.D. student at, Stanford University) -> Rui Hu (9403ms) Who is the president of Stanford University? Dr. Ehrlich -11.919712841781571 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Dr. Ehrlich, is a Professor at, Stanford University) -> Dr. Ehrlich (9435ms) Who is the president of Stanford University? Michael Ray -11.921481214583766 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Michael Ray, was a professor at, Stanford University) -> Michael Ray (9435ms) Who is the president of Stanford University? Dr. Puerta -11.922626737314344 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Dr. Puerta, was a research professor at, Stanford University) -> Dr. Puerta (9435ms) Who is the president of Stanford University? a Ph.D. -11.92413382648935 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow at, stanford university) -> (a Ph.D., was a postdoctoral fellow at, Stanford University) -> a Ph.D. (8465ms) Who is the president of Stanford University? cheap solar power -11.927652370873554 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, give, $x) -> (Stanford University, have given the vision of, cheap solar power) -> cheap solar power (9435ms) Who is the president of Stanford University? Dr. Larkin -11.9314687067299 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow at, stanford university) -> (Dr. Larkin, was a post-doctoral fellow at, Stanford University) -> Dr. Larkin (8465ms) Who is the president of Stanford University? 12 points -11.938494628267216 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, had, 12 points) -> 12 points (9435ms) Who is the president of Stanford University? an Ethics Fellow -11.939361921617103 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow at, stanford university) -> (an Ethics Fellow, also was a fellow at, Stanford University) -> an Ethics Fellow (9435ms) Who is the president of Stanford University? the Plenary -11.942857321291413 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, give, $x) -> (Stanford University, gave, the Plenary) -> the Plenary (9435ms) Who is the president of Stanford University? Page and Brin -11.949352603962168 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be student at, stanford university) -> (Page and Brin, were PhD students at, Stanford University) -> Page and Brin (9467ms) Who is the president of Stanford University? Dr. Tiller -11.958814285952702 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Dr. Tiller, has been a professor at, Stanford University) -> Dr. Tiller (9467ms) Who is the president of Stanford University? Faculty Andrei Linde -11.962415652386639 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Faculty Andrei Linde, is a professor at, Stanford University) -> Faculty Andrei Linde (9467ms) Who is the president of Stanford University? 25 years -11.963023704142673 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has over, 25 years) -> 25 years (9467ms) Who is the president of Stanford University? the rare instance -11.964156869374984 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, was, the rare instance) -> the rare instance (9467ms) Who is the president of Stanford University? an MBA degree -11.964184025188832 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow at, stanford university) -> (an MBA degree, was a fellow at, Stanford university) -> an MBA degree (9467ms) Who is the president of Stanford University? a $ 10 million gift -11.968279705898912 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has received, a $ 10 million gift) -> a $ 10 million gift (9499ms) Who is the president of Stanford University? Dr. Barrett -11.97330148215512 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be an associate professor at, stanford university) -> (Dr. Barrett, was an Associate Professor at, Stanford University) -> Dr. Barrett (9499ms) Who is the president of Stanford University? Dr. Corey Goodman -11.980983777618848 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Dr. Corey Goodman, was a professor at, Stanford University) -> Dr. Corey Goodman (9499ms) Who is the president of Stanford University? Mr. Guzman -11.980983777618848 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow at, stanford university) -> (Mr. Guzman, was a Research Fellow at, Stanford University) -> Mr. Guzman (9499ms) Who is the president of Stanford University? Greg Bybee -11.989170856451555 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be student at, stanford university) -> (Greg Bybee, is a graduate student at, Stanford University) -> Greg Bybee (9499ms) Who is the president of Stanford University? Chester E. Finn Jr. -11.99478191998994 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a senior at, stanford university) -> (Chester E. Finn Jr., is a senior fellow at, Stanford University) -> Chester E. Finn Jr. (9499ms) Who is the president of Stanford University? biology -11.99525333899823 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow at, stanford university) -> (biology, was a postdoctoral fellow at, Stanford University) -> biology (9531ms) Who is the president of Stanford University? Herbert L. Abrams -11.997066864778839 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Herbert L. Abrams, is a professor at, Stanford University School) -> Herbert L. Abrams (9531ms) Who is the president of Stanford University? Dr. G. Scott Hubbard -12.003256274991106 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Dr. G. Scott Hubbard, is a Professor at, Stanford University) -> Dr. G. Scott Hubbard (9531ms) Who is the president of Stanford University? Ge Wang -12.00690098701515 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be an assistant professor at, stanford university) -> (Ge Wang, is an Assistant Professor at, Stanford University) -> Ge Wang (9531ms) Who is the president of Stanford University? the unit -12.010820362819533 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, have proposed, the unit) -> the unit (9531ms) Who is the president of Stanford University? Erik -12.020892949421262 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: ($x, select, stanford university) -> (Erik, was selected by, Stanford University) -> Erik (9531ms) Who is the president of Stanford University? the first test site -12.050227236551493 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, the first test site) -> the first test site (9564ms) Who is the president of Stanford University? Box .net -12.079453012895277 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, Box .net) -> Box .net (9564ms) Who is the president of Stanford University? an Equal Opportunity employer -12.098662851525532 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, an Equal Opportunity employer) -> an Equal Opportunity employer (9564ms) Who is the president of Stanford University? the most successful college -12.101510680242633 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, the most successful college) -> the most successful college (9564ms) Who is the president of Stanford University? the AlwaysOn Summit -12.120378740604712 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, call, $x) -> (Stanford University, called, the AlwaysOn Summit) -> the AlwaysOn Summit (9564ms) Who is the president of Stanford University? the first choice -12.120724485885837 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, was, the first choice) -> the first choice (9564ms) Who is the president of Stanford University? Endy -12.120877404350036 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Endy, is a professor at, Stanford University) -> Endy (9596ms) Who is the president of Stanford University? a plant -12.127384577456564 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, give, $x) -> (a Stanford University scientist, was given a tour of, a plant) -> a plant (9596ms) Who is the president of Stanford University? Jure Leskovec -12.157950108036243 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be an assistant professor at, stanford university) -> (Jure Leskovec, is an assistant professor at, Stanford University) -> Jure Leskovec (9596ms) Who is the president of Stanford University? Kori Schake -12.167384884310323 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow at, stanford university) -> (Kori Schake, is a research fellow at, Stanford University) -> Kori Schake (9596ms) Who is the president of Stanford University? Jack -12.184697134963912 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a senior at, stanford university) -> (Jack, is a senior at, Stanford University majoring) -> Jack (9596ms) Who is the president of Stanford University? Thad Kousser -12.185953009542532 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Thad Kousser, is a visiting professor at, Stanford University) -> Thad Kousser (9596ms) Who is the president of Stanford University? the third largest ice storage facility -12.200975934866467 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, be, $x) -> (Stanford University, is, the third largest ice storage facility) -> the third largest ice storage facility (9596ms) Who is the president of Stanford University? Sean Reardon -12.203375664746456 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a professor at, stanford university) -> (Sean Reardon, is a professor at, Stanford University) -> Sean Reardon (9596ms) Who is the president of Stanford University? an 11 percent black student population -12.204260796207418 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, has, an 11 percent black student population) -> an 11 percent black student population (9809ms) Who is the president of Stanford University? President David Starr Jordan -12.219244426817895 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, follow, $x) -> (Stanford University, followed, President David Starr Jordan) -> President David Starr Jordan (9809ms) Who is the president of Stanford University? guidelines -12.23106750740721 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University ?, has developed, guidelines) -> guidelines (9809ms) Who is the president of Stanford University? Jeff -12.235885370650342 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be student at, stanford university) -> (Jeff, is currently a graduate student at, Stanford University) -> Jeff (9809ms) Who is the president of Stanford University? Vyas -12.236634166777538 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow at, stanford university) -> (Vyas, is now a post-doctoral fellow at, Stanford University) -> Vyas (9809ms) Who is the president of Stanford University? Hall -12.236634166777538 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be president of stanford university ? -> $x: ($x, be president of, stanford university) -> $x: ($x, be a fellow at, stanford university) -> (Hall, is also a visiting fellow at, Stanford University) -> Hall (9809ms) Who is the president of Stanford University? the technique -12.243364390338744 Who is the president of Stanford University? -> who be the president of [ stanford university ] ? -> who be stanford university s president ? -> $x: (stanford university, president, $x) -> $x: (stanford university, have, $x) -> (Stanford University, had used, the technique) -> the technique (9809ms) How long is human gestation? approximate length of time -8.71442996711359 How long is human gestation? -> how long be [ human ] gestation ? -> what be human gestation ? -> $x: (human gestation, instance of, $x) -> (Human gestation, Instance Of, approximate length of time) -> approximate length of time (7616ms) How long is human gestation? haphazard process -8.759370595067605 How long is human gestation? -> how long be [ human ] gestation ? -> what be human gestation ? -> $x: (human gestation, instance of, $x) -> (Human gestation, Instance Of, haphazard process) -> haphazard process (7616ms) How long is human gestation? matter of common knowledge -8.773356036963449 How long is human gestation? -> how long be [ human ] gestation ? -> what be human gestation ? -> $x: (human gestation, instance of, $x) -> (Period of human gestation, Instance Of, matter of common knowledge) -> matter of common knowledge (7616ms) How long is human gestation? good analogy -8.797913964790235 How long is human gestation? -> how long be [ human ] gestation ? -> what be human gestation ? -> $x: (human gestation, instance of, $x) -> (Armstrong's analogy of human gestation, Instance Of, good analogy) -> good analogy (7616ms) How long is human gestation? random variable -8.851806399163607 How long is human gestation? -> how long be [ human ] gestation ? -> what be human gestation ? -> $x: (human gestation, instance of, $x) -> (gestation period in humans, Instance Of, random variable) -> random variable (7617ms) How long is human gestation? topic -9.0329388086347 How long is human gestation? -> how long be [ human ] gestation ? -> what be human gestation ? -> $x: (human gestation, instance of, $x) -> (human gestation, Instance Of, topic) -> topic (7616ms) How long is human gestation? week -9.170803798978433 How long is human gestation? -> how long be [ human ] gestation ? -> what be human gestation ? -> $x: (human gestation, instance of, $x) -> (normal gestation period for a human female, Instance Of, week) -> week (7723ms) How long is human gestation? nine months -13.8355450697429 How long is human gestation? -> how long be [ human gestation ] ? -> who long be human gestation ? -> $x: ($x, long be, human gestation) -> $x: (human gestation, last for, $x) -> (Human gestation, lasts for, nine months) -> nine months (12453ms) How long is human gestation? the Tzolkin -13.967400475550892 How long is human gestation? -> how long be [ human gestation ] ? -> who long be human gestation ? -> $x: ($x, long be, human gestation) -> $x: ($x, related to, human gestation) -> (the Tzolkin, may be related to, the human gestation period) -> the Tzolkin (12288ms) How many types of human blood are there? Book Edition -6.128957266064445 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> (Morphology of Human Blood Cells, Type, Book Edition) -> Book Edition (10256ms) How many types of human blood are there? EP -6.635270477649976 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> (Human Blood, Release type, EP) -> EP (11745ms) How many types of human blood are there? Book -6.919476813357754 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> (Morphology of Human Blood Cells, Type, Book) -> Book (11744ms) How many types of human blood are there? Written Work -6.966972588939308 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> (Morphology of Human Blood Cells, Type, Written Work) -> Written Work (11836ms) How many types of human blood are there? Creative Work -7.109914768054937 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> (Human Blood, Type, Creative Work) -> Creative Work (11871ms) How many types of human blood are there? Canonical Version -7.409876638556236 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> (The Blood of Human Heroes, Type, Canonical Version) -> Canonical Version (11951ms) How many types of human blood are there? Musical Recording -7.409876638556236 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> (The Blood of Human Heroes, Type, Musical Recording) -> Musical Recording (11951ms) How many types of human blood are there? Award-Winning Work -7.473908481821414 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> (Human blood group systems, Type, Award-Winning Work) -> Award-Winning Work (11951ms) How many types of human blood are there? Release track -7.485031691456637 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> (The Blood of Human Heroes, Type, Release track) -> Release track (11975ms) How many types of human blood are there? Musical Album -7.552818817671866 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> (Human Blood, Type, Musical Album) -> Musical Album (12005ms) How many types of human blood are there? Musical Release -7.552818817671866 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> (Human Blood, Type, Musical Release) -> Musical Release (12005ms) How many types of human blood are there? Cataloged instance -7.594987213853275 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> (Morphology of Human Blood Cells, Notable types, Cataloged instance) -> Cataloged instance (12147ms) How many types of human blood are there? biological cell -7.925475440644471 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> (human blood cells, is a type of, biological cell) -> biological cell (12278ms) How many types of human blood are there? Image -8.07879720856348 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> (Human brainstem blood supply description, Type, Image) -> Image (12458ms) How many types of human blood are there? Content -8.07879720856348 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> (Human brainstem blood supply description, Type, Content) -> Content (12458ms) How many types of human blood are there? certain markers -8.904242925634183 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> (Human blood, is typed by, certain markers) -> certain markers (12586ms) How many types of human blood are there? TV Episode -9.940463932427033 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: (human blood, notable type, $x) -> (Witch mysterious human Kate! The blood it is slow!, Notable types, TV Episode) -> TV Episode (14823ms) How many types of human blood are there? an Austrian , -10.049394850566747 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: ($x, be the type of, human blood) -> $x: ($x, type of, human blood) -> (an Austrian ,, discovered different types of, human blood) -> an Austrian , (12586ms) How many types of human blood are there? sample -10.290328989338649 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (sample, Instance Of, human blood sample) -> sample (13587ms) How many types of human blood are there? monocytes -10.295063186242267 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (monocytes, Instance Of, human blood cell) -> monocytes (13587ms) How many types of human blood are there? albumin -10.313490064662645 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (albumin, Instance Of, human blood component) -> albumin (13587ms) How many types of human blood are there? lymphocyte -10.313490064662645 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (lymphocyte, Instance Of, human blood component) -> lymphocyte (13588ms) How many types of human blood are there? plasma -10.316397725676412 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (plasma, Instance Of, human blood product) -> plasma (13587ms) How many types of human blood are there? potassium -10.33851315766329 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (potassium, Instance Of, human blood) -> potassium (13682ms) How many types of human blood are there? gender -10.340248032347434 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (gender, Instance Of, human blood characteristic) -> gender (13682ms) How many types of human blood are there? cell -10.353957253435334 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (cell, Instance Of, human blood product) -> cell (13682ms) How many types of human blood are there? platelet -10.37283664564298 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (platelet, Instance Of, human blood component) -> platelet (13683ms) How many types of human blood are there? myoglobin -10.387347733760683 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (myoglobin, Instance Of, human blood component) -> myoglobin (13682ms) How many types of human blood are there? cytokines -10.407281681342345 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (cytokines, Instance Of, human blood protein) -> cytokines (13763ms) How many types of human blood are there? antibody -10.407281681342345 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (antibody, Instance Of, human blood protein) -> antibody (13763ms) How many types of human blood are there? thrombocytopenia -10.452175636777488 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (thrombocytopenia, Instance Of, human blood disease) -> thrombocytopenia (13877ms) How many types of human blood are there? oxygen -10.452175636777488 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (oxygen, Instance Of, human blood gas) -> oxygen (13875ms) How many types of human blood are there? boxing -10.452175636777488 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (boxing, Instance Of, human blood sport) -> boxing (13875ms) How many types of human blood are there? leukemia -10.452175636777488 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (leukemia, Instance Of, human blood cancer) -> leukemia (13763ms) How many types of human blood are there? hormone -10.452175636777488 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (hormone, Instance Of, human blood protein) -> hormone (13875ms) How many types of human blood are there? lymphoma -10.452175636777488 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (lymphoma, Instance Of, human blood cancer) -> lymphoma (13763ms) How many types of human blood are there? hemophilia -10.452175636777488 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (hemophilia, Instance Of, human blood disorder) -> hemophilia (13875ms) How many types of human blood are there? leukocyte -10.463926397885073 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (leukocyte, Instance Of, human blood cell) -> leukocyte (13902ms) How many types of human blood are there? transferrin -10.463969889455786 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (transferrin, Instance Of, human blood carrier protein) -> transferrin (13902ms) How many types of human blood are there? whole blood -10.531044098454181 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (whole blood, Instance Of, human blood product) -> whole blood (13928ms) How many types of human blood are there? erythrocyte -10.549636213447235 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (erythrocyte, Instance Of, mature human blood cell) -> erythrocyte (13928ms) How many types of human blood are there? lactate -10.549636213447235 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (lactate, Instance Of, parameter in human blood) -> lactate (13928ms) How many types of human blood are there? granulocytes -10.549636213447235 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (granulocytes, Instance Of, mature human blood cell) -> granulocytes (13954ms) How many types of human blood are there? glucose -10.549636213447235 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (glucose, Instance Of, parameter in human blood) -> glucose (13928ms) How many types of human blood are there? IVIG -10.633782544559118 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (IVIG, Instance Of, human blood product) -> IVIG (13954ms) How many types of human blood are there? human plasma protein -10.710807218908949 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (human plasma protein, Instance Of, human blood protein) -> human plasma protein (13954ms) How many types of human blood are there? AAT -10.714928805787784 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (AAT, Instance Of, human blood protein) -> AAT (14094ms) How many types of human blood are there? blood product -10.72361293930204 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (blood product, Instance Of, human blood product) -> blood product (14094ms) How many types of human blood are there? Labeled -10.737543824366583 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: (human blood, notable type, $x) -> (Culturing of human peripheral blood cells reveals unsuspected lymphocyte responses relevant to HIV disease, Notable types, Labeled) -> Labeled (15359ms) How many types of human blood are there? blood cell -10.747517419083332 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (blood cell, Instance Of, human blood component) -> blood cell (14094ms) How many types of human blood are there? Factor VIII -10.781962454782695 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Factor VIII, Instance Of, human blood factor) -> Factor VIII (14094ms) How many types of human blood are there? barbarism -10.826066951926672 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: (human blood, be a, $x) -> (human blood, is a relic of, barbarism) -> barbarism (14219ms) How many types of human blood are there? MMA -10.826856410217838 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (MMA, Instance Of, human blood sport) -> MMA (14242ms) How many types of human blood are there? ATIII -10.826856410217838 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (ATIII, Instance Of, human blood protein) -> ATIII (14242ms) How many types of human blood are there? Hep-C -10.826856410217838 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Hep-C, Instance Of, human transmitted blood) -> Hep-C (14242ms) How many types of human blood are there? aplastic anemia -10.835450980702166 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (aplastic anemia, Instance Of, human blood cell disorder) -> aplastic anemia (14275ms) How many types of human blood are there? monocytic cell -10.838607171325423 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (monocytic cell, Instance Of, human blood cell) -> monocytic cell (14275ms) How many types of human blood are there? PMNLs -10.838607171325423 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (PMNLs, Instance Of, human blood cell) -> PMNLs (14275ms) How many types of human blood are there? human serum -10.843307475278177 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (human serum, Instance Of, human blood sample) -> human serum (14275ms) How many types of human blood are there? clotting factor -10.852359883984036 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (clotting factor, Instance Of, human blood product) -> clotting factor (14275ms) How many types of human blood are there? ascorbic acid -10.871005717583987 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (ascorbic acid, Instance Of, species in human blood) -> ascorbic acid (15538ms) How many types of human blood are there? Human Serum Albumin -10.917351011296473 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Human Serum Albumin, Instance Of, Human blood derived product) -> Human Serum Albumin (15595ms) How many types of human blood are there? Lutheran antigen system -10.921117304693615 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Lutheran antigen system, Instance Of, human blood group system) -> Lutheran antigen system (15595ms) How many types of human blood are there? serum albumin -10.924316986887586 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (serum albumin, Instance Of, human blood factor) -> serum albumin (15595ms) How many types of human blood are there? dendritic cell -10.924316986887586 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (dendritic cell, Instance Of, human peripheral blood cell) -> dendritic cell (15595ms) How many types of human blood are there? Lewis antigen system -10.935628392811317 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Lewis antigen system, Instance Of, human blood group system) -> Lewis antigen system (15595ms) How many types of human blood are there? polymorphonuclear leukocyte -10.936067747995171 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (polymorphonuclear leukocyte, Instance Of, human blood cell) -> polymorphonuclear leukocyte (15627ms) How many types of human blood are there? Rh factor -10.951735429063385 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Rh factor, Instance Of, human blood antigen) -> Rh factor (15627ms) How many types of human blood are there? Anti-D immunoglobulin -10.971320031317928 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Anti-D immunoglobulin, Instance Of, human blood product) -> Anti-D immunoglobulin (15627ms) How many types of human blood are there? lymphoid leukemia -11.003017335287922 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (lymphoid leukemia, Instance Of, human blood cell tumor) -> lymphoid leukemia (15627ms) How many types of human blood are there? Lewis X -11.006783628685064 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Lewis X, Instance Of, human blood group antigen) -> Lewis X (15654ms) How many types of human blood are there? Natural Killer cell -11.006783628685064 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Natural Killer cell, Instance Of, human immune blood cell) -> Natural Killer cell (15654ms) How many types of human blood are there? myeloid leukemia -11.006783628685064 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (myeloid leukemia, Instance Of, human blood cell tumor) -> myeloid leukemia (15654ms) How many types of human blood are there? Don Zauker -11.006783628685064 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Don Zauker, Instance Of, surgical human blood damage) -> Don Zauker (15654ms) How many types of human blood are there? Level I -11.006783628685064 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Level I, Instance Of, human whole blood hemolysate) -> Level I (15654ms) How many types of human blood are there? fresh frozen plasma -11.013110961542006 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (fresh frozen plasma, Instance Of, human blood component) -> fresh frozen plasma (15654ms) How many types of human blood are there? Topic -11.06831799726114 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Topic, Instance, Human Blood) -> Topic (15677ms) How many types of human blood are there? Immune Serum Globulin Intravenous -11.07746932165433 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Immune Serum Globulin Intravenous, Instance Of, human blood fraction) -> Immune Serum Globulin Intravenous (15677ms) How many types of human blood are there? internal mammary artery -11.07746932165433 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (internal mammary artery, Instance Of, normal human blood vessel) -> internal mammary artery (15677ms) How many types of human blood are there? stem cells -11.07854933779535 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: (human blood, be a, $x) -> (? Human cord blood, is a rich source of, stem cells) -> stem cells (15677ms) How many types of human blood are there? EPILEPSY -11.096476570847148 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: (human blood, be a, $x) -> (Human Blood, was a treatment for, EPILEPSY) -> EPILEPSY (15677ms) How many types of human blood are there? R hesus D immunoglobulin -11.124472366084674 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (R hesus D immunoglobulin, Instance Of, human blood product) -> R hesus D immunoglobulin (15678ms) How many types of human blood are there? Christ Jesus -11.21171540627599 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: ($x, be the type of, human blood) -> $x: ($x, be the kind of, human blood) -> (Christ Jesus, was the same kind of, human blood) -> Christ Jesus (15700ms) How many types of human blood are there? Necro Butcher -11.217640591411481 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Necro Butcher, Instance Of, starfish of human blood) -> Necro Butcher (15743ms) How many types of human blood are there? Bromley Marks -11.217640591411481 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Bromley Marks, Instance Of, supplier of human blood) -> Bromley Marks (15700ms) How many types of human blood are there? Rhogam -11.238252405078269 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Rhogam, Instance Of, human blood product) -> Rhogam (15742ms) How many types of human blood are there? death -11.315474196044585 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: (human blood, be a, $x) -> (human blood, Will be a fugitive until, death) -> death (15742ms) How many types of human blood are there? Albumin -11.431745136959902 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Albumin, Instance Of, human blood fraction) -> Albumin (15766ms) How many types of human blood are there? Antithrombin -11.431745136959902 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Antithrombin, Instance Of, human blood protein) -> Antithrombin (15768ms) How many types of human blood are there? Transferrin -11.431745136959902 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Transferrin, Instance Of, human blood protein) -> Transferrin (15742ms) How many types of human blood are there? Immunoglobulin -11.478748181390246 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Immunoglobulin, Instance Of, human blood product) -> Immunoglobulin (15766ms) How many types of human blood are there? Amlodipine -11.52920571362965 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (Amlodipine, Instance Of, human blood pressure medicine) -> Amlodipine (15766ms) How many types of human blood are there? RhIG -11.680155544503734 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: ($x, instance, human blood) -> (RhIG, Instance Of, human-blood product) -> RhIG (15766ms) How many types of human blood are there? LC -11.773611681969443 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: (human blood, be a, $x) -> (human blood, must be a welcome change for, LC) -> LC (15766ms) How many types of human blood are there? malaria control -11.813728228005191 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: (human blood, be a, $x) -> (human blood, is a major effort in, malaria control) -> malaria control (15791ms) How many types of human blood are there? clinical medicine -12.142324451494662 How many types of human blood are there? -> how many type of [ human blood be ] there ? -> where be human blood be first use ? -> $x: (human blood, be be first use in, $x) -> (human blood, were first used in, clinical medicine) -> clinical medicine (15791ms) How many types of human blood are there? the growth -13.580531354564961 How many types of human blood are there? -> how many type of [ human blood ] be there ? -> what be the type of human blood ? -> $x: (human blood, type, $x) -> $x: (human blood, be a, $x) -> (human blood, is a productive medium for, the growth) -> the growth (15791ms) What color are UPS trucks? windows & -7.155715345379142 What color are UPS trucks? -> $x: (UPS trucks, color, $x) -> $x: (UPS trucks, shade, $x) -> (The pick-up truck, had shaded, windows &) -> windows & (5056ms) What color are UPS trucks? Pattani and Yala -7.758321429079797 What color are UPS trucks? -> $x: (UPS trucks, color, $x) -> $x: (UPS trucks, from steal, $x) -> (the pick-up trucks, were stolen from, Pattani and Yala) -> Pattani and Yala (5170ms) What color are UPS trucks? Home Farm -7.875919748792196 What color are UPS trucks? -> $x: (UPS trucks, color, $x) -> $x: (UPS trucks, from steal, $x) -> (The yellow pick-up truck, was stolen from, Home Farm) -> Home Farm (5170ms) What color are UPS trucks? a fair-sized cedar -8.007319921445397 What color are UPS trucks? -> $x: (UPS trucks, color, $x) -> $x: (UPS trucks, tear out, $x) -> (Her pick-up truck, tore out, a fair-sized cedar) -> a fair-sized cedar (5100ms) What color are UPS trucks? Bay -10.187056107202789 What color are UPS trucks? -> what color be [ up truck ] ? -> what be the color of up truck ? -> what be the color of truck ? -> $x: (truck, color, $x) -> (Big Truck, Color, Bay) -> Bay (9006ms) What color are UPS trucks? Red Wine -10.412415159000552 What color are UPS trucks? -> what color be [ up truck ] ? -> what be the color of up truck ? -> what be the color of truck ? -> $x: (truck, color, $x) -> (2006 Red Truck Pinot Noir, Color, Red Wine) -> Red Wine (9006ms) What color are UPS trucks? White Wine -11.038090702019819 What color are UPS trucks? -> what color be [ up truck ] ? -> what be the color of up truck ? -> what be the color of truck ? -> $x: (truck, color, $x) -> (2005 Cline "White Truck" Santa Barbara Chardonnay, Color, White Wine) -> White Wine (9006ms) What color are UPS trucks? overnight express truck -12.066973664241054 What color are UPS trucks? -> what color be [ up truck ] ? -> what be the color of up truck ? -> what be the color of truck ? -> $x: (truck, color, $x) -> (the truck, is black color just like, overnight express truck) -> overnight express truck (9006ms) What color are UPS trucks? an already great time -12.327424865735107 What color are UPS trucks? -> what color be [ up truck ] ? -> what be the color of up truck ? -> what be the color of truck ? -> $x: (truck, color, $x) -> ('s truck, added color to, an already great time) -> an already great time (9006ms) What color are UPS trucks? Brown's -12.510942802111964 What color are UPS trucks? -> what color be [ up truck ] ? -> what color be on up truck ? -> $x: ($x, instance of, color) ($x, be on up, truck) -> (Brown's, Instance Of, color) (Brown, is showing up on, the foliage and water trucks) -> Brown's (8179ms) What color are UPS trucks? used cars and trucks -12.527994459820125 What color are UPS trucks? -> what color be [ up truck ] ? -> what be the color of up truck ? -> what be the color of truck ? -> $x: (truck, color, $x) -> (used car and truck, has color photos of, used cars and trucks) -> used cars and trucks (9045ms) What color are UPS trucks? Brown -12.54061421532066 What color are UPS trucks? -> what color be [ up truck ] ? -> what color be on up truck ? -> $x: ($x, instance of, color) ($x, be on up, truck) -> (Brown, Instance Of, color) (Brown, is showing up on, the foliage and water trucks) -> Brown (8178ms) What color are UPS trucks? fair condition -12.571437107891226 What color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> $x: (up truck, picture, $x) -> $x: (up truck, be list, $x) -> (the pick up truck, was listed in, fair condition) -> fair condition (13347ms) What color are UPS trucks? Red -12.572163464263221 What color are UPS trucks? -> what color be [ up truck ] ? -> what be the color of up truck ? -> what be the color of truck ? -> $x: ($x, be the color of, truck) -> (Red, is the color of, a fire truck) -> Red (9045ms) What color are UPS trucks? excavator skin -12.602602022083612 What color are UPS trucks? -> what color be [ up truck ] ? -> what be the color of up truck ? -> what be the color of truck ? -> $x: (truck, color, $x) -> (truck dumper, was the color of, excavator skin) -> excavator skin (9045ms) What color are UPS trucks? A Jeep -12.632166878294303 What color are UPS trucks? -> what color be [ up truck ] ? -> what be up truck trail ? -> $x: ($x, be up, truck trail) -> $x: ($x, up, truck trail) -> (A Jeep, climbs up, Pilot Rock Truck Trail) -> A Jeep (6632ms) What color are UPS trucks? Resident Gypsy -12.694375588311932 What color are UPS trucks? -> what color be [ up truck ] ? -> what color be on up truck ? -> $x: ($x, instance of, color) ($x, be on up, truck) -> (Resident Gypsy, Instance Of, Sabino colored Hackney X Irish Drayght stallion) (residents, were rounded up on, trucks) -> Resident Gypsy (8179ms) What color are UPS trucks? purple spots -12.981227440304679 What color are UPS trucks? -> what color be [ up truck ] ? -> what be the color of up truck ? -> what be the color of truck ? -> $x: (truck, color, $x) -> (The ice cream truck, is indigo-colored with, purple spots) -> purple spots (9046ms) What color are UPS trucks? RAF Waddington -12.999059281500958 What color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (admin Leyland DAF Truck AP31AA, is pictured at, RAF Waddington) -> RAF Waddington (9630ms) What color are UPS trucks? Jeep trucks -13.031861377758776 What color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (classic jeep trucks, includes pictures of, Jeep trucks) -> Jeep trucks (9630ms) What color are UPS trucks? Water -13.164776459535778 What color are UPS trucks? -> what color be [ up truck ] ? -> what color be in up truck ? -> $x: ($x, instance of, color) ($x, be in up, truck) -> (Water, Instance Of, color) (Water, is hauled up in, a truck) -> Water (12984ms) What color are UPS trucks? Brownie -13.389831108594537 What color are UPS trucks? -> what color be [ up truck ] ? -> what color be on up truck ? -> $x: ($x, instance of, color) ($x, be on up, truck) -> (Brownie, Instance Of, color) (Brownie, was stealthily sneaking up on, an old red pick-up truck) -> Brownie (8179ms) What color are UPS trucks? Jerry ! Enclosed -13.442517384672943 What color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: ($x, be a picture of, truck) -> (Jerry ! Enclosed, is a picture of, my truck) -> Jerry ! Enclosed (14929ms) What color are UPS trucks? Rollin? Thunder -13.551087490124718 What color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (S&J Truck Sales ?, had a picture of, Rollin? Thunder) -> Rollin? Thunder (9629ms) What color are UPS trucks? antique ocean -13.60601422848359 What color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (truck Globe, pictured here is, antique ocean) -> antique ocean (9629ms) What color are UPS trucks? Amsterdam -13.618655074646702 What color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (This truck, was pictured in, Amsterdam) -> Amsterdam (9629ms) What color are UPS trucks? Hoofddorp -13.625808173256765 What color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (The dump truck, is pictured at, Hoofddorp) -> Hoofddorp (9629ms) What color are UPS trucks? a firefighter?s real bunker coat -13.764243721435587 What color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (the trucks, take a picture in, a firefighter?s real bunker coat) -> a firefighter?s real bunker coat (9722ms) What color are UPS trucks? the Missouri state line -13.812874605923438 What color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (a truck, took my picture at, the Missouri state line) -> the Missouri state line (9722ms) What color are UPS trucks? McGruff -13.818179777032313 What color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (armored trucks, take pictures with, McGruff) -> McGruff (9722ms) What color are UPS trucks? today?s Mini Page -13.838516327769009 What color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (the fire trucks, pictured in, today?s Mini Page) -> today?s Mini Page (9721ms) What color are UPS trucks? FB. -13.857904123977352 What color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (their homes and trucks, then post the pictures to, FB.) -> FB. (9722ms) What color are UPS trucks? the Rhinos and Giraffes -13.895924613545159 What color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (a pickup truck, just took pictures of, the Rhinos and Giraffes) -> the Rhinos and Giraffes (9721ms) What color are UPS trucks? Sue Wiese -14.024928209815847 What color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (a truck driver, is pictured with, Sue Wiese) -> Sue Wiese (9764ms) What color are UPS trucks? brown -14.04905242923435 What color are UPS trucks? -> what color be [ up truck ] ? -> what color be on up truck ? -> $x: ($x, instance of, color) ($x, be on up, truck) -> (brown, Instance Of, color) (Brown, is showing up on, the foliage and water trucks) -> brown (8675ms) What color are UPS trucks? Management -14.086937297782184 What color are UPS trucks? -> what color be [ up truck ] ? -> what color do up truck have ? -> $x: ($x, instance of, color) ($x, do up, truck) -> (Management, Instance Of, four page, color publication) (Management, does n?t keep up, the trucks) -> Management (8674ms) What color are UPS trucks? the body -14.103261961257186 What color are UPS trucks? -> what color be [ up truck ] ? -> what be the color of up truck ? -> what be the color of truck ? -> $x: (truck, color, $x) -> (your car or truck, are painted the same color as, the body) -> the body (9046ms) What color are UPS trucks? the lot -14.110344123958274 What color are UPS trucks? -> what color be [ up truck ] ? -> what be the color of up truck ? -> what be the color of truck ? -> $x: (truck, color, $x) -> ('s truck first and green, was the only color on, the lot) -> the lot (9046ms) What color are UPS trucks? Attached -14.160911370206327 What color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: ($x, be a picture of, truck) -> (Attached, is a picture of, my truck) -> Attached (14929ms) What color are UPS trucks? a wider range -14.172966376403588 What color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (The Hustler truck, should picture, a wider range) -> a wider range (9764ms) What color are UPS trucks? the bottom -14.222251421431096 What color are UPS trucks? -> what color be [ up truck ] ? -> what be up truck trail ? -> $x: ($x, be up, truck trail) -> $x: ($x, up, truck trail) -> (the bottom, walk up to, the Santiago Truck Trail gate) -> the bottom (6631ms) What color are UPS trucks? Mike -14.230195131320837 What color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (the truck, took this picture by, Mike) -> Mike (9764ms) What color are UPS trucks? June 7 , 1930 -14.255548057862992 What color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: ($x, be a picture of, truck) -> (June 7 , 1930, Here is a picture of, the giant transport truck) -> June 7 , 1930 (14929ms) What color are UPS trucks? guys -15.018524532157098 What color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> $x: ($x, be a picture of up, truck) -> $x: ($x, picture of up, truck) -> (guys, post up pictures of, your trucks) -> guys (6631ms) What color are UPS trucks? the chocolate sandwich cookie -15.340819008631769 What color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (the truck, was a picture of, the chocolate sandwich cookie) -> the chocolate sandwich cookie (9763ms) What color are UPS trucks? the blockades -15.50013260588314 What color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (trucks, are pictured during, the blockades) -> the blockades (9764ms) What color are UPS trucks? mortar -15.519466274528805 What color are UPS trucks? -> what color be [ up truck ] ? -> what color be in up truck ? -> $x: ($x, instance of, color) ($x, be in up, truck) -> (mortar, Instance Of, colored material) (Mortar, was brought up in, 15 cwt truck) -> mortar (12984ms) What color are UPS trucks? the future -15.524741183755298 What color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (This truck, is a picture of, the future) -> the future (9805ms) What color are UPS trucks? brownie -15.612004469912861 What color are UPS trucks? -> what color be [ up truck ] ? -> what color be on up truck ? -> $x: ($x, instance of, color) ($x, be on up, truck) -> (brownie, Instance Of, dark-colored food) (Brownie, was stealthily sneaking up on, an old red pick-up truck) -> brownie (8713ms) What color are UPS trucks? the back -15.802518854102075 What color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (six service trucks, display his picture on, the back) -> the back (9805ms) What color are UPS trucks? the injury -15.821087032036578 What color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (your car or truck, take pictures of, the injury) -> the injury (9806ms) What color are UPS trucks? the fire -15.900664809478874 What color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (my truck, take pictures of, the fire) -> the fire (9805ms) What color are UPS trucks? the materials -15.930662947904967 What color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (the truck, takes a digital picture of, the materials) -> the materials (9806ms) What color are UPS trucks? the truck -15.961609893561707 What color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (his ?Truth Truck ?, started taking pictures of, the truck) -> the truck (9805ms) What color are UPS trucks? knitters -16.010294672072785 What color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: ($x, be a picture of, truck) -> (knitters, here is a picture of, Butch Trucks) -> knitters (14929ms) What color are UPS trucks? the sides -16.032345701588447 What color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (the Truth Truck, has these pictures on, the sides) -> the sides (9911ms) What color are UPS trucks? the group -16.066009774575733 What color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (A truck, took pictures of, the group) -> the group (9910ms) What color are UPS trucks? often -16.40579531203946 What color are UPS trucks? -> what color be [ up truck ] ? -> what be the color of up truck ? -> what be the color of truck ? -> $x: (truck, color, $x) -> (cars and trucks, trendsetting paint colors, often) -> often (9085ms) What color are UPS trucks? pages -16.445212508961895 What color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (the the truck, pictured on, pages) -> pages (9911ms) What color are UPS trucks? the box -17.026161550767856 What color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (the truck, pictured on, the box) -> the box (9910ms) What color are UPS trucks? the post -17.363030155925987 What color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (The Graebel truck, pictured in, the post) -> the post (9911ms) What color are UPS trucks? above -17.56353537352184 What color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (the truck, pictured, above) -> above (9910ms) What color are UPS trucks? below -17.671213551755027 What color are UPS trucks? -> what color be [ up truck ] ? -> what be a picture of up truck ? -> what be a picture of truck ? -> $x: (truck, picture, $x) -> (the truck, pictured, below) -> below (9985ms) Who was Carolyn Bessette Kennedy married to? John F. Kennedy Jr. -10.073480677960209 Who was Carolyn Bessette Kennedy married to? -> who be [ carolyn bessette kennedy ] marry to ? -> who marry carolyn bessette kennedy ? -> $x: ($x, marry, carolyn bessette kennedy) -> $x: (carolyn bessette kennedy, be the wife of, $x) -> (Carolyn Bessette-Kennedy, was the wife of, John F. Kennedy Jr.) -> John F. Kennedy Jr. (5117ms) What books has Walter Mosley written? Fear of the Dark -1.2264489321536678 What books has Walter Mosley written? -> $x: ($x, instance of, books) (Walter Mosley, written, $x) -> (Fear of the Dark, Instance Of, book) (Walter Mosley, Works written, Fear of the Dark) -> Fear of the Dark (2944ms) What books has Walter Mosley written? Fortunate Son -1.3602917274457678 What books has Walter Mosley written? -> $x: ($x, instance of, books) (Walter Mosley, written, $x) -> (Fortunate Son, Instance Of, book) (Walter Mosley, Works written, Fortunate Son) -> Fortunate Son (2944ms) What books has Walter Mosley written? Fear Itself -1.7558782550286507 What books has Walter Mosley written? -> $x: ($x, instance of, books) (Walter Mosley, written, $x) -> (Fear Itself, Instance Of, book) (Walter Mosley, Works written, Fear itself) -> Fear Itself (3179ms) What books has Walter Mosley written? What Comes Next -1.7675604837372618 What books has Walter Mosley written? -> $x: ($x, instance of, books) (Walter Mosley, written, $x) -> (What Comes Next, Instance Of, book) (Walter Mosley, Works written, What next) -> What Comes Next (3179ms) What books has Walter Mosley written? Blonde Faith -2.0408038598361835 What books has Walter Mosley written? -> $x: ($x, instance of, books) (Walter Mosley, written, $x) -> (Blonde Faith, Instance Of, excellent book) (Walter Mosley, Works written, Blonde Faith) -> Blonde Faith (4237ms) What books has Walter Mosley written? Life Out of Context -2.088700858876228 What books has Walter Mosley written? -> $x: ($x, instance of, books) (Walter Mosley, written, $x) -> (Life Out of Context, Instance Of, book) (Walter Mosley, Works written, Life Out of Context) -> Life Out of Context (4237ms) What books has Walter Mosley written? RL's Dream -2.1626658631047393 What books has Walter Mosley written? -> $x: ($x, instance of, books) (Walter Mosley, written, $x) -> (RL's Dream, Instance Of, good book) (Walter Mosley, Works written, RL's dream) -> RL's Dream (4237ms) What books has Walter Mosley written? Killing Johnny Fry -2.179723623180954 What books has Walter Mosley written? -> $x: ($x, instance of, books) (Walter Mosley, written, $x) -> (Killing Johnny Fry, Instance Of, serious book) (Walter Mosley, Works written, Killing Johnny Fry) -> Killing Johnny Fry (4965ms) What books has Walter Mosley written? Devil in a blue dress -2.3389592348307637 What books has Walter Mosley written? -> $x: ($x, instance of, books) (Walter Mosley, written, $x) -> (Devil in a blue dress, Instance Of, outstanding book) (Walter Mosley, Works written, Devil in a Blue Dress) -> Devil in a blue dress (4965ms) What books has Walter Mosley written? Devil in a Blue Dress -2.3976359560654825 What books has Walter Mosley written? -> $x: ($x, instance of, books) (Walter Mosley, written, $x) -> (Devil in a Blue Dress, Instance Of, rich and beautiful book) (Walter Mosley, Works written, Devil in a Blue Dress) -> Devil in a Blue Dress (4965ms) What books has Walter Mosley written? CINNAMON KISS -2.4403838787550614 What books has Walter Mosley written? -> $x: ($x, instance of, books) (Walter Mosley, written, $x) -> (CINNAMON KISS, Instance Of, ambitious and exciting book) (Walter Mosley, Works written, Cinnamon Kiss) -> CINNAMON KISS (4965ms) What books has Walter Mosley written? The Wave -2.5586519971607635 What books has Walter Mosley written? -> $x: ($x, instance of, books) (Walter Mosley, written, $x) -> (The Wave, Instance Of, good book) (Walter Mosley, Works written, The wave) -> The Wave (5079ms) What books has Walter Mosley written? Fortunate Sons -3.0947149495122215 What books has Walter Mosley written? -> $x: ($x, instance of, books) (Walter Mosley, written, $x) -> (Fortunate Sons, Instance Of, well-written, engaging book) (Walter Mosley, Works written, Fortunate Son) -> Fortunate Sons (5129ms) What books has Walter Mosley written? Blue light -3.7371075078326403 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> how many book do walter mosley have ? -> $x: (walter mosley, book, $x) -> (Walter Mosley, Book editions published, Blue light) -> Blue light (14727ms) What books has Walter Mosley written? Always outnumbered, always outgunned -4.467704855071653 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> how many book do walter mosley have ? -> $x: (walter mosley, book, $x) -> (Walter Mosley, Book editions published, Always outnumbered, always outgunned) -> Always outnumbered, always outgunned (14727ms) What books has Walter Mosley written? Always Outnumbered Always Outgunned -4.467704855071653 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> how many book do walter mosley have ? -> $x: (walter mosley, book, $x) -> (Walter Mosley, Book editions published, Always Outnumbered Always Outgunned) -> Always Outnumbered Always Outgunned (14727ms) What books has Walter Mosley written? Always Outnumbered, Always Outgunned -4.467704855071653 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> how many book do walter mosley have ? -> $x: (walter mosley, book, $x) -> (Walter Mosley, Book editions published, Always Outnumbered, Always Outgunned) -> Always Outnumbered, Always Outgunned (14727ms) What books has Walter Mosley written? Always Outnumbered Always Outgunned Uk -4.5651654317414 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> how many book do walter mosley have ? -> $x: (walter mosley, book, $x) -> (Walter Mosley, Book editions published, Always Outnumbered Always Outgunned Uk) -> Always Outnumbered Always Outgunned Uk (14727ms) What books has Walter Mosley written? A Little Yellow Dog -4.5651654317414 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> how many book do walter mosley have ? -> $x: (walter mosley, book, $x) -> (Walter Mosley, Book editions published, A Little Yellow Dog) -> A Little Yellow Dog (14727ms) What books has Walter Mosley written? Blue Light (Five Star) -4.5651654317414 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> how many book do walter mosley have ? -> $x: (walter mosley, book, $x) -> (Walter Mosley, Book editions published, Blue Light (Five Star)) -> Blue Light (Five Star) (14727ms) What books has Walter Mosley written? Devil in a blue dress. -4.64763207353888 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> how many book do walter mosley have ? -> $x: (walter mosley, book, $x) -> (Walter Mosley, Book editions published, Devil in a blue dress.) -> Devil in a blue dress. (14968ms) What books has Walter Mosley written? What next -4.768128272116576 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, What next) -> What next (14968ms) What books has Walter Mosley written? Devil in a Blue Dress (Five Star) -4.779578700414845 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> how many book do walter mosley have ? -> $x: (walter mosley, book, $x) -> (Walter Mosley, Book editions published, Devil in a Blue Dress (Five Star)) -> Devil in a Blue Dress (Five Star) (14967ms) What books has Walter Mosley written? Devil in a Blue Dress (Easy Rowlins Mysteries) -4.833182017583206 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> how many book do walter mosley have ? -> $x: (walter mosley, book, $x) -> (Walter Mosley, Book editions published, Devil in a Blue Dress (Easy Rowlins Mysteries)) -> Devil in a Blue Dress (Easy Rowlins Mysteries) (14968ms) What books has Walter Mosley written? DEVIL IN A BLUE DRESS (Easy Rawlins Mysteries) -4.833182017583206 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> how many book do walter mosley have ? -> $x: (walter mosley, book, $x) -> (Walter Mosley, Book editions published, DEVIL IN A BLUE DRESS (Easy Rawlins Mysteries)) -> DEVIL IN A BLUE DRESS (Easy Rawlins Mysteries) (14968ms) What books has Walter Mosley written? Devil in a Blue Dress (Easy Rawlins Mysteries (Audio)) -4.880479062143525 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> how many book do walter mosley have ? -> $x: (walter mosley, book, $x) -> (Walter Mosley, Book editions published, Devil in a Blue Dress (Easy Rawlins Mysteries (Audio))) -> Devil in a Blue Dress (Easy Rawlins Mysteries (Audio)) (14967ms) What books has Walter Mosley written? Fear itself -5.339896988579095 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Fear itself) -> Fear itself (15068ms) What books has Walter Mosley written? Blue Light -5.625923986025282 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Blue Light) -> Blue Light (15069ms) What books has Walter Mosley written? Walter Mosely Omnibus -5.721874369097153 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Walter Mosely Omnibus) -> Walter Mosely Omnibus (15068ms) What books has Walter Mosley written? Black Betty -5.869265832066873 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Black Betty) -> Black Betty (15068ms) What books has Walter Mosley written? Muerte Escarlata -5.869265832066873 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Muerte Escarlata) -> Muerte Escarlata (15068ms) What books has Walter Mosley written? White Butterfly -5.869265832066873 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, White Butterfly) -> White Butterfly (15068ms) What books has Walter Mosley written? Fearless Jones -5.869265832066873 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Fearless Jones) -> Fearless Jones (15068ms) What books has Walter Mosley written? Little Scarlet -5.869265832066873 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Little Scarlet) -> Little Scarlet (15156ms) What books has Walter Mosley written? GONE FISHIN -5.906478528163188 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, GONE FISHIN) -> GONE FISHIN (15156ms) What books has Walter Mosley written? Always Outnumbered -5.947234293402671 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Film writing credits, Always Outnumbered) -> Always Outnumbered (15156ms) What books has Walter Mosley written? RL's dream -5.95354164381441 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, RL's dream) -> RL's dream (15156ms) What books has Walter Mosley written? Socrates' Welt -5.95354164381441 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Socrates' Welt) -> Socrates' Welt (15156ms) What books has Walter Mosley written? de Pesca -5.95354164381441 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, de Pesca) -> de Pesca (15156ms) What books has Walter Mosley written? novel -6.001537129757501 What books has Walter Mosley written? -> $x: ($x, instance of, books) (Walter Mosley, written, $x) -> (novel, Instance Of, book) (Walter Mosley, took a break from writing, novels) -> novel (5789ms) What books has Walter Mosley written? Walkin' the dog -6.0315101051502085 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Walkin' the dog) -> Walkin' the dog (15199ms) What books has Walter Mosley written? EL CASO BROWN -6.0315101051502085 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, EL CASO BROWN) -> EL CASO BROWN (15156ms) What books has Walter Mosley written? Six easy pieces -6.0315101051502085 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Six easy pieces) -> Six easy pieces (15199ms) What books has Walter Mosley written? Un Perro Amarillo -6.0315101051502085 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Un Perro Amarillo) -> Un Perro Amarillo (15199ms) What books has Walter Mosley written? La mariposa blanca -6.0315101051502085 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, La mariposa blanca) -> La mariposa blanca (15199ms) What books has Walter Mosley written? The Tempest Tales -6.075289747616461 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, The Tempest Tales) -> The Tempest Tales (15199ms) What books has Walter Mosley written? La musique du diable -6.09648382293004 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, La musique du diable) -> La musique du diable (15233ms) What books has Walter Mosley written? Um demo?nio vestido de azul -6.151461584128359 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Um demo?nio vestido de azul) -> Um demo?nio vestido de azul (15233ms) What books has Walter Mosley written? The Man in My Basement -6.151461584128359 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, The Man in My Basement) -> The Man in My Basement (15233ms) What books has Walter Mosley written? Blues de Los Suenos Rotos -6.151461584128359 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Blues de Los Suenos Rotos) -> Blues de Los Suenos Rotos (15233ms) What books has Walter Mosley written? Fische fangen -6.156752150928602 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Fische fangen) -> Fische fangen (15232ms) What books has Walter Mosley written? Papillon blanc -6.156752150928602 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Papillon blanc) -> Papillon blanc (15233ms) What books has Walter Mosley written? Easy Rawlins Mysteries -6.1734120850231085 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Series Written (or Contributed To), Easy Rawlins Mysteries) -> Easy Rawlins Mysteries (15265ms) What books has Walter Mosley written? 47 -6.25080431851806 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, 47) -> 47 (15265ms) What books has Walter Mosley written? Bad Boy Brawly Brown: An Easy Rawlins Mystery -6.275161546824577 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Bad Boy Brawly Brown: An Easy Rawlins Mystery) -> Bad Boy Brawly Brown: An Easy Rawlins Mystery (15265ms) What books has Walter Mosley written? Workin' on the Chain Gang: Shaking Off the Dead Hand of History -6.3597983634062 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Workin' on the Chain Gang: Shaking Off the Dead Hand of History) -> Workin' on the Chain Gang: Shaking Off the Dead Hand of History (15265ms) What books has Walter Mosley written? Transgressions Vol. 3 -6.424067565930946 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Transgressions Vol. 3) -> Transgressions Vol. 3 (15265ms) What books has Walter Mosley written? Red Death -6.479262183763334 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Red Death) -> Red Death (15298ms) What books has Walter Mosley written? Futureland -6.5499652087041245 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Futureland) -> Futureland (15298ms) What books has Walter Mosley written? Diablerie -6.5499652087041245 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Diablerie) -> Diablerie (15298ms) What books has Walter Mosley written? Cinnamon Kiss -6.882764555160634 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, Cinnamon Kiss) -> Cinnamon Kiss (15298ms) What books has Walter Mosley written? The wave -7.658029057167201 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, The wave) -> The wave (15520ms) What books has Walter Mosley written? Novels -7.696041167163703 What books has Walter Mosley written? -> $x: ($x, instance of, books) (Walter Mosley, written, $x) -> $x: ($x, be the most popular form of, books) (Walter Mosley, written, $x) -> (Novels, are the most popular form of, books) (Walter Mosley, took a break from writing, novels) -> Novels (5995ms) What books has Walter Mosley written? The right mistake -7.865512294132332 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, Works written, The right mistake) -> The right mistake (15520ms) What books has Walter Mosley written? Red Mask of Death -7.986233648385568 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> how many poem do walter mosley write ? -> $x: ($x, instance of, poem) (walter mosley, write, $x) -> (Red Mask of Death, Instance Of, narrative poem) (Walter Mosley, Works written, Red Death) -> Red Mask of Death (15520ms) What books has Walter Mosley written? Response -8.503960575374236 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> how many book do walter mosley make ? -> $x: ($x, instance of, book) (walter mosley, make, $x) -> (Response, Instance Of, book) (Walter Mosley, was made in, response) -> Response (14466ms) What books has Walter Mosley written? the novel -8.828432788220663 What books has Walter Mosley written? -> $x: ($x, instance of, books) (Walter Mosley, written, $x) -> $x: ($x, be a by, books) (Walter Mosley, written, $x) -> (the novel, will be a featured alternate selection by, Book) (Walter Mosley, took a break from writing, novels) -> the novel (9966ms) What books has Walter Mosley written? fiction -9.500819597745997 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> how many book have walter mosley publish ? -> $x: ($x, instance of, book) (walter mosley, publish, $x) -> (fiction, Instance Of, book) (Walter Mosley, has published, fiction) -> fiction (14466ms) What books has Walter Mosley written? The novel -10.16219277626174 What books has Walter Mosley written? -> $x: ($x, instance of, books) (Walter Mosley, written, $x) -> $x: ($x, be the kind of, books) (Walter Mosley, written, $x) -> (The novel, was the kind of, book) (Walter Mosley, took a break from writing, novels) -> The novel (13613ms) What books has Walter Mosley written? novels -11.24681043958462 What books has Walter Mosley written? -> what book have [ walter mosley ] write ? -> what do walter mosley write ? -> $x: (walter mosley, write, $x) -> (Walter Mosley, took a break from writing, novels) -> novels (15552ms) What was the name of Ayn Rand's husband? Cardiovascular disease -9.071744071186155 What was the name of Ayn Rand's husband? -> what be the name of [ ayn rand s ] husband ? -> when be ayn rand s death ? -> $x: (ayn rand, death, $x) -> (Ayn Rand, Cause of death, Cardiovascular disease) -> Cardiovascular disease (8799ms) What was the name of Ayn Rand's husband? New York City -9.443202051103158 What was the name of Ayn Rand's husband? -> what be the name of [ ayn rand s ] husband ? -> when be ayn rand s death ? -> $x: (ayn rand, death, $x) -> (Ayn Rand, Place of death, New York City) -> New York City (8798ms) What was the name of Ayn Rand's husband? 1982-03-06 -9.509652118087068 What was the name of Ayn Rand's husband? -> what be the name of [ ayn rand s ] husband ? -> when be ayn rand s death ? -> $x: (ayn rand, death, $x) -> (Ayn Rand, Date of death, 1982-03-06) -> 1982-03-06 (8798ms) What was the name of Ayn Rand's husband? 1920 -11.596814567690998 What was the name of Ayn Rand's husband? -> what be the name of [ ayn rand ] s husband ? -> what be ayn rand s inspiration ? -> $x: (ayn rand, inspiration, $x) -> (Ayn Rand, found early inspiration in, 1920) -> 1920 (7288ms) What was the name of Ayn Rand's husband? values -12.021500557881584 What was the name of Ayn Rand's husband? -> what be the name of [ ayn rand ] s husband ? -> what be ayn rand s interest ? -> $x: (ayn rand, interest, $x) -> (Ayn Rand, shows an interesting balance of, values) -> values (7289ms) What is Africa's largest country? Africa -3.2670816707989547 What is Africa's largest country? -> $x: (Africa, largest country, $x) -> (South Africa, is the tenth largest country in, Africa) -> Africa (6805ms) What is Africa's largest country? crossword puzzle clue -3.931523224772496 What is Africa's largest country? -> $x: (Africa's largest country, instance of, $x) -> (Africa's largest country, Instance Of, crossword puzzle clue) -> crossword puzzle clue (6805ms) What is Africa's largest country? society of different religious, ethnic and social group -4.10684443656873 What is Africa's largest country? -> $x: (Africa's largest country, instance of, $x) -> (Africa's largest country, Instance Of, society of different religious, ethnic and social group) -> society of different religious, ethnic and social group (6805ms) What is Africa's largest country? South East Asia -9.591250552441362 What is Africa's largest country? -> what be africa [ s largest country ] ? -> what be india s largest country ? -> $x: (india, largest country, $x) -> (India, is the largest country in, South East Asia) -> South East Asia (19569ms) What is Africa's largest country? DR Congo -9.799037574094255 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (DR Congo, is the third largest country in, Africa) -> DR Congo (18203ms) What is Africa's largest country? South Africa -9.94254442223492 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (South Africa, is the tenth largest country in, Africa) -> South Africa (18203ms) What is Africa's largest country? ? Tanzania -10.14573006006131 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (? Tanzania, is the largest country in, East Africa) -> ? Tanzania (18203ms) What is Africa's largest country? Ethiopia -10.25236375951461 What is Africa's largest country? -> what [ be africa s ] largest country ? -> what be be africa s largest country ? -> $x: ($x, be be, africa s largest country) -> (Ethiopia, is one of, Africa ?s largest countries) -> Ethiopia (14789ms) What is Africa's largest country? land mass -10.398136343663031 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (land mass, is the largest country in, Africa) -> land mass (18203ms) What is Africa's largest country? Sudan Sudan -10.415714479271244 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Sudan Sudan, is the largest country in, Africa) -> Sudan Sudan (18203ms) What is Africa's largest country? Southern Sudan Sudan -10.460542783546975 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Southern Sudan Sudan, is the largest country in, Africa) -> Southern Sudan Sudan (18203ms) What is Africa's largest country? OPEC -10.490933475593627 What is Africa's largest country? -> what [ be africa s ] largest country ? -> what be be africa s largest country ? -> $x: ($x, be be, africa s largest country) -> (OPEC, is, Africa ?s 2nd largest oil producing country) -> OPEC (14789ms) What is Africa's largest country? Eastern Algeria Algeria -10.494534540200007 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Eastern Algeria Algeria, is the largest country in, Africa) -> Eastern Algeria Algeria (18254ms) What is Africa's largest country? Algeria Algeria -10.52786448176401 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Algeria Algeria, is the second largest country in, Africa) -> Algeria Algeria (18254ms) What is Africa's largest country? Darfur Context Sudan -10.538287520842047 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Darfur Context Sudan, is the largest country in, Africa) -> Darfur Context Sudan (18254ms) What is Africa's largest country? Tanzania Tanzania -10.567135928666623 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Tanzania Tanzania, is the largest country in, East Africa) -> Tanzania Tanzania (18254ms) What is Africa's largest country? Angola Angola -10.57377818621902 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Angola Angola, is the seventh largest country in, Africa) -> Angola Angola (18254ms) What is Africa's largest country? Sudan -10.587677311113527 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Sudan, was also the largest country in, Africa) -> Sudan (18254ms) What is Africa's largest country? Shi? Islam -10.594842079005335 What is Africa's largest country? -> what be africa [ s largest country ] ? -> what be india s largest country ? -> $x: (india, largest country, $x) -> (India, is also the second largest country of, Shi? Islam) -> Shi? Islam (19569ms) What is Africa's largest country? Nigeria -10.606057031615208 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Nigeria, is the largest country in, Africa) -> Nigeria (18284ms) What is Africa's largest country? The DRC -10.619546768037308 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (The DRC, is the largest country in, Africa) -> The DRC (18284ms) What is Africa's largest country? Libya -10.623200149782498 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Libya, is the fourth largest country in, Africa) -> Libya (18284ms) What is Africa's largest country? Mali -10.647251084418816 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Mali, is the seventh largest country in, Africa) -> Mali (18284ms) What is Africa's largest country? Program Sudan -10.648115360679697 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Program Sudan, is the largest country in, Africa) -> Program Sudan (18284ms) What is Africa's largest country? Tanzania -10.651734309839116 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Tanzania, is the largest country in, East Africa) -> Tanzania (18315ms) What is Africa's largest country? Chad -10.659385237736107 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Chad, is the fifth largest country in, Africa) -> Chad (18315ms) What is Africa's largest country? Overview Algeria -10.660037209263901 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Overview Algeria, is the second largest country in, Africa) -> Overview Algeria (18315ms) What is Africa's largest country? French StampAlgeria -10.673512644857441 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (French StampAlgeria, is the second largest country in, Africa) -> French StampAlgeria (18315ms) What is Africa's largest country? South-East Asia -10.673872176703032 What is Africa's largest country? -> what be africa [ s largest country ] ? -> what be india s largest country ? -> $x: (india, largest country, $x) -> (India, is the largest country in, South-East Asia) -> South-East Asia (19569ms) What is Africa's largest country? Algeria -10.675481234057719 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Algeria, is the largest country in, Africa) -> Algeria (18315ms) What is Africa's largest country? Za?re -10.681402281782548 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Za?re, is the second largest country in, Africa) -> Za?re (18448ms) What is Africa's largest country? The Congo/Zaire -10.711990053563284 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (The Congo/Zaire, is the third largest country in, Africa) -> The Congo/Zaire (18783ms) What is Africa's largest country? Rape DR Congo -10.715783954667778 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Rape DR Congo, is the third largest country in, Africa) -> Rape DR Congo (18783ms) What is Africa's largest country? Magola ADP Tanzania -10.740869173777998 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Magola ADP Tanzania, is the largest country in, East Africa) -> Magola ADP Tanzania (18783ms) What is Africa's largest country? nearly twice the size -10.750267698631198 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (nearly twice the size, is the largest country in, West Africa) -> nearly twice the size (18783ms) What is Africa's largest country? ARMED RESISTANCE Sudan -10.751261401248122 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (ARMED RESISTANCE Sudan, is the largest country in, Africa) -> ARMED RESISTANCE Sudan (18856ms) What is Africa's largest country? Namibia -10.752073574384326 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Namibia, is the fifth largest country in, Africa) -> Namibia (18856ms) What is Africa's largest country? Niger -10.765008844841914 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Niger, is the largest country in, West Africa) -> Niger (18856ms) What is Africa's largest country? Nile Water Resources Sudan -10.778070045071964 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Nile Water Resources Sudan, is the largest country in, Africa) -> Nile Water Resources Sudan (18856ms) What is Africa's largest country? More African Genocide Sudan -10.852342651405387 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (More African Genocide Sudan, is the largest country in, Africa) -> More African Genocide Sudan (18890ms) What is Africa's largest country? 1 . Algeria -11.02031386768137 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (1 . Algeria, is the second largest country in, Africa) -> 1 . Algeria (18890ms) What is Africa's largest country? United States -11.08072227961922 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what largest country be in south africa ? -> $x: ($x, instance of, largest country) ($x, be in, south africa) -> (United States, Instance Of, largest country) (the United States and, are in, South Africa) -> United States (17666ms) What is Africa's largest country? The Congo -11.10715069278612 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (The Congo, is the second largest country in, the Africa) -> The Congo (18936ms) What is Africa's largest country? The Sudan -11.271070473232257 What is Africa's largest country? -> what [ be africa s ] largest country ? -> what be be africa s largest country ? -> $x: ($x, be be, africa s largest country) -> (The Sudan, is, Africa 's largest country) -> The Sudan (14790ms) What is Africa's largest country? 2010 Sudan -11.397005806595073 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (2010 Sudan, is the largest country in, Africa) -> 2010 Sudan (18920ms) What is Africa's largest country? Congo -11.468682122309914 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what be the largest largest country in africa ? -> $x: ($x, be the largest largest country in, africa) -> (Congo, is the second largest country in, Sub-Saharan Africa) -> Congo (18920ms) What is Africa's largest country? India -11.675332838036292 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what largest country be in south africa ? -> $x: ($x, instance of, largest country) ($x, be in, south africa) -> (India, Instance Of, largest country) (India, there are in, South Africa) -> India (17790ms) What is Africa's largest country? Brazil -11.706734454071897 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what largest country be in south africa ? -> $x: ($x, instance of, largest country) ($x, be in, south africa) -> (Brazil, Instance Of, largest country) (Brazil, is going to stay in, South Africa) -> Brazil (17790ms) What is Africa's largest country? China -11.718036452884368 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what largest country be in south africa ? -> $x: ($x, instance of, largest country) ($x, be in, south africa) -> (China, Instance Of, largest country) (China, is higher than in, South Africa) -> China (17790ms) What is Africa's largest country? Argentina -11.78271011222743 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what largest country be in south africa ? -> $x: ($x, instance of, largest country) ($x, be in, south africa) -> (Argentina, Instance Of, largest country) (Argentina, has been slowly happening in, South Africa) -> Argentina (17790ms) What is Africa's largest country? Russia -11.812668553893232 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what largest country be in south africa ? -> $x: ($x, instance of, largest country) ($x, be in, south africa) -> (Russia, Instance Of, largest country) (Russia, was willing to spend in, South Africa) -> Russia (17821ms) What is Africa's largest country? Mexico -11.842560152750293 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what largest country be in south africa ? -> $x: ($x, instance of, largest country) ($x, be in, south africa) -> (Mexico, Instance Of, largest country) (Mexico, should be feared in, South Africa) -> Mexico (17821ms) What is Africa's largest country? France -11.860969784604563 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what largest country be in south africa ? -> $x: ($x, instance of, largest country) ($x, be in, south africa) -> (France, Instance Of, largest world country) (France, was a complete disgrace in, South Africa) -> France (18964ms) What is Africa's largest country? Israel -11.954949610473896 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what largest country be in south africa ? -> $x: ($x, instance of, largest country) ($x, be in, south africa) -> (Israel, Instance Of, largest country) (Israel, was done in, South Africa) -> Israel (19202ms) What is Africa's largest country? Australia -11.977390130268406 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what largest country be in south africa ? -> $x: ($x, instance of, largest country) ($x, be in, south africa) -> (Australia, Instance Of, largest country) (Australia, are in, South Africa) -> Australia (19202ms) What is Africa's largest country? Japan -11.981387378238153 What is Africa's largest country? -> what be africa s [ largest country ] ? -> what largest country be in south africa ? -> $x: ($x, instance of, largest country) ($x, be in, south africa) -> (Japan, Instance Of, largest country) (Japan, have been manufactured in, South Africa) -> Japan (19201ms) How fast is an eye blink? 0-60 time -9.322241671504498 How fast is an eye blink? -> how fast be [ an eye blink ] ? -> what have be an eye blink ? -> $x: ($x, have be, an eye blink) -> (0-60 time, has been reduced to, an eye-blinking) -> 0-60 time (2772ms) How fast is an eye blink? little Max -15.744073901477257 How fast is an eye blink? -> how fast be [ an eye blink ] ? -> who suggest an eye blink ? -> $x: ($x, suggest, an eye blink) -> $x: ($x, suggest, eye blink) -> $x: ($x, do something, eye blink) -> (little Max, does something short of, blinking his eyes) -> little Max (11763ms) What is Dr. Ruth's last name? Banking Law -9.592841961924421 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (Banking Law, is, Dr. Ruth Plato-Shinar) -> Banking Law (6392ms) What is Dr. Ruth's last name? In-Q-Tel -10.219010417796913 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (In-Q-Tel, are traceable to, Dr. Ruth David) -> In-Q-Tel (6392ms) What is Dr. Ruth's last name? The Career Services Coordinator -10.659749277526608 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (The Career Services Coordinator, is, Dr. Ruth Hendrick) -> The Career Services Coordinator (6392ms) What is Dr. Ruth's last name? a lady -10.76046374446651 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (a lady, was friend of, Dr. Ruth Cook) -> a lady (6392ms) What is Dr. Ruth's last name? An excellent book -10.776556309208855 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (An excellent book, is, the bestseller Dr. Ruth Stout) -> An excellent book (6392ms) What is Dr. Ruth's last name? TCI -10.814608572044094 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (TCI, was created by, the German Dr. Ruth C. Cohn) -> TCI (6392ms) What is Dr. Ruth's last name? Bobbie Stevens Johnson -10.829042410158689 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (Bobbie Stevens Johnson, was invited by, Dr. Ruth E. Cox) -> Bobbie Stevens Johnson (6415ms) What is Dr. Ruth's last name? The Frodo Franchise -10.836223286678111 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (The Frodo Franchise, was, Dr. Ruth Harley) -> The Frodo Franchise (6415ms) What is Dr. Ruth's last name? Pierre A. Lehu -10.868294739625764 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (Pierre A. Lehu, has been, Dr. Ruth?s ?Minister) -> Pierre A. Lehu (6415ms) What is Dr. Ruth's last name? Kyros Ministry -10.893877632026085 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (Kyros Ministry, is led by, Rev. Dr. Kibbie Ruth) -> Kyros Ministry (6415ms) What is Dr. Ruth's last name? The Conference organizer -10.899823820797216 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (The Conference organizer, was, Dr. Ruth Hover) -> The Conference organizer (6415ms) What is Dr. Ruth's last name? An experiment -10.90525695844939 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (An experiment, was conducted by, Dr. Ruth Flinn Harrell) -> An experiment (6415ms) What is Dr. Ruth's last name? the RPSEC -10.935619018424795 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (the RPSEC, was named for, Dr. Ruth Patrick) -> the RPSEC (6482ms) What is Dr. Ruth's last name? Resource people -10.971129810978884 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (Resource people, were, Dr. Duane Ruth-Heffelbower) -> Resource people (6482ms) What is Dr. Ruth's last name? Archivist -10.990733866171364 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (Archivist, was endowed by, Dr. Ruth M. Bell) -> Archivist (6482ms) What is Dr. Ruth's last name? The DARE curriculum -11.003467481953445 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (The DARE curriculum, was created by, Dr. Ruth Rich) -> The DARE curriculum (6483ms) What is Dr. Ruth's last name? A Director?s Software Grant -11.036547089745678 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (A Director?s Software Grant, has been awarded to, Dr. Ruth Craig) -> A Director?s Software Grant (6482ms) What is Dr. Ruth's last name? the Education honoree -11.046263877869492 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (the Education honoree, was, Dr. Ruth Simmons) -> the Education honoree (6482ms) What is Dr. Ruth's last name? Past speakers -11.082201284063146 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, have, dr ruth) -> (Past speakers, have included, Dr. Ruth) -> Past speakers (6503ms) What is Dr. Ruth's last name? Sex -11.104289512990857 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (Sex, has been updated from, Dr. Ruth) -> Sex (6503ms) What is Dr. Ruth's last name? a program -11.132483155626979 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: (dr ruth, do, $x) -> (Dr. Ruth, was doing, a program) -> a program (6503ms) What is Dr. Ruth's last name? the English program -11.143952914108256 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (the English program, are, Dr. Ruth Ellen Porter) -> the English program (6503ms) What is Dr. Ruth's last name? Dummies -11.151251205570794 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (Dummies, is, Dr. Ruth Westheimer) -> Dummies (6503ms) What is Dr. Ruth's last name? Trainers -11.280379221292169 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (Trainers, were, Dr. Duane Ruth-Heffelbower) -> Trainers (6503ms) What is Dr. Ruth's last name? medical ethicists -11.285714338265283 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (medical ethicists, is chaired by, Dr. Ruth Faden) -> medical ethicists (6523ms) What is Dr. Ruth's last name? core curriculum -11.32019802952641 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (core curriculum, was developed by, Dr. Ruth Rich) -> core curriculum (6523ms) What is Dr. Ruth's last name? Training -11.390530788236024 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (Training, was provided by, Dr Ruth Ewing) -> Training (6523ms) What is Dr. Ruth's last name? October 2004 -11.430830080655298 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (October 2004, is, Dr. Ruth Slenczynska) -> October 2004 (6523ms) What is Dr. Ruth's last name? Dr. Alexander -11.543927720548925 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, have, dr ruth) -> (Dr. Alexander, had met with, Dr. Ruth Kirschstein) -> Dr. Alexander (6542ms) What is Dr. Ruth's last name? Merit -11.620263772778234 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (Merit, was awarded to, Dr. Ruth B. Drown) -> Merit (6542ms) What is Dr. Ruth's last name? Friedman -11.621639946489719 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (Friedman, is this generation?s version of, Dr. Ruth?young) -> Friedman (6542ms) What is Dr. Ruth's last name? S101 -11.66407847171896 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (S101, was launched by, struggle veteran Dr Ruth Mompati) -> S101 (6542ms) What is Dr. Ruth's last name? a doctor -11.683663133176111 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: (dr ruth, to be, $x) -> (Dr. Ruth, claims to be, a doctor) -> a doctor (8475ms) What is Dr. Ruth's last name? a researcher -11.688336358762873 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, have, dr ruth) -> (a researcher, had the unlikely name of, Dr. Ruth Firer) -> a researcher (6542ms) What is Dr. Ruth's last name? Flannery -11.706617284391553 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (Flannery, is, the Dr. Semi J. and Ruth W. Begun professor) -> Flannery (6561ms) What is Dr. Ruth's last name? Studies -11.754950306437065 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (Studies, is, Dr Ruth Scurr) -> Studies (6561ms) What is Dr. Ruth's last name? Speaker -11.951321719187362 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (Speaker, will be, Dr Ruth David) -> Speaker (6561ms) What is Dr. Ruth's last name? Acting Director -11.967136584658652 What is Dr. Ruth's last name? -> what be [ dr ruth s ] last name ? -> what be dr ruth s name be ? -> $x: (dr ruth, name, $x) -> (Dr. Ruth L. Kirschstein, is named, Acting Director) -> Acting Director (8314ms) What is Dr. Ruth's last name? January 25 , 2005 MadChatter -11.978504884657081 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (January 25 , 2005 MadChatter, is a blog by, Dr. Ruth Cox Clark) -> January 25 , 2005 MadChatter (6561ms) What is Dr. Ruth's last name? the Department -11.993193729567675 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (the Department, was led by, Dr. Ruth Nussenzweig) -> the Department (6561ms) What is Dr. Ruth's last name? Sharon Mora -12.00778410888665 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (Sharon Mora, had been named, the Dr. Ruth Wright Hayre Teacher) -> Sharon Mora (6561ms) What is Dr. Ruth's last name? the Center -12.0565420077945 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, have, dr ruth) -> (the Center, has received from, Dr. Ruth Kirschstein) -> the Center (6580ms) What is Dr. Ruth's last name? The trial -12.121258714767956 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (The trial, was headed by, Dr. Ruth S. Sy) -> The trial (6580ms) What is Dr. Ruth's last name? honor -12.260664295425597 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (honor, was, Dr. Ruth) -> honor (6580ms) What is Dr. Ruth's last name? the University -12.366543476634767 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (the University, is directed by, Drs Ruth Cameron) -> the University (6580ms) What is Dr. Ruth's last name? Dude -12.368222502198634 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, have, dr ruth) -> (Dude, may have a career as, the new Dr. Ruth) -> Dude (6580ms) What is Dr. Ruth's last name? Sydney -12.392458836159179 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: (dr ruth, to be, $x) -> (Dr Ruth, has been invited to, Sydney) -> Sydney (8475ms) What is Dr. Ruth's last name? WITI Hall -12.436256724794424 What is Dr. Ruth's last name? -> what be [ dr ruth s ] last name ? -> what be dr ruth s name be ? -> $x: (dr ruth, name, $x) -> (CEO Dr. Ruth David, named to, WITI Hall) -> WITI Hall (8314ms) What is Dr. Ruth's last name? The event -12.437550876447583 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (The event, is presented by, Ruth McElroy/Dr Peter Jachimiak) -> The event (6641ms) What is Dr. Ruth's last name? a reboot -12.588335766968854 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: (dr ruth, get, $x) -> (Other Dr. Ruth Apple TV, gets, a reboot) -> a reboot (8475ms) What is Dr. Ruth's last name? Acting Precentor -12.592543546977852 What is Dr. Ruth's last name? -> what be [ dr ruth s ] last name ? -> what be dr ruth s name be ? -> $x: (dr ruth, name, $x) -> (the Revd Dr Ruth Redpath, named, Acting Precentor) -> Acting Precentor (8314ms) What is Dr. Ruth's last name? the second encounter -12.617539196433395 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (the second encounter, was with, Dr. Ruth Westheimer) -> the second encounter (6641ms) What is Dr. Ruth's last name? The report -12.631756396970125 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (The report, was conducted by, Dr. Ruth Graham) -> The report (6641ms) What is Dr. Ruth's last name? The study -12.666632340024254 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (The study, was conducted by, Dr. Ruth Curry) -> The study (6641ms) What is Dr. Ruth's last name? The bequest -12.666632340024254 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (The bequest, was made by, Dr. Ruth Barnhart) -> The bequest (6641ms) What is Dr. Ruth's last name? the grandma -12.675268594568193 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (the grandma, is, Dr. Ruth Westheimer) -> the grandma (6641ms) What is Dr. Ruth's last name? The award -12.690505689067631 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (The award, was presented by, Dr. Ruth Davis) -> The award (6727ms) What is Dr. Ruth's last name? The webinar -12.694627373055646 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (The webinar, will be led by, Dr. Ruth Shuman) -> The webinar (6727ms) What is Dr. Ruth's last name? The garden -12.699347658483187 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (The garden, is named for, Dr. Ruth Storer) -> The garden (6727ms) What is Dr. Ruth's last name? The resolution -12.704810348792558 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (The resolution, was co-sponsored by, the Rev. Dr. Ruth Meyers) -> The resolution (6727ms) What is Dr. Ruth's last name? Israel -12.710137576061475 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: (dr ruth, live, $x) -> (Dr. Ruth Westheimer, had lived in, Israel) -> Israel (8742ms) What is Dr. Ruth's last name? the participants -12.719053610684343 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (the participants, was, Dr. Ruth Stein) -> the participants (6727ms) What is Dr. Ruth's last name? The office -12.769618082936514 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (The office, is directed by, Assistant Provost Dr. Ruth Darling) -> The office (6727ms) What is Dr. Ruth's last name? breastfeeding -12.836381509334803 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (breastfeeding, are illustrated by, Dr. Ruth Lawrence) -> breastfeeding (6747ms) What is Dr. Ruth's last name? the event -12.842074403788022 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (the event, was awarded to, the University?s Dr Ruth Goodridge) -> the event (6747ms) What is Dr. Ruth's last name? the lunch -12.853056895514545 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (the lunch, was, Dr. Ruth Westheimer) -> the lunch (6747ms) What is Dr. Ruth's last name? mind -12.856261140933466 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (mind, is the statement by, Dr. Ruth Drown) -> mind (6747ms) What is Dr. Ruth's last name? the College -12.894541262927035 What is Dr. Ruth's last name? -> what be [ dr ruth s ] last name ? -> what be dr ruth s new name ? -> $x: (dr ruth, new name, $x) -> (Dr. Ruth Fassinger, named new Dean of, the College) -> the College (6747ms) What is Dr. Ruth's last name? The guy -12.925826340645882 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (The guy, is, a younger , taller , less interesting Dr. Ruth) -> The guy (6747ms) What is Dr. Ruth's last name? the position -12.960331843545895 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (the position, may be addressed to, Dr. Ruth Bindler) -> the position (6768ms) What is Dr. Ruth's last name? The project -13.01661695763715 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (The project, is being evaluated by, Dr Doris Ruth Eikhof) -> The project (6768ms) What is Dr. Ruth's last name? PRSSA -13.032817399354817 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: (dr ruth, to be, $x) -> (Dr. Amanda Ruth, is faculty advisor to, PRSSA) -> PRSSA (8475ms) What is Dr. Ruth's last name? The morning -13.051476668412487 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (The morning, was completed by, Dr Ruth Hussey) -> The morning (6768ms) What is Dr. Ruth's last name? The site -13.070929032748086 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (The site, is run by, Dr Ruth McNair) -> The site (6768ms) What is Dr. Ruth's last name? the years -13.076226358583355 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (the years, was a collaborative effort between, Dr. Ruth) -> the years (6769ms) What is Dr. Ruth's last name? attendance -13.169589283599194 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (attendance, were, Dr. Ruth Levy) -> attendance (6768ms) What is Dr. Ruth's last name? guests -13.286458811018814 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: ($x, be, dr ruth) -> (guests, are, Dr. Ruth Westheimer) -> guests (6791ms) What is Dr. Ruth's last name? Kasem -13.430739894134074 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: (dr ruth, come, $x) -> (Dr. Ruth, came on right after, Kasem) -> Kasem (8679ms) What is Dr. Ruth's last name? October 2009 -13.514092730396062 What is Dr. Ruth's last name? -> [ what be dr ruth ] s last name ? -> be what be dr ruth die ? -> $x: (dr ruth, die, $x) -> (Dr. Ruth Kirschstein, died in, October 2009) -> October 2009 (8884ms) What is Dr. Ruth's last name? Nov. 1 , 2000 -13.61574579193831 What is Dr. Ruth's last name? -> [ what be dr ruth ] s last name ? -> be what be dr ruth die ? -> $x: (dr ruth, die, $x) -> (Other Tragic accident Dr. Ruth Michler, died, Nov. 1 , 2000) -> Nov. 1 , 2000 (8884ms) What is Dr. Ruth's last name? August 7 , 2010 -13.64737395070182 What is Dr. Ruth's last name? -> [ what be dr ruth ] s last name ? -> be what be dr ruth die ? -> $x: (dr ruth, die, $x) -> (Dr. Ruth Peters, died on, August 7 , 2010) -> August 7 , 2010 (8884ms) What is Dr. Ruth's last name? vaccines -13.760031452235484 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: (dr ruth, do, $x) -> (the programme Dr Ruth Watkins, did refer to, vaccines) -> vaccines (6791ms) What is Dr. Ruth's last name? quizzed on the article -14.080920138119456 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: (dr ruth, get, $x) -> (Dr. Ruth Westheimer, get, quizzed on the article) -> quizzed on the article (8475ms) What is Dr. Ruth's last name? five parenting tips -14.091927159311457 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: (dr ruth, come, $x) -> (Dr. Ruth Peters, has come up with, five parenting tips) -> five parenting tips (8679ms) What is Dr. Ruth's last name? abstinence -14.546650222113083 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: (dr ruth, give, $x) -> (Dr. Ruth, give talks on, abstinence) -> abstinence (8475ms) What is Dr. Ruth's last name? the first 25 -14.613605904769077 What is Dr. Ruth's last name? -> what be [ dr ruth ] s last name ? -> how many girl do dr ruth have ? -> $x: (dr ruth, girl, $x) -> $x: (dr ruth, go to, $x) -> (Dr. Ruth, goes to, the first 25) -> the first 25 (8740ms) Who is the manager of the Boston Pops? Arthur Fiedler -7.276790816238527 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (The Boston Pops Orchestra, was conducted by, Arthur Fiedler) -> Arthur Fiedler (2471ms) Who is the manager of the Boston Pops? Athah Feedlah -7.296926808322255 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (the Boston Pops, was, Athah Feedlah) -> Athah Feedlah (2472ms) Who is the manager of the Boston Pops? Laureate Conductor -7.635092586827939 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (the Boston Pops Orchestra, is currently, Laureate Conductor) -> Laureate Conductor (2471ms) Who is the manager of the Boston Pops? musical artist -7.6712113780158155 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (The Boston Pops Orchestra, is a, musical artist) -> musical artist (2471ms) Who is the manager of the Boston Pops? world class -7.990192849819314 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (the Boston Pops Orchestra, are, world class) -> world class (2471ms) Who is the manager of the Boston Pops? John Williams -8.271336494315019 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (John Williams, is back conducting, the Boston Pops) -> John Williams (2471ms) Who is the manager of the Boston Pops? The Sinfonietta -8.386900779454578 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (The Sinfonietta, was patterned after, the Boston Pops Orchestra) -> The Sinfonietta (2471ms) Who is the manager of the Boston Pops? popular songs -8.417709875801062 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (The Boston Pops orchestra, is known for playing, popular songs) -> popular songs (2570ms) Who is the manager of the Boston Pops? The Typewriter -8.428522635456321 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (The Typewriter, was often performed by, the Boston Pops) -> The Typewriter (2570ms) Who is the manager of the Boston Pops? famous composer -8.43137476725449 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, instance of, $x) -> (John Williams from the Boston Pops Orchestra, Instance Of, famous composer) -> famous composer (2641ms) Who is the manager of the Boston Pops? Soft Serve Ice Cream -8.472715972535559 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (Soft Serve Ice Cream, are available at, the Boston Pops Stand) -> Soft Serve Ice Cream (2570ms) Who is the manager of the Boston Pops? Neil Diamond -8.479062338140334 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (Neil Diamond, is playing with, the Boston Pops) -> Neil Diamond (2570ms) Who is the manager of the Boston Pops? a must-see -8.605336145674382 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (The Boston Pops, is, a must-see) -> a must-see (2570ms) Who is the manager of the Boston Pops? a coveted job -8.608227316272362 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (the Boston Pops, is, a coveted job) -> a coveted job (2570ms) Who is the manager of the Boston Pops? Mr. Lockhart -8.650158893595492 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (Mr. Lockhart, has been Conductor of, the Boston Pops Orchestra) -> Mr. Lockhart (2569ms) Who is the manager of the Boston Pops? a brand -8.658132832542012 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (The Boston Pops, are, a brand) -> a brand (2641ms) Who is the manager of the Boston Pops? an hour -8.659510812665797 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (the Boston Pops, is only, an hour) -> an hour (2641ms) Who is the manager of the Boston Pops? a winner -8.684268348110272 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (the Boston Pops Orchestra, is, a winner) -> a winner (2641ms) Who is the manager of the Boston Pops? two euro -8.695196012245148 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (the Boston Pops, is a snip at, two euro) -> two euro (2641ms) Who is the manager of the Boston Pops? a special concert -8.713881928406167 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (the Boston Pops, will be hosting, a special concert) -> a special concert (2641ms) Who is the manager of the Boston Pops? a special -8.791390512469416 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (the Boston Pops, was seen as, a special) -> a special (2641ms) Who is the manager of the Boston Pops? Yeo -8.814573454655331 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (Yeo, has been a frequent soloist with, the Boston Pops Orchestra) -> Yeo (2698ms) Who is the manager of the Boston Pops? a popular scheduled highlight -8.837669605628536 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (the Boston Pops Orchestra, was, a popular scheduled highlight) -> a popular scheduled highlight (2698ms) Who is the manager of the Boston Pops? a must -8.84267400886285 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (the annual Boston Pops concert, was, a must) -> a must (2698ms) Who is the manager of the Boston Pops? a regular guest conductor -8.862377026015537 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (the Boston Pops Orchestra, has been, a regular guest conductor) -> a regular guest conductor (2698ms) Who is the manager of the Boston Pops? Arthur Fielder -8.864010429727466 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, instance of, the boston pop) -> (Arthur Fielder, Instance Of, conductor of the Boston Pops Orchestra) -> Arthur Fielder (6675ms) Who is the manager of the Boston Pops? Symphony Hall -8.88027174406665 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (Symphony Hall, is also home to, the acclaimed Boston Pops) -> Symphony Hall (2698ms) Who is the manager of the Boston Pops? national television broadcast -8.90147848727895 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (the Boston Pops, was taped for, national television broadcast) -> national television broadcast (2698ms) Who is the manager of the Boston Pops? a musical special -8.901910758759833 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (The Boston Pops, was also aired as, a musical special) -> a musical special (2698ms) Who is the manager of the Boston Pops? McCoy Stadium -8.902165941087834 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (The Boston Pops, were scheduled to perform at, McCoy Stadium) -> McCoy Stadium (2698ms) Who is the manager of the Boston Pops? huge fan -8.948253578180987 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, instance of, $x) -> (Arthur Fiedler of the Boston Pops, Instance Of, huge fan) -> huge fan (2876ms) Who is the manager of the Boston Pops? AFIO -8.959788645566098 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (AFIO, will be featured in, the Boston Pops June) -> AFIO (2876ms) Who is the manager of the Boston Pops? professor -8.965141585892422 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (The Boston Pops, is currently serving as, professor) -> professor (2876ms) Who is the manager of the Boston Pops? Ernst Schmidt -8.995957056603432 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, instance of, the boston pop) -> (Ernst Schmidt, Instance Of, first violin and conductor of the Boston Pops) -> Ernst Schmidt (6675ms) Who is the manager of the Boston Pops? year many prestigious figure -8.999354645917181 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, instance of, $x) -> (Conductor of the Boston Pops, Instance Of, year many prestigious figure) -> year many prestigious figure (2876ms) Who is the manager of the Boston Pops? John F. Williams -9.004782996229881 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (John F. Williams, is back with, the Boston Pops) -> John F. Williams (2876ms) Who is the manager of the Boston Pops? an audience favorite -9.015972280165549 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (The signature Boston Pops, has long been, an audience favorite) -> an audience favorite (2876ms) Who is the manager of the Boston Pops? more recordings -9.031358098151562 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, have, $x) -> (the Boston Pops, has allegedly made, more recordings) -> more recordings (2876ms) Who is the manager of the Boston Pops? Shaq -9.037761513123815 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (Shaq, was conducting, the Boston Pops) -> Shaq (2876ms) Who is the manager of the Boston Pops? annual University tradition -9.046829954515637 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, instance of, $x) -> (Boston College Family Night at the Pops, Instance Of, annual University tradition) -> annual University tradition (3105ms) Who is the manager of the Boston Pops? cool -9.058419611271312 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (The Boston Pops, is kind of, cool) -> cool (3105ms) Who is the manager of the Boston Pops? Charles Floyd -9.081978674076574 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, instance of, the boston pop) -> (Charles Floyd, Instance Of, annual guest conductor of the Boston Pops Orchestra) -> Charles Floyd (6675ms) Who is the manager of the Boston Pops? a wide range -9.098457851841431 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (a wide range, is also home to, the Boston Pops) -> a wide range (3105ms) Who is the manager of the Boston Pops? official Santa-sanctioned, Humbug-squashing activity -9.12038827951456 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, instance of, $x) -> (Christmas Pops with the Boston Festival Orchestra, Instance Of, official Santa-sanctioned, Humbug-squashing activity) -> official Santa-sanctioned, Humbug-squashing activity (3105ms) Who is the manager of the Boston Pops? the Van Wezel -9.145320310824793 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (The Boston Pops, is always a sellout at, the Van Wezel) -> the Van Wezel (3105ms) Who is the manager of the Boston Pops? jazz and blues -9.154608398798675 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, have, $x) -> (the Boston Pops, has plenty of, jazz and blues) -> jazz and blues (3105ms) Who is the manager of the Boston Pops? irreplaceable New England landmark -9.16243009690151 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, instance of, $x) -> (home of the BSO and Boston Pops, Symphony Hall, Instance Of, irreplaceable New England landmark) -> irreplaceable New England landmark (3105ms) Who is the manager of the Boston Pops? David Mugar -9.188200160294679 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, executive, $x) -> (Boston Pops Fireworks Spectacular 2009, Executive produced by, David Mugar) -> David Mugar (8731ms) Who is the manager of the Boston Pops? tops -9.188685160222365 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (the Boston Pops, was, tops) -> tops (3105ms) Who is the manager of the Boston Pops? Kay Hanley -9.199701402107175 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: ($x, be, boston pop) -> (Kay Hanley, is the former lead singer of, Boston alt-pop band) -> Kay Hanley (3258ms) Who is the manager of the Boston Pops? Casella -9.24910145848433 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (Casella, was the principal conductor of, the Boston Pops) -> Casella (3258ms) Who is the manager of the Boston Pops? the Boston Symphony -9.272534676471578 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (The Boston Pops, was founded by, the Boston Symphony) -> the Boston Symphony (3258ms) Who is the manager of the Boston Pops? New York City -9.33500131149584 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, have, $x) -> (the Boston Pops Orchestra, has performed in, New York City) -> New York City (3445ms) Who is the manager of the Boston Pops? the Deutsche Opera -9.359164343452916 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (the Deutsche Opera, was closely associated with, the Boston POPS) -> the Deutsche Opera (3444ms) Who is the manager of the Boston Pops? Nantucket -9.464756830650906 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (the Boston Pops, will be on, Nantucket) -> Nantucket (3444ms) Who is the manager of the Boston Pops? scores -9.49967008363617 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (scores, have been performed by, the Boston Pops) -> scores (3444ms) Who is the manager of the Boston Pops? a way -9.567824426250144 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, have, $x) -> (The Boston Pops, has, a way) -> a way (3444ms) Who is the manager of the Boston Pops? the vision -9.612258386854515 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (The Boston Pops Orchestra, was created in, the vision) -> the vision (3444ms) Who is the manager of the Boston Pops? Christmas -9.612417856916652 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (Christmas, was premiered by, the Boston Pops) -> Christmas (3504ms) Who is the manager of the Boston Pops? numerous engagements year -9.614990922750971 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, have, $x) -> (the Boston Pops, also has, numerous engagements year) -> numerous engagements year (3504ms) Who is the manager of the Boston Pops? numerous television shows -9.645250397506544 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, have, $x) -> (the Boston Pops, has appeared on, numerous television shows) -> numerous television shows (3504ms) Who is the manager of the Boston Pops? Williams -9.67399904250679 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (Williams, was the conductor of, the Boston Pops) -> Williams (3504ms) Who is the manager of the Boston Pops? the music -9.689933499225534 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (the music, was by, the Boston Pops Orchestra) -> the music (3504ms) Who is the manager of the Boston Pops? Italy -9.76365848983972 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (Italy, was a soloist with, the Boston Pops Orchestra) -> Italy (3504ms) Who is the manager of the Boston Pops? Group Saloum -9.79394040156032 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: ($x, be, boston pop) -> (Group Saloum, is, Boston ?s hottest new Afro-pop band) -> Group Saloum (3504ms) Who is the manager of the Boston Pops? Keith Lockhart -9.81132118463026 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (Keith Lockhart, has conducted, the Boston Pops) -> Keith Lockhart (3536ms) Who is the manager of the Boston Pops? ages -9.81860975035025 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (ages, is available in, the online Boston Pops Shop) -> ages (3535ms) Who is the manager of the Boston Pops? a fun -9.837662124216493 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, have, $x) -> (The Boston Pops, have put together, a fun) -> a fun (3536ms) Who is the manager of the Boston Pops? several new works -9.848272519136538 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, have, $x) -> (the Boston Pops, has commissioned, several new works) -> several new works (3535ms) Who is the manager of the Boston Pops? renowned orchestra -9.870995972447382 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, renowned orchestra) -> renowned orchestra (8732ms) Who is the manager of the Boston Pops? conductors -9.887403433089379 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, have, $x) -> (the Boston Pops, has worked with, conductors) -> conductors (3535ms) Who is the manager of the Boston Pops? dance ensemble -9.90015593348544 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, dance ensemble) -> dance ensemble (8731ms) Who is the manager of the Boston Pops? symphony orchestra -9.901318643257316 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, symphony orchestra) -> symphony orchestra (8731ms) Who is the manager of the Boston Pops? orchestral group -9.919798428300108 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, orchestral group) -> orchestral group (8731ms) Who is the manager of the Boston Pops? large orchestra -9.924308103176013 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops Orchestra, Instance Of, large orchestra) -> large orchestra (8731ms) Who is the manager of the Boston Pops? great orchestra -9.92567380824105 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, great orchestra) -> great orchestra (8731ms) Who is the manager of the Boston Pops? audiences -9.93072909376606 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, have, $x) -> (The Boston Pops, have performed for, audiences) -> audiences (3700ms) Who is the manager of the Boston Pops? american orchestra -9.95499211207935 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, american orchestra) -> american orchestra (8731ms) Who is the manager of the Boston Pops? South Carolina -9.956572172312201 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be currently the boston pop ? -> $x: ($x, be currently, the boston pop) -> $x: ($x, want to lead, the boston pop) -> (South Carolina, wanted to lead, the Boston Pop) -> South Carolina (5726ms) Who is the manager of the Boston Pops? artistic organization -10.036654099731555 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, artistic organization) -> artistic organization (8767ms) Who is the manager of the Boston Pops? famous performer -10.03758881843191 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, famous performer) -> famous performer (8767ms) Who is the manager of the Boston Pops? musical group -10.045158515134178 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, musical group) -> musical group (8767ms) Who is the manager of the Boston Pops? Atheism -10.049583096457305 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (The Boston Pops, as is, Atheism) -> Atheism (3700ms) Who is the manager of the Boston Pops? famous orchestra -10.070331419731144 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, famous orchestra) -> famous orchestra (8767ms) Who is the manager of the Boston Pops? music ensemble -10.071837905655478 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, music ensemble) -> music ensemble (8767ms) Who is the manager of the Boston Pops? prestigious orchestra -10.072440508726343 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, prestigious orchestra) -> prestigious orchestra (8767ms) Who is the manager of the Boston Pops? symphonic orchestra -10.074790660702721 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, symphonic orchestra) -> symphonic orchestra (8767ms) Who is the manager of the Boston Pops? local orchestra -10.078661499252048 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, local orchestra) -> local orchestra (8849ms) Who is the manager of the Boston Pops? notable orchestra -10.079470900252126 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, notable orchestra) -> notable orchestra (8849ms) Who is the manager of the Boston Pops? musical performer -10.080220038190635 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, musical performer) -> musical performer (8849ms) Who is the manager of the Boston Pops? Dr. Hallberg -10.084289617430452 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, instance of, the boston pop) -> (Dr. Hallberg, Instance Of, member of the Boston Pops-Esplanade Orchestra) -> Dr. Hallberg (6675ms) Who is the manager of the Boston Pops? cultural icon -10.087109130122572 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, cultural icon) -> cultural icon (8849ms) Who is the manager of the Boston Pops? professional group -10.09098449150432 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, professional group) -> professional group (8849ms) Who is the manager of the Boston Pops? incredible performer -10.096294014855694 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, incredible performer) -> incredible performer (8849ms) Who is the manager of the Boston Pops? classical artist -10.097749861906943 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, classical artist) -> classical artist (8849ms) Who is the manager of the Boston Pops? advertising client -10.097859498948337 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pop Corn, Instance Of, advertising client) -> advertising client (8886ms) Who is the manager of the Boston Pops? outstanding artist -10.098186809192613 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, outstanding artist) -> outstanding artist (8886ms) Who is the manager of the Boston Pops? interesting place -10.099060929292724 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (POP, Boston, Instance Of, interesting place) -> interesting place (8886ms) Who is the manager of the Boston Pops? notable ensemble -10.111459081769143 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, notable ensemble) -> notable ensemble (8886ms) Who is the manager of the Boston Pops? national ensemble -10.111459081769143 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, national ensemble) -> national ensemble (8886ms) Who is the manager of the Boston Pops? student ensembles -10.11486260116397 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: ($x, be, boston pop) -> (student ensembles, are attending, a BSO or Boston Pops concert) -> student ensembles (3700ms) Who is the manager of the Boston Pops? the Class -10.12744498087708 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: ($x, be, boston pop) -> (the Class, was at, a Boston Pops performance) -> the Class (3854ms) Who is the manager of the Boston Pops? social event -10.158876811430966 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops concert, Instance Of, social event) -> social event (8923ms) Who is the manager of the Boston Pops? holiday event -10.15910796126158 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops Christmas, Instance Of, holiday event) -> holiday event (8923ms) Who is the manager of the Boston Pops? Spring 2007 Bob -10.16178333316473 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (Spring 2007 Bob, was commissioned by, the Boston Pops Orchestra) -> Spring 2007 Bob (3854ms) Who is the manager of the Boston Pops? Lizzie -10.16236993337893 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (Lizzie, was performed by, the Boston Pops) -> Lizzie (3854ms) Who is the manager of the Boston Pops? 1885 -10.17296661341936 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (The Boston Pops Orchestra, was founded in, 1885) -> 1885 (3854ms) Who is the manager of the Boston Pops? Cellist William Rounds -10.175108582268416 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, instance of, the boston pop) -> (Cellist William Rounds, Instance Of, member of the Boston Pops Esplanade Orchestra) -> Cellist William Rounds (6675ms) Who is the manager of the Boston Pops? Evening at Pops -10.190342620005648 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, instance of, the boston pop) -> (Evening at Pops, Instance Of, long-running PBS series featuring select performance of the Boston Pops) -> Evening at Pops (6675ms) Who is the manager of the Boston Pops? the same band? -10.251004206917367 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (the Boston Pops, is, the same band?) -> the same band? (3854ms) Who is the manager of the Boston Pops? Carnegie Hall -10.262729627939207 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: ($x, be, boston pop) -> (Carnegie Hall, can be heard on, several Boston Pops recordings) -> Carnegie Hall (3887ms) Who is the manager of the Boston Pops? the Esplanade -10.271176957043142 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, be, $x) -> (Boston Pops concerts, are held at, the Esplanade) -> the Esplanade (3887ms) Who is the manager of the Boston Pops? Paradise -10.331450557178808 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (Paradise, was commissioned by, the Boston Pops Orchestra) -> Paradise (3920ms) Who is the manager of the Boston Pops? art event -10.35496568372144 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, art event) -> art event (8923ms) Who is the manager of the Boston Pops? the first records -10.380394970393244 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (The 1938 Boston Pops recording, was one of, the first records) -> the first records (3920ms) Who is the manager of the Boston Pops? The orchestra -10.416254835365855 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (The orchestra, is, the Boston Pops) -> The orchestra (3920ms) Who is the manager of the Boston Pops? the holidays -10.440012880661815 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (the Boston Pops, is especially beloved during, the holidays) -> the holidays (3952ms) Who is the manager of the Boston Pops? art group -10.444040375003013 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, art group) -> art group (8923ms) Who is the manager of the Boston Pops? a jingle -10.456593450406181 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, create, $x) -> (The Boston Pops, help create, a jingle) -> a jingle (3952ms) Who is the manager of the Boston Pops? Videos -10.460274131740203 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (Videos, will be featured on, the Boston Pops YouTube channel) -> Videos (3952ms) Who is the manager of the Boston Pops? concert in the city -10.466882729059032 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, concert in the city) -> concert in the city (8923ms) Who is the manager of the Boston Pops? Boston -10.466969068171917 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (Boston, is also home to, the famous Boston Pops orchestra) -> Boston (3952ms) Who is the manager of the Boston Pops? IBIS Chamber Music Society -10.473275856710785 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, instance of, the boston pop) -> (IBIS Chamber Music Society, Instance Of, ensemble of harp, flute and string composed of member of the Boston Pops, National Symphony and Kennedy Center Orchestras) -> IBIS Chamber Music Society (6712ms) Who is the manager of the Boston Pops? orchestra across the world -10.487446560078032 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, orchestra across the world) -> orchestra across the world (8923ms) Who is the manager of the Boston Pops? the Symphony -10.491695819288976 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, lead, $x) -> (the Boston Pops Bruce Hangen, will lead, the Symphony) -> the Symphony (3987ms) Who is the manager of the Boston Pops? Watjen -10.512013039295613 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (Watjen, was a substitute for, the Boston Pops touring orchestra) -> Watjen (3987ms) Who is the manager of the Boston Pops? Mark Lamber and Ian Hu's Red Dwarf -10.518169812145928 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, instance of, the boston pop) -> (Mark Lamber and Ian Hu's Red Dwarf, Instance Of, good example, or John Williams & The Boston Pops giving new depth) -> Mark Lamber and Ian Hu's Red Dwarf (6712ms) Who is the manager of the Boston Pops? the best-known , most recorded -10.578594810595431 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, be, $x) -> (The Boston Pops, is, the best-known , most recorded) -> the best-known , most recorded (3987ms) Who is the manager of the Boston Pops? england's major orchestra -10.60436980429635 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, england's major orchestra) -> england's major orchestra (8924ms) Who is the manager of the Boston Pops? the committee -10.610799586502054 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (the committee, had been sold for, the Boston Pops performance) -> the committee (4105ms) Who is the manager of the Boston Pops? act -10.63285299149879 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, act) -> act (8960ms) Who is the manager of the Boston Pops? critically acclaimed group -10.635740791696193 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, critically acclaimed group) -> critically acclaimed group (8960ms) Who is the manager of the Boston Pops? big deal -10.643093495229133 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops Orchestra, Instance Of, big deal) -> big deal (8960ms) Who is the manager of the Boston Pops? Below -10.661525103194208 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (Below, is, the list of Boston Pops) -> Below (4105ms) Who is the manager of the Boston Pops? Leonard -10.693364300181209 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, take, $x) -> (the Boston Pops, took, Leonard) -> Leonard (4216ms) Who is the manager of the Boston Pops? boston area ensemble -10.708784539030669 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, boston area ensemble) -> boston area ensemble (8960ms) Who is the manager of the Boston Pops? famous boston attraction -10.717924019551651 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, famous boston attraction) -> famous boston attraction (8960ms) Who is the manager of the Boston Pops? boston's finest ensemble -10.718008021837658 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, boston's finest ensemble) -> boston's finest ensemble (8960ms) Who is the manager of the Boston Pops? world-renown performer -10.738700628049274 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, world-renown performer) -> world-renown performer (8997ms) Who is the manager of the Boston Pops? BSO tradition -10.738700628049274 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, BSO tradition) -> BSO tradition (8960ms) Who is the manager of the Boston Pops? symphonic pop orchestra -10.738700628049274 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, symphonic pop orchestra) -> symphonic pop orchestra (8997ms) Who is the manager of the Boston Pops? world-renowned orchestra -10.738700628049274 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, world-renowned orchestra) -> world-renowned orchestra (8996ms) Who is the manager of the Boston Pops? top international artist -10.740856724059391 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, top international artist) -> top international artist (8997ms) Who is the manager of the Boston Pops? world famous group -10.742573522463259 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, world famous group) -> world famous group (8997ms) Who is the manager of the Boston Pops? prominent act -10.754780616159213 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, prominent act) -> prominent act (8997ms) Who is the manager of the Boston Pops? plum job -10.759264459068275 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, plum job) -> plum job (8997ms) Who is the manager of the Boston Pops? opera company and orchestra -10.764001857964349 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops Orchestra, Instance Of, opera company and orchestra) -> opera company and orchestra (8997ms) Who is the manager of the Boston Pops? prestigious musical organization -10.764851005658608 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, prestigious musical organization) -> prestigious musical organization (9178ms) Who is the manager of the Boston Pops? orchestra and performer -10.77053115150155 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, orchestra and performer) -> orchestra and performer (9179ms) Who is the manager of the Boston Pops? a pretty good time -10.770978258136545 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, be, $x) -> ('s Boston Pop Underground fest, was, a pretty good time) -> a pretty good time (4216ms) Who is the manager of the Boston Pops? popular classical event -10.7737582568105 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops event, Instance Of, popular classical event) -> popular classical event (9178ms) Who is the manager of the Boston Pops? fun -10.774938211027813 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Holiday Boston Pops, Instance Of, fun) -> fun (9179ms) Who is the manager of the Boston Pops? prominent symphony orchestra -10.778217497782078 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, prominent symphony orchestra) -> prominent symphony orchestra (9179ms) Who is the manager of the Boston Pops? world-class orchestra -10.782247566632003 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, world-class orchestra) -> world-class orchestra (9179ms) Who is the manager of the Boston Pops? best selling ensemble -10.783842062573678 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops Orchestra, Instance Of, best selling ensemble) -> best selling ensemble (9179ms) Who is the manager of the Boston Pops? world renown performer -10.784040172320001 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, world renown performer) -> world renown performer (9258ms) Who is the manager of the Boston Pops? well-known orchestra -10.789505386460593 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops Orchestra, Instance Of, well-known orchestra) -> well-known orchestra (9258ms) Who is the manager of the Boston Pops? a tax deductible donation -10.797336697954433 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, be, $x) -> (South Boston Pop Warner, is, a tax deductible donation) -> a tax deductible donation (4216ms) Who is the manager of the Boston Pops? a more social event -10.798843787129439 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, be, $x) -> (a Boston Pops concert, is, a more social event) -> a more social event (4246ms) Who is the manager of the Boston Pops? internationally acclaimed orchestra -10.8011766989863 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, internationally acclaimed orchestra) -> internationally acclaimed orchestra (9258ms) Who is the manager of the Boston Pops? top U.S. orchestra -10.803674345829107 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, top U.S. orchestra) -> top U.S. orchestra (9258ms) Who is the manager of the Boston Pops? Seattle concert event -10.803674345829107 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, Seattle concert event) -> Seattle concert event (9258ms) Who is the manager of the Boston Pops? top notch orchestra -10.803674345829107 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, top notch orchestra) -> top notch orchestra (9258ms) Who is the manager of the Boston Pops? leveraged top tier sponsorship -10.813758151592284 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, leveraged top tier sponsorship) -> leveraged top tier sponsorship (9258ms) Who is the manager of the Boston Pops? signature Boston tradition -10.813758151592284 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops Fireworks Spectacular, Instance Of, signature Boston tradition) -> signature Boston tradition (9258ms) Who is the manager of the Boston Pops? member of musical organization -10.831092788004906 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, member of musical organization) -> member of musical organization (9296ms) Who is the manager of the Boston Pops? group of musician -10.843146714937387 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops Orchestra, Instance Of, group of musician) -> group of musician (9296ms) Who is the manager of the Boston Pops? The national anthem -10.84562252937577 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (The national anthem, was handled by, the Boston Pops) -> The national anthem (4246ms) Who is the manager of the Boston Pops? year internationally acclaimed orchestra -10.854885813630283 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, year internationally acclaimed orchestra) -> year internationally acclaimed orchestra (9296ms) Who is the manager of the Boston Pops? so new items -10.85871407061043 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: ($x, be, boston pop) -> (so new items, are added as, Boston Pops) -> so new items (4246ms) Who is the manager of the Boston Pops? Pop Rock Shayne Holland -10.872144439833317 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: ($x, be, boston pop) -> (Pop Rock Shayne Holland, is, a Boston based pop-rock solo artist) -> Pop Rock Shayne Holland (4246ms) Who is the manager of the Boston Pops? Conductor Arthur Fiedler -10.87879854796773 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (Conductor Arthur Fiedler, had led, the Boston Pops orchestra) -> Conductor Arthur Fiedler (4246ms) Who is the manager of the Boston Pops? live music series -10.883572902360418 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pop Underground, Instance Of, live music series) -> live music series (9296ms) Who is the manager of the Boston Pops? featured soloist wit h orchestra -10.902009608943128 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, featured soloist wit h orchestra) -> featured soloist wit h orchestra (9296ms) Who is the manager of the Boston Pops? The evening -10.914776049290147 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: ($x, be, the boston pop) -> (The evening, will be a special one as, the Boston Pops) -> The evening (4246ms) Who is the manager of the Boston Pops? orchestra -10.917206609858484 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, orchestra) -> orchestra (9296ms) Who is the manager of the Boston Pops? Mr. Williams -10.919052793911142 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (Mr. Williams, has led, the Boston Pops) -> Mr. Williams (4320ms) Who is the manager of the Boston Pops? multi-cultural, racial, denominational, ethnic and generational choir -10.942728196890108 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops Gospel Choir, Instance Of, multi-cultural, racial, denominational, ethnic and generational choir) -> multi-cultural, racial, denominational, ethnic and generational choir (9296ms) Who is the manager of the Boston Pops? Henson-Conant -10.964966551068448 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (Henson-Conant, has toured with, the Boston Pops) -> Henson-Conant (4320ms) Who is the manager of the Boston Pops? nation's best classical talent -10.974034967120536 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops Esplanade Orchestra, Instance Of, nation's best classical talent) -> nation's best classical talent (9332ms) Who is the manager of the Boston Pops? August -10.979742927274794 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who bring the boston pop ? -> $x: ($x, bring, the boston pop) -> (August, brings, the Boston Pops Symphony) -> August (2125ms) Who is the manager of the Boston Pops? MA -10.98198833812392 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (MA, has also performed with, the Boston Pops) -> MA (4320ms) Who is the manager of the Boston Pops? Mr. LeBow -11.009398485473978 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (Mr. LeBow, has narrated with, the Boston Pops) -> Mr. LeBow (4320ms) Who is the manager of the Boston Pops? a former member -11.01761760481792 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (a former member, has performed with, the Boston Pops) -> a former member (4462ms) Who is the manager of the Boston Pops? Deborah Henson-Conant -11.019944312266766 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (Deborah Henson-Conant, has toured with, the Boston Pops) -> Deborah Henson-Conant (4462ms) Who is the manager of the Boston Pops? Mr. Farber?s arrangements -11.02089306679512 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (Mr. Farber?s arrangements, have included, the Boston Pops) -> Mr. Farber?s arrangements (4462ms) Who is the manager of the Boston Pops? artist -11.021514977754261 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, artist) -> artist (9332ms) Who is the manager of the Boston Pops? several awards -11.028231980909277 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, have, $x) -> (Boston Pops, have received, several awards) -> several awards (4462ms) Who is the manager of the Boston Pops? a member -11.031503461715163 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (a member, has appeared with, the Boston Pops) -> a member (4462ms) Who is the manager of the Boston Pops? musician -11.074871340132024 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, be, $x) -> (Boston Pops Esplanade Orchestra, is a, musician) -> musician (4462ms) Who is the manager of the Boston Pops? American orchestra -11.097728452120387 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops Orchestra, Instance Of, American orchestra) -> American orchestra (9332ms) Who is the manager of the Boston Pops? group -11.122629211314374 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, group) -> group (9332ms) Who is the manager of the Boston Pops? a guest conductor Michael -11.12300462523686 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (a guest conductor Michael, has performed with, the Boston Pops) -> a guest conductor Michael (4496ms) Who is the manager of the Boston Pops? lead trumpeter and soloist -11.152067498322598 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: ($x, be, boston pop) -> (lead trumpeter and soloist, has been featured with, Boston Pops) -> lead trumpeter and soloist (4496ms) Who is the manager of the Boston Pops? developed on-line channel -11.16102979361818 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (BostonPops.TV, Instance Of, developed on-line channel) -> developed on-line channel (9332ms) Who is the manager of the Boston Pops? Jordan -11.186086127392642 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, have, $x) -> (the Boston Pops, has toured, Jordan) -> Jordan (4496ms) Who is the manager of the Boston Pops? ensemble -11.195697308730654 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, ensemble) -> ensemble (9332ms) Who is the manager of the Boston Pops? client -11.29521367406261 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, client) -> client (9332ms) Who is the manager of the Boston Pops? performer -11.359267790816322 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, performer) -> performer (9369ms) Who is the manager of the Boston Pops? Tf3 -11.367876231300018 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (Tf3, has appeared with, the Boston Pops) -> Tf3 (4717ms) Who is the manager of the Boston Pops? Hallberg -11.387083829336001 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, instance of, the boston pop) -> (Hallberg, Instance Of, member of the Boston Pops-Esplanade Orchestra) -> Hallberg (6712ms) Who is the manager of the Boston Pops? concert -11.409313919291606 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, concert) -> concert (9369ms) Who is the manager of the Boston Pops? event -11.446408369995675 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops performance, Instance Of, event) -> event (9404ms) Who is the manager of the Boston Pops? program -11.453534752550876 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, program) -> program (9404ms) Who is the manager of the Boston Pops? Massachusetts -11.595082507075936 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, be, $x) -> (Boston Pops Orchestra, are based in, Massachusetts) -> Massachusetts (4750ms) Who is the manager of the Boston Pops? a free solo -11.664537391734013 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, have, $x) -> (Boston electro-pop, has returned with, a free solo) -> a free solo (4749ms) Who is the manager of the Boston Pops? Deborah -11.726002669273482 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (Deborah, has toured with, the Boston Pops) -> Deborah (4750ms) Who is the manager of the Boston Pops? Brodeur -11.758289376285394 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, instance of, the boston pop) -> (Brodeur, Instance Of, member of the Boston-based electronic-pop band) -> Brodeur (6712ms) Who is the manager of the Boston Pops? Melinda -11.839598754403491 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (Melinda, has performed with, the Boston Pops Esplanade Orchestra) -> Melinda (4783ms) Who is the manager of the Boston Pops? August 24 -12.021329551831444 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who make the boston pop ? -> $x: ($x, make, the boston pop) -> (August 24, make welcome returns with, the Boston Pops) -> August 24 (4783ms) Who is the manager of the Boston Pops? a 1999 Grammy nomination -12.062881380021546 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (the boston pop, lead, $x) -> (the Boston Pops Symphony, led to, a 1999 Grammy nomination) -> a 1999 Grammy nomination (4817ms) Who is the manager of the Boston Pops? Corin -12.063667722142805 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: ($x, be, boston pop) -> (Corin, was a member of, Boston power pop band) -> Corin (4817ms) Who is the manager of the Boston Pops? 16,000 copies -12.114577125072827 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, have, $x) -> (This Boston pop rock act, have sold over, 16,000 copies) -> 16,000 copies (4817ms) Who is the manager of the Boston Pops? 43 -12.146140715709079 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, have, $x) -> (Boston Pops Esplanade orchestras, have performed in, 43) -> 43 (4817ms) Who is the manager of the Boston Pops? Thursday event -12.194738570406079 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, instance of, $x) -> (Boston Pops, Instance Of, Thursday event) -> Thursday event (9440ms) Who is the manager of the Boston Pops? Karmin -12.266335030180347 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: ($x, be, boston pop) -> (Karmin, is, Boston ?s premiere acoustic pop sound) -> Karmin (5039ms) Who is the manager of the Boston Pops? Steichen -12.278736645815925 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (Steichen, has conducted, the Boston Pops) -> Steichen (5039ms) Who is the manager of the Boston Pops? Kulhawik -12.310602793343822 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (Kulhawik, has performed with, The Boston Pops) -> Kulhawik (5073ms) Who is the manager of the Boston Pops? Emery -12.34868106659474 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (Emery, has performed regularly with, The Boston Pops) -> Emery (5073ms) Who is the manager of the Boston Pops? The gala celebration -12.49856355103566 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (The gala celebration, would have featured, the Boston Pops) -> The gala celebration (5073ms) Who is the manager of the Boston Pops? The Boston Symphony Orchestra -12.514946320185633 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: (boston pop, procedure, $x) -> $x: ($x, have, boston pop) -> (The Boston Symphony Orchestra, has started, Boston POPS.tv) -> The Boston Symphony Orchestra (9440ms) Who is the manager of the Boston Pops? the main attraction -12.526631299265535 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, be, $x) -> (Boston folk-pop artist Edie Carey, will be, the main attraction) -> the main attraction (5106ms) Who is the manager of the Boston Pops? place Sunday -12.566815632588224 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, take, $x) -> (Ole ? Saint Nick ! Boston Holiday Pops, will take, place Sunday) -> place Sunday (5106ms) Who is the manager of the Boston Pops? Independence Day -12.59733593166676 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who be the boston pop s manager ? -> $x: (the boston pop, manager, $x) -> $x: (boston pop, manager, $x) -> $x: (boston pop, lead, $x) -> (' Boston Pops Fireworks, led, Independence Day) -> Independence Day (9519ms) Who is the manager of the Boston Pops? the most renowned orchestras -12.672947253750301 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (the most renowned orchestras, has appeared with, The Boston Pops) -> the most renowned orchestras (5106ms) Who is the manager of the Boston Pops? the wild woman -12.793885603567155 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the procedure of the boston pop ? -> $x: (the boston pop, procedure, $x) -> $x: ($x, have, the boston pop) -> (the wild woman, has toured with, the Boston Pops) -> the wild woman (5106ms) Who is the manager of the Boston Pops? Amanda -12.833091587566754 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> who make the boston pop ? -> $x: ($x, make, the boston pop) -> (Amanda, made a triumphant appearance with, the Boston Pops) -> Amanda (5106ms) Who is the manager of the Boston Pops? the odd coupling -13.224971858552307 Who is the manager of the Boston Pops? -> who be the manager of [ the boston pop ] ? -> what be the nickname of the boston pop ? -> $x: (the boston pop, nickname, $x) -> $x: (the boston pop, go, $x) -> (the Boston Pops, Go see, the odd coupling) -> the odd coupling (5451ms) How old was Crosby when he died? Republican member of the South Carolina House of Representatives , representing District 117 -11.974107553860295 How old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (Bill Crosby, Instance Of, Republican member of the South Carolina House of Representatives , representing District 117) -> Republican member of the South Carolina House of Representatives , representing District 117 (8797ms) How old was Crosby when he died? big name -11.991877596895772 How old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (Bill Crosby, Instance Of, big name) -> big name (8797ms) How old was Crosby when he died? long time -12.788421479625178 How old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (Bill Crosby, Instance Of, long time) -> long time (8797ms) How old was Crosby when he died? Teahen -12.793871211112249 How old was Crosby when he died? -> how old [ be crosby ] when he die ? -> what be be crosby age ? -> $x: ($x, be be, crosby age) -> (Teahen, is about, Crosby?s age) -> Teahen (7397ms) How old was Crosby when he died? Twitter spammer -12.842115379618905 How old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (Bill Crosby, Instance Of, Twitter spammer) -> Twitter spammer (8799ms) How old was Crosby when he died? true comic icon -12.869604260218065 How old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (Bill Crosby, Instance Of, true comic icon) -> true comic icon (8797ms) How old was Crosby when he died? successful twitter marketer -12.869604260218065 How old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (Bill Crosby, Instance Of, successful twitter marketer) -> successful twitter marketer (8797ms) How old was Crosby when he died? great man -12.875822274839773 How old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (Bill Crosby, Instance Of, great man) -> great man (8943ms) How old was Crosby when he died? Social Media guru -12.890168091237065 How old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (Bill Crosby, Instance Of, Social Media guru) -> Social Media guru (8942ms) How old was Crosby when he died? graduate of Tennessee Theological University -12.893166157874488 How old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (Bill Crosby, Instance Of, graduate of Tennessee Theological University) -> graduate of Tennessee Theological University (8942ms) How old was Crosby when he died? man of extraordinary talent -12.894913591645834 How old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (Bill Crosby, Instance Of, man of extraordinary talent) -> man of extraordinary talent (8942ms) How old was Crosby when he died? blue singer -12.938620464751832 How old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (Bill Crosby, Instance Of, blue singer) -> blue singer (8942ms) How old was Crosby when he died? member of the State University of New York -12.941397170482631 How old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (Bill Crosby, Instance Of, member of the State University of New York) -> member of the State University of New York (8942ms) How old was Crosby when he died? oldie show -12.954483128615621 How old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (bill crosby show, Instance Of, oldie show) -> oldie show (8963ms) How old was Crosby when he died? active artist -12.982484940180349 How old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (Bill Crosby, Instance Of, active artist) -> active artist (8963ms) How old was Crosby when he died? private company -12.98846892938439 How old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (Bill Crosby, Instance Of, private company) -> private company (8963ms) How old was Crosby when he died? comic legend -12.993965683289598 How old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (Bill Crosby, Instance Of, comic legend) -> comic legend (8963ms) How old was Crosby when he died? celebrity -13.011747907316227 How old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (Bill Crosby, Instance Of, celebrity) -> celebrity (8963ms) How old was Crosby when he died? favorite -13.1479823030867 How old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (Bill Crosby, Instance Of, favorite) -> favorite (8982ms) How old was Crosby when he died? entertainer -13.193075160189583 How old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (Bill Crosby, Instance Of, entertainer) -> entertainer (8982ms) How old was Crosby when he died? musician -13.19699129815371 How old was Crosby when he died? -> how old be [ crosby ] when he die ? -> who be bill crosby ? -> $x: (bill crosby, instance of, $x) -> (Bill Crosby, Instance Of, musician) -> musician (8982ms) How old was Joan of Arc when she died? 11:03 -12.11644451626746 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (11:03, AM Joan of, Arc) -> 11:03 (6052ms) How old was Joan of Arc when she died? God -12.309005083852384 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (God, is Joan of, Arc) -> God (6052ms) How old was Joan of Arc when she died? old -12.370501629697541 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (old, was Joan of, Arc) -> old (6052ms) How old was Joan of Arc when she died? the Old Marketplace -12.507453509297164 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (the Old Marketplace, were Joan of, Arc) -> the Old Marketplace (6052ms) How old was Joan of Arc when she died? 1430 -12.52215653645274 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (1430, was Joan of, Arc) -> 1430 (6052ms) How old was Joan of Arc when she died? 2006 -12.570156727101335 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (2006, was Joan of, Arc really) -> 2006 (6052ms) How old was Joan of Arc when she died? heaven -12.596843623455223 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (heaven, is Joan of, arc) -> heaven (6052ms) How old was Joan of Arc when she died? 1999 -12.611179783228003 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (1999, was the putrid Joan Of, Arc flick) -> 1999 (6052ms) How old was Joan of Arc when she died? Rachel Corrie -12.747980855834943 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (Rachel Corrie, is the Joan of, Arc) -> Rachel Corrie (6079ms) How old was Joan of Arc when she died? Anita Hill -12.747980855834943 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (Anita Hill, is the Joan of, Arc) -> Anita Hill (6079ms) How old was Joan of Arc when she died? Oriana Fallaci -12.747980855834943 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (Oriana Fallaci, is the Joan of, Arc) -> Oriana Fallaci (6079ms) How old was Joan of Arc when she died? Nightingale -12.939647568453468 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (Nightingale, is Joan of, Arc) -> Nightingale (6079ms) How old was Joan of Arc when she died? Snape -12.95366949260122 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (Snape, is Joan of, Arc) -> Snape (6079ms) How old was Joan of Arc when she died? okay i -12.96864096556511 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (okay i, am joan of, arc) -> okay i (6079ms) How old was Joan of Arc when she died? a girl -13.023243063993887 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (a girl, was the actual Joan of, Arc) -> a girl (6079ms) How old was Joan of Arc when she died? Hillary -13.032233170393393 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (Hillary, is Joan of, Arc) -> Hillary (6079ms) How old was Joan of Arc when she died? Boo Human -13.057068574547813 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (Boo Human, is Joan of, Arc) -> Boo Human (6108ms) How old was Joan of Arc when she died? La Pucelle -13.099902300616401 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (La Pucelle, is Joan of, Arc) -> La Pucelle (6108ms) How old was Joan of Arc when she died? Obvious exceptions -13.128041766115906 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (Obvious exceptions, would be Joan of, Arc) -> Obvious exceptions (6108ms) How old was Joan of Arc when she died? Jamie McKenzie -13.144112200396474 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (Jamie McKenzie, was Joan of, Arc) -> Jamie McKenzie (6108ms) How old was Joan of Arc when she died? French history -13.177711705256502 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (French history, is Joan of, Arc) -> French history (6108ms) How old was Joan of Arc when she died? Mr. Glasses -13.187900196508572 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (Mr. Glasses, is being a Joan of, Arc) -> Mr. Glasses (6108ms) How old was Joan of Arc when she died? Modern France -13.203353427102073 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (Modern France, is Joan of, Arc) -> Modern France (6108ms) How old was Joan of Arc when she died? RMS -13.207382212719143 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (RMS, is the Joan of, Arc) -> RMS (6108ms) How old was Joan of Arc when she died? France -13.20748533523329 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (France, is challenging Joan of, Arc) -> France (6133ms) How old was Joan of Arc when she died? the Brain -13.226342589744354 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (the Brain, Was Joan of, Arc) -> the Brain (6133ms) How old was Joan of Arc when she died? a classic one -13.252054395232339 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (a classic one, is Joan of, Arc) -> a classic one (6133ms) How old was Joan of Arc when she died? Lorraine -13.252653559816073 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (Lorraine, was Joan of, Arc) -> Lorraine (6133ms) How old was Joan of Arc when she died? One movie -13.273205048727718 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (One movie, was Joan of, Arc) -> One movie (6133ms) How old was Joan of Arc when she died? the Orleans shore -13.276078426329773 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (the Orleans shore, was JOAN OF, ARC 183) -> the Orleans shore (6133ms) How old was Joan of Arc when she died? Emile?s hero -13.283750875520505 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (Emile?s hero, is Joan of, Arc) -> Emile?s hero (6133ms) How old was Joan of Arc when she died? A Teacher -13.303238156108389 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (A Teacher, was Joan of, Arc ?) -> A Teacher (6133ms) How old was Joan of Arc when she died? record -13.306735811090393 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (record, is Joan of, Arc) -> record (6158ms) How old was Joan of Arc when she died? The Hundrer Years War -13.349958833572487 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (The Hundrer Years War, was Joan of, Arc) -> The Hundrer Years War (6158ms) How old was Joan of Arc when she died? One such story -13.416350870283459 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (One such story, is Joan of, Arc) -> One such story (6158ms) How old was Joan of Arc when she died? One famous casualty -13.43675198914741 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (One famous casualty, is Joan of, Arc) -> One famous casualty (6158ms) How old was Joan of Arc when she died? BOSTON GLOBE ?Kay Fanning -13.50174384622884 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (BOSTON GLOBE ?Kay Fanning, was the Joan of, Arc) -> BOSTON GLOBE ?Kay Fanning (6158ms) How old was Joan of Arc when she died? Koos -13.56048041532213 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (Koos, was Joan of, Arc]) -> Koos (6158ms) How old was Joan of Arc when she died? right -13.57585006876661 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (right, now is Joan of, Arc) -> right (6158ms) How old was Joan of Arc when she died? private -13.605912775319958 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (private, Was Joan of, Arc Tortured) -> private (6158ms) How old was Joan of Arc when she died? A certain Senator Paola Binetti -13.623214006510066 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (A certain Senator Paola Binetti, is the Joan of, Arc) -> A certain Senator Paola Binetti (6182ms) How old was Joan of Arc when she died? Life -13.791666536004996 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what great thing do joan of arc do ? -> $x: ($x, instance of, great thing) ($x, do joan of, arc) -> $x: ($x, instance of, great thing) ($x, joan of, arc) -> (Life, Instance Of, great bundle of little thing) (" Life, is Joan of, Arc) -> Life (4290ms) How old was Joan of Arc when she died? Wishbone -13.843278790454036 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (Wishbone, is Joan of, Arc) -> Wishbone (6182ms) How old was Joan of Arc when she died? one important name -13.866058700270612 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (one important name, would be Joan of, Arc) -> one important name (6182ms) How old was Joan of Arc when she died? Columbus -14.07437250586015 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (Columbus, as were Joan of, Arc) -> Columbus (6182ms) How old was Joan of Arc when she died? the selected 15 -14.084184484380064 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (the selected 15, was Joan of, Arc) -> the selected 15 (6182ms) How old was Joan of Arc when she died? Katniss -14.141477348280278 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (Katniss, is a futuristic Joan of, Arc) -> Katniss (6182ms) How old was Joan of Arc when she died? the question -14.169025579511242 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (the question, is the Joan of, Arc) -> the question (6182ms) How old was Joan of Arc when she died? Hannah -14.200390944022425 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (Hannah, is a modern-day Joan of, Arc) -> Hannah (6246ms) How old was Joan of Arc when she died? the video -14.2839067191908 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (the video, is Joan of, Arc) -> the video (6246ms) How old was Joan of Arc when she died? the inspiration -14.370558093246458 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (the inspiration, was Joan of, Arc) -> the inspiration (6246ms) How old was Joan of Arc when she died? the topics -14.39973661339871 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (the topics, are Joan of, Arc) -> the topics (6246ms) How old was Joan of Arc when she died? Noah?s wife -14.441131045564141 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (Noah?s wife, was Joan of, Arc) -> Noah?s wife (6246ms) How old was Joan of Arc when she died? teacher -14.698155341953026 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what other job do joan of arc have ? -> $x: ($x, instance of, other job) ($x, do joan of, arc) -> $x: ($x, instance of, other job) ($x, joan of, arc) -> (teacher, Instance Of, asset or person with job in the near others) (A Teacher, was Joan of, Arc ?) -> teacher (4322ms) How old was Joan of Arc when she died? the inn -14.991312775374674 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (the inn, is Joan of, Arc) -> the inn (6246ms) How old was Joan of Arc when she died? the most famous figure -15.065413948313859 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (the most famous figure, is Joan of, Arc) -> the most famous figure (6246ms) How old was Joan of Arc when she died? The girl -15.080224509542916 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (The girl, is Joan of, Arc) -> The girl (6334ms) How old was Joan of Arc when she died? the evil alchemist -15.435923326834503 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (the evil alchemist, be the Joan of, Arc) -> the evil alchemist (6333ms) How old was Joan of Arc when she died? the appointed local heroin -15.436936801584054 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (the appointed local heroin, is rather Joan of, Arc) -> the appointed local heroin (6333ms) How old was Joan of Arc when she died? the girl -15.567727178362391 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (the girl, is Joan of, Arc) -> the girl (6333ms) How old was Joan of Arc when she died? the virtuous stenographer -15.659513004156022 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (the virtuous stenographer, was half Joan of, Arc) -> the virtuous stenographer (6334ms) How old was Joan of Arc when she died? the young saint -15.66980836067507 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (the young saint, is Joan of, Arc) -> the young saint (6333ms) How old was Joan of Arc when she died? the biggest inspiration -15.70075530633181 How old was Joan of Arc when she died? -> how old be [ joan of arc ] when she die ? -> what be th name of joan of arc ? -> what be joan of arc ? -> $x: ($x, be joan of, arc) -> (the biggest inspiration, was Joan of, Arc) -> the biggest inspiration (6590ms) What is Curveball's real name? the Iraqi defector -11.857880402529858 What is Curveball's real name? -> what be [ curveball ] s real name ? -> what be curveball s name ? -> $x: (curveball, name, $x) -> (Curveball, was the code name of, the Iraqi defector) -> the Iraqi defector (13948ms) Which college athletic teams are nicknamed the Cougars? football -5.506868710700054 Which college athletic teams are nicknamed the Cougars? -> $x: ($x, instance of, college athletic teams) ($x, are nicknamed, the Cougars) -> $x: ($x, instance of, college athletic teams) (the Cougars, be, $x) -> (football, Instance Of, flagship college athletic team) (the Cougars, would still be playing, football) -> football (2073ms) Which college athletic teams are nicknamed the Cougars? Gaels -6.201846748286544 Which college athletic teams are nicknamed the Cougars? -> $x: ($x, instance of, college athletic teams) ($x, are nicknamed, the Cougars) -> $x: ($x, instance of, college athletic teams) (the Cougars, be, $x) -> (Gaels, Instance Of, college athletic team) (The Cougars, were able to remain close with, the Gaels) -> Gaels (2129ms) Which college athletic teams are nicknamed the Cougars? soccer -7.356384670068007 Which college athletic teams are nicknamed the Cougars? -> $x: ($x, instance of, college athletic teams) ($x, are nicknamed, the Cougars) -> $x: ($x, instance of, college athletic teams) (the Cougars, be, $x) -> (soccer, Instance Of, pre-season camp for high school and college athletic team) (The Lady Cougars, have been playing, soccer) -> soccer (2129ms) Which college athletic teams are nicknamed the Cougars? lacrosse -7.668034377972964 Which college athletic teams are nicknamed the Cougars? -> $x: ($x, instance of, college athletic teams) ($x, are nicknamed, the Cougars) -> $x: ($x, instance of, college athletic team) ($x, nickname, cougar) -> $x: ($x, instance of, college athletic team) (cougar, know as, $x) -> (lacrosse, Instance Of, pre-season camp for high school and college athletic team) (BYU Cougars men's lacrosse, Also known as, BYU Lacrosse) -> lacrosse (7313ms) In what year was Padre Pio born? Southern Italy -3.281891934179617 In what year was Padre Pio born? -> When was Padre Pio born? -> $x: (Padre Pio, was born in, $x) -> (Padre Pio, was born in, Southern Italy) -> Southern Italy (729ms) In what year was Padre Pio born? Italy -4.440592781612687 In what year was Padre Pio born? -> When was Padre Pio born? -> $x: (Padre Pio, was born in, $x) -> (Padre Pio, was born in, Italy) -> Italy (729ms) In what year was Padre Pio born? Pietrelcina -4.728270248823564 In what year was Padre Pio born? -> When was Padre Pio born? -> $x: (Padre Pio, was born in, $x) -> (. Padre Pio 1887-1968 Padre Pio, was born in, Pietrelcina) -> Pietrelcina (729ms) In what year was Padre Pio born? 1887 -5.0243647367470885 In what year was Padre Pio born? -> When was Padre Pio born? -> $x: (Padre Pio, was born in, $x) -> (Padre Pio, was born in, 1887) -> 1887 (1116ms) In what year was Padre Pio born? Pietralcina -5.127103607514868 In what year was Padre Pio born? -> When was Padre Pio born? -> $x: (Padre Pio, was born in, $x) -> (Padre Pio, was born in, Pietralcina) -> Pietralcina (1116ms) In what year was Padre Pio born? the village -5.903051409311785 In what year was Padre Pio born? -> When was Padre Pio born? -> $x: (Padre Pio, was born in, $x) -> (Padre Pio, was born in, the village) -> the village (1515ms) In what year was Padre Pio born? Francesco Forgione -7.659759237579928 In what year was Padre Pio born? -> When was Padre Pio born? -> $x: (Padre Pio, was born on, $x) -> $x: (Padre Pio, be bear, $x) -> (Padre Pio, was born, Francesco Forgione) -> Francesco Forgione (4886ms) In what year was Padre Pio born? May 25,1887 -7.933737846676236 In what year was Padre Pio born? -> When was Padre Pio born? -> $x: (Padre Pio, was born on, $x) -> $x: (Padre Pio, be bear, $x) -> (Padre Pio, was born, May 25,1887) -> May 25,1887 (4887ms) In what year was Padre Pio born? May 25 , 1887 -8.073094058132547 In what year was Padre Pio born? -> When was Padre Pio born? -> $x: (Padre Pio, was born on, $x) -> $x: (Padre Pio, be bear, $x) -> (Padre Pio, was born, May 25 , 1887) -> May 25 , 1887 (4905ms) In what year was Padre Pio born? the streets -9.528467262549986 In what year was Padre Pio born? -> When was Padre Pio born? -> $x: (Padre Pio, was born on, $x) -> $x: (Padre Pio, be know on, $x) -> (the C.F.R.?s Padre Pio Shelter, is known on, the streets) -> the streets (4754ms) In what year was Padre Pio born? the left side -10.124282981112096 In what year was Padre Pio born? -> When was Padre Pio born? -> $x: (Padre Pio, was born on, $x) -> $x: (Padre Pio, be to come to, $x) -> (Padre Pio, is coming down over to, the left side) -> the left side (4818ms) What is schizophrenia? biologically-based disorder -4.99602648885058 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, biologically-based disorder) -> biologically-based disorder (1934ms) What is schizophrenia? neuro-functional disorder -5.081692812842029 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, neuro-functional disorder) -> neuro-functional disorder (1934ms) What is schizophrenia? devastating brain disorder -5.120260520275424 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, devastating brain disorder) -> devastating brain disorder (1934ms) What is schizophrenia? mental health condition -5.12338279136269 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, mental health condition) -> mental health condition (1934ms) What is schizophrenia? serious psychiatric disorder -5.143678595419926 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, serious psychiatric disorder) -> serious psychiatric disorder (1934ms) What is schizophrenia? devastating psychiatric disorder -5.151560649040539 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, devastating psychiatric disorder) -> devastating psychiatric disorder (1934ms) What is schizophrenia? Nonfatal mental health disorders -5.208653775994163 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, Nonfatal mental health disorders) -> Nonfatal mental health disorders (1997ms) What is schizophrenia? behavioral or psychiatric condition -5.213830210120189 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, behavioral or psychiatric condition) -> behavioral or psychiatric condition (1997ms) What is schizophrenia? developmental or psychiatric disorder -5.299496534111638 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, developmental or psychiatric disorder) -> developmental or psychiatric disorder (1997ms) What is schizophrenia? chronic mental illness -5.306714639595445 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, chronic mental illness) -> chronic mental illness (1997ms) What is schizophrenia? group of related disorder -5.317122675160167 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, group of related disorder) -> group of related disorder (1997ms) What is schizophrenia? common complex disorder -5.319840410528823 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, common complex disorder) -> common complex disorder (1997ms) What is schizophrenia? incurable brain disease -5.334795924442895 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, incurable brain disease) -> incurable brain disease (2067ms) What is schizophrenia? mental health difficulty -5.340404241547823 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, mental health difficulty) -> mental health difficulty (2067ms) What is schizophrenia? complex neurodevelopmental disorder -5.350744101134356 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, complex neurodevelopmental disorder) -> complex neurodevelopmental disorder (2067ms) What is schizophrenia? chronic and disabling illness -5.367190467350387 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, chronic and disabling illness) -> chronic and disabling illness (2067ms) What is schizophrenia? chronic debilitating disorder -5.369847772955838 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, chronic debilitating disorder) -> chronic debilitating disorder (2067ms) What is schizophrenia? chronic disorder of the brain -5.378968531802974 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, chronic disorder of the brain) -> chronic disorder of the brain (2067ms) What is schizophrenia? common human disease -5.3850802398779605 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, common human disease) -> common human disease (2085ms) What is schizophrenia? chronic, debilitating disease -5.393677162456447 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, chronic, debilitating disease) -> chronic, debilitating disease (2085ms) What is schizophrenia? prevalent psychiatric disorder -5.3982678198873515 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, prevalent psychiatric disorder) -> prevalent psychiatric disorder (2085ms) What is schizophrenia? progressive, degenerative disorder -5.415806520706754 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, progressive, degenerative disorder) -> progressive, degenerative disorder (2085ms) What is schizophrenia? progressive neurodevelopmental disorder -5.419200969362558 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, progressive neurodevelopmental disorder) -> progressive neurodevelopmental disorder (2085ms) What is schizophrenia? dangerous mental illness -5.42861781529587 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, dangerous mental illness) -> dangerous mental illness (2085ms) What is schizophrenia? cognitive and behavioral disorder -5.4290801189126014 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, cognitive and behavioral disorder) -> cognitive and behavioral disorder (2109ms) What is schizophrenia? selected DSM-IV-TR disorder -5.4290801189126014 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, selected DSM-IV-TR disorder) -> selected DSM-IV-TR disorder (2109ms) What is schizophrenia? chronic neuropsychiatric disorder -5.442392630936574 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, chronic neuropsychiatric disorder) -> chronic neuropsychiatric disorder (2109ms) What is schizophrenia? cognitive and neurological disorder -5.443591207030303 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, cognitive and neurological disorder) -> cognitive and neurological disorder (2109ms) What is schizophrenia? underlying psychiatric condition -5.447377802241265 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, underlying psychiatric condition) -> underlying psychiatric condition (2109ms) What is schizophrenia? CNS disease -5.458991146740747 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, CNS disease) -> CNS disease (2109ms) What is schizophrenia? disorder of language -5.4702077809506005 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, disorder of language) -> disorder of language (2125ms) What is schizophrenia? illness or condition -5.491787241699828 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, illness or condition) -> illness or condition (2125ms) What is schizophrenia? human behavioral disorder -5.505625684056914 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, human behavioral disorder) -> human behavioral disorder (2125ms) What is schizophrenia? severe psychotic condition -5.505625684056914 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, severe psychotic condition) -> severe psychotic condition (2140ms) What is schizophrenia? heritable brain disorder -5.505625684056914 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, heritable brain disorder) -> heritable brain disorder (2140ms) What is schizophrenia? notoriously difficult disease -5.505625684056914 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, notoriously difficult disease) -> notoriously difficult disease (2140ms) What is schizophrenia? functional brain disorder -5.505625684056914 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, functional brain disorder) -> functional brain disorder (2126ms) What is schizophrenia? long lasting effect -5.505625684056914 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, long lasting effect) -> long lasting effect (2140ms) What is schizophrenia? minor psychological disorder -5.505625684056914 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, minor psychological disorder) -> minor psychological disorder (2140ms) What is schizophrenia? symptom psychotic condition -5.505625684056914 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, symptom psychotic condition) -> symptom psychotic condition (2125ms) What is schizophrenia? severe mental disease -5.505625684056914 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, severe mental disease) -> severe mental disease (2140ms) What is schizophrenia? second mental illness -5.505625684056914 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, second mental illness) -> second mental illness (2125ms) What is schizophrenia? neurodevelopmental and neurobehavioural disorder -5.51474644290405 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, neurodevelopmental and neurobehavioural disorder) -> neurodevelopmental and neurobehavioural disorder (2159ms) What is schizophrenia? awful long term health complication -5.51474644290405 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, awful long term health complication) -> awful long term health complication (2186ms) What is schizophrenia? neurological and mental health disorder -5.51474644290405 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, neurological and mental health disorder) -> neurological and mental health disorder (2159ms) What is schizophrenia? difficult-to-treat disorder -5.51474644290405 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, difficult-to-treat disorder) -> difficult-to-treat disorder (2186ms) What is schizophrenia? long and debilitating illness -5.51474644290405 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, long and debilitating illness) -> long and debilitating illness (2159ms) What is schizophrenia? common heritable disease trait -5.51474644290405 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, common heritable disease trait) -> common heritable disease trait (2159ms) What is schizophrenia? lot mental illness -5.51474644290405 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, lot mental illness) -> lot mental illness (2186ms) What is schizophrenia? psychiatric illness personality disorder -5.51474644290405 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, psychiatric illness personality disorder) -> psychiatric illness personality disorder (2159ms) What is schizophrenia? disease of the spirit -5.51474644290405 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, disease of the spirit) -> disease of the spirit (2186ms) What is schizophrenia? illness es -5.51474644290405 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, illness es) -> illness es (2159ms) What is schizophrenia? kind of illness -5.520977907034913 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, kind of illness) -> kind of illness (2186ms) What is schizophrenia? group of illness -5.52297197543422 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, group of illness) -> group of illness (2186ms) What is schizophrenia? chronic, degenerative disease -5.523255614634913 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, chronic, degenerative disease) -> chronic, degenerative disease (2216ms) What is schizophrenia? cluster of disorder -5.52502835841355 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, cluster of disorder) -> cluster of disorder (2217ms) What is schizophrenia? adult mental disorder -5.526189515075914 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, adult mental disorder) -> adult mental disorder (2217ms) What is schizophrenia? psychological disorder s -5.53119750796439 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, psychological disorder s) -> psychological disorder s (2216ms) What is schizophrenia? real mental disease -5.5330441262327135 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, real mental disease) -> real mental disease (2217ms) What is schizophrenia? brain disease -5.543903108602061 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, brain disease) -> brain disease (2217ms) What is schizophrenia? psychological related issue -5.546753346094913 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, psychological related issue) -> psychological related issue (2230ms) What is schizophrenia? neurological disorder -5.5521912348078875 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, neurological disorder) -> neurological disorder (2230ms) What is schizophrenia? severe medical mental condition -5.55587410494205 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, severe medical mental condition) -> severe medical mental condition (2230ms) What is schizophrenia? complex disease -5.572743983634905 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, complex disease) -> complex disease (2230ms) What is schizophrenia? psychiatric diagnosis -5.62200567584461 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, psychiatric diagnosis) -> psychiatric diagnosis (2230ms) What is schizophrenia? debilitating condition -5.6369192235929395 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, debilitating condition) -> debilitating condition (2230ms) What is schizophrenia? severe condition -5.6422210600999145 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, severe condition) -> severe condition (2283ms) What is schizophrenia? immunologic disorder -5.715390446816772 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, immunologic disorder) -> immunologic disorder (2283ms) What is schizophrenia? lonely illness -5.742464781113766 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, lonely illness) -> lonely illness (2283ms) What is schizophrenia? tragic disease -5.745272000198361 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, tragic disease) -> tragic disease (2283ms) What is schizophrenia? neurobiological disease -5.759987754927845 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, neurobiological disease) -> neurobiological disease (2283ms) What is schizophrenia? psychiatric label -5.7999582564543495 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, psychiatric label) -> psychiatric label (2283ms) What is schizophrenia? family disease -5.808682306237559 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, family disease) -> family disease (2335ms) What is schizophrenia? blanket diagnosis -5.832505092480487 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, blanket diagnosis) -> blanket diagnosis (2335ms) What is schizophrenia? modern illness -5.8333487367796995 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, modern illness) -> modern illness (2335ms) What is schizophrenia? spiritual disorder -5.839676069636641 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, spiritual disorder) -> spiritual disorder (2335ms) What is schizophrenia? brain condition -5.871915359357899 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, brain condition) -> brain condition (2364ms) What is schizophrenia? straightforward disorder -5.871915359357899 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, straightforward disorder) -> straightforward disorder (2364ms) What is schizophrenia? intimidating diagnosis -5.871915359357899 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, intimidating diagnosis) -> intimidating diagnosis (2335ms) What is schizophrenia? disturbing disease -5.871915359357899 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, disturbing disease) -> disturbing disease (2335ms) What is schizophrenia? permanent disease -5.8754916778626 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, permanent disease) -> permanent disease (2364ms) What is schizophrenia? genetic issue -5.878242692214841 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, genetic issue) -> genetic issue (2364ms) What is schizophrenia? understood disease -5.882882736473359 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, understood disease) -> understood disease (2364ms) What is schizophrenia? emotional condition -5.885344799748211 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, emotional condition) -> emotional condition (2364ms) What is schizophrenia? life situation -5.885436782392937 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, life situation) -> life situation (2380ms) What is schizophrenia? diagnostic label -5.885624580445799 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, diagnostic label) -> diagnostic label (2380ms) What is schizophrenia? ambiguous term -5.888546217425425 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, ambiguous term) -> ambiguous term (2380ms) What is schizophrenia? undiagnosed condition -5.890194320399866 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, undiagnosed condition) -> undiagnosed condition (2380ms) What is schizophrenia? mental impairment -5.890897357315875 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, mental impairment) -> mental impairment (2381ms) What is schizophrenia? extreme case -5.901455970887858 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, extreme case) -> extreme case (2588ms) What is schizophrenia? health issue -5.903292755644747 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, health issue) -> health issue (2588ms) What is schizophrenia? human oddity -5.904817489478579 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, human oddity) -> human oddity (2588ms) What is schizophrenia? developmental disease -5.919897630101299 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, developmental disease) -> developmental disease (2588ms) What is schizophrenia? disease -7.595681897167982 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, disease) -> disease (2588ms) What is schizophrenia? Atypical antipsychotics -7.905334915472646 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: ($x, drug, schizophrenia) -> (Atypical antipsychotics, are standard drugs for, schizophrenia) -> Atypical antipsychotics (2588ms) What is schizophrenia? malady -7.972877598157053 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, malady) -> malady (2607ms) What is schizophrenia? form -8.019286487574044 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, form) -> form (2607ms) What is schizophrenia? reason -8.053395504918727 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, reason) -> reason (2607ms) What is schizophrenia? contraindication -8.124703676974441 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (schizophrenia, Instance Of, contraindication) -> contraindication (2607ms) What is schizophrenia? drug -8.14804396327805 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> (Schizophrenia, Instance Of, drug) -> drug (2607ms) What is schizophrenia? a wandering uterus -8.244336930338665 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: (schizophrenia, be a by, $x) -> (schizophrenia, is still a disease caused by, a wandering uterus) -> a wandering uterus (2607ms) What is schizophrenia? severe mental illness -8.29013793488524 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: (schizophrenia, be the most common form of, $x) -> (Schizophrenia, is the most common form of, severe mental illness) -> severe mental illness (2631ms) What is schizophrenia? Aripiprazole -8.551130689061736 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: ($x, drug, schizophrenia) -> (Aripiprazole, is a drug used to treat, schizophrenia) -> Aripiprazole (2631ms) What is schizophrenia? Clozapine -8.68209126794568 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: ($x, drug, schizophrenia) -> (Clozapine, is a drug used for, schizophrenia) -> Clozapine (2631ms) What is schizophrenia? Zyprexa -8.69348654421861 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: ($x, drug, schizophrenia) -> (Zyprexa, is a drug used to treat, schizophrenia) -> Zyprexa (2631ms) What is schizophrenia? Psychiatrists -9.090481949507662 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: ($x, drug, schizophrenia) -> (Psychiatrists, use antipsychotic drugs to treat, schizophrenia) -> Psychiatrists (2631ms) What is schizophrenia? Animals -9.142739411149009 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: (schizophrenia, modelling, $x) -> (Autism and Schizophrenia, Be Modeled in, Animals) -> Animals (2631ms) What is schizophrenia? human brain evolution -9.284108711116824 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: (schizophrenia, be a by, $x) -> (schizophrenia, is a costly by-product of, human brain evolution) -> human brain evolution (2648ms) What is schizophrenia? each entry -9.32445276939149 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: ($x, element, schizophrenia) -> (each entry, incorporates a formalised element of, schizophrenia) -> each entry (2648ms) What is schizophrenia? delusions -10.027332652625956 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: (schizophrenia, be a by, $x) -> (Schizophrenia, is a disorder characterized by, delusions) -> delusions (2648ms) What is schizophrenia? violent -10.305348359371916 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: (schizophrenia, and / or, $x) -> (schizophrenia, can be verbally and/or physically, violent) -> violent (2648ms) What is schizophrenia? the illness -10.33517429489185 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: (schizophrenia, be the most common form of, $x) -> (Paranoid schizophrenia, is the most common form of, the illness) -> the illness (2648ms) What is schizophrenia? affinity -10.366402552245539 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: (schizophrenia, be a by, $x) -> (schizophrenia, is a disease by, affinity) -> affinity (2662ms) What is schizophrenia? disturbances -10.383645482942516 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: (schizophrenia, be a by, $x) -> (schizophrenia, is a disorder characterized by, disturbances) -> disturbances (2663ms) What is schizophrenia? disorders -10.537549831168585 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: (schizophrenia, be a class of, $x) -> (Schizophrenia, may be a class of, disorders) -> disorders (2662ms) What is schizophrenia? seroquel -10.582818847549134 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: ($x, drug, schizophrenia) -> (seroquel, is a drug that might treat, Schizophrenia) -> seroquel (2663ms) What is schizophrenia? clozapine -10.582818847549134 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: ($x, drug, schizophrenia) -> (clozapine, is a drug that might treat, Schizophrenia) -> clozapine (2677ms) What is schizophrenia? risperdal -10.582818847549134 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: ($x, drug, schizophrenia) -> (risperdal, is a drug that might treat, Schizophrenia) -> risperdal (2663ms) What is schizophrenia? the same people -10.606470040395038 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: ($x, drug, schizophrenia) -> (the same people, then used these drugs to treat, schizophrenia) -> the same people (2677ms) What is schizophrenia? The patients -10.70049301922472 What is schizophrenia? -> $x: (schizophrenia, instance of, $x) -> $x: ($x, drug, schizophrenia) -> (The patients, take antipsychotic drugs for, schizophrenia) -> The patients (2677ms) What is schizophrenia? CBD -11.596390532748432 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> (CBD, is known to be beneficial in, schizophrenia) -> CBD (2827ms) What is schizophrenia? an illusion -11.696786529471003 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> (an illusion, is known as, Schizophrenia) -> an illusion (2826ms) What is schizophrenia? ISPS-US -11.736176280115755 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (ISPS-US, Also known as, International Symposium for the Psychotherapy of Schizophrenia - US Chapter) -> ISPS-US (4017ms) What is schizophrenia? A user's guide to capitalism and schizophrenia: deviations from Deleuze and Guattari -11.736176280115755 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (A user's guide to capitalism and schizophrenia: deviations from Deleuze and Guattari, Also known as, Capitalism and schizophrenia.) -> A user's guide to capitalism and schizophrenia: deviations from Deleuze and Guattari (4017ms) What is schizophrenia? The Schizophrenias: ours to conquer -11.736176280115755 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (The Schizophrenias: ours to conquer, Also known as, Schizophrenias--yours and mine.) -> The Schizophrenias: ours to conquer (4017ms) What is schizophrenia? Sex differences in schizophrenia -11.736176280115755 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (Sex differences in schizophrenia, Also known as, Daily functions in schizophrenia in regards to gender differences) -> Sex differences in schizophrenia (4017ms) What is schizophrenia? On the Origin of the "Influencing Machine" in Schizophrenia -11.736176280115755 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (On the Origin of the "Influencing Machine" in Schizophrenia, Also known as, On the Origin of the ?Influencing Machine? in Schizophrenia.) -> On the Origin of the "Influencing Machine" in Schizophrenia (4017ms) What is schizophrenia? En Trange to Exit -11.736176280115755 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (En Trange to Exit, Also known as, En Trange to Exit (feat. Schizophrenia)) -> En Trange to Exit (4017ms) What is schizophrenia? Schizophrenia International Research Society -11.736176280115755 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (Schizophrenia International Research Society, Also known as, Schizophrenia international research society) -> Schizophrenia International Research Society (4040ms) What is schizophrenia? Schizophrenia Fellowship of NSW -11.736176280115755 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (Schizophrenia Fellowship of NSW, Also known as, Schizophrenia Fellowship of NSW Inc) -> Schizophrenia Fellowship of NSW (4039ms) What is schizophrenia? Unethical Psychiatrists -11.751708461730194 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> (Unethical Psychiatrists, is Known About, Schizophrenia) -> Unethical Psychiatrists (2826ms) What is schizophrenia? private What -11.775736338535406 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (private What, is, schizophrenia) -> private What (6084ms) What is schizophrenia? Autism -11.790226316741494 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> (Autism, was once known as, Infantile Schizophrenia) -> Autism (2827ms) What is schizophrenia? Diogenes Nkosi -11.864712254486179 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> (Diogenes Nkosi, was best known for, his schizophrenia) -> Diogenes Nkosi (2827ms) What is schizophrenia? GABA synthesis -11.870965135894041 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> (GABA synthesis, are known to play a role in, schizophrenia) -> GABA synthesis (2827ms) What is schizophrenia? Rice -11.907528073575895 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> (Rice, was known to suffer from, schizophrenia) -> Rice (2840ms) What is schizophrenia? Catastrophic schizophrenia -11.939386787229946 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (Catastrophic schizophrenia, Also known as, Catastrophic Schizophrenia) -> Catastrophic schizophrenia (4039ms) What is schizophrenia? GABA -12.046117272515815 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> (GABA, is known to be present in, schizophrenia) -> GABA (2840ms) What is schizophrenia? the Mentally Ill -12.074554295741935 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (the Mentally Ill, Is, Schizophrenia) -> the Mentally Ill (6084ms) What is schizophrenia? An Overview -12.086284607288233 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (An Overview, Is, Schizophrenia) -> An Overview (6084ms) What is schizophrenia? KIAA1913 -12.128733740896491 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (KIAA1913, Also known as, found in a patient with schizophrenia) -> KIAA1913 (4040ms) What is schizophrenia? the DISC 1 gene -12.232376744106219 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> (the DISC 1 gene, are known to cause, schizophrenia) -> the DISC 1 gene (2841ms) What is schizophrenia? Tom Middleton -12.261896820064678 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (Tom Middleton, Also known as, Schizophrenia) -> Tom Middleton (4040ms) What is schizophrenia? Fear -12.373170077999738 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (Fear, Also known as, "Schizophrenia"@fr) -> Fear (4056ms) What is schizophrenia? What Really Causes Schizophrenia -12.405185239145933 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (What Really Causes Schizophrenia, Edition Of, What Really Causes Schizophrenia) -> What Really Causes Schizophrenia (9368ms) What is schizophrenia? Schizophrenia -12.427894631082555 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (Schizophrenia, Also known as, Schizophrenia (feat. Moritz von Oswald)) -> Schizophrenia (4056ms) What is schizophrenia? split personality -12.428292421409763 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (split personality, is, schizophrenia) -> split personality (6084ms) What is schizophrenia? Schizoaffect Disorder -12.475919306417373 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (Schizoaffect Disorder, is, Schizophrenia) -> Schizoaffect Disorder (6084ms) What is schizophrenia? visual perception -12.494179878247888 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (visual perception, is, schizophrenia) -> visual perception (6084ms) What is schizophrenia? More About -12.533596935809152 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (More About, is, Schizophrenia) -> More About (6084ms) What is schizophrenia? Afghanistan -12.564591367376707 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (Afghanistan, is, schizophrenia) -> Afghanistan (6084ms) What is schizophrenia? Hoffman-LaRoche -12.566949373533545 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (Hoffman-LaRoche, is, schizophrenia) -> Hoffman-LaRoche (6107ms) What is schizophrenia? NIMH Schizophrenia ? -12.61817181246703 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (NIMH Schizophrenia ?, is, schizophrenia) -> NIMH Schizophrenia ? (6107ms) What is schizophrenia? Residual type schizophrenic disorders -12.636294381276924 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: (schizophrenia, include, $x) -> (Schizophrenia, Includes Diseases, Residual type schizophrenic disorders) -> Residual type schizophrenic disorders (10273ms) What is schizophrenia? Schizo-Affctive -12.64481942642307 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (Schizo-Affctive, is, Schizophrenia) -> Schizo-Affctive (6107ms) What is schizophrenia? an attorney -12.646432690376196 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (an attorney, is, Schizophrenia) -> an attorney (6108ms) What is schizophrenia? Lewis SW -12.650650325943575 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (Lewis SW, Is, Schizophrenia) -> Lewis SW (6107ms) What is schizophrenia? Evidence based treatment summaries -12.667484827263968 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (Evidence based treatment summaries, is, schizophrenia) -> Evidence based treatment summaries (6107ms) What is schizophrenia? Oxford University Press -12.709551136112287 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition, schizophrenia) -> (Oxford University Press, Book editions published, Schizophrenia) -> Oxford University Press (8834ms) What is schizophrenia? Chelsea House Publishers -12.709551136112287 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition, schizophrenia) -> (Chelsea House Publishers, Book editions published, Schizophrenia) -> Chelsea House Publishers (8834ms) What is schizophrenia? a new idea -12.724582765080262 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (a new idea, was, schizophrenia) -> a new idea (6108ms) What is schizophrenia? psychiatric case register -12.730036565940688 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (psychiatric case register, Is, schizophrenia) -> psychiatric case register (6107ms) What is schizophrenia? Three major psychiatric disorders -12.794809302793018 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (Three major psychiatric disorders, are, schizophrenia) -> Three major psychiatric disorders (6130ms) What is schizophrenia? Religion -12.815436537414097 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (Religion, is, schizophrenia) -> Religion (6130ms) What is schizophrenia? Recovery from schizophrenia -12.81900024227792 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Recovery from schizophrenia, Editions, Recovery from schizophrenia) -> Recovery from schizophrenia (9368ms) What is schizophrenia? Simple type schizophrenia -12.820168879635187 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: (schizophrenia, include, $x) -> (Schizophrenia, Includes classifications, Simple type schizophrenia) -> Simple type schizophrenia (10273ms) What is schizophrenia? the PubMed search -12.828033891565935 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (the PubMed search, were, 'schizophrenia) -> the PubMed search (6129ms) What is schizophrenia? Key Q&A Key Q&A -12.844414841168266 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (Key Q&A Key Q&A, is, schizophrenia) -> Key Q&A Key Q&A (6129ms) What is schizophrenia? SSDs The outcome -12.848370442302631 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (SSDs The outcome, was, schizophrenia) -> SSDs The outcome (6129ms) What is schizophrenia? Tandem Library -12.856942599082005 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition, schizophrenia) -> (Tandem Library, Book editions published, Schizophrenia) -> Tandem Library (8834ms) What is schizophrenia? Surviving Schizophrenia -12.856942599082005 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Surviving Schizophrenia: A Family Manual, Edition Of, Surviving Schizophrenia) -> Surviving Schizophrenia (9118ms) What is schizophrenia? Paranoid Schizophrenia -12.856942599082005 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, split to, $x) -> (Paranoid schizophrenia, Split To, Paranoid Schizophrenia) -> Paranoid Schizophrenia (9369ms) What is schizophrenia? Chronic Schizophrenia -12.856942599082005 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Chronic Schizophrenia, Editions, Chronic Schizophrenia) -> Chronic Schizophrenia (9368ms) What is schizophrenia? Beautiful Minds -12.856942599082005 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Beautiful Minds: Living With Schizophrenia, Edition Of, Beautiful Minds) -> Beautiful Minds (9118ms) What is schizophrenia? Catatonic Schizophrenia -12.856942599082005 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, split to, $x) -> (Catatonic Schizophrenia, Split To, Catatonic Schizophrenia) -> Catatonic Schizophrenia (9368ms) What is schizophrenia? Conquering Schizophrenia -12.856942599082005 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Conquering Schizophrenia, Edition Of, Conquering Schizophrenia) -> Conquering Schizophrenia (9624ms) What is schizophrenia? Borgo Press -12.856942599082005 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition, schizophrenia) -> (Borgo Press, Book editions published, Schizophrenia) -> Borgo Press (8834ms) What is schizophrenia? Diseases Explained -12.856942599082005 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Diseases Explained: Schizophrenia Wall Chart, Edition Of, Diseases Explained) -> Diseases Explained (9119ms) What is schizophrenia? Healing Schizophrenia -12.856942599082005 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Healing Schizophrenia: Complementary Vitamin & Drug Treatments, Edition Of, Healing Schizophrenia) -> Healing Schizophrenia (9119ms) What is schizophrenia? Strategic Intervention in Schizophrenia -12.890142161285581 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Strategic Intervention in Schizophrenia, Edition Of, Strategic Intervention in Schizophrenia) -> Strategic Intervention in Schizophrenia (9624ms) What is schizophrenia? NAMI | Schizophrenia -12.908077052581643 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (NAMI | Schizophrenia, Is, Schizophrenia) -> NAMI | Schizophrenia (6129ms) What is schizophrenia? now its most overt manifestation -12.927917183481872 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (now its most overt manifestation, is, schizophrenia) -> now its most overt manifestation (6129ms) What is schizophrenia? Surviving Schizophrenia: A Family Manual -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Surviving Schizophrenia: A Family Manual, Edition Of, Surviving Schizophrenia) -> Surviving Schizophrenia: A Family Manual (16673ms) What is schizophrenia? Medicating schizophrenia : a history -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Medicating schizophrenia : a history, Edition Of, Medicating schizophrenia) -> Medicating schizophrenia : a history (16673ms) What is schizophrenia? Family management of schizophrenia: a study of clinical, social, family, and economic benefits -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Family management of schizophrenia: a study of clinical, social, family, and economic benefits, Edition Of, Family management of schizophrenia) -> Family management of schizophrenia: a study of clinical, social, family, and economic benefits (12273ms) What is schizophrenia? Schizophrenia and genetics: a twin study vantage point -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Schizophrenia and genetics: a twin study vantage point, Edition Of, Schizophrenia and genetics) -> Schizophrenia and genetics: a twin study vantage point (12319ms) What is schizophrenia? Schizophrenia and the poor -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition, schizophrenia) -> (Schizophrenia and the poor, Editions, Schizophrenia and the poor) -> Schizophrenia and the poor (16514ms) What is schizophrenia? A tragedy of schizophrenia: the wife's tale -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (A tragedy of schizophrenia: the wife's tale, Edition Of, A tragedy of schizophrenia) -> A tragedy of schizophrenia: the wife's tale (16475ms) What is schizophrenia? Schizophrenia: the meanings of madness -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Schizophrenia: the meanings of madness, Edition Of, Schizophrenia: the meanings of madness) -> Schizophrenia: the meanings of madness (16829ms) What is schizophrenia? Recovery from Schizophrenia: Psychiatry & Political Economy -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Recovery from Schizophrenia: Psychiatry & Political Economy, Edition Of, Recovery from Schizophrenia) -> Recovery from Schizophrenia: Psychiatry & Political Economy (16868ms) What is schizophrenia? Schizophrenia: medical & psychological subject index with bibliography -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Schizophrenia: medical & psychological subject index with bibliography, Edition Of, Schizophrenia) -> Schizophrenia: medical & psychological subject index with bibliography (16750ms) What is schizophrenia? The Management of Schizophrenia -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (The Management of Schizophrenia, Edition Of, The Management of Schizophrenia) -> The Management of Schizophrenia (16111ms) What is schizophrenia? Language behavior and psychopathology -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Language behavior in schizophrenia, Editions, Language behavior and psychopathology) -> Language behavior and psychopathology (11854ms) What is schizophrenia? Schizophrenia: the facts -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition, schizophrenia) -> (Schizophrenia: the facts, Edition Of, Schizophrenia) -> Schizophrenia: the facts (11946ms) What is schizophrenia? Surviving schizophrenia : a manual for families, consumers, and providers -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition, schizophrenia) -> (Surviving schizophrenia : a manual for families, consumers, and providers, Edition Of, Surviving Schizophrenia) -> Surviving schizophrenia : a manual for families, consumers, and providers (12216ms) What is schizophrenia? Levels of schizophrenia -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Levels of schizophrenia, Editions, Levels of schizophrenia) -> Levels of schizophrenia (17061ms) What is schizophrenia? Schizophrenia; chemistry, metabolism and treatment -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Schizophrenia; chemistry, metabolism and treatment, Edition Of, Schizophrenia; chemistry, metabolism and treatment) -> Schizophrenia; chemistry, metabolism and treatment (17062ms) What is schizophrenia? Schizophrenia and bipolar disorders: often misdiagnosed, often mistreated : a family manual -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia and bipolar disorders, Editions, Schizophrenia and bipolar disorders: often misdiagnosed, often mistreated : a family manual) -> Schizophrenia and bipolar disorders: often misdiagnosed, often mistreated : a family manual (11902ms) What is schizophrenia? Mind, Brain, and Schizophrenia -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Mind, Brain, and Schizophrenia, Editions, Mind, Brain, and Schizophrenia) -> Mind, Brain, and Schizophrenia (16255ms) What is schizophrenia? Inheritance of schizophrenia -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Inheritance of schizophrenia, Edition Of, Inheritance of schizophrenia) -> Inheritance of schizophrenia (12319ms) What is schizophrenia? Language behavior in schizophrenia: selected readings in research and theory. -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Language behavior in schizophrenia: selected readings in research and theory., Edition Of, Language behavior in schizophrenia) -> Language behavior in schizophrenia: selected readings in research and theory. (12565ms) What is schizophrenia? Schizophrenia and Human Value -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Schizophrenia and Human Value: Chronic Schizophrenia, Science and Society, Edition Of, Schizophrenia and Human Value) -> Schizophrenia and Human Value (12678ms) What is schizophrenia? A Carer's Guide to Schizophrenia -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (A Carer's Guide to Schizophrenia, Edition Of, A Carer's Guide to Schizophrenia) -> A Carer's Guide to Schizophrenia (11946ms) What is schizophrenia? The Concept of Schizophrenia: Historical Perspectives -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (The Concept of Schizophrenia: Historical Perspectives, Edition Of, The Concept of Schizophrenia) -> The Concept of Schizophrenia: Historical Perspectives (16789ms) What is schizophrenia? Schizophrenia:Voices of an Illness -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Schizophrenia:Voices of an Illness, Edition Of, Schizophrenia:Voices of an Illness) -> Schizophrenia:Voices of an Illness (16712ms) What is schizophrenia? Schizophrenia: the cutting edge -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition, schizophrenia) -> (Schizophrenia: the cutting edge, Edition Of, Schizophrenia) -> Schizophrenia: the cutting edge (10344ms) What is schizophrenia? Neurochemistry of schizophrenia & depression -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Neurochemistry of schizophrenia & depression, Edition Of, Neurochemistry of schizophrenia & depression) -> Neurochemistry of schizophrenia & depression (16788ms) What is schizophrenia? Schizophrenia: Lothian Primary Care NHS Trust -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition, schizophrenia) -> (Schizophrenia: Lothian Primary Care NHS Trust, Edition Of, Schizophrenia) -> Schizophrenia: Lothian Primary Care NHS Trust (17133ms) What is schizophrenia? Schizophrenia: Aspects of Care -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Schizophrenia: Aspects of Care, Edition Of, Schizophrenia) -> Schizophrenia: Aspects of Care (16513ms) What is schizophrenia? Living With Schizophrenia -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Living With Schizophrenia, Edition Of, Living With Schizophrenia) -> Living With Schizophrenia (17062ms) What is schizophrenia? Schizophrenia (Life Balance) -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Schizophrenia (Life Balance), Edition Of, Schizophrenia) -> Schizophrenia (Life Balance) (16750ms) What is schizophrenia? Schizophrenia: Losing Touch With Reality (Encyclopedia of Psychological Disorders Series) -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Schizophrenia: Losing Touch With Reality (Encyclopedia of Psychological Disorders Series), Edition Of, Schizophrenia) -> Schizophrenia: Losing Touch With Reality (Encyclopedia of Psychological Disorders Series) (16673ms) What is schizophrenia? Research techniques in schizophrenia -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Research techniques in schizophrenia, Edition Of, Research techniques in schizophrenia) -> Research techniques in schizophrenia (12366ms) What is schizophrenia? Family care of schizophrenia : a problem-solving approach to the treatment of mental illness -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Family care of schizophrenia : a problem-solving approach to the treatment of mental illness, Edition Of, Family management of schizophrenia) -> Family care of schizophrenia : a problem-solving approach to the treatment of mental illness (16475ms) What is schizophrenia? Recovery from schizophrenia: psychiatry and political economy -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Recovery from schizophrenia, Editions, Recovery from schizophrenia: psychiatry and political economy) -> Recovery from schizophrenia: psychiatry and political economy (16868ms) What is schizophrenia? Schizophrenia; research and theory -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia; research and theory, Editions, Schizophrenia; research and theory) -> Schizophrenia; research and theory (17133ms) What is schizophrenia? The Neuropsychology Of Schizophrenia (Brain Damage, Behaviour, & Cognition) -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (The Neuropsychology Of Schizophrenia, Editions, The Neuropsychology Of Schizophrenia (Brain Damage, Behaviour, & Cognition)) -> The Neuropsychology Of Schizophrenia (Brain Damage, Behaviour, & Cognition) (16435ms) What is schizophrenia? Schizophrenia: selected papers -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition, schizophrenia) -> (Schizophrenia: selected papers, Edition Of, Schizophrenia) -> Schizophrenia: selected papers (16788ms) What is schizophrenia? Healing Schizophrenia: Complementary Vitamin & Drug Treatments -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Healing Schizophrenia, Editions, Healing Schizophrenia: Complementary Vitamin & Drug Treatments) -> Healing Schizophrenia: Complementary Vitamin & Drug Treatments (12273ms) What is schizophrenia? Mind, brain, and schizophrenia -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Mind, brain, and schizophrenia, Edition Of, Mind, Brain, and Schizophrenia) -> Mind, brain, and schizophrenia (12565ms) What is schizophrenia? Theories of schizophrenia -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Theories of schizophrenia, Edition Of, Theories of schizophrenia) -> Theories of schizophrenia (16712ms) What is schizophrenia? Schizophrenia (The Bode Library) -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia, Editions, Schizophrenia (The Bode Library)) -> Schizophrenia (The Bode Library) (12216ms) What is schizophrenia? Schizophrenia, somatic aspects -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Schizophrenia, somatic aspects, Edition Of, Schizophrenia, somatic aspects) -> Schizophrenia, somatic aspects (11807ms) What is schizophrenia? Schizophrenia : empirical research and findings -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition, schizophrenia) -> (Schizophrenia : empirical research and findings, Edition Of, Schizophrenia) -> Schizophrenia : empirical research and findings (16254ms) What is schizophrenia? Essays in Schizophrenia (Pocket picture guides to clinical medicine) -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Essays in Schizophrenia, Editions, Essays in Schizophrenia (Pocket picture guides to clinical medicine)) -> Essays in Schizophrenia (Pocket picture guides to clinical medicine) (16712ms) What is schizophrenia? Schizophrenia; conditional reflex studies -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia, Editions, Schizophrenia; conditional reflex studies) -> Schizophrenia; conditional reflex studies (17061ms) What is schizophrenia? Drug Maintenance in Schizophrenia (Clinical Insights) -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Drug Maintenance in Schizophrenia (Clinical Insights), Edition Of, Drug Maintenance in Schizophrenia) -> Drug Maintenance in Schizophrenia (Clinical Insights) (16868ms) What is schizophrenia? How to live with schizophrenia -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (How to live with schizophrenia, Edition Of, How to live with schizophrenia) -> How to live with schizophrenia (16475ms) What is schizophrenia? Schizophrenia: a review of Schizophrenia services in Scotland. -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Schizophrenia: a review of Schizophrenia services in Scotland., Edition Of, Schizophrenia) -> Schizophrenia: a review of Schizophrenia services in Scotland. (16868ms) What is schizophrenia? The Reality of Schizophrenia -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (The Reality of Schizophrenia, Edition Of, The Reality of Schizophrenia) -> The Reality of Schizophrenia (16435ms) What is schizophrenia? Schizophrenia Simplified: A Field Guide to Schizophrenia for Frontline Workers, Families, and Professionals -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia Simplified, Editions, Schizophrenia Simplified: A Field Guide to Schizophrenia for Frontline Workers, Families, and Professionals) -> Schizophrenia Simplified: A Field Guide to Schizophrenia for Frontline Workers, Families, and Professionals (11807ms) What is schizophrenia? Frontal lobes and schizophrenia: second lobotomy project of Boston Psychopathic Hospital. -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Frontal lobes and schizophrenia, Editions, Frontal lobes and schizophrenia: second lobotomy project of Boston Psychopathic Hospital.) -> Frontal lobes and schizophrenia: second lobotomy project of Boston Psychopathic Hospital. (11603ms) What is schizophrenia? Schizophrenia : a philosophical reflection on Lacan's structuralist interpretation -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia, Editions, Schizophrenia : a philosophical reflection on Lacan's structuralist interpretation) -> Schizophrenia : a philosophical reflection on Lacan's structuralist interpretation (16712ms) What is schizophrenia? Schizophrenia: A Fresh Approach -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Schizophrenia: A Fresh Approach, Edition Of, Schizophrenia) -> Schizophrenia: A Fresh Approach (17133ms) What is schizophrenia? Schizophrenia as a life style -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Schizophrenia as a life style, Edition Of, Schizophrenia as a life style) -> Schizophrenia as a life style (11652ms) What is schizophrenia? Working with schizophrenia: a needs based approach -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Working with schizophrenia, Editions, Working with schizophrenia: a needs based approach) -> Working with schizophrenia: a needs based approach (16829ms) What is schizophrenia? Orthomolecular psychiatry: treatment of schizophrenia -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Orthomolecular psychiatry: treatment of schizophrenia, Edition Of, Orthomolecular psychiatry: treatment of schizophrenia) -> Orthomolecular psychiatry: treatment of schizophrenia (12678ms) What is schizophrenia? Schizophrenia and human value : chronic schizophrenia, science, and society -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia and Human Value, Editions, Schizophrenia and human value : chronic schizophrenia, science, and society) -> Schizophrenia and human value : chronic schizophrenia, science, and society (16475ms) What is schizophrenia? Schizophrenia: New Medical Therapies -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Schizophrenia: New Medical Therapies, Edition Of, Schizophrenia) -> Schizophrenia: New Medical Therapies (16829ms) What is schizophrenia? Language and schizophrenia -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition, schizophrenia) -> (Language and schizophrenia, Editions, Language and schizophrenia) -> Language and schizophrenia (16789ms) What is schizophrenia? Schizophrenia (Popular Medical Booklets) -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia, Editions, Schizophrenia (Popular Medical Booklets)) -> Schizophrenia (Popular Medical Booklets) (17061ms) What is schizophrenia? Anti-Oedipus -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Anti-Oedipus: capitalism and schizophrenia, Edition Of, Anti-Oedipus) -> Anti-Oedipus (9697ms) What is schizophrenia? Families coping with schizophrenia: a practitioner's guide to family groups -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Families coping with schizophrenia: a practitioner's guide to family groups, Edition Of, Families coping with schizophrenia) -> Families coping with schizophrenia: a practitioner's guide to family groups (16750ms) What is schizophrenia? Drug Therapy and Schizophrenia (Psychiatric Disorders: Drugs & Psychology for the Mind and Body) -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Drug Therapy and Schizophrenia, Editions, Drug Therapy and Schizophrenia (Psychiatric Disorders: Drugs & Psychology for the Mind and Body)) -> Drug Therapy and Schizophrenia (Psychiatric Disorders: Drugs & Psychology for the Mind and Body) (16435ms) What is schizophrenia? Schizophrenia: Straight Talk for Family and Friends -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia, Editions, Schizophrenia: Straight Talk for Family and Friends) -> Schizophrenia: Straight Talk for Family and Friends (16829ms) What is schizophrenia? Schizophrenia: Your Questions Answered -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Schizophrenia: Your Questions Answered, Edition Of, Schizophrenia) -> Schizophrenia: Your Questions Answered (11854ms) What is schizophrenia? Common questions on schizophrenia and their answers -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Common questions on schizophrenia and their answers, Edition Of, Common questions on schizophrenia and their answers) -> Common questions on schizophrenia and their answers (11854ms) What is schizophrenia? Schizophrenia (Roseneath Popular Medical Booklets) -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Schizophrenia (Roseneath Popular Medical Booklets), Edition Of, Schizophrenia) -> Schizophrenia (Roseneath Popular Medical Booklets) (16254ms) What is schizophrenia? Schizophrenia: straight talk for family and friends -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition, schizophrenia) -> (Schizophrenia: straight talk for family and friends, Edition Of, Schizophrenia) -> Schizophrenia: straight talk for family and friends (17062ms) What is schizophrenia? Psychodiagnosis in schizophrenia -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Psychodiagnosis in schizophrenia, Edition Of, Psychodiagnosis in schizophrenia) -> Psychodiagnosis in schizophrenia (16111ms) What is schizophrenia? Interpretation of Schizophrenia -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Interpretation of schizophrenia, Edition Of, Interpretation of Schizophrenia) -> Interpretation of Schizophrenia (16475ms) What is schizophrenia? Schizophrenia: a scientific delusion? -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia, Editions, Schizophrenia: a scientific delusion?) -> Schizophrenia: a scientific delusion? (16868ms) What is schizophrenia? Adaptation in schizophrenia: the theory of segmental set -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Adaptation in schizophrenia, Editions, Adaptation in schizophrenia: the theory of segmental set) -> Adaptation in schizophrenia: the theory of segmental set (12273ms) What is schizophrenia? Schizophrenia: Where Families Fear to Tread from Despair to Hope. -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition, schizophrenia) -> (Schizophrenia: Where Families Fear to Tread from Despair to Hope., Edition Of, Schizophrenia) -> Schizophrenia: Where Families Fear to Tread from Despair to Hope. (12216ms) What is schizophrenia? Schizophrenia as a human process -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Schizophrenia as a human process, Edition Of, Schizophrenia as a human process) -> Schizophrenia as a human process (12319ms) What is schizophrenia? Generalizing ability in schizophrenia : an inquiry into the disorders of problem thinking in schizophrenia -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Generalizing ability in schizophrenia : an inquiry into the disorders of problem thinking in schizophrenia, Edition Of, Generalizing ability in schizophrenia) -> Generalizing ability in schizophrenia : an inquiry into the disorders of problem thinking in schizophrenia (11702ms) What is schizophrenia? Welcome, Silence -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Welcome, Silence: My Triumph Over Schizophrenia, Edition Of, Welcome, Silence) -> Welcome, Silence (16789ms) What is schizophrenia? Towards a sociology of schizophrenia -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Towards a sociology of schizophrenia : humanistic reflections, Edition Of, Towards a sociology of schizophrenia) -> Towards a sociology of schizophrenia (12319ms) What is schizophrenia? Mental Illness and Schizophrenia -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Mental Illness and Schizophrenia, Edition Of, Mental Illness and Schizophrenia) -> Mental Illness and Schizophrenia (17133ms) What is schizophrenia? Stages of Schizophrenia, ( Part One) The -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Stages of Schizophrenia, ( Part One) The, Edition Of, Stages of Schizophrenia, ( Part One) The) -> Stages of Schizophrenia, ( Part One) The (12678ms) What is schizophrenia? Schizophrenia: Medical & Psychological Subject Index With Bibliography -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition, schizophrenia) -> (Schizophrenia: Medical & Psychological Subject Index With Bibliography, Edition Of, Schizophrenia) -> Schizophrenia: Medical & Psychological Subject Index With Bibliography (16868ms) What is schizophrenia? Schizophrenia : an introduction to research and theory -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia, Editions, Schizophrenia : an introduction to research and theory) -> Schizophrenia : an introduction to research and theory (17061ms) What is schizophrenia? Conquering schizophrenia : a father, his son, and a medical breakthrough -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Conquering schizophrenia : a father, his son, and a medical breakthrough, Edition Of, Conquering Schizophrenia) -> Conquering schizophrenia : a father, his son, and a medical breakthrough (12678ms) What is schizophrenia? A Thousand Plateaus -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (A thousand plateaus : capitalism and schizophrenia, Edition Of, A Thousand Plateaus) -> A Thousand Plateaus (16435ms) What is schizophrenia? A psychotherapy of schizophrenia: direct analysis -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (A psychotherapy of schizophrenia: direct analysis, Edition Of, A psychotherapy of schizophrenia: direct analysis) -> A psychotherapy of schizophrenia: direct analysis (16514ms) What is schizophrenia? Schizophrenia: the sacred symbol of psychiatry -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition, schizophrenia) -> (Schizophrenia: the sacred symbol of psychiatry, Edition Of, Schizophrenia) -> Schizophrenia: the sacred symbol of psychiatry (16712ms) What is schizophrenia? Schizophrenia: Positive and Negative Symptoms and Syndromes (Modern Problems of Pharmacopsychiatry) -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia, Editions, Schizophrenia: Positive and Negative Symptoms and Syndromes (Modern Problems of Pharmacopsychiatry)) -> Schizophrenia: Positive and Negative Symptoms and Syndromes (Modern Problems of Pharmacopsychiatry) (16111ms) What is schizophrenia? Schizophrenia: a review of schizophrenia services in Scotland -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia, Editions, Schizophrenia: a review of schizophrenia services in Scotland) -> Schizophrenia: a review of schizophrenia services in Scotland (16514ms) What is schizophrenia? Schizophrenia and the family -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Schizophrenia and the family, Edition Of, Schizophrenia and the family) -> Schizophrenia and the family (12273ms) What is schizophrenia? Cognitive remediation therapy for schizophrenia -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Cognitive remediation therapy for schizophrenia: an introduction, Edition Of, Cognitive remediation therapy for schizophrenia) -> Cognitive remediation therapy for schizophrenia (16513ms) What is schizophrenia? Schizophrenia: Innovations in Diagnosis and Treatment -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia, Editions, Schizophrenia: Innovations in Diagnosis and Treatment) -> Schizophrenia: Innovations in Diagnosis and Treatment (12273ms) What is schizophrenia? Schizophrenia: A Scientific Delusion? -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Schizophrenia: A Scientific Delusion?, Edition Of, Schizophrenia) -> Schizophrenia: A Scientific Delusion? (16712ms) What is schizophrenia? A tragedy of schizophrenia -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (A tragedy of schizophrenia: the wife's tale, Edition Of, A tragedy of schizophrenia) -> A tragedy of schizophrenia (16111ms) What is schizophrenia? Paranoid Schizophrenia: A Medical Dictionary, Bibliography, and Annotated Research Guide to Internet References -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Paranoid Schizophrenia, Editions, Paranoid Schizophrenia: A Medical Dictionary, Bibliography, and Annotated Research Guide to Internet References) -> Paranoid Schizophrenia: A Medical Dictionary, Bibliography, and Annotated Research Guide to Internet References (17133ms) What is schizophrenia? Recovery from Schizophrenia: Psychiatry and Political Economy -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Recovery from Schizophrenia: Psychiatry and Political Economy, Edition Of, Recovery from Schizophrenia) -> Recovery from Schizophrenia: Psychiatry and Political Economy (17133ms) What is schizophrenia? Schizophrenia: a guide for sufferers and their families -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition, schizophrenia) -> (Schizophrenia: a guide for sufferers and their families, Edition Of, Schizophrenia) -> Schizophrenia: a guide for sufferers and their families (16475ms) What is schizophrenia? Cultural schizophrenia : Islamic societies confronting the west -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Cultural schizophrenia, Editions, Cultural schizophrenia : Islamic societies confronting the west) -> Cultural schizophrenia : Islamic societies confronting the west (16789ms) What is schizophrenia? Schizophrenia: From Mind to Molecule (American Psychopathological Association) -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia, Editions, Schizophrenia: From Mind to Molecule (American Psychopathological Association)) -> Schizophrenia: From Mind to Molecule (American Psychopathological Association) (16789ms) What is schizophrenia? Schizophrenia: The Major Issues -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Schizophrenia: The Major Issues, Edition Of, Schizophrenia) -> Schizophrenia: The Major Issues (17062ms) What is schizophrenia? Schizophrenia: Voices of an Illness -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia, Editions, Schizophrenia: Voices of an Illness) -> Schizophrenia: Voices of an Illness (16750ms) What is schizophrenia? Schizophrenia Revealed: From Neurons to Social Interactions -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia Revealed, Editions, Schizophrenia Revealed: From Neurons to Social Interactions) -> Schizophrenia Revealed: From Neurons to Social Interactions (16254ms) What is schizophrenia? Recent research on schizophrenia -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Recent research on schizophrenia, Edition Of, Recent research on schizophrenia) -> Recent research on schizophrenia (17133ms) What is schizophrenia? Schizophrenia (Current concepts) -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia, Editions, Schizophrenia (Current concepts)) -> Schizophrenia (Current concepts) (16513ms) What is schizophrenia? Schizophrenia, a biopsychological perspective -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Schizophrenia, a biopsychological perspective, Edition Of, Schizophrenia, a biopsychological perspective) -> Schizophrenia, a biopsychological perspective (16750ms) What is schizophrenia? Schizophrenia, a source of social insight -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Schizophrenia, a source of social insight, Edition Of, Schizophrenia, a source of social insight) -> Schizophrenia, a source of social insight (12565ms) What is schizophrenia? Recovery from Schizophrenia -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Recovery from Schizophrenia: Psychiatry and Political Economy, Edition Of, Recovery from Schizophrenia) -> Recovery from Schizophrenia (16111ms) What is schizophrenia? Managing Negative Symptoms of Schizophrenia -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Managing Negative Symptoms of Schizophrenia, Edition Of, Managing Negative Symptoms of Schizophrenia) -> Managing Negative Symptoms of Schizophrenia (10474ms) What is schizophrenia? Schizophrenia : selected papers -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia, Editions, Schizophrenia : selected papers) -> Schizophrenia : selected papers (17133ms) What is schizophrenia? Magic and schizophrenia -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Magic and schizophrenia, Edition Of, Magic and schizophrenia) -> Magic and schizophrenia (16673ms) What is schizophrenia? Depression and schizophrenia: a contribution on their chemical pathologies -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Depression and schizophrenia: a contribution on their chemical pathologies, Edition Of, Depression and schizophrenia) -> Depression and schizophrenia: a contribution on their chemical pathologies (16829ms) What is schizophrenia? Perceptual constancy in schizophrenia -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition of, $x) -> (Perceptual constancy in schizophrenia, Edition Of, Perceptual constancy in schizophrenia) -> Perceptual constancy in schizophrenia (11807ms) What is schizophrenia? Interpretation of schizophrenia. -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Interpretation of Schizophrenia, Editions, Interpretation of schizophrenia.) -> Interpretation of schizophrenia. (16435ms) What is schizophrenia? Schizophrenia: pharmacotherapy and psychotherapy -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Schizophrenia: pharmacotherapy and psychotherapy, Edition Of, Schizophrenia) -> Schizophrenia: pharmacotherapy and psychotherapy (12216ms) What is schizophrenia? Catatonic Schizophrenia: A Medical Dictionary, Bibliography, And Annotated Research Guide To Internet References -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Catatonic Schizophrenia, Editions, Catatonic Schizophrenia: A Medical Dictionary, Bibliography, And Annotated Research Guide To Internet References) -> Catatonic Schizophrenia: A Medical Dictionary, Bibliography, And Annotated Research Guide To Internet References (11946ms) What is schizophrenia? Schizophrenia: a fresh approach -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: (schizophrenia, edition, $x) -> (Schizophrenia, Editions, Schizophrenia: a fresh approach) -> Schizophrenia: a fresh approach (16750ms) What is schizophrenia? Language behavior and communication; an introduction -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Language behavior and communication; an introduction, Edition Of, Language behavior in schizophrenia) -> Language behavior and communication; an introduction (11455ms) What is schizophrenia? Schizophrenia: a psychopharmacological approach -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition, schizophrenia) -> (Schizophrenia: a psychopharmacological approach, Edition Of, Schizophrenia) -> Schizophrenia: a psychopharmacological approach (16673ms) What is schizophrenia? Schizophrenia: its causes, symptoms and treatment -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition, schizophrenia) -> (Schizophrenia: its causes, symptoms and treatment, Edition Of, Schizophrenia) -> Schizophrenia: its causes, symptoms and treatment (12319ms) What is schizophrenia? Intellectual schizophrenia: culture, crisis, and education. -12.941218410829544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the expansion of schizophrenia ? -> $x: (schizophrenia, expansion, $x) -> $x: ($x, edition of, schizophrenia) -> (Intellectual schizophrenia: culture, crisis, and education., Edition Of, Intellectual schizophrenia) -> Intellectual schizophrenia: culture, crisis, and education. (16868ms) What is schizophrenia? Bipolar illness -12.968241503800426 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (Bipolar illness, is, schizophrenia) -> Bipolar illness (6129ms) What is schizophrenia? inappropriate responses -12.983186923329628 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (inappropriate responses, is, schizophrenia) -> inappropriate responses (6149ms) What is schizophrenia? primary psychiatric diagnoses -13.061183316054663 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (primary psychiatric diagnoses, were, schizophrenia) -> primary psychiatric diagnoses (6149ms) What is schizophrenia? mental illnesses -13.072918275771709 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (mental illnesses, is, schizophrenia) -> mental illnesses (6149ms) What is schizophrenia? any comments -13.12384457758715 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (any comments, is, Schizophrenia) -> any comments (6149ms) What is schizophrenia? Toxo -13.166932084627495 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (Toxo, is, schizophrenia) -> Toxo (6149ms) What is schizophrenia? 1 Yes No -13.210739980153342 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (1 Yes No, is, schizophrenia) -> 1 Yes No (6149ms) What is schizophrenia? Depression -13.249991429533829 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (Depression, is an emotion associated with, Schizophrenia) -> Depression (6149ms) What is schizophrenia? predominant concern -13.258172425124425 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (predominant concern, are, schizophrenia) -> predominant concern (6149ms) What is schizophrenia? 60 Minutes and PBS Frontline -13.303419709504595 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (60 Minutes and PBS Frontline, is, schizophrenia) -> 60 Minutes and PBS Frontline (7792ms) What is schizophrenia? tri-personal -13.384901772119544 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (tri-personal, is, schizophrenia) -> tri-personal (7792ms) What is schizophrenia? no organic lesion -13.405277176546956 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (no organic lesion, are, schizophrenia) -> no organic lesion (7792ms) What is schizophrenia? Flutterrage -13.48072657347619 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: ($x, be, schizophrenia) -> (Flutterrage, is, schizophrenia) -> Flutterrage (7792ms) What is schizophrenia? an illness -13.502588306489908 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: (schizophrenia, be, $x) -> (Schizophrenia, is, an illness) -> an illness (7793ms) What is schizophrenia? a Disease -13.530416187912559 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: (schizophrenia, be, $x) -> (Schizophrenia, is, a Disease) -> a Disease (7792ms) What is schizophrenia? The diagnosis and stigma of schizophrenia -13.570178469097877 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (The diagnosis and stigma of schizophrenia, Also known as, Schizophrenia) -> The diagnosis and stigma of schizophrenia (4070ms) What is schizophrenia? violent ? -13.573793625839272 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: (schizophrenia, do, $x) -> (schizophrenia, do become, violent ?) -> violent ? (7793ms) What is schizophrenia? a psychosis -13.588593269551534 What is schizophrenia? -> what be [ schizophrenia ] ? -> what be the mening of schizophrenia ? -> $x: (schizophrenia, mening, $x) -> $x: (schizophrenia, be, $x) -> (Schizophrenia, is, a psychosis) -> a psychosis (7793ms) What is schizophrenia? pregnancy -13.738276980298561 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> (pregnancy, is a well-known risk factor for, schizophrenia) -> pregnancy (2840ms) What is schizophrenia? autism -13.75308959767972 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> (autism, was known as, childhood schizophrenia) -> autism (2840ms) What is schizophrenia? the form -13.85031181990042 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> (the form, is known as, catatonic schizophrenia) -> the form (2851ms) What is schizophrenia? the behavior -14.051317662106586 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> (the behavior, was generally known as, childhood schizophrenia) -> the behavior (2851ms) What is schizophrenia? very -14.173884310385791 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> (very, little was known about, schizophrenia) -> very (2851ms) What is schizophrenia? speed -14.212461355391245 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> (speed, are known problems in, schizophrenia) -> speed (2851ms) What is schizophrenia? five -14.29154714552315 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> (five, are known to have had, schizophrenia) -> five (2851ms) What is schizophrenia? Shea -14.696635253664457 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (Shea, knows a man with, schizophrenia) -> Shea (4084ms) What is schizophrenia? Psssssh -14.75578079145505 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (Psssssh, know about, schizophrenia) -> Psssssh (4083ms) What is schizophrenia? Nobody -14.944114919194188 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (Nobody, knows exact causes of, schizophrenia) -> Nobody (4096ms) What is schizophrenia? a disease -14.972586594181628 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (a disease, known as, schizophrenia) -> a disease (4096ms) What is schizophrenia? a gene -14.972586594181628 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (a gene, known to, increase risk for schizophrenia) -> a gene (4097ms) What is schizophrenia? dementia praecox -15.287042878380277 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (dementia praecox, known as, schizophrenia) -> dementia praecox (4097ms) What is schizophrenia? The woman?s family -15.884801675347042 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (The woman?s family, knew nothing of, schizophrenia) -> The woman?s family (4110ms) What is schizophrenia? The general public -15.895412070267085 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (The general public, needs to know more about, schizophrenia) -> The general public (4123ms) What is schizophrenia? a mental ailment -16.037937782985104 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (a mental ailment, known as, paranoid schizophrenia) -> a mental ailment (4122ms) What is schizophrenia? a mental illness -16.072813726039232 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (a mental illness, known as, paranoid schizophrenia) -> a mental illness (4123ms) What is schizophrenia? a mental condition -16.072813726039232 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (a mental condition, known as, schizophrenia) -> a mental condition (4123ms) What is schizophrenia? the mental disorder -17.409216693275244 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (the mental disorder, known as, schizophrenia) -> the mental disorder (4136ms) What is schizophrenia? the mental illness -17.42149174288117 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (the mental illness, known as, Schizophrenia) -> the mental illness (4136ms) What is schizophrenia? the brain disorder -17.42149174288117 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (the brain disorder, known as, Schizophrenia) -> the brain disorder (4136ms) What is schizophrenia? the crippling mental disorder -17.436263676927364 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (the crippling mental disorder, known as, schizophrenia) -> the crippling mental disorder (4136ms) What is schizophrenia? symptoms -17.53576802982341 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (symptoms, known as, schizophrenia) -> symptoms (4136ms) What is schizophrenia? the condition -17.67758660880718 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (the condition, known as, schizophrenia) -> the condition (4136ms) What is schizophrenia? the disorder -17.712462551861307 What is schizophrenia? -> what [ be schizophrenia ] ? -> what be know be schizophrenia ? -> $x: ($x, be know be, schizophrenia) -> $x: ($x, know, schizophrenia) -> (the disorder, known as, schizophrenia) -> the disorder (4151ms) What is the length of the Big Dig? 139.333 0.17617189013915646 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> (The Big Dig, Length, 139.333) -> 139.333 (467ms) What is the length of the Big Dig? 501.907 0.17617189013915646 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> (The Big Dig, Length, 501.907) -> 501.907 (466ms) What is the length of the Big Dig? 88.946 0.17617189013915646 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> (The Big Dig, Length, 88.946) -> 88.946 (467ms) What is the length of the Big Dig? 177.44 0.17617189013915646 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> (The Big Dig, Length, 177.44) -> 177.44 (466ms) What is the length of the Big Dig? 129.96 -0.2636501994473963 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> (The Smithsonian Institute Blues (Or the Big Dig), Length, 129.96) -> 129.96 (577ms) What is the length of the Big Dig? 260401 -1.3240187573543514 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> (Traffic before the "Big Dig", Length, 260401) -> 260401 (577ms) What is the length of the Big Dig? 90.973 -1.9431041831761093 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> (Big Dig, Length, 90.973) -> 90.973 (741ms) What is the length of the Big Dig? 261.2 -1.9431041831761093 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> (Big Dig, Length, 261.2) -> 261.2 (741ms) What is the length of the Big Dig? 365.72 -1.9431041831761093 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> (Big Dig, Length, 365.72) -> 365.72 (589ms) What is the length of the Big Dig? 541.92 -1.9431041831761093 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> (Big Dig, Length, 541.92) -> 541.92 (741ms) What is the length of the Big Dig? 160.84 -1.9431041831761093 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> (Big Dig, Length, 160.84) -> 160.84 (741ms) What is the length of the Big Dig? 261.0 -2.1163674305889937 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> (Dig This Big Crux, Length, 261.0) -> 261.0 (2762ms) What is the length of the Big Dig? 248.0 -2.4195781135615415 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> (BigDug, Length, 248.0) -> 248.0 (2761ms) What is the length of the Big Dig? 198.0 -2.5062097372679837 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> (BigDug (Ft. Verbezerker), Length, 198.0) -> 198.0 (2762ms) What is the length of the Big Dig? The Dig -2.9937080884520553 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (The Dig, is, the Big Dig) -> The Dig (3453ms) What is the length of the Big Dig? TeleAtlas -3.257855137558815 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (TeleAtlas, is mapping, the Big Dig) -> TeleAtlas (3453ms) What is the length of the Big Dig? even worse -3.36125928935566 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (even worse, is, the Big Dig) -> even worse (3453ms) What is the length of the Big Dig? Hopalong Cassidy -3.4739314664616265 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (Hopalong Cassidy, is long gone to, the big dig) -> Hopalong Cassidy (3453ms) What is the length of the Big Dig? cost overruns -3.5404080227769956 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (cost overruns, were to, the Big Dig) -> cost overruns (3453ms) What is the length of the Big Dig? a challenge -3.7697087568408696 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (a challenge, is bigger than, the Big Dig) -> a challenge (3453ms) What is the length of the Big Dig? private quarters -3.918327695247934 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (private quarters, are all part of, the Big Dig) -> private quarters (3467ms) What is the length of the Big Dig? aforementioned money-sucking vaccum -3.960127889091602 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (aforementioned money-sucking vaccum, is, the Big Dig) -> aforementioned money-sucking vaccum (3467ms) What is the length of the Big Dig? Romneycare ? -4.037488167474251 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (Romneycare ?, has thus far been, the Big Dig) -> Romneycare ? (3467ms) What is the length of the Big Dig? medication history -4.043195490151751 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (medication history, is like, the big dig) -> medication history (3467ms) What is the length of the Big Dig? so many other ways -4.052961366652694 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (so many other ways, was, the Big Dig really worth) -> so many other ways (3467ms) What is the length of the Big Dig? Concerts -4.152293368183875 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (Concerts, were held in, the big dug-outs) -> Concerts (3467ms) What is the length of the Big Dig? the MBTA -4.154785666609795 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (the MBTA, is paying the debt on, the Big Dig) -> the MBTA (3481ms) What is the length of the Big Dig? Boston -4.156297962296316 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (Boston, is called the 'crown jewel of, the Big Dig) -> Boston (3481ms) What is the length of the Big Dig? a record -4.1695417264593075 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (a record, is beholden to, the Big Dig contractors) -> a record (3482ms) What is the length of the Big Dig? a discussion -4.240402750862726 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (a discussion, has been learned on, the Big Dig) -> a discussion (3482ms) What is the length of the Big Dig? the 50 attendees -4.25453939449554 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (the 50 attendees, were, the Big Dig debt) -> the 50 attendees (3482ms) What is the length of the Big Dig? Sunday -4.2640115406411745 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (Sunday, was, the Big Dig day) -> Sunday (3482ms) What is the length of the Big Dig? contaminated soil -4.281243496473882 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (contaminated soil, was excavated during, the Big Dig) -> contaminated soil (3495ms) What is the length of the Big Dig? A skyscraper -4.325686508334909 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (A skyscraper, was being built very near, the Big Dig work) -> A skyscraper (3495ms) What is the length of the Big Dig? DiMasi -4.337181089656049 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (DiMasi, has been publicly silent about, the Big Dig contractor) -> DiMasi (3495ms) What is the length of the Big Dig? Darwin Core providers -4.341520617632073 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (Darwin Core providers, can be found at, the Big Dig web site) -> Darwin Core providers (3495ms) What is the length of the Big Dig? the ?little dig? -4.470118390248674 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (the ?little dig?, will be removed during, the ?big dig) -> the ?little dig? (3495ms) What is the length of the Big Dig? Sunday morning -4.508545378130529 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (Sunday morning, was, the big dig-out) -> Sunday morning (3495ms) What is the length of the Big Dig? drilled shafts -4.541197671343152 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (drilled shafts, were installed on, the Big Dig) -> drilled shafts (3509ms) What is the length of the Big Dig? an infrastructure project -4.638540233371394 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (an infrastructure project, was made on, the Big Dig) -> an infrastructure project (3509ms) What is the length of the Big Dig? underground roadways -4.66528237171012 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (underground roadways, was know as, the ?Big Dig?) -> underground roadways (3509ms) What is the length of the Big Dig? Dinosaur Hall -4.709620083421848 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (Dinosaur Hall, is, The Big Dig) -> Dinosaur Hall (3509ms) What is the length of the Big Dig? nearly $ 15 billion -4.751702556581578 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (nearly $ 15 billion, can be spent on, the Big Dig) -> nearly $ 15 billion (3509ms) What is the length of the Big Dig? a year 2006 -4.775430573324992 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (a year 2006, was for, the other big dig) -> a year 2006 (3509ms) What is the length of the Big Dig? Global 2000 companies -4.815108399622073 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (Global 2000 companies, is like, the Big Dig) -> Global 2000 companies (3524ms) What is the length of the Big Dig? Milford -4.955399871817541 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (Milford, was known as, the ?Big Dig) -> Milford (3524ms) What is the length of the Big Dig? the Basin -5.058574509401918 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (the Basin, have been revealed by, the Big Dig) -> the Basin (3524ms) What is the length of the Big Dig? The bridge -5.215149034838861 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (The bridge, is part of, the Big Dig) -> The bridge (3524ms) What is the length of the Big Dig? The subject -5.490423050852372 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (The subject, is, the Big Dig) -> The subject (3524ms) What is the length of the Big Dig? the MBTA?s debt -5.58055033932148 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> $x: ($x, am |, big dig) -> (the MBTA?s debt, is, court-mandated Big Dig mitigations) -> the MBTA?s debt (4296ms) What is the length of the Big Dig? the projected damage -5.639092328374964 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (the projected damage, is, the Big Dig) -> the projected damage (3537ms) What is the length of the Big Dig? McNichol -5.6444488031844555 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> $x: ($x, am |, big dig) -> (McNichol, was part of, Boston ?s Big Dig Project) -> McNichol (4296ms) What is the length of the Big Dig? money -5.7586861917551335 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (money, was diverted to, the Big Dig) -> money (3537ms) What is the length of the Big Dig? The Bonehunters Quarry -5.83588952461875 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> $x: ($x, am |, big dig) -> (The Bonehunters Quarry, is, a big archaeological dig site) -> The Bonehunters Quarry (4313ms) What is the length of the Big Dig? two federal agencies -5.8763661831997975 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> $x: ($x, am |, big dig) -> (two federal agencies, are investigating, Big Dig cost overruns) -> two federal agencies (4313ms) What is the length of the Big Dig? ? Natsios -5.891581843481013 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> $x: ($x, am |, big dig) -> (? Natsios, was the manager of, Boston ?s ?Big Dig) -> ? Natsios (4313ms) What is the length of the Big Dig? the healthcare reform law -5.900604308481371 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (the healthcare reform law, is quickly becoming, the Big Dig) -> the healthcare reform law (3537ms) What is the length of the Big Dig? The traffic -5.903783747617219 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (The traffic, is just as bad as before, the Big Dig) -> The traffic (3537ms) What is the length of the Big Dig? OK Park face-lift -6.122405254100672 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> $x: ($x, am |, big dig) -> (OK Park face-lift, is two years past, deadline Big Dig) -> OK Park face-lift (4389ms) What is the length of the Big Dig? The toll increases -6.129625990763684 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (The toll increases, are needed to pay for, the Big Dig) -> The toll increases (3537ms) What is the length of the Big Dig? the most -6.187820143592371 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (the most, are stuck with, the Big Dig debt) -> the most (3552ms) What is the length of the Big Dig? action -6.230952735454508 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (action, is, the Big Dig) -> action (3552ms) What is the length of the Big Dig? Lawsuits -6.253132276224596 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> $x: ($x, am |, big dig) -> (Lawsuits, are pending against, other Big Dig contractors) -> Lawsuits (4626ms) What is the length of the Big Dig? a big milestone -6.2562867542563785 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> $x: ($x, am |, big dig) -> (a big milestone, is coming up for, Boston ?s Big Dig project) -> a big milestone (4626ms) What is the length of the Big Dig? the highway -6.262028234500831 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: ($x, am |, the Big Dig) -> (the highway, was put underground during, the Big Dig) -> the highway (3552ms) What is the length of the Big Dig? a hole -6.56822547731455 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> $x: ($x, am |, big dig) -> (a hole, is, too big to forever be digging himself out of) -> a hole (4698ms) What is the length of the Big Dig? Second -6.607027326445852 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> $x: ($x, am |, big dig) -> (Second, was, that big dig operation) -> Second (4698ms) What is the length of the Big Dig? The festival -7.276755945589088 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> $x: ($x, am |, big dig) -> (The festival, is, a pretty big shin-dig) -> The festival (4765ms) What is the length of the Big Dig? the house -7.822190979354929 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> $x: ($x, am |, big dig) -> (the house, was built from, Big Dig materials) -> the house (4765ms) What is the length of the Big Dig? decades -8.323189770267268 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> $x: ($x, am |, big dig) -> (decades, is potentially, another Big Dig) -> decades (4829ms) What is the length of the Big Dig? traffic -8.786246605531218 What is the length of the Big Dig? -> $x: (the Big Dig, length, $x) -> $x: (big dig, length, $x) -> $x: ($x, am |, big dig) -> (traffic, has been zipping through, Boston ?s Big Dig tunnels) -> traffic (4829ms) What is the length of the Big Dig? construction ?debris ? -9.595227151817152 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the big dig see ? -> $x: (the big dig, see, $x) -> (the The Big Dig, saw the pile of, construction ?debris ?) -> construction ?debris ? (4829ms) What is the length of the Big Dig? the Big Dig page -9.638818599962521 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the big dig see ? -> $x: (the big dig, see, $x) -> (the Big Dig, see, the Big Dig page) -> the Big Dig page (4829ms) What is the length of the Big Dig? modern America -10.781938062029269 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, is, modern America) -> modern America (5989ms) What is the length of the Big Dig? full throttle -10.940376024765907 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the big dig, is at, full throttle) -> full throttle (5990ms) What is the length of the Big Dig? Exhibit A -11.210579386188366 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, is, Exhibit A) -> Exhibit A (5989ms) What is the length of the Big Dig? Massachusetts -11.241385258168773 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, is, Massachusetts) -> Massachusetts (5989ms) What is the length of the Big Dig? a scandal -11.251264463631301 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, may always be, a scandal) -> a scandal (5990ms) What is the length of the Big Dig? a highway -11.265591388754062 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, is, a highway) -> a highway (5990ms) What is the length of the Big Dig? Meg -11.307556906037314 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, is, Meg) -> Meg (5989ms) What is the length of the Big Dig? a less popular choice -11.357296355723928 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, would be, a less popular choice) -> a less popular choice (5989ms) What is the length of the Big Dig? a maze -11.386473130857443 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig interchange, is, a maze) -> a maze (6066ms) What is the length of the Big Dig? a prison -11.4154130923173 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, is, a prison) -> a prison (6066ms) What is the length of the Big Dig? a decade -11.433279267909148 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, was known about, a decade) -> a decade (6066ms) What is the length of the Big Dig? a couple -11.449686216013369 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, was supposed to take, a couple) -> a couple (6964ms) What is the length of the Big Dig? a major public works projects -11.466936892421868 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, is, a major public works projects) -> a major public works projects (7035ms) What is the length of the Big Dig? Boston real estate -11.4794333991866 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the big dig, is going to make, Boston real estate) -> Boston real estate (7035ms) What is the length of the Big Dig? a good first step -11.506489502342271 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, is, a good first step) -> a good first step (7035ms) What is the length of the Big Dig? a Mitt Romney big government project -11.528830731033052 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, was, a Mitt Romney big government project) -> a Mitt Romney big government project (7035ms) What is the length of the Big Dig? a nightmare -11.532365784320996 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig interchange, is, a nightmare) -> a nightmare (7035ms) What is the length of the Big Dig? less enchanting -11.579731875409108 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, is somewhat, less enchanting) -> less enchanting (7035ms) What is the length of the Big Dig? Continue reading -11.590626496558214 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, is ?, Continue reading) -> Continue reading (7035ms) What is the length of the Big Dig? Channel Four -11.592634023977755 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, was supported by, Channel Four) -> Channel Four (7035ms) What is the length of the Big Dig? Capital Growth -11.611432057437263 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, is being organised by, Capital Growth) -> Capital Growth (7283ms) What is the length of the Big Dig? the MBTA books -11.616366291489808 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig debt, should be on, the MBTA books) -> the MBTA books (7283ms) What is the length of the Big Dig? a tight , self-contained stand-alone mystery -11.6622944490146 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, is, a tight , self-contained stand-alone mystery) -> a tight , self-contained stand-alone mystery (7284ms) What is the length of the Big Dig? seven years -11.677976902962566 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, be completed in, seven years) -> seven years (7283ms) What is the length of the Big Dig? a total flop -11.678315372805562 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the big dig, is, a total flop) -> a total flop (7283ms) What is the length of the Big Dig? a Tip O'Neil/Ted Kennedy project -11.679978387845713 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, was actually, a Tip O'Neil/Ted Kennedy project) -> a Tip O'Neil/Ted Kennedy project (7283ms) What is the length of the Big Dig? high school seniors -11.684120635824206 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig Scholarship, is available to, high school seniors) -> high school seniors (7315ms) What is the length of the Big Dig? MassDOT officials -11.701249292743272 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig tunnels, is being touted by, MassDOT officials) -> MassDOT officials (7315ms) What is the length of the Big Dig? Route 93 -11.729017637497071 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, was improving, Route 93) -> Route 93 (7314ms) What is the length of the Big Dig? a few years -11.76839818740586 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, was only completed finally, a few years) -> a few years (7315ms) What is the length of the Big Dig? an immense overhaul -11.77796830311142 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, was, an immense overhaul) -> an immense overhaul (7315ms) What is the length of the Big Dig? 620 thousand Truckloads -11.791174851929556 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, is moving, 620 thousand Truckloads) -> 620 thousand Truckloads (7314ms) What is the length of the Big Dig? the Central Artery -11.837186971539717 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, was jacking up, the Central Artery) -> the Central Artery (7346ms) What is the length of the Big Dig? food charity Sustain -11.839133995432599 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, will be coordinated by, food charity Sustain) -> food charity Sustain (7346ms) What is the length of the Big Dig? London -11.850089111158864 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, will be also be held in, London) -> London (7346ms) What is the length of the Big Dig? an elevated highway -11.868415931417227 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, is moving, an elevated highway) -> an elevated highway (7346ms) What is the length of the Big Dig? cost overruns and delays -11.875572825767568 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, has been plagued by, cost overruns and delays) -> cost overruns and delays (7346ms) What is the length of the Big Dig? a local legend -11.945960295272966 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, was, a local legend) -> a local legend (7378ms) What is the length of the Big Dig? 5.8 billion dollars -11.993008186241626 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, was supposed to be, 5.8 billion dollars) -> 5.8 billion dollars (7378ms) What is the length of the Big Dig? a good idea -12.03477229392382 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, was, a good idea) -> a good idea (7378ms) What is the length of the Big Dig? the Queen -12.03776243416528 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Royal Dig, is an example of, the Queen) -> the Queen (7378ms) What is the length of the Big Dig? a huge success -12.060712558980821 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, has been, a huge success) -> a huge success (7408ms) What is the length of the Big Dig? a $ 14.6 billion band-aid -12.0619255064087 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, is just, a $ 14.6 billion band-aid) -> a $ 14.6 billion band-aid (7408ms) What is the length of the Big Dig? the Authority -12.06362720791182 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig project, was dumped onto, the Authority) -> the Authority (7408ms) What is the length of the Big Dig? a long time -12.139427983769504 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig all, was a mess for, a long time) -> a long time (7439ms) What is the length of the Big Dig? Haymarket -12.204397263521336 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, is now pushing from, Haymarket) -> Haymarket (7439ms) What is the length of the Big Dig? prehistoric fossils -12.2127612063663 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the big dig, is the soaring price of, prehistoric fossils) -> prehistoric fossils (7439ms) What is the length of the Big Dig? short on cash -12.246874983495593 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, was, short on cash) -> short on cash (7439ms) What is the length of the Big Dig? great interest -12.253219151186425 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (The recent BIG DIG failures, have been of, great interest) -> great interest (7439ms) What is the length of the Big Dig? time and on budget -12.316937955961462 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, was on, time and on budget) -> time and on budget (7470ms) What is the length of the Big Dig? individuals and teams -12.405662489976107 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, is open to, individuals and teams) -> individuals and teams (7470ms) What is the length of the Big Dig? public transit -12.542339979369565 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (the Big Dig, had very little to do with, public transit) -> public transit (7499ms) What is the length of the Big Dig? Transformed Boston -12.630962564889293 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (the Big Dig, Has, Transformed Boston) -> Transformed Boston (7499ms) What is the length of the Big Dig? a very visible failure -12.776209912536569 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (The Big Dig, has just had, a very visible failure) -> a very visible failure (7528ms) What is the length of the Big Dig? an easy commute possible -12.785871500225964 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (the Big Dig, has made, an easy commute possible) -> an easy commute possible (7528ms) What is the length of the Big Dig? the big reasons -12.78864241016118 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig plan, is one of, the big reasons) -> the big reasons (7528ms) What is the length of the Big Dig? 1998 -12.799946653177377 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, be completed by, 1998) -> 1998 (7528ms) What is the length of the Big Dig? a small rail component -12.809809417396597 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (the Big Dig, has only, a small rail component) -> a small rail component (7528ms) What is the length of the Big Dig? dollars -12.847489567521318 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, is billions of, dollars) -> dollars (7556ms) What is the length of the Big Dig? the creation -12.852686670934686 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, is responsible for, the creation) -> the creation (7556ms) What is the length of the Big Dig? disastrous consequences -12.854470028885073 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (the Big Dig tunnel ?, have had, disastrous consequences) -> disastrous consequences (7556ms) What is the length of the Big Dig? dust -12.87913008537841 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, are clouds of, dust) -> dust (7556ms) What is the length of the Big Dig? the largest ? -12.88678836553798 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, was one of, the largest ?) -> the largest ? (7556ms) What is the length of the Big Dig? operating expenses -12.923501857089004 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (the Big Dig/Turnpike, has been borrowing for, operating expenses) -> operating expenses (7556ms) What is the length of the Big Dig? infrastructure -12.938850387801173 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, is probably the last piece of, infrastructure) -> infrastructure (7584ms) What is the length of the Big Dig? 2007 -12.946723493042027 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, was completed in, 2007) -> 2007 (7584ms) What is the length of the Big Dig? work continuing -13.002918370600842 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (The Big Dig schedule, has, work continuing) -> work continuing (7584ms) What is the length of the Big Dig? fiscal support -13.040119241894809 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (The Big Dig, has drained, fiscal support) -> fiscal support (7584ms) What is the length of the Big Dig? property values -13.074303685138467 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (the big dig, has positively affected, property values) -> property values (7584ms) What is the length of the Big Dig? 2002 -13.126974621390028 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, was published in, 2002) -> 2002 (7584ms) What is the length of the Big Dig? a noticeable impact -13.173411382446453 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (the Big Dig, has had, a noticeable impact) -> a noticeable impact (7612ms) What is the length of the Big Dig? a traffic bottleneck -13.233955651083129 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (the Big Dig project, has brought, a traffic bottleneck) -> a traffic bottleneck (7612ms) What is the length of the Big Dig? the region?s -13.275746433113579 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, is critical to, the region?s) -> the region?s (7612ms) What is the length of the Big Dig? the most expensive highway project -13.333845513894165 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, was, the most expensive highway project) -> the most expensive highway project (7612ms) What is the length of the Big Dig? time -13.403705148524512 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, was on, time) -> time (7612ms) What is the length of the Big Dig? the rate -13.414322970933604 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, are better known than, the rate) -> the rate (7612ms) What is the length of the Big Dig? the ugly raised highways -13.422843649937143 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the big dig, was to take down, the ugly raised highways) -> the ugly raised highways (7612ms) What is the length of the Big Dig? cash -13.490469917598183 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, was short on, cash) -> cash (7643ms) What is the length of the Big Dig? the old dump -13.49192576834642 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, were used to cap, the old dump) -> the old dump (7643ms) What is the length of the Big Dig? the money -13.762769270210537 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig mentality, was right on, the money) -> the money (7642ms) What is the length of the Big Dig? the automobile -13.782850138788739 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, is essentially an investment in, the automobile) -> the automobile (7676ms) What is the length of the Big Dig? sight -13.788804247200321 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, are in, sight) -> sight (7676ms) What is the length of the Big Dig? the soaring price of prehistoric fossils -13.80591308148285 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the big dig, is, the soaring price of prehistoric fossils) -> the soaring price of prehistoric fossils (7676ms) What is the length of the Big Dig? years -13.923594518433443 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (The Big Dig, be completed, years) -> years (7676ms) What is the length of the Big Dig? the authority -14.029374445626335 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (the Big Dig, has damaged, the authority) -> the authority (7675ms) What is the length of the Big Dig? the time -14.066938016056106 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (The Big Dig, has cut down, the time) -> the time (7704ms) What is the length of the Big Dig? cost -14.334969002432759 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (the Big Dig, have, cost) -> cost (7704ms) What is the length of the Big Dig? the detriment of the public -14.527764955049143 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, has been mismanaged to, the detriment of the public) -> the detriment of the public (7704ms) What is the length of the Big Dig? the public?s mind -14.551997997668943 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (the Big Dig, have left a bad taste in, the public?s mind) -> the public?s mind (7704ms) What is the length of the Big Dig? the city -14.662376582412627 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (the Big Dig, has brought, the city) -> the city (7704ms) What is the length of the Big Dig? water -14.6954203060636 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, is under, water) -> water (7890ms) What is the length of the Big Dig? the landscape -14.927700443815732 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (The Big Dig, has changed, the landscape) -> the landscape (7890ms) What is the length of the Big Dig? resources -15.070663295680307 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: ($x, be the width of, the big dig) -> $x: (the big dig, have, $x) -> (the Big Dig, has only contributed a limited amount of, resources) -> resources (7890ms) What is the length of the Big Dig? complete -15.083323314005288 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, is, complete) -> complete (7890ms) What is the length of the Big Dig? over -15.118199257059416 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, is, over) -> over (7890ms) What is the length of the Big Dig? first -15.225613185429522 What is the length of the Big Dig? -> what be the length of [ the big dig ] ? -> what be the width of the big dig ? -> $x: (the big dig, width, $x) -> $x: (the big dig, be, $x) -> (the Big Dig, was proposed, first) -> first (7890ms) What president created social security? FDR -3.9861794567018394 What president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (FDR, Instance Of, president) (FDR, created, the Social Security system) -> FDR (1806ms) What president created social security? president Roosevelt -4.111634739721078 What president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (president Roosevelt, Instance Of, president) (President Roosevelt, created, Social Security) -> president Roosevelt (1806ms) What president created social security? Franklin D. Roosevelt -4.317881845336286 What president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (Franklin D. Roosevelt, Instance Of, president) (Franklin D. Roosevelt, created, Social Security) -> Franklin D. Roosevelt (1806ms) What president created social security? The New Deal -4.324066111849287 What president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (The New Deal, was the first instance of, a President) (the New Deal, created, Social Security) -> The New Deal (1991ms) What president created social security? President Roosevelt -4.377982185135166 What president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (President Roosevelt, Instance Of, great president) (President Roosevelt, created, Social Security) -> President Roosevelt (1992ms) What president created social security? Presidents Roosevelt -4.536625174086862 What president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (Presidents Roosevelt, Instance Of, democratic president) (President Roosevelt, created, Social Security) -> Presidents Roosevelt (2093ms) What president created social security? Roosevelt's -4.7179092050005025 What president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (Roosevelt's, Instance Of, president) (Roosevelt, created, Social Security) -> Roosevelt's (2315ms) What president created social security? Roosevelt -4.72680461356069 What president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (Roosevelt, Instance Of, president) (Roosevelt, created, Social Security) -> Roosevelt (2313ms) What president created social security? president of the Bar -4.813760893227858 What president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (president of the Bar, Instance Of, alternate president) (the president, first created, a Social Security system) -> president of the Bar (2313ms) What president created social security? Presidents Franklin D. Roosevelt -4.843823824713009 What president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (Presidents Franklin D. Roosevelt, Instance Of, U.S. president) (President Franklin Roosevelt, created, Social Security) -> Presidents Franklin D. Roosevelt (2313ms) What president created social security? George W. -4.867125469706881 What president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (George W., Instance Of, president) (George, wants to create, Social Security Savings Accounts) -> George W. (2478ms) What president created social security? Franklin D Roosevelt -4.871711977896896 What president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (Franklin D Roosevelt, Instance Of, president) (Franklin Roosevelt, created, social security) -> Franklin D Roosevelt (2478ms) What president created social security? George W -4.883065164839638 What president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (George W, Instance Of, president) (George, wants to create, Social Security Savings Accounts) -> George W (2478ms) What president created social security? President Teddy Roosevelt -4.884411242291949 What president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (President Teddy Roosevelt, Instance Of, good president) (President Roosevelt, was working to create, Social Security) -> President Teddy Roosevelt (2617ms) What president created social security? Johnson -4.918200875748099 What president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (Johnson, Instance Of, president) (Johnson, created, the social security act) -> Johnson (2617ms) What president created social security? A. Johnson -4.955982539975031 What president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (A. Johnson, Instance Of, president) (Johnson, created, the social security act) -> A. Johnson (2851ms) What president created social security? Social Security -5.048312548413971 What president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (Social Security, Instance Of, president clinton's priority) (Social Security, was created by, the Social Security Act) -> Social Security (2936ms) What president created social security? U.S. -5.196501905973792 What president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (U.S., Instance Of, power by the president) (U.S., created through, the Social Security Administration system) -> U.S. (2936ms) What president created social security? Bachelet -5.375388139675719 What president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (Bachelet, Instance Of, president) (Bachelet, created, a social security network) -> Bachelet (3093ms) What president created social security? Franklin Roosevelt -5.413030443246553 What president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (Franklin Roosevelt, Instance Of, president) (Franklin Roosevelt, created, Social Security) -> Franklin Roosevelt (3093ms) What president created social security? Franklin Delano Roosevelt -5.544853227488437 What president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> (Franklin Delano Roosevelt, Instance Of, president) (Franklin Roosevelt, created, Social Security) -> Franklin Delano Roosevelt (3333ms) What president created social security? Congress -7.303390057861396 What president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> $x: ($x, take office as, president) ($x, created, social security) -> (Congress, took office as, Vice President) (Congress, created, Social Security) -> Congress (4867ms) What president created social security? President Elect Obama -8.075211660614443 What president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> $x: ($x, instance of, president) ($x, make promise to, social security) -> (President Elect Obama, Instance Of, president) (President Obama, has promised to make, Social Security reform) -> President Elect Obama (6426ms) What president created social security? law -8.094170842413508 What president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> $x: (president, drug, $x) ($x, created, social security) -> (President Reagan, signed a drug enforcement bill into, law) (the law, creating, Social Security) -> law (5009ms) What president created social security? President Obama -8.112686246793134 What president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> $x: ($x, instance of, president) ($x, make promise to, social security) -> (President Obama, Instance Of, strong president) (President Obama, has promised to make, Social Security reform) -> President Obama (6426ms) What president created social security? President-elect Obama -8.211873392786929 What president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> $x: ($x, instance of, president) ($x, make promise to, social security) -> (President-elect Obama, Instance Of, president) (President Obama, has promised to make, Social Security reform) -> President-elect Obama (6426ms) What president created social security? Page -8.213635358805057 What president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> $x: ($x, instance of, president) ($x, from create, social security) -> (Page, Instance Of, member and past president of the Private Probation Association of Georgia) (pages, were created from, the Social Security Death Index) -> Page (5009ms) What president created social security? President Obama's -8.355457223558275 What president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> $x: ($x, instance of, president) ($x, make promise to, social security) -> (President Obama's, Instance Of, president) (President Obama, has promised to make, Social Security reform) -> President Obama's (6426ms) What president created social security? congress -9.172758120263545 What president created social security? -> $x: ($x, instance of, president) ($x, created, social security) -> $x: ($x, be a by, president) ($x, created, social security) -> (congress, can be overturned a by, a President) (Congress, created, Social Security) -> congress (5736ms) What president created social security? President Franklin Delano Roosevelt -11.19960729096413 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (President Franklin Delano Roosevelt, created, Social Security) -> President Franklin Delano Roosevelt (8216ms) What president created social security? President Franklin Roosevelt -11.359611567800732 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (President Franklin Roosevelt, created, Social Security) -> President Franklin Roosevelt (8216ms) What president created social security? the New Deal -11.511228190860798 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (the New Deal, created, Social Security) -> the New Deal (8759ms) What president created social security? the New-Deal -11.552666970422106 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (the New-Deal, created, Social Security) -> the New-Deal (8759ms) What president created social security? Economic Security -11.958953534030398 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (Economic Security, created, the Social Security Act) -> Economic Security (8759ms) What president created social security? civil service -11.969713090064417 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (civil service, creates, Social Security Administration) -> civil service (8759ms) What president created social security? the Great Depression -12.025432478755167 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (the Great Depression, was to create, Social Security) -> the Great Depression (8826ms) What president created social security? the Rich -12.02965804613519 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (the Rich, Created, the Social Security) -> the Rich (8826ms) What president created social security? He?s -12.067065031830033 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (He?s, create, Social Security) -> He?s (8826ms) What president created social security? a U.S. Congressman -12.158527751977024 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (a U.S. Congressman, voted to create, Social Security) -> a U.S. Congressman (8826ms) What president created social security? a switch -12.189416025448281 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (a switch, also could create, Social Security issues) -> a switch (8867ms) What president created social security? India -12.241385624986052 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (India, create, an American-style Social Security Administration) -> India (8867ms) What president created social security? progressives politicians -12.262219667092829 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (progressives politicians, create, Social Security) -> progressives politicians (8867ms) What president created social security? Ralphs -12.305082142851209 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (Ralphs, created, fake Social Security Numbers) -> Ralphs (8867ms) What president created social security? Biomass production -12.31076135151483 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (Biomass production, should create, social security) -> Biomass production (8867ms) What president created social security? The Social Security Board -12.312356201224343 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (The Social Security Board, created, 10 Social Security Districts) -> The Social Security Board (8867ms) What president created social security? ?Has Obama -12.317066208579138 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (?Has Obama, created, a Social Security ?death panel?) -> ?Has Obama (9145ms) What president created social security? the U.S. federal government -12.3417898510023 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (the U.S. federal government, created, social security) -> the U.S. federal government (9145ms) What president created social security? E-Verify -12.380893137067627 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (E-Verify, was created at, Social Security) -> E-Verify (9145ms) What president created social security? the U.S. government -12.391399463161981 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (the U.S. government, created, its social security program) -> the U.S. government (9145ms) What president created social security? The Act -12.400146944009098 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (The Act, creates, a Social Security Board) -> The Act (9145ms) What president created social security? the United States -12.424226284045744 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (the United States, created, Social Security) -> the United States (9235ms) What president created social security? France -12.500514934632534 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (France, created, a fifth national social security agency) -> France (9235ms) What president created social security? Title V -12.51567897577467 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (Title V, were created by, the Social Security Act) -> Title V (9235ms) What president created social security? The Medicaid program -12.528057743496907 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (The Medicaid program, was created under, the Social Security Act) -> The Medicaid program (9311ms) What president created social security? Law 100 -12.62175635343947 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (Law 100, created, a new general social security system) -> Law 100 (9311ms) What president created social security? foster care system -12.623365248609781 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (foster care system, was created under, the Social Security Act) -> foster care system (9311ms) What president created social security? 87 ? -12.647795673244765 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (87 ?, Creates, a social security fund) -> 87 ? (9378ms) What president created social security? less than one child -12.662417798546745 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (less than one child, creates an undue burden on, social security) -> less than one child (9377ms) What president created social security? The Democrats -12.746921828464187 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (The Democrats, created, Social Security) -> The Democrats (9378ms) What president created social security? Old Friends -12.756623237282593 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (Old Friends, will help create, a social security system) -> Old Friends (9448ms) What president created social security? much less work -12.798357811422063 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (much less work, even created, a social-security system) -> much less work (9448ms) What president created social security? 2. Bush -12.922541096280334 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (2. Bush, still wants to create, a Social Security system) -> 2. Bush (9493ms) What president created social security? George -13.064221952528532 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (George, wants to create, Social Security Savings Accounts) -> George (9492ms) What president created social security? Generations -13.14668553697372 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (Generations, worked to create, our Social Security) -> Generations (9524ms) What president created social security? unions -13.295105967381925 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> (unions, had created, the social security act) -> unions (9524ms) What president created social security? the Congress -13.43908890909022 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (the Congress, created, Social Security or Medicare) -> the Congress (9562ms) What president created social security? 1935 -13.516339799639391 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (1935, created, Social Security) -> 1935 (9593ms) What president created social security? AFDC -13.576465617520412 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (AFDC, was first created by, the Social Security Act) -> AFDC (9593ms) What president created social security? The system -13.632650689533115 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (The system, was created by, the Social Security Act) -> The system (9592ms) What president created social security? The program -13.706401808601246 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (The program, was created by, the 1935 Social Security Act) -> The program (9748ms) What president created social security? the president -13.777051511809486 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (the president, first created, a Social Security system) -> the president (9748ms) What president created social security? Rick Perry -13.805111209571763 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, do call, social security) -> (Rick Perry, does call, Social Security ?a Ponzi scheme) -> Rick Perry (9748ms) What president created social security? lifespans -13.893688981034348 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> (lifespans, have created havoc with, Social Security) -> lifespans (9904ms) What president created social security? The government -13.904303661085619 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (The government, created, the Social Security) -> The government (9904ms) What president created social security? the Democrats -13.952580442247356 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (the Democrats, created, Social Security) -> the Democrats (9904ms) What president created social security? Liberals -14.015522086893666 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (Liberals, created, Social Security) -> Liberals (9904ms) What president created social security? The Vice President -14.051443362535926 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, do call, social security) -> (The Vice President, did call, Social Security) -> The Vice President (9959ms) What president created social security? The federal government -14.14497913629685 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (The federal government, created, Social Security) -> The federal government (9959ms) What president created social security? BTW-Franklin Roosevelt -14.19200408668074 What president created social security? -> what president [ create social security ] ? -> what us president create social security ? -> $x: ($x, instance of, us president) ($x, create, social security) -> (BTW-Franklin Roosevelt, Instance Of, disabled US president) (Franklin Roosevelt, created, Social Security) -> BTW-Franklin Roosevelt (9959ms) What president created social security? legislation -14.250251815885155 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (legislation, created, the Social Security Program) -> legislation (9998ms) What president created social security? the promise -14.251338906271256 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (the promise, create, a social security network) -> the promise (9998ms) What president created social security? thieves -14.274810793935501 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (thieves, easily create, fake Social Security numbers) -> thieves (9998ms) What president created social security? the politicians -14.27504404177505 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (the politicians, created, the Social Security program) -> the politicians (9998ms) What president created social security? The charter -14.350143476562096 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (The charter, also creates new rights to, social security) -> The charter (9998ms) What president created social security? the country -14.42688688762999 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (the country, must create a real system of, social security) -> the country (10057ms) What president created social security? the law -14.693424660237206 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (the law, creating, Social Security) -> the law (10125ms) What president created social security? 2 generations -14.69446521848096 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, have bless, social security) -> (2 generations, have been blessed by, Social Security) -> 2 generations (10125ms) What president created social security? turn -14.770826867503349 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (turn, created, the corporate social security system) -> turn (10124ms) What president created social security? Gravel -14.778233186200254 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, have a plan for, social security) -> (Gravel, has a plan for, social security) -> Gravel (10125ms) What president created social security? government -14.790477789233076 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (government, creates, a social security system) -> government (10125ms) What president created social security? the federal government -14.864818492140582 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (the federal government, created, Social Security) -> the federal government (10125ms) What president created social security? Neither side -14.985520134173239 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, have a plan for, social security) -> (Neither side, has offered a plan for, Social Security) -> Neither side (10181ms) What president created social security? a divorce lawyer -14.995926487598748 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, be familiar, social security) -> (a divorce lawyer, is also familiar with, any Social Security) -> a divorce lawyer (10181ms) What president created social security? Johnson, 46 -15.101380446815284 What president created social security? -> what president [ create social security ] ? -> what start create social security ? -> $x: ($x, instance of, start) ($x, create, social security) -> (Johnson, 46, Instance Of, starting center) (Johnson, created, the social security act) -> Johnson, 46 (10181ms) What president created social security? Legislation -15.18726001072913 What president created social security? -> what president [ create social security ] ? -> what start create social security ? -> $x: ($x, instance of, start) ($x, create, social security) -> (Legislation, Instance Of, starting point) (legislation, created, the Social Security Program) -> Legislation (10219ms) What president created social security? Ralph -15.239944621299733 What president created social security? -> what president [ create social security ] ? -> what start create social security ? -> $x: ($x, instance of, start) ($x, create, social security) -> (Ralph, Instance Of, starting G) (Ralphs, created, fake Social Security Numbers) -> Ralph (10219ms) What president created social security? the bill -15.618917072978942 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (the bill, creating, Social Security) -> the bill (10219ms) What president created social security? the party -15.641803560163066 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (the party, created, Social Security) -> the party (10356ms) What president created social security? the government -15.77291149862943 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (the government, created, the Social Security number) -> the government (10356ms) What president created social security? the commission -15.856216828836512 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (the commission, thus created, the Social Security surplus) -> the commission (10356ms) What president created social security? pages -16.05761391392378 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, from create, social security) -> (pages, were created from, the Social Security Death Index) -> pages (10356ms) What president created social security? roosevelt -16.207143131214856 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> (roosevelt, created, the social security act) -> roosevelt (10356ms) What president created social security? a popular consensus -16.423454757945002 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> $x: ($x, can construct, social security) -> (a popular consensus, can be constructed on, Social Security) -> a popular consensus (14284ms) What president created social security? pensions -16.53619433363729 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, be exist, social security) -> (pensions, are existing on, Social Security) -> pensions (10408ms) What president created social security? Paul -16.951951907693388 What president created social security? -> what president [ create social security ] ? -> what number president be create social security ? -> $x: ($x, instance of, number president) ($x, be create, social security) -> $x: ($x, instance of, number president) ($x, be be work, social security) -> (Paul, Instance Of, chair or past president of a number of organization) (Paul, has been working as, a Social Security disability examiner) -> Paul (12774ms) What president created social security? help -17.031112695104465 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, be public, social security) -> (help, are misleading the public about, Social Security) -> help (10408ms) What president created social security? poll -17.202586422164167 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, be public, social security) -> (poll, is showing public support for, Social Security) -> poll (10408ms) What president created social security? income -17.733511598134417 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> $x: (social security, be the will of, $x) -> (Social Security, will be the single biggest source of, income) -> income (14284ms) What president created social security? the end -17.734836030703406 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> $x: (social security, be the will of, $x) -> (Social Security, will be just the beginning of, the end) -> the end (14284ms) What president created social security? the changes -17.798153334643732 What president created social security? -> what president [ create social security ] ? -> what have create social security ? -> $x: ($x, have create, social security) -> $x: ($x, create, social security) -> $x: (social security, be the will of, $x) -> (Social Security, will likely be spared the brunt of, the changes) -> the changes (14284ms) When is Jennifer Lopez's birthday? Miami -4.568889215792058 When is Jennifer Lopez's birthday? -> $x: (Jennifer Lopez, birthday, $x) -> (Jennifer Lopez, celebrated her birthday in, Miami) -> Miami (4222ms) When is Jennifer Lopez's birthday? 1969-07-24 -6.91556571325239 When is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> when be jennifer lopez s birth date ? -> $x: (jennifer lopez, birth date, $x) -> (Jennifer Lopez, Date of birth, 1969-07-24) -> 1969-07-24 (8698ms) When is Jennifer Lopez's birthday? 1997 -8.440520147515603 When is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: (jennifer lopez s, be, $x) -> ('s life and death starring Jennifer Lopez, was released in, 1997) -> 1997 (11041ms) When is Jennifer Lopez's birthday? Castle Hill -10.535626625036212 When is Jennifer Lopez's birthday? -> [ when be jennifer lopez ] s birthday ? -> when be jennifer lopez s birth ? -> $x: (jennifer lopez, birth, $x) -> (Jennifer Lopez, Place of birth, Castle Hill) -> Castle Hill (10181ms) When is Jennifer Lopez's birthday? St. Augustine -10.535626625036212 When is Jennifer Lopez's birthday? -> [ when be jennifer lopez ] s birthday ? -> when be jennifer lopez s birth ? -> $x: (jennifer lopez, birth, $x) -> (Jennifer Lopez, Place of birth, St. Augustine) -> St. Augustine (10181ms) When is Jennifer Lopez's birthday? Ben Affleck -11.471511043718342 When is Jennifer Lopez's birthday? -> when be [ jennifer lopez ] s birthday ? -> what be jennifer lopez marry ? -> $x: (jennifer lopez, marry, $x) -> (Jennifer Lopez, was set to marry, Ben Affleck) -> Ben Affleck (8975ms) When is Jennifer Lopez's birthday? Fans -11.60802416022387 When is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: ($x, be, jennifer lopez s) -> (Fans, are loving, Jennifer Lopez?s hot new single ?On) -> Fans (11041ms) When is Jennifer Lopez's birthday? Marc Anthony -11.750848377647513 When is Jennifer Lopez's birthday? -> when be [ jennifer lopez ] s birthday ? -> what be jennifer lopez marry ? -> $x: (jennifer lopez, marry, $x) -> (Jennifer Lopez, married, Marc Anthony) -> Marc Anthony (8975ms) When is Jennifer Lopez's birthday? 60?s glamour -12.116741490348177 When is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: (jennifer lopez s, be, $x) -> (?Jennifer Lopez?s Oscar?s look, was all about, 60?s glamour) -> 60?s glamour (11041ms) When is Jennifer Lopez's birthday? 53 -12.251898360685704 When is Jennifer Lopez's birthday? -> [ when be jennifer lopez ] s birthday ? -> when be jennifer lopez s age ? -> $x: (jennifer lopez, age, $x) -> (Jennifer Lopez and Randy Jackson, has an average age of, 53) -> 53 (10603ms) When is Jennifer Lopez's birthday? joint custody -12.252477095869981 When is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: (jennifer lopez s, be, $x) -> (Jennifer Lopez?s ex, is gunning for, joint custody) -> joint custody (11042ms) When is Jennifer Lopez's birthday? New York -12.393649311985925 When is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: (jennifer lopez s, be, $x) -> ('s Fendi Peek-a-boo Jennifer Lopez, was spotted in, New York) -> New York (11041ms) When is Jennifer Lopez's birthday? Catholicism -12.427058682615662 When is Jennifer Lopez's birthday? -> [ when be jennifer lopez ] s birthday ? -> when be jennifer lopez s religion ? -> $x: (jennifer lopez, religion, $x) -> (Jennifer Lopez, Religion, Catholicism) -> Catholicism (11888ms) When is Jennifer Lopez's birthday? Ojani Noa -12.437851190860084 When is Jennifer Lopez's birthday? -> when be [ jennifer lopez ] s birthday ? -> what be jennifer lopez marry ? -> $x: (jennifer lopez, marry, $x) -> (Jennifer Lopez, married, Ojani Noa) -> Ojani Noa (8975ms) When is Jennifer Lopez's birthday? Mark Anthony -12.499496819553034 When is Jennifer Lopez's birthday? -> when be [ jennifer lopez ] s birthday ? -> what be jennifer lopez marry ? -> $x: (jennifer lopez, marry, $x) -> (actress Jennifer Lopez, got married to, Mark Anthony) -> Mark Anthony (8974ms) When is Jennifer Lopez's birthday? a man -12.64223032164858 When is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: (jennifer lopez s, be, $x) -> (Jennifer Lopez?s stunt double?, is, a man) -> a man (11042ms) When is Jennifer Lopez's birthday? song -12.673375824699447 When is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: ($x, be, jennifer lopez s) -> (song, is from, one Jennifer lopez?s song) -> song (11226ms) When is Jennifer Lopez's birthday? Loud These -12.734046523571271 When is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: ($x, be, jennifer lopez s) -> (Loud These, are the lyrics to, Jennifer Lopez?s song ?let?s) -> Loud These (11225ms) When is Jennifer Lopez's birthday? a new look -12.80050630082741 When is Jennifer Lopez's birthday? -> [ when be jennifer lopez ] s birthday ? -> when be jennifer lopez s birth ? -> $x: (jennifer lopez, birth, $x) -> (Jennifer Lopez, gave birth to, a new look) -> a new look (10181ms) When is Jennifer Lopez's birthday? dirty -12.841918687467016 When is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: (jennifer lopez s, be, $x) -> (One man touch Jennifer Lopez?s rear-end, was n?t as, dirty) -> dirty (11225ms) When is Jennifer Lopez's birthday? a backup dancer -12.858133653433471 When is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: (jennifer lopez s, be, $x) -> (Jennifer Lopez?s second husband, was, a backup dancer) -> a backup dancer (11226ms) When is Jennifer Lopez's birthday? ?FRO-YO?? Yogurt -12.950974437701396 When is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: ($x, be, jennifer lopez s) -> (?FRO-YO?? Yogurt, is about as masculine as, Jennifer Lopez?s) -> ?FRO-YO?? Yogurt (11225ms) When is Jennifer Lopez's birthday? Mr Barnes -12.973014793113029 When is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: ($x, be, jennifer lopez s) -> (Mr Barnes, was responsible for, Jennifer Lopez?s makeup) -> Mr Barnes (11225ms) When is Jennifer Lopez's birthday? Diddy -12.974007250383638 When is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: ($x, be, jennifer lopez s) -> (Diddy, just happens to be, judge Jennifer Lopez ?s ex) -> Diddy (11314ms) When is Jennifer Lopez's birthday? twins -12.990602312130445 When is Jennifer Lopez's birthday? -> [ when be jennifer lopez ] s birthday ? -> when be jennifer lopez s birth ? -> $x: (jennifer lopez, birth, $x) -> (Jennifer Lopez, gave birth to, twins) -> twins (10181ms) When is Jennifer Lopez's birthday? twin babies -13.005476441474872 When is Jennifer Lopez's birthday? -> [ when be jennifer lopez ] s birthday ? -> when be jennifer lopez s birth ? -> $x: (jennifer lopez, birth, $x) -> (Jennifer Lopez, gave birth to, twin babies) -> twin babies (10181ms) When is Jennifer Lopez's birthday? a baby -13.07004173027845 When is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: (jennifer lopez s, be, $x) -> (Jennifer Lopez?s character Holly, has been waiting for, a baby) -> a baby (11314ms) When is Jennifer Lopez's birthday? backup dancer -13.119758206334625 When is Jennifer Lopez's birthday? -> when be [ jennifer lopez ] s birthday ? -> what be jennifer lopez marry ? -> $x: (jennifer lopez, marry, $x) -> (Jennifer Lopez, to marry, backup dancer) -> backup dancer (8975ms) When is Jennifer Lopez's birthday? twins Max and Emme -13.13386306075085 When is Jennifer Lopez's birthday? -> [ when be jennifer lopez ] s birthday ? -> when be jennifer lopez s birth ? -> $x: (jennifer lopez, birth, $x) -> (Jennifer Lopez, gave birth to, twins Max and Emme) -> twins Max and Emme (10297ms) When is Jennifer Lopez's birthday? David Tanny -13.218093781878146 When is Jennifer Lopez's birthday? -> when be [ jennifer lopez ] s birthday ? -> what be jennifer lopez marry ? -> $x: (jennifer lopez, marry, $x) -> (Jennifer Lopez, marries, David Tanny) -> David Tanny (9041ms) When is Jennifer Lopez's birthday? Hahaha -13.727732265573335 When is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: ($x, be, jennifer lopez s) -> (Hahaha, are, Jennifer Lopez?s new car commercials) -> Hahaha (11314ms) When is Jennifer Lopez's birthday? Americans -13.808478555191396 When is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: ($x, be, jennifer lopez s) -> (Americans, are salivating over, Jennifer Lopez?s third marriage) -> Americans (11314ms) When is Jennifer Lopez's birthday? Casper Smart -14.127617002194322 When is Jennifer Lopez's birthday? -> when be [ jennifer lopez ] s birthday ? -> what be jennifer lopez marry ? -> $x: (jennifer lopez, marry, $x) -> (Jennifer Lopez, to marry, Casper Smart) -> Casper Smart (9040ms) When is Jennifer Lopez's birthday? the first time -14.225226836126147 When is Jennifer Lopez's birthday? -> when be [ jennifer lopez ] s birthday ? -> what be jennifer lopez marry ? -> $x: (jennifer lopez, marry, $x) -> (Jennifer Lopez, got married for, the first time) -> the first time (9041ms) When is Jennifer Lopez's birthday? finally -14.27246692540238 When is Jennifer Lopez's birthday? -> [ when be jennifer lopez ] s birthday ? -> when be jennifer lopez s birth ? -> $x: (jennifer lopez, birth, $x) -> (Jennifer Lopez, gave birth, finally) -> finally (10365ms) When is Jennifer Lopez's birthday? a born performer -14.273699045818942 When is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: (jennifer lopez s, be, $x) -> (Jennifer Lopez 's daughter, is, a born performer) -> a born performer (11314ms) When is Jennifer Lopez's birthday? the talks -14.418367457636588 When is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: (jennifer lopez s, be, $x) -> (the S.A. Jennifer Lopez, is in, the talks) -> the talks (11402ms) When is Jennifer Lopez's birthday? twins , a boy and a girl -14.512680609493595 When is Jennifer Lopez's birthday? -> [ when be jennifer lopez ] s birthday ? -> when be jennifer lopez s birth ? -> $x: (jennifer lopez, birth, $x) -> (Jennifer Lopez, gives birth to, twins , a boy and a girl) -> twins , a boy and a girl (10365ms) When is Jennifer Lopez's birthday? the host -14.567636063727193 When is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: (jennifer lopez s, be, $x) -> (Jennifer Lopez?s nipple, has been confirmed as, the host) -> the host (11402ms) When is Jennifer Lopez's birthday? the magazine -14.710182632302583 When is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: (jennifer lopez s, be, $x) -> (Jennifer Lopez?s locks, were used by, the magazine) -> the magazine (11402ms) When is Jennifer Lopez's birthday? the most blissful tones -14.880597936698035 When is Jennifer Lopez's birthday? -> when be [ jennifer lopez s ] birthday ? -> what be jennifer lopez s s myspace ? -> $x: (jennifer lopez s, myspace, $x) -> $x: (jennifer lopez s, be, $x) -> (Jennifer Lopez?s home, is decorated in, the most blissful tones) -> the most blissful tones (11402ms) When is Jennifer Lopez's birthday? The snake -16.446215023214478 When is Jennifer Lopez's birthday? -> when be [ jennifer lopez ] s birthday ? -> who jennifer lopez in the movie ? -> $x: ($x, jennifer lopez in, the movie) -> (The snake, tried to eat Jennifer Lopez in, the movie) -> The snake (10365ms) When was Shakespeare born? 1564 2.0445310405874215 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, 1564) -> 1564 (5091ms) When was Shakespeare born? 1554 1.9301100195119205 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, 1554) -> 1554 (5091ms) When was Shakespeare born? 1529 1.7141150916056378 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (John Shakespeare, was born in, 1529) -> 1529 (5091ms) When was Shakespeare born? April 1564 0.26045867969531633 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, April 1564) -> April 1564 (5360ms) When was Shakespeare born? 23 April 0.2589855993550003 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (Shakespeare, was born on, 23 April) -> 23 April (5360ms) When was Shakespeare born? April , 1564 0.14231180044095249 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, April , 1564) -> April , 1564 (5397ms) When was Shakespeare born? late April 1564 0.10298103236002887 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Biography William Shakespeare, was born in, late April 1564) -> late April 1564 (5397ms) When was Shakespeare born? April 23 -0.34701304029147373 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (Shakespeare, was born on, April 23) -> April 23 (5455ms) When was Shakespeare born? 23rd April -0.40174643523660736 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (Shakespeare, was born on, 23rd April) -> 23rd April (5455ms) When was Shakespeare born? April 23rd -0.4747614288740203 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (! Shakespeare, was born on, April 23rd) -> April 23rd (5488ms) When was Shakespeare born? April 23 , 1564 -0.5291692215697932 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (Shakespeare, was born on, April 23 , 1564) -> April 23 , 1564 (5488ms) When was Shakespeare born? 23 April 1564 -0.5851481901260565 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (! Shakespeare, was born on, 23 April 1564) -> 23 April 1564 (5488ms) When was Shakespeare born? April 26 , 1564 -0.6029484845368387 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (Shakespeare, was born on, April 26 , 1564) -> April 26 , 1564 (5552ms) When was Shakespeare born? 26 April 1564 -0.6143267102783079 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (William Shakespeare, was born on, 26 April 1564) -> 26 April 1564 (5552ms) When was Shakespeare born? April and World book day -0.9786492884448148 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, April and World book day) -> April and World book day (5716ms) When was Shakespeare born? April -1.118366246710083 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, April) -> April (5743ms) When was Shakespeare born? 1582 -1.4896270130615559 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, marry in, $x) -> (Shakespeare, married her in, 1582) -> 1582 (5862ms) When was Shakespeare born? April 26 -1.619769978027732 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (Shakespeare, was born on, April 26) -> April 26 (5903ms) When was Shakespeare born? Sunday -1.8226346600480374 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (Shakespeare, was indeed born on, Sunday) -> Sunday (5937ms) When was Shakespeare born? Stratford-upon-Avon -1.8650566872577283 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, Stratford-upon-Avon) -> Stratford-upon-Avon (6009ms) When was Shakespeare born? April 23 , -1.9042089236862942 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (?William Shakespeare, was born, April 23 ,) -> April 23 , (8030ms) When was Shakespeare born? 26 April -2.123248803588319 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be baptize on, $x) -> (William Shakespeare, was baptized on, 26 April) -> 26 April (8797ms) When was Shakespeare born? September 9 -2.183766468488019 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bury on, $x) -> (Mary Shakespeare, was buried on, September 9) -> September 9 (8475ms) When was Shakespeare born? the 23rd too -2.4203341740124924 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (Shakespeare, was born on, the 23rd too) -> the 23rd too (6176ms) When was Shakespeare born? the 26th -2.4574704771792035 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (William Shakespeare, was born on, the 26th) -> the 26th (6234ms) When was Shakespeare born? April 23 , 1564 , -2.4770856473658913 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (Shakespeare, was born, April 23 , 1564 ,) -> April 23 , 1564 , (8088ms) When was Shakespeare born? St . Austell -2.4771389480919703 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare scholar and authority, was born in, St . Austell) -> St . Austell (6234ms) When was Shakespeare born? a 23... dead -2.5527652632562896 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (William Shakespeare, was born on, a 23... dead) -> a 23... dead (6253ms) When was Shakespeare born? Stratford-on-Avon -2.5854255135485906 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, Stratford-on-Avon) -> Stratford-on-Avon (6315ms) When was Shakespeare born? a small town -2.5992435461305883 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, a small town) -> a small town (6315ms) When was Shakespeare born? Italy -2.8082197169972325 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, Italy) -> Italy (6412ms) When was Shakespeare born? the Warwickshire town -2.8700017049141873 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Will Shakespeare, was born in, the Warwickshire town) -> the Warwickshire town (6412ms) When was Shakespeare born? England -2.8767949004287767 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, England) -> England (6412ms) When was Shakespeare born? Stratford and today -2.8929908675564677 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, Stratford and today) -> Stratford and today (6430ms) When was Shakespeare born? Worcester -3.064823178249652 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Nicholas Shakespeare, was born in, Worcester) -> Worcester (6448ms) When was Shakespeare born? 1564 ! 2 -3.2327956778267457 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> (Happy birthday William Shakespeare, born in, 1564 ! 2) -> 1564 ! 2 (6448ms) When was Shakespeare born? St George?s day -3.3294207167304375 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> (Shakespeare, was born on, St George?s day) -> St George?s day (6466ms) When was Shakespeare born? 1564 ! 1 hour ago -3.4269249459027304 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> (Happy birthday William Shakespeare, born in, 1564 ! 1 hour ago) -> 1564 ! 1 hour ago (6467ms) When was Shakespeare born? allegedly on April 23 , 1564 -3.44202512475227 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (William Shakespeare, was born, allegedly on April 23 , 1564) -> allegedly on April 23 , 1564 (8357ms) When was Shakespeare born? 1564 ! 5 hours ago -3.447326064766682 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> (Happy birthday William Shakespeare, born in, 1564 ! 5 hours ago) -> 1564 ! 5 hours ago (6485ms) When was Shakespeare born? 1564 ! 3 hours ago -3.447326064766682 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> (Happy birthday William Shakespeare, born in, 1564 ! 3 hours ago) -> 1564 ! 3 hours ago (6467ms) When was Shakespeare born? Stratford -3.4935538402226998 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, Stratford) -> Stratford (6484ms) When was Shakespeare born? Henley Street -3.7806682033815417 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, Henley Street) -> Henley Street (6702ms) When was Shakespeare born? Kingston -3.8037454116362257 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Robbie Shakespeare, were both born in, Kingston) -> Kingston (6702ms) When was Shakespeare born? 445 years -3.853111285181472 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (Shakespeare, was born, 445 years) -> 445 years (8533ms) When was Shakespeare born? Jackson -3.930905170090165 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare scholar Bruce R. Smith, was born in, Jackson) -> Jackson (6721ms) When was Shakespeare born? the town -4.056104419451362 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, the town) -> the town (6739ms) When was Shakespeare born? Teaneck -4.347241703675306 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, had been born in, Teaneck) -> Teaneck (6921ms) When was Shakespeare born? the year -4.505441623124528 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, the year) -> the year (6939ms) When was Shakespeare born? Avon -4.524315891190357 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: ($x, be the birthplace of, Shakespeare) -> (Avon, was the birthplace of, William Shakespeare) -> Avon (6939ms) When was Shakespeare born? the village -4.540809553489046 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, the village) -> the village (6939ms) When was Shakespeare born? the latter half -4.676468582871869 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (scotland Shakespeare, was born in, the latter half) -> the latter half (6956ms) When was Shakespeare born? the depths -4.680329154949357 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, the depths) -> the depths (6956ms) When was Shakespeare born? Stratford upon Avon -4.705365178052908 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: ($x, be the birthplace of, Shakespeare) -> (Stratford upon Avon, is the birthplace of, Shakespeare) -> Stratford upon Avon (6977ms) When was Shakespeare born? John Shakespeare -4.887691907027096 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (William Shakespeare, was born to, John Shakespeare) -> John Shakespeare (8725ms) When was Shakespeare born? a time -4.960398713927196 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, be bear at, $x) -> (Shakespeare, was born at, a time) -> a time (6993ms) When was Shakespeare born? thirty-five years -5.0512228627723985 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, be bear about, $x) -> (the Shakespeare, was born about, thirty-five years) -> thirty-five years (7052ms) When was Shakespeare born? movie theaters -5.165426458102679 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be to come to, $x) -> (classical Shakespeare titles, is coming to, movie theaters) -> movie theaters (8939ms) When was Shakespeare born? centuries -5.249245340325274 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (Shakespeare, may have been born, centuries) -> centuries (8939ms) When was Shakespeare born? two years -5.2709228973833255 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (William Shakespeare, was born, two years) -> two years (8957ms) When was Shakespeare born? four hundred years -5.481361948661354 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (Shakespeare, was born, four hundred years) -> four hundred years (9039ms) When was Shakespeare born? Project Gutenberg -5.502562770823962 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, be originally from, $x) -> (Shakespeare, were originally drawn from, Project Gutenberg) -> Project Gutenberg (7164ms) When was Shakespeare born? Latin -5.5196126849047555 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, educate in, $x) -> (Shakespeare, was better educated in, Latin) -> Latin (7164ms) When was Shakespeare born? the county of Warwick -5.520646607508663 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, the county of Warwick) -> the county of Warwick (7164ms) When was Shakespeare born? middle class parents -5.552333724657692 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (Shakespeare, was born to, middle class parents) -> middle class parents (9039ms) When was Shakespeare born? a show -5.639337608131637 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be to come to, $x) -> (Orlando Shakespeare Theater, is to come to, a show) -> a show (9039ms) When was Shakespeare born? the English language -5.689792701573589 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, educate in, $x) -> (Shakespeare, was highly educated in, the English language) -> the English language (7188ms) When was Shakespeare born? Temple Grafton church -5.733053794123014 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, marry in, $x) -> (William Shakespeare, was married in, Temple Grafton church) -> Temple Grafton church (7204ms) When was Shakespeare born? town -5.748292515822607 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be to come to, $x) -> (? William Shakespeare, is coming to, town) -> town (9067ms) When was Shakespeare born? unser Shakespeare -5.835564950757979 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be to come to, $x) -> (Shakespeare, has come to be known as, unser Shakespeare) -> unser Shakespeare (9065ms) When was Shakespeare born? Greenwood?s legal arguments -5.939059068939032 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (shakespeare, bear on, $x) -> (Shakespeare, had a bearing on, Greenwood?s legal arguments) -> Greenwood?s legal arguments (7220ms) When was Shakespeare born? a pig -6.031817129421848 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (Shakespeare, was born, a pig) -> a pig (9065ms) When was Shakespeare born? a fight -6.054272938084897 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, be be kill in, $x) -> (Shakespeare, was killed in, a fight) -> a fight (9267ms) When was Shakespeare born? Galileo -6.0855575950081064 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (Shakespeare, was born the same year as, Galileo) -> Galileo (9147ms) When was Shakespeare born? the same year -6.166528297039118 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Galileo and Shakespeare, were born in, the same year) -> the same year (7251ms) When was Shakespeare born? the start -6.236178212684798 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, be bear at, $x) -> (William Shakespeare, was born at, the start) -> the start (7251ms) When was Shakespeare born? a gang-related shooting -6.236790506573249 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, be be kill in, $x) -> (Letisha Shakespeare, was killed in, a gang-related shooting) -> a gang-related shooting (9267ms) When was Shakespeare born? Ottawa -6.243980021790751 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be to come to, $x) -> (Massachusetts-based Shakespeare & Company, are coming to, Ottawa) -> Ottawa (9147ms) When was Shakespeare born? English literature -6.452435931487816 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, have leave on, $x) -> (Shakespeare, have left their mark on, English literature) -> English literature (9267ms) When was Shakespeare born? places -6.453438047921715 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (Shakespeare, was born, places) -> places (9283ms) When was Shakespeare born? The town -6.470663057331868 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: ($x, be the birthplace of, Shakespeare) -> (The town, is the birthplace of, William Shakespeare) -> The town (7264ms) When was Shakespeare born? Thailand -6.524517332303894 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, be be kill in, $x) -> (Shakespeare, has been killed in, Thailand) -> Thailand (9283ms) When was Shakespeare born? What town -6.540021952790168 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: ($x, be the birthplace of, Shakespeare) -> (What town, was the birthplace of, William Shakespeare) -> What town (7280ms) When was Shakespeare born? Tinnin -6.570676912866324 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be to come to, $x) -> (Shakespeare, is coming back to, Tinnin) -> Tinnin (9283ms) When was Shakespeare born? Vancouver -6.636633997071021 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be to come to, $x) -> (Shakespeare?s already gory Macbeth, is coming to, Vancouver) -> Vancouver (9283ms) When was Shakespeare born? every day -6.661008180839634 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, come here to, $x) -> (Shakespeare, came to work here, every day) -> every day (9562ms) When was Shakespeare born? Hamlet -6.703320899773966 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be to come to, $x) -> (some Shakespeare ? John Simm, is coming to play, Hamlet) -> Hamlet (9562ms) When was Shakespeare born? music -6.727394865340568 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, have ever be to, $x) -> (No Shakespeare sonnet, has ever been successfully put to, music) -> music (9943ms) When was Shakespeare born? the room -6.729946926495304 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be to come to, $x) -> (Shakespeare, was to come into, the room) -> the room (9562ms) When was Shakespeare born? the editors -6.77381614225439 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, be away in, $x) -> (Shakespeare, was given away in, the editors) -> the editors (7296ms) When was Shakespeare born? a world -6.8448751353355055 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, bear into, $x) -> (William Shakespeare, was born into, a world) -> a world (9562ms) When was Shakespeare born? the work -6.8533939196966855 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, be reborn in, $x) -> (Shakespeare, is truly reborn in, the work) -> the work (7312ms) When was Shakespeare born? a Taurean sun -6.990336036307624 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, bear under, $x) -> (William Shakespeare, were also born under, a Taurean sun) -> a Taurean sun (9669ms) When was Shakespeare born? a stage -7.001424319552297 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, have happen on, $x) -> (Shakespeare, might have happened on, a stage) -> a stage (7803ms) When was Shakespeare born? works -7.052558858373416 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, have do on, $x) -> (Most likely Shakespeare, had done as much on, works) -> works (7691ms) When was Shakespeare born? film -7.110876482578709 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, to migrate to, $x) -> (Shakespeare, migrated to, film) -> film (9731ms) When was Shakespeare born? schools -7.139105043145854 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, to travel to, $x) -> (Shakespeare & Company actor/teachers, travel to, schools) -> schools (9944ms) When was Shakespeare born? Australia -7.437894564052428 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, to travel to, $x) -> ('s Royal Shakespeare Company, will travel to, Australia) -> Australia (9944ms) When was Shakespeare born? the art -7.467012581356823 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, educate in, $x) -> (Shakespeare, was well educated in, the art) -> the art (7326ms) When was Shakespeare born? the law -7.475462298979375 When was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, educate in, $x) -> (Shakespeare, was clearly educated in, the law) -> the law (7342ms) When was Shakespeare born? the day -7.599417655672119 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be to come to, $x) -> (art and Shakespeare, were to come earlier in, the day) -> the day (9651ms) When was Shakespeare born? the time -7.887819733292124 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (Shakespeare, was born, the time) -> the time (9669ms) When was Shakespeare born? the home -8.512044468790119 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (Shakespeare, was born, the home) -> the home (9695ms) When was Shakespeare born? the house -8.512044468790119 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, be bear, $x) -> (Shakespeare, was born, the house) -> the house (9694ms) When was Shakespeare born? the boonies -8.862371843796582 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, come here to, $x) -> (Shakespeare--not, come out here to, the boonies) -> the boonies (9712ms) When was Shakespeare born? the outskirts -9.265137232282406 When was Shakespeare born? -> $x: (Shakespeare, was born on, $x) -> $x: (Shakespeare, grow up on, $x) -> (William Shakespeare?s mother, grew up on, the outskirts) -> the outskirts (7747ms) What year did Patsy Cline die? 1963 -3.065239147801842 What year did Patsy Cline die? -> When did Patsy Cline die? -> $x: (Patsy Cline, did die in, $x) -> $x: (patsy cline, die in, $x) -> (Patsy Cline, died in, 1963) -> 1963 (9401ms) What year did Patsy Cline die? an airplane crash -5.761113907110156 What year did Patsy Cline die? -> When did Patsy Cline die? -> $x: (Patsy Cline, did die in, $x) -> $x: (patsy cline, die in, $x) -> (Patsy Cline, died in, an airplane crash) -> an airplane crash (9401ms) What year did Patsy Cline die? a plane crash -5.800091084416808 What year did Patsy Cline die? -> When did Patsy Cline die? -> $x: (Patsy Cline, did die in, $x) -> $x: (patsy cline, die in, $x) -> (Patsy Cline, died in, a plane crash) -> a plane crash (9401ms) What year did Patsy Cline die? age 30 -8.465325993384916 What year did Patsy Cline die? -> what year do [ patsy cline ] die ? -> what do patsy cline die ? -> $x: (patsy cline, die, $x) -> (legendary country singer Patsy Cline, died at, age 30) -> age 30 (9495ms) What year did Patsy Cline die? 1932 -8.9208146136533 What year did Patsy Cline die? -> what year [ do patsy cline ] die ? -> when do patsy cline do ? -> $x: (patsy cline, do do in, $x) -> $x: (patsy cline, in, $x) -> (Patsy Cline, was born in, 1932) -> 1932 (12723ms) What year did Patsy Cline die? 1967 -9.194219030367515 What year did Patsy Cline die? -> what year [ do patsy cline ] die ? -> when do patsy cline do ? -> $x: (patsy cline, do do in, $x) -> $x: (patsy cline, in, $x) -> (This Patsy Cline primer, was first released in, 1967) -> 1967 (12723ms) What year did Patsy Cline die? the 1950 's -9.924329209561328 What year did Patsy Cline die? -> what year [ do patsy cline ] die ? -> when do patsy cline do ? -> $x: (patsy cline, do do in, $x) -> $x: (patsy cline, in, $x) -> (8:35pm Patsy Cline, was a famous singer in, the 1950 's) -> the 1950 's (12723ms) What year did Patsy Cline die? The crash -10.271730257267025 What year did Patsy Cline die? -> When did Patsy Cline die? -> $x: (Patsy Cline, did die in, $x) -> $x: (patsy cline, die in, $x) -> $x: ($x, claim the life of, patsy cline) -> (The crash, also claimed the life of, Patsy Cline) -> The crash (9698ms) What year did Patsy Cline die? 1962 -10.27819961360871 What year did Patsy Cline die? -> what year [ do patsy cline ] die ? -> when do patsy cline do ? -> $x: (patsy cline, do do in, $x) -> $x: (patsy cline, in, $x) -> (Patsy Cline, met Elvis Presley in, 1962) -> 1962 (12723ms) What year did Patsy Cline die? reverb -10.993972394378593 What year did Patsy Cline die? -> what year [ do patsy cline ] die ? -> when do patsy cline do ? -> $x: (patsy cline, do do in, $x) -> $x: (patsy cline, in, $x) -> (Patsy Cline, drenched in, reverb) -> reverb (12723ms) What year did Patsy Cline die? Fairfax -11.09361018761405 What year did Patsy Cline die? -> what year [ do patsy cline ] die ? -> when do patsy cline do ? -> $x: (patsy cline, do do in, $x) -> $x: (patsy cline, in, $x) -> (Patsy Cline, supposedly performed at in, Fairfax) -> Fairfax (12841ms) What year did Patsy Cline die? Age 30 -11.134990766844322 What year did Patsy Cline die? -> what year do [ patsy cline ] die ? -> what time do patsy cline die ? -> $x: ($x, instance of, time) (patsy cline, die, $x) -> (Age 30, Instance Of, good time) (legendary country singer Patsy Cline, died at, age 30) -> Age 30 (12068ms) What year did Patsy Cline die? a field -11.255546320947527 What year did Patsy Cline die? -> what year [ do patsy cline ] die ? -> when do patsy cline do ? -> $x: (patsy cline, do do in, $x) -> $x: (patsy cline, in, $x) -> (a modern era Patsy Cline, stretched out in, a field) -> a field (12841ms) What year did Patsy Cline die? the Shenandoah Valley -11.317674892151219 What year did Patsy Cline die? -> what year [ do patsy cline ] die ? -> when do patsy cline do ? -> $x: (patsy cline, do do in, $x) -> $x: (patsy cline, in, $x) -> (Patsy Cline, was born in, the Shenandoah Valley) -> the Shenandoah Valley (12841ms) What year did Patsy Cline die? a head-on collision -11.327465668797421 What year did Patsy Cline die? -> what year [ do patsy cline ] die ? -> when do patsy cline do ? -> $x: (patsy cline, do do in, $x) -> $x: (patsy cline, in, $x) -> (Patsy Cline, was a passenger in, a head-on collision) -> a head-on collision (12944ms) What year did Patsy Cline die? mind -11.384291370544833 What year did Patsy Cline die? -> what year [ do patsy cline ] die ? -> when do patsy cline do ? -> $x: (patsy cline, do do in, $x) -> $x: (patsy cline, in, $x) -> (the person singer Patsy Cline, had in, mind) -> mind (12944ms) What year did Patsy Cline die? a plane accident -11.395581167742396 What year did Patsy Cline die? -> what year [ do patsy cline ] die ? -> when do patsy cline do ? -> $x: (patsy cline, do do in, $x) -> $x: (patsy cline, in, $x) -> (Patsy Cline, met her death in, a plane accident) -> a plane accident (12943ms) What year did Patsy Cline die? Saturday -11.450538725033164 What year did Patsy Cline die? -> what year do [ patsy cline ] die ? -> what year do patsy cline live ? -> $x: ($x, instance of, year) (patsy cline, live, $x) -> (Saturday, Instance Of, 12-year NFL veteran) (Patsy Cline & Connie Francis, will perform live on, Saturday) -> Saturday (12944ms) What year did Patsy Cline die? Stages -11.78524981283733 What year did Patsy Cline die? -> what year do [ patsy cline ] die ? -> what year do patsy cline live ? -> $x: ($x, instance of, year) (patsy cline, live, $x) -> (Stages, Instance Of, culmination of 11 year worth of training) (Patsy Cline, Live on, Stage) -> Stages (13085ms) What year did Patsy Cline die? part -11.946035943472886 What year did Patsy Cline die? -> what year [ do patsy cline ] die ? -> when do patsy cline do ? -> $x: (patsy cline, do do in, $x) -> $x: (patsy cline, in, $x) -> (Patsy Cline, is sponsored in, part) -> part (13086ms) What year did Patsy Cline die? Saturdays -11.946760670889036 What year did Patsy Cline die? -> what year do [ patsy cline ] die ? -> what year do patsy cline live ? -> $x: ($x, instance of, year) (patsy cline, live, $x) -> (Saturdays, Instance Of, year star) (Patsy Cline & Connie Francis, will perform live on, Saturday) -> Saturdays (13086ms) What year did Patsy Cline die? the top 100 women -12.37424906131333 What year did Patsy Cline die? -> what year [ do patsy cline ] die ? -> when do patsy cline do ? -> $x: (patsy cline, do do in, $x) -> $x: (patsy cline, in, $x) -> (Patsy cline, was in, the top 100 women) -> the top 100 women (13085ms) What year did Patsy Cline die? the water -12.860746244788512 What year did Patsy Cline die? -> what year [ do patsy cline ] die ? -> when do patsy cline do ? -> $x: (patsy cline, do do in, $x) -> $x: (patsy cline, in, $x) -> (Patsy Cline, is in, the water) -> the water (13133ms) What year did Patsy Cline die? the history -12.96020247867843 What year did Patsy Cline die? -> what year [ do patsy cline ] die ? -> when do patsy cline do ? -> $x: (patsy cline, do do in, $x) -> $x: (patsy cline, in, $x) -> (Patsy Cline, ever performed in, the history) -> the history (13133ms) What year did Patsy Cline die? the living room -13.280834550294136 What year did Patsy Cline die? -> what year [ do patsy cline ] die ? -> when do patsy cline do ? -> $x: (patsy cline, do do in, $x) -> $x: (patsy cline, in, $x) -> (patsy cline, is singing in, the living room) -> the living room (13133ms) What year did Patsy Cline die? the background -13.389456283288379 What year did Patsy Cline die? -> what year [ do patsy cline ] die ? -> when do patsy cline do ? -> $x: (patsy cline, do do in, $x) -> $x: (patsy cline, in, $x) -> (Patsy Cline?s ?Your Cheatin? Heart ?, plays in, the background) -> the background (13133ms) What year did South Dakota become a state? 1889 -6.732682087243019 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, became a state in, 1889) -> 1889 (6058ms) What year did South Dakota become a state? 2009 -7.440673422472682 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, was the only state in, 2009) -> 2009 (6059ms) What year did South Dakota become a state? November 2 , 1889 -7.826184465020908 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, became a state on, November 2 , 1889) -> November 2 , 1889 (6059ms) What year did South Dakota become a state? Nov. 2 , 1889 -8.33750639060167 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, became the 40th state on, Nov. 2 , 1889) -> Nov. 2 , 1889 (6140ms) What year did South Dakota become a state? The Mount Rushmore State -8.34571913149229 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> (South Dakota, Nickname, The Mount Rushmore State) -> The Mount Rushmore State (6140ms) What year did South Dakota become a state? November 2 -8.375884960077604 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, became a state on, November 2) -> November 2 (6140ms) What year did South Dakota become a state? public health -8.942752743472528 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, state, public health) -> public health (6386ms) What year did South Dakota become a state? the 49 -9.081296649767268 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, is the only state of, the 49) -> the 49 (6386ms) What year did South Dakota become a state? 1912 -9.088378033148121 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, go back to, 1912) -> 1912 (6386ms) What year did South Dakota become a state? North Dakota -9.171532595514412 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (SOUTH DAKOTA, is a state that is bordered by the state, North Dakota) -> North Dakota (6386ms) What year did South Dakota become a state? 26715 South Dakota -9.174953800231236 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, name after, south dakota) -> (26715 South Dakota, Named after, South Dakota) -> 26715 South Dakota (9139ms) What year did South Dakota become a state? usa... -9.314474774630042 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (SOUTH DAKOTA, is a state or province located in the geopolitical location, usa...) -> usa... (6386ms) What year did South Dakota become a state? Us -9.314474774630042 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (SOUTH DAKOTA, is a state or province located in the geopolitical location, Us) -> Us (6420ms) What year did South Dakota become a state? the U.S. -9.349040039617043 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, became the first state in, the U.S.) -> the U.S. (6420ms) What year did South Dakota become a state? no-fault divorce -9.384464521404983 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, was the last state to allow, no-fault divorce) -> no-fault divorce (6420ms) What year did South Dakota become a state? South Dakota Republican primary, 2012 -9.384987359642547 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (United States presidential election in South Dakota, 2012, Also known as, South Dakota Republican primary, 2012) -> South Dakota Republican primary, 2012 (10084ms) What year did South Dakota become a state? U . S . -9.385945864187857 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (SOUTH DAKOTA, is a state or province located in the geopolitical location, U . S .) -> U . S . (6420ms) What year did South Dakota become a state? Emergency -9.388592702239741 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, declared a State of, Emergency) -> Emergency (6420ms) What year did South Dakota become a state? Ohio -9.409309771375607 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, joins the States of, Ohio) -> Ohio (6420ms) What year did South Dakota become a state? Mount Rushmore -9.422769493701168 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, is the state of, Mount Rushmore) -> Mount Rushmore (6450ms) What year did South Dakota become a state? Americans -9.433862392621085 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, is a popular state among, Americans) -> Americans (6450ms) What year did South Dakota become a state? Democrats -9.458737127738404 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (Montana and South Dakota, are the last states for, Democrats) -> Democrats (6450ms) What year did South Dakota become a state? the USA -9.571922479446858 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, becomes the 40th state of, the USA) -> the USA (6450ms) What year did South Dakota become a state? United States House of Representatives elections in South Dakota, 2004 -9.59940062831599 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (United States House of Representatives election in South Dakota, 2004, Also known as, United States House of Representatives elections in South Dakota, 2004) -> United States House of Representatives elections in South Dakota, 2004 (10085ms) What year did South Dakota become a state? the Roe -9.613479767321348 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, became the first state since, the Roe) -> the Roe (6450ms) What year did South Dakota become a state? the Union -9.617508552938418 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, became the 40th state of, the Union) -> the Union (6450ms) What year did South Dakota become a state? few urban areas -9.625175515281626 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, is a rural state with, few urban areas) -> few urban areas (6474ms) What year did South Dakota become a state? the United States -9.631099138025203 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, became the 40th state of, the United States) -> the United States (6474ms) What year did South Dakota become a state? a small population -9.66830000931917 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, is a state with, a small population) -> a small population (6474ms) What year did South Dakota become a state? the Midwestern region -9.674682776748016 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, is a state located in, the Midwestern region) -> the Midwestern region (6474ms) What year did South Dakota become a state? Colorado permission -9.704157567839243 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, have given the State of, Colorado permission) -> Colorado permission (6474ms) What year did South Dakota become a state? the US. -9.723609932174842 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, is the most racist state in, the US.) -> the US. (6474ms) What year did South Dakota become a state? a Meharry graduate -9.730395014569492 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, is the only state without, a Meharry graduate) -> a Meharry graduate (6510ms) What year did South Dakota become a state? an Affiliate -9.741889595890632 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, will become the 41st State with, an Affiliate) -> an Affiliate (6510ms) What year did South Dakota become a state? court -9.821433201574962 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, had taken the state to, court) -> court (6511ms) What year did South Dakota become a state? the PPACA lawsuit -9.862303772648355 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, joined other states in, the PPACA lawsuit) -> the PPACA lawsuit (6511ms) What year did South Dakota become a state? South Dakota -9.865680093229207 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, name, $x) -> (26715 South Dakota, Named after, South Dakota) -> South Dakota (10084ms) What year did South Dakota become a state? Blue -9.930653811009039 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, color, $x) -> (South Dakota State University, Colors, Blue) -> Blue (10085ms) What year did South Dakota become a state? White -9.930653811009039 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, color, $x) -> (University of South Dakota, Colors, White) -> White (10180ms) What year did South Dakota become a state? Jackrabbit -9.930653811009039 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, mascot, $x) -> (South Dakota State University, Mascot, Jackrabbit) -> Jackrabbit (9835ms) What year did South Dakota become a state? Yellow -9.930653811009039 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, color, $x) -> (South Dakota State University, Colors, Yellow) -> Yellow (10084ms) What year did South Dakota become a state? Vermilion -9.930653811009039 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, color, $x) -> (University of South Dakota, Colors, Vermilion) -> Vermilion (10180ms) What year did South Dakota become a state? Coyotes -9.930653811009039 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, mascot, $x) -> (University of South Dakota, Mascot, Coyotes) -> Coyotes (9834ms) What year did South Dakota become a state? The Volante -9.985631572207359 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, school, south dakota) -> (The Volante, School, University of South Dakota) -> The Volante (9087ms) What year did South Dakota become a state? SD School For The Deaf -9.985631572207359 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, school, south dakota) -> (SD School For The Deaf, Schools, South Dakota School for the Deaf) -> SD School For The Deaf (9087ms) What year did South Dakota become a state? an area -9.9879883690214 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (Pierre South Dakota, is the 16th largest state with, an area) -> an area (6537ms) What year did South Dakota become a state? 1977 -10.02793866560498 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, identify, $x) -> (South Dakota, was identified in, 1977) -> 1977 (7800ms) What year did South Dakota become a state? Public school -10.032755367520203 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, school, south dakota) -> (Public school, Schools of this kind, University of South Dakota) -> Public school (9086ms) What year did South Dakota become a state? Public university -10.032755367520203 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, school, south dakota) -> (Public university, Schools of this kind, University of South Dakota) -> Public university (9086ms) What year did South Dakota become a state? Spottswood -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Spottswood, Also known as, Spottswood, South Dakota) -> Spottswood (9937ms) What year did South Dakota become a state? South Shore -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (South Shore, Also known as, South Shore, South Dakota) -> South Shore (9369ms) What year did South Dakota become a state? Lucerne -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Lucerne, Also known as, Lucerne, South Dakota) -> Lucerne (9453ms) What year did South Dakota become a state? Badger -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Badger, Also known as, Badger, South Dakota) -> Badger (9453ms) What year did South Dakota become a state? Yankton -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Yankton, Also known as, Yankton, South Dakota) -> Yankton (9937ms) What year did South Dakota become a state? Manchester -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Manchester, Also known as, Manchester, South Dakota) -> Manchester (9662ms) What year did South Dakota become a state? Ramona -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Ramona, Also known as, Ramona, South Dakota) -> Ramona (9535ms) What year did South Dakota become a state? Dupree -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Dupree, Also known as, Dupree, South Dakota) -> Dupree (10777ms) What year did South Dakota become a state? Pukwana -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Pukwana, Also known as, Pukwana, South Dakota) -> Pukwana (9535ms) What year did South Dakota become a state? Ajax -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Ajax, Also known as, Ajax, South Dakota) -> Ajax (9834ms) What year did South Dakota become a state? Whitewood -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Whitewood, Also known as, Whitewood, South Dakota) -> Whitewood (9535ms) What year did South Dakota become a state? Sherman -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Sherman, Also known as, Sherman, South Dakota) -> Sherman (9662ms) What year did South Dakota become a state? Rudolph -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Rudolph, Also known as, Rudolph, South Dakota) -> Rudolph (9937ms) What year did South Dakota become a state? Tigerville -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Tigerville, Also known as, Tigerville, South Dakota) -> Tigerville (9535ms) What year did South Dakota become a state? Kennedyville -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Kennedyville, Also known as, Kennedyville, South Dakota) -> Kennedyville (9453ms) What year did South Dakota become a state? Fairview -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Fairview, Also known as, Fairview, South Dakota) -> Fairview (10180ms) What year did South Dakota become a state? Ladner -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Ladner, Also known as, Ladner, South Dakota) -> Ladner (9662ms) What year did South Dakota become a state? Beardsley -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Beardsley, Also known as, Beardsley, South Dakota) -> Beardsley (10383ms) What year did South Dakota become a state? Littleburg -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Littleburg, Also known as, Littleburg, South Dakota) -> Littleburg (9536ms) What year did South Dakota become a state? Conde -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Conde, Also known as, Conde, South Dakota) -> Conde (9139ms) What year did South Dakota become a state? Cresbard -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Cresbard, Also known as, Cresbard, South Dakota) -> Cresbard (10383ms) What year did South Dakota become a state? Manderson -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Manderson, Also known as, Manderson, South Dakota) -> Manderson (9453ms) What year did South Dakota become a state? Wallace -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Wallace, Also known as, Wallace, South Dakota) -> Wallace (10383ms) What year did South Dakota become a state? Roubaix -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Roubaix, Also known as, Roubaix, South Dakota) -> Roubaix (10777ms) What year did South Dakota become a state? Highmore -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Highmore, Also known as, Highmore, South Dakota) -> Highmore (9453ms) What year did South Dakota become a state? Hudson -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Hudson, Also known as, Hudson, South Dakota) -> Hudson (10180ms) What year did South Dakota become a state? Burke -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Burke, Also known as, Burke, South Dakota) -> Burke (9663ms) What year did South Dakota become a state? Greenway -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Greenway, Also known as, Greenway, South Dakota) -> Greenway (9937ms) What year did South Dakota become a state? Gallup -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Gallup, Also known as, Gallup, South Dakota) -> Gallup (10302ms) What year did South Dakota become a state? Lodgepole -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Lodgepole, Also known as, Lodgepole, South Dakota) -> Lodgepole (9369ms) What year did South Dakota become a state? Kidder -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Kidder, Also known as, Kidder, South Dakota) -> Kidder (9139ms) What year did South Dakota become a state? Redfern -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Redfern, Also known as, Redfern, South Dakota) -> Redfern (9937ms) What year did South Dakota become a state? Fourmile -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Fourmile, Also known as, Fourmile, South Dakota) -> Fourmile (9139ms) What year did South Dakota become a state? Ferney -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Ferney, Also known as, Ferney, South Dakota) -> Ferney (9453ms) What year did South Dakota become a state? Wentworth -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Wentworth, Also known as, Wentworth, South Dakota) -> Wentworth (9834ms) What year did South Dakota become a state? Grenville -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Grenville, Also known as, Grenville, South Dakota) -> Grenville (9369ms) What year did South Dakota become a state? Marlow -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Marlow, Also known as, Marlow, South Dakota) -> Marlow (10777ms) What year did South Dakota become a state? South Dakota Park -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (South Dakota Park, Also known as, South Dakota Park, South Dakota) -> South Dakota Park (9535ms) What year did South Dakota become a state? Gorman -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Gorman, Also known as, Gorman, South Dakota) -> Gorman (10303ms) What year did South Dakota become a state? Delmont -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Delmont, Also known as, Delmont, South Dakota) -> Delmont (9834ms) What year did South Dakota become a state? Oelrichs -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Oelrichs, Also known as, Oelrichs, South Dakota) -> Oelrichs (9834ms) What year did South Dakota become a state? Rockyford -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Rockyford, Also known as, Rockyford, South Dakota) -> Rockyford (10383ms) What year did South Dakota become a state? Polo -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Polo, Also known as, Polo, South Dakota) -> Polo (9369ms) What year did South Dakota become a state? Canton -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Canton, Also known as, Canton, South Dakota) -> Canton (9369ms) What year did South Dakota become a state? Dakota Dunes -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Dakota Dunes, Also known as, Dakota Dunes, South Dakota) -> Dakota Dunes (10777ms) What year did South Dakota become a state? Stickney -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Stickney, Also known as, Stickney, South Dakota) -> Stickney (10302ms) What year did South Dakota become a state? Columbia -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Columbia, Also known as, Columbia, South Dakota) -> Columbia (10777ms) What year did South Dakota become a state? Meckling -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Meckling, Also known as, Meckling, South Dakota) -> Meckling (10180ms) What year did South Dakota become a state? Dewey -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Dewey, Also known as, Dewey, South Dakota) -> Dewey (9139ms) What year did South Dakota become a state? Norris -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Norris, Also known as, Norris, South Dakota) -> Norris (9662ms) What year did South Dakota become a state? Colome -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Colome, Also known as, Colome, South Dakota) -> Colome (10303ms) What year did South Dakota become a state? Stamford -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Stamford, Also known as, Stamford, South Dakota) -> Stamford (9936ms) What year did South Dakota become a state? Promise -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Promise, Also known as, Promise, South Dakota) -> Promise (10383ms) What year did South Dakota become a state? Yale -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Yale, Also known as, Yale, South Dakota) -> Yale (9139ms) What year did South Dakota become a state? Lakeport -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Lakeport, Also known as, Lakeport, South Dakota) -> Lakeport (10383ms) What year did South Dakota become a state? Parker -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Parker, Also known as, Parker, South Dakota) -> Parker (10180ms) What year did South Dakota become a state? Kyle -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Kyle, Also known as, Kyle, South Dakota) -> Kyle (9369ms) What year did South Dakota become a state? Cuthbert -10.059954531307163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Cuthbert, Also known as, Cuthbert, South Dakota) -> Cuthbert (10302ms) What year did South Dakota become a state? unemployment -10.065799441378767 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, were the only states with, unemployment) -> unemployment (6537ms) What year did South Dakota become a state? Gold -10.073595990124668 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, color, $x) -> (South Dakota School of Mines and Technology, Colors, Gold) -> Gold (10777ms) What year did South Dakota become a state? Sharps Corner -10.107078326620007 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Sharps Corner, Also known as, Sharps Corner, South Dakota) -> Sharps Corner (10828ms) What year did South Dakota become a state? West Britton -10.107078326620007 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (West Britton, Also known as, West Britton, South Dakota) -> West Britton (10828ms) What year did South Dakota become a state? Pine Ridge -10.107078326620007 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Pine Ridge, Also known as, Pine Ridge, South Dakota) -> Pine Ridge (11102ms) What year did South Dakota become a state? Riverside Colony -10.107078326620007 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Riverside Colony, Also known as, Riverside Colony, South Dakota) -> Riverside Colony (11240ms) What year did South Dakota become a state? Glad Valley -10.107078326620007 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Glad Valley, Also known as, Glad Valley, South Dakota) -> Glad Valley (10828ms) What year did South Dakota become a state? Lakota Homes -10.107078326620007 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Lakota Homes, Also known as, Lakota Homes, South Dakota) -> Lakota Homes (11059ms) What year did South Dakota become a state? Union Center -10.107078326620007 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Union Center, Also known as, Union Center, South Dakota) -> Union Center (11059ms) What year did South Dakota become a state? Forest City -10.107078326620007 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Forest City, Also known as, Forest City, South Dakota) -> Forest City (11240ms) What year did South Dakota become a state? Saint Onge -10.107078326620007 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Saint Onge, Also known as, Saint Onge, South Dakota) -> Saint Onge (11166ms) What year did South Dakota become a state? Cloverleaf Colony -10.107078326620007 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Cloverleaf Colony, Also known as, Cloverleaf Colony, South Dakota) -> Cloverleaf Colony (11059ms) What year did South Dakota become a state? Wolf Creek -10.107078326620007 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Wolf Creek, Also known as, Wolf Creek, South Dakota) -> Wolf Creek (10942ms) What year did South Dakota become a state? Box Elder -10.107078326620007 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Box Elder, Also known as, Box Elder, South Dakota) -> Box Elder (11166ms) What year did South Dakota become a state? Lake Andes -10.107078326620007 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Lake Andes, Also known as, Lake Andes, South Dakota) -> Lake Andes (10942ms) What year did South Dakota become a state? Crow Creek -10.107078326620007 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Crow Creek, Also known as, Crow Creek, South Dakota) -> Crow Creek (10942ms) What year did South Dakota become a state? Kones Corner -10.107078326620007 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Kones Corner, Also known as, Kones Corner, South Dakota) -> Kones Corner (11285ms) What year did South Dakota become a state? Madsen Beach -10.107078326620007 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Madsen Beach, Also known as, Madsen Beach, South Dakota) -> Madsen Beach (11240ms) What year did South Dakota become a state? Wounded Knee -10.107078326620007 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Wounded Knee, Also known as, Wounded Knee, South Dakota) -> Wounded Knee (11059ms) What year did South Dakota become a state? Buffalo Gap -10.107078326620007 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Buffalo Gap, Also known as, Buffalo Gap, South Dakota) -> Buffalo Gap (11102ms) What year did South Dakota become a state? Froelich Addition -10.107078326620007 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Froelich Addition, Also known as, Froelich Addition, South Dakota) -> Froelich Addition (11102ms) What year did South Dakota become a state? Lake Norden -10.107078326620007 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Lake Norden, Also known as, Lake Norden, South Dakota) -> Lake Norden (10942ms) What year did South Dakota become a state? Black Hawk -10.107078326620007 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Black Hawk, Also known as, Black Hawk, South Dakota) -> Black Hawk (11059ms) What year did South Dakota become a state? Derian Subdivision -10.107078326620007 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Derian Subdivision, Also known as, Derian Subdivision, South Dakota) -> Derian Subdivision (11166ms) What year did South Dakota become a state? Williams Subdivision -10.107078326620007 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Williams Subdivision, Also known as, Williams Subdivision, South Dakota) -> Williams Subdivision (11166ms) What year did South Dakota become a state? Gederos Estates -10.107078326620007 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Gederos Estates, Also known as, Gederos Estates, South Dakota) -> Gederos Estates (11102ms) What year did South Dakota become a state? Lower Brule -10.107078326620007 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Lower Brule, Also known as, Lower Brule, South Dakota) -> Lower Brule (11240ms) What year did South Dakota become a state? White Butte -10.107078326620007 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (White Butte, Also known as, White Butte, South Dakota) -> White Butte (11240ms) What year did South Dakota become a state? Ingberg Tracts -10.107078326620007 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Ingberg Tracts, Also known as, Ingberg Tracts, South Dakota) -> Ingberg Tracts (11239ms) What year did South Dakota become a state? Johnsons Addition -10.107078326620007 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Johnsons Addition, Also known as, Johnsons Addition, South Dakota) -> Johnsons Addition (11166ms) What year did South Dakota become a state? Hayward Addition -10.107078326620007 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Hayward Addition, Also known as, Hayward Addition, South Dakota) -> Hayward Addition (11102ms) What year did South Dakota become a state? Mawl Springs -10.107078326620007 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Mawl Springs, Also known as, Mawl Springs, South Dakota) -> Mawl Springs (11285ms) What year did South Dakota become a state? Kadoka Junction -10.107078326620007 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Kadoka Junction, Also known as, Kadoka Junction, South Dakota) -> Kadoka Junction (11285ms) What year did South Dakota become a state? Gann Valley -10.107078326620007 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Gann Valley, Also known as, Gann Valley, South Dakota) -> Gann Valley (11102ms) What year did South Dakota become a state? Hiawatha Beach -10.107078326620007 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Hiawatha Beach, Also known as, Hiawatha Beach, South Dakota) -> Hiawatha Beach (11166ms) What year did South Dakota become a state? Kargas Subdivision -10.107078326620007 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Kargas Subdivision, Also known as, Kargas Subdivision, South Dakota) -> Kargas Subdivision (10942ms) What year did South Dakota become a state? Shady Beach -10.107078326620007 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Shady Beach, Also known as, Shady Beach, South Dakota) -> Shady Beach (11286ms) What year did South Dakota become a state? Stone Bridge -10.107078326620007 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Stone Bridge, Also known as, Stone Bridge, South Dakota) -> Stone Bridge (10942ms) What year did South Dakota become a state? Five Points -10.107078326620007 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (Five Points, Also known as, Five Points, South Dakota) -> Five Points (11059ms) What year did South Dakota become a state? Dark blue -10.109331534903577 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, color, $x) -> (South Dakota School of Mines and Technology, Colors, Dark blue) -> Dark blue (11340ms) What year did South Dakota become a state? Grubby the Miner -10.109331534903577 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, school, south dakota) -> (Grubby the Miner, School, South Dakota School of Mines and Technology) -> Grubby the Miner (11285ms) What year did South Dakota become a state? State school -10.109331534903577 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, school, south dakota) -> (State school, Schools of this kind, South Dakota School for the Deaf) -> State school (11340ms) What year did South Dakota become a state? innovation -10.145684171323056 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, is a state of, innovation) -> innovation (6584ms) What year did South Dakota become a state? 0121 -10.15391357115952 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (the SOUTH DAKOTA, was seen at about, 0121) -> 0121 (8043ms) What year did South Dakota become a state? Standing Rock Sioux Reservation births and deaths, 1924-1932 -10.221507701298137 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (Standing Rock Reservation: North and South Dakota Standing Rock Sioux Indians birth and death rolls, 1924-1932, Also known as, Standing Rock Sioux Reservation births and deaths, 1924-1932) -> Standing Rock Sioux Reservation births and deaths, 1924-1932 (11394ms) What year did South Dakota become a state? emergency -10.26712010991899 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota officials, declared a state of, emergency) -> emergency (6583ms) What year did South Dakota become a state? 1981 -10.30162495019165 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, could be, $x) -> (South Dakota, could be traced back to, 1981) -> 1981 (11393ms) What year did South Dakota become a state? extremes -10.340508529851315 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, is a state vivid in, extremes) -> extremes (6583ms) What year did South Dakota become a state? The Pasque Flower -10.35089867333076 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> (The Pasque Flower, is the state flower of, South Dakota) -> The Pasque Flower (6584ms) What year did South Dakota become a state? America the beautiful -10.433803307455731 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (America the beautiful, Also known as, South Dakota.) -> America the beautiful (11393ms) What year did South Dakota become a state? 1-1 -10.43944129815812 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota State, went, 1-1) -> 1-1 (6584ms) What year did South Dakota become a state? The Ring-Necked Pheasant -10.519940148442815 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> (The Ring-Necked Pheasant, is the state bird of, South Dakota) -> The Ring-Necked Pheasant (6583ms) What year did South Dakota become a state? Health Insurance -10.524306204030983 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, Go, Health Insurance) -> Health Insurance (6690ms) What year did South Dakota become a state? Pierre -10.538348614668802 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> (Pierre, is the state capital of, South Dakota) -> Pierre (6690ms) What year did South Dakota become a state? Canada -10.540019980547573 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota exports, go to, Canada) -> Canada (6690ms) What year did South Dakota become a state? private Pierre -10.553547515427697 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> (private Pierre, is the state capital of, South Dakota) -> private Pierre (6690ms) What year did South Dakota become a state? runoffs -10.55494942291526 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, is the only non-southern state to use, runoffs) -> runoffs (6690ms) What year did South Dakota become a state? 10-for-30 -10.555271192366032 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota state, went, 10-for-30) -> 10-for-30 (6769ms) What year did South Dakota become a state? American Pasqueflower -10.605650577392678 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> (American Pasqueflower, is the state flower of, South Dakota) -> American Pasqueflower (6769ms) What year did South Dakota become a state? The Pasque flower -10.626051696256631 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> (The Pasque flower, is also the state flower of, South Dakota) -> The Pasque flower (6769ms) What year did South Dakota become a state? SD -10.629201505606837 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota, Also known as, SD) -> SD (11393ms) What year did South Dakota become a state? S Dak -10.684179266805156 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota, Also known as, S Dak) -> S Dak (11393ms) What year did South Dakota become a state? South Dakota Park, South Dakota -10.684179266805156 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota Park, Also known as, South Dakota Park, South Dakota) -> South Dakota Park, South Dakota (11393ms) What year did South Dakota become a state? Beijing -10.68509311495506 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, went to, Beijing) -> Beijing (6768ms) What year did South Dakota become a state? State Capitol Building -10.731303062118 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota State Capitol, Also known as, State Capitol Building) -> State Capitol Building (11442ms) What year did South Dakota become a state? EZMONEY South Dakota, Inc -10.731303062118 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (EZMONEY South Dakota Inc, Also known as, EZMONEY South Dakota, Inc) -> EZMONEY South Dakota, Inc (11442ms) What year did South Dakota become a state? Howard, South Dakota Tornado -10.731303062118 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (1884 Howard, South Dakota tornado, Also known as, Howard, South Dakota Tornado) -> Howard, South Dakota Tornado (11442ms) What year did South Dakota become a state? SOYBEAN PROCESSORS LLC -10.731303062118 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (SOUTH DAKOTA SOYBEAN PROCESSORS LLC, Also known as, SOYBEAN PROCESSORS LLC) -> SOYBEAN PROCESSORS LLC (11442ms) What year did South Dakota become a state? SDSU -10.731303062118 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota State University, Also known as, SDSU) -> SDSU (11442ms) What year did South Dakota become a state? Mount Rushmore State -10.731303062118 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota, Also known as, Mount Rushmore State) -> Mount Rushmore State (11442ms) What year did South Dakota become a state? terms -10.731646032878505 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, is 46th largest state in, terms) -> terms (6800ms) What year did South Dakota become a state? Presentation College, Aberdeen, South Dakota Campus -10.772143684722465 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (Presentation College, Aberdeen, South Dakota, Also known as, Presentation College, Aberdeen, South Dakota Campus) -> Presentation College, Aberdeen, South Dakota Campus (11520ms) What year did South Dakota become a state? Alden Township, South Dakota -10.772143684722465 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (Alden Township, Hand County, South Dakota, Also known as, Alden Township, South Dakota) -> Alden Township, South Dakota (11520ms) What year did South Dakota become a state? Lamar Advertising of South Dakota Inc -10.772143684722465 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (LAMAR ADVERTISING OF SOUTH DAKOTA INC, Also known as, Lamar Advertising of South Dakota Inc) -> Lamar Advertising of South Dakota Inc (11520ms) What year did South Dakota become a state? First National Bank of South Dakota -10.772143684722465 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (First National Bank South Dakota, Also known as, First National Bank of South Dakota) -> First National Bank of South Dakota (11520ms) What year did South Dakota become a state? South Dakota State Capitol, Pierre -10.772143684722465 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota State Capitol, Also known as, South Dakota State Capitol, Pierre) -> South Dakota State Capitol, Pierre (11520ms) What year did South Dakota become a state? Omnicare Pharmacy of South Dakota LLC -10.772143684722465 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (OMNICARE PHARMACY OF SOUTH DAKOTA LLC, Also known as, Omnicare Pharmacy of South Dakota LLC) -> Omnicare Pharmacy of South Dakota LLC (11520ms) What year did South Dakota become a state? TCI of South Dakota, Inc -10.772143684722465 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (TCI of South Dakota Inc, Also known as, TCI of South Dakota, Inc) -> TCI of South Dakota, Inc (11520ms) What year did South Dakota become a state? drivers -10.780747484784563 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, was both the last state to impose, drivers) -> drivers (6799ms) What year did South Dakota become a state? the nation -10.807692306904237 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, was the first state in, the nation) -> the nation (6799ms) What year did South Dakota become a state? University of South Dakota, main campus -10.807879229501374 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (University of South Dakota, Also known as, University of South Dakota, main campus) -> University of South Dakota, main campus (11564ms) What year did South Dakota become a state? TCI Cablevision of South Dakota Inc -10.807879229501374 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (TCI Cablevision of South Dakota, Inc, Also known as, TCI Cablevision of South Dakota Inc) -> TCI Cablevision of South Dakota Inc (11622ms) What year did South Dakota become a state? UMB Trust Co of South Dakota -10.807879229501374 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (UMB Trust Company of South Dakota, Also known as, UMB Trust Co of South Dakota) -> UMB Trust Co of South Dakota (11564ms) What year did South Dakota become a state? South Dakota State University, main campus -10.807879229501374 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota State University, Also known as, South Dakota State University, main campus) -> South Dakota State University, main campus (11622ms) What year did South Dakota become a state? Presentation College, Eagle Butte, South Dakota Campus -10.807879229501374 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (Presentation College, Eagle Butte, South Dakota, Also known as, Presentation College, Eagle Butte, South Dakota Campus) -> Presentation College, Eagle Butte, South Dakota Campus (11622ms) What year did South Dakota become a state? Saga Communications of South Dakota LLC -10.807879229501374 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (Saga Communications of South Dakota, LLC, Also known as, Saga Communications of South Dakota LLC) -> Saga Communications of South Dakota LLC (11622ms) What year did South Dakota become a state? Heart Hospital of South Dakota LLC -10.807879229501374 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (Heart Hospital of South Dakota, LLC, Also known as, Heart Hospital of South Dakota LLC) -> Heart Hospital of South Dakota LLC (11564ms) What year did South Dakota become a state? Waste Management of South Dakota Inc -10.807879229501374 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (Waste Management of South Dakota, Inc, Also known as, Waste Management of South Dakota Inc) -> Waste Management of South Dakota Inc (11622ms) What year did South Dakota become a state? GateHouse Media South Dakota Holdings Inc -10.807879229501374 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (GateHouse Media South Dakota Holdings, Inc, Also known as, GateHouse Media South Dakota Holdings Inc) -> GateHouse Media South Dakota Holdings Inc (11564ms) What year did South Dakota become a state? WASTE CONNECTIONS OF SOUTH DAKOTA, INC -10.807879229501374 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (WASTE CONNECTIONS OF SOUTH DAKOTA INC, Also known as, WASTE CONNECTIONS OF SOUTH DAKOTA, INC) -> WASTE CONNECTIONS OF SOUTH DAKOTA, INC (11564ms) What year did South Dakota become a state? Portrait of America (Television program) -10.807879229501374 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota, Also known as, Portrait of America (Television program)) -> Portrait of America (Television program) (11564ms) What year did South Dakota become a state? American Telecasting of South Dakota, Inc -10.807879229501374 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (American Telecasting of South Dakota Inc, Also known as, American Telecasting of South Dakota, Inc) -> American Telecasting of South Dakota, Inc (11622ms) What year did South Dakota become a state? South Dakota Association of the Deaf Inc -10.807879229501374 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota Association of the Deaf, Also known as, South Dakota Association of the Deaf Inc) -> South Dakota Association of the Deaf Inc (11564ms) What year did South Dakota become a state? Spink, South Dakota -10.807879229501374 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (Spink Township, Union County, South Dakota, Also known as, Spink, South Dakota) -> Spink, South Dakota (11622ms) What year did South Dakota become a state? Wells Fargo Financial South Dakota, Inc -10.807879229501374 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (Wells Fargo Financial South Dakota Inc, Also known as, Wells Fargo Financial South Dakota, Inc) -> Wells Fargo Financial South Dakota, Inc (11564ms) What year did South Dakota become a state? Lamar Advertising of South Dakota, Inc -10.807879229501374 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (LAMAR ADVERTISING OF SOUTH DAKOTA INC, Also known as, Lamar Advertising of South Dakota, Inc) -> Lamar Advertising of South Dakota, Inc (11520ms) What year did South Dakota become a state? a step -10.830499241478568 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota lawmakers, went, a step) -> a step (6799ms) What year did South Dakota become a state? Bowling Green Inn of South Dakota Inc -10.839410592541586 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (Bowling Green Inn of South Dakota, Inc, Also known as, Bowling Green Inn of South Dakota Inc) -> Bowling Green Inn of South Dakota Inc (11725ms) What year did South Dakota become a state? Burlington Coat Factory of South Dakota, LLC -10.839410592541586 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (Burlington Coat Factory of South Dakota LLC, Also known as, Burlington Coat Factory of South Dakota, LLC) -> Burlington Coat Factory of South Dakota, LLC (11725ms) What year did South Dakota become a state? Cash America Net of South Dakota LLC -10.839410592541586 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (Cash America Net of South Dakota, LLC, Also known as, Cash America Net of South Dakota LLC) -> Cash America Net of South Dakota LLC (11725ms) What year did South Dakota become a state? Origen Financial of South Dakota, L.L.C. -10.839410592541586 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (Origen Financial of South Dakota LLC, Also known as, Origen Financial of South Dakota, L.L.C.) -> Origen Financial of South Dakota, L.L.C. (11725ms) What year did South Dakota become a state? SBS Insurance Agency of South Dakota Inc -10.839410592541586 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (SBS Insurance Agency of South Dakota, Inc, Also known as, SBS Insurance Agency of South Dakota Inc) -> SBS Insurance Agency of South Dakota Inc (11794ms) What year did South Dakota become a state? Family Dollar Stores of South Dakota, Inc -10.839410592541586 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (Family Dollar Stores of South Dakota Inc, Also known as, Family Dollar Stores of South Dakota, Inc) -> Family Dollar Stores of South Dakota, Inc (11725ms) What year did South Dakota become a state? University of South Dakota School of Law, Vermillion -10.839410592541586 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (University of South Dakota School of Law, Also known as, University of South Dakota School of Law, Vermillion) -> University of South Dakota School of Law, Vermillion (11794ms) What year did South Dakota become a state? South Dakota Amateur Baseball Hall of Fame Inc -10.839410592541586 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota Amateur Baseball Hall of Fame, Also known as, South Dakota Amateur Baseball Hall of Fame Inc) -> South Dakota Amateur Baseball Hall of Fame Inc (11794ms) What year did South Dakota become a state? SDSM&T -10.839410592541586 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota School of Mines and Technology, Also known as, SDSM&T) -> SDSM&T (11794ms) What year did South Dakota become a state? Washington DC -10.839789621523819 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, is going on in, Washington DC) -> Washington DC (6798ms) What year did South Dakota become a state? Chapter 13 -10.844840203804944 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, choose, $x) -> (South Dakota, chose, Chapter 13) -> Chapter 13 (11794ms) What year did South Dakota become a state? Colorado and Wyoming. -10.849112550400113 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (Colorado & Wyoming: with adjacent parts of Nebraska, South Dakota & Idaho : a geological field guidebook, Also known as, Colorado and Wyoming.) -> Colorado and Wyoming. (11794ms) What year did South Dakota become a state? University of South Dakota School of Law, main campus -10.867438470799552 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (University of South Dakota School of Law, Also known as, University of South Dakota School of Law, main campus) -> University of South Dakota School of Law, main campus (11794ms) What year did South Dakota become a state? South Dakota School for the Deaf, main campus -10.867438470799552 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota School for the Deaf, Also known as, South Dakota School for the Deaf, main campus) -> South Dakota School for the Deaf, main campus (11848ms) What year did South Dakota become a state? Russell Bridge -10.867438470799552 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota Department of Transportation Bridge No. 14-088-170, Also known as, Russell Bridge) -> Russell Bridge (11848ms) What year did South Dakota become a state? University of South Dakota - Springfield, main campus -10.867438470799552 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (University of South Dakota - Springfield, Also known as, University of South Dakota - Springfield, main campus) -> University of South Dakota - Springfield, main campus (11794ms) What year did South Dakota become a state? South Dakota School of Mines & Technology Hardrocker football -10.892516046082996 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota School of Mines and Technology Hardrockers football, Also known as, South Dakota School of Mines & Technology Hardrocker football) -> South Dakota School of Mines & Technology Hardrocker football (11937ms) What year did South Dakota become a state? South Dakota School of Mines and Technology, main campus -10.892516046082996 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota School of Mines and Technology, Also known as, South Dakota School of Mines and Technology, main campus) -> South Dakota School of Mines and Technology, main campus (11937ms) What year did South Dakota become a state? ADVANCE AMERICA, CASH ADVANCE CENTERS OF SOUTH DAKOTA, INC -10.892516046082996 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (ADVANCE AMERICA CASH ADVANCE CENTERS OF SOUTH DAKOTA INC, Also known as, ADVANCE AMERICA, CASH ADVANCE CENTERS OF SOUTH DAKOTA, INC) -> ADVANCE AMERICA, CASH ADVANCE CENTERS OF SOUTH DAKOTA, INC (11937ms) What year did South Dakota become a state? Planned Parenthood -10.914133035382658 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> $x: ($x, state of, south dakota) -> (Planned Parenthood, sued the state of, South Dakota) -> Planned Parenthood (6879ms) What year did South Dakota become a state? U Haul Co of South Dakota Inc -10.915085863838096 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (U-Haul Co. of South Dakota, Inc., Also known as, U Haul Co of South Dakota Inc) -> U Haul Co of South Dakota Inc (12161ms) What year did South Dakota become a state? Motor Carrier Services customer satisfaction assessment -10.935506175140329 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota Motor Carrier Services 2006 customer satisfaction assessment: final report, Also known as, Motor Carrier Services customer satisfaction assessment) -> Motor Carrier Services customer satisfaction assessment (12294ms) What year did South Dakota become a state? New species of Globidens -10.935506175140329 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (A new species of Globidens from South Dakota, and a review of globidentine mosasaurs, Also known as, New species of Globidens) -> New species of Globidens (12294ms) What year did South Dakota become a state? THE SOUTH DAKOTA GREAT ATLANTIC & PACIFIC TEA CO., INC. -10.935506175140329 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (SOUTH DAKOTA GREAT ATLANTIC & PACIFIC TEA CO INC, Also known as, THE SOUTH DAKOTA GREAT ATLANTIC & PACIFIC TEA CO., INC.) -> THE SOUTH DAKOTA GREAT ATLANTIC & PACIFIC TEA CO., INC. (12294ms) What year did South Dakota become a state? Election Day -10.95730592579691 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota citizens, will go to vote on, Election Day) -> Election Day (6879ms) What year did South Dakota become a state? a timber sale -10.99350019048917 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, chose to go forward with, a timber sale) -> a timber sale (6879ms) What year did South Dakota become a state? Restatement of the law of trusts, South Dakota annotations. -11.01404583399507 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota annotations to the Restatement of the law of trusts: as adopted and promulgated by the American Law Institute., Also known as, Restatement of the law of trusts, South Dakota annotations.) -> Restatement of the law of trusts, South Dakota annotations. (12358ms) What year did South Dakota become a state? a win -11.030591326360147 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, went along with, a win) -> a win (6879ms) What year did South Dakota become a state? April 2007 -11.099128184418877 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be use, $x) -> (South Dakota, were used between, April 2007) -> April 2007 (12423ms) What year did South Dakota become a state? Sioux Falls -11.126572601423504 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> $x: ($x, state of, south dakota) -> (Sioux Falls, covers the six-state region of, South Dakota) -> Sioux Falls (6879ms) What year did South Dakota become a state? a total ban -11.13034970789803 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, has gone from, a total ban) -> a total ban (6918ms) What year did South Dakota become a state? an election year -11.151962644126531 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, were going during, an election year) -> an election year (6918ms) What year did South Dakota become a state? Rockies & Plains. -11.15746608059938 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (Fodor's Rockies & Plains: Colorado, Nebraska, Utah, Wyoming, South Dakota, North Dakota, Montana, Also known as, Rockies & Plains.) -> Rockies & Plains. (12422ms) What year did South Dakota become a state? Lauck -11.160121593780127 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, went, Lauck) -> Lauck (6918ms) What year did South Dakota become a state? a special day -11.2219407384026 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, name, $x) -> (South Dakota, named, a special day) -> a special day (12423ms) What year did South Dakota become a state? a combined 3 percent decrease -11.23274910651889 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (South Dakota, saw, a combined 3 percent decrease) -> a combined 3 percent decrease (12423ms) What year did South Dakota become a state? a 44 percent rise -11.236541586984066 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (South Dakota, saw, a 44 percent rise) -> a 44 percent rise (12422ms) What year did South Dakota become a state? ethanol production -11.238517322378987 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, goes towards, ethanol production) -> ethanol production (6946ms) What year did South Dakota become a state? the union -11.245442507590523 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, has become the first state in, the union) -> the union (6946ms) What year did South Dakota become a state? a state -11.249474829836407 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be use, $x) -> (South Dakota, used to be, a state) -> a state (12423ms) What year did South Dakota become a state? a 44 % rise -11.271417530038196 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (South Dakota, saw, a 44 % rise) -> a 44 % rise (12423ms) What year did South Dakota become a state? one step -11.290257737910459 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, goes, one step) -> one step (6946ms) What year did South Dakota become a state? page > -11.302115018367404 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, Go to, page >) -> page > (6946ms) What year did South Dakota become a state? Division-I -11.30273624115008 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota State, went, Division-I) -> Division-I (6946ms) What year did South Dakota become a state? 10,000 -11.307126753859144 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (South Dakota, sees only, 10,000) -> 10,000 (12567ms) What year did South Dakota become a state? 51 percent -11.30826612258824 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, shot, $x) -> (South Dakota, shot, 51 percent) -> 51 percent (12567ms) What year did South Dakota become a state? the South Dakota Department -11.320840662800109 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, please go to, the South Dakota Department) -> the South Dakota Department (6946ms) What year did South Dakota become a state? Tobacco free -11.326509854676072 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, went, Tobacco free) -> Tobacco free (7020ms) What year did South Dakota become a state? SDCL 31-29-64 -11.327967708344378 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> $x: (south dakota, set forth, $x) -> (South Dakota standards, are set forth in, SDCL 31-29-64) -> SDCL 31-29-64 (7019ms) What year did South Dakota become a state? former Gov. Bill Janklow -11.3308927230735 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, goes to, former Gov. Bill Janklow) -> former Gov. Bill Janklow (7019ms) What year did South Dakota become a state? a record 32 enemy planes -11.335119906686984 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, shot, $x) -> (the USS South Dakota, shot down, a record 32 enemy planes) -> a record 32 enemy planes (12567ms) What year did South Dakota become a state? Citibank (South Dakota) National Association -11.343912401184985 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (Citibank (South Dakota), National Association, Also known as, Citibank (South Dakota) National Association) -> Citibank (South Dakota) National Association (12567ms) What year did South Dakota become a state? live-blogging the debate -11.345142869304041 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota Politics, is going to be, live-blogging the debate) -> live-blogging the debate (7019ms) What year did South Dakota become a state? the US Congress -11.346718934093163 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> $x: ($x, state of, south dakota) -> (the US Congress, gave back the state of, South Dakota) -> the US Congress (7019ms) What year did South Dakota become a state? a $ 95 processing fee -11.34764469926823 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, charge, $x) -> (South Dakota, began charging, a $ 95 processing fee) -> a $ 95 processing fee (12567ms) What year did South Dakota become a state? State -11.354247912349361 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> $x: ($x, state of, south dakota) -> (State, shall mean the State of, South Dakota) -> State (7075ms) What year did South Dakota become a state? leaps and bounds -11.358041534094076 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, has gone, leaps and bounds) -> leaps and bounds (7075ms) What year did South Dakota become a state? A rural lawyer -11.358576237388002 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> $x: ($x, state of, south dakota) -> (A rural lawyer, can also represent the State of, South Dakota) -> A rural lawyer (7075ms) What year did South Dakota become a state? 877-540-8187 -11.371928386703914 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, call, $x) -> (South Dakota Residents, Call, 877-540-8187) -> 877-540-8187 (12567ms) What year did South Dakota become a state? MN A -11.37775835537685 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, saw, south dakota) -> (MN A, must see of, South Dakota) -> MN A (12567ms) What year did South Dakota become a state? the amendment -11.389958987342592 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, became the 38th state to ratify, the amendment) -> the amendment (7075ms) What year did South Dakota become a state? 50 percent -11.417842091158924 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, draw, $x) -> (South Dakota, draws, 50 percent) -> 50 percent (12625ms) What year did South Dakota become a state? 260 More -11.421443457592861 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, draw, $x) -> (South Dakota, draws, 260 More) -> 260 More (12625ms) What year did South Dakota become a state? just 3.8 percent -11.450328679106763 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, pick, south dakota) -> (just 3.8 percent, have picked, South Dakota State) -> just 3.8 percent (12625ms) What year did South Dakota become a state? an additional 1.5 % tax -11.458141583233662 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, charge, $x) -> (South Dakota, charges, an additional 1.5 % tax) -> an additional 1.5 % tax (12625ms) What year did South Dakota become a state? the place -11.464466118073652 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> (the place, is now the state capital of, South Dakota) -> the place (7096ms) What year did South Dakota become a state? Roosevelt -11.472829775402687 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, went strong for, Roosevelt) -> Roosevelt (7096ms) What year did South Dakota become a state? the high plains -11.473893181365408 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota South Dakota, is a state in, the high plains) -> the high plains (7096ms) What year did South Dakota become a state? 24/7 Sobriety -11.473913290491552 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, call, $x) -> (South Dakota, called, 24/7 Sobriety) -> 24/7 Sobriety (12625ms) What year did South Dakota become a state? Dakota Cash 5 South Dakota -11.474038407650456 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, draw, $x) -> (the South Dakota, draw, Dakota Cash 5 South Dakota) -> Dakota Cash 5 South Dakota (12625ms) What year did South Dakota become a state? Speaker Pelosi -11.489331665390363 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, 's going to vote for, Speaker Pelosi) -> Speaker Pelosi (7096ms) What year did South Dakota become a state? 93,000+ acres -11.489526653714016 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, burn, $x) -> (South Dakota, burns, 93,000+ acres) -> 93,000+ acres (12625ms) What year did South Dakota become a state? gusto -11.492911524994167 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, went for, gusto) -> gusto (7131ms) What year did South Dakota become a state? a 10.6 % average annual growth rate -11.497876828005513 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (South Dakota, has seen, a 10.6 % average annual growth rate) -> a 10.6 % average annual growth rate (12625ms) What year did South Dakota become a state? 0.1 % -11.49886061043996 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, represent, $x) -> (South Dakota, represents, 0.1 %) -> 0.1 % (12768ms) What year did South Dakota become a state? the country -11.500855932523582 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, is the first state in, the country) -> the country (7131ms) What year did South Dakota become a state? 12 -11.501746364740558 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, shot, $x) -> (South Dakota, shot, 12) -> 12 (12768ms) What year did South Dakota become a state? the Democrats -11.517088891438505 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota?s House, will go entirely to, the Democrats) -> the Democrats (7131ms) What year did South Dakota become a state? The Movers -11.526527749173503 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> $x: ($x, state of, south dakota) -> (The Movers, serve the entire state of, South Dakota) -> The Movers (7131ms) What year did South Dakota become a state? vote -11.531126040212248 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (The Feeding South Dakota video, went up for, vote) -> vote (7131ms) What year did South Dakota become a state? hell -11.53688659296396 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, is about to go to, hell) -> hell (7162ms) What year did South Dakota become a state? PaceButler -11.539966033850467 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> $x: ($x, state of, south dakota) -> (PaceButler, has saved the State of, South Dakota budget) -> PaceButler (7162ms) What year did South Dakota become a state? 79.9 percent interest -11.558194689001025 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, charge, $x) -> (South Dakota, is charging, 79.9 percent interest) -> 79.9 percent interest (12768ms) What year did South Dakota become a state? Westinghouse -11.558791035223004 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota State University, went to work for, Westinghouse) -> Westinghouse (7162ms) What year did South Dakota become a state? US troops -11.576599839965072 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, kill, $x) -> (South Dakota, were killed by, US troops) -> US troops (12768ms) What year did South Dakota become a state? a laugh -11.587676545013865 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, draw, $x) -> (South Dakota, drew, a laugh) -> a laugh (12768ms) What year did South Dakota become a state? freezing rain -11.588494482501773 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (South Dakota, also might see, freezing rain) -> freezing rain (12768ms) What year did South Dakota become a state? a painting -11.590393725046706 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, identify, $x) -> (South Dakota, identified, a painting) -> a painting (12768ms) What year did South Dakota become a state? ?South Dakota? -11.594541797591603 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, could be, $x) -> (a good South Dakota flag, could be made with, ?South Dakota?) -> ?South Dakota? (12872ms) What year did South Dakota become a state? 600,000 vehicles and motorcyclist -11.597235484922734 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (South Dakota, saw over, 600,000 vehicles and motorcyclist) -> 600,000 vehicles and motorcyclist (12872ms) What year did South Dakota become a state? LeeAnn -11.6167237309584 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> $x: ($x, state of, south dakota) -> (LeeAnn, serves the entire state of, South Dakota) -> LeeAnn (7162ms) What year did South Dakota become a state? 37 percent -11.618581438437205 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, shot, $x) -> (South Dakota State, is only shooting, 37 percent) -> 37 percent (12873ms) What year did South Dakota become a state? 8 points -11.621163410021532 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be give, $x) -> (South Dakota State, is given a start of, 8 points) -> 8 points (7316ms) What year did South Dakota become a state? 61 percent -11.624287424992236 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, shot, $x) -> (South Dakota State, shot, 61 percent) -> 61 percent (12872ms) What year did South Dakota become a state? 41.3 percent -11.626577337762013 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, shot, $x) -> (South Dakota, shot, 41.3 percent) -> 41.3 percent (12873ms) What year did South Dakota become a state? the Dakota -11.631270424887248 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, name, $x) -> (South Dakota, are named after, the Dakota) -> the Dakota (12872ms) What year did South Dakota become a state? 87 programs -11.634128554404821 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, look at, $x) -> (South Dakota, looked at, 87 programs) -> 87 programs (12873ms) What year did South Dakota become a state? Tea -11.636381523830368 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, name, $x) -> (South Dakota, named, Tea) -> Tea (12872ms) What year did South Dakota become a state? 6 % sales tax -11.63643289839939 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, charge, $x) -> (South Dakota, will be charged, 6 % sales tax) -> 6 % sales tax (12984ms) What year did South Dakota become a state? Utah -11.637275455273391 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, be with, south dakota) -> (Utah, will be tied with, South Dakota) -> Utah (12984ms) What year did South Dakota become a state? the pheasant -11.637601345053895 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> (the pheasant, is the state bird of, South Dakota) -> the pheasant (7195ms) What year did South Dakota become a state? the same day -11.644466968304299 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (North and South Dakota, became states on, the same day) -> the same day (7195ms) What year did South Dakota become a state? three recipients -11.645061265646925 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> $x: ($x, state of, south dakota) -> (three recipients, also had led the state of, South Dakota) -> three recipients (7195ms) What year did South Dakota become a state? 500 people -11.647093646085816 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, say to, $x) -> (the South Dakota Democrat, said to about, 500 people) -> 500 people (12984ms) What year did South Dakota become a state? Nebraska -11.648760291552605 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, surround, $x) -> (South Dakota, surround, Nebraska) -> Nebraska (12984ms) What year did South Dakota become a state? the lowest voter support -11.653864487354893 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> (South Dakota, be the state with, the lowest voter support) -> the lowest voter support (7219ms) What year did South Dakota become a state? the 12 weeks -11.657067311578425 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, choose, $x) -> (South Dakota, chose, the 12 weeks) -> the 12 weeks (12984ms) What year did South Dakota become a state? The Plant Diagnostic Clinic -11.692440296616994 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> $x: ($x, state of, south dakota) -> (The Plant Diagnostic Clinic, serves the state of, South Dakota) -> The Plant Diagnostic Clinic (7219ms) What year did South Dakota become a state? John Thune -11.694634826560582 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (South Dakota voters, saw the qualities of, John Thune) -> John Thune (12984ms) What year did South Dakota become a state? nerve gas -11.70101160630194 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be use, $x) -> (South Dakota, can be used to detect, nerve gas) -> nerve gas (12984ms) What year did South Dakota become a state? 35.2 percent -11.707624088068966 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, shot, $x) -> (South Dakota State, shot just, 35.2 percent) -> 35.2 percent (13081ms) What year did South Dakota become a state? corn farmers -11.710585812539316 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota?s subsidies, went to, corn farmers) -> corn farmers (7219ms) What year did South Dakota become a state? a city -11.719725184772638 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, choose, $x) -> (South Dakota, Please choose, a city) -> a city (13081ms) What year did South Dakota become a state? Sarah Palin -11.724568128293207 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, call, $x) -> (South Dakota, called, Sarah Palin) -> Sarah Palin (13081ms) What year did South Dakota become a state? OTA -11.727640653148143 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> $x: ($x, state of, south dakota) -> (OTA, represents the tri-state area of, South Dakota) -> OTA (7317ms) What year did South Dakota become a state? No. 1 -11.738463867291593 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be still, $x) -> (South Dakota, is still, No. 1) -> No. 1 (13081ms) What year did South Dakota become a state? 292 -11.738882670119276 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, have make, $x) -> (South Dakota State?s Jill Young, has made, 292) -> 292 (13081ms) What year did South Dakota become a state? a close -11.741830108311529 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, draw, $x) -> (South Dakota, draws to, a close) -> a close (13081ms) What year did South Dakota become a state? White-winged Crossbills -11.75150441900514 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (a South Dakota big year, have just seen, White-winged Crossbills) -> White-winged Crossbills (14560ms) What year did South Dakota become a state? a mountain lion -11.75306950730467 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, shot, $x) -> (South Dakota, shot, a mountain lion) -> a mountain lion (14560ms) What year did South Dakota become a state? 0 and 455 miles -11.757921415471985 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, could be, $x) -> (South Dakota, could be anywhere between, 0 and 455 miles) -> 0 and 455 miles (14560ms) What year did South Dakota become a state? Thursday -11.76156014366569 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, rule, $x) -> (the South Dakota Supreme Court, ruled, Thursday) -> Thursday (14560ms) What year did South Dakota become a state? 10 trophy bull licenses -11.769829615776015 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be offer, $x) -> (South Dakota, is offering, 10 trophy bull licenses) -> 10 trophy bull licenses (14560ms) What year did South Dakota become a state? The Fairburn agate -11.789621276512532 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> (The Fairburn agate, is the state gemstone of, South Dakota) -> The Fairburn agate (14581ms) What year did South Dakota become a state? New York -11.79542250121274 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what state be in south dakota ? -> $x: ($x, instance of, state) ($x, be in, south dakota) -> (New York, Instance Of, state) (New York, was in, South Dakota) -> New York (5680ms) What year did South Dakota become a state? 200 colonies -11.79812394952717 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be by, $x) -> (South Dakota, will be followed by, 200 colonies) -> 200 colonies (14581ms) What year did South Dakota become a state? Native Americans -11.80587621492964 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, try, $x) -> (South Dakota Republicans, try to keep, Native Americans) -> Native Americans (14581ms) What year did South Dakota become a state? a town -11.822732487108293 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, choose, $x) -> (South dakota real estate, Choose, a town) -> a town (14581ms) What year did South Dakota become a state? a Golf Country Club Click -11.824232723545354 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, choose, $x) -> (South Dakota, Choose, a Golf Country Club Click) -> a Golf Country Club Click (14602ms) What year did South Dakota become a state? 200 loans -11.82438857414665 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, have make, $x) -> (south dakota, has made over, 200 loans) -> 200 loans (14602ms) What year did South Dakota become a state? Congress -11.82618616192936 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, represent, $x) -> (South Dakota, are represented in, Congress) -> Congress (14602ms) What year did South Dakota become a state? a career -11.841551045093858 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, try, $x) -> (South Dakota, try to build, a career) -> a career (14602ms) What year did South Dakota become a state? Microsoft -11.841695260804403 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be by, $x) -> (South Dakota, is being sponsored by, Microsoft) -> Microsoft (14602ms) What year did South Dakota become a state? FedEx -11.843404769889354 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, choose, $x) -> (their South Dakota defensive driving certificate, choose, FedEx) -> FedEx (14602ms) What year did South Dakota become a state? Wells Fargo Bank -11.846160282096463 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, try, $x) -> (South Dakota Mobil Home Financing, try, Wells Fargo Bank) -> Wells Fargo Bank (14602ms) What year did South Dakota become a state? a convention -11.866751185097717 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be by, $x) -> (South Dakota, was made by, a convention) -> a convention (14622ms) What year did South Dakota become a state? State University -11.868574792510351 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, know as, south dakota) -> (State University, is a sports team also known as, SOUTH DAKOTA STATE UNIVERSITY) -> State University (14622ms) What year did South Dakota become a state? a hiding spot -11.877361527315466 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, could be, $x) -> (South Dakota, could be, a hiding spot) -> a hiding spot (14622ms) What year did South Dakota become a state? energy efficient -11.881592780588235 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, saw, south dakota) -> (energy efficient, see, the South Dakota Energy Smart Web site) -> energy efficient (14622ms) What year did South Dakota become a state? a stunner -11.882467890730295 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be still, $x) -> (South Dakota, is still, a stunner) -> a stunner (14642ms) What year did South Dakota become a state? personal property -11.887246166905832 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be consider, $x) -> (South Dakota, are considered, personal property) -> personal property (14642ms) What year did South Dakota become a state? the January -11.887919870096507 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, may be, $x) -> (South Dakota, may be found in, the January) -> the January (14642ms) What year did South Dakota become a state? more than 10 percent -11.887963071033877 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be by, $x) -> (South Dakota, was also up by, more than 10 percent) -> more than 10 percent (14642ms) What year did South Dakota become a state? Rock Climbing -11.89604512441284 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> $x: ($x, be the will of, south dakota) -> (Rock Climbing, will be the part of, your South Dakota Vacation) -> Rock Climbing (14642ms) What year did South Dakota become a state? Policy -11.903254631305696 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, refer to, south dakota) -> (Policy, please refer to, South Dakota Board) -> Policy (14642ms) What year did South Dakota become a state? ILTF?s Head Start and K-12 curriculum -11.907415435369476 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be use, $x) -> (South Dakota, are using, ILTF?s Head Start and K-12 curriculum) -> ILTF?s Head Start and K-12 curriculum (14642ms) What year did South Dakota become a state? major league baseball -11.915024764317192 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (South Dakota, are seen throughout, major league baseball) -> major league baseball (14662ms) What year did South Dakota become a state? a motorcyclist -11.91582365142728 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, kill, $x) -> (South Dakota Bill Janklow, kills, a motorcyclist) -> a motorcyclist (14662ms) What year did South Dakota become a state? Foss -11.91584811947479 What year did South Dakota become a state? -> When did South Dakota become a state? -> when do [ south dakota ] become a state ? -> what become of south dakota ? -> $x: ($x, become of, south dakota) -> (Foss, became governor of, South Dakota) -> Foss (14662ms) What year did South Dakota become a state? a greater growth rate -11.917336342070977 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (South Dakota, will see, a greater growth rate) -> a greater growth rate (14662ms) What year did South Dakota become a state? June -11.919429865946833 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be still, $x) -> (our South Dakota primary, is still two months away in, June) -> June (14662ms) What year did South Dakota become a state? Medical -11.923498283671446 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota, is known as, Medical) -> Medical (14662ms) What year did South Dakota become a state? Iraq -11.926294614976403 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, fight, $x) -> (South Dakota Democratic Senator Tim Johnson, fought in, Iraq) -> Iraq (14662ms) What year did South Dakota become a state? a relatively central town -11.936552453956978 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, aka, $x) -> (South Dakota, a/k/a, a relatively central town) -> a relatively central town (14682ms) What year did South Dakota become a state? a common concern -11.939006205466223 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, identify, $x) -> (South Dakota, identified, a common concern) -> a common concern (14682ms) What year did South Dakota become a state? Citibank -11.939128764341476 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, saw, south dakota) -> (Citibank, saw an opportunity in, South Dakota) -> Citibank (14682ms) What year did South Dakota become a state? a man -11.939205065862563 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, charge, $x) -> (South Dakota, brought charges against, a man) -> a man (14682ms) What year did South Dakota become a state? a national convention -11.94627860977363 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, call, $x) -> (South Dakota, should call, a national convention) -> a national convention (14702ms) What year did South Dakota become a state? 12 pages -11.947258625633465 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, shot, $x) -> (the South Dakota-born kid, is shooting heroin, 12 pages) -> 12 pages (14702ms) What year did South Dakota become a state? Missouri River -11.957747242340066 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be by, $x) -> (South Dakota, is intersected by, Missouri River) -> Missouri River (14702ms) What year did South Dakota become a state? Minnesota -11.965814541570353 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be by, $x) -> (South Dakota, is mounted by, Minnesota) -> Minnesota (14702ms) What year did South Dakota become a state? Richard M. Nixon -11.9690111726803 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be by, $x) -> (South Dakota, was defeated by, Richard M. Nixon) -> Richard M. Nixon (14701ms) What year did South Dakota become a state? a good option -11.97125818230683 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, could be, $x) -> (south dakota loan, could be, a good option) -> a good option (14701ms) What year did South Dakota become a state? a cowboy -11.97423109720046 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be by, $x) -> (South Dakota, was started by, a cowboy) -> a cowboy (14701ms) What year did South Dakota become a state? 26 enemy planes -11.976941061696396 What year did South Dakota become a state? -> When did South Dakota become a state? -> when do [ south dakota ] become a state ? -> what become of south dakota ? -> $x: ($x, become of, south dakota) -> (26 enemy planes, later became governor of, South Dakota) -> 26 enemy planes (14721ms) What year did South Dakota become a state? health care -11.998513568966315 What year did South Dakota become a state? -> When did South Dakota become a state? -> when do [ south dakota ] become a state ? -> what become of south dakota ? -> $x: ($x, become of, south dakota) -> (health care, became part of, South Dakota law) -> health care (14721ms) What year did South Dakota become a state? a series -12.006946415659392 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be by, $x) -> (South Dakota, was supplemented by, a series) -> a series (14721ms) What year did South Dakota become a state? Meth -12.019945618218102 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be use, $x) -> (South Dakota young people, are more likely to use, Meth) -> Meth (14741ms) What year did South Dakota become a state? a CDC grant -12.020837821323033 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be by, $x) -> (South Dakota, is funded by, a CDC grant) -> a CDC grant (14741ms) What year did South Dakota become a state? a Regents -12.02231964161154 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, name, $x) -> (South Dakota, has been named, a Regents) -> a Regents (14740ms) What year did South Dakota become a state? a picture -12.026092692367818 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (South Dakota Pheasant, ask to see, a picture) -> a picture (14741ms) What year did South Dakota become a state? the Waldorf -12.027042275971844 What year did South Dakota become a state? -> When did South Dakota become a state? -> when do [ south dakota ] become a state ? -> what become of south dakota ? -> $x: ($x, become of, south dakota) -> (the Waldorf, became a part of, South Dakota) -> the Waldorf (14741ms) What year did South Dakota become a state? a pleasurable place -12.042550545771213 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, know as, $x) -> (South Dakota, is known as, a pleasurable place) -> a pleasurable place (14741ms) What year did South Dakota become a state? the following year -12.04747795618293 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: ($x, be the state of, south dakota) -> (the following year, is now the state of, South Dakota) -> the following year (14760ms) What year did South Dakota become a state? a patsy -12.05557724744495 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be use, $x) -> (South Dakota, is being used as, a patsy) -> a patsy (14760ms) What year did South Dakota become a state? Henry -12.058571758377154 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, call, $x) -> (a South Dakota bull bison, called, Henry) -> Henry (14760ms) What year did South Dakota become a state? United Wireless -12.058808010826752 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, ask, $x) -> (A South Dakota brother, asks about, United Wireless) -> United Wireless (14760ms) What year did South Dakota become a state? Moses -12.068041314458196 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, be with, south dakota) -> (Moses, was active with, the South Dakota State) -> Moses (14760ms) What year did South Dakota become a state? the Abortion -12.068502138185234 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, fight, $x) -> (South Dakota, Fight, the Abortion) -> the Abortion (14760ms) What year did South Dakota become a state? the CIA director -12.070337759538022 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, approach, $x) -> (a South Dakota Democrat, approached, the CIA director) -> the CIA director (14779ms) What year did South Dakota become a state? a little -12.07542186357355 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, listen to, $x) -> (South Dakota, loves listening to, a little) -> a little (14779ms) What year did South Dakota become a state? a ban -12.079792495514946 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, call, $x) -> (South Dakota, has called for, a ban) -> a ban (14779ms) What year did South Dakota become a state? government enforcement -12.08833894489128 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, desire, $x) -> (South Dakota, desires, government enforcement) -> government enforcement (14779ms) What year did South Dakota become a state? an audience -12.092457868453165 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be give, $x) -> (a South Dakota Sioux, was given, an audience) -> an audience (14779ms) What year did South Dakota become a state? a dry spring -12.101174621492042 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be by, $x) -> (South Dakota, be driven by, a dry spring) -> a dry spring (14798ms) What year did South Dakota become a state? trial -12.103638421856251 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, is to go on, trial) -> trial (14798ms) What year did South Dakota become a state? the Senate -12.115583576905031 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, have speak, $x) -> (a South Dakota Republican, has spoken daily in, the Senate) -> the Senate (14799ms) What year did South Dakota become a state? pheasant hunting packages -12.117003787200797 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (South Dakota, See, pheasant hunting packages) -> pheasant hunting packages (14799ms) What year did South Dakota become a state? a devastating ice storm -12.120702034444552 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be by, $x) -> (South Dakota, were affected by, a devastating ice storm) -> a devastating ice storm (14799ms) What year did South Dakota become a state? Italy -12.123559107432282 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what state be in south dakota ? -> $x: ($x, instance of, state) ($x, be in, south dakota) -> (Italy, Instance Of, state) (Italy, was in, South Dakota) -> Italy (5681ms) What year did South Dakota become a state? graduate -12.125585878896938 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, go, $x) -> (South Dakota, went on to, graduate) -> graduate (15678ms) What year did South Dakota become a state? more information -12.129904042188326 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, saw, south dakota) -> (more information, see, South Dakota) -> more information (15678ms) What year did South Dakota become a state? a fairly small town -12.135391330039138 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be still, $x) -> (South Dakota, is still, a fairly small town) -> a fairly small town (15677ms) What year did South Dakota become a state? a portrait -12.136617415466855 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (South Dakota, is often seen as, a portrait) -> a portrait (15678ms) What year did South Dakota become a state? you?ll -12.140816587212528 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, saw, south dakota) -> (you?ll, see in, South Dakota) -> you?ll (15678ms) What year did South Dakota become a state? the Dakota Alliance -12.14408625088511 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, answer, $x) -> (the South Dakota, answer to, the Dakota Alliance) -> the Dakota Alliance (15677ms) What year did South Dakota become a state? Lonnie Two Eagle -12.149830254532716 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, call, $x) -> (a South Dakota native American, called, Lonnie Two Eagle) -> Lonnie Two Eagle (15678ms) What year did South Dakota become a state? a survey -12.15057865630807 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be by, $x) -> (South Dakota, were driven by, a survey) -> a survey (15716ms) What year did South Dakota become a state? the Mack -12.15132346404054 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be still, $x) -> (The rusted South Dakota plate, is still on, the Mack) -> the Mack (15714ms) What year did South Dakota become a state? health care experts -12.152928220300666 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, saw, south dakota) -> (health care experts, see, South Dakota) -> health care experts (15714ms) What year did South Dakota become a state? America -12.153312662671112 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (South Dakota, See some of, America) -> America (15714ms) What year did South Dakota become a state? a DVD -12.156055511739286 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be offer, $x) -> (South Dakota Public Broadcasting, is offering, a DVD) -> a DVD (15714ms) What year did South Dakota become a state? a bullet -12.158536439322528 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be by, $x) -> (South Dakota, was hit by, a bullet) -> a bullet (15714ms) What year did South Dakota become a state? a train -12.158536439322528 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be by, $x) -> (South Dakota, was hit by, a train) -> a train (15714ms) What year did South Dakota become a state? a health certificate -12.163078993295176 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be by, $x) -> (South Dakota, must be accompanied by, a health certificate) -> a health certificate (15750ms) What year did South Dakota become a state? Dennis Daugaard -12.172754796345446 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (South Dakota, see a second side of, Dennis Daugaard) -> Dennis Daugaard (15750ms) What year did South Dakota become a state? Powerball South Dakota -12.174113941968399 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, draw, $x) -> (the South Dakota, draw, Powerball South Dakota) -> Powerball South Dakota (15750ms) What year did South Dakota become a state? Freeman Academy -12.181912668287161 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, school, south dakota) -> (Freeman Academy, is a Mennonite high school in, South Dakota) -> Freeman Academy (15750ms) What year did South Dakota become a state? more cases -12.187961682555292 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (South Dakota, continues to see, more cases) -> more cases (15750ms) What year did South Dakota become a state? a customized curriculum -12.188785283268002 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be give, $x) -> (South Dakota or Wyoming, be given, a customized curriculum) -> a customized curriculum (15751ms) What year did South Dakota become a state? a vote -12.192135944182558 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be by, $x) -> (South Dakota, was shelved by, a vote) -> a vote (15787ms) What year did South Dakota become a state? lone wolves -12.197301973264835 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> $x: (south dakota, note, $x) -> (North and South Dakota officials, have noted, lone wolves) -> lone wolves (15787ms) What year did South Dakota become a state? antelope i -12.197530319171447 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, saw, south dakota) -> (antelope i, saw in, South dakota) -> antelope i (15787ms) What year did South Dakota become a state? a number -12.201149597920455 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, look at, $x) -> (South Dakota lawmakers, are looking at, a number) -> a number (15787ms) What year did South Dakota become a state? a transferable pass -12.20204805238472 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, charge, $x) -> (South Dakota, charges more for, a transferable pass) -> a transferable pass (15787ms) What year did South Dakota become a state? South Dakota guides and directories -12.207231046831101 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (South Dakota, see, South Dakota guides and directories) -> South Dakota guides and directories (15787ms) What year did South Dakota become a state? a new leadership post -12.208062078460541 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, name, $x) -> (south dakota, was named to, a new leadership post) -> a new leadership post (15787ms) What year did South Dakota become a state? State v. Greger -12.208215414472011 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the state of south dakota ? -> $x: (south dakota, state, $x) -> $x: (south dakota, note, $x) -> (the South Dakota Supreme Court, noted in, State v. Greger) -> State v. Greger (15787ms) What year did South Dakota become a state? a possible approximate loss -12.208237647603601 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, look at, $x) -> (South Dakota, is looking at, a possible approximate loss) -> a possible approximate loss (15822ms) What year did South Dakota become a state? TravelSD.com -12.209051504229564 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, ask, $x) -> (the South Dakota Office, ask online via, TravelSD.com) -> TravelSD.com (15822ms) What year did South Dakota become a state? a minister -12.209550609243818 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, may be, $x) -> (SOUTH DAKOTA Marriages, may be performed by, a minister) -> a minister (15822ms) What year did South Dakota become a state? Chief -12.210950792495277 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, kill, $x) -> (South Dakota, followed the killing of, Chief) -> Chief (15822ms) What year did South Dakota become a state? a shootout -12.213100266855385 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, kill, $x) -> (two South Dakota officers, were killed in, a shootout) -> a shootout (15822ms) What year did South Dakota become a state? a good South Dakota flag -12.218766533089596 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, be with, south dakota) -> (a good South Dakota flag, could be made with, ?South Dakota?) -> a good South Dakota flag (15822ms) What year did South Dakota become a state? a DBA -12.21968187615836 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, call, $x) -> (your South Dakota business name, also called, a DBA) -> a DBA (15822ms) What year did South Dakota become a state? a crowd -12.226349005617845 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, speak to, $x) -> (South Dakota Gov. Dennis Daugaard, spoke to, a crowd) -> a crowd (15822ms) What year did South Dakota become a state? Bob -12.231363171048853 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, name, $x) -> (South Dakota, named, Bob) -> Bob (15858ms) What year did South Dakota become a state? Pass -12.232171582335365 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, name, $x) -> (South Dakota Secure Login User, Name, Pass) -> Pass (15858ms) What year did South Dakota become a state? two -12.236007780579584 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, shot, $x) -> (South Dakota State, shot, two) -> two (15858ms) What year did South Dakota become a state? a temperate grasslands biome -12.237023915962851 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be by, $x) -> (South Dakota, is dominated by, a temperate grasslands biome) -> a temperate grasslands biome (15858ms) What year did South Dakota become a state? men -12.238253773411222 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, be by, $x) -> (South Dakota, were confronted by, men) -> men (15858ms) What year did South Dakota become a state? rape -12.238422520210708 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, charge, $x) -> (A former South Dakota state lawmaker, charged with, rape) -> rape (15858ms) What year did South Dakota become a state? Mega Millions South Dakota -12.23908765974823 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, draw, $x) -> (the South Dakota, draw, Mega Millions South Dakota) -> Mega Millions South Dakota (15858ms) What year did South Dakota become a state? card services -12.239971846149327 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, call, $x) -> (South Dakota, prepaid calling, card services) -> card services (15892ms) What year did South Dakota become a state? record releases -12.24838654830182 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, saw, $x) -> (South Dakota, saw, record releases) -> record releases (15892ms) What year did South Dakota become a state? company -12.254258873622977 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, call, $x) -> (South Dakota, was to call, company) -> company (15892ms) What year did South Dakota become a state? a DENR report -12.254707907496257 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, refer to, $x) -> (South Dakota news reports, recently referred to, a DENR report) -> a DENR report (15892ms) What year did South Dakota become a state? the Living -12.261611386114803 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, choose, $x) -> (close South Dakota Living, Will Please choose, the Living) -> the Living (15892ms) What year did South Dakota become a state? Frist -12.262284641655096 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: ($x, say to, south dakota) -> (Frist, says this trip to, South Dakota) -> Frist (15892ms) What year did South Dakota become a state? recent years -12.266594687908105 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, have take, $x) -> (South Dakota, have taken similar action in, recent years) -> recent years (15892ms) What year did South Dakota become a state? Irregular News -12.268723099038516 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what be the nickname of south dakota ? -> $x: (south dakota, nickname, $x) -> $x: (south dakota, try, $x) -> (South Dakota, try, Irregular News) -> Irregular News (15892ms) What year did South Dakota become a state? New 14 York -12.334831008103613 What year did South Dakota become a state? -> what year do [ south dakota ] become a state ? -> what state be in south dakota ? -> $x: ($x, instance of, state) ($x, be in, south dakota) -> (New 14 York, Instance Of, state) (New York, was in, South Dakota) -> New 14 York (5679ms) What year did South Dakota become a state? Rhode Island -12.769316649724797 What year did South Dakota become a state? -> what year [ do south dakota ] become a state ? -> what number state be do south dakota ? -> $x: ($x, instance of, number state) ($x, be do south, dakota) -> $x: ($x, instance of, number state) ($x, south, dakota) -> (Rhode Island, Instance Of, limited number of state) (a rhode island, south carolina south, dakota) -> Rhode Island (2010ms) What year did South Dakota become a state? Oklahoma -12.892740612572021 What year did South Dakota become a state? -> what year [ do south dakota ] become a state ? -> what number state be do south dakota ? -> $x: ($x, instance of, number state) ($x, be do south, dakota) -> $x: ($x, instance of, number state) ($x, south, dakota) -> (Oklahoma, Instance Of, state with bountiful quail number) (oklahoma, can help south, dakota state) -> Oklahoma (2010ms) What year did South Dakota become a state? South -12.977514932738384 What year did South Dakota become a state? -> what year [ do south dakota ] become a state ? -> what number state be do south dakota ? -> $x: ($x, instance of, number state) ($x, be do south, dakota) -> $x: ($x, instance of, number state) ($x, south, dakota) -> (South, Instance Of, state with a relatively small number of geographically large district) (South, carolina south, dakota tennessee texas) -> South (2010ms) What year did South Dakota become a state? California -12.989919887251691 What year did South Dakota become a state? -> what year [ do south dakota ] become a state ? -> what number state be do south dakota ? -> $x: ($x, instance of, number state) ($x, be do south, dakota) -> $x: ($x, instance of, number state) ($x, south, dakota) -> (California, Instance Of, state with a high population density and large number of person) (California, recently moved to south, dakota) -> California (3029ms) What year did South Dakota become a state? Pennsylvania -12.991804880538414 What year did South Dakota become a state? -> what year [ do south dakota ] become a state ? -> what number state be do south dakota ? -> $x: ($x, instance of, number state) ($x, be do south, dakota) -> $x: ($x, instance of, number state) ($x, south, dakota) -> (Pennsylvania, Instance Of, top state in number) (pennsylvania, south carolina south, dakota tennessee) -> Pennsylvania (3029ms) What year did South Dakota become a state? Tennessee -13.15793156359716 What year did South Dakota become a state? -> what year [ do south dakota ] become a state ? -> what number state be do south dakota ? -> $x: ($x, instance of, number state) ($x, be do south, dakota) -> $x: ($x, instance of, number state) ($x, south, dakota) -> (Tennessee, Instance Of, border state or area with significant number) (tennessee, south dakota south, dakota) -> Tennessee (3110ms) What year did South Dakota become a state? Kansas -13.292064437303747 What year did South Dakota become a state? -> what year [ do south dakota ] become a state ? -> what number state be do south dakota ? -> $x: ($x, instance of, number state) ($x, be do south, dakota) -> $x: ($x, instance of, number state) ($x, south, dakota) -> (Kansas, Instance Of, state with large number of oil well and high percentage of low-volume stripper) (kansas, south carolina south, dakota tennessee texas) -> Kansas (3110ms) What is neuropathy? mentoflong-term complication -4.99602648885058 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, mentoflong-term complication) -> mentoflong-term complication (1293ms) What is neuropathy? micro-vessel complication -4.99602648885058 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, micro-vessel complication) -> micro-vessel complication (1292ms) What is neuropathy? diabetes-induced condition -4.99602648885058 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, diabetes-induced condition) -> diabetes-induced condition (1293ms) What is neuropathy? diabetes-related condition -5.081692812842029 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, diabetes-related condition) -> diabetes-related condition (1293ms) What is neuropathy? dose-limiting toxicity -5.114594942962709 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, dose-limiting toxicity) -> dose-limiting toxicity (1292ms) What is neuropathy? extra-articular manifestation -5.1176795171252785 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, extra-articular manifestation) -> extra-articular manifestation (1293ms) What is neuropathy? extra-articular feature -5.122820474880029 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, extra-articular feature) -> extra-articular feature (1318ms) What is neuropathy? disease of the peripheral nervous system -5.294042668096578 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, disease of the peripheral nervous system) -> disease of the peripheral nervous system (1318ms) What is neuropathy? type of heart disease -5.299496534111638 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, type of heart disease) -> type of heart disease (1318ms) What is neuropathy? disease of nerve system -5.299496534111638 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, disease of nerve system) -> disease of nerve system (1318ms) What is neuropathy? component of foot disease -5.299496534111638 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, component of foot disease) -> component of foot disease (1318ms) What is neuropathy? abnormality on physical examination -5.299496534111638 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, abnormality on physical examination) -> abnormality on physical examination (1346ms) What is neuropathy? risk of drug toxicity -5.299496534111638 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, risk of drug toxicity) -> risk of drug toxicity (1318ms) What is neuropathy? long term complication -5.3851510890059915 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, long term complication) -> long term complication (1346ms) What is neuropathy? devastating metabolic complication -5.419959360065465 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, devastating metabolic complication) -> devastating metabolic complication (1347ms) What is neuropathy? microvascular diabetic disease -5.419959360065465 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, microvascular diabetic disease) -> microvascular diabetic disease (1346ms) What is neuropathy? organ system complication -5.419959360065465 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, organ system complication) -> organ system complication (1346ms) What is neuropathy? side effect of the chemo -5.430237280649796 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, side effect of the chemo) -> side effect of the chemo (1346ms) What is neuropathy? serious adverse event -5.447755987025056 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, serious adverse event) -> serious adverse event (1360ms) What is neuropathy? common diabetic condition -5.460731728621772 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, common diabetic condition) -> common diabetic condition (1360ms) What is neuropathy? rare side effect of prescription medication -5.469852487468907 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, rare side effect of prescription medication) -> rare side effect of prescription medication (1360ms) What is neuropathy? microvascular complication of diabetes -5.469852487468907 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, microvascular complication of diabetes) -> microvascular complication of diabetes (1360ms) What is neuropathy? common side effect of zinc-based denture cream use -5.469852487468907 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, common side effect of zinc-based denture cream use) -> common side effect of zinc-based denture cream use (1360ms) What is neuropathy? complication of patient -5.474691035961992 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, complication of patient) -> complication of patient (1360ms) What is neuropathy? toxic side effect -5.501859390659772 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, toxic side effect) -> toxic side effect (1396ms) What is neuropathy? degenerative nerve disorder -5.505625684056914 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, degenerative nerve disorder) -> degenerative nerve disorder (1396ms) What is neuropathy? degenerative nerve condition -5.505625684056914 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, degenerative nerve condition) -> degenerative nerve condition (1396ms) What is neuropathy? frequently diagnosed complication -5.505625684056914 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, frequently diagnosed complication) -> frequently diagnosed complication (1396ms) What is neuropathy? euro degenerative condition -5.505625684056914 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, euro degenerative condition) -> euro degenerative condition (1396ms) What is neuropathy? commonly occurring disorder -5.512480294600864 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, commonly occurring disorder) -> commonly occurring disorder (1396ms) What is neuropathy? frequent and severe complication of diabetes -5.51474644290405 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, frequent and severe complication of diabetes) -> frequent and severe complication of diabetes (1463ms) What is neuropathy? common side effect of platin chemotherapy drug -5.51474644290405 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, common side effect of platin chemotherapy drug) -> common side effect of platin chemotherapy drug (1436ms) What is neuropathy? long-term secondary complication -5.51474644290405 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, long-term secondary complication) -> long-term secondary complication (1411ms) What is neuropathy? common side effect of cancer -5.51474644290405 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, common side effect of cancer) -> common side effect of cancer (1411ms) What is neuropathy? non-local nerve cause -5.51474644290405 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, non-local nerve cause) -> non-local nerve cause (1436ms) What is neuropathy? common manifestation of toxic injury -5.51474644290405 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, common manifestation of toxic injury) -> common manifestation of toxic injury (1411ms) What is neuropathy? frequent clinical manifestation of SVSV -5.51474644290405 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, frequent clinical manifestation of SVSV) -> frequent clinical manifestation of SVSV (1463ms) What is neuropathy? abnormality of the nervous waverly bedding burlington coat system -5.51474644290405 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, abnormality of the nervous waverly bedding burlington coat system) -> abnormality of the nervous waverly bedding burlington coat system (1463ms) What is neuropathy? medical term describing disorder of the peripheral nervous system -5.51474644290405 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, medical term describing disorder of the peripheral nervous system) -> medical term describing disorder of the peripheral nervous system (1411ms) What is neuropathy? medical term describing disorder of the nerve of the peripheral nervous technique -5.51474644290405 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, medical term describing disorder of the nerve of the peripheral nervous technique) -> medical term describing disorder of the nerve of the peripheral nervous technique (1463ms) What is neuropathy? late-onset diabetic complication -5.51474644290405 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, late-onset diabetic complication) -> late-onset diabetic complication (1463ms) What is neuropathy? side effect of tarceva -5.51474644290405 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, side effect of tarceva) -> side effect of tarceva (1463ms) What is neuropathy? common and serious complication of the disease -5.51474644290405 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, common and serious complication of the disease) -> common and serious complication of the disease (1436ms) What is neuropathy? case of impaired mitochondrial function -5.51474644290405 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, case of impaired mitochondrial function) -> case of impaired mitochondrial function (1436ms) What is neuropathy? very common symptom of diabetes -5.51474644290405 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, very common symptom of diabetes) -> very common symptom of diabetes (1411ms) What is neuropathy? extremely common complication of diabetes -5.51474644290405 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, extremely common complication of diabetes) -> extremely common complication of diabetes (1411ms) What is neuropathy? potential side-effect -5.51474644290405 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, potential side-effect) -> potential side-effect (1436ms) What is neuropathy? common form of diabetic nerve damage -5.51474644290405 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, common form of diabetic nerve damage) -> common form of diabetic nerve damage (1640ms) What is neuropathy? slammer of the anxiety disorder -5.51474644290405 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, slammer of the anxiety disorder) -> slammer of the anxiety disorder (1436ms) What is neuropathy? serious, sometimes life-threatening complication -5.52023013146178 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, serious, sometimes life-threatening complication) -> serious, sometimes life-threatening complication (1641ms) What is neuropathy? symptom of HIV infection -5.52502835841355 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, symptom of HIV infection) -> symptom of HIV infection (1641ms) What is neuropathy? kind of pain -5.527510199581071 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, kind of pain) -> kind of pain (1641ms) What is neuropathy? painful complication of diabetes -5.52845566399195 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, painful complication of diabetes) -> painful complication of diabetes (1641ms) What is neuropathy? chebucto site potential long-term effect -5.54216488507985 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, chebucto site potential long-term effect) -> chebucto site potential long-term effect (1641ms) What is neuropathy? health condition -5.560716579825307 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, health condition) -> health condition (1690ms) What is neuropathy? vascular complication -5.574853760154293 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, vascular complication) -> vascular complication (1690ms) What is neuropathy? chronic disease -5.580408335377513 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, chronic disease) -> chronic disease (1690ms) What is neuropathy? nerve disease -5.615513314471654 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, nerve disease) -> nerve disease (1690ms) What is neuropathy? systemic disease -5.698188260732807 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, systemic disease) -> systemic disease (1690ms) What is neuropathy? medical issue -5.701286293902988 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, medical issue) -> medical issue (1690ms) What is neuropathy? broad term -5.728649700754586 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, broad term) -> broad term (1705ms) What is neuropathy? clinical sign -5.7625884381922585 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, clinical sign) -> clinical sign (1705ms) What is neuropathy? underlying cause -5.767411212768982 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, underlying cause) -> underlying cause (1705ms) What is neuropathy? secondary disease -5.794188738370306 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, secondary disease) -> secondary disease (1705ms) What is neuropathy? chronic condition -5.795623212858455 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, chronic condition) -> chronic condition (1705ms) What is neuropathy? autoimmune disease -5.797692569257775 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, autoimmune disease) -> autoimmune disease (1705ms) What is neuropathy? distressing symptom -5.799725896857993 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, distressing symptom) -> distressing symptom (1725ms) What is neuropathy? hereditary disease -5.804275201944275 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, hereditary disease) -> hereditary disease (1725ms) What is neuropathy? temporary condition -5.806699253815593 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, temporary condition) -> temporary condition (1725ms) What is neuropathy? neuroligical disorder -5.827021403922757 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, neuroligical disorder) -> neuroligical disorder (1725ms) What is neuropathy? common symptom -5.845874948537176 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, common symptom) -> common symptom (1725ms) What is neuropathy? damaging complication -5.871915359357899 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, damaging complication) -> damaging complication (1725ms) What is neuropathy? central disorder -5.8754916778626 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, central disorder) -> central disorder (1752ms) What is neuropathy? neuropsychiatric disease -5.878602783830399 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, neuropsychiatric disease) -> neuropsychiatric disease (1751ms) What is neuropathy? weird disorder -5.882197274867399 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, weird disorder) -> weird disorder (1751ms) What is neuropathy? categorical variable -5.887705443715245 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, categorical variable) -> categorical variable (1751ms) What is neuropathy? definite possibility -5.888425921114323 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, definite possibility) -> definite possibility (1752ms) What is neuropathy? vague symptom -5.888702160765064 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, vague symptom) -> vague symptom (1752ms) What is neuropathy? common illness -5.889772173439801 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, common illness) -> common illness (1762ms) What is neuropathy? debilitating condition -5.891448759227195 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, debilitating condition) -> debilitating condition (1762ms) What is neuropathy? complex disease -5.891632736773646 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, complex disease) -> complex disease (1762ms) What is neuropathy? painful condition -5.894288808722465 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, painful condition) -> painful condition (1762ms) What is neuropathy? inflammatory disease -5.897767033549448 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, inflammatory disease) -> inflammatory disease (1762ms) What is neuropathy? medical complication -5.898999430616499 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, medical complication) -> medical complication (1762ms) What is neuropathy? degenerative condition -5.900599267982518 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, degenerative condition) -> degenerative condition (1779ms) What is neuropathy? diabetic symptom -5.900704722294219 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, diabetic symptom) -> diabetic symptom (1778ms) What is neuropathy? skin disease -5.901938940751237 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, skin disease) -> skin disease (1778ms) What is neuropathy? hepatic complication -5.903552023029761 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, hepatic complication) -> hepatic complication (1779ms) What is neuropathy? vitamin b12 deficiency symptom -5.907303903684787 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, vitamin b12 deficiency symptom) -> vitamin b12 deficiency symptom (1778ms) What is neuropathy? neurological sign -5.910623747302569 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, neurological sign) -> neurological sign (1779ms) What is neuropathy? Nature's Innovation -6.132404232032106 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> $x: ($x, drug, neuropathy) -> (Nature's Innovation, Drugs manufactured, Naturasil Neuropathy Rub 1/6 liquid) -> Nature's Innovation (1791ms) What is neuropathy? Ionx Holdings -6.151740240788034 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> $x: ($x, drug, neuropathy) -> (Ionx Holdings, Drugs manufactured, Neuroveen Neuropathy Symptom Relief 10/10/10/10/10/10/10/10/10/10/10/10/10/10/10/10 liquid) -> Ionx Holdings (1791ms) What is neuropathy? Wise Consumer Products -6.4541846041590665 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> $x: ($x, drug, neuropathy) -> (Wise Consumer Products, Drugs manufactured, Frankincense and Myrrh Neuropathy 3/2/3 oil) -> Wise Consumer Products (1791ms) What is neuropathy? Neurological disorder -6.682568405691354 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> $x: ($x, include cause of death, neuropathy) -> (Neurological disorder, Includes causes of death, Neuropathy) -> Neurological disorder (1791ms) What is neuropathy? diabetes -7.335079859457252 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, diabetes) -> diabetes (1791ms) What is neuropathy? disease -7.48844079368634 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, disease) -> disease (1806ms) What is neuropathy? nerve damage -7.8652566825694965 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> $x: (neuropathy, be a by, $x) -> (Neuropathy, is a painful condition caused by, nerve damage) -> nerve damage (1806ms) What is neuropathy? disability -7.933263746176859 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, disability) -> disability (1806ms) What is neuropathy? factor -7.975256001904018 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, factor) -> factor (1806ms) What is neuropathy? indication -8.001138173878354 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, indication) -> indication (1806ms) What is neuropathy? decrease -8.066805336046992 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, decrease) -> decrease (1819ms) What is neuropathy? inflammation -8.130694446750013 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (Neuropathy, Instance Of, inflammation) -> inflammation (1819ms) What is neuropathy? case -8.140481056952913 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> (neuropathy, Instance Of, case) -> case (1819ms) What is neuropathy? diabetic patients -8.22952724319822 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> $x: (neuropathy, be a by, $x) -> (?neuropathy, is a common problem faced by, diabetic patients) -> diabetic patients (1819ms) What is neuropathy? damaged nerves -8.404518914817324 What is neuropathy? -> $x: (neuropathy, instance of, $x) -> $x: (neuropathy, be a by, $x) -> (Neuropathy, is a disorder caused by, damaged nerves) -> damaged nerves (1819ms) What is neuropathy? old age -11.078562099831148 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (old age, are common known causes of, neuropathy) -> old age (2023ms) What is neuropathy? Gold chloride -11.3685486665964 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (Gold chloride, is known to cause, Peripheral Neuropathy) -> Gold chloride (2023ms) What is neuropathy? Auditory neuropathy spectrum disorder -11.393929234488612 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Auditory neuropathy spectrum disorder, Also known as, Auditory Neuropathy Spectrum Disorder) -> Auditory neuropathy spectrum disorder (3482ms) What is neuropathy? Tricyclic antidepressants -11.447480423098074 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (Tricyclic antidepressants, are known to help, some neuropathies) -> Tricyclic antidepressants (2023ms) What is neuropathy? Peripheral Motor Neuropathy -11.468354626681242 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Peripheral Motor Neuropathy, Also known as, Peripheral motor neuropathy) -> Peripheral Motor Neuropathy (3481ms) What is neuropathy? Nerve compression syndrome -11.577803732846874 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Nerve compression syndrome, Also known as, Entrapment neuropathy) -> Nerve compression syndrome (3482ms) What is neuropathy? Familial amyloid neuropathy -11.577803732846874 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Familial amyloid neuropathy, Also known as, familial amyloidotic neuropathies) -> Familial amyloid neuropathy (3482ms) What is neuropathy? glycyl-tRNA synthetase -11.700021901398499 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (glycyl-tRNA synthetase, Also known as, Charcot-Marie-Tooth neuropathy 2D) -> glycyl-tRNA synthetase (3511ms) What is neuropathy? Anti-MAG peripheral neuropathy -11.700021901398499 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Anti-MAG peripheral neuropathy, Also known as, Anti-MAG Peripheral Neuropathy) -> Anti-MAG peripheral neuropathy (3496ms) What is neuropathy? Hereditary sensory and autonomic neuropathy -11.700021901398499 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Hereditary sensory and autonomic neuropathy, Also known as, Hereditary sensory neuropathy) -> Hereditary sensory and autonomic neuropathy (3496ms) What is neuropathy? Charcot?Marie?Tooth disease -11.700021901398499 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Charcot?Marie?Tooth disease, Also known as, Charcot-Marie-Tooth neuropathy) -> Charcot?Marie?Tooth disease (3512ms) What is neuropathy? Wartenberg's migratory sensory neuropathy -11.700021901398499 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Wartenberg's migratory sensory neuropathy, Also known as, Wartenbergs migratory sensory neuropathy) -> Wartenberg's migratory sensory neuropathy (3511ms) What is neuropathy? inhibitor of kappa light polypeptide gene enhancer in B-cells, kinase complex-associated protein -11.700021901398499 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (inhibitor of kappa light polypeptide gene enhancer in B-cells, kinase complex-associated protein, Also known as, dysautonomia (Riley-Day syndrome, hereditary sensory autonomic neuropathy type III)) -> inhibitor of kappa light polypeptide gene enhancer in B-cells, kinase complex-associated protein (3511ms) What is neuropathy? Cerebral dysgenesis?neuropathy?ichthyosis?keratoderma syndrome -11.700021901398499 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Cerebral dysgenesis?neuropathy?ichthyosis?keratoderma syndrome, Also known as, Cerebral dysgenesis ? neuropathy ? ichthyosis ? keratoderma syndrome) -> Cerebral dysgenesis?neuropathy?ichthyosis?keratoderma syndrome (3511ms) What is neuropathy? Dejerine?Sottas disease -11.700021901398499 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Dejerine?Sottas disease, Also known as, Dejerine-Sottas neuropathy) -> Dejerine?Sottas disease (3496ms) What is neuropathy? Lenalidomide -11.754146175224662 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (Lenalidomide, is known as, peripheral neuropathy) -> Lenalidomide (2091ms) What is neuropathy? Thalidomide -11.754146175224662 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (Thalidomide, is known as, peripheral neuropathy) -> Thalidomide (2023ms) What is neuropathy? high blood sugar levels -11.785096726673721 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (high blood sugar levels, is known as, diabetic neuropathy) -> high blood sugar levels (2091ms) What is neuropathy? Peripheral Neuropathy -11.83376703533993 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, is, Peripheral Neuropathy) -> Peripheral Neuropathy (5338ms) What is neuropathy? Distal axonopathy -11.90323240851269 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Distal axonopathy, Also known as, dying-back neuropathy) -> Distal axonopathy (3512ms) What is neuropathy? Enteric neuropathy -11.90323240851269 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Enteric neuropathy, Also known as, Enteric Neuropathy) -> Enteric neuropathy (3526ms) What is neuropathy? Autonomic neuropathy -11.90323240851269 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Autonomic neuropathy, Also known as, Visceral neuropathy) -> Autonomic neuropathy (3526ms) What is neuropathy? Familial dysautonomia -11.90323240851269 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Familial dysautonomia, Also known as, Hereditary sensory neuropathy type iii) -> Familial dysautonomia (3539ms) What is neuropathy? Auditory neuropathy -11.90323240851269 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Auditory neuropathy, Also known as, Auditory Neuropathy Spectrum Disorder) -> Auditory neuropathy (3526ms) What is neuropathy? Diabetic neuropathy -11.90323240851269 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Diabetic neuropathy, Also known as, Diabetic neuropathies) -> Diabetic neuropathy (3526ms) What is neuropathy? Alcoholic polyneuropathy -11.90323240851269 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Alcoholic polyneuropathy, Also known as, Alcoholic Neuropathy) -> Alcoholic polyneuropathy (3526ms) What is neuropathy? Two inherited disorders -11.910573327403878 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (Two inherited disorders, are known to cause, neuropathy) -> Two inherited disorders (2091ms) What is neuropathy? a term -11.986790817149197 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, a term) -> a term (5337ms) What is neuropathy? peripheral nerves -12.071167055432506 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (peripheral nerves, is known as, Peripheral Neuropathy) -> peripheral nerves (2091ms) What is neuropathy? serine palmitoyltransferase, long chain base subunit 1 -12.092579362179235 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (serine palmitoyltransferase, long chain base subunit 1, Also known as, hereditary sensory neuropathy, type 1) -> serine palmitoyltransferase, long chain base subunit 1 (3539ms) What is neuropathy? solute carrier family 12 (potassium/chloride transporters), member 6 -12.092579362179235 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (solute carrier family 12 (potassium/chloride transporters), member 6, Also known as, agenesis of corpus callosum and peripheral neuropathy (Andermann syndrome)) -> solute carrier family 12 (potassium/chloride transporters), member 6 (3539ms) What is neuropathy? gap junction protein, beta 1, 32kDa -12.092579362179235 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (gap junction protein, beta 1, 32kDa, Also known as, gap junction protein, beta 1, 32kDa (connexin 32, Charcot-Marie-Tooth neuropathy, X-linked)) -> gap junction protein, beta 1, 32kDa (3552ms) What is neuropathy? CTD (carboxy-terminal domain, RNA polymerase II, polypeptide A) phosphatase, subunit 1 -12.092579362179235 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (CTD (carboxy-terminal domain, RNA polymerase II, polypeptide A) phosphatase, subunit 1, Also known as, Congenital cataract, facial dysmorphism, and neuropathy syndrome) -> CTD (carboxy-terminal domain, RNA polymerase II, polypeptide A) phosphatase, subunit 1 (3539ms) What is neuropathy? patatin-like phospholipase domain containing 6 -12.092579362179235 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (patatin-like phospholipase domain containing 6, Also known as, neuropathy target esterase) -> patatin-like phospholipase domain containing 6 (3552ms) What is neuropathy? heat shock 22kDa protein 8 -12.092579362179235 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (heat shock 22kDa protein 8, Also known as, hereditary motor neuropathy, distal) -> heat shock 22kDa protein 8 (3552ms) What is neuropathy? kinesin family member 1B -12.092579362179235 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (kinesin family member 1B, Also known as, Charcot-Marie-Tooth neuropathy 2A (hereditary motor sensory neuropathy II)) -> kinesin family member 1B (3552ms) What is neuropathy? SET binding factor 2 -12.092579362179235 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (SET binding factor 2, Also known as, Charcot-Marie-Tooth neuropathy 4B2 (autosomal recessive, with myelin outfolding)) -> SET binding factor 2 (3539ms) What is neuropathy? lower back pain -12.10851681984057 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (lower back pain, is, neuropathy) -> lower back pain (5337ms) What is neuropathy? Sciatica pain -12.112194699229963 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (Sciatica pain, is also known as, radiating pain or neuropathy) -> Sciatica pain (2091ms) What is neuropathy? 16 times -12.212879520902813 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, was, 16 times) -> 16 times (5337ms) What is neuropathy? alpha lipoic acid -12.321577446761129 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (alpha lipoic acid, is beneficial for, neuropathy) -> alpha lipoic acid (5338ms) What is neuropathy? African Americans -12.343919594815212 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (African Americans, were much more likely to have, neuropathy) -> African Americans (5337ms) What is neuropathy? GLA -12.358844759248505 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, is, GLA) -> GLA (5337ms) What is neuropathy? nerve cells -12.57143926004416 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (nerve cells, is called, neuropathy) -> nerve cells (5357ms) What is neuropathy? older age -12.579451465303613 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, were, older age) -> older age (5357ms) What is neuropathy? Unspecified idiopathic peripheral neuropathy -12.594587886004762 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, include, $x) -> (Hereditary and idiopathic peripheral neuropathy, Includes classifications, Unspecified idiopathic peripheral neuropathy) -> Unspecified idiopathic peripheral neuropathy (8001ms) What is neuropathy? Chronic inflammatory demyelinating polyneuropathy -12.594587886004762 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, include, $x) -> (Other inflammatory and toxic neuropathies, Includes classifications, Chronic inflammatory demyelinating polyneuropathy) -> Chronic inflammatory demyelinating polyneuropathy (8001ms) What is neuropathy? a group -12.604624557544959 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathies, are, a group) -> a group (5357ms) What is neuropathy? DCA -12.618506255520233 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (DCA, may be limited by, neuropathy) -> DCA (5357ms) What is neuropathy? Steven NEUROPATHY -12.63117397058698 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (Steven NEUROPATHY, was told, NEUROPATHY) -> Steven NEUROPATHY (5357ms) What is neuropathy? Diabetic Peripheral Neuropathy -12.634703282592223 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (Diabetic Peripheral Neuropathy, is, Neuropathy) -> Diabetic Peripheral Neuropathy (5357ms) What is neuropathy? a drug -12.635963702292408 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, is, a drug) -> a drug (5357ms) What is neuropathy? M.D. -12.642082227949363 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (M.D., is, Neuropathy) -> M.D. (5357ms) What is neuropathy? Hereditary -12.646797765703592 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (Hereditary, are Hereditary, Neuropathies) -> Hereditary (5379ms) What is neuropathy? past radiation treatment -12.688330070668526 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (past radiation treatment, is, neuropathy) -> past radiation treatment (5380ms) What is neuropathy? a problem -12.689964326016389 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, a problem) -> a problem (5379ms) What is neuropathy? certain prescription drugs -12.712660186929867 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, are, certain prescription drugs) -> certain prescription drugs (5379ms) What is neuropathy? alcohol abuse -12.755222061764256 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (alcohol abuse, is a frequent cause of, neuropathy) -> alcohol abuse (5379ms) What is neuropathy? a condition -12.756189153051098 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, a condition) -> a condition (5379ms) What is neuropathy? herpes zoster infection -12.763620200816181 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, are, herpes zoster infection) -> herpes zoster infection (5379ms) What is neuropathy? there diagnostic features -12.776322451045539 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, Are, there diagnostic features) -> there diagnostic features (5379ms) What is neuropathy? Idiopathic progressive polyneuropathy -12.778462384363024 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, include, $x) -> (Hereditary and idiopathic peripheral neuropathy, Includes classifications, Idiopathic progressive polyneuropathy) -> Idiopathic progressive polyneuropathy (8116ms) What is neuropathy? Carotid sinus syndrome -12.778462384363024 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, include, $x) -> (Idiopathic peripheral autonomic neuropathy, Includes classifications, Carotid sinus syndrome) -> Carotid sinus syndrome (8001ms) What is neuropathy? Hereditary sensory neuropathy -12.778462384363024 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, include, $x) -> (Hereditary and idiopathic peripheral neuropathy, Includes classifications, Hereditary sensory neuropathy) -> Hereditary sensory neuropathy (8001ms) What is neuropathy? Critical illness polyneuropathy -12.778462384363024 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, include, $x) -> (Other inflammatory and toxic neuropathies, Includes classifications, Critical illness polyneuropathy) -> Critical illness polyneuropathy (8116ms) What is neuropathy? Hereditary peripheral neuropathy -12.778462384363024 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, include, $x) -> (Hereditary and idiopathic peripheral neuropathy, Includes classifications, Hereditary peripheral neuropathy) -> Hereditary peripheral neuropathy (8001ms) What is neuropathy? Carpal tunnel syndrome -12.778462384363024 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, include, $x) -> (Neuropathy, Includes Diseases, Carpal tunnel syndrome) -> Carpal tunnel syndrome (8001ms) What is neuropathy? an awful side-effect -12.783674784388188 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, an awful side-effect) -> an awful side-effect (6047ms) What is neuropathy? poor glycemic control -12.797543188183333 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, are, poor glycemic control) -> poor glycemic control (6047ms) What is neuropathy? graft dysfunction and anemia -12.798357113160376 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, are, graft dysfunction and anemia) -> graft dysfunction and anemia (6047ms) What is neuropathy? Clinical Symposia -12.81523610380984 What is neuropathy? -> what be [ neuropathy ] ? -> what be the expansion of neuropathy ? -> $x: (neuropathy, expansion, $x) -> $x: ($x, edition, neuropathy) -> (Clinical Symposia, Editions, Clinical Symposia: Compression Neuropathies (Netter Clinical Symposia)) -> Clinical Symposia (6280ms) What is neuropathy? Churchill Livingstone -12.81523610380984 What is neuropathy? -> what be [ neuropathy ] ? -> what be the expansion of neuropathy ? -> $x: (neuropathy, expansion, $x) -> $x: ($x, edition, neuropathy) -> (Churchill Livingstone, Book editions published, Treatment of Diabetic Neuropathy: A New Approach) -> Churchill Livingstone (6280ms) What is neuropathy? Alzheimer?s disease -12.819508098326118 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, is, Alzheimer?s disease) -> Alzheimer?s disease (6047ms) What is neuropathy? the Semmes-Weinstein monofilament -12.83666208545656 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, is, the Semmes-Weinstein monofilament) -> the Semmes-Weinstein monofilament (6047ms) What is neuropathy? a disease or abnormality -12.841682826539353 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, a disease or abnormality) -> a disease or abnormality (6047ms) What is neuropathy? a deterioration or loss -12.841682826539353 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, a deterioration or loss) -> a deterioration or loss (6047ms) What is neuropathy? a coincidence -12.842465192519892 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (NEUROPATHY, was actually, a coincidence) -> a coincidence (6163ms) What is neuropathy? a very broad diagnosis -12.876593936983612 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, a very broad diagnosis) -> a very broad diagnosis (6163ms) What is neuropathy? a very common reason people -12.888863300115295 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, is, a very common reason people) -> a very common reason people (6163ms) What is neuropathy? Treatment of Nerve Injury and Entrapment Neuropathy -12.899511915557378 What is neuropathy? -> what be [ neuropathy ] ? -> what be the expansion of neuropathy ? -> $x: (neuropathy, expansion, $x) -> $x: ($x, edition, neuropathy) -> (Treatment of Nerve Injury and Entrapment Neuropathy, Editions, Treatment of Nerve Injury and Entrapment Neuropathy) -> Treatment of Nerve Injury and Entrapment Neuropathy (6280ms) What is neuropathy? Compression Neuropathies, Including Carpal Tunnel Syndrome -12.899511915557378 What is neuropathy? -> what be [ neuropathy ] ? -> what be the expansion of neuropathy ? -> $x: (neuropathy, expansion, $x) -> $x: ($x, edition, neuropathy) -> (Compression Neuropathies, Including Carpal Tunnel Syndrome, Editions, Compression Neuropathies, Including Carpal Tunnel Syndrome (Clinical Symposia, Vol 49, No 2)) -> Compression Neuropathies, Including Carpal Tunnel Syndrome (6347ms) What is neuropathy? Treatment of Diabetic Neuropathy -12.899511915557378 What is neuropathy? -> what be [ neuropathy ] ? -> what be the expansion of neuropathy ? -> $x: (neuropathy, expansion, $x) -> $x: ($x, edition, neuropathy) -> (Treatment of Diabetic Neuropathy, Editions, Treatment of Diabetic Neuropathy: A New Approach) -> Treatment of Diabetic Neuropathy (6280ms) What is neuropathy? Treatment of Diabetic Neuropathy: A New Approach -12.899511915557378 What is neuropathy? -> what be [ neuropathy ] ? -> what be the expansion of neuropathy ? -> $x: (neuropathy, expansion, $x) -> $x: (neuropathy, edition, $x) -> (Treatment of Diabetic Neuropathy, Editions, Treatment of Diabetic Neuropathy: A New Approach) -> Treatment of Diabetic Neuropathy: A New Approach (6280ms) What is neuropathy? Neuropathies (Handbook of Clinical Neurology Revised Series) -12.899511915557378 What is neuropathy? -> what be [ neuropathy ] ? -> what be the expansion of neuropathy ? -> $x: (neuropathy, expansion, $x) -> $x: ($x, edition, neuropathy) -> (Neuropathies (Handbook of Clinical Neurology Revised Series), Edition Of, Neuropathies) -> Neuropathies (Handbook of Clinical Neurology Revised Series) (6280ms) What is neuropathy? Guillain-Barr? syndrome -12.900680552914649 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, include, $x) -> (Inflammatory and toxic neuropathy, Includes classifications, Guillain-Barr? syndrome) -> Guillain-Barr? syndrome (8152ms) What is neuropathy? Polyneuropathy in other diseases classified elsewhere -12.900680552914649 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, include, $x) -> (Inflammatory and toxic neuropathy, Includes classifications, Polyneuropathy in other diseases classified elsewhere) -> Polyneuropathy in other diseases classified elsewhere (8152ms) What is neuropathy? Polyneuropathy in diabetes -12.900680552914649 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, include, $x) -> (Inflammatory and toxic neuropathy, Includes Diseases, Polyneuropathy in diabetes) -> Polyneuropathy in diabetes (8196ms) What is neuropathy? Polyneuropathy due to drugs -12.900680552914649 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, include, $x) -> (Inflammatory and toxic neuropathy, Includes classifications, Polyneuropathy due to drugs) -> Polyneuropathy due to drugs (8196ms) What is neuropathy? Unspecified inflammatory and toxic neuropathies -12.900680552914649 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, include, $x) -> (Inflammatory and toxic neuropathy, Includes classifications, Unspecified inflammatory and toxic neuropathies) -> Unspecified inflammatory and toxic neuropathies (8196ms) What is neuropathy? Polyneuropathy in malignant disease -12.900680552914649 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, include, $x) -> (Inflammatory and toxic neuropathy, Includes classifications, Polyneuropathy in malignant disease) -> Polyneuropathy in malignant disease (8116ms) What is neuropathy? Idiopathic peripheral autonomic neuropathy, unspecified -12.900680552914649 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, include, $x) -> (Idiopathic peripheral autonomic neuropathy, Includes classifications, Idiopathic peripheral autonomic neuropathy, unspecified) -> Idiopathic peripheral autonomic neuropathy, unspecified (8152ms) What is neuropathy? Polyneuropathy due to other toxic agents -12.900680552914649 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, include, $x) -> (Inflammatory and toxic neuropathy, Includes Diseases, Polyneuropathy due to other toxic agents) -> Polyneuropathy due to other toxic agents (8152ms) What is neuropathy? Polyneuropathy in collagen vascular disease -12.900680552914649 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, include, $x) -> (Inflammatory and toxic neuropathy, Includes Diseases, Polyneuropathy in collagen vascular disease) -> Polyneuropathy in collagen vascular disease (8196ms) What is neuropathy? Old mitochondria -12.917555324842201 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (Old mitochondria, might be responsible for, neuropathy) -> Old mitochondria (6347ms) What is neuropathy? the NeuropathyDR logo -12.927375776993491 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (the NeuropathyDR logo, are specialists in, neuropathy) -> the NeuropathyDR logo (6346ms) What is neuropathy? uncontrolled blood glucose levels -12.931870998901692 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, is, uncontrolled blood glucose levels) -> uncontrolled blood glucose levels (6347ms) What is neuropathy? uremia , atherosclerosis , liver failure -12.94279935571202 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, are, uremia , atherosclerosis , liver failure) -> uremia , atherosclerosis , liver failure (6347ms) What is neuropathy? an under-recognized national epidemic -12.952699484246482 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, is, an under-recognized national epidemic) -> an under-recognized national epidemic (6347ms) What is neuropathy? anterior optic type -12.95546555851349 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (anterior optic type, were called, neuropathy) -> anterior optic type (6347ms) What is neuropathy? men -12.958888894458749 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (men, is also associated with, neuropathy) -> men (6347ms) What is neuropathy? no fun -12.97718379462723 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (no fun, is certainly more temporary than, neuropathy) -> no fun (6392ms) What is neuropathy? Early postoperative period -12.993883935271715 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (Early postoperative period, is characterized by, neuropathies) -> Early postoperative period (6392ms) What is neuropathy? VISUAL IMPROVEMENTS Diplopia -13.045366295796597 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (VISUAL IMPROVEMENTS Diplopia, is caused by, neuropathy) -> VISUAL IMPROVEMENTS Diplopia (6392ms) What is neuropathy? nerve disease or damage -13.04946931861409 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, nerve disease or damage) -> nerve disease or damage (6392ms) What is neuropathy? nerve damage or disease -13.062732272737424 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, nerve damage or disease) -> nerve damage or disease (6392ms) What is neuropathy? Blood sugar control -13.075637807052415 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (Blood sugar control, is the only treatment for, neuropathy) -> Blood sugar control (6392ms) What is neuropathy? nerve compression -13.086488842417626 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, is, nerve compression) -> nerve compression (6392ms) What is neuropathy? Acrodystrophic neuropathy -13.102722422671569 What is neuropathy? -> what be [ neuropathy ] ? -> what be the expansion of neuropathy ? -> $x: (neuropathy, expansion, $x) -> $x: (neuropathy, edition of, $x) -> (Acrodystrophic neuropathy: a critical review of the syndrome of trophic ulcers, sensory neuropathy, and bony erosion, together with an account of 16 cases in South Wales, Edition Of, Acrodystrophic neuropathy) -> Acrodystrophic neuropathy (6549ms) What is neuropathy? Dr. Vinik -13.145056155252995 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (Dr. Vinik, is a leading expert in, neuropathy) -> Dr. Vinik (6549ms) What is neuropathy? a minor mystery -13.164240175070038 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, is, a minor mystery) -> a minor mystery (6549ms) What is neuropathy? B vitamins and magnesium -13.177504438295603 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (B vitamins and magnesium, are compromised with, neuropathy) -> B vitamins and magnesium (6549ms) What is neuropathy? a systemic disease -13.187484467338022 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, is, a systemic disease) -> a systemic disease (6549ms) What is neuropathy? gastrointestinal tract -13.19913622572158 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (gastrointestinal tract, is called, neuropathy) -> gastrointestinal tract (6549ms) What is neuropathy? a limiting factor -13.208640689050855 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, was, a limiting factor) -> a limiting factor (6549ms) What is neuropathy? 2.5 times -13.20941294720127 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, was, 2.5 times) -> 2.5 times (7437ms) What is neuropathy? two medications -13.247901902941823 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (NEUROPATHY, was prescribed, two medications) -> two medications (7438ms) What is neuropathy? 17p12 -13.25492588891242 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (17p12, are associated with, neuropathy) -> 17p12 (7438ms) What is neuropathy? a serious problem -13.273743642302973 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, is, a serious problem) -> a serious problem (7438ms) What is neuropathy? a neurological condition -13.275020080497072 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, a neurological condition) -> a neurological condition (7438ms) What is neuropathy? Compression Neuropathies, Including Carpal Tunnel Syndrome (Clinical Symposia, Vol 49, No 2) -13.292069376338114 What is neuropathy? -> what be [ neuropathy ] ? -> what be the expansion of neuropathy ? -> $x: (neuropathy, expansion, $x) -> $x: ($x, edition of, neuropathy) -> (Compression Neuropathies, Including Carpal Tunnel Syndrome (Clinical Symposia, Vol 49, No 2), Edition Of, Compression Neuropathies, Including Carpal Tunnel Syndrome) -> Compression Neuropathies, Including Carpal Tunnel Syndrome (Clinical Symposia, Vol 49, No 2) (7570ms) What is neuropathy? Acrodystrophic neuropathy: a critical review of the syndrome of trophic ulcers, sensory neuropathy, and bony erosion, together with an account of 16 cases in South Wales -13.292069376338114 What is neuropathy? -> what be [ neuropathy ] ? -> what be the expansion of neuropathy ? -> $x: (neuropathy, expansion, $x) -> $x: ($x, edition of, neuropathy) -> (Acrodystrophic neuropathy: a critical review of the syndrome of trophic ulcers, sensory neuropathy, and bony erosion, together with an account of 16 cases in South Wales, Edition Of, Acrodystrophic neuropathy) -> Acrodystrophic neuropathy: a critical review of the syndrome of trophic ulcers, sensory neuropathy, and bony erosion, together with an account of 16 cases in South Wales (7570ms) What is neuropathy? either side -13.32168099661405 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (either side, is a slide in, neuropathy) -> either side (7570ms) What is neuropathy? a functional disturbance -13.330332309805282 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, is, a functional disturbance) -> a functional disturbance (7570ms) What is neuropathy? a progressive disease -13.332492934400479 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, a progressive disease) -> a progressive disease (7570ms) What is neuropathy? The symptom -13.369919235970853 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (The symptom, is known as, neuropathy) -> The symptom (2091ms) What is neuropathy? Excessive zinc -13.371480293732061 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (Excessive zinc, has been linked to, neuropathy) -> Excessive zinc (7570ms) What is neuropathy? Lyme disease -13.3760557229006 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (Lyme disease, Instance Of, neuropathies) -> Lyme disease (7570ms) What is neuropathy? a larger factor -13.388197362799398 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (a larger factor, is, neuropathy) -> a larger factor (8196ms) What is neuropathy? 12 junior high kids -13.399903267009527 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (NEUROPATHY, is like, 12 junior high kids) -> 12 junior high kids (8196ms) What is neuropathy? Improved regulation -13.400574495407842 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (Improved regulation, is the best way to reduce, neuropathy) -> Improved regulation (8230ms) What is neuropathy? the nerve endings -13.416538092693282 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (the nerve endings, is known as, peripheral neuropathy) -> the nerve endings (2144ms) What is neuropathy? a nerve disease -13.442953089372258 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, a nerve disease) -> a nerve disease (8230ms) What is neuropathy? Discomfort -13.446624587073817 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (Discomfort, is Brought on by, neuropathy) -> Discomfort (8230ms) What is neuropathy? a terrible disease -13.463354208236211 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, a terrible disease) -> a terrible disease (8230ms) What is neuropathy? diabetes and alcoholism -13.472236983719359 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, are, diabetes and alcoholism) -> diabetes and alcoholism (8230ms) What is neuropathy? ?Aspartame -13.488040683311812 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (?Aspartame, is a culprit in, small fiber neuropathy) -> ?Aspartame (8230ms) What is neuropathy? Diabetes -13.531941138810932 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (Diabetes, is a frequent cause of, neuropathy) -> Diabetes (8230ms) What is neuropathy? MRI -13.569172257065992 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be on, $x) -> (Optic Nerve Neuropathies Optic neuritis, is best seen on, MRI) -> MRI (8230ms) What is neuropathy? Neuropathies -13.591230266524178 What is neuropathy? -> what be [ neuropathy ] ? -> what be the expansion of neuropathy ? -> $x: (neuropathy, expansion, $x) -> $x: ($x, edition, neuropathy) -> (Neuropathies, Editions, Neuropathies (Handbook of Clinical Neurology Revised Series)) -> Neuropathies (8265ms) What is neuropathy? Saunders -13.591230266524178 What is neuropathy? -> what be [ neuropathy ] ? -> what be the expansion of neuropathy ? -> $x: (neuropathy, expansion, $x) -> $x: ($x, edition, neuropathy) -> (Saunders, Book editions published, Clinical Symposia: Compression Neuropathies (Netter Clinical Symposia)) -> Saunders (8265ms) What is neuropathy? High titers -13.60280717159124 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (High titers, are common in, axonal sensory > motor neuropathies) -> High titers (8265ms) What is neuropathy? The nervous system -13.603103847630226 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (The nervous system, is known as, diabetic neuropathy) -> The nervous system (2144ms) What is neuropathy? 2.This formula -13.606706267634957 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (2.This formula, may also be used for, neuropathy) -> 2.This formula (8265ms) What is neuropathy? cyclohexane -13.608351916532305 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (cyclohexane, has been known to cause, a peripheral neuropathy) -> cyclohexane (2144ms) What is neuropathy? vincristine -13.608937891392333 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (vincristine, is known as, peripheral neuropathy) -> vincristine (2143ms) What is neuropathy? sildenafil use -13.630241318070544 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (optic neuropathy, have been associated with, sildenafil use) -> sildenafil use (8265ms) What is neuropathy? cisplatin -13.634640261487327 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (cisplatin, is known as, peripheral neuropathy) -> cisplatin (2143ms) What is neuropathy? Nerve Damage -13.640711323837598 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be, neuropathy) -> (Nerve Damage, is also called, Neuropathy) -> Nerve Damage (8265ms) What is neuropathy? the effect vincristine -13.659707449001981 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (the effect vincristine, is known as, peripheral neuropathy |) -> the effect vincristine (2143ms) What is neuropathy? foot -13.669124005450747 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (foot, is also known as, Neuropathy) -> foot (2197ms) What is neuropathy? The condition -13.679542570443887 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (The condition, is also known as, pudendal neuropathy) -> The condition (2196ms) What is neuropathy? Vitamin B6 -13.681186872740502 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (neuropathy, have been shown to be deficient in, Vitamin B6) -> Vitamin B6 (8299ms) What is neuropathy? celiac disease -13.689501307013856 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (neuropathy, were found to also have, celiac disease) -> celiac disease (8299ms) What is neuropathy? Intravenous Application -13.691120035530602 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, do, $x) -> (Diabetic Neuropathy, were done via, Intravenous Application) -> Intravenous Application (8299ms) What is neuropathy? a very long time -13.693081139453787 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (neuropathy, has been present for, a very long time) -> a very long time (8299ms) What is neuropathy? damage to the nerves -13.700243681653207 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, damage to the nerves) -> damage to the nerves (8299ms) What is neuropathy? GBS -13.7315345711541 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (GBS, Instance Of, neuropathies) -> GBS (8299ms) What is neuropathy? Infantile Refsum disease -13.75730222383767 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, include, $x) -> (Hereditary and idiopathic peripheral neuropathy, Includes Diseases, Infantile Refsum disease) -> Infantile Refsum disease (8330ms) What is neuropathy? blood flow -13.769122906250068 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (blood flow, are more harmful in, glaucomatous optic neuropathy) -> blood flow (8330ms) What is neuropathy? carpal tunnel syndrome -13.793165140183435 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (carpal tunnel syndrome, Instance Of, neuropathies) -> carpal tunnel syndrome (8330ms) What is neuropathy? a cause -13.803239309753105 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (neuropathy, has been suggested as, a cause) -> a cause (8330ms) What is neuropathy? a result -13.83225395672989 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (Chronic neuropathy, has been reported as, a result) -> a result (8330ms) What is neuropathy? MMN -13.839561659949634 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (MMN, Instance Of, neuropathies) -> MMN (8330ms) What is neuropathy? the drug -13.863115956634466 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (the drug, is known as, peripheral neuropathy) -> the drug (2197ms) What is neuropathy? a disease of the nervous system -13.87048352333021 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, a disease of the nervous system) -> a disease of the nervous system (8370ms) What is neuropathy? CHN -13.889673247059262 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (CHN, Instance Of, neuropathies) -> CHN (8370ms) What is neuropathy? DSN -13.889673247059262 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (DSN, Instance Of, neuropathies) -> DSN (8370ms) What is neuropathy? Multifocal Motor Neuropathy -13.901719153778629 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (Multifocal Motor Neuropathy, Instance Of, neuropathies) -> Multifocal Motor Neuropathy (8370ms) What is neuropathy? a disease of the peripheral nervous system -13.909467753998108 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, a disease of the peripheral nervous system) -> a disease of the peripheral nervous system (8370ms) What is neuropathy? lung cancer -13.914962336993785 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (neuropathy, has survived, lung cancer) -> lung cancer (8370ms) What is neuropathy? Chronic inflammatory demyelinating polyradiculopathy -13.922724154582319 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (Chronic inflammatory demyelinating polyradiculopathy, Instance Of, neuropathy) -> Chronic inflammatory demyelinating polyradiculopathy (8370ms) What is neuropathy? DPN -13.93023181157937 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (DPN, Instance Of, painful neuropathy) -> DPN (8370ms) What is neuropathy? domestic short hair -13.93071611677755 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (distal neuropathy, have been seen in, domestic short hair) -> domestic short hair (8401ms) What is neuropathy? Charcot-Marie-Tooth disease -13.949941306674624 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (Charcot-Marie-Tooth disease, Instance Of, neuropathies) -> Charcot-Marie-Tooth disease (8401ms) What is neuropathy? SFN -13.958842359616979 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (SFN, Instance Of, neuropathy) -> SFN (8401ms) What is neuropathy? the FDA -13.968543641987234 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (diabetic neuropathy, has been approved by, the FDA) -> the FDA (8401ms) What is neuropathy? a cure -13.974539640265839 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, go, $x) -> (NEUROPATHY & SOUL FRAGMENTS Karen, Is there going to be, a cure) -> a cure (8401ms) What is neuropathy? mercury poisoning -13.975971989203872 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (a NEUROPATHY, may have, mercury poisoning) -> mercury poisoning (8401ms) What is neuropathy? Diagnostic Imaging Anybody -13.99518530971292 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Diagnostic Imaging Anybody, know about, Neuropathy) -> Diagnostic Imaging Anybody (3578ms) What is neuropathy? Neurontin -13.996860418959615 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (Neurontin, is in, painful neuropathies) -> Neurontin (8401ms) What is neuropathy? Washington Title -14.003331323963712 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (Washington Title, is best in, ulnar neuropathy) -> Washington Title (8471ms) What is neuropathy? found in insulin resistance -14.005520195681186 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (found in insulin resistance, Instance Of, neuropathy) -> found in insulin resistance (8471ms) What is neuropathy? sensory nerve fibers -14.058477940262339 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (sensory nerve fibers, are impaired in, diabetic neuropathy) -> sensory nerve fibers (8471ms) What is neuropathy? 9784431703266 -14.077549128253473 What is neuropathy? -> what be [ neuropathy ] ? -> what be the expansion of neuropathy ? -> $x: (neuropathy, expansion, $x) -> $x: ($x, edition, neuropathy) -> (9784431703266, Book Editions, Treatment of Nerve Injury and Entrapment Neuropathy) -> 9784431703266 (8471ms) What is neuropathy? 9789999981859 -14.077549128253473 What is neuropathy? -> what be [ neuropathy ] ? -> what be the expansion of neuropathy ? -> $x: (neuropathy, expansion, $x) -> $x: ($x, edition, neuropathy) -> (9789999981859, Book Editions, Compression Neuropathies, Including Carpal Tunnel Syndrome (Clinical Symposia, Vol 49, No 2)) -> 9789999981859 (8471ms) What is neuropathy? 9781933247458 -14.077549128253473 What is neuropathy? -> what be [ neuropathy ] ? -> what be the expansion of neuropathy ? -> $x: (neuropathy, expansion, $x) -> $x: ($x, edition, neuropathy) -> (9781933247458, Book Editions, Clinical Symposia: Compression Neuropathies (Netter Clinical Symposia)) -> 9781933247458 (8597ms) What is neuropathy? 9780444904478 -14.077549128253473 What is neuropathy? -> what be [ neuropathy ] ? -> what be the expansion of neuropathy ? -> $x: (neuropathy, expansion, $x) -> $x: ($x, edition, neuropathy) -> (9780444904478, Book Editions, Neuropathies (Handbook of Clinical Neurology Revised Series)) -> 9780444904478 (8471ms) What is neuropathy? 9780192641434 -14.077549128253473 What is neuropathy? -> what be [ neuropathy ] ? -> what be the expansion of neuropathy ? -> $x: (neuropathy, expansion, $x) -> $x: ($x, edition, neuropathy) -> (9780192641434, Book Editions, Acrodystrophic neuropathy: a critical review of the syndrome of trophic ulcers, sensory neuropathy, and bony erosion, together with an account of 16 cases in South Wales) -> 9780192641434 (8597ms) What is neuropathy? 9780443047749 -14.077549128253473 What is neuropathy? -> what be [ neuropathy ] ? -> what be the expansion of neuropathy ? -> $x: (neuropathy, expansion, $x) -> $x: ($x, edition, neuropathy) -> (9780443047749, Book Editions, Treatment of Diabetic Neuropathy: A New Approach) -> 9780443047749 (8597ms) What is neuropathy? anxiety , depression -14.088228617241652 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (neuropathy, concurrently have, anxiety , depression) -> anxiety , depression (8597ms) What is neuropathy? Congenital Analgesia -14.089882985304655 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (Congenital Analgesia, Instance Of, neuropathies) -> Congenital Analgesia (8597ms) What is neuropathy? Familial Dysautonomia -14.089882985304655 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (Familial Dysautonomia, Instance Of, neuropathies) -> Familial Dysautonomia (8597ms) What is neuropathy? Autonomic Neuropathy -14.099647054309527 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (Autonomic Neuropathy, Instance Of, neuropathy) -> Autonomic Neuropathy (8597ms) What is neuropathy? Diabetic neuropathic pain -14.106598652940583 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (Diabetic neuropathic pain, Instance Of, neuropathy) -> Diabetic neuropathic pain (8597ms) What is neuropathy? complete pain relief -14.108350946674022 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (peripheral neuropathy, have reported, complete pain relief) -> complete pain relief (8707ms) What is neuropathy? subnormal skin temperatures -14.122105888107745 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (chronic neuropathy, tend to have, subnormal skin temperatures) -> subnormal skin temperatures (8707ms) What is neuropathy? routine check-ups -14.123661115733425 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (diabetic neuropathy, should have, routine check-ups) -> routine check-ups (8707ms) What is neuropathy? low plasma levels -14.137416057167147 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (peripheral neuropathy, have, low plasma levels) -> low plasma levels (8707ms) What is neuropathy? an issue -14.139996786844069 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, is, an issue) -> an issue (8707ms) What is neuropathy? a deeper and prickle-like quality -14.143540846549861 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (neuropathy, has, a deeper and prickle-like quality) -> a deeper and prickle-like quality (8707ms) What is neuropathy? Guillain Barre -14.14454100974467 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (Guillain Barre, Instance Of, neuropathy) -> Guillain Barre (8707ms) What is neuropathy? Tunnel Syndrome -14.14454100974467 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (Tunnel Syndrome, Instance Of, neuropathy) -> Tunnel Syndrome (8740ms) What is neuropathy? http://en.wikipedia.org/wiki/Neuropathy%20target%20esterase -14.148441728799034 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be on, $x) -> (neuropathy-target-esterase, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Neuropathy%20target%20esterase) -> http://en.wikipedia.org/wiki/Neuropathy%20target%20esterase (8740ms) What is neuropathy? http://en.wikipedia.org/wiki/Multifocal%20motor%20neuropathy -14.148441728799034 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be on, $x) -> (multifocal_motor_neuropathy, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Multifocal%20motor%20neuropathy) -> http://en.wikipedia.org/wiki/Multifocal%20motor%20neuropathy (8740ms) What is neuropathy? CMT disease -14.15964770893449 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (CMT disease, Instance Of, neuropathies) -> CMT disease (8740ms) What is neuropathy? acute inflammatory demyelinating polyneuropathy -14.15964770893449 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (acute inflammatory demyelinating polyneuropathy, Instance Of, neuropathies) -> acute inflammatory demyelinating polyneuropathy (8740ms) What is neuropathy? chronic inflammatory demyelinating polyradiculoneuropathy -14.15964770893449 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (chronic inflammatory demyelinating polyradiculoneuropathy, Instance Of, neuropathies) -> chronic inflammatory demyelinating polyradiculoneuropathy (8740ms) What is neuropathy? sciatic nerve pain -14.161859240240533 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (sciatic nerve pain, Instance Of, neuropathy) -> sciatic nerve pain (8740ms) What is neuropathy? a few days post surgery -14.1686943785173 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, go, $x) -> (The neuropathy, was completely gone for, a few days post surgery) -> a few days post surgery (9468ms) What is neuropathy? numbness of the hand -14.170979999087669 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (numbness of the hand, Instance Of, neuropathy) -> numbness of the hand (9468ms) What is neuropathy? chronic inflammatory demyelinating polyneuropathy -14.170979999087669 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (chronic inflammatory demyelinating polyneuropathy, Instance Of, neuropathy) -> chronic inflammatory demyelinating polyneuropathy (9468ms) What is neuropathy? http://en.wikipedia.org/wiki/Auditory%20neuropathy -14.187425959466932 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be on, $x) -> (Auditory Neuropathy, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Auditory%20neuropathy) -> http://en.wikipedia.org/wiki/Auditory%20neuropathy (9468ms) What is neuropathy? facial nerve palsy -14.191299318643662 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (facial nerve palsy, Instance Of, neuropathies) -> facial nerve palsy (9469ms) What is neuropathy? numbness and prickling sensations -14.193512737359068 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (neuropathy, have, numbness and prickling sensations) -> numbness and prickling sensations (9468ms) What is neuropathy? btx-a -14.200620597540402 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (btx-a, is helpful in, chronic focal painful neuropathies) -> btx-a (9691ms) What is neuropathy? diabetic neuropathy -14.202225436488378 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (diabetic neuropathy, Instance Of, neuropathies) -> diabetic neuropathy (9691ms) What is neuropathy? either complete or significant resolution -14.205891505081306 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (NEUROPATHY, had, either complete or significant resolution) -> either complete or significant resolution (9691ms) What is neuropathy? chronic entrapment neuropathy -14.211649345626462 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (chronic entrapment neuropathy, Instance Of, neuropathy) -> chronic entrapment neuropathy (9691ms) What is neuropathy? severe sensory neuropathy -14.211649345626462 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (severe sensory neuropathy, Instance Of, neuropathy) -> severe sensory neuropathy (9691ms) What is neuropathy? symptoms?yet -14.213849288095766 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (neuropathy, don?t have, symptoms?yet) -> symptoms?yet (9720ms) What is neuropathy? low back pain -14.215873954522811 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (low back pain, Instance Of, neuropathy) -> low back pain (9720ms) What is neuropathy? http://en.wikipedia.org/wiki/Giant%20axonal%20neuropathy -14.219912818356848 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be on, $x) -> (Giant axonal neuropathy, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Giant%20axonal%20neuropathy) -> http://en.wikipedia.org/wiki/Giant%20axonal%20neuropathy (9720ms) What is neuropathy? acute isolated cranial neuropathy -14.220770104473598 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (acute isolated cranial neuropathy, Instance Of, neuropathy) -> acute isolated cranial neuropathy (9720ms) What is neuropathy? CMT-I -14.228816821492206 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (CMT-I, Instance Of, neuropathy) -> CMT-I (9720ms) What is neuropathy? Obturator neuropathy. -14.228816821492206 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (Obturator neuropathy., Instance Of, neuropathy) -> Obturator neuropathy. (9720ms) What is neuropathy? Page Six Carpal tunnel syndrome -14.228816821492206 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (Page Six Carpal tunnel syndrome, Instance Of, neuropathy) -> Page Six Carpal tunnel syndrome (9751ms) What is neuropathy? LINKAGES Conservative Carpal tunnel syndrome -14.228816821492206 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (LINKAGES Conservative Carpal tunnel syndrome, Instance Of, neuropathy) -> LINKAGES Conservative Carpal tunnel syndrome (9750ms) What is neuropathy? drugs -14.234490044260681 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> (drugs, are known potent causes of, neuropathy) -> drugs (2253ms) What is neuropathy? MS -14.236193274078802 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (MS, Instance Of, neuropathies) -> MS (9751ms) What is neuropathy? progressive peripheral neuropathies -14.241704177463 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (progressive peripheral neuropathies, Instance Of, neuropathies) -> progressive peripheral neuropathies (9751ms) What is neuropathy? chronic inflammatory neuropathies -14.241704177463 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (chronic inflammatory neuropathies, Instance Of, neuropathies) -> chronic inflammatory neuropathies (9751ms) What is neuropathy? MMA and Hcy testing -14.243911994649114 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (diabetic neuropathy, must have, MMA and Hcy testing) -> MMA and Hcy testing (9751ms) What is neuropathy? nerve Harm -14.24491005201947 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be on, $x) -> (Diabetic peripheral neuropathy, is Brought on by, nerve Harm) -> nerve Harm (9751ms) What is neuropathy? abol- ishedreflexes -14.24531403292594 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (abol- ishedreflexes, Instance Of, neuropathies) -> abol- ishedreflexes (9782ms) What is neuropathy? multifocal motor neuropathy with conduction block -14.250824936310135 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (multifocal motor neuropathy with conduction block, Instance Of, neuropathies) -> multifocal motor neuropathy with conduction block (9781ms) What is neuropathy? Pregabalin and gabapentin -14.255380243991096 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (Pregabalin and gabapentin, are effective in, diabetic neuropathy) -> Pregabalin and gabapentin (9781ms) What is neuropathy? ED. -14.262480172583615 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (diabetic neuropathy, will have, ED.) -> ED. (9782ms) What is neuropathy? a new member -14.266954327308937 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (a new member, is mutated in, giant axonal neuropathy) -> a new member (9781ms) What is neuropathy? a multifariousness -14.282857786652215 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (Fringy Neuropathy, has, a multifariousness) -> a multifariousness (9782ms) What is neuropathy? large nerve fibers -14.28360050668405 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (large nerve fibers, are thus normal in, small fiber neuropathy) -> large nerve fibers (9782ms) What is neuropathy? multiple sclerosis -14.29018816124319 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (multiple sclerosis, Instance Of, neuropathies) -> multiple sclerosis (9782ms) What is neuropathy? Pregabalin -14.302761830148096 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (Pregabalin, is registered in, diabetic neuropathy patients) -> Pregabalin (9811ms) What is neuropathy? a paradox -14.303586589181915 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, do, $x) -> (Diabetic somatic neuropathies, do represent, a paradox) -> a paradox (9812ms) What is neuropathy? the Decline list -14.307117703527862 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be on, $x) -> (neuropathy, is on, the Decline list) -> the Decline list (9812ms) What is neuropathy? abnormal fasting glucose metabolism -14.31016224984082 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (neuropathy, had, abnormal fasting glucose metabolism) -> abnormal fasting glucose metabolism (9812ms) What is neuropathy? supportive care -14.310288496551085 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (Neuropathy, has been managed with, supportive care) -> supportive care (9811ms) What is neuropathy? CMT pain -14.312094127870086 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (CMT pain, is used in, many painful neuropathies) -> CMT pain (9812ms) What is neuropathy? Diabetic polyneuropathy -14.31775045657734 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (Diabetic polyneuropathy, Instance Of, systemic neuropathy) -> Diabetic polyneuropathy (9812ms) What is neuropathy? Nerve Support Formula STILL HAVE QUESTIONS -14.318676588292924 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, go, $x) -> (neuropathy, go to, Nerve Support Formula STILL HAVE QUESTIONS) -> Nerve Support Formula STILL HAVE QUESTIONS (9811ms) What is neuropathy? Doctors Diagnose Diabetic Neuropathy -14.320837212888119 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, do, $x) -> (Neuropathy, Do, Doctors Diagnose Diabetic Neuropathy) -> Doctors Diagnose Diabetic Neuropathy (9879ms) What is neuropathy? one of the most common -14.329181800952469 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, one of the most common) -> one of the most common (9879ms) What is neuropathy? large fibre loss -14.330463018369707 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (large fibre loss, was observed in, sensory ataxic neuropathy) -> large fibre loss (9879ms) What is neuropathy? an exam -14.333169802622972 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is diagnosed with, an exam) -> an exam (9879ms) What is neuropathy? worse average color vision -14.339405338120327 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (optic neuropathy, had considerably, worse average color vision) -> worse average color vision (9879ms) What is neuropathy? an average vitamin D level -14.353552531347052 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (neuropathy, had, an average vitamin D level) -> an average vitamin D level (9879ms) What is neuropathy? a less stereotyped presentation -14.358857702455927 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (Ulnar neuropathy, has, a less stereotyped presentation) -> a less stereotyped presentation (9977ms) What is neuropathy? for 10 months -14.368025741809017 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, go, $x) -> (perephial neuropathy, i am now going on, for 10 months) -> for 10 months (9977ms) What is neuropathy? human patients -14.369430470910768 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (Peripheral neuropathy, has been reported in, human patients) -> human patients (9977ms) What is neuropathy? the Ultima Neuro -14.380970112296252 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (neuropathy, have a look at, the Ultima Neuro) -> the Ultima Neuro (9977ms) What is neuropathy? a common complication of diabetes -14.38402765844938 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, a common complication of diabetes) -> a common complication of diabetes (9977ms) What is neuropathy? muscle weakness -14.38707958065896 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (diabetic neuropathy, can have, muscle weakness) -> muscle weakness (9977ms) What is neuropathy? Meralgia paresthetica -14.387133373171256 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (Meralgia paresthetica, Instance Of, neuropathy) -> Meralgia paresthetica (9977ms) What is neuropathy? eye examination -14.387462243455436 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, make, $x) -> (autonomic neuropathy, can be made by, eye examination) -> eye examination (10006ms) What is neuropathy? a complication of diabetes -14.387501624491481 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, a complication of diabetes) -> a complication of diabetes (10006ms) What is neuropathy? a wide variety -14.390429515561182 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (neuropathies, have been seen with, a wide variety) -> a wide variety (10006ms) What is neuropathy? Several B vitamins -14.396107876591898 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (Several B vitamins, are useful in treating, diabetic neuropathy) -> Several B vitamins (10006ms) What is neuropathy? Opiates -14.415839860104507 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (Opiates, are only used in, diabetic neuropathy treatments) -> Opiates (10006ms) What is neuropathy? a variable incidence rate -14.420751541067112 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (?Sensory neuropathies, have, a variable incidence rate) -> a variable incidence rate (10006ms) What is neuropathy? a few different classes -14.421635780170503 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (Diabetic neuropathy, has, a few different classes) -> a few different classes (10006ms) What is neuropathy? carpal tunnel -14.42181108284357 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (carpal tunnel, Instance Of, neuropathies) -> carpal tunnel (10006ms) What is neuropathy? Gabapentin -14.422029217614478 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (Gabapentin, is also recommended in, painful diabetic neuropathy) -> Gabapentin (10046ms) What is neuropathy? Lumbar rediculopathy -14.432027328606399 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (Lumbar rediculopathy, Instance Of, neuropathy) -> Lumbar rediculopathy (10045ms) What is neuropathy? a pathway -14.440815659624134 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (a pathway, thought to be involved in, diabetic neuropathy) -> a pathway (10045ms) What is neuropathy? less severe -14.442080393496457 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, is, less severe) -> less severe (10045ms) What is neuropathy? very common -14.442080393496457 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, is, very common) -> very common (10045ms) What is neuropathy? a scale -14.443468218827423 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be on, $x) -> (an acute demyelinating neuropathy, is graded on, a scale) -> a scale (10046ms) What is neuropathy? very painful -14.446684108448306 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, very painful) -> very painful (10045ms) What is neuropathy? a long-term complication of diabetes -14.447060865789659 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, a long-term complication of diabetes) -> a long-term complication of diabetes (10045ms) What is neuropathy? one knee -14.4539541047739 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (neuropathy, now has arthritis in, one knee) -> one knee (10081ms) What is neuropathy? Methylcobalamin -14.45546526994973 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (neuropathy, have found relief with, Methylcobalamin) -> Methylcobalamin (10080ms) What is neuropathy? HIV -14.458090677711331 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, include, $x) -> (small fiber neuropathies, include, HIV) -> HIV (10080ms) What is neuropathy? extremely painful -14.460724410033283 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, extremely painful) -> extremely painful (10080ms) What is neuropathy? acupuncture -14.46281002227904 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, is, acupuncture) -> acupuncture (10080ms) What is neuropathy? CMT1 -14.466538845723779 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (CMT1, Instance Of, neuropathies) -> CMT1 (10081ms) What is neuropathy? neurodegenerative disease -14.466705038278711 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (neurodegenerative disease, Instance Of, neuropathies) -> neurodegenerative disease (10081ms) What is neuropathy? peripheral neuropathies -14.471922669953196 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (peripheral neuropathies, Instance Of, neuropathies) -> peripheral neuropathies (10081ms) What is neuropathy? a critical endpoint -14.474115633319544 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (Sensory neuropathy, has been selected as, a critical endpoint) -> a critical endpoint (10110ms) What is neuropathy? few symptoms -14.47785544579612 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (peripheral neuropathy, have, few symptoms) -> few symptoms (10110ms) What is neuropathy? more common -14.481560051502434 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, was, more common) -> more common (10110ms) What is neuropathy? a monthly basis -14.485922859032396 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, do, $x) -> (neuropathy, should be done on, a monthly basis) -> a monthly basis (10110ms) What is neuropathy? burning sensation -14.48737654698521 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (burning sensation, Instance Of, neuropathy) -> burning sensation (10110ms) What is neuropathy? muscle pain -14.48737654698521 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (muscle pain, Instance Of, neuropathy) -> muscle pain (10110ms) What is neuropathy? numbness -14.488688549107 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, numbness) -> numbness (10109ms) What is neuropathy? pinched nerve -14.490555344949733 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, instance of, neuropathy) -> (pinched nerve, Instance Of, neuropathies) -> pinched nerve (10110ms) What is neuropathy? normal hearing -14.493571598263092 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, have, $x) -> (auditory neuropathy, may have, normal hearing) -> normal hearing (10137ms) What is neuropathy? a very common problem for people -14.494708258828203 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (neuropathy, is, a very common problem for people) -> a very common problem for people (10137ms) What is neuropathy? Effexor -14.498070249452388 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (Effexor, is also used in treating, diabetic neuropathy) -> Effexor (10137ms) What is neuropathy? marked improvements -14.498648022806037 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (marked improvements, were noted in, both peripheral neuropathy) -> marked improvements (10137ms) What is neuropathy? CIDP -14.501179879316716 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: ($x, be in, neuropathy) -> (CIDP, is uncommon in, the motor neuropathies) -> CIDP (10137ms) What is neuropathy? clinical syndrome -14.511691138199508 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be on, $x) -> (peripheral neuropathy, is based on, clinical syndrome) -> clinical syndrome (10137ms) What is neuropathy? one of the most common complications of diabetes -14.51329137063215 What is neuropathy? -> what be [ neuropathy ] ? -> what be the mening of neuropathy ? -> $x: (neuropathy, mening, $x) -> $x: (neuropathy, be, $x) -> (Neuropathy, is, one of the most common complications of diabetes) -> one of the most common complications of diabetes (10137ms) What is neuropathy? Nerve damage -15.117331209187315 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Nerve damage, also known as, diabetic neuropathy) -> Nerve damage (3578ms) What is neuropathy? Medications -15.148278919701848 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Medications, known to, be associated with peripheral neuropathy) -> Medications (3578ms) What is neuropathy? a medical condition -15.424709661429908 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (a medical condition, known as, Neuropathy) -> a medical condition (3594ms) What is neuropathy? a complication -15.540255832098413 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (a complication, known as, neuropathy) -> a complication (3609ms) What is neuropathy? painful neurological symptoms -15.55034048559268 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (painful neurological symptoms, known as, sensory neuropathy) -> painful neurological symptoms (3609ms) What is neuropathy? a disorder -15.560656950962365 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (a disorder, known as, peripheral neuropathy) -> a disorder (3624ms) What is neuropathy? Polyneuropathy -15.602389574619814 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (Polyneuropathy, also known as, peripheral neuropathy) -> Polyneuropathy (3624ms) What is neuropathy? a painful condition -16.001783404267847 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (a painful condition, known as, diabetic neuropathy) -> a painful condition (3639ms) What is neuropathy? a debilitating condition -16.0489343969279 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (a debilitating condition, known as, Peripheral Neuropathy) -> a debilitating condition (3639ms) What is neuropathy? the problems -16.198965338300955 What is neuropathy? -> what [ be neuropathy ] ? -> what bring about be neuropathy ? -> $x: ($x, bring about be, neuropathy) -> $x: ($x, bring about, neuropathy) -> (the problems, brought about by, diabetic neuropathy) -> the problems (3745ms) What is neuropathy? professional -16.486123598424292 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (professional, know about, auditory neuropathy) -> professional (3653ms) What is neuropathy? disorders -18.123838386604145 What is neuropathy? -> what [ be neuropathy ] ? -> what be know be neuropathy ? -> $x: ($x, be know be, neuropathy) -> $x: ($x, know, neuropathy) -> (disorders, known as, neuropathy) -> disorders (3653ms) What is the age of our solar system? Sun -3.1090958452282242 What is the age of our solar system? -> $x: ($x, is the age of, our solar system) -> $x: ($x, be the father of, our solar system) -> (Sun, is the father of, our solar system) -> Sun (2596ms) What is the age of our solar system? Alpha Centauri -3.7779277397768016 What is the age of our solar system? -> $x: ($x, is the age of, our solar system) -> $x: ($x, be older than, our solar system) -> (Alpha Centauri, is older than, our solar system) -> Alpha Centauri (2596ms) What is the age of our solar system? Ophiuchus -4.8978581018113205 What is the age of our solar system? -> $x: (our solar system, age, $x) -> $x: (our solar system, spend more time, $x) -> (our solar system, spend more time in, Ophiuchus) -> Ophiuchus (2184ms) What is the age of our solar system? Titan -5.033961639335066 What is the age of our solar system? -> $x: ($x, is the age of, our solar system) -> $x: ($x, be example in, our solar system) -> (Titan, is the prime example in, our solar system) -> Titan (2265ms) What is the age of our solar system? the lord -5.073701991409548 What is the age of our solar system? -> $x: ($x, is the age of, our solar system) -> $x: ($x, be the father of, our solar system) -> (the lord, is the father of, our solar system) -> the lord (2596ms) What is the age of our solar system? The sun -5.197365322498584 What is the age of our solar system? -> $x: ($x, is the age of, our solar system) -> $x: ($x, be master of, our solar system) -> (The sun, is the master of, our solar system) -> The sun (2596ms) What is the age of our solar system? The globules -6.183847185805465 What is the age of our solar system? -> $x: ($x, is the age of, our solar system) -> $x: ($x, be older than, our solar system) -> (The globules, could also be older than, our Solar System) -> The globules (2596ms) What is the age of our solar system? The stardust grains -6.260244239500462 What is the age of our solar system? -> $x: ($x, is the age of, our solar system) -> $x: ($x, be older than, our solar system) -> (The stardust grains, are older than, our solar system) -> The stardust grains (2596ms) What is the age of our solar system? a golden age -10.166926474749948 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our Solar System, is in, a golden age) -> a golden age (6051ms) What is the age of our solar system? Ellen White -10.770473950975555 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, was revealed in, Ellen White) -> Ellen White (6051ms) What is the age of our solar system? the Sun -10.81188260855204 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, is in, the Sun) -> the Sun (6051ms) What is the age of our solar system? the Milky Way -10.812105761247299 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our solar system, is in, the Milky Way) -> the Milky Way (6051ms) What is the age of our solar system? a spiral arm -10.916167642334951 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our solar system, is located in, a spiral arm) -> a spiral arm (6051ms) What is the age of our solar system? the Orion arm -11.06433736326214 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our solar system, is in, the Orion arm) -> the Orion arm (6050ms) What is the age of our solar system? The Sun -11.14346786351946 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be the body of, our solar system) -> (The Sun, is the central body of, our solar system) -> The Sun (9435ms) What is the age of our solar system? the Milky Way galaxy -11.223681910474237 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our Solar System, is in, the Milky Way galaxy) -> the Milky Way galaxy (6051ms) What is the age of our solar system? the Belt -11.247318454535225 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our Solar System, will be fully in, the Belt) -> the Belt (6050ms) What is the age of our solar system? the Orion spiral arm -11.24997106644081 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our solar system, is in, the Orion spiral arm) -> the Orion spiral arm (6142ms) What is the age of our solar system? a line -11.281175845467859 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our Solar System, are in, a line) -> a line (6142ms) What is the age of our solar system? the Milky Way Galaxy -11.326509237376097 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our solar system, is located in, the Milky Way Galaxy) -> the Milky Way Galaxy (6142ms) What is the age of our solar system? an arm -11.404465639438067 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our solar system, is in, an arm) -> an arm (6142ms) What is the age of our solar system? a month -11.416187421483237 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our Solar System, is in just about, a month) -> a month (6142ms) What is the age of our solar system? such a way -11.424168656590751 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our solar system, was installed in, such a way) -> such a way (6142ms) What is the age of our solar system? a galaxy -11.519211181488071 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, has been found in, a galaxy) -> a galaxy (6142ms) What is the age of our solar system? the Tharsis region -11.54230377697664 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, is found in, the Tharsis region) -> the Tharsis region (6142ms) What is the age of our solar system? one line -11.557691339178595 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, will be in, one line) -> one line (6176ms) What is the age of our solar system? Capricorn -11.562211995396469 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, is now in, Capricorn) -> Capricorn (6176ms) What is the age of our solar system? a range -11.562586957222226 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our solar systems, are available in, a range) -> a range (6176ms) What is the age of our solar system? a Rotational Dimension -11.620335403669966 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, are stuck in, a Rotational Dimension) -> a Rotational Dimension (6176ms) What is the age of our solar system? such a place -11.622720927456932 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, was born in, such a place) -> such a place (6176ms) What is the age of our solar system? an incredibly ancient pattern -11.628605063928163 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, are caught in, an incredibly ancient pattern) -> an incredibly ancient pattern (6176ms) What is the age of our solar system? part dependent -11.662668982241277 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, is in, part dependent) -> part dependent (6176ms) What is the age of our solar system? one of the spiral arms of the Milky Way -11.66726811075478 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our solar system, is in, one of the spiral arms of the Milky Way) -> one of the spiral arms of the Milky Way (6176ms) What is the age of our solar system? whole galaxy -11.719443734433417 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our known solar system, may be in, whole galaxy) -> whole galaxy (6268ms) What is the age of our solar system? close proximity -11.723914886900962 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, are in very, close proximity) -> close proximity (6268ms) What is the age of our solar system? predictable motion -11.727215432758046 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, are in, predictable motion) -> predictable motion (6268ms) What is the age of our solar system? an outer orbit -11.74315114359008 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our Solar System, is in, an outer orbit) -> an outer orbit (6268ms) What is the age of our solar system? such a region -11.814902648564 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our own solar system, was probably embedded in, such a region) -> such a region (6268ms) What is the age of our solar system? backward orbits -11.814987245664398 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, are traveling in, backward orbits) -> backward orbits (6268ms) What is the age of our solar system? recent years -11.842774644437823 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, have been discovered in, recent years) -> recent years (6306ms) What is the age of our solar system? outer regions -11.918313155773394 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our solar system, is located in, outer regions) -> outer regions (6306ms) What is the age of our solar system? November -11.947511071915446 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, was discovered in, November) -> November (6306ms) What is the age of our solar system? April -11.947511071915446 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, was announced in, April) -> April (6306ms) What is the age of our solar system? January 2009 -11.98598511779969 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> who be our solar system live ? -> $x: (our solar system, live, $x) -> (Our 39kW solar PV system, went live in, January 2009) -> January 2009 (4950ms) What is the age of our solar system? massive Jupiter -11.994100238663972 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (massive Jupiter, is in, our solar system) -> massive Jupiter (9435ms) What is the age of our solar system? an unusual region -12.06684257848964 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our solar system, is located in, an unusual region) -> an unusual region (6306ms) What is the age of our solar system? a rare form -12.081678536070335 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, is enriched in, a rare form) -> a rare form (6306ms) What is the age of our solar system? a similar arrangement -12.10757159231481 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, have been found in, a similar arrangement) -> a similar arrangement (6306ms) What is the age of our solar system? a stable orbit -12.114645188928174 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our Solar System, have been located in, a stable orbit) -> a stable orbit (6356ms) What is the age of our solar system? planets and debris -12.136654320022775 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, is in, planets and debris) -> planets and debris (6356ms) What is the age of our solar system? Arcturus -12.258665386160308 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (Arcturus, was in, our own Solar System) -> Arcturus (9435ms) What is the age of our solar system? the Orion Arm -12.275384927003827 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (Our solar system, lies in, the Orion Arm) -> the Orion Arm (9946ms) What is the age of our solar system? How many dwarf planets -12.280595436174009 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (How many dwarf planets, are there in, our solar system) -> How many dwarf planets (9435ms) What is the age of our solar system? ok -12.354674718966503 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (ok, is in, our solar system) -> ok (9435ms) What is the age of our solar system? Earth -12.361521533281099 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (Earth, is in, our solar system) -> Earth (9435ms) What is the age of our solar system? 20 year -12.42649184206798 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what year do our solar system erupt ? -> $x: ($x, instance of, year) (our solar system, erupt, $x) -> $x: ($x, instance of, year) (our solar system, be heat up, $x) -> (20 year, Instance Of, year increment) (our solar system, have been heating up for, 20 years) -> 20 year (7211ms) What is the age of our solar system? Jupiter -12.430618104760159 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (Jupiter, is in, our solar system) -> Jupiter (9435ms) What is the age of our solar system? the universe -12.44000441980695 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, was typical in, the universe) -> the universe (6356ms) What is the age of our solar system? Mercury and Venus -12.537254549339314 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (Mercury and Venus, are in, our solar system) -> Mercury and Venus (9435ms) What is the age of our solar system? exactly how much water -12.578128817451844 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (exactly how much water, is in, our own solar system) -> exactly how much water (9487ms) What is the age of our solar system? a an unusual region of space -12.61328726246891 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our solar system, is located in, a an unusual region of space) -> a an unusual region of space (6356ms) What is the age of our solar system? the shadows -12.706398369757636 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, has been lurking in, the shadows) -> the shadows (6356ms) What is the age of our solar system? the asteroid belt -12.714555545467414 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our Solar System, are in, the asteroid belt) -> the asteroid belt (6356ms) What is the age of our solar system? Portland Oregon -12.796841299783209 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (Our Violent Solar System, held in, Portland Oregon) -> Portland Oregon (10126ms) What is the age of our solar system? Jupiter Jupiter -12.8123784015381 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (Jupiter Jupiter, is the largest planet in, our solar system) -> Jupiter Jupiter (9487ms) What is the age of our solar system? the night sky -12.85690663586773 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, are visible in, the night sky) -> the night sky (6356ms) What is the age of our solar system? the ascending Dwapara Yuga -12.862798592848184 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, is in, the ascending Dwapara Yuga) -> the ascending Dwapara Yuga (6356ms) What is the age of our solar system? the Starcademy -12.896786505278575 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (the Starcademy, is in, our solar system) -> the Starcademy (9487ms) What is the age of our solar system? 1995 -12.896931828357317 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, was in, 1995) -> 1995 (6394ms) What is the age of our solar system? the throes -12.922722570296884 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, are in, the throes) -> the throes (6394ms) What is the age of our solar system? the cores -12.930650701436372 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our Solar System, are the engines in, the cores) -> the cores (6394ms) What is the age of our solar system? the sun -12.945658831147885 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, is contained in, the sun) -> the sun (6394ms) What is the age of our solar system? the same arm -12.95633374149289 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our solar system, is in, the same arm) -> the same arm (6394ms) What is the age of our solar system? the part -12.959829221588624 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar systems, will be in, the part) -> the part (6394ms) What is the age of our solar system? the nearby interstellar material -12.962084319166424 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, there is in, the nearby interstellar material) -> the nearby interstellar material (6394ms) What is the age of our solar system? one week -12.985794035605316 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, was created in, one week) -> one week (6506ms) What is the age of our solar system? the Saggitarius Dwarf Galaxy -13.014049233862046 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (our solar system, originated in, the Saggitarius Dwarf Galaxy) -> the Saggitarius Dwarf Galaxy (10126ms) What is the age of our solar system? the Asteroid Belt -13.039996305795384 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (our solar system, exist in, the Asteroid Belt) -> the Asteroid Belt (10194ms) What is the age of our solar system? the past -13.05128118688031 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, had been visited in, the past) -> the past (6506ms) What is the age of our solar system? three hours -13.052922820720239 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our solar system, was created in, three hours) -> three hours (6506ms) What is the age of our solar system? the early universe -13.059838075452515 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our Solar System, can be made in, the early universe) -> the early universe (6506ms) What is the age of our solar system? 1912 -13.073085996068263 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, was measured in, 1912) -> 1912 (6506ms) What is the age of our solar system? 1990 -13.075346356180845 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, were spotted in, 1990) -> 1990 (6506ms) What is the age of our solar system? the minerals -13.083616951513289 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, is written in, the minerals) -> the minerals (6506ms) What is the age of our solar system? temperature -13.129764658423786 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, are increasing in, temperature) -> temperature (6543ms) What is the age of our solar system? an orbit -13.16137006279057 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (our solar system, rotates in, an orbit) -> an orbit (10194ms) What is the age of our solar system? such an explosive environment -13.168304723074481 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (our solar system, emerged in, such an explosive environment) -> such an explosive environment (10194ms) What is the age of our solar system? the formation -13.186740394333214 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, is found in, the formation) -> the formation (6543ms) What is the age of our solar system? the light -13.201279786650648 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, are being modified in, the light) -> the light (6543ms) What is the age of our solar system? fact -13.21949884076408 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our solar system, is in, fact) -> fact (6543ms) What is the age of our solar system? the direction -13.22033995189554 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our solar system, is moving in, the direction) -> the direction (6543ms) What is the age of our solar system? how many planets -13.222030857625985 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (how many planets, are in, our Solar System) -> how many planets (9487ms) What is the age of our solar system? Alarius -13.22500104185579 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (Alarius, is in, our Solar System) -> Alarius (9487ms) What is the age of our solar system? a ?belt ? -13.228652540559006 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (our Solar System, lie in, a ?belt ?) -> a ?belt ? (10225ms) What is the age of our solar system? orbit -13.26213092924041 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our solar system, is in, orbit) -> orbit (6543ms) What is the age of our solar system? Planet X -13.29720647344482 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (Planet X, [is] the tenth planet in, our solar system) -> Planet X (9487ms) What is the age of our solar system? years -13.315266024398422 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, birth of, our solar system) -> (years, describe the birth of, our solar system) -> years (5652ms) What is the age of our solar system? how many dwarf planets -13.384967482931302 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (how many dwarf planets, are in, our solar system) -> how many dwarf planets (9487ms) What is the age of our solar system? countries -13.412060009281543 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar systems, are providing power in, countries) -> countries (6543ms) What is the age of our solar system? such an environment -13.540033042871876 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (our own solar system, have formed in, such an environment) -> such an environment (10255ms) What is the age of our solar system? Venus -13.553496621198308 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (Venus, is the hottest planet in, our solar system) -> Venus (9525ms) What is the age of our solar system? Saturn -13.577145018347622 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (Saturn, is the only planet in, our solar system) -> Saturn (9525ms) What is the age of our solar system? Ganymede -13.577145018347622 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (Ganymede, is the largest moon in, our solar system) -> Ganymede (9525ms) What is the age of our solar system? Uranus -13.602847388442616 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (Uranus, is the only planet in, our Solar System) -> Uranus (9566ms) What is the age of our solar system? life waves -13.608424066948974 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (our solar system, creates in, life waves) -> life waves (10255ms) What is the age of our solar system? vibration -13.614541277545111 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our whole solar system, is being lifted in, vibration) -> vibration (6543ms) What is the age of our solar system? Pluto -13.623248507306567 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (Pluto, is the smallest planet in, our solar system) -> Pluto (9601ms) What is the age of our solar system? Vesta -13.623248507306567 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (Vesta, is the brightest asteroid in, our Solar System) -> Vesta (9566ms) What is the age of our solar system? Saturn?s moon Titan -13.629601363599498 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (Saturn?s moon Titan, is the only moon in, our solar system) -> Saturn?s moon Titan (9601ms) What is the age of our solar system? a 26.000 year cycle -13.637563450213651 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (our Solar System, rotates around in, a 26.000 year cycle) -> a 26.000 year cycle (10285ms) What is the age of our solar system? line -13.699363084884222 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, will be in, line) -> line (6589ms) What is the age of our solar system? a cyclic manner -13.748784105027138 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (our solar system, occur in, a cyclic manner) -> a cyclic manner (10285ms) What is the age of our solar system? one of these streams -13.758577444060217 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (Our Solar System, sits in, one of these streams) -> one of these streams (10285ms) What is the age of our solar system? The asteroid -13.811283481706468 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (The asteroid, is in, our solar system) -> The asteroid (9601ms) What is the age of our solar system? alignment -13.838608966651648 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, were in, alignment) -> alignment (6589ms) What is the age of our solar system? the sky -13.839222921242353 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (the sky, are in, our own solar system) -> the sky (9601ms) What is the age of our solar system? space -13.84618219153591 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our inner solar system, is one in, space) -> space (6589ms) What is the age of our solar system? motion -13.921788163230175 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our solar system, is in, motion) -> motion (6589ms) What is the age of our solar system? nature -13.927719561216229 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, is etheric in, nature) -> nature (6589ms) What is the age of our solar system? re-cap...there -13.956307151996942 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (re-cap...there, are only 8 planets in, our solar system) -> re-cap...there (9639ms) What is the age of our solar system? the Earth -13.960745965604236 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (the Earth, is the only body in, our solar system) -> the Earth (9639ms) What is the age of our solar system? a new planet -14.018321836970273 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (a new planet, being discovered in, our Solar System) -> a new planet (9639ms) What is the age of our solar system? Neptune -14.02380076746575 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (Neptune, [is] the outermost planet in, our solar system) -> Neptune (9639ms) What is the age of our solar system? one of the spiral arms -14.076497510024717 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (our Solar System, lying in, one of the spiral arms) -> one of the spiral arms (10285ms) What is the age of our solar system? place -14.11055735111296 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our own solar system, is held in, place) -> place (6589ms) What is the age of our solar system? creation -14.112325723915152 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, is my role in, creation) -> creation (6589ms) What is the age of our solar system? the only known planets -14.123228361388696 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (the only known planets, were in, our solar system) -> the only known planets (9682ms) What is the age of our solar system? Apparently a new planet -14.124056469504355 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (Apparently a new planet, has been found in, our solar system) -> Apparently a new planet (9682ms) What is the age of our solar system? grey -14.140128123058211 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our own solar system, are plotted in, grey) -> grey (6589ms) What is the age of our solar system? Mars -14.146645200762798 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (Mars, is the only planet in, our Solar System) -> Mars (9682ms) What is the age of our solar system? Space -14.161338032930594 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (Our solar system, began in, Space) -> Space (10285ms) What is the age of our solar system? the top eight brightest objects -14.224686565390456 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (the top eight brightest objects, are in, our solar system) -> the top eight brightest objects (9682ms) What is the age of our solar system? Mercury -14.227072123940609 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (Mercury, is the smallest planet in, our solar system) -> Mercury (9682ms) What is the age of our solar system? the cold molecular cloud -14.296402483649729 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> who give birth to our solar system ? -> $x: ($x, give birth to, our solar system) -> (the cold molecular cloud, gave birth to, our Solar System) -> the cold molecular cloud (6631ms) What is the age of our solar system? the next -14.311662952436151 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (the next, are in, our own Solar System) -> the next (10354ms) What is the age of our solar system? the right zone for life -14.341640607453837 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, to be in, the right zone for life) -> the right zone for life (6631ms) What is the age of our solar system? Nibiru -14.45184246762694 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (Nibiru, is in, our solar system) -> Nibiru (10354ms) What is the age of our solar system? the supernova -14.514521665702 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> who give birth to our solar system ? -> $x: ($x, give birth to, our solar system) -> (the supernova, gave birth to, our solar system) -> the supernova (6631ms) What is the age of our solar system? existence -14.54801201007705 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (our solar system, has been in, existence) -> existence (6631ms) What is the age of our solar system? the first way -14.822714998384072 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (our solar system, formed in, the first way) -> the first way (10449ms) What is the age of our solar system? the planet -14.832803309667183 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (the planet, were in, our Solar System) -> the planet (10449ms) What is the age of our solar system? the sun Jupiter -14.859779935947579 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (the sun Jupiter, is the largest planet in, our solar system) -> the sun Jupiter (10479ms) What is the age of our solar system? 1992 -14.931273217495388 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (our solar system, came in, 1992) -> 1992 (10479ms) What is the age of our solar system? the species -14.976438626566004 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (the species, were in, our own solar system) -> the species (10479ms) What is the age of our solar system? the role asteroids -14.981450802242438 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> who have play our solar system ? -> $x: ($x, have play, our solar system) -> $x: ($x, play, our solar system) -> (the role asteroids, played in forming, our solar system) -> the role asteroids (11409ms) What is the age of our solar system? the plane -14.988731200051031 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (our solar system, lies in, the plane) -> the plane (10479ms) What is the age of our solar system? the planets -14.997626688280974 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (the planets, were forming in, our Solar System) -> the planets (10479ms) What is the age of our solar system? origin -15.050546062851225 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (origin, is in, our own solar system) -> origin (10479ms) What is the age of our solar system? the earth -15.055572476660817 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (the earth, is the only place in, our solar system) -> the earth (10479ms) What is the age of our solar system? turn -15.095177287769246 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> (Our solar system, was in, turn) -> turn (6631ms) What is the age of our solar system? the key role -15.15475360305605 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> who have play our solar system ? -> $x: ($x, have play, our solar system) -> $x: ($x, play, our solar system) -> (the key role, played in, our own solar system) -> the key role (11409ms) What is the age of our solar system? distance -15.161254627962228 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (our solar system, range in, distance) -> distance (10479ms) What is the age of our solar system? the history -15.217090442609768 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (our Solar System, formed late in, the history) -> the history (10509ms) What is the age of our solar system? the tenth planet -15.322025372221002 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what be the birth of our solar system ? -> $x: ($x, be the birth of, our solar system) -> $x: ($x, be `` in, our solar system) -> (the tenth planet, being in, our solar system) -> the tenth planet (10509ms) What is the age of our solar system? Comet -15.662428337684233 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what rock make up our solar system ? -> $x: ($x, instance of, rock) ($x, make up, our solar system) -> (Comet, Instance Of, lesser-known experimental rock band) (comets, make up, our solar system) -> Comet (8017ms) What is the age of our solar system? life -15.793791381175108 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (our solar system, play a role in, life) -> life (10539ms) What is the age of our solar system? miniature -15.813648480834697 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (our solar system, made in, miniature) -> miniature (10539ms) What is the age of our solar system? position -15.896097037632497 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what have our solar system be in ? -> $x: (our solar system, be in, $x) -> $x: (our solar system, in, $x) -> (our own solar system, placed in, position) -> position (10539ms) What is the age of our solar system? planet -16.019557154551514 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what rock make up our solar system ? -> $x: ($x, instance of, rock) ($x, make up, our solar system) -> (planet, Instance Of, sphere of rock) (planets, make up, our Solar System) -> planet (8017ms) What is the age of our solar system? the role -16.468819433365326 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> who have play our solar system ? -> $x: ($x, have play, our solar system) -> $x: ($x, play, our solar system) -> (the role, plays in, the life of our Solar System) -> the role (11409ms) What is the age of our solar system? comet -17.352006446046282 What is the age of our solar system? -> what be the age of [ our solar system ] ? -> what rock make up our solar system ? -> $x: ($x, instance of, rock) ($x, make up, our solar system) -> (comet, Instance Of, large object of rock) (comets, make up, our solar system) -> comet (8017ms) When was CNN's first broadcast? 1997 0.3587478370690951 When was CNN's first broadcast? -> $x: (CNN, first broadcast, $x) -> $x: (CNN, air date of first episode, $x) -> (CNN NewsStand, Air date of first episode, 1997) -> 1997 (792ms) When was CNN's first broadcast? 1992 0.3312589564699353 When was CNN's first broadcast? -> $x: (CNN, first broadcast, $x) -> $x: (CNN, air date of first episode, $x) -> (CNN & Company, Air date of first episode, 1992) -> 1992 (792ms) When was CNN's first broadcast? 2001 0.3312589564699353 When was CNN's first broadcast? -> $x: (CNN, first broadcast, $x) -> $x: (CNN, air date of first episode, $x) -> (CNN Live Today, Air date of first episode, 2001) -> 2001 (792ms) When was CNN's first broadcast? 2006-09-04 -1.0184867488484528 When was CNN's first broadcast? -> $x: (CNN, first broadcast, $x) -> $x: (CNN, air date of first episode, $x) -> (CNN Newsroom, Air date of first episode, 2006-09-04) -> 2006-09-04 (866ms) When was CNN's first broadcast? 1980-06-01 -1.0184867488484528 When was CNN's first broadcast? -> $x: (CNN, first broadcast, $x) -> $x: (CNN, air date of first episode, $x) -> (CNN Daybreak, Air date of first episode, 1980-06-01) -> 1980-06-01 (866ms) When was CNN's first broadcast? 2007-12-06 -1.0184867488484528 When was CNN's first broadcast? -> $x: (CNN, first broadcast, $x) -> $x: (CNN, air date of first episode, $x) -> (CNN Heroes, Air date of first episode, 2007-12-06) -> 2007-12-06 (866ms) When was CNN's first broadcast? 2009-11-16 -1.0184867488484528 When was CNN's first broadcast? -> $x: (CNN, first broadcast, $x) -> $x: (CNN, air date of first episode, $x) -> (CNN Tonight, Air date of first episode, 2009-11-16) -> 2009-11-16 (792ms) When was CNN's first broadcast? 2007-01-20 -1.069537527104035 When was CNN's first broadcast? -> $x: (CNN, first broadcast, $x) -> $x: (CNN, air date of first episode, $x) -> (CNN Special Investigations Unit, Air date of first episode, 2007-01-20) -> 2007-01-20 (879ms) When was CNN's first broadcast? 2010-08-14 -1.1078256107957216 When was CNN's first broadcast? -> $x: (CNN, first broadcast, $x) -> $x: (CNN, air date of first episode, $x) -> (CNN Heroes: Coming Back from Katrina, Air date of first episode, 2010-08-14) -> 2010-08-14 (879ms) When was CNN's first broadcast? 2010-11-25 -1.137605231444811 When was CNN's first broadcast? -> $x: (CNN, first broadcast, $x) -> $x: (CNN, air date of first episode, $x) -> (The 4th Annual CNN Heroes: An All-Star Tribute, Air date of first episode, 2010-11-25) -> 2010-11-25 (879ms) When was CNN's first broadcast? 2009-11-26 -1.137605231444811 When was CNN's first broadcast? -> $x: (CNN, first broadcast, $x) -> $x: (CNN, air date of first episode, $x) -> (The 3rd Annual CNN Heroes: An All-Star Tribute, Air date of first episode, 2009-11-26) -> 2009-11-26 (879ms) When was CNN's first broadcast? 2003-08 -2.9462503387791354 When was CNN's first broadcast? -> $x: (CNN, first broadcast, $x) -> $x: (CNN, air date of first episode, $x) -> (CNN Presents, Air date of first episode, 2003-08) -> 2003-08 (1540ms) When was CNN's first broadcast? 1989-08 -2.9462503387791354 When was CNN's first broadcast? -> $x: (CNN, first broadcast, $x) -> $x: (CNN, air date of first episode, $x) -> (CNN Newsroom, Air date of first episode, 1989-08) -> 1989-08 (1540ms) When was CNN's first broadcast? 2005-07 -2.9737392193782948 When was CNN's first broadcast? -> $x: (CNN, first broadcast, $x) -> $x: (CNN, air date of first episode, $x) -> (CNN Live From, Air date of first episode, 2005-07) -> 2005-07 (1540ms) When was CNN's first broadcast? 1985-09 -2.9737392193782948 When was CNN's first broadcast? -> $x: (CNN, first broadcast, $x) -> $x: (CNN, air date of first episode, $x) -> (CNN World News, Air date of first episode, 1985-09) -> 1985-09 (1540ms) What movies did Judi Dench play in? J. Edgar -6.990919387605524 What movies did Judi Dench play in? -> what movie do [ judus dench play ] in ? -> how many movie have judus dench play ? -> $x: ($x, instance of, movie) (judus dench, play, $x) -> (J. Edgar, Instance Of, movie) (Judi Dench, plays the part of, J. Edgar) -> J. Edgar (4846ms) What movies did Judi Dench play in? Notes on a Scandal -7.01730753813475 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> (Judi Dench, starred in the movie, Notes on a Scandal) -> Notes on a Scandal (4846ms) What movies did Judi Dench play in? Look Back in Anger -8.184926768414538 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, film, $x) -> (Judi Dench, Films directed, Look Back in Anger) -> Look Back in Anger (10613ms) What movies did Judi Dench play in? Scenes From My Life -8.184926768414538 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, write, $x) -> (Judi Dench, Works written, Scenes From My Life) -> Scenes From My Life (10613ms) What movies did Judi Dench play in? Queen Victoria -8.258985059793083 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, played, Queen Victoria) -> Queen Victoria (8810ms) What movies did Judi Dench play in? And Furthermore -8.59069582938531 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, write, $x) -> (Judi Dench, Works written, And Furthermore) -> And Furthermore (10613ms) What movies did Judi Dench play in? Edgar?s mother -8.61442366518739 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, plays, Edgar?s mother) -> Edgar?s mother (8810ms) What movies did Judi Dench play in? Evelyn -8.656126427544216 What movies did Judi Dench play in? -> what movie do [ judus dench play ] in ? -> how many movie have judus dench play ? -> $x: ($x, instance of, movie) (judus dench, play, $x) -> (Evelyn, Instance Of, movie) (Judi Dench, plays, Evelyn) -> Evelyn (4846ms) What movies did Judi Dench play in? Daniel Craig -8.667651427044536 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (Daniel Craig, is, Judi Dench) -> Daniel Craig (5351ms) What movies did Judi Dench play in? a widow -8.803026804406793 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, plays, a widow) -> a widow (8810ms) What movies did Judi Dench play in? 34 locations -8.807310592119487 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, was screened in, 34 locations) -> 34 locations (5351ms) What movies did Judi Dench play in? Hoover?s Mom -8.858237322133679 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, plays, Hoover?s Mom) -> Hoover?s Mom (8810ms) What movies did Judi Dench play in? Sally Bowles -8.878422039649589 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, played, Sally Bowles) -> Sally Bowles (8811ms) What movies did Judi Dench play in? practical jokes -8.915946796094058 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (light-hearted?Dame Judi Dench, would often play, practical jokes) -> practical jokes (8810ms) What movies did Judi Dench play in? top movie star -8.939523853973474 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, top movie star) -> top movie star (10613ms) What movies did Judi Dench play in? Hoover?s mother -8.964074025108612 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, plays, Hoover?s mother) -> Hoover?s mother (8810ms) What movies did Judi Dench play in? Jeremy Irons -8.993687130917685 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (Jeremy Irons, was replaced with, Judi Dench) -> Jeremy Irons (5350ms) What movies did Judi Dench play in? Kenneth Branagh -8.999149821227057 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (Kenneth Branagh, as was, the great Judi Dench) -> Kenneth Branagh (5350ms) What movies did Judi Dench play in? Mrs. Fairfax -9.063496365977215 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, plays, Mrs. Fairfax) -> Mrs. Fairfax (8810ms) What movies did Judi Dench play in? Laura Henderson -9.128352143557573 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Dame Judi Dench, plays, Laura Henderson) -> Laura Henderson (8939ms) What movies did Judi Dench play in? Miss Matty Jenkyns -9.14135117192807 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, plays, Miss Matty Jenkyns) -> Miss Matty Jenkyns (8939ms) What movies did Judi Dench play in? James Bond?s boss -9.141556363336633 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Dame Judi Dench, will be playing, James Bond?s boss) -> James Bond?s boss (8939ms) What movies did Judi Dench play in? British novelist Iris Murdoch -9.156277899197491 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, play, British novelist Iris Murdoch) -> British novelist Iris Murdoch (8939ms) What movies did Judi Dench play in? play or stage shape -9.163418078891358 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (play or stage shape, was called, the Judi Dench) -> play or stage shape (5351ms) What movies did Judi Dench play in? Lauran Henderson -9.209052718795656 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Mrs. Henderson Presents Judi Dench, plays, Lauran Henderson) -> Lauran Henderson (8939ms) What movies did Judi Dench play in? a master -9.231120055134552 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, a master) -> a master (5350ms) What movies did Judi Dench play in? Blanchett -9.26087838978129 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, played, Blanchett) -> Blanchett (8939ms) What movies did Judi Dench play in? A-listers -9.268801266143535 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, A-listers) -> A-listers (10613ms) What movies did Judi Dench play in? Best Actress -9.270588942187747 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is the leading contender for, Best Actress) -> Best Actress (5350ms) What movies did Judi Dench play in? actress Dame Sybil Thordike -9.28625493392983 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Dame Judi Dench, plays, actress Dame Sybil Thordike) -> actress Dame Sybil Thordike (8939ms) What movies did Judi Dench play in? actress Dame Sybil Thorndike -9.287139173033221 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Dame Judi Dench, plays, actress Dame Sybil Thorndike) -> actress Dame Sybil Thorndike (8939ms) What movies did Judi Dench play in? Mrs. Bennet -9.289127749272927 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, were born to play, Mrs. Bennet) -> Mrs. Bennet (5350ms) What movies did Judi Dench play in? a role -9.310270466096009 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (a role, are, Judi Dench) -> a role (5381ms) What movies did Judi Dench play in? ?Your name -9.336949435878823 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (?Your name, is ?, ? Judi Dench) -> ?Your name (5381ms) What movies did Judi Dench play in? Cary Fukunaga -9.33920209000957 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is directed by, Cary Fukunaga) -> Cary Fukunaga (5381ms) What movies did Judi Dench play in? Fine Romance -9.344867215971979 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, instance of, judus dench) -> (Fine Romance, Instance Of, British situation comedy starring husband-and-wife team Judi Dench and Michael Williams) -> Fine Romance (10613ms) What movies did Judi Dench play in? star of Notes -9.357322138362322 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, star of Notes) -> star of Notes (10613ms) What movies did Judi Dench play in? a thrill -9.359850105112212 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, a thrill) -> a thrill (5381ms) What movies did Judi Dench play in? an elderly schoolteacher -9.3654562867211 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, plays, an elderly schoolteacher) -> an elderly schoolteacher (9029ms) What movies did Judi Dench play in? English film actress -9.370817489662254 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, English film actress) -> English film actress (10692ms) What movies did Judi Dench play in? York -9.371237097844945 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (York, is, Dame Judi Dench) -> York (5381ms) What movies did Judi Dench play in? star of Return -9.375946318412888 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, star of Return) -> star of Return (10692ms) What movies did Judi Dench play in? a-list actor -9.381435929855343 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, a-list actor) -> a-list actor (10693ms) What movies did Judi Dench play in? top tier actor -9.391221622003101 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, top tier actor) -> top tier actor (10692ms) What movies did Judi Dench play in? star of Shakespeare -9.39353230154769 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, star of Shakespeare) -> star of Shakespeare (10692ms) What movies did Judi Dench play in? the Rose Theatre -9.39354909297769 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, was given the set of, the Rose Theatre) -> the Rose Theatre (5381ms) What movies did Judi Dench play in? actress after the age -9.398786164963038 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, actress after the age) -> actress after the age (10693ms) What movies did Judi Dench play in? macular degeneration -9.406930476441158 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, has been diagnosed with, macular degeneration) -> macular degeneration (5381ms) What movies did Judi Dench play in? first class actress -9.420353968909032 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (judi dench, Instance Of, first class actress) -> first class actress (10799ms) What movies did Judi Dench play in? properly trained actor -9.420353968909032 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, properly trained actor) -> properly trained actor (10799ms) What movies did Judi Dench play in? big name -9.426269081460916 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, big name) -> big name (10799ms) What movies did Judi Dench play in? well-known British actress -9.429447314063244 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, well-known British actress) -> well-known British actress (10799ms) What movies did Judi Dench play in? legendary British actress -9.429474727756169 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, legendary British actress) -> legendary British actress (10799ms) What movies did Judi Dench play in? old-school kind of star -9.429474727756169 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, old-school kind of star) -> old-school kind of star (10799ms) What movies did Judi Dench play in? stellar, stellar actress -9.429474727756169 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, stellar, stellar actress) -> stellar, stellar actress (10799ms) What movies did Judi Dench play in? big box-office name -9.429474727756169 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, big box-office name) -> big box-office name (10843ms) What movies did Judi Dench play in? brilliant, brilliant actor -9.429474727756169 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, brilliant, brilliant actor) -> brilliant, brilliant actor (10799ms) What movies did Judi Dench play in? high profile performer -9.432871082909424 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, high profile performer) -> high profile performer (10843ms) What movies did Judi Dench play in? Mrs. Brown -9.435442653808831 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, instance of, judus dench) -> (Mrs. Brown, Instance Of, 1997 movie starring Dame Judi Dench and Billy Connolly) -> Mrs. Brown (10843ms) What movies did Judi Dench play in? star of Tomorrow Never -9.44086073193151 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, star of Tomorrow Never) -> star of Tomorrow Never (10843ms) What movies did Judi Dench play in? polished veteran actor -9.440917799928032 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, polished veteran actor) -> polished veteran actor (10843ms) What movies did Judi Dench play in? Hoover -9.445675771916042 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, plays, Hoover) -> Hoover (9030ms) What movies did Judi Dench play in? a successful novelist -9.453745232361378 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, plays, a successful novelist) -> a successful novelist (9029ms) What movies did Judi Dench play in? Remain Silent -9.471070458423773 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (Remain Silent, is narrated by, Judi Dench) -> Remain Silent (5430ms) What movies did Judi Dench play in? great british actress -9.475190853260631 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, great british actress) -> great british actress (10878ms) What movies did Judi Dench play in? Judged Too Old -9.481595151103178 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, Judged Too Old) -> Judged Too Old (5430ms) What movies did Judi Dench play in? great actress -9.48322505375317 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, great actress) -> great actress (10877ms) What movies did Judi Dench play in? Titania -9.483640797079222 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Dame Judi Dench, played, Titania) -> Titania (9029ms) What movies did Judi Dench play in? great actress of varied accomplishment -9.484452488954487 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, great actress of varied accomplishment) -> great actress of varied accomplishment (10878ms) What movies did Judi Dench play in? real life voice actor -9.484452488954487 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, real life voice actor) -> real life voice actor (10878ms) What movies did Judi Dench play in? england's finest actor and actress -9.48668232883219 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, england's finest actor and actress) -> england's finest actor and actress (10905ms) What movies did Judi Dench play in? popular and famous british actor -9.48668232883219 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, popular and famous british actor) -> popular and famous british actor (10905ms) What movies did Judi Dench play in? famous actor -9.495987191814 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, famous actor) -> famous actor (10905ms) What movies did Judi Dench play in? Contini?s costume designer and confidant -9.496327078091168 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, Contini?s costume designer and confidant) -> Contini?s costume designer and confidant (5430ms) What movies did Judi Dench play in? a bit -9.499245980292365 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, a bit) -> a bit (5430ms) What movies did Judi Dench play in? legend of the british theater -9.500903554014828 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, legend of the british theater) -> legend of the british theater (10905ms) What movies did Judi Dench play in? MI6 chief M -9.503875513363846 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (his scenes Judi Dench, plays, MI6 chief M) -> MI6 chief M (9030ms) What movies did Judi Dench play in? the U.S. Virgin Islands -9.512546285203964 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (the U.S. Virgin Islands, are as different as, Dame Judi Dench) -> the U.S. Virgin Islands (5430ms) What movies did Judi Dench play in? Graham?s couch tonight -9.516506162329662 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (Graham?s couch tonight, are, Dame Judi Dench) -> Graham?s couch tonight (5430ms) What movies did Judi Dench play in? the Assistant Director -9.516970515066838 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, the Assistant Director) -> the Assistant Director (5430ms) What movies did Judi Dench play in? big british theatrical actor -9.525580150992488 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, big british theatrical actor) -> big british theatrical actor (10931ms) What movies did Judi Dench play in? well respected and loved British actress -9.527522951436655 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, well respected and loved British actress) -> well respected and loved British actress (10986ms) What movies did Judi Dench play in? as much M -9.528000743650802 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is now, as much M) -> as much M (5776ms) What movies did Judi Dench play in? Lily or Alice -9.528127030202869 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, would be great as, Lily or Alice) -> Lily or Alice (5776ms) What movies did Judi Dench play in? modern day actor in costume -9.531576284267333 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, modern day actor in costume) -> modern day actor in costume (10986ms) What movies did Judi Dench play in? engaging, clever and intuitive actress -9.531576284267333 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, engaging, clever and intuitive actress) -> engaging, clever and intuitive actress (10986ms) What movies did Judi Dench play in? prominent actor in the world -9.531576284267333 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, prominent actor in the world) -> prominent actor in the world (10986ms) What movies did Judi Dench play in? set -9.53818381860549 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (set, was equally, light-hearted?Dame Judi Dench) -> set (5776ms) What movies did Judi Dench play in? well known British actress -9.539289373306087 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, well known British actress) -> well known British actress (10986ms) What movies did Judi Dench play in? Dame Sybil Thorndike -9.540356103410195 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, Dame Sybil Thorndike) -> Dame Sybil Thorndike (5776ms) What movies did Judi Dench play in? a glass -9.556301072561507 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (a glass, is, Dame Judi Dench) -> a glass (5776ms) What movies did Judi Dench play in? famous English movie, theater and tv actress -9.563258496215564 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, famous English movie, theater and tv actress) -> famous English movie, theater and tv actress (10986ms) What movies did Judi Dench play in? English actress -9.567711517090528 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, English actress) -> English actress (11239ms) What movies did Judi Dench play in? a great looking lady -9.568217025203936 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, a great looking lady) -> a great looking lady (5776ms) What movies did Judi Dench play in? heralded British stage and film actress -9.572416906871798 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, heralded British stage and film actress) -> heralded British stage and film actress (11239ms) What movies did Judi Dench play in? A nomination -9.577673281037951 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (A nomination, would be similar to, Judi Dench) -> A nomination (5776ms) What movies did Judi Dench play in? good news -9.581303447897646 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, good news) -> good news (6225ms) What movies did Judi Dench play in? Oscar winner -9.5826670310046 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, Oscar winner) -> Oscar winner (11334ms) What movies did Judi Dench play in? Become Silent -9.602581186068095 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (Become Silent, is narrated by, Dame Judi Dench) -> Become Silent (6226ms) What movies did Judi Dench play in? notable actor -9.6030504745918 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, notable actor) -> notable actor (11333ms) What movies did Judi Dench play in? respected actor -9.618884172143614 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, respected actor) -> respected actor (11333ms) What movies did Judi Dench play in? Desiree -9.619932458400505 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Dame Judi Dench, played, Desiree) -> Desiree (9168ms) What movies did Judi Dench play in? absolute genius -9.627281720479912 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, are, absolute genius) -> absolute genius (6225ms) What movies did Judi Dench play in? top favourites -9.631350055596176 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, are always, top favourites) -> top favourites (6225ms) What movies did Judi Dench play in? experienced actress -9.636003602438736 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, experienced actress) -> experienced actress (11749ms) What movies did Judi Dench play in? much experience -9.64247215680343 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, have, $x) -> (Judi Dench, has so, much experience) -> much experience (6226ms) What movies did Judi Dench play in? a cracking Mrs Fairfax -9.642489631537357 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, a cracking Mrs Fairfax) -> a cracking Mrs Fairfax (6226ms) What movies did Judi Dench play in? good actress -9.644610513891553 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, good actress) -> good actress (11749ms) What movies did Judi Dench play in? Minnie -9.64988733385437 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, have, $x) -> (Dame Judi Dench, has adopted, Minnie) -> Minnie (6226ms) What movies did Judi Dench play in? Tea with Mussolini -9.65616219509032 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, instance of, judus dench) -> (Tea with Mussolini, Instance Of, 1999 film, starring Cher, Judi Dench) -> Tea with Mussolini (11749ms) What movies did Judi Dench play in? J Edgar -9.660330359062925 What movies did Judi Dench play in? -> what movie do [ judus dench play ] in ? -> how many movie have judus dench play ? -> $x: ($x, instance of, movie) (judus dench, play, $x) -> $x: ($x, instance of, movie) (judus dench, of play, $x) -> (J Edgar, Instance Of, amazing movie) (Judi Dench, plays the part of, J. Edgar) -> J Edgar (6225ms) What movies did Judi Dench play in? british star -9.662692829201276 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, british star) -> british star (11965ms) What movies did Judi Dench play in? fantastic actress -9.663184859437896 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, fantastic actress) -> fantastic actress (11965ms) What movies did Judi Dench play in? name actor -9.668051130503606 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, name actor) -> name actor (11965ms) What movies did Judi Dench play in? Become Silent ? -9.670520219307358 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (Become Silent ?, is narrated by, Dame Judi Dench) -> Become Silent ? (6643ms) What movies did Judi Dench play in? british actor -9.681913553040596 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, british actor) -> british actor (11965ms) What movies did Judi Dench play in? acting legend -9.682514714820275 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, acting legend) -> acting legend (11965ms) What movies did Judi Dench play in? top actor -9.685386887843764 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, top actor) -> top actor (11965ms) What movies did Judi Dench play in? 77 -9.688446028621538 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, 77) -> 77 (6643ms) What movies did Judi Dench play in? british name -9.689832372089505 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, british name) -> british name (12341ms) What movies did Judi Dench play in? british great -9.691170652463203 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, british great) -> british great (12341ms) What movies did Judi Dench play in? great performer -9.69163325487229 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, great performer) -> great performer (12341ms) What movies did Judi Dench play in? brilliant actor -9.692770062059976 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, brilliant actor) -> brilliant actor (12341ms) What movies did Judi Dench play in? Hayden -9.69410264130249 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is onboard to play, Hayden) -> Hayden (6643ms) What movies did Judi Dench play in? fantastic actor -9.695905116670586 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, fantastic actor) -> fantastic actor (12341ms) What movies did Judi Dench play in? screen legend -9.696854042457822 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, screen legend) -> screen legend (12341ms) What movies did Judi Dench play in? successful actress -9.696865980774293 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, successful actress) -> successful actress (12341ms) What movies did Judi Dench play in? mature actress -9.697339802014044 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, mature actress) -> mature actress (12405ms) What movies did Judi Dench play in? hollywood actor -9.697743015588632 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, hollywood actor) -> hollywood actor (12404ms) What movies did Judi Dench play in? superb actress -9.699554369525176 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, superb actress) -> superb actress (12405ms) What movies did Judi Dench play in? vision problems -9.70070403343355 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, have, $x) -> (Judi Dench, is having, vision problems) -> vision problems (6643ms) What movies did Judi Dench play in? famous name -9.701078307438214 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, famous name) -> famous name (12405ms) What movies did Judi Dench play in? experienced performer -9.702303484349084 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, experienced performer) -> experienced performer (12405ms) What movies did Judi Dench play in? wonderful actress -9.705791603025201 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, wonderful actress) -> wonderful actress (12405ms) What movies did Judi Dench play in? featured actor -9.706686998823189 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, featured actor) -> featured actor (12490ms) What movies did Judi Dench play in? landing luminary -9.721669926430186 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, landing luminary) -> landing luminary (12490ms) What movies did Judi Dench play in? acclaimed actor -9.721669926430186 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, acclaimed actor) -> acclaimed actor (12490ms) What movies did Judi Dench play in? thinking actor -9.721669926430186 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, thinking actor) -> thinking actor (12490ms) What movies did Judi Dench play in? quality actress -9.721669926430186 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, quality actress) -> quality actress (12490ms) What movies did Judi Dench play in? a time -9.723611766082636 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, have, $x) -> (12 / R Judi Dench, is clearly having a whale of, a time) -> a time (6643ms) What movies did Judi Dench play in? english star -9.724089200676728 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, english star) -> english star (12490ms) What movies did Judi Dench play in? ?Best Actress -9.732343335789805 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (? Judi Dench, was nominated for, ?Best Actress) -> ?Best Actress (6643ms) What movies did Judi Dench play in? classical actor -9.735379147518085 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, classical actor) -> classical actor (12627ms) What movies did Judi Dench play in? a British actor -9.739910305288683 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (a British actor, happened to be married to, Dame Judi Dench) -> a British actor (6643ms) What movies did Judi Dench play in? incredible actress -9.741425571420734 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, incredible actress) -> incredible actress (12627ms) What movies did Judi Dench play in? female actor -9.742233757449185 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, female actor) -> female actor (12627ms) What movies did Judi Dench play in? classic actor -9.744103197301294 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, classic actor) -> classic actor (12627ms) What movies did Judi Dench play in? seasoned actor -9.744437024007764 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, seasoned actor) -> seasoned actor (12627ms) What movies did Judi Dench play in? phenomenal actress -9.744701417269521 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, phenomenal actress) -> phenomenal actress (12627ms) What movies did Judi Dench play in? Mrs Henderson Presents -9.744835792991715 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, instance of, judus dench) -> (Mrs Henderson Presents, Instance Of, 2005 film starring Dame Judi Dench) -> Mrs Henderson Presents (12627ms) What movies did Judi Dench play in? marvellous actress -9.745171448645356 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, marvellous actress) -> marvellous actress (12722ms) What movies did Judi Dench play in? extraordinary actress -9.746477088632233 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, extraordinary actress) -> extraordinary actress (12722ms) What movies did Judi Dench play in? distinguished performer -9.7476452908957 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, distinguished performer) -> distinguished performer (12721ms) What movies did Judi Dench play in? veteran actress -9.749088368605985 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, veteran actress) -> veteran actress (12721ms) What movies did Judi Dench play in? divine actor -9.749088368605985 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, instance, $x) -> (Judi Dench, Instance Of, divine actor) -> divine actor (12722ms) What movies did Judi Dench play in? great British acting -9.752121551879847 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is a byword for, great British acting) -> great British acting (6669ms) What movies did Judi Dench play in? The Hollywood star -9.771312632588259 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (The Hollywood star, was accompanied by, Judi Dench) -> The Hollywood star (6669ms) What movies did Judi Dench play in? Word -9.792359504199657 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (Word, was, Judi Dench) -> Word (6669ms) What movies did Judi Dench play in? Mrs Henderson -9.796081356295598 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (Mrs Henderson, is played by, Judi Dench) -> Mrs Henderson (6669ms) What movies did Judi Dench play in? a great dame -9.818205824332955 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, a great dame) -> a great dame (6669ms) What movies did Judi Dench play in? a rare villainous role -9.827813532862123 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is brilliant as ever in, a rare villainous role) -> a rare villainous role (6669ms) What movies did Judi Dench play in? Well the main character -9.855307597306078 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (Well the main character, is, Judi Dench?s character) -> Well the main character (6669ms) What movies did Judi Dench play in? the London cold -9.869257925125488 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, are due to brave, the London cold) -> the London cold (7159ms) What movies did Judi Dench play in? a wonderful addition -9.890097691915535 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, would be, a wonderful addition) -> a wonderful addition (7159ms) What movies did Judi Dench play in? Lady Catherine De Bourgh -9.895012595284477 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, have, $x) -> (Judi Dench, has a small part as, Lady Catherine De Bourgh) -> Lady Catherine De Bourgh (7159ms) What movies did Judi Dench play in? M Widescreen Stereo Repeat Graham -9.915349093318879 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (M Widescreen Stereo Repeat Graham, is joined by, Dame Judi Dench) -> M Widescreen Stereo Repeat Graham (7159ms) What movies did Judi Dench play in? a wonderful actress -9.921756686336012 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, a wonderful actress) -> a wonderful actress (7159ms) What movies did Judi Dench play in? a fellow teacher -9.943380255279216 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Academy Award winner Judi Dench, plays, a fellow teacher) -> a fellow teacher (9168ms) What movies did Judi Dench play in? an absolute treat -9.963345092612986 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, was, an absolute treat) -> an absolute treat (7159ms) What movies did Judi Dench play in? HQ . Rimington -9.96932526144872 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (HQ . Rimington, is the inspiration for, Judi Dench?s ?M?) -> HQ . Rimington (7159ms) What movies did Judi Dench play in? the 40 readings -10.010319056828521 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (the 40 readings, are, Judi Dench) -> the 40 readings (7159ms) What movies did Judi Dench play in? Blunt -10.06102040616875 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (Blunt, was starring, opposite Judi Dench) -> Blunt (7316ms) What movies did Judi Dench play in? three scenes -10.065016000426366 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, have, $x) -> (Judi Dench, won having only been in, three scenes) -> three scenes (7316ms) What movies did Judi Dench play in? Aereon -10.070268647216448 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, Aereon) -> Aereon (7316ms) What movies did Judi Dench play in? a great actress -10.076391573697736 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, a great actress) -> a great actress (7316ms) What movies did Judi Dench play in? Jean -10.096523526146704 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, Jean) -> Jean (7316ms) What movies did Judi Dench play in? the Giant -10.108062938330786 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is the voice of, the Giant) -> the Giant (7316ms) What movies did Judi Dench play in? a different timeline -10.120237452710722 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is M in, a different timeline) -> a different timeline (7316ms) What movies did Judi Dench play in? degenerative eye condition -10.135548442796546 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, have, $x) -> (Judi Dench, has, degenerative eye condition) -> degenerative eye condition (7345ms) What movies did Judi Dench play in? Bond -10.199935151933946 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is back as, Bond) -> Bond (7345ms) What movies did Judi Dench play in? Murdoch -10.229220434018286 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, plays, Murdoch) -> Murdoch (9168ms) What movies did Judi Dench play in? a star -10.234901875024342 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, a star) -> a star (7345ms) What movies did Judi Dench play in? Tura -10.248173784628795 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (Tura, was n?t, Dame Judi Dench) -> Tura (7345ms) What movies did Judi Dench play in? Queen Elizabeth -10.276529849560431 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, played, Queen Elizabeth) -> Queen Elizabeth (9168ms) What movies did Judi Dench play in? Patron -10.382504398882116 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, have, $x) -> (Dame Judi Dench, has agreed to be, Patron) -> Patron (7345ms) What movies did Judi Dench play in? Dance -10.396494072908345 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (Dance, is pictured here with, Judi Dench) -> Dance (7345ms) What movies did Judi Dench play in? Graham Norton show -10.403260291778082 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is set to appear on tonight?s, Graham Norton show) -> Graham Norton show (7345ms) What movies did Judi Dench play in? Skyfall -10.432903656172162 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (Skyfall, will be joined by, Dame Judi Dench) -> Skyfall (7345ms) What movies did Judi Dench play in? class and elegance -10.435378580102146 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is the embodiment of, class and elegance) -> class and elegance (7372ms) What movies did Judi Dench play in? a brave performance -10.459010557443449 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench?s Victoria, is, a brave performance) -> a brave performance (7372ms) What movies did Judi Dench play in? Hoover 's mother -10.503747840423596 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, plays, Hoover 's mother) -> Hoover 's mother (9168ms) What movies did Judi Dench play in? the top -10.708364891687879 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, have, $x) -> (Dame Judi Dench, has been at, the top) -> the top (7372ms) What movies did Judi Dench play in? the older Murdoch -10.786675969417963 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, played, the older Murdoch) -> the older Murdoch (9168ms) What movies did Judi Dench play in? the mature version -10.811433557564731 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, plays, the mature version) -> the mature version (9168ms) What movies did Judi Dench play in? The movie -10.816127682256223 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (The movie, will be the final appearance of, Judi Dench) -> The movie (7372ms) What movies did Judi Dench play in? the Queen -10.82092956071668 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is fantastic as ever as, the Queen) -> the Queen (7372ms) What movies did Judi Dench play in? back as M -10.90184510376083 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, back as M) -> back as M (7396ms) What movies did Judi Dench play in? the part -10.905471831169844 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, play, the part) -> the part (9194ms) What movies did Judi Dench play in? the character -10.95853150978803 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (Judi Dench, plays, the character) -> the character (9194ms) What movies did Judi Dench play in? The queen -10.977500788902756 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (The queen, was played by, Judi Dench) -> The queen (7396ms) What movies did Judi Dench play in? M in a different timeline -11.03627140692916 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, M in a different timeline) -> M in a different timeline (7396ms) What movies did Judi Dench play in? 1934 -11.130181159803133 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, was born in, 1934) -> 1934 (7396ms) What movies did Judi Dench play in? the cast? -11.13427224083227 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, was in, the cast?) -> the cast? (7396ms) What movies did Judi Dench play in? continuity -11.148512062355572 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (continuity, is, Judi Dench) -> continuity (7396ms) What movies did Judi Dench play in? The older teacher -11.19502140522491 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (The older teacher, is played masterfully by, Judi Dench) -> The older teacher (7396ms) What movies did Judi Dench play in? the finest actors -11.219739975846998 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is one of, the finest actors) -> the finest actors (7507ms) What movies did Judi Dench play in? once again -11.23846655326468 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is also excellent, once again) -> once again (7508ms) What movies did Judi Dench play in? the movie -11.249492380982444 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> who do judus dench play ? -> $x: (judus dench, play, $x) -> (( Judi Dench, played her so tenderly in, the movie) -> the movie (9194ms) What movies did Judi Dench play in? fact -11.257953988957087 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (fact, be replacing, Judi Dench) -> fact (7508ms) What movies did Judi Dench play in? friends -11.28582529659152 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, have, $x) -> (British actress Judi Dench, has said, friends) -> friends (7508ms) What movies did Judi Dench play in? The host -11.3134040910648 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (The host, is joined by, Oscar-winning actress Judi Dench) -> The host (7508ms) What movies did Judi Dench play in? The special feature -11.314713153684206 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (The special feature, is, Judi Dench) -> The special feature (7508ms) What movies did Judi Dench play in? the biggest casting surprise -11.317728464725596 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (the biggest casting surprise, is, Judi Dench) -> the biggest casting surprise (7507ms) What movies did Judi Dench play in? the stars -11.334034150822308 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, were among, the stars) -> the stars (7534ms) What movies did Judi Dench play in? the last three films -11.33455790929684 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, have, $x) -> (Judi Dench, has done a solid job in, the last three films) -> the last three films (7534ms) What movies did Judi Dench play in? the cover photo -11.33636115808506 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (the cover photo, was of, Judi Dench) -> the cover photo (7534ms) What movies did Judi Dench play in? the biggest scene stealer -11.353096342387818 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (the biggest scene stealer, was, Judi Dench) -> the biggest scene stealer (7534ms) What movies did Judi Dench play in? the guy -11.360392026328935 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (the guy, would be, a bald Judi Dench) -> the guy (7534ms) What movies did Judi Dench play in? the first half -11.375684689583943 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (the first half, was, Dame Judi Dench performing ?Send) -> the first half (7534ms) What movies did Judi Dench play in? the best M -11.396059356630989 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, the best M) -> the best M (7534ms) What movies did Judi Dench play in? the supporting players -11.396188761451713 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, are just a few of, the supporting players) -> the supporting players (7599ms) What movies did Judi Dench play in? The same -11.416401247332658 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (The same, is true of, Judi Dench) -> The same (7598ms) What movies did Judi Dench play in? The second two -11.430543047892115 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (The second two, were, Judi Dench) -> The second two (7598ms) What movies did Judi Dench play in? the best BBC costume drama I?ve -11.440723074708806 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, the best BBC costume drama I?ve) -> the best BBC costume drama I?ve (7598ms) What movies did Judi Dench play in? the film?s narrator -11.472229793289621 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is expected to serve as, the film?s narrator) -> the film?s narrator (7598ms) What movies did Judi Dench play in? the leather chair -11.491682104922926 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, will still be sitting in, the leather chair) -> the leather chair (7598ms) What movies did Judi Dench play in? actor -11.494850680709126 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is an, actor) -> actor (7598ms) What movies did Judi Dench play in? the musical alive -11.507597670951846 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, have, $x) -> (Dame Judi Dench, have kept interest in, the musical alive) -> the musical alive (7733ms) What movies did Judi Dench play in? the impressive roll call -11.525611775049114 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (the impressive roll call, are, Dame Judi Dench) -> the impressive roll call (7733ms) What movies did Judi Dench play in? The voiceover -11.529113198763866 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (The voiceover, is spoken by, the rather lovely Judi Dench) -> The voiceover (7733ms) What movies did Judi Dench play in? the seriousness -11.547280431119725 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, have, $x) -> (Judi Dench, has clarified, the seriousness) -> the seriousness (7733ms) What movies did Judi Dench play in? The only problem -11.557175871690625 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (The only problem, really is, the Judi Dench 'M') -> The only problem (7733ms) What movies did Judi Dench play in? the script -11.579239529720862 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, have, $x) -> (Dame Judi Dench, has to read, the script) -> the script (7733ms) What movies did Judi Dench play in? the cast -11.586392821326644 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (the cast, are, Judi Dench) -> the cast (7733ms) What movies did Judi Dench play in? the franchise -11.61798683840934 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is leaving, the franchise) -> the franchise (7811ms) What movies did Judi Dench play in? The only other known version -11.639175610057599 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (The only other known version, is by, Judi Dench) -> The only other known version (7811ms) What movies did Judi Dench play in? the award ceremony -11.645365020269866 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (the award ceremony, was also attended by, Judi Dench) -> the award ceremony (7811ms) What movies did Judi Dench play in? the trip -11.667833413624093 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (the trip, was meeting, Dame Judi Dench) -> the trip (7811ms) What movies did Judi Dench play in? the film -11.675032173911838 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is definitely in, the film) -> the film (7811ms) What movies did Judi Dench play in? regulars -11.776273596160244 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, are, regulars) -> regulars (7811ms) What movies did Judi Dench play in? roles -11.803230003788176 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, have, $x) -> (Judi Dench, have supporting, roles) -> roles (8137ms) What movies did Judi Dench play in? the end -11.811393658835634 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench?s house, was at, the end) -> the end (8137ms) What movies did Judi Dench play in? the villain -11.838370288884036 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench?s character, is unequivocably, the villain) -> the villain (8137ms) What movies did Judi Dench play in? history -11.89102074657293 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (history, were really, Judi Dench) -> history (8137ms) What movies did Judi Dench play in? statements -11.896200701305126 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, have, $x) -> (Judi Dench, has released, statements) -> statements (8137ms) What movies did Judi Dench play in? resistance -11.923934622425993 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (resistance, was, Judi Dench) -> resistance (8137ms) What movies did Judi Dench play in? tough -11.941618561257103 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (tough, was, Judi Dench) -> tough (8137ms) What movies did Judi Dench play in? guest -11.95753412728602 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (guest, was, Judi Dench) -> guest (8327ms) What movies did Judi Dench play in? the picture -11.961214394585436 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is her dependably remarkable self in, the picture) -> the picture (8326ms) What movies did Judi Dench play in? part -11.996046604164217 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (part, are, Judi Dench) -> part (8327ms) What movies did Judi Dench play in? board -12.01545941509909 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is also on, board) -> board (8326ms) What movies did Judi Dench play in? good -12.036029160933094 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (good, is, Dame Judi Dench) -> good (8327ms) What movies did Judi Dench play in? release -12.05033535815322 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is set for, release) -> release (8327ms) What movies did Judi Dench play in? screen -12.096154626742084 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is on, screen) -> screen (8327ms) What movies did Judi Dench play in? purists -12.273999299946524 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: ($x, be, judus dench) -> (purists, are upset over, the new Judi Dench narration) -> purists (8511ms) What movies did Judi Dench play in? performances -12.331575106853748 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, have, $x) -> (Dame Judi Dench, has given an astonishing range of, performances) -> performances (8511ms) What movies did Judi Dench play in? delightful -12.632340365687716 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, delightful) -> delightful (8511ms) What movies did Judi Dench play in? the best M ever -12.827679880480723 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, the best M ever) -> the best M ever (8510ms) What movies did Judi Dench play in? wonderful -13.18681321507745 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, wonderful) -> wonderful (8535ms) What movies did Judi Dench play in? excellent -13.22168915813158 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, excellent) -> excellent (8535ms) What movies did Judi Dench play in? great -13.236163982321756 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, was, great) -> great (8535ms) What movies did Judi Dench play in? amazing -13.236163982321756 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, amazing) -> amazing (8535ms) What movies did Judi Dench play in? marvellous -13.256565101185709 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, marvellous) -> marvellous (8535ms) What movies did Judi Dench play in? superb -13.256565101185709 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, superb) -> superb (8558ms) What movies did Judi Dench play in? perfect -13.256565101185709 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, perfect) -> perfect (8535ms) What movies did Judi Dench play in? fabulous -13.256565101185709 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, was, fabulous) -> fabulous (8558ms) What movies did Judi Dench play in? fantastic -13.256565101185709 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, be, $x) -> (Judi Dench, is, fantastic) -> fantastic (8535ms) What movies did Judi Dench play in? date -13.687235969266375 What movies did Judi Dench play in? -> what movie do [ judus dench ] play in ? -> how many movie do judus dench have ? -> $x: (judus dench, movie, $x) -> $x: (judus dench, have, $x) -> (the Golden Gun and Judi Dench, has appeared to, date) -> date (8558ms) What is the oldest sports trophy? The America?s Cup -9.89048081916495 What is the oldest sports trophy? -> what be [ the oldest sport trophy ] ? -> what be the mening of the oldest sport trophy ? -> $x: (the oldest sport trophy, mening, $x) -> $x: ($x, be, the oldest sport trophy) -> (The America?s Cup, is, the world?s oldest sporting trophy) -> The America?s Cup (6652ms) What is the oldest sports trophy? The Stanley Cup -10.831733265809206 What is the oldest sports trophy? -> what be [ the oldest sport trophy ] ? -> what be the mening of the oldest sport trophy ? -> $x: (the oldest sport trophy, mening, $x) -> $x: ($x, be, the oldest sport trophy) -> (The Stanley Cup, is, the oldest trophy in professional sports) -> The Stanley Cup (6652ms) What is the oldest sports trophy? back in Europe -10.975038098004617 What is the oldest sports trophy? -> what be [ the oldest sport trophy ] ? -> what be the mening of the oldest sport trophy ? -> $x: (the oldest sport trophy, mening, $x) -> $x: (the oldest sport trophy, be, $x) -> (The oldest trophy in the world of sports, is, back in Europe) -> back in Europe (6652ms) What is the oldest sports trophy? the cup -11.368185619840165 What is the oldest sports trophy? -> what be [ the oldest sport trophy ] ? -> what be the mening of the oldest sport trophy ? -> $x: (the oldest sport trophy, mening, $x) -> $x: ($x, be, the oldest sport trophy) -> (the cup, is, the oldest professional sports trophy) -> the cup (6652ms) What is the oldest sports trophy? the Americas Cup -11.565504318002912 What is the oldest sports trophy? -> what be [ the oldest sport trophy ] ? -> what be the mening of the oldest sport trophy ? -> $x: (the oldest sport trophy, mening, $x) -> $x: ($x, be, the oldest sport trophy) -> (the Americas Cup, is, the oldest trophy in international sport) -> the Americas Cup (6652ms) What is the oldest sports trophy? the winning team -11.566732975008797 What is the oldest sports trophy? -> what be [ the oldest sport trophy ] ? -> what be the mening of the oldest sport trophy ? -> $x: (the oldest sport trophy, mening, $x) -> $x: ($x, be, the oldest sport trophy) -> (the winning team, is, the oldest professional sports trophy) -> the winning team (6652ms) What is the oldest sports trophy? the America 's Cup -11.589895738420934 What is the oldest sports trophy? -> what be [ the oldest sport trophy ] ? -> what be the mening of the oldest sport trophy ? -> $x: (the oldest sport trophy, mening, $x) -> $x: ($x, be, the oldest sport trophy) -> (the America 's Cup, is, the oldest trophy in international sport) -> the America 's Cup (6652ms) What is the oldest sports trophy? hockey -12.086615872788457 What is the oldest sports trophy? -> what be [ the oldest sport trophy ] ? -> what be the mening of the oldest sport trophy ? -> $x: (the oldest sport trophy, mening, $x) -> $x: ($x, be, the oldest sport trophy) -> (hockey, is, the oldest professional sports trophy) -> hockey (6683ms) Who are professional female boxers? four-time Golden Gloves champ -4.389952791183834 Who are professional female boxers? -> $x: (professional female boxers, instance of, $x) -> (Professional female boxer Keisher Fire McLeod-Wells, Instance Of, four-time Golden Gloves champ) -> four-time Golden Gloves champ (623ms) Who are professional female boxers? One participant -8.358570312825087 Who are professional female boxers? -> who be [ professional female boxer ] ? -> who be be professional female boxer ? -> $x: ($x, be be, professional female boxer) -> (One participant, was, a professional female boxer) -> One participant (2331ms) Who are professional female boxers? the tigress -9.816041690430417 Who are professional female boxers? -> who be [ professional female boxer ] ? -> who be be professional female boxer ? -> $x: ($x, be be, professional female boxer) -> (the tigress, is, a professional female boxer) -> the tigress (2331ms) What peace treaty ended WWI? Versailles Treaty -2.4216377369041933 What peace treaty ended WWI? -> $x: ($x, instance of, peace treaty) ($x, ended, WWI) -> (Versailles Treaty, Instance Of, peace treaty) (the Versailles Treaty, ended, WWI) -> Versailles Treaty (1109ms) What peace treaty ended WWI? Versailles -3.0200229868224975 What peace treaty ended WWI? -> $x: ($x, instance of, peace treaty) ($x, ended, WWI) -> (Versailles, Instance Of, peace treaty) (Versailles, ended, WWI) -> Versailles (1109ms) What are geckos? exotic pet -5.226783820456167 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, exotic pet) -> exotic pet (2513ms) What are geckos? land-based animal -5.279134843465684 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, land-based animal) -> land-based animal (2513ms) What are geckos? small pet -5.330989259992146 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, small pet) -> small pet (2513ms) What are geckos? unusual pet -5.354942108386276 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, unusual pet) -> unusual pet (2513ms) What are geckos? belly-heating animal -5.3648011674571325 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, belly-heating animal) -> belly-heating animal (2513ms) What are geckos? cold-blooded animal -5.369130395072335 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, cold-blooded animal) -> cold-blooded animal (2513ms) What are geckos? independent pet -5.482641371762131 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, independent pet) -> independent pet (2669ms) What are geckos? young man -5.51670341596394 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, young man) -> young man (2669ms) What are geckos? type of internet browser -5.582604888726742 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, type of internet browser) -> type of internet browser (2669ms) What are geckos? symbol of good luck -5.606106410941914 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, symbol of good luck) -> symbol of good luck (2669ms) What are geckos? housing medium size arboreal reptile -5.6076989291832735 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, housing medium size arboreal reptile) -> housing medium size arboreal reptile (2670ms) What are geckos? small tree dwelling reptile -5.6859271930891 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, small tree dwelling reptile) -> small tree dwelling reptile (2719ms) What are geckos? companion and exotic animal -5.6859271930891 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, companion and exotic animal) -> companion and exotic animal (2670ms) What are geckos? innovative theater and music company -5.712188473527705 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, innovative theater and music company) -> innovative theater and music company (2719ms) What are geckos? interesting small lizard -5.743840083236876 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, interesting small lizard) -> interesting small lizard (2719ms) What are geckos? quiet and relaxing resort -5.745090603648385 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko's, Instance Of, quiet and relaxing resort) -> quiet and relaxing resort (2719ms) What are geckos? fowl and pet -5.752960842084011 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, fowl and pet) -> fowl and pet (2719ms) What are geckos? family fun center offering entertainment and game -5.752960842084011 What are geckos? -> $x: (geckos, instance of, $x) -> (Geckos, Instance Of, family fun center offering entertainment and game) -> family fun center offering entertainment and game (2743ms) What are geckos? koi fish reptile -5.752960842084011 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, koi fish reptile) -> koi fish reptile (2719ms) What are geckos? optimum adhesion animal -5.788734038672018 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, optimum adhesion animal) -> optimum adhesion animal (2743ms) What are geckos? bearded dragon lizard -5.788734038672018 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, bearded dragon lizard) -> bearded dragon lizard (2743ms) What are geckos? stepper motor controller -5.788734038672018 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, stepper motor controller) -> stepper motor controller (2743ms) What are geckos? digital marketing company -5.795739273940905 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko+, Instance Of, digital marketing company) -> digital marketing company (2743ms) What are geckos? wood-paneled Western-style pub -5.797854797519154 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko's, Instance Of, wood-paneled Western-style pub) -> wood-paneled Western-style pub (2761ms) What are geckos? self adhering, UV resistant textile -5.797854797519154 What are geckos? -> $x: (geckos, instance of, $x) -> (GECKO, Instance Of, self adhering, UV resistant textile) -> self adhering, UV resistant textile (2761ms) What are geckos? safe, family friendly center -5.797854797519154 What are geckos? -> $x: (geckos, instance of, $x) -> (Geckos, Instance Of, safe, family friendly center) -> safe, family friendly center (2762ms) What are geckos? crochet stitch/pattern -5.797854797519154 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, crochet stitch/pattern) -> crochet stitch/pattern (2761ms) What are geckos? pad-bearing lizard -5.797854797519154 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, pad-bearing lizard) -> pad-bearing lizard (2743ms) What are geckos? Broad-tailed Gecko -5.797854797519154 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, Broad-tailed Gecko) -> Broad-tailed Gecko (2761ms) What are geckos? small and agile lizard -5.797854797519154 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, small and agile lizard) -> small and agile lizard (2781ms) What are geckos? common type of reptile -5.797854797519154 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, common type of reptile) -> common type of reptile (2762ms) What are geckos? invertebrate and small vertebrate -5.800508194990915 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, invertebrate and small vertebrate) -> invertebrate and small vertebrate (2781ms) What are geckos? type of reptile -5.8041821303760965 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, type of reptile) -> type of reptile (2781ms) What are geckos? cheeky little character -5.805185103732358 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, cheeky little character) -> cheeky little character (2781ms) What are geckos? symbol of transformation -5.809605558626739 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, symbol of transformation) -> symbol of transformation (2781ms) What are geckos? smoke free zone -5.819579785200518 What are geckos? -> $x: (geckos, instance of, $x) -> (GECKOS, Instance Of, smoke free zone) -> smoke free zone (2782ms) What are geckos? small reptile and amphibian -5.821356319734325 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko's, Instance Of, small reptile and amphibian) -> small reptile and amphibian (2796ms) What are geckos? exotic reptile -5.857031551345124 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, exotic reptile) -> exotic reptile (2797ms) What are geckos? Movember sponsor -6.001065304633346 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko's, Instance Of, Movember sponsor) -> Movember sponsor (2796ms) What are geckos? nocturnal lizard -6.019245802871927 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, nocturnal lizard) -> nocturnal lizard (2797ms) What are geckos? wild animal -6.020650382710059 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, wild animal) -> wild animal (2797ms) What are geckos? living animal -6.023042202524807 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko's, Instance Of, living animal) -> living animal (2797ms) What are geckos? pet reptile -6.043000973422939 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, pet reptile) -> pet reptile (2831ms) What are geckos? Australian company -6.053779468065857 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, Australian company) -> Australian company (2831ms) What are geckos? quality brand -6.091675815228763 What are geckos? -> $x: (geckos, instance of, $x) -> (GECKO, Instance Of, quality brand) -> quality brand (2831ms) What are geckos? vertebrate pest -6.115687550456705 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, vertebrate pest) -> vertebrate pest (2831ms) What are geckos? taxonomic group -6.128071355503611 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, taxonomic group) -> taxonomic group (2831ms) What are geckos? animal product -6.131265236352489 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, animal product) -> animal product (2831ms) What are geckos? good suggestion -6.1338295744736495 What are geckos? -> $x: (geckos, instance of, $x) -> (Geckos, Instance Of, good suggestion) -> good suggestion (2849ms) What are geckos? yang symbol -6.155023713973003 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, yang symbol) -> yang symbol (2849ms) What are geckos? healthiest reptile -6.155023713973003 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, healthiest reptile) -> healthiest reptile (2849ms) What are geckos? club animal -6.155023713973003 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, club animal) -> club animal (2869ms) What are geckos? native reptile -6.155023713973003 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, native reptile) -> native reptile (2849ms) What are geckos? trustworthy reptile -6.155023713973003 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, trustworthy reptile) -> trustworthy reptile (2849ms) What are geckos? critter pattern -6.155023713973003 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, critter pattern) -> critter pattern (2849ms) What are geckos? nasty creature -6.156702394021792 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, nasty creature) -> nasty creature (2869ms) What are geckos? live creature -6.157351694877768 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, live creature) -> live creature (2869ms) What are geckos? living creature -6.158940634240056 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, living creature) -> living creature (2869ms) What are geckos? land animal -6.163249246503173 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, land animal) -> land animal (2869ms) What are geckos? specialist program -6.166214914911113 What are geckos? -> $x: (geckos, instance of, $x) -> (Geckos, Instance Of, specialist program) -> specialist program (2869ms) What are geckos? social animal -6.166325971896797 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, social animal) -> social animal (2890ms) What are geckos? adrenaline activity -6.16987536943657 What are geckos? -> $x: (geckos, instance of, $x) -> (Geckoing, Instance Of, adrenaline activity) -> adrenaline activity (2890ms) What are geckos? fine place -6.173368426457353 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko's, Instance Of, fine place) -> fine place (2890ms) What are geckos? onomatopoeic word -6.174005711930979 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, onomatopoeic word) -> onomatopoeic word (2890ms) What are geckos? friendly place -6.179971765469216 What are geckos? -> $x: (geckos, instance of, $x) -> (Geckos, Instance Of, friendly place) -> friendly place (2890ms) What are geckos? wildlife species -6.183362774398162 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, wildlife species) -> wildlife species (2890ms) What are geckos? small reptile -6.185869460501503 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, small reptile) -> small reptile (2952ms) What are geckos? valuable tool -6.186940043126667 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, valuable tool) -> valuable tool (2952ms) What are geckos? weekly club -6.187925844093683 What are geckos? -> $x: (geckos, instance of, $x) -> (Geckos, Instance Of, weekly club) -> weekly club (2952ms) What are geckos? friendly restaurant -6.189296764854203 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko's, Instance Of, friendly restaurant) -> friendly restaurant (2952ms) What are geckos? developer tool -6.190786897181464 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, developer tool) -> developer tool (2953ms) What are geckos? adventure activity -6.1921400992250515 What are geckos? -> $x: (geckos, instance of, $x) -> (geckoing, Instance Of, adventure activity) -> adventure activity (2952ms) What are geckos? native lizard -6.2020267584033455 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, native lizard) -> native lizard (3056ms) What are geckos? 5 letter word -6.206683201865486 What are geckos? -> $x: (geckos, instance of, $x) -> (GECKO, Instance Of, 5 letter word) -> 5 letter word (3056ms) What are geckos? fairly good pet -6.390704122582999 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, fairly good pet) -> fairly good pet (3056ms) What are geckos? plant and animal -6.401378006320934 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, plant and animal) -> plant and animal (3057ms) What are geckos? perfectly harmless pet -6.411267953602 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, perfectly harmless pet) -> perfectly harmless pet (3056ms) What are geckos? insect and animal -6.552190803636119 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, insect and animal) -> insect and animal (3152ms) What are geckos? animal and bird -6.558544479234089 What are geckos? -> $x: (geckos, instance of, $x) -> (Geckos, Instance Of, animal and bird) -> animal and bird (3152ms) What are geckos? lizard use -7.978013630932881 What are geckos? -> $x: (geckos, instance of, $x) -> $x: (geckos, be the type of, $x) -> (2010 Gecko, is the most popular type of, lizard use) -> lizard use (3356ms) What are geckos? name -8.110016904744288 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, name) -> name (3356ms) What are geckos? predator -8.137852577020169 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, predator) -> predator (3356ms) What are geckos? place -8.236771620443953 What are geckos? -> $x: (geckos, instance of, $x) -> (Geckoes, Instance Of, place) -> place (3364ms) What are geckos? amphibian -8.263026684132953 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, amphibian) -> amphibian (3364ms) What are geckos? word -8.275607258608503 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, word) -> word (3364ms) What are geckos? system -8.282009593877394 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, system) -> system (3364ms) What are geckos? shape -8.32745147540515 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, shape) -> shape (3364ms) What are geckos? brand -8.333763027989463 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, brand) -> brand (3364ms) What are geckos? program -8.349208498256019 What are geckos? -> $x: (geckos, instance of, $x) -> (GECKO, Instance Of, program) -> program (3371ms) What are geckos? object -8.36916630418202 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, object) -> object (3371ms) What are geckos? herps -8.395484360531205 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, herps) -> herps (3371ms) What are geckos? client -8.403647083911464 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, client) -> client (3371ms) What are geckos? enemy -8.405085084772999 What are geckos? -> $x: (geckos, instance of, $x) -> (Geckos, Instance Of, enemy) -> enemy (3371ms) What are geckos? case -8.405309074065126 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, case) -> case (3371ms) What are geckos? creature -8.406947258676437 What are geckos? -> $x: (geckos, instance of, $x) -> (gecko, Instance Of, creature) -> creature (3378ms) What are geckos? pattern -8.415219813342539 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, pattern) -> pattern (3378ms) What are geckos? option -8.416294526576173 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, option) -> option (3378ms) What are geckos? expert -8.426470825981593 What are geckos? -> $x: (geckos, instance of, $x) -> (Geckos, Instance Of, expert) -> expert (3378ms) What are geckos? term -8.431409548165028 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, term) -> term (3377ms) What are geckos? device -8.431837665509029 What are geckos? -> $x: (geckos, instance of, $x) -> (Gecko, Instance Of, device) -> device (3387ms) What are geckos? Pets -8.551955602579117 What are geckos? -> $x: (geckos, instance of, $x) -> $x: (geckos, be an animal that prey on, $x) -> (Geckos, is an animal that preys on, Pets) -> Pets (3387ms) What are geckos? What Is Narrative Therapy? -9.726542992207118 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition, gecko) -> (What Is Narrative Therapy?, Editions, What Is Narrative Therapy? (Gecko 2000)) -> What Is Narrative Therapy? (7888ms) What are geckos? PNG -9.762810344801014 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, are, PNG) -> PNG (6273ms) What are geckos? ChatZilla -9.852110599509224 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (ChatZilla, are using, Gecko) -> ChatZilla (6274ms) What are geckos? SpiderMonkey -9.891313137920468 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (SpiderMonkey, is, Gecko) -> SpiderMonkey (6274ms) What are geckos? WebKit -10.039238041026316 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (WebKit, is further along than, Gecko) -> WebKit (6274ms) What are geckos? G is for Gecko -10.185999996507357 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition, $x) -> (G is for Gecko, Editions, G is for Gecko) -> G is for Gecko (8190ms) What are geckos? KompoZer -10.207334288833328 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (KompoZer, is based on, Gecko) -> KompoZer (6274ms) What are geckos? Amit Lahav -10.314062642314948 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (Amit Lahav, are, Gecko) -> Amit Lahav (6274ms) What are geckos? Trouble Is My Beeswax -10.32213540518891 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition, gecko) -> (Trouble Is My Beeswax, Editions, Trouble Is My Beeswax (Chet Gecko)) -> Trouble Is My Beeswax (7888ms) What are geckos? bug -10.339478426707718 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (the wild giant day geckos, will eat any kind of, bug) -> bug (3862ms) What are geckos? The poison -10.34391789223317 What are geckos? -> $x: (geckos, instance of, $x) -> $x: ($x, drug, geckos) -> (The poison, drugged, the gecko) -> The poison (3416ms) What are geckos? Tech Briefcase -10.360925154000606 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, Tech Briefcase) -> Tech Briefcase (6358ms) What are geckos? thinking Safari -10.36336559008232 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (thinking Safari, was actually, Gecko) -> thinking Safari (6358ms) What are geckos? a new style -10.372923149189166 What are geckos? -> what be [ gecko ] ? -> what be the definition of gecko ? -> $x: (gecko, definition, $x) -> (Gecko Fur, is our inaccurate definition for, a new style) -> a new style (3505ms) What are geckos? a shame -10.464389882409888 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, a shame) -> a shame (6358ms) What are geckos? Evan Wells -10.470991677785214 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, game, gecko) -> (Evan Wells, Games Designed, Gex: Enter the Gecko) -> Evan Wells (7889ms) What are geckos? Itaewon -10.499032726737195 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (Itaewon, is, Gecko) -> Itaewon (6358ms) What are geckos? freeze-dried crickets -10.518206196294198 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (a leopard gecko, eat, freeze-dried crickets) -> freeze-dried crickets (3862ms) What are geckos? great ? -10.521464588578517 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Geckos, are, great ?) -> great ? (6358ms) What are geckos? Wendelin Van Draanen -10.526081061221916 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition, gecko) -> (Wendelin Van Draanen, Book editions published, Meet The Gecko) -> Wendelin Van Draanen (7889ms) What are geckos? Nvu -10.53859038572337 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (Nvu, is based on, Gecko) -> Nvu (6358ms) What are geckos? a homely -10.550092501937193 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, a homely) -> a homely (6416ms) What are geckos? a no-go -10.553260553246226 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, a no-go) -> a no-go (6416ms) What are geckos? Mozilla -10.55814878976841 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, Mozilla) -> Mozilla (6416ms) What are geckos? pre-Mozilla foundation -10.584207446200669 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko..., was, pre-Mozilla foundation) -> pre-Mozilla foundation (6416ms) What are geckos? Supported browsers -10.599575812886112 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (Supported browsers, are, Gecko) -> Supported browsers (6416ms) What are geckos? cross-platform -10.608047482551127 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, cross-platform) -> cross-platform (6416ms) What are geckos? Firefox -10.613094248142911 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (Firefox, is, Gecko) -> Firefox (6435ms) What are geckos? Webkit -10.618860526833865 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (Webkit, so is, Gecko) -> Webkit (6436ms) What are geckos? a cross-platform engine -10.638156246346453 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, a cross-platform engine) -> a cross-platform engine (6436ms) What are geckos? a Mozilla project -10.662310489994073 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, a Mozilla project) -> a Mozilla project (6435ms) What are geckos? the 'other creatures -10.668369881552723 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (the 'other creatures, are, geckos) -> the 'other creatures (6436ms) What are geckos? carnivorous , nocturnal reptiles -10.673516616006708 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Geckos, are, carnivorous , nocturnal reptiles) -> carnivorous , nocturnal reptiles (6436ms) What are geckos? a world-class rendering engine -10.674465423237354 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, a world-class rendering engine) -> a world-class rendering engine (6459ms) What are geckos? non-citrus fruits -10.677903193419514 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (Velvet Geckos, have also been known to eat, non-citrus fruits) -> non-citrus fruits (3863ms) What are geckos? incomplete and way -10.688897046490162 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, was, incomplete and way) -> incomplete and way (6460ms) What are geckos? n?t Android -10.703574138715261 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko?, is, n?t Android) -> n?t Android (6460ms) What are geckos? Roadkill Press -10.714333523826804 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition, gecko) -> (Roadkill Press, Book editions published, Geckos) -> Roadkill Press (9854ms) What are geckos? Gabriela Gecko -10.714333523826804 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition, gecko) -> (Gabriela Gecko, Editions, Gabriela Gecko: The Story of Belonging) -> Gabriela Gecko (8882ms) What are geckos? Heinemann Library -10.714333523826804 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition, gecko) -> (Heinemann Library, Book editions published, Geckos (Keeping Unusual Pets)) -> Heinemann Library (8882ms) What are geckos? Crave Entertainment -10.714333523826804 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, game, gecko) -> (Crave Entertainment, Games Published, Gex: Enter the Gecko) -> Crave Entertainment (9854ms) What are geckos? Microsoft Windows -10.714333523826804 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, game, gecko) -> (Microsoft Windows, Games On This Platform, Gex: Enter the Gecko) -> Microsoft Windows (8373ms) What are geckos? Gecko Blaster -10.714333523826804 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, game, gecko) -> (Gecko Blaster, Game, Gecko Blaster) -> Gecko Blaster (9854ms) What are geckos? Crystal Dynamics -10.714333523826804 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, game, gecko) -> (Crystal Dynamics, Games Developed, Gex 3: Deep Cover Gecko) -> Crystal Dynamics (9818ms) What are geckos? Realtime Associates -10.714333523826804 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, game, gecko) -> (Realtime Associates, Games Developed, Gex: Enter the Gecko) -> Realtime Associates (8259ms) What are geckos? Firebase Gecko -10.714333523826804 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition, $x) -> (Firebase Gecko, Edition Of, Firebase Gecko) -> Firebase Gecko (9818ms) What are geckos? Midway Games -10.714333523826804 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, game, gecko) -> (Midway Games, Game Versions Published, Gex: Enter the Gecko) -> Midway Games (8312ms) What are geckos? Eidos Interactive -10.714333523826804 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, game, gecko) -> (Eidos Interactive, Game Versions Published, Gex: Enter the Gecko) -> Eidos Interactive (8882ms) What are geckos? Gecko Tails -10.714333523826804 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition, gecko) -> (Gecko Tails, Editions, Gecko Tails) -> Gecko Tails (9854ms) What are geckos? Gratuitous Games -10.714333523826804 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, game, gecko) -> (Gratuitous Games, Games Developed, Gex 3: Deep Cover Gecko) -> Gratuitous Games (8312ms) What are geckos? Phoenix Games -10.714333523826804 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, game, gecko) -> (Phoenix Games, Game Versions Published, Gecko Blaster) -> Phoenix Games (8190ms) What are geckos? Barking Geckos -10.714333523826804 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition, gecko) -> (Barking Geckos, Editions, Barking Geckos) -> Barking Geckos (9818ms) What are geckos? Jeffrey Zwelling -10.714333523826804 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, game, gecko) -> (Jeffrey Zwelling, Games Designed, Gex: Enter the Gecko) -> Jeffrey Zwelling (8373ms) What are geckos? Albino Gecko -10.714333523826804 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition, gecko) -> (Albino Gecko, Edition Of, Albino Gecko) -> Albino Gecko (9854ms) What are geckos? XPCOM Components -10.721776668593737 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (XPCOM Components, is about, Gecko) -> XPCOM Components (6459ms) What are geckos? more Netscape marketing hoopla -10.735475022745149 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, more Netscape marketing hoopla) -> more Netscape marketing hoopla (6460ms) What are geckos? an investment and holding company -10.736677223738823 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, an investment and holding company) -> an investment and holding company (6460ms) What are geckos? a Chinese traditional medicine -10.739011821051829 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, a Chinese traditional medicine) -> a Chinese traditional medicine (6481ms) What are geckos? an Australian based company -10.764653595599695 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Geckos, is, an Australian based company) -> an Australian based company (6482ms) What are geckos? interesting little creatures -10.767868403537426 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Geckos, are, interesting little creatures) -> interesting little creatures (6482ms) What are geckos? a girl -10.771141948135265 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, a girl) -> a girl (6482ms) What are geckos? Moderate Charts -10.777957514718144 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (Moderate Charts, are all courtesy of, Gecko) -> Moderate Charts (6482ms) What are geckos? a C GTK widget -10.778835903514254 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko#, is, a C GTK widget) -> a C GTK widget (6482ms) What are geckos? Chromium -10.784330761009697 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (Chromium, was also, Gecko) -> Chromium (6543ms) What are geckos? Mozilla?s new operating system -10.792063690247458 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, Mozilla?s new operating system) -> Mozilla?s new operating system (6544ms) What are geckos? a great rendering engine -10.792063690247458 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, a great rendering engine) -> a great rendering engine (6544ms) What are geckos? small , harmless lizards -10.79376754762469 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Geckos, are, small , harmless lizards) -> small , harmless lizards (6544ms) What are geckos? Leopard and Fat-Tailed Geckos -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition of, $x) -> (Leopard and Fat-Tailed Geckos (Reptile and Amphibian Keeper's Guide), Edition Of, Leopard and Fat-Tailed Geckos) -> Leopard and Fat-Tailed Geckos (10761ms) What are geckos? Language of the geckos and other stories -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition of, gecko) -> (Language of the geckos and other stories, Edition Of, Language of the geckos and other stories) -> Language of the geckos and other stories (10690ms) What are geckos? The Possum Always Rings Twice -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition of, $x) -> (The Possum Always Rings Twice: A Chet Gecko Mystery (Chet Gecko), Edition Of, The Possum Always Rings Twice) -> The Possum Always Rings Twice (10804ms) What are geckos? Farewell, My Lunchbag (Chet Gecko Mysteries -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition of, $x) -> (Farewell, My Lunchbag (Chet Gecko Mysteries (Hardcover)), Edition Of, Farewell, My Lunchbag (Chet Gecko Mysteries) -> Farewell, My Lunchbag (Chet Gecko Mysteries (11078ms) What are geckos? Square Enix Europe -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, game, gecko) -> (Square Enix Europe, Games Published, Gex 3: Deep Cover Gecko) -> Square Enix Europe (10433ms) What are geckos? The Gecko: An Owner's Guide to a Happy Healthy Pet -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition, gecko) -> (The Gecko: An Owner's Guide to a Happy Healthy Pet, Edition Of, The Gecko) -> The Gecko: An Owner's Guide to a Happy Healthy Pet (11078ms) What are geckos? Return of the dead gecko -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition, gecko) -> (Return of the dead gecko, Editions, Return of the dead gecko) -> Return of the dead gecko (10322ms) What are geckos? Gex: Enter the Gecko -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, game, $x) -> (Gex: Enter the Gecko, Game, Gex: Enter the Gecko) -> Gex: Enter the Gecko (10476ms) What are geckos? Geckos and Moths -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition of, $x) -> (Geckos and Moths, Edition Of, Geckos and Moths) -> Geckos and Moths (10630ms) What are geckos? The Ghost Geckos of Madagascar -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition of, $x) -> (The Ghost Geckos of Madagascar: A Further Revision of the Malagasy Leaf-Toed Geckos (Reptilia, Squamata, Gekkonidae) (Miscellaneous Publications, No 186), Edition Of, The Ghost Geckos of Madagascar) -> The Ghost Geckos of Madagascar (9970ms) What are geckos? Geckos and their Relatives (Dragons Series) -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition of, gecko) -> (Geckos and their Relatives (Dragons Series), Edition Of, Geckos and their Relatives) -> Geckos and their Relatives (Dragons Series) (10690ms) What are geckos? Go To Sleep, Gecko! -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition, $x) -> (Go To Sleep, Gecko!: A Balinese Folktale, Edition Of, Go To Sleep, Gecko!) -> Go To Sleep, Gecko! (10271ms) What are geckos? From gecko feet to sticky tape -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition of, gecko) -> (From gecko feet to sticky tape, Edition Of, From gecko feet to sticky tape) -> From gecko feet to sticky tape (10761ms) What are geckos? Right from the Gecko (Reigning Cats & Dogs Mysteries) -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition of, gecko) -> (Right from the Gecko (Reigning Cats & Dogs Mysteries), Edition Of, Right from the Gecko) -> Right from the Gecko (Reigning Cats & Dogs Mysteries) (10804ms) What are geckos? Go To Sleep, Gecko!: A Balinese Folktale -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition, $x) -> (Go To Sleep, Gecko!, Editions, Go To Sleep, Gecko!: A Balinese Folktale) -> Go To Sleep, Gecko!: A Balinese Folktale (10804ms) What are geckos? Geckos and their Relatives -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition of, $x) -> (Geckos and their Relatives (Dragons Series), Edition Of, Geckos and their Relatives) -> Geckos and their Relatives (10761ms) What are geckos? ny the Tokay gecko -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition, $x) -> (To ny the Tokay gecko, Edition Of, ny the Tokay gecko) -> ny the Tokay gecko (11118ms) What are geckos? To ny the Tokay gecko -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition of, gecko) -> (To ny the Tokay gecko, Edition Of, ny the Tokay gecko) -> To ny the Tokay gecko (10630ms) What are geckos? Murder, my tweet -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition of, $x) -> (Murder, my tweet: from the tattered casebook of Chet Gecko, private eye, Edition Of, Murder, my tweet) -> Murder, my tweet (10322ms) What are geckos? Remarks on some geckos from Southwest Asia -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition of, $x) -> (Remarks on some geckos from Southwest Asia: with descriptions of three new forms and a key to the genus Tropiocolotes, Edition Of, Remarks on some geckos from Southwest Asia) -> Remarks on some geckos from Southwest Asia (10065ms) What are geckos? The Gecko and Sticky in-- the villain's lair -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition of, gecko) -> (The Gecko and Sticky in-- the villain's lair, Edition Of, The Gecko and Sticky in-- the villain's lair) -> The Gecko and Sticky in-- the villain's lair (11078ms) What are geckos? The Guide to Owning a Leopard Gecko -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition of, $x) -> (The Guide to Owning a Leopard Gecko, Edition Of, The Guide to Owning a Leopard Gecko) -> The Guide to Owning a Leopard Gecko (10433ms) What are geckos? Geckos: facts & advice on care and breeding -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition of, gecko) -> (Geckos: facts & advice on care and breeding, Edition Of, Geckos) -> Geckos: facts & advice on care and breeding (10629ms) What are geckos? Remarks on some geckos from Southwest Asia: with descriptions of three new forms and a key to the genus Tropiocolotes -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition, $x) -> (Remarks on some geckos from Southwest Asia, Editions, Remarks on some geckos from Southwest Asia: with descriptions of three new forms and a key to the genus Tropiocolotes) -> Remarks on some geckos from Southwest Asia: with descriptions of three new forms and a key to the genus Tropiocolotes (10630ms) What are geckos? Baby Gecko's colors -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition of, $x) -> (Baby Gecko's colors, Edition Of, Baby Gecko's colors) -> Baby Gecko's colors (10690ms) What are geckos? Meet The Gecko -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition, $x) -> (Meet the Gecko (Shredderman (Paperback)), Edition Of, Meet The Gecko) -> Meet The Gecko (11116ms) What are geckos? Geckos: everything about selection, care, nutrition, diseases, breeding, and behavior -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition of, gecko) -> (Geckos: everything about selection, care, nutrition, diseases, breeding, and behavior, Edition Of, Geckos) -> Geckos: everything about selection, care, nutrition, diseases, breeding, and behavior (10105ms) What are geckos? PlayStation -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, game, gecko) -> (PlayStation, Games On This Platform, Gex: Enter the Gecko) -> PlayStation (10629ms) What are geckos? Dwarf geckos, rattlesnakes, and other reptiles -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition, gecko) -> (Dwarf geckos, rattlesnakes, and other reptiles, Editions, Dwarf geckos, rattlesnakes, and other reptiles) -> Dwarf geckos, rattlesnakes, and other reptiles (10690ms) What are geckos? Gecko Hide and Seek -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition of, $x) -> (Gecko Hide and Seek, Edition Of, Gecko Hide and Seek) -> Gecko Hide and Seek (11078ms) What are geckos? The Gecko's Foot: Bio-inspiration -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition of, $x) -> (The gecko's foot : bio-inspiration : engineered from nature, Edition Of, The Gecko's Foot: Bio-inspiration) -> The Gecko's Foot: Bio-inspiration (10761ms) What are geckos? Glen A. Schofield -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, game, gecko) -> (Glen A. Schofield, Games Designed, Gex: Enter the Gecko) -> Glen A. Schofield (11116ms) What are geckos? How the Gecko Lost His Tail -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition, $x) -> (How the Gecko Lost His Tail, Edition Of, How the Gecko Lost His Tail) -> How the Gecko Lost His Tail (11116ms) What are geckos? Breeding and Keeping Geckos -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition of, gecko) -> (Breeding and Keeping Geckos, Edition Of, Breeding and Keeping Geckos) -> Breeding and Keeping Geckos (11116ms) What are geckos? Geckoes: Biology, Husbandry, and Reproduction -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition of, gecko) -> (Geckoes: Biology, Husbandry, and Reproduction, Edition Of, Geckoes) -> Geckoes: Biology, Husbandry, and Reproduction (10690ms) What are geckos? Big Nap (Chet Gecko Mysteries -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition, gecko) -> (Big Nap (Chet Gecko Mysteries, Editions, Big Nap (Chet Gecko Mysteries (Paperback))) -> Big Nap (Chet Gecko Mysteries (10477ms) What are geckos? Big Nap (Chet Gecko Mysteries (Paperback)) -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition, $x) -> (Big Nap (Chet Gecko Mysteries, Editions, Big Nap (Chet Gecko Mysteries (Paperback))) -> Big Nap (Chet Gecko Mysteries (Paperback)) (10690ms) What are geckos? Give My Regrets to Broadway -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition of, $x) -> (Give My Regrets to Broadway: A Chet Gecko Mystery (Chet Gecko), Edition Of, Give My Regrets to Broadway) -> Give My Regrets to Broadway (10188ms) What are geckos? Crested Geckos and Relatives -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition of, $x) -> (Crested Geckos and Relatives (Reptile and Amphibian Keeper?s Guides), Edition Of, Crested Geckos and Relatives) -> Crested Geckos and Relatives (10271ms) What are geckos? Chet Gecko-Private Eye -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition, $x) -> (Chet Gecko-Private Eye, Editions, Chet Gecko-Private Eye) -> Chet Gecko-Private Eye (10322ms) What are geckos? Mystery of Mr. Nice -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition of, $x) -> (Mystery of Mr. Nice (Chet Gecko Mysteries), Edition Of, Mystery of Mr. Nice) -> Mystery of Mr. Nice (11116ms) What are geckos? Moki the Gecko's best Christmas ever -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition, $x) -> (Moki the Gecko's best Christmas ever, Editions, Moki the Gecko's best Christmas ever) -> Moki the Gecko's best Christmas ever (11078ms) What are geckos? Geckos (Keeping Unusual Pets) -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition of, gecko) -> (Geckos (Keeping Unusual Pets), Edition Of, Geckos) -> Geckos (Keeping Unusual Pets) (10804ms) What are geckos? Meet the Gecko (Shredderman Series) -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition, $x) -> (Meet The Gecko, Editions, Meet the Gecko (Shredderman Series)) -> Meet the Gecko (Shredderman Series) (10761ms) What are geckos? Gecko (Caring for Your Pet) -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition, gecko) -> (Gecko (Caring for Your Pet), Edition Of, Gecko) -> Gecko (Caring for Your Pet) (11078ms) What are geckos? Right from the Gecko (Wheeler Large Print Book Series) -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition of, gecko) -> (Right from the Gecko (Wheeler Large Print Book Series), Edition Of, Right from the Gecko) -> Right from the Gecko (Wheeler Large Print Book Series) (10065ms) What are geckos? Right from the Gecko -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition of, $x) -> (Right from the Gecko (Reigning Cats & Dogs Mysteries), Edition Of, Right from the Gecko) -> Right from the Gecko (11116ms) What are geckos? Farewell, My Lunchbag (Chet Gecko Mysteries (Hardcover)) -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition of, gecko) -> (Farewell, My Lunchbag (Chet Gecko Mysteries (Hardcover)), Edition Of, Farewell, My Lunchbag (Chet Gecko Mysteries) -> Farewell, My Lunchbag (Chet Gecko Mysteries (Hardcover)) (10357ms) What are geckos? Leopard and Fat-Tailed Geckos (Reptile and Amphibian Keeper's Guide) -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition, $x) -> (Leopard and Fat-Tailed Geckos, Editions, Leopard and Fat-Tailed Geckos (Reptile and Amphibian Keeper's Guide)) -> Leopard and Fat-Tailed Geckos (Reptile and Amphibian Keeper's Guide) (10629ms) What are geckos? Crested Geckos and Relatives (Reptile and Amphibian Keeper?s Guides) -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, edition, gecko) -> (Crested Geckos and Relatives (Reptile and Amphibian Keeper?s Guides), Edition Of, Crested Geckos and Relatives) -> Crested Geckos and Relatives (Reptile and Amphibian Keeper?s Guides) (10476ms) What are geckos? Leopard Geckos For Dummies -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition, $x) -> (Leopard Geckos For Dummies (For Dummies (Pets)), Edition Of, Leopard Geckos For Dummies) -> Leopard Geckos For Dummies (10271ms) What are geckos? Meet the Gecko (Shredderman (Paperback)) -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition, $x) -> (Meet The Gecko, Editions, Meet the Gecko (Shredderman (Paperback))) -> Meet the Gecko (Shredderman (Paperback)) (10357ms) What are geckos? Game Boy Color -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: ($x, game, gecko) -> (Game Boy Color, Games On This Platform, Gex: Enter the Gecko) -> Game Boy Color (10433ms) What are geckos? Surf gecko to the rescue! -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition, $x) -> (Surf gecko to the rescue!, Editions, Surf gecko to the rescue!) -> Surf gecko to the rescue! (10804ms) What are geckos? How to Recycle a Dead Gecko -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition, $x) -> (How to Recycle a Dead Gecko, Editions, How to Recycle a Dead Gecko) -> How to Recycle a Dead Gecko (11116ms) What are geckos? Gabriela Gecko: The Story of Belonging -10.798609335574342 What are geckos? -> what be [ gecko ] ? -> what be the expansion of gecko ? -> $x: (gecko, expansion, $x) -> $x: (gecko, edition, $x) -> (Gabriela Gecko, Editions, Gabriela Gecko: The Story of Belonging) -> Gabriela Gecko: The Story of Belonging (10033ms) What are geckos? an entirely new rendering engine -10.81347722560115 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, was, an entirely new rendering engine) -> an entirely new rendering engine (6544ms) What are geckos? a feeding -10.82089643577265 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (these geckos, will eat at, a feeding) -> a feeding (3862ms) What are geckos? a novel instrument concept -10.836273590027531 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, a novel instrument concept) -> a novel instrument concept (6543ms) What are geckos? each code engine release -10.861841074672679 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (each code engine release, was named, Gecko) -> each code engine release (6575ms) What are geckos? a bit -10.87093864004476 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, was, a bit) -> a bit (6575ms) What are geckos? the Leopard Gecko -10.872463388420236 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, the Leopard Gecko) -> the Leopard Gecko (6576ms) What are geckos? a fly today -10.881507940247962 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (my tiny gecko, eat, a fly today) -> a fly today (3863ms) What are geckos? 3-9 grams -10.907405272666152 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (gecko, is, 3-9 grams) -> 3-9 grams (6575ms) What are geckos? a cricket -10.914496190064993 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (a gecko, eat, a cricket) -> a cricket (3863ms) What are geckos? DOMContentLoaded event -10.923274014938823 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (DOMContentLoaded event, is in, Gecko) -> DOMContentLoaded event (6576ms) What are geckos? Papua New Guinea -10.945638529398916 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (gecko, has been discovered in, Papua New Guinea) -> Papua New Guinea (6575ms) What are geckos? fruit baby food -10.946624620344117 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (Crested Geckos, will also eat, fruit baby food) -> fruit baby food (3875ms) What are geckos? Finally the above implementation -10.951145060633921 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (Finally the above implementation, is for, Gecko) -> Finally the above implementation (6607ms) What are geckos? five mosquitoes or termites -10.955680811063997 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (A small gecko, can eat four to, five mosquitoes or termites) -> five mosquitoes or termites (3876ms) What are geckos? Jan -10.962795504779468 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (Jan, am hoping, gecko) -> Jan (6607ms) What are geckos? the Mozilla redering engine -10.96536649106107 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (the Mozilla redering engine, IS, Gecko) -> the Mozilla redering engine (6607ms) What are geckos? the DDT-poisoned bugs -10.970981814637671 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (the DDT-poisoned bugs, were eaten by, geckoes) -> the DDT-poisoned bugs (6607ms) What are geckos? a powerful Lung tonic -10.986587228198863 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, a powerful Lung tonic) -> a powerful Lung tonic (6607ms) What are geckos? nature -10.998079796936494 What are geckos? -> $x: (geckos, instance of, $x) -> $x: (geckos, be a by, $x) -> (( Apparently geckos, are a pretty funny lot by, nature) -> nature (3415ms) What are geckos? SVG images -11.002820756118066 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (SVG images, is extremely restricted in, Gecko) -> SVG images (6607ms) What are geckos? a GNOME Web browser -11.004489876574342 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (a GNOME Web browser, is based on, Gecko) -> a GNOME Web browser (6627ms) What are geckos? a very lightweight and fast CMS -11.008026674881023 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, a very lightweight and fast CMS) -> a very lightweight and fast CMS (6627ms) What are geckos? the Mozilla Firefox rendering engine -11.046146469497042 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, the Mozilla Firefox rendering engine) -> the Mozilla Firefox rendering engine (6627ms) What are geckos? Neptune -11.053450051029602 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (Neptune, would be better suited to, Gecko) -> Neptune (6627ms) What are geckos? TEC Edmonton -11.099178588343454 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (TEC Edmonton, is an approved service provider for, GECKO) -> TEC Edmonton (6627ms) What are geckos? overripe fruit and crickets -11.099869659852613 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (Crested geckos, eat, overripe fruit and crickets) -> overripe fruit and crickets (3875ms) What are geckos? easier cleaning -11.116382968143068 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Geckos, are, easier cleaning) -> easier cleaning (6644ms) What are geckos? a childish brat -11.119232637686665 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, a childish brat) -> a childish brat (6645ms) What are geckos? high volumes -11.14491671864266 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (Leopard geckos, can eat, high volumes) -> high volumes (3875ms) What are geckos? sized insects -11.155527113562703 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (The gecko, eats a variety of appropriately, sized insects) -> sized insects (3875ms) What are geckos? a powerful substance -11.159970307287312 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, a powerful substance) -> a powerful substance (6644ms) What are geckos? SeaMonkey 1.0.7 -11.168170449453815 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (SeaMonkey 1.0.7, is still, Gecko) -> SeaMonkey 1.0.7 (6646ms) What are geckos? a little bigger -11.219211586695206 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (gecko, is, a little bigger) -> a little bigger (6646ms) What are geckos? a protected species -11.231590354417444 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Geckos, are, a protected species) -> a protected species (6662ms) What are geckos? Ian Oeschger -11.317249094650919 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (Ian Oeschger, is about, Gecko) -> Ian Oeschger (6662ms) What are geckos? Artist -11.322960954918788 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (Artist, is, Gecko) -> Artist (6662ms) What are geckos? a 22' Glacier Bay Catamaran -11.345798577882599 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, a 22' Glacier Bay Catamaran) -> a 22' Glacier Bay Catamaran (6662ms) What are geckos? a great job -11.410422155905524 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, do, $x) -> (Gecko Adventures, did, a great job) -> a great job (6662ms) What are geckos? a 25 kHz PWM frequency -11.438703930277779 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, a 25 kHz PWM frequency) -> a 25 kHz PWM frequency (6662ms) What are geckos? Firefox 2.0 -11.44489328778775 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (Firefox 2.0, will be based on, Gecko) -> Firefox 2.0 (6680ms) What are geckos? small geckos -11.45261753889639 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (Logged Michele even big geckos, will eat, small geckos) -> small geckos (4142ms) What are geckos? scientific study -11.485022384168468 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (geckos, has been the focus of, scientific study) -> scientific study (6679ms) What are geckos? The MIT2 chip -11.49880959303526 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (The MIT2 chip, can only be used with, Gecko) -> The MIT2 chip (6680ms) What are geckos? crickets and mealworms -11.55677201806567 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (the viper gecko, can eat, crickets and mealworms) -> crickets and mealworms (4142ms) What are geckos? enough the insects -11.570247890132453 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (enough the insects, were consumed by, geckoes) -> enough the insects (6680ms) What are geckos? Mary Richardson -11.5977632935348 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, do, $x) -> (The gecko piece, was done by, Mary Richardson) -> Mary Richardson (6679ms) What are geckos? a solitary pet -11.604061507455832 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, do, $x) -> (The Pictus Gecko, also does well as, a solitary pet) -> a solitary pet (6696ms) What are geckos? just cute little lizards -11.623409025402443 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (geckos, are, just cute little lizards) -> just cute little lizards (6696ms) What are geckos? 10 holes -11.678736692399646 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, has about, 10 holes) -> 10 holes (6696ms) What are geckos? a character -11.692218322160414 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, go, $x) -> (Seth Gecko, was going to be, a character) -> a character (4339ms) What are geckos? SVG. -11.700674267069253 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, already has decent support for, SVG.) -> SVG. (6696ms) What are geckos? beetles and fishmoths -11.722116983162529 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (lizards and geckos, eat, beetles and fishmoths) -> beetles and fishmoths (4142ms) What are geckos? a new mobile operating system -11.72706856622126 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, go, $x) -> (Gecko?, is going to be, a new mobile operating system) -> a new mobile operating system (4339ms) What are geckos? ?Shock Shedding? -11.7425119479913 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (geckos, has is known as, ?Shock Shedding?) -> ?Shock Shedding? (6696ms) What are geckos? multi-range selections -11.747092087770767 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, internally has crazy bugs with, multi-range selections) -> multi-range selections (6696ms) What are geckos? one of the most popular lizards -11.769580943347174 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (gecko, is, one of the most popular lizards) -> one of the most popular lizards (6696ms) What are geckos? 10 gallon -11.781795567092317 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, do, $x) -> (Leopard geckos, also do quite well in, 10 gallon) -> 10 gallon (6715ms) What are geckos? Loungin? Lizard Chair -11.786081386060136 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, go, $x) -> (Gecko?s Pet Specific Item, is going to be, Loungin? Lizard Chair) -> Loungin? Lizard Chair (4339ms) What are geckos? Cool ? Beccary February 9th -11.795708620343307 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Geckos, are, Cool ? Beccary February 9th) -> Cool ? Beccary February 9th (6715ms) What are geckos? insects , baby mice and baby rats -11.821296137490432 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (The Tokay Gecko, will eat, insects , baby mice and baby rats) -> insects , baby mice and baby rats (4142ms) What are geckos? a new interface -11.839563352417041 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, has been working hard on, a new interface) -> a new interface (6715ms) What are geckos? prime time -11.855617044885237 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, do, $x) -> (Gecko, does n?t seem quite ready for, prime time) -> prime time (6715ms) What are geckos? Texas -11.864478371442965 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, do, $x) -> (the Gecko, may be busy doing the two-step in, Texas) -> Texas (6715ms) What are geckos? the car -11.865540378687676 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (the car, is, Gecko) -> the car (6715ms) What are geckos? JSCSSP -11.868765898022119 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (JSCSSP, are also adapted from, Gecko) -> JSCSSP (6715ms) What are geckos? a book blog tour beginning -11.868997002194998 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, go, $x) -> (Geckos, is going on, a book blog tour beginning) -> a book blog tour beginning (4339ms) What are geckos? Viagra -11.894068893737435 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (geckos, have also been displaced by, Viagra) -> Viagra (6787ms) What are geckos? the core -11.899163133464015 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, the core) -> the core (6787ms) What are geckos? XML -11.900380532013653 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, do, $x) -> (Netscape Gecko, do support, XML) -> XML (6787ms) What are geckos? fun -11.93010319844415 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, fun) -> fun (6787ms) What are geckos? n?t support counters -11.961684315413045 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, do, $x) -> (Gecko, did, n?t support counters) -> n?t support counters (6787ms) What are geckos? small lizards -11.984093002346107 What are geckos? -> what [ be gecko ] ? -> what be know be gecko ? -> $x: ($x, be know be, gecko) -> (small lizards, are also known as, day geckos) -> small lizards (6787ms) What are geckos? so great -11.985546198261464 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, so great) -> so great (6787ms) What are geckos? independent travelers -12.003268544949588 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, go, $x) -> (GeckoGo, is the go-to source for, independent travelers) -> independent travelers (4339ms) What are geckos? responseXML -12.008611342523665 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, had fixed, responseXML) -> responseXML (6807ms) What are geckos? Ron Fearing?s work -12.016416472190556 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (geckos, has inspired, Ron Fearing?s work) -> Ron Fearing?s work (6807ms) What are geckos? XPCOM and P/Invoke -12.016931976594 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko #, had to revert to, XPCOM and P/Invoke) -> XPCOM and P/Invoke (6807ms) What are geckos? a cave -12.023191850875296 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (gecko, has adapted to living in, a cave) -> a cave (6807ms) What are geckos? Google?s Android or Apple?s iOS -12.031143685245686 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, go, $x) -> (Gecko project, will go after, Google?s Android or Apple?s iOS) -> Google?s Android or Apple?s iOS (4339ms) What are geckos? Anti-Tumor Effects -12.035137303472627 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, Have, Anti-Tumor Effects) -> Anti-Tumor Effects (6807ms) What are geckos? the Ca -12.052821242303738 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, go, $x) -> (# @BensGeckos, Go to, the Ca) -> the Ca (6807ms) What are geckos? a new division -12.073157793040433 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, has now set up, a new division) -> a new division (6807ms) What are geckos? the HTML -12.116910872900249 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, has an extra layer between, the HTML) -> the HTML (6825ms) What are geckos? a shower -12.122221992653191 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (geckos, have, a shower) -> a shower (6826ms) What are geckos? a day-night light cycle -12.125325475834966 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, do, $x) -> (the Crested Gecko, does need, a day-night light cycle) -> a day-night light cycle (6826ms) What are geckos? much sophistication and support -12.129746460542744 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, do, $x) -> (Gecko, does n?t hold as, much sophistication and support) -> much sophistication and support (6826ms) What are geckos? good standards compliance -12.13035185751226 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, has, good standards compliance) -> good standards compliance (6826ms) What are geckos? Geico -12.13357781189588 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, do, $x) -> (the Gecko, do for, Geico) -> Geico (6825ms) What are geckos? an adhesive-less tape -12.139408048232141 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (geckos, have yielded, an adhesive-less tape) -> an adhesive-less tape (6825ms) What are geckos? setae--microscopic hairs -12.141176473736628 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Geckos, have millions of, setae--microscopic hairs) -> setae--microscopic hairs (6844ms) What are geckos? a totally different graphical user interface -12.141732976471978 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, has, a totally different graphical user interface) -> a totally different graphical user interface (6844ms) What are geckos? an impression -12.14662434573648 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, do, $x) -> (A cheeky gecko, does, an impression) -> an impression (6844ms) What are geckos? one fatal flaw -12.155323614261059 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, currently has, one fatal flaw) -> one fatal flaw (6844ms) What are geckos? a greater risk -12.16213789192184 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, do, $x) -> (a leopard gecko, does is taking, a greater risk) -> a greater risk (6844ms) What are geckos? famous for their ability -12.162560443844146 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Geckos, are, famous for their ability) -> famous for their ability (6844ms) What are geckos? unique dry adhesive fibers -12.165934009181102 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Geckos, have, unique dry adhesive fibers) -> unique dry adhesive fibers (6844ms) What are geckos? the crowd -12.170146453378717 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (the crowd, be like, gecko) -> the crowd (6844ms) What are geckos? harmless to humans -12.171057593517064 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Geckos, are, harmless to humans) -> harmless to humans (6862ms) What are geckos? a look -12.17527386184882 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (geckos, have, a look) -> a look (6862ms) What are geckos? remote administration and management -12.18803893271999 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, do, $x) -> (Blue Gecko, does, remote administration and management) -> remote administration and management (6862ms) What are geckos? the ADD show -12.192524485555026 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, do, $x) -> (Topo and Gecko, do, the ADD show) -> the ADD show (6862ms) What are geckos? the web -12.195733889044924 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (the web, can be run through, Gecko) -> the web (6862ms) What are geckos? a variety -12.19737878538771 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, do, $x) -> (Flying Geckos, do well with, a variety) -> a variety (6862ms) What are geckos? Gecko -12.201661060719328 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, go, $x) -> (the Go Gecko brand, Go, Gecko) -> Gecko (6862ms) What are geckos? as impenetrable and bloated -12.202166278960085 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Gecko, is, as impenetrable and bloated) -> as impenetrable and bloated (6862ms) What are geckos? superb grasping abilities -12.20639288935017 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Geckos, have, superb grasping abilities) -> superb grasping abilities (6880ms) What are geckos? the WebServer location -12.224355617612861 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, go, $x) -> (an aside the gecko browsers, go to, the WebServer location) -> the WebServer location (6880ms) What are geckos? a gas geyser -12.224355617612861 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, has, a gas geyser) -> a gas geyser (6880ms) What are geckos? a really buggy test implementation -12.23103696243322 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, has, a really buggy test implementation) -> a really buggy test implementation (6880ms) What are geckos? more de-facto quirks -12.235457947140999 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, has had to put up with, more de-facto quirks) -> more de-facto quirks (6880ms) What are geckos? Ginseng -12.241828809590327 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (Ginseng, is used with, Gecko) -> Ginseng (6880ms) What are geckos? Cretaceogekko -12.245599523816267 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (gecko, has been named, Cretaceogekko) -> Cretaceogekko (6940ms) What are geckos? the week -12.249370048822879 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (the week, was, Gecko) -> the week (6940ms) What are geckos? new and used books -12.255302563269602 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, has a vast range of, new and used books) -> new and used books (6940ms) What are geckos? a rapid release cycle -12.263752280892154 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, has successfully transitioned to, a rapid release cycle) -> a rapid release cycle (6940ms) What are geckos? a friend -12.27165139172113 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, enjoyed having, a friend) -> a friend (6940ms) What are geckos? Liz-ard Minnelli -12.280362248818234 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, do, $x) -> (A cheeky gecko, does an impression of, Liz-ard Minnelli) -> Liz-ard Minnelli (6940ms) What are geckos? Elephant -12.285659822869402 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, go, $x) -> (Gecko, goes to, Elephant) -> Elephant (6940ms) What are geckos? available for adoption -12.297288895961426 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Geckos, are, available for adoption) -> available for adoption (7023ms) What are geckos? GEICO -12.298781831208425 What are geckos? -> what [ be gecko ] ? -> what be know be gecko ? -> $x: ($x, be know be, gecko) -> (GEICO, is known for, its gecko mascot) -> GEICO (7023ms) What are geckos? a year -12.316745530604596 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, go, $x) -> (The Geckos, have now gone more than, a year) -> a year (7023ms) What are geckos? a component -12.324671293531583 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (a component, can be used in, Gecko) -> a component (7023ms) What are geckos? 2 % or lower -12.348936605084909 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, had a market share of, 2 % or lower) -> 2 % or lower (7023ms) What are geckos? a popular choice in pet shops -12.354840395237158 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, be, $x) -> (Geckos, are, a popular choice in pet shops) -> a popular choice in pet shops (7023ms) What are geckos? Russian scientists -12.361645049956243 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (Russian scientists, are training, geckos) -> Russian scientists (7023ms) What are geckos? a week -12.370681586201322 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, go, $x) -> (The leopard gecko, went over, a week) -> a week (7023ms) What are geckos? The exception -12.395682784345816 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (The exception, is, Gecko) -> The exception (7047ms) What are geckos? 20 A current limit -12.399400430502208 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, has a 0 to, 20 A current limit) -> 20 A current limit (7047ms) What are geckos? an app store -12.404970751535144 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, do, $x) -> (Boot 2 Gecko, does have, an app store) -> an app store (7047ms) What are geckos? traditional 3-D games -12.412663384625542 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, do, $x) -> (the Gecko, does, traditional 3-D games) -> traditional 3-D games (7046ms) What are geckos? sensitive skin -12.426789911187601 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (geckos, have, sensitive skin) -> sensitive skin (7046ms) What are geckos? a 6.7 % market share -12.439189345574503 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (Gecko, has, a 6.7 % market share) -> a 6.7 % market share (7047ms) What are geckos? vertical pupils -12.440937104414328 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: (gecko, have, $x) -> (geckos, usually have, vertical pupils) -> vertical pupils (7046ms) What are geckos? leopard geckos -12.444896698049671 What are geckos? -> what be [ gecko ] ? -> what be the mening of gecko ? -> $x: (gecko, mening, $x) -> $x: ($x, be, gecko) -> (leopard geckos, are descendants of, geckos) -> leopard geckos (7047ms) What are geckos? the bugs -12.515296178030297 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (the geckos, eat, the bugs) -> the bugs (4142ms) What are geckos? a lot -12.709871457589141 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (Ring Tailed Gecko, eats, a lot) -> a lot (4142ms) What are geckos? cockroaches -12.760557660194308 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (geckos, eat, cockroaches) -> cockroaches (4157ms) What are geckos? moths -12.78443095653539 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (geckos, eat, moths) -> moths (4157ms) What are geckos? the flies , mosquitoes and spiders -12.790239555483765 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (The geckos, eat, the flies , mosquitoes and spiders) -> the flies , mosquitoes and spiders (4157ms) What are geckos? fruit -12.86842977138776 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (My geckos, eat, fruit) -> fruit (4159ms) What are geckos? cats -12.871402669437984 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (geckos, were eaten by, cats) -> cats (4157ms) What are geckos? insects -12.911755484766736 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (Leopard Geckos, eat, insects) -> insects (4157ms) What are geckos? crickets -12.933860408305625 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (a leopard gecko, eat dried, crickets) -> crickets (4171ms) What are geckos? the moths -12.938316083458822 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (any geckos, loved to eat, the moths) -> the moths (4171ms) What are geckos? mosquitoes -12.940934004918986 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (Geckos, eat, mosquitoes) -> mosquitoes (4171ms) What are geckos? bugs -12.942637809593924 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (The house gecko, eats, bugs) -> bugs (4171ms) What are geckos? the letter -12.993955943730487 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (the geckos, eat just, the letter) -> the letter (4171ms) What are geckos? the skin -13.000701909380396 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (Some geckos, eat, the skin) -> the skin (4184ms) What are geckos? the flies -13.012524121664988 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (gecko lizards, became sick from eating, the flies) -> the flies (4184ms) What are geckos? the roaches -13.02938844222226 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (the gecko, eats, the roaches) -> the roaches (4184ms) What are geckos? the supplement -13.036462038835623 What are geckos? -> what [ be ] gecko ? -> what be gecko eat ? -> $x: (gecko, eat, $x) -> (the gecko, eats, the supplement) -> the supplement (4184ms) What was the percentage of turnout for the election? 3,935 voters -15.05950333661968 What was the percentage of turnout for the election? -> what be the percentage of [ turnout for the election ] ? -> what be too turnout for the election ? -> what be turnout for the election ? -> $x: ($x, be turnout for, the election) -> $x: ($x, turnout for, election) -> (3,935 voters, is a pretty good turnout for, a special election) -> 3,935 voters (4123ms) Whom did he marry? Chartered Accountant -9.972841775612254 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. Nimesh N. KampaniHe, Instance Of, Chartered Accountant) -> Chartered Accountant (4444ms) Whom did he marry? Member of Parliament -10.316728396187452 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. H-E, Instance Of, Member of Parliament) -> Member of Parliament (4445ms) Whom did he marry? talented person -10.414033940380115 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Ambassador H.E Mr. Ajay Malhotra, Instance Of, talented person) -> talented person (4445ms) Whom did he marry? aggressive person -10.457466290426146 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. Ranjan kumar-He, Instance Of, aggressive person) -> aggressive person (4445ms) Whom did he marry? excellent candidate -10.462854687562421 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. HeJtz, Instance Of, excellent candidate) -> excellent candidate (4445ms) Whom did he marry? outstanding rider -10.462964260225597 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. Whoever-he-is, Instance Of, outstanding rider) -> outstanding rider (4566ms) Whom did he marry? successful artist -10.463805090317969 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. Johnson not only teaches-he, Instance Of, successful artist) -> successful artist (4566ms) Whom did he marry? great teacher -10.479880661005673 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr Driscoll.He, Instance Of, great teacher) -> great teacher (4566ms) Whom did he marry? tall slender young man -11.063590810886854 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. Hynes-He, Instance Of, tall slender young man) -> tall slender young man (4566ms) Whom did he marry? MGMT overexpressor -11.063590810886854 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (HeLa MR5-2, Instance Of, MGMT overexpressor) -> MGMT overexpressor (4582ms) Whom did he marry? member of First Batist -11.063590810886854 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Knew Mr. Pate very well.He, Instance Of, member of First Batist) -> member of First Batist (4566ms) Whom did he marry? owner of a small shop -11.063590810886854 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr.Charrington-He, Instance Of, owner of a small shop) -> owner of a small shop (4566ms) Whom did he marry? good man -11.098836229064789 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr SECKER ?He, Instance Of, good man) -> good man (4582ms) Whom did he marry? horsecoat. -11.108484766321995 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr WrinklesSon of Mai Lei & ArcherHe, Instance Of, horsecoat.) -> horsecoat. (4582ms) Whom did he marry? enterprising, public spirited citizen -11.108484766321995 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. He.il, Instance Of, enterprising, public spirited citizen) -> enterprising, public spirited citizen (4610ms) Whom did he marry? priest of the Buddhist and very hottest music fan -11.108484766321995 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Thanks for Mr.GUTS.He, Instance Of, priest of the Buddhist and very hottest music fan) -> priest of the Buddhist and very hottest music fan (4582ms) Whom did he marry? sana-rail operator -11.108484766321995 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. and Mrs. Richard Kyras-he, Instance Of, sana-rail operator) -> sana-rail operator (4582ms) Whom did he marry? tall rich owner of thorn field -11.108484766321995 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr.Rochester-He, Instance Of, tall rich owner of thorn field) -> tall rich owner of thorn field (4611ms) Whom did he marry? respectable old man -11.108484766321995 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. Yang-he, Instance Of, respectable old man) -> respectable old man (4610ms) Whom did he marry? receiver of Australia Postgraduate Award -11.108484766321995 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr Michael Ya-He Li, Instance Of, receiver of Australia Postgraduate Award) -> receiver of Australia Postgraduate Award (4582ms) Whom did he marry? employee of Asbury Automotive Group -11.108484766321995 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr...He, Instance Of, employee of Asbury Automotive Group) -> employee of Asbury Automotive Group (4611ms) Whom did he marry? cousin of David W. Haas -11.108484766321995 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (MrHe, Instance Of, cousin of David W. Haas) -> cousin of David W. Haas (4610ms) Whom did he marry? creepy little man -11.120235527429582 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr Motto!..He, Instance Of, creepy little man) -> creepy little man (4610ms) Whom did he marry? miserable man -11.121387562712119 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (RIP Mr. Knibbs.He, Instance Of, miserable man) -> miserable man (4626ms) Whom did he marry? hefty guy -11.122193987409895 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. Chicken WingHe, Instance Of, hefty guy) -> hefty guy (4626ms) Whom did he marry? wise man -11.132179556888428 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Second Mr. Moor again.He, Instance Of, wise man) -> wise man (4626ms) Whom did he marry? great man -11.142191661542864 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Ex-Mrs PresleyHe, Instance Of, great man) -> great man (4626ms) Whom did he marry? guy -11.145456367005778 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr Gray-He, Instance Of, guy) -> guy (4626ms) Whom did he marry? Chemical Engineer having 36 year of experience -11.527310012582484 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. N. P. GhuwalewalaHe, Instance Of, Chemical Engineer having 36 year of experience) -> Chemical Engineer having 36 year of experience (4626ms) Whom did he marry? private company -11.65237466800248 Whom did he marry? -> whom do [ he ] marry ? -> who be he child ? -> $x: (he child, instance of, $x) -> (Hes Children Accessory, Instance Of, private company) -> private company (4692ms) Whom did he marry? French ambassador -11.671763010813887 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (H.e. mr. laurent bili, Instance Of, French ambassador) -> French ambassador (4692ms) Whom did he marry? rescue -11.811242256058364 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. He-Saves, Instance Of, rescue) -> rescue (4692ms) Whom did he marry? correct alternative -11.822810765641416 Whom did he marry? -> whom do [ he ] marry ? -> who be he child ? -> $x: (he child, instance of, $x) -> (He is deeply concerned about vulnerable children, Instance Of, correct alternative) -> correct alternative (4692ms) Whom did he marry? farmer -11.845620049119656 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. HeIvie, Instance Of, farmer) -> farmer (4692ms) Whom did he marry? diplomat -11.850674702897054 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (H.E Mr. Giacomo Sanfelice di Monteforte, Instance Of, diplomat) -> diplomat (4692ms) Whom did he marry? stowaway -11.862280902203976 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. Cranick-He, Instance Of, stowaway) -> stowaway (4782ms) Whom did he marry? regular -11.875698232679838 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (mr. orr passed on.He, Instance Of, regular) -> regular (4781ms) Whom did he marry? graduate -11.876859173897437 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. Bipin ShahHe, Instance Of, graduate) -> graduate (4781ms) Whom did he marry? speaker -11.880146429786063 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. Samah HeLal, Instance Of, speaker) -> speaker (4781ms) Whom did he marry? lecturer -11.891943994242158 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. Pardeep Jain .He, Instance Of, lecturer) -> lecturer (4781ms) Whom did he marry? expert -11.892883355893519 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (Mr. Gunasekaran Merchandise Head.He, Instance Of, expert) -> expert (4801ms) Whom did he marry? leader -11.896520674108736 Whom did he marry? -> whom do [ he ] marry ? -> who be mr he ? -> $x: (mr he, instance of, $x) -> (special word for Mr Scindia-he, Instance Of, leader) -> leader (4801ms) Whom did he marry? great person -11.990848189271421 Whom did he marry? -> whom do [ he ] marry ? -> who be he dad ? -> $x: (he dad, instance of, $x) -> (Dad-He, Instance Of, great person) -> great person (4801ms) Whom did he marry? famous musician -12.116671681761526 Whom did he marry? -> whom do [ he ] marry ? -> who be he child ? -> $x: (he child, instance of, $x) -> (Children .He, Instance Of, famous musician) -> famous musician (4801ms) Whom did he marry? frequent lecturer -12.168164466858808 Whom did he marry? -> whom do [ he ] marry ? -> who be he child ? -> $x: (he child, instance of, $x) -> (Los Abogados and Arizona's Children Association.He, Instance Of, frequent lecturer) -> frequent lecturer (4801ms) Whom did he marry? big girl -12.629782599064821 Whom did he marry? -> whom do [ he ] marry ? -> who be he child ? -> $x: (he child, instance of, $x) -> (Start by telling the child he/she, Instance Of, big girl) -> big girl (4801ms) Whom did he marry? respected member of FUDZone -12.677511047091992 Whom did he marry? -> whom do [ he ] marry ? -> who be he kid ? -> $x: (he kid, instance of, $x) -> (Married with a kid.He, Instance Of, respected member of FUDZone) -> respected member of FUDZone (4930ms) Whom did he marry? one man fast break -12.677511047091992 Whom did he marry? -> whom do [ he ] marry ? -> who be he kid ? -> $x: (he kid, instance of, $x) -> (Kid-remember..he, Instance Of, one man fast break) -> one man fast break (4930ms) Whom did he marry? big hit -12.705617687861501 Whom did he marry? -> whom do [ he ] marry ? -> who be he kid ? -> $x: (he kid, instance of, $x) -> (T heKidsFire Safety Trailer, Instance Of, big hit) -> big hit (4930ms) Whom did he marry? private, non-profit, family-centered residence -12.756356981455038 Whom did he marry? -> whom do [ he ] marry ? -> who be he child ? -> $x: (he child, instance of, $x) -> (T heChildren's Inn at NIH, Instance Of, private, non-profit, family-centered residence) -> private, non-profit, family-centered residence (4930ms) Whom did he marry? franchise of Joy Education Organization -12.801250936890181 Whom did he marry? -> whom do [ he ] marry ? -> who be he child ? -> $x: (he child, instance of, $x) -> (Joy Children's Language School, HeFei, Instance Of, franchise of Joy Education Organization) -> franchise of Joy Education Organization (4930ms) Whom did he marry? medical-legal partnership -12.824752459105353 Whom did he marry? -> whom do [ he ] marry ? -> who be he child ? -> $x: (he child, instance of, $x) -> (Child HeLP, Instance Of, medical-legal partnership) -> medical-legal partnership (4930ms) Whom did he marry? web-based resource -12.847936392685575 Whom did he marry? -> whom do [ he ] marry ? -> who be he child ? -> $x: (he child, instance of, $x) -> (HeLP-A Victorian Child, Instance Of, web-based resource) -> web-based resource (4946ms) Whom did he marry? liar -13.403529282583031 Whom did he marry? -> whom do [ he ] marry ? -> who be he dad ? -> $x: (he dad, instance of, $x) -> (He-he StephaniesDad, Instance Of, liar) -> liar (4946ms) Whom did he marry? colonel -13.403553472995135 Whom did he marry? -> whom do [ he ] marry ? -> who be he dad ? -> $x: (he dad, instance of, $x) -> (Dad..he, Instance Of, colonel) -> colonel (4946ms) Whom did he marry? program -13.597106299784821 Whom did he marry? -> whom do [ he ] marry ? -> who be he child ? -> $x: (he child, instance of, $x) -> (Children sHe alth Insurance Program, Instance Of, program) -> program (4946ms) Where was Rachel Carson home? a captivating herd -8.906216874508598 Where was Rachel Carson home? -> where be [ rachel carson ] home ? -> what be rachel carson s home ? -> $x: (rachel carson, home, $x) -> (the Rachel Carson Reserve, is home to, a captivating herd) -> a captivating herd (5423ms) Where was Rachel Carson home? Middle school -9.159217287632666 Where was Rachel Carson home? -> [ where be rachel carson ] home ? -> where be rachel carson s school ? -> $x: (rachel carson, school, $x) -> (Rachel Carson Middle School, School type, Middle school) -> Middle school (7532ms) Where was Rachel Carson home? Lake Washington School District -9.37363055630611 Where was Rachel Carson home? -> [ where be rachel carson ] home ? -> where be rachel carson s school ? -> $x: (rachel carson, school, $x) -> (Rachel Carson Elementary, School district, Lake Washington School District) -> Lake Washington School District (7531ms) Where was Rachel Carson home? Fairfax County Public Schools -9.45159901764191 Where was Rachel Carson home? -> [ where be rachel carson ] home ? -> where be rachel carson s school ? -> $x: (rachel carson, school, $x) -> (Rachel Carson Middle School, School district, Fairfax County Public Schools) -> Fairfax County Public Schools (7531ms) Where was Rachel Carson home? San Jose Unified School District -9.45159901764191 Where was Rachel Carson home? -> [ where be rachel carson ] home ? -> where be rachel carson s school ? -> $x: (rachel carson, school, $x) -> (Rachel Carson Elementary School, School district, San Jose Unified School District) -> San Jose Unified School District (7531ms) Where was Rachel Carson home? Montgomery County Public Schools -9.45159901764191 Where was Rachel Carson home? -> [ where be rachel carson ] home ? -> where be rachel carson s school ? -> $x: (rachel carson, school, $x) -> (Rachel Carson Elementary School, School district, Montgomery County Public Schools) -> Montgomery County Public Schools (7531ms) Where was Rachel Carson home? New York City Public Schools -9.618674291932905 Where was Rachel Carson home? -> [ where be rachel carson ] home ? -> where be rachel carson s school ? -> $x: (rachel carson, school, $x) -> (Rachel Carson School Of Coastal Studies, School district, New York City Public Schools) -> New York City Public Schools (7531ms) Where was Rachel Carson home? scores -9.71003089900296 Where was Rachel Carson home? -> where be [ rachel carson ] home ? -> what be rachel carson s home ? -> $x: (rachel carson, home, $x) -> (The Rachel Carson Reserve, is home to, scores) -> scores (5423ms) Where is the Holland Tunnel? Authorities Concept Scheme -3.768745754164889 Where is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> $x: (holland tunnel, in, $x) -> (Holland Tunnel (New York, N.Y.), In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (1855ms) Where is the Holland Tunnel? Geographic Names Concept Scheme -3.7923076518213117 Where is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> $x: (holland tunnel, in, $x) -> (Holland Tunnel (New York, N.Y.), In Scheme, Geographic Names Concept Scheme) -> Geographic Names Concept Scheme (1855ms) Where is the Holland Tunnel? Manhattan -3.957557241095569 Where is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> $x: (holland tunnel, in, $x) -> (the Lincoln and Holland tunnels, collect things in, Manhattan) -> Manhattan (1855ms) Where is the Holland Tunnel? movies -3.993202696334089 Where is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> (The Holland Tunnel, has been featured in, movies) -> movies (1682ms) Where is the Holland Tunnel? the exact change lane -4.915962573778417 Where is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> (the Holland Tunnel, is stuck in, the exact change lane) -> the exact change lane (1682ms) Where is the Holland Tunnel? the 1920 's -5.4600095697537725 Where is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> (the Holland Tunnel, was built in, the 1920 's) -> the 1920 's (1682ms) Where is the Holland Tunnel? traffic right -5.478657234671182 Where is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> $x: (holland tunnel, in, $x) -> (the Holland tunnel, stuck in, traffic right) -> traffic right (1855ms) Where is the Holland Tunnel? numerous wrecks -5.616495979487972 Where is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> $x: (holland tunnel, in, $x) -> (the Holland Tunnel, almost got in, numerous wrecks) -> numerous wrecks (1855ms) Where is the Holland Tunnel? left lane -5.9658408650248695 Where is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> $x: (holland tunnel, in, $x) -> (Holland Tunnel, stay in, left lane) -> left lane (1855ms) Where is the Holland Tunnel? 1927 -6.06903042769849 Where is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> (The Holland Tunnel, was completed in, 1927) -> 1927 (1682ms) Where is the Holland Tunnel? New York City -6.357554575167733 Where is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> $x: (holland tunnel, in, $x) -> (Holland Tunnel, opened in, New York City) -> New York City (1870ms) Where is the Holland Tunnel? Old Town -6.60003776965339 Where is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> $x: (holland tunnel, in, $x) -> (Holland Tunnel Gallery, are in, Old Town) -> Old Town (1870ms) Where is the Holland Tunnel? the right lane -7.3170804083610825 Where is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> $x: (holland tunnel, in, $x) -> (Holland Tunnel, stay in, the right lane) -> the right lane (1870ms) Where is the Holland Tunnel? the river -7.524900740754838 Where is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> $x: (holland tunnel, in, $x) -> (Holland Tunnel?s air vents, stood in, the river) -> the river (1888ms) Where is the Holland Tunnel? November 1927 -8.067384135003673 Where is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> $x: (holland tunnel, in, $x) -> (the Holland Tunnel, opened in, November 1927) -> November 1927 (1888ms) Where is the Holland Tunnel? 1922 -8.674569946968907 Where is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> $x: (holland tunnel, in, $x) -> (the Holland Tunnel, began in, 1922) -> 1922 (1888ms) Where is the Holland Tunnel? 1996 -8.696739438635053 Where is the Holland Tunnel? -> $x: (the Holland Tunnel, is in, $x) -> $x: (holland tunnel, in, $x) -> (the Holland Tunnel, collapsed in, 1996) -> 1996 (2076ms) Where is the Holland Tunnel? Hoboken -9.546753022957342 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (Hoboken, is located between, the Holland and Lincoln Tunnels) -> Hoboken (4628ms) Where is the Holland Tunnel? Holland Tunnel -9.623841099428164 Where is the Holland Tunnel? -> where be [ the holland tunnel ] ? -> what be the holland tunnel s location ? -> $x: (the holland tunnel, location, $x) -> $x: (holland tunnel, location, $x) -> (Holland Tunnel fire, Location(s), Holland Tunnel) -> Holland Tunnel (3448ms) Where is the Holland Tunnel? Items -10.538415566510027 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (Items, may be picked up from, the Holland Tunnel Police Command) -> Items (4628ms) Where is the Holland Tunnel? HARD. -10.578871431626895 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (the Holland Tunnel, is, HARD.) -> HARD. (4628ms) Where is the Holland Tunnel? Rory -10.62097504039713 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (Rory, is driving home through, the Holland Tunnel) -> Rory (4627ms) Where is the Holland Tunnel? United States of America -10.642927117335198 Where is the Holland Tunnel? -> where be [ the holland tunnel ] ? -> what be the holland tunnel s location ? -> $x: (the holland tunnel, location, $x) -> $x: (the holland tunnel, region, $x) -> (Living in the Holland Tunnel, Region, United States of America) -> United States of America (5529ms) Where is the Holland Tunnel? King -10.863747210948986 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (The Holland Tunnel exit, is a few blocks from, King) -> King (4628ms) Where is the Holland Tunnel? Desbrosses St. -10.920893029678243 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (the Holland Tunnel, is, Desbrosses St.) -> Desbrosses St. (4628ms) Where is the Holland Tunnel? Canal Street -10.947874931511704 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (Canal Street, will still be able to enter, the Holland Tunnel) -> Canal Street (4628ms) Where is the Holland Tunnel? a bar -11.158514170538336 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (a bar, is worse than, the Holland Tunnel) -> a bar (4628ms) Where is the Holland Tunnel? Nude Anna Nicole -11.197652140822322 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (Nude Anna Nicole, was, the Holland Tunnel) -> Nude Anna Nicole (5123ms) Where is the Holland Tunnel? anyone?s list -11.210681853332868 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (the Holland Tunnel, was high on, anyone?s list) -> anyone?s list (5123ms) Where is the Holland Tunnel? such tunnels -11.227034785748227 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (such tunnels, were ?as big as, the Holland and Lincoln tunnels) -> such tunnels (5123ms) Where is the Holland Tunnel? new LED lighting -11.247371336484923 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (the Holland Tunnel, will be updated with, new LED lighting) -> new LED lighting (5123ms) Where is the Holland Tunnel? Two cars -11.269038893637372 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (Two cars, are going through, the Holland Tunnel) -> Two cars (5123ms) Where is the Holland Tunnel? every five years -11.297507217953667 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (The Holland Tunnel, could be closed, every five years) -> every five years (5123ms) Where is the Holland Tunnel? bike lanes and cyclists -11.348169903767307 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (the Holland Tunnel, is the fault of, bike lanes and cyclists) -> bike lanes and cyclists (5123ms) Where is the Holland Tunnel? six-axle trucks -11.424896261609973 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (six-axle trucks, are prohibited from using, the Holland Tunnel) -> six-axle trucks (5150ms) Where is the Holland Tunnel? a designated National Historic Landmark -11.426600118987205 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (The Holland Tunnel, is, a designated National Historic Landmark) -> a designated National Historic Landmark (5150ms) Where is the Holland Tunnel? Officer Donald Foreman -11.47257839156947 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (Officer Donald Foreman, was assigned to, the Holland Tunnel) -> Officer Donald Foreman (5150ms) Where is the Holland Tunnel? an HOV restriction -11.49386369683452 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (The Holland tunnel, is operating on, an HOV restriction) -> an HOV restriction (5150ms) Where is the Holland Tunnel? Slated for destruction -11.507126650957852 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (Slated for destruction, were, the Holland and Lincoln Tunnels) -> Slated for destruction (5150ms) Where is the Holland Tunnel? Sheraton New York -11.580824967359439 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (Sheraton New York, is a half mile from, the Holland Tunnel) -> Sheraton New York (5150ms) Where is the Holland Tunnel? flooding -11.625760530932274 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (the Holland Tunnel?s tubes, has been closed due to, flooding) -> flooding (5150ms) Where is the Holland Tunnel? a clusterfk -11.626809128594445 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (the Holland tunnel, is always, a clusterfk) -> a clusterfk (5150ms) Where is the Holland Tunnel? only cars and buses -11.636654612135034 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (only cars and buses, were permitted to use, the Holland Tunnel) -> only cars and buses (5177ms) Where is the Holland Tunnel? Muslims -11.709152081438324 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, get be, holland tunnel) -> $x: ($x, be, holland tunnel) -> (Muslims, should be detoured through, Holland Tunnel ,than) -> Muslims (7624ms) Where is the Holland Tunnel? Hudson River -11.947537516939406 Where is the Holland Tunnel? -> where be [ the holland tunnel ] ? -> what be the holland tunnel s location ? -> $x: (the holland tunnel, location, $x) -> $x: (holland tunnel, location, $x) -> $x: ($x, contain, holland tunnel) -> (Hudson River, Contains, Holland Tunnel) -> Hudson River (8483ms) Where is the Holland Tunnel? fire -11.998798125159707 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (The Holland Tunnel, was threatened with, fire) -> fire (5177ms) Where is the Holland Tunnel? protests -12.001389679605342 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (the Holland Tunnel, were shut down during, protests) -> protests (5177ms) Where is the Holland Tunnel? traffic -12.003219109867485 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (the Holland Tunnel, was opened to, traffic) -> traffic (5177ms) Where is the Holland Tunnel? a bomb -12.147311559012005 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (a bomb, were headed for, the Holland Tunnel) -> a bomb (5177ms) Where is the Holland Tunnel? Holland Tunnel fire -12.401294583558045 Where is the Holland Tunnel? -> where be [ the holland tunnel ] ? -> what be the holland tunnel s location ? -> $x: (the holland tunnel, location, $x) -> $x: (holland tunnel, location, $x) -> $x: ($x, location, holland tunnel) -> (Holland Tunnel fire, Location(s), Holland Tunnel) -> Holland Tunnel fire (8116ms) Where is the Holland Tunnel? 10 minutes -12.450812811071629 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (the Holland Tunnel, is only, 10 minutes) -> 10 minutes (5177ms) Where is the Holland Tunnel? The billboard -12.68812362812344 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (The billboard, is near, the Holland Tunnel) -> The billboard (5208ms) Where is the Holland Tunnel? 10 minute waits -12.6971522644943 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (The Holland and Lincoln Tunnels, are, 10 minute waits) -> 10 minute waits (5208ms) Where is the Holland Tunnel? the Village -12.72839981687053 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, get be, holland tunnel) -> $x: ($x, be, holland tunnel) -> (the Village, is only, five Holland Tunnel minutes) -> the Village (7624ms) Where is the Holland Tunnel? The store -12.866304180862793 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (The store, is near, the Holland Tunnel) -> The store (5208ms) Where is the Holland Tunnel? the wait -12.889949419435883 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (the wait, is much shorter at, the Holland Tunnel) -> the wait (5208ms) Where is the Holland Tunnel? the group -12.891951086553158 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (the Holland Tunnel, were found with, the group) -> the group (5208ms) Where is the Holland Tunnel? The basic trajectory -13.007845548888325 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (The basic trajectory, was from, the Holland Tunnel) -> The basic trajectory (5208ms) Where is the Holland Tunnel? still -13.013891453216823 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (the Holland Tunnel, was closed, still) -> still (5236ms) Where is the Holland Tunnel? the verge -13.044097665653938 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (The Holland Tunnel, is always on, the verge) -> the verge (5236ms) Where is the Holland Tunnel? the afternoon -13.0632521675472 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (The Holland Tunnel, is nowhere to be on, the afternoon) -> the afternoon (5235ms) Where is the Holland Tunnel? the chief engineer -13.07759329373419 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (The Holland Tunnel, was named after, the chief engineer) -> the chief engineer (5236ms) Where is the Holland Tunnel? The theatre -13.109399023026558 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (The theatre, is just minutes from, the Holland/Lincoln Tunnels) -> The theatre (5236ms) Where is the Holland Tunnel? the first roadway tunnels -13.124261819757287 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (The Holland Tunnel, was one of, the first roadway tunnels) -> the first roadway tunnels (5236ms) Where is the Holland Tunnel? the canine -13.145482556895079 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, be, the holland tunnel) -> (the canine, was spotted down near, the Holland Tunnel) -> the canine (5236ms) Where is the Holland Tunnel? the first Hudson River vehicular tunnel -13.180785919132342 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (The Holland Tunnel, was, the first Hudson River vehicular tunnel) -> the first Hudson River vehicular tunnel (5264ms) Where is the Holland Tunnel? Hudson River crossings -13.182739002493665 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, get be, holland tunnel) -> $x: (holland tunnel, be, $x) -> (Holland Tunnel, are, Hudson River crossings) -> Hudson River crossings (7728ms) Where is the Holland Tunnel? the elevated segment -13.240330325359889 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: (the holland tunnel, be, $x) -> (the Holland Tunnel, was backed up onto, the elevated segment) -> the elevated segment (5264ms) Where is the Holland Tunnel? Newport area -13.254711748016073 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, get be, holland tunnel) -> $x: ($x, be, holland tunnel) -> (Newport area, is right next to, Holland Tunnel) -> Newport area (7728ms) Where is the Holland Tunnel? street -13.522860177633358 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, get be, holland tunnel) -> $x: (holland tunnel, be, $x) -> (holland tunnel, is a, street) -> street (7775ms) Where is the Holland Tunnel? got rides -13.73172055461241 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, make, the holland tunnel) -> (got rides, also made my first trip through, the Holland Tunnel) -> got rides (6221ms) Where is the Holland Tunnel? President -13.772751161715538 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> which organ be be the holland tunnel ? -> $x: ($x, instance of, organ) ($x, be be, the holland tunnel) -> $x: ($x, instance of, organ) ($x, be be, holland tunnel) -> (President, Instance Of, state organ) (president, was planning to extend, New York?s Holland Tunnel) -> President (7775ms) Where is the Holland Tunnel? New York city -13.971450503092125 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what hospital be be the holland tunnel ? -> $x: ($x, instance of, hospital) ($x, be be, the holland tunnel) -> (New York city, Instance Of, large and sprawling city full of great animal hospital) (New York City, here is to take, the Holland Tunnel) -> New York city (6112ms) Where is the Holland Tunnel? president -14.14778477756309 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, get be, holland tunnel) -> $x: ($x, be, holland tunnel) -> (president, was planning to extend, New York?s Holland Tunnel) -> president (7889ms) Where is the Holland Tunnel? the left -14.317934802672257 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, get be, holland tunnel) -> $x: ($x, be, holland tunnel) -> (the left, is, Holland Tunnel) -> the left (7889ms) Where is the Holland Tunnel? end -14.751748416659526 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> when be the holland tunnel be ? -> $x: (the holland tunnel, be be on, $x) -> $x: (holland tunnel, on, $x) -> (the Holland Tunnel, stood on, end) -> end (10648ms) Where is the Holland Tunnel? The other lanes -14.793540038436973 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, get be, holland tunnel) -> $x: ($x, be, holland tunnel) -> (The other lanes, are for, Holland Tunnel) -> The other lanes (8157ms) Where is the Holland Tunnel? the The Squid -15.142258654344008 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> when be the holland tunnel be ? -> $x: (the holland tunnel, be be on, $x) -> $x: (holland tunnel, on, $x) -> (?Holland Tunnel?, appeared on, the The Squid) -> the The Squid (10691ms) Where is the Holland Tunnel? Hudson St.* Turn -15.220016354112266 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> when be the holland tunnel be ? -> $x: (the holland tunnel, be be on, $x) -> $x: (holland tunnel, on, $x) -> (Holland Tunnel, drive north on, Hudson St.* Turn) -> Hudson St.* Turn (10691ms) Where is the Holland Tunnel? The second I -15.295986040650522 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, get, the holland tunnel) -> (The second I, got through, the Holland Tunnel) -> The second I (6221ms) Where is the Holland Tunnel? the second light -15.443284636346673 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> what get be the holland tunnel ? -> $x: ($x, get be, the holland tunnel) -> $x: ($x, make, the holland tunnel) -> (the second light, make a left to, the Holland Tunnel) -> the second light (6221ms) Where is the Holland Tunnel? route -17.32578026582607 Where is the Holland Tunnel? -> where be [ the holland tunnel ] ? -> what continent be the holland tunnel locate on ? -> $x: ($x, instance of, continent) (the holland tunnel, locate on, $x) -> $x: ($x, instance of, continent) (holland tunnel, locate on, $x) -> $x: ($x, instance of, continent) (holland tunnel, take, $x) -> (route, Instance Of, point-to-point service between small and medium-sized city on different continent) (Holland Tunnel, Take, Route) -> route (10691ms) Where is the Holland Tunnel? November 13 , 1927 -17.665995147494883 Where is the Holland Tunnel? -> where [ be the holland tunnel ] ? -> when be the holland tunnel be ? -> $x: (the holland tunnel, be be on, $x) -> $x: (holland tunnel, on, $x) -> (Holland Tunnel, opened on, November 13 , 1927) -> November 13 , 1927 (10691ms) When was Queen Victoria born? 1819 2.6443534116418728 When was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> (Queen Victoria, was born in, 1819) -> 1819 (2192ms) When was Queen Victoria born? the 24 May 0.11262567577522065 When was Queen Victoria born? -> $x: (Queen Victoria, was born on, $x) -> (Queen Victoria, was born on, the 24 May) -> the 24 May (3949ms) When was Queen Victoria born? May 24 , 1819 0.07046697815245917 When was Queen Victoria born? -> $x: (Queen Victoria, was born on, $x) -> (Queen Victoria, was born on, May 24 , 1819) -> May 24 , 1819 (4004ms) When was Queen Victoria born? 1840 -0.10245202055511093 When was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> $x: (Queen Victoria, marry in, $x) -> (Queen Victoria, was married in, 1840) -> 1840 (4070ms) When was Queen Victoria born? 24 May 1819 -0.4943031162645055 When was Queen Victoria born? -> $x: (Queen Victoria, was born on, $x) -> (Queen Victoria, was born on, 24 May 1819) -> 24 May 1819 (4070ms) When was Queen Victoria born? 1857. -0.6248494673610023 When was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> (Queen Victoria, was born in, 1857.) -> 1857. (4071ms) When was Queen Victoria born? 1870 -1.763500344744151 When was Queen Victoria born? -> $x: (Queen Victoria, was born on, $x) -> $x: (queen victorium, bear on, $x) -> $x: ($x, be engrave, queen victorium) -> (1870, were the last engraved types of, Queen Victoria) -> 1870 (8308ms) When was Queen Victoria born? the Palace -2.022776551932055 When was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> (Queen Victoria, was born in, the Palace) -> the Palace (4152ms) When was Queen Victoria born? London -2.163275363635408 When was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> (Queen Victoria, was born in, London) -> London (4152ms) When was Queen Victoria born? England -2.1802003324421015 When was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> (Queen Victoria, was born in, England) -> England (4183ms) When was Queen Victoria born? May 24th -2.2970188467090122 When was Queen Victoria born? -> $x: (Queen Victoria, was born on, $x) -> $x: ($x, be the birthday of, Queen Victoria) -> (May 24th, was the birthday of, Queen Victoria) -> May 24th (6470ms) When was Queen Victoria born? Kensington Palace -2.3359170508130473 When was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> (Queen Victoria, was born in, Kensington Palace) -> Kensington Palace (4183ms) When was Queen Victoria born? 1837 -2.5626152188199067 When was Queen Victoria born? -> $x: (Queen Victoria, was born on, $x) -> $x: (queen victorium, bear on, $x) -> $x: (queen victorium, reign from, $x) -> (Queen Victoria, reigned from, 1837) -> 1837 (8655ms) When was Queen Victoria born? Kensington -2.784023949076143 When was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> (Queen Victoria, was born in, Kensington) -> Kensington (4229ms) When was Queen Victoria born? May -3.0932167325390694 When was Queen Victoria born? -> $x: (Queen Victoria, was born on, $x) -> $x: (Queen Victoria, be bear, $x) -> (" Queen Victoria, was born the 24th of, May) -> May (6149ms) When was Queen Victoria born? 12 October 1888 -3.1139920269375247 When was Queen Victoria born? -> $x: (Queen Victoria, was born on, $x) -> $x: (Queen Victoria, marry on, $x) -> (Queen Victoria Lollar, married on, 12 October 1888) -> 12 October 1888 (6804ms) When was Queen Victoria born? 1901 -4.035159720847911 When was Queen Victoria born? -> $x: (Queen Victoria, was born on, $x) -> $x: (queen victorium, bear on, $x) -> $x: (queen victorium, reign from, $x) -> (Queen Victoria, reigned from 1837 to, 1901) -> 1901 (8655ms) When was Queen Victoria born? Princess Alexandria Victoria -4.772688864365888 When was Queen Victoria born? -> $x: (Queen Victoria, was born on, $x) -> $x: (Queen Victoria, be bear, $x) -> (Queen Victoria, was born as, Princess Alexandria Victoria) -> Princess Alexandria Victoria (6149ms) When was Queen Victoria born? Texas -4.891181014354308 When was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> $x: (Queen Victoria, reunite in, $x) -> (Queen Victoria, were reunited in, Texas) -> Texas (4352ms) When was Queen Victoria born? friends -4.8998110164858755 When was Queen Victoria born? -> $x: (Queen Victoria, was born on, $x) -> $x: (Queen Victoria, be to come to, $x) -> (Queen Victoria?s Suzuki Night Market, is to come with, friends) -> friends (6469ms) When was Queen Victoria born? Halifax -4.908457829335622 When was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> $x: (Queen Victoria, be reside in, $x) -> (Queen Victoria, was residing in, Halifax) -> Halifax (4676ms) When was Queen Victoria born? a white gown -4.914026330327347 When was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> $x: (Queen Victoria, marry in, $x) -> (Queen Victoria, was married in, a white gown) -> a white gown (4352ms) When was Queen Victoria born? a white wedding gown -4.931556628760145 When was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> $x: (Queen Victoria, marry in, $x) -> (Queen Victoria, was married in, a white wedding gown) -> a white wedding gown (4352ms) When was Queen Victoria born? white dress -5.155959481773838 When was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> $x: (Queen Victoria, marry in, $x) -> (Queen Victoria, got married in, white dress) -> white dress (4421ms) When was Queen Victoria born? 1837 to 1901 -5.342642420657202 When was Queen Victoria born? -> $x: (Queen Victoria, was born on, $x) -> $x: (queen victorium, bear on, $x) -> $x: (queen victorium, reign from, $x) -> (Queen Victoria, reigned from, 1837 to 1901) -> 1837 to 1901 (8655ms) When was Queen Victoria born? a love match -5.35633944662052 When was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> $x: (Queen Victoria, marry in, $x) -> (Queen Victoria, also married in, a love match) -> a love match (4422ms) When was Queen Victoria born? Alexandrina Victoria -5.377625812296151 When was Queen Victoria born? -> $x: (Queen Victoria, was born on, $x) -> $x: (Queen Victoria, be bear, $x) -> (Queen Victoria, was born, Alexandrina Victoria) -> Alexandrina Victoria (6178ms) When was Queen Victoria born? a white dress -5.4231744882757855 When was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> $x: (Queen Victoria, marry in, $x) -> (the 1840?s Queen Victoria, got married in, a white dress) -> a white dress (4422ms) When was Queen Victoria born? nearby Claremont -5.597806363879668 When was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> $x: (Queen Victoria, come over from, $x) -> (' Queen Victoria, came over from, nearby Claremont) -> nearby Claremont (4457ms) When was Queen Victoria born? 1837-1901 -5.796260435656624 When was Queen Victoria born? -> $x: (Queen Victoria, was born on, $x) -> $x: (queen victorium, bear on, $x) -> $x: (queen victorium, reign from, $x) -> (Queen Victoria, reigned from, 1837-1901) -> 1837-1901 (8714ms) When was Queen Victoria born? a visit -5.896384616724136 When was Queen Victoria born? -> $x: (Queen Victoria, was born on, $x) -> $x: (Queen Victoria, enjoy on, $x) -> (Queen Victoria, once enjoyed a drink there on, a visit) -> a visit (6216ms) When was Queen Victoria born? the Isle -5.976419313304466 When was Queen Victoria born? -> $x: (Queen Victoria, was born on, $x) -> $x: (Queen Victoria, know on, $x) -> (Queen Victoria, knew deaf people on, the Isle) -> the Isle (6871ms) When was Queen Victoria born? the royal residence -6.144746533353982 When was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> $x: (Queen Victoria, be bear at, $x) -> (Queen Victoria, was born at, the royal residence) -> the royal residence (4456ms) When was Queen Victoria born? the royal home -6.144746533353982 When was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> $x: (Queen Victoria, be bear at, $x) -> (Queen Victoria, was born at, the royal home) -> the royal home (4456ms) When was Queen Victoria born? white -6.421460440287478 When was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> $x: (Queen Victoria, marry in, $x) -> (Queen Victoria, by marrying in, white) -> white (4456ms) When was Queen Victoria born? Windsor -6.485492296787633 When was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> $x: (queen victorium, bear in, $x) -> $x: (queen victorium, to travel to, $x) -> (Queen Victoria, was travelling to, Windsor) -> Windsor (7458ms) When was Queen Victoria born? Scotland -6.766537908948896 When was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> $x: (Queen Victoria, vacation in, $x) -> (Queen Victoria, vacationed in, Scotland) -> Scotland (4818ms) When was Queen Victoria born? the palace -6.8217455452102005 When was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> $x: (Queen Victoria, be bear at, $x) -> (Queen Victoria, was born at, the palace) -> the palace (4497ms) When was Queen Victoria born? the white , opulent gown -8.025102668949211 When was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> $x: (Queen Victoria, marry in, $x) -> (Queen Victoria, married in, the white , opulent gown) -> the white , opulent gown (4497ms) When was Queen Victoria born? Balmoral -8.615498142440323 When was Queen Victoria born? -> $x: (Queen Victoria, was born in, $x) -> $x: (queen victorium, bear in, $x) -> $x: (queen victorium, to travel to, $x) -> (Queen Victoria, travelled to, Balmoral) -> Balmoral (7456ms) What is Jay-Z's real name? Shawn Carter -2.5835082838357453 What is Jay-Z's real name? -> What is real name of Jay-Z ? -> $x: ($x, is real name of, Jay-Z) -> (Shawn Carter, is also the real name of, rap artist Jay-Z) -> Shawn Carter (4101ms) What is Jay-Z's real name? the Carter Music Group -9.870359136714736 What is Jay-Z's real name? -> what be [ jay-z ] s real name ? -> what be be jay-z real name ? -> $x: ($x, be be, jay-z real name) -> (the Carter Music Group, is a reference to, Jay-Z?s real name) -> the Carter Music Group (8640ms) Why is a ladybug helpful? Super Bowl Sunday -14.01576366547775 Why is a ladybug helpful? -> why be [ a ladybug ] helpful ? -> who work on a ladybug ? -> $x: ($x, work on, a ladybug) -> $x: ($x, work on, ladybug) -> (Super Bowl Sunday, was to start working on, the Ladybug.) -> Super Bowl Sunday (13078ms) Where was Super Bowl XXXIV held? the Ravens -10.545371226794668 Where was Super Bowl XXXIV held? -> where be [ super bowl xxxiv ] hold ? -> what be do in super bowl xxxiv ? -> $x: ($x, be do in, super bowl xxxiv) -> $x: ($x, in, super bowl xxxiv) -> (the Ravens, played in, Super Bowl XXXIV) -> the Ravens (3991ms) How many official languages does Switzerland have? German Language 1.7368667100524577 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> (Switzerland, Official Language, German Language) -> German Language (1078ms) How many official languages does Switzerland have? Italian Language 1.7368667100524577 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> (Switzerland, Official Language, Italian Language) -> Italian Language (1078ms) How many official languages does Switzerland have? French Language 1.7368667100524577 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> (Switzerland, Official Language, French Language) -> French Language (1078ms) How many official languages does Switzerland have? Romansh language 1.6617116571520558 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> (Switzerland, Official Language, Romansh language) -> Romansh language (1078ms) How many official languages does Switzerland have? English Language 1.1183668965713673 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> (Pocket Statistical Data on Switzerland 2007, Official Language, English Language) -> English Language (1685ms) How many official languages does Switzerland have? Urdu Language -0.5525564467175519 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, language, $x) -> (Pakistanis in Switzerland, Languages spoken, Urdu Language) -> Urdu Language (3478ms) How many official languages does Switzerland have? Switzerland -0.8518224915068789 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> (Switzerland French, is an official language in, Switzerland) -> Switzerland (2753ms) How many official languages does Switzerland have? Napoletano-Calabrese Language -1.6051259324652787 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, language, $x) -> (Italian immigration to Switzerland, Languages spoken, Napoletano-Calabrese Language) -> Napoletano-Calabrese Language (3477ms) How many official languages does Switzerland have? Swiss German Language -1.6601036936635978 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, language, $x) -> (Italian immigration to Switzerland, Languages spoken, Swiss German Language) -> Swiss German Language (3618ms) How many official languages does Switzerland have? Serbo-Croatian -1.7480681115809082 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, language, $x) -> (Immigration from the former Yugoslavia to Switzerland, Languages spoken, Serbo-Croatian) -> Serbo-Croatian (4487ms) How many official languages does Switzerland have? Swiss Standard German -1.7838036563598159 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, language, $x) -> ("Sects" or Assimilative Movements in Switzerland, Original language, Swiss Standard German) -> Swiss Standard German (4589ms) How many official languages does Switzerland have? Turkish Language -1.8334758192093434 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, language, $x) -> (Turks in Switzerland, Languages spoken, Turkish Language) -> Turkish Language (4679ms) How many official languages does Switzerland have? English -1.8526592114182692 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, language, $x) -> (Switzerland, Language, English) -> English (4843ms) How many official languages does Switzerland have? Swiss Italian -1.8984495369891752 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, language, $x) -> (Italian immigration to Switzerland, Languages spoken, Swiss Italian) -> Swiss Italian (6485ms) How many official languages does Switzerland have? Tamil Language -1.8984495369891752 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, language, $x) -> (Sri Lankans in Switzerland, Languages spoken, Tamil Language) -> Tamil Language (6485ms) How many official languages does Switzerland have? Sinhala Language -1.8984495369891752 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, language, $x) -> (Sri Lankans in Switzerland, Languages spoken, Sinhala Language) -> Sinhala Language (6485ms) How many official languages does Switzerland have? Sicilian Language -1.8984495369891752 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, language, $x) -> (Italian immigration to Switzerland, Languages spoken, Sicilian Language) -> Sicilian Language (6485ms) How many official languages does Switzerland have? Kurdish language -1.9086308721097447 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, language, $x) -> (Turks in Switzerland, Languages spoken, Kurdish language) -> Kurdish language (7815ms) How many official languages does Switzerland have? Punjabi language -1.9086308721097447 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, language, $x) -> (Pakistanis in Switzerland, Languages spoken, Punjabi language) -> Punjabi language (7815ms) How many official languages does Switzerland have? Swiss French -1.9534272981874943 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, language, $x) -> (Italian immigration to Switzerland, Languages spoken, Swiss French) -> Swiss French (7966ms) How many official languages does Switzerland have? Swiss-German Sign Language -1.9996980111250207 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Swiss-German Sign Language, Locale, Switzerland) -> Swiss-German Sign Language (7965ms) How many official languages does Switzerland have? Swiss-French Sign Language -1.9996980111250207 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Swiss-French Sign Language, Locale, Switzerland) -> Swiss-French Sign Language (7964ms) How many official languages does Switzerland have? Swiss-Italian Sign Language -1.9996980111250207 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Swiss-Italian Sign Language, Locale, Switzerland) -> Swiss-Italian Sign Language (7965ms) How many official languages does Switzerland have? Plautdietsch Language -2.000551093500339 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, language, $x) -> (Beresina, or the Last Days of Switzerland, Languages, Plautdietsch Language) -> Plautdietsch Language (8068ms) How many official languages does Switzerland have? Macedonian Language -2.0413917161048047 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, language, $x) -> (Immigration from the former Yugoslavia to Switzerland, Languages spoken, Macedonian Language) -> Macedonian Language (8248ms) How many official languages does Switzerland have? Albanian language -2.116546769005206 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, language, $x) -> (Immigration from the former Yugoslavia to Switzerland, Languages spoken, Albanian language) -> Albanian language (8903ms) How many official languages does Switzerland have? Does Your Cat Know My Dog? -2.1976179514389695 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Does Your Cat Know My Dog?, Region, Switzerland) -> Does Your Cat Know My Dog? (9322ms) How many official languages does Switzerland have? Languages of Switzerland -2.2262535192279307 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Languages of Switzerland, Also known as, German Switzerland) -> Languages of Switzerland (9397ms) How many official languages does Switzerland have? Bourgeois Baby -2.278944103378878 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Bourgeois Baby, Region, Switzerland) -> Bourgeois Baby (9756ms) How many official languages does Switzerland have? Oxygen Sway -2.278944103378878 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Oxygen Sway, Region, Switzerland) -> Oxygen Sway (9678ms) How many official languages does Switzerland have? Absolute Love -2.278944103378878 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Absolute Love, Region, Switzerland) -> Absolute Love (9756ms) How many official languages does Switzerland have? G. -2.3808771554333665 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (G., Region, Switzerland) -> G. (9882ms) How many official languages does Switzerland have? Boogie-Race -2.3808771554333665 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Boogie-Race, Region, Switzerland) -> Boogie-Race (9882ms) How many official languages does Switzerland have? ZolloZ -2.3808771554333665 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (ZolloZ, Region, Switzerland) -> ZolloZ (9882ms) How many official languages does Switzerland have? Catalan-Valencian-Balear -2.3808771554333665 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Catalan-Valencian-Balear, Locale, Switzerland) -> Catalan-Valencian-Balear (9882ms) How many official languages does Switzerland have? Franco-Proven?al -2.3808771554333665 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Franco-Proven?al, Locale, Switzerland) -> Franco-Proven?al (9882ms) How many official languages does Switzerland have? Star-Portrait -2.3808771554333665 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Star-Portrait, Region, Switzerland) -> Star-Portrait (9882ms) How many official languages does Switzerland have? Yiddish, Western -2.42852454847191 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Yiddish, Western, Locale, Switzerland) -> Yiddish, Western (9956ms) How many official languages does Switzerland have? German, Standard -2.42852454847191 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (German, Standard, Locale, Switzerland) -> German, Standard (9956ms) How many official languages does Switzerland have? The Gang -2.42852454847191 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (The Gang, Region, Switzerland) -> The Gang (9956ms) How many official languages does Switzerland have? Teatrodellopera E.P. -2.42852454847191 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Teatrodellopera E.P., Region, Switzerland) -> Teatrodellopera E.P. (10071ms) How many official languages does Switzerland have? Amor Fati -2.42852454847191 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Amor Fati, Region, Switzerland) -> Amor Fati (10070ms) How many official languages does Switzerland have? Speed Up -2.42852454847191 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Speed Up, Region, Switzerland) -> Speed Up (9956ms) How many official languages does Switzerland have? Lem Phago -2.42852454847191 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Lem Phago, Region, Switzerland) -> Lem Phago (9956ms) How many official languages does Switzerland have? Missing You -2.42852454847191 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Missing You, Region, Switzerland) -> Missing You (10070ms) How many official languages does Switzerland have? After All -2.42852454847191 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (After All, Region, Switzerland) -> After All (10071ms) How many official languages does Switzerland have? Romani, Sinte -2.42852454847191 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Romani, Sinte, Locale, Switzerland) -> Romani, Sinte (9957ms) How many official languages does Switzerland have? Tai N?a -2.42852454847191 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Tai N?a, Locale, Switzerland) -> Tai N?a (9956ms) How many official languages does Switzerland have? Kurdish, Northern -2.42852454847191 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Kurdish, Northern, Locale, Switzerland) -> Kurdish, Northern (10070ms) How many official languages does Switzerland have? Iu Mien -2.42852454847191 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Iu Mien, Locale, Switzerland) -> Iu Mien (10070ms) How many official languages does Switzerland have? Assyrian Neo-Aramaic -2.42852454847191 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Assyrian Neo-Aramaic, Locale, Switzerland) -> Assyrian Neo-Aramaic (9956ms) How many official languages does Switzerland have? Love Man Riding -2.4675087791398087 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Love Man Riding, Region, Switzerland) -> Love Man Riding (10241ms) How many official languages does Switzerland have? Time Stories (Duos) -2.4675087791398087 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Time Stories (Duos), Region, Switzerland) -> Time Stories (Duos) (10148ms) How many official languages does Switzerland have? Fall To Pieces -2.4675087791398087 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Fall To Pieces, Region, Switzerland) -> Fall To Pieces (10240ms) How many official languages does Switzerland have? The Dark Tree -2.4675087791398087 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (The Dark Tree, Region, Switzerland) -> The Dark Tree (10148ms) How many official languages does Switzerland have? Sexx Piss Tool -2.4675087791398087 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Sexx Piss Tool, Region, Switzerland) -> Sexx Piss Tool (10414ms) How many official languages does Switzerland have? Auf Wiedersehen (live) -2.4675087791398087 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Auf Wiedersehen (live), Region, Switzerland) -> Auf Wiedersehen (live) (10148ms) How many official languages does Switzerland have? Go / Move -2.4675087791398087 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Go / Move, Region, Switzerland) -> Go / Move (10240ms) How many official languages does Switzerland have? Butterfly Survival Kit -2.4675087791398087 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Butterfly Survival Kit, Region, Switzerland) -> Butterfly Survival Kit (10241ms) How many official languages does Switzerland have? Touch My Skin -2.4675087791398087 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Touch My Skin, Region, Switzerland) -> Touch My Skin (10148ms) How many official languages does Switzerland have? Prophecy of Doom -2.4675087791398087 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Prophecy of Doom, Region, Switzerland) -> Prophecy of Doom (10241ms) How many official languages does Switzerland have? The Multiplication Table -2.4675087791398087 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (The Multiplication Table, Region, Switzerland) -> The Multiplication Table (10240ms) How many official languages does Switzerland have? Skin Tight Inches -2.4675087791398087 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Skin Tight Inches, Region, Switzerland) -> Skin Tight Inches (10414ms) How many official languages does Switzerland have? I d?m Land -2.4675087791398087 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (I d?m Land, Region, Switzerland) -> I d?m Land (10241ms) How many official languages does Switzerland have? Ocean of Illusions -2.4675087791398087 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Ocean of Illusions, Region, Switzerland) -> Ocean of Illusions (10240ms) How many official languages does Switzerland have? Under Pressure EP -2.4675087791398087 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Under Pressure EP, Region, Switzerland) -> Under Pressure EP (10149ms) How many official languages does Switzerland have? Dr Hans im Schn?ggeloch -2.4999956380297244 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Dr Hans im Schn?ggeloch, Region, Switzerland) -> Dr Hans im Schn?ggeloch (10491ms) How many official languages does Switzerland have? Always on My Mind -2.4999956380297244 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Always on My Mind, Region, Switzerland) -> Always on My Mind (10414ms) How many official languages does Switzerland have? First Box Then Walk -2.4999956380297244 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (First Box Then Walk, Region, Switzerland) -> First Box Then Walk (10491ms) How many official languages does Switzerland have? H?ch wie der Himu -2.4999956380297244 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (H?ch wie der Himu, Region, Switzerland) -> H?ch wie der Himu (10491ms) How many official languages does Switzerland have? Atlantis: The Progressive/Trance Compilation -2.4999956380297244 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Atlantis: The Progressive/Trance Compilation, Region, Switzerland) -> Atlantis: The Progressive/Trance Compilation (10414ms) How many official languages does Switzerland have? Move your back part -2.4999956380297244 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Move your back part, Region, Switzerland) -> Move your back part (10414ms) How many official languages does Switzerland have? The Peace Of Arrogance -2.4999956380297244 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (The Peace Of Arrogance, Region, Switzerland) -> The Peace Of Arrogance (10414ms) How many official languages does Switzerland have? Nur so am Rand -2.4999956380297244 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Nur so am Rand, Region, Switzerland) -> Nur so am Rand (10414ms) How many official languages does Switzerland have? Acque passate + Riei -2.4999956380297244 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Acque passate + Riei, Region, Switzerland) -> Acque passate + Riei (10414ms) How many official languages does Switzerland have? Agra -2.5164801819020832 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Agra, Also known as, Agra, Switzerland) -> Agra (10491ms) How many official languages does Switzerland have? Rain -2.5164801819020832 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Rain, Also known as, Rain, Switzerland) -> Rain (10592ms) How many official languages does Switzerland have? Seon -2.5164801819020832 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Seon, Also known as, Seon, Switzerland) -> Seon (10491ms) How many official languages does Switzerland have? Brig -2.5164801819020832 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Brig, Also known as, Brig, Switzerland) -> Brig (10592ms) How many official languages does Switzerland have? Dizy -2.5164801819020832 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Dizy, Also known as, Dizy, Switzerland) -> Dizy (10491ms) How many official languages does Switzerland have? Croy -2.5164801819020832 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Croy, Also known as, Croy, Switzerland) -> Croy (10491ms) How many official languages does Switzerland have? Iseo -2.5164801819020832 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Iseo, Also known as, Iseo, Switzerland) -> Iseo (10491ms) How many official languages does Switzerland have? Ayer -2.5164801819020832 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Ayer, Also known as, Ayer, Switzerland) -> Ayer (10592ms) How many official languages does Switzerland have? In the Eye of the Circle -2.527484518628884 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (In the Eye of the Circle, Region, Switzerland) -> In the Eye of the Circle (10592ms) How many official languages does Switzerland have? Ch?med Chinde, mir w?nd singe -2.527484518628884 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Ch?med Chinde, mir w?nd singe, Region, Switzerland) -> Ch?med Chinde, mir w?nd singe (10592ms) How many official languages does Switzerland have? Gigi vo Arosa / Postbar-Skilift -2.527484518628884 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Gigi vo Arosa / Postbar-Skilift, Region, Switzerland) -> Gigi vo Arosa / Postbar-Skilift (10592ms) How many official languages does Switzerland have? From The Rocking Chair To The Stage -2.5510464162853066 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (From The Rocking Chair To The Stage, Region, Switzerland) -> From The Rocking Chair To The Stage (10721ms) How many official languages does Switzerland have? Art of Knowledge (vs. DJ Emergency) -2.5510464162853066 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Art of Knowledge (vs. DJ Emergency), Region, Switzerland) -> Art of Knowledge (vs. DJ Emergency) (10721ms) How many official languages does Switzerland have? Politics and government -2.5510464162853066 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, subject, $x) -> (The Federal Government of Switzerland, Subjects, Politics and government) -> Politics and government (10721ms) How many official languages does Switzerland have? Le temps est venu (Time Has Come) -2.5714667275875396 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Le temps est venu (Time Has Come), Region, Switzerland) -> Le temps est venu (Time Has Come) (10721ms) How many official languages does Switzerland have? Full of SID EP / Microcompo Remixes -2.5714667275875396 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Full of SID EP / Microcompo Remixes, Region, Switzerland) -> Full of SID EP / Microcompo Remixes (10721ms) How many official languages does Switzerland have? Die gr?ssten Schweizer Hits: Stadt & Land -2.5714667275875396 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Die gr?ssten Schweizer Hits: Stadt & Land, Region, Switzerland) -> Die gr?ssten Schweizer Hits: Stadt & Land (10721ms) How many official languages does Switzerland have? Mur -2.5836089670170046 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Mur, Also known as, Mur, Switzerland) -> Mur (10884ms) How many official languages does Switzerland have? Birmensdorf, Zurich -2.5836089670170046 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Birmensdorf, Zurich, Also known as, Birmensdorf, Switzerland) -> Birmensdorf, Zurich (10721ms) How many official languages does Switzerland have? Nax -2.5836089670170046 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Nax, Also known as, Nax, Switzerland) -> Nax (10885ms) How many official languages does Switzerland have? Sur -2.5836089670170046 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Sur, Also known as, Sur, Switzerland) -> Sur (10721ms) How many official languages does Switzerland have? The Organ, Queen of Instruments (organ: Ivan Sokol) -2.589334499976993 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (The Organ, Queen of Instruments (organ: Ivan Sokol), Region, Switzerland) -> The Organ, Queen of Instruments (organ: Ivan Sokol) (10885ms) How many official languages does Switzerland have? If I Should Fall From Grace With God (remix) -2.6051001814970993 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (If I Should Fall From Grace With God (remix), Region, Switzerland) -> If I Should Fall From Grace With God (remix) (10885ms) How many official languages does Switzerland have? Prisoner-of-war camp -2.6051001814970993 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, subject, $x) -> (Shot from the Sky: American POWs in Switzerland, Subjects, Prisoner-of-war camp) -> Prisoner-of-war camp (10885ms) How many official languages does Switzerland have? Buchberg SH -2.611097847616164 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Buchberg SH, Also known as, Buchberg, Switzerland) -> Buchberg SH (10885ms) How many official languages does Switzerland have? Violin & String Quartet (Pellegrini Quartet, feat. violin: Peter Rundel) -2.6191141206260826 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Violin & String Quartet (Pellegrini Quartet, feat. violin: Peter Rundel), Region, Switzerland) -> Violin & String Quartet (Pellegrini Quartet, feat. violin: Peter Rundel) (10958ms) How many official languages does Switzerland have? Prisoner of war -2.6191141206260826 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, subject, $x) -> (Shot from the Sky: American POWs in Switzerland, Subjects, Prisoner of war) -> Prisoner of war (10885ms) How many official languages does Switzerland have? Chronology of publications in scrutiny of Scientology -2.6191141206260826 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, subject, $x) -> ("Sects" or Assimilative Movements in Switzerland, Subjects, Chronology of publications in scrutiny of Scientology) -> Chronology of publications in scrutiny of Scientology (10885ms) How many official languages does Switzerland have? Nimmerland: Alperose & Rockgitarre - Die Volksmusik der anderen Schweiz -2.6191141206260826 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Nimmerland: Alperose & Rockgitarre - Die Volksmusik der anderen Schweiz, Region, Switzerland) -> Nimmerland: Alperose & Rockgitarre - Die Volksmusik der anderen Schweiz (10958ms) How many official languages does Switzerland have? World War II -2.6191141206260826 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, subject, $x) -> (Shot from the Sky: American POWs in Switzerland, Subjects, World War II) -> World War II (10958ms) How many official languages does Switzerland have? Switzerland during the World Wars -2.6191141206260826 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, subject, $x) -> (Shot from the Sky: American POWs in Switzerland, Subjects, Switzerland during the World Wars) -> Switzerland during the World Wars (10958ms) How many official languages does Switzerland have? Description and travel -2.6429378171453544 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, subject, $x) -> (The scenery of Switzerland and the causes to which it is due, Subjects, Description and travel) -> Description and travel (10958ms) How many official languages does Switzerland have? Spiel mir das Lied vom Tod": "Once Upon A Time In The West" -2.6531479727964706 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Spiel mir das Lied vom Tod": "Once Upon A Time In The West", Region, Switzerland) -> Spiel mir das Lied vom Tod": "Once Upon A Time In The West" (10958ms) How many official languages does Switzerland have? Nationalities and Nationalism -2.6924178022238414 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, subject, $x) -> (Switzerland is a curst, selfish, swinish country of brutes, placed in the most romantic region of the world., Subjects, Nationalities and Nationalism) -> Nationalities and Nationalism (10958ms) How many official languages does Switzerland have? Haubi Songs -2.7218481529958063 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Haubi Songs, Region, Switzerland) -> Haubi Songs (11085ms) How many official languages does Switzerland have? Madre Tierra -2.7218481529958063 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Madre Tierra, Region, Switzerland) -> Madre Tierra (11085ms) How many official languages does Switzerland have? Gertrud Stein -2.7218481529958063 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Gertrud Stein, Region, Switzerland) -> Gertrud Stein (11085ms) How many official languages does Switzerland have? Graveyard Swing -2.7218481529958063 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Graveyard Swing, Region, Switzerland) -> Graveyard Swing (11085ms) How many official languages does Switzerland have? Permanent Hangover -2.7218481529958063 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Permanent Hangover, Region, Switzerland) -> Permanent Hangover (11084ms) How many official languages does Switzerland have? Regular Pleasures -2.7218481529958063 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Regular Pleasures, Region, Switzerland) -> Regular Pleasures (11085ms) How many official languages does Switzerland have? Schwiizer Chinderlieder -2.7218481529958063 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Schwiizer Chinderlieder, Region, Switzerland) -> Schwiizer Chinderlieder (11084ms) How many official languages does Switzerland have? Gravitational Systems -2.7218481529958063 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Gravitational Systems, Region, Switzerland) -> Gravitational Systems (11192ms) How many official languages does Switzerland have? Lightning Arise -2.7218481529958063 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Lightning Arise, Region, Switzerland) -> Lightning Arise (11192ms) How many official languages does Switzerland have? Mitsing Wienacht -2.7218481529958063 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Mitsing Wienacht, Region, Switzerland) -> Mitsing Wienacht (11085ms) How many official languages does Switzerland have? Finger 4 -2.7408193313978493 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Finger 4, Region, Switzerland) -> Finger 4 (11192ms) How many official languages does Switzerland have? Polwechsel 2 -2.7408193313978493 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Polwechsel 2, Region, Switzerland) -> Polwechsel 2 (11192ms) How many official languages does Switzerland have? Round 13 -2.7408193313978493 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Round 13, Region, Switzerland) -> Round 13 (11192ms) How many official languages does Switzerland have? Futurescope F-001 -2.7408193313978493 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Futurescope F-001, Region, Switzerland) -> Futurescope F-001 (11192ms) How many official languages does Switzerland have? 8i Bahnhof -2.7408193313978493 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (8i Bahnhof, Region, Switzerland) -> 8i Bahnhof (11192ms) How many official languages does Switzerland have? EMOS Konzert 2012 -2.779803562065748 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (EMOS Konzert 2012, Region, Switzerland) -> EMOS Konzert 2012 (11435ms) How many official languages does Switzerland have? Energy 99 Millennium -2.779803562065748 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Energy 99 Millennium, Region, Switzerland) -> Energy 99 Millennium (11435ms) How many official languages does Switzerland have? 16 Unforgettable Hits -2.779803562065748 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (16 Unforgettable Hits, Region, Switzerland) -> 16 Unforgettable Hits (11435ms) How many official languages does Switzerland have? Walser German -2.807284233101083 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, main country, Switzerland) -> (Walser German, Main Country, Switzerland) -> Walser German (11581ms) How many official languages does Switzerland have? Bullshit Detector, Volume 4 -2.812290420955664 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Bullshit Detector, Volume 4, Region, Switzerland) -> Bullshit Detector, Volume 4 (11581ms) How many official languages does Switzerland have? Abart Alternative Nation, Volume 2 -2.839779301554824 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Abart Alternative Nation, Volume 2, Region, Switzerland) -> Abart Alternative Nation, Volume 2 (11581ms) How many official languages does Switzerland have? 3 Suits & A Violin -2.839779301554824 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (3 Suits & A Violin, Region, Switzerland) -> 3 Suits & A Violin (11581ms) How many official languages does Switzerland have? DJ Noise - Finger 1 -2.839779301554824 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (DJ Noise - Finger 1, Region, Switzerland) -> DJ Noise - Finger 1 (11581ms) How many official languages does Switzerland have? Chill Out Sofabeat, Volume 3 -2.839779301554824 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Chill Out Sofabeat, Volume 3, Region, Switzerland) -> Chill Out Sofabeat, Volume 3 (11581ms) How many official languages does Switzerland have? Highlights of Silent Dreams, Volume 2 -2.863341199211246 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Highlights of Silent Dreams, Volume 2, Region, Switzerland) -> Highlights of Silent Dreams, Volume 2 (11677ms) How many official languages does Switzerland have? Early works to 1800 -2.883761510513479 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, subject, $x) -> (An account of Switzerland, Subjects, Early works to 1800) -> Early works to 1800 (11752ms) How many official languages does Switzerland have? Willisau (Quartet) 1991 - Studio/Live (disc 4) -2.883761510513479 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Willisau (Quartet) 1991 - Studio/Live (disc 4), Region, Switzerland) -> Willisau (Quartet) 1991 - Studio/Live (disc 4) (11677ms) How many official languages does Switzerland have? Betrachtige ?ber nes Sandwitsch (Berner Chansons 20) -2.883761510513479 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Betrachtige ?ber nes Sandwitsch (Berner Chansons 20), Region, Switzerland) -> Betrachtige ?ber nes Sandwitsch (Berner Chansons 20) (11752ms) How many official languages does Switzerland have? Louis Hayes - Woody Shaw Quintet - Lausanne 1977 -2.901629282902933 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Louis Hayes - Woody Shaw Quintet - Lausanne 1977, Region, Switzerland) -> Louis Hayes - Woody Shaw Quintet - Lausanne 1977 (11882ms) How many official languages does Switzerland have? Samuel Prout -2.912437725149979 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, subject, $x) -> (Sketches by Samuel Prout in France, Belgium, Germany, Italy and Switzerland, Subjects, Samuel Prout) -> Samuel Prout (11882ms) How many official languages does Switzerland have? Holland and Belgium -2.940964414806079 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Holland and Belgium, Also known as, Switzerland.) -> Holland and Belgium (11882ms) How many official languages does Switzerland have? country -2.9823370256700126 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, be, $x) -> (SWITZERLAND, is a, country) -> country (11882ms) How many official languages does Switzerland have? Static -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Static, Region, Switzerland) -> Static (12139ms) How many official languages does Switzerland have? Crystallized -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Crystallized, Region, Switzerland) -> Crystallized (12248ms) How many official languages does Switzerland have? Lombard -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Lombard, Locale, Switzerland) -> Lombard (12859ms) How many official languages does Switzerland have? Zytvertryb -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Zytvertryb, Region, Switzerland) -> Zytvertryb (12050ms) How many official languages does Switzerland have? Platinum -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Platinum, Region, Switzerland) -> Platinum (12139ms) How many official languages does Switzerland have? French -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (French, Locale, Switzerland) -> French (12050ms) How many official languages does Switzerland have? St?rntaler -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (St?rntaler, Region, Switzerland) -> St?rntaler (12138ms) How many official languages does Switzerland have? Dorfgschichta -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Dorfgschichta, Region, Switzerland) -> Dorfgschichta (12139ms) How many official languages does Switzerland have? Yeniche -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Yeniche, Locale, Switzerland) -> Yeniche (12248ms) How many official languages does Switzerland have? Spanish -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Spanish, Locale, Switzerland) -> Spanish (12138ms) How many official languages does Switzerland have? Slotters -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Slotters, Region, Switzerland) -> Slotters (12050ms) How many official languages does Switzerland have? Mambogimp -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Mambogimp, Region, Switzerland) -> Mambogimp (12248ms) How many official languages does Switzerland have? Turkish -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Turkish, Locale, Switzerland) -> Turkish (12341ms) How many official languages does Switzerland have? Serbian -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Serbian, Locale, Switzerland) -> Serbian (12341ms) How many official languages does Switzerland have? United -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (United, Region, Switzerland) -> United (12248ms) How many official languages does Switzerland have? Heartcore -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Heartcore, Region, Switzerland) -> Heartcore (12248ms) How many official languages does Switzerland have? Evolution -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Evolution, Region, Switzerland) -> Evolution (12050ms) How many official languages does Switzerland have? Paths -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Paths, Region, Switzerland) -> Paths (12341ms) How many official languages does Switzerland have? Portuguese -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Portuguese, Locale, Switzerland) -> Portuguese (12341ms) How many official languages does Switzerland have? Italian -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Italian, Locale, Switzerland) -> Italian (12248ms) How many official languages does Switzerland have? Wasserleichentr?ume -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Wasserleichentr?ume, Region, Switzerland) -> Wasserleichentr?ume (12341ms) How many official languages does Switzerland have? Kirmanjki -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Kirmanjki, Locale, Switzerland) -> Kirmanjki (12341ms) How many official languages does Switzerland have? Gaiascension -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Gaiascension, Region, Switzerland) -> Gaiascension (12050ms) How many official languages does Switzerland have? Tibetan -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Tibetan, Locale, Switzerland) -> Tibetan (12341ms) How many official languages does Switzerland have? Blockstoff -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Blockstoff, Region, Switzerland) -> Blockstoff (12248ms) How many official languages does Switzerland have? Metallsp?rhunde -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Metallsp?rhunde, Region, Switzerland) -> Metallsp?rhunde (12050ms) How many official languages does Switzerland have? Piano -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Piano, Region, Switzerland) -> Piano (12248ms) How many official languages does Switzerland have? Walser -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Walser, Locale, Switzerland) -> Walser (12139ms) How many official languages does Switzerland have? Plurabelle -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (Plurabelle, Region, Switzerland) -> Plurabelle (12050ms) How many official languages does Switzerland have? Romansch -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Romansch, Locale, Switzerland) -> Romansch (12138ms) How many official languages does Switzerland have? R?benblast -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, region, Switzerland) -> (R?benblast, Region, Switzerland) -> R?benblast (12138ms) How many official languages does Switzerland have? Schwyzerd?tsch -2.9857658821754316 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, locale, Switzerland) -> (Schwyzerd?tsch, Locale, Switzerland) -> Schwyzerd?tsch (12050ms) How many official languages does Switzerland have? Education -3.0334132752139746 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, subject, $x) -> (Education in Switzerland, Subjects, Education) -> Education (13026ms) How many official languages does Switzerland have? Geology -3.132373245370949 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, subject, $x) -> (The prim?val world of Switzerland, Subjects, Geology) -> Geology (13240ms) How many official languages does Switzerland have? Achievement -3.132373245370949 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, subject, $x) -> (In Switzerland they had brotherly love, five hundred years of democracy and peace, and what did they produce? The cuckoo clock!, Subjects, Achievement) -> Achievement (13240ms) How many official languages does Switzerland have? Iseltwald -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Iseltwald, Also known as, Iseltwald, Switzerland) -> Iseltwald (13517ms) How many official languages does Switzerland have? Flurlingen -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Flurlingen, Also known as, Flurlingen, Switzerland) -> Flurlingen (14060ms) How many official languages does Switzerland have? Coppet -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Coppet, Also known as, Coppet, Switzerland) -> Coppet (14517ms) How many official languages does Switzerland have? Biasca -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Biasca, Also known as, Biasca, Switzerland) -> Biasca (14590ms) How many official languages does Switzerland have? Altishofen -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Altishofen, Also known as, Altishofen, Switzerland) -> Altishofen (13923ms) How many official languages does Switzerland have? Bettingen -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Bettingen, Also known as, Bettingen, Switzerland) -> Bettingen (14692ms) How many official languages does Switzerland have? Z?rich -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Z?rich, Also known as, Zurich, Switzerland) -> Z?rich (13516ms) How many official languages does Switzerland have? Hildisrieden -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Hildisrieden, Also known as, Hildisrieden, Switzerland) -> Hildisrieden (13757ms) How many official languages does Switzerland have? Thusis -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Thusis, Also known as, Thusis, Switzerland) -> Thusis (14590ms) How many official languages does Switzerland have? Satigny -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Satigny, Also known as, Satigny, Switzerland) -> Satigny (14134ms) How many official languages does Switzerland have? Seehof -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Seehof, Also known as, Seehof, Switzerland) -> Seehof (14692ms) How many official languages does Switzerland have? Lodrino -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Lodrino, Also known as, Lodrino, Switzerland) -> Lodrino (14517ms) How many official languages does Switzerland have? Salvan -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Salvan, Also known as, Salvan, Switzerland) -> Salvan (13923ms) How many official languages does Switzerland have? Bardonnex -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Bardonnex, Also known as, Bardonnex, Switzerland) -> Bardonnex (13518ms) How many official languages does Switzerland have? Arbaz -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Arbaz, Also known as, Arbaz, Switzerland) -> Arbaz (14517ms) How many official languages does Switzerland have? Langrickenbach -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Langrickenbach, Also known as, Langrickenbach, Switzerland) -> Langrickenbach (14590ms) How many official languages does Switzerland have? Niederwald -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Niederwald, Also known as, Niederwald, Switzerland) -> Niederwald (14060ms) How many official languages does Switzerland have? Plagne -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Plagne, Also known as, Plagne, Switzerland) -> Plagne (13923ms) How many official languages does Switzerland have? Vernay -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Vernay, Also known as, Vernay, Switzerland) -> Vernay (13518ms) How many official languages does Switzerland have? Bellach -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Bellach, Also known as, Bellach, Switzerland) -> Bellach (14517ms) How many official languages does Switzerland have? Erlach -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Erlach, Also known as, Erlach, Switzerland) -> Erlach (14133ms) How many official languages does Switzerland have? Oberthal -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Oberthal, Also known as, Oberthal, Switzerland) -> Oberthal (14762ms) How many official languages does Switzerland have? Termen -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Termen, Also known as, Termen, Switzerland) -> Termen (13757ms) How many official languages does Switzerland have? Biberist -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Biberist, Also known as, Biberist, Switzerland) -> Biberist (14060ms) How many official languages does Switzerland have? Davos -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Davos, Also known as, Davos, Switzerland) -> Davos (13924ms) How many official languages does Switzerland have? Losone -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Losone, Also known as, Losone, Switzerland) -> Losone (13923ms) How many official languages does Switzerland have? Nidfurn -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Nidfurn, Also known as, Nidfurn, Switzerland) -> Nidfurn (14692ms) How many official languages does Switzerland have? Entlebuch -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Entlebuch, Also known as, Entlebuch, Switzerland) -> Entlebuch (13923ms) How many official languages does Switzerland have? Arolla -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Arolla, Also known as, Arolla, Switzerland) -> Arolla (14133ms) How many official languages does Switzerland have? Affeltrangen -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Affeltrangen, Also known as, Affeltrangen, Switzerland) -> Affeltrangen (13416ms) How many official languages does Switzerland have? Oberrieden -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Oberrieden, Also known as, Oberrieden, Switzerland) -> Oberrieden (14517ms) How many official languages does Switzerland have? Ermatingen -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Ermatingen, Also known as, Ermatingen, Switzerland) -> Ermatingen (14762ms) How many official languages does Switzerland have? H?chstetten -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (H?chstetten, Also known as, H?chstetten, Switzerland) -> H?chstetten (13416ms) How many official languages does Switzerland have? Chigny -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Chigny, Also known as, Chigny, Switzerland) -> Chigny (13978ms) How many official languages does Switzerland have? Laufenburg -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Laufenburg, Also known as, Laufenburg, Switzerland) -> Laufenburg (13517ms) How many official languages does Switzerland have? Finhaut -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Finhaut, Also known as, Finhaut, Switzerland) -> Finhaut (14060ms) How many official languages does Switzerland have? Eglisau -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Eglisau, Also known as, Eglisau, Switzerland) -> Eglisau (13416ms) How many official languages does Switzerland have? Oensingen -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Oensingen, Also known as, Oensingen, Switzerland) -> Oensingen (14590ms) How many official languages does Switzerland have? Zofingen -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Zofingen, Also known as, Zofingen, Switzerland) -> Zofingen (13757ms) How many official languages does Switzerland have? Gimmelwald -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Gimmelwald, Also known as, Gimmelwald, Switzerland) -> Gimmelwald (14134ms) How many official languages does Switzerland have? Egolzwil -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Egolzwil, Also known as, Egolzwil, Switzerland) -> Egolzwil (14590ms) How many official languages does Switzerland have? Troinex -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Troinex, Also known as, Troinex, Switzerland) -> Troinex (14517ms) How many official languages does Switzerland have? Bettlach -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Bettlach, Also known as, Bettlach, Switzerland) -> Bettlach (13978ms) How many official languages does Switzerland have? Siblingen -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Siblingen, Also known as, Siblingen, Switzerland) -> Siblingen (13757ms) How many official languages does Switzerland have? Grellingen -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Grellingen, Also known as, Grellingen, Switzerland) -> Grellingen (14692ms) How many official languages does Switzerland have? Sisikon -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Sisikon, Also known as, Sisikon, Switzerland) -> Sisikon (13516ms) How many official languages does Switzerland have? Filet -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Filet, Also known as, Filet, Switzerland) -> Filet (14133ms) How many official languages does Switzerland have? Rifferswil -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Rifferswil, Also known as, Rifferswil, Switzerland) -> Rifferswil (13978ms) How many official languages does Switzerland have? Dagmersellen -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Dagmersellen, Also known as, Dagmersellen, Switzerland) -> Dagmersellen (13416ms) How many official languages does Switzerland have? Corcelles -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Corcelles, Also known as, Corcelles, Switzerland) -> Corcelles (13923ms) How many official languages does Switzerland have? Ausserberg -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Ausserberg, Also known as, Ausserberg, Switzerland) -> Ausserberg (14692ms) How many official languages does Switzerland have? Littau -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Littau, Also known as, Littau, Switzerland) -> Littau (13757ms) How many official languages does Switzerland have? Nenzlingen -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Nenzlingen, Also known as, Nenzlingen, Switzerland) -> Nenzlingen (14060ms) How many official languages does Switzerland have? Ziefen -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Ziefen, Also known as, Ziefen, Switzerland) -> Ziefen (13924ms) How many official languages does Switzerland have? Turtmann -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Turtmann, Also known as, Turtmann, Switzerland) -> Turtmann (14060ms) How many official languages does Switzerland have? Ennetmoos -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Ennetmoos, Also known as, Ennetmoos, Switzerland) -> Ennetmoos (14762ms) How many official languages does Switzerland have? Oberglatt -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Oberglatt, Also known as, Oberglatt, Switzerland) -> Oberglatt (14134ms) How many official languages does Switzerland have? Oftringen -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Oftringen, Also known as, Oftringen, Switzerland) -> Oftringen (14692ms) How many official languages does Switzerland have? F?tigny -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (F?tigny, Also known as, F?tigny, Switzerland) -> F?tigny (14134ms) How many official languages does Switzerland have? Lenzerheide -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Lenzerheide, Also known as, Lenzerheide, Switzerland) -> Lenzerheide (13416ms) How many official languages does Switzerland have? Lupsingen -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Lupsingen, Also known as, Lupsingen, Switzerland) -> Lupsingen (14590ms) How many official languages does Switzerland have? Wikon -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Wikon, Also known as, Wikon, Switzerland) -> Wikon (13757ms) How many official languages does Switzerland have? Brugg -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Brugg, Also known as, Brugg, Switzerland) -> Brugg (14692ms) How many official languages does Switzerland have? Croglio -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Croglio, Also known as, Croglio, Switzerland) -> Croglio (14134ms) How many official languages does Switzerland have? Gunzwil -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Gunzwil, Also known as, Gunzwil, Switzerland) -> Gunzwil (13978ms) How many official languages does Switzerland have? Kirchdorf -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Kirchdorf, Also known as, Kirchdorf, Switzerland) -> Kirchdorf (14060ms) How many official languages does Switzerland have? F?rstenau -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (F?rstenau, Also known as, F?rstenau, Switzerland) -> F?rstenau (13977ms) How many official languages does Switzerland have? Riederalp -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Riederalp, Also known as, Riederalp, Switzerland) -> Riederalp (13978ms) How many official languages does Switzerland have? Mattenbach -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Mattenbach, Also known as, Mattenbach, Switzerland) -> Mattenbach (13978ms) How many official languages does Switzerland have? Ettiswil -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Ettiswil, Also known as, Ettiswil, Switzerland) -> Ettiswil (13516ms) How many official languages does Switzerland have? Luchsingen -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Luchsingen, Also known as, Luchsingen, Switzerland) -> Luchsingen (13416ms) How many official languages does Switzerland have? Montagnola -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Montagnola, Also known as, Montagnola, Switzerland) -> Montagnola (14692ms) How many official languages does Switzerland have? Schaffhausen -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Schaffhausen, Also known as, Schaffhausen, Switzerland) -> Schaffhausen (14590ms) How many official languages does Switzerland have? Knutwil -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Knutwil, Also known as, Knutwil, Switzerland) -> Knutwil (13977ms) How many official languages does Switzerland have? Bottighofen -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Bottighofen, Also known as, Bottighofen, Switzerland) -> Bottighofen (13757ms) How many official languages does Switzerland have? Erlen -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Erlen, Also known as, Erlen, Switzerland) -> Erlen (14517ms) How many official languages does Switzerland have? Muhen -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Muhen, Also known as, Muhen, Switzerland) -> Muhen (13516ms) How many official languages does Switzerland have? Lommiswil -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Lommiswil, Also known as, Lommiswil, Switzerland) -> Lommiswil (13757ms) How many official languages does Switzerland have? Hemishofen -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Hemishofen, Also known as, Hemishofen, Switzerland) -> Hemishofen (14590ms) How many official languages does Switzerland have? Campello -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Campello, Also known as, Campello, Switzerland) -> Campello (14762ms) How many official languages does Switzerland have? Subingen -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Subingen, Also known as, Subingen, Switzerland) -> Subingen (14060ms) How many official languages does Switzerland have? Riddes -3.1884976937590697 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, also know as, Switzerland) -> (Riddes, Also known as, Riddes, Switzerland) -> Riddes (14517ms) How many official languages does Switzerland have? Nation -3.2835620886663266 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, subject, $x) -> (Switzerland is simply a large, lumpy, solid rock with a thin skin of grass stretched over it., Subjects, Nation) -> Nation (14939ms) How many official languages does Switzerland have? country of many different religions, confessions, language and culture -3.3456755811023475 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, country of many different religions, confessions, language and culture) -> country of many different religions, confessions, language and culture (15041ms) How many official languages does Switzerland have? country of three language -3.4236440424381454 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, country of three language) -> country of three language (15170ms) How many official languages does Switzerland have? official tri-ethnic state -3.4236440424381454 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, official tri-ethnic state) -> official tri-ethnic state (15170ms) How many official languages does Switzerland have? confederation -3.4244979432122458 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, confederation) -> confederation (15201ms) How many official languages does Switzerland have? republic -3.4244979432122458 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, republic) -> republic (15201ms) How many official languages does Switzerland have? latitude -3.4272397871846865 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, latitude) -> latitude (15201ms) How many official languages does Switzerland have? NEW -3.4284888886681775 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, be, $x) -> (SWITZERLAND, is a proxy for, NEW) -> NEW (15201ms) How many official languages does Switzerland have? european nation -3.4593999521232117 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, european nation) -> european nation (15232ms) How many official languages does Switzerland have? Globalization -3.4622398125608638 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, subject, $x) -> (Anti-WEF protests in Switzerland, January 2003, Subject of protest, Globalization) -> Globalization (15232ms) How many official languages does Switzerland have? STATES -3.5178277506154463 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, be, $x) -> (SWITZERLAND, is a country located in the geopolitical location, STATES) -> STATES (15262ms) How many official languages does Switzerland have? western european country -3.5280872140690365 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, western european country) -> western european country (15262ms) How many official languages does Switzerland have? german -3.5308660079961687 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, be the language of the country, Switzerland) -> (german, is the language of the country, SWITZERLAND) -> german (15262ms) How many official languages does Switzerland have? neutral nation -3.5619710657005186 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, neutral nation) -> neutral nation (15292ms) How many official languages does Switzerland have? donor country -3.644318314941839 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, donor country) -> donor country (15323ms) How many official languages does Switzerland have? clean financial center -3.6483792795855483 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, clean financial center) -> clean financial center (15322ms) How many official languages does Switzerland have? Swiss -3.704089860149346 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, adjectival form, $x) -> (Switzerland, Adjectival form, Swiss) -> Swiss (15471ms) How many official languages does Switzerland have? German and French -3.7159925689398725 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, be the official language of, Switzerland) -> (German and French, are the official languages of, Switzerland) -> German and French (15471ms) How many official languages does Switzerland have? environmentally advanced country -3.760306884015602 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, environmentally advanced country) -> environmentally advanced country (15598ms) How many official languages does Switzerland have? small mountaneous country -3.760306884015602 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, small mountaneous country) -> small mountaneous country (15598ms) How many official languages does Switzerland have? coutries®ions -3.774502118449236 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, coutries®ions) -> coutries®ions (15598ms) How many official languages does Switzerland have? mountain area -3.7799819372368866 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, mountain area) -> mountain area (15679ms) How many official languages does Switzerland have? preferred international financial center -3.7877957646147618 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, preferred international financial center) -> preferred international financial center (15679ms) How many official languages does Switzerland have? european and asian country -3.7877957646147618 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, european and asian country) -> european and asian country (15679ms) How many official languages does Switzerland have? pure ophthalmology market -3.801079252571909 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, pure ophthalmology market) -> pure ophthalmology market (15725ms) How many official languages does Switzerland have? hub of Adventure Sports -3.801079252571909 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, hub of Adventure Sports) -> hub of Adventure Sports (15679ms) How many official languages does Switzerland have? three level confederation -3.801079252571909 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, three level confederation) -> three level confederation (15725ms) How many official languages does Switzerland have? importer of Spanish jewellery -3.801079252571909 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, importer of Spanish jewellery) -> importer of Spanish jewellery (15679ms) How many official languages does Switzerland have? multicultural nation -3.8134863491171354 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, multicultural nation) -> multicultural nation (15961ms) How many official languages does Switzerland have? civilized state -3.8134863491171354 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, civilized state) -> civilized state (15848ms) How many official languages does Switzerland have? TIMSS country -3.8134863491171354 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, TIMSS country) -> TIMSS country (15910ms) How many official languages does Switzerland have? land of railway -3.8134863491171354 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, land of railway) -> land of railway (15961ms) How many official languages does Switzerland have? insured nation -3.8134863491171354 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, insured nation) -> insured nation (15911ms) How many official languages does Switzerland have? hands-off country -3.8134863491171354 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, hands-off country) -> hands-off country (15910ms) How many official languages does Switzerland have? plebiscitary democracy -3.8134863491171354 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, plebiscitary democracy) -> plebiscitary democracy (15848ms) How many official languages does Switzerland have? leveraged case -3.8134863491171354 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, leveraged case) -> leveraged case (15961ms) How many official languages does Switzerland have? land of glitz -3.8134863491171354 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, land of glitz) -> land of glitz (15725ms) How many official languages does Switzerland have? established polity -3.8134863491171354 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, established polity) -> established polity (15961ms) How many official languages does Switzerland have? banking center -3.8134863491171354 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, banking center) -> banking center (15848ms) How many official languages does Switzerland have? animal-enlightened country -3.8134863491171354 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, animal-enlightened country) -> animal-enlightened country (15911ms) How many official languages does Switzerland have? USAID partner -3.8134863491171354 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, USAID partner) -> USAID partner (15910ms) How many official languages does Switzerland have? federally-organised state -3.8134863491171354 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, federally-organised state) -> federally-organised state (15725ms) How many official languages does Switzerland have? favorable country -3.8134863491171354 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, favorable country) -> favorable country (15910ms) How many official languages does Switzerland have? prosperous country -3.8134863491171354 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, prosperous country) -> prosperous country (15911ms) How many official languages does Switzerland have? nation of exile -3.8134863491171354 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, nation of exile) -> nation of exile (15848ms) How many official languages does Switzerland have? land of watch -3.8134863491171354 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, land of watch) -> land of watch (15848ms) How many official languages does Switzerland have? country of order -3.8134863491171354 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, country of order) -> country of order (15848ms) How many official languages does Switzerland have? market country -3.8134863491171354 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, market country) -> market country (15910ms) How many official languages does Switzerland have? semi-direct democracy -3.8134863491171354 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, semi-direct democracy) -> semi-direct democracy (15848ms) How many official languages does Switzerland have? bordering country -3.8134863491171354 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, bordering country) -> bordering country (15848ms) How many official languages does Switzerland have? affluent society -3.817062667621837 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, affluent society) -> affluent society (15961ms) How many official languages does Switzerland have? debate -3.8174817608450313 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, subject, $x) -> (Switzerland, became a subject of, debate) -> debate (15961ms) How many official languages does Switzerland have? market nation -3.8186273068718855 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, market nation) -> market nation (15961ms) How many official languages does Switzerland have? words -3.818774955973984 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, use in, Switzerland) -> (words, are only used in, Switzerland) -> words (16005ms) How many official languages does Switzerland have? country pavilion -3.8226258296381186 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, country pavilion) -> country pavilion (16005ms) How many official languages does Switzerland have? modern case -3.8237682646266355 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, modern case) -> modern case (16005ms) How many official languages does Switzerland have? federated state -3.8237682646266355 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, federated state) -> federated state (16005ms) How many official languages does Switzerland have? established centre -3.8261410148310198 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, established centre) -> established centre (16005ms) How many official languages does Switzerland have? land of highly regulated cartel -3.8285681331710686 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, land of highly regulated cartel) -> land of highly regulated cartel (16005ms) How many official languages does Switzerland have? land-locked country of mostly mountain -3.8285681331710686 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, land-locked country of mostly mountain) -> land-locked country of mostly mountain (16005ms) How many official languages does Switzerland have? traditional powerhouse -3.8335486237603353 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, traditional powerhouse) -> traditional powerhouse (16078ms) How many official languages does Switzerland have? pure democracy -3.8409047912929353 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, pure democracy) -> pure democracy (16078ms) How many official languages does Switzerland have? amazing ski country -3.8459732080070514 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, amazing ski country) -> amazing ski country (16370ms) How many official languages does Switzerland have? famous pricey country -3.8459732080070514 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, famous pricey country) -> famous pricey country (16370ms) How many official languages does Switzerland have? flat, marshy country -3.8459732080070514 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, flat, marshy country) -> flat, marshy country (16178ms) How many official languages does Switzerland have? incredibly multi-lingual country -3.8459732080070514 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, incredibly multi-lingual country) -> incredibly multi-lingual country (16370ms) How many official languages does Switzerland have? energy trading center -3.8459732080070514 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, energy trading center) -> energy trading center (16370ms) How many official languages does Switzerland have? traditional tourism country -3.8459732080070514 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, traditional tourism country) -> traditional tourism country (16370ms) How many official languages does Switzerland have? land of pleasant person -3.8459732080070514 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, land of pleasant person) -> land of pleasant person (16178ms) How many official languages does Switzerland have? magnificent, impressive land -3.8459732080070514 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, magnificent, impressive land) -> magnificent, impressive land (16178ms) How many official languages does Switzerland have? affluent, flourishing country -3.8459732080070514 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, affluent, flourishing country) -> affluent, flourishing country (16370ms) How many official languages does Switzerland have? great suicide destination -3.8459732080070514 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, great suicide destination) -> great suicide destination (16416ms) How many official languages does Switzerland have? west european destination -3.8459732080070514 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, west european destination) -> west european destination (16370ms) How many official languages does Switzerland have? physically fit country -3.8459732080070514 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, physically fit country) -> physically fit country (16178ms) How many official languages does Switzerland have? country of strong unity -3.8459732080070514 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, country of strong unity) -> country of strong unity (16370ms) How many official languages does Switzerland have? great, independant nation -3.8459732080070514 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, great, independant nation) -> great, independant nation (16178ms) How many official languages does Switzerland have? lavishly colorful place -3.8459732080070514 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, lavishly colorful place) -> lavishly colorful place (16178ms) How many official languages does Switzerland have? checks -3.86169160792281 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, subject, $x) -> (Switzerland, may be subject to, checks) -> checks (16416ms) How many official languages does Switzerland have? west european nation -3.8665370390260514 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, west european nation) -> west european nation (16416ms) How many official languages does Switzerland have? safe, peaceful, beautiful land of no opportunity -3.872550342129724 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, safe, peaceful, beautiful land of no opportunity) -> safe, peaceful, beautiful land of no opportunity (16416ms) How many official languages does Switzerland have? member of the Good Humanitarian Donorship group -3.872550342129724 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, member of the Good Humanitarian Donorship group) -> member of the Good Humanitarian Donorship group (16416ms) How many official languages does Switzerland have? land locked European Country -3.8734620886062108 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, land locked European Country) -> land locked European Country (16416ms) How many official languages does Switzerland have? liberal health public system -3.8734620886062108 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, liberal health public system) -> liberal health public system (16519ms) How many official languages does Switzerland have? much favored retirement destination -3.8734620886062108 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, much favored retirement destination) -> much favored retirement destination (16513ms) How many official languages does Switzerland have? country of insane civil action -3.8734620886062108 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, country of insane civil action) -> country of insane civil action (16416ms) How many official languages does Switzerland have? internationally recognized financial jurisdiction -3.8734620886062108 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, internationally recognized financial jurisdiction) -> internationally recognized financial jurisdiction (16519ms) How many official languages does Switzerland have? atypical and strange place -3.8734620886062108 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, atypical and strange place) -> atypical and strange place (16519ms) How many official languages does Switzerland have? federated country of central Europe -3.8734620886062108 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, federated country of central Europe) -> federated country of central Europe (16519ms) How many official languages does Switzerland have? polite, very orderly country -3.8734620886062108 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, polite, very orderly country) -> polite, very orderly country (16519ms) How many official languages does Switzerland have? land of full employment and rank -3.8970239862626332 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, land of full employment and rank) -> land of full employment and rank (16639ms) How many official languages does Switzerland have? member state of the European Convention -3.8970239862626332 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, member state of the European Convention) -> member state of the European Convention (16639ms) How many official languages does Switzerland have? member state of the Lugano Convention -3.8970239862626332 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, member state of the Lugano Convention) -> member state of the Lugano Convention (16639ms) How many official languages does Switzerland have? curious case study of a nation -3.8970239862626332 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, curious case study of a nation) -> curious case study of a nation (16639ms) How many official languages does Switzerland have? highly civilized and open country -3.8970239862626332 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, highly civilized and open country) -> highly civilized and open country (16519ms) How many official languages does Switzerland have? country of hotel and not of restaurant -3.8970239862626332 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, country of hotel and not of restaurant) -> country of hotel and not of restaurant (16639ms) How many official languages does Switzerland have? member of the two expert group -3.8970239862626332 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, member of the two expert group) -> member of the two expert group (16639ms) How many official languages does Switzerland have? ENglish -3.905546781436519 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, be the language of the country, Switzerland) -> (ENglish, is the language of the country, SWITZERLAND) -> ENglish (16639ms) How many official languages does Switzerland have? exporter of capital good and intermediate input -3.9174442975648662 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, exporter of capital good and intermediate input) -> exporter of capital good and intermediate input (16710ms) How many official languages does Switzerland have? curst , selfish, swinish country of brute -3.9174442975648662 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, curst , selfish, swinish country of brute) -> curst , selfish, swinish country of brute (16710ms) How many official languages does Switzerland have? fully functioning modern day direct democracy -3.9174442975648662 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, fully functioning modern day direct democracy) -> fully functioning modern day direct democracy (16710ms) How many official languages does Switzerland have? currency -3.9295927067692924 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, use in, Switzerland) -> (currency, use in, Lucerne Switzerland) -> currency (16710ms) How many official languages does Switzerland have? free and independent dnation, accommodating multiple ethnicity -3.93531206995432 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, free and independent dnation, accommodating multiple ethnicity) -> free and independent dnation, accommodating multiple ethnicity (16710ms) How many official languages does Switzerland have? land of spectacular mountain landscape and dramatic lake -3.93531206995432 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, land of spectacular mountain landscape and dramatic lake) -> land of spectacular mountain landscape and dramatic lake (16710ms) How many official languages does Switzerland have? healing -4.016978540906131 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, use in, Switzerland) -> (healing, has been widely used in, Switzerland) -> healing (17149ms) How many official languages does Switzerland have? multilingual -4.10124935216183 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, be, $x) -> (Switzerland, is, multilingual) -> multilingual (17246ms) How many official languages does Switzerland have? Countries -4.104848704968058 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, be, $x) -> (SWITZERLAND, is a country located in the geopolitical location, Countries) -> Countries (17246ms) How many official languages does Switzerland have? cheques -4.109740591924954 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: ($x, use in, Switzerland) -> (cheques, are seldom used in, Switzerland) -> cheques (17359ms) How many official languages does Switzerland have? federalist -4.15652641407991 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, be, $x) -> (Switzerland, is, federalist) -> federalist (17359ms) How many official languages does Switzerland have? 5,000 Watt society -4.158267990932991 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, 5,000 Watt society) -> 5,000 Watt society (17359ms) How many official languages does Switzerland have? landlocked alpine country of roughly 7.6 million person -4.1619405288888105 How many official languages does Switzerland have? -> $x: (Switzerland, official languages, $x) -> $x: (Switzerland, instance of, $x) -> (Switzerland, Instance Of, landlocked alpine country of roughly 7.6 million person) -> landlocked alpine country of roughly 7.6 million person (17359ms) How tall is the Washington Monument? the Mall -5.730611333760726 How tall is the Washington Monument? -> how tall [ be the washington monument ] ? -> what be be the washington monument tall ? -> $x: ($x, be be, the washington monument tall) -> (the Mall, is, the tall Washington Monument) -> the Mall (2971ms) How tall is the Washington Monument? 169.294 -7.11631113422292 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> (Washington Monument, Structural Height, 169.294) -> 169.294 (3897ms) How tall is the Washington Monument? the photograph -7.274147223494016 How tall is the Washington Monument? -> how tall [ be the washington monument ] ? -> what be be the washington monument tall ? -> $x: ($x, be be, the washington monument tall) -> (the photograph, is, the tall , slender Washington Monument) -> the photograph (2971ms) How tall is the Washington Monument? 6 minutes -7.7261112644901235 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, 6 minutes) -> 6 minutes (3897ms) How tall is the Washington Monument? 55 feet -7.7334840999046 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, 55 feet) -> 55 feet (3897ms) How tall is the Washington Monument? 209 feet -7.756828609500903 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, 209 feet) -> 209 feet (3897ms) How tall is the Washington Monument? 169 meters -7.7701561317514924 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, 169 meters) -> 169 meters (3897ms) How tall is the Washington Monument? 555.5 feet -7.877079488416591 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, 555.5 feet) -> 555.5 feet (3955ms) How tall is the Washington Monument? 47622 -7.877849747824863 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, length, $x) -> (Washington on the Brazos Monument, Length, 47622) -> 47622 (5465ms) How tall is the Washington Monument? 685746 -7.877849747824863 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, length, $x) -> (The Washington Monument in Washington DC., Length, 685746) -> 685746 (5465ms) How tall is the Washington Monument? 555 feet -7.884189608476071 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, 555 feet) -> 555 feet (3955ms) How tall is the Washington Monument? 11 -7.961747334661998 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (11, am at, the Washington Monument) -> 11 (4740ms) How tall is the Washington Monument? 14 -7.981469326904039 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, track #, $x) -> (Chrisopher Reeve Is Placed Atop The Washington Monument, Track #, 14) -> 14 (5525ms) How tall is the Washington Monument? 2287161 -7.997801226803013 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, length, $x) -> (The Washington Monument dominates the center of the neighborhood, Length, 2287161) -> 2287161 (5464ms) How tall is the Washington Monument? 79188 -7.997801226803013 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, length, $x) -> (Baltimore's Washington Monument, the first Washington Monument, in 1890, Length, 79188) -> 79188 (5464ms) How tall is the Washington Monument? a 555-foot-tall obelisk -8.004106101503302 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, a 555-foot-tall obelisk) -> a 555-foot-tall obelisk (3955ms) How tall is the Washington Monument? 4609636 -8.085765644720324 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, length, $x) -> (US Navy 030926-F-2828D-307 Aerial view of the Washington Monument, Length, 4609636) -> 4609636 (5465ms) How tall is the Washington Monument? two words -8.10506640510351 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, are, two words) -> two words (3955ms) How tall is the Washington Monument? 106218 -8.12150118949923 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, length, $x) -> (Front view of the Washington Monument located in the Washington Monument State Park, Length, 106218) -> 106218 (5464ms) How tall is the Washington Monument? 67233 -8.153032552539443 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, length, $x) -> (Washington Monument illuminated with a message about the Bush environmental legacy, Length, 67233) -> 67233 (5464ms) How tall is the Washington Monument? an obelisk 55 feet -8.157375478399869 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, an obelisk 55 feet) -> an obelisk 55 feet (3955ms) How tall is the Washington Monument? God -8.207700090124991 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument Rally, was, God) -> God (3955ms) How tall is the Washington Monument? a 555-foot erect penis -8.238920489040698 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument obelisk, is, a 555-foot erect penis) -> a 555-foot erect penis (3974ms) How tall is the Washington Monument? 555.5 feet tall -8.240284556783678 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, 555.5 feet tall) -> 555.5 feet tall (3974ms) How tall is the Washington Monument? a tall white-colored obelisk -8.388717800734288 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, a tall white-colored obelisk) -> a tall white-colored obelisk (3974ms) How tall is the Washington Monument? a distance -8.396185670331217 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, was, a distance) -> a distance (3974ms) How tall is the Washington Monument? 55098 -8.405283456861143 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, length, $x) -> (Japanese Crane Monument at the --National Japanese American Memorial-- (Washington, D, Length, 55098) -> 55098 (5464ms) How tall is the Washington Monument? 0.0 -8.40907665787029 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, length, $x) -> (And the Washington Monument Blinks Goodnight, Length, 0.0) -> 0.0 (5525ms) How tall is the Washington Monument? 141.84 -8.40907665787029 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, length, $x) -> (End the Washington Monument (Blinks) Goodnight, Length, 141.84) -> 141.84 (5525ms) How tall is the Washington Monument? a terrorist -8.488634255508433 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, a terrorist) -> a terrorist (3974ms) How tall is the Washington Monument? Chrisopher Reeve Is Placed Atop The Washington Monument -8.541560333983334 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, track #, $x) -> (Chrisopher Reeve Is Placed Atop The Washington Monument, Tracks, Chrisopher Reeve Is Placed Atop The Washington Monument) -> Chrisopher Reeve Is Placed Atop The Washington Monument (5525ms) How tall is the Washington Monument? 1 -8.556958117943365 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, track #, $x) -> (And the Washington Monument Blinks Goodnight, Track #, 1) -> 1 (5525ms) How tall is the Washington Monument? 2 -8.556958117943365 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, track #, $x) -> (End the Washington Monument (Blinks) Goodnight, Track #, 2) -> 2 (5525ms) How tall is the Washington Monument? a requirement -8.563299060932563 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, was, a requirement) -> a requirement (3993ms) How tall is the Washington Monument? the 1993 -8.61906237688574 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, was, the 1993) -> the 1993 (3994ms) How tall is the Washington Monument? 555 ft -8.683662755729742 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, 555 ft) -> 555 ft (3994ms) How tall is the Washington Monument? obelisk.noun.01 -8.689094789823066 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, have, $x) -> (washington monument.noun.01, has instance, obelisk.noun.01) -> obelisk.noun.01 (5765ms) How tall is the Washington Monument? memorial.noun.03 -8.689094789823066 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, have, $x) -> (washington monument.noun.01, has instance, memorial.noun.03) -> memorial.noun.03 (5765ms) How tall is the Washington Monument? a pencil -8.711844326301701 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington monument, is, a pencil) -> a pencil (3994ms) How tall is the Washington Monument? Next -8.728534533014056 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (Next, up was, the Washington Monument) -> Next (4740ms) How tall is the Washington Monument? a bit -8.79838988889021 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, a bit) -> a bit (3993ms) How tall is the Washington Monument? a metallic sphere -8.813123353373399 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, a metallic sphere) -> a metallic sphere (3993ms) How tall is the Washington Monument? End the Washington Monument (Blinks) Goodnight -8.833942063992577 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, track #, $x) -> (End the Washington Monument (Blinks) Goodnight, Tracks, End the Washington Monument (Blinks) Goodnight) -> End the Washington Monument (Blinks) Goodnight (5525ms) How tall is the Washington Monument? And the Washington Monument Blinks Goodnight -8.833942063992577 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, track #, $x) -> (And the Washington Monument Blinks Goodnight, Tracks, And the Washington Monument Blinks Goodnight) -> And the Washington Monument Blinks Goodnight (5525ms) How tall is the Washington Monument? the Lincoln Memorial -8.845744335183962 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, are, the Lincoln Memorial) -> the Lincoln Memorial (4013ms) How tall is the Washington Monument? a great pity -8.849375470139012 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, was, a great pity) -> a great pity (4013ms) How tall is the Washington Monument? a handsome pillar -8.852787052069015 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, a handsome pillar) -> a handsome pillar (4013ms) How tall is the Washington Monument? a miracle -8.857374496493364 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument Rally, was, a miracle) -> a miracle (4013ms) How tall is the Washington Monument? the U.S. Capitol -8.902599985400302 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, the U.S. Capitol) -> the U.S. Capitol (4013ms) How tall is the Washington Monument? an obelisk -8.90763036437259 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, an obelisk) -> an obelisk (4013ms) How tall is the Washington Monument? a must-see -8.918640767805899 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, a must-see) -> a must-see (4031ms) How tall is the Washington Monument? 800,000 visitors -8.938800481839273 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (the Washington Monument, has more than, 800,000 visitors) -> 800,000 visitors (4031ms) How tall is the Washington Monument? an imposing presence -8.956855382241756 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, an imposing presence) -> an imposing presence (4031ms) How tall is the Washington Monument? thirsty Qui -8.96727165229375 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, thirsty Qui) -> thirsty Qui (4031ms) How tall is the Washington Monument? interest -9.008647157628632 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (interest, was, the iconic Washington Monument) -> interest (4740ms) How tall is the Washington Monument? terrorists -9.010351015005863 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (terrorists, so is, the Washington Monument) -> terrorists (4740ms) How tall is the Washington Monument? an imaginary dividing point -9.029990426258383 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, an imaginary dividing point) -> an imaginary dividing point (4031ms) How tall is the Washington Monument? four miles -9.031008516802615 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, four miles) -> four miles (4031ms) How tall is the Washington Monument? DC -9.035654739560325 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (DC, is, the Washington Monument) -> DC (4740ms) How tall is the Washington Monument? a much larger replica -9.049442737891686 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, a much larger replica) -> a much larger replica (4096ms) How tall is the Washington Monument? thirsty Merci beaucoup -9.051856791104877 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, thirsty Merci beaucoup) -> thirsty Merci beaucoup (4096ms) How tall is the Washington Monument? a beautiful national structure -9.065358303920604 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, a beautiful national structure) -> a beautiful national structure (4095ms) How tall is the Washington Monument? wheelchair accessible -9.065884459856743 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, wheelchair accessible) -> wheelchair accessible (4095ms) How tall is the Washington Monument? a Masonic symbol -9.067315537213535 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington monument, is, a Masonic symbol) -> a Masonic symbol (4096ms) How tall is the Washington Monument? a perfect Egyptian obelisk -9.088774885746018 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, a perfect Egyptian obelisk) -> a perfect Egyptian obelisk (4096ms) How tall is the Washington Monument? D.C. -9.096664339068118 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (D.C., is, the Washington Monument) -> D.C. (4798ms) How tall is the Washington Monument? an Egyptian obelisk -9.102683467578053 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, an Egyptian obelisk) -> an Egyptian obelisk (4170ms) How tall is the Washington Monument? a beautiful and inspiring sight -9.112355055173053 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, a beautiful and inspiring sight) -> a beautiful and inspiring sight (4170ms) How tall is the Washington Monument? 169 meters tall -9.11440210506004 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, 169 meters tall) -> 169 meters tall (4170ms) How tall is the Washington Monument? a beguiling presence -9.137559410632182 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, a beguiling presence) -> a beguiling presence (4170ms) How tall is the Washington Monument? an abandoned stump -9.14735013457609 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, an abandoned stump) -> an abandoned stump (4170ms) How tall is the Washington Monument? 2,700 -9.193514001024631 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (the Washington Monument, has a capacity of, 2,700) -> 2,700 (4170ms) How tall is the Washington Monument? the Mall area -9.207025572526417 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the Mall area, is between, the Washington Monument) -> the Mall area (4798ms) How tall is the Washington Monument? new cracks -9.2114542174443 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (the Washington Monument, have found, new cracks) -> new cracks (4191ms) How tall is the Washington Monument? fireworks -9.214367414458836 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (fireworks, was thrilling with, the Washington Monument) -> fireworks (4798ms) How tall is the Washington Monument? the D.C. area -9.234733582318814 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the D.C. area, is, the Washington Monument) -> the D.C. area (4798ms) How tall is the Washington Monument? the U.S. -9.244459738135467 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the U.S., would be, the Washington Monument) -> the U.S. (4798ms) How tall is the Washington Monument? Ranger Kelly -9.251468766621572 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (Ranger Kelly, was, the Washington Monument) -> Ranger Kelly (4798ms) How tall is the Washington Monument? a controversial event -9.277501212575865 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument rally, was, a controversial event) -> a controversial event (4191ms) How tall is the Washington Monument? cracks -9.287755834391161 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (cracks, were found in, the Washington Monument) -> cracks (4818ms) How tall is the Washington Monument? half way -9.338060836927287 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (half way, down is, the towering Washington Monument) -> half way (4818ms) How tall is the Washington Monument? list -9.340132700528665 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (list, was, the Washington Monument) -> list (4818ms) How tall is the Washington Monument? the National Mall -9.359340877815024 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the National Mall, are, the Washington Monument) -> the National Mall (4818ms) How tall is the Washington Monument? First stop -9.376697185682684 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (First stop, was, the Washington Monument) -> First stop (4818ms) How tall is the Washington Monument? Examples -9.387589110239817 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> (Examples, is the height of, the Washington Monument) -> Examples (3343ms) How tall is the Washington Monument? two inches -9.3989687269096 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (the Washington Monument, has sunk, two inches) -> two inches (4191ms) How tall is the Washington Monument? Pel?e -9.419598205442922 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> (Pel?e, was twice the height of, the Washington Monument) -> Pel?e (3343ms) How tall is the Washington Monument? reduced hours -9.424846167828377 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (reduced hours, was, the Washington Monument) -> reduced hours (4818ms) How tall is the Washington Monument? a huge pond -9.42630659322 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (a huge pond, was, the Washington Monument) -> a huge pond (4838ms) How tall is the Washington Monument? metal detectors -9.435138564182358 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (the Washington Monument, has, metal detectors) -> metal detectors (4191ms) How tall is the Washington Monument? Next door -9.435640549945944 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (Next door, is, the original Washington Monument) -> Next door (4838ms) How tall is the Washington Monument? earlier -9.442769392585292 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (earlier, are for, the Washington Monument) -> earlier (4838ms) How tall is the Washington Monument? next stop -9.45555976646774 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (next stop, would be, the Washington Monument) -> next stop (4838ms) How tall is the Washington Monument? reference -9.50370929282333 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (reference, was, the Washington Monument) -> reference (4838ms) How tall is the Washington Monument? Capitol Mall -9.505884423364591 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (Capitol Mall, as is, the Washington Monument) -> Capitol Mall (4838ms) How tall is the Washington Monument? prophecy timelines -9.536260341705821 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (prophecy timelines, were encoded into, the Washington Monument) -> prophecy timelines (4906ms) How tall is the Washington Monument? the reason -9.547463510652126 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, the reason) -> the reason (4210ms) How tall is the Washington Monument? the plan -9.555623760955653 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, was, the plan) -> the plan (4210ms) How tall is the Washington Monument? Big Pharma -9.559075213132191 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (the WASHINGTON MONUMENT, have taken, Big Pharma) -> Big Pharma (4210ms) How tall is the Washington Monument? Congress -9.560221516620096 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (Congress, as are, the Washington Monument) -> Congress (4906ms) How tall is the Washington Monument? tall -9.5721756153592 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, tall) -> tall (4210ms) How tall is the Washington Monument? thanks -9.572746480019928 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (thanks, is of, the Washington Monument) -> thanks (4906ms) How tall is the Washington Monument? 10:00 AM -9.576159562222507 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be between, $x) -> (the Washington Monument, may be made between, 10:00 AM) -> 10:00 AM (6103ms) How tall is the Washington Monument? one positive note -9.590852775594096 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument victory, was, one positive note) -> one positive note (4210ms) How tall is the Washington Monument? a crack -9.595129993867557 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (the Washington Monument, has, a crack) -> a crack (4210ms) How tall is the Washington Monument? a good days adventure -9.603583558726733 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (a good days adventure, were at, the Washington Monument) -> a good days adventure (4906ms) How tall is the Washington Monument? the time -9.608826513014577 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the time, was, the Washington Monument) -> the time (4906ms) How tall is the Washington Monument? eyeballs -9.626617967489398 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (eyeballs, is, the Washington Masonic Monument) -> eyeballs (4906ms) How tall is the Washington Monument? Washington -9.62749481340659 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (Washington, is, the Washington Monument) -> Washington (4973ms) How tall is the Washington Monument? A stone -9.63256327118494 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (A stone, was stolen from, the Washington Monument) -> A stone (4973ms) How tall is the Washington Monument? Thousands -9.658308168246952 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (Thousands, were showing up near, the Washington Monument) -> Thousands (4973ms) How tall is the Washington Monument? 555 feet tall -9.679471014345614 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, 555 feet tall) -> 555 feet tall (4231ms) How tall is the Washington Monument? an Obelisk -9.689990130262103 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, an Obelisk) -> an Obelisk (4231ms) How tall is the Washington Monument? a dozen Renaissance ladies -9.701729514103532 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (a dozen Renaissance ladies, as were, the Washington Monument) -> a dozen Renaissance ladies (4973ms) How tall is the Washington Monument? no building -9.70873854258964 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (no building, can be higher than, the Washington Monument) -> no building (4973ms) How tall is the Washington Monument? the words -9.717758781714767 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, are, the words) -> the words (4231ms) How tall is the Washington Monument? the Capitol -9.733521168210203 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is to, the Capitol) -> the Capitol (4231ms) How tall is the Washington Monument? 1884 -9.755866115902503 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, was erected, 1884) -> 1884 (4231ms) How tall is the Washington Monument? Egyptophilia -9.791728110511588 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (Egyptophilia, is, the Washington Monument) -> Egyptophilia (4973ms) How tall is the Washington Monument? visible -9.801516266983127 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, visible) -> visible (4409ms) How tall is the Washington Monument? 1998 -9.806687013773969 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be from, $x) -> (The Washington Monument, was closed from, 1998) -> 1998 (5851ms) How tall is the Washington Monument? 1999-2000 -9.8079446197173 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (the Washington Monument, was being renovated back in, 1999-2000) -> 1999-2000 (6391ms) How tall is the Washington Monument? 10:00 a.m. -9.817869583227997 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be between, $x) -> (the Washington Monument, may be made between, 10:00 a.m.) -> 10:00 a.m. (6103ms) How tall is the Washington Monument? 3022008 -9.823862573727245 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, length, $x) -> (Washington Monument-Philadelphia-27527, Length, 3022008) -> 3022008 (8700ms) How tall is the Washington Monument? 10/02 -9.83555352205911 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be on, $x) -> (the Washington Monument photo, was really taken on, 10/02) -> 10/02 (6191ms) How tall is the Washington Monument? Ottoman calligraphy -9.870626835179978 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (the Washington Monument, has, Ottoman calligraphy) -> Ottoman calligraphy (4408ms) How tall is the Washington Monument? 1524882 -9.871509966765789 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, length, $x) -> (Washington Monument 3, Length, 1524882) -> 1524882 (8700ms) How tall is the Washington Monument? an African obelisk -9.873044444052782 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington monument, is, an African obelisk) -> an African obelisk (4408ms) How tall is the Washington Monument? 199583 -9.910494197433687 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, length, $x) -> (Sky over Washington Monument, Length, 199583) -> 199583 (8700ms) How tall is the Washington Monument? 2218847 -9.910494197433687 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, length, $x) -> (Washington Monument in 2007, Length, 2218847) -> 2218847 (8700ms) How tall is the Washington Monument? 849268 -9.910494197433687 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, length, $x) -> (Washington Monument, Richmond, Virginia, Length, 849268) -> 849268 (8700ms) How tall is the Washington Monument? 13 feet -9.925056389058168 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, be, $x) -> (' Washington Monument, was, 13 feet) -> 13 feet (5851ms) How tall is the Washington Monument? direct line -9.927013404617822 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (the Washington Monument, is in, direct line) -> direct line (6391ms) How tall is the Washington Monument? the event -9.929536748764354 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the event, is on, the Washington Monument Grounds) -> the event (4995ms) How tall is the Washington Monument? 172210 -9.942981056323603 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, length, $x) -> (Kazimierz Pu?aski monument in Washington, Length, 172210) -> 172210 (8700ms) How tall is the Washington Monument? 967722 -9.942981056323603 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, length, $x) -> (Washington Monument Dusk Jan 2006, Length, 967722) -> 967722 (8700ms) How tall is the Washington Monument? 4431788 -9.970469936922763 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, length, $x) -> (Booker T Washington bust Booker T Washington National Monument, Length, 4431788) -> 4431788 (8699ms) How tall is the Washington Monument? 326149 -9.994031834579186 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, length, $x) -> (Monument to General George Meade, Washington D.C, Length, 326149) -> 326149 (8863ms) How tall is the Washington Monument? 147448 -10.014452145881418 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, length, $x) -> (View of Washington Monument from Holy Rood Cemetery, Length, 147448) -> 147448 (8863ms) How tall is the Washington Monument? Beck -10.019690463519202 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be also, the washington monument) -> (Beck, is also wrong about, the Washington Monument) -> Beck (6391ms) How tall is the Washington Monument? Hawkins County -10.020156969970298 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be in, the washington monument) -> (Hawkins County, was used in, the Washington Monument) -> Hawkins County (6458ms) How tall is the Washington Monument? Constitution -10.020938568314797 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (Constitution, is flanked by, the Washington Monument) -> Constitution (4995ms) How tall is the Washington Monument? San Jacinto Monument -10.0253965019189 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: ($x, instance of, the washington monument) -> (San Jacinto Monument, Instance Of, 50 story tall structure reminiscent of the Washington Monument) -> San Jacinto Monument (5851ms) How tall is the Washington Monument? WAMO Stones Section 5 -10.03998935321929 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (the Washington Monument, can be found in, WAMO Stones Section 5) -> WAMO Stones Section 5 (6391ms) How tall is the Washington Monument? construction -10.04317057893325 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, was under, construction) -> construction (4408ms) How tall is the Washington Monument? 53 -10.067907091650083 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, episode number, $x) -> (Washington Monument, Episode number, 53) -> 53 (8863ms) How tall is the Washington Monument? 67 -10.067907091650083 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, episode number, $x) -> (Washington Monument, Episode number, 67) -> 67 (8863ms) How tall is the Washington Monument? 10 -10.067907091650083 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, season number, $x) -> (Washington Monument, Season number, 10) -> 10 (8311ms) How tall is the Washington Monument? In the distance -10.070684254809045 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (In the distance, is, the Washington Monument) -> In the distance (4995ms) How tall is the Washington Monument? 1885 -10.079019956365475 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (the Washington Monument, was constructed in, 1885) -> 1885 (6391ms) How tall is the Washington Monument? 1835 -10.079511890973569 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (the Washington Monument, was built in, 1835) -> 1835 (6391ms) How tall is the Washington Monument? free performances -10.079764418544304 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (the Washington Monument, has, free performances) -> free performances (4408ms) How tall is the Washington Monument? Baal -10.086320956137609 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, be, $x) -> (Washington Monument, is, Baal) -> Baal (5851ms) How tall is the Washington Monument? any window -10.091834772497183 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be from, $x) -> (the Washington Monument, can be seen from, any window) -> any window (5937ms) How tall is the Washington Monument? Washington DC -10.12411484867703 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (The Washington Monument, is located in, Washington DC) -> Washington DC (6458ms) How tall is the Washington Monument? 1848 -10.132071825561104 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (the Washington monument, was constructed in, 1848) -> 1848 (6458ms) How tall is the Washington Monument? a 500ft obelisk -10.13545858819951 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, be, $x) -> (Washington Monument, is, a 500ft obelisk) -> a 500ft obelisk (5937ms) How tall is the Washington Monument? snow -10.137791477339041 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (the Washington monument, were covered in, snow) -> snow (6458ms) How tall is the Washington Monument? July 4 -10.142336418023545 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be on, $x) -> (the Washington Monument, is laid on, July 4) -> July 4 (6191ms) How tall is the Washington Monument? 1876 -10.146218966085534 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (The Washington Monument, was accepted in, 1876) -> 1876 (6458ms) How tall is the Washington Monument? historic -10.149154531185715 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (the Washington Monument, has been heralded as, historic) -> historic (4463ms) How tall is the Washington Monument? the obelisk -10.164903431561864 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the obelisk, is, the Washington Monument) -> the obelisk (4995ms) How tall is the Washington Monument? the horizon -10.164903431561864 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the horizon, is, the Washington Monument) -> the horizon (4996ms) How tall is the Washington Monument? a metro adventure -10.169152808105753 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (the Washington Monument, had, a metro adventure) -> a metro adventure (4463ms) How tall is the Washington Monument? a distinctive simplicity -10.17318154102053 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (The Washington Monument, has, a distinctive simplicity) -> a distinctive simplicity (4462ms) How tall is the Washington Monument? the distance -10.176954568320648 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the distance, is, the Washington Monument) -> the distance (4995ms) How tall is the Washington Monument? 2015 -10.190866284954343 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (the Washington Monument, is scheduled to open in, 2015) -> 2015 (6458ms) How tall is the Washington Monument? the middle -10.196799131746955 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the middle, is, the Washington Monument) -> the middle (5019ms) How tall is the Washington Monument? pride -10.207710379184263 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (the Washington Monument, has been a source of, pride) -> pride (4462ms) How tall is the Washington Monument? 2009 -10.209270769882636 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (The Washington Monument, was last surveyed in, 2009) -> 2009 (6490ms) How tall is the Washington Monument? a category -10.218229883207828 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (the Washington Monument, is really in, a category) -> a category (6490ms) How tall is the Washington Monument? point -10.227724260799864 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (point, is, the ?Washington Monument strategy ?) -> point (5019ms) How tall is the Washington Monument? the site -10.230468441281332 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the site, is near, the Washington Monument) -> the site (5019ms) How tall is the Washington Monument? Martin Luther King -10.242215155605418 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be of, $x) -> (The Washington Monument, is the site of, Martin Luther King) -> Martin Luther King (6594ms) How tall is the Washington Monument? two families -10.254555013721047 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (two families, were waiting to, see the Washington Monument) -> two families (5019ms) How tall is the Washington Monument? a pyramid -10.28042231773274 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be of, $x) -> (the Washington Monument, is made out of, a pyramid) -> a pyramid (6594ms) How tall is the Washington Monument? 181.0 -10.29011576599284 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, length, $x) -> (Washington Monument, Length, 181.0) -> 181.0 (8896ms) How tall is the Washington Monument? 80.0 -10.29011576599284 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, length, $x) -> (Washington Monument, Length, 80.0) -> 80.0 (8863ms) How tall is the Washington Monument? 96092 -10.300336504112677 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, length, $x) -> (Washington-Rochambeau Monument, Length, 96092) -> 96092 (8896ms) How tall is the Washington Monument? metal roofs -10.317473221228253 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (the Washington Monument and Thomas Jefferson, had, metal roofs) -> metal roofs (4484ms) How tall is the Washington Monument? aluminum -10.318952325649725 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be of, $x) -> (the Washington Monument, is made of, aluminum) -> aluminum (6594ms) How tall is the Washington Monument? Mills -10.319038396426258 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (Mills, was responsible for, the Washington Monument) -> Mills (5019ms) How tall is the Washington Monument? a visual -10.328069227599812 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be of, $x) -> (the Washington Monument, it?ll be a hell of, a visual) -> a visual (6594ms) How tall is the Washington Monument? the sights -10.332965576691562 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the sights, are, the Washington Monument) -> the sights (5039ms) How tall is the Washington Monument? 555 feet high -10.348237891090982 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, 555 feet high) -> 555 feet high (4483ms) How tall is the Washington Monument? Memorial obelisk of Vermont marble -10.356174815585302 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: ($x, instance of, the washington monument) -> (Memorial obelisk of Vermont marble, Instance Of, one-tenth replica of the Washington Monument) -> Memorial obelisk of Vermont marble (6025ms) How tall is the Washington Monument? God Almighty -10.36051282689136 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, God Almighty) -> God Almighty (4483ms) How tall is the Washington Monument? the left -10.375476855641493 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the left, is obviously, the Washington Monument) -> the left (5039ms) How tall is the Washington Monument? the public -10.381596226906012 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (The Washington Monument, has been closed to, the public) -> the public (4484ms) How tall is the Washington Monument? 5 -10.384215008468763 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, track #, $x) -> (Washington Monument, Track #, 5) -> 5 (8310ms) How tall is the Washington Monument? use -10.387484975053209 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (The Washington Monument, has a wheelchair for, use) -> use (4503ms) How tall is the Washington Monument? Tidal Basin -10.391910360364209 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: ($x, instance of, the washington monument) -> (Tidal Basin, Instance Of, body of water sitting just south of the Washington Monument) -> Tidal Basin (6025ms) How tall is the Washington Monument? right there -10.402154939404248 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, right there) -> right there (4503ms) How tall is the Washington Monument? repairs -10.409478792221847 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be for, $x) -> (the venerable Washington Monument, was closed for, repairs) -> repairs (6103ms) How tall is the Washington Monument? the hill -10.409960546902619 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the hill, was, the original Washington Monument) -> the hill (5039ms) How tall is the Washington Monument? free to visit -10.41232825065921 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, free to visit) -> free to visit (4503ms) How tall is the Washington Monument? open -10.414513456576303 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, open) -> open (4503ms) How tall is the Washington Monument? taller -10.436016568334088 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, taller) -> taller (4503ms) How tall is the Washington Monument? the family -10.43648650785158 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the family, were touring, the Washington monuments) -> the family (5039ms) How tall is the Washington Monument? closed -10.440215826671297 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington monument, is, closed) -> closed (4503ms) How tall is the Washington Monument? finalists -10.442982106345976 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (the Washington Monument, have emerged as, finalists) -> finalists (4524ms) How tall is the Washington Monument? water -10.44539261477768 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be in, the washington monument) -> (water, were found in, the Washington Monument) -> water (6490ms) How tall is the Washington Monument? workshop -10.452872442276952 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: ($x, instance of, the washington monument) -> (workshop, Instance Of, construction of the Washington Monument) -> workshop (6025ms) How tall is the Washington Monument? renovations -10.455357329286727 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be for, $x) -> (The Washington Monument, is currently closed for, renovations) -> renovations (6103ms) How tall is the Washington Monument? thirsty -10.460616945535248 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, thirsty) -> thirsty (4524ms) How tall is the Washington Monument? top of the Washington Monument -10.47654717694583 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: ($x, instance of, the washington monument) -> (top of the Washington Monument, Instance Of, moderate adverse effect on distant view of the washington monument ground from location) -> top of the Washington Monument (6025ms) How tall is the Washington Monument? air -10.47654717694583 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: ($x, instance of, the washington monument) -> (air, Instance Of, moderate adverse effect on distant view of the washington monument ground from location) -> air (6025ms) How tall is the Washington Monument? simplicity -10.476578119126815 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be of, $x) -> (The Washington Monument, is a masterwork of, simplicity) -> simplicity (6594ms) How tall is the Washington Monument? the Tower -10.501067356549935 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be from, $x) -> (the Washington Monument, was 10 miles from, the Tower) -> the Tower (6056ms) How tall is the Washington Monument? open to visitors -10.50508556230809 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, open to visitors) -> open to visitors (4524ms) How tall is the Washington Monument? Behind us -10.51401242122966 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (Behind us, was, the Washington Monument) -> Behind us (5039ms) How tall is the Washington Monument? engineers -10.521922194019927 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (engineers, were rappelling down, the Washington monument) -> engineers (5059ms) How tall is the Washington Monument? indefinitely -10.544294305408599 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is closed, indefinitely) -> indefinitely (4543ms) How tall is the Washington Monument? currently -10.557662929725318 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is closed, currently) -> currently (4542ms) How tall is the Washington Monument? 8 -10.598628277142208 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, episode number, $x) -> (Denver Steam Plant, Iowa Dry Goods Store, Arkansas Monument Company, Washington Boathouse, Episode number, 8) -> 8 (8896ms) How tall is the Washington Monument? nine memorials -10.603018180844687 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is one of, nine memorials) -> nine memorials (4543ms) How tall is the Washington Monument? still -10.603766418684263 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, was there, still) -> still (4543ms) How tall is the Washington Monument? daily -10.607327512748881 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is open, daily) -> daily (4543ms) How tall is the Washington Monument? Messenia -10.615291356922038 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be from, $x) -> (the Washington Monument, is from, Messenia) -> Messenia (6103ms) How tall is the Washington Monument? the cornerstone -10.616992409317055 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the cornerstone, was laid for, the Washington Monument) -> the cornerstone (5059ms) How tall is the Washington Monument? every way -10.61974872305977 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (the Washington Monument, is finally symbolic in, every way) -> every way (6490ms) How tall is the Washington Monument? July 4th -10.620978526218792 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be on, $x) -> (the Washington Monument, was laid on, July 4th) -> July 4th (6191ms) How tall is the Washington Monument? the most prominent structure -10.642704557647743 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, the most prominent structure) -> the most prominent structure (4543ms) How tall is the Washington Monument? Washington Monument -10.673943799159403 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, track #, $x) -> (Washington Monument, Tracks, Washington Monument) -> Washington Monument (8896ms) How tall is the Washington Monument? fire -10.697798274816332 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, was on, fire) -> fire (4567ms) How tall is the Washington Monument? central Washington -10.708550721805022 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (The Washington Monument, is seen in, central Washington) -> central Washington (6490ms) How tall is the Washington Monument? better shape -10.712457490604285 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (The Washington Monument grounds, are in, better shape) -> better shape (6490ms) How tall is the Washington Monument? the tallest stone structure -10.74785954151065 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, the tallest stone structure) -> the tallest stone structure (4567ms) How tall is the Washington Monument? white limestone -10.763456280144661 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (the Washington Monument, is clad in, white limestone) -> white limestone (6670ms) How tall is the Washington Monument? 1848 and 1884 -10.768071566799813 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be between, $x) -> (The Washington Monument, was built between, 1848 and 1884) -> 1848 and 1884 (6670ms) How tall is the Washington Monument? DS -10.77493011325124 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, to be, the washington monument) -> (DS, has been to, the Washington Monument) -> DS (6699ms) How tall is the Washington Monument? July 4th ,1848 -10.781791340843405 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be on, $x) -> (the Washington Monument, was laid on, July 4th ,1848) -> July 4th ,1848 (6699ms) How tall is the Washington Monument? pure aluminium -10.822105784022487 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be of, $x) -> (the Washington Monument, is made of, pure aluminium) -> pure aluminium (6699ms) How tall is the Washington Monument? monument -10.831945249923749 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, be, $x) -> (washington monument, is a, monument) -> monument (6728ms) How tall is the Washington Monument? the news -10.834048028402485 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (The Washington monument, has been in, the news) -> the news (4568ms) How tall is the Washington Monument? July 4th , 1848 -10.841441056853737 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be on, $x) -> (the Washington Monument, was laid on, July 4th , 1848) -> July 4th , 1848 (6728ms) How tall is the Washington Monument? the biggest pagan penus sign -10.843591496376554 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington monument, is, the biggest pagan penus sign) -> the biggest pagan penus sign (4568ms) How tall is the Washington Monument? fame -10.844049666669353 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be to, the washington monument) -> (fame, was to see, the Washington Monument) -> fame (6728ms) How tall is the Washington Monument? the OTHER side -10.846862310391135 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be on, $x) -> (the Washington Monument, is supposed to be on, the OTHER side) -> the OTHER side (6728ms) How tall is the Washington Monument? the sky -10.857834663555561 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the sky, is, the Washington Monument) -> the sky (5059ms) How tall is the Washington Monument? line -10.871795625412277 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (the Washington Monument, is n?t quite in, line) -> line (6756ms) How tall is the Washington Monument? Lincoln?s time -10.875381596036354 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (the Washington Monument, was n?t around in, Lincoln?s time) -> Lincoln?s time (6756ms) How tall is the Washington Monument? a day -10.877649336826636 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be to, the washington monument) -> (a day, do be sure to visit, the Washington Monument) -> a day (6784ms) How tall is the Washington Monument? 8595 -10.87780302703586 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, length, $x) -> (Washington Irving Monument in Owen Park, Length, 8595) -> 8595 (8896ms) How tall is the Washington Monument? the tallest masonry structure -10.879669569874732 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, the tallest masonry structure) -> the tallest masonry structure (4567ms) How tall is the Washington Monument? silly -10.900735534169838 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be of, $x) -> (the Washington Monument, is kind of, silly) -> silly (6784ms) How tall is the Washington Monument? a success -10.90404259203253 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, be, $x) -> (Washington Monument, was, a success) -> a success (6784ms) How tall is the Washington Monument? display -10.916948962641095 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be on, $x) -> (the Washington Monument, were on, display) -> display (6784ms) How tall is the Washington Monument? the largest religious rally -10.917625491315285 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument Rally, was, the largest religious rally) -> the largest religious rally (4568ms) How tall is the Washington Monument? events -10.919303712104341 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be for, $x) -> (the Washington Monument, is used for, events) -> events (6784ms) How tall is the Washington Monument? charge -10.925493069614312 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be of, $x) -> (the Washington Monument, are free of, charge) -> charge (6784ms) How tall is the Washington Monument? The walk -10.925987664351062 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (The walk, was from, the Washington Monument) -> The walk (5059ms) How tall is the Washington Monument? WASHINGTON ? -10.938944124634641 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be in, the washington monument) -> (WASHINGTON ?, There was a crack in, the Washington Monument) -> WASHINGTON ? (6813ms) How tall is the Washington Monument? a local quarry -10.939828311035738 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be in, the washington monument) -> (a local quarry, was used in, the Washington Monument) -> a local quarry (6813ms) How tall is the Washington Monument? a large , tall white-colored obelisk -10.942205480051422 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, be, $x) -> (Washington Monument, is, a large , tall white-colored obelisk) -> a large , tall white-colored obelisk (6813ms) How tall is the Washington Monument? July 4 , 1848 -10.95179354309764 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be on, $x) -> (the Washington Monument, was laid on, July 4 , 1848) -> July 4 , 1848 (6813ms) How tall is the Washington Monument? a Masonic ceremony -10.95712005077614 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (The Washington Monument, was dedicated in, a Masonic ceremony) -> a Masonic ceremony (6813ms) How tall is the Washington Monument? One camera -10.958888423578333 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be in, the washington monument) -> (One camera, was positioned high in, the Washington Monument) -> One camera (6813ms) How tall is the Washington Monument? February 21 , 1885 -10.964172310819876 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be on, $x) -> (The Washington Monument, was dedicated on, February 21 , 1885) -> February 21 , 1885 (6938ms) How tall is the Washington Monument? honor -10.970321291809274 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, be, $x) -> (Washington monument, was built in, honor) -> honor (6938ms) How tall is the Washington Monument? dozens -10.970587155795483 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (The Washington Monument, is cracked in, dozens) -> dozens (6938ms) How tall is the Washington Monument? a wintry day -10.970775203990183 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be on, $x) -> (The Washington Monument, was dedicated on, a wintry day) -> a wintry day (6938ms) How tall is the Washington Monument? The background -10.981230141687222 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (The background, is, the Washington Monument) -> The background (5059ms) How tall is the Washington Monument? millions -10.983850162621112 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be of, $x) -> (The Washington Monument, is the subject of, millions) -> millions (6938ms) How tall is the Washington Monument? Barack Obama -10.985378849009994 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, come, the washington monument) -> (Barack Obama, came upon, the Washington monument) -> Barack Obama (6938ms) How tall is the Washington Monument? pieces -10.989974952003827 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be from, $x) -> (the Washington Monument, was built from, pieces) -> pieces (6938ms) How tall is the Washington Monument? the center -10.991705613836656 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (the Washington Monument, is reflected in, the center) -> the center (7125ms) How tall is the Washington Monument? Easby -11.014400093602104 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: ($x, instance of, the washington monument) -> (Easby, Instance Of, member of the Washington Monument Association) -> Easby (7125ms) How tall is the Washington Monument? the most prominent -11.014581887158306 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, the most prominent) -> the most prominent (4586ms) How tall is the Washington Monument? 1888 -11.020330027997714 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, open in, $x) -> (The Washington Monument, opened in, 1888) -> 1888 (7125ms) How tall is the Washington Monument? memory -11.069617350275673 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (The Washington Monument, was built in, memory) -> memory (7180ms) How tall is the Washington Monument? a clear day -11.071367656871688 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be on, $x) -> (the 550 foot Washington Monument, is great on, a clear day) -> a clear day (7180ms) How tall is the Washington Monument? three weeks -11.07335222904299 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (The Washington Monument campaign, was done in, three weeks) -> three weeks (7180ms) How tall is the Washington Monument? five blocks -11.107342634576048 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, be, $x) -> (Washington Monument, are within, five blocks) -> five blocks (7180ms) How tall is the Washington Monument? the largest tower -11.112727842535104 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, was, the largest tower) -> the largest tower (4584ms) How tall is the Washington Monument? The fourth obelisk -11.131513796313218 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (The fourth obelisk, is, the Washington Monument) -> The fourth obelisk (5077ms) How tall is the Washington Monument? the following words -11.133128961399056 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, are, the following words) -> the following words (4584ms) How tall is the Washington Monument? the tallest obelisk -11.133228696916442 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, the tallest obelisk) -> the tallest obelisk (4585ms) How tall is the Washington Monument? crossroads -11.136244376306692 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be of, $x) -> (the Washington Monument, is a different kind of, crossroads) -> crossroads (7180ms) How tall is the Washington Monument? The third obelisk -11.156638102691403 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (The third obelisk, is, the Washington Monument) -> The third obelisk (5078ms) How tall is the Washington Monument? the nation -11.167214206541196 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be of, $x) -> (The Washington Monument, is an iconic symbol of, the nation) -> the nation (7215ms) How tall is the Washington Monument? a quarry -11.170263115484579 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, come, $x) -> (the Washington Monument, came from, a quarry) -> a quarry (7215ms) How tall is the Washington Monument? The site -11.177492068895484 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (The site, is between, the Washington Monument) -> The site (5078ms) How tall is the Washington Monument? the culminating showdown -11.21676534568183 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument Rally, was, the culminating showdown) -> the culminating showdown (4585ms) How tall is the Washington Monument? America -11.229492021458745 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be of, $x) -> (The Washington Monument, is one of, America) -> America (7215ms) How tall is the Washington Monument? the day -11.233072678119498 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the day, is to meet at, the Washington Monument) -> the day (5078ms) How tall is the Washington Monument? money -11.241353892033786 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, run, $x) -> (the Washington National Monument Society, ran out of, money) -> money (7243ms) How tall is the Washington Monument? Pendragon -11.273940532633508 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be of, $x) -> (the Washington Monument, is the reproductive organ of, Pendragon) -> Pendragon (7397ms) How tall is the Washington Monument? The obelisk -11.300097697274419 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (The obelisk, is identical to, the Washington Monument) -> The obelisk (5078ms) How tall is the Washington Monument? Fourth -11.301112068588877 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be of, $x) -> (the Washington Monument, are typical of, Fourth) -> Fourth (7397ms) How tall is the Washington Monument? The capstone -11.326723393740766 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (The capstone, is placed on, the Washington Monument) -> The capstone (5099ms) How tall is the Washington Monument? The most familiar example -11.352200811941694 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (The most familiar example, is, the Washington Monument) -> The most familiar example (5099ms) How tall is the Washington Monument? The museum -11.35226538006895 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (The museum, is being built near, the Washington Monument) -> The museum (5099ms) How tall is the Washington Monument? a very good example -11.36728147752814 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, be, $x) -> (Washington Monument, is, a very good example) -> a very good example (7424ms) How tall is the Washington Monument? the Property -11.387837368506613 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be from, $x) -> (The Washington Monument, is seven blocks from, the Property) -> the Property (7424ms) How tall is the Washington Monument? close proximity -11.401839821884753 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, be, $x) -> (Washington Monument, are located in, close proximity) -> close proximity (7424ms) How tall is the Washington Monument? the devil -11.419871732896134 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be of, $x) -> (The Washington Monument, is of, the devil) -> the devil (7424ms) How tall is the Washington Monument? the background -11.454485809728375 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is in, the background) -> the background (5099ms) How tall is the Washington Monument? Resurrection City -11.467088672655422 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, call, $x) -> (the Washington Monument, called, Resurrection City) -> Resurrection City (7545ms) How tall is the Washington Monument? the first clue -11.470187330721764 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the first clue, is, the Washington Monument) -> the first clue (5120ms) How tall is the Washington Monument? The main activities -11.48248102619598 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (The main activities, are held at, the Washington Monument) -> The main activities (5120ms) How tall is the Washington Monument? Marcia -11.50624594875803 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be from, $x) -> (The Washington Monument, was visible from, Marcia) -> Marcia (7545ms) How tall is the Washington Monument? front -11.51490760161555 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, be, $x) -> (Washington Monument, is positioned in, front) -> front (7545ms) How tall is the Washington Monument? a solemn walk -11.526916276022074 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, follow, $x) -> (the Washington Monument, followed by, a solemn walk) -> a solemn walk (7545ms) How tall is the Washington Monument? the banks -11.534519578260609 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be on, $x) -> (the Washington Monument, was built on, the banks) -> the banks (7573ms) How tall is the Washington Monument? the form -11.53979498084837 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (The Washington Monument, is in, the form) -> the form (7573ms) How tall is the Washington Monument? the Smithsonian -11.551025185737942 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, go to, $x) -> (the Washington Monument, went to, the Smithsonian) -> the Smithsonian (7573ms) How tall is the Washington Monument? recently -11.560932690781009 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (The Washington Monument web site, has been redesigned, recently) -> recently (5120ms) How tall is the Washington Monument? the divine calendar -11.563218676488138 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the divine calendar, was, the Washington Monument) -> the divine calendar (5120ms) How tall is the Washington Monument? Quincy -11.569198017037746 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, to be, the washington monument) -> (Quincy, was used to build, the Washington Monument) -> Quincy (7573ms) How tall is the Washington Monument? The race staging area -11.58750718678948 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (The race staging area, is on, the Washington Monument grounds) -> The race staging area (5120ms) How tall is the Washington Monument? the late 19th century -11.593514731905618 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (the Washington Monument, was completed in, the late 19th century) -> the late 19th century (7573ms) How tall is the Washington Monument? the most famous -11.597766988578815 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the most famous, is, the Washington Monument) -> the most famous (5120ms) How tall is the Washington Monument? the hotel -11.638675822592068 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be from, $x) -> (the Washington Monument, are 14 miles from, the hotel) -> the hotel (7601ms) How tall is the Washington Monument? the country -11.675107060615288 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be of, $x) -> (The Washington Monument, is one of, the country) -> the country (7601ms) How tall is the Washington Monument? The Iraq War Memorial -11.689353499587641 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, come, the washington monument) -> (The Iraq War Memorial, came to, the Washington Monument) -> The Iraq War Memorial (7601ms) How tall is the Washington Monument? cracks near its top -11.696145016220457 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, have, $x) -> (the Washington Monument, may have suffered, cracks near its top) -> cracks near its top (5146ms) How tall is the Washington Monument? repairs Tuesday -11.76820438158404 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be for, $x) -> (The Washington Monument, was closed for, repairs Tuesday) -> repairs Tuesday (7667ms) How tall is the Washington Monument? treasures ..Folks -11.785259491885057 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, come, the washington monument) -> (treasures ..Folks, come here to see, the Washington Monument) -> treasures ..Folks (7667ms) How tall is the Washington Monument? the property -11.78585268490178 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be from, $x) -> (The Washington Monument, is seven blocks from, the property) -> the property (7667ms) How tall is the Washington Monument? thousands -11.812868753513206 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, have, $x) -> (Washington D.C. Monument, will have tens of, thousands) -> thousands (7718ms) How tall is the Washington Monument? the water -11.814328979802516 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be also, the washington monument) -> (the water, is also displayed in, the Washington Monument) -> the water (7718ms) How tall is the Washington Monument? the Space Needle -11.83265420090809 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, have, $x) -> (Washington Monument ? Seattle, has, the Space Needle) -> the Space Needle (7718ms) How tall is the Washington Monument? the capstone -11.850178181528797 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be on, $x) -> (the Washington Monument, is inscribed on, the capstone) -> the capstone (7746ms) How tall is the Washington Monument? the city -11.852249733852936 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (the Washington Monument, is the highest point in, the city) -> the city (7746ms) How tall is the Washington Monument? Tomb of the Unknown Soldier -11.860794397763303 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: (washington monument, wingspan, $x) -> $x: ($x, instance of, washington monument) -> (Tomb of the Unknown Soldier, Instance Of, washington house monument) -> Tomb of the Unknown Soldier (8896ms) How tall is the Washington Monument? the tidal basic -11.865227390919598 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the tidal basic, are seen with, the Washington Monument) -> the tidal basic (5146ms) How tall is the Washington Monument? closer -11.915785350151266 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, offer, the washington monument) -> (closer, offer views of, the Washington monument) -> closer (7773ms) How tall is the Washington Monument? the monuments -11.923805212855813 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be to, the washington monument) -> (the monuments, you?ll want to visit are, the Washington Monument) -> the monuments (7773ms) How tall is the Washington Monument? the crew -11.930908615809171 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the crew, is rappelling down, the Washington Monument) -> the crew (5146ms) How tall is the Washington Monument? the skyline -11.936615319639015 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be on, $x) -> (The Washington Monument, cannot be missed on, the skyline) -> the skyline (7773ms) How tall is the Washington Monument? a march -11.955547500440375 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, follow, $x) -> (the Washington Monument, followed by, a march) -> a march (7773ms) How tall is the Washington Monument? the holidays -11.999026573717586 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be for, $x) -> (The Washington Monument lights, are ready for, the holidays) -> the holidays (7801ms) How tall is the Washington Monument? Capitol Building -12.048785194869836 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: (washington monument, wingspan, $x) -> $x: ($x, instance of, washington monument) -> (Capitol Building, Instance Of, monument of washington) -> Capitol Building (8972ms) How tall is the Washington Monument? America?s power -12.129923799538307 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be of, $x) -> (the Washington Monument, is a symbol of, America?s power) -> America?s power (7829ms) How tall is the Washington Monument? Stephen Wade -12.134451518861287 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: (washington monument, wingspan, $x) -> $x: ($x, instance of, washington monument) -> (Stephen Wade, Instance Of, Washington monument) -> Stephen Wade (9091ms) How tall is the Washington Monument? Jefferson Memorial -12.134451518861287 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: (washington monument, wingspan, $x) -> $x: ($x, instance of, washington monument) -> (Jefferson Memorial, Instance Of, washington monument) -> Jefferson Memorial (9090ms) How tall is the Washington Monument? Lincoln Memorial -12.136910803915455 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: (washington monument, wingspan, $x) -> $x: ($x, instance of, washington monument) -> (Lincoln Memorial, Instance Of, washington house monument) -> Lincoln Memorial (9091ms) How tall is the Washington Monument? Washington monument -12.166938377751201 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: (washington monument, wingspan, $x) -> $x: ($x, instance of, washington monument) -> (Washington monument, Instance Of, historic monument in washington D.C.) -> Washington monument (9091ms) How tall is the Washington Monument? FDR Memorial -12.178689138858788 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: (washington monument, wingspan, $x) -> $x: ($x, instance of, washington monument) -> (FDR Memorial, Instance Of, washington dc's monument) -> FDR Memorial (9091ms) How tall is the Washington Monument? National Monument -12.217989156006784 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: (washington monument, wingspan, $x) -> $x: ($x, instance of, washington monument) -> (National Monument, Instance Of, structure, Lincoln, Mt. Rushmore, Washington Monument) -> National Monument (9122ms) How tall is the Washington Monument? White House -12.217989156006784 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: (washington monument, wingspan, $x) -> $x: ($x, instance of, washington monument) -> (White House, Instance Of, historic monument in washington D.C.) -> White House (9122ms) How tall is the Washington Monument? Lincoln memorial -12.217989156006784 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: (washington monument, wingspan, $x) -> $x: ($x, instance of, washington monument) -> (Lincoln memorial, Instance Of, historic monument in washington D.C.) -> Lincoln memorial (9122ms) How tall is the Washington Monument? Arlington National Cemetery -12.217989156006784 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: (washington monument, wingspan, $x) -> $x: ($x, instance of, washington monument) -> (Arlington National Cemetery, Instance Of, washington monument and landmark) -> Arlington National Cemetery (9122ms) How tall is the Washington Monument? Vietnam Veterans Memorial -12.217989156006784 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: (washington monument, wingspan, $x) -> $x: ($x, instance of, washington monument) -> (Vietnam Veterans Memorial, Instance Of, washington monument and landmark) -> Vietnam Veterans Memorial (9122ms) How tall is the Washington Monument? the victory -12.255171081512366 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, come, $x) -> (the Washington Monument victory, came, the victory) -> the victory (7856ms) How tall is the Washington Monument? the white house -12.315525401622747 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be to, the washington monument) -> (the white house, is walking distance to, the Washington monument) -> the white house (7998ms) How tall is the Washington Monument? the tallest structure in Washington -12.34643629577593 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, is, the tallest structure in Washington) -> the tallest structure in Washington (5146ms) How tall is the Washington Monument? the tallest building in the world -12.42116450023978 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (The Washington Monument, was, the tallest building in the world) -> the tallest building in the world (5145ms) How tall is the Washington Monument? the tallest structure in the world -12.435639324429957 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, was, the tallest structure in the world) -> the tallest structure in the world (5166ms) How tall is the Washington Monument? the tallest obelisk in the world -12.435639324429957 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, the tallest obelisk in the world) -> the tallest obelisk in the world (5166ms) How tall is the Washington Monument? the eye -12.448008321844284 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be to, the washington monument) -> (the eye, is drawn to, the Washington Monument) -> the eye (8026ms) How tall is the Washington Monument? The reference -12.450405751421869 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be to, the washington monument) -> (The reference, is made to, the Washington Monument) -> The reference (8026ms) How tall is the Washington Monument? the world 's tallest structure -12.456040443293908 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, was, the world 's tallest structure) -> the world 's tallest structure (5166ms) How tall is the Washington Monument? the tallest structure in the city -12.456040443293908 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (the washington monument, be, $x) -> (the Washington Monument, is, the tallest structure in the city) -> the tallest structure in the city (5166ms) How tall is the Washington Monument? the spring -12.482211327826281 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, begin, $x) -> (the Washington Monument, began in, the spring) -> the spring (8054ms) How tall is the Washington Monument? World War II Memorial -12.524293825540276 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: (washington monument, wingspan, $x) -> $x: ($x, instance of, washington monument) -> (World War II Memorial, Instance Of, washington's most notable monument) -> World War II Memorial (9122ms) How tall is the Washington Monument? Vietnam Memorial -12.524293825540276 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: (washington monument, wingspan, $x) -> $x: ($x, instance of, washington monument) -> (Vietnam Memorial, Instance Of, washington's most notable monument) -> Vietnam Memorial (9152ms) How tall is the Washington Monument? The public -12.553392725927448 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (The public, was admitted to, the Washington Monument) -> The public (5166ms) How tall is the Washington Monument? the highest masonry structure -12.58219551922405 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, be, $x) -> (Washington Monument, is, the highest masonry structure) -> the highest masonry structure (8170ms) How tall is the Washington Monument? Hines -12.583772736293778 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, have become, the washington monument) -> (Hines, has become one of, the great Washington monuments) -> Hines (8170ms) How tall is the Washington Monument? mind -12.605221691737848 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, come, $x) -> (the Washington Monument, comes to, mind) -> mind (8170ms) How tall is the Washington Monument? the most famous landmarks -12.675619976513806 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be of, $x) -> (The Washington Monument, is one of, the most famous landmarks) -> the most famous landmarks (8170ms) How tall is the Washington Monument? the most familiar example -12.676294106473147 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, be, the washington monument) -> (the most familiar example, is, the Washington Monument) -> the most familiar example (5166ms) How tall is the Washington Monument? the century Aluminum -12.6855104359751 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, to be, the washington monument) -> (the century Aluminum, was used to cap, the Washington Monument) -> the century Aluminum (9152ms) How tall is the Washington Monument? the effect -12.764464498400196 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, bring, the washington monument) -> (the effect, brought about by, the Washington Monument victory) -> the effect (9182ms) How tall is the Washington Monument? the first President -12.84674466936624 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: (the washington monument, height, $x) -> $x: (washington monument, height, $x) -> $x: (washington monument, be, $x) -> (Washington Monument, was dedicated to, the first President) -> the first President (9182ms) How tall is the Washington Monument? Obelisk -12.84995265200227 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the wingspan of the washington monument ? -> $x: (the washington monument, wingspan, $x) -> $x: (washington monument, wingspan, $x) -> $x: ($x, instance of, washington monument) -> (Obelisk, Instance Of, Washington Monument-like structure) -> Obelisk (9211ms) How tall is the Washington Monument? up -12.860290782919282 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, go to, $x) -> (The Washington Monument, to go, up) -> up (9211ms) How tall is the Washington Monument? the greatest feats -12.91469888049632 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be of, $x) -> (The Washington Monument, is arguably one of, the greatest feats) -> the greatest feats (9211ms) How tall is the Washington Monument? the east face -13.112560356358067 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be on, $x) -> (the Washington Monument, is inscribed on, the east face) -> the east face (9242ms) How tall is the Washington Monument? the upper left -13.167579458752229 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, be in, $x) -> (The Washington Monument, can be seen in, the upper left) -> the upper left (9242ms) How tall is the Washington Monument? inside -13.183171639609366 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: (the washington monument, go to, $x) -> (The Washington Monument, to go, inside) -> inside (9242ms) How tall is the Washington Monument? eyeball -13.566902474625003 How tall is the Washington Monument? -> how tall [ be the washington monument ] ? -> what height be be the washington monument ? -> $x: ($x, instance of, height) ($x, be be, the washington monument) -> (eyeball, Instance Of, small-height feature) (eyeballs, is, the Washington Masonic Monument) -> eyeball (2971ms) How tall is the Washington Monument? The march -14.167845338845689 How tall is the Washington Monument? -> how tall be [ the washington monument ] ? -> what be the height of the washington monument ? -> $x: ($x, be the height of, the washington monument) -> $x: ($x, start, the washington monument) -> (The march, will start at, the Washington Monument) -> The march (9302ms) How tall is the Washington Monument? engineer -14.966488484143843 How tall is the Washington Monument? -> how tall [ be the washington monument ] ? -> what height be be the washington monument ? -> $x: ($x, instance of, height) ($x, be be, the washington monument) -> (engineer, Instance Of, height users) (engineers, were rappelling down, the Washington monument) -> engineer (2971ms) How old is Harriet Miers? 1945-08-10 -10.641133025711875 How old is Harriet Miers? -> how old be [ harriet mier ] ? -> what be harriet mier s birthdate ? -> $x: (harriet mier, birthdate, $x) -> $x: (harriet mier, date of birth, $x) -> (Harriet Miers, Date of birth, 1945-08-10) -> 1945-08-10 (2921ms) How old is Harriet Miers? 60 -11.299361980947424 How old is Harriet Miers? -> how old be [ harriet mier ] ? -> what be the age of harriet mier ? -> $x: (harriet mier, age, $x) -> (a Harriet Miers, has reached the age of, 60) -> 60 (2782ms) How old is Harriet Miers? Sarah Palin -13.614484642825442 How old is Harriet Miers? -> how old [ be harriet mier ] ? -> what age be be harriet mier ? -> $x: ($x, instance of, age) ($x, be be, harriet mier) -> (Sarah Palin, Instance Of, attractive middle aged woman) (Sarah Palin, is, the new Harriet Miers) -> Sarah Palin (2667ms) How old is Harriet Miers? Lucy R -13.782878722990231 How old is Harriet Miers? -> how old [ be harriet mier ] ? -> how many year old be be harriet mier ? -> $x: ($x, instance of, year old) ($x, be be, harriet mier) -> (Lucy R, Instance Of, 30 year old governess) (Lucy, was, Harriet Miers) -> Lucy R (6640ms) How old is Harriet Miers? White House Counsel -13.791168173831393 How old is Harriet Miers? -> how old be [ harriet mier ] ? -> what be the age of harriet mier ? -> $x: (harriet mier, age, $x) -> $x: (harriet mier, be be serve, $x) -> (Harriet Miers, is currently serving as, White House Counsel) -> White House Counsel (7836ms) How old is Harriet Miers? information -13.838285402041963 How old is Harriet Miers? -> how old [ be harriet mier ] ? -> what age be be harriet mier ? -> $x: ($x, instance of, age) ($x, be be, harriet mier) -> (information, Instance Of, age) (information, was compiled by, Harriet Miers) -> information (2667ms) How old is Harriet Miers? Yesterday's -13.912377148038534 How old is Harriet Miers? -> how old [ be harriet mier ] ? -> how many year old be be harriet mier ? -> $x: ($x, instance of, year old) ($x, be be, harriet mier) -> (Yesterday's, Instance Of, quiet 82 year old) (yesterday, is, the Harriet Miers) -> Yesterday's (6640ms) How old is Harriet Miers? York -14.210142546618606 How old is Harriet Miers? -> how old [ be harriet mier ] ? -> what age be be harriet mier ? -> $x: ($x, instance of, age) ($x, be be, harriet mier) -> (York, Instance Of, aged town) (YORK, was your reaction to, the Harriet Miers nomination) -> York (2667ms) How old is Harriet Miers? faith -14.218520433204507 How old is Harriet Miers? -> how old [ be harriet mier ] ? -> what age be be harriet mier ? -> $x: ($x, instance of, age) ($x, be be, harriet mier) -> (faith, Instance Of, age-old value) (Faith, is very important to, Harriet Miers) -> faith (2782ms) How old is Harriet Miers? sexism -14.240601068141467 How old is Harriet Miers? -> how old [ be harriet mier ] ? -> what age be be harriet mier ? -> $x: ($x, instance of, age) ($x, be be, harriet mier) -> (sexism, Instance Of, challenge in this modern age) (sexism, was involved with, the Harriet Miers nomination) -> sexism (2783ms) How old is Harriet Miers? staff -14.325336368778068 How old is Harriet Miers? -> how old [ be harriet mier ] ? -> what age be be harriet mier ? -> $x: ($x, instance of, age) ($x, be be, harriet mier) -> (staff, Instance Of, age category) (staff, has been replaced by, Harriet Miers) -> staff (2783ms) How old is Harriet Miers? Sonia Sotomayor -14.501647086536291 How old is Harriet Miers? -> how old [ be harriet mier ] ? -> how many year old be be harriet mier ? -> $x: ($x, instance of, year old) ($x, be be, harriet mier) -> (Sonia Sotomayor, Instance Of, 54-year-old Hispanic American) (Sonia Sotomayor, is Spanish for, Harriet Miers) -> Sonia Sotomayor (6640ms) How old is Harriet Miers? Republican -14.688960614600425 How old is Harriet Miers? -> how old [ be harriet mier ] ? -> how many year old be be harriet mier ? -> $x: ($x, instance of, year old) ($x, be be, harriet mier) -> (Republican, Instance Of, 189 year old new organization) (Republicans, are invoking, Harriet Miers) -> Republican (6640ms) How old is Harriet Miers? Staff -14.726184607769188 How old is Harriet Miers? -> how old [ be harriet mier ] ? -> what age be be harriet mier ? -> $x: ($x, instance of, age) ($x, be be, harriet mier) -> (Staff, Instance Of, age) (staff, has been replaced by, Harriet Miers) -> Staff (2783ms) How old is Harriet Miers? Faith -14.804817320376554 How old is Harriet Miers? -> how old [ be harriet mier ] ? -> what age be be harriet mier ? -> $x: ($x, instance of, age) ($x, be be, harriet mier) -> (Faith, Instance Of, characteristic of this age) (Faith, is very important to, Harriet Miers) -> Faith (2844ms) How old is Harriet Miers? Sotomayor -14.994527346753943 How old is Harriet Miers? -> how old [ be harriet mier ] ? -> how many year old be be harriet mier ? -> $x: ($x, instance of, year old) ($x, be be, harriet mier) -> (Sotomayor, Instance Of, 54-year-old Hispanic) (Sotomayor, is like, Harriet Miers) -> Sotomayor (6667ms) How old is Harriet Miers? Mitt Romney -15.475656429043873 How old is Harriet Miers? -> how old [ be harriet mier ] ? -> what type of character be be harriet mier ? -> what character be be harriet mier ? -> $x: ($x, instance of, character) ($x, be be, harriet mier) -> (Mitt Romney, Instance Of, character) (Mitt Romney, is, Harriet Miers) -> Mitt Romney (9408ms) How old is Harriet Miers? Cheney -16.449304223678414 How old is Harriet Miers? -> how old [ be harriet mier ] ? -> what type of character be be harriet mier ? -> what character be be harriet mier ? -> $x: ($x, instance of, character) ($x, be be, harriet mier) -> (Cheney, Instance Of, character) (Cheney, was his nomination of, Harriet Miers) -> Cheney (9408ms) When was King Louis XIV born? Spain . Louis -4.600877905818088 When was King Louis XIV born? -> $x: (King Louis XIV, was born in, $x) -> $x: (King Louis XIV, become king of, $x) -> (King Louis XIV, has become the king of, Spain . Louis) -> Spain . Louis (3780ms) When was King Louis XIV born? France -4.794228868793698 When was King Louis XIV born? -> $x: (King Louis XIV, was born in, $x) -> $x: (King Louis XIV, become king of, $x) -> (King Louis XIV, became King of, France) -> France (3781ms) When was King Louis XIV born? Paris -5.4399224966504836 When was King Louis XIV born? -> $x: (King Louis XIV, was born in, $x) -> $x: (King Louis XIV, decide to move to, $x) -> (late 17th c. king Louis XIV, decided to move away from, Paris) -> Paris (3758ms) When was King Louis XIV born? the site -7.324231948981502 When was King Louis XIV born? -> $x: (King Louis XIV, was born on, $x) -> $x: (King Louis XIV, to live on, $x) -> (King Louis XIV, used to live on, the site) -> the site (5428ms) When was King Louis XIV born? the land -7.4631762222083715 When was King Louis XIV born? -> $x: (King Louis XIV, was born on, $x) -> $x: (King Louis XIV, have live on, $x) -> (King Louis XIV, had earlier lived on, the land) -> the land (5522ms) Where is the Salton Sea? Ecotopia 0.7732287545858412 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (the Salton Sea, was featured in, Ecotopia) -> Ecotopia (1960ms) Where is the Salton Sea? California 0.706025404501667 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (The Salton Sea, is the largest lake in, California) -> California (1960ms) Where is the Salton Sea? fact -0.6263856408504395 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (the Salton Sea, was in, fact) -> fact (1961ms) Where is the Salton Sea? management -0.7773475455300225 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (The Salton Sea, is an experiment in, management) -> management (2143ms) Where is the Salton Sea? an effort -0.7926082116809543 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (the Salton Sea Authority, was formed in, an effort) -> an effort (2143ms) Where is the Salton Sea? serious trouble -0.8916976045064982 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (The Salton Sea, is in, serious trouble) -> serious trouble (2143ms) Where is the Salton Sea? a former volcanic area -1.0278047984034557 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (The Salton Sea, is in, a former volcanic area) -> a former volcanic area (2143ms) Where is the Salton Sea? Little Birds -1.0378469938804837 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> $x: (salton sea, in, $x) -> (Salton Sea, Featured In Films, Little Birds) -> Little Birds (2143ms) Where is the Salton Sea? birds -1.106649763305581 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (the environmentally sensitive Salton Sea, is a key in, birds) -> birds (2143ms) Where is the Salton Sea? a poor state -1.1915801983921654 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (The Salton Sea, is still there in, a poor state) -> a poor state (2164ms) Where is the Salton Sea? a closed desert basin -1.2304849270633644 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (The Salton Sea, is located in, a closed desert basin) -> a closed desert basin (2164ms) Where is the Salton Sea? Authorities Concept Scheme -1.5511633017973026 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> $x: (salton sea, in, $x) -> (Salton Sea (Calif.), In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (2164ms) Where is the Salton Sea? the Imperial Valley -1.552586683373199 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (the Salton Sea, is in, the Imperial Valley) -> the Imperial Valley (2164ms) Where is the Salton Sea? Geographic Names Concept Scheme -1.5836501606872182 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> $x: (salton sea, in, $x) -> (Salton Sea (Calif.), In Scheme, Geographic Names Concept Scheme) -> Geographic Names Concept Scheme (2180ms) Where is the Salton Sea? nature -1.626166334955325 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (the Salton Sea, are often cyclical in, nature) -> nature (2180ms) Where is the Salton Sea? the Sonoran Desert -1.855568656476812 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (The Salton Sea, is located in, the Sonoran Desert) -> the Sonoran Desert (2180ms) Where is the Salton Sea? black -1.8695593160869757 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (the present day Salton Sea, is shown in, black) -> black (2201ms) Where is the Salton Sea? SB 153 -2.289379094871987 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (the Salton Sea, be included in, SB 153) -> SB 153 (2200ms) Where is the Salton Sea? Holtville -2.3616344557255844 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> $x: (salton sea, in, $x) -> ('s Salton Sea Advisory Committee meeting, held in, Holtville) -> Holtville (2200ms) Where is the Salton Sea? San Diego -2.601919663198811 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> $x: (salton sea, in, $x) -> (the Salton Sea Centennial Symposium, held in, San Diego) -> San Diego (2200ms) Where is the Salton Sea? the top picks -2.667803860766197 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (the Salton Sea, is staying in, the top picks) -> the top picks (2200ms) Where is the Salton Sea? the middle -2.668226939585214 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (The Salton Sea, is out in, the middle) -> the middle (2214ms) Where is the Salton Sea? the desert -2.690208043949199 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (The Salton Sea, is a large lake in, the desert) -> the desert (2214ms) Where is the Salton Sea? the dust -2.7530453727114237 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (The Salton Sea, was left in, the dust) -> the dust (2214ms) Where is the Salton Sea? the early part -2.8297372966353462 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (the Salton Sea, was formed in, the early part) -> the early part (2214ms) Where is the Salton Sea? the southeastern corner -2.837695079649806 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (The Salton Sea, is located in, the southeastern corner) -> the southeastern corner (2236ms) Where is the Salton Sea? St . Louis -3.08999593176063 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> $x: (salton sea, in, $x) -> (the Salton Sea Resolution, passed in, St . Louis) -> St . Louis (2252ms) Where is the Salton Sea? 1905 -3.856700672820333 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (The Salton Sea, was made in, 1905) -> 1905 (2264ms) Where is the Salton Sea? May -4.084605340172335 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> $x: (salton sea, in, $x) -> (Salton Sea', will be out in, May) -> May (2454ms) Where is the Salton Sea? 2010 -4.085410039590524 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (the Salton Sea, was ruled invalid in, 2010) -> 2010 (2468ms) Where is the Salton Sea? detail -4.110835966778081 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> $x: (salton sea, in, $x) -> (the Salton Sea, looks in, detail) -> detail (2469ms) Where is the Salton Sea? part -4.113289968587243 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> $x: (salton sea, in, $x) -> (the Salton Sea, will depend in, part) -> part (2469ms) Where is the Salton Sea? 1955 -4.309350656386576 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> (The Salton Sea State Park, was established in, 1955) -> 1955 (2469ms) Where is the Salton Sea? the center -4.398396886033003 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> $x: (salton sea, in, $x) -> (the Salton Sea, located in, the center) -> the center (2483ms) Where is the Salton Sea? 700 AD -4.987066996158611 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> $x: (salton sea, in, $x) -> (the Salton Sea, began in, 700 AD) -> 700 AD (2502ms) Where is the Salton Sea? the hostile desert -5.035976838931454 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> $x: (salton sea, in, $x) -> ('s Salton Sea, is a fertile oasis in, the hostile desert) -> the hostile desert (2523ms) Where is the Salton Sea? the balance -5.227556944306022 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> $x: (salton sea, in, $x) -> (the Salton Sea, still hangs in, the balance) -> the balance (2703ms) Where is the Salton Sea? salton city 11.09.2009 -5.866794315420267 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> $x: (salton sea, in, $x) -> (the salton sea series, taken in, salton city 11.09.2009) -> salton city 11.09.2009 (2737ms) Where is the Salton Sea? Section 2932 -5.909479559682823 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> $x: (salton sea, in, $x) -> (the Salton Sea Restoration Fund, established in, Section 2932) -> Section 2932 (2737ms) Where is the Salton Sea? 1998 -6.7397415523922275 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> $x: (salton sea, in, $x) -> (The Salton Sea Database Program, began in, 1998) -> 1998 (2774ms) Where is the Salton Sea? 2012 -6.903293809891528 Where is the Salton Sea? -> $x: (the Salton Sea, is in, $x) -> $x: (salton sea, in, $x) -> (Salton Sea, will begin construction in, 2012) -> 2012 (2790ms) Where is the Salton Sea? Alabama -9.154224985461228 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (Alabama, is like, the Salton Sea) -> Alabama (4652ms) Where is the Salton Sea? Yucca -9.230728021064191 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (Yucca, is somewhere near, the Salton Sea) -> Yucca (4652ms) Where is the Salton Sea? Ken Aguado -9.344458706212784 Where is the Salton Sea? -> where be [ the salton sea ] ? -> what be the salton sea s location ? -> $x: (the salton sea, location, $x) -> $x: ($x, produce, the salton sea) -> (Ken Aguado, Films Produced, The Salton Sea) -> Ken Aguado (7714ms) Where is the Salton Sea? Indio -9.438333565175071 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (Indio, is, the Salton Sea) -> Indio (4652ms) Where is the Salton Sea? Westmorland -9.747799238770526 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (Westmorland, is 12 miles south of, the Salton Sea) -> Westmorland (4914ms) Where is the Salton Sea? Thomas Newman -9.765034040529715 Where is the Salton Sea? -> where be [ the salton sea ] ? -> what be the salton sea s location ? -> $x: (the salton sea, location, $x) -> $x: (the salton sea, producer, $x) -> (The Salton Sea, Producers, Thomas Newman) -> Thomas Newman (7531ms) Where is the Salton Sea? New River -9.782991131040227 Where is the Salton Sea? -> where be [ the salton ] sea ? -> what be the source of the salton ? -> $x: (the salton, source, $x) -> $x: (salton, source, $x) -> (Salton Sea, Inflow source(s), New River) -> New River (6709ms) Where is the Salton Sea? Los Angeles -9.859050551029052 Where is the Salton Sea? -> where be [ the salton sea ] ? -> what be the salton sea s location ? -> $x: (the salton sea, location, $x) -> $x: (the salton sea, place, $x) -> (The Salton Sea : geology, history, potential problems, politics, and possible futures of an unnatural desert salt lake, Place of publication, Los Angeles) -> Los Angeles (7813ms) Where is the Salton Sea? The Salton Sea -10.00607953108343 Where is the Salton Sea? -> where be [ the salton sea ] ? -> what be the salton sea s location ? -> $x: (the salton sea, location, $x) -> $x: (the salton sea, soundtrack, $x) -> (The Salton Sea, Soundtrack, The Salton Sea) -> The Salton Sea (7847ms) Where is the Salton Sea? Palm Springs -10.232455164015288 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (Palm Springs, is, the Salton Sea) -> Palm Springs (4913ms) Where is the Salton Sea? Bombay Beach -10.277048768277501 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (Bombay Beach, is, the Salton Sea) -> Bombay Beach (4914ms) Where is the Salton Sea? Randy -10.27730142218039 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (Randy, was more familiar with, the Salton Sea) -> Randy (4914ms) Where is the Salton Sea? Bill Bernstein -10.278350348446534 Where is the Salton Sea? -> where be [ the salton sea ] ? -> what be the salton sea s location ? -> $x: (the salton sea, location, $x) -> $x: (the salton sea, producer, $x) -> (The Salton Sea, Producers, Bill Bernstein) -> Bill Bernstein (7532ms) Where is the Salton Sea? sea level -10.288979263390342 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is below, sea level) -> sea level (4914ms) Where is the Salton Sea? fresh water -10.292580629824279 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, was, fresh water) -> fresh water (4914ms) Where is the Salton Sea? Imperial County -10.293813327929684 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (Imperial County, is the Home of, the famous Salton Sea) -> Imperial County (5008ms) Where is the Salton Sea? Whitewater River -10.298861251434245 Where is the Salton Sea? -> where be [ the salton ] sea ? -> what be the source of the salton ? -> $x: (the salton, source, $x) -> $x: (salton, source, $x) -> (Salton Sea, Inflow source(s), Whitewater River) -> Whitewater River (6709ms) Where is the Salton Sea? Alamo River -10.298861251434245 Where is the Salton Sea? -> where be [ the salton ] sea ? -> what be the source of the salton ? -> $x: (the salton, source, $x) -> $x: (salton, source, $x) -> (Salton Sea, Inflow source(s), Alamo River) -> Alamo River (6709ms) Where is the Salton Sea? Christopher -10.36595978043293 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (Christopher, is living near, the Salton Sea and training) -> Christopher (5008ms) Where is the Salton Sea? the Center -10.373042593667671 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (the Center, will be, the Salton Sea) -> the Center (5008ms) Where is the Salton Sea? United States of America -10.51947204168211 Where is the Salton Sea? -> where be [ the salton sea ] ? -> what be the salton sea s location ? -> $x: (the salton sea, location, $x) -> $x: (the salton sea, region, $x) -> (The Salton Sea, Region, United States of America) -> United States of America (7455ms) Where is the Salton Sea? agriculture -10.623431733350618 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, is, agriculture) -> agriculture (5008ms) Where is the Salton Sea? an eco-disaster -10.650597264815776 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, was, an eco-disaster) -> an eco-disaster (5008ms) Where is the Salton Sea? ?man -10.659503802358588 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The current Salton Sea, is, ?man) -> ?man (5008ms) Where is the Salton Sea? an extreme -10.664161592048755 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, is, an extreme) -> an extreme (5008ms) Where is the Salton Sea? Todd -10.665518207826718 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (Todd, is highly knowledgeable of, the Salton Sea) -> Todd (5106ms) Where is the Salton Sea? DDT -10.786857653237062 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (DDT, has both been detected in, the Salton Sea) -> DDT (5106ms) Where is the Salton Sea? an inland -10.79655443370429 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton sea, is, an inland) -> an inland (5106ms) Where is the Salton Sea? Desert Shores -10.832981071609073 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (Desert Shores, is in, the Salton Sea area) -> Desert Shores (5106ms) Where is the Salton Sea? Wheat Chex -10.834314980195803 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (Wheat Chex, must be made in, the Salton Sea) -> Wheat Chex (5106ms) Where is the Salton Sea? vital importance -10.893001768250947 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, is of, vital importance) -> vital importance (5106ms) Where is the Salton Sea? an interesting place -10.904431781444831 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, is, an interesting place) -> an interesting place (5106ms) Where is the Salton Sea? agricultural drain water -10.904431781444831 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, is, agricultural drain water) -> agricultural drain water (5158ms) Where is the Salton Sea? high phosphate water -10.93724683542115 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (high phosphate water, is, the Salton sea) -> high phosphate water (5159ms) Where is the Salton Sea? a pretty strange place -10.958134542726473 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is, a pretty strange place) -> a pretty strange place (5158ms) Where is the Salton Sea? five feet -10.961085017074398 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, is only, five feet) -> five feet (5158ms) Where is the Salton Sea? a barren Californian landscape -10.99353764048112 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, is, a barren Californian landscape) -> a barren Californian landscape (5158ms) Where is the Salton Sea? every movie -10.99792345779877 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (every movie, is shot near, the Salton Sea) -> every movie (5159ms) Where is the Salton Sea? a productive fishery -11.001758118547789 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, was, a productive fishery) -> a productive fishery (5196ms) Where is the Salton Sea? California?s largest inland body -11.042068789451585 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is, California?s largest inland body) -> California?s largest inland body (5196ms) Where is the Salton Sea? a fun historical documentary -11.070427691329996 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, is, a fun historical documentary) -> a fun historical documentary (5196ms) Where is the Salton Sea? a terminal lake -11.075638473088208 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is, a terminal lake) -> a terminal lake (5196ms) Where is the Salton Sea? a huge saltwater lake -11.081922219948842 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is, a huge saltwater lake) -> a huge saltwater lake (5195ms) Where is the Salton Sea? a good movie -11.082220082391181 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, was, a good movie) -> a good movie (5196ms) Where is the Salton Sea? an ideal distance -11.098135648420099 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, was, an ideal distance) -> an ideal distance (5234ms) Where is the Salton Sea? invalid last year -11.135401508327604 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, was ruled, invalid last year) -> invalid last year (5234ms) Where is the Salton Sea? a named star -11.136677946521704 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is now, a named star) -> a named star (5234ms) Where is the Salton Sea? Colorado River water -11.13963368524694 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, was mixed with, Colorado River water) -> Colorado River water (5234ms) Where is the Salton Sea? I?ll -11.14322973460127 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (I?ll, be speaking about, the Salton Sea) -> I?ll (5234ms) Where is the Salton Sea? a great flick -11.16238423649453 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (general The Salton Sea, was, a great flick) -> a great flick (5234ms) Where is the Salton Sea? a major bird sanctuary -11.176139177928253 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is, a major bird sanctuary) -> a major bird sanctuary (5234ms) Where is the Salton Sea? the Coachella and Imperial valleys -11.178299802523448 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (the Coachella and Imperial valleys, is, the Salton Sea) -> the Coachella and Imperial valleys (5234ms) Where is the Salton Sea? the Los Angeles basin -11.184489212735715 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (the Los Angeles basin, are near, the Salton Sea) -> the Los Angeles basin (5305ms) Where is the Salton Sea? movie -11.2032342095551 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (movie The Salton Sea, is a, movie) -> movie (5305ms) Where is the Salton Sea? An obvious issue -11.205064322164805 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (An obvious issue, is the distance from, the Salton Sea) -> An obvious issue (5305ms) Where is the Salton Sea? three species -11.214551919289063 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, are infected by, three species) -> three species (5305ms) Where is the Salton Sea? a unique and curious place -11.214790477981458 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is, a unique and curious place) -> a unique and curious place (5305ms) Where is the Salton Sea? an absolute resource goldmine -11.23842526833244 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, was, an absolute resource goldmine) -> an absolute resource goldmine (5305ms) Where is the Salton Sea? water -11.29438538971789 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (water, would have been sent to, the Salton Sea) -> water (5379ms) Where is the Salton Sea? America -11.305237913488893 Where is the Salton Sea? -> where be [ the salton sea ] ? -> what be the salton sea s location ? -> $x: (the salton sea, location, $x) -> $x: (the salton sea, call, $x) -> (the Salton Sea, is now called one of, America) -> America (7773ms) Where is the Salton Sea? the Gulf -11.325960828789194 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (the Gulf, has been recorded at, the Salton Sea) -> the Gulf (5379ms) Where is the Salton Sea? Bob -11.32733700250068 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (Bob, was raised in, the Salton Sea area) -> Bob (5379ms) Where is the Salton Sea? nutrient rich inflows -11.349387357817916 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, has been sustained by, nutrient rich inflows) -> nutrient rich inflows (5379ms) Where is the Salton Sea? five < -11.370543579530748 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea rhyolite, is a series of, five <) -> five < (5415ms) Where is the Salton Sea? a barren California landscape and symbol -11.382594663587238 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is, a barren California landscape and symbol) -> a barren California landscape and symbol (5415ms) Where is the Salton Sea? Amy Sather Smith -11.386324853290581 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, was written by, Amy Sather Smith) -> Amy Sather Smith (5415ms) Where is the Salton Sea? Sonny Bono Sonny -11.396051061809528 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (Sonny Bono Sonny, was determined to save, the Salton Sea) -> Sonny Bono Sonny (5415ms) Where is the Salton Sea? No nests -11.407545590428374 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (No nests, have been noted at, the Salton Sea) -> No nests (5414ms) Where is the Salton Sea? an enormous , accidentally created salt lake -11.442464394535438 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is, an enormous , accidentally created salt lake) -> an enormous , accidentally created salt lake (5415ms) Where is the Salton Sea? New York City -11.448271062433543 Where is the Salton Sea? -> where be [ the salton sea ] ? -> what be the salton sea s location ? -> $x: (the salton sea, location, $x) -> $x: (the salton sea, place, $x) -> (The Salton Sea; an account of Harriman's fight with the Colorado River, Place of publication, New York City) -> New York City (7813ms) Where is the Salton Sea? The Glamis Sand Dunes -11.475572517320165 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (The Glamis Sand Dunes, are located southeast of, the Salton Sea) -> The Glamis Sand Dunes (5415ms) Where is the Salton Sea? Lake Cahuilla -11.482637867737932 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (Lake Cahuilla, was the original name for, the Salton Sea) -> Lake Cahuilla (5454ms) Where is the Salton Sea? a little -11.488261396844273 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, was, a little) -> a little (5454ms) Where is the Salton Sea? DVD -11.490860570913457 Where is the Salton Sea? -> where [ be the salton sea ] ? -> when be the salton sea be ? -> $x: (the salton sea, be be on, $x) -> (the Salton Sea, was released on, DVD) -> DVD (9131ms) Where is the Salton Sea? a large amount -11.493511638479276 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is also home to, a large amount) -> a large amount (5454ms) Where is the Salton Sea? a motor home and Jeep -11.515852814467763 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (a motor home and Jeep, are stored near, the Salton Sea) -> a motor home and Jeep (5454ms) Where is the Salton Sea? more than one hundred different species -11.53972616351114 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (more than one hundred different species, are at, the Salton Sea) -> more than one hundred different species (5527ms) Where is the Salton Sea? A somewhat unique population -11.567784244812698 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (A somewhat unique population, is found in, the Salton Sea) -> A somewhat unique population (5527ms) Where is the Salton Sea? term -11.57022570256436 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, is at, term) -> term (5527ms) Where is the Salton Sea? Floods and crop damage -11.580982630808775 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (Floods and crop damage, was incurred at, the Salton Sea) -> Floods and crop damage (5527ms) Where is the Salton Sea? jobs -11.628726165981963 Where is the Salton Sea? -> where be [ the salton ] sea ? -> what be the source of the salton ? -> $x: (the salton, source, $x) -> (The Salton Sea, should be a source of, jobs) -> jobs (4089ms) Where is the Salton Sea? a director -11.643815637997223 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (a director, was, The Salton Sea) -> a director (5527ms) Where is the Salton Sea? a shallow -11.70394105110392 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is, a shallow) -> a shallow (5579ms) Where is the Salton Sea? a volcano -11.802151574607974 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is, a volcano) -> a volcano (5579ms) Where is the Salton Sea? a toilet -11.81099878057062 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The real Salton Sea, is, a toilet) -> a toilet (5579ms) Where is the Salton Sea? a saline -11.81187778312692 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is, a saline) -> a saline (5579ms) Where is the Salton Sea? a lake -11.827470849334887 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (a lake, was dubbed, the Salton Sea) -> a lake (5579ms) Where is the Salton Sea? decay -11.912972006063951 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is all about, decay) -> decay (5635ms) Where is the Salton Sea? a crossroads -11.982597724006999 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is at, a crossroads) -> a crossroads (5635ms) Where is the Salton Sea? needs-assessment workshop -12.053894696165703 Where is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (Saving The Salton Sea, Instance Of, needs-assessment workshop) -> needs-assessment workshop (9131ms) Where is the Salton Sea? character-driven crime thriller -12.077745002836725 Where is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (The Salton Sea, Instance Of, character-driven crime thriller) -> character-driven crime thriller (9130ms) Where is the Salton Sea? the Desert Forum -12.085726409035479 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, are located here at, the Desert Forum) -> the Desert Forum (5635ms) Where is the Salton Sea? fucking masterpiece -12.111087173333067 Where is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (The Salton Sea, Instance Of, fucking masterpiece) -> fucking masterpiece (9130ms) Where is the Salton Sea? the Colorado River -12.124139150396289 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (the Colorado River, was still pouring into, the Salton Sea) -> the Colorado River (5686ms) Where is the Salton Sea? Water -12.145284057240973 Where is the Salton Sea? -> where [ be the salton sea ] ? -> which organ be be the salton sea ? -> $x: ($x, instance of, organ) ($x, be be, the salton sea) -> (Water, Instance Of, internal organ position substance) (water, would have been sent to, the Salton Sea) -> Water (7258ms) Where is the Salton Sea? terrific movie -12.147420619212268 Where is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (The Salton Sea, Instance Of, terrific movie) -> terrific movie (9130ms) Where is the Salton Sea? The band -12.155696770831398 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (The band, is from, the Salton Sea) -> The band (5686ms) Where is the Salton Sea? the Pacific Institute -12.196643383927517 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (the Pacific Institute, are members of, the Salton Sea Coalition) -> the Pacific Institute (5686ms) Where is the Salton Sea? point -12.197132425317362 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is also major stopping over, point) -> point (5686ms) Where is the Salton Sea? interesting read -12.200168278052631 Where is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (history of the Salton Sea, Instance Of, interesting read) -> interesting read (9131ms) Where is the Salton Sea? Todgoldberg.com -12.201826552803007 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, have, the salton sea) -> (Todgoldberg.com, has some pictures from, the Salton Sea) -> Todgoldberg.com (5686ms) Where is the Salton Sea? stylized movie inwhich -12.208305282263316 Where is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (The Salton Sea, Instance Of, stylized movie inwhich) -> stylized movie inwhich (9130ms) Where is the Salton Sea? huge dune field -12.228385044608006 Where is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (East of the Salton Sea, Instance Of, huge dune field) -> huge dune field (9131ms) Where is the Salton Sea? complex challenge -12.228552746670111 Where is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (Restoration of the Salton Sea, Instance Of, complex challenge) -> complex challenge (9779ms) Where is the Salton Sea? long-term effort -12.235865054985226 Where is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (restoration of the Salton Sea, Instance Of, long-term effort) -> long-term effort (9779ms) Where is the Salton Sea? interesting page -12.238216310091461 Where is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (history of the Salton Sea, Instance Of, interesting page) -> interesting page (9779ms) Where is the Salton Sea? unique opportunity -12.240032336395807 Where is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (Restoration of the Salton Sea, Instance Of, unique opportunity) -> unique opportunity (9779ms) Where is the Salton Sea? 231 ft -12.267982854693866 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, is, 231 ft) -> 231 ft (5686ms) Where is the Salton Sea? awareness about issue -12.273279000043148 Where is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (depletion of the Salton Sea, Instance Of, awareness about issue) -> awareness about issue (9779ms) Where is the Salton Sea? violent, drug glorifying movie -12.273279000043148 Where is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (The Salton Sea, Instance Of, violent, drug glorifying movie) -> violent, drug glorifying movie (9779ms) Where is the Salton Sea? weather worn area -12.273279000043148 Where is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (Northeast of the Salton Sea, Instance Of, weather worn area) -> weather worn area (9779ms) Where is the Salton Sea? 15 miles -12.276634209908678 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, is, 15 miles) -> 15 miles (5891ms) Where is the Salton Sea? stressful period -12.288387120941886 Where is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (summer at the Salton Sea, Instance Of, stressful period) -> stressful period (9779ms) Where is the Salton Sea? water quality parameter -12.291160591647378 Where is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (temperature of the Salton Sea, Instance Of, water quality parameter) -> water quality parameter (10233ms) Where is the Salton Sea? 226 feet -12.306952098790026 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is, 226 feet) -> 226 feet (5891ms) Where is the Salton Sea? piece of slideshow art -12.328256761241466 Where is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (Greeting from the Salton Sea, Instance Of, piece of slideshow art) -> piece of slideshow art (10233ms) Where is the Salton Sea? hilarious tweeker -12.328256761241466 Where is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (Bobby Ocean from The Salton Sea, Instance Of, hilarious tweeker) -> hilarious tweeker (10233ms) Where is the Salton Sea? 128 feet -12.349001373974902 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is, 128 feet) -> 128 feet (5891ms) Where is the Salton Sea? nice stop -12.35746336220998 Where is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (Fountain of Youth Near the Salton Sea, Instance Of, nice stop) -> nice stop (10366ms) Where is the Salton Sea? lengthy process -12.358309823167431 Where is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (Science Office Restoration of the Salton Sea, Instance Of, lengthy process) -> lengthy process (10366ms) Where is the Salton Sea? farm runoff -12.358723127348426 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, have, the salton sea) -> (farm runoff, has left, the Salton Sea) -> farm runoff (5891ms) Where is the Salton Sea? tale of survival -12.358959598668985 Where is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (Plagues and Pleasures on the Salton Sea, Instance Of, tale of survival) -> tale of survival (10366ms) Where is the Salton Sea? environmental issue -12.37191969025175 Where is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (salinity problems at the Salton Sea, Instance Of, environmental issue) -> environmental issue (10366ms) Where is the Salton Sea? feisty documentary -12.375380556554312 Where is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (Plagues & Pleasures on the Salton Sea, Instance Of, feisty documentary) -> feisty documentary (10366ms) Where is the Salton Sea? killer documentary -12.375380556554312 Where is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (Plagues and Pleasures on the Salton Sea, Instance Of, killer documentary) -> killer documentary (10366ms) Where is the Salton Sea? public outreach tool -12.377202604277429 Where is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (upcoming public television documentary on the Salton Sea, Instance Of, public outreach tool) -> public outreach tool (10366ms) Where is the Salton Sea? 50,000 parts -12.392789091118933 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, are about, 50,000 parts) -> 50,000 parts (5891ms) Where is the Salton Sea? 28 miles -12.39979288305795 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is, 28 miles) -> 28 miles (5939ms) Where is the Salton Sea? environmental change -12.403599535165842 Where is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (rapid increase in salinity of the Salton Sea, Instance Of, environmental change) -> environmental change (10410ms) Where is the Salton Sea? 30 % saltier -12.409524275421692 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, is, 30 % saltier) -> 30 % saltier (5939ms) Where is the Salton Sea? area of very high apparent Pg velocity -12.416221179158777 Where is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (South of the Salton Sea, Instance Of, area of very high apparent Pg velocity) -> area of very high apparent Pg velocity (10410ms) Where is the Salton Sea? the east -12.491016292898633 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (the east, is, the Salton Sea) -> the east (5939ms) Where is the Salton Sea? 25 percent saltier -12.492703419297925 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, was, 25 percent saltier) -> 25 percent saltier (5939ms) Where is the Salton Sea? 25 % saltier -12.562555040923568 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is, 25 % saltier) -> 25 % saltier (5939ms) Where is the Salton Sea? dusty flatlands -12.56666852419879 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, have, the salton sea) -> (dusty flatlands, have replaced parts of, the Salton Sea) -> dusty flatlands (6113ms) Where is the Salton Sea? historical records -12.580331661452076 Where is the Salton Sea? -> where be [ the salton sea ] ? -> what be the salton sea s location ? -> $x: (the salton sea, location, $x) -> $x: (the salton sea, set, $x) -> (the Salton Sea, may set, historical records) -> historical records (7847ms) Where is the Salton Sea? 60 km -12.588196762769138 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is about, 60 km) -> 60 km (6113ms) Where is the Salton Sea? State and national stakeholders -12.592310298746654 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, have, the salton sea) -> (State and national stakeholders, have identified, the Salton Sea) -> State and national stakeholders (6113ms) Where is the Salton Sea? abundant wildlife -12.593979116949878 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is a treasure of, abundant wildlife) -> abundant wildlife (6113ms) Where is the Salton Sea? The plant -12.605307127246144 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (The plant, is located over, the Salton Sea Geothermal Field) -> The plant (6113ms) Where is the Salton Sea? Waters -12.608201989331466 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what place have be the salton sea ? -> $x: ($x, instance of, place) ($x, have be, the salton sea) -> (Waters, Instance Of, place) (water, would have been sent to, the Salton Sea) -> Waters (10455ms) Where is the Salton Sea? The location -12.640445744668868 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (The location, is, the Salton Sea) -> The location (6113ms) Where is the Salton Sea? California 's largest lake -12.66186628085466 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, is, California 's largest lake) -> California 's largest lake (6162ms) Where is the Salton Sea? accident -12.66302050111867 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, was created by, accident) -> accident (6162ms) Where is the Salton Sea? The IID -12.663046106773393 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, have, the salton sea) -> (The IID, has clarified its position on, the Salton Sea) -> The IID (6162ms) Where is the Salton Sea? 10 generating plants -12.736618156261077 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, is home to, 10 generating plants) -> 10 generating plants (6162ms) Where is the Salton Sea? The large lake -12.786538283022496 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (The large lake, is, the Salton Sea) -> The large lake (6162ms) Where is the Salton Sea? The next stop -12.822427548732232 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (The next stop, was, the Salton Sea) -> The next stop (6162ms) Where is the Salton Sea? the epicenter -12.834483869335813 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is predicted to be, the epicenter) -> the epicenter (6251ms) Where is the Salton Sea? the brink -12.845416711374513 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is on, the brink) -> the brink (6251ms) Where is the Salton Sea? 4 Salton Sea Q -12.857579231012723 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (4 Salton Sea Q, is the deal with, the Salton Sea) -> 4 Salton Sea Q (6251ms) Where is the Salton Sea? comedy -12.888481275310824 Where is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (The Salton Sea, Instance Of, comedy) -> comedy (10538ms) Where is the Salton Sea? the bulk -12.902959317249971 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (the bulk, is occupied by, the Salton Sea) -> the bulk (6251ms) Where is the Salton Sea? The next outing -12.923234810526719 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (The next outing, was out down to, the Salton Sea) -> The next outing (6251ms) Where is the Salton Sea? fish -12.931002425715144 Where is the Salton Sea? -> where be [ the salton sea ] ? -> what be the salton sea s location ? -> $x: (the salton sea, location, $x) -> $x: (the salton sea, place, $x) -> (The Salton Sea, is apparently an excellent place to, fish) -> fish (7813ms) Where is the Salton Sea? 420 bird species -12.959699403784938 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (420 bird species, have been recorded at, the Salton Sea) -> 420 bird species (6251ms) Where is the Salton Sea? the fastest surfaces -12.961902734215528 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, is one of, the fastest surfaces) -> the fastest surfaces (6251ms) Where is the Salton Sea? own demented trailer trash -12.978039547740604 Where is the Salton Sea? -> where [ be the salton sea ] ? -> where s be the salton sea ? -> $x: (the salton sea, s, $x) -> (the Salton Sea, 's very, own demented trailer trash) -> own demented trailer trash (10644ms) Where is the Salton Sea? the meeting -12.978941045337937 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (the meeting, was centered around, the Salton Sea 6 project) -> the meeting (6291ms) Where is the Salton Sea? 3 million birds -12.989762110338287 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (3 million birds, can be found at, the Salton Sea) -> 3 million birds (6290ms) Where is the Salton Sea? UC Davis researchers -12.9903661274753 Where is the Salton Sea? -> where be [ the salton sea ] ? -> what be the salton sea s location ? -> $x: (the salton sea, location, $x) -> $x: (the salton sea, set, $x) -> (the Salton Sea, set out by, UC Davis researchers) -> UC Davis researchers (7847ms) Where is the Salton Sea? refuge -13.000769659903744 Where is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (shallow area of the Salton Sea, Instance Of, refuge) -> refuge (10644ms) Where is the Salton Sea? documentary -13.001916324014642 Where is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (Plagues & Pleasures on the Salton Sea, Instance Of, documentary) -> documentary (10644ms) Where is the Salton Sea? the senses -13.002511267561664 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, is a jolt to, the senses) -> the senses (6291ms) Where is the Salton Sea? adult -13.038631183325949 Where is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (bird at the Salton Sea, Instance Of, adult) -> adult (10644ms) Where is the Salton Sea? The refuge -13.040894187699065 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (The refuge, is bordered by, the Salton Sea) -> The refuge (6290ms) Where is the Salton Sea? The following photos -13.045315172406843 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (The following photos, are from, the Salton Sea) -> The following photos (6291ms) Where is the Salton Sea? The site -13.051112330826106 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (The site, is located on, the Salton Sea) -> The site (6291ms) Where is the Salton Sea? the headwaters -13.059164450488934 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, could be mistaken for, the headwaters) -> the headwaters (6291ms) Where is the Salton Sea? the data -13.064961608908199 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (the data, has been gathered on, the Salton Sea) -> the data (6291ms) Where is the Salton Sea? the largest inland body -13.083037799532311 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, was now, the largest inland body) -> the largest inland body (6401ms) Where is the Salton Sea? the valley -13.103866337579397 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (the valley, had been filled by, the Salton Sea) -> the valley (6401ms) Where is the Salton Sea? Birds -13.10504167694136 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what place have be the salton sea ? -> $x: ($x, instance of, place) ($x, have be, the salton sea) -> (Birds, Instance Of, wonderful place) (birds, have been counted at, the Salton Sea--almost half) -> Birds (10644ms) Where is the Salton Sea? pupfish -13.13301027282445 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, have, the salton sea) -> (pupfish, have shown up at, the Salton Sea) -> pupfish (6401ms) Where is the Salton Sea? project -13.135129983192424 Where is the Salton Sea? -> where be [ the salton ] sea ? -> what be the salton sea ? -> $x: (the salton sea, instance of, $x) -> (Constructed Wetlands in the Salton Sea, Instance Of, project) -> project (10644ms) Where is the Salton Sea? The real issue -13.197983507339124 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (The real issue, is the liability of, the Salton Sea) -> The real issue (6401ms) Where is the Salton Sea? April 24 -13.2044351233466 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (April 24, will be the fate of, the Salton Sea ? Panel Discussion) -> April 24 (6448ms) Where is the Salton Sea? The next step -13.232705809994942 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (The next step, is available to fix, the Salton Sea) -> The next step (6448ms) Where is the Salton Sea? the nation?s eyes -13.238895220207208 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (the nation?s eyes, were finally turned toward, the Salton Sea) -> the nation?s eyes (6448ms) Where is the Salton Sea? the largest geothermal plant -13.258347584542808 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (the largest geothermal plant, is called, the Salton Sea 6) -> the largest geothermal plant (6448ms) Where is the Salton Sea? mistakes -13.33305329953081 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is a result of, mistakes) -> mistakes (6492ms) Where is the Salton Sea? 35 miles long -13.38993210408374 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the Salton Sea, is, 35 miles long) -> 35 miles long (6492ms) Where is the Salton Sea? The money -13.41770199982374 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (The money, shall be paid into, the Salton Sea Restoration Fund) -> The money (6492ms) Where is the Salton Sea? Portal So Cal -13.461790730986845 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, get, the salton sea) -> (Portal So Cal, get together also down by, the Salton Sea) -> Portal So Cal (10690ms) Where is the Salton Sea? Bird -13.496805705489205 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what place have be the salton sea ? -> $x: ($x, instance of, place) ($x, have be, the salton sea) -> (Bird, Instance Of, great place) (birds, have been counted at, the Salton Sea--almost half) -> Bird (10690ms) Where is the Salton Sea? campers and boaters -13.543522979022853 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, make, the salton sea) -> (campers and boaters, made their way to, the Salton Sea) -> campers and boaters (10690ms) Where is the Salton Sea? help -13.619818779025639 Where is the Salton Sea? -> where be [ the salton sea ] ? -> what be the salton sea s location ? -> $x: (the salton sea, location, $x) -> $x: (the salton sea, call, $x) -> (the Salton Sea ?, called for, help) -> help (7773ms) Where is the Salton Sea? Have lunch -13.702678586609741 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, enjoy, the salton sea) -> (Have lunch, enjoy the grand panoramic views of, the Salton Sea) -> Have lunch (10690ms) Where is the Salton Sea? a fish -13.718782073816637 Where is the Salton Sea? -> where be [ the salton sea ] ? -> what be the salton sea s location ? -> $x: (the salton sea, location, $x) -> $x: ($x, die, the salton sea) -> (a fish, die off in, the Salton Sea) -> a fish (7491ms) Where is the Salton Sea? 400 species of birds -13.739979640856443 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (400 species of birds, are attracted to, the Salton Sea) -> 400 species of birds (6492ms) Where is the Salton Sea? the largest lake in California -13.790664302325716 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is, the largest lake in California) -> the largest lake in California (6531ms) Where is the Salton Sea? location of the ED -13.847098793007957 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what hospital be be the salton sea ? -> $x: ($x, instance of, hospital) ($x, be be, the salton sea) -> (location of the ED, Instance Of, hospital facility) (The location, is, the Salton Sea) -> location of the ED (10690ms) Where is the Salton Sea? the ocean -13.849860059392954 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is 25 % saltier than, the ocean) -> the ocean (6531ms) Where is the Salton Sea? 4 to 6 -13.99388704540829 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, have, the salton sea) -> (4 to 6, have rocked, the Salton Sea area) -> 4 to 6 (6531ms) Where is the Salton Sea? the outside world -14.06690090381855 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, have, the salton sea) -> (the outside world, often has of, the Salton Sea) -> the outside world (6531ms) Where is the Salton Sea? the state -14.144645740331395 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, have, the salton sea) -> (the state, have to deal with, the Salton Sea) -> the state (6531ms) Where is the Salton Sea? bird -14.217229254775916 Where is the Salton Sea? -> where [ be the salton sea ] ? -> which organ be be the salton sea ? -> $x: ($x, instance of, organ) ($x, be be, the salton sea) -> (bird, Instance Of, analogous organ \Body part) (birds, are attracted to, the Salton Sea) -> bird (7258ms) Where is the Salton Sea? Bird's -14.336147077022078 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what place have be the salton sea ? -> $x: ($x, instance of, place) ($x, have be, the salton sea) -> (Bird's, Instance Of, causal place) (birds, have been counted at, the Salton Sea--almost half) -> Bird's (10787ms) Where is the Salton Sea? the strangest places -14.35713210288725 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, is one of, the strangest places) -> the strangest places (6571ms) Where is the Salton Sea? the most productive -14.369552291998602 Where is the Salton Sea? -> where be [ the salton sea ] ? -> what be the salton sea s location ? -> $x: (the salton sea, location, $x) -> $x: (the salton sea, call, $x) -> (the Salton Sea, has been called among, the most productive) -> the most productive (7773ms) Where is the Salton Sea? an estimated 400,000 tons -14.422070201519835 Where is the Salton Sea? -> where be [ the salton sea ] ? -> what be the salton sea s location ? -> $x: (the salton sea, location, $x) -> $x: (the salton sea, contain, $x) -> (The Salton Sea, now contains, an estimated 400,000 tons) -> an estimated 400,000 tons (7772ms) Where is the Salton Sea? the approach -14.427660369276778 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, be, the salton sea) -> (the approach, being taken to, restore the Salton Sea) -> the approach (6571ms) Where is the Salton Sea? the most polluted bodies -14.474084794890947 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (the salton sea, is one of, the most polluted bodies) -> the most polluted bodies (6571ms) Where is the Salton Sea? the only fish living -14.477361198827412 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: ($x, have, the salton sea) -> (the only fish living, has well adapted to, the Salton Sea) -> the only fish living (6709ms) Where is the Salton Sea? 1905 and 1907 -14.974699067232233 Where is the Salton Sea? -> where [ be the salton sea ] ? -> what get be the salton sea ? -> $x: ($x, get be, the salton sea) -> $x: (the salton sea, be, $x) -> (The Salton Sea, was created between, 1905 and 1907) -> 1905 and 1907 (6709ms) What was the final score? Scale Calibration Factor -3.8343365392470083 What was the final score? -> $x: (the final score, instance of, $x) -> (final element of the API base score, Instance Of, Scale Calibration Factor) -> Scale Calibration Factor (2844ms) What was the final score? tie -3.8532252147010873 What was the final score? -> $x: (the final score, instance of, $x) -> (final score of the game, Instance Of, tie) -> tie (2844ms) What was the final score? Permanent Score -3.8796264457055636 What was the final score? -> $x: (the final score, instance of, $x) -> (final score from the last Classification, Instance Of, Permanent Score) -> Permanent Score (2844ms) What was the final score? continuous problem-solving process -3.919008302017959 What was the final score? -> $x: (the final score, instance of, $x) -> (emergence of the final score, Instance Of, continuous problem-solving process) -> continuous problem-solving process (2844ms) What was the final score? micro-averaged f-measure -4.018880018651419 What was the final score? -> $x: (the final score, instance of, $x) -> (final score for the NER system, Instance Of, micro-averaged f-measure) -> micro-averaged f-measure (3695ms) What was the final score? mixed bag of decision -4.018880018651419 What was the final score? -> $x: (the final score, instance of, $x) -> (Final scoring from the judges, Instance Of, mixed bag of decision) -> mixed bag of decision (3695ms) What was the final score? performance project -4.0901925257329665 What was the final score? -> $x: (the final score, instance of, $x) -> (The Final Score, Instance Of, performance project) -> performance project (3695ms) What was the final score? separate and equal factor -4.10684443656873 What was the final score? -> $x: (the final score, instance of, $x) -> (category for the final total score, Instance Of, separate and equal factor) -> separate and equal factor (3695ms) What was the final score? much closer game -4.164990585540714 What was the final score? -> $x: (the final score, instance of, $x) -> (Indians winning 11-6 and despite the final score line, Instance Of, much closer game) -> much closer game (3695ms) What was the final score? short movie -4.205119023003758 What was the final score? -> $x: (the final score, instance of, $x) -> (The Final Score, Instance Of, short movie) -> short movie (3695ms) What was the final score? defensive score -4.211203500691976 What was the final score? -> $x: (the final score, instance of, $x) -> (final score for the Warriors, Instance Of, defensive score) -> defensive score (3965ms) What was the final score? curved score -4.256097456127118 What was the final score? -> $x: (the final score, instance of, $x) -> (score in the Final column, Instance Of, curved score) -> curved score (3966ms) What was the final score? writing score -4.256097456127118 What was the final score? -> $x: (the final score, instance of, $x) -> (final score from the WKCE, Instance Of, writing score) -> writing score (3965ms) What was the final score? impressive accomplishment -4.2996787406869785 What was the final score? -> $x: (the final score, instance of, $x) -> (final score on the film, Instance Of, impressive accomplishment) -> impressive accomplishment (3966ms) What was the final score? policy decision -4.351827512986095 What was the final score? -> $x: (the final score, instance of, $x) -> (final decision about the passing score, Instance Of, policy decision) -> policy decision (3965ms) What was the final score? combined value -4.425402131511989 What was the final score? -> $x: (the final score, instance of, $x) -> (final score on the TJN index, Instance Of, combined value) -> combined value (4048ms) What was the final score? first-person -5.236652927567645 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, first-person) -> first-person (4048ms) What was the final score? fixed-odds game -5.5310062181099875 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score World Cup, Instance Of, fixed-odds game) -> fixed-odds game (4049ms) What was the final score? awesome pic -5.585600865387341 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, awesome pic) -> awesome pic (4048ms) What was the final score? average of the seven above factor -5.6067044003829345 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final score, Instance Of, average of the seven above factor) -> average of the seven above factor (4105ms) What was the final score? encompassing summary of the statistic -5.616788206146111 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (final score of a game, Instance Of, encompassing summary of the statistic) -> encompassing summary of the statistic (4104ms) What was the final score? mixed bag -5.652611456316999 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (final score for Fighter Bomber, Instance Of, mixed bag) -> mixed bag (4104ms) What was the final score? logarithmic matrix of the mutation probability -5.661682161581253 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (final matrix of substitution scores, Instance Of, logarithmic matrix of the mutation probability) -> logarithmic matrix of the mutation probability (4104ms) What was the final score? member of the Santa Clarita Valley Chamber -5.706269160411653 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, member of the Santa Clarita Valley Chamber) -> member of the Santa Clarita Valley Chamber (4104ms) What was the final score? BBC TV program -5.718495655145917 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, BBC TV program) -> BBC TV program (4185ms) What was the final score? result of hard work -5.800601528250574 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (final score with Selinsgrove, Instance Of, result of hard work) -> result of hard work (4185ms) What was the final score? excellent sport shop -5.810524626004902 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, excellent sport shop) -> excellent sport shop (4185ms) What was the final score? linear type trait -5.836785906443508 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final score, Instance Of, linear type trait) -> linear type trait (4185ms) What was the final score? FSN studio show -5.88667903384695 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (FSN Final Score, Instance Of, FSN studio show) -> FSN studio show (4358ms) What was the final score? PG-equivalent score -5.892588758614194 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (final score of 79, Instance Of, PG-equivalent score) -> PG-equivalent score (4358ms) What was the final score? live team competition -5.91004513388973 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score Trivia, Instance Of, live team competition) -> live team competition (4358ms) What was the final score? resource of exceptionally high quality -5.919165892736866 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, resource of exceptionally high quality) -> resource of exceptionally high quality (4416ms) What was the final score? real strong indicator -5.922452230434956 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (final score, Instance Of, real strong indicator) -> real strong indicator (4416ms) What was the final score? annual appraisal datum -5.9323951593514135 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (final score, Instance Of, annual appraisal datum) -> annual appraisal datum (4416ms) What was the final score? economically important trait -5.954120529419768 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (final score, Instance Of, economically important trait) -> economically important trait (4416ms) What was the final score? average of the 7 above factor -5.954367905728529 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final score, Instance Of, average of the 7 above factor) -> average of the 7 above factor (4433ms) What was the final score? long standing favorite -5.957252560228865 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, long standing favorite) -> long standing favorite (4433ms) What was the final score? view only utility program -5.964059848172008 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (VIEW FINAL SCORES, Instance Of, view only utility program) -> view only utility program (4433ms) What was the final score? fixed-odds betting game -5.972700651320093 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, fixed-odds betting game) -> fixed-odds betting game (4433ms) What was the final score? fair an balanced score set -5.991548728771168 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final ScoreBelow, Instance Of, fair an balanced score set) -> fair an balanced score set (4453ms) What was the final score? sum of the 13 item -5.999261861163671 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (ADL final score, Instance Of, sum of the 13 item) -> sum of the 13 item (4453ms) What was the final score? leading online retailer of name brand footwear -6.015110626427591 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, leading online retailer of name brand footwear) -> leading online retailer of name brand footwear (4453ms) What was the final score? flagship BBC sport production -6.018896732523608 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, flagship BBC sport production) -> flagship BBC sport production (4453ms) What was the final score? great provider of sporting good -6.044591879847168 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score Sporting Goods, Instance Of, great provider of sporting good) -> great provider of sporting good (4453ms) What was the final score? fast paced football result based game -6.053398710119277 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (FINAL SCORE WORLD CUP, Instance Of, fast paced football result based game) -> fast paced football result based game (4472ms) What was the final score? studio show -6.0964044262381645 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (FSN Final Score, Instance Of, studio show) -> studio show (4472ms) What was the final score? user datum -6.1777238842440045 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (final score, Instance Of, user datum) -> user datum (4472ms) What was the final score? new record -6.215531020073801 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, new record) -> new record (4472ms) What was the final score? vital information -6.2229613310288805 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (final score, Instance Of, vital information) -> vital information (4472ms) What was the final score? private company -6.237061382513261 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score Investments, Instance Of, private company) -> private company (4492ms) What was the final score? metric variable -6.2438479503007995 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Exam Score, Instance Of, metric variable) -> metric variable (4492ms) What was the final score? sober alternative -6.249757675068043 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, sober alternative) -> sober alternative (4492ms) What was the final score? interactive drama -6.250561124076366 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, interactive drama) -> interactive drama (4492ms) What was the final score? numerical value -6.2576714526816675 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (final score, Instance Of, numerical value) -> numerical value (4512ms) What was the final score? continuous variable -6.260407347616073 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (final exam score, Instance Of, continuous variable) -> continuous variable (4512ms) What was the final score? fair movie -6.267074585528853 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final score, Instance Of, fair movie) -> fair movie (4512ms) What was the final score? flagship program -6.272520154208612 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, flagship program) -> flagship program (4512ms) What was the final score? instant game -6.277176117243842 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, instant game) -> instant game (4512ms) What was the final score? excellent service -6.280095190059397 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, excellent service) -> excellent service (4531ms) What was the final score? 4-0 victory -6.285146219394931 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, 4-0 victory) -> 4-0 victory (4531ms) What was the final score? multimedia resource -6.28655610887799 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, multimedia resource) -> multimedia resource (4532ms) What was the final score? flagship production -6.290885337106043 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, flagship production) -> flagship production (4532ms) What was the final score? incredible score -6.299836331405887 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (final score from Peadar Gardiner, Instance Of, incredible score) -> incredible score (4531ms) What was the final score? world supplier of quality athletic footwear and apparel -6.321415295961083 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final-Score, Instance Of, world supplier of quality athletic footwear and apparel) -> world supplier of quality athletic footwear and apparel (4531ms) What was the final score? 14-year-old Thoroughbred gelding -6.32413045006283 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, 14-year-old Thoroughbred gelding) -> 14-year-old Thoroughbred gelding (4552ms) What was the final score? 0-0 draw -6.326273881432931 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, 0-0 draw) -> 0-0 draw (4553ms) What was the final score? school record -6.329869567773942 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Oklahoma's final score, Instance Of, school record) -> school record (4552ms) What was the final score? betting game -6.34048001084267 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score Multi League, Instance Of, betting game) -> betting game (4553ms) What was the final score? complex business -6.343311514758634 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (production of a final score, Instance Of, complex business) -> complex business (4573ms) What was the final score? great game -6.345285773231045 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (FINAL SCORE JGR, Instance Of, great game) -> great game (4573ms) What was the final score? hard PG-13 equivalent score -6.356617308952746 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (final score of 58, Instance Of, hard PG-13 equivalent score) -> hard PG-13 equivalent score (4573ms) What was the final score? sporting good retailer -6.356947429567912 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final-Score, Instance Of, sporting good retailer) -> sporting good retailer (4573ms) What was the final score? documentary following a group of 17-year old Thai student -6.3602898469085645 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, documentary following a group of 17-year old Thai student) -> documentary following a group of 17-year old Thai student (4573ms) What was the final score? 9 and 8 victory -6.384106189551905 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final round scoring, Instance Of, 9 and 8 victory) -> 9 and 8 victory (4573ms) What was the final score? point -6.387188296423206 What was the final score? -> $x: (the final score, instance of, $x) -> (final score of the match, Instance Of, point) -> point (4591ms) What was the final score? 54-hole MWC Championship record -6.407668087208327 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Colorado State's final score, Instance Of, 54-hole MWC Championship record) -> 54-hole MWC Championship record (4591ms) What was the final score? rush -6.41836317614371 What was the final score? -> $x: (the final score, instance of, $x) -> (final score of the game, Instance Of, rush) -> rush (4591ms) What was the final score? goal -6.4355917638995255 What was the final score? -> $x: (the final score, instance of, $x) -> (final score of the game, Instance Of, goal) -> goal (4591ms) What was the final score? shocker -6.499929028522336 What was the final score? -> $x: (the final score, instance of, $x) -> (final score of the Elmira-Manhattanville game, Instance Of, shocker) -> shocker (4591ms) What was the final score? indicia -6.501350756992753 What was the final score? -> $x: (the final score, instance of, $x) -> (final scores of the Sugar Bowl, Instance Of, indicia) -> indicia (4591ms) What was the final score? safety -6.506389699749561 What was the final score? -> $x: (the final score, instance of, $x) -> (final score of the first half, Instance Of, safety) -> safety (4724ms) What was the final score? event -6.528596777520223 What was the final score? -> $x: (the final score, instance of, $x) -> (final score of the first half, Instance Of, event) -> event (4724ms) What was the final score? 2007 Thai documentary film -6.574699237175839 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, 2007 Thai documentary film) -> 2007 Thai documentary film (4724ms) What was the final score? pretty fun movie -6.700307988266417 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, pretty fun movie) -> pretty fun movie (4724ms) What was the final score? online outlet -6.726039206697024 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final-Score, Instance Of, online outlet) -> online outlet (4724ms) What was the final score? Boxing Day -7.015174986451649 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (Boxing Day, was, the final score) -> Boxing Day (6306ms) What was the final score? 25 games -7.431908458226507 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (25 games, are, the final scores) -> 25 games (6306ms) What was the final score? 20 pounds -7.642864924971922 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (20 pounds, is, the final score) -> 20 pounds (6306ms) What was the final score? 42-31 -7.7350459090345165 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (42-31, was, the final score) -> 42-31 (6307ms) What was the final score? Paul Mitchell -8.025396775766117 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (Paul Mitchell, was, the final scoring counter) -> Paul Mitchell (6307ms) What was the final score? in joy -8.047012234131657 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (in joy, is, the final score) -> in joy (6306ms) What was the final score? 14-1 -8.081632530832128 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (14-1, was, the final score) -> 14-1 (6738ms) What was the final score? 21-19 -8.081632530832128 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (21-19, was, the final score) -> 21-19 (6738ms) What was the final score? 12-9 -8.113463662889965 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (12-9, was, the final score) -> 12-9 (6738ms) What was the final score? 7-4 -8.113463662889965 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (7-4, was, the final score) -> 7-4 (6738ms) What was the final score? 6-2 -8.116508473886256 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (6-2, was, the final score) -> 6-2 (6738ms) What was the final score? Unfortunately this -8.117440441260356 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (Unfortunately this, is, the final score) -> Unfortunately this (6738ms) What was the final score? February 14 -8.20418083424006 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (February 14, was, the final score) -> February 14 (6762ms) What was the final score? 1-0 -8.23977873564124 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (1-0, was, the final score) -> 1-0 (6762ms) What was the final score? 34 -8.242491943093953 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (34, was, the final score) -> 34 (6762ms) What was the final score? 19-17 -8.267314046665682 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (19-17, was, the final score) -> 19-17 (6762ms) What was the final score? playoff basketball -8.282981517141465 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (playoff basketball, is, the final score) -> playoff basketball (6762ms) What was the final score? 6-1 -8.284998038199088 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (6-1, was, the final score) -> 6-1 (6762ms) What was the final score? 7-0 -8.284998038199088 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (7-0, was, the final score) -> 7-0 (6782ms) What was the final score? 4-2 -8.28951875842425 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (4-2, was, the final score) -> 4-2 (6783ms) What was the final score? 13 -8.295608380416837 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (13, was, the final score) -> 13 (6783ms) What was the final score? 6-3 -8.324394701478381 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (6-3, was, the final score) -> 6-3 (6782ms) What was the final score? LF 6 -8.324623987105582 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (LF 6, was, the final score) -> LF 6 (6782ms) What was the final score? total weight -8.334429264477247 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (total weight, is, the final score) -> total weight (6783ms) What was the final score? draw -8.334526989655831 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final score, Instance Of, draw) -> draw (4743ms) What was the final score? 1-1 -8.340120483003364 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (1-1, was, the final score) -> 1-1 (6801ms) What was the final score? any games -8.357816335390414 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (any games, was, the final scores) -> any games (6801ms) What was the final score? The ?line ? -8.35920384376751 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (The ?line ?, is, the total final score) -> The ?line ? (6801ms) What was the final score? 19-23 -8.35927064453251 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (19-23, was, the final score) -> 19-23 (6802ms) What was the final score? function -8.374357852797807 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Recalculate Final Scores, Instance Of, function) -> function (4743ms) What was the final score? An anti-climactic draw -8.37511940979643 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (An anti-climactic draw, was, the final score) -> An anti-climactic draw (6801ms) What was the final score? victory -8.376368015778807 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final score, Instance Of, victory) -> victory (4743ms) What was the final score? 2-0 -8.37846782654011 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (2-0, was, the final score) -> 2-0 (6802ms) What was the final score? 5-1 -8.38805691289176 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (5-1, is, the final score) -> 5-1 (6820ms) What was the final score? 6-4 -8.391101776590347 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (6-4, was, the final score) -> 6-4 (6820ms) What was the final score? factor -8.392102721185037 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (final exam score, Instance Of, factor) -> factor (4743ms) What was the final score? 3-3 -8.395397544921446 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (3-3, was, the final score) -> 3-3 (6820ms) What was the final score? 3-0 -8.395397544921446 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (3-0, was, the final score) -> 3-0 (6820ms) What was the final score? label -8.409391975692921 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, label) -> label (4743ms) What was the final score? trait -8.420099819446502 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (final score, Instance Of, trait) -> trait (4760ms) What was the final score? 86-54 -8.421099915016438 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (86-54, was, the final score) -> 86-54 (6820ms) What was the final score? wrong ? 89 -8.426121363135408 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (wrong ? 89, was, the final score) -> wrong ? 89 (6820ms) What was the final score? documentary -8.428919462786174 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final Score, Instance Of, documentary) -> documentary (4760ms) What was the final score? one episode -8.44404029026294 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (one episode, was, the final score) -> one episode (6839ms) What was the final score? senior Jack Reeder -8.445165103587827 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (senior Jack Reeder, were, the final scoring Spartans) -> senior Jack Reeder (6838ms) What was the final score? repeat -8.450217713230202 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final score, Instance Of, repeat) -> repeat (4760ms) What was the final score? illusion -8.455148853234409 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final score, Instance Of, illusion) -> illusion (4760ms) What was the final score? statistic -8.461043726705656 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (final score, Instance Of, statistic) -> statistic (4760ms) What was the final score? 75 Diggs4-3 -8.48289540829137 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (75 Diggs4-3, was, the final score) -> 75 Diggs4-3 (6838ms) What was the final score? contender -8.49330215669181 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Scotland's final score, Instance Of, contender) -> contender (4773ms) What was the final score? category -8.502864951651958 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (final exam score, Instance Of, category) -> category (4774ms) What was the final score? Yeah -8.522360778688974 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (Yeah, was, the final score) -> Yeah (6838ms) What was the final score? average -8.526457107016327 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (state's final score, Instance Of, average) -> average (4773ms) What was the final score? combination -8.570978922881489 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> (Final scoring on Bongo's scoreboard, Instance Of, combination) -> combination (4774ms) What was the final score? Soraya Nakasuwan -8.57730062451661 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> $x: (final score, be a by, $x) -> (Final Score, is a documentary by, Soraya Nakasuwan) -> Soraya Nakasuwan (4834ms) What was the final score? The Bulldogs ? biggest lead -8.585260598632118 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (The Bulldogs ? biggest lead, was, the final score) -> The Bulldogs ? biggest lead (6838ms) What was the final score? S?o Paulo -8.589532526510595 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (S?o Paulo, was, the final score) -> S?o Paulo (6838ms) What was the final score? 3-2 -8.595063287815922 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (3-2, was, the final winning score) -> 3-2 (6858ms) What was the final score? Miami -8.610684836631819 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (Miami, was, the final scoring) -> Miami (6858ms) What was the final score? Friday night -8.67088969542705 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (Friday night, was, the final score) -> Friday night (6858ms) What was the final score? The 2 -1 -8.67122953603051 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (The 2 -1, was, the final score) -> The 2 -1 (6858ms) What was the final score? 1 field -8.69428845064484 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (1 field, is, the official final score) -> 1 field (6858ms) What was the final score? 21 to 7 -8.741150909628203 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (21 to 7, was, the final score) -> 21 to 7 (6858ms) What was the final score? 17 to 5 -8.764502870624067 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (17 to 5, was, the final score) -> 17 to 5 (6878ms) What was the final score? the Giants -8.773175689440937 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (the Giants, was, the final score) -> the Giants (6878ms) What was the final score? Vasco 3 ? 0 Mesquita -8.921468003305234 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (Vasco 3 ? 0 Mesquita, were, the final scores) -> Vasco 3 ? 0 Mesquita (6878ms) What was the final score? Eddie Stobart drivers -9.176920786019332 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (Eddie Stobart drivers, was, the final score) -> Eddie Stobart drivers (6878ms) What was the final score? 4-0 -9.454050976022833 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (4-0, was, the final score) -> 4-0 (6897ms) What was the final score? El Salvador -9.634318036717259 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, with be, the final score) -> (El Salvador, was outraged with, the final score) -> El Salvador (7945ms) What was the final score? the end -9.635370354934743 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (the end, is, the final score) -> the end (6916ms) What was the final score? the present score -9.651285920963662 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (the present score, is, the final score) -> the present score (6916ms) What was the final score? the uninsured rate -9.76594349893029 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (the uninsured rate, is, the final score) -> the uninsured rate (6916ms) What was the final score? The only down side -9.800755554892735 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (The only down side, was, the final score) -> The only down side (6916ms) What was the final score? the footbal game -9.851835902961529 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (the footbal game, is, the final score) -> the footbal game (6916ms) What was the final score? the visible score -9.860613304249828 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (the visible score, is, the true final score) -> the visible score (6916ms) What was the final score? the last set -9.861306929152477 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (the last set, is, the final score) -> the last set (6933ms) What was the final score? the CHL -9.87570993723833 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (the CHL, has been getting, final scores) -> the CHL (6933ms) What was the final score? the second half -9.906656144959351 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (the second half, was, the final score) -> the second half (6934ms) What was the final score? the main header -9.943792500828357 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (the main header, is, the final score) -> the main header (6951ms) What was the final score? The only numbers -9.958759259626628 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (The only numbers, is, the final score) -> The only numbers (6951ms) What was the final score? the reason -9.973157184360424 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (the reason, was, the final score) -> the reason (6951ms) What was the final score? the game -9.980859785046885 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (the game, was, the final score) -> the game (6951ms) What was the final score? the most -9.994377921498218 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (the most, is, the final score) -> the most (6951ms) What was the final score? the outcome -10.009017049333035 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (the outcome, was, the final score) -> the outcome (7055ms) What was the final score? the IIMs -10.029654763067006 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (the IIMs, will be in receiving, final scores) -> the IIMs (7055ms) What was the final score? The only question -10.08084313217406 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (The only question, is, the final score) -> The only question (7073ms) What was the final score? The real success -10.094106086297392 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (The real success, is, the final score) -> The real success (7073ms) What was the final score? the only important number -10.095944263773932 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (the only important number, is, the final score) -> the only important number (7073ms) What was the final score? The end result -10.112674264231895 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (The end result, was, the final score) -> The end result (7073ms) What was the final score? a 4-2 lead -10.133753121602766 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (a 4-2 lead, was, the final score) -> a 4-2 lead (7073ms) What was the final score? The third element -10.154301304078436 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (The third element, is, the final exam scores) -> The third element (7091ms) What was the final score? The Award committee -10.221133437319823 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (The Award committee, is taken into, final scoring) -> The Award committee (7108ms) What was the final score? the USSR -10.231187276802222 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (the USSR, is usually disadvantaged in, Final Scoring) -> the USSR (7108ms) What was the final score? video ? -10.325095567776625 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, with be, the final score) -> (video ?, I?ll be back with, the final score) -> video ? (7944ms) What was the final score? question -10.325441706004623 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (question, is, the final score) -> question (7125ms) What was the final score? different -10.335624681741535 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (different, was, the final score) -> different (7125ms) What was the final score? sports -10.34705469493542 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (sports, is, the final score) -> sports (7124ms) What was the final score? 50 points -10.392599048533265 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be will, the final score) -> (50 points, will be subtracted from, the final score) -> 50 points (8655ms) What was the final score? out -10.418617817308741 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (out, was, our final score) -> out (7142ms) What was the final score? doubt -10.424536468612068 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (doubt, was, the final score) -> doubt (7142ms) What was the final score? lol -10.429292727653745 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (lol, is, my final score) -> lol (7142ms) What was the final score? Asia -10.456254150562195 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (Asia, is worth more in, Final Scoring) -> Asia (7142ms) What was the final score? the 3 points -10.463183187763475 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (the 3 points, were taken, Final score) -> the 3 points (7158ms) What was the final score? Four variables -10.464857621343898 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, for be, the final score) -> (Four variables, were considered for, the final score) -> Four variables (8574ms) What was the final score? Cliff Martinez -10.467765432823082 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (Cliff Martinez, was brought in to do, the final score) -> Cliff Martinez (8574ms) What was the final score? Projo.com -10.503773943989193 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (Projo.com, will be posting, final scores) -> Projo.com (7159ms) What was the final score? Five points -10.535896608892584 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be will, the final score) -> (Five points, will be deducted from, the final score) -> Five points (8655ms) What was the final score? Ten points -10.545139522410587 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (Ten points, are deducted from, final score) -> Ten points (7159ms) What was the final score? important -10.628131261606228 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (important, is, the final game score) -> important (7159ms) What was the final score? ?Sounds Orchestral -10.639645705907368 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (?Sounds Orchestral, can be found here, Final score) -> ?Sounds Orchestral (7175ms) What was the final score? a factor -10.688676698436762 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (a factor, is relevant to, the final score) -> a factor (10705ms) What was the final score? Killian Canavan -10.69055437749272 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (Killian Canavan, proved to be, the final score) -> Killian Canavan (10830ms) What was the final score? walk-off wins -10.691844946206949 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (walk-off wins, have been by, final scores) -> walk-off wins (7175ms) What was the final score? Hard-rep -10.713820796176513 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (Hard-rep, is used for, final scoring) -> Hard-rep (7176ms) What was the final score? two percentage points -10.750460679506757 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (two percentage points, will be deducted from, final score) -> two percentage points (7176ms) What was the final score? no chance -10.788563527920317 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (no chance, proved to be, the final score) -> no chance (10830ms) What was the final score? two -10.799160358203894 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (two, would prove to be, the final score) -> two (10830ms) What was the final score? a pitch -10.82523539517437 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (a pitch, proved to be, the final score) -> a pitch (11121ms) What was the final score? Last years contest info -10.834886860839964 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (Last years contest info, was here with, final scoring) -> Last years contest info (7176ms) What was the final score? No account -10.84634637398875 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (No account, has been taken of, final scores) -> No account (7192ms) What was the final score? Scholarships -10.86776722830685 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (Scholarships, are awarded based on, final scores) -> Scholarships (7191ms) What was the final score? Composite scores -10.868792670595857 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (Composite scores, are turned into, final scores) -> Composite scores (7191ms) What was the final score? each contestant -10.883047783981931 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (each contestant, is, their final score) -> each contestant (7191ms) What was the final score? one more roll -10.89836449054693 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, before be, the final score) -> (one more roll, is required before, the final score) -> one more roll (11121ms) What was the final score? Final Score -10.907085803584101 What was the final score? -> what [ be the final score ] ? -> what be know be the final score ? -> $x: ($x, be know be, the final score) -> $x: ($x, know, final score) -> (Final Score, Also known as, Final score - 365 wan taam tit chiiwit dek en) -> Final Score (11803ms) What was the final score? Google -10.913516432656065 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, for be, the final score) -> (Google, may be important for, the final score) -> Google (11121ms) What was the final score? a Matador -10.916997236608688 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (a Matador, turned out to be, the final score) -> a Matador (11121ms) What was the final score? Veterans preference credit -10.92266912221387 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (Veterans preference credit, will be added to, the final score) -> Veterans preference credit (11216ms) What was the final score? Don?t -10.945286253280235 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, by be, the final score) -> (Don?t, be fooled by, the final score) -> Don?t (7944ms) What was the final score? Bonus points -10.948266379212464 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (Bonus points, are then added to, final scores) -> Bonus points (7191ms) What was the final score? Don?t -10.956845402728632 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, by be, the final score) -> (Don?t, be fooled by, the final score) -> Don?t (7944ms) What was the final score? a single-trait animal model -10.9595235570733 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (a single-trait animal model, was applied for, final score) -> a single-trait animal model (7216ms) What was the final score? seven seniority points -10.965284763537703 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (seven seniority points, are added to, the final score) -> seven seniority points (11216ms) What was the final score? Fu and Han -10.965826928790584 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (Fu and Han, are multiplied to get, the final score) -> Fu and Han (11217ms) What was the final score? each game -10.967891284536964 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (each game, will be determined by, final score) -> each game (7216ms) What was the final score? Veterans Points -10.97179385762704 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (Veterans Points, are added to, the final score) -> Veterans Points (11216ms) What was the final score? Two factors -10.985150545444439 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (Two factors, are used to determine, the final score) -> Two factors (11311ms) What was the final score? Multi-player -10.988617231036525 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (Multi-player, now has to be added to, the final score) -> Multi-player (11311ms) What was the final score? a candidate -10.992579535045556 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (a candidate, were averaged to determine, the final score) -> a candidate (11311ms) What was the final score? Noebels ? -11.007185408971027 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (Noebels ?, would prove to be, the final score) -> Noebels ? (11311ms) What was the final score? a three-point lead -11.010316096296789 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (a three-point lead, was reduced to, the final score) -> a three-point lead (11311ms) What was the final score? Tie-breaker -11.023681981879097 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (Tie-breaker, will be closest to, the final score) -> Tie-breaker (11311ms) What was the final score? Final places -11.028633854487417 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (Final places, are determined based upon, final scores) -> Final places (7217ms) What was the final score? Veterans ? preference credit -11.05167575178094 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be will, the final score) -> (Veterans ? preference credit, will be added to, the final score) -> Veterans ? preference credit (11341ms) What was the final score? the Eagles -11.052651393598095 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (the Eagles, is, your predicted final score) -> the Eagles (7216ms) What was the final score? A point spread -11.06485707056848 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (A point spread, is an adjustment to, the final score) -> A point spread (11341ms) What was the final score? a ten-yard score -11.070162241677355 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (a ten-yard score, ultimately would prove to be, the final score) -> a ten-yard score (11341ms) What was the final score? Employees -11.073556226644047 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (Employees, are allowed to obtain, the final score) -> Employees (11341ms) What was the final score? a specific settling table -11.073935292433633 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (a specific settling table, is used to determine, the final score) -> a specific settling table (11340ms) What was the final score? DeSaverio?s goal -11.079004263795206 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (DeSaverio?s goal, would prove to be, the final CU score) -> DeSaverio?s goal (11370ms) What was the final score? e-mail results -11.084869597234452 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (e-mail results, be sure to include, the final score) -> e-mail results (11370ms) What was the final score? the Individual Finals -11.085583306791717 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, by be, the final score) -> (the Individual Finals, is determined by, the highest final score) -> the Individual Finals (7944ms) What was the final score? ? Don?t -11.088228432395866 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, by be, the final score) -> (? Don?t, be fooled by, the final score) -> ? Don?t (7944ms) What was the final score? a game -11.092501725349399 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be just be, the final score) -> (a game, is just as important as, the final score) -> a game (11370ms) What was the final score? given point values -11.101066650352111 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, for be, the final score) -> (given point values, are then added together for, the final score) -> given point values (11370ms) What was the final score? the scores -11.116433606370991 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (the scores, being, the final scores) -> the scores (7216ms) What was the final score? too many Steeler losses -11.124269981596422 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, of be, the final score) -> (too many Steeler losses, is your prediction of, the final score) -> too many Steeler losses (8326ms) What was the final score? use -11.126686341052409 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (use, was quite simple to establish, the final rating score) -> use (11370ms) What was the final score? Patrick?s goal -11.131857272594495 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (Patrick?s goal, proved to be, the final Islander score) -> Patrick?s goal (11370ms) What was the final score? Webster?s games -11.147772838623412 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, from be, the final score) -> (Webster?s games, were all cancelled from, the final scoring) -> Webster?s games (8326ms) What was the final score? each match -11.157109598677199 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (each match, will be decided on, final score) -> each match (7216ms) What was the final score? the Denver game -11.157162264349985 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, actually be, the final score) -> (the Denver game, was actually closer than, the final score) -> the Denver game (8011ms) What was the final score? the ICP -11.157498994440065 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, of be, the final score) -> (the ICP, is 20 % of, the final MBA score) -> the ICP (8326ms) What was the final score? One winner -11.167494070665356 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be will, the final score) -> (One winner, will be chosen based on, the final score) -> One winner (11370ms) What was the final score? The Panthers biggest lead -11.176826142398985 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, of be, the final score) -> (The Panthers biggest lead, was the margin of, the final score) -> The Panthers biggest lead (8326ms) What was the final score? Comments -11.179824938845309 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (Comments, are closed, Final Score) -> Comments (7238ms) What was the final score? 5-2...which -11.207633332311255 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (5-2...which, turned out to be, the final score) -> 5-2...which (11399ms) What was the final score? Veterans ? preference points -11.208097112126449 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (Veterans ? preference points, are added to, the final score) -> Veterans ? preference points (11398ms) What was the final score? more points -11.21632947138776 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (more points, are added to, the final score) -> more points (11398ms) What was the final score? the 9th my heart -11.229634446170797 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (the 9th my heart, was pounding, ...FINAL SCORE) -> the 9th my heart (7238ms) What was the final score? two points -11.234700891213372 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, from be, the final score) -> (two points, are subtracted from, the final score) -> two points (8326ms) What was the final score? each test -11.235753411701728 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (each test, is used to determine, the final score) -> each test (11398ms) What was the final score? one letter grade -11.237511884728299 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be will, the final score) -> (one letter grade, will also be deducted from, the final score) -> one letter grade (11398ms) What was the final score? each team?s answers -11.239928244184284 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be will, the final score) -> (each team?s answers, will be included in, the final score) -> each team?s answers (11398ms) What was the final score? the Haskins Center -11.26248742133697 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, with be, the final score) -> (the Haskins Center, were lit with, the final score) -> the Haskins Center (7944ms) What was the final score? Three points -11.263701161196547 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (Three points, are added to, the final score) -> Three points (11398ms) What was the final score? up to 30 credits -11.277017123490463 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (up to 30 credits, may be granted for, final scores) -> up to 30 credits (7258ms) What was the final score? L Bets -11.282797137643003 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be will, the final score) -> (L Bets, will be settled on, the official final score) -> L Bets (11398ms) What was the final score? count -11.286257497861916 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (count, is, the final score) -> count (7258ms) What was the final score? a difficult angle -11.331025062685564 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (a difficult angle, proved to be, the final score) -> a difficult angle (11426ms) What was the final score? 0.1 -11.3424588236368 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, from be, the final score) -> (0.1, should be deducted from, the final score) -> 0.1 (11426ms) What was the final score? A general impression mark -11.35560213904879 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (A general impression mark, is also added to, the final score) -> A general impression mark (11426ms) What was the final score? Power ratings -11.356479567820262 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, of be, the final score) -> (Power ratings, are typically based off of, the final scores) -> Power ratings (11426ms) What was the final score? a specific question -11.35802806891426 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (a specific question, may be omitted from, final scoring) -> a specific question (7258ms) What was the final score? a bonus point -11.369437804046374 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (a bonus point, is added to, the final score) -> a bonus point (11426ms) What was the final score? the 3 attempts -11.376296939891521 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be will, the final score) -> (the 3 attempts, will be counted towards, the final score) -> the 3 attempts (11426ms) What was the final score? Total goals -11.377936673167403 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be will, the final score) -> (Total goals, will be based on, the final score) -> Total goals (11426ms) What was the final score? a Miami TD drive -11.37986773988517 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, for be, the final score) -> (a Miami TD drive, was beaten for, the final winning score) -> a Miami TD drive (11426ms) What was the final score? midterm scores -11.380697257934633 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be will, the final score) -> (midterm scores, will be overridden by, the final exam score) -> midterm scores (11578ms) What was the final score? the only question -11.386308468736551 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (the only question, is, the final score) -> the only question (7280ms) What was the final score? bonus points -11.402509054559474 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (bonus points, will be added on to, the final score) -> bonus points (11578ms) What was the final score? No accurate historical record -11.406329080004582 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, of be, the final score) -> (No accurate historical record, was ever made of, the final score) -> No accurate historical record (11578ms) What was the final score? each round -11.408999285348594 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (each round, are then added together to give, the final score) -> each round (11578ms) What was the final score? Twelve metrics -11.411992997947692 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (Twelve metrics, are used to calculate, the final score) -> Twelve metrics (11578ms) What was the final score? Sales results -11.423721554353007 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, of be, the final score) -> (Sales results, are worth 50 % of, the final score) -> Sales results (11578ms) What was the final score? sock style -11.432636381942373 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be will, the final score) -> (sock style, will be a factor in, the final score) -> sock style (11606ms) What was the final score? each member -11.436665114857147 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (each member, are added up to make, the final score) -> each member (11606ms) What was the final score? one point -11.436928783561243 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, from be, the final score) -> (one point, will be deducted from, the final score) -> one point (11606ms) What was the final score? Nine -11.446501579228292 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (Nine, will be counted in, final scoring) -> Nine (7281ms) What was the final score? each infraction -11.454912989803605 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, of be, the final score) -> (each infraction, will be 10 % of, the overall final score) -> each infraction (11606ms) What was the final score? 128 companies -11.466703320779429 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, for be, the final score) -> (128 companies, were evaluated for, the final scoring) -> 128 companies (11606ms) What was the final score? a snap header -11.475027848052923 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, of be, the final score) -> (a snap header, was one of, the Revs? final scoring threats) -> a snap header (11633ms) What was the final score? each squad -11.490993422246875 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (each squad, are used to calculate, the final team score) -> each squad (11633ms) What was the final score? T-Square and 20 points -11.504513242782178 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (T-Square and 20 points, were added to, the final exam score) -> T-Square and 20 points (11633ms) What was the final score? Winners -11.528312874779745 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, by be, the final score) -> (Winners, are determined by, the final score) -> Winners (8011ms) What was the final score? each table -11.534811070233946 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, for be, the final score) -> (each table, will be counted for, the total final score) -> each table (11633ms) What was the final score? Any first-place ties -11.5364475036579 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be will, the final score) -> (Any first-place ties, will be broken by, the final-round score) -> Any first-place ties (11633ms) What was the final score? non-performing -11.552674331509234 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, from be, the final score) -> (non-performing, are deleted from, the final scoring) -> non-performing (11633ms) What was the final score? 70-59 -11.583656012783125 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, from be, the final score) -> (70-59, was one point away from, the final score) -> 70-59 (11633ms) What was the final score? disclosing much -11.59051555133516 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, from be, the final score) -> (disclosing much, is even prohibited from giving, the final score) -> disclosing much (11660ms) What was the final score? a winning square -11.59092231038809 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be will, the final score) -> (a winning square, will be determined by using, the final score) -> a winning square (11660ms) What was the final score? Points -11.609659025024234 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, from be, the final score) -> (Points, are deducted from, the final score) -> Points (11660ms) What was the final score? 13-9 -11.610380728723838 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (13-9, was the closest to, the final , paltry score 16-3) -> 13-9 (11660ms) What was the final score? Tim Ferguson -11.627713913684115 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (Tim Ferguson, proved to be the difference in, the final score) -> Tim Ferguson (11660ms) What was the final score? a team plays -11.712705362358667 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, by be, the final score) -> (a team plays, is reflected only by, the final score) -> a team plays (8011ms) What was the final score? the ?goals -11.727359289465268 What was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: ($x, be, score) -> (the ?goals, are, scored?) -> the ?goals (11715ms) What was the final score? a settling table -11.742768068912016 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, for be, the final score) -> (a settling table, is used for calculating, the final score) -> a settling table (11715ms) What was the final score? One very resourceful group -11.761437829689978 What was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: ($x, be, score) -> (One very resourceful group, is, SCORE) -> One very resourceful group (11715ms) What was the final score? a critics job -11.774588887784372 What was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: ($x, be, score) -> (a critics job, is, scores) -> a critics job (11715ms) What was the final score? The goal -11.822802552552345 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (The goal, is to guess, the final combined score) -> The goal (11715ms) What was the final score? matter -11.864378744400964 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (matter, is, the final score) -> matter (7491ms) What was the final score? game -11.878282979344085 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> (game, was, the final score) -> game (7491ms) What was the final score? Payouts -11.895623037172264 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be will, the final score) -> (Payouts, will be based on, the official final score) -> Payouts (11715ms) What was the final score? Games -11.909342811215856 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, for be, the final score) -> (Games, will be competing for, the highest Final Score) -> Games (11803ms) What was the final score? THE GOAL -11.916677339122888 What was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: ($x, be, score) -> (THE GOAL, IS, SCORED) -> THE GOAL (11803ms) What was the final score? the Junior -11.932776048482388 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, of be, the final score) -> (the Junior, is worth 60-percent of, the final score) -> the Junior (11803ms) What was the final score? JOhn -11.93335150043543 What was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: ($x, be, score) -> (JOhn, is a musician who plays the, SCORE) -> JOhn (11803ms) What was the final score? NEW -12.014235114571294 What was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: (score, be, $x) -> (scores, is a proxy for, NEW) -> NEW (11803ms) What was the final score? Padilla -12.022170755480408 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, by be, the final score) -> (Padilla, has been a great pickup by, the Dodgers Final score) -> Padilla (8011ms) What was the final score? Acid levels -12.034685145472807 What was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: ($x, be, score) -> (Acid levels, are, scores) -> Acid levels (11827ms) What was the final score? the ?short-form ? GN -12.035123200867272 What was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: ($x, be, score) -> (the ?short-form ? GN, were, scores) -> the ?short-form ? GN (11827ms) What was the final score? Extra Time -12.046868475289031 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be will, the final score) -> (Extra Time, will be counted towards, the final score) -> Extra Time (11827ms) What was the final score? NBA -12.053219345239192 What was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: (score, be, $x) -> (scores, is an organization belonging to, NBA) -> NBA (11827ms) What was the final score? the three centers -12.108579694588283 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (the three centers, were comparable in, final scores) -> the three centers (7548ms) What was the final score? service corps of retired executives -12.1770029421098 What was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: (score, be, $x) -> (SCORE, is an organization known by the acronym, service corps of retired executives) -> service corps of retired executives (11851ms) What was the final score? The following distribution -12.23937640029676 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (The following distribution, is based on, final scores) -> The following distribution (7548ms) What was the final score? the Mavericks -12.245652861910745 What was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: ($x, be, score) -> (the Mavericks, is, score) -> the Mavericks (11851ms) What was the final score? attention -12.272269487397082 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (attention, is drawn towards, final score) -> attention (7548ms) What was the final score? the clock -12.287444210742162 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (the clock, was ticking, ? Final score) -> the clock (7548ms) What was the final score? the pitcher ? -12.298471680266852 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (the pitcher ?, will be a low scoring affair with, final scores) -> the pitcher ? (7548ms) What was the final score? the Canon S3 -12.43765508008519 What was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: ($x, be, score) -> (the Canon S3, IS, score) -> the Canon S3 (11897ms) What was the final score? the other two sections -12.470840126919601 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (the other two sections, are each worth 25 % of, final score) -> the other two sections (7592ms) What was the final score? The points -12.496087586501952 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (The points, are added to, the final score) -> The points (11897ms) What was the final score? The Lakers -12.498054361946007 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be will, the final score) -> (The Lakers, will be making, a poster of the final score) -> The Lakers (11897ms) What was the final score? the Chamber -12.532197513153939 What was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: ($x, be, score) -> (the Chamber, are, SCORE) -> the Chamber (11897ms) What was the final score? Criterion scores -12.539252306976879 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (Criterion scores, were averaged to, determine the final score) -> Criterion scores (11898ms) What was the final score? an end -12.593117306917298 What was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: ($x, be, score) -> (an end, is, score) -> an end (11897ms) What was the final score? perception action -12.593731099861827 What was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: (score, be, $x) -> (SCORING, is a, perception action) -> perception action (11920ms) What was the final score? sports game -12.593731099861827 What was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: (score, be, $x) -> (SCORE, is a, sports game) -> sports game (11920ms) What was the final score? professional organization -12.593731099861827 What was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: (score, be, $x) -> (SCORE., is a, professional organization) -> professional organization (11920ms) What was the final score? political blog -12.593731099861827 What was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: (score, be, $x) -> (SCORE, is a, political blog) -> political blog (11920ms) What was the final score? Kuyt???s goals -12.594393745111397 What was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: ($x, be, score) -> (Kuyt???s goals, were, score) -> Kuyt???s goals (11920ms) What was the final score? Money -12.599821184777138 What was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: ($x, be, score) -> (Money, is, scores) -> Money (11920ms) What was the final score? The final total -12.617246981157098 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, of be, the final score) -> (The final total, is the sum of, the two final scores) -> The final total (12098ms) What was the final score? the emotions -12.629906484615358 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (the emotions, are varied accordingly to, the final cricket score) -> the emotions (12098ms) What was the final score? a touchdown -12.639856578290217 What was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: ($x, be, score) -> (a touchdown, is, score) -> a touchdown (12098ms) What was the final score? Style The IXUS 980 -12.648730107846081 What was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: ($x, be, score) -> (Style The IXUS 980, IS, scores) -> Style The IXUS 980 (12098ms) What was the final score? the evaluation process -12.664109440140463 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, to to be, the final score) -> (the evaluation process, was to share, the final scoring) -> the evaluation process (12098ms) What was the final score? Balfour and Fuentes -12.672521111641785 What was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: ($x, be, score) -> (Balfour and Fuentes, were, score) -> Balfour and Fuentes (12098ms) What was the final score? Entrepreneurship -12.679036163865852 What was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> $x: ($x, be, score) -> (Entrepreneurship, is, SCORE) -> Entrepreneurship (12098ms) What was the final score? the playing session -12.722466480444966 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, by be, the final score) -> (the playing session, is determined by, the final score) -> the playing session (8011ms) What was the final score? the winner -12.780062372484362 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, by be, the final score) -> (the winner, is usually determined by, the final score) -> the winner (8052ms) What was the final score? The winner -12.810464352707024 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, with be, the final score) -> (The winner, is the rider with, the highest final score) -> The winner (8053ms) What was the final score? the day -12.825917659632934 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, just be, the final score) -> (the day, was n?t just about, the final score) -> the day (8052ms) What was the final score? The over/under -12.832991203544001 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, by be, the final score) -> (The over/under, is determined by adding, the final score) -> The over/under (8053ms) What was the final score? The game -12.870631930506766 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be nt as, the final score) -> (The game, was n?t as close as, the final score) -> The game (7842ms) What was the final score? the winners -12.899264761354312 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, by be, the final score) -> (the winners, will be decided by, the final score) -> the winners (8052ms) What was the final score? The score sheet -12.913791567001766 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, with be, the final score) -> (The score sheet, would be filled out with, the final score) -> The score sheet (8052ms) What was the final score? The opposition scorer -12.927600360614118 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, with be, the final score) -> (The opposition scorer, was satisfied with, the final score) -> The opposition scorer (8052ms) What was the final score? the purpose -12.969419509799607 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, just be, the final score) -> (the purpose, is n?t just to determine, the final score) -> the purpose (8165ms) What was the final score? possession -13.092786133648673 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (possession, are inconsistent with, final score) -> possession (7592ms) What was the final score? losers -13.153185685660606 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, by be, the final score) -> (losers, are determined by, the final score) -> losers (8165ms) What was the final score? Results -13.270502532492763 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, with be, the final score) -> (Results, were tabulated with, 75 % of the final score) -> Results (8165ms) What was the final score? winners -13.317238388886555 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be be, final score) -> (winners, will be decided on, final score) -> winners (7592ms) What was the final score? links -13.318791063377075 What was the final score? -> $x: (the final score, instance of, $x) -> $x: (final score, instance of, $x) -> $x: (final score, turn automatically into, $x) -> (Final score, turn automatically into, links) -> links (4949ms) What was the final score? detail -13.535252514547675 What was the final score? -> what [ be the final ] score ? -> what be be the final score ? -> $x: ($x, be be, the final score) -> $x: ($x, be can, the final score) -> (detail, can be provided on, the final score reports) -> detail (7842ms) What was the final score? the employer -14.287360838725856 What was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> (score points, also gather valuable facts about, the employer) -> the employer (7704ms) What was the final score? life -14.63831958966398 What was the final score? -> what be the final [ score ] ? -> what be the fact of score ? -> $x: (score, fact, $x) -> (2009 Credit scores, are a fact of, life) -> life (7705ms) What year did Alaska become a state? 1959 -7.519324686293866 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, became a state in, 1959) -> 1959 (8697ms) What year did Alaska become a state? 1867 -7.641072018341523 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, became a state in, 1867) -> 1867 (8697ms) What year did Alaska become a state? 1922 -7.645920422232434 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, became a state in, 1922) -> 1922 (8697ms) What year did Alaska become a state? 1958 -7.701197484150514 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, became a state in, 1958) -> 1958 (8697ms) What year did Alaska become a state? 1960 -7.909348324551002 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Alaska, became a hit in, 1960) -> 1960 (3427ms) What year did Alaska become a state? 1912 -7.962892128354724 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Alaska, became a territory in, 1912) -> 1912 (3427ms) What year did Alaska become a state? 1969 -8.19051378292985 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Alaska, became operational in, 1969) -> 1969 (4392ms) What year did Alaska become a state? 1970 -8.270250669770135 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Kodiak Alaska, would become in, 1970) -> 1970 (4392ms) What year did Alaska become a state? 1990 -8.276440027280106 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Alaska, became the first in, 1990) -> 1990 (4392ms) What year did Alaska become a state? January 1959 -8.564566682190229 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, became a state in, January 1959) -> January 1959 (9023ms) What year did Alaska become a state? 1977 -8.589146618705174 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (the Trans Alaska Pipeline, became operational in, 1977) -> 1977 (4589ms) What year did Alaska become a state? January 3 , 1959 -8.700585373987025 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, became a State on, January 3 , 1959) -> January 3 , 1959 (9023ms) What year did Alaska become a state? 1912 and finally -8.827801193112133 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Alaska, became a territory in, 1912 and finally) -> 1912 and finally (4589ms) What year did Alaska become a state? The Last Frontier -9.197094942472212 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> (Alaska, Nickname, The Last Frontier) -> The Last Frontier (9727ms) What year did Alaska become a state? the 1950?s -9.34824868034976 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, became a state in, the 1950?s) -> the 1950?s (9727ms) What year did Alaska become a state? less than 20 years -9.56260947502064 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, had been a state for, less than 20 years) -> less than 20 years (9727ms) What year did Alaska become a state? President Eisenhower -9.572526137038961 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (-Alaska, becomes a State as, President Eisenhower) -> President Eisenhower (9727ms) What year did Alaska become a state? MIND -9.760368429387782 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (ALASKA, IS A STATE OF, MIND) -> MIND (9812ms) What year did Alaska become a state? 2100 -9.761502298317875 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, will be gone in, 2100) -> 2100 (9811ms) What year did Alaska become a state? act -9.920239640478673 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, became a state by, act) -> act (9811ms) What year did Alaska become a state? 1995 -9.946984907239608 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, went under in, 1995) -> 1995 (9811ms) What year did Alaska become a state? May 17 , 1884 , 23 Stat -9.969995148723251 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become on, $x) -> $x: (alaska, become on, $x) -> (Alaska, became a law on, May 17 , 1884 , 23 Stat) -> May 17 , 1884 , 23 Stat (4678ms) What year did Alaska become a state? April 1 , 2002 -10.050381337452057 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become on, $x) -> $x: (alaska, become on, $x) -> (Alaska, became effective on, April 1 , 2002) -> April 1 , 2002 (4726ms) What year did Alaska become a state? 2008 -10.130066197186785 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> $x: ($x, state of, alaska) -> (2008, commemorates the State of, Alaska) -> 2008 (9811ms) What year did Alaska become a state? 1959.? -10.144729378248092 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Alaska, became America?s 49th state in, 1959.?) -> 1959.? (4726ms) What year did Alaska become a state? marine debris -10.181311480332049 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Alaska and Hawaii, become entangled in, marine debris) -> marine debris (4726ms) What year did Alaska become a state? January 3rd -10.200630407496133 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become on, $x) -> $x: (alaska, become on, $x) -> (Alaska, became the 49th state on, January 3rd) -> January 3rd (4726ms) What year did Alaska become a state? untamed wilderness -10.276073520353545 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, is a state of, untamed wilderness) -> untamed wilderness (9851ms) What year did Alaska become a state? America -10.35017398904961 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, is a state in, America) -> America (9851ms) What year did Alaska become a state? a border -10.379480528447457 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, is the only state with, a border) -> a border (9851ms) What year did Alaska become a state? bar same-sex marriage -10.448393469424063 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, becomes the first state to, bar same-sex marriage) -> bar same-sex marriage (9851ms) What year did Alaska become a state? a small Inuit community -10.46400343569894 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Alaska, became a teacher in, a small Inuit community) -> a small Inuit community (4811ms) What year did Alaska become a state? one entity -10.478967437443316 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, is a maritime state with, one entity) -> one entity (9851ms) What year did Alaska become a state? the United States -10.509692295772304 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, is a state in, the United States) -> the United States (9851ms) What year did Alaska become a state? a big Problem -10.513229094078984 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, Is a big state with, a big Problem) -> a big Problem (9994ms) What year did Alaska become a state? Russia -10.526455567746188 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> (Russia, is now the state of, Alaska thousands) -> Russia (9994ms) What year did Alaska become a state? the U.S. -10.5291813774702 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Alaska, became the first state in, the U.S.) -> the U.S. (4811ms) What year did Alaska become a state? a free , public education -10.590805204404004 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, provides state funding for, a free , public education) -> a free , public education (9994ms) What year did Alaska become a state? Canada -10.603966563243498 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> (Canada, is the state of, Alaska) -> Canada (10030ms) What year did Alaska become a state? Forget-me-nots -10.643834211564895 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> (Forget-me-nots, are the state flower of, Alaska) -> Forget-me-nots (10030ms) What year did Alaska become a state? Juneau -10.692710200103436 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> (Juneau, is the official state capital of, Alaska) -> Juneau (10030ms) What year did Alaska become a state? Charles Chebry -10.707221475272966 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, stated, Charles Chebry) -> Charles Chebry (10030ms) What year did Alaska become a state? Alaska?s contract -10.71781696541655 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, will hold the State of, Alaska?s contract) -> Alaska?s contract (10030ms) What year did Alaska become a state? such categories -10.76690069724453 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, leads all other states in, such categories) -> such categories (10072ms) What year did Alaska become a state? the Union -10.803219480792633 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Alaska, became the 49th state in, the Union) -> the Union (4811ms) What year did Alaska become a state? January 3 -10.80896324137359 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become on, $x) -> $x: (alaska, become on, $x) -> (Alaska, became the 49th state on, January 3) -> January 3 (4845ms) What year did Alaska become a state? May 1998 -10.818729056433463 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, goes back to, May 1998) -> May 1998 (10072ms) What year did Alaska become a state? the USA -10.882214615142999 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, is the largest state in, the USA) -> the USA (10072ms) What year did Alaska become a state? such legislation -10.88721619698977 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, remains the only state with, such legislation) -> such legislation (10103ms) What year did Alaska become a state? an expanded faith -10.899587090955801 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Alaska ] Mom, became interested in, an expanded faith) -> an expanded faith (4845ms) What year did Alaska become a state? 10-15 years -10.923505455765806 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, could go, 10-15 years) -> 10-15 years (10109ms) What year did Alaska become a state? the United States area-wise -10.945573237294273 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, is the largest state in, the United States area-wise) -> the United States area-wise (10109ms) What year did Alaska become a state? area -10.991252385255914 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, is the largest state in, area) -> area (10103ms) What year did Alaska become a state? 3rd -10.997389911632311 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, became the 49th state, 3rd) -> 3rd (10103ms) What year did Alaska become a state? salmon -11.07071490600299 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, is the state for, salmon) -> salmon (10132ms) What year did Alaska become a state? juneau -11.137880471234123 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (alaska, is the capital city of the state or province, juneau) -> juneau (10132ms) What year did Alaska become a state? the King Salmon -11.186549621421943 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> (the King Salmon, is the official State of, Alaska fish) -> the King Salmon (10132ms) What year did Alaska become a state? 4,000 years -11.207035117236115 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, went extinct only about, 4,000 years) -> 4,000 years (10132ms) What year did Alaska become a state? discount prescription cards -11.215756022316663 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> (discount prescription cards, is the State of, Alaska) -> discount prescription cards (10163ms) What year did Alaska become a state? 1788 -11.217500488670012 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, be n?t in, $x) -> (Alaska, is n?t a state in, 1788) -> 1788 (5565ms) What year did Alaska become a state? a run -11.222536825424122 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, goes on, a run) -> a run (10163ms) What year did Alaska become a state? Margi Clifford -11.232234249480406 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> (Margi Clifford, is the state of, Alaska) -> Margi Clifford (10163ms) What year did Alaska become a state? superlatives -11.242547716676434 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, is a state of, superlatives) -> superlatives (10163ms) What year did Alaska become a state? crisis -11.251817006057347 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, is already a state in, crisis) -> crisis (10163ms) What year did Alaska become a state? new hydropower development -11.256744901665183 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> (new hydropower development, is the state of, Alaska) -> new hydropower development (10163ms) What year did Alaska become a state? Workplace Alaska -11.280423549663281 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> (Workplace Alaska, is the State of, Alaska) -> Workplace Alaska (10207ms) What year did Alaska become a state? THE USA -11.281182519687698 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> (THE USA, IS THE STATE OF, ALASKA) -> THE USA (10207ms) What year did Alaska become a state? Democrat -11.31857732340706 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, would go, Democrat) -> Democrat (10207ms) What year did Alaska become a state? Alpine Forget-Me-Not -11.319095560196626 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> (Alpine Forget-Me-Not, is the state flower of, Alaska) -> Alpine Forget-Me-Not (10207ms) What year did Alaska become a state? the United States district court -11.319095560196626 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> (the United States district court, is the state of, Alaska) -> the United States district court (10207ms) What year did Alaska become a state? 2012 -11.323089550549083 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, decide in, $x) -> (Alaska voters, will decide in, 2012) -> 2012 (5362ms) What year did Alaska become a state? Myosotis alpestris -11.345613659020735 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> (Myosotis alpestris, is the state flower of, Alaska) -> Myosotis alpestris (10207ms) What year did Alaska become a state? The Willow Ptarmigan -11.38528516713891 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> (The Willow Ptarmigan, is the state bird of, Alaska) -> The Willow Ptarmigan (10252ms) What year did Alaska become a state? earth -11.400911515526365 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> (earth, is the state of, Alaska) -> earth (10252ms) What year did Alaska become a state? 2nd Day Air -11.404350771037207 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, automatically go, 2nd Day Air) -> 2nd Day Air (10252ms) What year did Alaska become a state? fostering -11.408098026105641 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Alaska, became active in, fostering) -> fostering (4845ms) What year did Alaska become a state? INTRODUCTION Juneau -11.431388656097855 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> (INTRODUCTION Juneau, is the state capital of, Alaska) -> INTRODUCTION Juneau (10252ms) What year did Alaska become a state? view -11.437435602953588 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Alaska, becomes more unique in, view) -> view (4958ms) What year did Alaska become a state? 23-4-1 -11.439966858617662 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, went, 23-4-1) -> 23-4-1 (10288ms) What year did Alaska become a state? Here are entered works on the indigenous peoples of Alaska treated collectively. Works about individual cultures and tribes in Alaska are entered under the name of the culture or tribe subdivided geographically, e.g. Aleuts--Alaska; Eskimos--Alaska. -11.453750964527034 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> $x: (alaska, note, $x) -> (Alaska Natives, Scope Note, Here are entered works on the indigenous peoples of Alaska treated collectively. Works about individual cultures and tribes in Alaska are entered under the name of the culture or tribe subdivided geographically, e.g. Aleuts--Alaska; Eskimos--Alaska.) -> Here are entered works on the indigenous peoples of Alaska treated collectively. Works about individual cultures and tribes in Alaska are entered under the name of the culture or tribe subdivided geographically, e.g. Aleuts--Alaska; Eskimos--Alaska. (10584ms) What year did Alaska become a state? Here are entered works on the area included in the basins of the Yukon and Kuskokwim rivers upriver from the delta regions and the Alaska and Brooks ranges, often encompassing the Wrangell Mountains. -11.457154349744073 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> $x: (alaska, note, $x) -> (Interior Alaska (Alaska), Scope Note, Here are entered works on the area included in the basins of the Yukon and Kuskokwim rivers upriver from the delta regions and the Alaska and Brooks ranges, often encompassing the Wrangell Mountains.) -> Here are entered works on the area included in the basins of the Yukon and Kuskokwim rivers upriver from the delta regions and the Alaska and Brooks ranges, often encompassing the Wrangell Mountains. (10583ms) What year did Alaska become a state? Obama -11.467301262167334 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, might just go for, Obama) -> Obama (10288ms) What year did Alaska become a state? Governor -11.468810880429443 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become on, $x) -> $x: (alaska, become on, $x) -> (the Miss Alaska, then went on to become, Governor) -> Governor (4958ms) What year did Alaska become a state? Health Insurance -11.478060614659695 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, Go, Health Insurance) -> Health Insurance (10326ms) What year did Alaska become a state? Classic Rock -11.483430353895825 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, go, Classic Rock) -> Classic Rock (10326ms) What year did Alaska become a state? Palin -11.526756014572507 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, went to, Palin) -> Palin (10326ms) What year did Alaska become a state? an ANCC -11.541119784035867 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become on, $x) -> $x: (alaska, become on, $x) -> (The Alaska Nurses Association, is working on becoming, an ANCC) -> an ANCC (4958ms) What year did Alaska become a state? January -11.549507892114907 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become on, $x) -> $x: (alaska, become on, $x) -> (Alaska, became the 49th state on, January) -> January (4958ms) What year did Alaska become a state? Sarah Palin -11.555393430764028 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, is going after, Sarah Palin) -> Sarah Palin (10399ms) What year did Alaska become a state? terms -11.563017732185257 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, is the largest state in, terms) -> terms (10400ms) What year did Alaska become a state? 137,500 mobile subscribers -11.56704312422848 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, went from, 137,500 mobile subscribers) -> 137,500 mobile subscribers (10399ms) What year did Alaska become a state? Exercise Alaska Shield / Northern Edge 07 -11.569022537944551 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> $x: ($x, state of, alaska) -> (Exercise Alaska Shield / Northern Edge 07, is a state of, Alaska) -> Exercise Alaska Shield / Northern Edge 07 (10399ms) What year did Alaska become a state? Here are entered works on the census areas of Nome and Kobuk and the western part of the North Slope and Yukon-Koyukuk census districts collectively. -11.57627283234043 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> $x: (alaska, note, $x) -> (Alaska, Northwest, Scope Note, Here are entered works on the census areas of Nome and Kobuk and the western part of the North Slope and Yukon-Koyukuk census districts collectively.) -> Here are entered works on the census areas of Nome and Kobuk and the western part of the North Slope and Yukon-Koyukuk census districts collectively. (10583ms) What year did Alaska become a state? now -11.588838224864608 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, is a state, now) -> now (10400ms) What year did Alaska become a state? GOP -11.592221388411328 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, goes, GOP) -> GOP (10400ms) What year did Alaska become a state? HB 226 -11.593928611312473 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> $x: ($x, state of, alaska) -> (HB 226, brings the state of, Alaska) -> HB 226 (10433ms) What year did Alaska become a state? Japan -11.62008878615082 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, goes to, Japan) -> Japan (10433ms) What year did Alaska become a state? Federal law -11.635722986134358 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> $x: ($x, state of, alaska) -> (Federal law, requires the state of, Alaska) -> Federal law (10433ms) What year did Alaska become a state? Stan -11.642199982160133 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> (Stan, was the State of, Alaska?s Chief Restoration Planner) -> Stan (10433ms) What year did Alaska become a state? abortions -11.64277195870645 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> (Alaska, provides state funding for, abortions) -> abortions (10433ms) What year did Alaska become a state? 1857 -11.644916257285152 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, here be in, $x) -> (Interior Alaska, was established here in, 1857) -> 1857 (5000ms) What year did Alaska become a state? Cotabato -11.647891132591585 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, went to, Cotabato) -> Cotabato (10497ms) What year did Alaska become a state? South America -11.65586384947549 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, went around, South America) -> South America (10497ms) What year did Alaska become a state? a hitch -11.664163943352818 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, went without, a hitch) -> a hitch (10497ms) What year did Alaska become a state? Anchorage -11.67264866803606 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, went through, Anchorage) -> Anchorage (10584ms) What year did Alaska become a state? Census 2000 data -11.677843536509592 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> $x: (alaska, delineate, $x) -> (Alaska Native Areas, delineated for, Census 2000 data) -> Census 2000 data (10583ms) What year did Alaska become a state? The BBAP -11.679336285326842 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> (The BBAP, is the State of, Alaska?s principal land use plan) -> The BBAP (10584ms) What year did Alaska become a state? BP -11.700949673426445 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> $x: ($x, state of, alaska) -> (BP, told the State of, Alaska) -> BP (10699ms) What year did Alaska become a state? a big frozen caribou cock -11.706330239045208 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, can go eat, a big frozen caribou cock) -> a big frozen caribou cock (10699ms) What year did Alaska become a state? more than 14 years -11.717554210531581 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> $x: (alaska, be state, $x) -> (Alaska, has been a state for, more than 14 years) -> more than 14 years (10699ms) What year did Alaska become a state? Dawson City -11.719590681718419 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, went to, Dawson City) -> Dawson City (10744ms) What year did Alaska become a state? Exxon -11.7338043733839 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: ($x, be the state of, alaska) -> $x: ($x, state of, alaska) -> (Exxon, would pay the State of, Alaska) -> Exxon (10745ms) What year did Alaska become a state? Kotzebue -11.737046160980512 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, is going soon to, Kotzebue) -> Kotzebue (10744ms) What year did Alaska become a state? a remarkable transformation -11.738720822758612 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, goes through, a remarkable transformation) -> a remarkable transformation (10744ms) What year did Alaska become a state? a low -11.75310115838035 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, went from, a low) -> a low (10807ms) What year did Alaska become a state? daylight saving time -11.771529904943932 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the nickname of alaska ? -> $x: (alaska, nickname, $x) -> $x: (alaska, go, $x) -> (Alaska, went on, daylight saving time) -> daylight saving time (10807ms) What year did Alaska become a state? 50 years -11.773098035099961 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what be the state of alaska ? -> $x: (alaska, state, $x) -> $x: (alaska, have state, $x) -> (Alaska, has been a state for, 50 years) -> 50 years (10807ms) What year did Alaska become a state? a 2004 study -12.117764142813765 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Petrotechnical Resources Alaska, was the lead in, a 2004 study) -> a 2004 study (5268ms) What year did Alaska become a state? the fight -12.18771710132933 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Alaska, have become a rallying symbol in, the fight) -> the fight (4999ms) What year did Alaska become a state? February -12.221162459829138 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, be n?t in, $x) -> (saying Alaska, should n?t be cold in, February) -> February (5566ms) What year did Alaska become a state? account -12.240449937699356 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become on, $x) -> $x: (alaska, become on, $x) -> (Alaska, became famous on, account) -> account (4999ms) What year did Alaska become a state? the November 3 , 1998 -12.416061165114497 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, decide in, $x) -> (Alaska and Hawaii voters, decided in, the November 3 , 1998) -> the November 3 , 1998 (5362ms) What year did Alaska become a state? the discussion -12.422029554353031 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Alaska, has become a focal point in, the discussion) -> the discussion (5000ms) What year did Alaska become a state? the union -12.427238029658703 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Alaska, became the second state in, the union) -> the union (5000ms) What year did Alaska become a state? the country -12.427238029658703 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Alaska, became the first state in, the country) -> the country (4999ms) What year did Alaska become a state? the use -12.506388539837937 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Alaska, become active in, the use) -> the use (5071ms) What year did Alaska become a state? the battle -12.609415050009394 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> (Alaska, would become ground zero in, the battle) -> the battle (5071ms) What year did Alaska become a state? Self-Government -12.7897162720032 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, have measure, $x) -> (Alaska, had achieved a full measure of, Self-Government) -> Self-Government (7714ms) What year did Alaska become a state? DUI -12.8306200513099 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, leads in, DUI) -> DUI (5268ms) What year did Alaska become a state? Summer -12.990853380084914 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: ($x, be short in, alaska) -> (Summer, is a short season in, Alaska) -> Summer (5071ms) What year did Alaska become a state? Alaska -13.031363552565155 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, support in, $x) -> (The Alaska Humanities Forum, is a partner in supporting, Alaska) -> Alaska (5268ms) What year did Alaska become a state? audio recordings -13.053253798050013 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, to listen, $x) -> (Alaska Collections, Listen to, audio recordings) -> audio recordings (5362ms) What year did Alaska become a state? Fall -13.072591782122407 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: ($x, be short in, alaska) -> (Fall, is a short season in, Alaska) -> Fall (5071ms) What year did Alaska become a state? the Master -13.19030448209801 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, to listen, $x) -> (Alaska, was listening to, the Master) -> the Master (5362ms) What year did Alaska become a state? quick as 1 -13.213160467425187 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, as be in, $x) -> (Alaska, are made in as, quick as 1) -> quick as 1 (5484ms) What year did Alaska become a state? environmental law -13.283815927067458 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Oregon and Alaska, lead the nation in, environmental law) -> environmental law (5268ms) What year did Alaska become a state? commercial fishing -13.303495982224476 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, leads the nation in, commercial fishing) -> commercial fishing (5268ms) What year did Alaska become a state? resource management -13.326294530666013 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, leads the nation in, resource management) -> resource management (5268ms) What year did Alaska become a state? Gig Harbor -13.349499431189933 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, come to be, $x) -> (Alaska ?, is coming to, Gig Harbor) -> Gig Harbor (5151ms) What year did Alaska become a state? Utah -13.350369452469184 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, come to be, $x) -> (Alaska, is excited to come to, Utah) -> Utah (5151ms) What year did Alaska become a state? the South -13.396283156924195 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, be n?t in, $x) -> (Alaska, was n?t in, the South) -> the South (5566ms) What year did Alaska become a state? a synonym -13.489914264649055 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, come to be, $x) -> (Alaska, has come to be, a synonym) -> a synonym (5314ms) What year did Alaska become a state? a town -13.558493788444714 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, come to be, $x) -> (The Alaska State Fair, may be coming to, a town) -> a town (5314ms) What year did Alaska become a state? a close -13.595832572684364 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, come to be, $x) -> (the late Alaska Sen. Ted Stevens, is coming to, a close) -> a close (5314ms) What year did Alaska become a state? plus-minus -13.622752154494346 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (? Alaska?s Kane Lafranchise, leads rookies in, plus-minus) -> plus-minus (5362ms) What year did Alaska become a state? Ventura -13.644763215089075 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, cause in, $x) -> (Alaska, caused the tide in, Ventura) -> Ventura (5785ms) What year did Alaska become a state? sexual assaults -13.671367909287136 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, leads the country in, sexual assaults) -> sexual assaults (5362ms) What year did Alaska become a state? stimulus funding -13.684566295283215 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, leads the nation in, stimulus funding) -> stimulus funding (5415ms) What year did Alaska become a state? a much-needed U.S. energy plan -13.718966069450444 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, can lead the nation in, a much-needed U.S. energy plan) -> a much-needed U.S. energy plan (5415ms) What year did Alaska become a state? modern times -13.75729621812982 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, be even in, $x) -> (Alaska, is a tough place even in, modern times) -> modern times (5640ms) What year did Alaska become a state? broadband subscriptions -13.774968762092726 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, led in, broadband subscriptions) -> broadband subscriptions (5415ms) What year did Alaska become a state? two -13.80014935893372 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (former Alaska Gov. Sarah Palin, leads in, two) -> two (5415ms) What year did Alaska become a state? any -13.80644765339242 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, could get in, $x) -> (Alaska landowners, could n?t get anyone interested in, any) -> any (5415ms) What year did Alaska become a state? Real Time -13.815413403997102 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska Insurance, Leads in, Real Time) -> Real Time (5484ms) What year did Alaska become a state? top -13.83521180975143 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: ($x, burden, alaska) -> (top, has burdened, Alaska Air Group) -> top (5484ms) What year did Alaska become a state? wind-diesel applications -13.838195024884719 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, really be in, $x) -> (Alaska, is really the front-runner in, wind-diesel applications) -> wind-diesel applications (5484ms) What year did Alaska become a state? an end -13.855327230969973 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, come to be, $x) -> (Alaska, was coming to, an end) -> an end (5566ms) What year did Alaska become a state? certain aberrations -13.880630567917688 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, often takes the national lead in, certain aberrations) -> certain aberrations (5640ms) What year did Alaska become a state? the PBA playoffs -13.889562281843691 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, be again in, $x) -> (The Alaska Aces, are once again in, the PBA playoffs) -> the PBA playoffs (5640ms) What year did Alaska become a state? rape -13.942910398346292 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, leads the nation in, rape) -> rape (5640ms) What year did Alaska become a state? high gas prices -13.946309553818857 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Hawaii and Alaska, lead the pack in, high gas prices) -> high gas prices (5640ms) What year did Alaska become a state? oil , timber and fish -13.957521049235739 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, prove in, $x) -> (Alaska, has proven to be rich in, oil , timber and fish) -> oil , timber and fish (5785ms) What year did Alaska become a state? reported forcible rapes -13.9610733393228 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, leads the nation in, reported forcible rapes) -> reported forcible rapes (5785ms) What year did Alaska become a state? April?s jobless statistics -13.962777196700031 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, led the way in, April?s jobless statistics) -> April?s jobless statistics (5785ms) What year did Alaska become a state? deep boreholes -13.971683734242845 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, have measure, $x) -> (northern Alaska, have been measured from, deep boreholes) -> deep boreholes (7715ms) What year did Alaska become a state? quantity -13.977458657734674 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, leads the nation in, quantity) -> quantity (5785ms) What year did Alaska become a state? Glenn -13.980133451865397 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, to listen, $x) -> (Alaska Job Corps students, listened carefully to, Glenn) -> Glenn (5904ms) What year did Alaska become a state? light -14.007546593373508 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, come to be, $x) -> (Alaska, is starting to come to, light) -> light (5904ms) What year did Alaska become a state? dog bite-related fatalities -14.024735603438472 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, led the US in, dog bite-related fatalities) -> dog bite-related fatalities (5904ms) What year did Alaska become a state? capita consumption -14.04860895248185 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, leads the nation in per, capita consumption) -> capita consumption (5904ms) What year did Alaska become a state? Town -14.06746984822113 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, come to be, $x) -> (Alaska The Big Jolly Fat Man, is Coming to, Town) -> Town (7714ms) What year did Alaska become a state? pork -14.082678209724836 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, led the nation in, pork) -> pork (7715ms) What year did Alaska become a state? April?s jobless statistics -14.35661742669028 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska?s urban areas, led the way in, April?s jobless statistics) -> April?s jobless statistics (7715ms) What year did Alaska become a state? cases -14.401462485081682 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, leads the nation in, cases) -> cases (7797ms) What year did Alaska become a state? connectivity -14.479599520685236 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, leads the nation in, connectivity) -> connectivity (7797ms) What year did Alaska become a state? town -14.498421334571947 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, come to be, $x) -> (Alaska, was coming to, town) -> town (7797ms) What year did Alaska become a state? favor -14.504500410208362 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, decide in, $x) -> (The Alaska Boundary Commission, decides in, favor) -> favor (7797ms) What year did Alaska become a state? music -14.516065163150422 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, to listen, $x) -> (Alaska, listened to, music) -> music (7838ms) What year did Alaska become a state? the 49th state -14.545652823263977 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, to unite, $x) -> (Alaska, was admitted to the United States as, the 49th state) -> the 49th state (7838ms) What year did Alaska become a state? Denali -14.547743900434654 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what state be in alaska ? -> $x: ($x, instance of, state) ($x, be in, alaska) -> (Denali, Instance Of, alsakan state park) (denali, is a mountain in the state or province, alaska) -> Denali (7838ms) What year did Alaska become a state? partnering -14.593576705348188 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (rural Alaska, have often taken the lead in, partnering) -> partnering (7838ms) What year did Alaska become a state? rates -14.605319927056735 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, leads the nation in, rates) -> rates (8036ms) What year did Alaska become a state? jeopardy -14.607897979828126 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, be again in, $x) -> (Alaska, is once again in, jeopardy) -> jeopardy (8036ms) What year did Alaska become a state? McKinley -14.622308284481694 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what state be in alaska ? -> $x: ($x, instance of, state) ($x, be in, alaska) -> (McKinley, Instance Of, state Republican chairman) (mckinley, is a mountain in the state or province, alaska) -> McKinley (8036ms) What year did Alaska become a state? incidents -14.667684750710023 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, leads the United States in, incidents) -> incidents (8083ms) What year did Alaska become a state? Adak -14.683862332904692 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what state be in alaska ? -> $x: ($x, instance of, state) ($x, be in, alaska) -> (Adak, Instance Of, great representation of the entire United States) (adak, is a city located in the state or province, alaska) -> Adak (8083ms) What year did Alaska become a state? Nome -14.683862332904692 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what state be in alaska ? -> $x: ($x, instance of, state) ($x, be in, alaska) -> (Nome, Instance Of, state's regional hub area) (nome, is a city located in the state or province, alaska) -> Nome (8083ms) What year did Alaska become a state? shots -14.70690294522283 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, lead in, $x) -> (Alaska, grabbed the lead in, shots) -> shots (8123ms) What year did Alaska become a state? the top 30 oil spills -14.724592123772334 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, be even in, $x) -> (Alaska 21 years, ago is n?t even in, the top 30 oil spills) -> the top 30 oil spills (8123ms) What year did Alaska become a state? Mr. McKinley -14.729381398454606 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what state be in alaska ? -> $x: ($x, instance of, state) ($x, be in, alaska) -> (Mr. McKinley, Instance Of, citizen of the United States) (mckinley, is a mountain in the state or province, alaska) -> Mr. McKinley (8155ms) What year did Alaska become a state? place -14.746791972495162 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> when do alaska become ? -> $x: (alaska, do become in, $x) -> $x: (alaska, become in, $x) -> $x: (alaska, be be put in, $x) -> (Alaska?prohibitions, were put in, place) -> place (8155ms) What year did Alaska become a state? Will McKinley -14.751155387842712 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what state be in alaska ? -> $x: ($x, instance of, state) ($x, be in, alaska) -> (Will McKinley, Instance Of, graduate of Morgan State University) (mckinley, is a mountain in the state or province, alaska) -> Will McKinley (8155ms) What year did Alaska become a state? Flower -14.919781285432181 What year did Alaska become a state? -> what year do [ alaska ] become a state ? -> what state be in alaska ? -> $x: ($x, instance of, state) ($x, be in, alaska) -> (Flower, Instance Of, state fact) (FLOWERS, is an agricultural product growing in, alaska) -> Flower (8155ms) What is the full name of conductor Seiji? Bolero (Boston Symphony Orchestra feat. conductor Seiji Ozawa) -10.237771543175526 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Bolero (Boston Symphony Orchestra feat. conductor Seiji Ozawa), Release of, Bolero (Boston Symphony Orchestra feat. conductor Seiji Ozawa)) -> Bolero (Boston Symphony Orchestra feat. conductor Seiji Ozawa) (9406ms) What is the full name of conductor Seiji? The Ballets - Complete Recordings (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) -10.383962408180148 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (The Ballets - Complete Recordings (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Release of, The Ballets - Complete Recordings (disc 3) (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> The Ballets - Complete Recordings (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (9406ms) What is the full name of conductor Seiji? The Rite of Spring / The Fairy's Kiss / The Firebird Suite (Chicago Symphony Orchestra feat. conductor: Seiji Ozawa) -10.40091207368793 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (The Rite of Spring / The Fairy's Kiss / The Firebird Suite (Chicago Symphony Orchestra feat. conductor: Seiji Ozawa), Release of, The Rite of Spring / The Fairy's Kiss / The Firebird Suite (Chicago Symphony Orchestra feat. conductor: Seiji Ozawa)) -> The Rite of Spring / The Fairy's Kiss / The Firebird Suite (Chicago Symphony Orchestra feat. conductor: Seiji Ozawa) (9407ms) What is the full name of conductor Seiji? The Five Piano Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin) -10.416449267070064 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (The Five Piano Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin) (disc 1), Release of, The Five Piano Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin)) -> The Five Piano Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin) (8225ms) What is the full name of conductor Seiji? Igor Stravinsky -10.437579143141619 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (The Rite of Spring / The Fairy's Kiss / The Firebird Suite (Chicago Symphony Orchestra feat. conductor: Seiji Ozawa), Artist, Igor Stravinsky) -> Igor Stravinsky (13410ms) What is the full name of conductor Seiji? When Lilacs Last in the Dooryard Bloom'd (Boston Symphony Orchestra & Tanglewood Festival Chorus feat. conductor: Seiji Ozawa) -10.443938147669224 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (When Lilacs Last in the Dooryard Bloom'd (Boston Symphony Orchestra & Tanglewood Festival Chorus feat. conductor: Seiji Ozawa), Release of, When Lilacs Last in the Dooryard Bloom'd (Boston Symphony Orchestra & Tanglewood Festival Chorus feat. conductor: Seiji Ozawa)) -> When Lilacs Last in the Dooryard Bloom'd (Boston Symphony Orchestra & Tanglewood Festival Chorus feat. conductor: Seiji Ozawa) (9406ms) What is the full name of conductor Seiji? Stravinksy: The Rite of Spring / Petroucka / Fireworks -10.443938147669224 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Stravinsky: Petrouchka / The Rite of Spring / Fireworks (Boston Symphony Orchestra; Chicago Symphony Orchestra feat. conductor: Seiji Ozawa), Release of, Stravinksy: The Rite of Spring / Petroucka / Fireworks) -> Stravinksy: The Rite of Spring / Petroucka / Fireworks (8225ms) What is the full name of conductor Seiji? Bolero / Rapsodie espagnole / Ma m?re l'oye / Pavane (London Symphony Orchestra feat. conductor: Claudio Abbado) -10.456155427935517 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Bolero (Boston Symphony Orchestra feat. conductor Seiji Ozawa), Release of, Bolero / Rapsodie espagnole / Ma m?re l'oye / Pavane (London Symphony Orchestra feat. conductor: Claudio Abbado)) -> Bolero / Rapsodie espagnole / Ma m?re l'oye / Pavane (London Symphony Orchestra feat. conductor: Claudio Abbado) (8225ms) What is the full name of conductor Seiji? Petrouchka - Firebird Suite (Orchestre National De Lille, Casadesus, cond.) -10.497142432699855 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (The Rite of Spring / The Fairy's Kiss / The Firebird Suite (Chicago Symphony Orchestra feat. conductor: Seiji Ozawa), Release of, Petrouchka - Firebird Suite (Orchestre National De Lille, Casadesus, cond.)) -> Petrouchka - Firebird Suite (Orchestre National De Lille, Casadesus, cond.) (8225ms) What is the full name of conductor Seiji? Carmina Burana (Berliner Philharmoniker feat. conductor: Seiji Ozawa) -10.521553810537439 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Carmina Burana (Berliner Philharmoniker feat. conductor: Seiji Ozawa), Release of, Carmina Burana (Berliner Philharmoniker feat. conductor: Seiji Ozawa)) -> Carmina Burana (Berliner Philharmoniker feat. conductor: Seiji Ozawa) (9406ms) What is the full name of conductor Seiji? Gloria (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) -10.521553810537439 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Gloria (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Release of, Gloria (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Gloria (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (9406ms) What is the full name of conductor Seiji? Ballet Suites (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) -10.535567749666422 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Ballet Suites (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Release of, Ballet Suites (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Ballet Suites (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (9406ms) What is the full name of conductor Seiji? Ein Sommernachtstraum (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) -10.535567749666422 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Ein Sommernachtstraum (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Release of, Ein Sommernachtstraum (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Ein Sommernachtstraum (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (9406ms) What is the full name of conductor Seiji? Orchestral Space (Yomiuri Nippon Symphony feat. conductor: Seiji Ozawa) -10.535567749666422 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Orchestral Space (Yomiuri Nippon Symphony feat. conductor: Seiji Ozawa), Release of, Orchestral Space (Yomiuri Nippon Symphony feat. conductor: Seiji Ozawa)) -> Orchestral Space (Yomiuri Nippon Symphony feat. conductor: Seiji Ozawa) (10578ms) What is the full name of conductor Seiji? Carmen (Orchestre National de France feat. conductor: Seiji Ozawa) -10.535567749666422 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Carmen (Orchestre National de France feat. conductor: Seiji Ozawa), Release of, Carmen (Orchestre National de France feat. conductor: Seiji Ozawa)) -> Carmen (Orchestre National de France feat. conductor: Seiji Ozawa) (10578ms) What is the full name of conductor Seiji? Swan Lake (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) -10.535567749666422 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Swan Lake (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Release of, Swan Lake (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Swan Lake (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (10578ms) What is the full name of conductor Seiji? Pique Dame (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) -10.535567749666422 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Pique Dame (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Release of, Pique Dame (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Pique Dame (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (10578ms) What is the full name of conductor Seiji? Carmina Burana (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) -10.535567749666422 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Carmina Burana (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Release of, Carmina Burana (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Carmina Burana (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (10578ms) What is the full name of conductor Seiji? Capriccio Italien -10.546135483898205 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, recording of composition, $x) -> (Capriccio Italien, Op. 45 (Philharmonia Orchestra feat. conductor: Seiji Ozawa), Recording of Composition, Capriccio Italien) -> Capriccio Italien (13410ms) What is the full name of conductor Seiji? National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa) -10.548106537308144 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa), Release of, National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa)) -> National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa) (10577ms) What is the full name of conductor Seiji? Romeo & Juliet -10.548106537308144 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Romeo & Juliet (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Release of, Romeo & Juliet) -> Romeo & Juliet (9232ms) What is the full name of conductor Seiji? Scheherazade / Russian Easter Overture (Wiener Philharmoniker feat. conductor: Seiji Ozawa) -10.559391446185694 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Scheherazade / Russian Easter Overture (Wiener Philharmoniker feat. conductor: Seiji Ozawa), Release of, Scheherazade / Russian Easter Overture (Wiener Philharmoniker feat. conductor: Seiji Ozawa)) -> Scheherazade / Russian Easter Overture (Wiener Philharmoniker feat. conductor: Seiji Ozawa) (10578ms) What is the full name of conductor Seiji? Gurrelieder (Boston Symphony Orchestra & Tanglewood Festival Chorus feat. conductor: Seiji Ozawa) -10.56960160183681 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Gurrelieder (Boston Symphony Orchestra & Tanglewood Festival Chorus feat. conductor: Seiji Ozawa), Release of, Gurrelieder (Boston Symphony Orchestra & Tanglewood Festival Chorus feat. conductor: Seiji Ozawa)) -> Gurrelieder (Boston Symphony Orchestra & Tanglewood Festival Chorus feat. conductor: Seiji Ozawa) (10703ms) What is the full name of conductor Seiji? Saint Fran?ois d'Assise (Choeurs et Orchestre de l'Op?ra de Paris feat. conductor: Seiji Ozawa) -10.578883561519643 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Saint Fran?ois d'Assise (Choeurs et Orchestre de l'Op?ra de Paris feat. conductor: Seiji Ozawa), Release of, Saint Fran?ois d'Assise (Choeurs et Orchestre de l'Op?ra de Paris feat. conductor: Seiji Ozawa)) -> Saint Fran?ois d'Assise (Choeurs et Orchestre de l'Op?ra de Paris feat. conductor: Seiji Ozawa) (10703ms) What is the full name of conductor Seiji? Carmen (Highlights) (Orchestre National de France feat. conductor: Seiji Ozawa, soprano: Jessye Norman) -10.578883561519643 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Carmen (Highlights) (Orchestre National de France feat. conductor: Seiji Ozawa, soprano: Jessye Norman), Release of, Carmen (Highlights) (Orchestre National de France feat. conductor: Seiji Ozawa, soprano: Jessye Norman)) -> Carmen (Highlights) (Orchestre National de France feat. conductor: Seiji Ozawa, soprano: Jessye Norman) (10703ms) What is the full name of conductor Seiji? Poulenc: Gloria, Stabat Mater -10.578883561519643 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Poulenc: Gloria, Stabat Mater, Release of, Gloria / Stabat Mater (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Poulenc: Gloria, Stabat Mater (10703ms) What is the full name of conductor Seiji? Panufnik: Sinfonia Votiva / Sessions: Concerto for Orchestra (Boston Symphony Orchestra feat. Conductor: Seiji Ozawa) -10.587358394273535 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Panufnik: Sinfonia Votiva / Sessions: Concerto for Orchestra (Boston Symphony Orchestra feat. Conductor: Seiji Ozawa), Release of, Panufnik: Sinfonia Votiva / Sessions: Concerto for Orchestra (Boston Symphony Orchestra feat. Conductor: Seiji Ozawa)) -> Panufnik: Sinfonia Votiva / Sessions: Concerto for Orchestra (Boston Symphony Orchestra feat. Conductor: Seiji Ozawa) (11721ms) What is the full name of conductor Seiji? Pini di Roma / Feste romane / Fontane di Roma (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) -10.587358394273535 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Pini di Roma / Feste romane / Fontane di Roma (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Release of, Pini di Roma / Feste romane / Fontane di Roma (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Pini di Roma / Feste romane / Fontane di Roma (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (10703ms) What is the full name of conductor Seiji? Sibelius, Tchaikovsky: Violin Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, violin: Viktoria Mullova) -10.587358394273535 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Sibelius, Tchaikovsky: Violin Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, violin: Viktoria Mullova), Release of, Sibelius, Tchaikovsky: Violin Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, violin: Viktoria Mullova)) -> Sibelius, Tchaikovsky: Violin Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, violin: Viktoria Mullova) (11721ms) What is the full name of conductor Seiji? Panorama: Colours of the Orchestra -10.593666185991992 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, track, conductor seijus) -> (Panorama: Colours of the Orchestra, Tracks, Dolly Suite, Op. 56: VI. Le pas espagnol (Boston Symphony Orchestra feat. conductor Seiji Ozawa)) -> Panorama: Colours of the Orchestra (11721ms) What is the full name of conductor Seiji? Jeanne d'Arc au b?cher (Ch?urs de Radio France & Orchestre National de France feat. conductor: Seiji Ozawa) -10.595126990964602 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Jeanne d'Arc au b?cher (Ch?urs de Radio France & Orchestre National de France feat. conductor: Seiji Ozawa), Release of, Jeanne d'Arc au b?cher (Ch?urs de Radio France & Orchestre National de France feat. conductor: Seiji Ozawa)) -> Jeanne d'Arc au b?cher (Ch?urs de Radio France & Orchestre National de France feat. conductor: Seiji Ozawa) (11721ms) What is the full name of conductor Seiji? Violin Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, violin: Itzhak Perlman) -10.60887143126418 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Alban Berg / Igor Stravinsky: Violin Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, violin: Itzhak Perlman), Release of, Violin Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, violin: Itzhak Perlman)) -> Violin Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, violin: Itzhak Perlman) (11721ms) What is the full name of conductor Seiji? Alban Berg / Igor Stravinsky: Violin Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, violin: Itzhak Perlman) -10.60887143126418 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Alban Berg / Igor Stravinsky: Violin Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, violin: Itzhak Perlman), Release of, Violin Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, violin: Itzhak Perlman)) -> Alban Berg / Igor Stravinsky: Violin Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, violin: Itzhak Perlman) (11945ms) What is the full name of conductor Seiji? Lalo: Symphonie Espagnole / Sarasate: Zigeunerweisen -10.60887143126418 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Lalo: Symphonie Espagnole / Sarasate: Zigeunerweisen, Release of, Lalo: Symphonie Espagnole / Sarasate: Zigeunerweisen (Orchestre National de France feat. conductor: Seiji Ozawa, violin: Anne-Sophie Mutter)) -> Lalo: Symphonie Espagnole / Sarasate: Zigeunerweisen (11721ms) What is the full name of conductor Seiji? Music for Strings, Percussion and Celesta / Viola Concerto (Berliner Philharmoniker feat. conductor: Seiji Ozawa, viola: Wolfram Christ) -10.614980071397328 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Music for Strings, Percussion and Celesta / Viola Concerto (Berliner Philharmoniker feat. conductor: Seiji Ozawa, viola: Wolfram Christ), Release of, Music for Strings, Percussion and Celesta / Viola Concerto (Berliner Philharmoniker feat. conductor: Seiji Ozawa, viola: Wolfram Christ)) -> Music for Strings, Percussion and Celesta / Viola Concerto (Berliner Philharmoniker feat. conductor: Seiji Ozawa, viola: Wolfram Christ) (11945ms) What is the full name of conductor Seiji? Symphonie Espagnole / Zigeunerweisen / M?ditation -10.614980071397328 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Symphonie Espagnole / Zigeunerweisen / M?ditation, Release of, Lalo: Symphonie Espagnole / Sarasate: Zigeunerweisen (Orchestre National de France feat. conductor: Seiji Ozawa, violin: Anne-Sophie Mutter)) -> Symphonie Espagnole / Zigeunerweisen / M?ditation (11945ms) What is the full name of conductor Seiji? Concerto for Orchestra (Chicago Symphony Orchestra feat. conductor: Seiji Ozawa) / Music for Strings, Percussion and Celesta (Leopold Stokowski conducting his Orchestra) -10.625933495084348 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Concerto for Orchestra (Chicago Symphony Orchestra feat. conductor: Seiji Ozawa) / Music for Strings, Percussion and Celesta (Leopold Stokowski conducting his Orchestra), Release of, Concerto for Orchestra (Chicago Symphony Orchestra feat. conductor: Seiji Ozawa) / Music for Strings, Percussion and Celesta (Leopold Stokowski conducting his Orchestra)) -> Concerto for Orchestra (Chicago Symphony Orchestra feat. conductor: Seiji Ozawa) / Music for Strings, Percussion and Celesta (Leopold Stokowski conducting his Orchestra) (11945ms) What is the full name of conductor Seiji? El sombrero de tres picos - El amor brujo -10.625933495084348 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (El sombrero de tres picos - El amor brujo, Release of, El sombrero de tres picos / El amor brujo (Boston Symphony Orchestra, London Symphony Orchestra feat. conductor: Seiji Ozawa, Garc?a Navarro)) -> El sombrero de tres picos - El amor brujo (11945ms) What is the full name of conductor Seiji? Agnus Dei -10.628141285095015 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release, conductor seijus) -> (Agnus Dei, Release, Requiem, Op. 5 (Boston Symphony Orchestra feat conductor: Seiji Ozawa)) -> Agnus Dei (12530ms) What is the full name of conductor Seiji? An American in Paris -10.639693255328574 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, recording of composition, $x) -> (An American in Paris (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa), Recording of Composition, An American in Paris) -> An American in Paris (13410ms) What is the full name of conductor Seiji? Pavane pour une infante d?funte -10.639693255328574 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, recording of composition, $x) -> (Pavane pour une infante d?funte (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Recording of Composition, Pavane pour une infante d?funte) -> Pavane pour une infante d?funte (13410ms) What is the full name of conductor Seiji? Stravinsky: Suites, Symphonies & Concertos (feat. violin: Mazim Vengerov, conductors: Simon Rattle, Mstislav Rostropovich, Sir Neville Marriner, Seiji Ozawa, and Franz Welser-M?st) -10.639796421938236 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Stravinsky: Suites, Symphonies & Concertos (feat. violin: Mazim Vengerov, conductors: Simon Rattle, Mstislav Rostropovich, Sir Neville Marriner, Seiji Ozawa, and Franz Welser-M?st), Release of, Stravinsky: Suites, Symphonies & Concertos (feat. violin: Mazim Vengerov, conductors: Simon Rattle, Mstislav Rostropovich, Sit Neville Marriner, Seiji Ozawa, and Franz Welser-M?st)) -> Stravinsky: Suites, Symphonies & Concertos (feat. violin: Mazim Vengerov, conductors: Simon Rattle, Mstislav Rostropovich, Sir Neville Marriner, Seiji Ozawa, and Franz Welser-M?st) (12530ms) What is the full name of conductor Seiji? Stravinsky: Suites, Symphonies & Concertos (feat. violin: Mazim Vengerov, conductors: Simon Rattle, Mstislav Rostropovich, Sit Neville Marriner, Seiji Ozawa, and Franz Welser-M?st) -10.639796421938236 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Stravinsky: Suites, Symphonies & Concertos (feat. violin: Mazim Vengerov, conductors: Simon Rattle, Mstislav Rostropovich, Sir Neville Marriner, Seiji Ozawa, and Franz Welser-M?st), Release of, Stravinsky: Suites, Symphonies & Concertos (feat. violin: Mazim Vengerov, conductors: Simon Rattle, Mstislav Rostropovich, Sit Neville Marriner, Seiji Ozawa, and Franz Welser-M?st)) -> Stravinsky: Suites, Symphonies & Concertos (feat. violin: Mazim Vengerov, conductors: Simon Rattle, Mstislav Rostropovich, Sit Neville Marriner, Seiji Ozawa, and Franz Welser-M?st) (12530ms) What is the full name of conductor Seiji? West Side Story -10.648168088082466 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, recording of composition, $x) -> (West Side Story" Symphonic Dances: (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa), Recording of Composition, West Side Story) -> West Side Story (13411ms) What is the full name of conductor Seiji? Pyotr Ilyich Tchaikovsky -10.705060141152247 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (The Nutcracker / Sleeping Beauty (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 2), Artist, Pyotr Ilyich Tchaikovsky) -> Pyotr Ilyich Tchaikovsky (13411ms) What is the full name of conductor Seiji? Kazakhstan: Anthem of the Republic of Kazakhstan -10.718415724129269 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa), Tracks, Kazakhstan: Anthem of the Republic of Kazakhstan) -> Kazakhstan: Anthem of the Republic of Kazakhstan (13411ms) What is the full name of conductor Seiji? Wolfgang Amadeus Mozart -10.733648576975373 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (The Great Composers: Mozart: The magic flute / Cos? fan tutte (Vienna Philharmonic Orchestra feat. conductor: Seiji Ozawa) (disc 29), Artist, Wolfgang Amadeus Mozart) -> Wolfgang Amadeus Mozart (13457ms) What is the full name of conductor Seiji? Modest Petrovich Mussorgsky -10.7425824631701 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (Pictures at an Exhibition (orch.: M. Ravel) / The Young Person's Guide to the Orchestra, Op.34 (Chicago Symphony feat. conductor: Seiji Ozawa), Artist, Modest Petrovich Mussorgsky) -> Modest Petrovich Mussorgsky (13457ms) What is the full name of conductor Seiji? Uzbekistan: National Anthem of the Republic of Uzbekistan -10.765770236541517 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track list, $x) -> (National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa), Track list, Uzbekistan: National Anthem of the Republic of Uzbekistan) -> Uzbekistan: National Anthem of the Republic of Uzbekistan (12530ms) What is the full name of conductor Seiji? The Ballets - Complete Recordings (disc 3) (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) -10.776519868960886 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (The Ballets - Complete Recordings (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Release of, The Ballets - Complete Recordings (disc 3) (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> The Ballets - Complete Recordings (disc 3) (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (12530ms) What is the full name of conductor Seiji? The Nutcracker / Sleeping Beauty (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 2) -10.776519868960886 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (The Nutcracker / Sleeping Beauty (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 2), Release of, The Nutcracker / Sleeping Beauty (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 2)) -> The Nutcracker / Sleeping Beauty (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 2) (13456ms) What is the full name of conductor Seiji? Life Music -10.78064037301913 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (Orchestral Space (Yomiuri Nippon Symphony feat. conductor: Seiji Ozawa), Tracks, Life Music) -> Life Music (13617ms) What is the full name of conductor Seiji? Jean Sibelius -10.78064037301913 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, album, conductor seijus) -> (Jean Sibelius, Albums, Sibelius, Tchaikovsky: Violin Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, violin: Viktoria Mullova)) -> Jean Sibelius (13617ms) What is the full name of conductor Seiji? B?la Bart?k -10.78064037301913 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, recording, $x) -> (Musik f?r Saiteninstrumente, Schlagzeug und Celesta, Sz 106: IV. Allegro molto (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Recorded by, B?la Bart?k) -> B?la Bart?k (13617ms) What is the full name of conductor Seiji? Maurice Ravel -10.785745253868006 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (Bolero (Boston Symphony Orchestra feat. conductor Seiji Ozawa), Artist, Maurice Ravel) -> Maurice Ravel (13663ms) What is the full name of conductor Seiji? The Five Piano Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin) (disc 1) -10.8090067278508 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (The Five Piano Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin) (disc 1), Release of, The Five Piano Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin)) -> The Five Piano Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin) (disc 1) (13663ms) What is the full name of conductor Seiji? Symphonie espagnole -10.812081938378373 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Symphonie espagnole, Release of, Lalo: Symphonie Espagnole / Sarasate: Zigeunerweisen (Orchestre National de France feat. conductor: Seiji Ozawa, violin: Anne-Sophie Mutter)) -> Symphonie espagnole (13663ms) What is the full name of conductor Seiji? The Queen of Spades, disc 2 (Boston Symphony, Osawa) -10.83649560844996 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Pique Dame (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 1), Release of, The Queen of Spades, disc 2 (Boston Symphony, Osawa)) -> The Queen of Spades, disc 2 (Boston Symphony, Osawa) (13710ms) What is the full name of conductor Seiji? Gustav Mahler -10.837535898475117 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, album, conductor seijus) -> (Gustav Mahler, Albums, Symphony No. 8 "Symphony of a Thousand" (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Gustav Mahler (13710ms) What is the full name of conductor Seiji? Anton?n Dvo??k -10.837535898475117 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, album, conductor seijus) -> (Anton?n Dvo??k, Albums, Symphony No. 9 "From The New World" (San Francisco Symphony feat. conductor: Seiji Ozawa)) -> Anton?n Dvo??k (13710ms) What is the full name of conductor Seiji? The Great Composers: Mozart: The magic flute / Cos? fan tutte (Vienna Philharmonic Orchestra feat. conductor: Seiji Ozawa) (disc 29) -10.848712888716253 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (The Great Composers: Mozart: The magic flute / Cos? fan tutte (Vienna Philharmonic Orchestra feat. conductor: Seiji Ozawa) (disc 29), Release of, The Great Composers: Mozart: The magic flute / Cos? fan tutte (Vienna Philharmonic Orchestra feat. conductor: Seiji Ozawa) (disc 29)) -> The Great Composers: Mozart: The magic flute / Cos? fan tutte (Vienna Philharmonic Orchestra feat. conductor: Seiji Ozawa) (disc 29) (13758ms) What is the full name of conductor Seiji? Gabriel Faur? -10.859048935465765 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, recording, $x) -> (Dolly Suite, Op. 56: VI. Le pas espagnol (Boston Symphony Orchestra feat. conductor Seiji Ozawa), Recorded by, Gabriel Faur?) -> Gabriel Faur? (14004ms) What is the full name of conductor Seiji? Sergei Prokofiev -10.859048935465765 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (Piano Works for the Left Hand (Piano: Leon Fleisher, Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Artist, Sergei Prokofiev) -> Sergei Prokofiev (13805ms) What is the full name of conductor Seiji? Benjamin Britten -10.859048935465765 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (Piano Works for the Left Hand (Piano: Leon Fleisher, Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Artist, Benjamin Britten) -> Benjamin Britten (13804ms) What is the full name of conductor Seiji? Roger Sessions -10.870829884293975 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (When Lilacs Last in the Dooryard Bloom'd (Boston Symphony Orchestra & Tanglewood Festival Chorus feat. conductor: Seiji Ozawa), Artist, Roger Sessions) -> Roger Sessions (14090ms) What is the full name of conductor Seiji? Hector Berlioz -10.870829884293975 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, recording, $x) -> (Rom?o et Juliette, Op. 17: Queen Mab, the Dream Fairy (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Recorded by, Hector Berlioz) -> Hector Berlioz (14090ms) What is the full name of conductor Seiji? Boston Symphony Orchestra -10.876590756091002 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (Piano Concerto No. 5 "Emperor" (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin), Artist, Boston Symphony Orchestra) -> Boston Symphony Orchestra (14136ms) What is the full name of conductor Seiji? Alborada del gracioso -10.882559853257264 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release, conductor seijus) -> (Alborada del gracioso, Releases, Bolero (Boston Symphony Orchestra feat. conductor Seiji Ozawa)) -> Alborada del gracioso (14371ms) What is the full name of conductor Seiji? Une barque sur l'oc?an -10.893844762134814 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (Bolero (Boston Symphony Orchestra feat. conductor Seiji Ozawa), Tracks, Une barque sur l'oc?an) -> Une barque sur l'oc?an (14412ms) What is the full name of conductor Seiji? The Great Composers, Volume 54: The Magic Flute (highlights) / Cos? Fan Tutti (highlights) -10.898345589798069 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (The Great Composers, Volume 54: The Magic Flute (highlights) / Cos? Fan Tutti (highlights), Release of, The Great Composers: Mozart: The magic flute / Cos? fan tutte (Vienna Philharmonic Orchestra feat. conductor: Seiji Ozawa) (disc 29)) -> The Great Composers, Volume 54: The Magic Flute (highlights) / Cos? Fan Tutti (highlights) (14412ms) What is the full name of conductor Seiji? Russian Easter Overture -10.906995602995467 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track list, $x) -> (Scheherazade / Russian Easter Overture (Wiener Philharmoniker feat. conductor: Seiji Ozawa), Track list, Russian Easter Overture) -> Russian Easter Overture (14412ms) What is the full name of conductor Seiji? 1812" (Berliner Philharmoniker, feat. conductor: Seiji Ozawa) -10.914111271318175 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (1812" (Berliner Philharmoniker, feat. conductor: Seiji Ozawa), Release of, "1812" (Berliner Philharmoniker, feat. conductor: Seiji Ozawa)) -> 1812" (Berliner Philharmoniker, feat. conductor: Seiji Ozawa) (14412ms) What is the full name of conductor Seiji? Pictures at an Exhibition (Orch.:M. Ravel) / The young Person's Guide to the Orchestra, Op.34 (Seiji Ozawa conducting the Chicago Symphony) -10.921318440013081 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Pictures at an Exhibition (Orch.:M. Ravel) / The young Person's Guide to the Orchestra, Op.34 (Seiji Ozawa conducting the Chicago Symphony), Release of, Pictures at an Exhibition (orch.: M. Ravel) / The Young Person's Guide to the Orchestra, Op.34 (Chicago Symphony feat. conductor: Seiji Ozawa)) -> Pictures at an Exhibition (Orch.:M. Ravel) / The young Person's Guide to the Orchestra, Op.34 (Seiji Ozawa conducting the Chicago Symphony) (14733ms) What is the full name of conductor Seiji? Republic of Korea: ??? [Aegukga] -10.921811710222654 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release, conductor seijus) -> (Republic of Korea: ??? [Aegukga], Release, National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa)) -> Republic of Korea: ??? [Aegukga] (14734ms) What is the full name of conductor Seiji? Austria: Land der Berge, Land am Strame -10.92958030691372 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa), Tracks, Austria: Land der Berge, Land am Strame) -> Austria: Land der Berge, Land am Strame (14733ms) What is the full name of conductor Seiji? United Kingdom: God Save the Queen -10.92958030691372 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release, conductor seijus) -> (United Kingdom: God Save the Queen, Releases, National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa)) -> United Kingdom: God Save the Queen (14733ms) What is the full name of conductor Seiji? Ludwig van Beethoven -10.936727415869504 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, album, conductor seijus) -> (Ludwig van Beethoven, Albums, The Five Piano Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin)) -> Ludwig van Beethoven (14733ms) What is the full name of conductor Seiji? Requiem, Op. 5 (Boston Symphony Orchestra feat conductor: Seiji Ozawa) -10.940663998088882 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Requiem, Op. 5 (Boston Symphony Orchestra feat conductor: Seiji Ozawa), Release of, Requiem, Op. 5 (Boston Symphony Orchestra feat conductor: Seiji Ozawa)) -> Requiem, Op. 5 (Boston Symphony Orchestra feat conductor: Seiji Ozawa) (15060ms) What is the full name of conductor Seiji? Pavane pour une infante d?funte (feat. cor anglais: Charles Kavaloski) -10.943324747213302 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release, conductor seijus) -> (Pavane pour une infante d?funte (feat. cor anglais: Charles Kavaloski), Release, Bolero (Boston Symphony Orchestra feat. conductor Seiji Ozawa)) -> Pavane pour une infante d?funte (feat. cor anglais: Charles Kavaloski) (15061ms) What is the full name of conductor Seiji? Swan Lake (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 2) -10.95194890696643 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Swan Lake (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 2), Release of, Swan Lake (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Swan Lake (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 2) (15061ms) What is the full name of conductor Seiji? Pique Dame (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 1) -10.95194890696643 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Pique Dame (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 1), Release of, Pique Dame (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Pique Dame (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 1) (15061ms) What is the full name of conductor Seiji? The Four Seasons -10.95221655712712 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, know as, conductor seijus) -> (The Four Seasons, Also known as, The Four Seasons (Boston Symphony Orchestra feat. violin: Joseph Silverstein; feat. conductor: Seiji Ozawa)) -> The Four Seasons (15061ms) What is the full name of conductor Seiji? The Nutcracker / Sleeping Beauty -10.959985153818186 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, know as, conductor seijus) -> (The Nutcracker / Sleeping Beauty, Also known as, The Nutcracker / Sleeping Beauty (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 1)) -> The Nutcracker / Sleeping Beauty (15284ms) What is the full name of conductor Seiji? Liechtenstein: Oben am jungen Rhein -10.959985153818186 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track list, $x) -> (National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa), Track list, Liechtenstein: Oben am jungen Rhein) -> Liechtenstein: Oben am jungen Rhein (15284ms) What is the full name of conductor Seiji? Former Yugoslav Republic of Macedonia: ????? ??? ?????????? [Denes nad Makedonija] -10.96038681103347 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa), Tracks, Former Yugoslav Republic of Macedonia: ????? ??? ?????????? [Denes nad Makedonija]) -> Former Yugoslav Republic of Macedonia: ????? ??? ?????????? [Denes nad Makedonija] (15283ms) What is the full name of conductor Seiji? Pique Dame (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 3) -10.962159062617546 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Pique Dame (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 1), Release of, Pique Dame (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 3)) -> Pique Dame (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 3) (15283ms) What is the full name of conductor Seiji? Symphony No. 4 / Capriccio Italien (Berliner Philharmoniker feat. conductor: Seiji Ozawa) -10.962159062617546 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Symphony No. 4 / Capriccio Italien (Berliner Philharmoniker feat. conductor: Seiji Ozawa), Release of, Symphony No. 4 / Capriccio Italien (Berliner Philharmoniker feat. conductor: Seiji Ozawa)) -> Symphony No. 4 / Capriccio Italien (Berliner Philharmoniker feat. conductor: Seiji Ozawa) (15427ms) What is the full name of conductor Seiji? Symphony No. 8 "Symphony of a Thousand" (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) -10.962159062617546 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Symphony No. 8 "Symphony of a Thousand" (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Release of, Symphony No. 8 "Symphony of a Thousand" (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Symphony No. 8 "Symphony of a Thousand" (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (15426ms) What is the full name of conductor Seiji? Symphony No. 5 / Egmont Overture (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) -10.962159062617546 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Symphony No. 5 / Egmont Overture (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Release of, Symphony No. 5 / Egmont Overture (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Symphony No. 5 / Egmont Overture (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (15427ms) What is the full name of conductor Seiji? Great Works for the Cello (feat. cello: Mstislav Rostropovich) -10.969926889728617 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, track, conductor seijus) -> (Great Works for the Cello (feat. cello: Mstislav Rostropovich), Tracks, Chant du Menestrel, for cello and orchestra, Op. 71 (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Great Works for the Cello (feat. cello: Mstislav Rostropovich) (15487ms) What is the full name of conductor Seiji? Angels of Ecstasy -10.969926889728617 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, track, conductor seijus) -> (Angels of Ecstasy, Tracks, Requiem in C minor, Op. 48 No. 4: Pie Jesu (Boston Symphony Orchestra feat. soprano: Barbara Bonney, conductor: Seiji Ozawa)) -> Angels of Ecstasy (15427ms) What is the full name of conductor Seiji? Les Contes d'Hoffmann (disc 1) -10.97144102230038 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Les Contes d'Hoffmann (disc 1), Release of, Les Contes d'Hoffmann (Orchestre National de France feat. conductor: Seiji Ozawa)) -> Les Contes d'Hoffmann (disc 1) (15487ms) What is the full name of conductor Seiji? Ravel: Orchestral Works (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 2) -10.97144102230038 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Ravel: Orchestral Works (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (Disc 1), Release of, Ravel: Orchestral Works (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 2)) -> Ravel: Orchestral Works (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 2) (15487ms) What is the full name of conductor Seiji? Ravel: Orchestral Works (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (Disc 1) -10.97144102230038 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Ravel: Orchestral Works (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (Disc 1), Release of, Ravel: Orchestral Works (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 2)) -> Ravel: Orchestral Works (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (Disc 1) (15487ms) What is the full name of conductor Seiji? Symphony No. 8 "Symphony of a Thousand" (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 2) -10.979915855054271 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Symphony No. 8 "Symphony of a Thousand" (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 2), Release of, Symphony No. 8 "Symphony of a Thousand" (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 2)) -> Symphony No. 8 "Symphony of a Thousand" (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 2) (15546ms) What is the full name of conductor Seiji? Symphony No. 8 "Symphony of a Thousand" (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 1) -10.979915855054271 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Symphony No. 8 "Symphony of a Thousand" (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 1), Release of, Symphony No. 8 "Symphony of a Thousand" (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 1)) -> Symphony No. 8 "Symphony of a Thousand" (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (disc 1) (15546ms) What is the full name of conductor Seiji? Piano Concerto No. 5 "Emperor" -10.987684451745338 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Piano Concerto No. 5 "Emperor", Release of, Piano Concerto No. 5 "Emperor" (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin)) -> Piano Concerto No. 5 "Emperor" (15605ms) What is the full name of conductor Seiji? Symphony No. 4 (Berlin Philharmonic Orchestra feat. conductor: Seiji Ozawa) -10.987684451745338 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Symphony No. 4 (Berlin Philharmonic Orchestra feat. conductor: Seiji Ozawa), Release of, Symphony No. 4 in F minor Op. 36 (Berlin Philharmonic Orchestra feat. conductor: Seiji Ozawa)) -> Symphony No. 4 (Berlin Philharmonic Orchestra feat. conductor: Seiji Ozawa) (15698ms) What is the full name of conductor Seiji? Piano Concerto Nos. 2, 4 (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin) -10.987684451745338 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Piano Concerto Nos. 2, 4 (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin), Release of, Piano Concerto Nos. 2, 4 (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin)) -> Piano Concerto Nos. 2, 4 (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin) (15605ms) What is the full name of conductor Seiji? Symphony No. 4 in F minor Op. 36 (Berlin Philharmonic Orchestra feat. conductor: Seiji Ozawa) -10.987684451745338 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Symphony No. 4 (Berlin Philharmonic Orchestra feat. conductor: Seiji Ozawa), Release of, Symphony No. 4 in F minor Op. 36 (Berlin Philharmonic Orchestra feat. conductor: Seiji Ozawa)) -> Symphony No. 4 in F minor Op. 36 (Berlin Philharmonic Orchestra feat. conductor: Seiji Ozawa) (15605ms) What is the full name of conductor Seiji? Piano Concertos Nos. 1, 2 (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Krystian Zimerman) -10.987684451745338 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Piano Concertos Nos. 1, 2 (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Krystian Zimerman), Release of, Piano Concertos Nos. 1, 2 (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Krystian Zimerman)) -> Piano Concertos Nos. 1, 2 (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Krystian Zimerman) (15605ms) What is the full name of conductor Seiji? Klavierkonzerte No. 1 / Klavierkonzerte No. 2 / Totentanz (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Krystian Zimmerman) -10.994831560701119 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Klavierkonzerte No. 1 / Klavierkonzerte No. 2 / Totentanz (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Krystian Zimmerman), Release of, Klavierkonzerte No. 1 / Klavierkonzerte No. 2 / Totentanz (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Krystian Zimmerman)) -> Klavierkonzerte No. 1 / Klavierkonzerte No. 2 / Totentanz (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Krystian Zimmerman) (15699ms) What is the full name of conductor Seiji? Scheherazade: The Young Prince and the Young Princess -10.995408942032762 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, recording, $x) -> (Suite Sinf?nica Scheherazade, Op. 35: III. Andantino quasi allegretto "El Pr?ncipe y la Princesa" (Orquesta Sinf?nica de Boston feat. conductor: Seiji Ozawa, violin: Joseph Silverstein), Recording, Scheherazade: The Young Prince and the Young Princess) -> Scheherazade: The Young Prince and the Young Princess (15698ms) What is the full name of conductor Seiji? Scheherazade: The Sea and Sindbad's Ship -11.012963244731171 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, recording, $x) -> (Suite Sinf?nica Scheherazade, Op. 35: I. Largo e maestoso - Lento - Allegro non troppo - Tranquillo "El mar y el barco de Simbad" (Orquesta Sinf?nica de Boston feat. conductor: Seiji Ozawa, violin: Joseph Silverstein), Recording, Scheherazade: The Sea and Sindbad's Ship) -> Scheherazade: The Sea and Sindbad's Ship (15757ms) What is the full name of conductor Seiji? Prokofiev: Symphonie concertante / Shostakovich: Concerto pour violincelle No. 1 (London Symphonie Orchestra, feat. conductor: Seiji Ozawa, violincello: Mstislav Rostropovich) -11.01320984087313 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Prokofiev: Symphonie concertante / Shostakovich: Concerto pour violincelle No. 1 (London Symphonie Orchestra, feat. conductor: Seiji Ozawa, violincello: Mstislav Rostropovich), Release of, Prokofiev: Symphonie concertante / Shostakovich: Concerto pour violincelle No. 1 (London Symphonie Orchestra, feat. conductor: Seiji Ozawa, violincello: Mstislav Rostropovich)) -> Prokofiev: Symphonie concertante / Shostakovich: Concerto pour violincelle No. 1 (London Symphonie Orchestra, feat. conductor: Seiji Ozawa, violincello: Mstislav Rostropovich) (15757ms) What is the full name of conductor Seiji? Piano Concerto No. 3 in C minor / "Choral" Fantasy (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin) -11.018490955865087 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Piano Concerto No. 3 in C minor / "Choral" Fantasy (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin), Release of, Piano Concerto No. 3 in C minor / "Choral" Fantasy (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin)) -> Piano Concerto No. 3 in C minor / "Choral" Fantasy (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin) (15823ms) What is the full name of conductor Seiji? Piano Concertos no. 2 & no. 3 -11.023419996524245 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Piano Concertos no. 2 & no. 3, Release of, Piano Concertos Nos. 2, 3 (New York Philharmonic feat. conductor: Leonard Bernstein, Seiji Ozawa, piano: Philippe Entremont, Andr? Watts)) -> Piano Concertos no. 2 & no. 3 (15823ms) What is the full name of conductor Seiji? Jacques Offenbach -11.023982219060722 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, album, conductor seijus) -> (Jacques Offenbach, Albums, Les Contes d'Hoffmann (Orchestre National de France feat. conductor: Seiji Ozawa)) -> Jacques Offenbach (17139ms) What is the full name of conductor Seiji? Dmitri Shostakovich -11.023982219060722 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, recording, $x) -> (Concerto for Cello and Orchestra No. 2, Op. 126: I. Largo (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Recorded by, Dmitri Shostakovich) -> Dmitri Shostakovich (17325ms) What is the full name of conductor Seiji? George Gershwin -11.023982219060722 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, track, conductor seijus) -> (George Gershwin, Tracks Recorded, An American in Paris (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa)) -> George Gershwin (17431ms) What is the full name of conductor Seiji? Violin Concertos -11.023982219060722 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, track, conductor seijus) -> (Violin Concertos, Track list, Violin Concerto in D: III. Allegro vivacissimo (Philharmonia Orchestra feat. conductor: Seiji Ozawa, violin: Vladimir Spivakov)) -> Violin Concertos (17272ms) What is the full name of conductor Seiji? Philippe Entremont -11.023982219060722 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (Piano Concertos Nos. 2, 3 (New York Philharmonic feat. conductor: Leonard Bernstein, Seiji Ozawa, piano: Philippe Entremont, Andr? Watts), Artist, Philippe Entremont) -> Philippe Entremont (17272ms) What is the full name of conductor Seiji? Andr? Watts -11.023982219060722 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, album, conductor seijus) -> (Andr? Watts, Albums, Piano Concertos Nos. 2, 3 (New York Philharmonic feat. conductor: Leonard Bernstein, Seiji Ozawa, piano: Philippe Entremont, Andr? Watts)) -> Andr? Watts (17272ms) What is the full name of conductor Seiji? Vladimir Spivakov -11.023982219060722 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (Violin Concerto Op. 35 / Capriccio Italien / Francesca da Rimini (Philharmonia Orchestra & Berliner Philharmoniker feat. violin: Vladimir Spivakov feat. conductor: Seiji Ozawa), Artist, Vladimir Spivakov) -> Vladimir Spivakov (17431ms) What is the full name of conductor Seiji? Rudolf Serkin -11.023982219060722 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, album, conductor seijus) -> (Rudolf Serkin, Albums, Piano Concerto No. 5 "Emperor" (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin)) -> Rudolf Serkin (17271ms) What is the full name of conductor Seiji? Franz Liszt -11.023982219060722 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (Klavierkonzerte No. 1 / Klavierkonzerte No. 2 / Totentanz (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Krystian Zimmerman), Artist, Franz Liszt) -> Franz Liszt (17031ms) What is the full name of conductor Seiji? Seiji Ozawa -11.023982219060722 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, album, conductor seijus) -> (Seiji Ozawa, Albums, Piano Concerto No. 5 "Emperor" (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Rudolf Serkin)) -> Seiji Ozawa (17379ms) What is the full name of conductor Seiji? Ottorino Respighi -11.023982219060722 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (Pini di Roma / Feste romane / Fontane di Roma (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Artist, Ottorino Respighi) -> Ottorino Respighi (16923ms) What is the full name of conductor Seiji? Olivier Messiaen -11.023982219060722 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (Saint Fran?ois d'Assise (Choeurs et Orchestre de l'Op?ra de Paris feat. conductor: Seiji Ozawa), Artist, Olivier Messiaen) -> Olivier Messiaen (16107ms) What is the full name of conductor Seiji? Sergei Rachmaninoff -11.023982219060722 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (Piano Concertos Nos. 1, 2 (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, piano: Krystian Zimerman), Artist, Sergei Rachmaninoff) -> Sergei Rachmaninoff (16661ms) What is the full name of conductor Seiji? Stabat Mater -11.023982219060722 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, recording, conductor seijus) -> (Stabat Mater, Recorded as album, Gloria / Stabat Mater (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Stabat Mater (15886ms) What is the full name of conductor Seiji? Richard Strauss -11.023982219060722 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (Don Quixote, Op. 35 (Boston Symphony Orchestra, Cello: Yo-Yo Ma, Viola: Burton Fine, feat conductor: Seiji Ozawa) / Die Liebe der Danae, Op. 83 (Toronto Symphony feat conductor: Andrew Davis), Artist, Richard Strauss) -> Richard Strauss (15886ms) What is the full name of conductor Seiji? Alexander Glazunov -11.023982219060722 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, track, conductor seijus) -> (Alexander Glazunov, Tracks Recorded, Chant du Menestrel, for cello and orchestra, Op. 71 (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Alexander Glazunov (17031ms) What is the full name of conductor Seiji? Emmanuel Chabrier -11.023982219060722 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, track, conductor seijus) -> (Emmanuel Chabrier, Tracks Recorded, Espa?a (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Emmanuel Chabrier (17139ms) What is the full name of conductor Seiji? Arthur Honegger -11.023982219060722 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (Jeanne d'Arc au b?cher (Ch?urs de Radio France & Orchestre National de France feat. conductor: Seiji Ozawa), Artist, Arthur Honegger) -> Arthur Honegger (16466ms) What is the full name of conductor Seiji? Andrzej Panufnik -11.023982219060722 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, album, conductor seijus) -> (Andrzej Panufnik, Albums, Panufnik: Sinfonia Votiva / Sessions: Concerto for Orchestra (Boston Symphony Orchestra feat. Conductor: Seiji Ozawa)) -> Andrzej Panufnik (16923ms) What is the full name of conductor Seiji? Leonard Bernstein -11.023982219060722 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, recording, $x) -> (West Side Story" Symphonic Dances: Prologue (Allegro moderato) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa), Recorded by, Leonard Bernstein) -> Leonard Bernstein (17431ms) What is the full name of conductor Seiji? Arnold Schoenberg -11.023982219060722 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (Gurrelieder (Boston Symphony Orchestra & Tanglewood Festival Chorus feat. conductor: Seiji Ozawa), Artist, Arnold Schoenberg) -> Arnold Schoenberg (17085ms) What is the full name of conductor Seiji? Francis Poulenc -11.023982219060722 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (Gloria (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Artist, Francis Poulenc) -> Francis Poulenc (17431ms) What is the full name of conductor Seiji? Viktoria Mullova -11.023982219060722 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (Sibelius, Tchaikovsky: Violin Concertos (Boston Symphony Orchestra feat. conductor: Seiji Ozawa, violin: Viktoria Mullova), Artist, Viktoria Mullova) -> Viktoria Mullova (16923ms) What is the full name of conductor Seiji? Georges Bizet -11.023982219060722 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, album, conductor seijus) -> (Georges Bizet, Albums, Carmen (Highlights) (Orchestre National de France feat. conductor: Seiji Ozawa, soprano: Jessye Norman)) -> Georges Bizet (17325ms) What is the full name of conductor Seiji? Piano Concertos. nos. 2 & 3 -11.028031034560234 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Piano Concertos. nos. 2 & 3, Release of, Piano Concertos Nos. 2, 3 (New York Philharmonic feat. conductor: Leonard Bernstein, Seiji Ozawa, piano: Philippe Entremont, Andr? Watts)) -> Piano Concertos. nos. 2 & 3 (17566ms) What is the full name of conductor Seiji? Violin Concerto Op. 35 / Capriccio Italien / Francesca da Rimini -11.028031034560234 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Violin Concerto Op. 35 / Capriccio Italien / Francesca da Rimini, Release of, Violin Concerto Op. 35 / Capriccio Italien / Francesca da Rimini (Philharmonia Orchestra & Berliner Philharmoniker feat. violin: Vladimir Spivakov feat. conductor: Seiji Ozawa)) -> Violin Concerto Op. 35 / Capriccio Italien / Francesca da Rimini (17566ms) What is the full name of conductor Seiji? Violin Concertos Nos. 1 & 2 / Violin Sonata No. 2 (feat. violin: David Oistrakh) -11.028031034560234 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (7 Symphonies / Lieutenant Kij? (Berliner Philharmoniker feat. conductor: Seiji Ozawa), Release of, Violin Concertos Nos. 1 & 2 / Violin Sonata No. 2 (feat. violin: David Oistrakh)) -> Violin Concertos Nos. 1 & 2 / Violin Sonata No. 2 (feat. violin: David Oistrakh) (17566ms) What is the full name of conductor Seiji? Don Quixote, Op. 35 (Boston Symphony Orchestra, Cello: Yo-Yo Ma, Viola: Burton Fine, feat conductor: Seiji Ozawa) / Die Liebe der Danae, Op. 83 (Toronto Symphony feat conductor: Andrew Davis) -11.043840307826478 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (Don Quixote, Op. 35 (Boston Symphony Orchestra, Cello: Yo-Yo Ma, Viola: Burton Fine, feat conductor: Seiji Ozawa) / Die Liebe der Danae, Op. 83 (Toronto Symphony feat conductor: Andrew Davis), Release of, Don Quixote, Op. 35 (Boston Symphony Orchestra, Cello: Yo-Yo Ma, Viola: Burton Fine, feat conductor: Seiji Ozawa) / Die Liebe der Danae, Op. 83 (Toronto Symphony feat conductor: Andrew Davis)) -> Don Quixote, Op. 35 (Boston Symphony Orchestra, Cello: Yo-Yo Ma, Viola: Burton Fine, feat conductor: Seiji Ozawa) / Die Liebe der Danae, Op. 83 (Toronto Symphony feat conductor: Andrew Davis) (17566ms) What is the full name of conductor Seiji? Shostakovich: Cello Concerto No. 2, Op. 126 / Tchaikovsky: Andante cantabile / Glazunov: Chant du m?nestrel (Boston Symphony Orchestra feat. conductor: Seiji Osawa, cello and Berliner Philharmoniker feat. conductor: Mstislav Rostropovich) -11.047243693043518 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release of, conductor seijus) -> (Shostakovich: Cello Concerto No. 2, Op. 126 / Tchaikovsky: Andante cantabile / Glazunov: Chant du m?nestrel (Boston Symphony Orchestra feat. conductor: Seiji Osawa, cello and Berliner Philharmoniker feat. conductor: Mstislav Rostropovich), Release of, Shostakovich: Cello Concerto No. 2, Op. 126 / Tchaikovsky: Andante cantabile / Glazunov: Chant du m?nestrel (Boston Symphony Orchestra feat. conductor: Seiji Osawa, cello and Berliner Philharmoniker feat. conductor: Mstislav Rostropovich)) -> Shostakovich: Cello Concerto No. 2, Op. 126 / Tchaikovsky: Andante cantabile / Glazunov: Chant du m?nestrel (Boston Symphony Orchestra feat. conductor: Seiji Osawa, cello and Berliner Philharmoniker feat. conductor: Mstislav Rostropovich) (17566ms) What is the full name of conductor Seiji? Symphonies: 250th Anniversary Edition (Royal Concertgebouw Orchestra, Amsterdam Baroque Orchestra, Scottish Chamber Orchestra) (disc 7: Symphonies Nos. 38, 39) -11.050463111492068 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release of, $x) -> (7 Symphonies / Lieutenant Kij? (Berliner Philharmoniker feat. conductor: Seiji Ozawa), Release of, Symphonies: 250th Anniversary Edition (Royal Concertgebouw Orchestra, Amsterdam Baroque Orchestra, Scottish Chamber Orchestra) (disc 7: Symphonies Nos. 38, 39)) -> Symphonies: 250th Anniversary Edition (Royal Concertgebouw Orchestra, Amsterdam Baroque Orchestra, Scottish Chamber Orchestra) (disc 7: Symphonies Nos. 38, 39) (17567ms) What is the full name of conductor Seiji? Orchestre National de France -11.057181781264296 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (Carmen (Orchestre National de France feat. conductor: Seiji Ozawa), Artist, Orchestre National de France) -> Orchestre National de France (17852ms) What is the full name of conductor Seiji? Australia: Advance Australia Fair -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release, conductor seijus) -> (Australia: Advance Australia Fair, Releases, National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa)) -> Australia: Advance Australia Fair (18477ms) What is the full name of conductor Seiji? Entr'acte -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (Carmen (Orchestre National de France feat. conductor: Seiji Ozawa), Tracks, Entr'acte) -> Entr'acte (18477ms) What is the full name of conductor Seiji? Yugoslavia: Hej Sloveni -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa), Tracks, Yugoslavia: Hej Sloveni) -> Yugoslavia: Hej Sloveni (18277ms) What is the full name of conductor Seiji? III. Cour d'amours: In trutina -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release, conductor seijus) -> (III. Cour d'amours: In trutina, Releases, Carmina Burana (Berliner Philharmoniker feat. conductor: Seiji Ozawa)) -> III. Cour d'amours: In trutina (18277ms) What is the full name of conductor Seiji? Swan Lake: Introduction. Moderato assai - Allegro non troppo - Tempo I -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (Swan Lake (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Tracks, Swan Lake: Introduction. Moderato assai - Allegro non troppo - Tempo I) -> Swan Lake: Introduction. Moderato assai - Allegro non troppo - Tempo I (18737ms) What is the full name of conductor Seiji? Rapsodie espagnole: IV. Feria: Assez anim? (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, recording, $x) -> (Rapsodie espagnole: IV. Feria: Assez anim? (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Recording, Rapsodie espagnole: IV. Feria: Assez anim? (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Rapsodie espagnole: IV. Feria: Assez anim? (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (17968ms) What is the full name of conductor Seiji? West Side Story" Symphonic Dances: (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa) -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, track, conductor seijus) -> (West Side Story" Symphonic Dances: (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa), Tracks, West Side Story" Symphonic Dances: (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa)) -> West Side Story" Symphonic Dances: (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa) (18477ms) What is the full name of conductor Seiji? III. Cour d'Amours: Si puer cum puellula -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release, conductor seijus) -> (III. Cour d'Amours: Si puer cum puellula, Releases, Carmina Burana (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> III. Cour d'Amours: Si puer cum puellula (18737ms) What is the full name of conductor Seiji? Norway: Ja, vi elsker dette landet -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa), Tracks, Norway: Ja, vi elsker dette landet) -> Norway: Ja, vi elsker dette landet (18793ms) What is the full name of conductor Seiji? Rapsodie Espagnole: III. Habanera. Assez lent et d?un rythme las -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, version, conductor seijus) -> (Rapsodie Espagnole: III. Habanera. Assez lent et d?un rythme las, Versions, Rapsodie espagnole: III. Habanera: Assez lent et d'un rythme las (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Rapsodie Espagnole: III. Habanera. Assez lent et d?un rythme las (17968ms) What is the full name of conductor Seiji? II. In Taberna: In taberna quando sumus -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (Carmina Burana (Berliner Philharmoniker feat. conductor: Seiji Ozawa), Tracks, II. In Taberna: In taberna quando sumus) -> II. In Taberna: In taberna quando sumus (18276ms) What is the full name of conductor Seiji? Panorama: ? la fran?aise -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release, $x) -> (Bol?ro (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Releases, Panorama: ? la fran?aise) -> Panorama: ? la fran?aise (18737ms) What is the full name of conductor Seiji? West Side Story: Symphonic Dances - Mambo -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, version, conductor seijus) -> (West Side Story: Symphonic Dances - Mambo, Versions, West Side Story" Symphonic Dances: Mambo (Presto) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa)) -> West Side Story: Symphonic Dances - Mambo (18022ms) What is the full name of conductor Seiji? Quaerens me -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (Requiem, Op. 5 (Boston Symphony Orchestra feat conductor: Seiji Ozawa), Tracks, Quaerens me) -> Quaerens me (18681ms) What is the full name of conductor Seiji? Bol?ro (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, recording, conductor seijus) -> (Bol?ro (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Recording, Bol?ro (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Bol?ro (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (18277ms) What is the full name of conductor Seiji? III. Cour d'amours: Veni, veni, venias -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (Carmina Burana (Berliner Philharmoniker feat. conductor: Seiji Ozawa), Tracks, III. Cour d'amours: Veni, veni, venias) -> III. Cour d'amours: Veni, veni, venias (18737ms) What is the full name of conductor Seiji? West Side Story: Symphonic Dances - Rumble -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, version, conductor seijus) -> (West Side Story: Symphonic Dances - Rumble, Versions, West Side Story" Symphonic Dances: Rumble (Molto allegro) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa)) -> West Side Story: Symphonic Dances - Rumble (18681ms) What is the full name of conductor Seiji? III. Cour d'Amours: In Trutina -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release, conductor seijus) -> (III. Cour d'Amours: In Trutina, Release, Carmina Burana (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> III. Cour d'Amours: In Trutina (18737ms) What is the full name of conductor Seiji? Espa?a (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, track, conductor seijus) -> (Espa?a (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Tracks, Espa?a (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Espa?a (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (18369ms) What is the full name of conductor Seiji? Pavane Pour Une Infante Defunte -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, version, conductor seijus) -> (Pavane Pour Une Infante Defunte, Versions, Pavane pour une infante d?funte (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Pavane Pour Une Infante Defunte (18075ms) What is the full name of conductor Seiji? An American in Paris (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa) -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, track, conductor seijus) -> (An American in Paris (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa), Tracks, An American in Paris (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa)) -> An American in Paris (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa) (18369ms) What is the full name of conductor Seiji? Felix Mendelssohn-Bartholdy -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, album, conductor seijus) -> (Felix Mendelssohn-Bartholdy, Albums, Ein Sommernachtstraum (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Felix Mendelssohn-Bartholdy (18369ms) What is the full name of conductor Seiji? II. In Taberna: Ego Sum Abbas -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (Carmina Burana (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Tracks, II. In Taberna: Ego Sum Abbas) -> II. In Taberna: Ego Sum Abbas (18022ms) What is the full name of conductor Seiji? Denmark: Kong Kristian -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa), Tracks, Denmark: Kong Kristian) -> Denmark: Kong Kristian (18277ms) What is the full name of conductor Seiji? Uf Dem Anger: Reie; Swaz Hie Gat Umbe; Chume, Chum, Geselle Min -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (Carmina Burana (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Tracks, Uf Dem Anger: Reie; Swaz Hie Gat Umbe; Chume, Chum, Geselle Min) -> Uf Dem Anger: Reie; Swaz Hie Gat Umbe; Chume, Chum, Geselle Min (17968ms) What is the full name of conductor Seiji? Panorama: Viva espa?a -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release, $x) -> (Espa?a (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Release, Panorama: Viva espa?a) -> Panorama: Viva espa?a (18737ms) What is the full name of conductor Seiji? III. Cour d'amours: Dies, nox et omnia -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (Carmina Burana (Berliner Philharmoniker feat. conductor: Seiji Ozawa), Tracks, III. Cour d'amours: Dies, nox et omnia) -> III. Cour d'amours: Dies, nox et omnia (17968ms) What is the full name of conductor Seiji? Gloria: V. Domine Deus, Agnus Dei -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release, conductor seijus) -> (Gloria: V. Domine Deus, Agnus Dei, Release, Gloria (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Gloria: V. Domine Deus, Agnus Dei (18422ms) What is the full name of conductor Seiji? Rapsodie Espagnole: IV. Feria. Assez anim? -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, version, conductor seijus) -> (Rapsodie Espagnole: IV. Feria. Assez anim?, Versions, Rapsodie espagnole: IV. Feria: Assez anim? (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Rapsodie Espagnole: IV. Feria. Assez anim? (18022ms) What is the full name of conductor Seiji? Poland: Mazurek D?browskiego -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa), Tracks, Poland: Mazurek D?browskiego) -> Poland: Mazurek D?browskiego (18794ms) What is the full name of conductor Seiji? West Side Story" Symphonic Dances: Prologue (Allegro moderato) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa) -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, recording, $x) -> (West Side Story" Symphonic Dances: Prologue (Allegro moderato) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa), Recording, West Side Story" Symphonic Dances: Prologue (Allegro moderato) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa)) -> West Side Story" Symphonic Dances: Prologue (Allegro moderato) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa) (18794ms) What is the full name of conductor Seiji? Pablo de Sarasate -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (Lalo: Symphonie Espagnole / Sarasate: Zigeunerweisen (Orchestre National de France feat. conductor: Seiji Ozawa, violin: Anne-Sophie Mutter), Artist, Pablo de Sarasate) -> Pablo de Sarasate (18477ms) What is the full name of conductor Seiji? West Side Story: Symphonic Dances- Finale -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, version, conductor seijus) -> (West Side Story: Symphonic Dances- Finale, Versions, West Side Story" Symphonic Dances: Finale (Adagio) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa)) -> West Side Story: Symphonic Dances- Finale (18022ms) What is the full name of conductor Seiji? Portugal: A Portuguesa -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release, conductor seijus) -> (Portugal: A Portuguesa, Release, National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa)) -> Portugal: A Portuguesa (18793ms) What is the full name of conductor Seiji? West Side Story" Symphonic Dances: Finale (Adagio) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa) -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, track, conductor seijus) -> (West Side Story" Symphonic Dances: Finale (Adagio) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa), Tracks, West Side Story" Symphonic Dances: Finale (Adagio) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa)) -> West Side Story" Symphonic Dances: Finale (Adagio) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa) (18074ms) What is the full name of conductor Seiji? Andorra: El Gran Carlemany -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa), Tracks, Andorra: El Gran Carlemany) -> Andorra: El Gran Carlemany (18022ms) What is the full name of conductor Seiji? Gloria: III. Domine Deus -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (Gloria (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Tracks, Gloria: III. Domine Deus) -> Gloria: III. Domine Deus (18681ms) What is the full name of conductor Seiji? Monaco: Hymne Mon?gasque -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa), Tracks, Monaco: Hymne Mon?gasque) -> Monaco: Hymne Mon?gasque (17914ms) What is the full name of conductor Seiji? Carl Orff -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, artist, $x) -> (Carmina Burana (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Artist, Carl Orff) -> Carl Orff (18277ms) What is the full name of conductor Seiji? Armenia: ??? ???????? [Mer Hayrenik] -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release, conductor seijus) -> (Armenia: ??? ???????? [Mer Hayrenik], Release, National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa)) -> Armenia: ??? ???????? [Mer Hayrenik] (17914ms) What is the full name of conductor Seiji? Manuel de Falla -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, album, conductor seijus) -> (Manuel de Falla, Albums, El sombrero de tres picos / El amor brujo (Boston Symphony Orchestra, London Symphony Orchestra feat. conductor: Seiji Ozawa, Garc?a Navarro)) -> Manuel de Falla (18539ms) What is the full name of conductor Seiji? Nikolai Rimsky-Korsakov -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, album, conductor seijus) -> (Nikolai Rimsky-Korsakov, Albums, Scheherazade / Russian Easter Overture (Wiener Philharmoniker feat. conductor: Seiji Ozawa)) -> Nikolai Rimsky-Korsakov (18423ms) What is the full name of conductor Seiji? Rapsodie espagnole: III. Habanera: Assez lent et d'un rythme las (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, recording, $x) -> (Rapsodie espagnole: III. Habanera: Assez lent et d'un rythme las (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Recording, Rapsodie espagnole: III. Habanera: Assez lent et d'un rythme las (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Rapsodie espagnole: III. Habanera: Assez lent et d'un rythme las (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (18477ms) What is the full name of conductor Seiji? Uf Dem Anger: Tanz -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, release, conductor seijus) -> (Uf Dem Anger: Tanz, Releases, Carmina Burana (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Uf Dem Anger: Tanz (18793ms) What is the full name of conductor Seiji? West Side Story" Symphonic Dances: "Somewhere" (Adagio) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa) -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, recording, conductor seijus) -> (West Side Story" Symphonic Dances: "Somewhere" (Adagio) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa), Recording, West Side Story" Symphonic Dances: "Somewhere" (Adagio) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa)) -> West Side Story" Symphonic Dances: "Somewhere" (Adagio) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa) (18477ms) What is the full name of conductor Seiji? Pavane pour une infante d?funte (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, recording, conductor seijus) -> (Pavane pour une infante d?funte (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Recording, Pavane pour une infante d?funte (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Pavane pour une infante d?funte (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (18422ms) What is the full name of conductor Seiji? Moldova: Limba Noastr? -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa), Tracks, Moldova: Limba Noastr?) -> Moldova: Limba Noastr? (18737ms) What is the full name of conductor Seiji? Rapsodie espagnole: I. Pr?lude ? la nuit: Tr? mod?r? (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, track, conductor seijus) -> (Rapsodie espagnole: I. Pr?lude ? la nuit: Tr? mod?r? (Boston Symphony Orchestra feat. conductor: Seiji Ozawa), Tracks, Rapsodie espagnole: I. Pr?lude ? la nuit: Tr? mod?r? (Boston Symphony Orchestra feat. conductor: Seiji Ozawa)) -> Rapsodie espagnole: I. Pr?lude ? la nuit: Tr? mod?r? (Boston Symphony Orchestra feat. conductor: Seiji Ozawa) (18075ms) What is the full name of conductor Seiji? West Side Story" Symphonic Dances: Rumble (Molto allegro) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa) -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, track, conductor seijus) -> (West Side Story" Symphonic Dances: Rumble (Molto allegro) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa), Tracks, West Side Story" Symphonic Dances: Rumble (Molto allegro) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa)) -> West Side Story" Symphonic Dances: Rumble (Molto allegro) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa) (18681ms) What is the full name of conductor Seiji? Netherlands: Wilhelmus van Nassouwe -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (National Anthems (New Japan Philharmonic Orchestra feat. conductor: Seiji Ozawa), Tracks, Netherlands: Wilhelmus van Nassouwe) -> Netherlands: Wilhelmus van Nassouwe (18539ms) What is the full name of conductor Seiji? Johann Sebastian Bach -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: ($x, album, conductor seijus) -> (Johann Sebastian Bach, Albums, Matth?us Passion (Saito Kinen Orchestra, feat. conductor: Seiji Ozawa)) -> Johann Sebastian Bach (18022ms) What is the full name of conductor Seiji? III. Cour d'amours: Stetit puella -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, track, $x) -> (Carmina Burana (Berliner Philharmoniker feat. conductor: Seiji Ozawa), Tracks, III. Cour d'amours: Stetit puella) -> III. Cour d'amours: Stetit puella (17968ms) What is the full name of conductor Seiji? Music from America -11.108258030808258 What is the full name of conductor Seiji? -> what be the full name of [ conductor seijus ] ? -> what be conductor seijus s official name ? -> $x: (conductor seijus, official name, $x) -> $x: (conductor seijus, release, $x) -> (West Side Story" Symphonic Dances: Mambo (Presto) (San Francisco Symphonic Orchestra feat. conductor: Seiji Ozawa), Release, Music from America) -> Music from America (18793ms) What is ETA in Spain? non-islamic terror group -10.509915444112002 What is ETA in Spain? -> what be [ eta ] in spain ? -> what be spain eta ? -> $x: (spain eta, instance of, $x) -> (ETA in Spain, Instance Of, non-islamic terror group) -> non-islamic terror group (16634ms) What is ETA in Spain? terrorist group -10.703449575238603 What is ETA in Spain? -> what be [ eta ] in spain ? -> what be spain eta ? -> $x: (spain eta, instance of, $x) -> (ETA in Spain, Instance Of, terrorist group) -> terrorist group (16634ms) What is ETA in Spain? terrorist organization -10.789115899230051 What is ETA in Spain? -> what be [ eta ] in spain ? -> what be spain eta ? -> $x: (spain eta, instance of, $x) -> (ETA in Spain, Instance Of, terrorist organization) -> terrorist organization (16634ms) What is ETA in Spain? 24 hours -11.186939719723522 What is ETA in Spain? -> what be [ eta ] in spain ? -> what be eta treat ? -> $x: (eta, treat, $x) -> $x: (eta, should advise, $x) -> (Eta, should be advised, 24 hours) -> 24 hours (18062ms) What is ETA in Spain? a public meeting -11.428606041826022 What is ETA in Spain? -> what be [ eta ] in spain ? -> what be eta speak ? -> $x: (eta, speak, $x) -> (ETA. Bishop Belo, spoke at, a public meeting) -> a public meeting (17932ms) What is ETA in Spain? terrorist -12.972553333971451 What is ETA in Spain? -> what be [ eta ] in spain ? -> what be spain eta ? -> $x: (spain eta, instance of, $x) -> (ETA in Spain, Instance Of, terrorist) -> terrorist (16789ms) What is ETA in Spain? group -13.149594614844341 What is ETA in Spain? -> what be [ eta ] in spain ? -> what be spain eta ? -> $x: (spain eta, instance of, $x) -> (Basque separatist group ETA in Spain, Instance Of, group) -> group (16789ms) What is ETA in Spain? health and safety issues -13.18812810885992 What is ETA in Spain? -> what be [ eta ] in spain ? -> what be eta speak ? -> $x: (eta, speak, $x) -> $x: (eta, pay attention, $x) -> (ETA, paid particular attention to, health and safety issues) -> health and safety issues (19015ms) What is ETA in Spain? 1981 -13.322480901001867 What is ETA in Spain? -> what be [ eta ] in spain ? -> what be eta treat ? -> $x: (eta, treat, $x) -> $x: (eta, torture, $x) -> (ETA member Jos? Arregui, was tortured there in, 1981) -> 1981 (17611ms) What is ETA in Spain? the documentary film -14.14630056203763 What is ETA in Spain? -> what be [ eta ] in spain ? -> what be eta treat ? -> $x: (eta, treat, $x) -> $x: (eta, to relate to, $x) -> (ETA, relates to, the documentary film) -> the documentary film (17611ms) What is ETA in Spain? the club -14.218103904543668 What is ETA in Spain? -> what be [ eta ] in spain ? -> what be eta treat ? -> $x: (eta, treat, $x) -> $x: (eta, to relate to, $x) -> (ETA, are closely related to, the club) -> the club (17611ms) What is ETA in Spain? the communication -14.678841075945094 What is ETA in Spain? -> what be [ eta ] in spain ? -> what be eta treat ? -> $x: (eta, treat, $x) -> $x: (eta, to relate to, $x) -> (ETA, analyzed data related to, the communication) -> the communication (17611ms) What is leukemia? Hibakusha -7.171076249543963 What is leukemia? -> $x: (leukemia, instance of, $x) -> $x: ($x, include cause of death, leukemia) -> (Hibakusha, Includes causes of death, Leukemia) -> Hibakusha (6810ms) What is leukemia? Cancer -7.171076249543963 What is leukemia? -> $x: (leukemia, instance of, $x) -> $x: ($x, include cause of death, leukemia) -> (Cancer, Includes causes of death, Chronic myelogenous leukemia) -> Cancer (6844ms) What is leukemia? childhood Cancer -7.736389498645245 What is leukemia? -> $x: (leukemia, instance of, $x) -> $x: (leukemia, be the type of, $x) -> (Leukemia, is the most common type of, childhood Cancer) -> childhood Cancer (6739ms) What is leukemia? Leukemia -7.789974869897292 What is leukemia? -> $x: (leukemia, instance of, $x) -> $x: (leukemia, be the type of, $x) -> (Acute Myeloid Leukemia, is the type of, Leukemia) -> Leukemia (6739ms) What is leukemia? childhood cancer -8.274113060584316 What is leukemia? -> $x: (leukemia, instance of, $x) -> $x: (leukemia, be the type of, $x) -> (Leukemia, is the type of, childhood cancer) -> childhood cancer (6739ms) What is leukemia? blood cancer -8.350651757540396 What is leukemia? -> $x: (leukemia, instance of, $x) -> $x: (leukemia, be the type of, $x) -> (G8 Countries Leukemia, is the type of, blood cancer) -> blood cancer (6739ms) What is leukemia? malignant disease -8.534636818037361 What is leukemia? -> $x: (leukemia, instance of, $x) -> $x: (leukemia, be the most common form of, $x) -> (Leukemia, is the most common form of, malignant disease) -> malignant disease (6680ms) What is leukemia? a pigment -8.584412136079962 What is leukemia? -> $x: (leukemia, instance of, $x) -> $x: ($x, drug, leukemia) -> (a pigment, is a potential drug for treating, leukemia) -> a pigment (6026ms) What is leukemia? The French researchers -9.08222961344675 What is leukemia? -> $x: (leukemia, instance of, $x) -> $x: ($x, drug, leukemia) -> (The French researchers, gave the drug to, 133 leukemia patients) -> The French researchers (6026ms) What is leukemia? cancer treatment -9.120962098350146 What is leukemia? -> $x: (leukemia, instance of, $x) -> $x: ($x, drug, leukemia) -> (cancer treatment, uses drugs to kill, leukemia cells) -> cancer treatment (6026ms) What is leukemia? cancer -9.905718758776164 What is leukemia? -> $x: (leukemia, instance of, $x) -> $x: (leukemia, be the type of, $x) -> (Acute lymphoblastic leukemia, is the most common type of, cancer) -> cancer (6739ms) What is leukemia? leukemia -9.980104518717337 What is leukemia? -> $x: (leukemia, instance of, $x) -> $x: (leukemia, be the most common form of, $x) -> (nonlymphoid leukemia, is the most common form of, leukemia) -> leukemia (6773ms) What is leukemia? the formation -10.14759847163785 What is leukemia? -> $x: (leukemia, instance of, $x) -> $x: (leukemia, be a by, $x) -> (825 Leukemia, is a disease characterized by, the formation) -> the formation (6026ms) What is leukemia? the appearance -10.162550349268969 What is leukemia? -> $x: (leukemia, instance of, $x) -> $x: (leukemia, be a by, $x) -> (Leukemia, is a disease characterized by, the appearance) -> the appearance (6026ms) What is leukemia? prevention -10.68898197283437 What is leukemia? -> $x: (leukemia, instance of, $x) -> $x: (leukemia, be the best form of, $x) -> (feline leukemia virus, is probably the best form of, prevention) -> prevention (6845ms) What is leukemia? the behavior -11.039158543166455 What is leukemia? -> $x: (leukemia, instance of, $x) -> $x: ($x, drug, leukemia) -> (the behavior, develop new drugs against, leukemia stem cells) -> the behavior (6026ms) What is leukemia? growth hormones -11.355922819310866 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (growth hormones, are known to be affected by, leukemia treatment) -> growth hormones (7148ms) What is leukemia? CLL -11.398256818337847 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (CLL, is known as, ?hairy-cell leukemia?) -> CLL (7148ms) What is leukemia? blood cells -11.4657219116857 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (blood cells, are known as, leukemias) -> blood cells (7149ms) What is leukemia? Several chronic leukemia viruses -11.580689589012787 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (Several chronic leukemia viruses, are known to induce, leukemia) -> Several chronic leukemia viruses (7148ms) What is leukemia? Lif receptor -11.61397968483757 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (Lif receptor, Also known as, Leukemia inhibitory factor receptor) -> Lif receptor (8636ms) What is leukemia? Acute myeloid leukemia -11.62127629191528 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (Acute myeloid leukemia, Also known as, AML leukemia) -> Acute myeloid leukemia (8635ms) What is leukemia? Chronic myelogenous leukemia -11.62127629191528 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (Chronic myelogenous leukemia, Also known as, Chronic myeloid leukemia) -> Chronic myelogenous leukemia (8635ms) What is leukemia? Acute lymphoblastic leukemia -11.62127629191528 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (Acute lymphoblastic leukemia, Also known as, Acute lymphocytic leukemia) -> Acute lymphoblastic leukemia (8716ms) What is leukemia? Acute promyelocytic leukemia -11.62127629191528 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (Acute promyelocytic leukemia, Also known as, acute progranulocytic leukemia) -> Acute promyelocytic leukemia (8635ms) What is leukemia? Juvenile myelomonocytic leukemia -11.62127629191528 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (Juvenile myelomonocytic leukemia, Also known as, Juvenile Chronic Myeloid Leukemia) -> Juvenile myelomonocytic leukemia (8716ms) What is leukemia? Promyelocytic Leukemia -11.659218648719365 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (Promyelocytic Leukemia, Also known as, promyelocytic leukemia, inducer of) -> Promyelocytic Leukemia (8717ms) What is leukemia? Chronic Leukemia -11.659218648719365 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (Chronic Leukemia, Also known as, Chronic leukemia) -> Chronic Leukemia (8716ms) What is leukemia? so little -11.703995305231599 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (so little, is known about, childhood leukemia) -> so little (7148ms) What is leukemia? B-cell chronic lymphocytic leukemia -11.743494460466904 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (B-cell chronic lymphocytic leukemia, Also known as, Lymphocytic leukemia) -> B-cell chronic lymphocytic leukemia (8732ms) What is leukemia? T-cell prolymphocytic leukemia -11.743494460466904 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (T-cell prolymphocytic leukemia, Also known as, T-cell lymphocytic leukemia) -> T-cell prolymphocytic leukemia (8732ms) What is leukemia? Leukemia & Lymphoma Society of Canada -11.743494460466904 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (Leukemia & Lymphoma Society of Canada, Also known as, Leukemia & Lymphoma Society Inc) -> Leukemia & Lymphoma Society of Canada (8877ms) What is leukemia? leukemia inhibitory factor receptor alpha -11.743494460466904 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (leukemia inhibitory factor receptor alpha, Also known as, leukemia inhibitory factor receptor) -> leukemia inhibitory factor receptor alpha (8731ms) What is leukemia? membrane metallo-endopeptidase (neutral endopeptidase, enkephalinase) -11.743494460466904 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (membrane metallo-endopeptidase (neutral endopeptidase, enkephalinase), Also known as, common acute lymphocytic leukemia antigen) -> membrane metallo-endopeptidase (neutral endopeptidase, enkephalinase) (8878ms) What is leukemia? Acute myeloblastic leukemia without maturation -11.743494460466904 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (Acute myeloblastic leukemia without maturation, Also known as, Acute myeloblastic leukemia) -> Acute myeloblastic leukemia without maturation (8716ms) What is leukemia? Refractory anemia with excess of blasts -11.743494460466904 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (Refractory anemia with excess of blasts, Also known as, Smoldering leukemia) -> Refractory anemia with excess of blasts (8877ms) What is leukemia? The Leukemia and Lymphoma Society -11.743494460466904 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (The Leukemia and Lymphoma Society, Also known as, Leukemia & Lymphoma Society Inc) -> The Leukemia and Lymphoma Society (8732ms) What is leukemia? Benzene-induced Leukemia Benzene -11.76757943658355 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (Benzene-induced Leukemia Benzene, is known to cause, leukemia) -> Benzene-induced Leukemia Benzene (7148ms) What is leukemia? Blood most cancers -11.774946103673559 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (Blood most cancers, is known as, leukemia) -> Blood most cancers (7161ms) What is leukemia? Benzene -11.835545254996493 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (Benzene, is known to cause, leukemia) -> Benzene (7161ms) What is leukemia? PCP -11.874821876619572 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (PCP, were, leukemia) -> PCP (11245ms) What is leukemia? Radioactive thorium -11.945176714253071 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (Radioactive thorium, is known to cause, leukemia) -> Radioactive thorium (7161ms) What is leukemia? Childhood leukemia -11.946704967581095 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (Childhood leukemia, Also known as, Juvenile Leukemia) -> Childhood leukemia (8877ms) What is leukemia? Lymphoid leukemia -11.946704967581095 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (Lymphoid leukemia, Also known as, Lymphocytic leukemia) -> Lymphoid leukemia (8877ms) What is leukemia? Col . Qadhafi -11.953241202067888 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (Col . Qadhafi, is also known to have had, leukemia) -> Col . Qadhafi (7162ms) What is leukemia? Chronic Lymphocytic Leukemia -11.969419868837514 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (Chronic Lymphocytic Leukemia, is, leukemia) -> Chronic Lymphocytic Leukemia (11245ms) What is leukemia? Acute Myelogenous Leukemia -11.969419868837514 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (Acute Myelogenous Leukemia, is, leukemia) -> Acute Myelogenous Leukemia (11245ms) What is leukemia? Abl -12.051411279146217 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (Abl, Also known as, Abelson murine leukemia oncogene) -> Abl (8877ms) What is leukemia? high concentrations -12.053128305907267 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (high concentrations, is known to cause, leukemia) -> high concentrations (7173ms) What is leukemia? acute lymphoblastic leukemia -12.057632880692479 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, be, $x) -> (leukemia, is, acute lymphoblastic leukemia) -> acute lymphoblastic leukemia (11245ms) What is leukemia? cytotoxic drugs -12.103428310851395 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (cytotoxic drugs, are known causes of, acute leukemia) -> cytotoxic drugs (7173ms) What is leukemia? Stem cell transplant -12.11932067994822 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (Stem cell transplant, is also the only known cure for, leukemia) -> Stem cell transplant (7173ms) What is leukemia? ARHGEF12 -12.13605192124764 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (ARHGEF12, Also known as, Leukemia-associated Rho GEF) -> ARHGEF12 (8892ms) What is leukemia? Rpn8 -12.13605192124764 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (Rpn8, Also known as, Moloney leukemia virus 34) -> Rpn8 (8908ms) What is leukemia? myeloid cell leukemia sequence 1 (BCL2-related) -12.13605192124764 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (myeloid cell leukemia sequence 1 (BCL2-related), Also known as, myeloid cell leukemia sequence 1) -> myeloid cell leukemia sequence 1 (BCL2-related) (8892ms) What is leukemia? MKL/myocardin-like 2 -12.13605192124764 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (MKL/myocardin-like 2, Also known as, megakaryoblastic leukemia 2 protein) -> MKL/myocardin-like 2 (8892ms) What is leukemia? ribosomal protein L34 -12.13605192124764 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (ribosomal protein L34, Also known as, leukemia-associated protein) -> ribosomal protein L34 (8907ms) What is leukemia? B-cell CLL/lymphoma 3 -12.13605192124764 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (B-cell CLL/lymphoma 3, Also known as, chronic lymphatic leukemia protein) -> B-cell CLL/lymphoma 3 (8892ms) What is leukemia? megakaryoblastic leukemia (translocation) 1 -12.13605192124764 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (megakaryoblastic leukemia (translocation) 1, Also known as, megakaryoblastic leukemia 1 protein) -> megakaryoblastic leukemia (translocation) 1 (8907ms) What is leukemia? CD7 molecule -12.13605192124764 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (CD7 molecule, Also known as, T-cell leukemia antigen) -> CD7 molecule (8907ms) What is leukemia? zinc finger and BTB domain containing 16 -12.13605192124764 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (zinc finger and BTB domain containing 16, Also known as, promyelocytic leukemia zinc finger protein) -> zinc finger and BTB domain containing 16 (8907ms) What is leukemia? interested Rosenberg -12.145407704906278 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (interested Rosenberg, was, leukemia) -> interested Rosenberg (11245ms) What is leukemia? 2. What -12.174771963499087 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (2. What, is, leukemia) -> 2. What (11245ms) What is leukemia? hepatitis B -12.211762106602071 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, be, $x) -> (leukemia, is, hepatitis B) -> hepatitis B (11245ms) What is leukemia? 75 years -12.213442645945547 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, be, $x) -> (leukemia, was, 75 years) -> 75 years (11245ms) What is leukemia? acute myeloid leukemia -12.268956171073897 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, be, $x) -> (leukemia, are, acute myeloid leukemia) -> acute myeloid leukemia (11270ms) What is leukemia? Naif -12.39396283954749 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (Naif, is known to suffer from, leukemia) -> Naif (7174ms) What is leukemia? bone cancer -12.423922555993464 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (bone cancer, is, leukemia) -> bone cancer (11270ms) What is leukemia? Lymphoma -12.435212811433704 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (Lymphoma, Also known as, Leukemia lymphoma) -> Lymphoma (8921ms) What is leukemia? non-disease physiological condition -12.500011994017301 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, be, $x) -> (Leukemia, is a, non-disease physiological condition) -> non-disease physiological condition (11270ms) What is leukemia? 30 % -12.554791050808898 What is leukemia? -> what be [ leukemia ] ? -> what be the definition of leukemia ? -> $x: ($x, be the definition of, leukemia) -> (30 %, is the definition of, leukemia) -> 30 % (7589ms) What is leukemia? More About -12.564492415537538 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (More About, Is, Leukemia ?) -> More About (11270ms) What is leukemia? Acute Lymphocytic Leukemia -12.593644604335509 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (Acute Lymphocytic Leukemia, is, leukemia) -> Acute Lymphocytic Leukemia (11270ms) What is leukemia? Chronic Myelogenous Leukemia -12.61404572319946 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (Chronic Myelogenous Leukemia, is, leukemia) -> Chronic Myelogenous Leukemia (11270ms) What is leukemia? Gale Leukemia -12.614898909788863 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: ($x, edition, leukemia) -> (Gale Leukemia, Editions, Gale Leukemia) -> Gale Leukemia (15498ms) What is leukemia? Chicago -12.66150808397305 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (Chicago, is, leukemia) -> Chicago (11270ms) What is leukemia? an inspiration -12.693709119706913 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, be, $x) -> (Leukemia, are, an inspiration) -> an inspiration (11270ms) What is leukemia? Viagra -12.699528626243154 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (Viagra, are, leukemia) -> Viagra (11291ms) What is leukemia? Smoking -12.702352852239098 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (Smoking, is a known risk factor for, leukemia) -> Smoking (7173ms) What is leukemia? discussion/written assessment -12.717112084193566 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (discussion/written assessment, is, leukemia) -> discussion/written assessment (11291ms) What is leukemia? a poor prognostic sign -12.799904212823886 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, be, $x) -> (leukemia, is, a poor prognostic sign) -> a poor prognostic sign (11291ms) What is leukemia? Unspecified monocytic leukemia -12.821467036383638 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, include, $x) -> (Monocytic leukemia, Includes classifications, Unspecified monocytic leukemia) -> Unspecified monocytic leukemia (17213ms) What is leukemia? Unspecified lymphoid leukemia -12.821467036383638 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, include, $x) -> (Lymphoid leukemia, Includes classifications, Unspecified lymphoid leukemia) -> Unspecified lymphoid leukemia (17213ms) What is leukemia? Unspecified myeloid leukemia -12.821467036383638 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, include, $x) -> (Myeloid leukemia, Includes classifications, Unspecified myeloid leukemia) -> Unspecified myeloid leukemia (17097ms) What is leukemia? Acute monocytic leukemia -12.821467036383638 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, include, $x) -> (Monocytic leukemia, Includes classifications, Acute monocytic leukemia) -> Acute monocytic leukemia (17213ms) What is leukemia? Chronic monocytic leukemia -12.821467036383638 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, include, $x) -> (Monocytic leukemia, Includes Diseases, Chronic monocytic leukemia) -> Chronic monocytic leukemia (17097ms) What is leukemia? Others general types -12.843280324707369 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (Others general types, are, leukemia) -> Others general types (11291ms) What is leukemia? Leukemia Sourcebook -12.858240755830453 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition of, $x) -> (Leukemia Sourcebook: Basic Consumer Health Information About Adult and Childhood Leukemias (Health Reference Series), Edition Of, Leukemia Sourcebook) -> Leukemia Sourcebook (15680ms) What is leukemia? Martin Dunitz -12.858240755830453 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: ($x, edition, leukemia) -> (Martin Dunitz, Book editions published, Leukemia and Lymphoma Reviews 6 (Leukemia & Lymphoma Reviews Series)) -> Martin Dunitz (15681ms) What is leukemia? Human Leukemias -12.858240755830453 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: ($x, edition, leukemia) -> (Human Leukemias, Editions, Human Leukemias: Cytochemical and Ultrastructural Techniques in Diagnosis and Research (Developments in Oncology)) -> Human Leukemias (15497ms) What is leukemia? Leukemia Treatment -12.858240755830453 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition of, $x) -> (Leukemia Treatment, Edition Of, Leukemia Treatment) -> Leukemia Treatment (15681ms) What is leukemia? Acute Leukemia -12.859409393187724 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, include, $x) -> (Leukemia, Includes classifications, Acute Leukemia) -> Acute Leukemia (18026ms) What is leukemia? 70 -12.85961422468964 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, be, $x) -> (leukemia, is, 70) -> 70 (11291ms) What is leukemia? Key evidence-based links -12.87973130560443 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (Key evidence-based links, is, leukemia) -> Key evidence-based links (11291ms) What is leukemia? Normal and leukemic hematopoiesis -12.891761075173328 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (Normal and leukemic hematopoiesis, Are, leukemias) -> Normal and leukemic hematopoiesis (11291ms) What is leukemia? Chronic Leukemia in Remission -12.8926089553913 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, include, $x) -> (Chronic Leukemia, Includes classifications, Chronic Leukemia in Remission) -> Chronic Leukemia in Remission (18026ms) What is leukemia? Acute Leukemia in Remission -12.8926089553913 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, include, $x) -> (Acute Leukemia, Includes classifications, Acute Leukemia in Remission) -> Acute Leukemia in Remission (18026ms) What is leukemia? the U-M Exploratory Center -12.90816857581034 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, be, $x) -> (leukemia, is, the U-M Exploratory Center) -> the U-M Exploratory Center (11291ms) What is leukemia? a lot -12.930454858105332 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (a lot, is, leukemia) -> a lot (11356ms) What is leukemia? Paddington DC ? Love -12.931093170325365 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (Paddington DC ? Love, is, Leukemia) -> Paddington DC ? Love (11355ms) What is leukemia? Cancer and leukemia: an alternative view -12.942516567577991 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition, $x) -> (Cancer and leukemia, Editions, Cancer and leukemia: an alternative view) -> Cancer and leukemia: an alternative view (19169ms) What is leukemia? Chronic leukemia: approach to diagnosis -12.942516567577991 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition, $x) -> (Chronic leukemia, Editions, Chronic leukemia: approach to diagnosis) -> Chronic leukemia: approach to diagnosis (19123ms) What is leukemia? Leukemia diagnosis: a guide to the FAB classification -12.942516567577991 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: ($x, edition of, leukemia) -> (Leukemia diagnosis: a guide to the FAB classification, Edition Of, Leukemia diagnosis) -> Leukemia diagnosis: a guide to the FAB classification (18266ms) What is leukemia? Biological Response Modifiers-Leukemias and Lymphomas -12.942516567577991 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: ($x, edition, leukemia) -> (Biological Response Modifiers-Leukemias and Lymphomas, Editions, Biological Response Modifiers-Leukemias and Lymphomas (International Cancer Congress//Proceedings)) -> Biological Response Modifiers-Leukemias and Lymphomas (19123ms) What is leukemia? I'm Still Me, Coping with Leukemia -12.942516567577991 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: ($x, edition, leukemia) -> (I'm Still Me, Coping with Leukemia, Editions, I'm Still Me, Coping with Leukemia (Dr. Wellbook, 7)) -> I'm Still Me, Coping with Leukemia (16430ms) What is leukemia? Leukemia (Understanding Illness (Mankato, Minn.).) -12.942516567577991 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: ($x, edition of, leukemia) -> (Leukemia (Understanding Illness (Mankato, Minn.).), Edition Of, Leukemia (Understanding Illness) -> Leukemia (Understanding Illness (Mankato, Minn.).) (18266ms) What is leukemia? Monocytes, monocytosis, and monocytic leukemia -12.942516567577991 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition, $x) -> (Monocytes, monocytosis, and monocytic leukemia, Edition Of, Monocytes, monocytosis, and monocytic leukemia) -> Monocytes, monocytosis, and monocytic leukemia (19169ms) What is leukemia? Human T-Cell Leukemia Lymphoma Virus -12.942516567577991 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition, $x) -> (Human T-Cell Leukemia Lymphoma Virus, Editions, Human T-Cell Leukemia Lymphoma Virus) -> Human T-Cell Leukemia Lymphoma Virus (19029ms) What is leukemia? Cancer and leukemia -12.942516567577991 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition, $x) -> (Cancer and leukemia: an alternative view, Edition Of, Cancer and leukemia) -> Cancer and leukemia (19029ms) What is leukemia? Cell-virus interactions during retroviral infection -12.942516567577991 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition, $x) -> (Cell-virus interactions during retroviral infection : the role of mitosis in murine leukemia virus integration, Edition Of, Cell-virus interactions during retroviral infection) -> Cell-virus interactions during retroviral infection (18266ms) What is leukemia? Aspects of Leukemia Treatment With Special Reference to Drug Development: A special issue of the journal Hematology Reviews and Communications (Hematology Reviews and Communications,) -12.942516567577991 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: ($x, edition, leukemia) -> (Aspects of Leukemia Treatment With Special Reference to Drug Development: A special issue of the journal Hematology Reviews and Communications (Hematology Reviews and Communications,), Edition Of, Aspects of Leukemia Treatment With Special Reference to Drug Development) -> Aspects of Leukemia Treatment With Special Reference to Drug Development: A special issue of the journal Hematology Reviews and Communications (Hematology Reviews and Communications,) (19169ms) What is leukemia? Roentgenology of the Lymphomas and Leukemias -12.942516567577991 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition, $x) -> (Roentgenology of the Lymphomas and Leukemias: A Seminars in Roentgenology Reprint, July and October 1980, Edition Of, Roentgenology of the Lymphomas and Leukemias) -> Roentgenology of the Lymphomas and Leukemias (18215ms) What is leukemia? Leukemia, cytology and cytochemistry -12.942516567577991 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition, $x) -> (Leukemia, cytology and cytochemistry, Edition Of, Leukemia, cytology and cytochemistry) -> Leukemia, cytology and cytochemistry (18982ms) What is leukemia? Human T-cell Leukemia Vir (Current Topics in Microbiology and Immunology) -12.942516567577991 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition, $x) -> (Human T-cell Leukemia Vir, Editions, Human T-cell Leukemia Vir (Current Topics in Microbiology and Immunology)) -> Human T-cell Leukemia Vir (Current Topics in Microbiology and Immunology) (19169ms) What is leukemia? Vaccine Intervention Against Virus-Induced Tumors -12.942516567577991 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: ($x, edition, leukemia) -> (Vaccine Intervention Against Virus-Induced Tumors, Editions, Vaccine Intervention Against Virus-Induced Tumors (Leukemia and Lymphoma Research)) -> Vaccine Intervention Against Virus-Induced Tumors (18981ms) What is leukemia? Development, management and analysis of flow cytometry based cell signaling assays in a translational research environment to diagnose juvenile myelomonocytic leukemia -12.942516567577991 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition of, $x) -> (Development, management and analysis of flow cytometry based cell signaling assays in a translational research environment to diagnose juvenile myelomonocytic leukemia, Edition Of, Development, management and analysis of flow cytometry based cell signaling assays in a translational research environment to diagnose juvenile myelomonocytic leukemia) -> Development, management and analysis of flow cytometry based cell signaling assays in a translational research environment to diagnose juvenile myelomonocytic leukemia (19123ms) What is leukemia? Acute leukemia: difficult, controversial, automated analysis -12.942516567577991 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: ($x, edition, leukemia) -> (Acute leukemia: difficult, controversial, automated analysis, Edition Of, Acute leukemia) -> Acute leukemia: difficult, controversial, automated analysis (19375ms) What is leukemia? Acute leukemia: approach to diagnosis -12.942516567577991 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: ($x, edition, leukemia) -> (Acute leukemia: approach to diagnosis, Edition Of, Acute leukemia) -> Acute leukemia: approach to diagnosis (19169ms) What is leukemia? Biological Response Modifiers-Leukemias and Lymphomas (International Cancer Congress//Proceedings) -12.942516567577991 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: ($x, edition of, leukemia) -> (Biological Response Modifiers-Leukemias and Lymphomas (International Cancer Congress//Proceedings), Edition Of, Biological Response Modifiers-Leukemias and Lymphomas) -> Biological Response Modifiers-Leukemias and Lymphomas (International Cancer Congress//Proceedings) (19375ms) What is leukemia? Leukemia (Health Alert -12.942516567577991 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: ($x, edition, leukemia) -> (Leukemia (Health Alert, Editions, Leukemia (Health Alert (Benchmark Books).)) -> Leukemia (Health Alert (18982ms) What is leukemia? Leukemia (Understanding Illness -12.942516567577991 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition of, $x) -> (Leukemia (Understanding Illness (Mankato, Minn.).), Edition Of, Leukemia (Understanding Illness) -> Leukemia (Understanding Illness (19029ms) What is leukemia? Protein microarray technology for profiling signaling patwhays [sic] -12.942516567577991 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition, $x) -> (Protein microarray technology for profiling signaling patwhays [sic] : insights into pro-oncogenic notch signaling in T cell acute lymphoblastic leukemia, Edition Of, Protein microarray technology for profiling signaling patwhays [sic]) -> Protein microarray technology for profiling signaling patwhays [sic] (18314ms) What is leukemia? Leukemia (Life Sciences Research Reports) -12.942516567577991 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition, $x) -> (Leukemia, Editions, Leukemia (Life Sciences Research Reports)) -> Leukemia (Life Sciences Research Reports) (18216ms) What is leukemia? Leukemia Sourcebook: Basic Consumer Health Information About Adult and Childhood Leukemias (Health Reference Series) -12.942516567577991 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition, $x) -> (Leukemia Sourcebook, Editions, Leukemia Sourcebook: Basic Consumer Health Information About Adult and Childhood Leukemias (Health Reference Series)) -> Leukemia Sourcebook: Basic Consumer Health Information About Adult and Childhood Leukemias (Health Reference Series) (19375ms) What is leukemia? A geneticist studies leukemia -12.942516567577991 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition, $x) -> (A geneticist studies leukemia, Editions, A geneticist studies leukemia) -> A geneticist studies leukemia (19123ms) What is leukemia? Human T-cell Leukemia Vir -12.942516567577991 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition, $x) -> (Human T-cell Leukemia Vir (Current Topics in Microbiology and Immunology), Edition Of, Human T-cell Leukemia Vir) -> Human T-cell Leukemia Vir (18266ms) What is leukemia? Coping With Leukemia -12.942516567577991 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition of, $x) -> (Coping With Leukemia (Coping), Edition Of, Coping With Leukemia) -> Coping With Leukemia (18938ms) What is leukemia? Aspects of Leukemia Treatment With Special Reference to Drug Development -12.942516567577991 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition, $x) -> (Aspects of Leukemia Treatment With Special Reference to Drug Development: A special issue of the journal Hematology Reviews and Communications (Hematology Reviews and Communications,), Edition Of, Aspects of Leukemia Treatment With Special Reference to Drug Development) -> Aspects of Leukemia Treatment With Special Reference to Drug Development (18982ms) What is leukemia? Leukemia (Health Alert (Benchmark Books).) -12.942516567577991 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition, $x) -> (Leukemia (Health Alert, Editions, Leukemia (Health Alert (Benchmark Books).)) -> Leukemia (Health Alert (Benchmark Books).) (19375ms) What is leukemia? Structure and function of the Moloney murine leukemia virus integration complex -12.942516567577991 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition of, $x) -> (Structure and function of the Moloney murine leukemia virus integration complex, Edition Of, Structure and function of the Moloney murine leukemia virus integration complex) -> Structure and function of the Moloney murine leukemia virus integration complex (19375ms) What is leukemia? Coping With Leukemia (Coping) -12.942516567577991 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: ($x, edition, leukemia) -> (Coping With Leukemia (Coping), Edition Of, Coping With Leukemia) -> Coping With Leukemia (Coping) (19375ms) What is leukemia? The David arcane -12.942516567577991 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition of, $x) -> (The David arcane: [elegy on the death of David Hirschman, fotographer, musician, and poet, taken by leukemia at 25, March 2, 1982], Edition Of, The David arcane) -> The David arcane (19169ms) What is leukemia? No safe place -12.942516567577991 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition of, $x) -> (No safe place : toxic waste, leukemia, and community action, Edition Of, No safe place) -> No safe place (19029ms) What is leukemia? Childhood leukemia: a guide for families, friends & caregivers -12.942516567577991 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: ($x, edition of, leukemia) -> (Childhood leukemia: a guide for families, friends & caregivers, Edition Of, Childhood leukemia) -> Childhood leukemia: a guide for families, friends & caregivers (19169ms) What is leukemia? Human Leukemias: Cytochemical and Ultrastructural Techniques in Diagnosis and Research (Developments in Oncology) -12.942516567577991 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition, $x) -> (Human Leukemias, Editions, Human Leukemias: Cytochemical and Ultrastructural Techniques in Diagnosis and Research (Developments in Oncology)) -> Human Leukemias: Cytochemical and Ultrastructural Techniques in Diagnosis and Research (Developments in Oncology) (19375ms) What is leukemia? Recent Advances in Leukemia and Lymphoma -12.942516567577991 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition, $x) -> (Recent Advances in Leukemia and Lymphoma (Ucla Symposia on Molecular and Cellular Biology, New Ser, Vol 61), Edition Of, Recent Advances in Leukemia and Lymphoma) -> Recent Advances in Leukemia and Lymphoma (19123ms) What is leukemia? Epidemiology of Leukemia and Lymphoma -12.942516567577991 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: (leukemia, edition of, $x) -> (Epidemiology of Leukemia and Lymphoma: Report of the Leukemia Research Fund International Workshop, Oxford, Uk, September 1984, Edition Of, Epidemiology of Leukemia and Lymphoma) -> Epidemiology of Leukemia and Lymphoma (19123ms) What is leukemia? Molecular characterization of RadLV (Radiation Leukemia Virus) -12.942516567577991 What is leukemia? -> what be [ leukemia ] ? -> what be the expansion of leukemia ? -> $x: (leukemia, expansion, $x) -> $x: ($x, edition of, leukemia) -> (Molecular characterization of RadLV (Radiation Leukemia Virus), Edition Of, Molecular characterization of RadLV (Radiation Leukemia Virus)) -> Molecular characterization of RadLV (Radiation Leukemia Virus) (19375ms) What is leukemia? Causes & Treatment Search -12.971830839926014 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (Causes & Treatment Search, Is, Leukemia) -> Causes & Treatment Search (11355ms) What is leukemia? increased lymphocytes -12.987957257555209 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (increased lymphocytes, is, leukemia) -> increased lymphocytes (11355ms) What is leukemia? such radiation -12.99945183887635 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (such radiation, are, leukemias) -> such radiation (11355ms) What is leukemia? underlying disease -12.99945183887635 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (underlying disease, is, leukemia) -> underlying disease (11356ms) What is leukemia? Leukemias -13.00828634345732 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (Leukemias, is, leukemia) -> Leukemias (11355ms) What is leukemia? ACUTE LEUKEMIA TREATMENT INFORMATION -13.011476765841259 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (ACUTE LEUKEMIA TREATMENT INFORMATION, is, Leukemia) -> ACUTE LEUKEMIA TREATMENT INFORMATION (11355ms) What is leukemia? Malaysia | Beacon Hospital -13.019969737103477 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (Malaysia | Beacon Hospital, Is, Leukemia) -> Malaysia | Beacon Hospital (14316ms) What is leukemia? 527 -13.025412089828924 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (527, were, leukemias) -> 527 (14316ms) What is leukemia? blood tumor -13.064982211311602 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (blood tumor, is, Leukemia) -> blood tumor (14316ms) What is leukemia? Dr. Mauro?s clinical focus -13.070860981703909 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (Dr. Mauro?s clinical focus, is, leukemia) -> Dr. Mauro?s clinical focus (14316ms) What is leukemia? solvent exposure -13.104735958993766 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (solvent exposure, are, leukemia) -> solvent exposure (14316ms) What is leukemia? pediatric cancer -13.104735958993766 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (pediatric cancer, are, leukemia) -> pediatric cancer (14316ms) What is leukemia? 400 % -13.113533974244437 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, be, $x) -> (leukemia, is, 400 %) -> 400 % (14316ms) What is leukemia? childhood cancers -13.143615206805674 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (childhood cancers, are, leukemias) -> childhood cancers (14401ms) What is leukemia? pesticide exposure -13.176100823795899 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (pesticide exposure, are, leukemia) -> pesticide exposure (14400ms) What is leukemia? 99 % sure -13.194414793617808 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (99 % sure, is, leukemia) -> 99 % sure (14400ms) What is leukemia? 0 to 14 years -13.26398198521737 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (0 to 14 years, are, leukemia) -> 0 to 14 years (14400ms) What is leukemia? a cancer originating -13.345926814475838 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, be, $x) -> (Leukemia, is, a cancer originating) -> a cancer originating (14400ms) What is leukemia? PCI -13.346739176714237 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, do, $x) -> (leukemia treatment, do have a component of, PCI) -> PCI (14400ms) What is leukemia? non-users -13.34723063206954 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: (leukemia, be, $x) -> (leukemia, were, non-users) -> non-users (14401ms) What is leukemia? Seattle WA 98105 -13.348757164703915 What is leukemia? -> what be [ leukemia ] ? -> what be the mening of leukemia ? -> $x: (leukemia, mening, $x) -> $x: ($x, be, leukemia) -> (Seattle WA 98105, Is, Leukemia) -> Seattle WA 98105 (14400ms) What is leukemia? basophils -13.56067885719027 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (basophils, is known as, myelogenous leukemia) -> basophils (7185ms) What is leukemia? benzene -13.690618988669804 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (benzene, has been known to cause, leukemia) -> benzene (7185ms) What is leukemia? the human system -13.740301377367652 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (the human system, is known to cause, leukemia) -> the human system (7185ms) What is leukemia? The virus XMRV -13.740380879364352 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (The virus XMRV, was previously known to cause, leukemia) -> The virus XMRV (7196ms) What is leukemia? aging -13.87645643448544 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (aging, is even known to treat, leukemia cells) -> aging (7196ms) What is leukemia? question -14.24700784824979 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (question, is known as, acute myeloid leukemia) -> question (7196ms) What is leukemia? soon their organization -14.254130788038083 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (soon their organization, became known as, the Leukemia Society) -> soon their organization (9068ms) What is leukemia? handphones -14.482112992048933 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> (handphones, is known to cause, cancer and leukemia) -> handphones (7196ms) What is leukemia? physical challenge -14.73728989426538 What is leukemia? -> what [ be leukemia ] ? -> what bring about be leukemia ? -> $x: ($x, bring about be, leukemia) -> $x: ($x, bring about, leukemia) -> (physical challenge, brought about by, acute leukemia) -> physical challenge (9083ms) What is leukemia? Goodman -14.78821935830655 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (Goodman, had already known of, his leukemia) -> Goodman (9083ms) What is leukemia? blood cancer cells -14.969588309163091 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (blood cancer cells, known as, chronic monocytic myeloid leukemia) -> blood cancer cells (9083ms) What is leukemia? a cancer -14.979904774532777 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (a cancer, known as, acute myeloid leukemia) -> a cancer (9083ms) What is leukemia? a virus -14.979904774532777 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (a virus, known as, the feline leukemia virus) -> a virus (9083ms) What is leukemia? a type of leukemia -14.985354932798394 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (a type of leukemia, known as, chronic myelogenous leukemia) -> a type of leukemia (9164ms) What is leukemia? a disease -14.993203355407445 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (a disease, known as, Acute Myelogenous Leukemia) -> a disease (9164ms) What is leukemia? a chemical -15.60412951003077 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (a chemical, known to, cause leukemia) -> a chemical (9164ms) What is leukemia? an aircraft fuel -15.991842960750104 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (an aircraft fuel, known to, cause leukemia) -> an aircraft fuel (9179ms) What is leukemia? pesticides -16.011475160385963 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (pesticides, have known links to, childhood and adult leukemia) -> pesticides (9179ms) What is leukemia? the oncologists -16.193654568358255 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (the oncologists, know more about, leukemia) -> the oncologists (9194ms) What is leukemia? the society -16.36872574197406 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (the society, became known as, the Leukemia Society) -> the society (9193ms) What is leukemia? the form of leukemia -16.819357121780516 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (the form of leukemia, known as, acute myeloid leukemia) -> the form of leukemia (9193ms) What is leukemia? the blood cancer -17.436935992490344 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (the blood cancer, known as, leukemia) -> the blood cancer (9194ms) What is leukemia? viruses -17.543086210174557 What is leukemia? -> what [ be leukemia ] ? -> what be know be leukemia ? -> $x: ($x, be know be, leukemia) -> $x: ($x, know, leukemia) -> (viruses, known as, murine leukemia viruses) -> viruses (9208ms) Who has employed Steffen? passengers -3.600630506005919 Who has employed Steffen? -> $x: ($x, has employed, Steffen) -> $x: ($x, have be describe, Steffen) -> (passengers, has been described by, Lincoln Steffens) -> passengers (6880ms) Who has employed Steffen? L?ngslens bog -3.6192973369248898 Who has employed Steffen? -> $x: ($x, has employed, Steffen) -> $x: ($x, have translate, Steffen) -> (L?ngslens bog, has been translated by, Steffen Brandt) -> L?ngslens bog (7252ms) Who has employed Steffen? the South Carolina Highway Patrol -4.532962331992384 Who has employed Steffen? -> $x: ($x, has employed, Steffen) -> $x: (Steffen, be hire by, $x) -> (Steffen, was hired by, the South Carolina Highway Patrol) -> the South Carolina Highway Patrol (7106ms) Who has employed Steffen? Schwarz -4.870179921537016 Who has employed Steffen? -> $x: ($x, has employed, Steffen) -> $x: ($x, have train, Steffen) -> (Schwarz, has trained with, Steffen Peters) -> Schwarz (7011ms) Who has employed Steffen? Worldchanging.com -5.73382448094244 Who has employed Steffen? -> $x: ($x, has employed, Steffen) -> $x: ($x, employ, steffen) -> $x: ($x, be be run, steffen) -> (Worldchanging.com, is a blog run by, its co-founder Alex Steffen) -> Worldchanging.com (7729ms) Who has employed Steffen? The vocals -6.312079710849428 Who has employed Steffen? -> $x: ($x, has employed, Steffen) -> $x: ($x, take care, Steffen) -> (The vocals, will be taken care of by, Steffen Kummerer) -> The vocals (7031ms) Who has employed Steffen? The camp -7.581973863151289 Who has employed Steffen? -> $x: ($x, has employed, Steffen) -> $x: ($x, employ, steffen) -> $x: ($x, be be run, steffen) -> (The camp, is now run by, Dr. Koni Steffen) -> The camp (7729ms) What is titanium? well-known character -5.097394480115493 What is titanium? -> $x: (titanium, instance of, $x) -> (Titania, Instance Of, well-known character) -> well-known character (5718ms) What is titanium? transition metal catalyst -5.20945027454837 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, transition metal catalyst) -> transition metal catalyst (5718ms) What is titanium? refractory metal -5.2140524768575265 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, refractory metal) -> refractory metal (5718ms) What is titanium? metallic material -5.219417097662503 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, metallic material) -> metallic material (5719ms) What is titanium? type of transition metal -5.299496534111638 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, type of transition metal) -> type of transition metal (5718ms) What is titanium? aid -5.331130249810624 What is titanium? -> $x: (titanium, instance of, $x) -> (titania, Instance Of, aid) -> aid (5718ms) What is titanium? premium quality raw material -5.3365446519403905 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, premium quality raw material) -> premium quality raw material (5736ms) What is titanium? suitable material -5.338798284115955 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, suitable material) -> suitable material (5737ms) What is titanium? inorganic material -5.395189638147544 What is titanium? -> $x: (titanium, instance of, $x) -> (titania, Instance Of, inorganic material) -> inorganic material (5737ms) What is titanium? shape memory alloy -5.409972322242238 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, shape memory alloy) -> shape memory alloy (5736ms) What is titanium? extremely strong yet lightweight metal -5.4290801189126014 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, extremely strong yet lightweight metal) -> extremely strong yet lightweight metal (5736ms) What is titanium? extraordinary denture prosthesis material -5.469852487468907 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, extraordinary denture prosthesis material) -> extraordinary denture prosthesis material (5737ms) What is titanium? hard refractory-like material -5.469852487468907 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, hard refractory-like material) -> hard refractory-like material (5866ms) What is titanium? transition element -5.470896516216498 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, transition element) -> transition element (5867ms) What is titanium? common material -5.488945092338408 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, common material) -> common material (5866ms) What is titanium? lovely frame material -5.505625684056914 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, lovely frame material) -> lovely frame material (5896ms) What is titanium? weakly magnetic metal -5.505625684056914 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, weakly magnetic metal) -> weakly magnetic metal (5895ms) What is titanium? superb heating substance -5.505625684056914 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, superb heating substance) -> superb heating substance (5895ms) What is titanium? substantially biocompatible material -5.505625684056914 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, substantially biocompatible material) -> substantially biocompatible material (5895ms) What is titanium? single such steel -5.505625684056914 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, single such steel) -> single such steel (5895ms) What is titanium? wonderful lightweight metal -5.505625684056914 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, wonderful lightweight metal) -> wonderful lightweight metal (5867ms) What is titanium? unworkable precious metal -5.505625684056914 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, unworkable precious metal) -> unworkable precious metal (5896ms) What is titanium? incredibly tough metal -5.505625684056914 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, incredibly tough metal) -> incredibly tough metal (5867ms) What is titanium? special engineering material -5.505625684056914 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, special engineering material) -> special engineering material (5866ms) What is titanium? essential trace element -5.5095426043239675 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, essential trace element) -> essential trace element (5915ms) What is titanium? lustrous, hard, silvery, gray, light metal -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, lustrous, hard, silvery, gray, light metal) -> lustrous, hard, silvery, gray, light metal (6884ms) What is titanium? strong and anti-corrosive metal -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, strong and anti-corrosive metal) -> strong and anti-corrosive metal (6842ms) What is titanium? non-toxic silvery white metal -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, non-toxic silvery white metal) -> non-toxic silvery white metal (5915ms) What is titanium? important inorganic functional material -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titania, Instance Of, important inorganic functional material) -> important inorganic functional material (6885ms) What is titanium? solid, white, lustrous metal -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, solid, white, lustrous metal) -> solid, white, lustrous metal (6870ms) What is titanium? object-oriented, explicitly parallel programming language -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, object-oriented, explicitly parallel programming language) -> object-oriented, explicitly parallel programming language (5960ms) What is titanium? light, extremely durable metal -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, light, extremely durable metal) -> light, extremely durable metal (5960ms) What is titanium? strong, corrosion-resistant, lustrous metal -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, strong, corrosion-resistant, lustrous metal) -> strong, corrosion-resistant, lustrous metal (6884ms) What is titanium? light and solid material -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, light and solid material) -> light and solid material (5960ms) What is titanium? light weight, noncorrosive, high strength-to-weight metal -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, light weight, noncorrosive, high strength-to-weight metal) -> light weight, noncorrosive, high strength-to-weight metal (5915ms) What is titanium? silver-gray light metal -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, silver-gray light metal) -> silver-gray light metal (5960ms) What is titanium? member of the family of reactive metal -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, member of the family of reactive metal) -> member of the family of reactive metal (6842ms) What is titanium? pretty high tech material -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, pretty high tech material) -> pretty high tech material (5915ms) What is titanium? light, durable metal alloy -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, light, durable metal alloy) -> light, durable metal alloy (5960ms) What is titanium? tough and light metal -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, tough and light metal) -> tough and light metal (6884ms) What is titanium? strong, low-density, highly corrosion-resistant, white metallic element -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, strong, low-density, highly corrosion-resistant, white metallic element) -> strong, low-density, highly corrosion-resistant, white metallic element (6885ms) What is titanium? strong, light, corrosion resistant metal -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, strong, light, corrosion resistant metal) -> strong, light, corrosion resistant metal (6842ms) What is titanium? light, indestructible, still relatively expensive material -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, light, indestructible, still relatively expensive material) -> light, indestructible, still relatively expensive material (6842ms) What is titanium? newsletter publishing Covered Call position -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, newsletter publishing Covered Call position) -> newsletter publishing Covered Call position (5918ms) What is titanium? strong dark black block -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, strong dark black block) -> strong dark black block (6870ms) What is titanium? strong, hard, and lightweight material -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, strong, hard, and lightweight material) -> strong, hard, and lightweight material (6870ms) What is titanium? light, strong and lustrous transition metal -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, light, strong and lustrous transition metal) -> light, strong and lustrous transition metal (6870ms) What is titanium? ultra light yet very strong metal -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, ultra light yet very strong metal) -> ultra light yet very strong metal (6842ms) What is titanium? modern and unique medium -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, modern and unique medium) -> modern and unique medium (6870ms) What is titanium? strong, yet light, metal -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, strong, yet light, metal) -> strong, yet light, metal (5915ms) What is titanium? strong, lightweight, silver-grey, metallic element -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, strong, lightweight, silver-grey, metallic element) -> strong, lightweight, silver-grey, metallic element (6842ms) What is titanium? High-Valence Metal -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, High-Valence Metal) -> High-Valence Metal (5960ms) What is titanium? lustrous silver-white or gray metallic element -5.51474644290405 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, lustrous silver-white or gray metallic element) -> lustrous silver-white or gray metallic element (6870ms) What is titanium? heat conductive material -5.5152033590131575 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, heat conductive material) -> heat conductive material (6884ms) What is titanium? reflective material -5.607510558748322 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, reflective material) -> reflective material (6927ms) What is titanium? metal complex -5.611975178360192 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, metal complex) -> metal complex (6927ms) What is titanium? hard surface -5.6391457115964485 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, hard surface) -> hard surface (6927ms) What is titanium? porous material -5.658257758564387 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, porous material) -> porous material (6927ms) What is titanium? matrix material -5.66114496066539 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, matrix material) -> matrix material (6927ms) What is titanium? inorganic substance -5.661632910858649 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, inorganic substance) -> inorganic substance (6927ms) What is titanium? amorphous material -5.663282727247879 What is titanium? -> $x: (titanium, instance of, $x) -> (titania, Instance Of, amorphous material) -> amorphous material (6946ms) What is titanium? innovative technology -5.673948755405252 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, innovative technology) -> innovative technology (6947ms) What is titanium? support material -5.701536638900646 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, support material) -> support material (6946ms) What is titanium? inorganic substrate -5.702460128257235 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, inorganic substrate) -> inorganic substrate (6946ms) What is titanium? inorganic pigment -5.708494252838867 What is titanium? -> $x: (titanium, instance of, $x) -> (titania, Instance Of, inorganic pigment) -> inorganic pigment (6946ms) What is titanium? nickel alloy -5.74445221983684 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, nickel alloy) -> nickel alloy (6946ms) What is titanium? liquid product -5.770456614177416 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, liquid product) -> liquid product (7066ms) What is titanium? deformable material -5.773568852385445 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, deformable material) -> deformable material (7066ms) What is titanium? alkaline metal -5.792991274974484 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, alkaline metal) -> alkaline metal (7066ms) What is titanium? interesting material -5.794264635543142 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, interesting material) -> interesting material (7066ms) What is titanium? wide range -5.7944315023197825 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, wide range) -> wide range (7066ms) What is titanium? oxide ceramic -5.79812093729233 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, oxide ceramic) -> oxide ceramic (7066ms) What is titanium? polymeric material -5.813419569943383 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, polymeric material) -> polymeric material (7252ms) What is titanium? tiny particle -5.834345508373161 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, tiny particle) -> tiny particle (7251ms) What is titanium? Zinc oxide -5.865713243341847 What is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Zinc oxide, Active moiety of drug, Titanium/Zinc oxide) -> Zinc oxide (7252ms) What is titanium? preferential material -5.871915359357899 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, preferential material) -> preferential material (7252ms) What is titanium? noteworthy metal -5.871915359357899 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, noteworthy metal) -> noteworthy metal (7279ms) What is titanium? prohibitive material -5.871915359357899 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, prohibitive material) -> prohibitive material (7279ms) What is titanium? superlative metal -5.871915359357899 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, superlative metal) -> superlative metal (7279ms) What is titanium? materialfor jewelry -5.871915359357899 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, materialfor jewelry) -> materialfor jewelry (7279ms) What is titanium? microalloying addition -5.871915359357899 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, microalloying addition) -> microalloying addition (7252ms) What is titanium? unmoving metal -5.871915359357899 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, unmoving metal) -> unmoving metal (7251ms) What is titanium? coating composition -5.883863059787776 What is titanium? -> $x: (titanium, instance of, $x) -> (titania, Instance Of, coating composition) -> coating composition (7279ms) What is titanium? structural material -5.884436900586124 What is titanium? -> $x: (titanium, instance of, $x) -> (titania, Instance Of, structural material) -> structural material (7279ms) What is titanium? promotional product -5.897470975557943 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, promotional product) -> promotional product (7300ms) What is titanium? local band -5.900037870488977 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, local band) -> local band (7300ms) What is titanium? resin material -5.900571094045924 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, resin material) -> resin material (7300ms) What is titanium? Copper Absorption Inhibitor -6.2476906238599055 What is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Copper Absorption Inhibitor, Drugs, Octinoxate/Octisalate/Zinc cation/Titanium) -> Copper Absorption Inhibitor (7463ms) What is titanium? Adenosine Receptor Agonist -6.2476906238599055 What is titanium? -> $x: (titanium, instance of, $x) -> $x: (titanium, pharmacological class, $x) -> (Titanium dioxide/Zinc oxide/Arbutin/Adenosine/Octinoxate/Octisalate, Pharmacological class, Adenosine Receptor Agonist) -> Adenosine Receptor Agonist (7463ms) What is titanium? Methylating Agent -6.395082086829625 What is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Methylating Agent, Drugs, Octinoxate/Titanium dioxide/Zinc oxide/Betaine/Talc) -> Methylating Agent (7463ms) What is titanium? Contrast Agent for Ultrasound Imaging -6.479357898577162 What is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Contrast Agent for Ultrasound Imaging, Drugs, Titanium dioxide/Dimethicone/Octinoxate/Hydroxyproline/Distearyldimonium/Diacetyl benzoyl lathyrol) -> Contrast Agent for Ultrasound Imaging (7553ms) What is titanium? Transition metal -6.682568405691354 What is titanium? -> $x: (titanium, instance of, $x) -> $x: (titanium, chemical series, $x) -> (Titanium, Chemical series, Transition metal) -> Transition metal (7826ms) What is titanium? Titanium dioxide -6.682568405691354 What is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Titanium dioxide, Active moiety of drug, Titanium dioxide/Octocrylene) -> Titanium dioxide (7838ms) What is titanium? Topical medication -6.682568405691354 What is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Topical medication, Drug formulations, Titanium dioxide 0.0005 cream) -> Topical medication (7839ms) What is titanium? Lockheed A-12 -6.871915359357899 What is titanium? -> $x: (titanium, instance of, $x) -> $x: (titanium, modelling, $x) -> (60-692 Titanium Goose, Parent aircraft model, Lockheed A-12) -> Lockheed A-12 (7851ms) What is titanium? Zinc -7.116351696461146 What is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Zinc, Active moiety of drug, Titanium dioxide/Zinc) -> Zinc (7851ms) What is titanium? Oral -7.116351696461146 What is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Oral, Drug formulations, Titanium 30 pellet) -> Oral (7851ms) What is titanium? Bbcream -7.171076249543963 What is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Bbcream, Canonical drug, Octinoxate/Titanium dioxide) -> Bbcream (7863ms) What is titanium? Aloevella -7.171076249543963 What is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Aloevella, Canonical drug, Titanium dioxide/Zinc oxide) -> Aloevella (7875ms) What is titanium? Cutaneous -7.171076249543963 What is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Cutaneous, Drug formulations, Titanium dioxide 0.0773 cream) -> Cutaneous (7912ms) What is titanium? Loccitane -7.171076249543963 What is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Loccitane, Canonical drug, Titanium dioxide) -> Loccitane (7863ms) What is titanium? Octinoxate -7.171076249543963 What is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Octinoxate, Active moiety of drug, Octinoxate/Octisalate/Titanium) -> Octinoxate (7900ms) What is titanium? Octisalate -7.171076249543963 What is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Octisalate, Active moiety of drug, Octisalate/Titanium dioxide) -> Octisalate (7912ms) What is titanium? Octocrylene -7.171076249543963 What is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Octocrylene, Active moiety of drug, Octocrylene/Octinoxate/Titanium) -> Octocrylene (7887ms) What is titanium? Oxybenzone -7.171076249543963 What is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, drug, titanium) -> (Oxybenzone, Active moiety of drug, Titanium/Octinoxate/Oxybenzone) -> Oxybenzone (7887ms) What is titanium? d-block -7.233827070412259 What is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, element, titanium) -> (d-block, Elements, Titanium) -> d-block (7912ms) What is titanium? 2011 Ford Flex -7.275782561109084 What is titanium? -> $x: (titanium, instance of, $x) -> $x: (titanium, modelling, $x) -> (2011 Ford Flex Titanium AWD Turbo, Model Year, 2011 Ford Flex) -> 2011 Ford Flex (7934ms) What is titanium? 2012 Ford Focus Sedan -7.275782561109084 What is titanium? -> $x: (titanium, instance of, $x) -> $x: (titanium, modelling, $x) -> (2012 Ford FocusTitanium Sedan, Model Year, 2012 Ford Focus Sedan) -> 2012 Ford Focus Sedan (7923ms) What is titanium? 2012 Ford Flex -7.275782561109084 What is titanium? -> $x: (titanium, instance of, $x) -> $x: (titanium, modelling, $x) -> (2012 Ford Flex Titanium, Model Year, 2012 Ford Flex) -> 2012 Ford Flex (7934ms) What is titanium? 2012 Ford Focus 5-Door -7.275782561109084 What is titanium? -> $x: (titanium, instance of, $x) -> $x: (titanium, modelling, $x) -> (2012 Ford Focus Titanium 5-Door, Model Year, 2012 Ford Focus 5-Door) -> 2012 Ford Focus 5-Door (7912ms) What is titanium? 2010 Nissan Armada -7.275782561109084 What is titanium? -> $x: (titanium, instance of, $x) -> $x: (titanium, modelling, $x) -> (2010 Nissan Armada Titanium, Model Year, 2010 Nissan Armada) -> 2010 Nissan Armada (7934ms) What is titanium? 905R -7.4961400948558925 What is titanium? -> $x: (titanium, instance of, $x) -> $x: (titanium, modelling, $x) -> (Titleist PRO TITANIUM 905R, Model, 905R) -> 905R (7934ms) What is titanium? 905S -7.4961400948558925 What is titanium? -> $x: (titanium, instance of, $x) -> $x: (titanium, modelling, $x) -> (Titleist PRO TITANIUM 905S, Model, 905S) -> 905S (7934ms) What is titanium? steel -7.633036137478976 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, steel) -> steel (7934ms) What is titanium? type -7.648983057112732 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, type) -> type (7945ms) What is titanium? stabilizer -7.6580053564371955 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, stabilizer) -> stabilizer (7946ms) What is titanium? character -7.708684624946219 What is titanium? -> $x: (titanium, instance of, $x) -> (Titania, Instance Of, character) -> character (7946ms) What is titanium? filler -7.740257556997938 What is titanium? -> $x: (titanium, instance of, $x) -> (titania, Instance Of, filler) -> filler (7946ms) What is titanium? item -7.791098438762236 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, item) -> item (7946ms) What is titanium? agent -7.808253318087274 What is titanium? -> $x: (titanium, instance of, $x) -> (titania, Instance Of, agent) -> agent (7946ms) What is titanium? apps -7.8320818292225365 What is titanium? -> $x: (titanium, instance of, $x) -> (Titanium, Instance Of, apps) -> apps (7956ms) What is titanium? watch -7.851167942210578 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, watch) -> watch (7956ms) What is titanium? fiber -7.946001247268135 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, fiber) -> fiber (7956ms) What is titanium? heteroatoms -7.995296296682728 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, heteroatoms) -> heteroatoms (7956ms) What is titanium? promoter -8.035181583187537 What is titanium? -> $x: (titanium, instance of, $x) -> (titania, Instance Of, promoter) -> promoter (7956ms) What is titanium? bead -8.129381432952881 What is titanium? -> $x: (titanium, instance of, $x) -> (titania, Instance Of, bead) -> bead (7956ms) What is titanium? plastic -8.134936790018987 What is titanium? -> $x: (titanium, instance of, $x) -> (titanium, Instance Of, plastic) -> plastic (7971ms) What is titanium? jewelry -9.783348008235956 What is titanium? -> $x: (titanium, instance of, $x) -> $x: (titanium, be the type of, $x) -> (titanium, are the only types of, jewelry) -> jewelry (7971ms) What is titanium? addition -9.808414430285955 What is titanium? -> $x: (titanium, instance of, $x) -> $x: (titanium, be a by, $x) -> (titanium, is improved a hundredfold by, addition) -> addition (7971ms) What is titanium? metals -10.028022593559172 What is titanium? -> $x: (titanium, instance of, $x) -> $x: (titanium, be the type of, $x) -> (Gold , silver , or titanium, is the types of, metals) -> metals (7971ms) What is titanium? options -10.073827719023244 What is titanium? -> $x: (titanium, instance of, $x) -> $x: (titanium, be the most seek after, $x) -> (the Titanium eyeglass frames, are the most sought after, options) -> options (7970ms) What is titanium? portfolio -10.520696114288217 What is titanium? -> $x: (titanium, instance of, $x) -> $x: (titanium, be a by, $x) -> (titanium sculpture, is a member by, portfolio) -> portfolio (7971ms) What is titanium? The mud -10.916167234301616 What is titanium? -> $x: (titanium, instance of, $x) -> $x: ($x, element, titanium) -> (The mud, also contains other elements such as, titanium) -> The mud (7981ms) What is titanium? More people -11.140485502835217 What is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> (More people, are likely to know the atomic number of, titanium) -> More people (7981ms) What is titanium? Anthony Ian Berkeley -11.478087503134542 What is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Anthony Ian Berkeley, Also known as, Titanium, Tony) -> Anthony Ian Berkeley (8873ms) What is titanium? Titanium Expos? -11.66633996573943 What is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Titanium Expos?, Also known as, Titanium Expose) -> Titanium Expos? (8873ms) What is titanium? Titanium (edit) -11.750615777486969 What is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Titanium (edit), Also known as, Titanium (2complex remix)) -> Titanium (edit) (8921ms) What is titanium? Titania A -11.750615777486969 What is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Titania A, Also known as, Titania A/S) -> Titania A (8891ms) What is titanium? Lady (Hear Me Tonight) (Choo-Choo' Titanium dub) -11.750615777486969 What is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Lady (Hear Me Tonight) (Choo-Choo' Titanium dub), Also known as, Lady (Hear Me Tonight) Harry "Choo-Choo" Romero's Titanium Dub) -> Lady (Hear Me Tonight) (Choo-Choo' Titanium dub) (8873ms) What is titanium? RMI Titanium Co -11.750615777486969 What is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (RMI Titanium Co, Also known as, RMI Titanium Company) -> RMI Titanium Co (8906ms) What is titanium? Tioxide Europe Titanium Pigmentleri Ticaret Ltd. Sirketi -11.750615777486969 What is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Tioxide Europe Titanium Pigmentleri Ticaret Ltd. Sirketi, Also known as, Tioxide Europe Titanium Pigmentleri Ticaret Ltd Sirketi) -> Tioxide Europe Titanium Pigmentleri Ticaret Ltd. Sirketi (8906ms) What is titanium? Gloucester Titanium Co Inc -11.750615777486969 What is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Gloucester Titanium Co Inc, Also known as, Gloucester Titanium Company, Inc) -> Gloucester Titanium Co Inc (8906ms) What is titanium? Bewitched: Titania's book of love spells -11.750615777486969 What is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Bewitched: Titania's book of love spells, Also known as, Titania's book of love spells) -> Bewitched: Titania's book of love spells (8921ms) What is titanium? Titanium Hearth Technologies, Inc -11.750615777486969 What is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Titanium Hearth Technologies, Inc, Also known as, Titanium Hearth Technologies Inc) -> Titanium Hearth Technologies, Inc (8874ms) What is titanium? HAVA Titanium HD WIFI -11.750615777486969 What is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (HAVA Titanium HD WIFI, Also known as, Monsoon HAVA Titanium HD WiFi Media Streamer) -> HAVA Titanium HD WIFI (8891ms) What is titanium? The Sinking of Titania -11.750615777486969 What is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (The Sinking of Titania, Also known as, Der Untergang der Titania) -> The Sinking of Titania (8921ms) What is titanium? International Titanium Inc. -11.750615777486969 What is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (International Titanium Inc., Also known as, International Titanium) -> International Titanium Inc. (8906ms) What is titanium? Isotopes of titanium -11.750615777486969 What is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Isotopes of titanium, Also known as, Titanium-50) -> Isotopes of titanium (8892ms) What is titanium? Titanium (extended version) -11.750615777486969 What is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Titanium (extended version), Also known as, Titanium (extended)) -> Titanium (extended version) (8891ms) What is titanium? Predict your future with Titania's oraqle -11.750615777486969 What is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Predict your future with Titania's oraqle, Also known as, Titania's oraqle) -> Predict your future with Titania's oraqle (8891ms) What is titanium? Titanium dioxide B -11.750615777486969 What is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Titanium dioxide B, Also known as, Titanium dioxide (B)) -> Titanium dioxide B (8873ms) What is titanium? Fairchild Titanium Technologies, Inc -11.750615777486969 What is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Fairchild Titanium Technologies, Inc, Also known as, Fairchild Titanium Technologies Inc) -> Fairchild Titanium Technologies, Inc (8891ms) What is titanium? Titania & MacBeth -11.750615777486969 What is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Titania & MacBeth, Also known as, Titania + Macbeth) -> Titania & MacBeth (8906ms) What is titanium? Titanium (commercially pure) -11.750615777486969 What is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Titanium (commercially pure), Also known as, Grade 3 Titanium) -> Titanium (commercially pure) (8906ms) What is titanium? Nickel titanium -11.95382628460116 What is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Nickel titanium, Also known as, Nickel Titanium) -> Nickel titanium (8921ms) What is titanium? Solvothermal synthesis -11.95382628460116 What is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Solvothermal synthesis, Also known as, Solvothermal Synthesis of titanium dioxide) -> Solvothermal synthesis (8936ms) What is titanium? Titanium Alloy 6-4 -12.143173238267705 What is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Titanium Alloy 6-4, Also known as, Grade 5 Titanium) -> Titanium Alloy 6-4 (8935ms) What is titanium? Mystic topaz -12.20161326611917 What is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> (Mystic topaz, is also known as, titanium) -> Mystic topaz (7982ms) What is titanium? Titanium -12.44233412845377 What is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Titanium, Also known as, Titanium (original version)) -> Titanium (8935ms) What is titanium? Hagler -12.637854174831329 What is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> (Hagler, was known for having, a titanium chin) -> Hagler (7981ms) What is titanium? Classic Ballet Series -12.71755691157635 What is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, product, $x) -> (Barbie Doll as Titania, Product line, Classic Ballet Series) -> Classic Ballet Series (15928ms) What is titanium? Materials Properties Handbook -12.71755691157635 What is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: ($x, edition, titanium) -> (Materials Properties Handbook, Editions, Materials Properties Handbook: Titanium Alloys (06005G)) -> Materials Properties Handbook (15928ms) What is titanium? Silver Label Collection -12.71755691157635 What is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, edition, $x) -> (Barbie Doll as Titania, Label or Edition, Silver Label Collection) -> Silver Label Collection (15929ms) What is titanium? water-resistant -12.77906345213434 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, water-resistant) -> water-resistant (11073ms) What is titanium? Electrochemical dialysate regeneration -12.827006017741983 What is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, edition of, $x) -> (Electrochemical dialysate regeneration : the electro-oxidation of urea at the ruthenium titanium oxide electrode, Edition Of, Electrochemical dialysate regeneration) -> Electrochemical dialysate regeneration (15387ms) What is titanium? Queen Titania -12.864948374546069 What is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: ($x, edition, titanium) -> (Queen Titania, Editions, Queen Titania) -> Queen Titania (16364ms) What is titanium? White Magic -12.864948374546069 What is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, edition, $x) -> (White Magic: Titania's Book of Favorite Spells, Edition Of, White Magic) -> White Magic (16364ms) What is titanium? Mentor Books -12.864948374546069 What is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: ($x, edition, titanium) -> (Mentor Books, Book editions published, Pipes of Peace (Titania)) -> Mentor Books (16364ms) What is titanium? Hocus Pocus -12.864948374546069 What is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: ($x, edition, titanium) -> (Hocus Pocus, Editions, Hocus Pocus: Titania's Book of Spells) -> Hocus Pocus (16364ms) What is titanium? SECRETOS PELIGROSOS -12.902161070642386 What is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, edition, $x) -> (SECRETOS PELIGROSOS (Titania Contemporanea), Edition Of, SECRETOS PELIGROSOS) -> SECRETOS PELIGROSOS (17910ms) What is titanium? Titanium: its occurrence, chemistry, and technology -12.949224186293607 What is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: ($x, edition, titanium) -> (Titanium: its occurrence, chemistry, and technology, Editions, Titanium: its occurrence, chemistry, and technology) -> Titanium: its occurrence, chemistry, and technology (17910ms) What is titanium? Surface reactions on stoichiometric and defective titanium dioxide : from single crystals to nanoparticles -12.949224186293607 What is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, edition, $x) -> (Surface reactions on stoichiometric and defective titanium dioxide, Editions, Surface reactions on stoichiometric and defective titanium dioxide : from single crystals to nanoparticles) -> Surface reactions on stoichiometric and defective titanium dioxide : from single crystals to nanoparticles (17910ms) What is titanium? Mechanistic investigations of titanium-mediated syndiospecific styrene polymerizations -12.949224186293607 What is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, edition of, $x) -> (Mechanistic investigations of titanium-mediated syndiospecific styrene polymerizations, Edition Of, Mechanistic investigations of titanium-mediated syndiospecific styrene polymerizations) -> Mechanistic investigations of titanium-mediated syndiospecific styrene polymerizations (17910ms) What is titanium? Pipes of Peace -12.949224186293607 What is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, edition of, $x) -> (Pipes of Peace (Titania), Edition Of, Pipes of Peace) -> Pipes of Peace (18746ms) What is titanium? Selective epoxidations of olefins, allylic alcohols, and homoallylic alcohols with tert-butyl hydroperoxide and molybdenum, vanadium, and titanium catalysts -12.949224186293607 What is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, edition of, $x) -> (Selective epoxidations of olefins, allylic alcohols, and homoallylic alcohols with tert-butyl hydroperoxide and molybdenum, vanadium, and titanium catalysts : application to asymmetric synthesis of (+)-disparlure and (-)-?-amino-?(R)-hydroxybutyric acid, Edition Of, Selective epoxidations of olefins, allylic alcohols, and homoallylic alcohols with tert-butyl hydroperoxide and molybdenum, vanadium, and titanium catalysts) -> Selective epoxidations of olefins, allylic alcohols, and homoallylic alcohols with tert-butyl hydroperoxide and molybdenum, vanadium, and titanium catalysts (15387ms) What is titanium? Laser assisted fabrication of titanium salicide for deep sub-quarter micron MOSFETs -12.949224186293607 What is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, edition, $x) -> (Laser assisted fabrication of titanium salicide for deep sub-quarter micron MOSFETs, Editions, Laser assisted fabrication of titanium salicide for deep sub-quarter micron MOSFETs) -> Laser assisted fabrication of titanium salicide for deep sub-quarter micron MOSFETs (18746ms) What is titanium? Selective epoxidations of olefins, allylic alcohols, and homoallylic alcohols with tert-butyl hydroperoxide and molybdenum, vanadium, and titanium catalysts : application to asymmetric synthesis of (+)-disparlure and (-)-?-amino-?(R)-hydroxybutyric acid -12.949224186293607 What is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, edition, $x) -> (Selective epoxidations of olefins, allylic alcohols, and homoallylic alcohols with tert-butyl hydroperoxide and molybdenum, vanadium, and titanium catalysts, Editions, Selective epoxidations of olefins, allylic alcohols, and homoallylic alcohols with tert-butyl hydroperoxide and molybdenum, vanadium, and titanium catalysts : application to asymmetric synthesis of (+)-disparlure and (-)-?-amino-?(R)-hydroxybutyric acid) -> Selective epoxidations of olefins, allylic alcohols, and homoallylic alcohols with tert-butyl hydroperoxide and molybdenum, vanadium, and titanium catalysts : application to asymmetric synthesis of (+)-disparlure and (-)-?-amino-?(R)-hydroxybutyric acid (19078ms) What is titanium? Geology of titanium and titaniferous deposits of Canada -12.949224186293607 What is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: ($x, edition, titanium) -> (Geology of titanium and titaniferous deposits of Canada, Editions, Geology of titanium and titaniferous deposits of Canada) -> Geology of titanium and titaniferous deposits of Canada (19078ms) What is titanium? Geology of Nimba County, Liberia -12.949224186293607 What is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: ($x, edition, titanium) -> (Geology of Nimba County, Liberia, Editions, Geology of titanium-mineral deposits) -> Geology of Nimba County, Liberia (18746ms) What is titanium? Titanium: Physico-Chemical Properties of Its Compounds and Alloys (Atomic Energy Review) -12.949224186293607 What is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: ($x, edition, titanium) -> (Titanium: Physico-Chemical Properties of Its Compounds and Alloys (Atomic Energy Review), Edition Of, Titanium) -> Titanium: Physico-Chemical Properties of Its Compounds and Alloys (Atomic Energy Review) (19078ms) What is titanium? Bibliography of titanium deposits of the world -12.949224186293607 What is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: ($x, edition, titanium) -> (Bibliography of titanium deposits of the world, Editions, Bibliography of titanium deposits of the world) -> Bibliography of titanium deposits of the world (17910ms) What is titanium? Report on the physical properties of titanium and titanium alloys -12.949224186293607 What is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: ($x, edition, titanium) -> (Report on the physical properties of titanium and titanium alloys, Editions, Report on the physical properties of titanium and titanium alloys) -> Report on the physical properties of titanium and titanium alloys (19078ms) What is titanium? Titania: the biography of Isak Dinesen. -12.949224186293607 What is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, edition, $x) -> (Titania, Editions, Titania: the biography of Isak Dinesen.) -> Titania: the biography of Isak Dinesen. (18746ms) What is titanium? Polymerization of Dienes Induced Titanium-Containing Catalytic Sys -12.949224186293607 What is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, edition of, $x) -> (Polymerization of Dienes Induced Titanium-Containing Catalytic Sys. (Chemistry Reviews), Edition Of, Polymerization of Dienes Induced Titanium-Containing Catalytic Sys) -> Polymerization of Dienes Induced Titanium-Containing Catalytic Sys (19078ms) What is titanium? A review of the low-temperature creep behaviour of titanium -12.949224186293607 What is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, edition, $x) -> (A review of the low-temperature creep behaviour of titanium, Editions, A review of the low-temperature creep behaviour of titanium) -> A review of the low-temperature creep behaviour of titanium (18747ms) What is titanium? Amor En Directo/ Popped -12.949224186293607 What is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: ($x, edition, titanium) -> (Amor En Directo/ Popped, Editions, Amor En Directo/ Popped (Titania Contemporanea)) -> Amor En Directo/ Popped (18746ms) What is titanium? Homolyses of titanium-oxygen bonds : a novel strategy for generating Ti(III) complexes -12.949224186293607 What is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, edition, $x) -> (Homolyses of titanium-oxygen bonds, Editions, Homolyses of titanium-oxygen bonds : a novel strategy for generating Ti(III) complexes) -> Homolyses of titanium-oxygen bonds : a novel strategy for generating Ti(III) complexes (19078ms) What is titanium? Spectral line intensity measurements of certain intersystem combination lines in the spectrum of singly-ionized titanium (Ti II) -12.949224186293607 What is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, edition, $x) -> (Spectral line intensity measurements of certain intersystem combination lines in the spectrum of singly-ionized titanium (Ti II), Editions, Spectral line intensity measurements of certain intersystem combination lines in the spectrum of singly-ionized titanium (Ti II)) -> Spectral line intensity measurements of certain intersystem combination lines in the spectrum of singly-ionized titanium (Ti II) (19078ms) What is titanium? A sourcebook of titanium alloy superconductivity -12.949224186293607 What is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, edition of, $x) -> (A sourcebook of titanium alloy superconductivity, Edition Of, A sourcebook of titanium alloy superconductivity) -> A sourcebook of titanium alloy superconductivity (19078ms) What is titanium? Titanium: a technical guide -12.949224186293607 What is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, edition, $x) -> (Titanium, Editions, Titanium: a technical guide) -> Titanium: a technical guide (18746ms) What is titanium? Reproducibility and stability of tantalum, titanium, and platinum silicide contacts to silicon -12.949224186293607 What is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, edition of, $x) -> (Reproducibility and stability of tantalum, titanium, and platinum silicide contacts to silicon, Edition Of, Reproducibility and stability of tantalum, titanium, and platinum silicide contacts to silicon) -> Reproducibility and stability of tantalum, titanium, and platinum silicide contacts to silicon (18747ms) What is titanium? Apuesta Por Mi/ Take a Chance on Me (Titania Contemporanea) -12.949224186293607 What is titanium? -> what be [ titanium ] ? -> what be the expansion of titanium ? -> $x: (titanium, expansion, $x) -> $x: (titanium, edition, $x) -> (Apuesta Por Mi/ Take a Chance on Me (Titania Contemporanea) (Titania Contemporanea), Edition Of, Apuesta Por Mi/ Take a Chance on Me (Titania Contemporanea)) -> Apuesta Por Mi/ Take a Chance on Me (Titania Contemporanea) (17910ms) What is titanium? corrosion-resistant -13.403288187632333 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, corrosion-resistant) -> corrosion-resistant (11074ms) What is titanium? corrosion-proof -13.403288187632333 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, corrosion-proof) -> corrosion-proof (11074ms) What is titanium? kind of alittle lighter -13.492470843919794 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, kind of alittle lighter) -> kind of alittle lighter (11073ms) What is titanium? Hulk smash -13.570968130227476 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, go, $x) -> (Titanium, went, Hulk smash) -> Hulk smash (11073ms) What is titanium? Zirconium -13.606275603699993 What is titanium? -> what be [ titanium ] ? -> what exactly be titanium ? -> $x: ($x, exactly be, titanium) -> (Zirconium, is exactly like, titanium) -> Zirconium (11222ms) What is titanium? lighter than steel -13.637139228526994 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, lighter than steel) -> lighter than steel (11073ms) What is titanium? as strong as steel -13.64625998737413 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, as strong as steel) -> as strong as steel (11073ms) What is titanium? resistant to corrosion -13.673379785006059 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, resistant to corrosion) -> resistant to corrosion (11073ms) What is titanium? quite a little lighter -13.687319633848253 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, quite a little lighter) -> quite a little lighter (11116ms) What is titanium? strong as steel -13.701537049292211 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, strong as steel) -> strong as steel (11115ms) What is titanium? a long way -13.706537408295336 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, go, $x) -> (The TI-89 Titanium, has really gone, a long way) -> a long way (11115ms) What is titanium? very light weight -13.706891114635251 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, very light weight) -> very light weight (11115ms) What is titanium? stronger than gold -13.727292233499204 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, stronger than gold) -> stronger than gold (11115ms) What is titanium? strong , lightweight , hypoallergenic -13.728556394181354 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, strong , lightweight , hypoallergenic) -> strong , lightweight , hypoallergenic (11115ms) What is titanium? much lighter than steel -13.778113216675585 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, much lighter than steel) -> much lighter than steel (11135ms) What is titanium? as durable as stainless steel -13.78332687739678 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, as durable as stainless steel) -> as durable as stainless steel (11135ms) What is titanium? Queen of the fairies -13.786851573379419 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titania, is, Queen of the fairies) -> Queen of the fairies (11135ms) What is titanium? a platform -13.795588131176476 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, go, $x) -> (Titanium, is going as, a platform) -> a platform (11135ms) What is titanium? three times stronger than steel -13.802796514919635 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, three times stronger than steel) -> three times stronger than steel (11135ms) What is titanium? a very hardy material -13.812989159729714 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, a very hardy material) -> a very hardy material (11135ms) What is titanium? more flexible than steel -13.812989159729714 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, more flexible than steel) -> more flexible than steel (11135ms) What is titanium? one of the strongest metals -13.817271339109812 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, one of the strongest metals) -> one of the strongest metals (11135ms) What is titanium? about as good as it gets -13.831569310030464 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, about as good as it gets) -> about as good as it gets (11154ms) What is titanium? stronger and lighter than steel -13.837672457973763 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, stronger and lighter than steel) -> stronger and lighter than steel (11154ms) What is titanium? Nickel free -13.846260299653203 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, Nickel free) -> Nickel free (11154ms) What is titanium? substantially more electropositive than iron -13.854724643008481 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (titanium, is, substantially more electropositive than iron) -> substantially more electropositive than iron (11154ms) What is titanium? sort of a bit lighter -13.863287237558911 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, sort of a bit lighter) -> sort of a bit lighter (11154ms) What is titanium? one of the best metals -13.872548401027892 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, one of the best metals) -> one of the best metals (11154ms) What is titanium? much more elastic than steel -13.872548401027892 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, much more elastic than steel) -> much more elastic than steel (11154ms) What is titanium? kinds of the new metal -13.872548401027892 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, kinds of the new metal) -> kinds of the new metal (11154ms) What is titanium? DivX -13.877678009272472 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, do, $x) -> (Toast 7 Titanium?s video conversion, does n?t end with, DivX) -> DivX (11222ms) What is titanium? likewise asleep -13.886211945271516 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titania, was, likewise asleep) -> likewise asleep (11222ms) What is titanium? extremely lightweight -13.886646467876714 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, extremely lightweight) -> extremely lightweight (11222ms) What is titanium? fairly expensive -13.886646467876714 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, fairly expensive) -> fairly expensive (11222ms) What is titanium? completely neutral to the human body -13.899794675202482 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, completely neutral to the human body) -> completely neutral to the human body (11222ms) What is titanium? either way -13.900209235897506 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, go, $x) -> (the Titanium PowerBook, go, either way) -> either way (11222ms) What is titanium? only half the weight of steel -13.902372036047025 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, only half the weight of steel) -> only half the weight of steel (11222ms) What is titanium? very ductile -13.907047586740667 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, very ductile) -> very ductile (13668ms) What is titanium? incredibly light -13.907047586740667 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, incredibly light) -> incredibly light (13668ms) What is titanium? the casing -13.91105727351965 What is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> (the casing, is known to be, titanium based) -> the casing (7981ms) What is titanium? lighter and stronger than stainless steel -13.920195794066435 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, lighter and stronger than stainless steel) -> lighter and stronger than stainless steel (13668ms) What is titanium? one of the most durable metals -13.920195794066435 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, one of the most durable metals) -> one of the most durable metals (13668ms) What is titanium? graphics cards -13.955832638314455 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, do, $x) -> (titanium, have to do with, graphics cards) -> graphics cards (13668ms) What is titanium? Texas -14.041713170660827 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, go, $x) -> (Titanium Sporkestra, is going to, Texas) -> Texas (13668ms) What is titanium? Virtual TI doesnt -14.073624185933722 What is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Virtual TI doesnt, know about, the Titanium) -> Virtual TI doesnt (8935ms) What is titanium? so strong -14.076280272110797 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (titanium, is, so strong) -> so strong (13668ms) What is titanium? non-toxic -14.084603610208962 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> $x: (titanium, be, $x) -> (Titanium, is, non-toxic) -> non-toxic (13668ms) What is titanium? wedding rings -14.256098095091463 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> (titanium platinum, mens, wedding rings) -> wedding rings (8088ms) What is titanium? a reflective fiber -14.474353890497135 What is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (a reflective fiber, know as, titanium) -> a reflective fiber (8949ms) What is titanium? wedding band -14.880322830589456 What is titanium? -> what be [ titanium ] ? -> what be the mening of titanium ? -> $x: (titanium, mening, $x) -> (the titanium, mens, wedding band) -> wedding band (8088ms) What is titanium? Eva Longoria -15.59581189893962 What is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (Eva Longoria, knew that, titanium is) -> Eva Longoria (8950ms) What is titanium? anodization -16.798440022184227 What is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (anodization, include well-known metals such as, titanium) -> anodization (8962ms) What is titanium? the presence of a new element -17.452351016952395 What is titanium? -> what [ be titanium ] ? -> what be know be titanium ? -> $x: ($x, be know be, titanium) -> $x: ($x, know, titanium) -> (the presence of a new element, known as, titanium) -> the presence of a new element (8962ms) How many state jobs did Steffen hold? researcher -1.7842299956702994 How many state jobs did Steffen hold? -> $x: ($x, instance of, state jobs) (Steffen, hold, $x) -> (researcher, Instance Of, state job) (Steffen, held positions as, researcher) -> researcher (2981ms) What actor first portrayed James Bond? Daniel Craig -2.2254713954242904 What actor first portrayed James Bond? -> $x: ($x, instance of, actor first) ($x, portrayed, James Bond) -> (Daniel Craig, Instance Of, first class actor) (Danny Craig, portrays, James Bond) -> Daniel Craig (1560ms) What actor first portrayed James Bond? Craig -2.556944707708981 What actor first portrayed James Bond? -> $x: ($x, instance of, actor first) ($x, portrayed, James Bond) -> (Craig, Instance Of, first rate actor) (Craig, portray, James Bond) -> Craig (1560ms) What actor first portrayed James Bond? Sean Connery -5.217859050974644 What actor first portrayed James Bond? -> What actor portrayed James Bond? -> $x: ($x, instance of, actor) ($x, portrayed, James Bond) -> (Sean Connery, Instance Of, actor) (Sean Connery, portrayed, James Bond) -> Sean Connery (10049ms) What actor first portrayed James Bond? Ms Moore -5.342140277248111 What actor first portrayed James Bond? -> $x: ($x, instance of, actor first) ($x, portrayed, James Bond) -> $x: ($x, instance of, actor first) ($x, be cast as, James Bond) -> (Ms Moore, Instance Of, first-rate actor) (Moore, was finally cast as, James Bond) -> Ms Moore (8206ms) What actor first portrayed James Bond? George Lazenby -5.886394766322417 What actor first portrayed James Bond? -> What actor portrayed James Bond? -> $x: ($x, instance of, actor) ($x, portrayed, James Bond) -> (George Lazenby, Instance Of, actor) (George Lazenby, portrayed, James Bond) -> George Lazenby (10125ms) What actor first portrayed James Bond? Brosnan -6.797662570532222 What actor first portrayed James Bond? -> What actor portrayed James Bond? -> $x: ($x, instance of, actor) ($x, portrayed, James Bond) -> (Brosnan, Instance Of, actor) (Brosnan, portrayed, the fictional secret agent James Bond) -> Brosnan (10138ms) What actor first portrayed James Bond? Pierce Brosnan -8.165148859930206 What actor first portrayed James Bond? -> What actor portrayed James Bond? -> $x: ($x, instance of, actor) ($x, portrayed, James Bond) -> $x: ($x, instance of, actor) (James Bond, portray by, $x) -> (Pierce Brosnan, Instance Of, actor) (James Bond, portrayed by, Pierce Brosnan) -> Pierce Brosnan (13807ms) What actor first portrayed James Bond? AMC -9.171950480529517 What actor first portrayed James Bond? -> What actor portrayed James Bond? -> $x: ($x, instance of, actor) ($x, portrayed, James Bond) -> $x: ($x, instance of, actor) ($x, show be, James Bond) -> (AMC, Instance Of, well rounded group of talented actor) (AMC, is also showing, three James Bond movies) -> AMC (12986ms) What actor first portrayed James Bond? Orlando Bloom -9.262012820287385 What actor first portrayed James Bond? -> What actor portrayed James Bond? -> $x: ($x, instance of, actor) ($x, portrayed, James Bond) -> $x: ($x, instance of, actor) ($x, have be cast as, James Bond) -> (Orlando Bloom, Instance Of, talented actor) (Orlando Bloom, has been cast as, the young James Bond) -> Orlando Bloom (12986ms) What actor first portrayed James Bond? actors -10.41170893092742 What actor first portrayed James Bond? -> What actor portrayed James Bond? -> $x: ($x, instance of, actor) ($x, portrayed, James Bond) -> $x: ($x, modelling, actor) ($x, portrayed, James Bond) -> (actors, MODELS, / ACTORS REMINDER Europcar Face) (all the actors, portrayed, James Bond) -> actors (13553ms) What is an eclipse? detailed description of the different part -4.68575736657953 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> (Structure of an Eclipse Plug-inThis, Instance Of, detailed description of the different part) -> detailed description of the different part (8838ms) What is an eclipse? poetic prose poem memoir -4.70708942435825 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> (Light From An Eclipse, Instance Of, poetic prose poem memoir) -> poetic prose poem memoir (8838ms) What is an eclipse? deeply affecting experience -4.721530563167535 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> (Nat. Moon triggered by an eclipse, Instance Of, deeply affecting experience) -> deeply affecting experience (8838ms) What is an eclipse? DPS strategy -4.730651322014672 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> (refreshing on the last spell of an eclipse, Instance Of, DPS strategy) -> DPS strategy (8838ms) What is an eclipse? memoir covering the year of her dad's Alzheimer's disease -4.784705087226465 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> (Light from an Eclipse, Instance Of, memoir covering the year of her dad's Alzheimer's disease) -> memoir covering the year of her dad's Alzheimer's disease (8839ms) What is an eclipse? layered call -4.917650977616581 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> (An Eclipsing, Instance Of, layered call) -> layered call (9631ms) What is an eclipse? photometric observation -4.917650977616581 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> (observation of an eclipse, Instance Of, photometric observation) -> photometric observation (8838ms) What is an eclipse? auspicious time -4.9465325778793385 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> (time during an eclipse, Instance Of, auspicious time) -> auspicious time (9631ms) What is an eclipse? interference engine -4.980721243919374 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> (engine in an eclipse, Instance Of, interference engine) -> interference engine (9631ms) What is an eclipse? ideal time -5.007771723648073 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> (time near an eclipse, Instance Of, ideal time) -> ideal time (9631ms) What is an eclipse? open-source standard -6.347555972873462 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, open-source standard) -> open-source standard (9631ms) What is an eclipse? mixed bag -6.445438623878456 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, mixed bag) -> mixed bag (9631ms) What is an eclipse? non-handed and modular series -6.510129566546065 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, non-handed and modular series) -> non-handed and modular series (9801ms) What is an eclipse? incredibly powerful platform -6.5668623746015555 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, incredibly powerful platform) -> incredibly powerful platform (9801ms) What is an eclipse? intuitive PPM solution -6.570618729254677 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, intuitive PPM solution) -> intuitive PPM solution (9801ms) What is an eclipse? open-source software development project -6.598037171430477 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, open-source software development project) -> open-source software development project (9801ms) What is an eclipse? open source Java integrated development environment -6.6124897969756695 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, open source Java integrated development environment) -> open source Java integrated development environment (9801ms) What is an eclipse? modern development environment -6.615147101968271 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, modern development environment) -> modern development environment (9801ms) What is an eclipse? Integrated Development Environment, or IDE -6.632423183686063 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, Integrated Development Environment, or IDE) -> Integrated Development Environment, or IDE (9820ms) What is an eclipse? open source development framework -6.649489090698349 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, open source development framework) -> open source development framework (9820ms) What is an eclipse? Java based platform -6.654972778643229 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, Java based platform) -> Java based platform (9819ms) What is an eclipse? denture base material -6.685467226615205 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse?, Instance Of, denture base material) -> denture base material (9819ms) What is an eclipse? bet -6.687970993957839 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, bet) -> bet (9820ms) What is an eclipse? free open source Integrated Development Environment -6.694587985462341 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, free open source Integrated Development Environment) -> free open source Integrated Development Environment (9819ms) What is an eclipse? collection of short fictional story -6.694587985462341 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, collection of short fictional story) -> collection of short fictional story (9837ms) What is an eclipse? free blogger template -6.719081522664327 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, free blogger template) -> free blogger template (9838ms) What is an eclipse? gem -6.726098978129288 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, gem) -> gem (9838ms) What is an eclipse? open development environment -6.730361182050347 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, open development environment) -> open development environment (9837ms) What is an eclipse? source code environment -6.730361182050347 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, source code environment) -> source code environment (9856ms) What is an eclipse? case mutual event -6.730361182050347 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (eclipse, Instance Of, case mutual event) -> case mutual event (9838ms) What is an eclipse? software engineering environment -6.730361182050347 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, software engineering environment) -> software engineering environment (9838ms) What is an eclipse? four letter word -6.738384328860972 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, four letter word) -> four letter word (9856ms) What is an eclipse? excellent free IDE -6.739481940897483 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, excellent free IDE) -> excellent free IDE (9856ms) What is an eclipse? premium series name -6.753862704265519 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, premium series name) -> premium series name (9856ms) What is an eclipse? collection of place -6.753997586683159 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, collection of place) -> collection of place (9856ms) What is an eclipse? IDE or Integrated Development Environment -6.755933005957823 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, IDE or Integrated Development Environment) -> IDE or Integrated Development Environment (9856ms) What is an eclipse? popular open source platform -6.75846393885546 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, popular open source platform) -> popular open source platform (9875ms) What is an eclipse? OSGi application -6.760045771916483 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, OSGi application) -> OSGi application (9876ms) What is an eclipse? pro -6.760514705065259 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, pro) -> pro (9875ms) What is an eclipse? higher-end brand -6.7607091206715735 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, higher-end brand) -> higher-end brand (9876ms) What is an eclipse? open source application -6.763263312171027 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, open source application) -> open source application (9875ms) What is an eclipse? Java-based development environment -6.766900383073283 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, Java-based development environment) -> Java-based development environment (9876ms) What is an eclipse? intelligent code editor -6.771488844088347 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, intelligent code editor) -> intelligent code editor (9898ms) What is an eclipse? complete software development environment -6.772384071018163 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (ECLIPSE, Instance Of, complete software development environment) -> complete software development environment (9898ms) What is an eclipse? open source software -6.774572802949596 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, open source software) -> open source software (9899ms) What is an eclipse? Japanese pop group -6.776355017376476 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, Japanese pop group) -> Japanese pop group (9899ms) What is an eclipse? oil -6.777972899495585 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (ECLIPSE, Instance Of, oil) -> oil (9899ms) What is an eclipse? full-featured development tool -6.780609602935483 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, full-featured development tool) -> full-featured development tool (9898ms) What is an eclipse? low cost laser-based alternative -6.794318825249083 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse?, Instance Of, low cost laser-based alternative) -> low cost laser-based alternative (9913ms) What is an eclipse? comprehensive IDE -6.799303996553774 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, comprehensive IDE) -> comprehensive IDE (9913ms) What is an eclipse? young, dynamic and rapidly growing company -6.801173433954483 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, young, dynamic and rapidly growing company) -> young, dynamic and rapidly growing company (9913ms) What is an eclipse? Complex UIs -6.8204742794600515 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, Complex UIs) -> Complex UIs (9914ms) What is an eclipse? development tool -6.828813770508529 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, development tool) -> development tool (9914ms) What is an eclipse? great place -6.8659630667268665 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, great place) -> great place (9914ms) What is an eclipse? good brand -6.966943379776335 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, good brand) -> good brand (9934ms) What is an eclipse? pro tool -6.981215538584396 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, pro tool) -> pro tool (9935ms) What is an eclipse? solution ecosystem -7.010984533359883 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, solution ecosystem) -> solution ecosystem (9935ms) What is an eclipse? luxury vessel -7.015709830601856 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, luxury vessel) -> luxury vessel (9935ms) What is an eclipse? affordable aircraft -7.025850914959278 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, affordable aircraft) -> affordable aircraft (9934ms) What is an eclipse? awesome movie -7.034635024682586 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, awesome movie) -> awesome movie (9935ms) What is an eclipse? great line -7.040472290261207 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, great line) -> great line (9956ms) What is an eclipse? online magazine -7.058373844838783 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, online magazine) -> online magazine (9956ms) What is an eclipse? purpose solution -7.072320732935189 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, purpose solution) -> purpose solution (9956ms) What is an eclipse? difficult film -7.073714890513336 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, difficult film) -> difficult film (9956ms) What is an eclipse? typical model -7.076128849972145 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, typical model) -> typical model (9956ms) What is an eclipse? success story -7.076538954431252 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, success story) -> success story (9956ms) What is an eclipse? global phenomenon -7.076649961163242 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (eclipse, Instance Of, global phenomenon) -> global phenomenon (9973ms) What is an eclipse? wireless platform -7.07917534409199 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, wireless platform) -> wireless platform (9974ms) What is an eclipse? good read -7.089090684646612 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, good read) -> good read (9973ms) What is an eclipse? admire company -7.096650857351332 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, admire company) -> admire company (9973ms) What is an eclipse? knowledge -7.108625709298817 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> (prediction of an eclipse, Instance Of, knowledge) -> knowledge (9973ms) What is an eclipse? celestial pattern -7.110360078439232 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (eclipse, Instance Of, celestial pattern) -> celestial pattern (9973ms) What is an eclipse? realtime system -7.113101922411672 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, realtime system) -> realtime system (9991ms) What is an eclipse? good suggestion -7.120350673287121 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, good suggestion) -> good suggestion (9991ms) What is an eclipse? biggest brand -7.122681022856833 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, biggest brand) -> biggest brand (9991ms) What is an eclipse? intelligent editor -7.124069299527132 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, intelligent editor) -> intelligent editor (9991ms) What is an eclipse? cyclic pattern -7.124069299527132 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (eclipse, Instance Of, cyclic pattern) -> cyclic pattern (9990ms) What is an eclipse? integrated environment -7.129552987472012 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, integrated environment) -> integrated environment (9991ms) What is an eclipse? amazing product -7.130334358864995 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, amazing product) -> amazing product (10049ms) What is an eclipse? time -7.130509043683604 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> (time of an eclipse, Instance Of, time) -> time (10050ms) What is an eclipse? private company -7.130636658120101 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, private company) -> private company (10050ms) What is an eclipse? complete system -7.1325264592980036 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, complete system) -> complete system (10050ms) What is an eclipse? nice place -7.134101633131779 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, nice place) -> nice place (10049ms) What is an eclipse? software application -7.135461468662918 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, software application) -> software application (10128ms) What is an eclipse? billing system -7.137778519389332 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, billing system) -> billing system (10128ms) What is an eclipse? trio band -7.137778519389332 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, trio band) -> trio band (10128ms) What is an eclipse? cruise ship -7.137778519389332 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, cruise ship) -> cruise ship (10128ms) What is an eclipse? good place -7.138342351122761 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, good place) -> good place (10128ms) What is an eclipse? factor -7.139832663132815 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> (mention of an eclipse, Instance Of, factor) -> factor (10128ms) What is an eclipse? private club -7.140010254052466 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, private club) -> private club (10144ms) What is an eclipse? registered charity -7.148198620299144 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, registered charity) -> registered charity (10144ms) What is an eclipse? memoir -7.1514848211951385 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> (Light from an Eclipse, Instance Of, memoir) -> memoir (10144ms) What is an eclipse? application framework -7.152584478311348 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, application framework) -> application framework (10144ms) What is an eclipse? circumstance -7.17685756065902 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> (testing an Eclipse-based application, Instance Of, circumstance) -> circumstance (10144ms) What is an eclipse? brainer -7.243897573823071 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> (Custom II for an Eclipse, Instance Of, brainer) -> brainer (10165ms) What is an eclipse? Japanese made car -7.310076614374316 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, Japanese made car) -> Japanese made car (10164ms) What is an eclipse? area -7.373425639796428 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> (creating a JAVA project in an Eclipse workspace, Instance Of, area) -> area (10164ms) What is an eclipse? book -7.382397561562472 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> (The Short Second Life of Bree Tanner: An Eclipse Novella, Instance Of, book) -> book (10164ms) What is an eclipse? Organisations -7.485960981810836 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, Organisations) -> Organisations (10165ms) What is an eclipse? short day variety -7.513439501055011 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, short day variety) -> short day variety (10179ms) What is an eclipse? high end brand -7.5256222735549985 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, high end brand) -> high end brand (10179ms) What is an eclipse? Mitsubishi Eclipse -7.619817584823058 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (2011 Mitsubishi Eclipse Spyder, Model, Mitsubishi Eclipse) -> Mitsubishi Eclipse (11247ms) What is an eclipse? PITA -7.667230076815279 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, PITA) -> PITA (10179ms) What is an eclipse? Eclipse 500 -8.096650857351332 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Eclipse Aviation, Aircraft Models Manufactured, Eclipse 500) -> Eclipse 500 (11247ms) What is an eclipse? 1995 Mitsubishi Eclipse Convertible -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 1995 Mitsubishi Eclipse Convertible) -> 1995 Mitsubishi Eclipse Convertible (11557ms) What is an eclipse? 2002 Mitsubishi Eclipse Hatchback -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2002 Mitsubishi Eclipse Hatchback) -> 2002 Mitsubishi Eclipse Hatchback (11402ms) What is an eclipse? 2002 Mitsubishi Eclipse Spyder -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2002 Mitsubishi Eclipse Spyder) -> 2002 Mitsubishi Eclipse Spyder (11297ms) What is an eclipse? 2008 Mitsubishi Eclipse Coupe -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2008 Mitsubishi Eclipse Coupe) -> 2008 Mitsubishi Eclipse Coupe (11419ms) What is an eclipse? 1994 Mitsubishi Eclipse -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 1994 Mitsubishi Eclipse) -> 1994 Mitsubishi Eclipse (11451ms) What is an eclipse? 2006 Mitsubishi Eclipse Coupe -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2006 Mitsubishi Eclipse Coupe) -> 2006 Mitsubishi Eclipse Coupe (11368ms) What is an eclipse? 2009 Mitsubishi Eclipse Spyder -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (2009 Mitsubishi Eclipse GT Spyder, Model Year, 2009 Mitsubishi Eclipse Spyder) -> 2009 Mitsubishi Eclipse Spyder (11557ms) What is an eclipse? 1989 Mitsubishi Eclipse -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 1989 Mitsubishi Eclipse) -> 1989 Mitsubishi Eclipse (11419ms) What is an eclipse? 2005 Mitsubishi Eclipse Hatchback -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2005 Mitsubishi Eclipse Hatchback) -> 2005 Mitsubishi Eclipse Hatchback (12072ms) What is an eclipse? 1993 Mitsubishi Eclipse -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 1993 Mitsubishi Eclipse) -> 1993 Mitsubishi Eclipse (11297ms) What is an eclipse? 2007 Mitsubishi Eclipse Spyder -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (2007 Mitsubishi Eclipse GT Spyder, Model Year, 2007 Mitsubishi Eclipse Spyder) -> 2007 Mitsubishi Eclipse Spyder (11678ms) What is an eclipse? 2010 Mitsubishi Eclipse Spyder -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2010 Mitsubishi Eclipse Spyder) -> 2010 Mitsubishi Eclipse Spyder (11678ms) What is an eclipse? 1992 Mitsubishi Eclipse -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 1992 Mitsubishi Eclipse) -> 1992 Mitsubishi Eclipse (11402ms) What is an eclipse? 2011 Mitsubishi Eclipse Spyder -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2011 Mitsubishi Eclipse Spyder) -> 2011 Mitsubishi Eclipse Spyder (11557ms) What is an eclipse? 2009 Mitsubishi Eclipse Coupe -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2009 Mitsubishi Eclipse Coupe) -> 2009 Mitsubishi Eclipse Coupe (11419ms) What is an eclipse? 2005 Mitsubishi Eclipse Spyder -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2005 Mitsubishi Eclipse Spyder) -> 2005 Mitsubishi Eclipse Spyder (11619ms) What is an eclipse? 1999 Mitsubishi Eclipse Convertible -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 1999 Mitsubishi Eclipse Convertible) -> 1999 Mitsubishi Eclipse Convertible (11678ms) What is an eclipse? 1998 Mitsubishi Eclipse Convertible -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 1998 Mitsubishi Eclipse Convertible) -> 1998 Mitsubishi Eclipse Convertible (11368ms) What is an eclipse? 1995 Mitsubishi Eclipse Hatchback -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 1995 Mitsubishi Eclipse Hatchback) -> 1995 Mitsubishi Eclipse Hatchback (11297ms) What is an eclipse? 2012 Mitsubishi Eclipse Coupe -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (2012 Mitsubishi Eclipse GT, Model Year, 2012 Mitsubishi Eclipse Coupe) -> 2012 Mitsubishi Eclipse Coupe (11678ms) What is an eclipse? 2000 Mitsubishi Eclipse Convertible -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2000 Mitsubishi Eclipse Convertible) -> 2000 Mitsubishi Eclipse Convertible (11368ms) What is an eclipse? 1991 Mitsubishi Eclipse -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 1991 Mitsubishi Eclipse) -> 1991 Mitsubishi Eclipse (11419ms) What is an eclipse? 2008 Mitsubishi Eclipse Spyder -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2008 Mitsubishi Eclipse Spyder) -> 2008 Mitsubishi Eclipse Spyder (11402ms) What is an eclipse? 1990 Mitsubishi Eclipse -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 1990 Mitsubishi Eclipse) -> 1990 Mitsubishi Eclipse (11618ms) What is an eclipse? 1997 Mitsubishi Eclipse Convertible -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 1997 Mitsubishi Eclipse Convertible) -> 1997 Mitsubishi Eclipse Convertible (11618ms) What is an eclipse? 2003 Mitsubishi Eclipse Hatchback -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2003 Mitsubishi Eclipse Hatchback) -> 2003 Mitsubishi Eclipse Hatchback (11451ms) What is an eclipse? 1997 Mitsubishi Eclipse Hatchback -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 1997 Mitsubishi Eclipse Hatchback) -> 1997 Mitsubishi Eclipse Hatchback (11557ms) What is an eclipse? 2001 Mitsubishi Eclipse Spyder -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2001 Mitsubishi Eclipse Spyder) -> 2001 Mitsubishi Eclipse Spyder (11557ms) What is an eclipse? 2000 Mitsubishi Eclipse Hatchback -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2000 Mitsubishi Eclipse Hatchback) -> 2000 Mitsubishi Eclipse Hatchback (11557ms) What is an eclipse? 1998 Mitsubishi Eclipse Hatchback -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 1998 Mitsubishi Eclipse Hatchback) -> 1998 Mitsubishi Eclipse Hatchback (11402ms) What is an eclipse? 2004 Mitsubishi Eclipse Hatchback -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2004 Mitsubishi Eclipse Hatchback) -> 2004 Mitsubishi Eclipse Hatchback (11537ms) What is an eclipse? 2007 Mitsubishi Eclipse Coupe -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2007 Mitsubishi Eclipse Coupe) -> 2007 Mitsubishi Eclipse Coupe (11537ms) What is an eclipse? 2004 Mitsubishi Eclipse Spyder -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2004 Mitsubishi Eclipse Spyder) -> 2004 Mitsubishi Eclipse Spyder (11678ms) What is an eclipse? 2012 Mitsubishi Eclipse Spyder -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2012 Mitsubishi Eclipse Spyder) -> 2012 Mitsubishi Eclipse Spyder (11453ms) What is an eclipse? 1999 Mitsubishi Eclipse Hatchback -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 1999 Mitsubishi Eclipse Hatchback) -> 1999 Mitsubishi Eclipse Hatchback (11402ms) What is an eclipse? 2011 Mitsubishi Eclipse Coupe -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (2011 Mitsubishi Eclipse GT, Model Year, 2011 Mitsubishi Eclipse Coupe) -> 2011 Mitsubishi Eclipse Coupe (11536ms) What is an eclipse? 2001 Mitsubishi Eclipse Hatchback -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2001 Mitsubishi Eclipse Hatchback) -> 2001 Mitsubishi Eclipse Hatchback (11297ms) What is an eclipse? 1996 Mitsubishi Eclipse Convertible -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 1996 Mitsubishi Eclipse Convertible) -> 1996 Mitsubishi Eclipse Convertible (11297ms) What is an eclipse? 2003 Mitsubishi Eclipse Spyder -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 2003 Mitsubishi Eclipse Spyder) -> 2003 Mitsubishi Eclipse Spyder (11537ms) What is an eclipse? 1996 Mitsubishi Eclipse Hatchback -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Mitsubishi Eclipse, Model Years, 1996 Mitsubishi Eclipse Hatchback) -> 1996 Mitsubishi Eclipse Hatchback (11368ms) What is an eclipse? 2010 Mitsubishi Eclipse Coupe -8.500518059102518 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (2010 Mitsubishi Eclipse GS, Model Year, 2010 Mitsubishi Eclipse Coupe) -> 2010 Mitsubishi Eclipse Coupe (11619ms) What is an eclipse? IBM -8.57231479111083 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, be a by, $x) -> (Eclipse, was originally a proprietary product developed by, IBM) -> IBM (12072ms) What is an eclipse? Eclipse IDE -8.784160672250573 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, be a by, $x) -> (the Eclipse RCP, is a by-product of, Eclipse IDE) -> Eclipse IDE (12072ms) What is an eclipse? event -8.967551762006671 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (eclipse, Instance Of, event) -> event (10179ms) What is an eclipse? Joel Harris -9.049592344733682 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, be a by, $x) -> (Solar Eclipses, is a new book by, Joel Harris) -> Joel Harris (12073ms) What is an eclipse? extension -9.160289202027375 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (ECLIPSE, Instance Of, extension) -> extension (10179ms) What is an eclipse? story -9.198739630479643 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipsed, Instance Of, story) -> story (10179ms) What is an eclipse? work -9.213722161537802 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, work) -> work (10194ms) What is an eclipse? moment -9.230629194828174 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, moment) -> moment (10194ms) What is an eclipse? host -9.25901958943625 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, host) -> host (10194ms) What is an eclipse? world -9.26205619215836 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, world) -> world (10194ms) What is an eclipse? portal -9.273501059033201 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, portal) -> portal (10194ms) What is an eclipse? band -9.276986287509086 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, band) -> band (10194ms) What is an eclipse? S.Meyer -9.292475958841662 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, be a by, $x) -> (Eclipse Twilight, is a work by, S.Meyer) -> S.Meyer (12072ms) What is an eclipse? technology -9.29553956385304 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, technology) -> technology (10213ms) What is an eclipse? shooter -9.298914714809245 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, shooter) -> shooter (10213ms) What is an eclipse? abstraction -9.341988680026748 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, abstraction) -> abstraction (10213ms) What is an eclipse? fact -9.349282579555918 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, fact) -> fact (10213ms) What is an eclipse? lady -9.349819364996609 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, lady) -> lady (10213ms) What is an eclipse? board -9.35113786747764 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> (Eclipse, Instance Of, board) -> board (10213ms) What is an eclipse? Rio de Janeiro -9.750930162507398 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an Earth Summit, was held in, Rio de Janeiro) -> Rio de Janeiro (12072ms) What is an eclipse? Earth orbit -9.80102322497383 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an artificial Earth satellite, is located in, Earth orbit) -> Earth orbit (12260ms) What is an eclipse? use -9.908102055595904 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an earth auger, is in, use) -> use (12260ms) What is an eclipse? the Great Depression -9.959883119421256 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an Earth, is therefore still in, the Great Depression) -> the Great Depression (12260ms) What is an eclipse? safety standards -10.019920283920966 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an earth ground, is shown in, safety standards) -> safety standards (12260ms) What is an eclipse? more concrete evidence -10.205053248144408 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (an old earth, is based on considerably, more concrete evidence) -> more concrete evidence (12260ms) What is an eclipse? 625 -10.221752882807339 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an Earth impact, are 1 in, 625) -> 625 (12305ms) What is an eclipse? Postgres Plus Advanced Server -10.241534474522316 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (Eclipse, supports modeling for, Postgres Plus Advanced Server) -> Postgres Plus Advanced Server (12305ms) What is an eclipse? social networks -10.246861277888964 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (an epic 387,870.5 Earth years, are spent on, social networks) -> social networks (12305ms) What is an eclipse? the ITRF -10.300174488961188 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an earth station, is known in, the ITRF) -> the ITRF (12305ms) What is an eclipse? a mission -10.315703751841172 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (An earth ship, is sent on, a mission) -> a mission (12305ms) What is an eclipse? a couch -10.361617456296182 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (an earth woman, are sitting on, a couch) -> a couch (12305ms) What is an eclipse? Venus -10.388069223293947 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an early earth, would be seen in, Venus) -> Venus (12329ms) What is an eclipse? Epsilon Aurigae -10.395256990880284 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> (Epsilon Aurigae, is what?s known as, an eclipsing star) -> Epsilon Aurigae (12329ms) What is an eclipse? a spacecraft -10.405007737802414 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (an Earth-like environment, be simulated on, a spacecraft) -> a spacecraft (12329ms) What is an eclipse? a man form -10.426679346216398 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (An earth form, was built on, a man form) -> a man form (12329ms) What is an eclipse? Sydney -10.434676552651606 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (An Expanding Earth Symposium, was held in, Sydney) -> Sydney (12329ms) What is an eclipse? Breed?s Hill -10.439058113938634 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (an earth redoubt, was built on, Breed?s Hill) -> Breed?s Hill (12329ms) What is an eclipse? a pedestal -10.45379767898596 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (an earth being, can be held up on, a pedestal) -> a pedestal (12345ms) What is an eclipse? Armenia -10.456311528813092 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an Earth Charter Youth Group, was established in, Armenia) -> Armenia (12344ms) What is an eclipse? an east/west axis -10.463025951550451 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (an earth-sheltered home, should be set on, an east/west axis) -> an east/west axis (12344ms) What is an eclipse? the Pacific Ocean -10.476201903406782 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an Earth-observation satellite, is in, the Pacific Ocean) -> the Pacific Ocean (12344ms) What is an eclipse? the Kinder Valley -10.480781944810253 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an earth Dam, was constructed in, the Kinder Valley) -> the Kinder Valley (12344ms) What is an eclipse? an Exd cable gland entry -10.540378437052519 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (an earth tag, be used on, an Exd cable gland entry) -> an Exd cable gland entry (12344ms) What is an eclipse? good confluence -10.555725272561107 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an earth-centered solar system, was in, good confluence) -> good confluence (12361ms) What is an eclipse? AGI website -10.56520054062425 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (An EarthImager 3D Demo version, is available on, AGI website) -> AGI website (12360ms) What is an eclipse? one class period -10.593652393575901 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (An Earth Day activity, can be done in, one class period) -> one class period (12361ms) What is an eclipse? coronagraph images -10.66182895825007 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an Earth-directed CME, is detected in, coronagraph images) -> coronagraph images (12361ms) What is an eclipse? chapter 14 -10.717587946334966 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an ?old ? Earth, is presented in, chapter 14) -> chapter 14 (12361ms) What is an eclipse? 2-5 days -10.752102733188318 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (An Earth-Mars trip, could be made comfortably in, 2-5 days) -> 2-5 days (12361ms) What is an eclipse? a credit classification -10.759753221139492 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (an earth, is often on, a credit classification) -> a credit classification (12422ms) What is an eclipse? DJ Eclipse -10.778581183001197 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (DJ Eclipse, Also known as, Eclipse, DJ) -> DJ Eclipse (14966ms) What is an eclipse? a constant state -10.858643019675545 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an online Earth science data locator, is in, a constant state) -> a constant state (12422ms) What is an eclipse? false -10.907668734038673 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (ArgoEclipse, Model Versioning, false) -> false (12422ms) What is an eclipse? a dark night -10.97519963378635 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (an Earth, could be more interesting on, a dark night) -> a dark night (12422ms) What is an eclipse? June 2009 -11.301374573672797 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (An additional 12 more EarthBoxes, were purchased in, June 2009) -> June 2009 (12423ms) What is an eclipse? June 6 , 2008 -11.354487038415552 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (an Earth swingby, is planned on, June 6 , 2008) -> June 6 , 2008 (12422ms) What is an eclipse? Hallowed Be Thy Name -11.366501182129307 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Hallowed Be Thy Name, Also known as, Total Eclipse) -> Hallowed Be Thy Name (14967ms) What is an eclipse? Raul Geisler -11.396238972129254 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Raul Geisler, Also known as, Eclipse) -> Raul Geisler (14967ms) What is an eclipse? Tonal Eclipse Music -11.492189355201125 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Tonal Eclipse Music, Also known as, Tonal Eclipse Music Company) -> Tonal Eclipse Music (14967ms) What is an eclipse? right now -11.568980220091149 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (A campaign to create an Earth flag, is going on, right now) -> right now (12521ms) What is an eclipse? the far side -11.575939134800828 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (An earth drake, was on, the far side) -> the far side (12521ms) What is an eclipse? Louisville Colonels -11.639580818170844 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Louisville Colonels, Previously Known As, Louisville Eclipse) -> Louisville Colonels (15137ms) What is an eclipse? Steve Johnson -11.639580818170844 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Steve Johnson, Also known as, Eclipse) -> Steve Johnson (15137ms) What is an eclipse? Incomplete Eclipse -11.639580818170844 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Incomplete Eclipse, Also known as, Partial Eclipse) -> Incomplete Eclipse (15138ms) What is an eclipse? Total Eclipse -11.639580818170844 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Total Eclipse, Also known as, Total Eclipse Soundtrack) -> Total Eclipse (15137ms) What is an eclipse? Chicco Secci -11.639580818170844 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Chicco Secci, Also known as, Eclipse) -> Chicco Secci (15137ms) What is an eclipse? Keith Bailey -11.639580818170844 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Keith Bailey, Also known as, DJ Total Eclipse) -> Keith Bailey (15137ms) What is an eclipse? the future -11.656930040398512 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, modelling, $x) -> (?Eclipse, may possibly be an effective model for, the future) -> the future (12521ms) What is an eclipse? The Eclipse: A Memoir of Suicide -11.723856629918382 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (The Eclipse: A Memoir of Suicide, Also known as, The Eclipse) -> The Eclipse: A Memoir of Suicide (15353ms) What is an eclipse? Together in Eclipse Bay -11.723856629918382 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Together in Eclipse Bay, Also known as, Eclipse Bay.) -> Together in Eclipse Bay (15377ms) What is an eclipse? Requiem for a Gringo -11.723856629918382 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Requiem for a Gringo, Also known as, Duel in the Eclipse) -> Requiem for a Gringo (15246ms) What is an eclipse? Almay 'Eclipse' TV Spot -11.723856629918382 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Almay 'Eclipse' TV Spot, Also known as, Almay "Eclipse" TV Spot) -> Almay 'Eclipse' TV Spot (15354ms) What is an eclipse? Crucifixion darkness and eclipse -11.723856629918382 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Crucifixion darkness and eclipse, Also known as, Crucifixion eclipse) -> Crucifixion darkness and eclipse (15246ms) What is an eclipse? Eclipse vs. Force Mass Motion -11.723856629918382 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Eclipse vs. Force Mass Motion, Also known as, Eclipse & Force Mass Motion) -> Eclipse vs. Force Mass Motion (15377ms) What is an eclipse? Soil & Eclipse -11.723856629918382 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Soil & Eclipse, Also known as, Soil and Eclipse) -> Soil & Eclipse (15246ms) What is an eclipse? Eclipse: A Novel of Lewis and Clark -11.723856629918382 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Eclipse: A Novel of Lewis and Clark, Also known as, Eclipse) -> Eclipse: A Novel of Lewis and Clark (15353ms) What is an eclipse? BCI Eclipse Company, LLC -11.723856629918382 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (BCI Eclipse Company, LLC, Also known as, BCI Eclipse Co LLC) -> BCI Eclipse Company, LLC (15137ms) What is an eclipse? Eclipse (K?lte Container remix) -11.723856629918382 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Eclipse (K?lte Container remix), Also known as, Eclipse (Kalte Container remix)) -> Eclipse (K?lte Container remix) (15246ms) What is an eclipse? Pok hoh ka fe -11.723856629918382 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Pok hoh ka fe, Also known as, Eclipse) -> Pok hoh ka fe (15137ms) What is an eclipse? Muv-Luv Alternative -11.723856629918382 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Muv-Luv Alternative, Also known as, Total Eclipse) -> Muv-Luv Alternative (15353ms) What is an eclipse? ?????? -11.723856629918382 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (??????, Also known as, Eclipse) -> ?????? (15246ms) What is an eclipse? Tanzania: political reform in eclipse : crises and cleavage in political parties -11.723856629918382 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Tanzania: political reform in eclipse : crises and cleavage in political parties, Also known as, Political reform in eclipse) -> Tanzania: political reform in eclipse : crises and cleavage in political parties (15246ms) What is an eclipse? CARDIOGENESIS CORP /CA -11.723856629918382 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (CARDIOGENESIS CORP /CA, Also known as, ECLIPSE SURGICAL TECHNOLOGIES INC) -> CARDIOGENESIS CORP /CA (15353ms) What is an eclipse? The Blue Eclipse -11.723856629918382 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (The Blue Eclipse, Also known as, Blue Eclipse, The) -> The Blue Eclipse (15353ms) What is an eclipse? White Line Highway -11.723856629918382 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (White Line Highway, Also known as, Solar Eclipse) -> White Line Highway (15353ms) What is an eclipse? Eclipse di Luna - Park Place -11.723856629918382 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Eclipse di Luna - Park Place, Also known as, Eclipse di Luna) -> Eclipse di Luna - Park Place (15353ms) What is an eclipse? Luner Eclipse (Inst.) -11.723856629918382 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Luner Eclipse (Inst.), Also known as, Lunar Eclipse (Instrumental Version)) -> Luner Eclipse (Inst.) (15377ms) What is an eclipse? Matt Gall -11.723856629918382 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Matt Gall, Also known as, Total Eclipse) -> Matt Gall (15246ms) What is an eclipse? 2200 -11.788070958605081 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: ($x, element, eclipse) -> (2200, contains Besselian elements for, the 570 solar eclipses) -> 2200 (12521ms) What is an eclipse? 1997 -11.795802123640874 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an Earth Charter Commission, was formed in, 1997) -> 1997 (12521ms) What is an eclipse? movie -11.848470528403208 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, be the kind of, $x) -> (Eclipse, is the kind of, movie) -> movie (10293ms) What is an eclipse? 2003 -11.893404910461854 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an Earth Conservation Corps volunteer, was murdered in, 2003) -> 2003 (12577ms) What is an eclipse? 1952 -11.905331191572134 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (An earth/rockfill dam, was constructed in, 1952) -> 1952 (12577ms) What is an eclipse? Total eclipse -11.927067137032573 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Total eclipse, Also known as, Total eclipse (Motion picture)) -> Total eclipse (15377ms) What is an eclipse? the hills -11.936382196254097 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (An ochrous earth, is also found in, the hills) -> the hills (12577ms) What is an eclipse? the roots -11.952297762283015 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (An Earth Treasure Vase, was buried in, the roots) -> the roots (12577ms) What is an eclipse? the kitchen -11.95760293339189 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (An extra earthed socket, was made in, the kitchen) -> the kitchen (12577ms) What is an eclipse? May 20th , 2012 -11.973526350278231 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> (May 20th , 2012, is known as, an Annular Solar Eclipse) -> May 20th , 2012 (12674ms) What is an eclipse? 1999 -11.990174692127166 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an Earth Charter dialogue process, was initiated in, 1999) -> 1999 (12674ms) What is an eclipse? truth -12.020660324148421 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an eternal kingdom...The earth, will be in, truth) -> truth (12674ms) What is an eclipse? the material world -12.04470411771431 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an Earth card, is usually in, the material world) -> the material world (12674ms) What is an eclipse? the same orbit -12.05466346862827 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an anti-earth, was discovered in, the same orbit) -> the same orbit (12674ms) What is an eclipse? uranium ores -12.059695919843104 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an alkaline earth metal, is found in, uranium ores) -> uranium ores (12675ms) What is an eclipse? the second column -12.08796511104596 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (An alkaline earth, is any element in, the second column) -> the second column (12691ms) What is an eclipse? the next packing -12.092283563236204 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an earth tone or two, will be included in, the next packing) -> the next packing (12690ms) What is an eclipse? the research stage -12.114947991132958 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an anelastic earth, are still in, the research stage) -> the research stage (12690ms) What is an eclipse? Zonin' (feat. 427) -12.116414090699118 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Zonin' (feat. 427), Also known as, Zonin' (feat. Eclipse 427)) -> Zonin' (feat. 427) (15401ms) What is an eclipse? Eclipse (1988) -12.116414090699118 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Eclipse (1988), Also known as, Eclipse) -> Eclipse (1988) (15377ms) What is an eclipse? The Eclipse, Part 1 -12.116414090699118 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (The Eclipse, Part 1, Also known as, The Eclipse (1)) -> The Eclipse, Part 1 (15401ms) What is an eclipse? C/1948 V1 -12.116414090699118 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (C/1948 V1, Also known as, Eclipse Comet of 1948) -> C/1948 V1 (15377ms) What is an eclipse? Eclipse 400 -12.116414090699118 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Eclipse 400, Also known as, Eclipse ECJ) -> Eclipse 400 (15401ms) What is an eclipse? 427 -12.116414090699118 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (427, Also known as, Eclipse 427) -> 427 (15401ms) What is an eclipse? The Eclipse, Part 2 -12.116414090699118 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (The Eclipse, Part 2, Also known as, The Eclipse (2)) -> The Eclipse, Part 2 (15401ms) What is an eclipse? Untitled (Cr?me Eclipse 01) -12.116414090699118 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Untitled (Cr?me Eclipse 01), Also known as, Untitled (Creme Eclipse 01)) -> Untitled (Cr?me Eclipse 01) (15377ms) What is an eclipse? the last lines -12.133390899988488 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an eternal earth, is rejected in, the last lines) -> the last lines (12690ms) What is an eclipse? the form -12.133453703305523 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an Earth Witch, is in, the form) -> the form (12690ms) What is an eclipse? the virgin light -12.182509851908893 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (An Earth-like planet, is bathed in, the virgin light) -> the virgin light (12690ms) What is an eclipse? furnishings -12.197141872522902 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (An earth-tone palette, is favored in, furnishings) -> furnishings (12705ms) What is an eclipse? the right place -12.24846182417198 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an Earth-like planet, is found in, the right place) -> the right place (12705ms) What is an eclipse? Vox Terrae -12.249577169867305 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Vox Terrae, Also known as, Eclipse Music Group) -> Vox Terrae (15401ms) What is an eclipse? The Eclipse -12.249577169867305 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (The Eclipse, Also known as, Eclipse, The) -> The Eclipse (15401ms) What is an eclipse? the ground -12.262667282785072 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (An earth oven, is simply a pit in, the ground) -> the ground (12705ms) What is an eclipse? the target plane -12.287793820106241 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an Earth close approach, are studied in, the target plane) -> the target plane (12706ms) What is an eclipse? heaven -12.292893478520247 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an earth, shall be bound also in, heaven) -> heaven (12705ms) What is an eclipse? the exclamation point -12.30505049167429 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (An earth globe, is the dot in, the exclamation point) -> the exclamation point (12705ms) What is an eclipse? the spirit -12.314839450807977 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an earth, is embedded in, the spirit) -> the spirit (12720ms) What is an eclipse? the pulse -12.347643235111779 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (an Earth Sandwich, is must have his finger on, the pulse) -> the pulse (12720ms) What is an eclipse? the cards -12.360817723390245 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (an Earth-like planet, is on, the cards) -> the cards (12720ms) What is an eclipse? the midst -12.379187291228325 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an Earth starship, are stranded in, the midst) -> the midst (12721ms) What is an eclipse? the famous Lumbini Core Garden -12.383380114650695 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (An Earth Prayer, was recited in, the famous Lumbini Core Garden) -> the famous Lumbini Core Garden (12720ms) What is an eclipse? William -12.3860137719049 What is an eclipse? -> what be [ an eclipse ] ? -> what exactly be an eclipse ? -> $x: ($x, exactly be, an eclipse) -> (William, is born exactly on, an eclipse) -> William (15401ms) What is an eclipse? the context -12.41101842328616 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an ?earth ?, are used in, the context) -> the context (12720ms) What is an eclipse? the iConEMI Receiver -12.412465683729707 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (An earth ground terminal, is included on, the iConEMI Receiver) -> the iConEMI Receiver (12737ms) What is an eclipse? Genesis -12.415574980885182 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Genesis, Also known as, Prizim & Eclipse-Genesis) -> Genesis (15431ms) What is an eclipse? Altitude -12.415574980885182 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Altitude, Also known as, Eclipse) -> Altitude (15431ms) What is an eclipse? Eclipse -12.415574980885182 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Eclipse, Also known as, Warriors: Eclipse) -> Eclipse (15455ms) What is an eclipse? Venomous -12.415574980885182 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Venomous, Also known as, Eclipse) -> Venomous (15431ms) What is an eclipse? the base -12.416845402928832 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an Earth ring member 48, is located in, the base) -> the base (12737ms) What is an eclipse? the night sky -12.434645648490031 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (Earth ,?an ?Earth, is visible in, the night sky) -> the night sky (12736ms) What is an eclipse? the laws -12.435775958730634 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (An Earth Jurisprudence, is implicit in, the laws) -> the laws (12736ms) What is an eclipse? an intelligent usage -12.450907072472825 What is an eclipse? -> what be [ an ] eclipse ? -> what do an mean in science ? -> $x: ($x, do an mean in, science) -> $x: ($x, mean in, science) -> (an intelligent usage, convey its meaning in, Christian Science) -> an intelligent usage (12737ms) What is an eclipse? the planet -12.461119818133866 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (an earth day, is cheapest--on the dark side of, the planet) -> the planet (12751ms) What is an eclipse? the bank -12.477760665788256 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (an earth rampant, was built on, the bank) -> the bank (12751ms) What is an eclipse? the principle -12.479985858510709 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (an old earth, is based on, the principle) -> the principle (12751ms) What is an eclipse? a word -12.500373858364993 What is an eclipse? -> what be [ an ] eclipse ? -> what do an mean in science ? -> $x: ($x, do an mean in, science) -> $x: ($x, mean in, science) -> (a word, has a slightly different meaning in, Science) -> a word (12751ms) What is an eclipse? the Vietnam war -12.504317924561706 What is an eclipse? -> what [ be an eclipse ] ? -> what be be an eclipse on tv ? -> $x: ($x, be be an eclipse on, tv) -> $x: ($x, eclipse on, tv) -> (the Vietnam war, might be eclipsed on, the TV news) -> the Vietnam war (13007ms) What is an eclipse? the interior -12.521702203080892 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an earth resistance survey, was conducted in, the interior) -> the interior (12750ms) What is an eclipse? the minds -12.52612318778867 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an old earth, was firmly entrenched in, the minds) -> the minds (12751ms) What is an eclipse? the surface -12.542922940218684 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (an Earth house, is currently parked on, the surface) -> the surface (12768ms) What is an eclipse? the production -12.583557925381726 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an FYI , rare earth, is a critical component in, the production) -> the production (12767ms) What is an eclipse? shape -12.591539760534525 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an earth altar, is squar in, shape) -> shape (12767ms) What is an eclipse? the paint -12.602591486889642 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (An earth friendly compound, is mixed in with, the paint) -> the paint (12767ms) What is an eclipse? dispute -12.62412986261678 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an earth-shattering mathematical proof, is in, dispute) -> dispute (12768ms) What is an eclipse? Energy -12.635517407532344 What is an eclipse? -> what be [ an ] eclipse ? -> what do an mean in science ? -> $x: ($x, do an mean in, science) -> $x: ($x, mean in, science) -> (Energy, has a special meaning in, science) -> Energy (12767ms) What is an eclipse? the tower -12.646801386669715 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (an earth tone color, shall be used on, the tower) -> the tower (12791ms) What is an eclipse? clay -12.64724424163574 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an earth mixture, is high in, clay) -> clay (12790ms) What is an eclipse? place -12.649012614437932 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an Earth Day, is already in, place) -> place (12790ms) What is an eclipse? Zhang Heng -12.653079541264606 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Zhang Heng, Known for, Lunar eclipse) -> Zhang Heng (15478ms) What is an eclipse? Hamilton Dean -12.653079541264606 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Hamilton Dean, Also known as, Eclipse) -> Hamilton Dean (15478ms) What is an eclipse? terms -12.657591458332103 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an Earth observing satellite, are specified in, terms) -> terms (12790ms) What is an eclipse? Predict -12.660274942976818 What is an eclipse? -> what be [ an ] eclipse ? -> what do an mean in science ? -> $x: ($x, do an mean in, science) -> $x: ($x, mean in, science) -> (Predict, has a very distinct meaning in, science) -> Predict (12790ms) What is an eclipse? the boards -12.689400380145797 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (an ABC Earth Day special ??DiCaprio, is currently on, the boards) -> the boards (12790ms) What is an eclipse? love -12.694106700619102 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an earth woman, had been in, love) -> love (12810ms) What is an eclipse? mitochondria -12.694990939722492 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (An earth metal, is present in, mitochondria) -> mitochondria (12810ms) What is an eclipse? view -12.704081119056282 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (An Earth Installation, is on, view) -> view (12811ms) What is an eclipse? modality -12.806399849222625 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an Earth sign, is Fixed in, modality) -> modality (12810ms) What is an eclipse? process -12.811506462937372 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (an Earth-Juno synodic cycle, are newly in, process) -> process (12810ms) What is an eclipse? The hybrid eclipse -12.868555486901002 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> (The hybrid eclipse, is also known as, an annular/total eclipse) -> The hybrid eclipse (12810ms) What is an eclipse? site -12.87448304534378 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (An earth moving unit, is on, site) -> site (12832ms) What is an eclipse? creepy-crawlies -12.907619519505975 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, depends on, creepy-crawlies) -> creepy-crawlies (14405ms) What is an eclipse? findings -12.922458552517245 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> (An Advanced Earth-Space Infrastructure, is based on, findings) -> findings (12831ms) What is an eclipse? the Moon -12.950107930886478 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, found on, the Moon) -> the Moon (14405ms) What is an eclipse? Integration -12.996251169854386 What is an eclipse? -> what be [ an ] eclipse ? -> what do an mean in science ? -> $x: ($x, do an mean in, science) -> $x: ($x, mean in, science) -> (Integration, mean in, the social sciences or humanities) -> Integration (12831ms) What is an eclipse? a 700 year voyage -13.147248193815612 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, are on, a 700 year voyage) -> a 700 year voyage (14405ms) What is an eclipse? eclipse -13.150039494533168 What is an eclipse? -> $x: (an eclipse, instance of, $x) -> $x: (eclipse, instance of, $x) -> $x: (eclipse, be the type of, $x) -> (Solar eclipse, is the type of, eclipse) -> eclipse (12831ms) What is an eclipse? the Wasatch Mountains east -13.216610162582281 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, settles on, the Wasatch Mountains east) -> the Wasatch Mountains east (14405ms) What is an eclipse? An annular eclipse -13.229616702657312 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (An annular eclipse, is a well-known type of, solar eclipse) -> An annular eclipse (15478ms) What is an eclipse? solar energy -13.237981781152328 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, depends on, solar energy) -> solar energy (14405ms) What is an eclipse? average approximately -13.242441565530665 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, is on, average approximately) -> average approximately (14405ms) What is an eclipse? molecular oxygen -13.287889051131984 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, survive on, molecular oxygen) -> molecular oxygen (14503ms) What is an eclipse? CO2 -13.324097266435007 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, depends on, CO2) -> CO2 (14503ms) What is an eclipse? The district -13.368487731622757 What is an eclipse? -> what be [ an ] eclipse ? -> what do an mean in science ? -> $x: ($x, do an mean in, science) -> $x: ($x, mean in, science) -> (The district, mean score in, FCAT Science) -> The district (12831ms) What is an eclipse? an internet forum -13.429359607464772 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, lie on, an internet forum) -> an internet forum (14503ms) What is an eclipse? danger of being hit by an asteroid -13.469141616528734 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, danger of being hit by an asteroid) -> danger of being hit by an asteroid (14504ms) What is an eclipse? an interglacial period -13.477124975761622 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, an interglacial period) -> an interglacial period (14503ms) What is an eclipse? a spirited holiday finale -13.485977487653876 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth ? ?, takes on, a spirited holiday finale) -> a spirited holiday finale (14504ms) What is an eclipse? the Art Bell -13.546102900760573 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, Release on, the Art Bell) -> the Art Bell (15500ms) What is an eclipse? The eclipse of Darwinism -13.557858818900504 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (The eclipse of Darwinism, Also known as, The eclipse of Darwin) -> The eclipse of Darwinism (15500ms) What is an eclipse? Java?s success -13.571419283553276 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Java?s success, has been the phenomenon known as, Eclipse) -> Java?s success (15500ms) What is an eclipse? popular video sites -13.571465885876858 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, placed on, popular video sites) -> popular video sites (15500ms) What is an eclipse? a cross -13.589861929264455 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, hung on, a cross) -> a cross (15500ms) What is an eclipse? Nantucket -13.638354051673852 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, unload on, Nantucket) -> Nantucket (15501ms) What is an eclipse? a blind -13.675080667383526 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, a blind) -> a blind (15500ms) What is an eclipse? four legs -13.694601138738587 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, walked on, four legs) -> four legs (15500ms) What is an eclipse? a system -13.72118415634247 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, is on, a system) -> a system (15523ms) What is an eclipse? one another -13.7574494410583 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, depend on, one another) -> one another (15523ms) What is an eclipse? a period of warming -13.766331567594204 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, a period of warming) -> a period of warming (15523ms) What is an eclipse? Road/Race -13.781267228828774 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Road/Race, is well known in, the Eclipse community) -> Road/Race (15523ms) What is an eclipse? less than $ 2 -13.784353157845333 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth ?, survive on, less than $ 2) -> less than $ 2 (15523ms) What is an eclipse? a dozen or -13.822596057134245 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (a dozen or, so are known to undergo, eclipses) -> a dozen or (15523ms) What is an eclipse? a different part of its orbit -13.839995027732506 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, a different part of its orbit) -> a different part of its orbit (15523ms) What is an eclipse? a wide variety -13.846396889097479 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, take on, a wide variety) -> a wide variety (15523ms) What is an eclipse? a collision course with another planet -13.891470782097642 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, is on, a collision course with another planet) -> a collision course with another planet (15545ms) What is an eclipse? Aug. 27 , 2003 -13.89903249737366 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, was on, Aug. 27 , 2003) -> Aug. 27 , 2003 (15545ms) What is an eclipse? Oct. 20 -13.935882585961341 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, occurred on, Oct. 20) -> Oct. 20 (15545ms) What is an eclipse? the rocks -13.953620811110433 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (The evidence for an ancient Earth, is concealed in, the rocks) -> the rocks (12848ms) What is an eclipse? April 10 , 837 a.d. -13.99329378995964 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, was on, April 10 , 837 a.d.) -> April 10 , 837 a.d. (15545ms) What is an eclipse? a developer -14.007082019234613 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (a developer, knows, Eclipse) -> a developer (15545ms) What is an eclipse? sure nobody -14.028769437120635 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth an, seem on, $x) -> (an Earth worth, seem intent on making, sure nobody) -> sure nobody (16549ms) What is an eclipse? HURRY UP! -14.048633411167328 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (HURRY UP!, Wanna know more about Twilight, Eclipse) -> HURRY UP! (15545ms) What is an eclipse? prime health -14.069961974656954 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, was in, prime health) -> prime health (15545ms) What is an eclipse? Monday -14.081125982096237 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, Posted on, Monday) -> Monday (15545ms) What is an eclipse? an elliptical orbit around the sun -14.09336635202673 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, is on, an elliptical orbit around the sun) -> an elliptical orbit around the sun (15567ms) What is an eclipse? now -14.10072432124378 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, now) -> now (15566ms) What is an eclipse? Mars -14.12611583205154 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, live on, Mars) -> Mars (15566ms) What is an eclipse? the word theory -14.131396895831385 What is an eclipse? -> what be [ an ] eclipse ? -> what do an mean in science ? -> $x: ($x, do an mean in, science) -> $x: ($x, mean in, science) -> (the word theory, has a drastically different meaning in, science) -> the word theory (12848ms) What is an eclipse? danger of being destroyed -14.138350188799327 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (earth, is in, danger of being destroyed) -> danger of being destroyed (15566ms) What is an eclipse? a Universe -14.213897682830503 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, existed in, a Universe) -> a Universe (15566ms) What is an eclipse? top of water -14.22625041134313 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, sitting on, top of water) -> top of water (15567ms) What is an eclipse? a soul 's use -14.248826229886715 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, forced on, a soul 's use) -> a soul 's use (15566ms) What is an eclipse? a race track -14.249550402383443 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, is on, a race track) -> a race track (15588ms) What is an eclipse? account of the Titans -14.249929130811537 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, vexed on, account of the Titans) -> account of the Titans (15588ms) What is an eclipse? a budget -14.25721732802608 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, works on, a budget) -> a budget (15588ms) What is an eclipse? Hell -14.265020383164273 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, Is On, Hell) -> Hell (15588ms) What is an eclipse? an axis -14.26580843081534 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, rotates on, an axis) -> an axis (15588ms) What is an eclipse? Even supposing Thales -14.282453876880641 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Even supposing Thales, had known the cause of, eclipses) -> Even supposing Thales (15588ms) What is an eclipse? a period -14.289914165872847 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, a period) -> a period (15588ms) What is an eclipse? Peace -14.305069447400514 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, Peace) -> Peace (15588ms) What is an eclipse? a mess -14.32500777297651 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, a mess) -> a mess (15610ms) What is an eclipse? The term -14.334405044027513 What is an eclipse? -> what be [ an ] eclipse ? -> what do an mean in science ? -> $x: ($x, do an mean in, science) -> $x: ($x, mean in, science) -> (The term, acquired this meaning in, computer-science culture) -> The term (12848ms) What is an eclipse? the New Deal electoral coalition -14.3359510201031 What is an eclipse? -> what [ be an eclipse ] ? -> what bring about be an eclipse ? -> $x: ($x, bring about be, an eclipse) -> $x: ($x, bring about, eclipse) -> (the New Deal electoral coalition, brought about, the eclipse) -> the New Deal electoral coalition (16291ms) What is an eclipse? danger of destruction -14.380655513611039 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, danger of destruction) -> danger of destruction (15610ms) What is an eclipse? the Photon Belt -14.387350858038056 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, the Photon Belt) -> the Photon Belt (15610ms) What is an eclipse? approximate energy balance -14.38745627615214 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, approximate energy balance) -> approximate energy balance (15610ms) What is an eclipse? The word ?replicate? -14.397604996337883 What is an eclipse? -> what be [ an ] eclipse ? -> what do an mean in science ? -> $x: ($x, do an mean in, science) -> $x: ($x, mean in, science) -> (The word ?replicate?, does have a specific meaning in, science) -> The word ?replicate? (12848ms) What is an eclipse? The term ?emulation? -14.401141741942268 What is an eclipse? -> what be [ an ] eclipse ? -> what do an mean in science ? -> $x: ($x, do an mean in, science) -> $x: ($x, mean in, science) -> (The term ?emulation?, has a special meaning in, computer science) -> The term ?emulation? (12865ms) What is an eclipse? The White paper -14.401446225148222 What is an eclipse? -> what [ be an eclipse ] ? -> what bring about be an eclipse ? -> $x: ($x, bring about be, an eclipse) -> $x: ($x, bring about, eclipse) -> (The White paper, brought about, the eclipse) -> The White paper (16291ms) What is an eclipse? the Slow Zone -14.40775197690201 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, the Slow Zone) -> the Slow Zone (15610ms) What is an eclipse? dire crisis for survival -14.44422442803782 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, dire crisis for survival) -> dire crisis for survival (15610ms) What is an eclipse? an orbit around the Sun -14.459507657554322 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, moves in, an orbit around the Sun) -> an orbit around the Sun (15610ms) What is an eclipse? layers -14.459779895353106 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> (An embankment dam of earth or rock, is placed in, layers) -> layers (12865ms) What is an eclipse? theory -14.475402960448873 What is an eclipse? -> what be [ an ] eclipse ? -> what do an mean in science ? -> $x: ($x, do an mean in, science) -> $x: ($x, mean in, science) -> (theory, has a different meaning in, science) -> theory (12864ms) What is an eclipse? The term theory -14.477118205652921 What is an eclipse? -> what be [ an ] eclipse ? -> what do an mean in science ? -> $x: ($x, do an mean in, science) -> $x: ($x, mean in, science) -> (The term theory, has a very different meaning in, science) -> The term theory (12865ms) What is an eclipse? a constant state of change -14.483208658705719 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, a constant state of change) -> a constant state of change (15610ms) What is an eclipse? big trouble -14.571780863121944 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, was in, big trouble) -> big trouble (15631ms) What is an eclipse? the word -14.644319414297833 What is an eclipse? -> what be [ an ] eclipse ? -> what do an mean in science ? -> $x: ($x, do an mean in, science) -> $x: ($x, mean in, science) -> (the word, has a special prestigious meaning in, science fiction) -> the word (12865ms) What is an eclipse? mortal danger -14.673785591290994 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, mortal danger) -> mortal danger (15631ms) What is an eclipse? the Alpha quadrant -14.674442965592267 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, was in, the Alpha quadrant) -> the Alpha quadrant (15631ms) What is an eclipse? deep crisis -14.682420184992258 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, deep crisis) -> deep crisis (15631ms) What is an eclipse? total chaos -14.682420184992258 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, was in, total chaos) -> total chaos (15631ms) What is an eclipse? full view -14.694186710154947 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, full view) -> full view (15631ms) What is an eclipse? the Saros -14.76406585313671 What is an eclipse? -> what [ be an eclipse ] ? -> what bring about be an eclipse ? -> $x: ($x, bring about be, an eclipse) -> $x: ($x, bring about, eclipse) -> (the Saros, fails to bring about, an eclipse) -> the Saros (16291ms) What is an eclipse? a counter-clockwise direction -14.769741402350407 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, rotates in, a counter-clockwise direction) -> a counter-clockwise direction (15631ms) What is an eclipse? an imaginary axis -14.785486192241159 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, rotates on, an imaginary axis) -> an imaginary axis (15631ms) What is an eclipse? and of itself -14.785802948648787 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (earth, shattering in, and of itself) -> and of itself (15653ms) What is an eclipse? a cooling trend -14.810741930541155 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, a cooling trend) -> a cooling trend (15653ms) What is an eclipse? quality -14.821472166779099 What is an eclipse? -> what be [ an ] eclipse ? -> what do an mean in science ? -> $x: ($x, do an mean in, science) -> $x: ($x, mean in, science) -> (quality, mean in, science communication) -> quality (12878ms) What is an eclipse? a pure , Aboriginal state -14.823317865101869 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, come in, a pure , Aboriginal state) -> a pure , Aboriginal state (15653ms) What is an eclipse? a warming cycle -14.840508131799766 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, a warming cycle) -> a warming cycle (15653ms) What is an eclipse? a great flame of radiant power -14.86128444022202 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, enwrapped in, a great flame of radiant power) -> a great flame of radiant power (15653ms) What is an eclipse? consensus -14.868852093932144 What is an eclipse? -> what be [ an ] eclipse ? -> what do an mean in science ? -> $x: ($x, do an mean in, science) -> $x: ($x, mean in, science) -> (consensus, should n?t mean squat in, science) -> consensus (12878ms) What is an eclipse? a transitional period -14.873775137881436 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, a transitional period) -> a transitional period (15653ms) What is an eclipse? Bapsi Sidhwa 's critically acclaimed novel -14.874153866309532 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, based on, Bapsi Sidhwa 's critically acclaimed novel) -> Bapsi Sidhwa 's critically acclaimed novel (15653ms) What is an eclipse? the floor -14.883983818565074 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, is on, the floor) -> the floor (15653ms) What is an eclipse? Day One -14.88422590728744 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, created on, Day One) -> Day One (15673ms) What is an eclipse? the sunward side -14.916501914389888 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, was on, the sunward side) -> the sunward side (15673ms) What is an eclipse? a 3rd dimension of time and space -14.93574185897553 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, a 3rd dimension of time and space) -> a 3rd dimension of time and space (15673ms) What is an eclipse? English -14.963334919187258 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, English) -> English (15673ms) What is an eclipse? a property -14.973565524858923 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (a property, known as, the Eclipse Mine) -> a property (15673ms) What is an eclipse? Danger -14.998210862241386 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, Danger) -> Danger (15673ms) What is an eclipse? tonus -15.049228438656822 What is an eclipse? -> what be [ an ] eclipse ? -> what do an mean in science ? -> $x: ($x, do an mean in, science) -> $x: ($x, mean in, science) -> (tonus, has a very specific meaning in, exercise science) -> tonus (12878ms) What is an eclipse? the beginning ' -15.05206771875227 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, 'in, the beginning ') -> the beginning ' (15673ms) What is an eclipse? the edge -15.062720238013643 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, stood on, the edge) -> the edge (15673ms) What is an eclipse? the outside -15.072092994410148 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, is on, the outside) -> the outside (15693ms) What is an eclipse? 03/09/06-07 -15.093554775144932 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, facing on, 03/09/06-07) -> 03/09/06-07 (15693ms) What is an eclipse? an event -15.109331687191908 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (an event, known as, a secondary eclipse) -> an event (15693ms) What is an eclipse? the part -15.134112049398013 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, was on, the part) -> the part (15693ms) What is an eclipse? Sector 2814 -15.144617398135752 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, Sector 2814) -> Sector 2814 (15693ms) What is an eclipse? pretty bad shape -15.147033072941634 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, pretty bad shape) -> pretty bad shape (15693ms) What is an eclipse? a day -15.147403391506561 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, rotates in, a day) -> a day (15694ms) What is an eclipse? the precipice -15.165058995054752 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, is on, the precipice) -> the precipice (15693ms) What is an eclipse? the strategy and science -15.170550224865764 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, agreed on, the strategy and science) -> the strategy and science (15854ms) What is an eclipse? several places -15.19534393878443 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, opened in, several places) -> several places (15855ms) What is an eclipse? recent decades -15.207644063294971 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earths, warming in, recent decades) -> recent decades (15855ms) What is an eclipse? the testscript plugin -15.24533052837027 What is an eclipse? -> what be [ an eclipse ] ? -> what id an eclipse ? -> $x: ($x, id, an eclipse) -> (the testscript plugin, id for, an eclipse RCP application) -> the testscript plugin (15855ms) What is an eclipse? 6 days or 8 days -15.265608426165446 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, created in, 6 days or 8 days) -> 6 days or 8 days (15855ms) What is an eclipse? the '40s -15.265608426165446 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, cooled in, the '40s) -> the '40s (15855ms) What is an eclipse? Sector 001 -15.26671132709027 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, located in, Sector 001) -> Sector 001 (15854ms) What is an eclipse? a different axis -15.35024906826687 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, rotated on, a different axis) -> a different axis (15855ms) What is an eclipse? a large animal -15.35024906826687 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, sat on, a large animal) -> a large animal (15876ms) What is an eclipse? the northern slope -15.381808947119927 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, moved on, the northern slope) -> the northern slope (15876ms) What is an eclipse? groundwater -15.423419362592561 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, rely on, groundwater) -> groundwater (15876ms) What is an eclipse? course -15.4592103108734 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, was on, course) -> course (15876ms) What is an eclipse? The organizers -15.500641898983135 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (The organizers, are well known, Eclipse folks) -> The organizers (15876ms) What is an eclipse? the risk -15.504800255984765 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, take on, the risk) -> the risk (15876ms) What is an eclipse? supply -15.506654806153701 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, is on, supply) -> supply (15876ms) What is an eclipse? food -15.520681131568264 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, depends on, food) -> food (15876ms) What is an eclipse? a technique -15.584491679482248 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (a technique, known as, the secondary eclipse) -> a technique (15896ms) What is an eclipse? the wastes -15.60383039776266 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, manage on, the wastes) -> the wastes (15896ms) What is an eclipse? stage -15.616765910269848 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, is going on on, stage) -> stage (15896ms) What is an eclipse? the sidelines -15.617912970159836 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, stand on, the sidelines) -> the sidelines (15896ms) What is an eclipse? August 12th -15.624723579629194 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, passes on, August 12th) -> August 12th (15896ms) What is an eclipse? the guitar -15.637174772996985 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, played on, the guitar) -> the guitar (15896ms) What is an eclipse? The assistants -15.643052921341342 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (The assistants, know, Eclipse well) -> The assistants (15896ms) What is an eclipse? the ocean -15.652461282250512 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, sit on, the ocean) -> the ocean (16065ms) What is an eclipse? the verge of extinction -15.65400188152195 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, is on, the verge of extinction) -> the verge of extinction (16065ms) What is an eclipse? the brink of extinction -15.65400188152195 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, is on, the brink of extinction) -> the brink of extinction (16065ms) What is an eclipse? the cooperation -15.654229655052704 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, depends on, the cooperation) -> the cooperation (16065ms) What is an eclipse? the past -15.678038435968826 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, meditate on, the past) -> the past (16065ms) What is an eclipse? March 25-28 -15.680650569819363 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, facing on, March 25-28) -> March 25-28 (16065ms) What is an eclipse? eclipses -15.682476790053354 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (eclipses, are known as, ?eclipse glyphs) -> eclipses (16065ms) What is an eclipse? Wanna -15.683519768934593 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (Wanna, know, more about Twilight Eclipse) -> Wanna (16065ms) What is an eclipse? the region -15.691365958219414 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, landed on, the region) -> the region (16117ms) What is an eclipse? the form of a sphere -15.69298611218985 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, the form of a sphere) -> the form of a sphere (16117ms) What is an eclipse? the verge of another Ice Age -15.717282665540324 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, is on, the verge of another Ice Age) -> the verge of another Ice Age (16117ms) What is an eclipse? The change -15.771261583271489 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (The change, yet knew, the swift eclipse) -> The change (16117ms) What is an eclipse? The nodal axis -15.804338005631216 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (The nodal axis, is a known trigger of, eclipse energies) -> The nodal axis (16117ms) What is an eclipse? the hat -15.926025881655685 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (the hat, knew only of, local eclipses) -> the hat (16117ms) What is an eclipse? peace -16.013058066975233 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (peace, knew about, the solar eclipses) -> peace (16117ms) What is an eclipse? land -16.061791291317277 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, live on, land) -> land (16138ms) What is an eclipse? warmth -16.072337065407773 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, depend on, warmth) -> warmth (16138ms) What is an eclipse? flesh -16.074170059039517 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (earth, put on, flesh) -> flesh (16138ms) What is an eclipse? anthropology -16.110700541850512 What is an eclipse? -> what [ be an eclipse ] ? -> what bring about be an eclipse ? -> $x: ($x, bring about be, an eclipse) -> $x: ($x, bring about, eclipse) -> (anthropology, could easily bring about, the eclipse) -> anthropology (16291ms) What is an eclipse? need -16.16946400383087 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, need) -> need (16138ms) What is an eclipse? target -16.17259055538228 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, is on, target) -> target (16138ms) What is an eclipse? the gaseous state -16.208003405437815 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (earth, was in, the gaseous state) -> the gaseous state (16138ms) What is an eclipse? the brink of destruction -16.222949555101863 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, is on, the brink of destruction) -> the brink of destruction (16138ms) What is an eclipse? the brink of disaster -16.243350673965814 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, is on, the brink of disaster) -> the brink of disaster (16156ms) What is an eclipse? the same place in the sky -16.244959610938274 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, the same place in the sky) -> the same place in the sky (16156ms) What is an eclipse? the verge of destruction -16.25782549815599 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, is on, the verge of destruction) -> the verge of destruction (16156ms) What is an eclipse? the verge of disaster -16.278226617019943 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, is on, the verge of disaster) -> the verge of disaster (16157ms) What is an eclipse? the process of creation -16.278226617019943 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, was in, the process of creation) -> the process of creation (16156ms) What is an eclipse? history -16.282389264133705 What is an eclipse? -> what [ be an eclipse ] ? -> what bring about be an eclipse ? -> $x: ($x, bring about be, an eclipse) -> $x: ($x, bring about, eclipse) -> (history, has brought about, an eclipse) -> history (16291ms) What is an eclipse? 1910 -16.282901728811478 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, passed in, 1910) -> 1910 (16156ms) What is an eclipse? the middle of empty space -16.317210847687843 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, the middle of empty space) -> the middle of empty space (16156ms) What is an eclipse? 2012 -16.3413576955994 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, end in, 2012) -> 2012 (16157ms) What is an eclipse? the outer fringes of the Photon Belt -16.360872648480488 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, the outer fringes of the Photon Belt) -> the outer fringes of the Photon Belt (16291ms) What is an eclipse? the throes of a mass extinction event -16.37718658717692 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, the throes of a mass extinction event) -> the throes of a mass extinction event (16328ms) What is an eclipse? the center of the habitable zone around the sun -16.37718658717692 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, the center of the habitable zone around the sun) -> the center of the habitable zone around the sun (16291ms) What is an eclipse? the border between Shabaali and Sebth space -16.38836152907965 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, is on, the border between Shabaali and Sebth space) -> the border between Shabaali and Sebth space (16328ms) What is an eclipse? the north -16.440658995158195 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, the north) -> the north (16328ms) What is an eclipse? the hands of the wise -16.67378614828516 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, turns in, the hands of the wise) -> the hands of the wise (16328ms) What is an eclipse? the sky -16.67378614828516 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, hung in, the sky) -> the sky (16328ms) What is an eclipse? average -16.680074923213866 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, was on, average) -> average (16377ms) What is an eclipse? the flanks of Volcano Tungurahua -16.685891496501593 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, Nestled on, the flanks of Volcano Tungurahua) -> the flanks of Volcano Tungurahua (16377ms) What is an eclipse? the grip of terror -16.68665203550288 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, remains in, the grip of terror) -> the grip of terror (16377ms) What is an eclipse? the first place -16.68665203550288 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, formed in, the first place) -> the first place (16377ms) What is an eclipse? water -16.720498653623615 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, covered in, water) -> water (16377ms) What is an eclipse? currently -16.73133090543767 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, currently) -> currently (16377ms) What is an eclipse? chaos -16.75401723121069 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, chaos) -> chaos (16377ms) What is an eclipse? travail -16.758812796274736 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, was in, travail) -> travail (16473ms) What is an eclipse? track -16.764114047505775 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be on, $x) -> $x: (earth, on, $x) -> (Earth, is on, track) -> track (16473ms) What is an eclipse? flowers -16.782073342897853 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, laughs in, flowers) -> flowers (16473ms) What is an eclipse? excess -16.79681529088027 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (earth, is in, excess) -> excess (16473ms) What is an eclipse? disarray -16.80491628523368 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, disarray) -> disarray (16515ms) What is an eclipse? upheaval -16.80491628523368 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, was in, upheaval) -> upheaval (16515ms) What is an eclipse? vibration -16.805601013313215 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (earth, dropped in, vibration) -> vibration (16515ms) What is an eclipse? jeopardy -16.806525222206137 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, jeopardy) -> jeopardy (16515ms) What is an eclipse? danger -16.806525222206137 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, danger) -> danger (16515ms) What is an eclipse? peril -16.806525222206137 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, was in, peril) -> peril (16515ms) What is an eclipse? sunlight -16.81225531046856 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, bathed in, sunlight) -> sunlight (16515ms) What is an eclipse? question -16.819391109423858 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, question) -> question (16515ms) What is an eclipse? orbit -16.828176831856798 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, revolves in, orbit) -> orbit (16549ms) What is an eclipse? abundance -16.83979222828781 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, is in, abundance) -> abundance (16549ms) What is an eclipse? the moment -16.974517467162176 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (earth, shattering in, the moment) -> the moment (16549ms) What is an eclipse? the direction -16.978045095269547 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, moving in, the direction) -> the direction (16549ms) What is an eclipse? the background -17.004499012181416 What is an eclipse? -> what be [ an ] eclipse ? -> when be earth an ? -> $x: (earth an, be in, $x) -> $x: (earth, in, $x) -> (Earth, looms in, the background) -> the background (16549ms) What is an eclipse? the phenomenon -17.068815628176655 What is an eclipse? -> what [ be an eclipse ] ? -> what be know be an eclipse ? -> $x: ($x, be know be, an eclipse) -> $x: ($x, know, eclipse) -> (the phenomenon, known as, Eclipse) -> the phenomenon (16549ms) How many moons does Neptune have? the top... -2.9246802856931984 How many moons does Neptune have? -> $x: (Neptune, moons, $x) -> (neptunes transformation pen, has a moon on, the top...) -> the top... (5459ms) How many moons does Neptune have? The Heroes of Olympus -9.882223288407038 How many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (The Son of Neptune, Part of series, The Heroes of Olympus) -> The Heroes of Olympus (12766ms) How many moons does Neptune have? Doctor Who BBC Past Doctors -9.959838951275254 How many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (The Devil Goblins from Neptune, Part of series, Doctor Who BBC Past Doctors) -> Doctor Who BBC Past Doctors (12766ms) How many moons does Neptune have? Chaos Chronicles -10.148058012331774 How many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (Neptune Crossing, Part of series, Chaos Chronicles) -> Chaos Chronicles (12766ms) How many moons does Neptune have? Fools in April / Neptune's Spatula -10.212089855596952 How many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (Neptune's Spatula, Part of multipart episode, Fools in April / Neptune's Spatula) -> Fools in April / Neptune's Spatula (12767ms) How many moons does Neptune have? 2012 -10.926201708046284 How many moons does Neptune have? -> how many moon do [ neptune ] have ? -> how many ring do neptune have ? -> $x: (neptune, ring, $x) -> (a nearly-packed Neptune Theatre, rang in, 2012) -> 2012 (17415ms) How many moons does Neptune have? period -11.414151152609518 How many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: ($x, instance of, part) (neptune, have have, $x) -> (period, Instance Of, component part) (Neptune, has, period) -> period (12767ms) How many moons does Neptune have? mental health -11.99647066309127 How many moons does Neptune have? -> how many [ moon do neptune have ] ? -> how many moon do neptune have have be make ? -> $x: ($x, instance of, moon) (neptune, have have be make, $x) -> (mental health, Instance Of, Moon related business) (Neptune, has been trying to make, mental health) -> mental health (19692ms) How many moons does Neptune have? Jacksonville Beach -12.001804767728661 How many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (Neptune Beach, was part of, Jacksonville Beach) -> Jacksonville Beach (12767ms) How many moons does Neptune have? Dover -12.261579472373562 How many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (Neptune, becomes part of, Dover) -> Dover (13319ms) How many moons does Neptune have? a Grand Cross -12.267378353057161 How many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (Neptune, is part of, a Grand Cross) -> a Grand Cross (13319ms) How many moons does Neptune have? period 2 -12.271022364315552 How many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: ($x, instance of, part) (neptune, have have, $x) -> (period 2, Instance Of, part) (Neptune, has, period) -> period 2 (13319ms) How many moons does Neptune have? a pedestrianised city centre -12.276112873413837 How many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (Neptune, is now part of, a pedestrianised city centre) -> a pedestrianised city centre (13319ms) How many moons does Neptune have? the GRAND CROSS. -12.342527432250185 How many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (Chiron and Neptune, are part of, the GRAND CROSS.) -> the GRAND CROSS. (13319ms) How many moons does Neptune have? ring -12.36563646388565 How many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: ($x, instance of, part) (neptune, have have, $x) -> (ring, Instance Of, part) (Neptune, has, rings) -> ring (13319ms) How many moons does Neptune have? the Earthtone 3 team -12.383102354408159 How many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (the Neptunes and MrDJ, is part of, the Earthtone 3 team) -> the Earthtone 3 team (13486ms) How many moons does Neptune have? the Flying Schedule -12.383287033216467 How many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (The impressive Neptune, took part in, the Flying Schedule) -> the Flying Schedule (13486ms) How many moons does Neptune have? the Jacksonville Beaches community -12.410037893357199 How many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (Neptune Beach, is part of, the Jacksonville Beaches community) -> the Jacksonville Beaches community (13486ms) How many moons does Neptune have? a two part series -12.422889713278487 How many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (The Neptune documentary, was part of, a two part series) -> a two part series (13486ms) How many moons does Neptune have? the Malta-based Force K -12.427557581245964 How many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (The Neptune, was part of, the Malta-based Force K) -> the Malta-based Force K (13486ms) How many moons does Neptune have? a 9 person Sailor Moon group -12.4502680849398 How many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (My Sailor Neptune, is part of, a 9 person Sailor Moon group) -> a 9 person Sailor Moon group (13486ms) How many moons does Neptune have? Period -12.517492133001745 How many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: ($x, instance of, part) (neptune, have have, $x) -> (Period, Instance Of, part) (Neptune, has, period) -> Period (15481ms) How many moons does Neptune have? trine -12.723215404756028 How many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many moon do neptune have have ? -> $x: ($x, instance of, moon) (neptune, have have, $x) -> $x: ($x, instance of, moon) (neptune, in have, $x) -> (trine, Instance Of, moon-pluto aspect) (Neptune, has just been in, trine) -> trine (19280ms) How many moons does Neptune have? Mars -12.851907255178407 How many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many moon do neptune have have ? -> $x: ($x, instance of, moon) (neptune, have have, $x) -> $x: ($x, instance of, moon) (neptune, afflict by, $x) -> (Mars, Instance Of, mission beyond the moon) (Neptune, is afflicted by, Mars) -> Mars (19691ms) How many moons does Neptune have? sextile -12.877959933778074 How many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many moon do neptune have have ? -> $x: ($x, instance of, moon) (neptune, have have, $x) -> $x: ($x, instance of, moon) (neptune, in have, $x) -> (sextile, Instance Of, harmonious sun/moon relationship) (Neptune and Pluto, have been roughly in, sextile) -> sextile (19280ms) How many moons does Neptune have? Love -12.989570044283678 How many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many moon do neptune have have ? -> $x: ($x, instance of, moon) (neptune, have have, $x) -> $x: ($x, instance of, moon) (neptune, in have, $x) -> (Love, Instance Of, splendoured thing, Blue Moon & of course others) (Neptune, had been deeply in, love) -> Love (19280ms) How many moons does Neptune have? Pisces -13.008099808913634 How many moons does Neptune have? -> how many [ moon do neptune have ] ? -> how much moon do neptune have be leave ? -> $x: ($x, instance of, moon) (neptune, have be leave, $x) -> $x: ($x, instance of, moon) (neptune, leave, $x) -> (Pisces, Instance Of, moon sign) (Neptune, left, Pisces) -> Pisces (15481ms) How many moons does Neptune have? earlier -13.150782884569047 How many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (Neptune, played a part, earlier) -> earlier (16372ms) How many moons does Neptune have? Aquarius -13.249123723821778 How many moons does Neptune have? -> how many [ moon do neptune have ] ? -> how much moon do neptune have be leave ? -> $x: ($x, instance of, moon) (neptune, have be leave, $x) -> $x: ($x, instance of, moon) (neptune, leave, $x) -> (Aquarius, Instance Of, Moon sign of flair) (Neptune, has now left, Aquarius) -> Aquarius (16372ms) How many moons does Neptune have? the picture -13.908979105538062 How many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (Neptune, is part of, the picture) -> the picture (17416ms) How many moons does Neptune have? the week -13.932782426083842 How many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (Neptune-ruled issues, dominated the early part of, the week) -> the week (17453ms) How many moons does Neptune have? the synastry picture forces -14.030848683638323 How many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (Neptune, is part of, the synastry picture forces) -> the synastry picture forces (17453ms) How many moons does Neptune have? the city -14.115652951642687 How many moons does Neptune have? -> how many moon do [ neptune have ] ? -> how many part do neptune have have ? -> $x: (neptune, part, $x) -> (Neptune Beach Neptune Beach, was part of, the city) -> the city (17900ms) How many Oscars has she won? Pinoco -17.899069876473146 How many Oscars has she won? -> how many oscar [ have she ] win ? -> what be have she first movie ? -> what be have she movie ? -> $x: ($x, be have, she movie) -> $x: ($x, seem to have have, she movie) -> (Pinoco, seems to have given up on, the romantic movies-She 's) -> Pinoco (7508ms) What is relative humidity? HMP35C -6.938717901607358 What is relative humidity? -> $x: (relative humidity, instance of, $x) -> $x: (relative humidity, modelling, $x) -> (Air temperature/relative humidity (HMP35), Model, HMP35C) -> HMP35C (8345ms) What is relative humidity? RH -10.456634536791501 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (RH, is, relative humidity) -> RH (12624ms) What is relative humidity? 24 percent -10.572144835294658 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, was, 24 percent) -> 24 percent (11719ms) What is relative humidity? a lower one -10.677180577937474 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (Relative humidity, was, a lower one) -> a lower one (11719ms) What is relative humidity? 70 percent -10.788805981358168 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, was, 70 percent) -> 70 percent (11719ms) What is relative humidity? 15 percent -10.81350286855322 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (Relative humidity, was, 15 percent) -> 15 percent (11719ms) What is relative humidity? Humidity -10.829600661438723 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (Humidity, is, Relative Humidity) -> Humidity (12623ms) What is relative humidity? lowest is -10.906584303572656 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, lowest is) -> lowest is (11719ms) What is relative humidity? Live Album -10.97668535705385 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Humidity, Release type, Live Album) -> Live Album (13612ms) What is relative humidity? TV Episode -10.983252303423788 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Humidity, Type, TV Episode) -> TV Episode (13613ms) What is relative humidity? the Wind Chill -11.086563255458094 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, the Wind Chill) -> the Wind Chill (11719ms) What is relative humidity? high year-round -11.168260270498392 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, high year-round) -> high year-round (12623ms) What is relative humidity? Book Edition -11.172083555204953 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Paper vs. relative humidity, Type, Book Edition) -> Book Edition (13613ms) What is relative humidity? air -11.217710773260082 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (air, is called, relative humidity) -> air (12623ms) What is relative humidity? SO2 -11.248900938134767 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (SO2, was investigated under, relative humidity) -> SO2 (12623ms) What is relative humidity? ?humidity ? -11.251222994874446 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (?humidity ?, is actually, ?relative humidity ?) -> ?humidity ? (12623ms) What is relative humidity? human hair -11.287830167437033 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (human hair, is used to measure, relative humidity) -> human hair (12642ms) What is relative humidity? EP -11.295182255995842 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Humidity EP, Release type, EP) -> EP (13613ms) What is relative humidity? Paper vs. relative humidity -11.309352334433878 What is relative humidity? -> what be [ relative humidity ] ? -> what be the expansion of relative humidity ? -> $x: (relative humidity, expansion, $x) -> $x: (relative humidity, edition, $x) -> (Paper vs. relative humidity, Editions, Paper vs. relative humidity) -> Paper vs. relative humidity (16360ms) What is relative humidity? climate shape ecosystems -11.333512583555793 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (climate shape ecosystems, is, relative humidity) -> climate shape ecosystems (12642ms) What is relative humidity? explaining humidity -11.348636221279971 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (explaining humidity, are, relative humidity) -> explaining humidity (12642ms) What is relative humidity? absolute humidity -11.348636221279971 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, absolute humidity) -> absolute humidity (12642ms) What is relative humidity? zero percent -11.354714482619253 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, zero percent) -> zero percent (12642ms) What is relative humidity? water vapor -11.376840776184311 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (water vapor, is measured as, Relative Humidity) -> water vapor (12642ms) What is relative humidity? 55 -11.402592890839067 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, 55) -> 55 (12661ms) What is relative humidity? 30-60 percent -11.450659779113803 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, 30-60 percent) -> 30-60 percent (12662ms) What is relative humidity? dashed lines -11.477617973440525 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (dashed lines, are, relative humidity) -> dashed lines (12662ms) What is relative humidity? sulfur dioxide and nitrogen oxides -11.486246234922378 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (sulfur dioxide and nitrogen oxides, is, relative humidity) -> sulfur dioxide and nitrogen oxides (12662ms) What is relative humidity? Antiques -11.490588974417424 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (Antiques, should be at, relative humidity) -> Antiques (12661ms) What is relative humidity? 75-80 % -11.501059036403847 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, 75-80 %) -> 75-80 % (12680ms) What is relative humidity? 45-55 % -11.514714242320183 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, 45-55 %) -> 45-55 % (12680ms) What is relative humidity? one key consideration -11.521241314325415 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (Relative humidity, is, one key consideration) -> one key consideration (12680ms) What is relative humidity? Tables of temperature, relative humidity and precipitation for the world -11.539080836583997 What is relative humidity? -> what be [ relative humidity ] ? -> what be the expansion of relative humidity ? -> $x: (relative humidity, expansion, $x) -> $x: ($x, edition, relative humidity) -> (Tables of temperature, relative humidity and precipitation for the world, Editions, Tables of temperature, relative humidity and precipitation for the world) -> Tables of temperature, relative humidity and precipitation for the world (16396ms) What is relative humidity? 20 % -11.542185037919664 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, 20 %) -> 20 % (12680ms) What is relative humidity? ice -11.545750639851656 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (ice, was used to get, relative humidity) -> ice (12680ms) What is relative humidity? Transmission Efficiency -11.547177447631425 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (Transmission Efficiency, Is Dependent on, Relative Humidity) -> Transmission Efficiency (12680ms) What is relative humidity? 40-60 % -11.560817731279128 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, 40-60 %) -> 40-60 % (12741ms) What is relative humidity? 40 % -11.57218709622359 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, was, 40 %) -> 40 % (12741ms) What is relative humidity? H.M.S.O. -11.593134601795791 What is relative humidity? -> what be [ relative humidity ] ? -> what be the expansion of relative humidity ? -> $x: (relative humidity, expansion, $x) -> $x: ($x, edition, relative humidity) -> (H.M.S.O., Book editions published, Tables of temperature, relative humidity and precipitation for the world) -> H.M.S.O. (16396ms) What is relative humidity? Disease cause -11.59570508577155 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Relative humidity, Type, Disease cause) -> Disease cause (13613ms) What is relative humidity? 90 % -11.596613028124484 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, 90 %) -> 90 % (12741ms) What is relative humidity? Problem fire behavior -11.607898048241054 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (Problem fire behavior, will be offset by, relative humidity) -> Problem fire behavior (12741ms) What is relative humidity? 20-25 % -11.6093233993903 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (Relative humidity, is, 20-25 %) -> 20-25 % (12761ms) What is relative humidity? 68-72 percent -11.61298541407366 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, 68-72 percent) -> 68-72 percent (12761ms) What is relative humidity? Condensation -11.615832299098793 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (Condensation, is a function of, relative humidity) -> Condensation (12761ms) What is relative humidity? 2.0. 5 -11.638501919542552 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (2.0. 5, is, Relative Humidity) -> 2.0. 5 (12761ms) What is relative humidity? 42 % -11.646329789307986 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, 42 %) -> 42 % (12761ms) What is relative humidity? 55 % -11.653658515547052 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (Relative humidity, is, 55 %) -> 55 % (12829ms) What is relative humidity? 61 % -11.655426888349245 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (Relative humidity, is, 61 %) -> 61 % (12829ms) What is relative humidity? The DampGuard -11.669275191552643 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (The DampGuard, is designed to monitor, relative humidity) -> The DampGuard (12829ms) What is relative humidity? Instruments -11.672977469336452 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (Instruments, are available to measure, relative humidity) -> Instruments (12829ms) What is relative humidity? 35 % -11.674487053594136 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, 35 %) -> 35 % (12830ms) What is relative humidity? an important factor -11.676657689519734 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, an important factor) -> an important factor (12829ms) What is relative humidity? 69 % -11.696099989822638 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, was, 69 %) -> 69 % (12857ms) What is relative humidity? 82 % -11.709362996648267 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, 82 %) -> 82 % (12851ms) What is relative humidity? A hygrometer -11.711685161025473 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (A hygrometer, can be used to measure, relative humidity) -> A hygrometer (12851ms) What is relative humidity? the MODEL -11.757034376832348 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (the MODEL, is indeed very sensitive to, relative humidity) -> the MODEL (12851ms) What is relative humidity? moisture content -11.763646759733188 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (moisture content, is a function of, relative humidity) -> moisture content (12851ms) What is relative humidity? a different story -11.771200613499532 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, are, a different story) -> a different story (12851ms) What is relative humidity? 12 h -11.787172401288368 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, were, 12 h) -> 12 h (12976ms) What is relative humidity? a good idea -11.798610708147297 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, a good idea) -> a good idea (12977ms) What is relative humidity? A calculator -11.804655858542425 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (A calculator, will be used to convert to, relative humidity) -> A calculator (12977ms) What is relative humidity? Efficacy -11.811533400665258 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (Efficacy, will be variable depending upon, relative humidity) -> Efficacy (12976ms) What is relative humidity? A low cost hygrometer -11.81280617622744 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (A low cost hygrometer, can be used to measure, relative humidity) -> A low cost hygrometer (12977ms) What is relative humidity? Ontology Instance -11.844251938593434 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Humidity, Type, Ontology Instance) -> Ontology Instance (13740ms) What is relative humidity? Canonical Version -11.844251938593434 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (High Humidity, Type, Canonical Version) -> Canonical Version (13923ms) What is relative humidity? Musical Album -11.844251938593434 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Righteousness & Humidity, Notable types, Musical Album) -> Musical Album (13826ms) What is relative humidity? Musical Release -11.844251938593434 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Humidity, Notable types, Musical Release) -> Musical Release (13826ms) What is relative humidity? Musical Recording -11.844251938593434 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Humidity Rising, Type, Musical Recording) -> Musical Recording (13826ms) What is relative humidity? Musical Artist -11.844251938593434 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Humidity 69, Notable types, Musical Artist) -> Musical Artist (13826ms) What is relative humidity? Flagged Content -11.844251938593434 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Humidity, Type, Flagged Content) -> Flagged Content (13761ms) What is relative humidity? Disease development -11.844454490437062 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (Disease development, is favored by, relative humidity) -> Disease development (12977ms) What is relative humidity? Cloud fraction -11.870915883258768 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (Cloud fraction, is based upon, relative humidity) -> Cloud fraction (13922ms) What is relative humidity? PH Tester -11.89059385231118 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (PH Tester, Instance Of, relative humidity tester related product) -> PH Tester (17521ms) What is relative humidity? an air parcel -11.919478831562078 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (an air parcel, is saturated, ( relative humidity) -> an air parcel (13923ms) What is relative humidity? water absorption -11.92659429525246 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (water absorption, is a function of, relative humidity) -> water absorption (13922ms) What is relative humidity? Multi-Part Musical Release -11.92852775034097 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Humidity, Notable types, Multi-Part Musical Release) -> Multi-Part Musical Release (13922ms) What is relative humidity? a convective environment -11.949456253975804 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (a convective environment, is the use of, relative humidity) -> a convective environment (13922ms) What is relative humidity? a small CO2 warming -11.953727246824844 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (a small CO2 warming, is predicted to increase, relative humidity) -> a small CO2 warming (13923ms) What is relative humidity? cloud fraction -11.968285625096115 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (cloud fraction, is computed from, relative humidity) -> cloud fraction (13970ms) What is relative humidity? Water requirement -11.989264347403097 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (Water requirement, is strongly influenced by, relative humidity) -> Water requirement (13970ms) What is relative humidity? Album -11.996021365809778 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Righteousness & Humidity, Release type, Album) -> Album (13970ms) What is relative humidity? a dimensionless parameter -12.001976215514256 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (Relative humidity, is, a dimensionless parameter) -> a dimensionless parameter (13970ms) What is relative humidity? Image -12.007636762240786 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Relative Humidity, Type, Image) -> Image (14184ms) What is relative humidity? Content -12.007636762240786 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Relative Humidity, Type, Content) -> Content (13970ms) What is relative humidity? Property -12.007636762240786 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Relative Humidity, Type, Property) -> Property (13970ms) What is relative humidity? Dimension -12.007636762240786 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Relative humidity, Type, Dimension) -> Dimension (13970ms) What is relative humidity? Curing times -12.009600898139793 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (Curing times, will be affected by, relative humidity) -> Curing times (14184ms) What is relative humidity? Developmental time -12.049548869907783 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (Developmental time, can also be affected by, relative humidity) -> Developmental time (14184ms) What is relative humidity? Book -12.089047617839523 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Paper vs. relative humidity, Type, Book) -> Book (14184ms) What is relative humidity? Cataloged instance -12.131738257455162 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Humidity, Notable types, Cataloged instance) -> Cataloged instance (14185ms) What is relative humidity? Release track -12.131738257455162 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Humidity Rising, Type, Release track) -> Release track (14231ms) What is relative humidity? Environmental variable -12.131738257455162 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Atmospheric humidity, Type, Environmental variable) -> Environmental variable (14208ms) What is relative humidity? The annual high temperature -12.161912664676823 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (The annual high temperature, is 30-45?C with, relative humidity) -> The annual high temperature (14231ms) What is relative humidity? dependent on temperature -12.196801451239242 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, dependent on temperature) -> dependent on temperature (14252ms) What is relative humidity? dependent upon temperature -12.208081811256058 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, dependent upon temperature) -> dependent upon temperature (14253ms) What is relative humidity? 50 percent -12.22333258988224 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, go, $x) -> (relative humidity, goes above, 50 percent) -> 50 percent (14253ms) What is relative humidity? Heat stress -12.254711502882964 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Heat stress, Instance Of, factor of temperature and relative humidity) -> Heat stress (17522ms) What is relative humidity? 30 percent -12.256505158730606 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, go, $x) -> (the relative humidity, goes below, 30 percent) -> 30 percent (14253ms) What is relative humidity? Finishes -12.258937937874482 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (Finishes, are affected by, relative humidity) -> Finishes (14253ms) What is relative humidity? temperature-dependent parameter -12.271290090024758 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (Relative humidity, Instance Of, temperature-dependent parameter) -> temperature-dependent parameter (16841ms) What is relative humidity? 80 percent -12.27140179861025 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, go, $x) -> (the relative humidity, can go up to around, 80 percent) -> 80 percent (14253ms) What is relative humidity? 17 percent -12.311816957569643 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, have, $x) -> (Relative humidity, has dropped, 17 percent) -> 17 percent (14253ms) What is relative humidity? Gay Porn -12.315612755813426 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Humidity, Type, Gay Porn) -> Gay Porn (14276ms) What is relative humidity? Observation Type -12.321717490003584 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Hourly Relative Humidity, Type, Observation Type) -> Observation Type (14276ms) What is relative humidity? 20 percent -12.373691045831611 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, have, $x) -> (relative humidity, has dropped to under, 20 percent) -> 20 percent (14276ms) What is relative humidity? environmental factor -12.38569542864541 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, environmental factor) -> environmental factor (16841ms) What is relative humidity? one percent -12.38578864513587 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, have, $x) -> (the average relative humidity, had dropped, one percent) -> one percent (14276ms) What is relative humidity? Answer -12.386898389886397 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (Answer, is the difference between, relative humidity) -> Answer (14276ms) What is relative humidity? low -12.397768635116392 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (Humidity Relative humidity, is, low) -> low (14276ms) What is relative humidity? 0.5 % -12.419258336747525 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, have, $x) -> (relative humidity, has been decreasing, 0.5 %) -> 0.5 % (14276ms) What is relative humidity? heavy dew -12.476117211517892 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (heavy dew, Instance Of, condition of high relative humidity) -> heavy dew (17522ms) What is relative humidity? SHT -12.479263213646693 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (SHT, Instance Of, single-chip relative humidity) -> SHT (17521ms) What is relative humidity? Temp Tracker -12.482561056936861 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Temp Tracker, Instance Of, versatile temperature and relative humidity indicator) -> Temp Tracker (17522ms) What is relative humidity? a measure of the amount of moisture -12.509584300112436 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (Relative humidity, is, a measure of the amount of moisture) -> a measure of the amount of moisture (14298ms) What is relative humidity? VPD -12.520390875684694 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (VPD, Instance Of, function of relative humidity) -> VPD (17522ms) What is relative humidity? conidiophores and conidia -12.534741505429068 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (conidiophores and conidia, is affected by, relative humidity) -> conidiophores and conidia (14298ms) What is relative humidity? function of both moisture -12.53674120433291 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (Relative humidity, Instance Of, function of both moisture) -> function of both moisture (16841ms) What is relative humidity? the 8912 -12.543448610475245 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (the 8912, is capable of measuring, relative humidity) -> the 8912 (14298ms) What is relative humidity? Film -12.565521548224954 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Humidity, Type, Film) -> Film (14298ms) What is relative humidity? a measure of the amount of water vapor -12.574558017892269 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (Relative humidity, is, a measure of the amount of water vapor) -> a measure of the amount of water vapor (14298ms) What is relative humidity? HMSO -12.585837994718082 What is relative humidity? -> what be [ relative humidity ] ? -> what be the expansion of relative humidity ? -> $x: (relative humidity, expansion, $x) -> $x: ($x, edition, relative humidity) -> (HMSO, Book editions published, Tables of temperature, relative humidity and precipitation for the world) -> HMSO (16396ms) What is relative humidity? Humidity Sensor -12.605402622476205 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Humidity Sensor, Instance Of, relative humidity sensor) -> Humidity Sensor (17521ms) What is relative humidity? ambient environmental condition -12.617606737795226 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, ambient environmental condition) -> ambient environmental condition (16841ms) What is relative humidity? y-axis -12.63125871025609 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, have, $x) -> (relative humidity, have been scaled to fit, y-axis) -> y-axis (15372ms) What is relative humidity? tap -12.638705283003713 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be on, $x) -> (low relative humidity, are on, tap) -> tap (16609ms) What is relative humidity? climatic parameter -12.648102724313796 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, climatic parameter) -> climatic parameter (16841ms) What is relative humidity? climatic datum -12.694068562397995 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, climatic datum) -> climatic datum (16841ms) What is relative humidity? 5 % -12.695670507839628 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, have, $x) -> (the relative humidity, has to be within, 5 %) -> 5 % (15372ms) What is relative humidity? common atmospheric datum -12.70209798572188 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, common atmospheric datum) -> common atmospheric datum (16841ms) What is relative humidity? hourly weather datum -12.70209798572188 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, hourly weather datum) -> hourly weather datum (16841ms) What is relative humidity? R. H. -12.70434372008678 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (R. H., Instance Of, relative humidity) -> R. H. (17522ms) What is relative humidity? natural environmental factor -12.70727127682564 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, natural environmental factor) -> natural environmental factor (17711ms) What is relative humidity? external factor -12.70783706618799 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, external factor) -> external factor (17711ms) What is relative humidity? a lower wet-bulb temperature -12.708745703390122 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, have, $x) -> (less relative humidity, has, a lower wet-bulb temperature) -> a lower wet-bulb temperature (15372ms) What is relative humidity? function of the amount of water -12.72394169479831 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (Relative humidity, Instance Of, function of the amount of water) -> function of the amount of water (17711ms) What is relative humidity? soft-touch hold -12.734843779735126 What is relative humidity? -> what be relative [ humidity ] ? -> what be the term for humidity ? -> $x: ($x, be the term for, humidity) -> $x: ($x, be, humidity) -> (soft-touch hold, is, humidity) -> soft-touch hold (15371ms) What is relative humidity? variable in the model -12.737308184470379 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, variable in the model) -> variable in the model (17711ms) What is relative humidity? factor of well-being -12.749237675521922 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (Relative humidity, Instance Of, factor of well-being) -> factor of well-being (17711ms) What is relative humidity? physical factor -12.75003996760296 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, physical factor) -> physical factor (17711ms) What is relative humidity? Wet Bulb Depression -12.750202975236915 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Wet Bulb Depression, Instance Of, measured of relative humidity) -> Wet Bulb Depression (17711ms) What is relative humidity? Tramex Ltd. s CRH -12.750543724731054 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Tramex Ltd. s CRH, Instance Of, moisture and relative humidity meter) -> Tramex Ltd. s CRH (17712ms) What is relative humidity? Tramex Hygrohood -12.751593487480825 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Tramex Hygrohood, Instance Of, insulted relative humidity hood) -> Tramex Hygrohood (18302ms) What is relative humidity? Rapid RH -12.751991113125323 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Rapid RH, Instance Of, Relative Humidity probe) -> Rapid RH (18302ms) What is relative humidity? hot -12.751991113125323 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (hot, Instance Of, environment of high relative humidity) -> hot (18302ms) What is relative humidity? fog -12.752346406607016 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (fog, Instance Of, condition of high relative humidity) -> fog (18302ms) What is relative humidity? 9780114000349 -12.75540613297178 What is relative humidity? -> what be [ relative humidity ] ? -> what be the expansion of relative humidity ? -> $x: (relative humidity, expansion, $x) -> $x: ($x, edition, relative humidity) -> (9780114000349, Book Editions, Tables of temperature, relative humidity and precipitation for the world) -> 9780114000349 (16396ms) What is relative humidity? 9780114001704 -12.75540613297178 What is relative humidity? -> what be [ relative humidity ] ? -> what be the expansion of relative humidity ? -> $x: (relative humidity, expansion, $x) -> $x: ($x, edition, relative humidity) -> (9780114001704, Book Editions, Tables of temperature, relative humidity and precipitation for the world) -> 9780114001704 (16397ms) What is relative humidity? type of datum -12.760223831584678 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, type of datum) -> type of datum (18302ms) What is relative humidity? 9780114003401 -12.771171814491886 What is relative humidity? -> what be [ relative humidity ] ? -> what be the expansion of relative humidity ? -> $x: (relative humidity, expansion, $x) -> $x: ($x, edition, relative humidity) -> (9780114003401, Book Editions, Tables of Temperature, Relative Humidity, Precipitation and Sunshine for the World) -> 9780114003401 (16396ms) What is relative humidity? a hot day -12.783332873516757 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be on, $x) -> (the relative humidity, is low on, a hot day) -> a hot day (16609ms) What is relative humidity? nominal ambient condition -12.787764309713328 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, nominal ambient condition) -> nominal ambient condition (18302ms) What is relative humidity? local meteorological condition -12.787764309713328 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, local meteorological condition) -> local meteorological condition (18302ms) What is relative humidity? secondary climatic datum -12.787764309713328 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, secondary climatic datum) -> secondary climatic datum (18380ms) What is relative humidity? BPSH-xx -12.790365337559921 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (BPSH-xx, Instance Of, function of relative humidity) -> BPSH-xx (18381ms) What is relative humidity? strong function of temperature -12.791405121761272 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (Relative humidity, Instance Of, strong function of temperature) -> strong function of temperature (18381ms) What is relative humidity? outdoor weather condition -12.792334049973821 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, outdoor weather condition) -> outdoor weather condition (18381ms) What is relative humidity? ProofReader? -12.796885068560464 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (ProofReader?, Instance Of, full featured relative humidity) -> ProofReader? (18381ms) What is relative humidity? sensitive function of temperature -12.796885068560464 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, sensitive function of temperature) -> sensitive function of temperature (18381ms) What is relative humidity? DippyBird -12.796885068560464 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (DippyBird, Instance Of, open relative humidity engine) -> DippyBird (18381ms) What is relative humidity? degrees of separation -12.796885068560464 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (degrees of separation, Instance Of, relative humidity measurement) -> degrees of separation (18381ms) What is relative humidity? key parameter -12.802936497947677 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, key parameter) -> key parameter (18427ms) What is relative humidity? critical forecast information -12.804215374773669 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, critical forecast information) -> critical forecast information (18427ms) What is relative humidity? measurement of the degree -12.806024549081448 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (Relative Humidity, Instance Of, measurement of the degree) -> measurement of the degree (18427ms) What is relative humidity? standard meteorological parameter -12.808328140732328 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, standard meteorological parameter) -> standard meteorological parameter (18427ms) What is relative humidity? meteorological element -12.819398813644732 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, meteorological element) -> meteorological element (18427ms) What is relative humidity? ChipCap -12.823462202683137 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (ChipCap, Instance Of, generation relative humidity and temperature sensor) -> ChipCap (18427ms) What is relative humidity? RH BluePeg -12.823462202683137 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (RH BluePeg, Instance Of, relative humidity and temperature sensor) -> RH BluePeg (18427ms) What is relative humidity? fundamental storage requirement -12.828891971751329 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, fundamental storage requirement) -> fundamental storage requirement (18427ms) What is relative humidity? day -12.830687220592734 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be on, $x) -> (the largest relative humidity value, can be generated on, day) -> day (16609ms) What is relative humidity? A DECENT HANDLE -12.834347467794661 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, have, $x) -> (RELATIVE HUMIDITY PROG, HAS, A DECENT HANDLE) -> A DECENT HANDLE (15371ms) What is relative humidity? key component of environmental comfort -12.835869299228364 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (Relative humidity, Instance Of, key component of environmental comfort) -> key component of environmental comfort (18472ms) What is relative humidity? function of temperature and moisture -12.835869299228364 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (Relative humidity, Instance Of, function of temperature and moisture) -> function of temperature and moisture (18472ms) What is relative humidity? environmental and analytical factor -12.835869299228364 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, environmental and analytical factor) -> environmental and analytical factor (18472ms) What is relative humidity? second operational parameter of interest -12.835869299228364 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (Relative humidity, Instance Of, second operational parameter of interest) -> second operational parameter of interest (18472ms) What is relative humidity? Phys-Chem sensor -12.835869299228364 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Phys-Chem sensor, Instance Of, accurate resistance-type relative humidity sensor) -> Phys-Chem sensor (18472ms) What is relative humidity? Thez LCL -12.835869299228364 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Thez LCL, Instance Of, strong function of relative humidity) -> Thez LCL (18472ms) What is relative humidity? spatially uniform weather variable -12.835869299228364 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, spatially uniform weather variable) -> spatially uniform weather variable (18472ms) What is relative humidity? LPN-H -12.850951083282297 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (LPN-H, Instance Of, complete low cost relative humidity sensing module) -> LPN-H (18472ms) What is relative humidity? function of both moisture content and temperature -12.850951083282297 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (Relative humidity, Instance Of, function of both moisture content and temperature) -> function of both moisture content and temperature (18593ms) What is relative humidity? optimum condition -12.855204293400652 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, optimum condition) -> optimum condition (18593ms) What is relative humidity? Creative Work -12.857750661687195 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Humidity, Type, Creative Work) -> Creative Work (16255ms) What is relative humidity? Written Work -12.857750661687195 What is relative humidity? -> what be relative [ humidity ] ? -> what be the type of humidity ? -> $x: (humidity, type, $x) -> (Humidity, Notable types, Written Work) -> Written Work (16256ms) What is relative humidity? Computrac Vapor Pro -12.86835615811828 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Computrac Vapor Pro, Instance Of, relative humidity sensor instrument) -> Computrac Vapor Pro (18593ms) What is relative humidity? MOISTURE ABSORPTION Tested -12.86835615811828 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (MOISTURE ABSORPTION Tested, Instance Of, atmosphere of 65% relative humidity) -> MOISTURE ABSORPTION Tested (18593ms) What is relative humidity? HygroClip from Rotronic -12.86835615811828 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (HygroClip from Rotronic, Instance Of, exceptional relative humidity probe) -> HygroClip from Rotronic (18593ms) What is relative humidity? Rapid RH? -12.86835615811828 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Rapid RH?, Instance Of, fast, accurate, relative humidity probe) -> Rapid RH? (18593ms) What is relative humidity? Rapid RH ? -12.86835615811828 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Rapid RH ?, Instance Of, accurate relative humidity probe) -> Rapid RH ? (18593ms) What is relative humidity? extensive drying craquelure -12.87305290903098 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, have, $x) -> (relative humidity, had resulted in, extensive drying craquelure) -> extensive drying craquelure (16255ms) What is relative humidity? meteorological information -12.873374083457007 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, meteorological information) -> meteorological information (18630ms) What is relative humidity? Temperature-Humidity Index -12.89584503871744 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Temperature-Humidity Index, Instance Of, measurement of ambient temperature and relative humidity) -> Temperature-Humidity Index (18630ms) What is relative humidity? R APID RH? -12.89584503871744 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (R APID RH?, Instance Of, fast, accurate, relative humidity probe) -> R APID RH? (18630ms) What is relative humidity? expression of the percentage of this maximum value -12.89584503871744 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (Relative humidity, Instance Of, expression of the percentage of this maximum value) -> expression of the percentage of this maximum value (18630ms) What is relative humidity? house plants -12.90361936633297 What is relative humidity? -> what be relative [ humidity ] ? -> what be the term for humidity ? -> $x: ($x, be the term for, humidity) -> $x: ($x, be, humidity) -> (house plants, is, humidity) -> house plants (16396ms) What is relative humidity? 15 % -12.90873267106834 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, go, $x) -> (The relative humidity, is likely to go down to, 15 %) -> 15 % (16430ms) What is relative humidity? DG obtained from Eq. -12.909483820156279 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (DG obtained from Eq., Instance Of, function of relative humidity) -> DG obtained from Eq. (18630ms) What is relative humidity? weather factor -12.911989107062983 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, weather factor) -> weather factor (18630ms) What is relative humidity? temperature -12.912993666438183 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, temperature) -> temperature (16430ms) What is relative humidity? key component -12.915173840764345 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (Relative humidity, Instance Of, key component) -> key component (18630ms) What is relative humidity? deserts -12.91613821295186 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (deserts, is, relative humidity) -> deserts (16430ms) What is relative humidity? function of refrigerant temperature and PPM of dissolved water -12.91940693637386 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (Relative humidity, Instance Of, function of refrigerant temperature and PPM of dissolved water) -> function of refrigerant temperature and PPM of dissolved water (18677ms) What is relative humidity? TMI Termo Online -12.91940693637386 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (TMI Termo Online, Instance Of, temperature and relative humidity acquisition system) -> TMI Termo Online (18630ms) What is relative humidity? indicator of the comfort level of a building's environment -12.91940693637386 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (Relative humidity, Instance Of, indicator of the comfort level of a building's environment) -> indicator of the comfort level of a building's environment (18677ms) What is relative humidity? observational datum -12.921548971909 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, observational datum) -> observational datum (18677ms) What is relative humidity? 45 % -12.93175133366552 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, go, $x) -> (The Relative Humidity, is going to be minimally, 45 %) -> 45 % (16430ms) What is relative humidity? basic parameter -12.934674174292192 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, basic parameter) -> basic parameter (18677ms) What is relative humidity? THE LOW SIDE -12.940392424635704 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be on, $x) -> (RELATIVE HUMIDITIES LIKELY, WILL BE ON, THE LOW SIDE) -> THE LOW SIDE (16609ms) What is relative humidity? ecological factor -12.947133375718895 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, ecological factor) -> ecological factor (18677ms) What is relative humidity? ronmental condition -12.955159672306628 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, ronmental condition) -> ronmental condition (18677ms) What is relative humidity? generally high -12.959140664592569 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (Humidity Relative Humidity, is, generally high) -> generally high (16430ms) What is relative humidity? the maximum -12.962137075001028 What is relative humidity? -> what [ be relative humidity ] ? -> what be know be relative humidity ? -> $x: ($x, be know be, relative humidity) -> (the maximum, is known as, the relative humidity ?) -> the maximum (9216ms) What is relative humidity? crucial factor -12.96529955994275 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (Relative humidity, Instance Of, crucial factor) -> crucial factor (18677ms) What is relative humidity? the air -12.965945774587645 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (the air, is, relative humidity) -> the air (16430ms) What is relative humidity? processing parameter -12.967868550820516 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, processing parameter) -> processing parameter (18677ms) What is relative humidity? day i -12.974968967752297 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be on, $x) -> (the lowest relative humidity value, can be generated on, day i) -> day i (16609ms) What is relative humidity? weather sensor -12.97834011750682 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, weather sensor) -> weather sensor (18763ms) What is relative humidity? operating characteristic -12.979970698489153 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, operating characteristic) -> operating characteristic (18763ms) What is relative humidity? thermodynamic parameter -12.981988645591064 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, thermodynamic parameter) -> thermodynamic parameter (18763ms) What is relative humidity? input datum -12.985376479113455 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, input datum) -> input datum (18763ms) What is relative humidity? boundary condition -12.987165651559938 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, boundary condition) -> boundary condition (18763ms) What is relative humidity? a scale -12.987666264215576 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be on, $x) -> (The relative humidity, is measured on, a scale) -> a scale (16609ms) What is relative humidity? physical property -12.990583147594347 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, physical property) -> physical property (18763ms) What is relative humidity? near 100 -12.991708341852897 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, go, $x) -> (the relative humidity, goes from, near 100) -> near 100 (16488ms) What is relative humidity? an F -13.00045317039737 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be in, relative humidity) -> (an F, is in measuring, the temperatures and relative humidities) -> an F (18763ms) What is relative humidity? outdoor condition -13.003024995233964 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, outdoor condition) -> outdoor condition (18763ms) What is relative humidity? operating parameter -13.00371990216157 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, operating parameter) -> operating parameter (18842ms) What is relative humidity? variable factor -13.008898479630101 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, variable factor) -> variable factor (18842ms) What is relative humidity? influence factor -13.009830993410029 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, influence factor) -> influence factor (18842ms) What is relative humidity? agro-meteorological datum -13.025004867392814 What is relative humidity? -> what be relative [ humidity ] ? -> what be absolute humidity ? -> $x: (absolute humidity, instance of, $x) -> (absolute humidity, Instance Of, agro-meteorological datum) -> agro-meteorological datum (16488ms) What is relative humidity? datum parameter -13.031980125529103 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, datum parameter) -> datum parameter (18842ms) What is relative humidity? Pianos -13.035529329849583 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be in, relative humidity) -> (Pianos, are happiest in, a relative humidity level) -> Pianos (18842ms) What is relative humidity? influencing parameter -13.03553752198605 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, influencing parameter) -> influencing parameter (18842ms) What is relative humidity? Txrh2 -13.044429624369418 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Txrh2, Instance Of, two-wire relative humidity transmitter) -> Txrh2 (18842ms) What is relative humidity? environmental clue -13.055992550081378 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, environmental clue) -> environmental clue (18842ms) What is relative humidity? key variable -13.066287017275831 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (Relative humidity, Instance Of, key variable) -> key variable (18879ms) What is relative humidity? building condition -13.067305265195213 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, building condition) -> building condition (18879ms) What is relative humidity? routine item -13.068451871853146 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, routine item) -> routine item (18879ms) What is relative humidity? physical control -13.072460287242812 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, physical control) -> physical control (18879ms) What is relative humidity? OMEGA's RHCN-3 -13.074016173911488 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (OMEGA's RHCN-3, Instance Of, economical relative humidity controller) -> OMEGA's RHCN-3 (18879ms) What is relative humidity? Omega's new UWRH-2-NEMA -13.075128345370924 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Omega's new UWRH-2-NEMA, Instance Of, wireless relative humidity transmitter) -> Omega's new UWRH-2-NEMA (18879ms) What is relative humidity? 100 % -13.077344534489242 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, have, $x) -> (the relative humidity, would have to be very close to, 100 %) -> 100 % (16488ms) What is relative humidity? 25 % -13.079198240631968 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, go, $x) -> (the relative humidity, may go below, 25 %) -> 25 % (16488ms) What is relative humidity? 87 % -13.080832431615178 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, 87 %) -> 87 % (16488ms) What is relative humidity? The climate -13.085186465321556 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (The climate, is tropical monsoonal with, relative humidity) -> The climate (16488ms) What is relative humidity? NMF -13.091220302782157 What is relative humidity? -> what be relative [ humidity ] ? -> what be related to humidity ? -> $x: ($x, be related to, humidity) -> (NMF, is directly related to, external humidity) -> NMF (16609ms) What is relative humidity? newspapers -13.092439244016036 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (newspapers, are usually, relative humidity) -> newspapers (16609ms) What is relative humidity? FAL-19 -13.096901180867516 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (FAL-19, Instance Of, high relative humidity) -> FAL-19 (18879ms) What is relative humidity? Humidity sensor 316 -13.096901180867516 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Humidity sensor 316, Instance Of, relative humidity sensor) -> Humidity sensor 316 (18879ms) What is relative humidity? meterological factor -13.10640659197577 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, meterological factor) -> meterological factor (18918ms) What is relative humidity? interior environment -13.108255026243606 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, interior environment) -> interior environment (18918ms) What is relative humidity? each flight -13.110642887760333 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be on, $x) -> (relative humidity, were made on, each flight) -> each flight (16695ms) What is relative humidity? ronmental factor -13.111140711455072 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, ronmental factor) -> ronmental factor (18918ms) What is relative humidity? 90 percent -13.111642530771176 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, rise, $x) -> (relative humidity, rises to, 90 percent) -> 90 percent (18918ms) What is relative humidity? sense parameter -13.113884348932807 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, sense parameter) -> sense parameter (18918ms) What is relative humidity? environmental quantity -13.113884348932807 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, environmental quantity) -> environmental quantity (18918ms) What is relative humidity? dew point values -13.114278777283008 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (Relative Humidity, can be inferred from, dew point values) -> dew point values (16695ms) What is relative humidity? datum input -13.115807200494128 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, datum input) -> datum input (18918ms) What is relative humidity? process datum -13.117989084106094 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, process datum) -> process datum (18918ms) What is relative humidity? record parameter -13.118744891077451 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, record parameter) -> record parameter (18959ms) What is relative humidity? site parameter -13.11890107097716 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, site parameter) -> site parameter (18959ms) What is relative humidity? environmental measure -13.119891071191837 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, environmental measure) -> environmental measure (18959ms) What is relative humidity? determining parameter -13.12011581306367 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, determining parameter) -> determining parameter (18959ms) What is relative humidity? field parameter -13.121029761054483 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, field parameter) -> field parameter (18959ms) What is relative humidity? essential information -13.122168675220202 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, essential information) -> essential information (18959ms) What is relative humidity? greater capacity -13.122274827777263 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, have, $x) -> (80 % relative humidity space, have much, greater capacity) -> greater capacity (16695ms) What is relative humidity? thermodynamic concept -13.123341511854775 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, thermodynamic concept) -> thermodynamic concept (18959ms) What is relative humidity? serious aspect -13.124685553017738 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (Relative humidity, Instance Of, serious aspect) -> serious aspect (18959ms) What is relative humidity? air temperature -13.12590943056729 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (air temperature, Instance Of, relative humidity microclimatic factor) -> air temperature (19137ms) What is relative humidity? the disease -13.126832409345905 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (the disease, are, relative humidity) -> the disease (16694ms) What is relative humidity? surface variable -13.12697042299477 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, surface variable) -> surface variable (19137ms) What is relative humidity? independent variable -13.12704308738427 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, independent variable) -> independent variable (19137ms) What is relative humidity? far -13.12958328107604 What is relative humidity? -> what be relative [ humidity ] ? -> what be the term for humidity ? -> $x: ($x, be the term for, humidity) -> $x: ($x, be, humidity) -> (far, was, humidity) -> far (16695ms) What is relative humidity? weather element -13.129908114190942 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (Relative humidity, Instance Of, weather element) -> weather element (19137ms) What is relative humidity? determining factor -13.134917122906181 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (Relative humidity, Instance Of, determining factor) -> determining factor (19137ms) What is relative humidity? altitude -13.135764904692719 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (altitude, as is, relative humidity) -> altitude (16695ms) What is relative humidity? Water vapor -13.137207728558256 What is relative humidity? -> what be relative [ humidity ] ? -> what be related to humidity ? -> $x: ($x, be related to, humidity) -> (Water vapor, is also related to, sea surface humidity) -> Water vapor (16695ms) What is relative humidity? 95 -13.137326821367456 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, go, $x) -> (a high relative humidity, goes even up to, 95) -> 95 (19137ms) What is relative humidity? humidity -13.140185889400495 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (humidity, is expressed as, relative humidity) -> humidity (19137ms) What is relative humidity? HS-70-D Humidity Sensor -13.141795136302658 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (HS-70-D Humidity Sensor, Instance Of, relative humidity sensor) -> HS-70-D Humidity Sensor (19137ms) What is relative humidity? deposition parameter -13.141976462707776 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, instance of, $x) -> (relative humidity, Instance Of, deposition parameter) -> deposition parameter (19298ms) What is relative humidity? the unit -13.147211424957467 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (the unit, is off 10 points of, relative humidity) -> the unit (19298ms) What is relative humidity? meteorologic observation -13.154053985014313 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (meteorologic observation, Instance Of, relative humidity requirement) -> meteorologic observation (19298ms) What is relative humidity? the most common -13.15541479424726 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, the most common) -> the most common (19298ms) What is relative humidity? The wines -13.15562889613433 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (The wines, are stored at, relative humidity) -> The wines (19298ms) What is relative humidity? no delay -13.163162306060087 What is relative humidity? -> what be relative [ humidity ] ? -> what be the term for humidity ? -> $x: ($x, be the term for, humidity) -> $x: ($x, be, humidity) -> (no delay, is, humidity) -> no delay (19298ms) What is relative humidity? dry air -13.166254200669337 What is relative humidity? -> what be relative [ humidity ] ? -> what be the term for humidity ? -> $x: ($x, be the term for, humidity) -> $x: ($x, be, humidity) -> (dry air, is, humidity) -> dry air (19298ms) What is relative humidity? 65 percent -13.16869086392983 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, rise, $x) -> (relative humidity levels, rise above, 65 percent) -> 65 percent (19379ms) What is relative humidity? humidity probe -13.17556270242287 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (humidity probe, Instance Of, relative humidity measurement related product) -> humidity probe (19379ms) What is relative humidity? nasal congestion -13.177104616492196 What is relative humidity? -> what be relative [ humidity ] ? -> what be related to humidity ? -> $x: ($x, be related to, humidity) -> (nasal congestion, is related to, the temperature and humidity) -> nasal congestion (19379ms) What is relative humidity? 40% -13.182922798340659 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (40%, Instance Of, low relative humidity) -> 40% (19379ms) What is relative humidity? crawl space -13.193038215682213 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (crawl space, Instance Of, elevated level of relative humidity) -> crawl space (19378ms) What is relative humidity? drywall cracking -13.193038215682213 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (drywall cracking, Instance Of, result of relative humidity change) -> drywall cracking (19379ms) What is relative humidity? 70 % -13.19405338919055 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is below, 70 %) -> 70 % (19379ms) What is relative humidity? Beijing and Shanghai -13.195575657276343 What is relative humidity? -> what be relative [ humidity ] ? -> what be the term for humidity ? -> $x: ($x, be the term for, humidity) -> $x: ($x, be, humidity) -> (Beijing and Shanghai, is, humidity) -> Beijing and Shanghai (19462ms) What is relative humidity? flu -13.20361942035025 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, reduce, $x) -> (relative humidity, reduce the incidences of, flu) -> flu (19462ms) What is relative humidity? The key -13.203797468816878 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, be, relative humidity) -> (The key, is to prevent, relative humidities) -> The key (19462ms) What is relative humidity? air temperatures -13.2106545423451 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is added to, air temperatures) -> air temperatures (19462ms) What is relative humidity? 85 % -13.214454508054503 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is below, 85 %) -> 85 % (19462ms) What is relative humidity? ANYWHERE THERE -13.217337040394913 What is relative humidity? -> what be relative [ humidity ] ? -> what be the term for humidity ? -> $x: ($x, be the term for, humidity) -> $x: ($x, be, humidity) -> (ANYWHERE THERE, IS, HUMIDITY) -> ANYWHERE THERE (19462ms) What is relative humidity? wooden mini blinds -13.2177294750494 What is relative humidity? -> what be relative [ humidity ] ? -> what be the term for humidity ? -> $x: ($x, be the term for, humidity) -> $x: ($x, be, humidity) -> (wooden mini blinds, is, humidity) -> wooden mini blinds (19462ms) What is relative humidity? about 30 % -13.21901942272958 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (relative humidity, is, about 30 %) -> about 30 % (19501ms) What is relative humidity? around 70 % -13.222928668154134 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (Relative Humidity, is, around 70 %) -> around 70 % (19501ms) What is relative humidity? wall void -13.22552507457213 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (wall void, Instance Of, area with high relative humidity) -> wall void (19502ms) What is relative humidity? swimming pool -13.22552507457213 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (swimming pool, Instance Of, building with high relative humidity) -> swimming pool (19502ms) What is relative humidity? window frame -13.22552507457213 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (window frame, Instance Of, area with high relative humidity) -> window frame (19501ms) What is relative humidity? commercial property -13.22552507457213 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (commercial property, Instance Of, area with low relative humidity) -> commercial property (19501ms) What is relative humidity? Abel's art -13.225711605907353 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Abel's art, Instance Of, offshoot of Relative-humidity detector) -> Abel's art (19501ms) What is relative humidity? OMEGA's RHCN-3A -13.2284267600091 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (OMEGA's RHCN-3A, Instance Of, economical relative humidity controller) -> OMEGA's RHCN-3A (19501ms) What is relative humidity? a concern -13.240075935726567 What is relative humidity? -> what be relative [ humidity ] ? -> what be the term for humidity ? -> $x: ($x, be the term for, humidity) -> $x: ($x, be, humidity) -> (a concern, is, humidity) -> a concern (19543ms) What is relative humidity? Model PS01 -13.243508544063033 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Model PS01, Instance Of, extremely accurate mean of measuring relative humidity) -> Model PS01 (19543ms) What is relative humidity? SHT11 -13.243508544063033 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (SHT11, Instance Of, single chip digital Relative humidity temperature sensor) -> SHT11 (19543ms) What is relative humidity? PH20 -13.244877825069441 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (PH20, Instance Of, function of temperature and relative humidity) -> PH20 (19543ms) What is relative humidity? Opinions -13.245707781032696 What is relative humidity? -> what be relative [ humidity ] ? -> what be the term for humidity ? -> $x: ($x, be the term for, humidity) -> $x: ($x, be, humidity) -> (Opinions, Is, Humidity) -> Opinions (19543ms) What is relative humidity? 4 % outdoors -13.246536530425084 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, have, $x) -> (relative humidity, has risen from, 4 % outdoors) -> 4 % outdoors (19782ms) What is relative humidity? a significant effect -13.25089876952261 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, have, $x) -> (Relative humidity, also has, a significant effect) -> a significant effect (19782ms) What is relative humidity? the ration -13.256870145029962 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (Relative humidity, is, the ration) -> the ration (19783ms) What is relative humidity? the percentage -13.260471458761605 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be, $x) -> (Relative Humidity Relative Humidity, is, the percentage) -> the percentage (19782ms) What is relative humidity? C1/M System -13.260913618899016 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (C1/M System, Instance Of, NIST-traceable relative humidity calibration chamber) -> C1/M System (19782ms) What is relative humidity? Omega Engineering's UWRH-2-NEMA -13.260913618899016 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Omega Engineering's UWRH-2-NEMA, Instance Of, wireless relative humidity transmitter) -> Omega Engineering's UWRH-2-NEMA (19783ms) What is relative humidity? Model 1200A -13.267070441719456 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Model 1200A, Instance Of, high accuracy temperature and relative humidity transmitter) -> Model 1200A (19782ms) What is relative humidity? Model TGX-3580 -13.267070441719456 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Model TGX-3580, Instance Of, dual channel temperature and relative humidity logger) -> Model TGX-3580 (19783ms) What is relative humidity? Sensirion's SHT11 -13.267070441719456 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Sensirion's SHT11, Instance Of, surface mountable temperature and relative humidity sensor) -> Sensirion's SHT11 (19860ms) What is relative humidity? the Master Joining Method -13.276872629586762 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, be on, $x) -> (50 % relative humidity, are based on, the Master Joining Method) -> the Master Joining Method (19860ms) What is relative humidity? twenty percent -13.278838471707987 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: (relative humidity, go, $x) -> (Its relative humidity, can go as low as, twenty percent) -> twenty percent (19860ms) What is relative humidity? Midnight -13.279307285892726 What is relative humidity? -> what be relative [ humidity ] ? -> what be the term for humidity ? -> $x: ($x, be the term for, humidity) -> $x: ($x, be, humidity) -> (Midnight, was, Humidity) -> Midnight (19860ms) What is relative humidity? Model HD 797 T -13.288402499498176 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Model HD 797 T, Instance Of, enbloc relative humidity transmitter) -> Model HD 797 T (19860ms) What is relative humidity? General Eastern C-1 -13.288402499498176 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (General Eastern C-1, Instance Of, bench top Relative Humidity Generator) -> General Eastern C-1 (19860ms) What is relative humidity? Relative Humidity Shown in Fig. 3 -13.288402499498176 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Relative Humidity Shown in Fig. 3, Instance Of, time-series plot of relative humidity) -> Relative Humidity Shown in Fig. 3 (19860ms) What is relative humidity? Hytherograph LB-520 -13.288402499498176 What is relative humidity? -> what be [ relative humidity ] ? -> what be the mening of relative humidity ? -> $x: (relative humidity, mening, $x) -> $x: ($x, instance of, relative humidity) -> (Hytherograph LB-520, Instance Of, miniature temperature and relative humidity recorder) -> Hytherograph LB-520 (19860ms) What was the nickname for the French team? Les Bleus -9.246222301521225 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what be nickname of the french team ? -> $x: ($x, be nickname of, the french team) -> (Les Bleus, is the nickname of, the French football team) -> Les Bleus (7115ms) What was the nickname for the French team? coach-class -10.673983187898555 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, go, $x) -> (the French team, went home in, coach-class) -> coach-class (7544ms) What was the nickname for the French team? Becks ?one -11.488809519510387 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, be offer, $x) -> (the French team, is offering will make, Becks ?one) -> Becks ?one (8515ms) What was the nickname for the French team? ambitions -11.510981343998244 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> when be the french team grow ? -> $x: (the french team, be grow in, $x) -> (The French team, are growing in, ambitions) -> ambitions (8616ms) What was the nickname for the French team? Canada -11.59575672542523 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, be indeed, $x) -> (the French team, are indeed in, Canada) -> Canada (7615ms) What was the nickname for the French team? France -11.60381358061635 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, be still, $x) -> (the French team, is still here in, France) -> France (10879ms) What was the nickname for the French team? GP racing -11.607828878831635 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> when be the french team need ? -> $x: (the french team, be need in, $x) -> $x: (the french team, be force in, $x) -> (the French Bugatti team, were the dominant force in, GP racing) -> GP racing (9974ms) What was the nickname for the French team? an ultimate tour -11.7703754644434 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, go, $x) -> (the French team, go on, an ultimate tour) -> an ultimate tour (7544ms) What was the nickname for the French team? a chance -11.839586295803745 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, be still, $x) -> (the young French team, are still well in with, a chance) -> a chance (10879ms) What was the nickname for the French team? Juan-Miguel Mercado -11.867196032733384 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, be by, $x) -> (The French team Agritubel, will be lead by, Juan-Miguel Mercado) -> Juan-Miguel Mercado (10757ms) What was the nickname for the French team? Harrison and Peon -11.867738135101245 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, be by, $x) -> (The French team, is strengthened by, Harrison and Peon) -> Harrison and Peon (10757ms) What was the nickname for the French team? a large carton -11.948949836362992 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, go, $x) -> (the Mary French team, went away with, a large carton) -> a large carton (7544ms) What was the nickname for the French team? the Ravenhill curse -11.965939559478674 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, be by, $x) -> (the French team, have been blighted by, the Ravenhill curse) -> the Ravenhill curse (10757ms) What was the nickname for the French team? Walter George Windham -12.055894948955336 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, be by, $x) -> (The Anglo-French team, was led by, Walter George Windham) -> Walter George Windham (10757ms) What was the nickname for the French team? Rochet -12.075780123383101 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, choose, $x) -> (The French team, chooses, Rochet) -> Rochet (8019ms) What was the nickname for the French team? Rocket French -12.199839776638193 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, try, $x) -> (the Rocket French Team Share and Enjoy, Try, Rocket French) -> Rocket French (7616ms) What was the nickname for the French team? a structure -12.225442773097932 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, choose, $x) -> (the French team, chose, a structure) -> a structure (8019ms) What was the nickname for the French team? the British Team Manager -12.275950903419773 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, say to, $x) -> (The French Team Manager, says to, the British Team Manager) -> the British Team Manager (10667ms) What was the nickname for the French team? a technical team -12.335933545267826 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, be know as, $x) -> (The French team, is known as, a technical team) -> a technical team (10879ms) What was the nickname for the French team? an issue -12.481581771882626 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, look at, $x) -> (The French team, started to look at, an issue) -> an issue (8273ms) What was the nickname for the French team? Kovalainen -12.508134839551728 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: ($x, belong to, the french team) -> (Kovalainen, is a person who belongs to the organization, the French team) -> Kovalainen (10800ms) What was the nickname for the French team? the ?37 Million -12.603419725527038 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, remember, $x) -> (the French teams, remember, the ?37 Million) -> the ?37 Million (7615ms) What was the nickname for the French team? a run -12.668828433961977 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, try, $x) -> (The French team, tried to make, a run) -> a run (7615ms) What was the nickname for the French team? boat speeds -12.69807283676204 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, saw, $x) -> (The French team, saw, boat speeds) -> boat speeds (10878ms) What was the nickname for the French team? a drop goal -12.708981704828716 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, try, $x) -> (The desperate French team, try, a drop goal) -> a drop goal (7615ms) What was the nickname for the French team? a warm-up match -12.75878240902809 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, draw, $x) -> (.The French team and Croatia team, drew in, a warm-up match) -> a warm-up match (10667ms) What was the nickname for the French team? Bertrand Pac? -12.881237377205817 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, be by, $x) -> (The French ALEPH Sailing Team, is skippered by, Bertrand Pac?) -> Bertrand Pac? (10757ms) What was the nickname for the French team? First -13.23972090033555 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, go, $x) -> (the French team, went, First) -> First (7544ms) What was the nickname for the French team? the fields -13.29935567290867 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, go, $x) -> (the French and Italian teams, would go on, the fields) -> the fields (7544ms) What was the nickname for the French team? the site -13.760276613647585 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, be still, $x) -> (the French team, is still engaged on, the site) -> the site (10879ms) What was the nickname for the French team? race -13.813059011954781 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, go, $x) -> (the French team, go forwards to, race) -> race (7573ms) What was the nickname for the French team? action -13.947129400431447 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, go, $x) -> (the French hit team, went into, action) -> action (7572ms) What was the nickname for the French team? strike -13.989471291109716 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, go, $x) -> (The French team, went on, strike) -> strike (7572ms) What was the nickname for the French team? the first bicycle -14.054552545937021 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, invent, $x) -> (the French father and son team, invented, the first bicycle) -> the first bicycle (8019ms) What was the nickname for the French team? the spino-ponto-amygdaloid pathway -14.190821675319233 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, call, $x) -> (The French team, called, the spino-ponto-amygdaloid pathway) -> the spino-ponto-amygdaloid pathway (8402ms) What was the nickname for the French team? the wrong mustache -14.280125661280476 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, choose, $x) -> (The French team, chose, the wrong mustache) -> the wrong mustache (8019ms) What was the nickname for the French team? favor -14.31012948423948 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, be leave, $x) -> (the French team, was left out in, favor) -> favor (10757ms) What was the nickname for the French team? the chase -14.337164845962159 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, control, $x) -> (the French team, took control of, the chase) -> the chase (7697ms) What was the nickname for the French team? the computation -14.364182741519214 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, approach, $x) -> (the French research team, had approached, the computation) -> the computation (8515ms) What was the nickname for the French team? the regatta -14.434049647738885 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: ($x, belong to, the french team) -> (the regatta, belonged to, the French team) -> the regatta (10800ms) What was the nickname for the French team? the remaining 5 stages -14.595300984684172 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, control, $x) -> (The French team, controlled, the remaining 5 stages) -> the remaining 5 stages (7697ms) What was the nickname for the French team? the lead -14.676904617538309 What was the nickname for the French team? -> what be the nickname for [ the french team ] ? -> what nickname do the french team have ? -> $x: (the french team, nickname, $x) -> $x: (the french team, have take, $x) -> (The French Team No1, has taken over, the lead) -> the lead (10800ms) What is the oldest university in the US? William and Mary 2.2656175608956834 What is the oldest university in the US? -> $x: ($x, is the oldest university in, the US) -> (William and Mary, is the second oldest university in, the US.) -> William and Mary (7983ms) What is the oldest university in the US? Chapel Hill 1.5624912081147113 What is the oldest university in the US? -> $x: ($x, is the oldest university in, the US) -> (Chapel Hill, is the oldest public university in, the U.S.) -> Chapel Hill (7983ms) What is the oldest university in the US? Rensselaer 1.445029360796314 What is the oldest university in the US? -> $x: ($x, is the oldest university in, the US) -> (Rensselaer, is the oldest technological university in, the U.S.) -> Rensselaer (7983ms) What is the oldest university in the US? Santo Domingo -7.42656721448788 What is the oldest university in the US? -> what be [ the oldest university ] in the us ? -> what be the oldest university in america ? -> $x: ($x, be the oldest university in, america) -> (Santo Domingo, is the oldest university in, the Americas) -> Santo Domingo (14273ms) What is the oldest university in the US? Charles V -7.724392953056543 What is the oldest university in the US? -> what be [ the oldest university ] in the us ? -> what be the oldest university in america ? -> $x: ($x, be the oldest university in, america) -> (Charles V, is the oldest university in, North America) -> Charles V (14274ms) What is the oldest university in the US? Rutgers -8.102707644570353 What is the oldest university in the US? -> what be [ the oldest university ] in the us ? -> what be the oldest university in america ? -> $x: ($x, be the oldest university in, america) -> (Rutgers, is the 8th oldest University in, America) -> Rutgers (14273ms) What is the oldest university in the US? Heriot-Watt University -8.267656676610034 What is the oldest university in the US? -> what [ be the oldest university ] in the us ? -> what be be the oldest university in uk ? -> $x: ($x, be be the oldest university in, uk) -> (Heriot-Watt University, is the 8th oldest university in, the UK.) -> Heriot-Watt University (15253ms) What is the oldest university in the US? Pennsylvania -8.320647096482876 What is the oldest university in the US? -> what be [ the oldest university ] in the us ? -> what be the oldest university in the united state ? -> $x: ($x, be the oldest university in, the united state) -> (Pennsylvania, is the oldest university in, the United States) -> Pennsylvania (14253ms) What is the oldest university in the US? Harvard -8.47121586427991 What is the oldest university in the US? -> what be [ the oldest university ] in the us ? -> what be the oldest university in the united state ? -> $x: ($x, be the oldest university in, the united state) -> (Harvard, is the oldest university in, the United States) -> Harvard (14253ms) What is the oldest university in the US? UPenn -8.599100222070858 What is the oldest university in the US? -> what be [ the oldest university ] in the us ? -> what be the oldest university in the united state ? -> $x: ($x, be the oldest university in, the united state) -> (UPenn, is the fourth oldest university in, the United States) -> UPenn (14253ms) What is the oldest university in the US? Oxford University -8.705020953381483 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the oldest university in the world ? -> $x: ($x, be the oldest university in, the world) -> (Oxford University, is the oldest university in, the World) -> Oxford University (16207ms) What is the oldest university in the US? Ohio -8.722135896111894 What is the oldest university in the US? -> what be [ the oldest university ] in the us ? -> what be the oldest university in the united state ? -> $x: ($x, be the oldest university in, the united state) -> (Ohio, is the 10th oldest public university in, the United States) -> Ohio (14254ms) What is the oldest university in the US? Glasgow -8.842596326138276 What is the oldest university in the US? -> what [ be the oldest university ] in the us ? -> what be be the oldest university in uk ? -> $x: ($x, be be the oldest university in, uk) -> (Glasgow, is the fourth oldest University in, the UK.) -> Glasgow (15253ms) What is the oldest university in the US? Cambridge -8.862997445002229 What is the oldest university in the US? -> what [ be the oldest university ] in the us ? -> what be be the oldest university in uk ? -> $x: ($x, be be the oldest university in, uk) -> (Cambridge, is the second oldest university in, the UK) -> Cambridge (15254ms) What is the oldest university in the US? Harvard Harvard -8.980981237019057 What is the oldest university in the US? -> what [ be the oldest university ] in the us ? -> what be be the oldest university the us ? -> $x: ($x, be be, the oldest university the us) -> (Harvard Harvard, is, the oldest U.S. University) -> Harvard Harvard (15456ms) What is the oldest university in the US? Universit? Laval -9.00828877125409 What is the oldest university in the US? -> what [ be the oldest university ] in the us ? -> what be be the oldest university in canada ? -> $x: ($x, be be the oldest university in, canada) -> (Universit? Laval, is the oldest French university in, Canada) -> Universit? Laval (16207ms) What is the oldest university in the US? Pacific -9.073398866835962 What is the oldest university in the US? -> what [ be the oldest university ] in the us ? -> what be be the oldest university in californium ? -> $x: ($x, be be the oldest university in, californium) -> (Pacific, is the oldest University in, California) -> Pacific (16090ms) What is the oldest university in the US? UNB -9.30671394528272 What is the oldest university in the US? -> what [ be the oldest university ] in the us ? -> what be be the oldest university in canada ? -> $x: ($x, be be the oldest university in, canada) -> (UNB, is the oldest English-language university in, Canada) -> UNB (16207ms) What is the oldest university in the US? Aberdeen -9.36891191124186 What is the oldest university in the US? -> what [ be the oldest university ] in the us ? -> what be be the oldest university in uk ? -> $x: ($x, be be the oldest university in, uk) -> (Aberdeen, is the fifth oldest University in, the UK) -> Aberdeen (15254ms) What is the oldest university in the US? Bologna -9.403270279582973 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the oldest university in the world ? -> $x: ($x, be the oldest university in, the world) -> (Bologna, is the oldest university in, the world) -> Bologna (16207ms) What is the oldest university in the US? Cairo -9.412112248998529 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the oldest university in the world ? -> $x: ($x, be the oldest university in, the world) -> (Cairo, is the oldest university in, the world) -> Cairo (16207ms) What is the oldest university in the US? Padua -9.420457798577619 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the oldest university in the world ? -> $x: ($x, be the oldest university in, the world) -> (Padua, is the second oldest university in, the world) -> Padua (16207ms) What is the oldest university in the US? Poitiers -9.479445480846383 What is the oldest university in the US? -> what [ be the oldest university ] in the us ? -> what be be the oldest university in france ? -> $x: ($x, be be the oldest university in, france) -> (Poitiers, is the second oldest university in, France) -> Poitiers (16311ms) What is the oldest university in the US? Vienna -9.539134237651378 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the oldest university in the world ? -> $x: ($x, be the oldest university in, the world) -> (Vienna, is the oldest university in, the German-speaking world) -> Vienna (16311ms) What is the oldest university in the US? Manitoba -9.549508297429382 What is the oldest university in the US? -> what [ be the oldest university ] in the us ? -> what be be the oldest university in canada ? -> $x: ($x, be be the oldest university in, canada) -> (Manitoba, is the oldest university in, Western Canada) -> Manitoba (16311ms) What is the oldest university in the US? Oxford -9.569340381441044 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the oldest university in the world ? -> $x: ($x, be the oldest university in, the world) -> (Oxford, is the oldest university in, the English-speaking world) -> Oxford (16311ms) What is the oldest university in the US? New Brunswick -9.598832758614952 What is the oldest university in the US? -> what [ be the oldest university ] in the us ? -> what be be the oldest university in canada ? -> $x: ($x, be be the oldest university in, canada) -> (New Brunswick, is the oldest English university in, Canada) -> New Brunswick (16534ms) What is the oldest university in the US? Oxf -9.660755785411448 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the oldest university in the world ? -> $x: ($x, be the oldest university in, the world) -> (Oxf, is the second oldest university in, the world) -> Oxf (16533ms) What is the oldest university in the US? Queens -10.176455629257598 What is the oldest university in the US? -> what [ be the oldest university ] in the us ? -> what be be the oldest university in canada ? -> $x: ($x, be be the oldest university in, canada) -> (Queens, have been the oldest university in, English Canada) -> Queens (16562ms) What is the oldest university in the US? the University -10.232941548123835 What is the oldest university in the US? -> what [ be the oldest university ] in the us ? -> what be be the oldest university in canada ? -> $x: ($x, be be the oldest university in, canada) -> (the University, is the oldest university in, Western Canada) -> the University (16562ms) What is the oldest university in the US? the Karouine -10.485303487895502 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the oldest university in the world ? -> $x: ($x, be the oldest university in, the world) -> (the Karouine, is the oldest religious university in, the world) -> the Karouine (16581ms) What is the oldest university in the US? Colleges/Universities -10.623056593070999 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the plural of university ? -> $x: (university, plural, $x) -> (College/University, Plural, Colleges/Universities) -> Colleges/Universities (16752ms) What is the oldest university in the US? 1088 -11.059083693961595 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the oldest university in the world ? -> $x: ($x, be the oldest university in, the world) -> (1088, is the oldest university in, the western world) -> 1088 (16773ms) What is the oldest university in the US? A Modest Proposal -11.513209484733515 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (A Modest Proposal, is the name of, The University) -> A Modest Proposal (18725ms) What is the oldest university in the US? Goldman Sachs -11.57588219717297 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Goldman Sachs, was named the 14th dean of, the University) -> Goldman Sachs (18725ms) What is the oldest university in the US? David Pryor -11.6201566650803 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (David Pryor, was named the inaugural dean of, the University) -> David Pryor (18725ms) What is the oldest university in the US? law -11.753947547716784 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (law, has been named the next dean of, University) -> law (18726ms) What is the oldest university in the US? Boston College -11.761578166076307 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Boston College, was named the new head coach of, the University) -> Boston College (18725ms) What is the oldest university in the US? J.D. -11.79992582029905 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (J.D., is named the 13th president of, Marylhurst University) -> J.D. (18726ms) What is the oldest university in the US? ?? ? ? Patel -11.872379938772806 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (?? ? ? Patel, has been named the winner of, the University) -> ?? ? ? Patel (18768ms) What is the oldest university in the US? Yash Gupta -11.98063843567275 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Yash Gupta, is named the first dean of, the university) -> Yash Gupta (18768ms) What is the oldest university in the US? University Village -11.995183620066868 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (University Village, is the name of, the University) -> University Village (18768ms) What is the oldest university in the US? Washington State -12.049229411086582 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Washington State, is the name of, a university) -> Washington State (18768ms) What is the oldest university in the US? Law -12.05390658338164 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Law, has been named the new dean of, the University) -> Law (18768ms) What is the oldest university in the US? TM -12.065098017283356 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (TM, is the name of, the university) -> TM (18797ms) What is the oldest university in the US? Lecture Capture -12.088327531154444 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Lecture Capture, is the name of, University) -> Lecture Capture (18797ms) What is the oldest university in the US? two elements?the type -12.08968757484705 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (two elements?the type, is the name of, the university) -> two elements?the type (18797ms) What is the oldest university in the US? ?Canada -12.09600230645222 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the University, named, ?Canada) -> ?Canada (18797ms) What is the oldest university in the US? Cambridge Assessment -12.097212914155726 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Cambridge Assessment, is the brand name of, the University) -> Cambridge Assessment (18797ms) What is the oldest university in the US? myUFL myUFL -12.106934094589425 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (myUFL myUFL, is the name of, the University) -> myUFL myUFL (18797ms) What is the oldest university in the US? a very big campus -12.155304296454746 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (a very big campus, was the name of, a university town) -> a very big campus (18820ms) What is the oldest university in the US? Josiah -12.162287553730685 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Josiah, is also the name of, the University) -> Josiah (18820ms) What is the oldest university in the US? Testudo -12.167354166147165 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Testudo, is the name of, University) -> Testudo (18820ms) What is the oldest university in the US? Bihar Nalanda -12.169224607843775 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Bihar Nalanda, is the name of, an ancient university) -> Bihar Nalanda (18820ms) What is the oldest university in the US? The Condon Committee -12.202926587145944 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (The Condon Committee, was the informal name of, the University) -> The Condon Committee (18820ms) What is the oldest university in the US? Hogeschool -12.214554972042603 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Hogeschool, is the Dutch name of, University) -> Hogeschool (18820ms) What is the oldest university in the US? Bruce Benson -12.22044348340766 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Bruce Benson, was named the 22nd president of, the University) -> Bruce Benson (18820ms) What is the oldest university in the US? Japan and America -12.228678316019582 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Japan and America, is the name of, the university course) -> Japan and America (18847ms) What is the oldest university in the US? Institution -12.230569610248182 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Institution, is the name of, the university or college) -> Institution (18847ms) What is the oldest university in the US? cd ethics -12.236878535442404 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (cd ethics, is the name of, the university or college) -> cd ethics (18847ms) What is the oldest university in the US? Student Management System ISIS -12.256972649770738 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Student Management System ISIS, is the name of, the University) -> Student Management System ISIS (18847ms) What is the oldest university in the US? Maine -12.292200073038064 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Maine, was named the recipient of, the University) -> Maine (18847ms) What is the oldest university in the US? University -12.29511606076495 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (University, has been named the Director of, Cornell University) -> University (18847ms) What is the oldest university in the US? Monash and Rusden -12.313625832698008 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Monash and Rusden, are the names of, university campuses) -> Monash and Rusden (18847ms) What is the oldest university in the US? Feng Chia -12.314273819351802 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Feng Chia, is the name of, a University) -> Feng Chia (18879ms) What is the oldest university in the US? Mike Singletary -12.325426061621673 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Baylor University, named, Mike Singletary) -> Mike Singletary (18879ms) What is the oldest university in the US? Jackdaw -12.337557535040535 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Jackdaw, is the name of, the University Computing Service) -> Jackdaw (18879ms) What is the oldest university in the US? New Testament -12.342395997620518 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (New Testament, has been named the next dean of, the University) -> New Testament (18879ms) What is the oldest university in the US? ? Michael Tick -12.350449186549547 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (? Michael Tick, was named the new dean of, the University) -> ? Michael Tick (18879ms) What is the oldest university in the US? Dr. Fox -12.360252091934068 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Dr. Fox, was named the director of, the University) -> Dr. Fox (18879ms) What is the oldest university in the US? 1882 -12.364640202237634 What is the oldest university in the US? -> what be [ the oldest university ] in the us ? -> what be the oldest university ever build ? -> what be the oldest university build ? -> $x: (the oldest university, build, $x) -> (the second oldest Swedish university, was built in, 1882) -> 1882 (16820ms) What is the oldest university in the US? The PythAcademia -12.394087849243697 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (The PythAcademia, is the short name of, the University proper or) -> The PythAcademia (18879ms) What is the oldest university in the US? Mr. James Michel -12.39674046114928 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Mr. James Michel, was named the Chancellor of, the University) -> Mr. James Michel (18879ms) What is the oldest university in the US? OP -12.458305395271413 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (OP, was named the 10th President of, Siena Heights University) -> OP (18904ms) What is the oldest university in the US? Derr Professor -12.492450371322628 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the University, named, Derr Professor) -> Derr Professor (18904ms) What is the oldest university in the US? Joseph F. Volker -12.493003307836862 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Joseph F. Volker, was named the first dean of, the University) -> Joseph F. Volker (18904ms) What is the oldest university in the US? Elaine Pagels -12.499016021555006 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Princeton University, named, Elaine Pagels) -> Elaine Pagels (18904ms) What is the oldest university in the US? Hiram Bingham -12.524432791506513 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Yale University, named, Hiram Bingham) -> Hiram Bingham (18904ms) What is the oldest university in the US? 11:05 -12.527140314114911 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (11:05, AM The names of, all University) -> 11:05 (18904ms) What is the oldest university in the US? Timothy Leary -12.54047357391211 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Harvard University, named, Timothy Leary) -> Timothy Leary (18904ms) What is the oldest university in the US? Social Justice -12.56565847583742 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (York University, named, Social Justice) -> Social Justice (18904ms) What is the oldest university in the US? a not -12.5797842760581 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (a not, is the brand name of, the University) -> a not (19088ms) What is the oldest university in the US? a library -12.581703391080223 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the university, named, a library) -> a library (19089ms) What is the oldest university in the US? Julie Beischel -12.58636281829628 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the University, named, Julie Beischel) -> Julie Beischel (19088ms) What is the oldest university in the US? NMSU, -12.59600703813065 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (NMSU,, has been named the new dean of, the university?s) -> NMSU, (19088ms) What is the oldest university in the US? a best buy -12.652324847772675 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Oakland University, named, a best buy) -> a best buy (19088ms) What is the oldest university in the US? the Heritage Walk -12.659015766826133 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (the Heritage Walk, are the names of, the University?s namesake) -> the Heritage Walk (19088ms) What is the oldest university in the US? Utah 9 ? -12.678773198830982 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Utah 9 ?, was the original name of, the University) -> Utah 9 ? (19088ms) What is the oldest university in the US? such pages -12.68936292708636 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (such pages, is the domain names of, UK universities) -> such pages (19088ms) What is the oldest university in the US? Sophi -12.717306295311737 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Sophi, is the name of, the University) -> Sophi (19116ms) What is the oldest university in the US? the CASE Professor -12.756642622680767 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the University, named, the CASE Professor) -> the CASE Professor (19116ms) What is the oldest university in the US? Simpkins -12.781642178263448 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Simpkins, is named the first female chair of, the university) -> Simpkins (19116ms) What is the oldest university in the US? a footbridge -12.797387017919998 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (The university, named, a footbridge) -> a footbridge (19116ms) What is the oldest university in the US? a fellowship -12.843490506878943 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (The university, named, a fellowship) -> a fellowship (19116ms) What is the oldest university in the US? offensive assistant Kyle Flood -12.87275746773779 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the university, named, offensive assistant Kyle Flood) -> offensive assistant Kyle Flood (19116ms) What is the oldest university in the US? Nick Gonzales -12.882451734697312 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Cornell University, named, Nick Gonzales) -> Nick Gonzales (19116ms) What is the oldest university in the US? Syracuse -12.941445719801834 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Syracuse, is the name of, a renowned university) -> Syracuse (19116ms) What is the oldest university in the US? John Cornwell -12.949650797119666 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Duke University, named, John Cornwell) -> John Cornwell (19149ms) What is the oldest university in the US? John Richards -13.001818427211905 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Duke University, named, John Richards) -> John Richards (19149ms) What is the oldest university in the US? Osten -13.005992170318603 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Osten, was named the 700th member of, the University) -> Osten (19150ms) What is the oldest university in the US? Revels -13.025425604775801 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Revels, was named the first president of, Alcorn University) -> Revels (19149ms) What is the oldest university in the US? Website Comment -13.03459600559879 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (London University, Name, Website Comment) -> Website Comment (19149ms) What is the oldest university in the US? the Optometry Building -13.037588163304582 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the University, named, the Optometry Building) -> the Optometry Building (19149ms) What is the oldest university in the US? Susan Fiske -13.048868362499897 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Princeton University, named, Susan Fiske) -> Susan Fiske (19149ms) What is the oldest university in the US? Wallace Fowlie -13.048868362499897 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Duke University, named, Wallace Fowlie) -> Wallace Fowlie (19175ms) What is the oldest university in the US? Carrol Quigley -13.048868362499897 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Georgetown University, named, Carrol Quigley) -> Carrol Quigley (19149ms) What is the oldest university in the US? Marty Tucker -13.066964786644697 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (University, named, Marty Tucker) -> Marty Tucker (19175ms) What is the oldest university in the US? Edgar Odell Lovett -13.078088039081454 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Princeton University, named, Edgar Odell Lovett) -> Edgar Odell Lovett (19175ms) What is the oldest university in the US? Eugene Higgens Professor -13.088306182208495 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Princeton University, named, Eugene Higgens Professor) -> Eugene Higgens Professor (19175ms) What is the oldest university in the US? Kiffin -13.08845881211608 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Kiffin, was named the new head coach of, the University) -> Kiffin (19175ms) What is the oldest university in the US? Richard Andrew Cloward -13.093119366006981 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Columbia University, named, Richard Andrew Cloward) -> Richard Andrew Cloward (19175ms) What is the oldest university in the US? a central contemporary reality -13.121043099388414 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Harvard University, named, a central contemporary reality) -> a central contemporary reality (19175ms) What is the oldest university in the US? Old Main Hall -13.148827307568915 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the University, named, Old Main Hall) -> Old Main Hall (19175ms) What is the oldest university in the US? Robert Schoch -13.172591524297307 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Boston University, named, Robert Schoch) -> Robert Schoch (19262ms) What is the oldest university in the US? Steven Taylor -13.172591524297307 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Naropa University, named, Steven Taylor) -> Steven Taylor (19262ms) What is the oldest university in the US? Jeffrey Scott White -13.182502085217326 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (-.- Brenau University, named, Jeffrey Scott White) -> Jeffrey Scott White (19262ms) What is the oldest university in the US? Andrew Abela -13.192992643161258 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Catholic University, named, Andrew Abela) -> Andrew Abela (19262ms) What is the oldest university in the US? a new library building -13.216044508251535 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Ohio University, named, a new library building) -> a new library building (19262ms) What is the oldest university in the US? SIMON -13.217474418618805 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (SIMON, is the name of, your university) -> SIMON (19262ms) What is the oldest university in the US? a public plaza -13.217722194870635 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the University, named, a public plaza) -> a public plaza (19262ms) What is the oldest university in the US? a chief information officer -13.21787750188328 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Pace University, named, a chief information officer) -> a chief information officer (19285ms) What is the oldest university in the US? Dr. -13.218439608112293 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Stanford University, named, Dr.) -> Dr. (19285ms) What is the oldest university in the US? a lecture theatre -13.231994551771745 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the University, named, a lecture theatre) -> a lecture theatre (19285ms) What is the oldest university in the US? Ensor -13.258950064945001 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Universities, named, Ensor) -> Ensor (19285ms) What is the oldest university in the US? Laura O'Donnell -13.277268454908794 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Vanderbilt University, named, Laura O'Donnell) -> Laura O'Donnell (19285ms) What is the oldest university in the US? Ward Shepard director -13.28057679364646 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Harvard University, named, Ward Shepard director) -> Ward Shepard director (19285ms) What is the oldest university in the US? Overall experience Selection process Note -13.291201300986053 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (University, Name, Overall experience Selection process Note) -> Overall experience Selection process Note (19285ms) What is the oldest university in the US? a Military Friendly School -13.303881441817936 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Regis University, named, a Military Friendly School) -> a Military Friendly School (19285ms) What is the oldest university in the US? David Morrison vice president -13.313370845354493 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Brenau University, named, David Morrison vice president) -> David Morrison vice president (19307ms) What is the oldest university in the US? new president Excerpt -13.34335481865874 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Lawrence University, names, new president Excerpt) -> new president Excerpt (19307ms) What is the oldest university in the US? statistics Prof. Ed Rothman chairman -13.362574464856486 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (University Affairs, named, statistics Prof. Ed Rothman chairman) -> statistics Prof. Ed Rothman chairman (19307ms) What is the oldest university in the US? Michelson -13.382703005246414 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Clemson University, named, Michelson) -> Michelson (19307ms) What is the oldest university in the US? ?Eden Institute ? -13.401711858963244 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (No university, named, ?Eden Institute ?) -> ?Eden Institute ? (19307ms) What is the oldest university in the US? David Filo and Jerry Yang -13.41297372214653 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Stanford University, named, David Filo and Jerry Yang) -> David Filo and Jerry Yang (19307ms) What is the oldest university in the US? CSIS -13.584201138206046 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Carleton University, named, CSIS) -> CSIS (19328ms) What is the oldest university in the US? Sally Peck -13.616204473899796 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the University, named, Sally Peck) -> Sally Peck (19328ms) What is the oldest university in the US? a recital hall -13.686154849398488 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Liberty University, named, a recital hall) -> a recital hall (19328ms) What is the oldest university in the US? Strauss -13.709837315410722 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Princeton University, named, Strauss) -> Strauss (19328ms) What is the oldest university in the US? Gao Zhan -13.716521090473488 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (American University, named, Gao Zhan) -> Gao Zhan (19328ms) What is the oldest university in the US? Dan Goldstein -13.739955787517438 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Columbia University, named, Dan Goldstein) -> Dan Goldstein (19328ms) What is the oldest university in the US? 1979 -13.773960121684862 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (1979, was named the director of, the University) -> 1979 (19328ms) What is the oldest university in the US? the Shrine -13.86084298782462 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Hebrew University, named, the Shrine) -> the Shrine (19381ms) What is the oldest university in the US? Mumbai -13.893423173484672 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Mumbai, [is] the name of, the University) -> Mumbai (19381ms) What is the oldest university in the US? Southeast University -13.918202064589082 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (a university, named, Southeast University) -> Southeast University (19381ms) What is the oldest university in the US? Japan -13.958396891264504 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (Japan, [is] the name of, a university) -> Japan (19381ms) What is the oldest university in the US? Rhett -13.960824251785462 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Boston University, named, Rhett) -> Rhett (19381ms) What is the oldest university in the US? a week -14.002863812098433 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (universities, named, a week) -> a week (19381ms) What is the oldest university in the US? common -14.026930642091688 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (common, is the full name of, the university) -> common (19381ms) What is the oldest university in the US? the other hand -14.05125049180782 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (the other hand, is the name of, an ancient university) -> the other hand (19381ms) What is the oldest university in the US? a chair -14.070478195540423 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Yale University, named, a chair) -> a chair (19455ms) What is the oldest university in the US? the movie -14.113616706592769 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (the movie, is the name of, the university student) -> the movie (19455ms) What is the oldest university in the US? Visva-Bharati -14.115652775096695 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the university, named, Visva-Bharati) -> Visva-Bharati (19455ms) What is the oldest university in the US? Steve Sumarah -14.126671749426244 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the university, named, Steve Sumarah) -> Steve Sumarah (19455ms) What is the oldest university in the US? the publisher -14.161363404679523 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (the publisher, should be the name of, the University) -> the publisher (19455ms) What is the oldest university in the US? the username -14.223510619206404 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (the username, is the name of, the University) -> the username (19455ms) What is the oldest university in the US? a hall -14.226892163023628 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (The University, named, a hall) -> a hall (19455ms) What is the oldest university in the US? Robert Jahn -14.230300094468845 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Princeton University, named, Robert Jahn) -> Robert Jahn (19455ms) What is the oldest university in the US? a new president -14.285613749415084 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the University, named, a new president) -> a new president (19475ms) What is the oldest university in the US? the lab -14.289971531011705 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the university, named, the lab) -> the lab (19475ms) What is the oldest university in the US? a new residence hall -14.340591159414743 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the university, named, a new residence hall) -> a new residence hall (19475ms) What is the oldest university in the US? the area?s -14.366020319569877 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (University, named, the area?s) -> the area?s (19475ms) What is the oldest university in the US? the field -14.452463280197282 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (the field, was recently named the director of, the University) -> the field (19475ms) What is the oldest university in the US? the changing exhibition -14.504640819025939 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the University, named, the changing exhibition) -> the changing exhibition (19475ms) What is the oldest university in the US? the sole lecture room -14.510075546875608 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Stanford University, named, the sole lecture room) -> the sole lecture room (19475ms) What is the oldest university in the US? the second floor -14.558576874622664 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the university, named, the second floor) -> the second floor (19475ms) What is the oldest university in the US? the best book -14.590343438553244 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the University, named, the best book) -> the best book (19496ms) What is the oldest university in the US? the law school -14.648700478857748 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (The university, named, the law school) -> the law school (19496ms) What is the oldest university in the US? important -14.685117733505589 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (important, is the name of, your university) -> important (19496ms) What is the oldest university in the US? the new , state-of-the-art library -14.685603487709376 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the University, named, the new , state-of-the-art library) -> the new , state-of-the-art library (19496ms) What is the oldest university in the US? a residence hall -14.75326651023827 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (The University, named, a residence hall) -> a residence hall (19496ms) What is the oldest university in the US? the avenue -14.753322219884506 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the university, named, the avenue) -> the avenue (19496ms) What is the oldest university in the US? placenames -14.75818616343497 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (placenames, is the names of, university colleges and halls) -> placenames (19496ms) What is the oldest university in the US? the challenge -14.776741829205756 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Keele University, named, the challenge) -> the challenge (19496ms) What is the oldest university in the US? the atrium -14.797825496878545 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Indiana University, named, the atrium) -> the atrium (19516ms) What is the oldest university in the US? English statesman -14.890538492960703 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (Wilberforce University, named, English statesman) -> English statesman (19516ms) What is the oldest university in the US? government -14.892347983127786 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: ($x, be the name of, university) -> (government, was named the 12th president of, the University) -> government (19516ms) What is the oldest university in the US? the library -14.948531334140585 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (University leaders, named, the library) -> the library (19516ms) What is the oldest university in the US? starts -14.991739857499645 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (- Maastricht University, Name, starts) -> starts (19516ms) What is the oldest university in the US? the Center -15.183108375993974 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the University, named, the Center) -> the Center (19516ms) What is the oldest university in the US? the building -15.567746801712154 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the University, named, the building) -> the building (19516ms) What is the oldest university in the US? school -16.067476368474292 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the universitys, named, school) -> school (19516ms) What is the oldest university in the US? above -16.540606146463414 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (the universities, named, above) -> above (19536ms) What is the oldest university in the US? fellowship -17.172976476932188 What is the oldest university in the US? -> what be the oldest [ university ] in the us ? -> what be the name of university ? -> $x: (university, name, $x) -> (University, named, fellowship) -> fellowship (19536ms) How many sonnets did Shakespeare write? Sonnet V -2.1510606462830006 How many sonnets did Shakespeare write? -> $x: ($x, instance of, sonnets) (Shakespeare, write, $x) -> $x: ($x, instance of, sonnet) (shakespeare, write, $x) -> (Sonnet V, Instance Of, sonnet) (William Shakespeare, Works written, Sonnet 43) -> Sonnet V (5717ms) How many sonnets did Shakespeare write? Seven Ages of Man -2.2249957032345105 How many sonnets did Shakespeare write? -> $x: ($x, instance of, sonnets) (Shakespeare, write, $x) -> $x: ($x, instance of, sonnet) (shakespeare, write, $x) -> (Seven Ages of Man, Instance Of, sonnet) (William Shakespeare, Works written, The seven ages of man) -> Seven Ages of Man (5717ms) How many sonnets did Shakespeare write? Sonnet 43 -2.300652216691462 How many sonnets did Shakespeare write? -> $x: ($x, instance of, sonnets) (Shakespeare, write, $x) -> $x: ($x, instance of, sonnet) (shakespeare, write, $x) -> (Sonnet 43, Instance Of, sonnet) (William Shakespeare, Works written, Sonnet 43) -> Sonnet 43 (5717ms) How many sonnets did Shakespeare write? Sonnet 71 -2.345546172126604 How many sonnets did Shakespeare write? -> $x: ($x, instance of, sonnets) (Shakespeare, write, $x) -> $x: ($x, instance of, sonnet) (shakespeare, write, $x) -> (Sonnet 71, Instance Of, sonnet) (William Shakespeare, Works written, Sonnet 71) -> Sonnet 71 (5744ms) How many sonnets did Shakespeare write? Sonnet 116 -2.345546172126604 How many sonnets did Shakespeare write? -> $x: ($x, instance of, sonnets) (Shakespeare, write, $x) -> $x: ($x, instance of, sonnet) (shakespeare, write, $x) -> (Sonnet 116, Instance Of, sonnet) (William Shakespeare, Works written, Sonnet 116) -> Sonnet 116 (5717ms) How many sonnets did Shakespeare write? Sonnet 153 -2.345546172126604 How many sonnets did Shakespeare write? -> $x: ($x, instance of, sonnets) (Shakespeare, write, $x) -> $x: ($x, instance of, sonnet) (shakespeare, write, $x) -> (Sonnet 153, Instance Of, sonnet) (William Shakespeare, Works written, Sonnet 153) -> Sonnet 153 (5717ms) How many sonnets did Shakespeare write? Romeo and Juliet -3.776011475706631 How many sonnets did Shakespeare write? -> $x: ($x, instance of, sonnets) (Shakespeare, write, $x) -> $x: ($x, instance of, sonnet) (shakespeare, write, $x) -> (Romeo and Juliet, Instance Of, sonnet) (Shakespeare, wrote, Romeo and Juliet) -> Romeo and Juliet (5744ms) How many sonnets did Shakespeare write? love -4.887778687145947 How many sonnets did Shakespeare write? -> $x: ($x, instance of, sonnets) (Shakespeare, write, $x) -> $x: ($x, instance of, sonnets) (Shakespeare, in write, $x) -> (love, Instance Of, shakspeare sonnet's address topic) (Shakespeare, wrote in, Love) -> love (7585ms) How many sonnets did Shakespeare write? Sonnet 73 -5.161779547628202 How many sonnets did Shakespeare write? -> $x: ($x, instance of, sonnets) (Shakespeare, write, $x) -> $x: ($x, instance of, sonnets) (Shakespeare, in write, $x) -> (Sonnet 73, Instance Of, Shakespearian sonnet) (Shakespeare, wrote in, Sonnet 73) -> Sonnet 73 (7585ms) How many sonnets did Shakespeare write? Romeo -6.0994794019631655 How many sonnets did Shakespeare write? -> $x: ($x, instance of, sonnets) (Shakespeare, write, $x) -> $x: ($x, instance of, sonnets) (Shakespeare, make fun, $x) -> (Romeo, Instance Of, religious person the lover's share a sonnet) (Shakespeare?s play Mercutio, makes fun of, Romeo) -> Romeo (10187ms) How many sonnets did Shakespeare write? Sonnet 127 -6.737245176874088 How many sonnets did Shakespeare write? -> $x: ($x, instance of, sonnets) (Shakespeare, write, $x) -> $x: ($x, instance of, sonnets) (Shakespeare, in write, $x) -> (Sonnet 127, Instance Of, sonnet) (Shakespeare, wrote in, Sonnet 73) -> Sonnet 127 (7696ms) How many sonnets did Shakespeare write? Sonnet 130 -6.7694803718419365 How many sonnets did Shakespeare write? -> $x: ($x, instance of, sonnets) (Shakespeare, write, $x) -> $x: ($x, instance of, sonnets) (Shakespeare, in write, $x) -> (Sonnet 130, Instance Of, sonnet) (Shakespeare, wrote in, Sonnet 73) -> Sonnet 130 (7722ms) How did Eva Peron die? cancer -8.668329329389154 How did Eva Peron die? -> how do [ eva peron ] die ? -> what do eva peron die ? -> $x: (eva peron, die, $x) -> (Eva Peron, died of, cancer) -> cancer (10953ms) How did Eva Peron die? July 26 , 1952 -9.569781272665228 How did Eva Peron die? -> how do [ eva peron ] die ? -> what do eva peron die ? -> $x: (eva peron, die, $x) -> (Eva Peron, died on, July 26 , 1952) -> July 26 , 1952 (10953ms) How did Eva Peron die? Cancer -10.573733880031279 How did Eva Peron die? -> how [ do eva peron ] die ? -> what cause do eva peron die ? -> $x: ($x, instance of, cause) (eva peron, die, $x) -> (Cancer, Instance Of, cause) (Eva Peron, died of, cancer) -> Cancer (10954ms) How did Eva Peron die? Argentina -10.823037103055556 How did Eva Peron die? -> how do [ eva peron ] die ? -> what do eva peron die ? -> $x: (eva peron, die, $x) -> (Eva Peron, died in, Argentina) -> Argentina (11135ms) What was Thailand's original name? Central Plains -4.732550164173659 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Central Thailand, Also known as, Central Plains) -> Central Plains (13743ms) What was Thailand's original name? Street Children in Thailand -4.765749726377235 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Street children in Thailand, Also known as, Street Children in Thailand) -> Street Children in Thailand (13743ms) What was Thailand's original name? Ministry of Interior of Thailand -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Thailand Ministry of Interior, Also known as, Ministry of Interior of Thailand) -> Ministry of Interior of Thailand (19973ms) What was Thailand's original name? Vishay (Thailand) Limited -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Vishay (Thailand) Ltd, Also known as, Vishay (Thailand) Limited) -> Vishay (Thailand) Limited (17371ms) What was Thailand's original name? Denmark-Thailand relations -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Denmark?Thailand relations, Also known as, Denmark-Thailand relations) -> Denmark-Thailand relations (17571ms) What was Thailand's original name? Safeskin Latex (Thailand) Limited, Thailand -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Safeskin Latex (Thailand) Ltd Thailand, Also known as, Safeskin Latex (Thailand) Limited, Thailand) -> Safeskin Latex (Thailand) Limited, Thailand (19688ms) What was Thailand's original name? Firearms proliferation in thailand -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Firearms proliferation in Thailand, Also known as, Firearms proliferation in thailand) -> Firearms proliferation in thailand (19973ms) What was Thailand's original name? Makok, Lamphun -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Makok, Thailand, Also known as, Makok, Lamphun) -> Makok, Lamphun (19973ms) What was Thailand's original name? Vantico (Thailand) Ltd -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Vantico (Thailand) Limited, Also known as, Vantico (Thailand) Ltd) -> Vantico (Thailand) Ltd (19918ms) What was Thailand's original name? CEREAL PARTNERS (THAILAND) LIMITED -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (CEREAL PARTNERS (THAILAND) Ltd, Also known as, CEREAL PARTNERS (THAILAND) LIMITED) -> CEREAL PARTNERS (THAILAND) LIMITED (19918ms) What was Thailand's original name? Guidant (Thailand) Ltd (Thailand) -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Guidant (Thailand) Ltd. (Thailand), Also known as, Guidant (Thailand) Ltd (Thailand)) -> Guidant (Thailand) Ltd (Thailand) (19688ms) What was Thailand's original name? Hewitt Associates (Thailand) Ltd -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Hewitt Associates (Thailand) Limited, Also known as, Hewitt Associates (Thailand) Ltd) -> Hewitt Associates (Thailand) Ltd (19902ms) What was Thailand's original name? Safeskin Medical & Scientific (Thailand) Ltd Thailand -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Safeskin Medical & Scientific (Thailand) Limited, Thailand, Also known as, Safeskin Medical & Scientific (Thailand) Ltd Thailand) -> Safeskin Medical & Scientific (Thailand) Ltd Thailand (13744ms) What was Thailand's original name? Hussmann (Thailand) Company -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Hussmann (Thailand) Co ltd, Also known as, Hussmann (Thailand) Company) -> Hussmann (Thailand) Company (19182ms) What was Thailand's original name? Transitions Optical (Thailand) Ltd. - Thailand -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Transitions Optical (Thailand) Ltd Thailand, Also known as, Transitions Optical (Thailand) Ltd. - Thailand) -> Transitions Optical (Thailand) Ltd. - Thailand (19937ms) What was Thailand's original name? Tyco Healthcare (Thailand) Limited -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Tyco Healthcare (Thailand) Ltd, Also known as, Tyco Healthcare (Thailand) Limited) -> Tyco Healthcare (Thailand) Limited (19182ms) What was Thailand's original name? MVCI (Thailand) Ltd -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (MVCI (Thailand) Limited, Also known as, MVCI (Thailand) Ltd) -> MVCI (Thailand) Ltd (16568ms) What was Thailand's original name? Procter & Gamble Holding (Thailand) -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Procter & Gamble Holding (Thailand) [Thailand], Also known as, Procter & Gamble Holding (Thailand)) -> Procter & Gamble Holding (Thailand) (13743ms) What was Thailand's original name? Thermadyne (Thailand) Co Ltd -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Thermadyne (Thailand) Co. Ltd., Also known as, Thermadyne (Thailand) Co Ltd) -> Thermadyne (Thailand) Co Ltd (19918ms) What was Thailand's original name? Passport's Thailand. -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Thailand: trip planner & guide, Also known as, Passport's Thailand.) -> Passport's Thailand. (17571ms) What was Thailand's original name? Crown Prince of Siam -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Crown Prince of Thailand, Also known as, Crown Prince of Siam) -> Crown Prince of Siam (19937ms) What was Thailand's original name? Dantean (Thailand) Company -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Dantean (Thailand) Co ltd, Also known as, Dantean (Thailand) Company) -> Dantean (Thailand) Company (19182ms) What was Thailand's original name? Wilsonart (Thailand) Co Ltd -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Wilsonart (Thailand) Co. Ltd., Also known as, Wilsonart (Thailand) Co Ltd) -> Wilsonart (Thailand) Co Ltd (19973ms) What was Thailand's original name? Pakistan-Thailand relations -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Pakistan?Thailand relations, Also known as, Pakistan-Thailand relations) -> Pakistan-Thailand relations (17371ms) What was Thailand's original name? Morgan Stanley (Thailand) Ltd -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Morgan Stanley (Thailand) Limited, Also known as, Morgan Stanley (Thailand) Ltd) -> Morgan Stanley (Thailand) Ltd (19973ms) What was Thailand's original name? Nuptiality patterns in Thailand. -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Nuptiality in Thailand, Also known as, Nuptiality patterns in Thailand.) -> Nuptiality patterns in Thailand. (17371ms) What was Thailand's original name? FEI Systems (Thailand) Company, (Thailand) -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (FEI Systems (Thailand) Co (Thailand), Also known as, FEI Systems (Thailand) Company, (Thailand)) -> FEI Systems (Thailand) Company, (Thailand) (19902ms) What was Thailand's original name? People's Republic of China?Thailand relations -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (China?Thailand relations, Also known as, People's Republic of China?Thailand relations) -> People's Republic of China?Thailand relations (17502ms) What was Thailand's original name? BearingPoint (Thailand) Ltd. (Thailand) -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (BearingPoint (Thailand) Ltd (Thailand), Also known as, BearingPoint (Thailand) Ltd. (Thailand)) -> BearingPoint (Thailand) Ltd. (Thailand) (16568ms) What was Thailand's original name? Wella Trading (Thailand) Ltd -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Wella Trading (Thailand) Ltd. [Thailand], Also known as, Wella Trading (Thailand) Ltd) -> Wella Trading (Thailand) Ltd (19955ms) What was Thailand's original name? Assumption University, Thailand, main campus -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Assumption University, Thailand, Also known as, Assumption University, Thailand, main campus) -> Assumption University, Thailand, main campus (19901ms) What was Thailand's original name? Reader's Digest (Thailand) Limited -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Readers Digest (Thailand) Ltd, Also known as, Reader's Digest (Thailand) Limited) -> Reader's Digest (Thailand) Limited (19901ms) What was Thailand's original name? Tellabs (Thailand) Co Ltd -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Tellabs (Thailand) Co., Ltd., Also known as, Tellabs (Thailand) Co Ltd) -> Tellabs (Thailand) Co Ltd (17502ms) What was Thailand's original name? Thai?lande vue du ciel. -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Thailand from the air, Also known as, Thai?lande vue du ciel.) -> Thai?lande vue du ciel. (17571ms) What was Thailand's original name? Survivor (Television program) -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Thailand, Also known as, Survivor (Television program)) -> Survivor (Television program) (19901ms) What was Thailand's original name? Fintube (Thailand) Ltd -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Fintube (Thailand) Limited, Also known as, Fintube (Thailand) Ltd) -> Fintube (Thailand) Ltd (19937ms) What was Thailand's original name? China ? Thailand relations -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (China?Thailand relations, Also known as, China ? Thailand relations) -> China ? Thailand relations (17371ms) What was Thailand's original name? Richardson Electronics (Thailand) Limited -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Richardson Electronics (Thailand) Ltd, Also known as, Richardson Electronics (Thailand) Limited) -> Richardson Electronics (Thailand) Limited (19937ms) What was Thailand's original name? Lionbridge (Thailand) Ltd -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Lionbridge (Thailand) Limited, Also known as, Lionbridge (Thailand) Ltd) -> Lionbridge (Thailand) Ltd (19689ms) What was Thailand's original name? Huntsman (Thailand) Limited -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Huntsman (Thailand) Ltd, Also known as, Huntsman (Thailand) Limited) -> Huntsman (Thailand) Limited (19918ms) What was Thailand's original name? Safeskin Corporation (Thailand) Limited, Thailand -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Safeskin Corp (Thailand) Ltd Thailand, Also known as, Safeskin Corporation (Thailand) Limited, Thailand) -> Safeskin Corporation (Thailand) Limited, Thailand (19688ms) What was Thailand's original name? Kimberly Clark Manufacturing (Thailand) Ltd Thailand -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Kimberly-Clark Manufacturing (Thailand) Limited, Thailand, Also known as, Kimberly Clark Manufacturing (Thailand) Ltd Thailand) -> Kimberly Clark Manufacturing (Thailand) Ltd Thailand (19955ms) What was Thailand's original name? Gillette (Thailand) -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Gillette (Thailand) [Thailand], Also known as, Gillette (Thailand)) -> Gillette (Thailand) (19955ms) What was Thailand's original name? PPG Coatings (Thailand) Co., Ltd. - Thailand -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (PPG Coatings (Thailand) Co Ltd Thailand, Also known as, PPG Coatings (Thailand) Co., Ltd. - Thailand) -> PPG Coatings (Thailand) Co., Ltd. - Thailand (17502ms) What was Thailand's original name? Diebold (Thailand) Company -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Diebold (Thailand) Co ltd, Also known as, Diebold (Thailand) Company) -> Diebold (Thailand) Company (19955ms) What was Thailand's original name? Dentsply (Thailand) Ltd. (Thailand) -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Dentsply (Thailand) Ltd (Thailand), Also known as, Dentsply (Thailand) Ltd. (Thailand)) -> Dentsply (Thailand) Ltd. (Thailand) (19902ms) What was Thailand's original name? Denmark ? Thailand relations -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Denmark?Thailand relations, Also known as, Denmark ? Thailand relations) -> Denmark ? Thailand relations (19937ms) What was Thailand's original name? Mengrai, Phaya Mengrai -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Mengrai, Thailand, Also known as, Mengrai, Phaya Mengrai) -> Mengrai, Phaya Mengrai (16568ms) What was Thailand's original name? People's Republic of China ? Thailand relations -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (China?Thailand relations, Also known as, People's Republic of China ? Thailand relations) -> People's Republic of China ? Thailand relations (17571ms) What was Thailand's original name? Kellogg (Thailand) - Thailand -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Kellogg (Thailand) Thailand, Also known as, Kellogg (Thailand) - Thailand) -> Kellogg (Thailand) - Thailand (19689ms) What was Thailand's original name? Renaissance Holdings (Thailand) Ltd -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Renaissance Holdings (Thailand) Limited, Also known as, Renaissance Holdings (Thailand) Ltd) -> Renaissance Holdings (Thailand) Ltd (19937ms) What was Thailand's original name? Afternoons in Thailand -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Afternoons In Thailand, Also known as, Afternoons in Thailand) -> Afternoons in Thailand (19955ms) What was Thailand's original name? KLA-Tencor (Thailand) Ltd -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (KLA Tencor (Thailand) Ltd, Also known as, KLA-Tencor (Thailand) Ltd) -> KLA-Tencor (Thailand) Ltd (19955ms) What was Thailand's original name? Ryder Thailand VI LLC -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Ryder Thailand VI, LLC, Also known as, Ryder Thailand VI LLC) -> Ryder Thailand VI LLC (19973ms) What was Thailand's original name? Kimball Electronics (Thailand) Ltd -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Kimball Electronics (Thailand) Limited, Also known as, Kimball Electronics (Thailand) Ltd) -> Kimball Electronics (Thailand) Ltd (19918ms) What was Thailand's original name? Ryder Thailand V, LLC -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Ryder Thailand V LLC, Also known as, Ryder Thailand V, LLC) -> Ryder Thailand V, LLC (19182ms) What was Thailand's original name? Makok, Pa Sang -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Makok, Thailand, Also known as, Makok, Pa Sang) -> Makok, Pa Sang (17502ms) What was Thailand's original name? Mettler-Toledo (Thailand) Ltd -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Mettler Toledo (Thailand) Ltd, Also known as, Mettler-Toledo (Thailand) Ltd) -> Mettler-Toledo (Thailand) Ltd (16568ms) What was Thailand's original name? Lear Seating (Thailand) Corp. Ltd. (Thailand) -4.816825975921197 What was Thailand's original name? -> $x: (Thailand, original name, $x) -> $x: (Thailand, also know as, $x) -> (Lear Seating (Thailand) Corp Ltd (Thailand), Also known as, Lear Seating (Thailand) Corp. Ltd. (Thailand)) -> Lear Seating (Thailand) Corp. Ltd. (Thailand) (19918ms) How big is a keg? 232.986 -11.989723417906681 How big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: (a keg, length, $x) -> (Tap A Keg, Length, 232.986) -> 232.986 (19394ms) How big is a keg? 139.813 -12.10884190050304 How big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: (a keg, length, $x) -> (My Lizzard Had A Keg Party, Length, 139.813) -> 139.813 (19394ms) How big is a keg? 15.5 -12.393550930107365 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> (a Sankey keg, has a diameter of, 15.5) -> 15.5 (12611ms) How big is a keg? 7pm We?ll -12.440158579990406 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (7pm We?ll, be tapping, a keg) -> 7pm We?ll (13698ms) How big is a keg? 6pm -12.457842518821517 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (6pm, we?ll be tapping, a keg) -> 6pm (13697ms) How big is a keg? big -12.467310011706875 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (big, is, a keg) -> big (13698ms) How big is a keg? Mi6 -12.553836804743261 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, track #, a keg) -> (Mi6, Tracks Recorded, My Lizzard Had A Keg Party) -> Mi6 (19394ms) How big is a keg? a 6 pack -12.573672413029428 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (a 6 pack, there is, a keg) -> a 6 pack (13697ms) How big is a keg? 987602 -12.599903556832846 How big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: (a keg, length, $x) -> (Typical form for a keg stand, Length, 987602) -> 987602 (19394ms) How big is a keg? 07 Kegging -12.610172739713274 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (07 Kegging, Is, A Keg) -> 07 Kegging (13697ms) How big is a keg? Thrasher Skate Rock, Volume 3: Wild Riders of Boards -12.65800519438218 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, track #, a keg) -> (Thrasher Skate Rock, Volume 3: Wild Riders of Boards, Tracks, The Keg Kept a Flowin') -> Thrasher Skate Rock, Volume 3: Wild Riders of Boards (19394ms) How big is a keg? LepreCon32 -12.700048134030125 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (LepreCon32, was stocked with, a keg) -> LepreCon32 (13697ms) How big is a keg? a match -12.998845066975303 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (a match, is to, a keg) -> a match (13748ms) How big is a keg? 182.0 -13.033669890208527 How big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: (a keg, length, $x) -> (The Keg Kept a Flowin', Length, 182.0) -> 182.0 (19394ms) How big is a keg? 74.0 -13.093645629697601 How big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: (a keg, length, $x) -> (A Keg of Beer and an Accordion, Length, 74.0) -> 74.0 (19394ms) How big is a keg? Horatio Sanz -13.094395515279158 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (Horatio Sanz, was manning, a keg) -> Horatio Sanz (13747ms) How big is a keg? 1068.6288 -13.117207527354024 How big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: (a keg, length, $x) -> (Powder Keg: A Blast into the Wilderness, Track Length, 1068.6288) -> 1068.6288 (19424ms) How big is a keg? Them Boners Be Poppin' -13.190152636880383 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, track #, a keg) -> (Them Boners Be Poppin', Tracks, Keg Kept a Flowin') -> Them Boners Be Poppin' (19423ms) How big is a keg? A firkin -13.24904817258497 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (A firkin, is, a keg) -> A firkin (13747ms) How big is a keg? A kegerator -13.295151661543915 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (A kegerator, is, a keg-) -> A kegerator (13747ms) How big is a keg? Tap A Keg -13.36883036077492 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, track #, a keg) -> (Tap A Keg, Tracks, Tap A Keg) -> Tap A Keg (19423ms) How big is a keg? a cask -13.374773177927253 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (a cask, is nothing like, a keg) -> a cask (13748ms) How big is a keg? one end -13.411159831019098 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (one end, was, a keg) -> one end (13748ms) How big is a keg? Keg Kept a Flowin' -13.4283896020731 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, track #, a keg) -> (Keg Kept a Flowin', Tracks, Keg Kept a Flowin') -> Keg Kept a Flowin' (19423ms) How big is a keg? Bend -13.428787063847807 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (Bend, is getting, a keg) -> Bend (13795ms) How big is a keg? employees -13.441250435098125 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (employees, are treated to, a keg) -> employees (13795ms) How big is a keg? We?ll -13.449680117319852 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (We?ll, be getting, a keg) -> We?ll (13795ms) How big is a keg? DC Brau -13.468819703609963 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (DC Brau, are bringing, a keg) -> DC Brau (13795ms) How big is a keg? The Keg Kept a Flowin' -13.476036995111642 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, track #, a keg) -> (The Keg Kept a Flowin', Tracks, The Keg Kept a Flowin') -> The Keg Kept a Flowin' (19424ms) How big is a keg? a fan -13.505712282086812 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (a fan, was in, a keg) -> a fan (13795ms) How big is a keg? Twelve artists -13.512602184206903 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (Twelve artists, were given, a keg) -> Twelve artists (13795ms) How big is a keg? Face Plant -13.515021225779542 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, track #, a keg) -> (Face Plant, Tracks Recorded, Tap A Keg) -> Face Plant (19423ms) How big is a keg? a referee shirt -13.520559967221361 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (a referee shirt, was rolling, a keg) -> a referee shirt (13815ms) How big is a keg? The Pub -13.53316754403031 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (The Pub, will be tapping, a keg) -> The Pub (13813ms) How big is a keg? Tales From The Backside -13.547508084669458 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, track #, a keg) -> (Tales From The Backside, Tracks, Tap A Keg) -> Tales From The Backside (19424ms) How big is a keg? Building A Better Boy (KegZ Grimey ReMix) -13.547508084669458 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, track #, a keg) -> (Building A Better Boy (KegZ Grimey ReMix), Tracks, Building A Better Boy (KegZ Grimey ReMix)) -> Building A Better Boy (KegZ Grimey ReMix) (19505ms) How big is a keg? A Keg of Beer and an Accordion -13.547508084669458 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, track #, a keg) -> (A Keg of Beer and an Accordion, Tracks, A Keg of Beer and an Accordion) -> A Keg of Beer and an Accordion (19505ms) How big is a keg? Oskar Blues -13.548655743578388 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (Oskar Blues, will be tapping, a keg) -> Oskar Blues (13813ms) How big is a keg? AleSmith -13.555802681209201 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (AleSmith, will be seving, a keg) -> AleSmith (13813ms) How big is a keg? Boneless Ones -13.574996965268618 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, track #, a keg) -> (Boneless Ones, Tracks Recorded, The Keg Kept a Flowin') -> Boneless Ones (19505ms) How big is a keg? Re-Building A Better Boy -13.574996965268618 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, track #, a keg) -> (Re-Building A Better Boy, Tracks, Building A Better Boy (KegZ Grimey ReMix)) -> Re-Building A Better Boy (19505ms) How big is a keg? The Boneless Ones -13.574996965268618 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, track #, a keg) -> (The Boneless Ones, Tracks Recorded, Keg Kept a Flowin') -> The Boneless Ones (19505ms) How big is a keg? Machine Boy -13.598558862925039 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, track #, a keg) -> (Machine Boy, Tracks Recorded, Building A Better Boy (KegZ Grimey ReMix)) -> Machine Boy (19541ms) How big is a keg? Calamity Drenching -13.598558862925039 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, track #, a keg) -> (Calamity Drenching, Tracks, A Keg of Beer and an Accordion) -> Calamity Drenching (19505ms) How big is a keg? Amy and Jared -13.604235008302924 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (Amy and Jared, are getting, a keg) -> Amy and Jared (13814ms) How big is a keg? PM Re -13.604494213946474 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (PM Re, are in, a keg) -> PM Re (13813ms) How big is a keg? An unused gift -13.614029755562383 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (An unused gift, is, a keg) -> An unused gift (13834ms) How big is a keg? McCarthy Trenching -13.618979174227272 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, track #, a keg) -> (McCarthy Trenching, Tracks Recorded, A Keg of Beer and an Accordion) -> McCarthy Trenching (19541ms) How big is a keg? 5549 -13.6263551295423 How big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: (a keg, length, $x) -> (A typical keg with single opening in the centre of the top end, Length, 5549) -> 5549 (19541ms) How big is a keg? There?s -13.64169508524044 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (There?s, said to be, a keg) -> There?s (13833ms) How big is a keg? Cambridge Brewing Co. -13.641988462454407 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (Cambridge Brewing Co., is donating, a keg) -> Cambridge Brewing Co. (13833ms) How big is a keg? Live Oak -13.669040611760948 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (Live Oak, is donating, a keg) -> Live Oak (13833ms) How big is a keg? The Niger Delta -13.673327607201855 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (The Niger Delta, is like, a keg) -> The Niger Delta (13833ms) How big is a keg? board -13.693289972351726 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (board, was, a keg) -> board (13833ms) How big is a keg? LAKS -13.698283752742752 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (LAKS, will be providing, a Keg) -> LAKS (13851ms) How big is a keg? much beer -13.709727718080407 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (much beer, is in, a keg) -> much beer (13851ms) How big is a keg? New Belgium Brewing -13.76970518977646 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (New Belgium Brewing, is donating, a keg) -> New Belgium Brewing (13851ms) How big is a keg? Firestone Walker -13.76970518977646 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (Firestone Walker, is also donating, a keg) -> Firestone Walker (13851ms) How big is a keg? Crow Peak Brewery -13.793737595515534 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (Crow Peak Brewery, are serving up, a keg) -> Crow Peak Brewery (13851ms) How big is a keg? Al Oliver?s house -13.83306969066757 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (Al Oliver?s house, was left of, a keg) -> Al Oliver?s house (13851ms) How big is a keg? A second boy -13.851871010997085 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (A second boy, was sitting near, a keg) -> A second boy (13869ms) How big is a keg? Africa ?s giant -13.856942987008651 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (Africa ?s giant, is sitting astride, a keg) -> Africa ?s giant (13869ms) How big is a keg? Biker Bob -13.862420757667707 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (Biker Bob, is resting against, a keg) -> Biker Bob (13869ms) How big is a keg? The Steeler?s super bowl run -13.875019177632765 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (The Steeler?s super bowl run, was, a keg) -> The Steeler?s super bowl run (13869ms) How big is a keg? the cooler -13.893077323330832 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the cooler, is, a keg) -> the cooler (13869ms) How big is a keg? How many beers -13.969033854710613 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (How many beers, are in, a keg) -> How many beers (13888ms) How big is a keg? How much beer -13.969033854710613 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (How much beer, is in, a keg) -> How much beer (13869ms) How big is a keg? vegetables , fish or fruits -14.102023202232822 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (vegetables , fish or fruits, are placed on, a keg) -> vegetables , fish or fruits (13888ms) How big is a keg? the press -14.125865075539904 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the press, was stored, a keg) -> the press (13888ms) How big is a keg? Cloverleaf -14.227366477201912 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (Cloverleaf, is tapping, a keg) -> Cloverleaf (13888ms) How big is a keg? Ommegang -14.296969888909322 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (Ommegang, will be sending, a keg) -> Ommegang (13888ms) How big is a keg? Alcoholiday -14.34867554180189 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, track #, a keg) -> (Alcoholiday, Tracks, My Lizzard Had A Keg Party) -> Alcoholiday (19541ms) How big is a keg? Gossip -14.35645937823545 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (Gossip, is like, a keg) -> Gossip (13908ms) How big is a keg? the drum -14.375663090174111 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the drum, was, a keg) -> the drum (13908ms) How big is a keg? Donthen -14.400669225313228 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (Donthen, was bringing, a keg) -> Donthen (13908ms) How big is a keg? Okubena -14.405909880997141 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (Okubena, was given, a keg) -> Okubena (13908ms) How big is a keg? Anson -14.590523568638622 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (Anson, is sitting on, a keg) -> Anson (13908ms) How big is a keg? How many cases -14.613659709072559 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (How many cases, are in, a keg) -> How many cases (13907ms) How big is a keg? the basement -14.614624423351655 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the basement, was, a keg) -> the basement (13926ms) How big is a keg? the middle -14.635025542215606 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the middle, was, a keg) -> the middle (13925ms) How big is a keg? Queen Selyse's uncle -14.667931114987626 How big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: ($x, instance of, a keg) -> (Queen Selyse's uncle, Instance Of, keg of a man) -> Queen Selyse's uncle (19541ms) How big is a keg? the state -14.687829201493003 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the state, is like, a keg) -> the state (13925ms) How big is a keg? the boat -14.735575899579757 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the boat, were tapping, a keg) -> the boat (13927ms) How big is a keg? SHIFTY -14.74496088676018 How big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: ($x, instance of, a keg) -> (SHIFTY, Instance Of, powder keg of a film) -> SHIFTY (19541ms) How big is a keg? the team -14.755912450316453 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the team, were tapping, a keg) -> the team (13927ms) How big is a keg? Cathy Jordan -14.777447745650097 How big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: ($x, instance of, a keg) -> (Cathy Jordan, Instance Of, powder keg of a singer) -> Cathy Jordan (19559ms) How big is a keg? KEGSET.RTM. -14.789854842195323 How big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: ($x, instance of, a keg) -> (KEGSET.RTM., Instance Of, arrangement of a plurality KEGS.RTM) -> KEGSET.RTM. (19560ms) How big is a keg? object of the invention -14.804936626249257 How big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: ($x, instance of, a keg) -> (object of the invention, Instance Of, keg enveloping a container) -> object of the invention (19560ms) How big is a keg? the business -14.817806288927638 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the business, was settled, a keg) -> the business (13927ms) How big is a keg? Flashpoint Germany -14.82234170108524 How big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: ($x, instance of, a keg) -> (Flashpoint Germany, Instance Of, powder keg of a game) -> Flashpoint Germany (19560ms) How big is a keg? Picture shown -14.82234170108524 How big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: ($x, instance of, a keg) -> (Picture shown, Instance Of, stock picture of a Powder Keg) -> Picture shown (19560ms) How big is a keg? KeyKeg -14.8498305816844 How big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: ($x, instance of, a keg) -> (KeyKeg, Instance Of, disposable keg consisting of a plastic ball) -> KeyKeg (19560ms) How big is a keg? Marc Levin's Slam -14.8498305816844 How big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: ($x, instance of, a keg) -> (Marc Levin's Slam, Instance Of, powder keg of a movie) -> Marc Levin's Slam (19581ms) How big is a keg? Queen Selyse s uncle -14.8498305816844 How big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: ($x, instance of, a keg) -> (Queen Selyse s uncle, Instance Of, keg of a man) -> Queen Selyse s uncle (19560ms) How big is a keg? The Last King of Scotland -14.866786607597366 How big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: ($x, instance of, a keg) -> (The Last King of Scotland, Instance Of, slickly made powder keg of a film) -> The Last King of Scotland (19580ms) How big is a keg? the statue -14.918867505615747 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the statue, is hooked up to, a keg) -> the statue (13944ms) How big is a keg? the country -14.95370960835086 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the country, was sitting on, a keg) -> the country (13944ms) How big is a keg? a room -15.172846382495841 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (a room, are lined with, kegs) -> a room (19580ms) How big is a keg? sixtel -15.222899958363076 How big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: ($x, instance of, a keg) -> (sixtel, Instance Of, one sixth of a keg, or one third of a half) -> sixtel (19581ms) How big is a keg? Guinness -15.262912194667573 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (Guinness, is served from, a keg) -> Guinness (13944ms) How big is a keg? a good time -15.347175768161634 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (a good time, is, ?Keg) -> a good time (19580ms) How big is a keg? a UF student -15.368967913655034 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (a UF student, was taking, kegs) -> a UF student (19580ms) How big is a keg? The report -15.371545550424477 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (The report, is, a keg) -> The report (13944ms) How big is a keg? The prize -15.371545550424477 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (The prize, is, a keg) -> The prize (13944ms) How big is a keg? front -15.387791288027069 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (front, are, kegs) -> front (19580ms) How big is a keg? The reward -15.39194666928843 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (The reward, is, a keg) -> The reward (13944ms) How big is a keg? the far -15.403193040691336 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the far, right is, a keg) -> the far (13962ms) How big is a keg? Beer -15.434373339853341 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (Beer, is available in, Kegs) -> Beer (19609ms) How big is a keg? the nimbly engineered sound system -15.517089845021943 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the nimbly engineered sound system, is, a keg) -> the nimbly engineered sound system (13962ms) How big is a keg? the lighted fire crackers -15.540631438601668 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the lighted fire crackers, was thrown into, a keg) -> the lighted fire crackers (13962ms) How big is a keg? the beer -15.550433702087302 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the beer, is in, a keg) -> the beer (13962ms) How big is a keg? ActiveGS -15.55294562481365 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (ActiveGS, is a front-end for, KEGS) -> ActiveGS (19609ms) How big is a keg? Thorekssson -15.623509158217672 How big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: ($x, instance of, a keg) -> (Thorekssson, Instance Of, venerable Elder fond of a keg) -> Thorekssson (19609ms) How big is a keg? The worker -15.63426207262232 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (The worker, was reportedly cleaning, a keg) -> The worker (13962ms) How big is a keg? The beer -15.64365529782428 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (The beer, is chilled overnight in, a keg) -> The beer (13962ms) How big is a keg? Slocum -15.650998038816832 How big is a keg? -> how big be [ a keg ] ? -> what be the wingspan of a keg ? -> $x: (a keg, wingspan, $x) -> $x: ($x, instance of, a keg) -> (Slocum, Instance Of, powder keg of a Christian spectacle ringmaster) -> Slocum (19609ms) How big is a keg? Mam -15.652433337830521 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (Mam, was stacking, kegs) -> Mam (19609ms) How big is a keg? such a title -15.686911944464628 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (such a title, is doubly true for, KEG.) -> such a title (19609ms) How big is a keg? the Daily Pint -15.712849205758024 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (the Daily Pint, will be tapping, kegs) -> the Daily Pint (19609ms) How big is a keg? Brouwer?s -15.740715688118977 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (Brouwer?s, will be hosting, Kegs) -> Brouwer?s (19629ms) How big is a keg? bathtub -15.751165500416663 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (bathtub, is surrounded by, kegs) -> bathtub (19629ms) How big is a keg? Katalyst Kombucha?s accounts -15.759654906036689 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (Katalyst Kombucha?s accounts, are delivered in, kegs) -> Katalyst Kombucha?s accounts (19629ms) How big is a keg? the first time draft beer -15.773568840791567 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the first time draft beer, has been served from, a keg) -> the first time draft beer (13980ms) How big is a keg? the delivery guy -15.776776931772593 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the delivery guy, is sitting on, a keg) -> the delivery guy (13980ms) How big is a keg? The Raleigh Times -15.778223083971191 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (The Raleigh Times, will be tapping, kegs) -> The Raleigh Times (19629ms) How big is a keg? Tadcaster -15.780637405912485 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (Tadcaster, is, keg) -> Tadcaster (19629ms) How big is a keg? minds and bodies -15.785380999061026 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (minds and bodies, are, kegs) -> minds and bodies (19629ms) How big is a keg? McCabe pub -15.786265185462122 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (McCabe pub, were havin, kegs) -> McCabe pub (19629ms) How big is a keg? Clark Williams -15.803949124293233 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (Clark Williams, is filling, kegs) -> Clark Williams (19649ms) How big is a keg? The individual batches -15.808875099246753 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (The individual batches, were racked to, a kegs) -> The individual batches (13980ms) How big is a keg? Love Stout -15.825413638823182 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (Love Stout, is only being made available via, kegs) -> Love Stout (19649ms) How big is a keg? Beinen? -15.842789284837178 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (Beinen?, is German for, ?Kegs) -> Beinen? (19649ms) How big is a keg? The barrel -15.862479452082123 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (The barrel, is traditionally referred to as, a keg) -> The barrel (13980ms) How big is a keg? quarters others -15.863265004094321 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (quarters others, were rolling, kegs) -> quarters others (19649ms) How big is a keg? the punch bowl -15.868105226635578 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the punch bowl, was, a keg) -> the punch bowl (13980ms) How big is a keg? Special arrangements -15.884391390489705 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (Special arrangements, can be made for, kegs) -> Special arrangements (19649ms) How big is a keg? Blueberry Wheat -15.88769972922737 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (Blueberry Wheat, is generally available only in, kegs) -> Blueberry Wheat (19649ms) How big is a keg? Ta Henket -15.990415574181966 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (Ta Henket, are being poured from, kegs) -> Ta Henket (19649ms) How big is a keg? cross country -15.999048919021387 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (cross country, was, Kegs) -> cross country (19649ms) How big is a keg? Wine -16.001517903710106 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (Wine, is increasingly coming in, kegs) -> Wine (19668ms) How big is a keg? Col . Eiland -16.007215326611984 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (Col . Eiland, was running, KEG) -> Col . Eiland (19668ms) How big is a keg? beer and wine and beer -16.008834794544153 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (beer and wine and beer, may be served in, kegs) -> beer and wine and beer (19668ms) How big is a keg? similar tastes -16.027109062274484 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (similar tastes, are placed in, kegs) -> similar tastes (19668ms) How big is a keg? the brewery employee -16.02761353261474 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the brewery employee, had been pressurizing, a keg) -> the brewery employee (13980ms) How big is a keg? Sierra Nevada Brewing -16.057629570473765 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (Sierra Nevada Brewing, was there with, kegs) -> Sierra Nevada Brewing (19668ms) How big is a keg? July 14 , 2010 Wet Area Scales -16.060387617917073 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (July 14 , 2010 Wet Area Scales, are being used to weigh, kegs) -> July 14 , 2010 Wet Area Scales (19668ms) How big is a keg? bottling -16.065921042858733 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (bottling, is to use, kegs) -> bottling (19668ms) How big is a keg? Shasta Brewing Company -16.067276224293717 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (Shasta Brewing Company, is Missing, kegs) -> Shasta Brewing Company (19668ms) How big is a keg? ?Steinen mit Beinen? -16.074985878341426 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (?Steinen mit Beinen?, is German for, ?Kegs) -> ?Steinen mit Beinen? (19687ms) How big is a keg? ATLANTA ? Workers -16.079799062139912 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (ATLANTA ? Workers, are wrapping up, kegs) -> ATLANTA ? Workers (19687ms) How big is a keg? Wachusett Ales -16.105440836687777 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (Wachusett Ales, have been available in, kegs) -> Wachusett Ales (19687ms) How big is a keg? the black ditch -16.16914976949777 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the black ditch, are supplied with, a keg) -> the black ditch (14006ms) How big is a keg? smoke powder -16.195703609443306 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (smoke powder, is often sold in, kegs) -> smoke powder (19687ms) How big is a keg? Special restrictions -16.200049993757894 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (Special restrictions, may be placed on, kegs) -> Special restrictions (19687ms) How big is a keg? the original recipe -16.23723301832122 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the original recipe, was inserted into, a keg) -> the original recipe (14007ms) How big is a keg? No average analysis -16.238804996109177 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (No average analysis, is required to appear on, kegs) -> No average analysis (19687ms) How big is a keg? draft -16.256907729801163 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (draft, is available in, kegs) -> draft (19687ms) How big is a keg? the vast majority -16.26906409767676 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: ($x, be, a keg) -> (the vast majority, are sitting on, a keg) -> the vast majority (14007ms) How big is a keg? only about 12 percent of the nation 's beer -16.564193236635596 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (only about 12 percent of the nation 's beer, is sold in, kegs) -> only about 12 percent of the nation 's beer (19705ms) How big is a keg? Fernando -16.60833536513977 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (Fernando, was hoisting, kegs) -> Fernando (19705ms) How big is a keg? the list -16.719132115290066 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (the list, is a request for, kegs) -> the list (19705ms) How big is a keg? Mestan -16.80759790239153 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (Mestan, is placed in, kegs) -> Mestan (19705ms) How big is a keg? the profession -17.014544071943853 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (the profession, was washing, kegs) -> the profession (19705ms) How big is a keg? the primary -17.07103343439795 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (the primary, now is in, kegs) -> the primary (19705ms) How big is a keg? the employee -17.07267664352576 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (the employee, had been pressurizing, kegs) -> the employee (19705ms) How big is a keg? the camp -17.1425282651514 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (the camp, were packed in, kegs) -> the camp (19705ms) How big is a keg? the line-up -17.517809838950225 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (the line-up, are, kegs) -> the line-up (19783ms) How big is a keg? The basement -17.686482892714995 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (The basement, is filled with, kegs) -> The basement (19783ms) How big is a keg? the beers -17.891588659807372 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (the beers, are transferred to, kegs) -> the beers (19783ms) How big is a keg? The bar -17.923447904941987 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (The bar, is racked with, kegs) -> The bar (19988ms) How big is a keg? The wine -17.938494218439253 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (The wine, is then refined in, kegs) -> The wine (19988ms) How big is a keg? The entrance -17.94466864207978 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (The entrance, was filled with, kegs) -> The entrance (19988ms) How big is a keg? The college campus -17.944748196778775 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (The college campus, is home to, kegs) -> The college campus (19988ms) How big is a keg? The finished beer -17.949104613359296 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (The finished beer, is poured into, kegs) -> The finished beer (19988ms) How big is a keg? The same -17.953446096070373 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (The same, is true for, kegs) -> The same (19988ms) How big is a keg? The mines -17.954082153504718 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (The mines, were kept afloat by, kegs) -> The mines (19988ms) How big is a keg? The ships deck -17.98365287274768 How big is a keg? -> how big be [ a keg ] ? -> what be the diameter of a keg ? -> $x: (a keg, diameter, $x) -> $x: (keg, diameter, $x) -> $x: ($x, be, keg) -> (The ships deck, was loaded with, kegs) -> The ships deck (19988ms) How tall is the tallest pyramid? 138 feet -9.250768106541834 How tall is the tallest pyramid? -> how tall be [ the tallest pyramid ] ? -> what be the height of the tallest the tallest pyramid ? -> $x: (the tallest the tallest pyramid, height, $x) -> $x: (the tallest the tallest pyramid, be, $x) -> (the tallest pyramid, here is, 138 feet) -> 138 feet (5858ms) How tall is the tallest pyramid? 138-feet high -9.420381943632439 How tall is the tallest pyramid? -> how tall be [ the tallest pyramid ] ? -> what be the height of the tallest the tallest pyramid ? -> $x: ($x, be the height of, the tallest the tallest pyramid) -> $x: ($x, be, the tallest the tallest pyramid) -> (138-feet high, is, the tallest pyramid) -> 138-feet high (7021ms) How tall is the tallest pyramid? Coba -10.3380505483472 How tall is the tallest pyramid? -> how tall be [ the tallest pyramid ] ? -> what be the height of the tallest the tallest pyramid ? -> $x: ($x, be the height of, the tallest the tallest pyramid) -> $x: ($x, be, the tallest the tallest pyramid) -> (Coba, is home to, the tallest Mayan pyramid) -> Coba (7020ms) How tall is the tallest pyramid? Nohoch Mul -10.486381008010964 How tall is the tallest pyramid? -> how tall be [ the tallest pyramid ] ? -> what be the height of the tallest the tallest pyramid ? -> $x: ($x, be the height of, the tallest the tallest pyramid) -> $x: ($x, be, the tallest the tallest pyramid) -> (Nohoch Mul, is, the tallest pyramid) -> Nohoch Mul (7020ms) How tall is the tallest pyramid? a magnificent Mayan treasure -10.489679526353271 How tall is the tallest pyramid? -> how tall be [ the tallest pyramid ] ? -> what be the height of the tallest the tallest pyramid ? -> $x: (the tallest the tallest pyramid, height, $x) -> $x: (the tallest the tallest pyramid, be, $x) -> (the tallest pyramid, is, a magnificent Mayan treasure) -> a magnificent Mayan treasure (5859ms) How tall is the tallest pyramid? Temple V -10.539325628964997 How tall is the tallest pyramid? -> how tall be [ the tallest pyramid ] ? -> what be the height of the tallest the tallest pyramid ? -> $x: ($x, be the height of, the tallest the tallest pyramid) -> $x: ($x, be, the tallest the tallest pyramid) -> (Temple V, is, the second tallest pyramid) -> Temple V (7020ms) How tall is the tallest pyramid? The Nohoch Mul Pyramid -10.549414215351245 How tall is the tallest pyramid? -> how tall be [ the tallest pyramid ] ? -> what be the height of the tallest the tallest pyramid ? -> $x: ($x, be the height of, the tallest the tallest pyramid) -> $x: ($x, be, the tallest the tallest pyramid) -> (The Nohoch Mul Pyramid, is, the tallest pyramid) -> The Nohoch Mul Pyramid (7020ms) How tall is the tallest pyramid? 101.1 -10.567205772960673 How tall is the tallest pyramid? -> how tall be [ the tallest pyramid ] ? -> what be the tallest pyramid s height ? -> what be the tallest height of pyramid ? -> $x: (pyramid, tallest height, $x) -> (Bent Pyramid, Height when tallest building, 101.1) -> 101.1 (8479ms) How tall is the tallest pyramid? 104.0 -10.567205772960673 How tall is the tallest pyramid? -> how tall be [ the tallest pyramid ] ? -> what be the tallest pyramid s height ? -> what be the tallest height of pyramid ? -> $x: (pyramid, tallest height, $x) -> (Red Pyramid, Height when tallest building, 104.0) -> 104.0 (8479ms) How tall is the tallest pyramid? 62.0 -10.594694653559833 How tall is the tallest pyramid? -> how tall be [ the tallest pyramid ] ? -> what be the tallest pyramid s height ? -> what be the tallest height of pyramid ? -> $x: (pyramid, tallest height, $x) -> (Pyramid of Djoser, Height when tallest building, 62.0) -> 62.0 (8479ms) How tall is the tallest pyramid? 146.6 -10.618256551216255 How tall is the tallest pyramid? -> how tall be [ the tallest pyramid ] ? -> what be the tallest pyramid s height ? -> what be the tallest height of pyramid ? -> $x: (pyramid, tallest height, $x) -> (Great Pyramid of Giza, Height when tallest building, 146.6) -> 146.6 (8479ms) How tall is the tallest pyramid? the winner -11.028209044240166 How tall is the tallest pyramid? -> how tall be [ the tallest pyramid ] ? -> what be the height of the tallest the tallest pyramid ? -> $x: (the tallest the tallest pyramid, height, $x) -> $x: (the tallest the tallest pyramid, be, $x) -> (the tallest pyramid, is, the winner) -> the winner (5859ms) How tall is the tallest pyramid? the structures -11.55310685732822 How tall is the tallest pyramid? -> how tall be [ the tallest pyramid ] ? -> what be the height of the tallest the tallest pyramid ? -> $x: ($x, be the height of, the tallest the tallest pyramid) -> $x: ($x, be, the tallest the tallest pyramid) -> (the structures, there are, the tallest pyramid) -> the structures (7020ms) How tall is the tallest pyramid? Ek? Balam -12.113301952889103 How tall is the tallest pyramid? -> how tall be [ the tallest pyramid ] ? -> what be height of the tallest pyramid ? -> $x: ($x, be height of, the tallest pyramid) -> $x: ($x, height of, tallest pyramid) -> (Ek? Balam, exceeds the height of, the tallest pyramid) -> Ek? Balam (5932ms) How tall is the tallest pyramid? the sun -12.321224703279844 How tall is the tallest pyramid? -> how tall be [ the tallest pyramid ] ? -> what be the height of the tallest the tallest pyramid ? -> $x: ($x, be the height of, the tallest the tallest pyramid) -> $x: ($x, be, the tallest the tallest pyramid) -> (the sun, is one of, the tallest pyramids) -> the sun (7020ms) How tall is the tallest pyramid? memorial -12.653665770333095 How tall is the tallest pyramid? -> how tall be the tallest [ pyramid ] ? -> what be tall pyramid ? -> $x: (tall pyramid, instance of, $x) -> (tall pyramid at the right, Instance Of, memorial) -> memorial (11800ms) How tall is the tallest pyramid? hotel -12.770741422367953 How tall is the tallest pyramid? -> how tall be the tallest [ pyramid ] ? -> what be tall pyramid ? -> $x: (tall pyramid, instance of, $x) -> (tall pyramid shaped building in the background, Instance Of, hotel) -> hotel (11799ms) Where is Santa Lucia? Italy 0.2648519289182305 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia, is celebrated in, Italy) -> Italy (4185ms) Where is Santa Lucia? California 0.1895511470112372 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia Preserve, is located in, California) -> California (4185ms) Where is Santa Lucia? Scandinavia 0.16228498883365405 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia, is celebrated in, Scandinavia) -> Scandinavia (4185ms) Where is Santa Lucia? Sweden 0.14813784830922394 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia, is celebrated in, Sweden) -> Sweden (4185ms) Where is Santa Lucia? Minori -0.07809768535110839 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (map Hotel Santa Lucia, is located in, Minori) -> Minori (4185ms) Where is Santa Lucia? Naples -0.08611998379052832 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Grand Hotel Santa Lucia, is located in, Naples) -> Naples (4546ms) Where is Santa Lucia? Venice -0.17469884004637026 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia, was the main train station in, Venice) -> Venice (4546ms) Where is Santa Lucia? Monterey County -0.5199143707682016 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia Highlands, is in, Monterey County) -> Monterey County (4546ms) Where is Santa Lucia? Cuenca -0.6452671247289108 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (The Santa Lucia hotel, is a gem in, Cuenca) -> Cuenca (4547ms) Where is Santa Lucia? Costa Rica -0.8435321034603352 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (SANTA LUCIA ApartHotel, is a modern lodging way in, Costa Rica) -> Costa Rica (4565ms) Where is Santa Lucia? Tesistan Jalisco -1.0508411413498373 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (the Santa Lucia Distillery, is located in, Tesistan Jalisco) -> Tesistan Jalisco (4565ms) Where is Santa Lucia? need -1.3640455621035097 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia, is in, need) -> need (4565ms) Where is Santa Lucia? Authorities Concept Scheme -1.4715315599046548 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> $x: (santa lucium, in, $x) -> (Santa Lucia Range (Calif.), In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (4565ms) Where is Santa Lucia? Geographic Names Concept Scheme -1.5040184187945707 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> $x: (santa lucium, in, $x) -> (Santa Lucia Range (Calif.), In Scheme, Geographic Names Concept Scheme) -> Geographic Names Concept Scheme (4565ms) Where is Santa Lucia? camera trapping -1.5052394139426175 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia, was to assist in, camera trapping) -> camera trapping (4565ms) Where is Santa Lucia? First Italian War of Independence -1.5550691970501527 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> $x: (santa lucium, in, $x) -> (Battle of Santa Lucia, Included in event, First Italian War of Independence) -> First Italian War of Independence (4581ms) Where is Santa Lucia? Sweden as well as -1.668816006237282 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia, is observed in, Sweden as well as) -> Sweden as well as (4596ms) Where is Santa Lucia? a lot -1.743024044443448 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia Day, is celebrated in, a lot) -> a lot (4597ms) Where is Santa Lucia? poor shape -1.7901451964221164 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (the Cerro Santa Lucia, had been in very, poor shape) -> poor shape (4596ms) Where is Santa Lucia? southern Sonora State -1.805474385789982 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia, is located in, southern Sonora State) -> southern Sonora State (4597ms) Where is Santa Lucia? a quiet residential area -1.841393624643198 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia, is situated in, a quiet residential area) -> a quiet residential area (4610ms) Where is Santa Lucia? the Cannaregio district -1.8578011252802096 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (The Santa Lucia Railway Station, is in, the Cannaregio district) -> the Cannaregio district (4610ms) Where is Santa Lucia? DOWNTOWN ZACATECAS -1.8824939933796523 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (THE CASA SANTA LUCIA HOTEL, IS LOCATED IN, DOWNTOWN ZACATECAS) -> DOWNTOWN ZACATECAS (4630ms) Where is Santa Lucia? a very strategic position -1.898311896281068 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (The Hotel Santa Lucia, is situated in, a very strategic position) -> a very strategic position (4630ms) Where is Santa Lucia? Norway and Sweden -1.925755085929078 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (The Santa Lucia holiday, is celebrated in, Norway and Sweden) -> Norway and Sweden (4630ms) Where is Santa Lucia? San Gimignano -2.2776079465811936 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> $x: (santa lucium, in, $x) -> (Molino Santa Lucia, located in, San Gimignano) -> San Gimignano (4630ms) Where is Santa Lucia? the Amalfitan Coast -2.4526085759252556 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (the Santa Lucia Hotel, is in, the Amalfitan Coast) -> the Amalfitan Coast (4645ms) Where is Santa Lucia? front -2.4709406655442026 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (the Santa Lucia Church, is located right in, front) -> front (4645ms) Where is Santa Lucia? layers -2.574391792029876 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (the Santa Lucia mountain range, were rich in, layers) -> layers (4645ms) Where is Santa Lucia? September -2.888175900921572 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> $x: (santa lucium, in, $x) -> (Santa Lucia, now takes place in, September) -> September (4661ms) Where is Santa Lucia? the historical district -3.381683077200326 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Plaza Santa Lucia, is in, the historical district) -> the historical district (4662ms) Where is Santa Lucia? the historic center -3.473798679060554 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (The Venice Santa Lucia station, is in, the historic center) -> the historic center (4679ms) Where is Santa Lucia? the heart -3.4821837820403703 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia Santa Luc?a eco-lodge and cabanas, are in, the heart) -> the heart (4679ms) Where is Santa Lucia? the historic centre -3.5186691404187727 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia, is located in, the historic centre) -> the historic centre (4679ms) Where is Santa Lucia? the centre -3.5408386847872126 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Santa Lucia Hotel, is located in, the centre) -> the centre (4679ms) Where is Santa Lucia? the city center -3.664785418705277 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (the Santa Lucia Hill, is located in, the city center) -> the city center (4696ms) Where is Santa Lucia? a thick blanket -3.764243775575193 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> $x: (santa lucium, in, $x) -> (Villa Santa Lucia, covered in, a thick blanket) -> a thick blanket (4715ms) Where is Santa Lucia? several acres -3.821542446867551 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> $x: (santa lucium, in, $x) -> (Santa Lucia, stands in, several acres) -> several acres (4714ms) Where is Santa Lucia? St . Vincent -4.011625197059667 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> $x: (santa lucium, in, $x) -> (Santa Lucia, succeeded in capturing, St . Vincent) -> St . Vincent (4715ms) Where is Santa Lucia? a 7000 sm garden area -4.330790930557962 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (SANTA LUCIA ApartHotel, is immersed in, a 7000 sm garden area) -> a 7000 sm garden area (4733ms) Where is Santa Lucia? 1937 -4.692762438814378 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (the Santa Lucia mountain range, was set aside in, 1937) -> 1937 (4733ms) Where is Santa Lucia? 1875 -4.820583334179895 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (Cerro Santa Lucia, was established in, 1875) -> 1875 (4734ms) Where is Santa Lucia? 1991 -4.845901334956954 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> (The Santa Lucia Highlands, was approved in, 1991) -> 1991 (4755ms) Where is Santa Lucia? 35 minutes -5.216830530971006 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> $x: (santa lucium, in, $x) -> (Santa Lucia station, arrive in, 35 minutes) -> 35 minutes (4755ms) Where is Santa Lucia? the lodge -5.508668490936813 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> $x: (santa lucium, in, $x) -> (Santa Lucia, would sit in, the lodge) -> the lodge (5645ms) Where is Santa Lucia? the city -5.736642628878226 Where is Santa Lucia? -> $x: (Santa Lucia, is in, $x) -> $x: (santa lucium, in, $x) -> (Santa Lucia, could have sought refuge in, the city) -> the city (5645ms) Where is Santa Lucia? Santa Lucia -7.226960565964921 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> (Battle of Santa Lucia, Location(s), Santa Lucia) -> Santa Lucia (6915ms) Where is Santa Lucia? Kingdom of Lombardy?Venetia -7.847483508218462 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> (Battle of Santa Lucia, Location(s), Kingdom of Lombardy?Venetia) -> Kingdom of Lombardy?Venetia (6915ms) Where is Santa Lucia? Arizona -8.863262910073706 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, contain, santa lucium) -> (Arizona, Contains, Santa Lucia) -> Arizona (7349ms) Where is Santa Lucia? Germany -8.863262910073706 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, region, $x) -> (Santa Lucia, Region, Germany) -> Germany (7734ms) Where is Santa Lucia? Calabria -8.939839077457078 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, contain, santa lucium) -> (Calabria, Contains, Motta Santa Lucia) -> Calabria (7400ms) Where is Santa Lucia? Veneto -8.939839077457078 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, contain, santa lucium) -> (Veneto, Contains, Colle Santa Lucia) -> Veneto (7349ms) Where is Santa Lucia? Lazio -8.939839077457078 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, contain, santa lucium) -> (Lazio, Contains, Villa Santa Lucia) -> Lazio (7349ms) Where is Santa Lucia? Sicily -8.999398318755258 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, contain, santa lucium) -> (Sicily, Contains, Santa Lucia del Mela) -> Sicily (7446ms) Where is Santa Lucia? Campania -8.999398318755258 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, contain, santa lucium) -> (Campania, Contains, Santa Lucia di Serino) -> Campania (7446ms) Where is Santa Lucia? Abruzzo -9.047045711793801 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, contain, santa lucium) -> (Abruzzo, Contains, Villa Santa Lucia degli Abruzzi) -> Abruzzo (7734ms) Where is Santa Lucia? London -9.118516801351616 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, place, $x) -> (Santa Lucia, a common story, Place of publication, London) -> London (8476ms) Where is Santa Lucia? Geology -9.146005681950776 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, subject, $x) -> (Paleocene sedimentation in the northern Santa Lucia range, Subjects, Geology) -> Geology (7814ms) Where is Santa Lucia? Stanford -9.146005681950776 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, place, $x) -> (Shoreline physiography of the Santa Lucia Mountains, Place of publication, Stanford) -> Stanford (9444ms) Where is Santa Lucia? Corsica -9.47587224914069 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, contain, $x) -> (Santa-Lucia-di-Moriani, Contained by, Corsica) -> Corsica (9765ms) Where is Santa Lucia? Lucia Vineyards -9.66977546607252 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2006 Lucia Santa Lucia Highlands Pinot Noir, Wine Producer, Lucia Vineyards) -> Lucia Vineyards (9813ms) Where is Santa Lucia? Mario Zanin -9.66977546607252 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, place, santa lucium) -> (Mario Zanin, Place of birth, Santa Lucia di Piave) -> Mario Zanin (9765ms) Where is Santa Lucia? Siduri Wines -9.66977546607252 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2006 Siduri Santa Lucia Highlands Pinot Noir, Wine Producer, Siduri Wines) -> Siduri Wines (9813ms) Where is Santa Lucia? Rosanna Munerotto -9.66977546607252 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, place, santa lucium) -> (Rosanna Munerotto, Place of birth, Santa Lucia di Piave) -> Rosanna Munerotto (9813ms) Where is Santa Lucia? Tudor Wines -9.66977546607252 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2005 Tudor Santa Lucia Highlands Pinot Noir, Wine Producer, Tudor Wines) -> Tudor Wines (9813ms) Where is Santa Lucia? Mendelson Vineyards -9.69726434667168 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2005 Mendelson Santa Lucia Highlands Pinot Noir, Wine Producer, Mendelson Vineyards) -> Mendelson Vineyards (9813ms) Where is Santa Lucia? Lucienne Vineyards -9.720826244328101 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2005 Lucienne Santa Lucia Highlands Estate Pinot Noir, Wine Producer, Lucienne Vineyards) -> Lucienne Vineyards (9849ms) Where is Santa Lucia? Pelerin Wines -9.720826244328101 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2005 Pelerin "Rosella's Vineyard" Santa Lucia Highlands Pinot Noir, Wine Producer, Pelerin Wines) -> Pelerin Wines (9849ms) Where is Santa Lucia? Paraiso Vineyards -9.720826244328101 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2006 Paraiso Santa Lucia Highlands Estate Pinot Noir, Wine Producer, Paraiso Vineyards) -> Paraiso Vineyards (9849ms) Where is Santa Lucia? Cubans -9.732391224394737 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, there are, Cubans) -> Cubans (9888ms) Where is Santa Lucia? Pessagno Winery -9.741246555630335 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2006 Pessagno "Lucia Highland Vineyard" Santa Lucia Highlands Pinot Noir, Wine Producer, Pessagno Winery) -> Pessagno Winery (9947ms) Where is Santa Lucia? Tantara Winery -9.741246555630335 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2006 Tantara "Pisoni Vineyard" Santa Lucia Highlands Pinot Noir, Wine Producer, Tantara Winery) -> Tantara Winery (9888ms) Where is Santa Lucia? Morgan Winery -9.741246555630335 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2006 Morgan "Twelve Clones" Santa Lucia Highlands Pinot Noir, Wine Producer, Morgan Winery) -> Morgan Winery (9947ms) Where is Santa Lucia? Testarossa Vineyards -9.741246555630335 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2006 Testarossa "Rosella's Vineyard" Santa Lucia Highlands Pinot Noir, Wine Producer, Testarossa Vineyards) -> Testarossa Vineyards (9888ms) Where is Santa Lucia? United Kingdom -9.8014327363106 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, region, $x) -> (Lucia di Lammermoor (Orchestra e coro dell'Accademia di Santa Cecilia feat. conductor: John Pritchard), Region, United Kingdom) -> United Kingdom (10655ms) Where is Santa Lucia? Betania -9.893772024704075 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (Betania, is, Santa Lucia school) -> Betania (10655ms) Where is Santa Lucia? Ilocos Sur -10.004414050094802 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, contain, santa lucium) -> (Ilocos Sur, Contains, Santa Lucia, Ilocos Sur) -> Ilocos Sur (10688ms) Where is Santa Lucia? Pima County -10.004414050094802 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, contain, santa lucium) -> (Pima County, Contains, Santa Lucia) -> Pima County (10655ms) Where is Santa Lucia? Battle of Santa Lucia -10.004414050094802 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, location, santa lucium) -> (Battle of Santa Lucia, Location(s), Santa Lucia) -> Battle of Santa Lucia (10655ms) Where is Santa Lucia? Province of Belluno -10.111620684431525 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, contain, santa lucium) -> (Province of Belluno, Contains, Colle Santa Lucia) -> Province of Belluno (10688ms) Where is Santa Lucia? Province of Catanzaro -10.111620684431525 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, contain, santa lucium) -> (Province of Catanzaro, Contains, Motta Santa Lucia) -> Province of Catanzaro (10688ms) Where is Santa Lucia? Province of Frosinone -10.111620684431525 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, contain, santa lucium) -> (Province of Frosinone, Contains, Villa Santa Lucia) -> Province of Frosinone (10774ms) Where is Santa Lucia? Siracusa -10.12296539130873 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, is dedicated to, Siracusa) -> Siracusa (10774ms) Where is Santa Lucia? Province of Messina -10.150604915099423 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, contain, santa lucium) -> (Province of Messina, Contains, Santa Lucia del Mela) -> Province of Messina (10808ms) Where is Santa Lucia? Province of Avellino -10.150604915099423 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, contain, santa lucium) -> (Province of Avellino, Contains, Santa Lucia di Serino) -> Province of Avellino (10808ms) Where is Santa Lucia? Province of Treviso -10.150604915099423 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, contain, santa lucium) -> (Province of Treviso, Contains, Santa Lucia di Piave) -> Province of Treviso (10808ms) Where is Santa Lucia? Hotel -10.175133021400967 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (Hotel, Be, Live Brisas Santa Lucia) -> Hotel (10808ms) Where is Santa Lucia? United States of America -10.179479130254217 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, region, $x) -> (Santa Lucia, Region, United States of America) -> United States of America (11016ms) Where is Santa Lucia? Province of L'Aquila -10.18309177398934 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, contain, santa lucium) -> (Province of L'Aquila, Contains, Villa Santa Lucia degli Abruzzi) -> Province of L'Aquila (11016ms) Where is Santa Lucia? Roar Wines -10.18309177398934 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2006 Roar Santa Lucia Highlands Pinot Noir, Wine Producer, Roar Wines) -> Roar Wines (11016ms) Where is Santa Lucia? San Antonio -10.19078149077559 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (San Antonio, is surrounded by, the Santa Lucia Wilderness) -> San Antonio (11016ms) Where is Santa Lucia? Central European Time -10.2105806545885 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, location, santa lucium) -> (Central European Time, Locations in this time zone, Colle Santa Lucia) -> Central European Time (11049ms) Where is Santa Lucia? Romeo Callejo, Sr. -10.2105806545885 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, place, santa lucium) -> (Romeo Callejo, Sr., Place of birth, Santa Lucia, Ilocos Sur) -> Romeo Callejo, Sr. (11049ms) Where is Santa Lucia? Catania -10.229953316101085 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, was beheaded at, Catania) -> Catania (11083ms) Where is Santa Lucia? Geology, Stratigraphic -10.23414255224492 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, subject, $x) -> (Paleocene sedimentation in the northern Santa Lucia range, Subjects, Geology, Stratigraphic) -> Geology, Stratigraphic (11083ms) Where is Santa Lucia? La Rochelle Winery -10.23414255224492 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2005 La Rochelle Santa Lucia Highlands Pinot Noir, Wine Producer, La Rochelle Winery) -> La Rochelle Winery (11128ms) Where is Santa Lucia? A.P.VIN Wines -10.23414255224492 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2006 A.P.VIN "Gary's Vineyard" Santa Lucia Highlands Pinot Noir, Wine Producer, A.P.VIN Wines) -> A.P.VIN Wines (11083ms) Where is Santa Lucia? West Germany -10.250976232743657 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, country of origin, $x) -> (Santa Lucia, Country of origin, West Germany) -> West Germany (11128ms) Where is Santa Lucia? Mayro-Murdick Wines -10.254562863547154 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2006 Hunterdon "Vinco Vineyard" Santa Lucia Highlands Pinot Noir, Wine Producer, Mayro-Murdick Wines) -> Mayro-Murdick Wines (11128ms) Where is Santa Lucia? Sonnet Wine Cellars -10.254562863547154 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2005 Sonnet "Tondre's Grapefield" Santa Lucia Highlands Pinot Noir, Wine Producer, Sonnet Wine Cellars) -> Sonnet Wine Cellars (11128ms) Where is Santa Lucia? Hayman & Hill -10.254562863547154 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2006 Hayman & Hill Santa Lucia Highlands Reserve Pinot Noir, Wine Producer, Hayman & Hill) -> Hayman & Hill (11128ms) Where is Santa Lucia? Silver Mountain Vineyards -10.272430635936608 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2005 Silver Mountain "Tondre's Grapefield" Santa Lucia Highlands Pinot Noir, Wine Producer, Silver Mountain Vineyards) -> Silver Mountain Vineyards (11272ms) Where is Santa Lucia? Patz & Hall -10.272430635936608 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2005 Patz & Hall "Pisoni Vineyard" Santa Lucia Highlands Pinot Noir, Wine Producer, Patz & Hall) -> Patz & Hall (11191ms) Where is Santa Lucia? Miner Family Vineyards -10.272430635936608 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2006 Miner Family "Garys' Vineyard" Santa Lucia Highlands Pinot Noir, Wine Producer, Miner Family Vineyards) -> Miner Family Vineyards (11272ms) Where is Santa Lucia? Rhys Vineyards -10.272430635936608 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2005 Alesia "Fairview Ranch Vineyard" Santa Lucia Highlands Syrah, Wine Producer, Rhys Vineyards) -> Rhys Vineyards (11272ms) Where is Santa Lucia? Huntington Wine Cellars -10.272430635936608 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2006 Huntington "Lone Oak Vineyard" Santa Lucia Highlands Pinot Noir, Wine Producer, Huntington Wine Cellars) -> Huntington Wine Cellars (11191ms) Where is Santa Lucia? Manzoni Estate Vineyard -10.272430635936608 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2006 Manzoni "Family Estate Vineyard" Santa Lucia Highlands Estate Pinot Noir, Wine Producer, Manzoni Estate Vineyard) -> Manzoni Estate Vineyard (11191ms) Where is Santa Lucia? San Antonio Winery -10.288196317456714 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2006 Windbreak "Sarmento Vineyard" Santa Lucia Highlands Pinot Noir, Wine Producer, San Antonio Winery) -> San Antonio Winery (11272ms) Where is Santa Lucia? Peter Michael Winery -10.314749044227419 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, producer, $x) -> (2005 Peter Michael "Le Moulin Rouge, Pisoni Vineyard" Santa Lucia Highlands Pinot Noir, Wine Producer, Peter Michael Winery) -> Peter Michael Winery (11336ms) Where is Santa Lucia? Calabrians -10.47921360079574 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, is adored by, Calabrians) -> Calabrians (11366ms) Where is Santa Lucia? Highlights -10.526381962399661 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (Highlights, are, Santa Lucia Luntana) -> Highlights (11366ms) Where is Santa Lucia? Haute-Corse -10.540447221778413 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, contain, santa lucium) -> (Haute-Corse, Contains, Santa-Lucia-di-Moriani) -> Haute-Corse (11366ms) Where is Santa Lucia? Saint Lucy -10.620936530312589 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, is also known as, Saint Lucy) -> Saint Lucy (13180ms) Where is Santa Lucia? December -10.631292869445167 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (December, is, Santa Lucia Day) -> December (13179ms) Where is Santa Lucia? Tomorrow -10.664773600066718 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (Tomorrow, is, Santa Lucia Day) -> Tomorrow (13179ms) Where is Santa Lucia? Galbani -10.81414092660855 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, has been produced by, Galbani) -> Galbani (13180ms) Where is Santa Lucia? Answers -10.845972058666387 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (Answers, is the state of, Santa Lucia) -> Answers (13327ms) Where is Santa Lucia? Syracusa -10.926369454382524 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, is the patron of, Syracusa) -> Syracusa (13327ms) Where is Santa Lucia? Cannaregio -10.971756582866375 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, contain, santa lucium) -> (Cannaregio, contains, the Santa Lucia Railway Station) -> Cannaregio (13327ms) Where is Santa Lucia? mozzarella cheese -11.00697788182965 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (mozzarella cheese, is, Santa Lucia) -> mozzarella cheese (13327ms) Where is Santa Lucia? Brad -11.059545037177747 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (Brad, was at, the Santa Lucia Barricade) -> Brad (15520ms) Where is Santa Lucia? Trains -11.094714038138 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, arrive at, santa lucium) -> (Trains, arrive at, Venezia Santa Lucia station) -> Trains (15520ms) Where is Santa Lucia? Sardinia -11.097531195939721 Where is Santa Lucia? -> where [ be santa lucium ] ? -> when be santa lucium be ? -> $x: (santa lucium, be be on, $x) -> (Santa Lucia Hotel, is located on, Sardinia) -> Sardinia (15520ms) Where is Santa Lucia? Paso Robles -11.177367388115146 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (Paso Robles, is in, the Santa Lucia mountains) -> Paso Robles (15520ms) Where is Santa Lucia? a Monterey County example -11.193158845620124 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (the Santa Lucia Preserve, are, a Monterey County example) -> a Monterey County example (15520ms) Where is Santa Lucia? Big Sur -11.216470674180472 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (the Santa Lucia Mountains, is, Big Sur) -> Big Sur (15707ms) Where is Santa Lucia? mountain range -11.2475974565782 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (santa lucia, is a, mountain range) -> mountain range (15707ms) Where is Santa Lucia? scuba diving -11.305735106740988 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, is an excellent place for, scuba diving) -> scuba diving (15859ms) Where is Santa Lucia? Candon City -11.361939914546845 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (Candon City, is the town of, Santa Lucia) -> Candon City (15859ms) Where is Santa Lucia? Largo Febo -11.373633053262113 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, is located at, Largo Febo) -> Largo Febo (15859ms) Where is Santa Lucia? Will -11.406965351364157 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (Will, was shot at, the Santa Lucia Barricade) -> Will (15859ms) Where is Santa Lucia? enemy territory -11.412413531242153 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, is, enemy territory) -> enemy territory (15859ms) Where is Santa Lucia? Mountain -11.4192458283172 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, have, santa lucium) -> (Mountain, had, a Santa Lucia celebration) -> Mountain (15938ms) Where is Santa Lucia? ping pong -11.42232402367561 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (ping pong, are available at, the Santa Lucia Masseria) -> ping pong (15939ms) Where is Santa Lucia? military conflict -11.462010725251645 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (battle of Santa Lucia, is a, military conflict) -> military conflict (15938ms) Where is Santa Lucia? Christmas Day -11.510709930214446 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (... Santa Lucia, is celebrated on, Christmas Day) -> Christmas Day (15939ms) Where is Santa Lucia? Christmas Market -11.516905392074008 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: ($x, host, santa lucium) -> (Christmas Market, also hosted, the Santa Lucia Children) -> Christmas Market (15939ms) Where is Santa Lucia? twinkle lights -11.51744329872838 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (twinkle lights, was, Santa Lucia) -> twinkle lights (15939ms) Where is Santa Lucia? a young woman -11.560652893990733 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, was, a young woman) -> a young woman (15939ms) Where is Santa Lucia? St Lucia Day -11.575498136226429 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, is, St Lucia Day) -> St Lucia Day (15974ms) Where is Santa Lucia? nice firm white sand -11.644011247131866 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, is, nice firm white sand) -> nice firm white sand (15975ms) Where is Santa Lucia? One option -11.651477042835936 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (One option, is, the Santa Lucia Hill) -> One option (15974ms) Where is Santa Lucia? Hotel Principe -11.688946924256474 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (Hotel Principe, is 200 metres from, Santa Lucia Train Station) -> Hotel Principe (15974ms) Where is Santa Lucia? Cape Vidal -11.722148335437716 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (Cape Vidal, is next to, Santa Lucia) -> Cape Vidal (16010ms) Where is Santa Lucia? rent -11.785256272789622 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, are available for, rent) -> rent (16010ms) Where is Santa Lucia? Venice train station -11.794717084393906 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (Venice train station, is named, Santa Lucia) -> Venice train station (16010ms) Where is Santa Lucia? palazzo murat -11.796341468023623 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (palazzo murat, cannot be, santa lucia) -> palazzo murat (16010ms) Where is Santa Lucia? off -11.808739061243951 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (off, are now, the Santa Lucia Highlands) -> off (16010ms) Where is Santa Lucia? long time -11.813468904119384 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, was murdered, long time) -> long time (16010ms) Where is Santa Lucia? a Boutique hotel -11.84448041790338 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (SANTA LUCIA, is, a Boutique hotel) -> a Boutique hotel (16010ms) Where is Santa Lucia? an italian saint -11.846248790705573 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (santa lucia, is, an italian saint) -> an italian saint (16045ms) Where is Santa Lucia? a certified organic farm -11.846884767188437 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, is, a certified organic farm) -> a certified organic farm (16045ms) Where is Santa Lucia? eyes -11.874311996130338 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, would be represented with, eyes) -> eyes (16045ms) Where is Santa Lucia? the Royal palace -11.882248073119092 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, is south of, the Royal palace) -> the Royal palace (16045ms) Where is Santa Lucia? beach -11.904368507437137 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (santa lucia beach, is a, beach) -> beach (16045ms) Where is Santa Lucia? bank -11.904368507437137 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia Bank, is a, bank) -> bank (16045ms) Where is Santa Lucia? island -11.904368507437137 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (santa lucia island, is an, island) -> island (16080ms) Where is Santa Lucia? song -11.904368507437137 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (santa lucia, is a, song) -> song (16045ms) Where is Santa Lucia? harvest time -11.923809985427443 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, were arrested at, harvest time) -> harvest time (16080ms) Where is Santa Lucia? Executive Chef Mattos -11.93894110057265 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (Executive Chef Mattos, is from, Santa Lucia) -> Executive Chef Mattos (16080ms) Where is Santa Lucia? De La Salle -11.950331461148032 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (De La Salle, are graduates of, Santa Lucia Grade School) -> De La Salle (16080ms) Where is Santa Lucia? an atmosphere -11.95917791579196 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, is infused with, an atmosphere) -> an atmosphere (16080ms) Where is Santa Lucia? the East coast -11.96701048242974 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, is on, the East coast) -> the East coast (16080ms) Where is Santa Lucia? beautiful beaches -11.990020739920716 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, is an attractive place with, beautiful beaches) -> beautiful beaches (16432ms) Where is Santa Lucia? the Italians -11.990810437753375 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, is very dear to, the Italians) -> the Italians (16432ms) Where is Santa Lucia? enormous potential -12.002956010378304 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, is a tourist resort with, enormous potential) -> enormous potential (16432ms) Where is Santa Lucia? hotels and resorts -12.014683786796752 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (Santa Lucia, is well-equipped with, hotels and resorts) -> hotels and resorts (16432ms) Where is Santa Lucia? Further drilling -12.017470387969208 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (Further drilling, is planned for, Santa Lucia) -> Further drilling (16432ms) Where is Santa Lucia? a beloved local saint -12.021632167033436 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: (santa lucium, be, $x) -> (December Santa Lucia, is, a beloved local saint) -> a beloved local saint (16432ms) Where is Santa Lucia? a rig -12.027062554518988 Where is Santa Lucia? -> where [ be santa lucium ] ? -> what get be santa lucium ? -> $x: ($x, get be, santa lucium) -> $x: ($x, be, santa lucium) -> (a rig, is currently drilling, the Santa Lucia-4) -> a rig (16432ms) Where is Santa Lucia? romance -12.873655562278444 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, set, $x) -> (Santa Lucia, was an ideal setting for, romance) -> romance (6974ms) Where is Santa Lucia? 100 metres -13.108762851385048 Where is Santa Lucia? -> where be [ santa lucium ] ? -> what be santa lucium s location ? -> $x: (santa lucium, location, $x) -> $x: (santa lucium, set, $x) -> (the website Hotel Santa Lucia, is set just, 100 metres) -> 100 metres (6975ms) What hockey team did Wayne Gretzky play for? Edmonton Oilers -3.577837195458171 What hockey team did Wayne Gretzky play for? -> $x: ($x, instance of, hockey team) (Wayne Gretzky, play for, $x) -> (Edmonton Oilers, Instance Of, professional hockey team) (Wayne Gretzky, has played for, the Edmonton Oilers) -> Edmonton Oilers (470ms) How many crew members were aboard? the California Zephyr -13.1455388743187 How many crew members were aboard? -> how many [ crew member be aboard ] ? -> what be the 14 crew member be aboard ? -> $x: (the 14 crew member, be aboard, $x) -> $x: (14 crew member, aboard, $x) -> (14 crew members, were aboard, the California Zephyr) -> the California Zephyr (1539ms) How many crew members were aboard? a few equipment cases -15.936315306847751 How many crew members were aboard? -> how many [ crew member be aboard ] ? -> who be the four crew member be aboard ? -> $x: (the four crew member, be aboard, $x) -> $x: (the four crew member, unloaded, $x) -> (The four-member GIC crew, unloaded, a few equipment cases) -> a few equipment cases (6399ms) How many crew members were aboard? scientist -16.35300846364582 How many crew members were aboard? -> how many [ crew member be aboard ] ? -> how many crew member be aboard name ? -> $x: ($x, instance of, crew member) ($x, be aboard, name) -> $x: ($x, instance of, crew member) ($x, be uncertain, name) -> (scientist, Instance Of, crew member and historical figure) (scientists, are uncertain about, the species name) -> scientist (10415ms) How many crew members were aboard? Dad -16.82636841099995 How many crew members were aboard? -> how many [ crew member be aboard ] ? -> how many crew member be aboard name ? -> $x: ($x, instance of, crew member) ($x, be aboard, name) -> $x: ($x, instance of, crew member) ($x, have one, name) -> (Dad, Instance Of, crew member) (dad, could have been one of, those names) -> Dad (14599ms) How many crew members were aboard? president -17.159023937221146 How many crew members were aboard? -> how many [ crew member be aboard ] ? -> how many crew member be aboard name ? -> $x: ($x, instance of, crew member) ($x, be aboard, name) -> $x: ($x, instance of, crew member) ($x, use the term, name) -> (president, Instance Of, crew member and historical figure) (president, used the term as, a name) -> president (17364ms) How many crew members were aboard? Artist -17.285021380710905 How many crew members were aboard? -> how many [ crew member be aboard ] ? -> how many crew member be aboard name ? -> $x: ($x, instance of, crew member) ($x, be aboard, name) -> $x: ($x, instance of, crew member) ($x, be undecided, name) -> (Artist, Instance Of, crew member) (( Artist, is undecided on, name) -> Artist (17364ms) How many crew members were aboard? Smith -18.027375626591915 How many crew members were aboard? -> how many [ crew member be aboard ] ? -> how many crew member be aboard name ? -> $x: ($x, instance of, crew member) ($x, be aboard, name) -> $x: ($x, instance of, crew member) ($x, pay attention, name) -> (Smith, Instance Of, Enterprise crew member) (Smith, payed close attention to, Arabic place names) -> Smith (18017ms) How many crew members were aboard? Dr. Mitchell -18.88593498323065 How many crew members were aboard? -> how many [ crew member be aboard ] ? -> how many crew member be aboard name ? -> $x: ($x, instance of, crew member) ($x, be aboard, name) -> $x: ($x, instance of, crew member) (name, ferry, $x) -> (Dr. Mitchell, Instance Of, crew member) (a middle-class vampire named Richard, to ferry, Mitchell) -> Dr. Mitchell (14600ms) How many crew members were aboard? Dr Mitchell -18.923921870461474 How many crew members were aboard? -> how many [ crew member be aboard ] ? -> how many crew member be aboard name ? -> $x: ($x, instance of, crew member) ($x, be aboard, name) -> $x: ($x, instance of, crew member) (name, ferry, $x) -> (Dr Mitchell, Instance Of, member of the Apollo 14 crew) (a middle-class vampire named Richard, to ferry, Mitchell) -> Dr Mitchell (14600ms) How many seats are in the Lebanese Parliament? Lebanon -2.9602109433011012 How many seats are in the Lebanese Parliament? -> $x: ($x, instance of, seats) ($x, are in, the Lebanese Parliament) -> (Lebanon, Instance Of, territory near the seat of theottoman empire in anatolia) (Lebanon, is represented in, the Lebanese parliament) -> Lebanon (2125ms) How many seats are in the Lebanese Parliament? review -10.439178077514304 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: (the lebanese parliament, be, $x) -> (the Lebanese parliament, is currently under, review) -> review (6775ms) How many seats are in the Lebanese Parliament? changes -10.605718582781062 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: (the lebanese parliament, be, $x) -> (The Lebanese parliament, is scheduled to vote on, changes) -> changes (6775ms) How many seats are in the Lebanese Parliament? a different nature -10.704324600754992 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: (the lebanese parliament, be, $x) -> (the Lebanese parliament, is of, a different nature) -> a different nature (6775ms) How many seats are in the Lebanese Parliament? Farid al-Khazen -10.728681362932255 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> who be member of the lebanese parliament ? -> $x: ($x, be member of, the lebanese parliament) -> (Farid al-Khazen, is a member of, the Lebanese Parliament) -> Farid al-Khazen (6620ms) How many seats are in the Lebanese Parliament? Mr. Frem -10.737523332347811 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> who be member of the lebanese parliament ? -> $x: ($x, be member of, the lebanese parliament) -> (Mr. Frem, is a member of, the Lebanese Parliament) -> Mr. Frem (6620ms) How many seats are in the Lebanese Parliament? a government -10.882680820027748 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: (the lebanese parliament, be, $x) -> (the Lebanese Parliament, is set to form, a government) -> a government (6775ms) How many seats are in the Lebanese Parliament? Hezbollah -10.899867610565567 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: (the lebanese parliament, be, $x) -> (the Lebanese parliament, are held by, Hezbollah) -> Hezbollah (6775ms) How many seats are in the Lebanese Parliament? deputy prime minister -10.959228734141092 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: (the lebanese parliament, be, $x) -> (the Lebanese Parliament, was named, deputy prime minister) -> deputy prime minister (6775ms) How many seats are in the Lebanese Parliament? lawmakers -11.482413820473413 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> how many seat do the lebanese parliament have ? -> $x: (the lebanese parliament, seat, $x) -> $x: (the lebanese parliament, have a job, $x) -> (the Lebanese parliament, have done a good job as, lawmakers) -> lawmakers (10959ms) How many seats are in the Lebanese Parliament? Mohammed Raad -11.563196525839476 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Mohammed Raad, Instance Of, Hezbollah member of the Lebanese parliament) -> Mohammed Raad (12033ms) How many seats are in the Lebanese Parliament? Ali Ahmad Bazzi -11.576999059831433 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Ali Ahmad Bazzi, Instance Of, member of the Lebanese Parliament) -> Ali Ahmad Bazzi (12033ms) How many seats are in the Lebanese Parliament? Ali el Mekdad -11.625633292654015 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Ali el Mekdad, Instance Of, elected Shia member of the Lebanese parliament) -> Ali el Mekdad (12033ms) How many seats are in the Lebanese Parliament? Saadeddine Rafik Hariri -11.667883015497367 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Saadeddine Rafik Hariri, Instance Of, member of the Lebanese Parliament) -> Saadeddine Rafik Hariri (12034ms) How many seats are in the Lebanese Parliament? Khalil El-Hibri -11.667883015497367 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Khalil El-Hibri, Instance Of, prominnent member of the Lebanese Parliament) -> Khalil El-Hibri (12033ms) How many seats are in the Lebanese Parliament? Ali Bazzi -11.671936348328042 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Ali Bazzi, Instance Of, member of the Lebanese Parliament) -> Ali Bazzi (12033ms) How many seats are in the Lebanese Parliament? Misbah al-Ahdab -11.671936348328042 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Misbah al-Ahdab, Instance Of, member of the Lebanese Parliament) -> Misbah al-Ahdab (12033ms) How many seats are in the Lebanese Parliament? Ali Fayyad -11.712776970932508 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Ali Fayyad, Instance Of, Shia member of the Lebanese Parliament) -> Ali Fayyad (12559ms) How many seats are in the Lebanese Parliament? Ali Haj Hassan -11.748512515711415 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Ali Haj Hassan, Instance Of, Hezbollah member of the Lebanese parliament) -> Ali Haj Hassan (12559ms) How many seats are in the Lebanese Parliament? JUSTICIABeirutConsult -11.748512515711415 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (JUSTICIABeirutConsult, Instance Of, advisor of the Lebanese parliament and International Organizations) -> JUSTICIABeirutConsult (12559ms) How many seats are in the Lebanese Parliament? Mr. Moukheiber -11.748512515711415 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Mr. Moukheiber, Instance Of, lawyer and member of the Lebanese Parliament) -> Mr. Moukheiber (12559ms) How many seats are in the Lebanese Parliament? Wakim Al-Bitar -11.780043878751629 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Wakim Al-Bitar, Instance Of, member of the Lebanese Parliament representing North Lebanon) -> Wakim Al-Bitar (12559ms) How many seats are in the Lebanese Parliament? Israelis stealing gas Ali Bazzi -11.780043878751629 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Israelis stealing gas Ali Bazzi, Instance Of, member of the Lebanese Parliament) -> Israelis stealing gas Ali Bazzi (12559ms) How many seats are in the Lebanese Parliament? Mounir Abou Fadel -11.790473137358921 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Mounir Abou Fadel, Instance Of, political figure of Lebanon, Member and Vice Speaker of the Lebanese Parliament) -> Mounir Abou Fadel (12559ms) How many seats are in the Lebanese Parliament? Hezbollah MP -11.808071757009595 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Hezbollah MP, Instance Of, member of the all-party Lebanese parliament foreign affair committee) -> Hezbollah MP (12633ms) How many seats are in the Lebanese Parliament? Nayla Moawad -11.853332348421885 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Nayla Moawad, Instance Of, member of the Lebanese Parliament) -> Nayla Moawad (12633ms) How many seats are in the Lebanese Parliament? Bahia Hariri -11.87959362886049 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Bahia Hariri, Instance Of, member of the Lebanese Parliament) -> Bahia Hariri (12633ms) How many seats are in the Lebanese Parliament? Habid Sadek -11.87959362886049 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Habid Sadek, Instance Of, member of the Lebanese Parliament) -> Habid Sadek (12633ms) How many seats are in the Lebanese Parliament? Nadim Gemayel -11.920365997416797 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Nadim Gemayel, Instance Of, member of the Lebanese Parliament) -> Nadim Gemayel (12633ms) How many seats are in the Lebanese Parliament? Michel Pharaon -11.96525995285194 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Michel Pharaon, Instance Of, member of the Lebanese Parliament) -> Michel Pharaon (12633ms) How many seats are in the Lebanese Parliament? Fares -11.983091809021783 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Fares, Instance Of, member of the Lebanese Parliament) -> Fares (12738ms) How many seats are in the Lebanese Parliament? Jawad Boulos -12.006100575456404 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Jawad Boulos, Instance Of, Christian member of the Lebanese parliament) -> Jawad Boulos (12738ms) How many seats are in the Lebanese Parliament? Walid Jumblatt -12.006100575456404 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Walid Jumblatt, Instance Of, leading member of the Lebanese parliament) -> Walid Jumblatt (12738ms) How many seats are in the Lebanese Parliament? Hizbullah -12.116350109950204 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be an example of the lebanese parliament ? -> $x: (the lebanese parliament, example, $x) -> $x: ($x, have, the lebanese parliament) -> (Hizbullah, has pursued in, the Lebanese parliament) -> Hizbullah (12738ms) How many seats are in the Lebanese Parliament? Zahra -12.231931119634964 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: ($x, instance of, the lebanese parliament) -> (Zahra, Instance Of, member of the Lebanese Parliament Committees) -> Zahra (12738ms) How many seats are in the Lebanese Parliament? the Hezbollah -12.299262711000797 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be an example of the lebanese parliament ? -> $x: (the lebanese parliament, example, $x) -> $x: ($x, have, the lebanese parliament) -> (the Hezbollah, has representations in, the Lebanese Parliament) -> the Hezbollah (12738ms) How many seats are in the Lebanese Parliament? effect -12.470344552277954 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the lebanese parliament s nickname ? -> $x: (the lebanese parliament, nickname, $x) -> $x: (the lebanese parliament, go, $x) -> (the Lebanese Parliament, went into, effect) -> effect (12769ms) How many seats are in the Lebanese Parliament? 2000 Hezbollah -12.4808717018456 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be an example of the lebanese parliament ? -> $x: (the lebanese parliament, example, $x) -> $x: ($x, have, the lebanese parliament) -> (2000 Hezbollah, has won seats in, the Lebanese parliament) -> 2000 Hezbollah (12769ms) How many seats are in the Lebanese Parliament? no -12.603501721466987 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be an example of the lebanese parliament ? -> $x: (the lebanese parliament, example, $x) -> $x: ($x, have, the lebanese parliament) -> (no, longer has, the Lebanese parliament) -> no (12769ms) How many seats are in the Lebanese Parliament? Syria -12.613865720128599 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be an example of the lebanese parliament ? -> $x: (the lebanese parliament, example, $x) -> $x: (the lebanese parliament, do, $x) -> (the Lebanese parliament, did, Syria) -> Syria (12827ms) How many seats are in the Lebanese Parliament? the phone -12.675197543267174 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: (the lebanese parliament, be, $x) -> (the Lebanese parliament, was on, the phone) -> the phone (6776ms) How many seats are in the Lebanese Parliament? a step -12.76254210400219 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: (lebanese parliament, strength, $x) -> $x: (lebanese parliament, be, $x) -> (a Lebanese Parliament, is seen as, a step) -> a step (12827ms) How many seats are in the Lebanese Parliament? the spokesman -12.781736341802077 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: (the lebanese parliament, be, $x) -> (the Lebanese Parliament, also happened to be, the spokesman) -> the spokesman (6775ms) How many seats are in the Lebanese Parliament? the first time -12.863916616092485 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: (the lebanese parliament, be, $x) -> (The Lebanese parliament, was held today for, the first time) -> the first time (6836ms) How many seats are in the Lebanese Parliament? only 19 women -12.95032677639978 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be an example of the lebanese parliament ? -> $x: (the lebanese parliament, example, $x) -> $x: ($x, have, the lebanese parliament) -> (only 19 women, had served in, the Lebanese parliament) -> only 19 women (12827ms) How many seats are in the Lebanese Parliament? Syria 's bidding -13.597114576471423 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be an example of the lebanese parliament ? -> $x: (the lebanese parliament, example, $x) -> $x: (the lebanese parliament, do, $x) -> (the Lebanese parliament, did, Syria 's bidding) -> Syria 's bidding (12827ms) How many seats are in the Lebanese Parliament? a group -13.891284702991392 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be an example of the lebanese parliament ? -> $x: (the lebanese parliament, example, $x) -> $x: ($x, have, the lebanese parliament) -> (a group, has, members in the Lebanese Parliament) -> a group (12827ms) How many seats are in the Lebanese Parliament? the Constitution -14.032652073982039 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: (the lebanese parliament, change, $x) -> (the Lebanese Parliament, changed, the Constitution) -> the Constitution (12827ms) How many seats are in the Lebanese Parliament? Lahoud -14.856442441356645 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be an example of the lebanese parliament ? -> $x: (the lebanese parliament, example, $x) -> $x: (the lebanese parliament, do, $x) -> (the Lebanese parliament, did Syria 's bidding permiting, Lahoud) -> Lahoud (12857ms) How many seats are in the Lebanese Parliament? the constitution -15.868064966437311 How many seats are in the Lebanese Parliament? -> how many seat be in [ the lebanese parliament ] ? -> what be the strength of the lebanese parliament ? -> $x: (the lebanese parliament, strength, $x) -> $x: (the lebanese parliament, change, $x) -> (the Lebanese parliament, to change, the constitution) -> the constitution (12857ms) What is his primary career? an actor -9.980221217810103 What is his primary career? -> what be [ his primary career ] ? -> what be the mening of his primary career ? -> $x: (his primary career, mening, $x) -> $x: (his primary career, be, $x) -> (his primary career, was as, an actor) -> an actor (16656ms) What is his primary career? Birding -9.99382554131585 What is his primary career? -> what [ be his primary ] career ? -> what be be his primary hobby ? -> $x: ($x, be be, his primary hobby) -> (Birding, was, his primary hobby) -> Birding (16390ms) What is his primary career? World War II -10.059188551257957 What is his primary career? -> what be [ his primary career ] ? -> what be the mening of his primary career ? -> $x: (his primary career, mening, $x) -> $x: (his primary career, be, $x) -> (His primary professional career, was during, World War II) -> World War II (16655ms) What is his primary career? sports journalist -10.392062491526001 What is his primary career? -> what be [ his primary career ] ? -> what be the mening of his primary career ? -> $x: (his primary career, mening, $x) -> $x: (his primary career, be, $x) -> (his primary career, is, sports journalist) -> sports journalist (16656ms) What is his primary career? Science -10.46943082978286 What is his primary career? -> what [ be his primary ] career ? -> what be be his primary hobby ? -> $x: ($x, be be, his primary hobby) -> (Science, has always been, his primary hobby) -> Science (16389ms) What is his primary career? a real estate broker -10.501268516526784 What is his primary career? -> what be [ his primary career ] ? -> what be the mening of his primary career ? -> $x: (his primary career, mening, $x) -> $x: (his primary career, be, $x) -> (his primary career, was as, a real estate broker) -> a real estate broker (16655ms) What is his primary career? HP -10.518404871719929 What is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: ($x, be, primary career) -> (HP, is supported by, a primary care research career award) -> HP (13365ms) What is his primary career? Transportation -10.588871756661591 What is his primary career? -> what [ be his primary ] career ? -> what be be his primary hobby ? -> $x: ($x, be be, his primary hobby) -> (Transportation, is, his primary hobby) -> Transportation (16390ms) What is his primary career? religious leadership and teaching -10.592440610807605 What is his primary career? -> what be [ his primary career ] ? -> what be the mening of his primary career ? -> $x: (his primary career, mening, $x) -> $x: (his primary career, be, $x) -> (His primary career, has been, religious leadership and teaching) -> religious leadership and teaching (16656ms) What is his primary career? a Software Development Engineer -10.606488068516944 What is his primary career? -> what be [ his primary career ] ? -> what be the mening of his primary career ? -> $x: (his primary career, mening, $x) -> $x: (his primary career, be, $x) -> (His primary career, is as, a Software Development Engineer) -> a Software Development Engineer (16655ms) What is his primary career? martial arts -10.641188533215406 What is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: ($x, be, primary career) -> (martial arts, were, their primary career skills) -> martial arts (13365ms) What is his primary career? a vet -10.745073174432077 What is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: (primary career, be, $x) -> (primary career, was, a vet) -> a vet (13387ms) What is his primary career? Engineering -10.9441700138942 What is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: (primary career, be, $x) -> (My primary career, is in, Engineering) -> Engineering (13387ms) What is his primary career? here Elizabeth Juge -10.958867234372546 What is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: ($x, be, primary career) -> (here Elizabeth Juge, is, CareerPro Global?s primary expert) -> here Elizabeth Juge (13388ms) What is his primary career? a conductor and arranger -10.988238341897649 What is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: (primary career, be, $x) -> ('s primary career, has been as, a conductor and arranger) -> a conductor and arranger (13387ms) What is his primary career? first year students -11.062466891391995 What is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: ($x, be, primary career) -> (first year students, were interested in, primary care careers) -> first year students (13410ms) What is his primary career? an antiquarian and art dealer -11.069092557534045 What is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: (primary career, be, $x) -> (Strada?s primary career, was as, an antiquarian and art dealer) -> an antiquarian and art dealer (13410ms) What is his primary career? an ultrasound tech -11.190389209532029 What is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: ($x, be, primary career) -> (an ultrasound tech, is, your primary career goal) -> an ultrasound tech (13410ms) What is his primary career? older workers -11.191791554465992 What is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: ($x, be, primary career) -> (older workers, are retiring from, their primary career jobs) -> older workers (13409ms) What is his primary career? 1917-1991 -11.318550319998653 What is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: (primary career, be, $x) -> (those whose primary career, was from, 1917-1991) -> 1917-1991 (13410ms) What is his primary career? several people -11.320457188236468 What is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: ($x, be, primary career) -> (several people, are retired from, their primary careers) -> several people (13409ms) What is his primary career? an essential part -11.332162929174189 What is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: ($x, be, primary career) -> (an essential part, could have been, a primary career) -> an essential part (13452ms) What is his primary career? Networking -11.459513182718672 What is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: ($x, be, primary career) -> (Networking, is, the primary career tool) -> Networking (13453ms) What is his primary career? a theater writer -11.550126858660423 What is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: (primary career, be, $x) -> (Eager?s primary career, was as, a theater writer) -> a theater writer (13452ms) What is his primary career? Education -11.65206973777146 What is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: ($x, be, primary career) -> (Education, has been, my primary career focus) -> Education (13453ms) What is his primary career? Workers -11.779678486372884 What is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: ($x, be, primary career) -> (Workers, are retiring from, their primary career jobs) -> Workers (13452ms) What is his primary career? stormwater -12.145638250824447 What is his primary career? -> what be [ his primary career ] ? -> what be the mening of his primary career ? -> $x: (his primary career, mening, $x) -> $x: (his primary career, be, $x) -> (His primary career focus, was, stormwater) -> stormwater (16737ms) What is his primary career? the broadcast world -12.270724254992137 What is his primary career? -> what be [ his primary career ] ? -> what be the mening of his primary career ? -> $x: (his primary career, mening, $x) -> $x: (his primary career, be, $x) -> (his primary career, now is in, the broadcast world) -> the broadcast world (16737ms) What is his primary career? adolescents -12.44377705658424 What is his primary career? -> what be [ his primary career ] ? -> what be the mening of his primary career ? -> $x: (his primary career, mening, $x) -> $x: (his primary career, be, $x) -> (His primary career, was a teacher of, adolescents) -> adolescents (16737ms) What is his primary career? the league -12.533841664632416 What is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: ($x, be, primary career) -> (the league, are busy with, their primary careers) -> the league (13524ms) What is his primary career? astrology -12.556916498620073 What is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: ($x, be, primary career) -> (astrology, was, my primary career focus) -> astrology (13523ms) What is his primary career? writing -12.612769401419838 What is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: ($x, be, primary career) -> (writing, is, one?s primary career) -> writing (13524ms) What is his primary career? breastfeeding -12.668509049911181 What is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: (primary career, be, $x) -> (My primary career, is, breastfeeding) -> breastfeeding (13523ms) What is his primary career? industry -12.67441503011279 What is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: (primary career, be, $x) -> ('s primary career, was in, industry) -> industry (13546ms) What is his primary career? the parent -12.70070250337789 What is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: ($x, be, primary career) -> (the parent, is, the primary career) -> the parent (13546ms) What is his primary career? the obvious approach -12.710639034006789 What is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: (primary career, be, $x) -> (your primary career field, is, the obvious approach) -> the obvious approach (13546ms) What is his primary career? television -12.765735651496753 What is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: ($x, be, primary career) -> (television, was, my primary career) -> television (13546ms) What is his primary career? the orders -12.963970281362137 What is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: (primary career, be, $x) -> (Tom?s primary career, is to follow, the orders) -> the orders (13546ms) What is his primary career? The next step -12.964039830598999 What is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: ($x, be, primary career) -> (The next step, was, a Primary Care Career Scientist Award) -> The next step (13546ms) What is his primary career? the video game industry -13.001240701892966 What is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: (primary career, be, $x) -> (Her primary career focus, has been, the video game industry) -> the video game industry (13568ms) What is his primary career? the manufacture -13.041128641996156 What is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: (primary career, be, $x) -> (Her primary career, was in, the manufacture) -> the manufacture (13567ms) What is his primary career? the career -13.089824094611263 What is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: (primary career, be, $x) -> (The primary career, is usually considered to be, the career) -> the career (13567ms) What is his primary career? the industry -13.125051629031644 What is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: (primary career, be, $x) -> (your primary career, also may be hindered by, the industry) -> the industry (13567ms) What is his primary career? Home -13.146244596535372 What is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: (primary career, be, $x) -> (The primary navigation pages at Career Builder, are, Home) -> Home (13567ms) What is his primary career? strangers -13.211287846945005 What is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: ($x, be, primary career) -> (strangers, is, a primary career) -> strangers (13567ms) What is his primary career? composition -13.384655163183577 What is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: (primary career, be, $x) -> (Primary career, is in, composition) -> composition (13590ms) What is his primary career? music -13.425964241139834 What is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: (primary career, be, $x) -> (Kimball?s primary career, was in, music) -> music (13589ms) What is his primary career? institutions -13.520469329384262 What is his primary career? -> what be his [ primary career ] ? -> what be a collection of primary career ? -> $x: (primary career, collection, $x) -> $x: (primary career, be, $x) -> (these primary career positions, are jobs with, institutions) -> institutions (13589ms) What nationality is Sean Connery? Scotland 0.08204981749777451 What nationality is Sean Connery? -> $x: (Sean Connery, nationality, $x) -> (Sean Connery, Country of nationality, Scotland) -> Scotland (2641ms) What nationality is Sean Connery? Irish people in Great Britain -11.085131930112297 What nationality is Sean Connery? -> what nationality be [ sean connery ] ? -> what ethnicity be sean connery ? -> $x: (sean connery, ethnicity, $x) -> (Sean Connery, Ethnicity, Irish people in Great Britain) -> Irish people in Great Britain (6806ms) What nationality is Sean Connery? Scottish people -11.16922395463013 What nationality is Sean Connery? -> what nationality be [ sean connery ] ? -> what ethnicity be sean connery ? -> $x: (sean connery, ethnicity, $x) -> (Sean Connery, Ethnicity, Scottish people) -> Scottish people (6806ms) What nationality is Sean Connery? Fountainbridge -11.753534944722126 What nationality is Sean Connery? -> what nationality be [ sean connery ] ? -> where be sean connery s birth place ? -> $x: (sean connery, birth place, $x) -> (Sean Connery, Place of birth, Fountainbridge) -> Fountainbridge (8784ms) What nationality is Sean Connery? FAther -14.027092048262912 What nationality is Sean Connery? -> what nationality [ be sean connery ] ? -> what origin be be sean connery ? -> $x: ($x, instance of, origin) ($x, be be, sean connery) -> (FAther, Instance Of, word of germanic origin) (' father, was played by, Sean Connery) -> FAther (6469ms) What nationality is Sean Connery? Love -14.180026642526826 What nationality is Sean Connery? -> what nationality [ be sean connery ] ? -> what origin be be sean connery ? -> $x: ($x, instance of, origin) ($x, be be, sean connery) -> (Love, Instance Of, feeling of unknown origin) (Love, is, Sean Connery) -> Love (6469ms) What nationality is Sean Connery? Luca -14.271417066150194 What nationality is Sean Connery? -> what nationality [ be sean connery ] ? -> what origin be be sean connery ? -> $x: ($x, instance of, origin) ($x, be be, sean connery) -> (Luca, Instance Of, male name of Italian origin) (Lucas, is writing, Sean Connery) -> Luca (6469ms) What nationality is Sean Connery? Wilson -14.370070525226199 What nationality is Sean Connery? -> what nationality [ be sean connery ] ? -> what origin be be sean connery ? -> $x: ($x, instance of, origin) ($x, be be, sean connery) -> (Wilson, Instance Of, common surname of English , Scottish origin) (Wilson, would have been, Sean Connery) -> Wilson (6469ms) What nationality is Sean Connery? Moore -14.481735730599242 What nationality is Sean Connery? -> what nationality [ be sean connery ] ? -> what origin be be sean connery ? -> $x: ($x, instance of, origin) ($x, be be, sean connery) -> (Moore, Instance Of, origin legend) (Moore, is older than, Sean Connery) -> Moore (6707ms) What nationality is Sean Connery? Homage -14.614682986868164 What nationality is Sean Connery? -> what nationality [ be sean connery ] ? -> what origin be be sean connery ? -> $x: ($x, instance of, origin) ($x, be be, sean connery) -> (Homage, Instance Of, French origin word) (Homage, is being paid to, Sean Connery) -> Homage (6707ms) What nationality is Sean Connery? Father -14.735213715142724 What nationality is Sean Connery? -> what nationality [ be sean connery ] ? -> what origin be be sean connery ? -> $x: ($x, instance of, origin) ($x, be be, sean connery) -> (Father, Instance Of, Italian and mother Burmese originIndian) (' father, was played by, Sean Connery) -> Father (6707ms) What nationality is Sean Connery? the first two Bond films -14.844734083034869 What nationality is Sean Connery? -> what nationality be [ sean connery ] ? -> what be sean connery s race ? -> $x: (sean connery, race, $x) -> $x: (sean connery, have just come, $x) -> (? Sean Connery, had just come off, the first two Bond films) -> the first two Bond films (7957ms) What nationality is Sean Connery? James Bond -14.883087859456303 What nationality is Sean Connery? -> what nationality [ be sean connery ] ? -> what origin be be sean connery ? -> $x: ($x, instance of, origin) ($x, be be, sean connery) -> (James Bond, Instance Of, perfect example, new actors, new story line, new origins, same theme tune) (James Bond, was to, Sean Connery) -> James Bond (6706ms) What nationality is Sean Connery? love -16.311266449082076 What nationality is Sean Connery? -> what nationality [ be sean connery ] ? -> what origin be be sean connery ? -> $x: ($x, instance of, origin) ($x, be be, sean connery) -> (love, Instance Of, wholesome truth of divine origin) (Love, is, Sean Connery) -> love (6807ms) What songs did Al Jolson Sing? Sonny Boy -1.5546721928117473 What songs did Al Jolson Sing? -> $x: ($x, instance of, songs) (Al Jolson, Sing, $x) -> (Sonny Boy, Instance Of, song) (Al Jolson, sang, ?Sonny Boy) -> Sonny Boy (1006ms) What songs did Al Jolson Sing? The songs -6.005837690525552 What songs did Al Jolson Sing? -> $x: ($x, instance of, songs) (Al Jolson, Sing, $x) -> $x: ($x, modelling, songs) (Al Jolson, Sing, $x) -> (The songs, are modeled on, anonymous folk songs) (Al Jolson, sang, the song) -> The songs (6469ms) What songs did Al Jolson Sing? The song -6.119458464435347 What songs did Al Jolson Sing? -> $x: ($x, instance of, songs) (Al Jolson, Sing, $x) -> $x: ($x, modelling, songs) (Al Jolson, Sing, $x) -> (The song, became the model for, many future Little Richard songs) (Al Jolson, sang, the song) -> The song (6469ms) What songs did Al Jolson Sing? Al Jolson -6.858152435328419 What songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: (al jolson, edition of, $x) -> (Al Jolson, Edition Of, Al Jolson) -> Al Jolson (11434ms) What songs did Al Jolson Sing? Oh Susannah -7.270485644315813 What songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: (al jolson, track list, $x) -> (The Best of Al Jolson, Track list, Oh Susannah) -> Oh Susannah (11144ms) What songs did Al Jolson Sing? Avalon / Anniversary Song -7.288611145206008 What songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: ($x, artist, al jolson) -> (Avalon / Anniversary Song, Artist, Al Jolson) -> Avalon / Anniversary Song (12210ms) What songs did Al Jolson Sing? The Whiffenpoof Song -7.288611145206008 What songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: ($x, recording, al jolson) -> (The Whiffenpoof Song, Recorded by, Al Jolson) -> The Whiffenpoof Song (12210ms) What songs did Al Jolson Sing? The Anniversary Song -7.288611145206008 What songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: ($x, recording, al jolson) -> (The Anniversary Song, Recorded by, Al Jolson) -> The Anniversary Song (12210ms) What songs did Al Jolson Sing? When Day Is Done -7.405563837209704 What songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: ($x, recording, al jolson) -> (When Day Is Done, Recorded by, Al Jolson) -> When Day Is Done (12210ms) What songs did Al Jolson Sing? Pop music -7.492628120846478 What songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: ($x, artist, al jolson) -> (Pop music, Artists, Al Jolson) -> Pop music (12210ms) What songs did Al Jolson Sing? Brunswick Records -7.537867084728273 What songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: ($x, artist, al jolson) -> (Brunswick Records, Artists, Al Jolson) -> Brunswick Records (12210ms) What songs did Al Jolson Sing? Decca Records -7.537867084728273 What songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: ($x, artist, al jolson) -> (Decca Records, Artists, Al Jolson) -> Decca Records (12433ms) What songs did Al Jolson Sing? American Legends -7.537867084728273 What songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: ($x, artist, al jolson) -> (American Legends, Artist, Al Jolson) -> American Legends (12210ms) What songs did Al Jolson Sing? Little Pal -7.554688489992573 What songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: (al jolson, track list, $x) -> (The Best of Al Jolson, Track list, Little Pal) -> Little Pal (11144ms) What songs did Al Jolson Sing? Rum-Tum-Tiddle -7.62214289647581 What songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: ($x, recording, al jolson) -> (Rum-Tum-Tiddle, Recorded by, Al Jolson) -> Rum-Tum-Tiddle (12433ms) What songs did Al Jolson Sing? The Great Al Jolson -7.62214289647581 What songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: ($x, artist, al jolson) -> (The Great Al Jolson, Artist, Al Jolson) -> The Great Al Jolson (12433ms) What songs did Al Jolson Sing? Al Jolson: Duets -7.62214289647581 What songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: ($x, artist, al jolson) -> (Al Jolson: Duets, Artist, Al Jolson) -> Al Jolson: Duets (12433ms) What songs did Al Jolson Sing? Philco Commercial -7.633161870805359 What songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: ($x, recording, al jolson) -> (Philco Commercial, Recorded by, Al Jolson) -> Philco Commercial (12433ms) What songs did Al Jolson Sing? Alabamy Bound -7.633161870805359 What songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: ($x, recording, al jolson) -> (Alabamy Bound, Recorded by, Al Jolson) -> Alabamy Bound (12433ms) What songs did Al Jolson Sing? Easter Parade -7.633161870805359 What songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: ($x, recording, al jolson) -> (Easter Parade, Recorded by, Al Jolson) -> Easter Parade (12433ms) What songs did Al Jolson Sing? Never Again / Feeling the Way I Do -7.656176748646198 What songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: ($x, artist, al jolson) -> (Never Again / Feeling the Way I Do, Artist, Al Jolson) -> Never Again / Feeling the Way I Do (12433ms) What songs did Al Jolson Sing? Embraceable You -7.705131704854441 What songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: ($x, release, al jolson) -> (Embraceable You, Release, Al Jolson: Duets) -> Embraceable You (11259ms) What songs did Al Jolson Sing? Is It True What They Say About Dixie? -7.771040999721258 What songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: ($x, release, al jolson) -> (Is It True What They Say About Dixie?, Releases, The Great Al Jolson) -> Is It True What They Say About Dixie? (11355ms) What songs did Al Jolson Sing? The Al Jolson discography -7.836885295391868 What songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: (al jolson, edition of, $x) -> (The Al Jolson discography, Edition Of, The Al Jolson discography) -> The Al Jolson discography (11435ms) What songs did Al Jolson Sing? The Best of Al Jolson -7.836885295391868 What songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> $x: ($x, release of, al jolson) -> (The Best of Al Jolson, Release of, The Best of Al Jolson) -> The Best of Al Jolson (11434ms) What songs did Al Jolson Sing? ?Mammy ? -8.08390678195529 What songs did Al Jolson Sing? -> what song do [ al jolson sing ] ? -> what do al jolson sing sing ? -> $x: (al jolson, sing sing, $x) -> (Al Jolson, sings, ?Mammy ?) -> ?Mammy ? (8557ms) What songs did Al Jolson Sing? ?Sonny Boy -8.9419519304643 What songs did Al Jolson Sing? -> what song do [ al jolson sing ] ? -> what do al jolson sing sing ? -> $x: (al jolson, sing sing, $x) -> (Al Jolson, sang, ?Sonny Boy) -> ?Sonny Boy (8557ms) What songs did Al Jolson Sing? two hours -8.966077391212991 What songs did Al Jolson Sing? -> what song do [ al jolson sing ] ? -> what do al jolson sing sing ? -> $x: (al jolson, sing sing, $x) -> (Al Jolson, sang for, two hours) -> two hours (8557ms) What songs did Al Jolson Sing? the campaign -9.216335709237011 What songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song of al jolson ? -> $x: (al jolson, song, $x) -> (Al Jolson, even wrote a song for, the campaign) -> the campaign (8165ms) What songs did Al Jolson Sing? more soldiers -9.363235544943484 What songs did Al Jolson Sing? -> what song do [ al jolson sing ] ? -> what do al jolson sing sing ? -> $x: (al jolson, sing sing, $x) -> (Al Jolson, has sung to, more soldiers) -> more soldiers (8557ms) What songs did Al Jolson Sing? a few songs -9.726905306860905 What songs did Al Jolson Sing? -> what song do [ al jolson sing ] ? -> what do al jolson sing sing ? -> $x: (al jolson, sing sing, $x) -> (Al Jolson, sings, a few songs) -> a few songs (9178ms) What songs did Al Jolson Sing? the October -9.74059022414547 What songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what be the song al jolson sing ? -> $x: (the song al jolson, sing, $x) -> (the first song Al Jolson, sang on, the October) -> the October (8166ms) What songs did Al Jolson Sing? Avalon -10.091336255457875 What songs did Al Jolson Sing? -> what song do [ al jolson ] sing ? -> what song have al jolson write ? -> $x: ($x, instance of, song) (al jolson, write, $x) -> (Avalon, Instance Of, song) (Al Jolson, had a hand in writing, ?Avalon) -> Avalon (8165ms) What songs did Al Jolson Sing? Mammy -10.105788697660936 What songs did Al Jolson Sing? -> what song do [ al jolson sing ] ? -> what do al jolson sing sing ? -> $x: (al jolson, sing sing, $x) -> (Al Jolson, sang, Mammy) -> Mammy (9178ms) What songs did Al Jolson Sing? the song -10.328220008066793 What songs did Al Jolson Sing? -> what song do [ al jolson sing ] ? -> what do al jolson sing sing ? -> $x: (al jolson, sing sing, $x) -> (Al Jolson, sang, the song) -> the song (9466ms) What songs did Al Jolson Sing? the most popular tongue twister -10.750700164165483 What songs did Al Jolson Sing? -> what song do [ al jolson sing ] ? -> what do al jolson sing sing ? -> $x: (al jolson, sing sing, $x) -> (Al Jolson, sang, the most popular tongue twister) -> the most popular tongue twister (9964ms) When did the Johnstown flood occur? May 31 , 1889 0.10153422626018704 When did the Johnstown flood occur? -> $x: (the Johnstown flood, did occur on, $x) -> $x: (johnstown flood, occur on, $x) -> (The Johnstown Flood, occurred on, May 31 , 1889) -> May 31 , 1889 (7674ms) When did the Johnstown flood occur? Pennsylvania -2.13705262737098 When did the Johnstown flood occur? -> $x: (the Johnstown flood, did occur in, $x) -> $x: (johnstown flood, occur in, $x) -> (The Johnstown Flood, occurred in, Pennsylvania) -> Pennsylvania (7674ms) When did the Johnstown flood occur? Philipsburg -3.3380102972814196 When did the Johnstown flood occur? -> $x: (the Johnstown flood, did occur in, $x) -> $x: (the Johnstown flood, also affect, $x) -> (the Johnstown Flood, also affected, Philipsburg) -> Philipsburg (8107ms) When did the Johnstown flood occur? Harrison -3.535216162957227 When did the Johnstown flood occur? -> $x: (the Johnstown flood, did occur in, $x) -> $x: (the Johnstown flood, occur during, $x) -> (The famous Johnstown flood, occurred during, Harrison) -> Harrison (8020ms) When did the Johnstown flood occur? 1935 -6.682599869118622 When did the Johnstown flood occur? -> when do [ the johnstown flood ] occur ? -> when do the johnstown flood pass ? -> $x: (the johnstown flood, do pass in, $x) -> $x: (johnstown flood, pass in, $x) -> (the 18 % Johnstown Flood Tax, was passed in, 1935) -> 1935 (11579ms) When did the Johnstown flood occur? excellent vehicle -9.591618309069343 When did the Johnstown flood occur? -> when do [ the johnstown flood ] occur ? -> 6 what be the johnstown flood ? -> $x: (the johnstown flood, instance of, $x) -> (The Johnstown Flood, Instance Of, excellent vehicle) -> excellent vehicle (11728ms) When did the Johnstown flood occur? good read -9.602398976553403 When did the Johnstown flood occur? -> when do [ the johnstown flood ] occur ? -> 6 what be the johnstown flood ? -> $x: (the johnstown flood, instance of, $x) -> (The Johnstown Flood, Instance Of, good read) -> good read (11728ms) When did the Johnstown flood occur? book -9.617040520098463 When did the Johnstown flood occur? -> when do [ the johnstown flood ] occur ? -> 6 what be the johnstown flood ? -> $x: (the johnstown flood, instance of, $x) -> (History of the Johnstown Flood, Instance Of, book) -> book (11728ms) When did the Johnstown flood occur? oft-exploited event -9.682017885826678 When did the Johnstown flood occur? -> when do [ the johnstown flood ] occur ? -> 6 what be the johnstown flood ? -> $x: (the johnstown flood, instance of, $x) -> (tragedy of the Johnstown Flood, Instance Of, oft-exploited event) -> oft-exploited event (11727ms) When did the Johnstown flood occur? big, unruly, defiantly unfashionable play -9.99389173116987 When did the Johnstown flood occur? -> when do [ the johnstown flood ] occur ? -> 6 what be the johnstown flood ? -> $x: (the johnstown flood, instance of, $x) -> (True History of the Johnstown Flood, Instance Of, big, unruly, defiantly unfashionable play) -> big, unruly, defiantly unfashionable play (11728ms) How many members does it have? school -8.841111375652641 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Trinity members, can sponsor students in, school) -> school (8996ms) How many members does it have? business -8.85766783386197 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (members, include students from, business) -> business (8996ms) How many members does it have? higher education -9.156779329254114 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (members, introduce students to, higher education) -> higher education (8996ms) How many members does it have? Georgia Tech -9.174162548442512 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Members, must be full-time students at, Georgia Tech) -> Georgia Tech (8996ms) How many members does it have? exchange -9.178200301202619 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (members, offered students pornography in, exchange) -> exchange (8996ms) How many members does it have? davidinchi -9.236470568761064 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, user, $x) -> (Spanish members of parliament, Users, davidinchi) -> davidinchi (14082ms) How many members does it have? residence -9.240293046725624 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (associate members, are graduate students in, residence) -> residence (8996ms) How many members does it have? CU -9.280338599609761 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Several members, are also students at, CU) -> CU (11013ms) How many members does it have? Florida State University -9.319322008827767 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (the members, were students at, Florida State University) -> Florida State University (11013ms) How many members does it have? education -9.347509431086996 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (members, encourage graduate students in, education) -> education (11013ms) How many members does it have? grades -9.427315621582828 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Choir members, are select students in, grades) -> grades (11013ms) How many members does it have? respect -9.449649004690734 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Members, should treat students with, respect) -> respect (11013ms) How many members does it have? grade 12 -9.456630776330561 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Members, are students through, grade 12) -> grade 12 (11013ms) How many members does it have? registration -9.54514234816195 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Staff members, assist students with, registration) -> registration (11033ms) How many members does it have? Harvard University -9.561383171928806 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Members, must be students of, Harvard University) -> Harvard University (11033ms) How many members does it have? Johnny Smith -9.61433530560705 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (a member, was a student of, Johnny Smith) -> Johnny Smith (11033ms) How many members does it have? Australia -9.652911758401633 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (family members, accompany students to, Australia) -> Australia (11032ms) How many members does it have? full-time education , unemployed or -9.668249791144008 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (members, are students in, full-time education , unemployed or) -> full-time education , unemployed or (11058ms) How many members does it have? the Department -9.67808350142413 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (members, are graduate students in, the Department) -> the Department (11058ms) How many members does it have? a process -9.682504486131908 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (members, walk interested students through, a process) -> a process (11058ms) How many members does it have? UF?s Turlington Plaza -9.68328117077183 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Group members, asked students today at, UF?s Turlington Plaza) -> UF?s Turlington Plaza (11058ms) How many members does it have? a community college -9.715423754216621 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (One member, is a student at, a community college) -> a community college (11058ms) How many members does it have? Arkansas Tech -9.746960538873008 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (its members, were students at, Arkansas Tech) -> Arkansas Tech (11058ms) How many members does it have? Gamma Sigma Delta -9.747254833572162 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Faculty members, nominated students for, Gamma Sigma Delta) -> Gamma Sigma Delta (11136ms) How many members does it have? daily activities -9.75159708503084 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Member, will supervise students in, daily activities) -> daily activities (11137ms) How many members does it have? practical career advice -9.7557208361758 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (ACC members, will assist students with, practical career advice) -> practical career advice (11137ms) How many members does it have? ancient Hindu geography -9.76366238691147 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (a member, was a student of, ancient Hindu geography) -> ancient Hindu geography (11137ms) How many members does it have? a range -9.767448082932502 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (College members, support students in, a range) -> a range (11137ms) How many members does it have? the UNC School -9.773702061272022 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (members, are students from, the UNC School) -> the UNC School (11137ms) How many members does it have? a variety -9.783506950337777 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (faculty members, will guide students through, a variety) -> a variety (11160ms) How many members does it have? one or more teams -9.798538329965599 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (team members, add students to, one or more teams) -> one or more teams (11160ms) How many members does it have? fourth or fifth grade -9.819715209840314 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Members, must be a student either in, fourth or fifth grade) -> fourth or fifth grade (11160ms) How many members does it have? the University -9.824074595803085 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (members, are students at, the University) -> the University (11160ms) How many members does it have? the Honors Program -9.832710622542065 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (faculty members, may nominate students for, the Honors Program) -> the Honors Program (11160ms) How many members does it have? the Peabody Conservatory -9.835962670816919 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (members, were students at, the Peabody Conservatory) -> the Peabody Conservatory (11160ms) How many members does it have? core classes -9.851511465912125 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Members, will assist students in, core classes) -> core classes (11181ms) How many members does it have? the SOE -9.854242811066811 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Faculty members, advise graduate students in, the SOE) -> the SOE (11181ms) How many members does it have? academic support -9.855126997467908 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Members, strive to provide students with, academic support) -> academic support (11181ms) How many members does it have? small groups -9.861237621728778 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (staff members, divided students into, small groups) -> small groups (11181ms) How many members does it have? different places -9.876696367837438 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (members, took the students to, different places) -> different places (11181ms) How many members does it have? Washington-Monroe School -9.87708861963044 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (members, are tutoring students at, Washington-Monroe School) -> Washington-Monroe School (11247ms) How many members does it have? career plans -9.885189704021256 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Staff members, assist students in developing, career plans) -> career plans (11247ms) How many members does it have? ADDA -9.886223616742269 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Chapter Members, are Student Members of, ADDA) -> ADDA (11247ms) How many members does it have? the Wellness Center -9.887420663396712 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Members, will direct students to, the Wellness Center) -> the Wellness Center (11247ms) How many members does it have? a qualified institution -9.891951849247665 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (member, must be a full-time student at, a qualified institution) -> a qualified institution (11247ms) How many members does it have? E.W. Scripps School -9.90063428500807 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Members, are students from, E.W. Scripps School) -> E.W. Scripps School (11247ms) How many members does it have? the Gates Chili schools -9.903757881955759 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (the members, are students in, the Gates Chili schools) -> the Gates Chili schools (11336ms) How many members does it have? the Paris Conservatoire -9.908670801271631 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (the members, were still students at, the Paris Conservatoire) -> the Paris Conservatoire (11335ms) How many members does it have? field trips -9.926012531814564 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (members, take students on, field trips) -> field trips (11335ms) How many members does it have? the Sorbonne University -9.93608094862169 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (members, attacked Jewish students in, the Sorbonne University) -> the Sorbonne University (11335ms) How many members does it have? the Yale School -9.94443098342915 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (its members, were students at, the Yale School) -> the Yale School (11336ms) How many members does it have? the Prague Music Conservatory -9.94670752311823 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (its members, were students at, the Prague Music Conservatory) -> the Prague Music Conservatory (11335ms) How many members does it have? an exploration -9.987756644105833 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (group members, led these students on, an exploration) -> an exploration (11370ms) How many members does it have? a two hour skills clinic -9.992685848402791 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (member, led students on, a two hour skills clinic) -> a two hour skills clinic (11370ms) How many members does it have? the Sam M. Walton College -10.003444519313334 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Team members, include students in, the Sam M. Walton College) -> the Sam M. Walton College (11370ms) How many members does it have? wide range subjects -10.018392138375617 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (These members, help the students with, wide range subjects) -> wide range subjects (11370ms) How many members does it have? July 1 , 2012 -10.037708989448184 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (members, will be graduate students from, July 1 , 2012) -> July 1 , 2012 (11370ms) How many members does it have? the AC View and Pacer staffs -10.058200245886194 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Members, include students on, the AC View and Pacer staffs) -> the AC View and Pacer staffs (11370ms) How many members does it have? scientist -10.078332195693076 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (MEMBERS, is a, scientist) -> scientist (11419ms) How many members does it have? arachnid -10.078332195693076 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (member, is an, arachnid) -> arachnid (11419ms) How many members does it have? profession -10.078332195693076 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (MEMBERS, is a, profession) -> profession (11419ms) How many members does it have? professors -10.224939558888593 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, be, member) -> (professors, is a profession that is a kind of, MEMBERS) -> professors (11592ms) How many members does it have? professionals -10.224939558888593 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, be, member) -> (professionals, is a profession that is a kind of, MEMBERS) -> professionals (11510ms) How many members does it have? performers -10.224939558888593 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (MEMBERS, is a profession that is a kind of, performers) -> performers (11511ms) How many members does it have? tools -10.224939558888593 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (MEMBERS, is a tool used in the profession, tools) -> tools (11419ms) How many members does it have? staff -10.224939558888593 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, be, member) -> (staff, is a profession that is a kind of, MEMBERS) -> staff (11510ms) How many members does it have? experts -10.224939558888593 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (MEMBERS, is a profession that is a kind of, experts) -> experts (11510ms) How many members does it have? educators -10.224939558888593 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (MEMBERS, is a profession that is a kind of, educators) -> educators (11592ms) How many members does it have? nurses -10.224939558888593 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (MEMBERS, is a profession that is a kind of, nurses) -> nurses (11592ms) How many members does it have? physicians -10.224939558888593 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (MEMBERS, is a profession that is a kind of, physicians) -> physicians (11511ms) How many members does it have? customers -10.225061399175488 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (members, referred to the students as, customers) -> customers (11592ms) How many members does it have? Central Campus -10.261777610614047 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Members, engaged students on, Central Campus) -> Central Campus (11591ms) How many members does it have? Latino culture -10.278425896890028 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (members, helps educate all students about, Latino culture) -> Latino culture (11592ms) How many members does it have? ansamcw's types -10.436436546624632 How many members does it have? -> how many [ member ] do it have ? -> how many member do beyonce have ? -> $x: (beyonce, member, $x) -> $x: ($x, feature view, beyonce) -> (ansamcw's types, Featured views, Beyonce: I Am....Tour Concert Dates) -> ansamcw's types (11860ms) How many members does it have? The University -10.449049558750552 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (the members, were students at, The University) -> The University (11662ms) How many members does it have? U.S. politician -10.500660362171969 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (member, is a, U.S. politician) -> U.S. politician (11662ms) How many members does it have? event outcome -10.500660362171969 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (member, is an, event outcome) -> event outcome (11662ms) How many members does it have? programming language -10.500660362171969 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (member, is a, programming language) -> programming language (11661ms) How many members does it have? job position -10.500660362171969 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (member, is a, job position) -> job position (11662ms) How many members does it have? Hare Krishnas -10.504459623243207 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be deny, $x) -> (members, deny being, Hare Krishnas) -> Hare Krishnas (12258ms) How many members does it have? President Bill -10.51188986858402 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, be, member) -> (President Bill, is a politician who holds the office of, member) -> President Bill (11728ms) How many members does it have? Tumblr -10.525396980415408 How many members does it have? -> how many [ member ] do it have ? -> how many member do beyonce have ? -> $x: (beyonce, member, $x) -> (Beyonce, is the newest member of, Tumblr) -> Tumblr (8010ms) How many members does it have? NEW -10.539644592839867 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (member, is a proxy for, NEW) -> NEW (11728ms) How many members does it have? Merida -10.560670937413704 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (faculty members, have accompanied students to, Merida) -> Merida (11728ms) How many members does it have? each semester -10.593599825552895 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (faculty members, handle 150+ students, each semester) -> each semester (11728ms) How many members does it have? Bill -10.594341528562131 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, be, member) -> (Bill, is a U.S. politician who holds the office of, member) -> Bill (11746ms) How many members does it have? INVESTORS -10.599620332328943 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (MEMBERS, is a profession that is a kind of, INVESTORS) -> INVESTORS (11746ms) How many members does it have? LEADERS -10.599620332328943 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (MEMBERS, is a profession that is a kind of, LEADERS) -> LEADERS (11746ms) How many members does it have? PHYSICIAN -10.599620332328943 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (MEMBERS, is a profession that is a kind of, PHYSICIAN) -> PHYSICIAN (11746ms) How many members does it have? SPECIALISTS -10.599620332328943 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (MEMBERS, is a profession that is a kind of, SPECIALISTS) -> SPECIALISTS (11777ms) How many members does it have? FACULTY -10.599620332328943 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, be, member) -> (FACULTY, is a profession that is a kind of, MEMBERS) -> FACULTY (11746ms) How many members does it have? uk -10.6436025412876 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, be, member) -> (uk, is a country located in the geopolitical location, MEMBERS) -> uk (11777ms) How many members does it have? OBAMA -10.6436025412876 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, be, member) -> (OBAMA, is a politician who holds the office of, member) -> OBAMA (11777ms) How many members does it have? CHina -10.6436025412876 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, be, member) -> (CHina, is a country located in the geopolitical location, MEMBERS) -> CHina (11777ms) How many members does it have? HILLARY -10.6436025412876 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, be, member) -> (HILLARY, is a politician who holds the office of, member) -> HILLARY (11777ms) How many members does it have? ? Germany -10.661470313677052 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, be, member) -> (? Germany, is a country located in the geopolitical location, MEMBERS) -> ? Germany (11801ms) How many members does it have? russia -10.661470313677052 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, be, member) -> ( russia, is a country located in the geopolitical location, MEMBERS) -> russia (11777ms) How many members does it have? saudia arabia -10.661470313677052 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, be, member) -> (saudia arabia, is a country located in the geopolitical location, MEMBERS) -> saudia arabia (11801ms) How many members does it have? PResident -10.661470313677052 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, be, member) -> (PResident, is a U.S. politician who holds the office of, member) -> PResident (11801ms) How many members does it have? BARACK -10.661470313677052 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, be, member) -> (BARACK, is a U.S. politician who holds the office of, member) -> BARACK (11801ms) How many members does it have? frequently -10.756821085952716 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Faculty members, invite students, frequently) -> frequently (11801ms) How many members does it have? researchers -10.834530585307412 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, contribute to, member) -> (researchers, contribute to, members) -> researchers (16109ms) How many members does it have? GreenSingles -10.908445843657766 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, instance of, member) -> (GreenSingles, Instance Of, Members) -> GreenSingles (16109ms) How many members does it have? Tom Stiner -10.911199281261169 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, instance of, member) -> (Tom Stiner, Instance Of, Members) -> Tom Stiner (16109ms) How many members does it have? beliefs -10.921117391235814 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, contribute to, member) -> (beliefs, contribute to, members) -> beliefs (16109ms) How many members does it have? visas -10.922001630339205 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be deny, $x) -> (members, were denied, visas) -> visas (12258ms) How many members does it have? minor atlantis member -10.931416638492951 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, instance of, member) -> (minor atlantis member, Instance Of, member) -> minor atlantis member (16109ms) How many members does it have? non-lawyer affiliate member -10.931416638492951 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, instance of, member) -> (non-lawyer affiliate member, Instance Of, member) -> non-lawyer affiliate member (16109ms) How many members does it have? disability -10.943286935604254 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be deny, $x) -> (members, are denied, disability) -> disability (12258ms) How many members does it have? tenure -10.94552754536762 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be deny, $x) -> (Faculty members, have been denied, tenure) -> tenure (12258ms) How many members does it have? boarding -10.956450584679377 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be deny, $x) -> (Members, may be denied, boarding) -> boarding (12258ms) How many members does it have? residency -10.957414325779467 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be deny, $x) -> (Family members, are regularly denied, residency) -> residency (12258ms) How many members does it have? bioethics -10.98120812012385 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, teach by, member) -> (bioethics, be taught by, members) -> bioethics (14082ms) How many members does it have? students -10.988281716737212 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: ($x, teach by, member) -> (students, taught jointly by, members) -> students (14082ms) How many members does it have? Music -11.041325273366697 How many members does it have? -> how many [ member ] do it have ? -> how many member do beyonce have ? -> $x: (beyonce, member, $x) -> $x: (beyonce, domain, $x) -> (Beyonce: I Am....Tour Concert Dates, Related Domain, Music) -> Music (11860ms) How many members does it have? Event -11.041325273366697 How many members does it have? -> how many [ member ] do it have ? -> how many member do beyonce have ? -> $x: (beyonce, member, $x) -> $x: (beyonce, related type, $x) -> (Beyonce: I Am....Tour Concert Dates, Related Type, Event) -> Event (11821ms) How many members does it have? Ella Fitzgerald -11.064082456673388 How many members does it have? -> how many [ member ] do it have ? -> how many member do beyonce have ? -> $x: (beyonce, member, $x) -> $x: (beyonce, compare, $x) -> (Beyonce, can be compared to, Ella Fitzgerald) -> Ella Fitzgerald (11822ms) How many members does it have? University -11.088814228546745 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (its members, were students at, University) -> University (11822ms) How many members does it have? satisfied -11.111371855072543 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (Members, are, satisfied) -> satisfied (11822ms) How many members does it have? obese -11.128377563794983 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> $x: (member, be, $x) -> (members, are, obese) -> obese (11822ms) How many members does it have? the top -11.133793100225189 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (Staff members, take students to, the top) -> the top (11861ms) How many members does it have? Hartselle High School -11.16812597679175 How many members does it have? -> how many [ member ] do it have ? -> how many student do member have ? -> $x: (member, student, $x) -> (whose members, are students at, Hartselle High School) -> Hartselle High School (11860ms) How old was the dam? 11 % -11.125820732242051 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> (11 %, likely be as tall/little shorter as, the dam) -> 11 % (9389ms) How old was the dam? Vyre Unify 4 -11.987528185666719 How old was the dam? -> how old [ be the dam ] ? -> what be be the dam cm ? -> $x: ($x, be be, the dam cm) -> $x: ($x, be be, dam cm) -> (Vyre Unify 4, was designed as, a CMS/DAM application) -> Vyre Unify 4 (6184ms) How old was the dam? The COE -12.416326755343437 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> (The COE, has been running a little water through, the dam) -> The COE (9388ms) How old was the dam? The Great Pyramid -12.4595215005566 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> (The Great Pyramid, is even a little smaller than, the Hoover Dam) -> The Great Pyramid (9389ms) How old was the dam? old -12.845831367077828 How old was the dam? -> how old [ be the dam ] ? -> what age be be the dam ? -> $x: ($x, instance of, age) ($x, be be, the dam) -> (old, Instance Of, age) (old, is, the dam) -> old (6123ms) How old was the dam? the sensor -13.225038793778781 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> (the sensor, was mounted in, the lower air dam) -> the sensor (9388ms) How old was the dam? Old -13.243687257935207 How old was the dam? -> how old [ be the dam ] ? -> what age be be the dam ? -> $x: ($x, instance of, age) ($x, be be, the dam) -> (Old, Instance Of, age) (old, is, the dam) -> Old (6124ms) How old was the dam? 43 to 84 years -13.296317716897097 How old was the dam? -> how old be [ the dam ] ? -> what be the dam s age ? -> what be the age of dam ? -> $x: (dam, age, $x) -> (Beaver Dam, were aged, 43 to 84 years) -> 43 to 84 years (10542ms) How old was the dam? 2,000 troops -13.56341492847444 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be work, the dam) -> (2,000 troops, had been sent to work on, the Zipingku Dam) -> 2,000 troops (10280ms) How old was the dam? Hoover Dam 5,218 people -13.569085747639342 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be work, the dam) -> (Hoover Dam 5,218 people, would be working on, the Dam) -> Hoover Dam 5,218 people (10279ms) How old was the dam? Percifield , 40 -13.678883803537778 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be work, the dam) -> (Percifield , 40, had been working on, the dam project) -> Percifield , 40 (10280ms) How old was the dam? stream -13.824346592815374 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be collect, the dam) -> (stream, was collected by, the dam) -> stream (10616ms) How old was the dam? The Smurfs -13.828086354919904 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be work, the dam) -> (The Smurfs, are happily busy working at, the village dam) -> The Smurfs (10280ms) How old was the dam? video games -13.843524037702274 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be crack, the dam) -> (video games, is the first crack in, the dam) -> video games (10062ms) How old was the dam? water -13.901823221975317 How old was the dam? -> how old [ be the dam ] ? -> what age be be the dam ? -> $x: ($x, instance of, age) ($x, be be, the dam) -> (water, Instance Of, aging infrastructure) (water, is being released through, the dam) -> water (6124ms) How old was the dam? 180 -13.948089615428493 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (180, are, dams) -> 180 (12897ms) How old was the dam? a contractor -13.951374592523347 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be work, the dam) -> (a contractor, was working on, the dam) -> a contractor (10280ms) How old was the dam? Data -13.97093414468487 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be collect, the dam) -> (Data, is also collected on, the sires and dams) -> Data (10615ms) How old was the dam? fog lights -13.975113993136267 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, mount, dam) -> (fog lights, mounted in, the front air dams) -> fog lights (9537ms) How old was the dam? desktop publishing -13.995666696925221 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be crack, the dam) -> (desktop publishing, was the first crack in, the dam) -> desktop publishing (10062ms) How old was the dam? Fall Line -14.032985502496551 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be work, the dam) -> (Fall Line, is presently working on, the Deep Creek Dam) -> Fall Line (10279ms) How old was the dam? Grays Harbor County -14.035899398029324 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be work, the dam) -> (Grays Harbor County, were sent to work on, the Coulee Dam) -> Grays Harbor County (10322ms) How old was the dam? fish -14.04249751549395 How old was the dam? -> how old [ be the dam ] ? -> what age be be the dam ? -> $x: ($x, instance of, age) ($x, be be, the dam) -> (fish, Instance Of, age group) (fish, was, the dam) -> fish (6184ms) How old was the dam? the upstream water--BVW etc -14.14663468625327 How old was the dam? -> how old be [ the dam ] ? -> what be age of the dam ? -> $x: ($x, be age of, the dam) -> (the upstream water--BVW etc, is the age of, the dam) -> the upstream water--BVW etc (9389ms) How old was the dam? The water surface -14.151268951518205 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> (The water surface, is mounting persistently to, the dam brim) -> The water surface (9388ms) How old was the dam? signature -14.159303790427693 How old was the dam? -> how old [ be the dam ] ? -> how many year old be be the dam ? -> $x: ($x, instance of, year old) ($x, be be, the dam) -> (signature, Instance Of, 20-year old technology) (signature, is, the dam) -> signature (8620ms) How old was the dam? managing water -14.236939330866527 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be raise, the dam) -> (managing water, is raising, the present dams) -> managing water (10806ms) How old was the dam? the Mbokazi Dam -14.245865703882291 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be bigger, the dam) -> (the Mbokazi Dam, could be bigger than, the Gariep Dam) -> the Mbokazi Dam (9961ms) How old was the dam? the Glen Canyon Dam -14.29764113488382 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be impressive, the dam) -> (the Glen Canyon Dam, is as impressive as, the Hoover Dam) -> the Glen Canyon Dam (9997ms) How old was the dam? The Occupy Movement -14.308388599268866 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be crack, the dam) -> (The Occupy Movement, is first crack in, the dam) -> The Occupy Movement (10062ms) How old was the dam? colostrum -14.330213684378098 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, have be remove, the dam) -> (colostrum, has been removed from, the dam?s udder) -> colostrum (9929ms) How old was the dam? Loch Arklet -14.388946688744564 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be raise, the dam) -> (Loch Arklet, was raised by, the dam) -> Loch Arklet (10806ms) How old was the dam? no matter -14.392577975619684 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be crack, the dam) -> (no matter, are the first cracks in, the dam) -> no matter (10062ms) How old was the dam? Bottom ash -14.403029313844034 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be collect, the dam) -> (Bottom ash, is collected at, the ash dam) -> Bottom ash (10615ms) How old was the dam? A concrete weir -14.435527637482712 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, have be install, the dam) -> (A concrete weir, has been installed below, the dam) -> A concrete weir (10461ms) How old was the dam? ERA -14.440230185137999 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be work, the dam) -> (ERA, was working on, the dam leak) -> ERA (10322ms) How old was the dam? ?Owl -14.46649170931622 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (?Owl, be, Dammed?) -> ?Owl (12897ms) How old was the dam? the Act -14.468619007457594 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be crack, the dam) -> (the Act, was a small crack in, the dam) -> the Act (10063ms) How old was the dam? none -14.481351214899556 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be greater, the dam) -> (none, are greater than, the dams) -> none (9863ms) How old was the dam? world renowned fishery -14.505781873627654 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: (little the dam, instance of, $x) -> (Little Red River below the dam, Instance Of, world renowned fishery) -> world renowned fishery (12897ms) How old was the dam? water levels -14.50719817608865 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be raise, the dam) -> (water levels, have been raised by, the canal dam) -> water levels (10806ms) How old was the dam? Aug. 9 , 2006 -14.520163353959099 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be test, the dam) -> (Aug. 9 , 2006, was an unexpected test for, the dam) -> Aug. 9 , 2006 (10806ms) How old was the dam? Salini Costruttori SpA -14.52438800398377 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be work, the dam) -> (Salini Costruttori SpA, is working on, the dam) -> Salini Costruttori SpA (10322ms) How old was the dam? The Loki-wolf -14.528599860870077 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, mount, dam) -> (The Loki-wolf, mounted, the dam) -> The Loki-wolf (9537ms) How old was the dam? the Finnsheep , fixed effects -14.529704880881146 How old was the dam? -> how old be [ the dam ] ? -> what be age of the dam ? -> $x: ($x, be age of, the dam) -> $x: ($x, age of, dam) -> (the Finnsheep , fixed effects, were year-age of, dam combination) -> the Finnsheep , fixed effects (9537ms) How old was the dam? a fish ladder -14.529735979106674 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, have be install, the dam) -> (a fish ladder, has been installed at, the Milton Lake Dam) -> a fish ladder (10461ms) How old was the dam? heavy equipment -14.53226138339802 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be work, the dam) -> (heavy equipment, was working on, the dam) -> heavy equipment (10322ms) How old was the dam? The IAEA team -14.53588258530491 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be work, the dam) -> (The IAEA team, was working near, the Saddam Dam) -> The IAEA team (10322ms) How old was the dam? water samples -14.563794600311223 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be collect, the dam) -> (water samples, were collected monthly just below, the dam) -> water samples (10616ms) How old was the dam? the Yellowstone -14.56399950977847 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (the Yellowstone, are, dams) -> the Yellowstone (12897ms) How old was the dam? Uncertainty -14.5667735967801 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be crack, the dam) -> (Uncertainty, is a crack in, the dam) -> Uncertainty (10063ms) How old was the dam? Water samples -14.580976671486079 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be collect, the dam) -> (Water samples, were collected from, the Selaulim Dam) -> Water samples (10616ms) How old was the dam? Water -14.58578159563695 How old was the dam? -> how old [ be the dam ] ? -> what age be be the dam ? -> $x: ($x, instance of, age) ($x, be be, the dam) -> (Water, Instance Of, ageing product) (Water, was being released from, the dams) -> Water (6215ms) How old was the dam? beer ? -14.593467186691932 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (beer ?, was, DAM) -> beer ? (12897ms) How old was the dam? A quality breeder -14.593852511145725 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be pointed, the dam) -> (A quality breeder, will be able to point out, the sire and dam) -> A quality breeder (9929ms) How old was the dam? Similar questions -14.599972116683645 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be raise, the dam) -> (Similar questions, were raised about, the Three Gorges dam) -> Similar questions (10806ms) How old was the dam? the Volta River -14.617613212494481 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> (the Volta River, has too little water to keep, the dam) -> the Volta River (9537ms) How old was the dam? total sediment -14.62922523722909 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be collect, the dam) -> (total sediment, has been collected behind, the gabion dam) -> total sediment (10616ms) How old was the dam? wonderful place -14.637490379320063 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: (little the dam, instance of, $x) -> (little wayside park at the dam, Instance Of, wonderful place) -> wonderful place (12897ms) How old was the dam? Salini Costruttori S.p.A -14.638642060060043 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be work, the dam) -> (Salini Costruttori S.p.A, is working on, the Gibe III dam) -> Salini Costruttori S.p.A (10353ms) How old was the dam? rubbish -14.698665252694523 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be collect, the dam) -> (rubbish, were being collected daily at, the dam) -> rubbish (10649ms) How old was the dam? Flit -14.719040684028547 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (Flit, was, Dam) -> Flit (12897ms) How old was the dam? 5000 years -14.721046048787251 How old was the dam? -> how old be [ the dam ] ? -> what be the dam s age ? -> what be the age of dam ? -> $x: (dam, age, $x) -> (Soda Dam proper, have a maximum age of about, 5000 years) -> 5000 years (10542ms) How old was the dam? A major brick -14.72747041090802 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, have be remove, the dam) -> (A major brick, has been removed from, the wall damming) -> A major brick (9929ms) How old was the dam? a concrete step -14.741943455889189 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, have be remove, the dam) -> (a concrete step, has been taken to remove, the Rodman dam) -> a concrete step (9929ms) How old was the dam? Feb 27/2007 09:39AM -14.76056674034082 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (Feb 27/2007 09:39AM, do connect, the dam) -> Feb 27/2007 09:39AM (12897ms) How old was the dam? earthquakes -14.770965750406727 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (earthquakes, are, dams) -> earthquakes (15012ms) How old was the dam? the Canadian press -14.772283267246333 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> (the Canadian press, may have cared little about, some dam) -> the Canadian press (9555ms) How old was the dam? Reclamation -14.812760261391752 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be raise, the dam) -> (Reclamation, is considering raising, the dam) -> Reclamation (10806ms) How old was the dam? the British -14.835309850318158 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, mount, dam) -> (the British, mounted an attack on, three German Dams) -> the British (9555ms) How old was the dam? New South Wales -14.852096114323677 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (New South Wales, were, dams) -> New South Wales (15012ms) How old was the dam? trunks -14.901891592369715 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (trunks, are, dams) -> trunks (15012ms) How old was the dam? ?This last storm -14.9769089805286 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> (?This last storm, had little impact on, the dam) -> ?This last storm (9555ms) How old was the dam? Waters -15.02068691221266 How old was the dam? -> how old [ be the dam ] ? -> how many year old be be the dam ? -> $x: ($x, instance of, year old) ($x, be be, the dam) -> (Waters, Instance Of, 44-year old ex-NFL player) (Water, was being released from, the dams) -> Waters (8621ms) How old was the dam? blood -15.025679269592084 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (blood, is, ?Dam) -> blood (15012ms) How old was the dam? Matola -15.040723302080357 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, mount, dam) -> (Matola, mounted a six-year campaign against, the dam) -> Matola (9555ms) How old was the dam? A-1L and AN-10 -15.04820495799111 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (A-1L and AN-10, do, tolerate dam-like methylation) -> A-1L and AN-10 (15012ms) How old was the dam? Blue Colour -15.067503500395272 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (Blue Colour, is, dam) -> Blue Colour (15012ms) How old was the dam? one area -15.078741882092375 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (one area, is done with, a dam) -> one area (15012ms) How old was the dam? ?These -15.097915257804255 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (?These, are, dams) -> ?These (15594ms) How old was the dam? Hemoglobin A-1c -15.146855180527059 How old was the dam? -> how old [ be the dam ] ? -> what age be be the dam ? -> $x: ($x, instance of, age) ($x, be be, the dam) -> $x: ($x, instance of, age) ($x, from be, the dam) -> (Hemoglobin A-1c, Instance Of, AGES) (Hemoglobin, is transferred from, the dam) -> Hemoglobin A-1c (18638ms) How old was the dam? a POLITICAL WHORE!...and AMERICANS -15.21449904980429 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (a POLITICAL WHORE!...and AMERICANS, BE, DAMMED) -> a POLITICAL WHORE!...and AMERICANS (15593ms) How old was the dam? pure Van Loon -15.217940912927391 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: (little the dam, instance of, $x) -> (Dam of the little chequer cock, Instance Of, pure Van Loon) -> pure Van Loon (15593ms) How old was the dam? trout , steelhead and salmon -15.219099272026154 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (trout , steelhead and salmon, are, dams) -> trout , steelhead and salmon (15594ms) How old was the dam? Crews -15.230646904108548 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be work, the dam) -> (Crews, are working now to repair, the dam and refill) -> Crews (10353ms) How old was the dam? the cubs -15.253755705744094 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be large, the dam) -> (the cubs, were nearly as large as, the dam) -> the cubs (9929ms) How old was the dam? High Hazard Dams -15.259374426441093 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (High Hazard Dams, Are, Dams) -> High Hazard Dams (15594ms) How old was the dam? NetXposure -15.300788777860827 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (NetXposure, is, DAM) -> NetXposure (15594ms) How old was the dam? Renny -15.306862119507315 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be work, the dam) -> (Renny, is off working on, the dam project) -> Renny (10353ms) How old was the dam? WARRENBRI OMEGA -15.3256246816328 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (WARRENBRI OMEGA, IS, Dam) -> WARRENBRI OMEGA (15594ms) How old was the dam? Tool # 4 -15.328068264413945 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (Tool # 4, do, gravity dams) -> Tool # 4 (15593ms) How old was the dam? 14:40:10 -15.330785391744492 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (14:40:10, DO, YOUR OWN DAM HOMEWORK) -> 14:40:10 (15678ms) How old was the dam? Lola -15.351615454334002 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (Lola, were, DAMS) -> Lola (15677ms) How old was the dam? Big River -15.356381013088797 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (Big River, Was, Dammed) -> Big River (15678ms) How old was the dam? Marketing Digital Asset Management -15.367465247178911 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (Marketing Digital Asset Management, is, DAM) -> Marketing Digital Asset Management (15678ms) How old was the dam? Sowbugs -15.368424255357144 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be work, the dam) -> (Sowbugs, have been working well in, the Dam area) -> Sowbugs (10353ms) How old was the dam? succession -15.430622984396495 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (succession, are, dams) -> succession (15677ms) How old was the dam? the reserve -15.4448134168642 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be large, the dam) -> (the reserve, is the large reservoir of, the Nagarjunasagar Dam) -> the reserve (9929ms) How old was the dam? lap 40 leading R&S -15.460762479179126 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (lap 40 leading R&S, so did, DAMS Lola) -> lap 40 leading R&S (15677ms) How old was the dam? Concerns -15.463190878925465 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be raise, the dam) -> (Concerns, have been raised around, the Olympic Dam open pit) -> Concerns (10870ms) How old was the dam? The 50 million tribals -15.464317990829606 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (The 50 million tribals, have been flooded by, dams) -> The 50 million tribals (15677ms) How old was the dam? the engineers -15.480373501274718 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be work, the dam) -> (the engineers, were working on, the dam) -> the engineers (10353ms) How old was the dam? Commonsense* -15.541974732811044 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (Commonsense*, does say, Dam*) -> Commonsense* (15842ms) How old was the dam? the spillway -15.565150372697175 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> (the spillway, lies a little beyond, the dam) -> the spillway (9734ms) How old was the dam? hell -15.572360779311603 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (hell, has to be done, dam) -> hell (15842ms) How old was the dam? threats -15.583589181771115 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (threats, are, dams) -> threats (15842ms) How old was the dam? no work -15.587292318539689 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (no work, was done to finish, the dam) -> no work (15842ms) How old was the dam? the ranch -15.618850431772202 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (the ranch, are, dams) -> the ranch (15842ms) How old was the dam? Owl -15.64336694582998 How old was the dam? -> how old [ be the dam ] ? -> what age be be the dam ? -> $x: ($x, instance of, age) ($x, be be, the dam) -> $x: ($x, instance of, age) ($x, be be, dam) -> (Owl, Instance Of, aged wise owl) (?Owl, be, Dammed?) -> Owl (8800ms) How old was the dam? PIPA -15.653383642311177 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (PIPA, have to do with, DAM) -> PIPA (15842ms) How old was the dam? farms -15.655209228901247 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (farms, are, dams) -> farms (15842ms) How old was the dam? A limitation -15.663665070423486 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (A limitation, is the fact that, dams) -> A limitation (15930ms) How old was the dam? the race -15.664953920731147 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (the race, are, dams) -> the race (15930ms) How old was the dam? the sire -15.681753673161163 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (the sire, was, dam) -> the sire (15929ms) How old was the dam? the 2005 tremor -15.726256923460717 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (the 2005 tremor, could do to, the dams) -> the 2005 tremor (15929ms) How old was the dam? power generation -15.728679656268437 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (power generation, do, large dam critics support) -> power generation (15929ms) How old was the dam? uncertainty -15.762307124604403 How old was the dam? -> how old [ be the dam ] ? -> what age be be the dam ? -> $x: ($x, instance of, age) ($x, be be, the dam) -> $x: (age, element, $x) ($x, be be, the dam) -> (any age, carries an element of, uncertainty) (Uncertainty, is a crack in, the dam) -> uncertainty (15929ms) How old was the dam? noon -15.76593551003236 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (noon, did, the First Dam Run) -> noon (15930ms) How old was the dam? Question -15.77507134765424 How old was the dam? -> how old [ be the dam ] ? -> what type of character be be the dam ? -> what character be be the dam ? -> $x: ($x, instance of, character) ($x, be be, the dam) -> (Question, Instance Of, character) (question, is, the dam) -> Question (15930ms) How old was the dam? The Hebrew word for blood -15.790012023787218 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (The Hebrew word for blood, is, dam) -> The Hebrew word for blood (17439ms) How old was the dam? as much electricity -15.818471004942179 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (as much electricity, does, the Hoover Dam) -> as much electricity (17439ms) How old was the dam? Preliminary construction work -15.818987175127862 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (Preliminary construction work, has been done on, the dam) -> Preliminary construction work (17439ms) How old was the dam? Weaning -15.820664650980742 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (Weaning, is best done by, the dam) -> Weaning (17439ms) How old was the dam? cows -15.843735513746543 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (cows, can do to, a dam) -> cows (17439ms) How old was the dam? maintenance -15.849105180409492 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (maintenance, can be done on, the dam) -> maintenance (17605ms) How old was the dam? Shore anglers -15.852094745379798 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (Shore anglers, have been doing well at, the dam) -> Shore anglers (17605ms) How old was the dam? the Vale -15.859548299135234 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (the Vale, do, Gaio Dam) -> the Vale (17605ms) How old was the dam? the Castelo -15.85955610855779 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (the Castelo, do, Bode Dam) -> the Castelo (17605ms) How old was the dam? beavers -15.895083578267235 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (beavers, do build, good dams) -> beavers (17605ms) How old was the dam? made Guy Gibson -15.91766493894406 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (made Guy Gibson, did, The Dam Busters draw) -> made Guy Gibson (18638ms) How old was the dam? the community -15.920397423447486 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> (the community, receives very little benefit from, the dam) -> the community (9734ms) How old was the dam? no mechanical juvenile passage system -15.938080222929859 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (no mechanical juvenile passage system, do, the other dams) -> no mechanical juvenile passage system (18638ms) How old was the dam? beer -15.946348707932762 How old was the dam? -> how old [ be the dam ] ? -> what age be be the dam ? -> $x: ($x, instance of, age) ($x, be be, the dam) -> $x: ($x, instance of, age) ($x, be be, dam) -> (beer, Instance Of, age-restricted product) (beer ?, was, DAM) -> beer (8800ms) How old was the dam? One colleague -15.960430358890251 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be work, the dam) -> (One colleague, was working on, a story about the lock and dam) -> One colleague (10353ms) How old was the dam? Grannuschka -15.96186073994897 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, be, dam) -> (Grannuschka, is, dam) -> Grannuschka (18638ms) How old was the dam? mucc -15.97724939948786 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> $x: ($x, do, dam) -> (mucc, do, raind dam-sa) -> mucc (18638ms) How old was the dam? OWL -15.983538415701446 How old was the dam? -> how old [ be the dam ] ? -> what age be be the dam ? -> $x: ($x, instance of, age) ($x, be be, the dam) -> $x: ($x, instance of, age) ($x, be be, dam) -> (OWL, Instance Of, nonprofit, nonpartisan chapter age) (?Owl, be, Dammed?) -> OWL (8800ms) How old was the dam? dam -15.987503901237172 How old was the dam? -> how old [ be the dam ] ? -> what age be be the dam ? -> $x: ($x, instance of, age) ($x, be be, the dam) -> $x: ($x, instance of, age) ($x, of be, the dam) -> (dam, Instance Of, aging infrastructure) (Dam, is just one of, the dams) -> dam (18638ms) How old was the dam? Belle -15.997293065375235 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> (Belle, 's a little too keyed-up for, her dam and half sister) -> Belle (9734ms) How old was the dam? Lola's -16.042423474205357 How old was the dam? -> how old [ be the dam ] ? -> what age be be the dam ? -> $x: ($x, instance of, age) ($x, be be, the dam) -> $x: ($x, instance of, age) ($x, be be, dam) -> (Lola's, Instance Of, age venue) (Lola, were, DAMS) -> Lola's (8816ms) How old was the dam? the computer -16.04526492234533 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be attach, the dam) -> (the computer, is attached, the dam) -> the computer (10186ms) How old was the dam? Spectrim -16.09379586432652 How old was the dam? -> how old be [ the dam ] ? -> what be little the dam ? -> $x: ($x, be little, the dam) -> $x: ($x, little, dam) -> (Spectrim, says little of, her Dam , Violet) -> Spectrim (9735ms) How old was the dam? The returning fish -16.141304812337566 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be be collect, the dam) -> (The returning fish, are collected just below, the dam and) -> The returning fish (10650ms) How old was the dam? Query -16.305079708365096 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, work fine, the dam) -> (Query, works fine on, the dams map) -> Query (10396ms) How old was the dam? The water -16.322879558102805 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be in there, the dam) -> (The water, is already there in, the dam) -> The water (10395ms) How old was the dam? The icicles -16.338053642229198 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be attach, the dam) -> (The icicles, are attached to, the ice dam hiding) -> The icicles (10186ms) How old was the dam? The mistakes -16.344083995745766 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be huge, the dam) -> (The mistakes, were huge on, the Mollejon Dam) -> The mistakes (10186ms) How old was the dam? The hydro electric power plants -16.451466778179718 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, can be install, the dam) -> (The hydro electric power plants, can be installed near, the dams) -> The hydro electric power plants (10870ms) How old was the dam? The large rock wall -16.4756244919112 How old was the dam? -> how old be [ the dam ] ? -> what be mount the dam ? -> $x: ($x, be mount, the dam) -> $x: ($x, be intact, the dam) -> (The large rock wall, is still intact at, the dam site) -> The large rock wall (10460ms) How old was the dam? man -17.020506280614836 How old was the dam? -> how old [ be the dam ] ? -> what age be be the dam ? -> $x: ($x, instance of, age) ($x, be be, the dam) -> $x: ($x, instance of, age) ($x, be be, dam) -> (man, Instance Of, age) (Man, has been building, dams) -> man (8831ms) How old was the dam? electricity -17.639194368437334 How old was the dam? -> how old [ be the dam ] ? -> what age be be the dam ? -> $x: ($x, instance of, age) ($x, be be, the dam) -> $x: ($x, instance of, age) ($x, be be, dam) -> (electricity, Instance Of, aging infrastructure) (Electricity, is generated by, dams) -> electricity (8935ms) How old was the dam? China -17.709800551085547 How old was the dam? -> how old [ be the dam ] ? -> what age be be the dam ? -> $x: ($x, instance of, age) ($x, be be, the dam) -> $x: ($x, instance of, age) ($x, be be, dam) -> (China, Instance Of, aging society) (China, is building, dams) -> China (8935ms) How old was the dam? Beavers -17.933004393998292 How old was the dam? -> how old [ be the dam ] ? -> what age be be the dam ? -> $x: ($x, instance of, age) ($x, be be, the dam) -> $x: ($x, instance of, age) ($x, be be, dam) -> (Beavers, Instance Of, age group) (Beavers, were building, dams) -> Beavers (8937ms) How old was the dam? India -17.94768996375737 How old was the dam? -> how old [ be the dam ] ? -> what age be be the dam ? -> $x: ($x, instance of, age) ($x, be be, the dam) -> $x: ($x, instance of, age) ($x, be be, dam) -> (India, Instance Of, ageing society) (India, was building, dams) -> India (8935ms) What are antacids? Valu Merchandisers -6.434848595403138 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Valu Merchandisers, Drugs manufactured, Antacid Antigas 200/200/200 suspension) -> Valu Merchandisers (5111ms) What are antacids? ulcer-healing medication -6.498172892039512 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, ulcer-healing medication) -> ulcer-healing medication (4041ms) What are antacids? Western Family Foods -6.530798978475009 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Western Family Foods, Drugs manufactured, Antacid 750 chewable tablet) -> Western Family Foods (5111ms) What are antacids? Family Dollar Services -6.530798978475009 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Family Dollar Services, Drugs manufactured, Antacid Supreme Cherry 400/135 suspension) -> Family Dollar Services (5111ms) What are antacids? American Sales Company -6.530798978475009 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (American Sales Company, Drugs manufactured, Care One Calcium Antacid 1000 chewable tablet) -> American Sales Company (5111ms) What are antacids? calcium-rich item -6.553301165245829 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, calcium-rich item) -> calcium-rich item (4041ms) What are antacids? acid-suppressing agent -6.578915760896624 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, acid-suppressing agent) -> acid-suppressing agent (4041ms) What are antacids? acid-blocking therapy -6.589536665450566 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, acid-blocking therapy) -> acid-blocking therapy (4041ms) What are antacids? Tropical fruit punch -6.640248084640643 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Tropical fruit punch, Drugs with this flavor, Antacid 750 tablet) -> Tropical fruit punch (5111ms) What are antacids? Major Pharmaceuticals -6.678190441444729 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Major Pharmaceuticals, Drugs manufactured, Antacid 750 chewable tablet) -> Major Pharmaceuticals (5129ms) What are antacids? Target Corporation -6.678190441444729 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Target Corporation, Drugs manufactured, Antacid extra strength 750 tablet) -> Target Corporation (5129ms) What are antacids? Cardinal Health -6.678190441444729 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Cardinal Health, Drugs manufactured, Leader Antacid 1000 chewable tablet) -> Cardinal Health (5146ms) What are antacids? Select Brand -6.678190441444729 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Select Brand, Drugs manufactured, Antacid Antigas 400/40/400 suspension) -> Select Brand (5146ms) What are antacids? over-the counter medication -6.750638401875268 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, over-the counter medication) -> over-the counter medication (4041ms) What are antacids? Sam's West -6.762466253192266 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Sam's West, Drugs manufactured, Equate Antacid 750 chewable tablet) -> Sam's West (5319ms) What are antacids? Physicians Total Care -6.762466253192266 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Physicians Total Care, Drugs manufactured, Maalox Antacid 200/20/200 liquid) -> Physicians Total Care (5160ms) What are antacids? Chain Drug Consortium -6.762466253192266 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Chain Drug Consortium, Drugs manufactured, Antacid Antigas 200/20/200 suspension) -> Chain Drug Consortium (5160ms) What are antacids? McKesson Corporation -6.762466253192266 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (McKesson Corporation, Drugs manufactured, Sunmark Calcium Antacid 750 chewable tablet) -> McKesson Corporation (5305ms) What are antacids? CVS Corporation -6.762466253192266 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (CVS Corporation, Drugs manufactured, Antacid Supreme 400/135 suspension) -> CVS Corporation (5319ms) What are antacids? Hannaford Bros. Co. -6.762466253192266 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Hannaford Bros. Co., Drugs manufactured, Antacid 200/20/200 liquid) -> Hannaford Bros. Co. (5146ms) What are antacids? Army and Air Force Exchange Service -6.762466253192266 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Army and Air Force Exchange Service, Drugs manufactured, Exchange Select Calcium Antacid 750 chewable tablet) -> Army and Air Force Exchange Service (5283ms) What are antacids? H-E-B -6.762466253192266 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (H-E-B, Drugs manufactured, Antacid 750 chewable tablet) -> H-E-B (5305ms) What are antacids? SuperValu -6.762466253192266 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (SuperValu, Drugs manufactured, Equaline Antacid 750 chewable tablet) -> SuperValu (5283ms) What are antacids? Hy-Vee -6.762466253192266 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Hy-Vee, Drugs manufactured, Antacid 1000 chewable tablet) -> Hy-Vee (5305ms) What are antacids? Chang Kuo Chou Pharmaceutical -6.762466253192266 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Chang Kuo Chou Pharmaceutical, Drugs manufactured, Stomachin Antacid 58/809 powder) -> Chang Kuo Chou Pharmaceutical (5146ms) What are antacids? L. Perrigo Co -6.762466253192266 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (L. Perrigo Co, Drugs manufactured, Good Sense Antacid 750 chewable tablet) -> L. Perrigo Co (5283ms) What are antacids? DOLGENCORP INC -6.762466253192266 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (DOLGENCORP INC, Drugs manufactured, Dg Health Calcium Antacid 500 chewable tablet) -> DOLGENCORP INC (5318ms) What are antacids? over-the-counter preparation -6.769194744681647 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, over-the-counter preparation) -> over-the-counter preparation (4041ms) What are antacids? pharmacologically active substance -6.775278985283736 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, pharmacologically active substance) -> pharmacologically active substance (4101ms) What are antacids? OTC heartburn product -6.824996367091083 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, OTC heartburn product) -> OTC heartburn product (4101ms) What are antacids? over-the-counter remedy -6.852355418155527 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, over-the-counter remedy) -> over-the-counter remedy (4100ms) What are antacids? non-prescription medicine -6.90904355208689 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, non-prescription medicine) -> non-prescription medicine (4100ms) What are antacids? acid neutralizing substance -6.927803212674002 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, acid neutralizing substance) -> acid neutralizing substance (4100ms) What are antacids? medicament by adsorbent -6.9369239715211375 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, medicament by adsorbent) -> medicament by adsorbent (4146ms) What are antacids? inexpensive over-the-counter medicine -6.9369239715211375 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, inexpensive over-the-counter medicine) -> inexpensive over-the-counter medicine (4101ms) What are antacids? aluminum-based over-the-counter drug -6.9369239715211375 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, aluminum-based over-the-counter drug) -> aluminum-based over-the-counter drug (4146ms) What are antacids? OTC acid-reducing agent -6.9369239715211375 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, OTC acid-reducing agent) -> OTC acid-reducing agent (4146ms) What are antacids? include over-the-counter medication -6.942064929275888 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, include over-the-counter medication) -> include over-the-counter medication (4146ms) What are antacids? over-the-counter therapy -6.9486747326287235 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, over-the-counter therapy) -> over-the-counter therapy (4146ms) What are antacids? nonprescription drug -6.972491381550651 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, nonprescription drug) -> nonprescription drug (4146ms) What are antacids? OTC product for heartburn -6.977696340077445 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, OTC product for heartburn) -> OTC product for heartburn (4161ms) What are antacids? conventional treatment for heart -6.977696340077445 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, conventional treatment for heart) -> conventional treatment for heart (4161ms) What are antacids? gastric pH-modifier agent -6.977696340077445 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, gastric pH-modifier agent) -> gastric pH-modifier agent (4161ms) What are antacids? consumer care product -6.977715061751292 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, consumer care product) -> consumer care product (4162ms) What are antacids? over-the-counter or prescription medicine -6.9845509506213945 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, over-the-counter or prescription medicine) -> over-the-counter or prescription medicine (4163ms) What are antacids? prescription drug and nonprescription drug -6.985921872607615 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, prescription drug and nonprescription drug) -> prescription drug and nonprescription drug (4163ms) What are antacids? absorbable pensive medication -7.0134695366654505 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, absorbable pensive medication) -> absorbable pensive medication (4178ms) What are antacids? calcium upstart product -7.0134695366654505 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, calcium upstart product) -> calcium upstart product (4178ms) What are antacids? common antiulcer drug -7.0134695366654505 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, common antiulcer drug) -> common antiulcer drug (4178ms) What are antacids? supply from home -7.0134695366654505 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, supply from home) -> supply from home (4178ms) What are antacids? eligible over-the-counter drug -7.022590295512587 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, eligible over-the-counter drug) -> eligible over-the-counter drug (4191ms) What are antacids? doctor-approved over-the-counter meds -7.022590295512587 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, doctor-approved over-the-counter meds) -> doctor-approved over-the-counter meds (4178ms) What are antacids? liquid inside a plastic bag sunscreen flashlight and night light tweezers and nail clipper garbage bag sewing kit over-the-counter medication -7.022590295512587 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, liquid inside a plastic bag sunscreen flashlight and night light tweezers and nail clipper garbage bag sewing kit over-the-counter medication) -> liquid inside a plastic bag sunscreen flashlight and night light tweezers and nail clipper garbage bag sewing kit over-the-counter medication (4209ms) What are antacids? treatment for peptic ulcer -7.022590295512587 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, treatment for peptic ulcer) -> treatment for peptic ulcer (4191ms) What are antacids? common medication during pregnancy -7.022590295512587 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, common medication during pregnancy) -> common medication during pregnancy (4178ms) What are antacids? easygoing.common medication -7.022590295512587 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, easygoing.common medication) -> easygoing.common medication (4191ms) What are antacids? prescription and non-prescription drug -7.022590295512587 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, prescription and non-prescription drug) -> prescription and non-prescription drug (4209ms) What are antacids? illness and pain relief product -7.022590295512587 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, illness and pain relief product) -> illness and pain relief product (4191ms) What are antacids? broad classification of medicine -7.022590295512587 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (Antacid, Instance Of, broad classification of medicine) -> broad classification of medicine (4191ms) What are antacids? form of calcium -7.022590295512587 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, form of calcium) -> form of calcium (4209ms) What are antacids? h. drug -7.022590295512587 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, h. drug) -> h. drug (4191ms) What are antacids? prescription and non-prescription medication -7.024548755646114 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, prescription and non-prescription medication) -> prescription and non-prescription medication (4209ms) What are antacids? over-the counter medicine -7.025880508402085 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, over-the counter medicine) -> over-the counter medicine (4209ms) What are antacids? over-the-counter option -7.028759445063427 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, over-the-counter option) -> over-the-counter option (4209ms) What are antacids? cholesterol lowering medication -7.03109567771398 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, cholesterol lowering medication) -> cholesterol lowering medication (4224ms) What are antacids? non-anticancer agent -7.03172977603357 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, non-anticancer agent) -> non-anticancer agent (4224ms) What are antacids? chemically active ingredient -7.031748497707417 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, chemically active ingredient) -> chemically active ingredient (4224ms) What are antacids? prescription drug and over-the-counter medicine -7.032872211022087 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, prescription drug and over-the-counter medicine) -> prescription drug and over-the-counter medicine (4224ms) What are antacids? accepted medical treatment -7.034033367684451 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, accepted medical treatment) -> accepted medical treatment (4223ms) What are antacids? acid reflux medication -7.034033367684451 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, acid reflux medication) -> acid reflux medication (4224ms) What are antacids? non prescription medicine -7.034341056620173 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, non prescription medicine) -> non prescription medicine (4241ms) What are antacids? kid test household product -7.035244961226471 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, kid test household product) -> kid test household product (4241ms) What are antacids? over-the-counter and prescription product -7.0362995166004865 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, over-the-counter and prescription product) -> over-the-counter and prescription product (4241ms) What are antacids? counter ? over-the-counter drug -7.039041360572927 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, counter ? over-the-counter drug) -> counter ? over-the-counter drug (4241ms) What are antacids? type of medicine -7.045530028010268 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, type of medicine) -> type of medicine (4241ms) What are antacids? concurrent gastroprotective agent -7.054597198703451 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, concurrent gastroprotective agent) -> concurrent gastroprotective agent (4241ms) What are antacids? indigestion remedy -7.13727132810979 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, indigestion remedy) -> indigestion remedy (4256ms) What are antacids? FDA OTC monograph part 331 -7.155023713973003 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (FDA OTC monograph part 331, Drugs regulated, Good Sense Antacid 500 chewable tablet) -> FDA OTC monograph part 331 (5652ms) What are antacids? FDA OTC monograph part 332 -7.155023713973003 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (FDA OTC monograph part 332, Drugs regulated, Equaline Antacid 200/20/200 liquid) -> FDA OTC monograph part 332 (5529ms) What are antacids? pharmaceutical agent -7.193415451676795 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, pharmaceutical agent) -> pharmaceutical agent (4256ms) What are antacids? common remedy -7.232759015298232 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, common remedy) -> common remedy (4256ms) What are antacids? prn medicine -7.241475190977767 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, prn medicine) -> prn medicine (4256ms) What are antacids? iron product -7.263601836962203 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, iron product) -> iron product (4256ms) What are antacids? consumer item -7.299711027225607 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, consumer item) -> consumer item (4257ms) What are antacids? nonsurgical therapy -7.3052461522772525 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, nonsurgical therapy) -> nonsurgical therapy (4272ms) What are antacids? medical therapy -7.305705404848668 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, medical therapy) -> medical therapy (4272ms) What are antacids? drug treatment -7.311974479579217 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, drug treatment) -> drug treatment (4272ms) What are antacids? particulate material -7.322662476284981 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, particulate material) -> particulate material (4272ms) What are antacids? stomach remedy -7.33210549830786 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, stomach remedy) -> stomach remedy (4272ms) What are antacids? heartburn remedy -7.334865256531294 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, heartburn remedy) -> heartburn remedy (4272ms) What are antacids? pregnancyrelated drug -7.334865256531294 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, pregnancyrelated drug) -> pregnancyrelated drug (5651ms) What are antacids? counter meds -7.343639157978521 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, counter meds) -> counter meds (5651ms) What are antacids? health remedy -7.3469616282236405 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, health remedy) -> health remedy (5651ms) What are antacids? famous product -7.347165117685893 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, famous product) -> famous product (5660ms) What are antacids? suitable treatment -7.350427075129758 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (Antacid, Instance Of, suitable treatment) -> suitable treatment (5660ms) What are antacids? gastrointestinal agent -7.352491397579822 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, gastrointestinal agent) -> gastrointestinal agent (5661ms) What are antacids? nonglamorous product -7.3797592119664355 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, nonglamorous product) -> nonglamorous product (5660ms) What are antacids? thecounter drug -7.3797592119664355 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, thecounter drug) -> thecounter drug (5670ms) What are antacids? ditional therapy -7.3797592119664355 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, ditional therapy) -> ditional therapy (5661ms) What are antacids? drug medicine -7.3797592119664355 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, drug medicine) -> drug medicine (5670ms) What are antacids? antipeptic drug -7.3797592119664355 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, antipeptic drug) -> antipeptic drug (5670ms) What are antacids? dangerous pharmaceutical -7.3797592119664355 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, dangerous pharmaceutical) -> dangerous pharmaceutical (5660ms) What are antacids? standard medication -7.384680470684932 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, standard medication) -> standard medication (5670ms) What are antacids? precautionary item -7.385634592520229 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, precautionary item) -> precautionary item (5670ms) What are antacids? medicinal product -7.386086544823378 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, medicinal product) -> medicinal product (5679ms) What are antacids? household remedy -7.386185409159873 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, household remedy) -> household remedy (5679ms) What are antacids? patent remedy -7.3915099730740215 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, patent remedy) -> patent remedy (5679ms) What are antacids? effective product -7.392623788584052 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, effective product) -> effective product (5679ms) What are antacids? basic medication -7.392746894199194 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, basic medication) -> basic medication (5679ms) What are antacids? ulcer drug -7.396895737407036 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, ulcer drug) -> ulcer drug (5679ms) What are antacids? traditional treatment -7.400969705062862 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, traditional treatment) -> traditional treatment (5687ms) What are antacids? alkalinizing drug -7.407177654142236 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, alkalinizing drug) -> alkalinizing drug (5687ms) What are antacids? quest item -7.4186271124886884 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (Antacid, Instance Of, quest item) -> quest item (5687ms) What are antacids? pharmacological group -7.434596096318035 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (Antacids, Instance Of, pharmacological group) -> pharmacological group (5687ms) What are antacids? Fruit -7.4541846041590665 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Fruit, Drugs with this flavor, Antacid 1000 chewable tablet) -> Fruit (5724ms) What are antacids? Peppermint -7.4541846041590665 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Peppermint, Drugs with this flavor, Antacid 500 tablet) -> Peppermint (5708ms) What are antacids? Meijer -7.4541846041590665 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Meijer, Drugs manufactured, Antacid 160/105 chewable tablet) -> Meijer (5724ms) What are antacids? Wintergreen -7.4541846041590665 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Wintergreen, Drugs with this flavor, Antacid 750 chewable tablet) -> Wintergreen (5724ms) What are antacids? Circle -7.4541846041590665 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Circle, Drugs with this shape, Antacid 750 tablet) -> Circle (5724ms) What are antacids? Berry -7.4541846041590665 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Berry, Drugs with this flavor, Antacid 750 chewable tablet) -> Berry (5695ms) What are antacids? Cherry -7.4541846041590665 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Cherry, Drugs with this flavor, Antacid 1000 tablet) -> Cherry (5708ms) What are antacids? Fragaria -7.4541846041590665 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Fragaria, Drugs with this flavor, Antacid 750 tablet) -> Fragaria (5717ms) What are antacids? Kroger -7.4541846041590665 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (Kroger, Drugs manufactured, Antacid 750 tablet) -> Kroger (5708ms) What are antacids? food and product -7.7749052108386545 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, food and product) -> food and product (5732ms) What are antacids? chewable calcium -8.940974114827064 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacids, be an excellent source of, $x) -> (The antacid TUMS ?, is an excellent source of, chewable calcium) -> chewable calcium (6019ms) What are antacids? substance -9.327616068389567 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, substance) -> substance (6021ms) What are antacids? preparation -9.354693754872835 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, preparation) -> preparation (6019ms) What are antacids? measure -9.413482971022482 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, measure) -> measure (6019ms) What are antacids? incidental -9.544356405579949 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, incidental) -> incidental (6076ms) What are antacids? doctor -9.551166953343348 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, doctor) -> doctor (6076ms) What are antacids? therapy -9.609699776362689 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, therapy) -> therapy (6076ms) What are antacids? Acid reflux -9.615798774654706 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (Acid reflux, is often treated with, antacid) -> Acid reflux (7596ms) What are antacids? remedy -9.636607363693912 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, remedy) -> remedy (6076ms) What are antacids? alternative -9.641255749452714 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacid, instance of, $x) -> (antacid, Instance Of, alternative) -> alternative (6076ms) What are antacids? a good way -9.77460364666606 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacid, is, a good way) -> a good way (7596ms) What are antacids? aluminium-containing medicines -10.002982611807873 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (aluminium-containing medicines, are, antacids) -> aluminium-containing medicines (7596ms) What are antacids? acid-blocking medication -10.12447196452738 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are on, acid-blocking medication) -> acid-blocking medication (7597ms) What are antacids? Magnesium Hydroxide -10.177662174709312 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (Magnesium Hydroxide, are used as, antacids) -> Magnesium Hydroxide (7596ms) What are antacids? calcium -10.194208257563243 What are antacids? -> $x: (antacids, instance of, $x) -> $x: (antacids, be good source of, $x) -> (Antacids, are also good sources of, calcium) -> calcium (7597ms) What are antacids? magnesium hydroxide -10.263098768165458 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (magnesium hydroxide, are also, antacids) -> magnesium hydroxide (7613ms) What are antacids? a placebo -10.325467341186615 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are more effective than, a placebo) -> a placebo (7613ms) What are antacids? acid reflux -10.375240096655325 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (acid reflux, are, antacids) -> acid reflux (7613ms) What are antacids? endoscopy.Treatment -10.430636681410355 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (endoscopy.Treatment, is, antacids) -> endoscopy.Treatment (7613ms) What are antacids? heartburn or acid reflux -10.475379872433251 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (heartburn or acid reflux, is, antacids) -> heartburn or acid reflux (7629ms) What are antacids? low-carbohydrate diets -10.545676778567834 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, Are, low-carbohydrate diets) -> low-carbohydrate diets (7629ms) What are antacids? diarrhea or constipation -10.585759280091136 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are, diarrhea or constipation) -> diarrhea or constipation (7629ms) What are antacids? An example -10.5916550511501 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (An example, is, antacids) -> An example (7628ms) What are antacids? SPRYCEL plasma concentrations -10.593713990518747 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (SPRYCEL plasma concentrations, should be avoided, Antacids) -> SPRYCEL plasma concentrations (7629ms) What are antacids? heartburn acid reflux -10.615811350044336 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (heartburn acid reflux, will be, antacids) -> heartburn acid reflux (7645ms) What are antacids? Thanksgiving dinner Dad -10.626208547085572 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (Thanksgiving dinner Dad, was popping, antacids) -> Thanksgiving dinner Dad (7645ms) What are antacids? acid reflux disease -10.630635225090145 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (acid reflux disease, is, antacids) -> acid reflux disease (7645ms) What are antacids? magnesium , calcium -10.630970773226426 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are, magnesium , calcium) -> magnesium , calcium (7645ms) What are antacids? available OTC -10.645526538619569 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are, available OTC) -> available OTC (7645ms) What are antacids? magnesium or aluminium -10.646993884195286 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are, magnesium or aluminium) -> magnesium or aluminium (7663ms) What are antacids? a reality -10.651265077555646 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are, a reality) -> a reality (7663ms) What are antacids? stomach acid neutralizers -10.668202867317824 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are, stomach acid neutralizers) -> stomach acid neutralizers (7663ms) What are antacids? a low-risk solution -10.670999954763595 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are generally thought to be, a low-risk solution) -> a low-risk solution (7663ms) What are antacids? Maalox Advanced Maximum Strength -10.677366827102329 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (Maalox Advanced Maximum Strength, are, antacids) -> Maalox Advanced Maximum Strength (7663ms) What are antacids? an acceptable re&# -10.691104048457975 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, is, an acceptable re&#) -> an acceptable re&# (7663ms) What are antacids? the Pharmacist :Antacids -10.700830204274627 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (the Pharmacist :Antacids, are, antacids) -> the Pharmacist :Antacids (7683ms) What are antacids? hip new joints -10.702567540813765 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (hip new joints, now are into, antacids) -> hip new joints (7683ms) What are antacids? acid reflux disorder disorder -10.73047934454738 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (acid reflux disorder disorder, is undoubtedly, antacids) -> acid reflux disorder disorder (7683ms) What are antacids? Acceptable alternatives -10.762969910781495 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (Acceptable alternatives, are, antacids) -> Acceptable alternatives (7684ms) What are antacids? American families -10.794335606563624 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (American families, are popping, antacids) -> American families (7683ms) What are antacids? Antacids, laxatives & antidiarrhoeal products -10.809593738830454 What are antacids? -> what be [ antacid ] ? -> what be the expansion of antacid ? -> $x: (antacid, expansion, $x) -> $x: ($x, edition of, antacid) -> (Antacids, laxatives & antidiarrhoeal products, Edition Of, Antacids, laxatives & antidiarrhoeal products) -> Antacids, laxatives & antidiarrhoeal products (8697ms) What are antacids? Antacids and other drugs in gastrointestinal diseases -10.809593738830454 What are antacids? -> what be [ antacid ] ? -> what be the expansion of antacid ? -> $x: (antacid, expansion, $x) -> $x: ($x, edition of, antacid) -> (Antacids and other drugs in gastrointestinal diseases, Edition Of, Antacids and other drugs in gastrointestinal diseases) -> Antacids and other drugs in gastrointestinal diseases (8697ms) What are antacids? sure the region?s tourism authorities -10.812044204336237 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (sure the region?s tourism authorities, are chewing, antacids) -> sure the region?s tourism authorities (7744ms) What are antacids? treating gastritis -10.854642229716964 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (treating gastritis, are, antacids) -> treating gastritis (7745ms) What are antacids? an option -10.859179758224137 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are also, an option) -> an option (7745ms) What are antacids? Ulcers Pepcid and Zantac -10.87122483549471 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (Ulcers Pepcid and Zantac, are commonly used, antacids) -> Ulcers Pepcid and Zantac (7745ms) What are antacids? weak bases -10.912671639058015 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are, weak bases) -> weak bases (7745ms) What are antacids? one hour -10.917844766737105 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, is about, one hour) -> one hour (7783ms) What are antacids? a span -10.92493448853784 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacid, should be avoided within, a span) -> a span (7783ms) What are antacids? aluminum ingestion -10.9382136253862 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (aluminum ingestion, is, antacids) -> aluminum ingestion (7783ms) What are antacids? Heartburn -10.94442211621509 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are Natural Remedies For, Heartburn) -> Heartburn (7783ms) What are antacids? calcium use or retention -10.948056560566027 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (calcium use or retention, are, antacids) -> calcium use or retention (7783ms) What are antacids? Nexium -10.948286545485225 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (Nexium, may be taken with, antacids) -> Nexium (7783ms) What are antacids? aluminum , magnesium , or calcium-based -10.96835663851909 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, may be, aluminum , magnesium , or calcium-based) -> aluminum , magnesium , or calcium-based (7802ms) What are antacids? Bet CVS -10.97041493057024 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (Bet CVS, was plumb out of, antacids) -> Bet CVS (7802ms) What are antacids? Common indigestion -10.98889267637923 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (Common indigestion, is repeatedly treated with, antacids) -> Common indigestion (7802ms) What are antacids? high purity magnesium carbonate -10.992420549060917 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (high purity magnesium carbonate, is used as, antacid) -> high purity magnesium carbonate (7802ms) What are antacids? more than 3 weeks -10.99420170110691 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are needed for, more than 3 weeks) -> more than 3 weeks (7802ms) What are antacids? gastric reflux -11.006784323589372 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (gastric reflux, would be to take, antacids) -> gastric reflux (7802ms) What are antacids? a week take -11.027814404502841 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (a week take, is, antacids) -> a week take (7818ms) What are antacids? Common examples -11.0477461365202 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (Common examples, are, antacids) -> Common examples (7819ms) What are antacids? frequent indigestion -11.054462322421795 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (frequent indigestion, are taking, antacids) -> frequent indigestion (7819ms) What are antacids? a gentle medication -11.061943230620876 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are, a gentle medication) -> a gentle medication (7819ms) What are antacids? Almond -11.075601351941106 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (Almond, is also a type of, antacid) -> Almond (7819ms) What are antacids? Magnesium -11.086285984061574 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (Magnesium, is also found in, antacids) -> Magnesium (7834ms) What are antacids? a good example -11.116954086819442 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, is, a good example) -> a good example (7834ms) What are antacids? heartburn -11.117917945440825 What are antacids? -> $x: (antacids, instance of, $x) -> $x: ($x, drug, antacids) -> (heartburn, usually include drugs like, antacids) -> heartburn (7834ms) What are antacids? nizatidine therapy -11.12516709418548 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are necessary while on, nizatidine therapy) -> nizatidine therapy (7834ms) What are antacids? a vicious cycle -11.141650974014494 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, is, a vicious cycle) -> a vicious cycle (7834ms) What are antacids? Mixed -11.151041617921315 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, Be, Mixed) -> Mixed (7834ms) What are antacids? a preferred remedy -11.21510004219624 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are, a preferred remedy) -> a preferred remedy (7851ms) What are antacids? mild symptoms -11.215386302810874 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are for, mild symptoms) -> mild symptoms (7851ms) What are antacids? minor episodes -11.230004063455807 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are effective for, minor episodes) -> minor episodes (7851ms) What are antacids? Fluoroquinolone absorption -11.244107799245848 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (Fluoroquinolone absorption, is decreased by, antacids) -> Fluoroquinolone absorption (7851ms) What are antacids? over-the-counter -11.277614931911362 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are available, over-the-counter) -> over-the-counter (7851ms) What are antacids? a regular basis -11.282898808291314 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (a regular basis, are taking, antacids) -> a regular basis (7850ms) What are antacids? specific foods -11.286592730958116 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (specific foods, is relieved by, antacids) -> specific foods (7866ms) What are antacids? Gaviscon -11.291728783091084 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are, Gaviscon) -> Gaviscon (7866ms) What are antacids? Doctors -11.356761822049226 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (Doctors, are prescribing, antacids) -> Doctors (7866ms) What are antacids? occasional indigestion -11.382468657149166 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, may be used for, occasional indigestion) -> occasional indigestion (7867ms) What are antacids? Hm Antacid -11.384976184670029 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Hm Antacid, Instance Of, antacid) -> Hm Antacid (10089ms) What are antacids? SIBO -11.391017007666717 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (SIBO, is, antacids) -> SIBO (7867ms) What are antacids? acid indigestion -11.40356417791028 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are used to relieve, acid indigestion) -> acid indigestion (7867ms) What are antacids? least 1 hour -11.426599918545694 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, should be taken at, least 1 hour) -> least 1 hour (7961ms) What are antacids? Diets -11.443020997014177 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (Diets, Are Like, Antacids) -> Diets (7961ms) What are antacids? Calcium Carbonate -11.48354807651473 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be in, antacid) -> (Calcium Carbonate, is also found in, popular antacids) -> Calcium Carbonate (9602ms) What are antacids? 24 tablets -11.571238589542263 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (antacids, has, 24 tablets) -> 24 tablets (7961ms) What are antacids? Baking soda -11.572311906699712 What are antacids? -> what [ be antacid ] ? -> what be know be antacid ? -> $x: ($x, be know be, antacid) -> (Baking soda, is known to be, a natural antacid) -> Baking soda (7961ms) What are antacids? Prilosec -11.592912399847169 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (Prilosec, may be taken with, antacids) -> Prilosec (7961ms) What are antacids? Second -11.612109581854769 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (Second, is the use of, antacids) -> Second (8045ms) What are antacids? the Obama 2012 reelection campaign -11.652339247577467 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (the Obama 2012 reelection campaign, be stocking up on, antacids) -> the Obama 2012 reelection campaign (8045ms) What are antacids? a good source of calcium -11.65327170802537 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are, a good source of calcium) -> a good source of calcium (8045ms) What are antacids? Sufferers -11.669837618086175 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (Sufferers, used to be on, antacids) -> Sufferers (8045ms) What are antacids? Alka-Seltzer -11.684735980412025 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Alka-Seltzer, Instance Of, antacid) -> Alka-Seltzer (10089ms) What are antacids? calcium carbonate -11.684828840075722 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be in, antacid) -> (calcium carbonate, is used in, antacids) -> calcium carbonate (9601ms) What are antacids? reduce stomach acid -11.684831911109598 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are used to, reduce stomach acid) -> reduce stomach acid (8045ms) What are antacids? only for occasional relief -11.741600062995278 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, should be used, only for occasional relief) -> only for occasional relief (8045ms) What are antacids? Alka Seltzer -11.746068693360359 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Alka Seltzer, Instance Of, antacid) -> Alka Seltzer (10089ms) What are antacids? PREVACID -11.7478704682398 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (PREVACID, was taking, antacids) -> PREVACID (8063ms) What are antacids? famous Maalox -11.750013018081468 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (famous Maalox, Instance Of, antacid) -> famous Maalox (10089ms) What are antacids? insufficient acid production -11.75311825676762 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, go, $x) -> (antacids, is really going on is, insufficient acid production) -> insufficient acid production (8063ms) What are antacids? just following eating in order -11.765572571991342 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, to be taken, just following eating in order) -> just following eating in order (8063ms) What are antacids? Maalox Anti-Gas -11.789797029393295 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Maalox Anti-Gas, Instance Of, antacid) -> Maalox Anti-Gas (10089ms) What are antacids? 2299.0 -11.827544572466453 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, run, $x) -> (Antacid, Running Time, 2299.0) -> 2299.0 (10370ms) What are antacids? Calcium carbonate -11.844566938135035 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be in, antacid) -> (Calcium carbonate, is the primary ingredient in, antacid tablets) -> Calcium carbonate (9601ms) What are antacids? Magnesium oxide -11.848123486790932 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be in, antacid) -> (Magnesium oxide, is used in, some antacids) -> Magnesium oxide (9601ms) What are antacids? Pepto Bismol -11.853632628300872 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Pepto Bismol, Instance Of, antacid) -> Pepto Bismol (10089ms) What are antacids? Sodium bicarbonate -11.88454932549379 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Sodium bicarbonate, Instance Of, antacid) -> Sodium bicarbonate (10089ms) What are antacids? Aluminium Hydroxide Mixture -11.919468703350827 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Aluminium Hydroxide Mixture, Instance Of, antacid) -> Aluminium Hydroxide Mixture (10089ms) What are antacids? sodium bicarbonate -11.923995533262312 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (sodium bicarbonate, Instance Of, antacid) -> sodium bicarbonate (10370ms) What are antacids? unwanted side effect -11.945411120948485 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (antacids, have, unwanted side effect) -> unwanted side effect (8063ms) What are antacids? DiGel -11.965350704539993 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (DiGel, Instance Of, antacid) -> DiGel (10370ms) What are antacids? Care Sodium Bicarbonate BP -11.980432564417226 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Care Sodium Bicarbonate BP, Instance Of, antacid) -> Care Sodium Bicarbonate BP (10370ms) What are antacids? Bananas -11.983894532313315 What are antacids? -> what [ be antacid ] ? -> what be know be antacid ? -> $x: ($x, be know be, antacid) -> (Bananas, are known to have, natural antacid properties) -> Bananas (8063ms) What are antacids? 9780947649043 -11.98763095152655 What are antacids? -> what be [ antacid ] ? -> what be the expansion of antacid ? -> $x: (antacid, expansion, $x) -> $x: ($x, edition, antacid) -> (9780947649043, Book Editions, Antacids, laxatives & antidiarrhoeal products) -> 9780947649043 (8599ms) What are antacids? 9780914768425 -11.98763095152655 What are antacids? -> what be [ antacid ] ? -> what be the expansion of antacid ? -> $x: (antacid, expansion, $x) -> $x: ($x, edition, antacid) -> (9780914768425, Book Editions, Antacids and other drugs in gastrointestinal diseases) -> 9780914768425 (8599ms) What are antacids? bone loss -11.990881112674106 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (Antacid abuse, has proven to cause, bone loss) -> bone loss (8063ms) What are antacids? Mylanta -11.9944720213268 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Mylanta, Instance Of, antacid) -> Mylanta (10370ms) What are antacids? Mag-Ox -11.996725391970472 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Mag-Ox, Instance Of, antacid) -> Mag-Ox (10370ms) What are antacids? jnj.canada.com -12.001911806948666 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, go, $x) -> (their antacid tablets, go to, jnj.canada.com) -> jnj.canada.com (8063ms) What are antacids? FLAVORED ANTACID -12.01656633641736 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (FLAVORED ANTACID, Instance Of, antacid) -> FLAVORED ANTACID (10370ms) What are antacids? a volcano -12.02179748640917 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (antacids, have created, a volcano) -> a volcano (8063ms) What are antacids? Pepsid Complete -12.021966210885404 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Pepsid Complete, Instance Of, antacid) -> Pepsid Complete (10390ms) What are antacids? Diovol Suspension -12.021966210885404 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Diovol Suspension, Instance Of, antacid) -> Diovol Suspension (10390ms) What are antacids? a purpose -12.027038089390789 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (these powerful antacids, have, a purpose) -> a purpose (8081ms) What are antacids? aluminium hydroxide -12.032917619195365 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (aluminium hydroxide, Instance Of, antacid) -> aluminium hydroxide (10390ms) What are antacids? Phillips Milk of Magnesia Suspension -12.037368171629979 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Phillips Milk of Magnesia Suspension, Instance Of, antacid) -> Phillips Milk of Magnesia Suspension (10390ms) What are antacids? PCC -12.054619471780192 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be in, antacid) -> (PCC, is often used in, calcium-based antacid tablets and liquids) -> PCC (9601ms) What are antacids? ANTACID E-X -12.063629452068584 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (ANTACID E-X, Instance Of, antacid) -> ANTACID E-X (10390ms) What are antacids? Gaviscon Suspension -12.065019964312496 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Gaviscon Suspension, Instance Of, antacid) -> Gaviscon Suspension (10390ms) What are antacids? Magaldrate Suspension -12.065019964312496 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Magaldrate Suspension, Instance Of, antacid) -> Magaldrate Suspension (10390ms) What are antacids? Mylanta Supreme -12.065019964312496 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Mylanta Supreme, Instance Of, antacid) -> Mylanta Supreme (10390ms) What are antacids? Di- Gel -12.065469654076635 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Di- Gel, Instance Of, antacid) -> Di- Gel (10446ms) What are antacids? Tum's -12.065469654076635 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Tum's, Instance Of, antacid) -> Tum's (10446ms) What are antacids? De witt's antacid -12.065469654076635 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (De witt's antacid, Instance Of, antacid) -> De witt's antacid (10446ms) What are antacids? aluminum hydroxide/magnesium hydroxide -12.065469654076635 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (aluminum hydroxide/magnesium hydroxide, Instance Of, antacid) -> aluminum hydroxide/magnesium hydroxide (10446ms) What are antacids? AlkaSeltzer -12.065469654076635 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (AlkaSeltzer, Instance Of, antacid) -> AlkaSeltzer (10446ms) What are antacids? potential side effects and dangers -12.095999575971268 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (antacid, has its own set of, potential side effects and dangers) -> potential side effects and dangers (8081ms) What are antacids? Maalox Rs -12.10440182062489 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Maalox Rs, Instance Of, antacid) -> Maalox Rs (10514ms) What are antacids? TITRALAC EXTRA STRENGTH -12.10440182062489 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (TITRALAC EXTRA STRENGTH, Instance Of, antacid) -> TITRALAC EXTRA STRENGTH (10446ms) What are antacids? ranitin from Brovel -12.10440182062489 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (ranitin from Brovel, Instance Of, antacid) -> ranitin from Brovel (10514ms) What are antacids? ANTACID EXTRA STRENGTH -12.10440182062489 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (ANTACID EXTRA STRENGTH, Instance Of, antacid) -> ANTACID EXTRA STRENGTH (10446ms) What are antacids? little baking soda in water -12.10440182062489 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (little baking soda in water, Instance Of, antacid) -> little baking soda in water (10514ms) What are antacids? Alka Seltzer Plus -12.106242022632943 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Alka Seltzer Plus, Instance Of, antacid) -> Alka Seltzer Plus (10514ms) What are antacids? a good safety record -12.110668157245508 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (most antacids, have, a good safety record) -> a good safety record (8081ms) What are antacids? a meal -12.130553784003718 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (antacids, have, a meal) -> a meal (8081ms) What are antacids? calcium carbonate and magnesium -12.13976988146398 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be in, antacid) -> (calcium carbonate and magnesium, is commonly found in, antacids) -> calcium carbonate and magnesium (9601ms) What are antacids? few side effects -12.145151848506634 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (non-absorbable antacids, usually have, few side effects) -> few side effects (8081ms) What are antacids? Aluminum -12.145218860043908 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be in, antacid) -> (Aluminum, is contained in, antacids) -> Aluminum (10514ms) What are antacids? Text from Wikipedia Bromo-Seltzer -12.149295776060033 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Text from Wikipedia Bromo-Seltzer, Instance Of, antacid) -> Text from Wikipedia Bromo-Seltzer (10514ms) What are antacids? AciGon? Tablets -12.149295776060033 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (AciGon? Tablets, Instance Of, antacid) -> AciGon? Tablets (10514ms) What are antacids? UlcerGard -12.149295776060033 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (UlcerGard, Instance Of, antacid) -> UlcerGard (10538ms) What are antacids? Ami-Lac -12.149295776060033 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Ami-Lac, Instance Of, antacid) -> Ami-Lac (10538ms) What are antacids? Tab Pan-D -12.149295776060033 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Tab Pan-D, Instance Of, antacid) -> Tab Pan-D (10538ms) What are antacids? Liebling TUMS -12.149295776060033 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Liebling TUMS, Instance Of, antacid) -> Liebling TUMS (10538ms) What are antacids? magnesium aluminum hydroxide -12.150231916293798 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (magnesium aluminum hydroxide, Instance Of, antacid) -> magnesium aluminum hydroxide (10538ms) What are antacids? suitable for you -12.150826532924054 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacid, is, suitable for you) -> suitable for you (8081ms) What are antacids? Os-Cal -12.151135978068083 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Os-Cal, Instance Of, antacid) -> Os-Cal (10538ms) What are antacids? less HCL -12.152100228743318 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (antacids, will have even, less HCL) -> less HCL (8081ms) What are antacids? non-prescription Maalox -12.159352675140935 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (non-prescription Maalox, Instance Of, antacid) -> non-prescription Maalox (10564ms) What are antacids? popular Alka-Seltzer -12.159352675140935 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (popular Alka-Seltzer, Instance Of, antacid) -> popular Alka-Seltzer (10538ms) What are antacids? Tums for heartburn -12.159352675140935 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Tums for heartburn, Instance Of, antacid) -> Tums for heartburn (10538ms) What are antacids? stomach gas source antacid -12.159352675140935 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (stomach gas source antacid, Instance Of, antacid) -> stomach gas source antacid (10564ms) What are antacids? non-prescription low sodium antacid -12.159352675140935 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (non-prescription low sodium antacid, Instance Of, antacid) -> non-prescription low sodium antacid (10564ms) What are antacids? higher risk -12.160880883200326 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (regular antacid takers, have been shown to be at, higher risk) -> higher risk (8098ms) What are antacids? PPIs -12.163540210100189 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (PPIs, Instance Of, antacid) -> PPIs (10566ms) What are antacids? an antacid -12.16998751671483 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (Antacids Your doctor, has prescribed, an antacid) -> an antacid (8098ms) What are antacids? bed -12.193782732994485 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, go, $x) -> (antacids, tried to go to, bed) -> bed (8098ms) What are antacids? a king?s ransom -12.199087904103358 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, go, $x) -> (antacid tablets, go for, a king?s ransom) -> a king?s ransom (8098ms) What are antacids? Zantac -12.22538836128222 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Zantac, Instance Of, antacid) -> Zantac (10564ms) What are antacids? diarrhea -12.241966003589129 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (diarrhea, are, antacids) -> diarrhea (8098ms) What are antacids? Gelusil -12.245533994732916 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Gelusil, Instance Of, antacid) -> Gelusil (10564ms) What are antacids? n?t work -12.260981742714543 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, do, $x) -> (over-the-counter antacids, did, n?t work) -> n?t work (8098ms) What are antacids? temporary relief -12.267213081160602 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (antacids, have long been the choices for, temporary relief) -> temporary relief (8098ms) What are antacids? Mg 2 -12.273923360380302 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Mg 2, Instance Of, antacid) -> Mg 2 (10587ms) What are antacids? widely available -12.279409702727156 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are, widely available) -> widely available (8098ms) What are antacids? ranitidine therapy -12.281961442816236 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be on, $x) -> (antacids, are necessary while on, ranitidine therapy) -> ranitidine therapy (10586ms) What are antacids? serious side effects -12.287228914231925 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (Antacids, can have, serious side effects) -> serious side effects (8116ms) What are antacids? GERD -12.30820410948616 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (an antacid and herbal remedies, have improved, GERD) -> GERD (8116ms) What are antacids? a potential increase -12.318195277665371 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (antacids, has been associated with, a potential increase) -> a potential increase (8116ms) What are antacids? meals and at bedtime -12.323735375547441 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are taken after, meals and at bedtime) -> meals and at bedtime (8116ms) What are antacids? multiple drug interactions -12.332323000413094 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (Interactions Antacids, have, multiple drug interactions) -> multiple drug interactions (8116ms) What are antacids? Aluminum carbonate -12.352506283174225 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Aluminum carbonate, Instance Of, antacid) -> Aluminum carbonate (10618ms) What are antacids? Dad -12.3532296377129 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (Dad, was popping, antacids) -> Dad (8116ms) What are antacids? side effects -12.362589477028058 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (Antacids, can have, side effects) -> side effects (8116ms) What are antacids? magnesium bicarbonate -12.363291989550149 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (magnesium bicarbonate, Instance Of, antacid) -> magnesium bicarbonate (10618ms) What are antacids? the biggest villains -12.369728982716923 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (the biggest villains, is, antacids) -> the biggest villains (8133ms) What are antacids? clarithromycin antacid -12.372526983420858 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (clarithromycin antacid, Instance Of, antacid) -> clarithromycin antacid (10618ms) What are antacids? calcium stearate -12.372526983420858 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (calcium stearate, Instance Of, antacid) -> calcium stearate (10618ms) What are antacids? the mounting reports -12.37390841286767 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacid, are, the mounting reports) -> the mounting reports (8133ms) What are antacids? carbonate calcium -12.377744615095342 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (carbonate calcium, Instance Of, antacid) -> carbonate calcium (10618ms) What are antacids? sodium hydroxide -12.396377290091879 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (sodium hydroxide, Instance Of, antacid) -> sodium hydroxide (10618ms) What are antacids? the advertising industry -12.39962850304074 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (the advertising industry, is forcing, antacids) -> the advertising industry (8133ms) What are antacids? Nat phos D6 -12.40269828216371 What are antacids? -> what [ be antacid ] ? -> what be know be antacid ? -> $x: ($x, be know be, antacid) -> (Nat phos D6, is known as, the ?biochemic antacid?) -> Nat phos D6 (8133ms) What are antacids? symptoms -12.416248450329888 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (symptoms, have been using, antacids) -> symptoms (8133ms) What are antacids? side goods -12.423627173919282 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (antacids, have neglected, side goods) -> side goods (8133ms) What are antacids? aluminum hydroxide -12.428747951754055 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be in, antacid) -> (aluminum hydroxide, is used in, antacids) -> aluminum hydroxide (10639ms) What are antacids? Caltrate 600 -12.431765834418767 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Caltrate 600, Instance Of, antacid) -> Caltrate 600 (10639ms) What are antacids? magnesium aluminometasilicate -12.437149658648185 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (magnesium aluminometasilicate, Instance Of, antacid) -> magnesium aluminometasilicate (10639ms) What are antacids? neutralize the acids -12.44440870789909 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are used to, neutralize the acids) -> neutralize the acids (8150ms) What are antacids? the relative efficiency -12.45928334872923 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacid, is, the relative efficiency) -> the relative efficiency (8150ms) What are antacids? the fastest working -12.460495218796073 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are, the fastest working) -> the fastest working (8150ms) What are antacids? The correct answer -12.461051774233717 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (The correct answer, is, Antacids) -> The correct answer (8150ms) What are antacids? magnesium trisilicate -12.46960544650155 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (unsure which antacids, have, magnesium trisilicate) -> magnesium trisilicate (8150ms) What are antacids? previous studies -12.481984214223786 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, go, $x) -> (antacid, alone goes against, previous studies) -> previous studies (8150ms) What are antacids? the counter medications -12.488854120674484 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (the counter medications, are, antacids) -> the counter medications (8150ms) What are antacids? phentermine work -12.496066786620961 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, do, $x) -> (information nexium and antacids, does, phentermine work) -> phentermine work (8150ms) What are antacids? Mg2 in low concentrations -12.496959281405626 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Mg2 in low concentrations, Instance Of, antacid) -> Mg2 in low concentrations (10639ms) What are antacids? gastric juices -12.500979758639128 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (the affect antacids, have on, gastric juices) -> gastric juices (8167ms) What are antacids? the short term -12.507166740921042 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, can be helpful in, the short term) -> the short term (8167ms) What are antacids? bowel changes -12.511982352649879 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (Antacids, can also have, bowel changes) -> bowel changes (8167ms) What are antacids? aluminum carbonate -12.516521591594785 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (aluminum carbonate, Instance Of, antacid) -> aluminum carbonate (10639ms) What are antacids? magnesium carbonate -12.516521591594785 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (magnesium carbonate, Instance Of, antacid) -> magnesium carbonate (10639ms) What are antacids? magnesium salt -12.516521591594785 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (magnesium salt, Instance Of, antacid) -> magnesium salt (10639ms) What are antacids? Rolaids -12.533837530279756 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Rolaids, Instance Of, antacid) -> Rolaids (10668ms) What are antacids? Rulide d 50mg -12.541853236840769 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Rulide d 50mg, Instance Of, antacid) -> Rulide d 50mg (10668ms) What are antacids? Myogesic orphenadrine citrate 35 mg -12.541853236840769 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Myogesic orphenadrine citrate 35 mg, Instance Of, antacid) -> Myogesic orphenadrine citrate 35 mg (10668ms) What are antacids? Gastrogel -12.546468305688556 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Gastrogel, Instance Of, antacid) -> Gastrogel (10668ms) What are antacids? stomach acid -12.578083175633651 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, reduce, $x) -> (antacids, are used to reduce, stomach acid) -> stomach acid (9348ms) What are antacids? tetracycline -12.58156252402795 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are, tetracycline) -> tetracycline (8167ms) What are antacids? Zantac. -12.58162286348458 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, decrease, $x) -> (antacids, can decrease the effectiveness of, Zantac.) -> Zantac. (10668ms) What are antacids? excess sodium -12.596412506563214 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (antacids, have, excess sodium) -> excess sodium (8167ms) What are antacids? patients -12.605629945237082 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (patients, are taking, antacids) -> patients (8167ms) What are antacids? the first drugs -12.606103389531249 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are usually, the first drugs) -> the first drugs (8381ms) What are antacids? anti-ulcer drugs -12.63043811376368 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, include, $x) -> (antacids, include, anti-ulcer drugs) -> anti-ulcer drugs (9499ms) What are antacids? Algicon -12.632134629680005 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Algicon, Instance Of, antacid) -> Algicon (10668ms) What are antacids? the most common medications -12.637542269796082 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are, the most common medications) -> the most common medications (8381ms) What are antacids? a rapid onset -12.648419092417496 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (Antacids, have, a rapid onset) -> a rapid onset (8381ms) What are antacids? carbonate -12.652820087886191 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, is calcium, carbonate) -> carbonate (8381ms) What are antacids? a beneficial effect -12.65290464525253 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (Antacids, have, a beneficial effect) -> a beneficial effect (8381ms) What are antacids? The pain -12.655389331338007 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (The pain, may be relieved by, antacids) -> The pain (8381ms) What are antacids? Gavison -12.70707641793381 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Gavison, Instance Of, antacid) -> Gavison (10745ms) What are antacids? Gastrocaine -12.710453847600242 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Gastrocaine, Instance Of, antacid) -> Gastrocaine (10745ms) What are antacids? a continuous schedule -12.71804148430574 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be on, $x) -> (antacids, are used on, a continuous schedule) -> a continuous schedule (10745ms) What are antacids? the most popular drugs -12.722186730204482 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are among, the most popular drugs) -> the most popular drugs (8381ms) What are antacids? cooking -12.727654433502053 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (cooking, is often included in, antacids) -> cooking (8381ms) What are antacids? Wingel -12.730926724604831 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Wingel, Instance Of, antacid) -> Wingel (10745ms) What are antacids? the tablet form -12.733745826950583 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, is better than, the tablet form) -> the tablet form (8599ms) What are antacids? Digene -12.739143421677682 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Digene, Instance Of, antacid) -> Digene (10815ms) What are antacids? the jaundice -12.743107518821208 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (the jaundice, were, antacids) -> the jaundice (8599ms) What are antacids? the hottest and also popular acid -12.748365204436185 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, will be, the hottest and also popular acid) -> the hottest and also popular acid (8599ms) What are antacids? Maalux -12.757188005043435 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Maalux, Instance Of, antacid) -> Maalux (10815ms) What are antacids? drug -12.76776204334531 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacid, is a, drug) -> drug (8599ms) What are antacids? minerals -12.77090177855353 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (minerals, are used as, antacids) -> minerals (8599ms) What are antacids? ketoconazole -12.792122515691323 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (ketoconazole, is taken with, antacids) -> ketoconazole (8697ms) What are antacids? the empty stomach -12.792987106358478 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are removed from, the empty stomach) -> the empty stomach (8697ms) What are antacids? mouth -12.795534097621326 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are taken by, mouth) -> mouth (8697ms) What are antacids? Kremil -12.79612017159169 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Kremil, Instance Of, antacid) -> Kremil (10815ms) What are antacids? a prescription -12.79612180704101 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, sell, $x) -> (an antacid, is sold without, a prescription) -> a prescription (9398ms) What are antacids? Deflatine -12.797960373599743 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Deflatine, Instance Of, antacid) -> Deflatine (10815ms) What are antacids? stomach gas -12.831000694726947 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, reduce, $x) -> (Antacids, can reduce, stomach gas) -> stomach gas (9348ms) What are antacids? the most common OTC drugs -12.834544394232967 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (the most common OTC drugs, are, antacids) -> the most common OTC drugs (9348ms) What are antacids? Finally -12.83954874703954 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, may be needed, Finally) -> Finally (9348ms) What are antacids? Carbellon -12.841014127026833 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Carbellon, Instance Of, antacid) -> Carbellon (10815ms) What are antacids? Mintox -12.841014127026833 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Mintox, Instance Of, antacid) -> Mintox (10815ms) What are antacids? Quickease -12.842854329034886 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Quickease, Instance Of, antacid) -> Quickease (10841ms) What are antacids? Almagel -12.842854329034886 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Almagel, Instance Of, antacid) -> Almagel (10841ms) What are antacids? Remegel -12.842854329034886 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Remegel, Instance Of, antacid) -> Remegel (10815ms) What are antacids? Xantac -12.842854329034886 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Xantac, Instance Of, antacid) -> Xantac (10815ms) What are antacids? Mgtrisilicate -12.844708157341046 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be in, antacid) -> (Mgtrisilicate, is found in, some antacids) -> Mgtrisilicate (10841ms) What are antacids? pregnancy -12.844825334031318 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, can be utilised in, pregnancy) -> pregnancy (9348ms) What are antacids? relief -12.847477945936904 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, is often marketed as, relief) -> relief (9348ms) What are antacids? the production -12.850483210178194 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are known to reduce, the production) -> the production (9397ms) What are antacids? Aciphex -12.851071026107736 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Aciphex, Instance Of, antacid) -> Aciphex (10841ms) What are antacids? the most popular and popular forms -12.86540696871094 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are 1 with, the most popular and popular forms) -> the most popular and popular forms (9398ms) What are antacids? Prelief -12.868899468274707 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be in, antacid) -> (Prelief, is available in, the antacid section) -> Prelief (10841ms) What are antacids? the foods -12.87173498357904 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (the foods, are taking, antacids) -> the foods (9397ms) What are antacids? three basic ingredients -12.876630689054629 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, make, $x) -> (Antacids, are made with, three basic ingredients) -> three basic ingredients (9398ms) What are antacids? former top-level athletes -12.877034694862887 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, reduce, $x) -> (antacids, is reduced among, former top-level athletes) -> former top-level athletes (9398ms) What are antacids? belly acid reflux -12.878911184358953 What are antacids? -> what be [ antacid ] ? -> what be the definition of antacid ? -> $x: ($x, be the definition of, antacid) -> $x: ($x, will, antacid) -> (belly acid reflux, will likely be given together with, antacids) -> belly acid reflux (10841ms) What are antacids? fecal los -12.90294837282053 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, make, $x) -> (Antacids, make, fecal los) -> fecal los (9398ms) What are antacids? the other side -12.903839943592434 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (the other side, can be used for, antacids) -> the other side (9499ms) What are antacids? sodium -12.906654657217542 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, can be high in, sodium) -> sodium (9499ms) What are antacids? inflammation -12.919097993067036 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, can be used for, inflammation) -> inflammation (9499ms) What are antacids? The medical ?acid cure reflux ? -12.930837605628804 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (The medical ?acid cure reflux ?, is usually, antacids) -> The medical ?acid cure reflux ? (9499ms) What are antacids? the number 2 selling drug -12.954376713331488 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are, the number 2 selling drug) -> the number 2 selling drug (9499ms) What are antacids? the past -12.95481857576726 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are a thing of, the past) -> the past (10841ms) What are antacids? the user -12.955384747575776 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (the user, is also taking, antacid) -> the user (10841ms) What are antacids? Riopan Plus -12.966591082976203 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (Riopan Plus, Instance Of, antacid) -> Riopan Plus (10860ms) What are antacids? aluminum or magnesium in it -12.9674954735903 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (an antacid, has, aluminum or magnesium in it) -> aluminum or magnesium in it (10860ms) What are antacids? the administration -12.98894518262551 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, were used concomitantly with, the administration) -> the administration (10860ms) What are antacids? the stomach -12.991572296214134 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, are emptied from, the stomach) -> the stomach (10860ms) What are antacids? lots of calcium -13.014337958403907 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (the antacids, have, lots of calcium) -> lots of calcium (10860ms) What are antacids? aluminum or magnesium -13.022812118503538 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, have, $x) -> (an antacid, has, aluminum or magnesium) -> aluminum or magnesium (10880ms) What are antacids? CHOOZ -13.03007156455227 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, instance of, antacid) -> (CHOOZ, Instance Of, antacid) -> CHOOZ (10880ms) What are antacids? natural health -13.037512203109491 What are antacids? -> what be [ antacid ] ? -> what be the definition of antacid ? -> $x: ($x, be the definition of, antacid) -> $x: ($x, will, antacid) -> (natural health, will cure, your problem and antacids) -> natural health (10880ms) What are antacids? the counter -13.040259939406685 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are available over, the counter) -> the counter (10880ms) What are antacids? folic acid absorption -13.047297388365202 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, reduce, $x) -> (antacids, may reduce, folic acid absorption) -> folic acid absorption (10880ms) What are antacids? ulcers -13.055409053227356 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (ulcers, is, antacids) -> ulcers (10880ms) What are antacids? effective -13.056293239628452 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (effective, are, antacids) -> effective (10880ms) What are antacids? pain and help ulcers heal -13.069681154037966 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, reduce, $x) -> (Antacids, can reduce, pain and help ulcers heal) -> pain and help ulcers heal (10939ms) What are antacids? value -13.071091324941191 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are of, value) -> value (10939ms) What are antacids? drugs -13.091661169992971 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (Antacids, are, drugs) -> drugs (10939ms) What are antacids? the symptoms -13.094521819018546 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (the symptoms, have been treated with, antacids) -> the symptoms (10939ms) What are antacids? Sprycel drug levels -13.113602087997748 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, decrease, $x) -> (Antacids, may decrease, Sprycel drug levels) -> Sprycel drug levels (10939ms) What are antacids? counteract the acid -13.116280836435628 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, be, $x) -> (antacids, may be needed to, counteract the acid) -> counteract the acid (10939ms) What are antacids? absorption -13.116604213950046 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: ($x, be, antacid) -> (absorption, is affected by, antacids) -> absorption (10939ms) What are antacids? stomach acidity -13.121685993990617 What are antacids? -> what be [ antacid ] ? -> what be the mening of antacid ? -> $x: (antacid, mening, $x) -> $x: (antacid, reduce, $x) -> (An antacid, is given to reduce, stomach acidity) -> stomach acidity (10939ms) In what state is Dulles located? Iran -10.31039751250819 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> where be dulle state ? -> $x: (dulle state, be in, $x) -> (State Dulles, was destroying democracy in, Iran) -> Iran (2818ms) In what state is Dulles located? Washington DC -10.503591815771886 In what state is Dulles located? -> in what state be [ dulle locate ] ? -> which state be dulle locate locate ? -> $x: ($x, instance of, state) (dulle, locate locate, $x) -> (Washington DC, Instance Of, state) (Dulles, is located in, Washington) -> Washington DC (3824ms) In what state is Dulles located? Washington D.C. -10.55767041813808 In what state is Dulles located? -> in what state be [ dulle locate ] ? -> which state be dulle locate locate ? -> $x: ($x, instance of, state) (dulle, locate locate, $x) -> (Washington D.C., Instance Of, state) (Dulles, is located in, Washington) -> Washington D.C. (3824ms) In what state is Dulles located? DC -10.698224602749136 In what state is Dulles located? -> in what state be [ dulle locate ] ? -> which state be dulle locate locate ? -> $x: ($x, instance of, state) (dulle, locate locate, $x) -> (DC, Instance Of, state) (dulles international airport, is a building located in the city, dc) -> DC (3824ms) In what state is Dulles located? Northern Virginia -10.728117788211485 In what state is Dulles located? -> in what state be [ dulle locate ] ? -> which state be dulle locate locate ? -> $x: ($x, instance of, state) (dulle, locate locate, $x) -> (Northern Virginia, Instance Of, state) (Dulles International airports, are located in, Northern Virginia) -> Northern Virginia (3823ms) In what state is Dulles located? Washington D.C -10.777745026847132 In what state is Dulles located? -> in what state be [ dulle locate ] ? -> which state be dulle locate locate ? -> $x: ($x, instance of, state) (dulle, locate locate, $x) -> (Washington D.C, Instance Of, state) (Dulles, is located in, Washington) -> Washington D.C (4282ms) In what state is Dulles located? Mark D. Lerner -10.83084685034004 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> which state be dulle ? -> $x: (dulle, state, $x) -> (Dulles Town Center, stated, Mark D. Lerner) -> Mark D. Lerner (4733ms) In what state is Dulles located? Washington, DC -10.958610884017679 In what state is Dulles located? -> in what state be [ dulle locate ] ? -> which state be dulle locate locate ? -> $x: ($x, instance of, state) (dulle, locate locate, $x) -> (Washington, DC, Instance Of, state) (Dulles, is located in, Washington) -> Washington, DC (4468ms) In what state is Dulles located? Washington -10.962489033395567 In what state is Dulles located? -> in what state be [ dulle locate ] ? -> which state be dulle locate locate ? -> $x: ($x, instance of, state) (dulle, locate locate, $x) -> (Washington, Instance Of, state) (Dulles, is located in, Washington) -> Washington (4468ms) In what state is Dulles located? turn -11.122365538831962 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> which state be dulle ? -> $x: (dulle, state, $x) -> (Secretary Dulles, stated in, turn) -> turn (4733ms) In what state is Dulles located? Dwight D. Eisenhower -11.160863687179074 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, subject, $x) -> (dwight david eisenhower sec. of state was john foster dulles, Subject, Dwight D. Eisenhower) -> Dwight D. Eisenhower (12428ms) In what state is Dulles located? touch -11.269182418545917 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> where be dulle state ? -> $x: (dulle state, be in, $x) -> (State John Foster Dulles ], were in, touch) -> touch (2818ms) In what state is Dulles located? United States of America -11.405907422805868 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, subject, $x) -> (The papers of John Foster Dulles, Subjects, United States of America) -> United States of America (12428ms) In what state is Dulles located? Eastern Time Zone -11.405907422805868 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, location, dulle) -> (Eastern Time Zone, Locations in this time zone, Washington Dulles Airport Marriott) -> Eastern Time Zone (12614ms) In what state is Dulles located? john foster dulles sec. of state under dwight david eisenhower -11.446748045410333 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, subject, dulle) -> (john foster dulles sec. of state under dwight david eisenhower, Subject, John Foster Dulles) -> john foster dulles sec. of state under dwight david eisenhower (12340ms) In what state is Dulles located? John Foster Dulles -11.446748045410333 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, subject, $x) -> (john foster dulles sec. of state under dwight david eisenhower, Subject, John Foster Dulles) -> John Foster Dulles (12428ms) In what state is Dulles located? Mao Zedong -11.488358330399828 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, subject, $x) -> (mao zedong opposed by john foster dulles, Subject, Mao Zedong) -> Mao Zedong (12428ms) In what state is Dulles located? Joseph Stalin -11.495654937477537 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, subject, $x) -> (stalin studied by john foster dulles, Subject, Joseph Stalin) -> Joseph Stalin (12429ms) In what state is Dulles located? Walter Capps -11.541854853845326 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, place of death, dulle) -> (Walter Capps, Place of death, Dulles) -> Walter Capps (12298ms) In what state is Dulles located? Virginia -11.633667030256328 In what state is Dulles located? -> in what state be [ dulle locate ] ? -> which us state have dulle locate ? -> $x: ($x, instance of, us state) (dulle, locate, $x) -> (Virginia, Instance Of, U.S. state) (Dulles International Airport, is located in, Virginia) -> Virginia (4638ms) In what state is Dulles located? john foster dulles opposed mao zedong -11.661161314083778 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, subject, dulle) -> (john foster dulles opposed mao zedong, Subject, John Foster Dulles) -> john foster dulles opposed mao zedong (12339ms) In what state is Dulles located? Gamal Abdel Nasser -11.688650194682937 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, subject, $x) -> (gamal abdel nasser antagonized john foster dulles, Subject, Gamal Abdel Nasser) -> Gamal Abdel Nasser (12428ms) In what state is Dulles located? john foster dulles studied work of stalin -11.688650194682937 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, subject, dulle) -> (john foster dulles studied work of stalin, Subject, John Foster Dulles) -> john foster dulles studied work of stalin (12340ms) In what state is Dulles located? john foster dulles negotiated with gamal abdel nasser -11.712212092339358 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, subject, dulle) -> (john foster dulles negotiated with gamal abdel nasser, Subject, John Foster Dulles) -> john foster dulles negotiated with gamal abdel nasser (12340ms) In what state is Dulles located? Nikita Sergeevich Khrushchev -11.712212092339358 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, subject, $x) -> (nikita sergeyevich khrushchev met john foster dulles, Subject, Nikita Sergeevich Khrushchev) -> Nikita Sergeevich Khrushchev (12511ms) In what state is Dulles located? V-1 and V-2 Intelligence -11.748374001102423 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, entity involve, dulle) -> (V-1 and V-2 Intelligence, entity involved, Allen Dulles) -> V-1 and V-2 Intelligence (12299ms) In what state is Dulles located? the nation -11.926185287600978 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> where be dulle state ? -> $x: (dulle state, be in, $x) -> (State John Foster Dulles, was the dominant figure in, the nation) -> the nation (2818ms) In what state is Dulles located? a Wish Foundation -12.41935543575469 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, be hold in, dulle) -> (a Wish Foundation, will be held in, Dulles) -> a Wish Foundation (12720ms) In what state is Dulles located? Arc Second -12.451978091007181 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, be hold in, dulle) -> (Arc Second, is a privately held company located in, Dulles) -> Arc Second (12720ms) In what state is Dulles located? May 21-22 , 2005 event -12.617850779454125 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, be hold in, dulle) -> (May 21-22 , 2005 event, will be held in, Dulles) -> May 21-22 , 2005 event (12720ms) In what state is Dulles located? Spring 2011 New member initiation -12.66338673788821 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, be hold in, dulle) -> (Spring 2011 New member initiation, will be held in, Dulles 168) -> Spring 2011 New member initiation (12720ms) In what state is Dulles located? August 8 , 2010 Brickfair -12.722387311682326 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, be hold in, dulle) -> (August 8 , 2010 Brickfair, was held in, the Dulles Expo Center) -> August 8 , 2010 Brickfair (12721ms) In what state is Dulles located? Sterling -12.76527241522042 In what state is Dulles located? -> in what state be [ dulle locate ] ? -> which state be dulle locate locate ? -> $x: ($x, instance of, state) (dulle, locate locate, $x) -> (Sterling, Instance Of, state insurance company) (The SpringHill Suites Dulles Airport, is located in, Sterling) -> Sterling (5826ms) In what state is Dulles located? LLC -12.787357185543724 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, take place in, dulle) -> (LLC, will take place in, Dulles) -> LLC (12614ms) In what state is Dulles located? Statesmen -12.879821300118909 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, subject, $x) -> (The papers of John Foster Dulles, Subjects, Statesmen) -> Statesmen (12511ms) In what state is Dulles located? ?Virginia -12.953119831144555 In what state is Dulles located? -> in what state be [ dulle locate ] ? -> which state be dulle locate locate ? -> $x: ($x, instance of, state) (dulle, locate locate, $x) -> $x: ($x, modelling, state) (dulle, locate locate, $x) -> (?Virginia, has become a model for, other states) (Dulles International Airport, is located in, Virginia) -> ?Virginia (5827ms) In what state is Dulles located? dc -12.959383670508004 In what state is Dulles located? -> in what state be [ dulle locate ] ? -> which state be dulle locate locate ? -> $x: ($x, instance of, state) (dulle, locate locate, $x) -> $x: (state, be a state or province located in the geopolitical location, $x) (dulle, locate locate, $x) -> (STATES, is a state or province located in the geopolitical location, dc) (dulles international, is a building located in the city, dc) -> dc (7921ms) In what state is Dulles located? event -13.014919259725708 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, be hold in, dulle) -> (event, will be held in, Dulles) -> event (12720ms) In what state is Dulles located? diplomat -13.06141587209984 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, discipline, $x) -> (John Foster Dulles, Disciplines, diplomat) -> diplomat (12534ms) In what state is Dulles located? politician -13.06141587209984 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, discipline, $x) -> (John Foster Dulles, Disciplines, politician) -> politician (12534ms) In what state is Dulles located? NewHomeSource -13.094074024646956 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, start in, dulle) -> (NewHomeSource, get started in, your Dulles) -> NewHomeSource (12994ms) In what state is Dulles located? the Vatican -13.176806820348586 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, part of, dulle) -> (the Vatican, agreed to become part of, Dulles) -> the Vatican (12339ms) In what state is Dulles located? the members -13.513556370946608 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, be hold in, dulle) -> (the members, are held in, Dulles Hall) -> the members (12941ms) In what state is Dulles located? an organizer -13.519073915935165 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> which state be dulle ? -> $x: (dulle, state, $x) -> $x: (dulle, have be mention, $x) -> (John Foster Dulles, has been mentioned as, an organizer) -> an organizer (14106ms) In what state is Dulles located? military satellites -13.624666077887843 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, launch, $x) -> (Dulles, has been launching, military satellites) -> military satellites (12994ms) In what state is Dulles located? Die Harder -13.652449608582161 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, set, dulle) -> (Die Harder, is set primarily at, Dulles Airport) -> Die Harder (12941ms) In what state is Dulles located? NetZero -13.665217297163087 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, lose, $x) -> (The Dulles-based firm, is rapidly losing customers to, NetZero) -> NetZero (12511ms) In what state is Dulles located? Teyon Ware -13.669477836344795 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, host, $x) -> (2010 Dulles Mat Club, will be hosting, Teyon Ware) -> Teyon Ware (12299ms) In what state is Dulles located? Travis Friday -13.674181870403014 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, host, $x) -> (Dulles, will host, Travis Friday) -> Travis Friday (12299ms) In what state is Dulles located? 59 degrees -13.674754905788475 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, set, dulle) -> (59 degrees, was set at, Washington Dulles DC) -> 59 degrees (12942ms) In what state is Dulles located? SIPNOC US 2012 -13.675169088012918 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, will be hold at, dulle) -> (SIPNOC US 2012, will be held at, the Hyatt Dulles Hotel) -> SIPNOC US 2012 (12298ms) In what state is Dulles located? drug companies -13.678289490032036 In what state is Dulles located? -> in what state be [ dulle locate ] ? -> which state be dulle locate locate ? -> $x: ($x, instance of, state) (dulle, locate locate, $x) -> $x: ($x, modelling, state) (dulle, locate locate, $x) -> (drug companies, were modeled by, other states) (Hilton Dulles-North/Loudoun VA hotel, is located near, companies) -> drug companies (5996ms) In what state is Dulles located? the Silver Line -13.691450806573403 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> which state be dulle ? -> $x: (dulle, state, $x) -> $x: (dulle, have be discuss, $x) -> (the Dulles Toll Road, has been discussed for, the Silver Line) -> the Silver Line (13376ms) In what state is Dulles located? A record -13.819534319016018 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, set, dulle) -> (A record, was set at, Dulles Airport) -> A record (12994ms) In what state is Dulles located? 55 degrees -13.837710145939743 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, set, dulle) -> (55 degrees, was set at, Washington Dulles DC) -> 55 degrees (12994ms) In what state is Dulles located? Sterling CO -13.890076165678229 In what state is Dulles located? -> in what state be [ dulle locate ] ? -> what state be dulle locate locate in ? -> $x: ($x, instance of, state) (dulle, locate locate in, $x) -> (Sterling CO, Instance Of, comely and resplendent state) (The SpringHill Suites Dulles Airport, is located in, Sterling) -> Sterling CO (13327ms) In what state is Dulles located? the AIGA event -13.914212285359731 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, host, $x) -> (the Dulles design studio, is hosting a booth at, the AIGA event) -> the AIGA event (12299ms) In what state is Dulles located? New records -13.93948579799417 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, set, dulle) -> (New records, were also set at, Dulles International Airport) -> New records (12994ms) In what state is Dulles located? A ceremony -13.967285573984872 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, hold at, dulle) -> (A ceremony, was held at, Dulles International Airport) -> A ceremony (12614ms) In what state is Dulles located? seven seniors -13.974014090138354 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, lose, $x) -> (Dulles, Lost, seven seniors) -> seven seniors (12511ms) In what state is Dulles located? three games -14.0490070623997 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, lose, $x) -> (Dulles, lost just, three games) -> three games (12511ms) In what state is Dulles located? independent website -14.053422443613812 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, launch, $x) -> (inn suites dulles airport hotel, launches, independent website) -> independent website (12994ms) In what state is Dulles located? last year -14.243213492768188 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, lose, $x) -> (every Dulles team, loses a lot from, last year) -> last year (12511ms) In what state is Dulles located? any other weapon -14.259289118105183 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, part of, dulle) -> (any other weapon, had become part of, Dulles) -> any other weapon (12339ms) In what state is Dulles located? The MARKETPLACE -14.276010137286097 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, hold at, dulle) -> (The MARKETPLACE, held at, the Dulles Town Center) -> The MARKETPLACE (12614ms) In what state is Dulles located? Open AIM -14.276114510410492 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, launch, $x) -> (The Dulles , Va. , company, has launched, Open AIM) -> Open AIM (13376ms) In what state is Dulles located? the Titanic. -14.296515629274444 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, lose, $x) -> (W. C. Dulles, lost his life on, the Titanic.) -> the Titanic. (12511ms) In what state is Dulles located? An Agency Scoping meeting -14.319103132527218 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, hold at, dulle) -> (An Agency Scoping meeting, held at, the Dulles Marriott) -> An Agency Scoping meeting (12614ms) In what state is Dulles located? humor -14.323340361443588 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, sense, $x) -> (Dulles, had a good sense of, humor) -> humor (13376ms) In what state is Dulles located? five different models -14.350594469889527 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> which state be dulle ? -> $x: (dulle, state, $x) -> $x: (dulle, outline, $x) -> (Introduction Avery Dulles, outlines, five different models) -> five different models (13376ms) In what state is Dulles located? a US policy -14.417694308215152 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> which state be dulle ? -> $x: (dulle, state, $x) -> $x: (dulle, articulate, $x) -> (Dulles, first articulated, a US policy) -> a US policy (13590ms) In what state is Dulles located? I-66 -14.713771409891585 In what state is Dulles located? -> in what state be [ dulle locate ] ? -> which state have dulle locate ? -> $x: ($x, instance of, state) (dulle, locate, $x) -> $x: ($x, instance of, state) (dulle, conveniently located, $x) -> (I-66, Instance Of, federal, state and regional highway) (Wyndham Dulles Airport, is conveniently located between, I-66) -> I-66 (14821ms) In what state is Dulles located? sterling -14.753283508635745 In what state is Dulles located? -> in what state be [ dulle locate ] ? -> what state be dulle locate locate in ? -> $x: ($x, instance of, state) (dulle, locate locate in, $x) -> (sterling, Instance Of, united state using noble metal) (The SpringHill Suites Dulles Airport, is located in, Sterling) -> sterling (13376ms) In what state is Dulles located? The event -14.811226979933966 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, will be hold at, dulle) -> (The event, will be held at, the Dulles Sportsplex) -> The event (12298ms) In what state is Dulles located? events -14.81768297503484 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, host, $x) -> (Dulles Town Center, will host a variety of, events) -> events (12298ms) In what state is Dulles located? companies -14.841886744715598 In what state is Dulles located? -> in what state be [ dulle locate ] ? -> which state be dulle locate locate ? -> $x: ($x, instance of, state) (dulle, locate locate, $x) -> $x: ($x, modelling, state) (dulle, locate locate, $x) -> (companies, is considered a model for, other states) (Hilton Dulles-North/Loudoun VA hotel, is located near, companies) -> companies (6067ms) In what state is Dulles located? Switzerland -14.97442253502609 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> which state be dulle ? -> $x: (dulle, state, $x) -> $x: (dulle, detailed, $x) -> (Dulles, reports these details from, Switzerland) -> Switzerland (13399ms) In what state is Dulles located? The movie -15.066895270479268 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, start in, dulle) -> (The movie, started in, Dulles Airport) -> The movie (13399ms) In what state is Dulles located? west -15.111132281639744 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, part of, dulle) -> (west, includes part of, Dulles International Airport) -> west (12339ms) In what state is Dulles located? Herndon -15.158456679420844 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, part of, dulle) -> (Herndon, is part of, the Dulles Technology Corridor) -> Herndon (12340ms) In what state is Dulles located? the event -15.173526229162322 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, hold at, dulle) -> (the event, was held at, Dulles Expo Center) -> the event (13463ms) In what state is Dulles located? Companies -15.195186046321046 In what state is Dulles located? -> in what state be [ dulle locate ] ? -> which state be dulle locate locate ? -> $x: ($x, instance of, state) (dulle, locate locate, $x) -> $x: ($x, be a by, state) (dulle, locate locate, $x) -> (Companies, has been awarded a contract by, the State) (Hilton Dulles-North/Loudoun VA hotel, is located near, companies) -> Companies (7367ms) In what state is Dulles located? the scene -15.20356873551016 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, set, dulle) -> (the scene, is set in, Dulles International Airport) -> the scene (13462ms) In what state is Dulles located? Chantilly -15.299424524436883 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, take place at, dulle) -> (Chantilly, will take place at, the Dulles Expo Center) -> Chantilly (12258ms) In what state is Dulles located? Wilsdorf -15.360823384185942 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, set, dulle) -> (Wilsdorf, set, the design Foster Dulles) -> Wilsdorf (13555ms) In what state is Dulles located? 23 above -15.45026056112324 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> which state be dulle ? -> $x: (dulle, state, $x) -> $x: (dulle, note, $x) -> (Dulles, note, 23 above) -> 23 above (13555ms) In what state is Dulles located? The following interview -15.517655078132776 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, take place in, dulle) -> (The following interview, took place in, Dulles) -> The following interview (13555ms) In what state is Dulles located? The meeting -15.565783037567023 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, will be hold at, dulle) -> (The meeting, will be held at, the Crowne Plaza Dulles Airport) -> The meeting (12534ms) In what state is Dulles located? the site -15.59662537166694 In what state is Dulles located? -> in what state be [ dulle locate ] ? -> which state be dulle locate locate ? -> $x: ($x, instance of, state) (dulle, locate locate, $x) -> $x: ($x, be a by, state) (dulle, locate locate, $x) -> (the site, is a text by, Ohio State Univ.) (the Dulles Airport corridor, is located on, site) -> the site (7367ms) In what state is Dulles located? the puck -15.657853655913854 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: (dulle, lose, $x) -> (Kurtis Dulle, lost, the puck) -> the puck (12534ms) In what state is Dulles located? the essence -15.685014644100287 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> which state be dulle ? -> $x: (dulle, state, $x) -> $x: (dulle, articulate, $x) -> (State John Foster Dulles, articulated, the essence) -> the essence (13590ms) In what state is Dulles located? The tournament -15.736314045187164 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, hold at, dulle) -> (The tournament, was held at, the Dulles office) -> The tournament (13555ms) In what state is Dulles located? the club -15.748393360269569 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, hold at, dulle) -> (the club, was held up at, Dulles International Airport) -> the club (13555ms) In what state is Dulles located? the conferences -16.077948528774826 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> what be the event of dulle ? -> $x: (dulle, event, $x) -> $x: ($x, hold at, dulle) -> (the conferences, held this February at, the Hyatt Dulles hotel) -> the conferences (13590ms) In what state is Dulles located? the four purposes -16.091020645774947 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> which state be dulle ? -> $x: (dulle, state, $x) -> $x: (dulle, outline, $x) -> (Dulles, outlined, the four purposes) -> the four purposes (13590ms) In what state is Dulles located? the doctrine -16.152586800720385 In what state is Dulles located? -> in what state be [ dulle ] locate ? -> which state be dulle ? -> $x: (dulle, state, $x) -> $x: (dulle, enunciate, $x) -> (Dulles, also enunciated, the doctrine) -> the doctrine (13590ms) Who was Abraham Lincoln? good president -1.4531390592649704 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, good president) -> good president (8146ms) Who was Abraham Lincoln? calculating politician -1.5388853083941172 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, calculating politician) -> calculating politician (8146ms) Who was Abraham Lincoln? classical liberal -1.6308871539686192 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, classical liberal) -> classical liberal (8147ms) Who was Abraham Lincoln? country lawyer -1.6460800577512056 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, country lawyer) -> country lawyer (8146ms) Who was Abraham Lincoln? successful president -1.6510044297822404 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, successful president) -> successful president (8146ms) Who was Abraham Lincoln? state congressman -1.689612184530946 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, state congressman) -> state congressman (8319ms) Who was Abraham Lincoln? famous president -1.689612184530946 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, famous president) -> famous president (8147ms) Who was Abraham Lincoln? credible person -1.7078911455729124 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, credible person) -> credible person (8319ms) Who was Abraham Lincoln? case study -1.7119153669749063 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, case study) -> case study (8319ms) Who was Abraham Lincoln? remarkable president -1.739989828523818 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, remarkable president) -> remarkable president (8320ms) Who was Abraham Lincoln? brilliant statesman -1.7403815205198812 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, brilliant statesman) -> brilliant statesman (8320ms) Who was Abraham Lincoln? strong president -1.7409575381611497 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, strong president) -> strong president (8320ms) Who was Abraham Lincoln? poor president -1.7436456204870714 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, poor president) -> poor president (8460ms) Who was Abraham Lincoln? gifted politician -1.745473517081548 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, gifted politician) -> gifted politician (8460ms) Who was Abraham Lincoln? generous person -1.7476547602653458 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, generous person) -> generous person (8460ms) Who was Abraham Lincoln? polarizing figure -1.748262149694099 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, polarizing figure) -> polarizing figure (8460ms) Who was Abraham Lincoln? hard worker -1.7534671514913516 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, hard worker) -> hard worker (8460ms) Who was Abraham Lincoln? true statesman -1.7535596329959136 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, true statesman) -> true statesman (8460ms) Who was Abraham Lincoln? respected politician -1.7542474173030762 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, respected politician) -> respected politician (8478ms) Who was Abraham Lincoln? proper noun -1.7561206776615963 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, proper noun) -> proper noun (8478ms) Who was Abraham Lincoln? shoe maker -1.757537630805424 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, shoe maker) -> shoe maker (8478ms) Who was Abraham Lincoln? poor farmer -1.7594144420163897 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln's, Instance Of, poor farmer) -> poor farmer (8478ms) Who was Abraham Lincoln? outstanding person -1.761924582141888 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, outstanding person) -> outstanding person (8501ms) Who was Abraham Lincoln? staunch patriot -1.761924582141888 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, staunch patriot) -> staunch patriot (8478ms) Who was Abraham Lincoln? episodic film -1.761924582141888 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, episodic film) -> episodic film (8477ms) Who was Abraham Lincoln? accomplished attorney -1.7636654338234565 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, accomplished attorney) -> accomplished attorney (8501ms) Who was Abraham Lincoln? distinguished figure -1.7637834589127492 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, distinguished figure) -> distinguished figure (8501ms) Who was Abraham Lincoln? legendary figure -1.7656297771630176 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, legendary figure) -> legendary figure (8501ms) Who was Abraham Lincoln? multifaceted personality -1.7711741764725266 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, multifaceted personality) -> multifaceted personality (8501ms) Who was Abraham Lincoln? informative book -1.7715210348197283 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (ABRAHAM LINCOLN, Instance Of, informative book) -> informative book (8501ms) Who was Abraham Lincoln? white leader -1.775633802004088 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, white leader) -> white leader (8524ms) Who was Abraham Lincoln? man -1.8336905138666093 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, man) -> man (8524ms) Who was Abraham Lincoln? cat person -2.1413806257598056 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, cat person) -> cat person (8524ms) Who was Abraham Lincoln? smart man -2.1470149870108117 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, smart man) -> smart man (8524ms) Who was Abraham Lincoln? good old man -2.2555237552890413 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham lincoln, Instance Of, good old man) -> good old man (8524ms) Who was Abraham Lincoln? amazing man -2.291286248522742 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, amazing man) -> amazing man (8547ms) Who was Abraham Lincoln? US president -2.3000872243751496 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, US president) -> US president (8546ms) Who was Abraham Lincoln? moderate Republican -2.3170014673106523 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, moderate Republican) -> moderate Republican (8547ms) Who was Abraham Lincoln? true American -2.3333903998423318 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, true American) -> true American (8547ms) Who was Abraham Lincoln? radical Republican -2.3334283842804697 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, radical Republican) -> radical Republican (8547ms) Who was Abraham Lincoln? average man -2.3358535650213432 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, average man) -> average man (8547ms) Who was Abraham Lincoln? sasquatch/president -2.343316106986041 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, sasquatch/president) -> sasquatch/president (8564ms) Who was Abraham Lincoln? Captain of another company -2.3648564173313145 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, Captain of another company) -> Captain of another company (8564ms) Who was Abraham Lincoln? hated man -2.368594982736123 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, hated man) -> hated man (8564ms) Who was Abraham Lincoln? hardworking man -2.3688453037379817 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, hardworking man) -> hardworking man (8564ms) Who was Abraham Lincoln? profoundly religious leader -2.375712696869015 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, profoundly religious leader) -> profoundly religious leader (8564ms) Who was Abraham Lincoln? work-a-day lawyer -2.40287534828422 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, work-a-day lawyer) -> work-a-day lawyer (8603ms) Who was Abraham Lincoln? non-religious man -2.40287534828422 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, non-religious man) -> non-religious man (8564ms) Who was Abraham Lincoln? famous American patriot -2.405628785887621 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, famous American patriot) -> famous American patriot (8603ms) Who was Abraham Lincoln? intensely partisan politician -2.4206066523041567 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, intensely partisan politician) -> intensely partisan politician (8603ms) Who was Abraham Lincoln? man of principle -2.4225008031145334 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, man of principle) -> man of principle (8603ms) Who was Abraham Lincoln? gentle man -2.423106431212612 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, gentle man) -> gentle man (8603ms) Who was Abraham Lincoln? curious man -2.4265018771749904 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, curious man) -> curious man (8603ms) Who was Abraham Lincoln? big man -2.4265815746301893 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, big man) -> big man (8622ms) Who was Abraham Lincoln? famous man -2.426755925530072 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, famous man) -> famous man (8622ms) Who was Abraham Lincoln? courageous man -2.43029379046002 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, courageous man) -> courageous man (8622ms) Who was Abraham Lincoln? person of great interest -2.4330472280634208 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, person of great interest) -> person of great interest (8622ms) Who was Abraham Lincoln? man of dignity -2.4337210948127206 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, man of dignity) -> man of dignity (8622ms) Who was Abraham Lincoln? crucial american figure -2.4480250944799566 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, crucial american figure) -> crucial american figure (8650ms) Who was Abraham Lincoln? traditional american icon -2.4480250944799566 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, traditional american icon) -> traditional american icon (8622ms) Who was Abraham Lincoln? man of rugged simplicity -2.4505227413227635 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, man of rugged simplicity) -> man of rugged simplicity (8649ms) Who was Abraham Lincoln? INOVATION genuine leader -2.4505227413227635 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, INOVATION genuine leader) -> INOVATION genuine leader (8649ms) Who was Abraham Lincoln? rich trial/corporate lawyer -2.4505227413227635 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, rich trial/corporate lawyer) -> rich trial/corporate lawyer (8649ms) Who was Abraham Lincoln? man Walt Whitman -2.4505227413227635 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, man Walt Whitman) -> man Walt Whitman (8651ms) Who was Abraham Lincoln? man of great resolve -2.4505227413227635 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, man of great resolve) -> man of great resolve (8650ms) Who was Abraham Lincoln? world famous revolutionary -2.453508782424837 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, world famous revolutionary) -> world famous revolutionary (8668ms) Who was Abraham Lincoln? man of great character -2.4640072205388304 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, man of great character) -> man of great character (8668ms) Who was Abraham Lincoln? man of moral courage -2.464231962410663 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, man of moral courage) -> man of moral courage (8668ms) Who was Abraham Lincoln? member of the Board -2.479729038317715 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, member of the Board) -> member of the Board (8668ms) Who was Abraham Lincoln? transformational and inspirational leader -2.4895069719906626 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, transformational and inspirational leader) -> transformational and inspirational leader (8668ms) Who was Abraham Lincoln? man of the Border South -2.4895069719906626 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, man of the Border South) -> man of the Border South (8668ms) Who was Abraham Lincoln? likeable, very real person -2.4895069719906626 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, likeable, very real person) -> likeable, very real person (8687ms) Who was Abraham Lincoln? great public inspirational speaker -2.4895069719906626 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, great public inspirational speaker) -> great public inspirational speaker (8687ms) Who was Abraham Lincoln? third party candidate of sort -2.4895069719906626 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, third party candidate of sort) -> third party candidate of sort (8687ms) Who was Abraham Lincoln? great and kindhearted Christian man -2.521993830880578 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, great and kindhearted Christian man) -> great and kindhearted Christian man (8687ms) Who was Abraham Lincoln? historical and literary character -2.5443438563422625 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, historical and literary character) -> historical and literary character (8687ms) Who was Abraham Lincoln? man of great insight, intelligence and wit -2.5494827114797376 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, man of great insight, intelligence and wit) -> man of great insight, intelligence and wit (8687ms) Who was Abraham Lincoln? name -2.628622151447157 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, name) -> name (8716ms) Who was Abraham Lincoln? president -2.698571389242592 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, president) -> president (8716ms) Who was Abraham Lincoln? American president -2.720513370453024 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, American president) -> American president (8717ms) Who was Abraham Lincoln? personality -2.7456903690131274 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, personality) -> personality (8716ms) Who was Abraham Lincoln? leader -2.7652394504964244 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, leader) -> leader (8740ms) Who was Abraham Lincoln? guest -2.782366904321326 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, guest) -> guest (8740ms) Who was Abraham Lincoln? republican -2.7914045420450107 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, republican) -> republican (8740ms) Who was Abraham Lincoln? 2-volume biography of Abraham Lincoln -2.8217005945447093 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, 2-volume biography of Abraham Lincoln) -> 2-volume biography of Abraham Lincoln (8740ms) Who was Abraham Lincoln? advocate -2.8946596216147924 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, advocate) -> advocate (8755ms) Who was Abraham Lincoln? visitor -2.9047137988590306 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, visitor) -> visitor (8755ms) Who was Abraham Lincoln? President of the 19th century -2.908332218251151 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, President of the 19th century) -> President of the 19th century (8755ms) Who was Abraham Lincoln? pioneer -2.967741065804428 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, pioneer) -> pioneer (8813ms) Who was Abraham Lincoln? model -3.0282287097938516 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, model) -> model (8972ms) Who was Abraham Lincoln? player -3.0317834575134386 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, player) -> player (8972ms) Who was Abraham Lincoln? American citizen -3.040401409661717 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, American citizen) -> American citizen (8972ms) Who was Abraham Lincoln? mind -3.093191263389513 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, mind) -> mind (8987ms) Who was Abraham Lincoln? bastard -3.0966709296395107 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, bastard) -> bastard (8987ms) Who was Abraham Lincoln? healer -3.1004095801378577 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, healer) -> healer (8987ms) Who was Abraham Lincoln? genious -3.1022566583220295 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, genious) -> genious (8988ms) Who was Abraham Lincoln? professional -3.1140102985985463 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, professional) -> professional (8987ms) Who was Abraham Lincoln? application -3.1328076411980597 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> (ABRAHAM LINCOLN, Instance Of, application) -> application (8987ms) Who was Abraham Lincoln? National Historical Park -3.4541184276637744 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> $x: (Abraham Lincoln, np classification, $x) -> (Abraham Lincoln Birthplace National Historical Park, NPS Classification, National Historical Park) -> National Historical Park (8997ms) Who was Abraham Lincoln? thrill -5.609573373509696 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> $x: (Abraham Lincoln, be the kind of, $x) -> (- Abraham Lincoln, is the kind of, thrill) -> thrill (9128ms) Who was Abraham Lincoln? Clinton -5.989657125460536 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> $x: (Abraham Lincoln, be a by, $x) -> (abraham lincoln, is a U.S. politician endorsed by the U.S. politician, Clinton) -> Clinton (9127ms) Who was Abraham Lincoln? achievers -6.065879182086029 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> $x: (Abraham Lincoln, modelling, $x) -> (Abraham Lincoln, is a model for, achievers) -> achievers (9127ms) Who was Abraham Lincoln? reinstatement -6.516749155042682 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> $x: (Abraham Lincoln, modelling, $x) -> (Abraham Lincoln, offered a model for, reinstatement) -> reinstatement (9127ms) Who was Abraham Lincoln? the citizens -6.803331705082824 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> $x: (Abraham Lincoln, be a by, $x) -> (Abraham Lincoln, was given a reception by, the citizens) -> the citizens (9127ms) Who was Abraham Lincoln? President -7.349455722111308 Who was Abraham Lincoln? -> $x: (Abraham Lincoln, instance of, $x) -> $x: (Abraham Lincoln, take office as, $x) -> (Abraham Lincoln, took office as, President) -> President (9137ms) Who was Abraham Lincoln? Abraham Lincoln -7.630814597407539 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Named after, Abraham Lincoln) -> Abraham Lincoln (12182ms) Who was Abraham Lincoln? Charles Darwin -7.814597399127635 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (President Abraham Lincoln, Named after, Charles Darwin) -> Charles Darwin (13183ms) Who was Abraham Lincoln? Lincoln Prize -7.814597399127635 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Lincoln Prize) -> Lincoln Prize (13184ms) Who was Abraham Lincoln? Lincoln Memorial -7.814597399127635 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Lincoln Memorial) -> Lincoln Memorial (13183ms) Who was Abraham Lincoln? Lincoln Bedroom -7.814597399127635 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Lincoln Bedroom) -> Lincoln Bedroom (13183ms) Who was Abraham Lincoln? Comments Today -8.400322678009807 Who was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (Comments Today, is, Abraham Lincoln) -> Comments Today (11373ms) Who was Abraham Lincoln? Lincoln Tomb -8.747468614012714 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Lincoln Tomb) -> Lincoln Tomb (14620ms) Who was Abraham Lincoln? Robert Todd Lincoln -8.81574635567154 Who was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (Robert Todd Lincoln, was, Abraham Lincoln) -> Robert Todd Lincoln (11373ms) Who was Abraham Lincoln? recent history -8.905607755903105 Who was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (recent history, is, Abraham Lincoln) -> recent history (11373ms) Who was Abraham Lincoln? Henry Clay -8.907029493654978 Who was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (Henry Clay, was, Abraham Lincoln) -> Henry Clay (11373ms) Who was Abraham Lincoln? Abraham Lincoln Brigade -8.948854969357477 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Abraham Lincoln Brigade) -> Abraham Lincoln Brigade (14805ms) Who was Abraham Lincoln? Fort Abraham Lincoln -8.948854969357477 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Fort Abraham Lincoln) -> Fort Abraham Lincoln (14805ms) Who was Abraham Lincoln? Abraham Lincoln University -8.948854969357477 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Abraham Lincoln University) -> Abraham Lincoln University (14805ms) Who was Abraham Lincoln? Abraham Lincoln's Clemency -8.987839200025377 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Abraham Lincoln's Clemency) -> Abraham Lincoln's Clemency (14863ms) Who was Abraham Lincoln? Lincoln Memorial Tower -8.987839200025377 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Lincoln Memorial Tower) -> Lincoln Memorial Tower (14863ms) Who was Abraham Lincoln? Lincoln College, Illinois -8.987839200025377 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Lincoln College, Illinois) -> Lincoln College, Illinois (14863ms) Who was Abraham Lincoln? Abraham Lincoln National Cemetery -8.987839200025377 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Abraham Lincoln National Cemetery) -> Abraham Lincoln National Cemetery (14805ms) Who was Abraham Lincoln? Abraham Lincoln Memorial Hospital -8.987839200025377 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Abraham Lincoln Memorial Hospital) -> Abraham Lincoln Memorial Hospital (14805ms) Who was Abraham Lincoln? Abraham Lincoln Memorial Garden -8.987839200025377 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Abraham Lincoln Memorial Garden) -> Abraham Lincoln Memorial Garden (14863ms) Who was Abraham Lincoln? Lincoln Heritage Trail -8.987839200025377 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Lincoln Heritage Trail) -> Lincoln Heritage Trail (14863ms) Who was Abraham Lincoln? Abraham Lincoln Capital Airport -8.987839200025377 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Abraham Lincoln Capital Airport) -> Abraham Lincoln Capital Airport (14863ms) Who was Abraham Lincoln? Abraham Lincoln Memorial Bridge -8.987839200025377 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Abraham Lincoln Memorial Bridge) -> Abraham Lincoln Memorial Bridge (14805ms) Who was Abraham Lincoln? Abraham Lincoln High School -8.987839200025377 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Abraham Lincoln High School) -> Abraham Lincoln High School (14863ms) Who was Abraham Lincoln? Lincoln cent mintage figures -9.020326058915293 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Lincoln cent mintage figures) -> Lincoln cent mintage figures (14920ms) Who was Abraham Lincoln? Lincoln Home National Historic Site -9.047814939514453 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Lincoln Home National Historic Site) -> Lincoln Home National Historic Site (14920ms) Who was Abraham Lincoln? Abraham Lincoln Presidential Library and Museum -9.047814939514453 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Abraham Lincoln Presidential Library and Museum) -> Abraham Lincoln Presidential Library and Museum (14920ms) Who was Abraham Lincoln? Lincoln Trail Homestead State Memorial -9.047814939514453 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Lincoln Trail Homestead State Memorial) -> Lincoln Trail Homestead State Memorial (14920ms) Who was Abraham Lincoln? Proposed Chicago south suburban airport -9.071376837170874 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Proposed Chicago south suburban airport) -> Proposed Chicago south suburban airport (14920ms) Who was Abraham Lincoln? better angels -9.25265281486515 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called ?the, better angels) -> better angels (9704ms) Who was Abraham Lincoln? Polk ?a -9.380575287943255 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, Polk ?a) -> Polk ?a (9704ms) Who was Abraham Lincoln? USS Abraham Lincoln (CVN-72) -9.406664446285866 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, USS Abraham Lincoln (CVN-72)) -> USS Abraham Lincoln (CVN-72) (15249ms) Who was Abraham Lincoln? USS Abraham Lincoln (SSBN-602) -9.406664446285866 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, USS Abraham Lincoln (SSBN-602)) -> USS Abraham Lincoln (SSBN-602) (15249ms) Who was Abraham Lincoln? the Americans -9.410960400292389 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called on, the Americans) -> the Americans (9704ms) Who was Abraham Lincoln? the Gettysburg address -9.454126275657545 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, the Gettysburg address) -> the Gettysburg address (9704ms) Who was Abraham Lincoln? Assassination of Abraham Lincoln -9.492587332390851 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who s abraham lincoln ? -> $x: ($x, s, abraham lincoln) -> (Assassination of Abraham Lincoln, Victim(s), Abraham Lincoln) -> Assassination of Abraham Lincoln (15249ms) Who was Abraham Lincoln? the Bible -9.500010939788309 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, the Bible) -> the Bible (9763ms) Who was Abraham Lincoln? more volunteers -9.52596714385593 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called for, more volunteers) -> more volunteers (9770ms) Who was Abraham Lincoln? historians -9.601325409488775 Who was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (historians, was, Abraham Lincoln) -> historians (11373ms) Who was Abraham Lincoln? Saint Status -9.65206754955514 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> what do abraham lincoln enjoy ? -> $x: (abraham lincoln, enjoy, $x) -> (Abraham Lincoln, enjoys almost, Saint Status) -> Saint Status (10253ms) Who was Abraham Lincoln? a patent -9.65260598713518 Who was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (a patent, was, Abraham Lincoln) -> a patent (11373ms) Who was Abraham Lincoln? a baboon -9.663717756189879 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, was called, a baboon) -> a baboon (9763ms) Who was Abraham Lincoln? Northern Whigs -9.668672714296928 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, Northern Whigs) -> Northern Whigs (15324ms) Who was Abraham Lincoln? the Ripper -9.66958328611701 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be really abraham lincoln ? -> $x: ($x, be really, abraham lincoln) -> (the Ripper, really was, Abraham Lincoln scale) -> the Ripper (11511ms) Who was Abraham Lincoln? Abe -9.692688025399963 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (the young Abraham Lincoln, called, Abe) -> Abe (9770ms) Who was Abraham Lincoln? a traitor -9.718548050795599 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (The Republican Abraham Lincoln, was called, a traitor) -> a traitor (9763ms) Who was Abraham Lincoln? Southern Baptist -9.732691152061305 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, Southern Baptist) -> Southern Baptist (15324ms) Who was Abraham Lincoln? a log cabin -9.733710908290957 Who was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (a log cabin, was, Abraham Lincoln) -> a log cabin (11511ms) Who was Abraham Lincoln? a racist -9.734845816009623 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, is called, a racist) -> a racist (9763ms) Who was Abraham Lincoln? The Papers of Abraham Lincoln -9.742736145843203 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who s abraham lincoln ? -> $x: ($x, s, abraham lincoln) -> (The Papers of Abraham Lincoln, Edited work(s), The Papers of Abraham Lincoln: Legal Documents and Cases) -> The Papers of Abraham Lincoln (15324ms) Who was Abraham Lincoln? Sinking Spring -9.805388403496481 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln know as ? -> $x: (abraham lincoln, know as, $x) -> (Abraham Lincoln Birthplace National Historical Park, Also known as, Sinking Spring) -> Sinking Spring (16073ms) Who was Abraham Lincoln? One notable exception -9.80772833229638 Who was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (One notable exception, was, Abraham Lincoln) -> One notable exception (11511ms) Who was Abraham Lincoln? the Moon -9.824740817384953 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, made the first call to, the Moon) -> the Moon (9831ms) Who was Abraham Lincoln? the Whig Party -9.838930407578824 Who was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (the Whig Party, was, Abraham Lincoln) -> the Whig Party (11511ms) Who was Abraham Lincoln? Stacy Pratt McDermott -9.838930407578824 Who was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (Stacy Pratt McDermott, Was, Abraham Lincoln) -> Stacy Pratt McDermott (11511ms) Who was Abraham Lincoln? Abrahm Lincoln -9.843676487188167 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln know as ? -> $x: (abraham lincoln, know as, $x) -> (The story of Abraham Lincoln: president for the people, Also known as, Abrahm Lincoln) -> Abrahm Lincoln (16074ms) Who was Abraham Lincoln? number six position -9.847772429696674 Who was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (number six position, was, Abraham Lincoln) -> number six position (11840ms) Who was Abraham Lincoln? biblical character -9.859213646178947 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, biblical character) -> biblical character (15324ms) Who was Abraham Lincoln? David Glasgow Farragut -9.859537497171255 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be one of abraham lincoln ? -> $x: ($x, be one of, abraham lincoln) -> (David Glasgow Farragut, was one of, Abraham Lincoln) -> David Glasgow Farragut (11840ms) Who was Abraham Lincoln? Such a man -9.873841518023083 Who was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (Such a man, was, Abraham Lincoln) -> Such a man (11840ms) Who was Abraham Lincoln? 1.00 -9.873874297803571 Who was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (1.00, was, abraham lincoln) -> 1.00 (11840ms) Who was Abraham Lincoln? the ?missing link ? -9.898532143727275 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, was called, the ?missing link ?) -> the ?missing link ? (9830ms) Who was Abraham Lincoln? The Great Emancipator -9.907641148559156 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, has been called, The Great Emancipator) -> The Great Emancipator (9831ms) Who was Abraham Lincoln? the Black Hawk War -9.9147232294985 Who was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (the Black Hawk War, was, Abraham Lincoln) -> the Black Hawk War (11840ms) Who was Abraham Lincoln? ?Honest Abe . ? Bill Clinton -9.917194711012442 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, was called, ?Honest Abe . ? Bill Clinton) -> ?Honest Abe . ? Bill Clinton (9830ms) Who was Abraham Lincoln? bible character -9.92939661352169 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, bible character) -> bible character (15324ms) Who was Abraham Lincoln? the Great Experiment -9.947373295291776 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, has been called, the Great Experiment) -> the Great Experiment (9830ms) Who was Abraham Lincoln? the 'family -9.959705937260079 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, the 'family) -> the 'family (9831ms) Who was Abraham Lincoln? Bill Kendrat -9.959714739960308 Who was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (Bill Kendrat, was, Abraham Lincoln) -> Bill Kendrat (11840ms) Who was Abraham Lincoln? a 'proposition -9.96140979463731 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, a 'proposition) -> a 'proposition (9849ms) Who was Abraham Lincoln? true believer -9.977688774618347 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, true believer) -> true believer (15324ms) Who was Abraham Lincoln? ?the mythic chords -9.998864059694306 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, ?the mythic chords) -> ?the mythic chords (9850ms) Who was Abraham Lincoln? the Mississippi -10.018131936895045 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, the Mississippi) -> the Mississippi (9850ms) Who was Abraham Lincoln? a ?flypaper figure -10.051915928889935 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln-is, calls, a ?flypaper figure) -> a ?flypaper figure (9850ms) Who was Abraham Lincoln? unpopular president -10.053934667434657 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, unpopular president) -> unpopular president (15390ms) Who was Abraham Lincoln? ?the last best hope -10.0669125715968 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, ?the last best hope) -> ?the last best hope (9849ms) Who was Abraham Lincoln? ?the Last full measure -10.0669125715968 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, ?the Last full measure) -> ?the Last full measure (9850ms) Who was Abraham Lincoln? successful lawyer -10.076912073042715 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, successful lawyer) -> successful lawyer (15390ms) Who was Abraham Lincoln? good player -10.084993302117876 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, good player) -> good player (15390ms) Who was Abraham Lincoln? Honest Abe -10.099135180097825 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be be abraham lincoln ? -> $x: ($x, be be, abraham lincoln) -> (Honest Abe, is a synonym for, abraham lincoln) -> Honest Abe (15390ms) Who was Abraham Lincoln? a failed actor -10.109453350920598 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, a failed actor) -> a failed actor (9870ms) Who was Abraham Lincoln? cent -10.109655629949307 Who was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (cent, is, Abraham Lincoln) -> cent (15390ms) Who was Abraham Lincoln? good person -10.110847361146396 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, good person) -> good person (15390ms) Who was Abraham Lincoln? male name -10.119249883226566 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (ABRAHAM, Instance Of, male name) -> male name (15441ms) Who was Abraham Lincoln? the Bible ?the best gift God -10.119423284129404 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, the Bible ?the best gift God) -> the Bible ?the best gift God (9870ms) Who was Abraham Lincoln? horrible president -10.120192131337998 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham lincoln, Instance Of, horrible president) -> horrible president (15441ms) Who was Abraham Lincoln? private company -10.128423618993914 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abrahams, Instance Of, private company) -> private company (15441ms) Who was Abraham Lincoln? spiritual teacher -10.133146206169817 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, spiritual teacher) -> spiritual teacher (15441ms) Who was Abraham Lincoln? political leader -10.134050688709188 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, political leader) -> political leader (15441ms) Who was Abraham Lincoln? ?The Inspired Wisdom -10.13951611017624 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, ?The Inspired Wisdom) -> ?The Inspired Wisdom (9870ms) Who was Abraham Lincoln? home -10.140667143733303 Who was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (home, is, Abraham Lincoln) -> home (15441ms) Who was Abraham Lincoln? office -10.148499710371084 Who was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (office, was, Abraham Lincoln) -> office (15441ms) Who was Abraham Lincoln? distant memory -10.151397330474476 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, distant memory) -> distant memory (15441ms) Who was Abraham Lincoln? small player -10.15220899136198 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, small player) -> small player (15484ms) Who was Abraham Lincoln? ambiguous figure -10.153097486922752 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, ambiguous figure) -> ambiguous figure (15485ms) Who was Abraham Lincoln? President Polk?s rationale -10.15356394565246 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Congressman Abraham Lincoln, called, President Polk?s rationale) -> President Polk?s rationale (9870ms) Who was Abraham Lincoln? victory -10.155633902531573 Who was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (victory, was, Abraham Lincoln) -> victory (15485ms) Who was Abraham Lincoln? elected president -10.166818066571098 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, elected president) -> elected president (15485ms) Who was Abraham Lincoln? action -10.176981854797136 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, was called to, action) -> action (9870ms) Who was Abraham Lincoln? christian prophet -10.180104142216596 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, christian prophet) -> christian prophet (15485ms) Who was Abraham Lincoln? religious patriarch -10.180104142216596 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, religious patriarch) -> religious patriarch (15485ms) Who was Abraham Lincoln? patriarchal figure -10.180104142216596 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, patriarchal figure) -> patriarchal figure (15485ms) Who was Abraham Lincoln? testement saint -10.180104142216596 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, testement saint) -> testement saint (15542ms) Who was Abraham Lincoln? biblical alias -10.180104142216596 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, biblical alias) -> biblical alias (15542ms) Who was Abraham Lincoln? American history -10.181139761370495 Who was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (American history, was, Abraham Lincoln) -> American history (15542ms) Who was Abraham Lincoln? terrible speaker -10.184929899281336 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, terrible speaker) -> terrible speaker (15542ms) Who was Abraham Lincoln? Diamonds -10.185073655964121 Who was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (Diamonds, is, Abraham Lincoln) -> Diamonds (15542ms) Who was Abraham Lincoln? ?a new birth -10.186771251421781 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln?s, calls for, ?a new birth) -> ?a new birth (9870ms) Who was Abraham Lincoln? Abe Lincoln -10.189031619842645 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln know as ? -> $x: (abraham lincoln, know as, $x) -> (Abraham Lincoln, Also known as, Abe Lincoln) -> Abe Lincoln (16074ms) Who was Abraham Lincoln? the American form -10.189790151089607 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, the American form) -> the American form (9886ms) Who was Abraham Lincoln? typical person -10.191071519332056 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, typical person) -> typical person (15542ms) Who was Abraham Lincoln? biblical leader -10.19275880793048 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, biblical leader) -> biblical leader (15542ms) Who was Abraham Lincoln? compassionate leader -10.195897275783945 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, compassionate leader) -> compassionate leader (15628ms) Who was Abraham Lincoln? untenured teacher -10.196555207276935 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, untenured teacher) -> untenured teacher (15628ms) Who was Abraham Lincoln? legendary person -10.200667973235594 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, legendary person) -> legendary person (15628ms) Who was Abraham Lincoln? avid reader -10.201159069488934 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, avid reader) -> avid reader (15628ms) Who was Abraham Lincoln? great speaker -10.201686614047302 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, great speaker) -> great speaker (15628ms) Who was Abraham Lincoln? Sidney Edgerton -10.204158741269243 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, named, Sidney Edgerton) -> Sidney Edgerton (15628ms) Who was Abraham Lincoln? a day -10.204364710797169 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called for, a day) -> a day (9887ms) Who was Abraham Lincoln? brilliant scientist -10.207421964240874 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, brilliant scientist) -> brilliant scientist (15628ms) Who was Abraham Lincoln? holy father -10.207522584392395 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, holy father) -> holy father (15725ms) Who was Abraham Lincoln? insomniacs -10.207866153453361 Who was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (insomniacs, were, Abraham Lincoln) -> insomniacs (15724ms) Who was Abraham Lincoln? religious leader -10.208641704731345 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, religious leader) -> religious leader (15724ms) Who was Abraham Lincoln? ?America?s political religion -10.212020291005174 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, ?America?s political religion) -> ?America?s political religion (9886ms) Who was Abraham Lincoln? 3153 Lincoln -10.215545958047738 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, 3153 Lincoln) -> 3153 Lincoln (15724ms) Who was Abraham Lincoln? biographical story -10.220227400200088 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln..., Instance Of, biographical story) -> biographical story (16114ms) Who was Abraham Lincoln? familiar icon -10.220227400200088 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, familiar icon) -> familiar icon (16073ms) Who was Abraham Lincoln? inherent individual -10.220227400200088 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, inherent individual) -> inherent individual (16114ms) Who was Abraham Lincoln? core biography -10.220227400200088 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, core biography) -> core biography (15724ms) Who was Abraham Lincoln? ridiculous politician -10.220227400200088 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, ridiculous politician) -> ridiculous politician (16073ms) Who was Abraham Lincoln? the United States -10.222062908473271 Who was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (the United States, was, Abraham Lincoln) -> the United States (16114ms) Who was Abraham Lincoln? fantastic president -10.22655473305703 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, fantastic president) -> fantastic president (16114ms) Who was Abraham Lincoln? heroic leader -10.227705157157125 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, heroic leader) -> heroic leader (16114ms) Who was Abraham Lincoln? misguided individual -10.229366880721072 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, misguided individual) -> misguided individual (16114ms) Who was Abraham Lincoln? great listener -10.234697344541415 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, great listener) -> great listener (16114ms) Who was Abraham Lincoln? american icon -10.237129179606736 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, american icon) -> american icon (16155ms) Who was Abraham Lincoln? inspirational leader -10.237200721255178 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, inspirational leader) -> inspirational leader (16156ms) Who was Abraham Lincoln? courageous leader -10.238191206846995 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, courageous leader) -> courageous leader (16156ms) Who was Abraham Lincoln? traditional topic -10.24121090103977 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, traditional topic) -> traditional topic (16155ms) Who was Abraham Lincoln? notable case -10.241552854136199 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, notable case) -> notable case (16155ms) Who was Abraham Lincoln? good lawyer -10.242677399422655 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, good lawyer) -> good lawyer (16155ms) Who was Abraham Lincoln? corporate lawyer -10.245450498741095 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, corporate lawyer) -> corporate lawyer (16260ms) Who was Abraham Lincoln? infamous character -10.245536731627856 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, infamous character) -> infamous character (16260ms) Who was Abraham Lincoln? question -10.246341541814685 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, is being called into, question) -> question (9888ms) Who was Abraham Lincoln? famous name -10.248182838636952 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, famous name) -> famous name (16260ms) Who was Abraham Lincoln? USDA ?The People?s Department -10.25347051711119 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, USDA ?The People?s Department) -> USDA ?The People?s Department (9886ms) Who was Abraham Lincoln? New Salem home -10.258882802690831 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, New Salem home) -> New Salem home (9887ms) Who was Abraham Lincoln? great teacher -10.259992503201897 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, great teacher) -> great teacher (16260ms) Who was Abraham Lincoln? northern politician -10.261355062238088 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, northern politician) -> northern politician (16260ms) Who was Abraham Lincoln? world leader -10.263913239991837 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, world leader) -> world leader (16302ms) Who was Abraham Lincoln? The 8th Judicial Circuit -10.267233652440027 Who was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (The 8th Judicial Circuit, was, Abraham Lincoln) -> The 8th Judicial Circuit (16302ms) Who was Abraham Lincoln? republican president -10.267848903354468 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, republican president) -> republican president (16302ms) Who was Abraham Lincoln? such a day -10.27064484989747 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called for, such a day) -> such a day (9904ms) Who was Abraham Lincoln? prominent politician -10.28139161679578 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, prominent politician) -> prominent politician (16302ms) Who was Abraham Lincoln? immediate war -10.285344142810242 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called for, immediate war) -> immediate war (9904ms) Who was Abraham Lincoln? Lincoln -10.286468430021962 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln s name ? -> $x: (abraham lincoln, name, $x) -> (Abraham Lincoln, Things named after this, Lincoln) -> Lincoln (16302ms) Who was Abraham Lincoln? thousands -10.309601196335759 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (President Abraham Lincoln, called for, thousands) -> thousands (9904ms) Who was Abraham Lincoln? volunteers -10.314022181043537 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (President Abraham Lincoln, called for, volunteers) -> volunteers (9904ms) Who was Abraham Lincoln? days -10.33524291818133 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, also called for, days) -> days (9904ms) Who was Abraham Lincoln? the Midwest home -10.359582064925004 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, once called, the Midwest home) -> the Midwest home (9904ms) Who was Abraham Lincoln? The Reprieve -10.39748896438627 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln know as ? -> $x: (abraham lincoln, know as, $x) -> (The Reprieve: An Episode in the Life of Abraham Lincoln, Also known as, The Reprieve) -> The Reprieve (16427ms) Who was Abraham Lincoln? The President -10.402400999760829 Who was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (The President, was, Abraham Lincoln) -> The President (16467ms) Who was Abraham Lincoln? students -10.424177854271928 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> what do abraham lincoln enjoy ? -> $x: (abraham lincoln, enjoy, $x) -> (Abraham Lincoln, was enjoyed by, students) -> students (10253ms) Who was Abraham Lincoln? an ex-recorder -10.477896648930082 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be one of abraham lincoln ? -> $x: ($x, be one of, abraham lincoln) -> (an ex-recorder, was one of, Abraham Lincoln) -> an ex-recorder (16467ms) Who was Abraham Lincoln? IS ENSHRINED FOREVER -10.484637369614585 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> what be abraham s lincoln ? -> $x: (abraham, lincoln, $x) -> (ABRAHAM, LINCOLN, IS ENSHRINED FOREVER) -> IS ENSHRINED FOREVER (16507ms) Who was Abraham Lincoln? guy -10.496573995698537 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, guy) -> guy (16507ms) Who was Abraham Lincoln? six hundred thousand men -10.504441574415143 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, has called for, six hundred thousand men) -> six hundred thousand men (10075ms) Who was Abraham Lincoln? one of my heroes -10.534904269279664 Who was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (one of my heroes, is, Abraham Lincoln) -> one of my heroes (16507ms) Who was Abraham Lincoln? One of his heroes -10.555305388143616 Who was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (One of his heroes, is, Abraham Lincoln) -> One of his heroes (16507ms) Who was Abraham Lincoln? old man -10.564719648711707 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, old man) -> old man (16507ms) Who was Abraham Lincoln? Edwin Booth -10.591699167210997 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who save lincoln ? -> $x: ($x, save, lincoln) -> (Edwin Booth, saved, Abraham Lincoln?s son) -> Edwin Booth (16547ms) Who was Abraham Lincoln? key figure -10.597234562938151 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, key figure) -> key figure (16547ms) Who was Abraham Lincoln? profiteers -10.636831110890377 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, profiteers) -> profiteers (10075ms) Who was Abraham Lincoln? 75,000 men -10.637919133879025 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called for, 75,000 men) -> 75,000 men (10075ms) Who was Abraham Lincoln? the constitution -10.654936030238314 Who was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (the constitution, was, Abraham Lincoln) -> the constitution (16547ms) Who was Abraham Lincoln? good guy -10.666460669149307 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, good guy) -> good guy (16547ms) Who was Abraham Lincoln? 75,000 volunteers -10.666972437654598 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called for, 75,000 volunteers) -> 75,000 volunteers (10075ms) Who was Abraham Lincoln? the front -10.682601307214078 Who was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (the front, is, Abraham Lincoln) -> the front (16547ms) Who was Abraham Lincoln? the time -10.697568118714644 Who was Abraham Lincoln? -> who [ be abraham lincoln ] ? -> who be be be abraham lincoln ? -> $x: ($x, be be be, abraham lincoln) -> (the time, was, Abraham Lincoln) -> the time (16586ms) Who was Abraham Lincoln? the English Reader -10.708330074201946 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, the English Reader) -> the English Reader (10125ms) Who was Abraham Lincoln? worshipful man -10.712695439433652 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, worshipful man) -> worshipful man (16586ms) Who was Abraham Lincoln? Lincoln Farm -10.714697720725137 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln know as ? -> $x: (abraham lincoln, know as, $x) -> (Abraham Lincoln Birthplace National Historical Park, Also known as, Lincoln Farm) -> Lincoln Farm (16586ms) Who was Abraham Lincoln? member of Congress -10.732451314006369 Who was Abraham Lincoln? -> who be abraham [ lincoln ] ? -> who be abraham lincoln lincoln ? -> $x: (abraham lincoln lincoln, instance of, $x) -> (Abraham Lincoln, Instance Of, member of Congress) -> member of Congress (16586ms) Who was Abraham Lincoln? great guy -10.749550917314297 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, great guy) -> great guy (16788ms) Who was Abraham Lincoln? talented author -10.7555369230144 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham's, Instance Of, talented author) -> talented author (16788ms) Who was Abraham Lincoln? business man -10.760129439237327 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, business man) -> business man (16788ms) Who was Abraham Lincoln? OT saint -10.762807026543278 Who was Abraham Lincoln? -> who [ be ] abraham lincoln ? -> who be abraham ? -> $x: (abraham, instance of, $x) -> (Abraham, Instance Of, OT saint) -> OT saint (16788ms) Who was Abraham Lincoln? Abraham Lincoln plaque -10.769476712874384 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln know as ? -> $x: (abraham lincoln, know as, $x) -> (Abraham Lincoln, Also known as, Abraham Lincoln plaque) -> Abraham Lincoln plaque (16787ms) Who was Abraham Lincoln? Lincoln, Abraham -10.769476712874384 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln know as ? -> $x: (abraham lincoln, know as, $x) -> (Abraham Lincoln, Also known as, Lincoln, Abraham) -> Lincoln, Abraham (16787ms) Who was Abraham Lincoln? states -10.788817517473591 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (President Abraham Lincoln, called on, states) -> states (10125ms) Who was Abraham Lincoln? citizenship -10.807463485422993 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> what do abraham lincoln enjoy ? -> $x: (abraham lincoln, enjoy, $x) -> (Abraham Lincoln, enjoy the privileges of, citizenship) -> citizenship (10253ms) Who was Abraham Lincoln? troops -10.827702443093278 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, made his initial call for, troops) -> troops (10125ms) Who was Abraham Lincoln? government -10.8407317538028 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called for, government) -> government (10140ms) Who was Abraham Lincoln? help -10.933006313559911 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (President Abraham Lincoln, calls for, help) -> help (10140ms) Who was Abraham Lincoln? support -10.954227050697703 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (President Abraham Lincoln, called for, support) -> support (10140ms) Who was Abraham Lincoln? a new determination -11.070128101083846 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called for, a new determination) -> a new determination (10140ms) Who was Abraham Lincoln? a special session of Congress -11.09899638194617 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, a special session of Congress) -> a special session of Congress (10140ms) Who was Abraham Lincoln? 15 % discounts -11.190224452445111 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> what do abraham lincoln enjoy ? -> $x: (abraham lincoln, enjoy, $x) -> (- Abraham Lincoln, Please enjoy, 15 % discounts) -> 15 % discounts (10253ms) Who was Abraham Lincoln? the nation -11.271522298073538 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (President Abraham Lincoln, called on, the nation) -> the nation (10140ms) Who was Abraham Lincoln? Americans -11.285190376009748 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, Americans) -> Americans (10253ms) Who was Abraham Lincoln? Manhunt -11.299212352859794 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, Manhunt) -> Manhunt (10253ms) Who was Abraham Lincoln? America -11.299337569236473 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, America) -> America (10272ms) Who was Abraham Lincoln? Grant -11.313484709760903 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, Grant) -> Grant (10272ms) Who was Abraham Lincoln? Vicksburg -11.562354275180112 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (President Abraham Lincoln, called, Vicksburg) -> Vicksburg (10291ms) Who was Abraham Lincoln? Rivals -11.584647247360259 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called Team of, Rivals) -> Rivals (10293ms) Who was Abraham Lincoln? better angels of our nature -11.642455386024086 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called the, better angels of our nature) -> better angels of our nature (10291ms) Who was Abraham Lincoln? Leaves -11.650361275065508 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> what do abraham lincoln enjoy ? -> $x: (abraham lincoln, enjoy, $x) -> (Abraham Lincoln, enjoyed an early version of, Leaves) -> Leaves (10291ms) Who was Abraham Lincoln? the ability -11.703955609522414 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln ?All endeavor, calls for, the ability) -> the ability (10309ms) Who was Abraham Lincoln? a misguided fanatic. -11.743622236308116 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called him, a misguided fanatic.) -> a misguided fanatic. (10309ms) Who was Abraham Lincoln? the equality -11.842476454831537 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, the equality) -> the equality (10327ms) Who was Abraham Lincoln? the plain people -11.855912170023409 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, the plain people) -> the plain people (10327ms) Who was Abraham Lincoln? the governors -11.964813721141997 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called on, the governors) -> the governors (10327ms) Who was Abraham Lincoln? once -12.19607908600387 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, once) -> once (10327ms) Who was Abraham Lincoln? Union troops -12.25063842897757 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (President Abraham Lincoln, called, Union troops) -> Union troops (10327ms) Who was Abraham Lincoln? later -12.429243913154208 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called the better angels of our nature, later) -> later (10342ms) Who was Abraham Lincoln? the newly elected 37th Congress -12.504632835665 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, the newly elected 37th Congress) -> the newly elected 37th Congress (10342ms) Who was Abraham Lincoln? the cottage -12.581093948215468 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> what do abraham lincoln enjoy ? -> $x: (abraham lincoln, enjoy, $x) -> (Abraham Lincoln, enjoyed staying at, the cottage) -> the cottage (10342ms) Who was Abraham Lincoln? the silent artillery of time -12.963764233385964 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called it, the silent artillery of time) -> the silent artillery of time (10342ms) Who was Abraham Lincoln? the better angels of our nature -13.447507926625857 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, the better angels of our nature) -> the better angels of our nature (10358ms) Who was Abraham Lincoln? the better angels of our nature -13.555923571145968 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, the better angels of our nature) -> the better angels of our nature (10358ms) Who was Abraham Lincoln? the last full measure of devotion -13.567573312002656 Who was Abraham Lincoln? -> who be [ abraham lincoln ] ? -> who be abraham lincoln call ? -> $x: (abraham lincoln, call, $x) -> (Abraham Lincoln, called, the last full measure of devotion) -> the last full measure of devotion (10358ms) How old was Sani Abacha when he died? THE 8TH -8.710650040659381 How old was Sani Abacha when he died? -> how old be [ sanus abacha ] when he die ? -> what be sanus abacha die ? -> $x: (sanus abacha, die, $x) -> (GENERAL SANI ABACHA, DIED ON, THE 8TH) -> THE 8TH (2147ms) How old was Sani Abacha when he died? the 8th -8.848002874811538 How old was Sani Abacha when he died? -> how old be [ sanus abacha ] when he die ? -> what be sanus abacha die ? -> $x: (sanus abacha, die, $x) -> (General Sani Abacha, died on, the 8th) -> the 8th (2147ms) How old was Sani Abacha when he died? 8th -8.884936710689182 How old was Sani Abacha when he died? -> how old be [ sanus abacha ] when he die ? -> what be sanus abacha die ? -> $x: (sanus abacha, die, $x) -> (late General Sani Abacha, died on, 8th) -> 8th (2147ms) How old was Sani Abacha when he died? cardiac arrest -9.285319230771776 How old was Sani Abacha when he died? -> how old be [ sanus abacha ] when he die ? -> what be sanus abacha die ? -> $x: (sanus abacha, die, $x) -> (dictator Sani Abacha, dies of, cardiac arrest) -> cardiac arrest (2175ms) How old was Sani Abacha when he died? 1998 -9.358474672277733 How old was Sani Abacha when he died? -> how old be [ sanus abacha ] when he die ? -> what be sanus abacha die ? -> $x: (sanus abacha, die, $x) -> (Sani Abacha, died sometime in, 1998) -> 1998 (2175ms) How old was Sani Abacha when he died? heart -9.506608015597948 How old was Sani Abacha when he died? -> how old be [ sanus abacha ] when he die ? -> what be sanus abacha die ? -> $x: (sanus abacha, die, $x) -> (State General Sani Abacha, died of, heart) -> heart (2175ms) How old was Sani Abacha when he died? SUDDENLY -9.722383445305622 How old was Sani Abacha when he died? -> how old be [ sanus abacha ] when he die ? -> what be sanus abacha die ? -> $x: (sanus abacha, die, $x) -> (GENERAL SANI ABACHA, DIED, SUDDENLY) -> SUDDENLY (2175ms) How old was Sani Abacha when he died? Aso Rock -9.849125785319961 How old was Sani Abacha when he died? -> how old be [ sanus abacha ] when he die ? -> what be sanus abacha die ? -> $x: (sanus abacha, die, $x) -> (Sani Abacha, died in, Aso Rock) -> Aso Rock (2175ms) How old was Sani Abacha when he died? 18th June 1998 -10.010828235906862 How old was Sani Abacha when he died? -> how old be [ sanus abacha ] when he die ? -> what be sanus abacha die ? -> $x: (sanus abacha, die, $x) -> (General Sani Abacha, died on, 18th June 1998) -> 18th June 1998 (2234ms) How old was Sani Abacha when he died? power -10.061800747744137 How old was Sani Abacha when he died? -> how old be [ sanus abacha ] when he die ? -> what be sanus abacha die ? -> $x: (sanus abacha, die, $x) -> (General Sani Abacha, died suddenly in, power) -> power (2236ms) How old was Sani Abacha when he died? a heart attack -10.073371809925684 How old was Sani Abacha when he died? -> how old be [ sanus abacha ] when he die ? -> what be sanus abacha die ? -> $x: (sanus abacha, die, $x) -> (General Sani Abacha, died of, a heart attack) -> a heart attack (2234ms) How old was Sani Abacha when he died? June 8 , 1998 -10.07728599568058 How old was Sani Abacha when he died? -> how old be [ sanus abacha ] when he die ? -> what be sanus abacha die ? -> $x: (sanus abacha, die, $x) -> (General Sani Abacha, died suddenly on, June 8 , 1998) -> June 8 , 1998 (2234ms) How old was Sani Abacha when he died? july 1998 -10.312139185718433 How old was Sani Abacha when he died? -> how old be [ sanus abacha ] when he die ? -> what be sanus abacha die ? -> $x: (sanus abacha, die, $x) -> (Sani Abacha}, died on, july 1998) -> july 1998 (2234ms) How old was Sani Abacha when he died? Power -10.877681300796883 How old was Sani Abacha when he died? -> how old be [ sanus abacha ] when he die ? -> what age be sanus abacha die ? -> $x: ($x, instance of, age) (sanus abacha, die, $x) -> (Power, Instance Of, age-old theme) (General Sani Abacha, died suddenly in, power) -> Power (1710ms) How old was Sani Abacha when he died? the 8th of June 1998 -11.407464804997323 How old was Sani Abacha when he died? -> how old be [ sanus abacha ] when he die ? -> what be sanus abacha die ? -> $x: (sanus abacha, die, $x) -> (General Sani Abacha, died on, the 8th of June 1998) -> the 8th of June 1998 (2234ms) How old was Sani Abacha when he died? POWER -12.6218182964982 How old was Sani Abacha when he died? -> how old be [ sanus abacha ] when he die ? -> which year do sanus abacha die ? -> $x: ($x, instance of, year) (sanus abacha, die, $x) -> (POWER, Instance Of, multi-year project) (General Sani Abacha, died suddenly in, power) -> POWER (5664ms) When was Algeria colonized? the 19th century -1.6905492025033517 When was Algeria colonized? -> $x: (Algeria, was colonized in, $x) -> (Algeria, was colonized in, the 19th century) -> the 19th century (3194ms) When was Algeria colonized? 1830 -8.125114606356995 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, happen, $x) -> (Algeria, happened in, 1830) -> 1830 (6552ms) When was Algeria colonized? 1962 -8.202892974734045 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, result, $x) -> (Algeria and France, resulted in, 1962) -> 1962 (6090ms) When was Algeria colonized? 21 March 2009 -8.837901661394431 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be add, $x) -> (Algeria Tv channel, was added on, 21 March 2009) -> 21 March 2009 (5737ms) When was Algeria colonized? UTC+01:00 -8.985512488521428 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, time, $x) -> (Algeria, Time zone(s), UTC+01:00) -> UTC+01:00 (6552ms) When was Algeria colonized? November -9.057822633277809 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> (Algeria, will has a military conflict in, November) -> November (5053ms) When was Algeria colonized? 1 December 1961 -9.257578215057752 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be create, $x) -> (Algeria?s News Agency, was created on, 1 December 1961) -> 1 December 1961 (6246ms) When was Algeria colonized? 1832 France -9.773553169540813 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who colonize algerium ? -> $x: ($x, colonize, algerium) -> (1832 France, colonized, Algeria) -> 1832 France (6839ms) When was Algeria colonized? 2003-05-21T18:44Z -9.832504256407416 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, time, $x) -> (Boumerd?s, Algeria earthquake, Date and time (GMT), 2003-05-21T18:44Z) -> 2003-05-21T18:44Z (6553ms) When was Algeria colonized? 40 -10.175308856878793 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be generate, $x) -> (Algeria, is aiming to generate, 40) -> 40 (6417ms) When was Algeria colonized? Central European Time -10.240855529308668 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, time, $x) -> (Algeria, Time zone(s), Central European Time) -> Central European Time (6553ms) When was Algeria colonized? Roy Douglas -10.348062163645391 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, music, $x) -> (Candlelight in Algeria, Music by, Roy Douglas) -> Roy Douglas (6346ms) When was Algeria colonized? http://en.wikipedia.org/wiki/Air%20Express%20Algeria -10.390410061760216 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, can be find, $x) -> (Air Express Algeria, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Air%20Express%20Algeria) -> http://en.wikipedia.org/wiki/Air%20Express%20Algeria (6090ms) When was Algeria colonized? http://en.wikipedia.org/wiki/Bank%20of%20Algeria -10.390410061760216 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, can be find, $x) -> (Bank of Algeria, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Bank%20of%20Algeria) -> http://en.wikipedia.org/wiki/Bank%20of%20Algeria (6090ms) When was Algeria colonized? http://en.wikipedia.org/wiki/French%20Algeria -10.445387822958534 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, can be find, $x) -> (French rule in Algeria, can be found on Wikipedia at, http://en.wikipedia.org/wiki/French%20Algeria) -> http://en.wikipedia.org/wiki/French%20Algeria (6090ms) When was Algeria colonized? http://en.wikipedia.org/wiki/Movement%20for%20Democracy%20in%20Algeria -10.49251161827138 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, can be find, $x) -> (movement for democracy in algeria, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Movement%20for%20Democracy%20in%20Algeria) -> http://en.wikipedia.org/wiki/Movement%20for%20Democracy%20in%20Algeria (6090ms) When was Algeria colonized? 60,550 tons -10.533789781279726 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be set, $x) -> (Algeria, is set to receive, 60,550 tons) -> 60,550 tons (6471ms) When was Algeria colonized? 82 and 86 World Cup -10.590594077709309 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be present, $x) -> (Algeria, was present in, 82 and 86 World Cup) -> 82 and 86 World Cup (6553ms) When was Algeria colonized? Islamic groups -10.641782118117447 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> (Algeria, has an ongoing conflict with, Islamic groups) -> Islamic groups (5053ms) When was Algeria colonized? 99 % -10.695356710561436 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be state, $x) -> (1962 Algeria, has been a secular state with, 99 %) -> 99 % (6246ms) When was Algeria colonized? interest -10.708444120254748 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be follow, $x) -> (Algeria, was following with, interest) -> interest (6090ms) When was Algeria colonized? travel -10.74198155258867 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be require, $x) -> (a Algeria visa, is required for, travel) -> travel (6417ms) When was Algeria colonized? law -10.827748740243232 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be state, $x) -> (Algeria, will be a state of, law) -> law (6246ms) When was Algeria colonized? the Internet -11.00187110662839 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be access, $x) -> (Algeria, can be accessed through, the Internet) -> the Internet (6023ms) When was Algeria colonized? al-Qaeda -11.14674553172168 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be link, $x) -> (Algeria, is suspected of having links with, al-Qaeda) -> al-Qaeda (6627ms) When was Algeria colonized? basic necessities -11.169027695330822 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be lack, $x) -> (Algeria, are lacking, basic necessities) -> basic necessities (6346ms) When was Algeria colonized? OPEC -11.204122312695077 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be state, $x) -> (Angola and Algeria, are all member states of, OPEC) -> OPEC (6246ms) When was Algeria colonized? proof -11.343214682545531 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be present, $x) -> (Algeria, is presented as, proof) -> proof (6553ms) When was Algeria colonized? James Turner -11.34404902975265 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, music, $x) -> (Candlelight in Algeria, Music by, James Turner) -> James Turner (6346ms) When was Algeria colonized? an agreement -11.405995203158959 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be pass, $x) -> (Algeria, was passed along with, an agreement) -> an agreement (6380ms) When was Algeria colonized? Hardcover -11.422781066584443 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, bind, $x) -> (The Monks of Tibhirine: Faith, Love, and Terror in Algeria, Binding/format, Hardcover) -> Hardcover (5953ms) When was Algeria colonized? hundreds -11.46725306528728 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be provide, $x) -> (Algeria, is providing scholarships to, hundreds) -> hundreds (6628ms) When was Algeria colonized? suit -11.468510102649857 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be follow, $x) -> (Algeria ?, may be tempted to follow, suit) -> suit (6090ms) When was Algeria colonized? addax -11.483200155544637 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (addax, were found from, Algeria) -> addax (8018ms) When was Algeria colonized? terrorism -11.487997044516895 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, fear, $x) -> (Algeria, was heightening fears of, terrorism) -> terrorism (6090ms) When was Algeria colonized? women -11.496431585439533 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be create, $x) -> (Algeria, are entirely created by, women) -> women (6246ms) When was Algeria colonized? general reference -11.533442672229565 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be provide, $x) -> (Algeria, is provided for, general reference) -> general reference (6628ms) When was Algeria colonized? a presidential decree -11.54127746170247 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be follow, $x) -> (Algeria, were ended following, a presidential decree) -> a presidential decree (6138ms) When was Algeria colonized? mass demonstrations -11.546830842729577 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be meet, $x) -> (Algeria, was met by, mass demonstrations) -> mass demonstrations (6627ms) When was Algeria colonized? more than 150,000 deaths -11.555538543620818 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, result, $x) -> (Algeria, resulted in, more than 150,000 deaths) -> more than 150,000 deaths (6138ms) When was Algeria colonized? development centers -11.575761152963596 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be provide, $x) -> (Algeria and Morocco, are providing, development centers) -> development centers (6628ms) When was Algeria colonized? an identification -11.593052892703998 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be link, $x) -> (Algeria, is closely linked with, an identification) -> an identification (6628ms) When was Algeria colonized? WL. Ukraine -11.60297269021723 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be add, $x) -> (Algeria and Norway, were added to, WL. Ukraine) -> WL. Ukraine (5737ms) When was Algeria colonized? a complete file -11.608213345901145 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be require, $x) -> (Algeria, are required to submit, a complete file) -> a complete file (6417ms) When was Algeria colonized? the Committee -11.633234006867003 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be provide, $x) -> (Algeria, is obliged to provide, the Committee) -> the Committee (6628ms) When was Algeria colonized? 500 deaths -11.636884746567603 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, result, $x) -> (Algeria, have resulted in over, 500 deaths) -> 500 deaths (6138ms) When was Algeria colonized? an example -11.649397782814154 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be cite, $x) -> (Algeria, was cited as, an example) -> an example (6138ms) When was Algeria colonized? a conflict -11.65337200020957 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be need, $x) -> (Algeria, needs to be seen as, a conflict) -> a conflict (6553ms) When was Algeria colonized? the English-speaking world -11.671940125441777 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be forget, $x) -> (Algeria, was virtually forgotten in, the English-speaking world) -> the English-speaking world (6246ms) When was Algeria colonized? a success story -11.684193729489632 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be cite, $x) -> (Algeria, is often cited as, a success story) -> a success story (6138ms) When was Algeria colonized? a shock -11.698664643784868 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be follow, $x) -> (Algeria, was now followed by, a shock) -> a shock (6138ms) When was Algeria colonized? the U.S. -11.763896723308605 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be time, $x) -> (Algeria, were three times those of, the U.S.) -> the U.S. (6710ms) When was Algeria colonized? high food-inflation rates -11.768317708016383 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be follow, $x) -> (Algeria, were quickly followed by, high food-inflation rates) -> high food-inflation rates (6138ms) When was Algeria colonized? potential sites -11.799915644976913 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be cite, $x) -> (Libya and Algeria, have been cited as, potential sites) -> potential sites (6246ms) When was Algeria colonized? an African Union summit -11.801852644749157 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be present, $x) -> (Algeria, were presented at, an African Union summit) -> an African Union summit (6628ms) When was Algeria colonized? the U.N. committee -11.827717991417678 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be require, $x) -> (Algeria, would be required to notify, the U.N. committee) -> the U.N. committee (6417ms) When was Algeria colonized? Algeria -11.836573675847216 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be present, $x) -> (Algeria Repsol, has been present in, Algeria) -> Algeria (6710ms) When was Algeria colonized? the Tre Fontane Trappists -11.840821941547611 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be link, $x) -> (Algeria, were linked to, the Tre Fontane Trappists) -> the Tre Fontane Trappists (6710ms) When was Algeria colonized? decades -11.90601938336817 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be produce, $x) -> (Algeria and Morocco, have been producing wines for, decades) -> decades (6380ms) When was Algeria colonized? political and economic ties -11.922327148487796 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be link, $x) -> (Algeria and Malaysia, are linked by, political and economic ties) -> political and economic ties (6710ms) When was Algeria colonized? macaques -11.980113789644069 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (macaques, are also found in, Algeria and Morocco) -> macaques (8018ms) When was Algeria colonized? Hikma -12.092911204267041 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be say, $x) -> (Algeria, is said to be, Hikma) -> Hikma (6417ms) When was Algeria colonized? demand -12.143727338617966 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, result, $x) -> (Algeria , Lebanon and Jordan all, see better results in, demand) -> demand (6246ms) When was Algeria colonized? travellers -12.148730175167596 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, risk, $x) -> (Algeria, constitute a real risk to, travellers) -> travellers (6345ms) When was Algeria colonized? France -12.186488908009288 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be lose, $x) -> (Tunisia , Algeria and Morocco, was lost to, France) -> France (6471ms) When was Algeria colonized? Bank of Algeria -12.27949064396605 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (Bank of Algeria, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Bank%20of%20Algeria) -> Bank of Algeria (8018ms) When was Algeria colonized? Air Express Algeria -12.27949064396605 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (Air Express Algeria, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Air%20Express%20Algeria) -> Air Express Algeria (8018ms) When was Algeria colonized? French rule in Algeria -12.334468405164369 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (French rule in Algeria, can be found on Wikipedia at, http://en.wikipedia.org/wiki/French%20Algeria) -> French rule in Algeria (8018ms) When was Algeria colonized? movement for democracy in algeria -12.381592200477215 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (movement for democracy in algeria, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Movement%20for%20Democracy%20in%20Algeria) -> movement for democracy in algeria (8018ms) When was Algeria colonized? wines -12.389079660340984 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be produce, $x) -> (Algeria and Morocco, have been producing, wines) -> wines (6380ms) When was Algeria colonized? English -12.429976682065147 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be write, $x) -> (Algeria, now am writing in, English) -> English (6346ms) When was Algeria colonized? Alger* -12.452357483293294 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (Alger*, will find stories about, Algeria) -> Alger* (8018ms) When was Algeria colonized? Sahrawis -12.458271015816303 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be set, $x) -> (Algeria, were set up for, Sahrawis) -> Sahrawis (6471ms) When was Algeria colonized? Oil -12.479940029009379 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (Oil, is mainly found in, Algeria) -> Oil (8018ms) When was Algeria colonized? Chris Adcock -12.487540646918756 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be write, $x) -> (Algeria, was written by, Chris Adcock) -> Chris Adcock (6345ms) When was Algeria colonized? a loss -12.514174894148665 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, result, $x) -> (Algeria, would result in, a loss) -> a loss (6380ms) When was Algeria colonized? much electricity -12.550392273993324 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, hope, $x) -> (Algeria, hopes to produce as, much electricity) -> much electricity (6024ms) When was Algeria colonized? a lasting interest -12.619886380746921 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, result, $x) -> (Algeria, resulted in, a lasting interest) -> a lasting interest (6380ms) When was Algeria colonized? new breakthroughs -12.625330357183476 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, result, $x) -> (Algeria, resulted in, new breakthroughs) -> new breakthroughs (6380ms) When was Algeria colonized? a victory -12.627098782687963 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, result, $x) -> (Algeria, resulted in, a victory) -> a victory (6380ms) When was Algeria colonized? a pipeline -12.654826891928305 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, hope, $x) -> (Algeria, hopes to build, a pipeline) -> a pipeline (6024ms) When was Algeria colonized? the Purim meal -12.661448153849783 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, light, $x) -> (Algeria Many wax candles, were lit for, the Purim meal) -> the Purim meal (6471ms) When was Algeria colonized? Guantanamo Bay -12.662784674942765 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, happen, $x) -> (Algeria, has happened in, Guantanamo Bay) -> Guantanamo Bay (6710ms) When was Algeria colonized? the Islamic Republic -12.678700240971683 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, differ, $x) -> (Algeria, differ from, the Islamic Republic) -> the Islamic Republic (5953ms) When was Algeria colonized? Afghanistan -12.684525646054382 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, happen, $x) -> (Indonesia or Algeria, is now happening in, Afghanistan) -> Afghanistan (6710ms) When was Algeria colonized? Bronner -12.694103631723962 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be lose, $x) -> (French Algeria, is totally lost on, Bronner) -> Bronner (6471ms) When was Algeria colonized? terrorist attack -12.697020156285658 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, fear, $x) -> (Algeria and Morocco, have sparked fears of, terrorist attack) -> terrorist attack (6380ms) When was Algeria colonized? a semolina soup -12.722695814878879 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (a semolina soup, is also found in, Algeria) -> a semolina soup (8307ms) When was Algeria colonized? half a century -12.732318281975829 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, happen, $x) -> (Algeria, happened, half a century) -> half a century (6839ms) When was Algeria colonized? change -12.73337551624361 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, pressure, $x) -> (Algeria, has already felt the pressure for, change) -> change (6839ms) When was Algeria colonized? a Tunisian or Egyptian-style popular uprising -12.742541661649959 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, fear, $x) -> (Algeria, now fear, a Tunisian or Egyptian-style popular uprising) -> a Tunisian or Egyptian-style popular uprising (6417ms) When was Algeria colonized? rocks and mud -12.751934983280552 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (rocks and mud, were found in, Algeria deserts) -> rocks and mud (8307ms) When was Algeria colonized? a general profile -12.76010217001653 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, end up, $x) -> (Algeria, might end up with, a general profile) -> a general profile (6417ms) When was Algeria colonized? The Tuareg people -12.76349413272895 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (The Tuareg people, are also found in, Algeria) -> The Tuareg people (8307ms) When was Algeria colonized? conditions -12.78123444381815 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (conditions, found throughout, Algeria) -> conditions (8307ms) When was Algeria colonized? the Mediterranean -12.798136880685771 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (the Mediterranean, can still be found wild in, Algeria) -> the Mediterranean (8307ms) When was Algeria colonized? a much higher quality -12.802557865393549 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (a much higher quality, can be found in, Algeria) -> a much higher quality (8307ms) When was Algeria colonized? iron ore deposits -12.803804803632747 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (iron ore deposits, can be found in, Mauritania and Algeria) -> iron ore deposits (8307ms) When was Algeria colonized? the French -12.846070509032444 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who colonize algerium ? -> $x: ($x, colonize, algerium) -> (the French, had colonized, Algeria) -> the French (6839ms) When was Algeria colonized? Varroa -12.873432604810949 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (Varroa, was first found in, Algeria) -> Varroa (8716ms) When was Algeria colonized? The Tuaregs -12.889209292151502 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (The Tuaregs, can be found as well in, Algeria) -> The Tuaregs (8717ms) When was Algeria colonized? Shell beads -12.907608959762094 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (Shell beads, found in, Algeria and Israel) -> Shell beads (8716ms) When was Algeria colonized? the card -12.943853225734602 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be lose, $x) -> (Algeria, is losing, the card) -> the card (6471ms) When was Algeria colonized? history -12.948132309037078 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, differ, $x) -> (Algeria , Morocco and Egypt, greatly differ in, history) -> history (5953ms) When was Algeria colonized? Western circles -12.967809107392274 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, go unnoticed, $x) -> (Algeria, went largely unnoticed in, Western circles) -> Western circles (6417ms) When was Algeria colonized? the recordings -12.988555060122769 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be follow, $x) -> (Algeria, are following, the recordings) -> the recordings (6471ms) When was Algeria colonized? Student B -12.989556124140647 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (Student B, then finds, Algeria) -> Student B (8717ms) When was Algeria colonized? The French -12.995564528929934 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who colonize algerium ? -> $x: ($x, colonize, algerium) -> (The French, began colonizing, Algeria) -> The French (6839ms) When was Algeria colonized? the Sahrawis -13.073937469010556 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (the Sahrawis, found refuge in, Algeria) -> the Sahrawis (8716ms) When was Algeria colonized? Lebanon -13.085282371075007 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, happen, $x) -> (Algeria and Mauritania, happened in, Lebanon) -> Lebanon (6839ms) When was Algeria colonized? a piece -13.102952115987339 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (a piece, originally found in, northern Algeria) -> a piece (8716ms) When was Algeria colonized? R. pygmaea -13.159640088537861 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (R. pygmaea, is found in, Algeria\) -> R. pygmaea (8833ms) When was Algeria colonized? Gambia -13.310146710250386 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, time, $x) -> (Algeria rise and fall, could have a tough time in, Gambia) -> Gambia (6961ms) When was Algeria colonized? the role -13.332838123706711 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be link, $x) -> (Algeria, have been linked to, the role) -> the role (6961ms) When was Algeria colonized? the collision -13.387906628325062 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be produce, $x) -> (Algeria, were produced by, the collision) -> the collision (6962ms) When was Algeria colonized? L & L International -13.4107081561447 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (L & L International, find, AlgeriaUsed Aircraft) -> L & L International (8833ms) When was Algeria colonized? the seminar -13.417020580350059 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be deliver, $x) -> (Algeria, were delivered at, the seminar) -> the seminar (6961ms) When was Algeria colonized? the economic powerhouses -13.422102608969523 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be hope, $x) -> (Algeria, hopes to be one of, the economic powerhouses) -> the economic powerhouses (6961ms) When was Algeria colonized? the history -13.438877293970714 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be different, $x) -> (Algeria, was unique?very different from, the history) -> the history (6962ms) When was Algeria colonized? the cuts -13.451320629820207 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be organize, $x) -> (Algeria, was instrumental in organizing, the cuts) -> the cuts (5953ms) When was Algeria colonized? the first record -13.464385026549412 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be provide, $x) -> (Algeria, are thought to provide, the first record) -> the first record (6961ms) When was Algeria colonized? the arc -13.471592612429646 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be link, $x) -> (Algeria, is the third link in, the arc) -> the arc (6961ms) When was Algeria colonized? Kouba -13.53613595668863 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (Kouba, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Kouba,%20Algeria) -> Kouba (8833ms) When was Algeria colonized? the list -13.543078617590613 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be add, $x) -> (Algeria, can now be added to, the list) -> the list (5737ms) When was Algeria colonized? the last remaining colony -13.555094954743254 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be say, $x) -> (Algeria Western Sahara, is said to be, the last remaining colony) -> the last remaining colony (7013ms) When was Algeria colonized? the regional strategy -13.575793936049545 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be link, $x) -> (Algeria today, is linked to, the regional strategy) -> the regional strategy (7013ms) When was Algeria colonized? Tuareg -13.58393528806969 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (Tuareg, are also found in, southeastern Algeria) -> Tuareg (8833ms) When was Algeria colonized? the same offence -13.63657044586462 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, be time, $x) -> (Algeria, was tried three times for, the same offence) -> the same offence (7013ms) When was Algeria colonized? the declaration -13.794862128377344 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, hope, $x) -> (Algeria, had hoped, the declaration) -> the declaration (6024ms) When was Algeria colonized? the failure -13.888423431427857 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, result, $x) -> (Algeria, is the result of, the failure) -> the failure (7013ms) When was Algeria colonized? the second largest country -14.165217279073929 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, happen, $x) -> (Algeria, also happens to be, the second largest country) -> the second largest country (7013ms) When was Algeria colonized? half a century ago -14.167456472385997 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, happen, $x) -> (Algeria, happened, half a century ago) -> half a century ago (7013ms) When was Algeria colonized? half -14.243107765899673 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (half, found in, southeast Algeria) -> half (8834ms) When was Algeria colonized? the very word -14.395863080265826 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, result, $x) -> (Algeria, resulted in, the very word) -> the very word (7070ms) When was Algeria colonized? the most fortuitous moment -14.50192255836463 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, time, $x) -> (Algeria Kennedy, bided his time for, the most fortuitous moment) -> the most fortuitous moment (7070ms) When was Algeria colonized? the matter -14.51879253511786 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, result, $x) -> (Algeria, achieved great results in, the matter) -> the matter (7070ms) When was Algeria colonized? The macaca monkeys -14.533083860461176 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (The macaca monkeys, are found in, Algeria) -> The macaca monkeys (8872ms) When was Algeria colonized? the ball -14.5660178451571 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, time, $x) -> (Algeria, have any time on, the ball) -> the ball (7071ms) When was Algeria colonized? the guard -14.577732025751772 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, will change, $x) -> (Algeria, will require a changing of, the guard) -> the guard (5953ms) When was Algeria colonized? The slender-horned gazelle -14.579687166503284 When was Algeria colonized? -> when be [ algerium ] colonize ? -> who found algerium ? -> $x: ($x, found, algerium) -> (The slender-horned gazelle, was formerly found in, Algeria) -> The slender-horned gazelle (8872ms) When was Algeria colonized? the defeat -14.639778695564623 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, result, $x) -> (Algeria , Vietnam and Afghanistan, resulted in, the defeat) -> the defeat (7119ms) When was Algeria colonized? the government -14.670165141185779 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, end up, $x) -> (Algeria, ended up with, the government) -> the government (7119ms) When was Algeria colonized? the tournament -14.69990410867132 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, hope, $x) -> (Algeria England, had high hopes going into, the tournament) -> the tournament (6024ms) When was Algeria colonized? the international respect -14.70520933248249 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, risk, $x) -> (Algeria, now runs the risk of losing, the international respect) -> the international respect (7119ms) When was Algeria colonized? the meantime -14.736384685005952 When was Algeria colonized? -> when be [ algerium ] colonize ? -> what be the conflict of algerium ? -> $x: (algerium, conflict, $x) -> $x: (algerium, happen, $x) -> (Algeria, much will have happened in, the meantime) -> the meantime (7119ms) What is Dick Clark's date of birth? Linn County -5.946920588613317 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> what be dick clark s birth ? -> $x: (dick clark, birth, $x) -> (Dick Clark, Place of birth, Linn County) -> Linn County (3867ms) What is Dick Clark's date of birth? Mount Vernon -6.190262434654907 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> what be dick clark s birth ? -> $x: (dick clark, birth, $x) -> (Dick Clark, Place of birth, Mount Vernon) -> Mount Vernon (3867ms) What is Dick Clark's date of birth? 1928-09-14 -6.3988658451533516 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> what be dick clark s birth ? -> $x: (dick clark, birth, $x) -> (Dick Clark, Date of birth, 1928-09-14) -> 1928-09-14 (3927ms) What is Dick Clark's date of birth? 1929-11-30 -6.3988658451533516 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> what be dick clark s birth ? -> $x: (dick clark, birth, $x) -> (Dick Clark, Date of birth, 1929-11-30) -> 1929-11-30 (3867ms) What is Dick Clark's date of birth? 1944-01-05 -6.3988658451533516 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> what be dick clark s birth ? -> $x: (dick clark, birth, $x) -> (Dick Clark, Date of birth, 1944-01-05) -> 1944-01-05 (3867ms) What is Dick Clark's date of birth? Findlay -6.901282879589413 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> what be dick clark s birth ? -> $x: (dick clark, birth, $x) -> (Dick Clark, Place of birth, Findlay) -> Findlay (3927ms) What is Dick Clark's date of birth? 1929 -7.908898679885201 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> what be dick clark s birth ? -> $x: (dick clark, birth, $x) -> (Dick Clark, Date of birth, 1929) -> 1929 (3927ms) What is Dick Clark's date of birth? 1959-09-27 -8.073436171154071 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark's World of Talent, Air date of first episode, 1959-09-27) -> 1959-09-27 (5404ms) What is Dick Clark's date of birth? 1959-12-20 -8.073436171154071 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark's World of Talent, Air date of final episode, 1959-12-20) -> 1959-12-20 (5404ms) What is Dick Clark's date of birth? 2012-04-18 -8.106422827873063 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark, Date of death, 2012-04-18) -> 2012-04-18 (5404ms) What is Dick Clark's date of birth? 1963-11-23 -8.320836096546508 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark's Celebrity Party, Original air date, 1963-11-23) -> 1963-11-23 (5484ms) What is Dick Clark's date of birth? 1958-11-29 -8.320836096546508 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark's Birthday Show, Original air date, 1958-11-29) -> 1958-11-29 (5484ms) What is Dick Clark's date of birth? 1999-02-16 -8.473988431313254 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark's Rockin' Make-Out Party '99, Original air date, 1999-02-16) -> 1999-02-16 (5484ms) What is Dick Clark's date of birth? 1958-02-15 -8.473988431313254 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (The Dick Clark Show, Air date of first episode, 1958-02-15) -> 1958-02-15 (5572ms) What is Dick Clark's date of birth? 1994-01-01 -8.473988431313254 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark's All-Time 21 Hits, Volume 1, Release Date, 1994-01-01) -> 1994-01-01 (5484ms) What is Dick Clark's date of birth? 1960-09-10 -8.473988431313254 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (The Dick Clark Show, Air date of final episode, 1960-09-10) -> 1960-09-10 (5484ms) What is Dick Clark's date of birth? 1988-09-19 -8.473988431313254 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Live! Dick Clark Presents, Air date of first episode, 1988-09-19) -> 1988-09-19 (5484ms) What is Dick Clark's date of birth? 1972-12-31 -8.588852682388314 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark?s New Year?s Rockin? Eve, Air date of first episode, 1972-12-31) -> 1972-12-31 (5572ms) What is Dick Clark's date of birth? 1959-06-24 -8.61321782655575 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark, Original air date, 1959-06-24) -> 1959-06-24 (5572ms) What is Dick Clark's date of birth? 2004-11-12 -8.61321782655575 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark, Original air date, 2004-11-12) -> 2004-11-12 (5572ms) What is Dick Clark's date of birth? Santa Monica -8.672873102393357 What is Dick Clark's date of birth? -> what be [ dick clark ] s date of birth ? -> when be dick clark s death ? -> $x: (dick clark, death, $x) -> (Dick Clark, Place of death, Santa Monica) -> Santa Monica (6367ms) What is Dick Clark's date of birth? 1960-10-23 -8.678191544335583 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark Show, Original air date, 1960-10-23) -> 1960-10-23 (5572ms) What is Dick Clark's date of birth? 2003-12-31 -8.7331693055339 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Erin Brody, Dick Clark, Original air date, 2003-12-31) -> 2003-12-31 (5572ms) What is Dick Clark's date of birth? 2002-01-29 -8.7331693055339 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark, Wu Tang, Original air date, 2002-01-29) -> 2002-01-29 (5824ms) What is Dick Clark's date of birth? 1958-01-02 -8.780293100846746 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Andy Williams / Dick Clark, Original air date, 1958-01-02) -> 1958-01-02 (5824ms) What is Dick Clark's date of birth? 1994-02-14 -8.821133723451211 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark, Marisa Berenson, Teenage Fanclub, Original air date, 1994-02-14) -> 1994-02-14 (5824ms) What is Dick Clark's date of birth? 1997-05-19 -8.821133723451211 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Helen Hunt, Dick Clark, Brian Kiley, Original air date, 1997-05-19) -> 1997-05-19 (5824ms) What is Dick Clark's date of birth? 2000-12-28 -8.856869268230119 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (David Alan Grier, Dick Clark, Amy Sedaris, Original air date, 2000-12-28) -> 2000-12-28 (5824ms) What is Dick Clark's date of birth? 2006-10-25 -8.888400631270331 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Sarah Jessica Parker, Stephen King, Dick Clark Memorabelia, Original air date, 2006-10-25) -> 2006-10-25 (5824ms) What is Dick Clark's date of birth? 1980-06-03 -8.916428509528298 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark / Denise McKenna / Sarah Purcell / Flip Wilson, Original air date, 1980-06-03) -> 1980-06-03 (5904ms) What is Dick Clark's date of birth? 1966-11-20 -8.941506084811742 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dave Clark 5 / Bobby Vinton / Barbara McNair / Dick Cavett, Original air date, 1966-11-20) -> 1966-11-20 (5904ms) What is Dick Clark's date of birth? 1980-03-04 -8.941506084811742 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Loni Anderson / Dick Clark / Peggy Fleming / Gallagher / Steve Martin, Original air date, 1980-03-04) -> 1980-03-04 (5904ms) What is Dick Clark's date of birth? Myocardial infarction -8.960359421255085 What is Dick Clark's date of birth? -> what be [ dick clark ] s date of birth ? -> when be dick clark s death ? -> $x: (dick clark, death, $x) -> (Dick Clark, Cause of death, Myocardial infarction) -> Myocardial infarction (6367ms) What is Dick Clark's date of birth? David Spade -9.387531776996482 What is Dick Clark's date of birth? -> what be [ dick clark ] s date of birth ? -> what be dick clark s character ? -> $x: (dick clark, character, $x) -> $x: ($x, character, dick clark) -> (David Spade, Characters played, Dick Clark's Receptionist) -> David Spade (6671ms) What is Dick Clark's date of birth? 1978 -9.58346900588592 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark's LIVE Wednesday, Air date of first episode, 1978) -> 1978 (5904ms) What is Dick Clark's date of birth? The Savage Seven -9.900431559598506 What is Dick Clark's date of birth? -> what be [ dick clark ] s date of birth ? -> what be dick clark s character ? -> $x: (dick clark, character, $x) -> $x: ($x, production, dick clark) -> (The Savage Seven, Production companies, Dick Clark Productions) -> The Savage Seven (6457ms) What is Dick Clark's date of birth? 1994 -9.913335573075836 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark's American Bandstand Gold: 1965-1975, Publication date, 1994) -> 1994 (5904ms) What is Dick Clark's date of birth? The Woman Who Willed a Miracle -9.918501898480361 What is Dick Clark's date of birth? -> what be [ dick clark ] s date of birth ? -> what be dick clark s character ? -> $x: (dick clark, character, $x) -> $x: ($x, production, dick clark) -> (The Woman Who Willed a Miracle, Production companies, Dick Clark Productions) -> The Woman Who Willed a Miracle (6456ms) What is Dick Clark's date of birth? 2001 -9.949987413874716 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark's #1's: 50s to 70s "When AM Radio Was King", Volume 6, Release Date, 2001) -> 2001 (5983ms) What is Dick Clark's date of birth? 1986 -9.984021266045104 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark's easygoing guide to good grooming, Publication date, 1986) -> 1986 (6020ms) What is Dick Clark's date of birth? 2012 -10.098885517120163 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark's Primetime New Year's Rockin' Eve 2013, Initial release date, 2012) -> 2012 (6020ms) What is Dick Clark's date of birth? 1979 -10.1232506612876 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark Architecture, Date founded, 1979) -> 1979 (6020ms) What is Dick Clark's date of birth? 1957 -10.1232506612876 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dick Clark Productions, Date founded, 1957) -> 1957 (6020ms) What is Dick Clark's date of birth? 1999 -10.259695468625246 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (American Bandstand: Dick Clark and the Making of a Rock 'n' Roll Empire, Publication date, 1999) -> 1999 (6020ms) What is Dick Clark's date of birth? 1997 -10.259695468625246 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (American Bandstand: Dick Clark and the making of a rock 'n' roll empire, Publication date, 1997) -> 1997 (6020ms) What is Dick Clark's date of birth? 2000 -10.290325935578595 What is Dick Clark's date of birth? -> what be [ dick clark s ] date of birth ? -> when be dick clark s date ? -> $x: (dick clark, date, $x) -> (Dicks Clarks Amern Band Lit G, Publication date, 2000) -> 2000 (6099ms) What is Dick Clark's date of birth? J. D. Santen -12.360862958217927 What is Dick Clark's date of birth? -> what be [ dick clark ] s date of birth ? -> who train dick clark ? -> $x: ($x, train, dick clark) -> (J. D. Santen, is trained by, Dick Clark) -> J. D. Santen (9912ms) What is Dick Clark's date of birth? true -12.4004941202205 What is Dick Clark's date of birth? -> what be [ dick clark ] s date of birth ? -> what be dick clark s character ? -> $x: (dick clark, character, $x) -> $x: (dick clark, production, $x) -> (Dick Clark's World of Talent, Currently in production, true) -> true (6367ms) Who did the Prince Edward marry? a German princess -0.9192973410028679 Who did the Prince Edward marry? -> $x: (the Prince Edward, marry, $x) -> (the English Prince Edward, had married, a German princess) -> a German princess (3522ms) Who did the Prince Edward marry? Princess Alexandra -1.5577213012568014 Who did the Prince Edward marry? -> $x: (the Prince Edward, marry, $x) -> $x: (prince edward, marry, $x) -> (1863 Edward , Prince, marries, Princess Alexandra) -> Princess Alexandra (4909ms) Who did the Prince Edward marry? Sophie Rhys-Jones -2.0589890012191456 Who did the Prince Edward marry? -> $x: (the Prince Edward, marry, $x) -> $x: (prince edward, marry, $x) -> (Prince Edward, married, Sophie Rhys-Jones) -> Sophie Rhys-Jones (4908ms) Who did the Prince Edward marry? Joan -3.042505866562246 Who did the Prince Edward marry? -> $x: (the Prince Edward, marry, $x) -> $x: (prince edward, marry, $x) -> (Prince Edward, eventually married, Joan) -> Joan (4972ms) Who did the Prince Edward marry? Giselle -5.973846836978462 Who did the Prince Edward marry? -> $x: (the Prince Edward, marry, $x) -> $x: (prince edward, marry, $x) -> $x: ($x, want to marry, prince edward) -> (Giselle, wants to marry, Prince Edward) -> Giselle (6213ms) Who did the Prince Edward marry? a pauper -8.933813526600682 Who did the Prince Edward marry? -> who do [ the prince edward ] marry ? -> who be the prince edward live ? -> $x: (the prince edward, live, $x) -> $x: (prince edward, live, $x) -> (Prince Edward, has to live as, a pauper) -> a pauper (6516ms) Who did the Prince Edward marry? the American -9.447422903416959 Who did the Prince Edward marry? -> who do [ the prince edward ] marry ? -> who marry the prince edward ? -> $x: ($x, marry, the prince edward) -> $x: ($x, marry, prince edward) -> (the American, married, Prince Edward) -> the American (7373ms) Who did the Prince Edward marry? the Countess -9.864471581771085 Who did the Prince Edward marry? -> who do [ the prince edward ] marry ? -> who marry the prince edward ? -> $x: ($x, marry, the prince edward) -> $x: ($x, marry, prince edward) -> (the Countess, is married to, Prince Edward) -> the Countess (7373ms) Who did the Prince Edward marry? Sophie Rhys -10.122988307493612 Who did the Prince Edward marry? -> who do [ the prince edward ] marry ? -> who marry the prince edward ? -> $x: ($x, marry, the prince edward) -> $x: ($x, marry, prince edward) -> (Sophie Rhys, married, Prince Edward) -> Sophie Rhys (7373ms) Who did the Prince Edward marry? Jasper -10.507542066840546 Who did the Prince Edward marry? -> who do [ the prince edward ] marry ? -> who be the prince edward live ? -> $x: (the prince edward, live, $x) -> $x: (prince edward, live, $x) -> (Prince Edward Island, Lived in, Jasper) -> Jasper (6515ms) Who did the Prince Edward marry? Can gays and lesbians -10.815583378151233 Who did the Prince Edward marry? -> who do [ the prince edward ] marry ? -> who marry the prince edward ? -> $x: ($x, marry, the prince edward) -> $x: ($x, marry, prince edward) -> (Can gays and lesbians, get married on, Prince Edward Island) -> Can gays and lesbians (7373ms) Who did the Prince Edward marry? Denmark -11.150841417961278 Who did the Prince Edward marry? -> who do [ the prince edward ] marry ? -> who marry the prince edward ? -> $x: ($x, marry, the prince edward) -> $x: ($x, marry, prince edward) -> (Denmark, married, Prince Albert Edward) -> Denmark (7373ms) Who did the Prince Edward marry? Sophie -11.483345467361715 Who did the Prince Edward marry? -> who do [ the prince edward ] marry ? -> who marry the prince edward ? -> $x: ($x, marry, the prince edward) -> $x: ($x, marry, prince edward) -> (Sophie, would marry, Prince Edward) -> Sophie (7660ms) Who did the Prince Edward marry? 1881 -11.555135666595854 Who did the Prince Edward marry? -> who do [ the prince edward ] marry ? -> who be the prince edward live ? -> $x: (the prince edward, live, $x) -> $x: (prince edward, live, $x) -> (Prince Edward Island, living, 1881) -> 1881 (6515ms) Who did the Prince Edward marry? grades -12.097033941303053 Who did the Prince Edward marry? -> who do [ the prince edward ] marry ? -> who be the prince edward live ? -> $x: (the prince edward, live, $x) -> $x: (prince edward, live, $x) -> $x: (prince edward, attend school, $x) -> (Prince Edward Island, attend school from, grades) -> grades (9017ms) Who did the Prince Edward marry? The couple -12.136385898633055 Who did the Prince Edward marry? -> who do [ the prince edward ] marry ? -> who marry the prince edward ? -> $x: ($x, marry, the prince edward) -> $x: ($x, marry, prince edward) -> (The couple, were married in, Prince Edward County) -> The couple (7660ms) Who did the Prince Edward marry? Tewkesbury -12.328860527133024 Who did the Prince Edward marry? -> who do [ the prince edward ] marry ? -> who be the prince edward live ? -> $x: (the prince edward, live, $x) -> $x: (prince edward, live, $x) -> $x: (prince edward, be be kill, $x) -> (Edward Prince, is killed at, Tewkesbury) -> Tewkesbury (8361ms) Who did the Prince Edward marry? the battle -12.724613342989322 Who did the Prince Edward marry? -> who do [ the prince edward ] marry ? -> who be the prince edward live ? -> $x: (the prince edward, live, $x) -> $x: (prince edward, live, $x) -> $x: (prince edward, be be kill, $x) -> (Prince Edward, was killed during, the battle) -> the battle (8361ms) Who did the Prince Edward marry? the battlefield -12.819287068186696 Who did the Prince Edward marry? -> who do [ the prince edward ] marry ? -> who be the prince edward live ? -> $x: (the prince edward, live, $x) -> $x: (prince edward, live, $x) -> $x: (prince edward, be be kill, $x) -> (Edward Prince, was killed on, the battlefield) -> the battlefield (8361ms) When was the White House built? 1936 3.274248426432216 When was the White House built? -> $x: (the White House, was built in, $x) -> (the white house, was built in, 1936) -> 1936 (3111ms) When was the White House built? 1792 3.100945678320899 When was the White House built? -> $x: (the White House, was built in, $x) -> (The White House, was built in, 1792) -> 1792 (3111ms) When was the White House built? 1902 3.0093862479446227 When was the White House built? -> $x: (the White House, was built in, $x) -> (the White House, was originally built in, 1902) -> 1902 (3111ms) When was the White House built? 1890 2.95721856515009 When was the White House built? -> $x: (the White House, was built in, $x) -> (The Little White House, was built in, 1890) -> 1890 (3111ms) When was the White House built? 1904 2.928988852228486 When was the White House built? -> $x: (the White House, was built in, $x) -> (The white clapboard house, was built in, 1904) -> 1904 (3781ms) When was the White House built? 1868 2.917979831095663 When was the White House built? -> $x: (the White House, was built in, $x) -> (The White County Court House, was built in, 1868) -> 1868 (3781ms) When was the White House built? 1943 2.5750159280941687 When was the White House built? -> $x: (the White House, was built in, $x) -> (?The White House ?, was built in, 1943) -> 1943 (3781ms) When was the White House built? 1856 1.0747222688631815 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be erect in, $x) -> (the White House, was erected in, 1856) -> 1856 (5177ms) When was the White House built? 1824 0.987578907497134 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be construct in, $x) -> (the White House, was constructed in, 1824) -> 1824 (5674ms) When was the White House built? 1817 0.9765117453591254 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be rebuild in, $x) -> (the White House, was rebuilt in, 1817) -> 1817 (4958ms) When was the White House built? 1906 0.8380965272559369 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> (the White House, built in, 1906) -> 1906 (4958ms) When was the White House built? 1911 0.7639841993116216 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be demolish in, $x) -> (the White House stables, had been demolished back in, 1911) -> 1911 (5318ms) When was the White House built? 1822 0.701994597736292 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> (white house, were built in, 1822) -> 1822 (5033ms) When was the White House built? 1876 0.1323653010010104 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> ('s Home Page White County Heritage House, built in, 1876) -> 1876 (5223ms) When was the White House built? 1786 -0.1306489263299646 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, date back to, $x) -> (the Bishop White House, dates back to, 1786) -> 1786 (6153ms) When was the White House built? March 2009 -0.3085413647584718 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be complete in, $x) -> (the White House, was completed in, March 2009) -> March 2009 (6054ms) When was the White House built? 1800 -0.3387941715182232 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be complete in, $x) -> (The White House, was completed in, 1800) -> 1800 (6054ms) When was the White House built? 1878 -0.5511425234581182 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, date back to, $x) -> (The White House Easter Egg Roll, dates back to, 1878) -> 1878 (6154ms) When was the White House built? 2007 -0.6540577704294841 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be remodel in, $x) -> (the White House Situation Room, was remodeled in, 2007) -> 2007 (5798ms) When was the White House built? WWII -0.8344920450446978 When was the White House built? -> $x: (the White House, was built in, $x) -> (the White House East Wing, was built in, WWII) -> WWII (5318ms) When was the White House built? December -1.0138564183875425 When was the White House built? -> $x: (the White House, was built in, $x) -> (The White House, was built in, December) -> December (5318ms) When was the White House built? the District -1.0145407061036305 When was the White House built? -> $x: (the White House, was built in, $x) -> (The White House, is the oldest public building in, the District) -> the District (5358ms) When was the White House built? January 2012 -1.2645105950915645 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, open in, $x) -> (the White House, opened in, January 2012) -> January 2012 (5534ms) When was the White House built? 2001 -1.3909694058839013 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> $x: (white house, institute in, $x) -> (the White House surveillance program, was instituted in, 2001) -> 2001 (9231ms) When was the White House built? large part -1.4167807310273894 When was the White House built? -> $x: (the White House, was built in, $x) -> (the White House, were built in, large part) -> large part (5412ms) When was the White House built? Dec 17 , 1999 -1.9048204162085258 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, date back to, $x) -> (the White House memo, dates back to, Dec 17 , 1999) -> Dec 17 , 1999 (6154ms) When was the White House built? 1975 -1.9596791404288458 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> $x: (white house, buy in, $x) -> (Even the U.S. White House, bought one in, 1975) -> 1975 (9070ms) When was the White House built? April 1977 -1.9905942953009457 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, in acquire, $x) -> (the White House, had been acquired in, April 1977) -> April 1977 (8646ms) When was the White House built? January -2.0143661778167683 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be close in, $x) -> (The White House, is closed in, January) -> January (5798ms) When was the White House built? 2008 -2.0597032567331213 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> $x: (white house, design in, $x) -> (a White House, designed in, 2008) -> 2008 (9662ms) When was the White House built? 2009 -2.1288617244092385 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> $x: (white house, program in, $x) -> (The White House and teachers unions, killed the program in, 2009) -> 2009 (9231ms) When was the White House built? 1970 -2.1512888076749053 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> $x: (white house, date to, $x) -> (? White Row housing ?, dates back to about, 1970) -> 1970 (9726ms) When was the White House built? Washington -2.2190381831561496 When was the White House built? -> $x: (the White House, was built in, $x) -> (the White House, was built in, Washington) -> Washington (5410ms) When was the White House built? 1957 -2.3393615990845618 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> $x: (white house, buy in, $x) -> (The big , white-columned house Presley, bought in, 1957) -> 1957 (9070ms) When was the White House built? the late 1700 -2.421777803388036 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be design in, $x) -> (the White House, was designed in, the late 1700) -> the late 1700 (6053ms) When was the White House built? the 1700s -2.438430365931743 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> (his big , white farm house, was built in, the 1700s) -> the 1700s (5411ms) When was the White House built? 1949-52 -2.550907134701113 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be renovate in, $x) -> (the White House, was thoroughly renovated in, 1949-52) -> 1949-52 (6119ms) When was the White House built? a hill -2.5789598652161154 When was the White House built? -> $x: (the White House, was built on, $x) -> (The typical little white houses, are built on, a hill) -> a hill (5410ms) When was the White House built? 1845-46 -2.7727179178294357 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> (a Georgian style white clapboard house, was built in, 1845-46) -> 1845-46 (5534ms) When was the White House built? http://en.wikipedia.org/wiki/Backstairs%20at%20the%20White%20House -3.1344692675107924 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, be found on, $x) -> (backstairs at the white house, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Backstairs%20at%20the%20White%20House) -> http://en.wikipedia.org/wiki/Backstairs%20at%20the%20White%20House (8215ms) When was the White House built? Wednesday -3.1909897396388307 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, be finish on, $x) -> (the White House Situation Room, was just finishing on, Wednesday) -> Wednesday (8923ms) When was the White House built? dc -3.260501102845401 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> (White house, is a building located in the city, dc) -> dc (5600ms) When was the White House built? http://en.wikipedia.org/wiki/First%20White%20House%20of%20the%20Confederacy -3.310398103345414 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, be found on, $x) -> (First White House of the Confederacy, can be found on Wikipedia at, http://en.wikipedia.org/wiki/First%20White%20House%20of%20the%20Confederacy) -> http://en.wikipedia.org/wiki/First%20White%20House%20of%20the%20Confederacy (8214ms) When was the White House built? fact -3.363405191827636 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: ($x, be the foundation of, the White House) -> (fact, are the foundation of, the White House) -> fact (8214ms) When was the White House built? the capital -3.530632736280156 When was the White House built? -> $x: (the White House, was built in, $x) -> (The White House, is the oldest federal building in, the capital) -> the capital (5674ms) When was the White House built? steps -3.5480732494837826 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> (beautiful white gray stone houses, are built in, steps) -> steps (5674ms) When was the White House built? the Pacific -3.5482670893873496 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: ($x, be the cornerstone of, the White House) -> (the Pacific, is the cornerstone of, the White House) -> the Pacific (8923ms) When was the White House built? September -3.596444322537911 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: ($x, proclaim by, the White House) -> (September, proclaimed annually by, the White House) -> September (8431ms) When was the White House built? the same year -3.634546198201247 When was the White House built? -> $x: (the White House, was built in, $x) -> (The William White House, was apparently built in, the same year) -> the same year (5674ms) When was the White House built? 35 years -3.7099719870881165 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, have be base on, $x) -> (the White House, has been based on, 35 years) -> 35 years (8133ms) When was the White House built? College Drive -3.7105619379099446 When was the White House built? -> $x: (the White House, was built on, $x) -> ('the white house, was built on, College Drive) -> College Drive (5894ms) When was the White House built? recent years -3.712308129962964 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be abandon in, $x) -> (the White House, has been abandoned in, recent years) -> recent years (5985ms) When was the White House built? an invitation -3.7149310899935775 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be open in, $x) -> (The White House, is opening its doors in, an invitation) -> an invitation (6119ms) When was the White House built? Denver -3.8586531918980524 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be erect in, $x) -> (the White House, had been erected in, Denver) -> Denver (5894ms) When was the White House built? an agreement -3.863576090880101 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be close in, $x) -> (the White House, apparently are closing in on, an agreement) -> an agreement (5894ms) When was the White House built? a deal -3.9669570810210653 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be close in, $x) -> (the White House, were closing in on, a deal) -> a deal (5894ms) When was the White House built? the USA -3.9996428003073214 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be be develop in, $x) -> (the White House web page, were either developed in, the USA) -> the USA (6054ms) When was the White House built? full public view -4.048588670493872 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be open in, $x) -> (the Bush White House, is now open in, full public view) -> full public view (6119ms) When was the White House built? a grid system -4.201476505134028 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> (It?s white houses, are built in, a grid system) -> a grid system (5985ms) When was the White House built? the back -4.243362773031283 When was the White House built? -> $x: (the White House, was built on, $x) -> (The White House and Capitol, were built on, the back) -> the back (5985ms) When was the White House built? Adobe Illustrator -4.298016510984263 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be open in, $x) -> (the White House PDF file, is opened in, Adobe Illustrator) -> Adobe Illustrator (6119ms) When was the White House built? the United States -4.555783819636918 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, restore in, $x) -> (the White House, can restore confidence in, the United States) -> the United States (6195ms) When was the White House built? Arizona -4.642766418094627 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, be pile on, $x) -> (the White House, are piling the pressure on, Arizona) -> Arizona (8339ms) When was the White House built? the creation -4.722371095876105 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be build after, $x) -> (The White House, was built after, the creation) -> the creation (6195ms) When was the White House built? various internet sites -4.744558834259375 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, be found on, $x) -> (the White House, can be found on, various internet sites) -> various internet sites (8214ms) When was the White House built? rival programs -4.785951818489222 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, be found on, $x) -> (the White House, would be found only on, rival programs) -> rival programs (8214ms) When was the White House built? Iran -4.787318613101669 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> $x: (white house, program in, $x) -> (the White House, sees nuclear-weapons programs in, Iran) -> Iran (9473ms) When was the White House built? the US capital -4.819274792812869 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, close in, $x) -> (the White House, has closed streets in, the US capital) -> the US capital (6351ms) When was the White House built? persona -4.823243655446862 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, have be base on, $x) -> (the White House, has always been based on, persona) -> persona (8132ms) When was the White House built? a property high up -4.857571865619353 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, be situate on, $x) -> (The White House, is situated on, a property high up) -> a property high up (8028ms) When was the White House built? the GOP nominee -4.858646502063664 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: ($x, be the only way to, the White House) -> (the GOP nominee, is the only way to win, the White House) -> the GOP nominee (8028ms) When was the White House built? rocks -4.9334672685340974 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> (tall white houses, built on, rocks) -> rocks (6373ms) When was the White House built? three themes -4.952090014690254 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> (White House and Department, is built on, three themes) -> three themes (6372ms) When was the White House built? Vietnam -4.999064886520512 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, complete in, $x) -> (the White House, completed assignments in, Vietnam) -> Vietnam (6373ms) When was the White House built? Gate Street -5.053452465385687 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> (the white frame house Elijah Walker, built on, Gate Street) -> Gate Street (6372ms) When was the White House built? rules -5.068844015646047 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> (the White House?s Office, build on, rules) -> rules (6373ms) When was the White House built? 1792 and 1800 -5.110983675327038 When was the White House built? -> when be [ the white house ] build ? -> what be the white house build ? -> $x: (the white house, build, $x) -> (The White House, was built between, 1792 and 1800) -> 1792 and 1800 (13582ms) When was the White House built? Thomas Jefferson -5.185120628850512 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, date back to, $x) -> (the White House, dates back to, Thomas Jefferson) -> Thomas Jefferson (6566ms) When was the White House built? the shape -5.2120980237143 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be construct in, $x) -> (the White House, is constructed in, the shape) -> the shape (6566ms) When was the White House built? spending -5.26593052415297 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> $x: (white house, have fit, $x) -> (the White House, had to fit, spending) -> spending (9726ms) When was the White House built? daddy -5.393539974712716 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: ($x, want to come to, the White House) -> (daddy, want to come to, the White House) -> daddy (8431ms) When was the White House built? the White House lawn -5.412455847586373 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, erect on, $x) -> (the White House mural, erected on, the White House lawn) -> the White House lawn (8431ms) When was the White House built? a small hill -5.488934245810724 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, sit atop, $x) -> (the white columned house, sits atop, a small hill) -> a small hill (8500ms) When was the White House built? http://en.wikipedia.org/wiki/Little%20White%20House -5.525204622566941 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, found on, $x) -> (Little White House, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Little%20White%20House) -> http://en.wikipedia.org/wiki/Little%20White%20House (11279ms) When was the White House built? http://en.wikipedia.org/wiki/David%20White%20House -5.525204622566941 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, found on, $x) -> (David White House, can be found on Wikipedia at, http://en.wikipedia.org/wiki/David%20White%20House) -> http://en.wikipedia.org/wiki/David%20White%20House (11279ms) When was the White House built? importance -5.543590972665452 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> (the White House, had systematically built up in, importance) -> importance (6645ms) When was the White House built? http://en.wikipedia.org/wiki/White%20House%20Black%20Market -5.5958903155362085 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, found on, $x) -> (White House Black Market, can be found on Wikipedia at, http://en.wikipedia.org/wiki/White%20House%20Black%20Market) -> http://en.wikipedia.org/wiki/White%20House%20Black%20Market (11279ms) When was the White House built? http://en.wikipedia.org/wiki/White%20House%20Press%20Secretary -5.5958903155362085 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, found on, $x) -> (White House Press Secretary, can be found on Wikipedia at, http://en.wikipedia.org/wiki/White%20House%20Press%20Secretary) -> http://en.wikipedia.org/wiki/White%20House%20Press%20Secretary (11279ms) When was the White House built? http://en.wikipedia.org/wiki/Andrew%20Dickson%20White%20House -5.5958903155362085 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, found on, $x) -> (Andrew Dickson White House, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Andrew%20Dickson%20White%20House) -> http://en.wikipedia.org/wiki/Andrew%20Dickson%20White%20House (11279ms) When was the White House built? http://en.wikipedia.org/wiki/White%20House%20Historical%20Association -5.5958903155362085 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, found on, $x) -> (white house historical association, can be found on Wikipedia at, http://en.wikipedia.org/wiki/White%20House%20Historical%20Association) -> http://en.wikipedia.org/wiki/White%20House%20Historical%20Association (11279ms) When was the White House built? Jackson Hole -5.616894863079959 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> (a white-painted ranch house, built in, Jackson Hole) -> Jackson Hole (6645ms) When was the White House built? Main Street -5.641353940552146 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, have stand on, $x) -> (The white house, has stood on, Main Street) -> Main Street (8431ms) When was the White House built? http://en.wikipedia.org/wiki/White%20House%20Chief%20of%20Staff -5.657151249442907 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, found on, $x) -> (White House Chief of Staff, can be found on Wikipedia at, http://en.wikipedia.org/wiki/White%20House%20Chief%20of%20Staff) -> http://en.wikipedia.org/wiki/White%20House%20Chief%20of%20Staff (11432ms) When was the White House built? http://en.wikipedia.org/wiki/White%20House%20Deputy%20Chief%20of%20Staff -5.710754566611268 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, found on, $x) -> (White House Deputy Chief of Staff, can be found on Wikipedia at, http://en.wikipedia.org/wiki/White%20House%20Deputy%20Chief%20of%20Staff) -> http://en.wikipedia.org/wiki/White%20House%20Deputy%20Chief%20of%20Staff (11432ms) When was the White House built? http://en.wikipedia.org/wiki/White%20House%20Office%20of%20Public%20Engagement%20and%20Intergovernmental%20Affairs -5.710754566611268 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, found on, $x) -> (White House Office of Public Liaison, can be found on Wikipedia at, http://en.wikipedia.org/wiki/White%20House%20Office%20of%20Public%20Engagement%20and%20Intergovernmental%20Affairs) -> http://en.wikipedia.org/wiki/White%20House%20Office%20of%20Public%20Engagement%20and%20Intergovernmental%20Affairs (11432ms) When was the White House built? behalf of human dignity -5.712942950392456 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> (the White House, will build on, behalf of human dignity) -> behalf of human dignity (6667ms) When was the White House built? the top -5.746653585945351 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, be perch on, $x) -> (The bright white houses, are perched on, the top) -> the top (8028ms) When was the White House built? the tradition -5.7567494229254095 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be design in, $x) -> (The White House Rose Garden, is designed in, the tradition) -> the tradition (6667ms) When was the White House built? the last day -5.789370521382115 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (the White House, be extend in, $x) -> (the White House, has been greatly extended in, the last day) -> the last day (6667ms) When was the White House built? November 1 , 1800 -5.829245813461184 When was the White House built? -> when be [ the white house ] build ? -> when be the white house complete ? -> $x: (the white house, be complete on, $x) -> (the White House, was completed on, November 1 , 1800) -> November 1 , 1800 (15128ms) When was the White House built? http://en.wikipedia.org/wiki/White%2DMeyer%20House -5.855071189756855 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, found on, $x) -> (White-Meyer House, can be found on Wikipedia at, http://en.wikipedia.org/wiki/White%2DMeyer%20House) -> http://en.wikipedia.org/wiki/White%2DMeyer%20House (11432ms) When was the White House built? a cliff -5.869027857106126 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, sit up on, $x) -> (The White House Ruins, sit high up on, a cliff) -> a cliff (8214ms) When was the White House built? http://en.wikipedia.org/wiki/White%2Dshouldered%20House%20Moth -5.902194985069701 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, found on, $x) -> (White-shouldered House Moth, can be found on Wikipedia at, http://en.wikipedia.org/wiki/White%2Dshouldered%20House%20Moth) -> http://en.wikipedia.org/wiki/White%2Dshouldered%20House%20Moth (11432ms) When was the White House built? http://en.wikipedia.org/wiki/White%2Dbellied%20Lesser%20House%20Bat -5.943035607674166 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, found on, $x) -> (White-bellied Lesser House Bat, can be found on Wikipedia at, http://en.wikipedia.org/wiki/White%2Dbellied%20Lesser%20House%20Bat) -> http://en.wikipedia.org/wiki/White%2Dbellied%20Lesser%20House%20Bat (11432ms) When was the White House built? IRS activities -5.950016464247196 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> $x: (white house, date to, $x) -> (the White House, was brought up-to-date on, IRS activities) -> IRS activities (9791ms) When was the White House built? the assumption -6.115672814947599 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, be premise on, $x) -> (the White House today, is premised on, the assumption) -> the assumption (8132ms) When was the White House built? http://en.wikipedia.org/wiki/White%20House%20Bridge -6.184937756946771 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, found on, $x) -> (white_house_bridge, can be found on Wikipedia at, http://en.wikipedia.org/wiki/White%20House%20Bridge) -> http://en.wikipedia.org/wiki/White%20House%20Bridge (11432ms) When was the White House built? the work -6.281075729617557 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> (the White House, builds on, the work) -> the work (6711ms) When was the White House built? positions -6.296296372190527 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, take credit for, $x) -> (the White House, is taking credit for, positions) -> positions (11586ms) When was the White House built? the uncompensated labor -6.324408061550689 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, be build through, $x) -> (the White House, were built through, the uncompensated labor) -> the uncompensated labor (8500ms) When was the White House built? ?science ? -6.419777285091763 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, draw upon, $x) -> (the White House, has drawn upon, ?science ?) -> ?science ? (10969ms) When was the White House built? the d?tente policy -6.4557944198670745 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> (the White House, determined to build on, the d?tente policy) -> the d?tente policy (6711ms) When was the White House built? Deponent -6.752670687864402 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> $x: (white house, forge in, $x) -> (the White House, forged in, Deponent) -> Deponent (9916ms) When was the White House built? the hillside -6.845725682170979 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> (A dozen white-washed houses, are built on, the hillside) -> the hillside (6711ms) When was the White House built? congressional investigations -6.851892483149247 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, to relate, $x) -> (the White House, related to, congressional investigations) -> congressional investigations (11216ms) When was the White House built? the early 1980s -6.86826159828578 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> $x: (white house, date to, $x) -> (White House demonstrations, date to, the early 1980s) -> the early 1980s (9942ms) When was the White House built? a seminal time -6.906886768414504 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, to relate, $x) -> (the white house, relate to, a seminal time) -> a seminal time (11216ms) When was the White House built? a music video creation -7.057399214279879 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, to relate, $x) -> (the White House, related to, a music video creation) -> a music video creation (11216ms) When was the White House built? the floor -7.122908918038523 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, found on, $x) -> (the White House cleaning staff, finds on, the floor) -> the floor (8646ms) When was the White House built? jobs -7.140442517771194 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, take credit for, $x) -> (the White House, takes credit for creating, jobs) -> jobs (11586ms) When was the White House built? slaves -7.15044362213694 When was the White House built? -> when be [ the white house ] build ? -> what be the white house build ? -> $x: (the white house, build, $x) -> (the White House, was built partly by, slaves) -> slaves (15129ms) When was the White House built? the mandate -7.258126608454776 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, found on, $x) -> (the White House, find a compromise on, the mandate) -> the mandate (8646ms) When was the White House built? a 20 turn campaign season -7.280874059880485 When was the White House built? -> when be [ the white house ] build ? -> what be the white house build ? -> $x: (the white house, build, $x) -> (the White House, is built round, a 20 turn campaign season) -> a 20 turn campaign season (15128ms) When was the White House built? Afghanistan -7.4868362674586955 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, expand on, $x) -> (the White House, expanded their cooperation on, Afghanistan) -> Afghanistan (10969ms) When was the White House built? the media -7.693916018805702 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, aim at provide, $x) -> (the White House, is aimed at providing, the media) -> the media (10742ms) When was the White House built? the corridor -7.749207447650882 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> $x: (white house, gathering in, $x) -> (the White House messengers, gathered in, the corridor) -> the corridor (9964ms) When was the White House built? Solyndra -8.092806273853874 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, to relate, $x) -> (White House, related to, Solyndra) -> Solyndra (11216ms) When was the White House built? the pattern -8.09804189676849 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, be a continuation of, $x) -> (the White House, was only a continuation of, the pattern) -> the pattern (11586ms) When was the White House built? the past few years -8.182017603319109 When was the White House built? -> $x: (the White House, was built in, $x) -> $x: (white house, build in, $x) -> $x: (white house, purchase in, $x) -> (the White House, had purchased in, the past few years) -> the past few years (9987ms) When was the White House built? the liberal tax revolt -8.493929409437182 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, to relate, $x) -> (the White House, is also related to, the liberal tax revolt) -> the liberal tax revolt (11217ms) When was the White House built? the defensive -8.524026053583153 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (the White House, found on, $x) -> (The White House, found itself on, the defensive) -> the defensive (8646ms) When was the White House built? the war -8.541184120213547 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, to relate, $x) -> (the White House, related to, the war) -> the war (11216ms) When was the White House built? the meaning -8.68589467213137 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, to relate, $x) -> (the White House, specifically related to, the meaning) -> the meaning (11216ms) When was the White House built? the raid -8.744314679744999 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, take credit for, $x) -> (The White House, took credit for, the raid) -> the raid (11586ms) When was the White House built? children 's health -8.955496911324525 When was the White House built? -> $x: (the White House, was built on, $x) -> $x: (white house, build on, $x) -> $x: (white house, to relate, $x) -> (numerous White House conferences, related to, children 's health) -> children 's health (11216ms) What was the name of Patsy Cline's producer? Owen Bradley -4.056860612786702 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> (The Patsy Cline Story, Producers, Owen Bradley) -> Owen Bradley (6466ms) What was the name of Patsy Cline's producer? Chet Atkins -4.448577161324726 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> (Remembering Patsy Cline & Jim Reeves, Producers, Chet Atkins) -> Chet Atkins (6465ms) What was the name of Patsy Cline's producer? The Best of Patsy Cline -6.012400328047809 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (The Best of Patsy Cline, Primary release, The Best of Patsy Cline) -> The Best of Patsy Cline (8595ms) What was the name of Patsy Cline's producer? Patsy Cline -6.054545849384213 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, album, Patsy Cline) -> (Patsy Cline, Albums, The Best of Patsy Cline) -> Patsy Cline (9429ms) What was the name of Patsy Cline's producer? The Wonderful World of Patsy Cline -6.349153726503442 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (The Wonderful World of Patsy Cline, Primary release, The Wonderful World of Patsy Cline) -> The Wonderful World of Patsy Cline (8595ms) What was the name of Patsy Cline's producer? Very Best of Patsy Cline -6.349153726503442 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (Very Best of Patsy Cline, Primary release, The Very Best of Patsy Cline) -> Very Best of Patsy Cline (8595ms) What was the name of Patsy Cline's producer? The Half Pints -6.389434572568244 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, album, Patsy Cline) -> (The Half Pints, Albums, Lullaby Renditions of Patsy Cline) -> The Half Pints (9446ms) What was the name of Patsy Cline's producer? Through the Eyes of Patsy Cline: An Anthology -6.481100353379407 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (Through the Eyes of Patsy Cline: An Anthology, Primary release, Through the Eyes of Patsy Cline: An Anthology) -> Through the Eyes of Patsy Cline: An Anthology (8595ms) What was the name of Patsy Cline's producer? The Best of Patsy Cline: Walkin' After Midnight -6.481100353379407 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (The Best of Patsy Cline: Walkin' After Midnight, Primary release, The Best of Patsy Cline: Walkin' After Midnight) -> The Best of Patsy Cline: Walkin' After Midnight (8596ms) What was the name of Patsy Cline's producer? Anne Kirkpatrick -6.5066339616406585 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, track record, Patsy Cline) -> (Anne Kirkpatrick, Tracks Recorded, A Bottle of Wine and Patsy Cline) -> Anne Kirkpatrick (8220ms) What was the name of Patsy Cline's producer? Pop music -6.519100671159558 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, album, Patsy Cline) -> (Pop music, Albums, The Legendary Patsy Cline) -> Pop music (9480ms) What was the name of Patsy Cline's producer? Compilation album -6.521959386713168 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, album, Patsy Cline) -> (Compilation album, Albums, The Wonderful World of Patsy Cline) -> Compilation album (9496ms) What was the name of Patsy Cline's producer? Walkin' After Midnight: The Very Best of Patsy Cline -6.534703670547769 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (Walkin' After Midnight: The Very Best of Patsy Cline, Primary release, Walkin' After Midnight: The Very Best of Patsy Cline) -> Walkin' After Midnight: The Very Best of Patsy Cline (8596ms) What was the name of Patsy Cline's producer? Have You Ever Been Lonely? -6.551595868203622 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: (Patsy Cline, composition, $x) -> (Have You Ever Been Lonely (& Patsy Cline), Recording of Composition, Have You Ever Been Lonely?) -> Have You Ever Been Lonely? (6916ms) What was the name of Patsy Cline's producer? Traditional pop music -6.551595868203622 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, album, Patsy Cline) -> (Traditional pop music, Albums, The Country Hall of Fame ? Patsy Cline) -> Traditional pop music (9497ms) What was the name of Patsy Cline's producer? The Patsy Cline Collection -6.624042532495038 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (The Patsy Cline Collection, Primary release, The Patsy Cline Collection) -> The Patsy Cline Collection (8641ms) What was the name of Patsy Cline's producer? Sings Patsy Cline's Favorites -6.624042532495038 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (Sings Patsy Cline's Favorites, Primary release, Sings Patsy Cline's Favorites) -> Sings Patsy Cline's Favorites (8641ms) What was the name of Patsy Cline's producer? The Patsy Cline Story -6.624042532495038 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (The Patsy Cline Story, Primary release, The Patsy Cline Story) -> The Patsy Cline Story (8847ms) What was the name of Patsy Cline's producer? Portrait of Patsy Cline -6.624042532495038 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (Portrait of Patsy Cline, Primary release, Portrait of Patsy Cline) -> Portrait of Patsy Cline (8641ms) What was the name of Patsy Cline's producer? The Definitive Patsy Cline -6.624042532495038 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (The Definitive Patsy Cline, Primary release, The Definitive Patsy Cline) -> The Definitive Patsy Cline (8641ms) What was the name of Patsy Cline's producer? The Legendary Patsy Cline -6.624042532495038 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (The Legendary Patsy Cline, Primary release, Patsy Cline) -> The Legendary Patsy Cline (8641ms) What was the name of Patsy Cline's producer? The Great Patsy Cline -6.624042532495038 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (The Great Patsy Cline, Primary release, The Great Patsy Cline) -> The Great Patsy Cline (8641ms) What was the name of Patsy Cline's producer? C.R. Avery and the Boomchasers -6.624042532495038 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, track record, Patsy Cline) -> (C.R. Avery and the Boomchasers, Tracks Recorded, The Ballad Of Charlie Parker And Patsy Cline) -> C.R. Avery and the Boomchasers (8220ms) What was the name of Patsy Cline's producer? Down by the Riverside -6.648615446788891 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Down by the Riverside, Recorded by, Patsy Cline) -> Down by the Riverside (8021ms) What was the name of Patsy Cline's producer? The Man Upstairs -6.648615446788891 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (The Man Upstairs, Recorded by, Patsy Cline) -> The Man Upstairs (8022ms) What was the name of Patsy Cline's producer? Stop the World -6.648615446788891 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Stop the World, Recorded by, Patsy Cline) -> Stop the World (8021ms) What was the name of Patsy Cline's producer? The Wayward Wind -6.648615446788891 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (The Wayward Wind, Recorded by, Patsy Cline) -> The Wayward Wind (8022ms) What was the name of Patsy Cline's producer? Country pop -6.648615446788891 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, album, Patsy Cline) -> (Country pop, Albums, The Patsy Cline Story) -> Country pop (9511ms) What was the name of Patsy Cline's producer? Lullaby Renditions of Patsy Cline -6.679020293693356 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (Lullaby Renditions of Patsy Cline, Primary release, Lullaby Renditions of Patsy Cline) -> Lullaby Renditions of Patsy Cline (8848ms) What was the name of Patsy Cline's producer? A Portrait of Patsy Cline -6.679020293693356 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (A Portrait of Patsy Cline, Primary release, A Portrait of Patsy Cline) -> A Portrait of Patsy Cline (8848ms) What was the name of Patsy Cline's producer? Adam Brodsky -6.681269203094143 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, track record, Patsy Cline) -> (Adam Brodsky, Tracks Recorded, Patsy Cline) -> Adam Brodsky (8220ms) What was the name of Patsy Cline's producer? Let The Teardrops Fall -6.695739242101736 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Let The Teardrops Fall, Recorded by, Patsy Cline) -> Let The Teardrops Fall (8039ms) What was the name of Patsy Cline's producer? Sweet Dreams of Mine -6.695739242101736 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Sweet Dreams of Mine, Recorded by, Patsy Cline) -> Sweet Dreams of Mine (8040ms) What was the name of Patsy Cline's producer? Turn the Cards Slowly -6.695739242101736 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Turn the Cards Slowly, Recorded by, Patsy Cline) -> Turn the Cards Slowly (8039ms) What was the name of Patsy Cline's producer? The Heart You Break -6.695739242101736 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (The Heart You Break, Recorded by, Patsy Cline) -> The Heart You Break (8040ms) What was the name of Patsy Cline's producer? Sweet Dreams of You -6.695739242101736 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Sweet Dreams of You, Recorded by, Patsy Cline) -> Sweet Dreams of You (8040ms) What was the name of Patsy Cline's producer? Crystal Sands -6.718444444642037 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, track record, Patsy Cline) -> (Crystal Sands, Tracks Recorded, Bottle of Wine and Patsy Cline) -> Crystal Sands (8220ms) What was the name of Patsy Cline's producer? Live At the Opry -6.726144089006201 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (Live At the Opry, Primary release, Patsy Cline Live at the Opry) -> Live At the Opry (8848ms) What was the name of Patsy Cline's producer? Patsy Cline Sings Songs of Love -6.726144089006201 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (Patsy Cline Sings Songs of Love, Primary release, Patsy Cline Sings Songs of Love) -> Patsy Cline Sings Songs of Love (8848ms) What was the name of Patsy Cline's producer? Why Can't He Be You -6.736579864706202 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Why Can't He Be You, Recorded by, Patsy Cline) -> Why Can't He Be You (8146ms) What was the name of Patsy Cline's producer? If Could See the World -6.736579864706202 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (If Could See the World, Recorded by, Patsy Cline) -> If Could See the World (8146ms) What was the name of Patsy Cline's producer? Remembering Patsy Cline -6.749730705566855 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (Remembering Patsy Cline, Primary release, Remembering Patsy Cline) -> Remembering Patsy Cline (9530ms) What was the name of Patsy Cline's producer? Patsy Cline Collection -6.749730705566855 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (Patsy Cline Collection, Primary release, Patsy Cline Collection) -> Patsy Cline Collection (8848ms) What was the name of Patsy Cline's producer? The Universal Masters Collection: Classic Patsy Cline -6.766984711610667 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (The Universal Masters Collection: Classic Patsy Cline, Primary release, The Universal Masters Collection: Classic Patsy Cline) -> The Universal Masters Collection: Classic Patsy Cline (9565ms) What was the name of Patsy Cline's producer? Patsy Cline: Selections From the Patsy Cline Story -6.766984711610667 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (Patsy Cline: Selections From the Patsy Cline Story, Primary release, Patsy Cline: Selections From the Patsy Cline Story) -> Patsy Cline: Selections From the Patsy Cline Story (9565ms) What was the name of Patsy Cline's producer? Walking After Midnight -6.770376636917971 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Walking After Midnight, Recorded by, Patsy Cline) -> Walking After Midnight (8238ms) What was the name of Patsy Cline's producer? Ain't No Wheels On the Ship -6.772315409485109 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Ain't No Wheels On the Ship, Recorded by, Patsy Cline) -> Ain't No Wheels On the Ship (8238ms) What was the name of Patsy Cline's producer? I Fall to Pieces -6.772315409485109 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: (Patsy Cline, composition, $x) -> (I Fall to Pieces (& Patsy Cline), Recording of Composition, I Fall to Pieces) -> I Fall to Pieces (7043ms) What was the name of Patsy Cline's producer? The Late and Great Patsy Cline and Dottie West -6.802720256389574 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (The Late and Great Patsy Cline and Dottie West, Primary release, The Late and Great Patsy Cline and Dottie West) -> The Late and Great Patsy Cline and Dottie West (9598ms) What was the name of Patsy Cline's producer? A Tribute to Patsy Cline / A Portrait of Patsy Cline -6.802720256389574 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (A Tribute to Patsy Cline / A Portrait of Patsy Cline, Primary release, A Tribute to Patsy Cline / A Portrait of Patsy Cline) -> A Tribute to Patsy Cline / A Portrait of Patsy Cline (9582ms) What was the name of Patsy Cline's producer? He Will Do for You What He Has Done -6.803846772525321 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (He Will Do for You What He Has Done, Recorded by, Patsy Cline) -> He Will Do for You What He Has Done (8324ms) What was the name of Patsy Cline's producer? When Your House Is Not a Home -6.803846772525321 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (When Your House Is Not a Home, Recorded by, Patsy Cline) -> When Your House Is Not a Home (8238ms) What was the name of Patsy Cline's producer? I Cried All the Way to the Alter -6.803846772525321 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (I Cried All the Way to the Alter, Recorded by, Patsy Cline) -> I Cried All the Way to the Alter (8238ms) What was the name of Patsy Cline's producer? Stop The World (And Let Me Off) -6.803846772525321 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Stop The World (And Let Me Off), Recorded by, Patsy Cline) -> Stop The World (And Let Me Off) (8238ms) What was the name of Patsy Cline's producer? Album -6.830540012098551 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, album, Patsy Cline) -> (Album, Albums, The Best of Patsy Cline) -> Album (9598ms) What was the name of Patsy Cline's producer? Just Out of Reach (Of My Two Arms) -6.831874650783288 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Just Out of Reach (Of My Two Arms), Recorded by, Patsy Cline) -> Just Out of Reach (Of My Two Arms) (8324ms) What was the name of Patsy Cline's producer? Stop the World (And Let Me Get Off) -6.831874650783288 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Stop the World (And Let Me Get Off), Recorded by, Patsy Cline) -> Stop the World (And Let Me Get Off) (8324ms) What was the name of Patsy Cline's producer? Stop the World (And Let Me Go Off) -6.831874650783288 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Stop the World (And Let Me Go Off), Recorded by, Patsy Cline) -> Stop the World (And Let Me Go Off) (8324ms) What was the name of Patsy Cline's producer? When Your House Is Not a Home (radio transcription) -6.856952226066731 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (When Your House Is Not a Home (radio transcription), Recorded by, Patsy Cline) -> When Your House Is Not a Home (radio transcription) (8324ms) What was the name of Patsy Cline's producer? Today, Tomorrow, & Forever: The Patsy Cline Collection -6.862279497687753 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (Today, Tomorrow, & Forever: The Patsy Cline Collection, Primary release, Today, Tomorrow, & Forever: The Patsy Cline Collection (disc 2)) -> Today, Tomorrow, & Forever: The Patsy Cline Collection (9613ms) What was the name of Patsy Cline's producer? Don't Ever Leave Me Again: The Patsy Cline Collection -6.887357072971197 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (Don't Ever Leave Me Again: The Patsy Cline Collection, Primary release, Don't Ever Leave Me Again: The Patsy Cline Collection (disc 3)) -> Don't Ever Leave Me Again: The Patsy Cline Collection (9628ms) What was the name of Patsy Cline's producer? Lonely Street -6.894206202231269 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Lonely Street, Recorded by, Patsy Cline) -> Lonely Street (8324ms) What was the name of Patsy Cline's producer? Awards Dialogue -6.894206202231269 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Awards Dialogue, Recorded by, Patsy Cline) -> Awards Dialogue (8432ms) What was the name of Patsy Cline's producer? Stupid Cupid -6.894206202231269 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Stupid Cupid, Recorded by, Patsy Cline) -> Stupid Cupid (8431ms) What was the name of Patsy Cline's producer? Flatbed Honeymoon -6.894206202231269 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Flatbed Honeymoon, Tracks Recorded, Patsy Cline) -> Flatbed Honeymoon (8432ms) What was the name of Patsy Cline's producer? EP -6.909385515642594 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, album, Patsy Cline) -> (EP, Albums, Patsy Cline) -> EP (9693ms) What was the name of Patsy Cline's producer? Jenny Toomey -6.924611049135733 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, track record, Patsy Cline) -> (Jenny Toomey, Tracks Recorded, Patsy Cline) -> Jenny Toomey (9693ms) What was the name of Patsy Cline's producer? Kirsten Siggaard -6.938188411189923 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, album, Patsy Cline) -> (Kirsten Siggaard, Albums, Mit Liv Med Patsy Cline) -> Kirsten Siggaard (9693ms) What was the name of Patsy Cline's producer? Dark Dark Dark -6.9509931333796455 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Dark Dark Dark, Tracks Recorded, Patsy Cline) -> Dark Dark Dark (9708ms) What was the name of Patsy Cline's producer? Chris Kennedy -6.956056183579378 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, produce, Patsy Cline) -> (Chris Kennedy, Films Produced, Doing Time for Patsy Cline) -> Chris Kennedy (9708ms) What was the name of Patsy Cline's producer? 20th Century Masters: The Millennium Collection: The Best of Patsy Cline -6.974558175888824 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (20th Century Masters: The Millennium Collection: The Best of Patsy Cline, Primary release, 20th Century Masters: The Millennium Collection: The Best of Patsy Cline) -> 20th Century Masters: The Millennium Collection: The Best of Patsy Cline (9708ms) What was the name of Patsy Cline's producer? Hidin? Out -6.978482013978805 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Hidin? Out, Recorded by, Patsy Cline) -> Hidin? Out (9844ms) What was the name of Patsy Cline's producer? Foolin' Round -6.978482013978805 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Foolin' Round, Recorded by, Patsy Cline) -> Foolin' Round (9723ms) What was the name of Patsy Cline's producer? Walkin' Dream -6.978482013978805 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Walkin' Dream, Recorded by, Patsy Cline) -> Walkin' Dream (9723ms) What was the name of Patsy Cline's producer? Melissa Swift-Sawyer -6.978482013978805 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: (Patsy Cline, artist, $x) -> (Melissa Swift-Sawyer Sings Patsy Cline, Artist, Melissa Swift-Sawyer) -> Melissa Swift-Sawyer (9844ms) What was the name of Patsy Cline's producer? Foolin' 'Round -6.978482013978805 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Foolin' 'Round, Recorded by, Patsy Cline) -> Foolin' 'Round (9845ms) What was the name of Patsy Cline's producer? Here's Patsy Cline -6.981397980284111 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (Here's Patsy Cline, Primary release, Here's Patsy Cline) -> Here's Patsy Cline (9844ms) What was the name of Patsy Cline's producer? Seven Lonely Days -7.002043911635228 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Seven Lonely Days, Recorded by, Patsy Cline) -> Seven Lonely Days (9960ms) What was the name of Patsy Cline's producer? Yes, I Understand -7.002043911635228 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Yes, I Understand, Recorded by, Patsy Cline) -> Yes, I Understand (9880ms) What was the name of Patsy Cline's producer? Melissa Swift-Sawyer Sings Patsy Cline -7.002043911635228 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: (Patsy Cline, soundtrack, $x) -> (Always...Patsy Cline, Soundtracks, Melissa Swift-Sawyer Sings Patsy Cline) -> Melissa Swift-Sawyer Sings Patsy Cline (6598ms) What was the name of Patsy Cline's producer? Yes I Understand -7.002043911635228 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Yes I Understand, Recorded by, Patsy Cline) -> Yes I Understand (9905ms) What was the name of Patsy Cline's producer? Walkin' After Midnight -7.002043911635228 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Walkin' After Midnight, Recorded by, Patsy Cline) -> Walkin' After Midnight (9880ms) What was the name of Patsy Cline's producer? Come on In -7.002043911635228 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Come on In, Recorded by, Patsy Cline) -> Come on In (9961ms) What was the name of Patsy Cline's producer? I Don?t Wanta -7.002043911635228 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (I Don?t Wanta, Recorded by, Patsy Cline) -> I Don?t Wanta (9880ms) What was the name of Patsy Cline's producer? Always...Patsy Cline -7.002043911635228 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, soundtrack, Patsy Cline) -> (Always...Patsy Cline, Soundtracks, Melissa Swift-Sawyer Sings Patsy Cline) -> Always...Patsy Cline (9905ms) What was the name of Patsy Cline's producer? Pick Me Up -7.002043911635228 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Pick Me Up, Recorded by, Patsy Cline) -> Pick Me Up (9905ms) What was the name of Patsy Cline's producer? Poor Man's Roses -7.002043911635228 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Poor Man's Roses, Recorded by, Patsy Cline) -> Poor Man's Roses (9905ms) What was the name of Patsy Cline's producer? Walking' After Midnight -7.002043911635228 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Walking' After Midnight, Recorded by, Patsy Cline) -> Walking' After Midnight (9905ms) What was the name of Patsy Cline's producer? San Antonio Rose -7.002043911635228 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (San Antonio Rose, Recorded by, Patsy Cline) -> San Antonio Rose (9960ms) What was the name of Patsy Cline's producer? Walkin? After Midnight -7.002043911635228 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Walkin? After Midnight, Recorded by, Patsy Cline) -> Walkin? After Midnight (9960ms) What was the name of Patsy Cline's producer? Tra La La La Triangle -7.002043911635228 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Tra La La La Triangle, Recorded by, Patsy Cline) -> Tra La La La Triangle (9880ms) What was the name of Patsy Cline's producer? Country Spotlight: Patsy Cline -7.008886860883271 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, primary release, Patsy Cline) -> (Country Spotlight: Patsy Cline, Primary release, Country Spotlight: Patsy Cline) -> Country Spotlight: Patsy Cline (9960ms) What was the name of Patsy Cline's producer? Stop, Look and Listen -7.022464222937461 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Stop, Look and Listen, Recorded by, Patsy Cline) -> Stop, Look and Listen (10067ms) What was the name of Patsy Cline's producer? Honky Tonk Merry Go-Round -7.022464222937461 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Honky Tonk Merry Go-Round, Recorded by, Patsy Cline) -> Honky Tonk Merry Go-Round (9986ms) What was the name of Patsy Cline's producer? Shake, Rattle and Roll -7.022464222937461 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Shake, Rattle and Roll, Recorded by, Patsy Cline) -> Shake, Rattle and Roll (10045ms) What was the name of Patsy Cline's producer? Sweet Dreams [Of You] -7.022464222937461 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Sweet Dreams [Of You], Recorded by, Patsy Cline) -> Sweet Dreams [Of You] (10046ms) What was the name of Patsy Cline's producer? Love Me Love Me Honey Do -7.022464222937461 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Love Me Love Me Honey Do, Recorded by, Patsy Cline) -> Love Me Love Me Honey Do (10045ms) What was the name of Patsy Cline's producer? I've Loved And Loved Again -7.022464222937461 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (I've Loved And Loved Again, Recorded by, Patsy Cline) -> I've Loved And Loved Again (10046ms) What was the name of Patsy Cline's producer? I Love You Honey -7.022464222937461 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (I Love You Honey, Recorded by, Patsy Cline) -> I Love You Honey (10066ms) What was the name of Patsy Cline's producer? Life?s Railway to Heaven -7.022464222937461 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Life?s Railway to Heaven, Recorded by, Patsy Cline) -> Life?s Railway to Heaven (10045ms) What was the name of Patsy Cline's producer? If I Could Only -7.022464222937461 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (If I Could Only, Recorded by, Patsy Cline) -> If I Could Only (9984ms) What was the name of Patsy Cline's producer? Cry Not for Me -7.022464222937461 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Cry Not for Me, Recorded by, Patsy Cline) -> Cry Not for Me (9984ms) What was the name of Patsy Cline's producer? Life's Railroad to Heaven -7.022464222937461 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Life's Railroad to Heaven, Recorded by, Patsy Cline) -> Life's Railroad to Heaven (9984ms) What was the name of Patsy Cline's producer? Tra Le La Le La Triangle -7.022464222937461 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Tra Le La Le La Triangle, Recorded by, Patsy Cline) -> Tra Le La Le La Triangle (9984ms) What was the name of Patsy Cline's producer? You Belong to Me -7.022464222937461 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (You Belong to Me, Recorded by, Patsy Cline) -> You Belong to Me (10066ms) What was the name of Patsy Cline's producer? I Love You, Honey -7.022464222937461 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (I Love You, Honey, Recorded by, Patsy Cline) -> I Love You, Honey (10046ms) What was the name of Patsy Cline's producer? Stop, Look & Listen -7.022464222937461 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Stop, Look & Listen, Recorded by, Patsy Cline) -> Stop, Look & Listen (9984ms) What was the name of Patsy Cline's producer? Tra le la le Triangle -7.022464222937461 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Tra le la le Triangle, Recorded by, Patsy Cline) -> Tra le la le Triangle (10066ms) What was the name of Patsy Cline's producer? Today, Tomorrow, and Forever -7.022464222937461 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, record, Patsy Cline) -> (Today, Tomorrow, and Forever, Recorded by, Patsy Cline) -> Today, Tomorrow, and Forever (10066ms) What was the name of Patsy Cline's producer? the same name -11.713938577920384 What was the name of Patsy Cline's producer? -> What was Patsy Cline's producer? -> $x: (Patsy Cline, producer, $x) -> $x: ($x, to record, Patsy Cline) -> (the same name, to be recorded by, Patsy Cline) -> the same name (6532ms) Where is Mesa Verde National park? Southwestern Colorado -1.8587341627924612 Where is Mesa Verde National park? -> $x: (Mesa Verde National park, is in, $x) -> (Mesa Verde National Park, is in, Southwestern Colorado) -> Southwestern Colorado (2652ms) Where is Mesa Verde National park? Authorities Concept Scheme -2.2501364945342663 Where is Mesa Verde National park? -> $x: (Mesa Verde National park, is in, $x) -> $x: (mesa verde national park, in, $x) -> (Mesa Verde National Park (Colo.), In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (2753ms) Where is Mesa Verde National park? the New York Times -2.2580548209106475 Where is Mesa Verde National park? -> $x: (Mesa Verde National park, is in, $x) -> (Mesa Verde National Park, are featured in, the New York Times) -> the New York Times (2652ms) Where is Mesa Verde National park? Southwest Colorado -2.2775152557802647 Where is Mesa Verde National park? -> $x: (Mesa Verde National park, is in, $x) -> (Mesa Verde National Park, is perched high in, Southwest Colorado) -> Southwest Colorado (2652ms) Where is Mesa Verde National park? Geographic Names Concept Scheme -2.332603136331745 Where is Mesa Verde National park? -> $x: (Mesa Verde National park, is in, $x) -> $x: (mesa verde national park, in, $x) -> (Mesa Verde National Park (Colo.), In Scheme, Geographic Names Concept Scheme) -> Geographic Names Concept Scheme (2753ms) Where is Mesa Verde National park? COLORADO -2.488800146395396 Where is Mesa Verde National park? -> $x: (Mesa Verde National park, is in, $x) -> (mesa verde national park, is a mountain in the state or province, COLORADO) -> COLORADO (2651ms) Where is Mesa Verde National park? treasures -3.489471203497019 Where is Mesa Verde National park? -> $x: (Mesa Verde National park, is in, $x) -> ($ 15.99 $ 15.99 Mesa Verde National Park, is rich in, treasures) -> treasures (2753ms) Where is Mesa Verde National park? the southwest corner -4.320924281798899 Where is Mesa Verde National park? -> $x: (Mesa Verde National park, is in, $x) -> (Mesa Verde National Park, is in, the southwest corner) -> the southwest corner (2834ms) Where is Mesa Verde National park? the 59th Congress -4.428993906387246 Where is Mesa Verde National park? -> $x: (Mesa Verde National park, is in, $x) -> (" Mesa Verde National Park, was introduced in, the 59th Congress) -> the 59th Congress (2834ms) Where is Mesa Verde National park? accessibility -4.795228413021565 Where is Mesa Verde National park? -> $x: (Mesa Verde National park, is in, $x) -> $x: (mesa verde national park, in, $x) -> (Mesa Verde National Park, has limitations in, accessibility) -> accessibility (2834ms) Where is Mesa Verde National park? 1906 -5.557253966210219 Where is Mesa Verde National park? -> $x: (Mesa Verde National park, is in, $x) -> (Mesa Verde National Park, was established in, 1906) -> 1906 (2857ms) Where is Mesa Verde National park? 1996 -7.493008665115658 Where is Mesa Verde National park? -> $x: (Mesa Verde National park, is in, $x) -> $x: (mesa verde national park, in, $x) -> (Mesa Verde National Park, began in, 1996) -> 1996 (2892ms) Where is Mesa Verde National park? Colorado -8.478420275287277 Where is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what be mesa verde national park s location ? -> $x: (mesa verde national park, location, $x) -> $x: ($x, contain, mesa verde national park) -> (Colorado, Contains, Mesa Verde National Park) -> Colorado (8447ms) Where is Mesa Verde National park? Cortez -8.760718002715041 Where is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what be mesa verde national park s location ? -> $x: (mesa verde national park, location, $x) -> $x: ($x, tourist attraction, mesa verde national park) -> (Cortez, Tourist attractions, Mesa Verde National Park) -> Cortez (8364ms) Where is Mesa Verde National park? Durango -8.760718002715041 Where is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what be mesa verde national park s location ? -> $x: (mesa verde national park, location, $x) -> $x: ($x, tourist attraction, mesa verde national park) -> (Durango, Tourist attractions, Mesa Verde National Park) -> Durango (8363ms) Where is Mesa Verde National park? a World Heritage Site -9.054879686829173 Where is Mesa Verde National park? -> where be [ mesa verde ] national park ? -> what be the name of mesa verde national park ? -> $x: (mesa verde national park, name, $x) -> (Mesa Verde National Park, was named, a World Heritage Site) -> a World Heritage Site (4222ms) Where is Mesa Verde National park? Balcony House -9.17262111912381 Where is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what be mesa verde national park s location ? -> $x: (mesa verde national park, location, $x) -> $x: (mesa verde national park, contain, $x) -> (Mesa Verde National Park, Contains, Balcony House) -> Balcony House (8364ms) Where is Mesa Verde National park? Cliff Palace -9.17262111912381 Where is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what be mesa verde national park s location ? -> $x: (mesa verde national park, location, $x) -> $x: (mesa verde national park, contain, $x) -> (Mesa Verde National Park, Contains, Cliff Palace) -> Cliff Palace (8363ms) Where is Mesa Verde National park? Montezuma County -9.17262111912381 Where is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what be mesa verde national park s location ? -> $x: (mesa verde national park, location, $x) -> $x: ($x, contain, mesa verde national park) -> (Montezuma County, Contains, Mesa Verde National Park) -> Montezuma County (8447ms) Where is Mesa Verde National park? Long House -9.685937427040631 Where is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what be mesa verde national park s location ? -> $x: (mesa verde national park, location, $x) -> $x: (mesa verde national park, contain, $x) -> (Mesa Verde National Park, Contains, Long House) -> Long House (8521ms) Where is Mesa Verde National park? Step House -9.685937427040631 Where is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what be mesa verde national park s location ? -> $x: (mesa verde national park, location, $x) -> $x: (mesa verde national park, contain, $x) -> (Mesa Verde National Park, Contains, Step House) -> Step House (8447ms) Where is Mesa Verde National park? Mesa Verde Administrative District -9.685937427040631 Where is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what be mesa verde national park s location ? -> $x: (mesa verde national park, location, $x) -> $x: (mesa verde national park, contain, $x) -> (Mesa Verde National Park, Contains, Mesa Verde Administrative District) -> Mesa Verde Administrative District (8447ms) Where is Mesa Verde National park? Chapin Mesa Archeological Museum -9.802890119044328 Where is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what be mesa verde national park s location ? -> $x: (mesa verde national park, location, $x) -> $x: (mesa verde national park, contain, $x) -> (Mesa Verde National Park, Contains, Chapin Mesa Archeological Museum) -> Chapin Mesa Archeological Museum (8521ms) Where is Mesa Verde National park? Cedar Tree Tower -9.802890119044328 Where is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what be mesa verde national park s location ? -> $x: (mesa verde national park, location, $x) -> $x: (mesa verde national park, contain, $x) -> (Mesa Verde National Park, Contains, Cedar Tree Tower) -> Cedar Tree Tower (8521ms) Where is Mesa Verde National park? Spruce Tree House -9.802890119044328 Where is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what be mesa verde national park s location ? -> $x: (mesa verde national park, location, $x) -> $x: (mesa verde national park, contain, $x) -> (Mesa Verde National Park, Contains, Spruce Tree House) -> Spruce Tree House (9115ms) Where is Mesa Verde National park? Badger House Trail -9.802890119044328 Where is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what be mesa verde national park s location ? -> $x: (mesa verde national park, location, $x) -> $x: (mesa verde national park, contain, $x) -> (Mesa Verde National Park, Contains, Badger House Trail) -> Badger House Trail (8521ms) Where is Mesa Verde National park? Square Tower House -9.802890119044328 Where is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what be mesa verde national park s location ? -> $x: (mesa verde national park, location, $x) -> $x: (mesa verde national park, contain, $x) -> (Mesa Verde National Park, Contains, Square Tower House) -> Square Tower House (8521ms) Where is Mesa Verde National park? Far View Sites Complex -9.900350695714074 Where is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what be mesa verde national park s location ? -> $x: (mesa verde national park, location, $x) -> $x: (mesa verde national park, contain, $x) -> (Mesa Verde National Park, Contains, Far View Sites Complex) -> Far View Sites Complex (9115ms) Where is Mesa Verde National park? United States of America -9.968209141536768 Where is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what be mesa verde national park s location ? -> $x: (mesa verde national park, location, $x) -> $x: ($x, contain, mesa verde national park) -> (United States of America, Contains, Mesa Verde National Park) -> United States of America (9143ms) Where is Mesa Verde National park? national park -10.302035715468387 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, national park) -> national park (6446ms) Where is Mesa Verde National park? US National Park -10.468707388347394 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, US National Park) -> US National Park (6446ms) Where is Mesa Verde National park? wonderful national park -10.51382731870841 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, wonderful national park) -> wonderful national park (6446ms) Where is Mesa Verde National park? World Heritage Site -10.579007670682497 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, World Heritage Site) -> World Heritage Site (6446ms) Where is Mesa Verde National park? series of mesa -10.587564952296637 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, series of mesa) -> series of mesa (6446ms) Where is Mesa Verde National park? national park site -10.60021961801052 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, national park site) -> national park site (6446ms) Where is Mesa Verde National park? beautiful place -10.609462642183667 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, beautiful place) -> beautiful place (6446ms) Where is Mesa Verde National park? breathtaking national park -10.612241550499995 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, breathtaking national park) -> breathtaking national park (6472ms) Where is Mesa Verde National park? U.S. park -10.628692614334636 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, U.S. park) -> U.S. park (6472ms) Where is Mesa Verde National park? beautiful park -10.633496181047773 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, beautiful park) -> beautiful park (6472ms) Where is Mesa Verde National park? natural wonder -10.653337971450343 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, natural wonder) -> natural wonder (6472ms) Where is Mesa Verde National park? educational, historical park -10.65962368886519 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, educational, historical park) -> educational, historical park (6472ms) Where is Mesa Verde National park? area attraction -10.666699877005 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, area attraction) -> area attraction (6472ms) Where is Mesa Verde National park? regional site -10.673860187640098 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, regional site) -> regional site (6472ms) Where is Mesa Verde National park? scenic wonder -10.690088622709435 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, scenic wonder) -> scenic wonder (6472ms) Where is Mesa Verde National park? natural attraction -10.690214511888922 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, natural attraction) -> natural attraction (6504ms) Where is Mesa Verde National park? UNESCO World Heritage Site -10.692622734114074 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, UNESCO World Heritage Site) -> UNESCO World Heritage Site (6504ms) Where is Mesa Verde National park? great spot -10.69651781306189 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, great spot) -> great spot (6504ms) Where is Mesa Verde National park? beautiful historical park -10.704517644300333 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, beautiful historical park) -> beautiful historical park (6504ms) Where is Mesa Verde National park? tourist attraction -10.706800699325665 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, tourist attraction) -> tourist attraction (6504ms) Where is Mesa Verde National park? regional attraction -10.71311652960243 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, regional attraction) -> regional attraction (6504ms) Where is Mesa Verde National park? southwest area -10.714548781621932 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, southwest area) -> southwest area (6504ms) Where is Mesa Verde National park? must-see site -10.7159419954112 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, must-see site) -> must-see site (6504ms) Where is Mesa Verde National park? area's world-class attraction -10.716311896978631 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, area's world-class attraction) -> area's world-class attraction (6530ms) Where is Mesa Verde National park? outdoor attraction -10.716855943402013 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, outdoor attraction) -> outdoor attraction (6530ms) Where is Mesa Verde National park? regional partner -10.717437328382895 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, regional partner) -> regional partner (6530ms) Where is Mesa Verde National park? photograph place -10.718226865388234 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, photograph place) -> photograph place (6530ms) Where is Mesa Verde National park? photogenic place -10.718561236305433 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, photogenic place) -> photogenic place (6530ms) Where is Mesa Verde National park? spectacular monument -10.719940517564583 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, spectacular monument) -> spectacular monument (6530ms) Where is Mesa Verde National park? dream destination -10.722169782442535 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, dream destination) -> dream destination (6530ms) Where is Mesa Verde National park? popular area -10.72251965110855 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, popular area) -> popular area (6530ms) Where is Mesa Verde National park? extraordinary experience -10.722927169340988 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, extraordinary experience) -> extraordinary experience (6560ms) Where is Mesa Verde National park? pretty place -10.723380453979866 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, pretty place) -> pretty place (6560ms) Where is Mesa Verde National park? phenomenal place -10.725310811114177 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, phenomenal place) -> phenomenal place (6560ms) Where is Mesa Verde National park? tourist destination -10.727712770971523 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, tourist destination) -> tourist destination (6560ms) Where is Mesa Verde National park? spectacular place -10.73051175216785 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, spectacular place) -> spectacular place (6560ms) Where is Mesa Verde National park? amazing experience -10.731362814402512 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, amazing experience) -> amazing experience (6560ms) Where is Mesa Verde National park? absolute must-see -10.732581226234354 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, absolute must-see) -> absolute must-see (6560ms) Where is Mesa Verde National park? visitor attraction -10.732623694282518 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, visitor attraction) -> visitor attraction (6560ms) Where is Mesa Verde National park? huge property -10.732630222359882 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, huge property) -> huge property (6586ms) Where is Mesa Verde National park? class I area -10.73488567928096 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, class I area) -> class I area (6586ms) Where is Mesa Verde National park? excellent spot -10.735086289511102 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, excellent spot) -> excellent spot (6586ms) Where is Mesa Verde National park? spectacular site -10.737242881419656 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, spectacular site) -> spectacular site (6586ms) Where is Mesa Verde National park? wonderful setting -10.73758666816305 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, wonderful setting) -> wonderful setting (6586ms) Where is Mesa Verde National park? historical site -10.739312102991992 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, historical site) -> historical site (6586ms) Where is Mesa Verde National park? popular attraction -10.744011325877485 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, popular attraction) -> popular attraction (6586ms) Where is Mesa Verde National park? good local destination -10.757084265534939 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, good local destination) -> good local destination (6621ms) Where is Mesa Verde National park? UNESCO World Magazine -10.757084265534939 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, UNESCO World Magazine) -> UNESCO World Magazine (6621ms) Where is Mesa Verde National park? nonprofit organization -10.76189374237771 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, nonprofit organization) -> nonprofit organization (6621ms) Where is Mesa Verde National park? local attraction -10.765249154531812 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, local attraction) -> local attraction (6621ms) Where is Mesa Verde National park? amazing archeological attraction -10.771950647134334 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, amazing archeological attraction) -> amazing archeological attraction (6621ms) Where is Mesa Verde National park? group of the cliff dwelling -10.79877853877611 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, group of the cliff dwelling) -> group of the cliff dwelling (6621ms) Where is Mesa Verde National park? Land of Mysteries | Mesa Verde | -10.801978220970081 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, Land of Mysteries | Mesa Verde |) -> Land of Mysteries | Mesa Verde | (6646ms) Where is Mesa Verde National park? archeological rich site -10.801978220970081 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, archeological rich site) -> archeological rich site (6621ms) Where is Mesa Verde National park? ideal combination of heritage -10.801978220970081 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, ideal combination of heritage) -> ideal combination of heritage (6621ms) Where is Mesa Verde National park? Top US Destination -10.805141887398552 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, Top US Destination) -> Top US Destination (6646ms) Where is Mesa Verde National park? popular tourism attraction -10.80883283151403 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, popular tourism attraction) -> popular tourism attraction (6647ms) Where is Mesa Verde National park? Navaho word -10.82939666314588 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park Anasazi, Instance Of, Navaho word) -> Navaho word (6646ms) Where is Mesa Verde National park? fantastic spot -10.832293450286887 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Nearby Mesa Verde National Park, Instance Of, fantastic spot) -> fantastic spot (6646ms) Where is Mesa Verde National park? seven-mile drive west of Mancos -10.839550907332416 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, seven-mile drive west of Mancos) -> seven-mile drive west of Mancos (6646ms) Where is Mesa Verde National park? ancient Native American town -10.839550907332416 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, ancient Native American town) -> ancient Native American town (6647ms) Where is Mesa Verde National park? Amazing Colorado Attraction -10.84310588300808 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, Amazing Colorado Attraction) -> Amazing Colorado Attraction (6886ms) Where is Mesa Verde National park? Class I Air Quality park -10.854417288931812 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, Class I Air Quality park) -> Class I Air Quality park (6886ms) Where is Mesa Verde National park? local point of interest -10.861415514737221 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, local point of interest) -> local point of interest (6886ms) Where is Mesa Verde National park? magical time -10.86539027549754 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Winter in Mesa Verde National Park, Instance Of, magical time) -> magical time (6886ms) Where is Mesa Verde National park? stunning array of cliff dwelling -10.884444862767559 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, stunning array of cliff dwelling) -> stunning array of cliff dwelling (6886ms) Where is Mesa Verde National park? part of a family vacation -10.884444862767559 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, part of a family vacation) -> part of a family vacation (6886ms) Where is Mesa Verde National park? site in north america -10.884444862767559 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, site in north america) -> site in north america (6886ms) Where is Mesa Verde National park? astounding collection of many ruin -10.884444862767559 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, astounding collection of many ruin) -> astounding collection of many ruin (6886ms) Where is Mesa Verde National park? cultural and natural attraction -10.906379616998478 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, cultural and natural attraction) -> cultural and natural attraction (6914ms) Where is Mesa Verde National park? great destination -10.91250399541115 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park in Cortez, Instance Of, great destination) -> great destination (6914ms) Where is Mesa Verde National park? crossword puzzle clue -10.926160306713921 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Home of Mesa Verde National Park, Instance Of, crossword puzzle clue) -> crossword puzzle clue (6914ms) Where is Mesa Verde National park? mandatory federal class I area -10.955130555736826 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, mandatory federal class I area) -> mandatory federal class I area (6914ms) Where is Mesa Verde National park? extremely delicate and unique setting -10.955130555736826 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, extremely delicate and unique setting) -> extremely delicate and unique setting (6914ms) Where is Mesa Verde National park? downtown durango and area attraction -10.955130555736826 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, downtown durango and area attraction) -> downtown durango and area attraction (6914ms) Where is Mesa Verde National park? historic landmark -11.003846349002735 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park in southwestern Colorado, Instance Of, historic landmark) -> historic landmark (6914ms) Where is Mesa Verde National park? eighty square mile area of cliff dwelling -11.016391489643524 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, eighty square mile area of cliff dwelling) -> eighty square mile area of cliff dwelling (6940ms) Where is Mesa Verde National park? archeological treasure trove -11.016391489643524 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park in southwest Colorado, Instance Of, archeological treasure trove) -> archeological treasure trove (6915ms) Where is Mesa Verde National park? eighty square mile area of the cliff dwelling -11.025100851376743 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, eighty square mile area of the cliff dwelling) -> eighty square mile area of the cliff dwelling (6940ms) Where is Mesa Verde National park? UNESCO designated World Heritage Cultural Site -11.025100851376743 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Available Mesa Verde National Park, Instance Of, UNESCO designated World Heritage Cultural Site) -> UNESCO designated World Heritage Cultural Site (6940ms) Where is Mesa Verde National park? area of abandoned cliff side dwelling of the ancient inhabitant -11.072397895937062 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, area of abandoned cliff side dwelling of the ancient inhabitant) -> area of abandoned cliff side dwelling of the ancient inhabitant (6940ms) Where is Mesa Verde National park? attraction -11.094898040384148 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, attraction) -> attraction (6940ms) Where is Mesa Verde National park? area -11.144467060494346 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, area) -> area (6940ms) Where is Mesa Verde National park? site -11.225581767062902 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, site) -> site (6940ms) Where is Mesa Verde National park? incredibly well preserved and stunning collection of archaeological site of the Native American Pueblo person -11.289281104318817 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, incredibly well preserved and stunning collection of archaeological site of the Native American Pueblo person) -> incredibly well preserved and stunning collection of archaeological site of the Native American Pueblo person (6940ms) Where is Mesa Verde National park? destination -11.312848324145873 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, destination) -> destination (7111ms) Where is Mesa Verde National park? opportunity -11.331581384401156 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, opportunity) -> opportunity (7111ms) Where is Mesa Verde National park? place -11.36898216330709 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, place) -> place (7111ms) Where is Mesa Verde National park? experience -11.384368834432602 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, experience) -> experience (7111ms) Where is Mesa Verde National park? 81-square-mile area -12.214915309386068 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, 81-square-mile area) -> 81-square-mile area (7111ms) Where is Mesa Verde National park? an Archeological Disneyland -12.287154111423742 Where is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what be mesa verde national park s location ? -> $x: (mesa verde national park, location, $x) -> $x: (mesa verde national park, call, $x) -> (MESA VERDE NATIONAL PARK, called, an Archeological Disneyland) -> an Archeological Disneyland (7800ms) Where is Mesa Verde National park? 81.4 square mile area -12.349948572418151 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, 81.4 square mile area) -> 81.4 square mile area (7203ms) Where is Mesa Verde National park? short 35 minute drive west -12.42063426538742 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, short 35 minute drive west) -> short 35 minute drive west (7203ms) Where is Mesa Verde National park? short 30 minute drive -12.427744657973975 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, short 30 minute drive) -> short 30 minute drive (7203ms) Where is Mesa Verde National park? beautiful 45 minute drive -12.435970189891295 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> what be mesa verde national park ? -> $x: (mesa verde national park, instance of, $x) -> (Mesa Verde National Park, Instance Of, beautiful 45 minute drive) -> beautiful 45 minute drive (7203ms) Where is Mesa Verde National park? Desert Exposure -12.657021803735184 Where is Mesa Verde National park? -> where be [ mesa verde ] national park ? -> what be the name of mesa verde national park ? -> $x: ($x, be the name of, mesa verde national park) -> $x: ($x, name of, mesa verde national park) -> $x: ($x, in, mesa verde national park) -> (Desert Exposure, has arrived in, Mesa Verde National Park) -> Desert Exposure (11007ms) Where is Mesa Verde National park? mountain -13.393699126023568 Where is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what continent be mesa verde national park locate on ? -> $x: ($x, instance of, continent) (mesa verde national park, locate on, $x) -> $x: ($x, instance of, continent) (mesa verde national park, be, $x) -> (mountain, Instance Of, geographical feature of the continent) (mesa verde national park, is a, mountain) -> mountain (9341ms) Where is Mesa Verde National park? the archaeological center -13.683555388681148 Where is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what be mesa verde national park s location ? -> $x: (mesa verde national park, location, $x) -> $x: ($x, be home to, mesa verde national park) -> (the archaeological center, is home to, Mesa Verde National Park) -> the archaeological center (7800ms) Where is Mesa Verde National park? tourism -14.27451187655951 Where is Mesa Verde National park? -> where be [ mesa verde national park ] ? -> what continent be mesa verde national park locate on ? -> $x: ($x, instance of, continent) (mesa verde national park, locate on, $x) -> $x: ($x, instance of, continent) (mesa verde national park, be, $x) -> (tourism, Instance Of, issue of the african continent) (Mesa Verde National Park, is directly related to, tourism) -> tourism (9369ms) Where is Mesa Verde National park? the year -14.315610558885908 Where is Mesa Verde National park? -> where be [ mesa verde national ] park ? -> when be mesa verde national build ? -> $x: (mesa verde national, be build in, $x) -> $x: (mesa verde national, be open every day of, $x) -> (Mesa Verde National Park, is open every day of, the year) -> the year (9592ms) When did the Mesozoic period end? the dinosaurs -14.556033710865394 When did the Mesozoic period end? -> when do [ the mesozoic period ] end ? -> when be the mesozoic period occur ? -> $x: (the mesozoic period, be occur on, $x) -> $x: (the mesozoic period, related to, $x) -> (the Mesozoic period, were even closely-related to, the dinosaurs) -> the dinosaurs (14492ms) What is the location of Lake Champlain? Richelieu River 2.367032788309219 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> (Lake Champlain, Outflow location, Richelieu River) -> Richelieu River (1071ms) What is the location of Lake Champlain? Vergennes Opera House 2.3065083543834772 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> (Champlain: The Lake Between World Premiere, Location(s), Vergennes Opera House) -> Vergennes Opera House (1071ms) What is the location of Lake Champlain? Champlain Valley Exposition 2.239241446564357 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> (The Lake We Share: Lake Champlain in History and Imagination, Location(s), Champlain Valley Exposition) -> Champlain Valley Exposition (1071ms) What is the location of Lake Champlain? Lake Champlain 2.22053232767182 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> (Regatta for Lake Champlain, Location(s), Lake Champlain) -> Lake Champlain (1071ms) What is the location of Lake Champlain? Lake Champlain Maritime Museum 2.162805497583531 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> (Small Boats of Lake Champlain, Location(s), Lake Champlain Maritime Museum) -> Lake Champlain Maritime Museum (1140ms) What is the location of Lake Champlain? Champlain Valley 1.9771904816302293 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> (Lake Champlain Quadricentennial, Location(s), Champlain Valley) -> Champlain Valley (1140ms) What is the location of Lake Champlain? Flynn Center for the Performing Arts 1.95446871830569 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> (Our Hidden Heritage: 1609 and Lake Champlain, Location(s), Flynn Center for the Performing Arts) -> Flynn Center for the Performing Arts (1141ms) What is the location of Lake Champlain? Lake Champlain Waterfront 1.8581122248117117 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> (Lake Champlain Maritime Festival 2009, Location(s), Lake Champlain Waterfront) -> Lake Champlain Waterfront (1140ms) What is the location of Lake Champlain? Niquette Bay State Park 1.7889567214349609 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> (Experience Lake Champlain 2009, Location(s), Niquette Bay State Park) -> Niquette Bay State Park (1160ms) What is the location of Lake Champlain? Round Pond Natural Area 1.7889567214349609 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> (Experience Lake Champlain 2009, Location(s), Round Pond Natural Area) -> Round Pond Natural Area (1160ms) What is the location of Lake Champlain? Eagle Mountain Natural Area 1.7889567214349609 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> (Experience Lake Champlain 2009, Location(s), Eagle Mountain Natural Area) -> Eagle Mountain Natural Area (1159ms) What is the location of Lake Champlain? Goodsell Ridge Fossil Preserves 1.7889567214349609 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> (Experience Lake Champlain 2009, Location(s), Goodsell Ridge Fossil Preserves) -> Goodsell Ridge Fossil Preserves (2595ms) What is the location of Lake Champlain? ECHO Lake Aquarium and Science Center 1.728770540754696 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> (Lake Champlain Basin Native American Lecture Series, Location(s), ECHO Lake Aquarium and Science Center) -> ECHO Lake Aquarium and Science Center (2596ms) What is the location of Lake Champlain? Invasion of Canada 0.018619800348620874 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, location, Lake Champlain) -> (Invasion of Canada, Location(s), Lake Champlain) -> Invasion of Canada (2695ms) What is the location of Lake Champlain? Small Boats of Lake Champlain -0.10133167862952996 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, location, Lake Champlain) -> (Small Boats of Lake Champlain, Location(s), Lake Champlain Maritime Museum) -> Small Boats of Lake Champlain (2694ms) What is the location of Lake Champlain? Quadricentennial Storytelling Festival -0.22309286875861045 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, location, Lake Champlain) -> (Quadricentennial Storytelling Festival, Location(s), Lake Champlain Maritime Museum) -> Quadricentennial Storytelling Festival (2764ms) What is the location of Lake Champlain? Shipwreck Tours -0.34692243407190726 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, location, Lake Champlain) -> (Shipwreck Tours, Location(s), Lake Champlain Maritime Museum) -> Shipwreck Tours (2764ms) What is the location of Lake Champlain? Regatta for Lake Champlain -0.37122250633036913 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, location, Lake Champlain) -> (Regatta for Lake Champlain, Location(s), Lake Champlain) -> Regatta for Lake Champlain (2764ms) What is the location of Lake Champlain? Carleton's Raid -0.37122250633036913 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, location, Lake Champlain) -> (Carleton's Raid, Location(s), Lake Champlain) -> Carleton's Raid (2764ms) What is the location of Lake Champlain? D'Olobaratz Voyage Race Challenge -0.43119824581944455 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, location, Lake Champlain) -> (D'Olobaratz Voyage Race Challenge, Location(s), Lake Champlain) -> D'Olobaratz Voyage Race Challenge (2764ms) What is the location of Lake Champlain? Lake Champlain's First Navigators -0.454760143475867 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, location, Lake Champlain) -> (Lake Champlain's First Navigators, Location(s), Lake Champlain Maritime Museum) -> Lake Champlain's First Navigators (2765ms) What is the location of Lake Champlain? When the French Were Here: International Symposium -0.46883059441803915 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (When the French Were Here: International Symposium, Included in event, Lake Champlain Quadricentennial) -> When the French Were Here: International Symposium (3729ms) What is the location of Lake Champlain? Lake Between: Native American Encampment -0.4751804547780999 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, location, Lake Champlain) -> (Lake Between: Native American Encampment, Location(s), Lake Champlain Maritime Museum) -> Lake Between: Native American Encampment (2778ms) What is the location of Lake Champlain? Carleton's Prize -0.48878733415909076 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Carleton's Prize) -> Carleton's Prize (3450ms) What is the location of Lake Champlain? The Phoenix Shipwreck -0.4896783364914105 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, The Phoenix Shipwreck) -> The Phoenix Shipwreck (3450ms) What is the location of Lake Champlain? Washington, D.C. -0.49946493363703026 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, place of publication, $x) -> (Letter from the Secretary of the Navy to the chairman of the naval committee transmitting sundry documents from Captain MacDonough relating to the capture of the British fleet on Lake Champlain, Place of publication, Washington, D.C.) -> Washington, D.C. (2915ms) What is the location of Lake Champlain? Crab Island -0.5081233429150193 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Crab Island) -> Crab Island (3450ms) What is the location of Lake Champlain? Four Brothers -0.5081233429150193 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Four Brothers) -> Four Brothers (3450ms) What is the location of Lake Champlain? First Person: Stories from the Edge of the World -0.510872411804989 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (First Person: Stories from the Edge of the World, Included in event, Lake Champlain Quadricentennial) -> First Person: Stories from the Edge of the World (3729ms) What is the location of Lake Champlain? Lake Champlain Quadricentennial -0.5406768785852125 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Lake Champlain Quadricentennial, Includes event, Small Boats of Lake Champlain) -> Lake Champlain Quadricentennial (3729ms) What is the location of Lake Champlain? General Butler Shipwreck -0.6365605848768066 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, General Butler Shipwreck) -> General Butler Shipwreck (3450ms) What is the location of Lake Champlain? Crown Point Light -0.6365605848768066 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Crown Point Light) -> Crown Point Light (3450ms) What is the location of Lake Champlain? Burlington Community Boathouse -0.6640494654759661 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain Waterfront, Contains, Burlington Community Boathouse) -> Burlington Community Boathouse (3478ms) What is the location of Lake Champlain? Champlain: The Lake Between World Premiere -0.6895501356995262 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Champlain: The Lake Between World Premiere, Included in event, Lake Champlain Quadricentennial) -> Champlain: The Lake Between World Premiere (3750ms) What is the location of Lake Champlain? New York City -0.6990834497371721 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, place of publication, $x) -> (The proudest day: Macdonough on Lake Champlain, Place of publication, New York City) -> New York City (2915ms) What is the location of Lake Champlain? Winooski River Sojourn -0.7080316744346216 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Winooski River Sojourn, Included in event, Lake Champlain Quadricentennial) -> Winooski River Sojourn (3767ms) What is the location of Lake Champlain? Realities and Relationships of First Contacts -0.7210814987397385 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Realities and Relationships of First Contacts, Included in event, Lake Champlain Quadricentennial) -> Realities and Relationships of First Contacts (3767ms) What is the location of Lake Champlain? The Lake We Share: Lake Champlain in History and Imagination -0.7210814987397385 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (The Lake We Share: Lake Champlain in History and Imagination, Included in event, Lake Champlain Quadricentennial) -> The Lake We Share: Lake Champlain in History and Imagination (3767ms) What is the location of Lake Champlain? Dameas Island -0.75146518895661 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Dameas Island) -> Dameas Island (3495ms) What is the location of Lake Champlain? Three Sisters -0.75146518895661 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Three Sisters) -> Three Sisters (3478ms) What is the location of Lake Champlain? Juniper Island -0.75146518895661 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Juniper Island) -> Juniper Island (3767ms) What is the location of Lake Champlain? Stave Island -0.75146518895661 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Stave Island) -> Stave Island (3767ms) What is the location of Lake Champlain? Knight Island -0.75146518895661 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Knight Island) -> Knight Island (3495ms) What is the location of Lake Champlain? North America -0.75146518895661 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, contain, Lake Champlain) -> (North America, Contains, Lake Champlain) -> North America (3478ms) What is the location of Lake Champlain? Young Island -0.75146518895661 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Young Island) -> Young Island (3495ms) What is the location of Lake Champlain? Cloak Island -0.75146518895661 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Cloak Island) -> Cloak Island (3495ms) What is the location of Lake Champlain? Burton Island -0.75146518895661 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Burton Island) -> Burton Island (3783ms) What is the location of Lake Champlain? Garden Island -0.75146518895661 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Garden Island) -> Garden Island (3478ms) What is the location of Lake Champlain? Valcour Island -0.75146518895661 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Valcour Island) -> Valcour Island (3495ms) What is the location of Lake Champlain? Providence Island -0.75146518895661 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Providence Island) -> Providence Island (3495ms) What is the location of Lake Champlain? Savage Island -0.75146518895661 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Savage Island) -> Savage Island (3478ms) What is the location of Lake Champlain? Chittenden County -0.7839520478465258 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, contain, Lake Champlain) -> (Chittenden County, Contains, Lake Champlain Waterfront) -> Chittenden County (3783ms) What is the location of Lake Champlain? 1609: The Other Side of History -0.8140910106384573 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (1609: The Other Side of History, Included in event, Lake Champlain Quadricentennial) -> 1609: The Other Side of History (3920ms) What is the location of Lake Champlain? Indigenous Expressions -0.8350028261021079 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Indigenous Expressions, Included in event, Lake Champlain Quadricentennial) -> Indigenous Expressions (3955ms) What is the location of Lake Champlain? Champlain II Shipwreck -0.8357410007041473 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Champlain II Shipwreck) -> Champlain II Shipwreck (3955ms) What is the location of Lake Champlain? Coal Barge Shipwreck -0.8430545651759676 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Coal Barge Shipwreck) -> Coal Barge Shipwreck (3955ms) What is the location of Lake Champlain? South Hero Island -0.8682278595940631 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, South Hero Island) -> South Hero Island (3985ms) What is the location of Lake Champlain? Stone Boat Shipwreck -0.8682278595940631 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Stone Boat Shipwreck) -> Stone Boat Shipwreck (3969ms) What is the location of Lake Champlain? Colchester Reef Light -0.8682278595940631 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Colchester Reef Light) -> Colchester Reef Light (3969ms) What is the location of Lake Champlain? Isle La Motte -0.8682278595940631 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Isle La Motte) -> Isle La Motte (3969ms) What is the location of Lake Champlain? North Hero Island -0.8682278595940631 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, North Hero Island) -> North Hero Island (3985ms) What is the location of Lake Champlain? OJ Walker Shipwreck -0.8682278595940631 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, OJ Walker Shipwreck) -> OJ Walker Shipwreck (3969ms) What is the location of Lake Champlain? Knight Island State Park -0.8957167401932227 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Knight Island State Park) -> Knight Island State Park (4029ms) What is the location of Lake Champlain? Burton Island State Park -0.8957167401932227 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Burton Island State Park) -> Burton Island State Park (4015ms) What is the location of Lake Champlain? Woods Island State Park -0.8957167401932227 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Woods Island State Park) -> Woods Island State Park (4029ms) What is the location of Lake Champlain? Celebrate Champlain Event Series -0.9192786378496451 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Celebrate Champlain Event Series, Included in event, Lake Champlain Quadricentennial) -> Celebrate Champlain Event Series (4060ms) What is the location of Lake Champlain? Celebrate Southern Lake Champlain -0.9192786378496451 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Celebrate Southern Lake Champlain, Included in event, Lake Champlain Quadricentennial) -> Celebrate Southern Lake Champlain (4046ms) What is the location of Lake Champlain? Burlington Bay Horse Ferry Shipwreck -0.9192786378496451 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Burlington Bay Horse Ferry Shipwreck) -> Burlington Bay Horse Ferry Shipwreck (4060ms) What is the location of Lake Champlain? Art Fits Vermont -0.9396989491518781 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Art Fits Vermont, Included in event, Lake Champlain Quadricentennial) -> Art Fits Vermont (4117ms) What is the location of Lake Champlain? Teddy Roosevelt Day -0.9396989491518781 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Teddy Roosevelt Day, Included in event, Lake Champlain Quadricentennial) -> Teddy Roosevelt Day (4099ms) What is the location of Lake Champlain? Champlain Hudson Celebration Ride -0.9396989491518781 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Champlain Hudson Celebration Ride, Included in event, Lake Champlain Quadricentennial) -> Champlain Hudson Celebration Ride (4117ms) What is the location of Lake Champlain? Great Champlain-Hudson Sojourn -0.9396989491518781 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Great Champlain-Hudson Sojourn, Included in event, Lake Champlain Quadricentennial) -> Great Champlain-Hudson Sojourn (4099ms) What is the location of Lake Champlain? Boston -0.9429152892977372 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, place of publication, $x) -> (The heroes of the North, or, The Battles of Lake Erie and Champlain two poems, Place of publication, Boston) -> Boston (2915ms) What is the location of Lake Champlain? Isle La Motte Flotilla -0.9575667215413317 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Isle La Motte Flotilla, Included in event, Lake Champlain Quadricentennial) -> Isle La Motte Flotilla (4147ms) What is the location of Lake Champlain? Meet Explorer Samuel de Champlain -0.9575667215413317 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Meet Explorer Samuel de Champlain, Included in event, Lake Champlain Quadricentennial) -> Meet Explorer Samuel de Champlain (4147ms) What is the location of Lake Champlain? Lake Champlain Basin Native American Lecture Series -0.9733324030614379 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Lake Champlain Basin Native American Lecture Series, Included in event, Lake Champlain Quadricentennial) -> Lake Champlain Basin Native American Lecture Series (4147ms) What is the location of Lake Champlain? Quadricentennial Table Talks: Side Dishes for Thought -0.9873463421904214 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Quadricentennial Table Talks: Side Dishes for Thought, Included in event, Lake Champlain Quadricentennial) -> Quadricentennial Table Talks: Side Dishes for Thought (4164ms) What is the location of Lake Champlain? LCLT Protected Landscape Tour: Goodsell Ridge -0.9873463421904214 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (LCLT Protected Landscape Tour: Goodsell Ridge, Included in event, Lake Champlain Quadricentennial) -> LCLT Protected Landscape Tour: Goodsell Ridge (4164ms) What is the location of Lake Champlain? Bike Champlain: Vermont to Quebec City Bike Tour -0.9998851298321432 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Bike Champlain: Vermont to Quebec City Bike Tour, Included in event, Lake Champlain Quadricentennial) -> Bike Champlain: Vermont to Quebec City Bike Tour (4164ms) What is the location of Lake Champlain? Maritime museum -0.9999672771504402 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, museum, Lake Champlain) -> (Maritime museum, Museums, Lake Champlain Maritime Museum) -> Maritime museum (2778ms) What is the location of Lake Champlain? LCLT Protected Landscape Tour: Eagle Mountain Natural Area -1.011170038709693 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (LCLT Protected Landscape Tour: Eagle Mountain Natural Area, Included in event, Lake Champlain Quadricentennial) -> LCLT Protected Landscape Tour: Eagle Mountain Natural Area (4281ms) What is the location of Lake Champlain? LCLT Protected Landscape Tour: Round Pond Natural Area -1.011170038709693 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (LCLT Protected Landscape Tour: Round Pond Natural Area, Included in event, Lake Champlain Quadricentennial) -> LCLT Protected Landscape Tour: Round Pond Natural Area (4164ms) What is the location of Lake Champlain? If Samuel Came to St. Albans During Sugarin' -1.011170038709693 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (If Samuel Came to St. Albans During Sugarin', Included in event, Lake Champlain Quadricentennial) -> If Samuel Came to St. Albans During Sugarin' (4164ms) What is the location of Lake Champlain? LCLT Protected Landscape Tour: Niquette Bay State Park -1.011170038709693 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (LCLT Protected Landscape Tour: Niquette Bay State Park, Included in event, Lake Champlain Quadricentennial) -> LCLT Protected Landscape Tour: Niquette Bay State Park (4282ms) What is the location of Lake Champlain? Exploring Franklin County, Vermont the 21st Century Way -1.1667444130618858 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Exploring Franklin County, Vermont the 21st Century Way, Included in event, Lake Champlain Quadricentennial) -> Exploring Franklin County, Vermont the 21st Century Way (4282ms) What is the location of Lake Champlain? Lake Champlain Maritime Festival 2009 -1.2276229083513672 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, location, Lake Champlain) -> (Lake Champlain Maritime Festival 2009, Location(s), Lake Champlain Waterfront) -> Lake Champlain Maritime Festival 2009 (2778ms) What is the location of Lake Champlain? Hen Island -1.361461540653071 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Hen Island) -> Hen Island (4281ms) What is the location of Lake Champlain? Burlington -1.418429966216229 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, tourist attraction, Lake Champlain) -> (Burlington, Tourist attractions, ECHO at the Leahy Center for Lake Champlain) -> Burlington (4411ms) What is the location of Lake Champlain? Rutland City -1.4899487788899526 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, place of publication, $x) -> (A sermon, delivered September 22, 1814, in ... Rutland ... at a thanksgiving to almighty God ... for the fall of the British fleet on Lake Champlain, and the defeat of their army at Plattsburgh ..., Place of publication, Rutland City) -> Rutland City (3098ms) What is the location of Lake Champlain? Plattsburgh -1.56462083122085 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, tourist attraction, Lake Champlain) -> (Plattsburgh, Tourist attractions, Lake Champlain) -> Plattsburgh (4411ms) What is the location of Lake Champlain? Vermont Quilt Festival 2009 -1.593181432568171 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Vermont Quilt Festival 2009, Includes event, The Lake We Share: Lake Champlain in History and Imagination) -> Vermont Quilt Festival 2009 (4435ms) What is the location of Lake Champlain? Experience Lake Champlain 2009 -1.7157033003815678 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Experience Lake Champlain 2009, Included in event, Lake Champlain Quadricentennial) -> Experience Lake Champlain 2009 (4451ms) What is the location of Lake Champlain? INDIECON 2009 -1.7157033003815678 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (INDIECON 2009, Included in event, Lake Champlain Quadricentennial) -> INDIECON 2009 (4451ms) What is the location of Lake Champlain? Grand Isle -1.7649639120503713 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, Grand Isle) -> Grand Isle (4451ms) What is the location of Lake Champlain? North Hero -1.7649639120503713 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, Contains, North Hero) -> North Hero (4451ms) What is the location of Lake Champlain? Burlington Discover Jazz Festival 2009 -1.7697570655933605 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Burlington Discover Jazz Festival 2009, Included in event, Lake Champlain Quadricentennial) -> Burlington Discover Jazz Festival 2009 (4451ms) What is the location of Lake Champlain? Burlington Irish Heritage Festival 2009 -1.7697570655933605 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Burlington Irish Heritage Festival 2009, Included in event, Lake Champlain Quadricentennial) -> Burlington Irish Heritage Festival 2009 (4451ms) What is the location of Lake Champlain? Vermont Youth Orchestra 2009 International Tour Kickoff Concert -1.8075947012416156 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, event, Lake Champlain) -> (Vermont Youth Orchestra 2009 International Tour Kickoff Concert, Included in event, Lake Champlain Quadricentennial) -> Vermont Youth Orchestra 2009 International Tour Kickoff Concert (4500ms) What is the location of Lake Champlain? Central New York -2.2283185993366215 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, contain, Lake Champlain) -> (Central New York, contains, the Hudson River and Lake Champlain) -> Central New York (4588ms) What is the location of Lake Champlain? South Bay -2.4426407405343857 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, call, $x) -> (Lake Champlain, is called, South Bay) -> South Bay (2778ms) What is the location of Lake Champlain? the Lake -2.4818499444030664 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, call, $x) -> (Lake Champlain, has been called, the Lake) -> the Lake (2778ms) What is the location of Lake Champlain? Vermont -2.782594854822041 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, be home to, Lake Champlain) -> (Vermont, is home to, Lake Champlain) -> Vermont (4602ms) What is the location of Lake Champlain? the Vermont Fish -2.817584415785421 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, set, $x) -> (the Lake Champlain Zone, will be set by, the Vermont Fish) -> the Vermont Fish (3098ms) What is the location of Lake Champlain? the Narrows -2.8966317421134495 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, call, $x) -> (Lake Champlain, is called, the Narrows) -> the Narrows (3098ms) What is the location of Lake Champlain? Ir-o-coi-sia -2.905306742513825 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, call, $x) -> (Lake Champlain, was called, Ir-o-coi-sia) -> Ir-o-coi-sia (3098ms) What is the location of Lake Champlain? The World Championship -3.1747423243985287 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, place, Lake Champlain) -> (The World Championship, also took place on, Lake Champlain) -> The World Championship (6928ms) What is the location of Lake Champlain? a time travel novel -3.1802284374829757 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, place, Lake Champlain) -> (a time travel novel, takes place on, the Lake Champlain Islands) -> a time travel novel (6928ms) What is the location of Lake Champlain? a series -3.227081079389212 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, place, Lake Champlain) -> (a series, takes place on, Lake Champlain) -> a series (6928ms) What is the location of Lake Champlain? cold fresh water -3.4045059617131077 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, contains, cold fresh water) -> cold fresh water (7009ms) What is the location of Lake Champlain? a furious naval fight -3.493964955916806 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, end in, $x) -> (Lake Champlain, had ended in, a furious naval fight) -> a furious naval fight (3098ms) What is the location of Lake Champlain? a wonderful patchwork -3.552479260338389 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, contains, a wonderful patchwork) -> a wonderful patchwork (7009ms) What is the location of Lake Champlain? flood levels -3.725194290517134 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, setting, $x) -> (our local case Lake Champlain, set new records for, flood levels) -> flood levels (7009ms) What is the location of Lake Champlain? 2 stores -3.7949180595888583 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (Lake Champlain, contains, 2 stores) -> 2 stores (7009ms) What is the location of Lake Champlain? Champ -3.9330754146868463 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, call, $x) -> (Lake Champlain, called, Champ) -> Champ (7100ms) What is the location of Lake Champlain? the Adirondacks -4.0720790871279515 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, locate in, $x) -> (Lake Champlain, located farther north in, the Adirondacks) -> the Adirondacks (7100ms) What is the location of Lake Champlain? the event -4.411964576932867 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, place, Lake Champlain) -> (the event, took place on, Lake Champlain) -> the event (7309ms) What is the location of Lake Champlain? The property -4.557489874560202 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, place, Lake Champlain) -> (The property, is placed between, Champlain and George Lake) -> The property (7309ms) What is the location of Lake Champlain? the classic Vermont backdrop -4.653405145329504 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, setting, $x) -> (Lake Champlain, is set against, the classic Vermont backdrop) -> the classic Vermont backdrop (7339ms) What is the location of Lake Champlain? 1992 -4.9113247784004965 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, begin in, $x) -> (our Lake Champlain monitoring program, began in, 1992) -> 1992 (7339ms) What is the location of Lake Champlain? 1812 -4.969497161368953 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, place, Lake Champlain) -> (1812, took place on, Lake Champlain) -> 1812 (7339ms) What is the location of Lake Champlain? place -5.022768130877048 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, be set in, $x) -> (the new Lake Champlain bridge, was set in, place) -> place (7393ms) What is the location of Lake Champlain? twelve -5.2582338357242975 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, contain, $x) -> (the Lake Champlain area, contains, twelve) -> twelve (7392ms) What is the location of Lake Champlain? links -5.792492833935675 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, sponsor, $x) -> (Lake Champlain Chocolates, sponsored, links) -> links (7555ms) What is the location of Lake Champlain? the sixth Great Lake -6.133611953100442 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: (Lake Champlain, call, $x) -> (Lake Champlain, called, the sixth Great Lake) -> the sixth Great Lake (7555ms) What is the location of Lake Champlain? the sun -6.145443415306451 What is the location of Lake Champlain? -> $x: (Lake Champlain, location, $x) -> $x: ($x, setting, Lake Champlain) -> (the sun, set over, Lake Champlain) -> the sun (7630ms) What is the location of Lake Champlain? VT Vermont -10.585134720399516 What is the location of Lake Champlain? -> what be the location of [ lake champlain ] ? -> which state be lake champlain locate ? -> $x: ($x, instance of, state) (lake champlain, locate, $x) -> (VT Vermont, Instance Of, state) (Lake Champlain, is located between, Vermont) -> VT Vermont (7945ms) What is the location of Lake Champlain? New York -10.992996455680638 What is the location of Lake Champlain? -> what be the location of [ lake champlain ] ? -> which state be lake champlain locate ? -> $x: ($x, instance of, state) (lake champlain, locate, $x) -> (New York, Instance Of, state) (Lake Champlain, located between, New York) -> New York (7945ms) What is the location of Lake Champlain? North and South America -12.28642313847069 What is the location of Lake Champlain? -> what be the location of [ lake champlain ] ? -> what country contain lake champlain ? -> $x: ($x, instance of, country) ($x, contain, lake champlain) -> (North and South America, Instance Of, country) (North America, Contains, Lake Champlain) -> North and South America (9315ms) What is the location of Lake Champlain? North-America -12.316468984075716 What is the location of Lake Champlain? -> what be the location of [ lake champlain ] ? -> what country contain lake champlain ? -> $x: ($x, instance of, country) ($x, contain, lake champlain) -> (North-America, Instance Of, country) (North America, Contains, Lake Champlain) -> North-America (9315ms) What is the location of Lake Champlain? North & South America -12.499363170567543 What is the location of Lake Champlain? -> what be the location of [ lake champlain ] ? -> what country contain lake champlain ? -> $x: ($x, instance of, country) ($x, contain, lake champlain) -> (North & South America, Instance Of, country) (North America, Contains, Lake Champlain) -> North & South America (9315ms) What is the location of Lake Champlain? Burlington VT -12.567783653488316 What is the location of Lake Champlain? -> what be the location of [ lake champlain ] ? -> what country contain lake champlain ? -> $x: ($x, instance of, country) ($x, contain, lake champlain) -> (Burlington VT, Instance Of, European country) (Burlington, Contains, Lake Champlain Waterfront) -> Burlington VT (9316ms) What is the location of Lake Champlain? 1895 -12.777269840803617 What is the location of Lake Champlain? -> what be the location of [ lake champlain ] ? -> what be located in lake champlain ? -> $x: ($x, be located in, lake champlain) -> (1895, was located in, Lake Champlain) -> 1895 (7992ms) What is the location of Lake Champlain? the Steamship Champlain -12.91542113886215 What is the location of Lake Champlain? -> what be the location of [ lake champlain ] ? -> what be located in lake champlain ? -> $x: ($x, be located in, lake champlain) -> $x: ($x, locate in, lake champlain) -> (the Steamship Champlain, located in, Lake Champlain) -> the Steamship Champlain (7992ms) What is the location of Lake Champlain? Plattsburg -13.163418953019058 What is the location of Lake Champlain? -> what be the location [ of lake champlain ] ? -> what location be of lake champlain ? -> $x: ($x, instance of, location) ($x, be of, lake champlain) -> (Plattsburg, Instance Of, amazing location) (Plattsburg, was fought the battle of, lake Champlain) -> Plattsburg (9315ms) What is the location of Lake Champlain? program -15.43981472625138 What is the location of Lake Champlain? -> what be the location [ of lake champlain ] ? -> what location be of lake champlain ? -> $x: ($x, instance of, location) ($x, be of, lake champlain) -> (program, Instance Of, location) (program, is one of, several Lake Champlain conservation projects) -> program (9345ms) What was Curveball's profession? TV Episode -3.8715505290040135 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, type, $x) -> (Voiceprints; Curveball; Goosebumps Chat; Hawk, Type, TV Episode) -> TV Episode (8834ms) What was Curveball's profession? EP -4.183480481576067 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, type, $x) -> (Curveball EP, Release type, EP) -> EP (8834ms) What was Curveball's profession? Curveball: Spies, Lies, and the Con Man Who Caused a War -4.192601240423203 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, write about, $x) -> (Curveball, Works Written About This Topic, Curveball: Spies, Lies, and the Con Man Who Caused a War) -> Curveball: Spies, Lies, and the Con Man Who Caused a War (6395ms) What was Curveball's profession? Book Edition -4.489208318132069 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, type, $x) -> (Curveball, Notable types, Book Edition) -> Book Edition (8854ms) What was Curveball's profession? El Camino -4.727807369573149 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (El Camino, Instance Of, fitting curveball) -> El Camino (8188ms) What was Curveball's profession? Business Operation -4.732550164173659 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Business Operation, Instance, Curveball Recordings) -> Business Operation (9005ms) What was Curveball's profession? Canonical Version -4.732550164173659 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, notable type, $x) -> (Curveball for the 21st Century, Notable types, Canonical Version) -> Canonical Version (9114ms) What was Curveball's profession? Musical Album -4.732550164173659 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, notable type, $x) -> (Curveball / Haiku, Notable types, Musical Album) -> Musical Album (9114ms) What was Curveball's profession? Musical Release -4.732550164173659 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, notable type, $x) -> (Curveball EP, Notable types, Musical Release) -> Musical Release (9006ms) What was Curveball's profession? Musical Recording -4.732550164173659 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, type, $x) -> (Curveball for the 21st Century, Type, Musical Recording) -> Musical Recording (8993ms) What was Curveball's profession? Literature Subject -4.732550164173659 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, notable type, $x) -> (Curveball, Notable types, Literature Subject) -> Literature Subject (8956ms) What was Curveball's profession? Netflix Title -4.732550164173659 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, notable type, $x) -> (Hitting for Excellence: Power Hitting & Conquering the Curveball, Notable types, Netflix Title) -> Netflix Title (8956ms) What was Curveball's profession? Musical Artist -4.732550164173659 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, notable type, $x) -> (Curveball Abbey, Notable types, Musical Artist) -> Musical Artist (9006ms) What was Curveball's profession? Award-Nominated Work -4.816825975921197 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, notable type, $x) -> (Arthur Sternbach Brings the Curveball to Mars, Notable types, Award-Nominated Work) -> Award-Nominated Work (9114ms) What was Curveball's profession? Album -4.884319591390004 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, type, $x) -> (Curveball, Release type, Album) -> Album (9129ms) What was Curveball's profession? Cataloged instance -5.020036483035389 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, notable type, $x) -> (The crooked pitch: the curveball in American baseball history, Notable types, Cataloged instance) -> Cataloged instance (9286ms) What was Curveball's profession? Release track -5.020036483035389 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, type, $x) -> (Curveball Dreamer, Type, Release track) -> Release track (9302ms) What was Curveball's profession? Record label -5.020036483035389 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, type, $x) -> (Curveball Recordings, Notable types, Record label) -> Record label (9286ms) What was Curveball's profession? Ahmed Chalabi -5.051700541170984 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, be a, $x) -> (Curveball, was a creation of, Ahmed Chalabi) -> Ahmed Chalabi (6973ms) What was Curveball's profession? Brad Lincoln -5.160743009776882 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Brad Lincoln, Instance Of, curveball specialist) -> Brad Lincoln (9345ms) What was Curveball's profession? wholly reliable source -5.172167553224494 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, wholly reliable source) -> wholly reliable source (7558ms) What was Curveball's profession? Rick Waits -5.205636965212024 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Rick Waits, Instance Of, curveball specialist) -> Rick Waits (9344ms) What was Curveball's profession? sort of clever fellow -5.276877052170741 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, sort of clever fellow) -> sort of clever fellow (7558ms) What was Curveball's profession? technique of baseball pitching -5.276877052170741 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, technique of baseball pitching) -> technique of baseball pitching (7558ms) What was Curveball's profession? type of breaking ball -5.276877052170741 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, type of breaking ball) -> type of breaking ball (7558ms) What was Curveball's profession? off-speed pitch -5.30214902560001 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, off-speed pitch) -> off-speed pitch (7558ms) What was Curveball's profession? Strike two -5.320794312980254 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Strike two, Instance Of, nasty curveball) -> Strike two (9344ms) What was Curveball's profession? Edwards breaking ball -5.325014836976386 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Edwards breaking ball, Instance Of, true curveball) -> Edwards breaking ball (9344ms) What was Curveball's profession? trained chemical engineer -5.336350152336478 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, trained chemical engineer) -> trained chemical engineer (7558ms) What was Curveball's profession? American League -5.362957193780473 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (American League, Instance Of, curveball league) -> American League (9344ms) What was Curveball's profession? casual puzzle game -5.385816158268836 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, casual puzzle game) -> casual puzzle game (9380ms) What was Curveball's profession? Eldon Alexander -5.387883050303928 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Eldon Alexander, Instance Of, curveball) -> Eldon Alexander (9380ms) What was Curveball's profession? hard biting sweeper -5.397339878124567 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, hard biting sweeper) -> hard biting sweeper (9380ms) What was Curveball's profession? asset of the German intelligence service -5.406460636971703 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, asset of the German intelligence service) -> asset of the German intelligence service (9380ms) What was Curveball's profession? Anorthosis Famagusta -5.407851149215615 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Anorthosis Famagusta, Instance Of, massive curveball) -> Anorthosis Famagusta (9380ms) What was Curveball's profession? Kosher Lutherans -5.407851149215615 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Kosher Lutherans, Instance Of, curveball comedy) -> Kosher Lutherans (9380ms) What was Curveball's profession? Baghdad taxi driver -5.411036454449529 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, Baghdad taxi driver) -> Baghdad taxi driver (9397ms) What was Curveball's profession? Sony Playstation Phone -5.422059711109915 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Sony Playstation Phone, Instance Of, real curveball) -> Sony Playstation Phone (9397ms) What was Curveball's profession? type of pitch -5.422911702032043 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, type of pitch) -> type of pitch (9397ms) What was Curveball's profession? Rabbit Snare -5.432777005739069 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Rabbit Snare, Instance Of, curveball) -> Rabbit Snare (9415ms) What was Curveball's profession? Renaissance Italy -5.432777005739069 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Renaissance Italy, Instance Of, curveball) -> Renaissance Italy (9397ms) What was Curveball's profession? Memphis Blues -5.432777005739069 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Memphis Blues, Instance Of, curveball) -> Memphis Blues (9415ms) What was Curveball's profession? Hanging Curve -5.432777005739069 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Hanging Curve, Instance Of, curveball) -> Hanging Curve (9415ms) What was Curveball's profession? Uncle Charlie -5.432777005739069 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Uncle Charlie, Instance Of, curveball) -> Uncle Charlie (9397ms) What was Curveball's profession? advanced pitching technique -5.438112246680874 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, advanced pitching technique) -> advanced pitching technique (9415ms) What was Curveball's profession? pitcher's secret weapon -5.447233005528011 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, pitcher's secret weapon) -> pitcher's secret weapon (9415ms) What was Curveball's profession? McPherson's breaking ball -5.447233005528011 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (McPherson's breaking ball, Instance Of, sweeping curveball) -> McPherson's breaking ball (9436ms) What was Curveball's profession? Jules Thin Crust -5.447233005528011 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Jules Thin Crust, Instance Of, nice curveball) -> Jules Thin Crust (9415ms) What was Curveball's profession? fun and addictive online game -5.447233005528011 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, fun and addictive online game) -> fun and addictive online game (9436ms) What was Curveball's profession? rapid fire quiz show -5.447233005528011 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, rapid fire quiz show) -> rapid fire quiz show (9436ms) What was Curveball's profession? introducing Leonardo DaVinci -5.447233005528011 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (introducing Leonardo DaVinci, Instance Of, curveballs) -> introducing Leonardo DaVinci (9436ms) What was Curveball's profession? Film -5.453819773805181 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, type, $x) -> (Joe Torre: Curveballs Along the Way, Type, Film) -> Film (9620ms) What was Curveball's profession? Book -5.453819773805181 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Book, Instance, Curveballs) -> Book (9620ms) What was Curveball's profession? SECRET INVASION -5.4699897018353845 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (SECRET INVASION, Instance Of, curveball) -> SECRET INVASION (9735ms) What was Curveball's profession? source of information -5.4775346982157505 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (CURVEBALL, Instance Of, source of information) -> source of information (9735ms) What was Curveball's profession? completely unreliable informant -5.483006202116016 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, completely unreliable informant) -> completely unreliable informant (9735ms) What was Curveball's profession? strategy quiz format -5.483006202116016 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, strategy quiz format) -> strategy quiz format (9877ms) What was Curveball's profession? highly regarded informant -5.483006202116016 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, highly regarded informant) -> highly regarded informant (9735ms) What was Curveball's profession? very hittable pitch -5.483006202116016 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, very hittable pitch) -> very hittable pitch (9735ms) What was Curveball's profession? two -5.485314891669929 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, be an, $x) -> (Curveballs, is an outlet for, two) -> two (9877ms) What was Curveball's profession? addictive futurist pong remake -5.4921269609631524 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, addictive futurist pong remake) -> addictive futurist pong remake (9928ms) What was Curveball's profession? coddled, lazy, underachieving college student -5.4921269609631524 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, coddled, lazy, underachieving college student) -> coddled, lazy, underachieving college student (9877ms) What was Curveball's profession? senior Iraqi engineer -5.4921269609631524 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, senior Iraqi engineer) -> senior Iraqi engineer (9904ms) What was Curveball's profession? minimal yet addicting game -5.4921269609631524 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, minimal yet addicting game) -> minimal yet addicting game (9953ms) What was Curveball's profession? Thompson's breaking ball -5.4921269609631524 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Thompson's breaking ball, Instance Of, hard curveball) -> Thompson's breaking ball (9904ms) What was Curveball's profession? Elijah coming in the personage of John -5.4921269609631524 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Elijah coming in the personage of John, Instance Of, huge curveball) -> Elijah coming in the personage of John (9877ms) What was Curveball's profession? Empress of the Dark Spaces -5.4921269609631524 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Empress of the Dark Spaces, Instance Of, great curveball) -> Empress of the Dark Spaces (9904ms) What was Curveball's profession? benefit back-payments -5.4921269609631524 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (benefit back-payments, Instance Of, curveballs) -> benefit back-payments (9904ms) What was Curveball's profession? ball thrown with a ton of topspin -5.4921269609631524 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (ball thrown with a ton of topspin, Instance Of, standard curveball) -> ball thrown with a ton of topspin (9877ms) What was Curveball's profession? Minny picking Flynn -5.4921269609631524 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Minny picking Flynn, Instance Of, real curveball) -> Minny picking Flynn (9953ms) What was Curveball's profession? sort of virtual ping pong ball -5.4921269609631524 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, sort of virtual ping pong ball) -> sort of virtual ping pong ball (9877ms) What was Curveball's profession? modification of the classic old school arcade game Pong -5.4921269609631524 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, modification of the classic old school arcade game Pong) -> modification of the classic old school arcade game Pong (9953ms) What was Curveball's profession? Iraqi named Rafid Ahmed Alwan al-Janabi -5.4921269609631524 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, Iraqi named Rafid Ahmed Alwan al-Janabi) -> Iraqi named Rafid Ahmed Alwan al-Janabi (9928ms) What was Curveball's profession? Gravity Ball HD -5.4921269609631524 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Gravity Ball HD, Instance Of, literal curveball) -> Gravity Ball HD (9929ms) What was Curveball's profession? free Kids game , Curveballs -5.4921269609631524 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, free Kids game , Curveballs) -> free Kids game , Curveballs (9928ms) What was Curveball's profession? Dre & Snoop -5.4921269609631524 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Dre & Snoop, Instance Of, huge curveball) -> Dre & Snoop (9953ms) What was Curveball's profession? Stephens out pitch -5.4921269609631524 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Stephens out pitch, Instance Of, sharp curveball) -> Stephens out pitch (9904ms) What was Curveball's profession? Yuko and Hiro-amazing-it -5.4921269609631524 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Yuko and Hiro-amazing-it, Instance Of, real curveball) -> Yuko and Hiro-amazing-it (9928ms) What was Curveball's profession? American Tabloid by James Ellroy -5.4921269609631524 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (American Tabloid by James Ellroy, Instance Of, giant curveball) -> American Tabloid by James Ellroy (9953ms) What was Curveball's profession? GERMAN intelligence asset -5.4921269609631524 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, GERMAN intelligence asset) -> GERMAN intelligence asset (9904ms) What was Curveball's profession? pretty nifty Web game -5.4921269609631524 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, pretty nifty Web game) -> pretty nifty Web game (9929ms) What was Curveball's profession? very fast read -5.503570033135016 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, very fast read) -> very fast read (9979ms) What was Curveball's profession? breaking pitch -5.506399805087683 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, breaking pitch) -> breaking pitch (9979ms) What was Curveball's profession? Organization -5.508544326887997 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, type, $x) -> (Curveball Recordings, Notable types, Organization) -> Organization (10071ms) What was Curveball's profession? Person -5.508544326887997 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, notable type, $x) -> (Curveball, Notable types, Person) -> Person (10050ms) What was Curveball's profession? Image -5.508544326887997 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Image, Instance, Curveball topspin) -> Image (10071ms) What was Curveball's profession? Content -5.508544326887997 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, notable type, $x) -> (12-6 Curveball, Notable types, Content) -> Content (10050ms) What was Curveball's profession? Topic -5.508544326887997 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Topic, Instance, Curveballs) -> Topic (10050ms) What was Curveball's profession? crossword puzzle answer -5.510569892174624 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (CURVEBALLS, Instance Of, crossword puzzle answer) -> crossword puzzle answer (10072ms) What was Curveball's profession? Marvel LeFay -5.517052817486607 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Marvel LeFay, Instance Of, curveball) -> Marvel LeFay (10072ms) What was Curveball's profession? Sean Marshall s next pitch -5.517052817486607 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Sean Marshall s next pitch, Instance Of, curveball) -> Sean Marshall s next pitch (10092ms) What was Curveball's profession? Acclaimed novelist Andrew O?Hagan's latest -5.517052817486607 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Acclaimed novelist Andrew O?Hagan's latest, Instance Of, curveball) -> Acclaimed novelist Andrew O?Hagan's latest (10071ms) What was Curveball's profession? Hanatarou and Izuru -5.517052817486607 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Hanatarou and Izuru, Instance Of, curveball) -> Hanatarou and Izuru (10092ms) What was Curveball's profession? Ramos on Wolverine -5.517052817486607 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Ramos on Wolverine, Instance Of, curveball) -> Ramos on Wolverine (10092ms) What was Curveball's profession? Last year's Evil Urges -5.517052817486607 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Last year's Evil Urges, Instance Of, curveball) -> Last year's Evil Urges (10092ms) What was Curveball's profession? Last week's -5.517052817486607 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Last week's, Instance Of, curveball) -> Last week's (10072ms) What was Curveball's profession? Pedro's setback'' -5.517052817486607 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Pedro's setback'', Instance Of, curveball) -> Pedro's setback'' (10092ms) What was Curveball's profession? elite level movement pitch -5.519545403138952 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, elite level movement pitch) -> elite level movement pitch (10092ms) What was Curveball's profession? friend of mine -5.522694226035899 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, friend of mine) -> friend of mine (10275ms) What was Curveball's profession? pitch during live batting practice -5.525029091083832 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, pitch during live batting practice) -> pitch during live batting practice (10275ms) What was Curveball's profession? Dies Irae -5.533254623001152 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Dies Irae, Instance Of, complete curveball) -> Dies Irae (10275ms) What was Curveball's profession? Sunrise/sunset -5.533254623001152 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Sunrise/sunset, Instance Of, complete curveball) -> Sunrise/sunset (10275ms) What was Curveball's profession? con artist -5.548362022341165 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, con artist) -> con artist (10275ms) What was Curveball's profession? free online flash arcade game -5.548564918186212 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, free online flash arcade game) -> free online flash arcade game (10275ms) What was Curveball's profession? free online flash game -5.554734252817729 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, free online flash game) -> free online flash game (10312ms) What was Curveball's profession? Iraqi exile -5.62453752568529 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, Iraqi exile) -> Iraqi exile (10312ms) What was Curveball's profession? Iraqi informant -5.695337468077344 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, Iraqi informant) -> Iraqi informant (10312ms) What was Curveball's profession? hard pitch -5.703934187989367 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, hard pitch) -> hard pitch (10312ms) What was Curveball's profession? pitch type -5.724846803464216 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveballs, Instance Of, pitch type) -> pitch type (10380ms) What was Curveball's profession? Published Work -5.7460488872674205 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Published Work, Instance, Curveball) -> Published Work (10471ms) What was Curveball's profession? Creative Work -5.7460488872674205 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, notable type, $x) -> (Curveball, Notable types, Creative Work) -> Creative Work (10491ms) What was Curveball's profession? Written Work -5.7460488872674205 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, type, $x) -> (Curveballs, Notable types, Written Work) -> Written Work (10491ms) What was Curveball's profession? 3D version of pong -5.748906510642813 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, 3D version of pong) -> 3D version of pong (10491ms) What was Curveball's profession? advanced pitch -5.75986326002841 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, advanced pitch) -> advanced pitch (10491ms) What was Curveball's profession? specialty pitch -5.768214019515447 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveballs, Instance Of, specialty pitch) -> specialty pitch (10491ms) What was Curveball's profession? fun game -5.78185878742751 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, fun game) -> fun game (10514ms) What was Curveball's profession? popular pitch -5.796531683546233 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, popular pitch) -> popular pitch (10514ms) What was Curveball's profession? movement pitch -5.796531683546233 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, movement pitch) -> movement pitch (10514ms) What was Curveball's profession? unpredictable pitch -5.804401921981859 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, unpredictable pitch) -> unpredictable pitch (10514ms) What was Curveball's profession? reliable source -5.81729575237763 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, reliable source) -> reliable source (10514ms) What was Curveball's profession? standard pitch -5.831820364157659 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, standard pitch) -> standard pitch (10514ms) What was Curveball's profession? fascinating pitch -5.849295877417001 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, fascinating pitch) -> fascinating pitch (10535ms) What was Curveball's profession? gimmicky pitch -5.849295877417001 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, gimmicky pitch) -> gimmicky pitch (10555ms) What was Curveball's profession? basic pitch -5.849295877417001 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, basic pitch) -> basic pitch (10535ms) What was Curveball's profession? ping pong -5.849295877417001 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, ping pong) -> ping pong (10555ms) What was Curveball's profession? average offering -5.849295877417001 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, average offering) -> average offering (10535ms) What was Curveball's profession? secondary stuff -5.849295877417001 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveballs, Instance Of, secondary stuff) -> secondary stuff (10555ms) What was Curveball's profession? outstanding pitch -5.849295877417001 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, outstanding pitch) -> outstanding pitch (10555ms) What was Curveball's profession? humping curveball -5.849295877417001 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (humping curveball, Instance Of, hittable curveball) -> humping curveball (10535ms) What was Curveball's profession? meaningless codename -5.849295877417001 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, meaningless codename) -> meaningless codename (10555ms) What was Curveball's profession? downright swindler -5.849295877417001 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, downright swindler) -> downright swindler (10535ms) What was Curveball's profession? shockwave game -5.863005098504901 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, shockwave game) -> shockwave game (10555ms) What was Curveball's profession? drunken fool -5.865389310228519 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, drunken fool) -> drunken fool (10575ms) What was Curveball's profession? serious weapon -5.865746942477341 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, serious weapon) -> serious weapon (10575ms) What was Curveball's profession? drunken liar -5.865746942477341 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, drunken liar) -> drunken liar (10575ms) What was Curveball's profession? clone trooper -5.867351924105601 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, clone trooper) -> clone trooper (10575ms) What was Curveball's profession? uplifting film -5.87152704509238 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, uplifting film) -> uplifting film (10575ms) What was Curveball's profession? credible source -5.871639270170014 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, credible source) -> credible source (10575ms) What was Curveball's profession? play game -5.8737863776131825 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, play game) -> play game (10594ms) What was Curveball's profession? good spotter -5.873972475620361 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, good spotter) -> good spotter (10594ms) What was Curveball's profession? hanging curveball -5.874221733940455 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (hanging curveball, Instance Of, curveball) -> hanging curveball (10594ms) What was Curveball's profession? true screwball -5.874221733940455 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (true screwball, Instance Of, curveball) -> true screwball (10594ms) What was Curveball's profession? wonderful program -5.875061487868366 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, wonderful program) -> wonderful program (10594ms) What was Curveball's profession? chemical engineer -5.8764522821261425 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, chemical engineer) -> chemical engineer (10594ms) What was Curveball's profession? advanced idea -5.876714319592802 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, advanced idea) -> advanced idea (10614ms) What was Curveball's profession? conventional pitch -5.876714319592802 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (curveball, Instance Of, conventional pitch) -> conventional pitch (10614ms) What was Curveball's profession? fun, 3d game -5.88468442174389 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, fun, 3d game) -> fun, 3d game (10614ms) What was Curveball's profession? true 12-6 pitch -5.88468442174389 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, true 12-6 pitch) -> true 12-6 pitch (10614ms) What was Curveball's profession? 3D version of the classic arcade game Pong -5.88468442174389 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (CURVEBALL, Instance Of, 3D version of the classic arcade game Pong) -> 3D version of the classic arcade game Pong (10633ms) What was Curveball's profession? 3D style pong game -5.88468442174389 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, 3D style pong game) -> 3D style pong game (10633ms) What was Curveball's profession? Funk #49 -5.88468442174389 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Funk #49, Instance Of, fiery curveball) -> Funk #49 (10614ms) What was Curveball's profession? funbrain game -5.897999688241244 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, funbrain game) -> funbrain game (10633ms) What was Curveball's profession? flash game -5.901659446569189 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, instance of, $x) -> (Curveball, Instance Of, flash game) -> flash game (10633ms) What was Curveball's profession? Sony Tablet S2 -5.909610278267344 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Sony Tablet S2, Instance Of, curveball) -> Sony Tablet S2 (10633ms) What was Curveball's profession? a lot -5.913433383091028 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, be a, $x) -> (his curveball, is a slow ball with, a lot) -> a lot (6973ms) What was Curveball's profession? the Iraqi defector -5.989835328639058 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, be name, $x) -> (Curveball, was the code name of, the Iraqi defector) -> the Iraqi defector (5334ms) What was Curveball's profession? clever fellow -6.00723753356433 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, be a, $x) -> (Curveball, was a sort of, clever fellow) -> clever fellow (6973ms) What was Curveball's profession? Elva -6.084226803411994 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Elva, Instance Of, scary curveball) -> Elva (10966ms) What was Curveball's profession? Hughes -6.138951356494811 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Hughes, Instance Of, curveball pitcher) -> Hughes (10966ms) What was Curveball's profession? Mond -6.154046615370591 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Mond, Instance Of, curveball) -> Mond (10984ms) What was Curveball's profession? Sima -6.1702484208851365 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Sima, Instance Of, curveball specialist) -> Sima (10984ms) What was Curveball's profession? Blyleven -6.18007901853281 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Blyleven, Instance Of, curveball specialist) -> Blyleven (10984ms) What was Curveball's profession? Stovall -6.18007901853281 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Stovall, Instance Of, curveball specialist) -> Stovall (10984ms) What was Curveball's profession? Naranjo -6.18007901853281 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Naranjo, Instance Of, curveball specialist) -> Naranjo (10984ms) What was Curveball's profession? Talbain -6.183845311929953 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Talbain, Instance Of, nice curveball) -> Talbain (10984ms) What was Curveball's profession? easy pitch -6.191622430385394 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, be a, $x) -> (The curveball, is a cheap 'n, easy pitch) -> easy pitch (6973ms) What was Curveball's profession? Tacktick -6.208771168453407 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Tacktick, Instance Of, curveball) -> Tacktick (11001ms) What was Curveball's profession? Horrible -6.208771168453407 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Horrible, Instance Of, curveball) -> Horrible (11001ms) What was Curveball's profession? Wonder Boys -6.376455916874234 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, instance, Curveball) -> (Wonder Boys, Instance Of, amazing curveball) -> Wonder Boys (11946ms) What was Curveball's profession? Bedard -6.471943293026003 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, be a, $x) -> (The curveball, is a great pitch for, Bedard) -> Bedard (6973ms) What was Curveball's profession? Weaver -6.479901076040463 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, be a, $x) -> (The curveball, had been a weapon for, Weaver) -> Weaver (6973ms) What was Curveball's profession? reflex and timing -6.60816218955526 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, be a, $x) -> (CurveBall, is a challenging game of, reflex and timing) -> reflex and timing (7026ms) What was Curveball's profession? Moore -6.622891655761129 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: (Curveball, be a, $x) -> (His curveball, has always been a big pitch for, Moore) -> Moore (7026ms) What was Curveball's profession? Ozick?s most characteristic sentences -6.627475378290349 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, like, Curveball) -> (Ozick?s most characteristic sentences, move like, curveballs) -> Ozick?s most characteristic sentences (7026ms) What was Curveball's profession? Smashback -6.770624590230393 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, like, Curveball) -> (Smashback, is like taking, the famous curveball game) -> Smashback (7026ms) What was Curveball's profession? Instructors -7.269678605665907 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, like, Curveball) -> (Instructors, may likely like, the curveball decision) -> Instructors (7026ms) What was Curveball's profession? George -7.3324566833804825 What was Curveball's profession? -> $x: (Curveball, profession, $x) -> $x: ($x, like, Curveball) -> (George, Will More like, an incredibly slow curveball) -> George (7026ms) On what date was the surgery performed? July 2 -4.235619055848602 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, was performed on, July 2) -> July 2 (827ms) On what date was the surgery performed? July 25 -4.320820170493459 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, will be performed on, July 25) -> July 25 (827ms) On what date was the surgery performed? October 2007 -4.329503804059328 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (the surgery, was performed in, October 2007) -> October 2007 (827ms) On what date was the surgery performed? April 3 -4.354027423560485 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, will be performed on, April 3) -> April 3 (827ms) On what date was the surgery performed? New York -4.561224293426866 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, New York) -> New York (2128ms) On what date was the surgery performed? the Receiving Hospital -4.592756363862872 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgeries, were performed in, the Receiving Hospital) -> the Receiving Hospital (2128ms) On what date was the surgery performed? Las Playas -4.620867676885711 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (the surgery, was performed in, Las Playas) -> Las Playas (2128ms) On what date was the surgery performed? the 5th -4.649737286729568 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, was performed on, the 5th) -> the 5th (2128ms) On what date was the surgery performed? children -4.651566902321132 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, will be performed on, children) -> children (3214ms) On what date was the surgery performed? 1/21/99 -4.656875451470187 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, was performed on, 1/21/99) -> 1/21/99 (3214ms) On what date was the surgery performed? each eye -4.6746798599392045 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, will be performed on, each eye) -> each eye (3214ms) On what date was the surgery performed? an adult -4.70489470769927 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, is performed on, an adult) -> an adult (3214ms) On what date was the surgery performed? five ? -4.728982517510865 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, is performed on, five ?) -> five ? (3480ms) On what date was the surgery performed? patients -4.733509691090944 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgeries, were performed on, patients) -> patients (3480ms) On what date was the surgery performed? a man -4.779748545734618 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, was performed on, a man) -> a man (3481ms) On what date was the surgery performed? general anesthesia -4.831174026610431 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, is performed on, general anesthesia) -> general anesthesia (3480ms) On what date was the surgery performed? a way -4.831442252423116 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (the surgeries, were performed in, a way) -> a way (5377ms) On what date was the surgery performed? infants -4.854117654409505 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, is performed on, infants) -> infants (5377ms) On what date was the surgery performed? a Thursday -4.906140177320253 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, should be performed on, a Thursday) -> a Thursday (5377ms) On what date was the surgery performed? obese people -4.909108647627212 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, is performed on, obese people) -> obese people (5378ms) On what date was the surgery performed? an outpatient basis -4.9114157492564505 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, would be performed on, an outpatient basis) -> an outpatient basis (5377ms) On what date was the surgery performed? adults -4.9309479079644145 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, can be performed on, adults) -> adults (5428ms) On what date was the surgery performed? a beating heart -4.969345621515667 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, is performed on, a beating heart) -> a beating heart (5428ms) On what date was the surgery performed? outpatient facilities -4.9693938909779085 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (the surgeries, are performed in, outpatient facilities) -> outpatient facilities (5427ms) On what date was the surgery performed? the TV screen -4.97317236452968 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery performed, be on, $x) -> (the joint and perform surgery, is happening on, the TV screen) -> the TV screen (5427ms) On what date was the surgery performed? July -4.981637331742794 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, July) -> July (5427ms) On what date was the surgery performed? an outpatient -4.994968024253479 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, is generally performed in, an outpatient) -> an outpatient (5428ms) On what date was the surgery performed? any kind -4.996328349682592 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, can be performed on, any kind) -> any kind (5520ms) On what date was the surgery performed? Saturdays and Sundays -4.9989809615881775 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgeries, were performed on, Saturdays and Sundays) -> Saturdays and Sundays (5520ms) On what date was the surgery performed? a timely basis -5.003401946295955 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, was performed on, a timely basis) -> a timely basis (5520ms) On what date was the surgery performed? Vail -5.0072790535883644 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, Vail) -> Vail (5520ms) On what date was the surgery performed? an ambulatory basis -5.012243915711511 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, is performed on, an ambulatory basis) -> an ambulatory basis (5520ms) On what date was the surgery performed? under one hundred -5.013527278179051 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgeries, were performed on just, under one hundred) -> under one hundred (5577ms) On what date was the surgery performed? children and adults -5.025969205270261 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, may be performed on, children and adults) -> children and adults (5577ms) On what date was the surgery performed? May 5-6 -5.027275295339332 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, will be performed on, May 5-6) -> May 5-6 (5577ms) On what date was the surgery performed? Friday Dec 16 -5.03169628004711 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, was performed on, Friday Dec 16) -> Friday Dec 16 (5577ms) On what date was the surgery performed? either hospitalized patients -5.0432609450106645 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, can be performed on, either hospitalized patients) -> either hospitalized patients (5789ms) On what date was the surgery performed? younger patients -5.047361578765402 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, is sometimes performed on, younger patients) -> younger patients (5788ms) On what date was the surgery performed? an out-patient surgery setting -5.064813539176679 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (the surgery, can be performed in, an out-patient surgery setting) -> an out-patient surgery setting (5842ms) On what date was the surgery performed? an emergency situation -5.070766696939347 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (the surgery, is being performed in, an emergency situation) -> an emergency situation (5842ms) On what date was the surgery performed? an inpatient or outpatient basis -5.072590147216974 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, is performed on, an inpatient or outpatient basis) -> an inpatient or outpatient basis (5842ms) On what date was the surgery performed? July 11 , 2007 -5.079413326258893 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, was performed on, July 11 , 2007) -> July 11 , 2007 (5842ms) On what date was the surgery performed? January 27 , 2004 -5.085210484678156 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, was performed on, January 27 , 2004) -> January 27 , 2004 (5842ms) On what date was the surgery performed? Sept. 1 , 2005 -5.091399842188127 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, was performed on, Sept. 1 , 2005) -> Sept. 1 , 2005 (5842ms) On what date was the surgery performed? individuals -5.0985435466430165 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, is typically performed on, individuals) -> individuals (6177ms) On what date was the surgery performed? July 1 , 1893 -5.115540226647829 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, was performed on, July 1 , 1893) -> July 1 , 1893 (6177ms) On what date was the surgery performed? August 8th , 2006 -5.115540226647829 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, was performed on, August 8th , 2006) -> August 8th , 2006 (6231ms) On what date was the surgery performed? an in?patient or out?patient basis -5.122169786233177 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, is performed on, an in?patient or out?patient basis) -> an in?patient or out?patient basis (6231ms) On what date was the surgery performed? July 11 , 1953 -5.127095403516097 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, was performed on, July 11 , 1953) -> July 11 , 1953 (6231ms) On what date was the surgery performed? Dr. U -5.150637653997986 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, Dr. U) -> Dr. U (6231ms) On what date was the surgery performed? January 7 , 2011 -5.155454305394508 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, was performed on, January 7 , 2011) -> January 7 , 2011 (6231ms) On what date was the surgery performed? a cold operating table -5.159875290102286 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, was performed on, a cold operating table) -> a cold operating table (6231ms) On what date was the surgery performed? July 22 , 1946 -5.161643715606774 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, was performed on, July 22 , 1946) -> July 22 , 1946 (6290ms) On what date was the surgery performed? Dr. Ackerman -5.166061232716515 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, is performed in, Dr. Ackerman) -> Dr. Ackerman (6290ms) On what date was the surgery performed? Tuesday -5.189967134220136 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The Surgery, was performed on, Tuesday) -> Tuesday (6290ms) On what date was the surgery performed? Monday -5.1906496830289734 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, was performed on, Monday) -> Monday (6290ms) On what date was the surgery performed? Saturday -5.201716897869276 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, was performed on, Saturday) -> Saturday (6290ms) On what date was the surgery performed? an out patient basis -5.207052787486642 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, can be performed on, an out patient basis) -> an out patient basis (6290ms) On what date was the surgery performed? two steps -5.207618520591004 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, is performed in, two steps) -> two steps (6355ms) On what date was the surgery performed? June 2008 -5.219997288313241 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, June 2008) -> June 2008 (6356ms) On what date was the surgery performed? an ambulatory surgery center -5.252911414466219 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, is performed in, an ambulatory surgery center) -> an ambulatory surgery center (6356ms) On what date was the surgery performed? 60 Galveston area patients -5.253031060068909 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, will be performed on, 60 Galveston area patients) -> 60 Galveston area patients (6356ms) On what date was the surgery performed? two different ways -5.270576476121224 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, can be performed in, two different ways) -> two different ways (6356ms) On what date was the surgery performed? the Receiving Sanatorium -5.272130729595852 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgeries, were performed in, the Receiving Sanatorium) -> the Receiving Sanatorium (6518ms) On what date was the surgery performed? 2 hours -5.282974173721863 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in approximately, 2 hours) -> 2 hours (6518ms) On what date was the surgery performed? a multidisciplinary program -5.30531534971035 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, should be performed in, a multidisciplinary program) -> a multidisciplinary program (6518ms) On what date was the surgery performed? March 2007 -5.3058987155345925 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgeries, were performed simultaneously in, March 2007) -> March 2007 (6519ms) On what date was the surgery performed? a private hospital -5.313921066676308 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, a private hospital) -> a private hospital (6518ms) On what date was the surgery performed? the Receiving Medical centre -5.324531461596351 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgeries, were performed in, the Receiving Medical centre) -> the Receiving Medical centre (6518ms) On what date was the surgery performed? a surgical facility -5.338850286443123 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, is usually performed in, a surgical facility) -> a surgical facility (6551ms) On what date was the surgery performed? an outpatient facility -5.3592514053070754 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, is generally performed in, an outpatient facility) -> an outpatient facility (6551ms) On what date was the surgery performed? a dedicated surgery center -5.36190401721266 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, can be performed in, a dedicated surgery center) -> a dedicated surgery center (6551ms) On what date was the surgery performed? epileptics -5.3663163294225935 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, is performed on, epileptics) -> epileptics (6551ms) On what date was the surgery performed? site -5.39522781415852 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, was performed on, site) -> site (6551ms) On what date was the surgery performed? bodies -5.427386577179809 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, is performed on, bodies) -> bodies (6627ms) On what date was the surgery performed? victims -5.440588935756015 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, is performed on, victims) -> victims (6626ms) On what date was the surgery performed? Dallas -5.609740336764148 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, Dallas) -> Dallas (6626ms) On what date was the surgery performed? June -5.620009207765217 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, June) -> June (6626ms) On what date was the surgery performed? a doctor -5.622655124643066 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, can be performed in, a doctor) -> a doctor (6626ms) On what date was the surgery performed? January -5.626208485650583 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, January) -> January (6695ms) On what date was the surgery performed? Europe -5.638979505165822 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, Europe) -> Europe (6695ms) On what date was the surgery performed? February -5.638979505165822 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgeries, were performed in, February) -> February (6695ms) On what date was the surgery performed? women -5.645878283994429 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, is usually performed on, women) -> women (6695ms) On what date was the surgery performed? Baltimore -5.646609604514534 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, Baltimore) -> Baltimore (6695ms) On what date was the surgery performed? a facility -5.648490290587594 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (the surgery, is performed in, a facility) -> a facility (6695ms) On what date was the surgery performed? August -5.654959586619701 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (the surgery, was performed in, August) -> August (6966ms) On what date was the surgery performed? April -5.681485547568663 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, April) -> April (6966ms) On what date was the surgery performed? a hospital -5.746015435384597 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, may be performed in, a hospital) -> a hospital (6966ms) On what date was the surgery performed? a matter -5.755677023073993 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, is generally performed in, a matter) -> a matter (6966ms) On what date was the surgery performed? February 2003 -5.847833028027082 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, February 2003) -> February 2003 (7006ms) On what date was the surgery performed? an outpatient setting -5.931995023822161 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, is performed in, an outpatient setting) -> an outpatient setting (7006ms) On what date was the surgery performed? conjunction -5.968075806818227 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, is either performed in, conjunction) -> conjunction (7006ms) On what date was the surgery performed? different days -6.150523101167668 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgeries, are performed on, different days) -> different days (7006ms) On what date was the surgery performed? a Przewalski horse -6.207822709079628 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, was performed on, a Przewalski horse) -> a Przewalski horse (7068ms) On what date was the surgery performed? Charlotte -6.233965072262142 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, Charlotte) -> Charlotte (7068ms) On what date was the surgery performed? the Plaintiff -6.2492739104926995 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (surgery, perform on, $x) -> (surgery, is actually performed on, the Plaintiff) -> the Plaintiff (7068ms) On what date was the surgery performed? Los Angeles -6.2717658992419665 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, Los Angeles) -> Los Angeles (7613ms) On what date was the surgery performed? the US. -6.355105071521377 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (the surgeries, being performed in, the US.) -> the US. (7612ms) On what date was the surgery performed? two stages -6.423883239596278 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (the surgery, is performed in, two stages) -> two stages (7612ms) On what date was the surgery performed? the correct part -6.438412578386908 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, is performed on, the correct part) -> the correct part (7675ms) On what date was the surgery performed? premenopausal women -6.455942418984019 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, is performed In, premenopausal women) -> premenopausal women (7675ms) On what date was the surgery performed? the eyes one -6.466607176620677 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, is performed on, the eyes one) -> the eyes one (7675ms) On what date was the surgery performed? an office -6.471579117218731 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, may be performed in, an office) -> an office (7675ms) On what date was the surgery performed? May 2005 -6.472057763525075 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, May 2005) -> May 2005 (7705ms) On what date was the surgery performed? Saturday morning -6.4737222584230905 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be be do on, $x) -> (The surgery, was done on, Saturday morning) -> Saturday morning (11144ms) On what date was the surgery performed? the right shoulder -6.4810430297993715 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, has been performed on, the right shoulder) -> the right shoulder (7705ms) On what date was the surgery performed? operating rooms -6.493812277577042 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, is performed in, operating rooms) -> operating rooms (7705ms) On what date was the surgery performed? a Saturday -6.507714015076123 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be be do on, $x) -> (The surgery, was done on, a Saturday) -> a Saturday (11144ms) On what date was the surgery performed? three steps -6.514213396440994 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, is performed in, three steps) -> three steps (7705ms) On what date was the surgery performed? an outpatient clinic -6.517078450047267 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, is performed in, an outpatient clinic) -> an outpatient clinic (7705ms) On what date was the surgery performed? an operating room -6.517078450047267 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, is performed in, an operating room) -> an operating room (7705ms) On what date was the surgery performed? last Tuesday -6.533338483901268 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgery, was performed, last Tuesday) -> last Tuesday (7735ms) On what date was the surgery performed? severe cases -6.53967123997975 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (the surgery, is performed In, severe cases) -> severe cases (7735ms) On what date was the surgery performed? the type -6.539703080277384 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, is performed depends on, the type) -> the type (7735ms) On what date was the surgery performed? the first day -6.541613272119224 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, is performed on, the first day) -> the first day (7735ms) On what date was the surgery performed? a hospital or a surgery center -6.599545091844746 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, is performed in, a hospital or a surgery center) -> a hospital or a surgery center (7764ms) On what date was the surgery performed? the rich and famous -6.606628533263354 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgeries, are performed on, the rich and famous) -> the rich and famous (7764ms) On what date was the surgery performed? order -6.62201145501747 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (the surgery, to be performed in, order) -> order (7764ms) On what date was the surgery performed? the United States -6.623069281487579 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (surgery, perform in, $x) -> (surgeries, are performed annually in, the United States) -> the United States (7764ms) On what date was the surgery performed? Caracas Venezuela -6.636851765269561 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be do in, $x) -> (The surgeries, are done in, Caracas Venezuela) -> Caracas Venezuela (7795ms) On what date was the surgery performed? a hospital or surgery center -6.638686401117633 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, is performed in, a hospital or surgery center) -> a hospital or surgery center (7795ms) On what date was the surgery performed? the wrong part -6.66106609374253 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, was performed on, the wrong part) -> the wrong part (7795ms) On what date was the surgery performed? the wrong area -6.674329047865864 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, was performed on, the wrong area) -> the wrong area (7795ms) On what date was the surgery performed? the right knee -6.706224748050956 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, was performed on, the right knee) -> the right knee (7826ms) On what date was the surgery performed? less than one hour -6.7093720940869 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, can be performed in, less than one hour) -> less than one hour (7826ms) On what date was the surgery performed? the hospital -6.73969366222442 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, is performed in, the hospital) -> the hospital (7826ms) On what date was the surgery performed? the rest -6.819448465579269 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (the surgery, is performed in, the rest) -> the rest (7826ms) On what date was the surgery performed? the NHS. -6.83832050271756 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be be do on, $x) -> (the original surgery, was done on, the NHS.) -> the NHS. (11144ms) On what date was the surgery performed? the Hospital -6.8491542488167205 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgery, was be performed at, the Hospital) -> the Hospital (7826ms) On what date was the surgery performed? Philadelphia -6.888173246864035 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, Philadelphia) -> Philadelphia (7826ms) On what date was the surgery performed? October -6.901650322595405 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, October) -> October (7853ms) On what date was the surgery performed? Costa Rica -6.904318436502427 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be conduct in, $x) -> (The surgery, will be conducted in, Costa Rica) -> Costa Rica (7853ms) On what date was the surgery performed? round-the-clock -6.914233856186815 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgeries, are performed, round-the-clock) -> round-the-clock (7853ms) On what date was the surgery performed? the 23rd -6.921012627683247 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be conduct on, $x) -> (the surgery, was conducted on, the 23rd) -> the 23rd (9876ms) On what date was the surgery performed? Louisville -6.922051441459357 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, Louisville) -> Louisville (7881ms) On what date was the surgery performed? the wrong place -6.93424053298777 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (the surgery, is being performed in, the wrong place) -> the wrong place (7880ms) On what date was the surgery performed? a statement -6.9427846008492455 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (the surgery, was performed in, a statement) -> a statement (7880ms) On what date was the surgery performed? second time -6.959664051718411 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (the surgery, is performed, second time) -> second time (7907ms) On what date was the surgery performed? Cleveland -6.9679778225709335 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, to be performed in, Cleveland) -> Cleveland (7907ms) On what date was the surgery performed? the same hospital -6.970000715145291 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (the surgeries, were performed in, the same hospital) -> the same hospital (7907ms) On what date was the surgery performed? one part -6.981059039393079 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be be do on, $x) -> (the surgery, is only done on, one part) -> one part (11144ms) On what date was the surgery performed? Friday morning -6.992235507322828 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be be do on, $x) -> (the surgery, is done on, Friday morning) -> Friday morning (11144ms) On what date was the surgery performed? teenagers -7.016080142330992 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be be do on, $x) -> (the surgery, was being done on, teenagers) -> teenagers (11144ms) On what date was the surgery performed? the patients -7.024103763734828 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, is performed on, the patients) -> the patients (7907ms) On what date was the surgery performed? the intensive care unit -7.024135578436061 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (the surgery, is performed in, the intensive care unit) -> the intensive care unit (7934ms) On what date was the surgery performed? one layer -7.025344955946903 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (the surgery, is performed, one layer) -> one layer (7934ms) On what date was the surgery performed? a Monday -7.068151322784059 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be be do on, $x) -> (the surgery, was done on, a Monday) -> a Monday (11144ms) On what date was the surgery performed? the upper or lower lids -7.073770294927698 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, can be performed on, the upper or lower lids) -> the upper or lower lids (7934ms) On what date was the surgery performed? various muscles -7.080799169737491 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (the surgery, is performed, various muscles) -> various muscles (7934ms) On what date was the surgery performed? the surgeons office -7.094871386462802 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, is generally performed in, the surgeons office) -> the surgeons office (7960ms) On what date was the surgery performed? one eye -7.100437180554165 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgery, is performed, one eye) -> one eye (7960ms) On what date was the surgery performed? worry -7.103910527904676 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (the surgery, is performed is, worry) -> worry (7960ms) On what date was the surgery performed? men -7.1045286032240575 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be do on, $x) -> (The surgery, usually is done on, men) -> men (11362ms) On what date was the surgery performed? Nathan -7.1089490015335475 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, was performed on, Nathan) -> Nathan (7960ms) On what date was the surgery performed? one year -7.120838299418117 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgery, is performed, one year) -> one year (7960ms) On what date was the surgery performed? ears -7.128860309845061 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be do on, $x) -> (The surgery, is usually done on, ears) -> ears (11362ms) On what date was the surgery performed? three days -7.134896727344394 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, perform within, $x) -> (the surgery, was performed within, three days) -> three days (7960ms) On what date was the surgery performed? a later hospital admission -7.151679576426134 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be be do on, $x) -> (the surgery, is done on, a later hospital admission) -> a later hospital admission (11361ms) On what date was the surgery performed? two weeks -7.160627214490412 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgery, was performed, two weeks) -> two weeks (7987ms) On what date was the surgery performed? two days -7.160627214490412 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgery, was performed, two days) -> two days (7987ms) On what date was the surgery performed? 3 months -7.160627214490412 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgery, was performed, 3 months) -> 3 months (7987ms) On what date was the surgery performed? three hours -7.162145372684274 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (the surgery, were performed, three hours) -> three hours (7987ms) On what date was the surgery performed? themapped locations -7.168824786430201 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be do on, $x) -> (the surgery, is done on, themapped locations) -> themapped locations (11430ms) On what date was the surgery performed? Arturo Bonilla -7.16946759783988 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgery, was be performed by, Arturo Bonilla) -> Arturo Bonilla (7987ms) On what date was the surgery performed? a team -7.182711255977813 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgery, is being performed by, a team) -> a team (8013ms) On what date was the surgery performed? three months -7.186838340001492 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgery, was performed, three months) -> three months (8013ms) On what date was the surgery performed? last month -7.186838340001492 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgery, was performed, last month) -> last month (8013ms) On what date was the surgery performed? 7-14-2000 -7.1871445731084895 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (surgery, perform on, $x) -> (Surgery, was performed on, 7-14-2000) -> 7-14-2000 (8013ms) On what date was the surgery performed? detail -7.189307402722594 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, is performed in, detail) -> detail (8013ms) On what date was the surgery performed? last June -7.191574107444858 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgery, was performed, last June) -> last June (8013ms) On what date was the surgery performed? Tuesday night -7.1933425329493454 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgery, was performed, Tuesday night) -> Tuesday night (8038ms) On what date was the surgery performed? 09-05-2000 -7.203060139137408 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (surgery, perform on, $x) -> (Surgery, was performed on, 09-05-2000) -> 09-05-2000 (8039ms) On what date was the surgery performed? outpatient -7.211782691800423 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgery, is performed, outpatient) -> outpatient (8039ms) On what date was the surgery performed? four to six months -7.226495217794719 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (the surgeries, are performed, four to six months) -> four to six months (8150ms) On what date was the surgery performed? Wednesday afternoon -7.227826224210471 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgery, was performed, Wednesday afternoon) -> Wednesday afternoon (8150ms) On what date was the surgery performed? the 3rd day -7.2339396176489865 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be complete on, $x) -> (the surgery, will be completed on, the 3rd day) -> the 3rd day (9798ms) On what date was the surgery performed? an inpatient basis -7.25332741385733 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be do on, $x) -> (The surgery, is done on, an inpatient basis) -> an inpatient basis (11430ms) On what date was the surgery performed? a day case -7.256044541187876 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be do on, $x) -> (the surgery, is done on, a day case) -> a day case (11596ms) On what date was the surgery performed? yesterday -7.257368712589686 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgery, was performed, yesterday) -> yesterday (8150ms) On what date was the surgery performed? around 50,000 people -7.260465525895653 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be do on, $x) -> (the surgery, is done on, around 50,000 people) -> around 50,000 people (11597ms) On what date was the surgery performed? 500,000 Americans -7.262204965064449 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, will be perform on, $x) -> (the surgery, will be performed on nearly, 500,000 Americans) -> 500,000 Americans (11597ms) On what date was the surgery performed? one side -7.2737285327212815 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be do on, $x) -> (The surgery, is only done on, one side) -> one side (11597ms) On what date was the surgery performed? 48 hours -7.276169484451048 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, perform within, $x) -> (the first surgery, usually is performed within, 48 hours) -> 48 hours (8257ms) On what date was the surgery performed? one side first -7.282666732177823 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be carry out on, $x) -> (the surgery, is carried out on, one side first) -> one side first (10564ms) On what date was the surgery performed? 2005 -7.287966793433891 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be do in, $x) -> (The surgery, was done in, 2005) -> 2005 (8279ms) On what date was the surgery performed? 1st October 2010 -7.289644046047905 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be be do on, $x) -> (The surgery, was done on, 1st October 2010) -> 1st October 2010 (11654ms) On what date was the surgery performed? Christmas Eve 2008 -7.2905282851512965 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be be do on, $x) -> (The surgery, was done on, Christmas Eve 2008) -> Christmas Eve 2008 (11655ms) On what date was the surgery performed? the patient -7.2909259256093275 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, to be perform on, the patient) -> the patient (8279ms) On what date was the surgery performed? 6/30/2006 -7.292296657953489 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be be do on, $x) -> (The 4 hour surgery, was done on, 6/30/2006) -> 6/30/2006 (11655ms) On what date was the surgery performed? unborn children -7.294076355458268 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (surgery, perform on, $x) -> (surgery, is performed on, unborn children) -> unborn children (8279ms) On what date was the surgery performed? lymph node cancer types -7.298929291704617 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (surgery, perform on, $x) -> (Surgery, can be performed on, lymph node cancer types) -> lymph node cancer types (8279ms) On what date was the surgery performed? the second eye -7.304846340861211 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, is performed on, the second eye) -> the second eye (8305ms) On what date was the surgery performed? a hospital setting -7.306764447705707 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be do in, $x) -> (the surgery, is done in, a hospital setting) -> a hospital setting (8305ms) On what date was the surgery performed? a single step -7.309498403756435 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be do in, $x) -> (the surgery, will be done in, a single step) -> a single step (8305ms) On what date was the surgery performed? 1974 -7.310528536893039 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be develop in, $x) -> (The surgery, was developed in, 1974) -> 1974 (8331ms) On what date was the surgery performed? an out-patient basis -7.3182715789799655 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be be do on, $x) -> (The surgery, can be done on, an out-patient basis) -> an out-patient basis (12269ms) On what date was the surgery performed? Wednesday or Thursday -7.335592719457495 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be be do on, $x) -> (the surgeries, will be done on, Wednesday or Thursday) -> Wednesday or Thursday (12350ms) On what date was the surgery performed? an urgent basis -7.342274064277855 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be do on, $x) -> (the first surgery, was done on, an urgent basis) -> an urgent basis (12350ms) On what date was the surgery performed? November 9 , 2004 -7.343701338416409 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgery, was performed, November 9 , 2004) -> November 9 , 2004 (8357ms) On what date was the surgery performed? Mr. Siegel -7.345118131851941 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (surgery, perform on, $x) -> (surgery, was performed on, Mr. Siegel) -> Mr. Siegel (8357ms) On what date was the surgery performed? one day -7.345514215370157 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be conduct in, $x) -> (the surgery, can be conducted in, one day) -> one day (8357ms) On what date was the surgery performed? 45-year-old Abida Parveen -7.350723834602702 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be conduct on, $x) -> (The second surgery, was conducted on, 45-year-old Abida Parveen) -> 45-year-old Abida Parveen (9876ms) On what date was the surgery performed? a bloodless field -7.351230956297884 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, can be perform in, $x) -> (the surgery, can be performed in, a bloodless field) -> a bloodless field (8357ms) On what date was the surgery performed? a day-care basis -7.364314419689488 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be be do on, $x) -> (The surgery, is usually done on, a day-care basis) -> a day-care basis (12488ms) On what date was the surgery performed? an hour -7.365208938857799 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be do in, $x) -> (the surgery, is done in about, an hour) -> an hour (8382ms) On what date was the surgery performed? a outpatient basis -7.370011842591365 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be do on, $x) -> (The surgery, will be done on, a outpatient basis) -> a outpatient basis (12487ms) On what date was the surgery performed? an in-patient or outpatient basis -7.370788852699605 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be be do on, $x) -> (the surgery, will be done on, an in-patient or outpatient basis) -> an in-patient or outpatient basis (12595ms) On what date was the surgery performed? earth -7.389987132631847 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be be do on, $x) -> (the most popular cosmetic surgeries, are done on, earth) -> earth (12595ms) On what date was the surgery performed? a gallbladder disease -7.404597969952231 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (surgery, perform on, $x) -> (surgery, is performed on, a gallbladder disease) -> a gallbladder disease (8382ms) On what date was the surgery performed? one time -7.409340470145366 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be do in, $x) -> (The surgery, was done in, one time) -> one time (8407ms) On what date was the surgery performed? the UK. -7.4143019974162785 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, have be perform in, $x) -> (the surgery, should have been performed in, the UK.) -> the UK. (8408ms) On what date was the surgery performed? private clinics -7.416620619368361 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be do in, $x) -> (the surgeries, are done in, private clinics) -> private clinics (8408ms) On what date was the surgery performed? infrabony defects -7.417372098072543 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (surgery, perform on, $x) -> (Surgeries, were performed on, infrabony defects) -> infrabony defects (8408ms) On what date was the surgery performed? three stages -7.421469023259271 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be do in, $x) -> (The surgery, was done in, three stages) -> three stages (8431ms) On what date was the surgery performed? October 10 , 2000 -7.4257808918198345 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be conduct on, $x) -> (The surgery, was conducted on, October 10 , 2000) -> October 10 , 2000 (9876ms) On what date was the surgery performed? an emergency basis -7.426310694400413 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (surgery, perform on, $x) -> (Surgery, is performed on, an emergency basis) -> an emergency basis (8431ms) On what date was the surgery performed? two ways -7.427545797023992 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be do in, $x) -> (The surgery, is done in, two ways) -> two ways (8431ms) On what date was the surgery performed? a surgery center -7.4318474623929 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (surgery, perform in, $x) -> (Surgery, is performed in, a surgery center) -> a surgery center (8457ms) On what date was the surgery performed? less time -7.4460625680442085 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be do in, $x) -> (The surgery, can be done in, less time) -> less time (8457ms) On what date was the surgery performed? the ICU. -7.451354577940113 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be do in, $x) -> (The surgery, will be done in, the ICU.) -> the ICU. (8482ms) On what date was the surgery performed? cancer patients -7.456515385436138 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (surgery, perform on, $x) -> (surgery, is performed often on, cancer patients) -> cancer patients (8482ms) On what date was the surgery performed? a well-equipped facility or hospital -7.469488029984651 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be do in, $x) -> (the surgery, is done in, a well-equipped facility or hospital) -> a well-equipped facility or hospital (8507ms) On what date was the surgery performed? mass lesions -7.471546765063959 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (surgery, perform on, $x) -> (Surgery, can be performed on, mass lesions) -> mass lesions (8507ms) On what date was the surgery performed? March 13 , 2009 -7.473587393277288 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be complete on, $x) -> (The surgery, was successfully completed on, March 13 , 2009) -> March 13 , 2009 (9797ms) On what date was the surgery performed? older patients -7.4762344148277045 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (surgery, perform in, $x) -> (surgery, is primarily performed in, older patients) -> older patients (8507ms) On what date was the surgery performed? a safe and humane manner -7.47751749421959 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, can be perform in, $x) -> (the surgery, can be performed in, a safe and humane manner) -> a safe and humane manner (8706ms) On what date was the surgery performed? August time -7.480224069111742 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, will be do in, $x) -> (the surgery, will be done in about, August time) -> August time (8706ms) On what date was the surgery performed? June 2001 -7.480597666219621 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be do in, $x) -> (The surgery, was done in, June 2001) -> June 2001 (8706ms) On what date was the surgery performed? July 2003 -7.492976433941857 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be do in, $x) -> (The surgery, was done in, July 2003) -> July 2003 (8746ms) On what date was the surgery performed? the ACHD centre -7.493742758095866 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be carry out in, $x) -> (the surgery, be carried out in, the ACHD centre) -> the ACHD centre (8746ms) On what date was the surgery performed? February 2009 -7.495629045847442 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be do in, $x) -> (The surgery, was done in, February 2009) -> February 2009 (8746ms) On what date was the surgery performed? various disciplines -7.497976639230787 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (surgery, perform in, $x) -> (surgeries, are performed in, various disciplines) -> various disciplines (8770ms) On what date was the surgery performed? Boston -7.500172687998405 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, Boston) -> Boston (8771ms) On what date was the surgery performed? 1995 and 1996 -7.501068456523106 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be do in, $x) -> (the surgeries, were done in, 1995 and 1996) -> 1995 and 1996 (8771ms) On what date was the surgery performed? an office setting -7.504605254829787 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be do in, $x) -> (The surgery, is done in, an office setting) -> an office setting (8771ms) On what date was the surgery performed? fewer and smaller warts -7.505203093135657 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (surgery, perform on, $x) -> (surgery, is performed on, fewer and smaller warts) -> fewer and smaller warts (8794ms) On what date was the surgery performed? four minutes -7.5121139628395746 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be do in, $x) -> (The surgery, is done in, four minutes) -> four minutes (8795ms) On what date was the surgery performed? Virgina -7.512397982362028 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> (The surgery, was performed in, Virgina) -> Virgina (8794ms) On what date was the surgery performed? any community hospital -7.5138430199304995 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (surgery, perform in, $x) -> (surgery, cannot be performed in, any community hospital) -> any community hospital (8795ms) On what date was the surgery performed? Wednesday -7.519790129679063 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be complete on, $x) -> (The surgery, was completed on, Wednesday) -> Wednesday (9798ms) On what date was the surgery performed? 24 hours -7.521199951171458 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, do within, $x) -> (the surgery, is normally done within, 24 hours) -> 24 hours (8817ms) On what date was the surgery performed? 1-3 hours -7.5231127845148675 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be accomplish in, $x) -> (The surgery, is generally accomplished in, 1-3 hours) -> 1-3 hours (8818ms) On what date was the surgery performed? Mr. Oden -7.523357646494236 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be conduct on, $x) -> (The most recent arthroscopic surgery, was conducted on, Mr. Oden) -> Mr. Oden (9876ms) On what date was the surgery performed? a surgery clinic -7.529362790274261 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be do in, $x) -> (The surgery, can be done in, a surgery clinic) -> a surgery clinic (8817ms) On what date was the surgery performed? 22 and 23 June 2008 -7.529547004004207 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be conduct on, $x) -> (The surgeries, were conducted on, 22 and 23 June 2008) -> 22 and 23 June 2008 (9876ms) On what date was the surgery performed? partnership -7.530114274765936 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be run in, $x) -> (The surgery, will be run in, partnership) -> partnership (8818ms) On what date was the surgery performed? patients 16 and younger -7.53461005631495 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (surgery, perform on, $x) -> (Surgery, has been performed on, patients 16 and younger) -> patients 16 and younger (8842ms) On what date was the surgery performed? a high tibia opening wedge osteotomy -7.538738592021096 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgery, performed was, a high tibia opening wedge osteotomy) -> a high tibia opening wedge osteotomy (8841ms) On what date was the surgery performed? a few years -7.539465769632521 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be repeat in, $x) -> (the surgery, may have to be repeated in, a few years) -> a few years (8842ms) On what date was the surgery performed? a hemorrhage-free environment -7.539754694461 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (surgery, perform in, $x) -> (Surgery, was performed in, a hemorrhage-free environment) -> a hemorrhage-free environment (8842ms) On what date was the surgery performed? darkness -7.548016474824911 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be do in, $x) -> (The surgery, was done in, darkness) -> darkness (8864ms) On what date was the surgery performed? left eye utilizing ladarvision -7.548176375850642 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (surgery, perform on, $x) -> (surgery, performed on, left eye utilizing ladarvision) -> left eye utilizing ladarvision (8864ms) On what date was the surgery performed? January 2011 -7.550583580114349 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be conduct in, $x) -> (The second surgery, was conducted in, January 2011) -> January 2011 (8889ms) On what date was the surgery performed? the IAS Surgery Center -7.5524165210437975 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be do in, $x) -> (the surgery, will be done in, the IAS Surgery Center) -> the IAS Surgery Center (8889ms) On what date was the surgery performed? three to four hours -7.556139456742605 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be do in, $x) -> (the surgery, can be done in, three to four hours) -> three to four hours (8889ms) On what date was the surgery performed? 553 patients -7.556519378718661 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (surgery, perform in, $x) -> (Surgery, was performed in, 553 patients) -> 553 patients (8912ms) On what date was the surgery performed? three major methods -7.569197343595411 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be do in, $x) -> (The surgery, can be done in, three major methods) -> three major methods (8912ms) On what date was the surgery performed? different ways -7.570734431667674 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be do in, $x) -> (The surgery, can be done in, different ways) -> different ways (8912ms) On what date was the surgery performed? February 3 , 2009 -7.579867951262082 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (surgery, perform on, $x) -> (Surgery, was performed on, February 3 , 2009) -> February 3 , 2009 (8936ms) On what date was the surgery performed? Nantes Jan 06 -7.581260924781143 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (surgery, perform in, $x) -> (Surgery, performed in, Nantes Jan 06) -> Nantes Jan 06 (8936ms) On what date was the surgery performed? teens -7.5859971997528435 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (surgery, perform in, $x) -> (Surgery, is performed in, teens) -> teens (8936ms) On what date was the surgery performed? a relatively short period -7.590241857233046 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, can be perform in, $x) -> (the surgery, can be performed in, a relatively short period) -> a relatively short period (8936ms) On what date was the surgery performed? the right side of the brain -7.59073069909247 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (the surgery, is performed on, the right side of the brain) -> the right side of the brain (8936ms) On what date was the surgery performed? the UK, -7.5938287705972005 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be carry out in, $x) -> (the way cosmetic surgery, is carried out in, the UK,) -> the UK, (8959ms) On what date was the surgery performed? local anesthesia -7.600939014547964 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, be perform with, $x) -> (The surgery, is performed with, local anesthesia) -> local anesthesia (10407ms) On what date was the surgery performed? 600 women -7.601292933050296 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, have be perform on, $x) -> (The internal bra surgery, has been performed on, 600 women) -> 600 women (10187ms) On what date was the surgery performed? right eye utilizing ladarvision -7.610954400862923 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (surgery, perform on, $x) -> (surgery, performed on, right eye utilizing ladarvision) -> right eye utilizing ladarvision (8959ms) On what date was the surgery performed? a timely style -7.618178385519563 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (surgery, perform in, $x) -> (Surgery, should be performed in, a timely style) -> a timely style (8959ms) On what date was the surgery performed? a minimally invasive fashion -7.6197371000287255 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be do in, $x) -> (The surgery, can be done in, a minimally invasive fashion) -> a minimally invasive fashion (8981ms) On what date was the surgery performed? San Diego -7.622886272262152 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, will be perform in, $x) -> (The surgery, will be performed this week in, San Diego) -> San Diego (8981ms) On what date was the surgery performed? a patient -7.6233715902836146 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (surgery, perform on, $x) -> (Surgery, performed on, a patient) -> a patient (8981ms) On what date was the surgery performed? a relatively shorter time -7.625117800287175 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, can be perform in, $x) -> (the surgery, can be performed in, a relatively shorter time) -> a relatively shorter time (8981ms) On what date was the surgery performed? special instruments -7.635356411334018 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be carry out use, $x) -> (the surgery, is carried out using, special instruments) -> special instruments (9004ms) On what date was the surgery performed? an out-patient setting -7.635737107973997 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (surgery, perform in, $x) -> (Surgery, is commonly performed in, an out-patient setting) -> an out-patient setting (9004ms) On what date was the surgery performed? Peoria Children?s Hospital -7.639871664009018 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, will be perform in, $x) -> (the surgery, will be performed in, Peoria Children?s Hospital) -> Peoria Children?s Hospital (9006ms) On what date was the surgery performed? combination -7.640092312045264 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (surgery, perform in, $x) -> (surgery, is often performed in, combination) -> combination (9006ms) On what date was the surgery performed? a child -7.640518093725368 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, to be perform on, $x) -> (the surgery, is to be performed on, a child) -> a child (9460ms) On what date was the surgery performed? 7 patients -7.641894215362444 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (surgery, perform in, $x) -> (Surgery, was performed endoscopically in, 7 patients) -> 7 patients (9027ms) On what date was the surgery performed? joints -7.649212549486361 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, can be perform on, $x) -> (the surgery, can also be performed on, joints) -> joints (10407ms) On what date was the surgery performed? a Singapore hospital -7.652269877689982 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (surgery, perform in, $x) -> (Surgery, must be performed in, a Singapore hospital) -> a Singapore hospital (9027ms) On what date was the surgery performed? May 2010 -7.65329056477346 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, have be complete in, $x) -> (the surgery, had been completed in, May 2010) -> May 2010 (9097ms) On what date was the surgery performed? a hospital environment -7.675517057577219 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, to be do in, $x) -> (The surgery, needs to be done in, a hospital environment) -> a hospital environment (9097ms) On what date was the surgery performed? steps -7.675579509046357 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be develop in, $x) -> (The surgery, may be developed in, steps) -> steps (9097ms) On what date was the surgery performed? a dermatologist?s office -7.6818405969329415 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (surgery, perform in, $x) -> (Surgery, is usually performed in, a dermatologist?s office) -> a dermatologist?s office (9309ms) On what date was the surgery performed? a surgery clinic or hospital -7.682515125041007 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be do in, $x) -> (The surgery, can be done in, a surgery clinic or hospital) -> a surgery clinic or hospital (9309ms) On what date was the surgery performed? time -7.68347272393356 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be do in, $x) -> (The surgery, was done just in, time) -> time (9309ms) On what date was the surgery performed? temporary medical facilities -7.687061806658127 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be carry out in, $x) -> (The surgeries, are carried out in, temporary medical facilities) -> temporary medical facilities (9534ms) On what date was the surgery performed? non rodents -7.6881129134170125 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (surgery, perform on, $x) -> (Surgery, performed on, non rodents) -> non rodents (9534ms) On what date was the surgery performed? any age group -7.710049230644843 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> $x: (the surgery, can be perform on, $x) -> (The Mini-Lift surgery, can be performed on, any age group) -> any age group (10407ms) On what date was the surgery performed? less than 30 minutes -7.71175826602281 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be do in, $x) -> (The surgery, can be done in, less than 30 minutes) -> less than 30 minutes (9733ms) On what date was the surgery performed? less than a minute -7.71175826602281 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be do in, $x) -> (The surgery, can be done in, less than a minute) -> less than a minute (9733ms) On what date was the surgery performed? one or two stages -7.71175826602281 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be do in, $x) -> (The surgery, may be done in, one or two stages) -> one or two stages (9733ms) On what date was the surgery performed? infancy -7.712502057008054 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (surgery, perform in, $x) -> (surgery, is performed in, infancy) -> infancy (9733ms) On what date was the surgery performed? Utah Lasik center -7.716998869004428 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be develop in, $x) -> (The eye surgery, is well developed in, Utah Lasik center) -> Utah Lasik center (9733ms) On what date was the surgery performed? the girl -7.7245610889531475 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed on, $x) -> (The surgery, was performed on, the girl) -> the girl (9798ms) On what date was the surgery performed? one to three hours -7.727673779349433 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be accomplish in, $x) -> (The surgery, is generally accomplished in, one to three hours) -> one to three hours (9798ms) On what date was the surgery performed? 36 hours -7.741687738619607 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, do within, $x) -> (the surgery, is done within, 36 hours) -> 36 hours (9876ms) On what date was the surgery performed? 1 year -7.743456164124096 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, do within, $x) -> (the surgery, is done within, 1 year) -> 1 year (10407ms) On what date was the surgery performed? Children -7.744373336858406 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (the surgery, be be perform, $x) -> (The surgery, is being performed at, Children) -> Children (10407ms) On what date was the surgery performed? 1992 -7.746518042467928 On what date was the surgery performed? -> When was the surgery performed? -> $x: (the surgery, was performed in, $x) -> $x: (surgery, perform in, $x) -> (surgery, performed in, 1992) -> 1992 (10407ms) What are semiconductors? innovation-intensive industry -5.165890122995664 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, innovation-intensive industry) -> innovation-intensive industry (2938ms) What are semiconductors? high-value item -5.244377583582281 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, high-value item) -> high-value item (2937ms) What are semiconductors? process-intensive industry -5.319907212021991 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, process-intensive industry) -> process-intensive industry (2938ms) What are semiconductors? well-known industry -5.32191343936374 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, well-known industry) -> well-known industry (2937ms) What are semiconductors? science-based technology -5.32676182256594 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, science-based technology) -> science-based technology (2938ms) What are semiconductors? chemical-related industry -5.3648011674571325 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, chemical-related industry) -> chemical-related industry (3101ms) What are semiconductors? physics-based concept -5.3648011674571325 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (Semiconductor, Instance Of, physics-based concept) -> physics-based concept (3101ms) What are semiconductors? device-developing area -5.3648011674571325 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, device-developing area) -> device-developing area (2937ms) What are semiconductors? cutting-edge technology -5.378127449271549 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, cutting-edge technology) -> cutting-edge technology (3101ms) What are semiconductors? cutting-edge sector -5.378510388545033 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, cutting-edge sector) -> cutting-edge sector (3101ms) What are semiconductors? transparent or semitransparent material -5.416395074555697 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, transparent or semitransparent material) -> transparent or semitransparent material (3101ms) What are semiconductors? strategic business area -5.6409038783534005 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, strategic business area) -> strategic business area (3101ms) What are semiconductors? high-value-added industry -5.670341011599557 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, high-value-added industry) -> high-value-added industry (3122ms) What are semiconductors? heat generating part -5.685315605972828 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, heat generating part) -> heat generating part (3123ms) What are semiconductors? solid-state electronic device -5.698581858802984 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, solid-state electronic device) -> solid-state electronic device (3123ms) What are semiconductors? product in market -5.715352139956176 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, product in market) -> product in market (3123ms) What are semiconductors? first conductive material -5.722049712638546 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, first conductive material) -> first conductive material (3123ms) What are semiconductors? non-metal material -5.726699561645407 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, non-metal material) -> non-metal material (3123ms) What are semiconductors? substance, consisting of a solid chemical element or compound -5.752960842084011 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, substance, consisting of a solid chemical element or compound) -> substance, consisting of a solid chemical element or compound (3198ms) What are semiconductors? memory device -5.757506100318768 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, memory device) -> memory device (3198ms) What are semiconductors? cumulative system technologies -5.788734038672018 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, cumulative system technologies) -> cumulative system technologies (3198ms) What are semiconductors? cumulative technology field -5.788734038672018 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, cumulative technology field) -> cumulative technology field (3198ms) What are semiconductors? pure scientific sample -5.788734038672018 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, pure scientific sample) -> pure scientific sample (3198ms) What are semiconductors? tremendous complex market -5.788734038672018 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (Semiconductors, Instance Of, tremendous complex market) -> tremendous complex market (3199ms) What are semiconductors? material or item -5.794088504122012 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, material or item) -> material or item (3251ms) What are semiconductors? spectral region certain nonmetallic material -5.797854797519154 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, spectral region certain nonmetallic material) -> spectral region certain nonmetallic material (3251ms) What are semiconductors? free Java simulation -5.797854797519154 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (Semiconductors, Instance Of, free Java simulation) -> free Java simulation (3268ms) What are semiconductors? key strategic industry -5.797854797519154 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, key strategic industry) -> key strategic industry (3251ms) What are semiconductors? competitiveness higher value-added-per-employee industry -5.797854797519154 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, competitiveness higher value-added-per-employee industry) -> competitiveness higher value-added-per-employee industry (3267ms) What are semiconductors? tiny complex of electronic component -5.797854797519154 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, tiny complex of electronic component) -> tiny complex of electronic component (3267ms) What are semiconductors? high tech manufacturing industry -5.797854797519154 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, high tech manufacturing industry) -> high tech manufacturing industry (3251ms) What are semiconductors? substance, usually solid chemical element or compound -5.797854797519154 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, substance, usually solid chemical element or compound) -> substance, usually solid chemical element or compound (3251ms) What are semiconductors? cold war information technology -5.797854797519154 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, cold war information technology) -> cold war information technology (3251ms) What are semiconductors? precision electronic device -5.798225037651006 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, precision electronic device) -> precision electronic device (3267ms) What are semiconductors? high work function material -5.80079248779605 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, high work function material) -> high work function material (3268ms) What are semiconductors? man made material -5.818418628538154 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, man made material) -> man made material (3284ms) What are semiconductors? sophisticated, high-tech manufactured good -5.825273239694954 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, sophisticated, high-tech manufactured good) -> sophisticated, high-tech manufactured good (3284ms) What are semiconductors? substance or material -5.829190159655583 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, substance or material) -> substance or material (3284ms) What are semiconductors? high-quality thin film -5.838982459557154 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, high-quality thin film) -> high-quality thin film (3285ms) What are semiconductors? bulk material -5.856385971431186 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, bulk material) -> bulk material (3284ms) What are semiconductors? active device -5.897388615983568 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, active device) -> active device (3284ms) What are semiconductors? common material -5.9012993662909246 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, common material) -> common material (3297ms) What are semiconductors? intellectual property -5.932455380244988 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, intellectual property) -> intellectual property (3297ms) What are semiconductors? commercial application -5.958329829072698 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, commercial application) -> commercial application (3297ms) What are semiconductors? dielectric compound -6.0262962594139085 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, dielectric compound) -> dielectric compound (3298ms) What are semiconductors? component part -6.0288683084127825 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, component part) -> component part (3298ms) What are semiconductors? signage material -6.054063486658409 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, signage material) -> signage material (3298ms) What are semiconductors? display device -6.05521599111584 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, display device) -> display device (3325ms) What are semiconductors? traditional material -6.061779818735707 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, traditional material) -> traditional material (3325ms) What are semiconductors? electronic system -6.082417594422629 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, electronic system) -> electronic system (3325ms) What are semiconductors? flat surface -6.088944180110317 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, flat surface) -> flat surface (3325ms) What are semiconductors? optical material -6.096775832157354 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, optical material) -> optical material (3325ms) What are semiconductors? inorganic nanomaterials -6.120858713745539 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, inorganic nanomaterials) -> inorganic nanomaterials (3325ms) What are semiconductors? communication technology -6.126595930348767 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, communication technology) -> communication technology (3356ms) What are semiconductors? unexplored material -6.155023713973003 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, unexplored material) -> unexplored material (3356ms) What are semiconductors? nanotubesmadeof material -6.155023713973003 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, nanotubesmadeof material) -> nanotubesmadeof material (3356ms) What are semiconductors? ightechnology industry -6.155023713973003 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, ightechnology industry) -> ightechnology industry (3356ms) What are semiconductors? component group -6.1565469607265 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, component group) -> component group (3356ms) What are semiconductors? tech field -6.156851610107842 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, tech field) -> tech field (3356ms) What are semiconductors? automation industry -6.157594192850378 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, automation industry) -> automation industry (3386ms) What are semiconductors? complex field -6.159724018232183 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, complex field) -> complex field (3387ms) What are semiconductors? nontraditional industry -6.161351046829945 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, nontraditional industry) -> nontraditional industry (3387ms) What are semiconductors? target industry -6.162302946165001 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, target industry) -> target industry (3387ms) What are semiconductors? thriving industry -6.163249246503173 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, thriving industry) -> thriving industry (3387ms) What are semiconductors? korean product -6.163249246503173 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, korean product) -> korean product (3387ms) What are semiconductors? electronics technology -6.163964509775118 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, electronics technology) -> electronics technology (3409ms) What are semiconductors? emissive material -6.164370910169298 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, emissive material) -> emissive material (3409ms) What are semiconductors? covalent solid -6.166774475080588 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, covalent solid) -> covalent solid (3409ms) What are semiconductors? crystal material -6.168732935060903 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, crystal material) -> crystal material (3409ms) What are semiconductors? important device -6.1690673059781025 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (Semiconductor, Instance Of, important device) -> important device (3409ms) What are semiconductors? technology market -6.171474779033343 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, technology market) -> technology market (3426ms) What are semiconductors? nonmetal substrate -6.171474779033343 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, nonmetal substrate) -> nonmetal substrate (3426ms) What are semiconductors? traditional export -6.171474779033343 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, traditional export) -> traditional export (3409ms) What are semiconductors? core industry -6.173597496275332 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, core industry) -> core industry (3427ms) What are semiconductors? extreme environment -6.175457229810384 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, extreme environment) -> extreme environment (3426ms) What are semiconductors? electric device -6.177219596201298 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, electric device) -> electric device (3426ms) What are semiconductors? synthetic material -6.177616870034447 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, synthetic material) -> synthetic material (3426ms) What are semiconductors? photonic device -6.1821195862696925 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, photonic device) -> photonic device (3453ms) What are semiconductors? electron system -6.182442156148802 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, electron system) -> electron system (3453ms) What are semiconductors? exotic material -6.184590143644457 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, exotic material) -> exotic material (3453ms) What are semiconductors? microelectronic device -6.192412498758184 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, microelectronic device) -> microelectronic device (3453ms) What are semiconductors? star industry -6.196151376011002 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, star industry) -> star industry (3453ms) What are semiconductors? system and component -6.310963909359615 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (Semiconductor, Instance Of, system and component) -> system and component (3453ms) What are semiconductors? market and application -6.323859538749476 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, market and application) -> market and application (3477ms) What are semiconductors? product -7.664496210084847 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, product) -> product (3873ms) What are semiconductors? component -7.733800561428993 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, component) -> component (3873ms) What are semiconductors? market -7.754963573350632 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, market) -> market (3873ms) What are semiconductors? circuit -7.857427158808397 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, circuit) -> circuit (3873ms) What are semiconductors? surface -7.998416978030524 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, surface) -> surface (3880ms) What are semiconductors? medium -8.039515793184774 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, medium) -> medium (3880ms) What are semiconductors? source -8.105836984059604 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, source) -> source (3881ms) What are semiconductors? element -8.131476371445647 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, element) -> element (3881ms) What are semiconductors? device -8.196596557577648 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, device) -> device (3882ms) What are semiconductors? parts -8.378332184742158 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, parts) -> parts (3887ms) What are semiconductors? industies -8.38855096138849 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, industies) -> industies (3887ms) What are semiconductors? vertical -8.401552975729512 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (Semiconductors, Instance Of, vertical) -> vertical (3887ms) What are semiconductors? apparatuses -8.402910188262988 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, apparatuses) -> apparatuses (3887ms) What are semiconductors? conductor -8.40793886210651 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> (semiconductor, Instance Of, conductor) -> conductor (3888ms) What are semiconductors? a system -8.738884409581786 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> $x: (semiconductors, modelling, $x) -> (A semiconductor heterostructure, can be modelled by, a system) -> a system (3888ms) What are semiconductors? Germanium -8.922758095582903 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> $x: ($x, element, semiconductors) -> (Germanium, is an important element in, semiconductors) -> Germanium (3895ms) What are semiconductors? rate equations -9.102792912572301 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> $x: (semiconductors, modelling, $x) -> (semiconductor lasers, are modeled by, rate equations) -> rate equations (3895ms) What are semiconductors? a finite domain -9.165329442045694 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> $x: (semiconductors, modelling, $x) -> (The semiconductor device, is modeled as, a finite domain) -> a finite domain (3901ms) What are semiconductors? a plus -10.468832939308127 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, is, a plus) -> a plus (6283ms) What are semiconductors? Distributed feedback semiconductor lasers -10.503669404334103 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Distributed feedback semiconductor lasers, Edition Of, Distributed feedback semiconductor lasers) -> Distributed feedback semiconductor lasers (8709ms) What are semiconductors? Single frequency semiconductor lasers -10.503669404334103 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Single frequency semiconductor lasers, Editions, Single frequency semiconductor lasers) -> Single frequency semiconductor lasers (8709ms) What are semiconductors? Introductory semiconductor device physics -10.503669404334103 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Introductory semiconductor device physics, Edition Of, Introductory semiconductor device physics) -> Introductory semiconductor device physics (8709ms) What are semiconductors? Semiconductor silicon crystal technology -10.503669404334103 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Semiconductor silicon crystal technology, Edition Of, Semiconductor silicon crystal technology) -> Semiconductor silicon crystal technology (8709ms) What are semiconductors? Highly coherent semiconductor lasers -10.503669404334103 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Highly coherent semiconductor lasers, Edition Of, Highly coherent semiconductor lasers) -> Highly coherent semiconductor lasers (8709ms) What are semiconductors? a term -10.572801533963482 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductor, is, a term) -> a term (6283ms) What are semiconductors? Dilute Nitride Semiconductors -10.578094796526733 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Dilute Nitride Semiconductors, Edition Of, Dilute Nitride Semiconductors) -> Dilute Nitride Semiconductors (8709ms) What are semiconductors? Computational Semiconductor Processing -10.578094796526733 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Computational Semiconductor Processing, Edition Of, Computational Semiconductor Processing) -> Computational Semiconductor Processing (9143ms) What are semiconductors? Semiconductor Circuit Approx -10.578094796526733 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Semiconductor Circuit Approx, Edition Of, Semiconductor Circuit Approx) -> Semiconductor Circuit Approx (9142ms) What are semiconductors? two everyday examples -10.63202824837186 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, are, two everyday examples) -> two everyday examples (6284ms) What are semiconductors? natural scalar interferometers -10.63882305555364 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, are, natural scalar interferometers) -> natural scalar interferometers (6284ms) What are semiconductors? economic sector -10.647847393662019 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, is an, economic sector) -> economic sector (6283ms) What are semiconductors? silicon -10.656475394683213 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> $x: ($x, element, semiconductors) -> (silicon, is an important element in, semiconductors) -> silicon (3920ms) What are semiconductors? an excellence-driven organization -10.675389129140965 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, is, an excellence-driven organization) -> an excellence-driven organization (6283ms) What are semiconductors? Optical semiconductor devices -10.687543902692365 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Optical semiconductor devices, Edition Of, Optical semiconductor devices) -> Optical semiconductor devices (10470ms) What are semiconductors? Semiconductor device fundamentals -10.687543902692365 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Semiconductor fundamentals, Editions, Semiconductor device fundamentals) -> Semiconductor device fundamentals (10470ms) What are semiconductors? Semiconductor crystal manufacture -10.687543902692365 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Semiconductor crystal manufacture, Edition Of, Semiconductor crystal manufacture) -> Semiconductor crystal manufacture (10093ms) What are semiconductors? Semiconductor optical modulators -10.687543902692365 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Semiconductor optical modulators, Edition Of, Semiconductor optical modulators) -> Semiconductor optical modulators (9635ms) What are semiconductors? Semiconductor amateur projects -10.687543902692365 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Semiconductor amateur projects, Edition Of, Semiconductor amateur projects) -> Semiconductor amateur projects (9142ms) What are semiconductors? Semiconductor manufacturing technology -10.687543902692365 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Semiconductor manufacturing technology, Edition Of, Semiconductor manufacturing technology) -> Semiconductor manufacturing technology (9635ms) What are semiconductors? Optoelectronic semiconductor devices -10.687543902692365 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Optoelectronic semiconductor devices, Edition Of, Optoelectronic semiconductor devices) -> Optoelectronic semiconductor devices (10470ms) What are semiconductors? Advanced semiconductor fundamentals -10.687543902692365 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Advanced semiconductor fundamentals, Edition Of, Advanced semiconductor fundamentals) -> Advanced semiconductor fundamentals (10092ms) What are semiconductors? Understanding semiconductor devices -10.687543902692365 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Understanding semiconductor devices, Edition Of, Understanding semiconductor devices) -> Understanding semiconductor devices (10092ms) What are semiconductors? Semiconductor comparator circuits -10.687543902692365 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Semiconductor comparator circuits, Edition Of, Semiconductor comparator circuits) -> Semiconductor comparator circuits (10092ms) What are semiconductors? Semiconductor testing technology -10.687543902692365 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Semiconductor testing technology, Edition Of, Semiconductor testing technology) -> Semiconductor testing technology (9635ms) What are semiconductors? Power semiconductor devices -10.687543902692365 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Power semiconductor devices, Editions, Power semiconductor devices) -> Power semiconductor devices (10092ms) What are semiconductors? Basic semiconductor physics -10.687543902692365 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Basic semiconductor physics, Edition Of, Basic semiconductor physics) -> Basic semiconductor physics (9635ms) What are semiconductors? Semiconductor circuit elements -10.687543902692365 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Semiconductor circuit elements, Edition Of, Semiconductor circuit elements) -> Semiconductor circuit elements (10092ms) What are semiconductors? silicon , germanium -10.696510130761371 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, are, silicon , germanium) -> silicon , germanium (6301ms) What are semiconductors? a grant -10.708502595334675 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductor, were given, a grant) -> a grant (6301ms) What are semiconductors? Semiconductor Memories -10.725486259496451 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Semiconductor Memories, Editions, Semiconductor Memories) -> Semiconductor Memories (11052ms) What are semiconductors? Semiconductor Transport -10.725486259496451 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Semiconductor Transport, Editions, Semiconductor Transport) -> Semiconductor Transport (10966ms) What are semiconductors? Semiconductor Devices -10.725486259496451 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Semiconductor Devices, Edition Of, Semiconductor Devices) -> Semiconductor Devices (10967ms) What are semiconductors? Semiconductor Electronics -10.725486259496451 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Semiconductor Electronics, Editions, Semiconductor Electronics) -> Semiconductor Electronics (10967ms) What are semiconductors? Galvanometric Effects in Semiconductors -10.758685821700027 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Galvanomagnetic effects in semiconductors, Edition Of, Galvanometric Effects in Semiconductors) -> Galvanometric Effects in Semiconductors (11052ms) What are semiconductors? available today -10.77827474259274 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, are, available today) -> available today (6301ms) What are semiconductors? materials -10.793749694817187 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> $x: (semiconductors, be a class of, $x) -> (Semiconductors, are a class of, materials) -> materials (3920ms) What are semiconductors? a complex and precise process -10.796457990804566 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, is, a complex and precise process) -> a complex and precise process (6301ms) What are semiconductors? ON Semiconductor -10.802866700018345 What are semiconductors? -> what [ be semiconductor ] ? -> what be know be semiconductor ? -> $x: ($x, be know be, semiconductor) -> $x: ($x, know, semiconductor) -> (ON Semiconductor, Also known as, ON SEMICONDUCTOR CORP) -> ON Semiconductor (12744ms) What are semiconductors? powerful technology enablers -10.803219266122147 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are, powerful technology enablers) -> powerful technology enablers (6301ms) What are semiconductors? Galvanomagnetic effects in semiconductors -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Galvanometric Effects in Semiconductors, Editions, Galvanomagnetic effects in semiconductors) -> Galvanomagnetic effects in semiconductors (12857ms) What are semiconductors? Plasma effects in semiconductors: Helicon and Alfv?n waves -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Plasma effects in semiconductors, Editions, Plasma effects in semiconductors: Helicon and Alfv?n waves) -> Plasma effects in semiconductors: Helicon and Alfv?n waves (11703ms) What are semiconductors? Semiconductor devices : basic principles -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Semiconductor devices : basic principles, Edition Of, Semiconductor devices) -> Semiconductor devices : basic principles (12857ms) What are semiconductors? Diffusion in semiconductors -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Diffusion in semiconductors, Edition Of, Diffusion in semiconductors) -> Diffusion in semiconductors (12744ms) What are semiconductors? Principles of semiconductor devices -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Principles of semiconductor devices, Edition Of, Principles of semiconductor devices) -> Principles of semiconductor devices (11431ms) What are semiconductors? Heteroepitaxy of semiconductors : theory, growth, and characterization -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Heteroepitaxy of semiconductors : theory, growth, and characterization, Edition Of, Heteroepitaxy of Semiconductors) -> Heteroepitaxy of semiconductors : theory, growth, and characterization (11052ms) What are semiconductors? Physics of semiconductor devices -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Physics of semiconductor devices, Edition Of, Physics of semiconductor devices) -> Physics of semiconductor devices (11581ms) What are semiconductors? Introduction to semiconductor optics -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Introduction to semiconductor optics, Edition Of, Introduction to semiconductor optics) -> Introduction to semiconductor optics (12857ms) What are semiconductors? Conductors and semiconductors -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Conductors and semiconductors, Edition Of, Conductors and semiconductors) -> Conductors and semiconductors (12124ms) What are semiconductors? Narrow-gap semiconductors -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Narrow-gap semiconductors, Edition Of, Narrow-gap semiconductors) -> Narrow-gap semiconductors (12824ms) What are semiconductors? Semiconductor ceramics : grain boundary effects -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition, semiconductor) -> (Semiconductor ceramics : grain boundary effects, Edition Of, Semiconductor ceramics) -> Semiconductor ceramics : grain boundary effects (12824ms) What are semiconductors? Semiconductor Devices (German) -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Semiconductor Devices, Editions, Semiconductor Devices (German)) -> Semiconductor Devices (German) (12857ms) What are semiconductors? Microwave Semiconductor Devices (The Springer International Series in Engineering and Computer Science) -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Microwave Semiconductor Devices (The Springer International Series in Engineering and Computer Science), Edition Of, Microwave Semiconductor Devices) -> Microwave Semiconductor Devices (The Springer International Series in Engineering and Computer Science) (12790ms) What are semiconductors? Semiconductors: Others Than Group IV Elements and Iii-V Compounds (Data in Science and Technology) -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition, semiconductor) -> (Semiconductors: Others Than Group IV Elements and Iii-V Compounds (Data in Science and Technology), Edition Of, Semiconductors) -> Semiconductors: Others Than Group IV Elements and Iii-V Compounds (Data in Science and Technology) (11757ms) What are semiconductors? Superconductor/semiconductor junctions -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Superconductor/semiconductor junctions, Edition Of, Superconductor/semiconductor junctions) -> Superconductor/semiconductor junctions (11703ms) What are semiconductors? Nitride Semiconductors and Devices (Springer Series in Materials Science) -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Nitride Semiconductors and Devices, Editions, Nitride Semiconductors and Devices (Springer Series in Materials Science)) -> Nitride Semiconductors and Devices (Springer Series in Materials Science) (12020ms) What are semiconductors? Ion implantation of semiconductors -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Ion implantation of semiconductors, Edition Of, Ion implantation of semiconductors) -> Ion implantation of semiconductors (12790ms) What are semiconductors? Handbook of semiconductor memories -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Handbook of semiconductor memories, Edition Of, Handbook of semiconductor memories) -> Handbook of semiconductor memories (12744ms) What are semiconductors? Semiconductor physics and devices: basic principles -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Semiconductor physics and devices: basic principles, Edition Of, Semiconductor physics and devices) -> Semiconductor physics and devices: basic principles (11431ms) What are semiconductors? Semiconductors and Semimetals: Cadmium Telluride (Semiconductors and Semimetals) -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Semiconductors and Semimetals: Cadmium Telluride (Semiconductors and Semimetals), Edition Of, Semiconductors and Semimetals) -> Semiconductors and Semimetals: Cadmium Telluride (Semiconductors and Semimetals) (12857ms) What are semiconductors? Semiconductor alloys : physics and materials engineering -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Semiconductor alloys, Editions, Semiconductor alloys : physics and materials engineering) -> Semiconductor alloys : physics and materials engineering (11581ms) What are semiconductors? Chemical physics of semiconductors -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Chemical physics of semiconductors, Edition Of, Chemical physics of semiconductors) -> Chemical physics of semiconductors (12021ms) What are semiconductors? Semiconductor physics and applications -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Semiconductor physics and applications, Edition Of, Semiconductor physics and applications) -> Semiconductor physics and applications (12897ms) What are semiconductors? Semiconductor Devices: Pioneering Papers -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Semiconductor Devices: Pioneering Papers, Edition Of, Semiconductor Devices) -> Semiconductor Devices: Pioneering Papers (11818ms) What are semiconductors? Faraday effect in semiconductors -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Faraday effect in semiconductors, Edition Of, Faraday effect in semiconductors) -> Faraday effect in semiconductors (12124ms) What are semiconductors? Semiconductors and Semimetals: Nanostructured Systems (Semiconductors and Semimetals) -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Semiconductors and Semimetals: Nanostructured Systems (Semiconductors and Semimetals), Edition Of, Semiconductors and Semimetals) -> Semiconductors and Semimetals: Nanostructured Systems (Semiconductors and Semimetals) (11581ms) What are semiconductors? Photoelectric effects in semiconductors -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Photoelectric effects in semiconductors, Editions, Photoelectric effects in semiconductors) -> Photoelectric effects in semiconductors (12857ms) What are semiconductors? Potential barriers in semiconductors -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Potential barriers in semiconductors, Editions, Potential barriers in semiconductors) -> Potential barriers in semiconductors (12790ms) What are semiconductors? Semiconductor power devices: physics of operation and fabrication technology -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Semiconductor power devices: physics of operation and fabrication technology, Edition Of, Semiconductor power devices) -> Semiconductor power devices: physics of operation and fabrication technology (11758ms) What are semiconductors? Noise in semiconductor devices : modeling and simulation -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Noise in semiconductor devices : modeling and simulation, Edition Of, Noise in semiconductor devices) -> Noise in semiconductor devices : modeling and simulation (11581ms) What are semiconductors? Semiconductors and transistors -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Semiconductors and transistors, Edition Of, Semiconductors and transistors) -> Semiconductors and transistors (11757ms) What are semiconductors? ULSI semiconductor technology atlas -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (ULSI semiconductor technology atlas, Edition Of, ULSI semiconductor technology atlas) -> ULSI semiconductor technology atlas (12897ms) What are semiconductors? Textbook on Semiconductors -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Textbook on Semiconductors, Edition Of, Textbook on Semiconductors) -> Textbook on Semiconductors (12124ms) What are semiconductors? Semiconductor microdevices and materials -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Semiconductor microdevices and materials, Edition Of, Semiconductor microdevices and materials) -> Semiconductor microdevices and materials (11489ms) What are semiconductors? Semiconductors: data handbook -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Semiconductors, Editions, Semiconductors: data handbook) -> Semiconductors: data handbook (12790ms) What are semiconductors? Semiconductor opto-electronics -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Semiconductor opto-electronics, Edition Of, Semiconductor opto-electronics) -> Semiconductor opto-electronics (11757ms) What are semiconductors? Semiconductors and electronic devices -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Semiconductors and electronic devices, Edition Of, Semiconductors and electronic devices) -> Semiconductors and electronic devices (11703ms) What are semiconductors? Diffusion in Semiconductors -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Diffusion in Semiconductors, Edition Of, Diffusion in Semiconductors) -> Diffusion in Semiconductors (12021ms) What are semiconductors? Thermomagnetic effects in semiconductors -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Thermomagnetic effects in semiconductors, Edition Of, Thermomagnetic effects in semiconductors) -> Thermomagnetic effects in semiconductors (12824ms) What are semiconductors? Application of Semiconductor Technology -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Application of Semiconductor Technology, Edition Of, Application of Semiconductor Technology) -> Application of Semiconductor Technology (12824ms) What are semiconductors? Electrochemistry of semiconductors -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Electrochemistry of semiconductors, Edition Of, Electrochemistry of semiconductors) -> Electrochemistry of semiconductors (12790ms) What are semiconductors? Defect electronics in semiconductors -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Defect electronics in semiconductors, Editions, Defect electronics in semiconductors) -> Defect electronics in semiconductors (12086ms) What are semiconductors? Survey of Semiconductor Physics: Electronic Transport in Semiconductors -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Survey of Semiconductor Physics: Electronic Transport in Semiconductors, Edition Of, Survey of Semiconductor Physics) -> Survey of Semiconductor Physics: Electronic Transport in Semiconductors (11489ms) What are semiconductors? Semiconductor lithography : principles, practices, and materials -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition, semiconductor) -> (Semiconductor lithography : principles, practices, and materials, Edition Of, Semiconductor lithography) -> Semiconductor lithography : principles, practices, and materials (11622ms) What are semiconductors? Semiconductor devices, physics and technology -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Semiconductor Devices, Editions, Semiconductor devices, physics and technology) -> Semiconductor devices, physics and technology (11703ms) What are semiconductors? Semiconductor Devices and Circuits -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Semiconductor Devices and Circuits, Edition Of, Semiconductor Devices and Circuits) -> Semiconductor Devices and Circuits (12857ms) What are semiconductors? Advanced semiconductor memories : architectures, designs, and applications -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Advanced semiconductor memories : architectures, designs, and applications, Edition Of, Semiconductor Memories) -> Advanced semiconductor memories : architectures, designs, and applications (12790ms) What are semiconductors? Compound Semiconductor Devices: Structures and Processing -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Compound Semiconductor Devices: Structures and Processing, Edition Of, Compound Semiconductor Devices) -> Compound Semiconductor Devices: Structures and Processing (11703ms) What are semiconductors? Semiconductors and Semimetals: Defects, Hgcd, Se, Hgcdo and Te (Semiconductors and Semimetals) -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Semiconductors and Semimetals: Defects, Hgcd, Se, Hgcdo and Te (Semiconductors and Semimetals), Edition Of, Semiconductors and Semimetals) -> Semiconductors and Semimetals: Defects, Hgcd, Se, Hgcdo and Te (Semiconductors and Semimetals) (11534ms) What are semiconductors? Metal-semiconductor contacts -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Metal-semiconductor contacts, Edition Of, Metal-semiconductor contacts) -> Metal-semiconductor contacts (12021ms) What are semiconductors? Semiconductor Optoelectronic Devices, Second Edition -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Semiconductor optoelectronic devices, Edition Of, Semiconductor Optoelectronic Devices, Second Edition) -> Semiconductor Optoelectronic Devices, Second Edition (11622ms) What are semiconductors? Semiconductor essentials: for hobbyists, technicians & engineers -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Semiconductor essentials: for hobbyists, technicians & engineers, Edition Of, Semiconductor essentials) -> Semiconductor essentials: for hobbyists, technicians & engineers (12897ms) What are semiconductors? Optical characterization of semiconductors: infrared, Raman, and photoluminescence spectroscopy -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Optical characterization of semiconductors, Editions, Optical characterization of semiconductors: infrared, Raman, and photoluminescence spectroscopy) -> Optical characterization of semiconductors: infrared, Raman, and photoluminescence spectroscopy (11534ms) What are semiconductors? Semiconductor Desk Reference -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Semiconductor Desk Reference, Edition Of, Semiconductor Desk Reference) -> Semiconductor Desk Reference (11431ms) What are semiconductors? Handbook of semiconductor electrodeposition -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Handbook of semiconductor electrodeposition, Editions, Handbook of semiconductor electrodeposition) -> Handbook of semiconductor electrodeposition (12086ms) What are semiconductors? Getting to know semiconductors -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Getting to know semiconductors, Edition Of, Getting to know semiconductors) -> Getting to know semiconductors (11703ms) What are semiconductors? Introduction to semiconductor devices -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Introduction to semiconductor devices, Edition Of, Introduction to semiconductor devices) -> Introduction to semiconductor devices (12824ms) What are semiconductors? Semiconductor photoelectric devices: an introduction to design -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Semiconductor photoelectric devices, Editions, Semiconductor photoelectric devices: an introduction to design) -> Semiconductor photoelectric devices: an introduction to design (12086ms) What are semiconductors? History of semiconductor engineering -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (History of semiconductor engineering, Edition Of, History of semiconductor engineering) -> History of semiconductor engineering (11818ms) What are semiconductors? Semiconductor devices: an introduction -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Semiconductor devices: an introduction, Edition Of, Semiconductor devices) -> Semiconductor devices: an introduction (12197ms) What are semiconductors? Introduction to semiconductor theory -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Introduction to semiconductor theory, Edition Of, Introduction to semiconductor theory) -> Introduction to semiconductor theory (12790ms) What are semiconductors? Introduction to semiconductor physics -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Introduction to semiconductor physics, Edition Of, Introduction to semiconductor physics) -> Introduction to semiconductor physics (12124ms) What are semiconductors? Using semiconductors: a beginners' course including theory, practical demonstrations and projects -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Using semiconductors: a beginners' course including theory, practical demonstrations and projects, Edition Of, Using semiconductors) -> Using semiconductors: a beginners' course including theory, practical demonstrations and projects (11534ms) What are semiconductors? Semiconductors and Semimetals -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Semiconductors and Semimetals: Cadmium Telluride (Semiconductors and Semimetals), Edition Of, Semiconductors and Semimetals) -> Semiconductors and Semimetals (12897ms) What are semiconductors? Semiconductor Photochemistry and Photophysics: Determination, Analysis, and Applications for Drug Discovery (MOLECULAR AND SUPRAMOLECULAR PHOTOCHEMISTRY) -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Semiconductor Photochemistry and Photophysics, Editions, Semiconductor Photochemistry and Photophysics: Determination, Analysis, and Applications for Drug Discovery (MOLECULAR AND SUPRAMOLECULAR PHOTOCHEMISTRY)) -> Semiconductor Photochemistry and Photophysics: Determination, Analysis, and Applications for Drug Discovery (MOLECULAR AND SUPRAMOLECULAR PHOTOCHEMISTRY) (12744ms) What are semiconductors? Gettering defects in semiconductors -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Gettering defects in semiconductors, Edition Of, Gettering defects in semiconductors) -> Gettering defects in semiconductors (12824ms) What are semiconductors? Semiconductor contacts: an approach to ideas and models -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition, semiconductor) -> (Semiconductor contacts: an approach to ideas and models, Edition Of, Semiconductor contacts) -> Semiconductor contacts: an approach to ideas and models (11660ms) What are semiconductors? Semiconductor physics: an introduction -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Semiconductor physics: an introduction, Edition Of, Semiconductor physics) -> Semiconductor physics: an introduction (12197ms) What are semiconductors? Fundamentals of semiconductor lasers -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Fundamentals of semiconductor lasers, Edition Of, Fundamentals of semiconductor lasers) -> Fundamentals of semiconductor lasers (12197ms) What are semiconductors? Molecular semiconductors: photoelectrical properties and solar cells -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Molecular semiconductors: photoelectrical properties and solar cells, Edition Of, Molecular semiconductors) -> Molecular semiconductors: photoelectrical properties and solar cells (12897ms) What are semiconductors? Chemistry for Semiconductor Technicians (with CD-ROM) -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Chemistry for Semiconductor Technicians, Editions, Chemistry for Semiconductor Technicians (with CD-ROM)) -> Chemistry for Semiconductor Technicians (with CD-ROM) (12021ms) What are semiconductors? Physics of semiconductor lasers -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Physics of semiconductor lasers, Editions, Physics of semiconductor lasers) -> Physics of semiconductor lasers (11622ms) What are semiconductors? Fundamentals of semiconductor devices -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Fundamentals of semiconductor devices, Editions, Fundamentals of semiconductor devices) -> Fundamentals of semiconductor devices (12897ms) What are semiconductors? Semiconductor building block materials: growing markets for material precursors -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Semiconductor building block materials: growing markets for material precursors, Edition Of, Semiconductor building block materials) -> Semiconductor building block materials: growing markets for material precursors (11818ms) What are semiconductors? Introduction to Semiconductors Electronic -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Introduction to Semiconductors Electronic, Edition Of, Introduction to Semiconductors Electronic) -> Introduction to Semiconductors Electronic (12744ms) What are semiconductors? Conductors and Semiconductor (PERMACHARTS -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Conductors and Semiconductor (PERMACHARTS, Edition Of, Conductors and Semiconductor (PERMACHARTS) -> Conductors and Semiconductor (PERMACHARTS (12086ms) What are semiconductors? Recombination in semiconductors -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Recombination in semiconductors, Editions, Recombination in semiconductors) -> Recombination in semiconductors (12197ms) What are semiconductors? Fundamentals of Semiconductors: Physics and Materials Properties -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Fundamentals of Semiconductors: Physics and Materials Properties, Edition Of, Fundamentals of Semiconductors) -> Fundamentals of Semiconductors: Physics and Materials Properties (11660ms) What are semiconductors? Semiconductors: Group IV Elements and Iii-V Compounds (Data in Science and Technology) -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Semiconductors, Editions, Semiconductors: Group IV Elements and Iii-V Compounds (Data in Science and Technology)) -> Semiconductors: Group IV Elements and Iii-V Compounds (Data in Science and Technology) (12824ms) What are semiconductors? Photoinduced defects in semiconductors -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition of, $x) -> (Photoinduced defects in semiconductors, Edition Of, Photoinduced defects in semiconductors) -> Photoinduced defects in semiconductors (12124ms) What are semiconductors? Semiconductor lasers : stability, instability and chaos -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Semiconductor lasers, Editions, Semiconductor lasers : stability, instability and chaos) -> Semiconductor lasers : stability, instability and chaos (11534ms) What are semiconductors? Semiconductor devices explained : using active simulation -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: (semiconductor, edition, $x) -> (Semiconductor devices explained, Editions, Semiconductor devices explained : using active simulation) -> Semiconductor devices explained : using active simulation (11660ms) What are semiconductors? Semiconductor nanowires : synthesis, passivation, and devices -10.80976207124399 What are semiconductors? -> what be [ semiconductor ] ? -> what be the expansion of semiconductor ? -> $x: (semiconductor, expansion, $x) -> $x: ($x, edition of, semiconductor) -> (Semiconductor nanowires : synthesis, passivation, and devices, Edition Of, Semiconductor nanowires) -> Semiconductor nanowires : synthesis, passivation, and devices (12124ms) What are semiconductors? an interesting , -10.816825577804316 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductor, is, an interesting ,) -> an interesting , (6301ms) What are semiconductors? the industry today -10.835934855689032 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> $x: ($x, offer include, semiconductors) -> (the industry today, includes a broad offering of, semiconductor) -> the industry today (3926ms) What are semiconductors? a dirty , dangerous business -10.853046658306877 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, is, a dirty , dangerous business) -> a dirty , dangerous business (6317ms) What are semiconductors? a really broad term -10.857149628422075 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductor, is, a really broad term) -> a really broad term (6317ms) What are semiconductors? ?a high efficiency -10.876951043613307 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, is, ?a high efficiency) -> ?a high efficiency (6317ms) What are semiconductors? a very mature field -10.909317311216608 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are, a very mature field) -> a very mature field (6317ms) What are semiconductors? an equal opportunity employer -10.924840678154817 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductor, is, an equal opportunity employer) -> an equal opportunity employer (6317ms) What are semiconductors? the United States -10.949462710743678 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, are, the United States) -> the United States (6317ms) What are semiconductors? entire range -10.9923203441495 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, are being used for, entire range) -> entire range (6335ms) What are semiconductors? the Nation?s largest export -10.995084498871169 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are, the Nation?s largest export) -> the Nation?s largest export (6336ms) What are semiconductors? silicon chips -11.019725307654763 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, were, silicon chips) -> silicon chips (6335ms) What are semiconductors? SK Hynix -11.043580137625286 What are semiconductors? -> what [ be semiconductor ] ? -> what be know be semiconductor ? -> $x: ($x, be know be, semiconductor) -> (SK Hynix, was previously known as, Hynix Semiconductor) -> SK Hynix (6548ms) What are semiconductors? US$ 25.03 billion -11.080782124861903 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, were, US$ 25.03 billion) -> US$ 25.03 billion (6335ms) What are semiconductors? crystalline solids -11.08780850377592 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are, crystalline solids) -> crystalline solids (6335ms) What are semiconductors? unique substances -11.092656907666829 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are, unique substances) -> unique substances (6353ms) What are semiconductors? multilayer sandwiches -11.127532850720959 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are, multilayer sandwiches) -> multilayer sandwiches (6353ms) What are semiconductors? an imperfect process -11.130577942311682 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, is, an imperfect process) -> an imperfect process (6353ms) What are semiconductors? a $ 250 Billion industry and storage is -11.132998756561552 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are, a $ 250 Billion industry and storage is) -> a $ 250 Billion industry and storage is (6354ms) What are semiconductors? America -11.136175717615272 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are, America) -> America (6353ms) What are semiconductors? a growing problem -11.137520685005175 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, is, a growing problem) -> a growing problem (6354ms) What are semiconductors? China -11.13794414311976 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, is, China) -> China (6376ms) What are semiconductors? a registered trademark -11.14371009521744 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductor, is, a registered trademark) -> a registered trademark (6376ms) What are semiconductors? a tough industry -11.166699205157425 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, is, a tough industry) -> a tough industry (6376ms) What are semiconductors? perfect conductors -11.167740568620939 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are almost, perfect conductors) -> perfect conductors (6376ms) What are semiconductors? a glam industry -11.203770940196879 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, was, a glam industry) -> a glam industry (6376ms) What are semiconductors? any way -11.21911295765322 What are semiconductors? -> what be [ semiconductor ] ? -> what exactly be semiconductor ? -> $x: ($x, exactly be, semiconductor) -> (any way, exactly is, a semiconductor) -> any way (6465ms) What are semiconductors? terms -11.257710967538927 What are semiconductors? -> $x: (semiconductors, instance of, $x) -> $x: (semiconductors, modelling, $x) -> (a semiconductor, can be modeled in, terms) -> terms (3926ms) What are semiconductors? Such materials -11.288167303458494 What are semiconductors? -> what [ be semiconductor ] ? -> what be know be semiconductor ? -> $x: ($x, be know be, semiconductor) -> (Such materials, are known as, intrinsic semiconductors) -> Such materials (6548ms) What are semiconductors? a developing market -11.34594204814276 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductor, is also, a developing market) -> a developing market (6376ms) What are semiconductors? a wonderful job -11.350836230456675 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, do, $x) -> (The semiconductor vendors, do, a wonderful job) -> a wonderful job (6465ms) What are semiconductors? LIKE -11.387253489591108 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (SEMICONDUCTORS, IS, LIKE) -> LIKE (6465ms) What are semiconductors? Atmel -11.480913280043143 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, go, $x) -> (Semiconductor, was going to take, Atmel) -> Atmel (6465ms) What are semiconductors? America?s top export -11.481959680615752 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, have been, America?s top export) -> America?s top export (6465ms) What are semiconductors? SEMI?s mainstay -11.504288438633596 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductors, have been, SEMI?s mainstay) -> SEMI?s mainstay (6465ms) What are semiconductors? a unique way -11.564812080041383 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, do, $x) -> (Dialog Semiconductor, has done this in, a unique way) -> a unique way (6548ms) What are semiconductors? Brazil -11.581602390032678 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, do, $x) -> (semiconductor manufacturing, can be done in, Brazil) -> Brazil (6549ms) What are semiconductors? NXP. -11.614752994872184 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, go, $x) -> (Royal Phillip?s semiconductor business, went to work for, NXP.) -> NXP. (6548ms) What are semiconductors? a revolution -11.647514837033363 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, go, $x) -> (the semiconductor industry, are going to drive, a revolution) -> a revolution (6549ms) What are semiconductors? part-time orchestra leaders and microchips -11.65343718734715 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, were, part-time orchestra leaders and microchips) -> part-time orchestra leaders and microchips (6588ms) What are semiconductors? a period -11.659386683575768 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, go, $x) -> (their semiconductor components, are going through, a period) -> a period (6588ms) What are semiconductors? one shot -11.663560600326221 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, do, $x) -> (The semiconductor layer, is all done in, one shot) -> one shot (6588ms) What are semiconductors? exactly what the name implies -11.702470628727305 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are, exactly what the name implies) -> exactly what the name implies (6588ms) What are semiconductors? Leo Esaki -11.733915794188576 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, has been discovered by, Leo Esaki) -> Leo Esaki (6588ms) What are semiconductors? economic growth -11.747400234948536 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, have made to, economic growth) -> economic growth (6588ms) What are semiconductors? power generation -11.756242204364092 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductors, have decreased the amount of, power generation) -> power generation (6605ms) What are semiconductors? an amazing -11.76755947289389 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, has been proceeding at, an amazing) -> an amazing (6604ms) What are semiconductors? cell phones -11.779231367006373 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, go, $x) -> (many semiconductor devices, go into, cell phones) -> cell phones (6604ms) What are semiconductors? personal computers -11.78889295469577 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, go, $x) -> (each semiconductor, goes into, personal computers) -> personal computers (6604ms) What are semiconductors? programmable logic devices -11.81180464956937 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, has been in, programmable logic devices) -> programmable logic devices (6604ms) What are semiconductors? low dimensions -11.822717083837302 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, have been constrained to, low dimensions) -> low dimensions (6604ms) What are semiconductors? video and installation work -11.854425660930618 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductor, has been making, video and installation work) -> video and installation work (6620ms) What are semiconductors? Austin -11.857732791487017 What are semiconductors? -> what [ be semiconductor ] ? -> what be know be semiconductor ? -> $x: ($x, be know be, semiconductor) -> (Austin, is known more for, software and semi-conductors) -> Austin (6620ms) What are semiconductors? three Schottky -11.874796727619136 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductor, has developed, three Schottky) -> three Schottky (6621ms) What are semiconductors? more than two years -11.918167427042992 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductors, has been established for, more than two years) -> more than two years (6620ms) What are semiconductors? Silicon -11.927757955361294 What are semiconductors? -> what [ be semiconductor ] ? -> what be know be semiconductor ? -> $x: ($x, be know be, semiconductor) -> (Silicon, is known as, a semiconductor) -> Silicon (6621ms) What are semiconductors? a proven track record -11.945916037951267 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductor, has, a proven track record) -> a proven track record (6637ms) What are semiconductors? now -11.946754356910684 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are used, now) -> now (6637ms) What are semiconductors? a member -11.953821664254647 What are semiconductors? -> what [ be semiconductor ] ? -> what be know be semiconductor ? -> $x: ($x, be know be, semiconductor) -> (a member, was previously known as, National Semiconductor) -> a member (6638ms) What are semiconductors? the Photovoltaic cells -11.975194650972917 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, are used in, the Photovoltaic cells) -> the Photovoltaic cells (6638ms) What are semiconductors? EDA -12.006204139788917 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, do, $x) -> (semiconductor companies, does, EDA) -> EDA (6637ms) What are semiconductors? human history -12.014035754638167 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductor, have captured this moment in, human history) -> human history (6637ms) What are semiconductors? the nation -12.02486652475801 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are, the nation) -> the nation (6653ms) What are semiconductors? a body good click -12.035029409711766 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, do, $x) -> (Semiconductors, do, a body good click) -> a body good click (6653ms) What are semiconductors? a downturn -12.04279145107574 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, go, $x) -> (the semiconductor industry, went through, a downturn) -> a downturn (6653ms) What are semiconductors? higher electrical resistance -12.053017425105043 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, have, higher electrical resistance) -> higher electrical resistance (6653ms) What are semiconductors? a toothpaste -12.057266275265917 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, do, $x) -> (titanium semiconductor, does n?t need, a toothpaste) -> a toothpaste (6653ms) What are semiconductors? Arizona -12.059869080717963 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, go, $x) -> (The semiconductor industry, is virtually gone here in, Arizona) -> Arizona (6653ms) What are semiconductors? a complete documentation package -12.060042127484241 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductor, has, a complete documentation package) -> a complete documentation package (6653ms) What are semiconductors? a higher and higher percentage -12.07546570620277 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, have, a higher and higher percentage) -> a higher and higher percentage (6671ms) What are semiconductors? Berkeley Design Automation -12.080763443712502 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, has selected, Berkeley Design Automation) -> Berkeley Design Automation (6671ms) What are semiconductors? ?defects -12.085066698345038 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductors, have, ?defects) -> ?defects (6671ms) What are semiconductors? a manufacturing and sales presence -12.107171621883928 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductor, has had, a manufacturing and sales presence) -> a manufacturing and sales presence (6671ms) What are semiconductors? a very special property -12.109949397463897 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, have, a very special property) -> a very special property (6671ms) What are semiconductors? four valence electrons -12.114975831843484 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, usually have, four valence electrons) -> four valence electrons (6671ms) What are semiconductors? the Samsung Art + Prize -12.12055979238394 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductor, have won, the Samsung Art + Prize) -> the Samsung Art + Prize (6671ms) What are semiconductors? Bilayer graphene -12.122115164982807 What are semiconductors? -> what [ be semiconductor ] ? -> what be know be semiconductor ? -> $x: ($x, be know be, semiconductor) -> (Bilayer graphene, is now known to be, a semiconductor) -> Bilayer graphene (6671ms) What are semiconductors? more electrons or holes -12.122328165186133 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductor, can have, more electrons or holes) -> more electrons or holes (6688ms) What are semiconductors? recent years -12.124093701146373 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, have been made in, recent years) -> recent years (6688ms) What are semiconductors? Japan -12.133254615198771 What are semiconductors? -> what [ be semiconductor ] ? -> what be know be semiconductor ? -> $x: ($x, be know be, semiconductor) -> (Japan, is also well known for, its electronic semiconductors) -> Japan (6688ms) What are semiconductors? short product life cycles -12.145192111451735 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductors, have, short product life cycles) -> short product life cycles (6688ms) What are semiconductors? such soul searching -12.151655315089936 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, do, $x) -> (the semiconductor company Intel, had to do, such soul searching) -> such soul searching (6688ms) What are semiconductors? a new series -12.162936698532269 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductor, has introduced, a new series) -> a new series (6688ms) What are semiconductors? a negative temperature coefficient -12.174495847980666 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, have, a negative temperature coefficient) -> a negative temperature coefficient (6688ms) What are semiconductors? a new and ancient aesthetic -12.178460065470478 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductor, have tapped into, a new and ancient aesthetic) -> a new and ancient aesthetic (6688ms) What are semiconductors? every iteration -12.18290799184031 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, has been getting dearer with, every iteration) -> every iteration (6705ms) What are semiconductors? a tailspin -12.19084472913449 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, go, $x) -> (cell phone semi-conductors, went into, a tailspin) -> a tailspin (6705ms) What are semiconductors? two people -12.197517661465174 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, do, $x) -> (Micrel Semiconductor, was essentially done by, two people) -> two people (6705ms) What are semiconductors? moderate bandgap energies -12.198719464367853 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductors, have, moderate bandgap energies) -> moderate bandgap energies (6705ms) What are semiconductors? a break -12.207579913437248 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, do, $x) -> (Semiconductor Insights, does, a break) -> a break (6705ms) What are semiconductors? Microsemi Corp. -12.217821561359642 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, go, $x) -> (Zarlink Semiconductor Inc., went to, Microsemi Corp.) -> Microsemi Corp. (6705ms) What are semiconductors? a new family -12.22224254606742 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductor, has introduced the first in, a new family) -> a new family (6705ms) What are semiconductors? public earlier this year -12.230692263689972 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, go, $x) -> (Freescale Semiconductor, went, public earlier this year) -> public earlier this year (6705ms) What are semiconductors? a strong actvity -12.236065799512012 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, has since long been, a strong actvity) -> a strong actvity (6831ms) What are semiconductors? Intersil -12.248807877734835 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, go, $x) -> (' semiconductors, went with, Intersil) -> Intersil (6831ms) What are semiconductors? a 5 % additional positive effect -12.249781240995475 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, may have, a 5 % additional positive effect) -> a 5 % additional positive effect (6831ms) What are semiconductors? Northumbria -12.256565431915318 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductor, have reanimated, Northumbria) -> Northumbria (6831ms) What are semiconductors? one global industry -12.258494662833034 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductors, have become, one global industry) -> one global industry (6831ms) What are semiconductors? under 6 % -12.265566233515303 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, has been growing at just, under 6 %) -> under 6 % (6831ms) What are semiconductors? M/A-COM?s Foundry Supplier -12.272641803357462 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductors?, Has received, M/A-COM?s Foundry Supplier) -> M/A-COM?s Foundry Supplier (6831ms) What are semiconductors? large Hall coefficients -12.291209981291967 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductors, have, large Hall coefficients) -> large Hall coefficients (6831ms) What are semiconductors? America 's largest manufacturing industry -12.31858816125685 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are, America 's largest manufacturing industry) -> America 's largest manufacturing industry (6849ms) What are semiconductors? body wearables -12.325735600786885 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, go, $x) -> (Semiconductors, are the way to go for, body wearables) -> body wearables (6849ms) What are semiconductors? EPC. -12.332767269166455 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductor, has won the award from, EPC.) -> EPC. (6849ms) What are semiconductors? any marketing -12.334166692794248 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, do, $x) -> (the semiconductor industry, does, any marketing) -> any marketing (6849ms) What are semiconductors? a narrow band gap -12.341609238582011 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductors, have, a narrow band gap) -> a narrow band gap (6849ms) What are semiconductors? critical components of flat panel displays -12.350978556143216 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, are, critical components of flat panel displays) -> critical components of flat panel displays (6849ms) What are semiconductors? very important -12.355410411425362 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are, very important) -> very important (6849ms) What are semiconductors? CMOS -12.356350750517459 What are semiconductors? -> what [ be semiconductor ] ? -> what be know be semiconductor ? -> $x: ($x, be know be, semiconductor) -> (CMOS, is known as, complementary metal oxide semiconductor) -> CMOS (6849ms) What are semiconductors? a cycle change -12.357280419527793 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, go, $x) -> (the semiconductor industry, is going through, a cycle change) -> a cycle change (6903ms) What are semiconductors? volume -12.383667667091643 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, is, volume) -> volume (6903ms) What are semiconductors? the newest market -12.402895327938827 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductor, is, the newest market) -> the newest market (6903ms) What are semiconductors? relative strength in the tech space -12.40497450848295 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are showing, relative strength in the tech space) -> relative strength in the tech space (6902ms) What are semiconductors? 2? or 3? wafers -12.41483174114148 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, do, $x) -> (compound semiconductor work, is done on, 2? or 3? wafers) -> 2? or 3? wafers (6903ms) What are semiconductors? the lowest tier -12.440324147381157 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, are, the lowest tier) -> the lowest tier (6903ms) What are semiconductors? application notes -12.452086986992217 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductor, has, application notes) -> application notes (6903ms) What are semiconductors? 6 hrs -12.4556795666514 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, had very little activity at, 6 hrs) -> 6 hrs (6987ms) What are semiconductors? two components -12.456185997214426 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, has, two components) -> two components (6987ms) What are semiconductors? fantastic results -12.462697329209966 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, do, $x) -> (the semiconductor industry, has done with, fantastic results) -> fantastic results (6987ms) What are semiconductors? telecoms spending -12.464828553068036 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, do, $x) -> (semiconductors, did, telecoms spending) -> telecoms spending (6987ms) What are semiconductors? crystals -12.467601913816758 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are, crystals) -> crystals (6987ms) What are semiconductors? certain bands -12.48126550714447 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, can have energies only within, certain bands) -> certain bands (6987ms) What are semiconductors? valance electrons -12.482969311819406 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductors, have most number of, valance electrons) -> valance electrons (6987ms) What are semiconductors? 20,000 employees -12.486199093125006 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductor, has about, 20,000 employees) -> 20,000 employees (6986ms) What are semiconductors? electronics functions -12.502029424362004 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductor, has the potential for, electronics functions) -> electronics functions (7192ms) What are semiconductors? offer roadmaps -12.519777984022666 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, do, $x) -> (Semiconductor and component suppliers, do, offer roadmaps) -> offer roadmaps (7192ms) What are semiconductors? minority carriers -12.520170183113374 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, has relatively high levels of, minority carriers) -> minority carriers (7192ms) What are semiconductors? Intel -12.525675439454695 What are semiconductors? -> what [ be semiconductor ] ? -> what be know be semiconductor ? -> $x: ($x, be know be, semiconductor) -> (Intel, is widely known as, a semiconductor leader) -> Intel (7191ms) What are semiconductors? the 1980?s -12.530801191995788 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, do, $x) -> (the Japanese semiconductor makers, did in, the 1980?s) -> the 1980?s (7192ms) What are semiconductors? the charge distribution -12.531953061582236 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, is, the charge distribution) -> the charge distribution (7192ms) What are semiconductors? conduct electricity -12.532622748010935 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are materials that, conduct electricity) -> conduct electricity (7192ms) What are semiconductors? yaaron amber -12.548464516864529 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, do, $x) -> (general semiconductor ltd industry index gaane, do, yaaron amber) -> yaaron amber (7209ms) What are semiconductors? 1.5 -12.556378345714101 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, go, $x) -> (30 semiconductor stocks, went up, 1.5) -> 1.5 (7209ms) What are semiconductors? 37 -12.561748137652527 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, go, $x) -> (NAND flash semiconductors, went up by, 37) -> 37 (7209ms) What are semiconductors? the 1980s -12.567053308761402 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, do, $x) -> (the semiconductor industry, did in, the 1980s) -> the 1980s (7209ms) What are semiconductors? Aegis -12.567962825015462 What are semiconductors? -> what [ be semiconductor ] ? -> what be know be semiconductor ? -> $x: ($x, be know be, semiconductor) -> (Aegis, was formerly known as, Aegis Semiconductor) -> Aegis (7209ms) What are semiconductors? 6-7 microns -12.569705920666987 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, go, $x) -> (semiconductor lithography line width, went from, 6-7 microns) -> 6-7 microns (7209ms) What are semiconductors? the heart and brains -12.574437736795192 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are, the heart and brains) -> the heart and brains (7209ms) What are semiconductors? a positive permittivity -12.5770290927364 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, have, a positive permittivity) -> a positive permittivity (7209ms) What are semiconductors? the continual layoffs -12.580976145160797 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductor, was, the continual layoffs) -> the continual layoffs (7229ms) What are semiconductors? selenium -12.58172800334973 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, are, selenium) -> selenium (7229ms) What are semiconductors? heat -12.5879173608597 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, are, heat) -> heat (7229ms) What are semiconductors? the common thread -12.592470726481936 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, are, the common thread) -> the common thread (7229ms) What are semiconductors? two techniques -12.59608289160489 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (Semiconductors, are commonly etched with, two techniques) -> two techniques (7229ms) What are semiconductors? serious growth -12.598799206027316 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, has shown, serious growth) -> serious growth (7229ms) What are semiconductors? the largest sector -12.599544323095298 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductor, is, the largest sector) -> the largest sector (7229ms) What are semiconductors? heart -12.605238921823512 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (?Semiconductors, are at, heart) -> heart (7229ms) What are semiconductors? mixed results -12.605872802640679 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, have met with, mixed results) -> mixed results (7305ms) What are semiconductors? the NSI45 series -12.609038015819023 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (Semiconductor, has introduced, the NSI45 series) -> the NSI45 series (7305ms) What are semiconductors? positive signs -12.619200324891269 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, has already shown, positive signs) -> positive signs (7305ms) What are semiconductors? last year -12.619200324891269 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, do, $x) -> (Semiconductors, did n?t stop until, last year) -> last year (7305ms) What are semiconductors? the world?s biggest supplier -12.620351441250202 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, be, $x) -> (semiconductors, is, the world?s biggest supplier) -> the world?s biggest supplier (7305ms) What are semiconductors? a strong month -12.642851981447269 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, had, a strong month) -> a strong month (7305ms) What are semiconductors? Tuesday -12.64982223874646 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, had a tough time in, Tuesday) -> Tuesday (7305ms) What are semiconductors? 1.3 percent -12.652820496415963 What are semiconductors? -> what be [ semiconductor ] ? -> what be the mening of semiconductor ? -> $x: (semiconductor, mening, $x) -> $x: (semiconductor, have, $x) -> (semiconductors, have declined by, 1.3 percent) -> 1.3 percent (7305ms) What is sodium chloride? Calculi Dissolution Agent -6.315527729893548 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Calculi Dissolution Agent, Drugs, Sodium chloride/Sodium gluconate/Sodium acetate/Potassium chloride/Magnesium chloride) -> Calculi Dissolution Agent (6354ms) What is sodium chloride? Cardinal Health -6.402943453374191 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Cardinal Health, Drugs manufactured, Sodium Chloride 9 injection) -> Cardinal Health (6356ms) What is sodium chloride? Baxter International -6.402943453374191 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Baxter International, Drugs manufactured, Sodium Chloride 450 irrigant) -> Baxter International (6422ms) What is sodium chloride? Major Pharmaceuticals -6.435430312264107 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Major Pharmaceuticals, Drugs manufactured, Sodium Chloride Hypertonicity 50 solution) -> Major Pharmaceuticals (6421ms) What is sodium chloride? McKesson Corporation -6.487219265121729 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (McKesson Corporation, Drugs manufactured, Sodium Chloride 9 injection) -> McKesson Corporation (6436ms) What is sodium chloride? West-ward Pharmaceutical -6.487219265121729 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (West-ward Pharmaceutical, Drugs manufactured, Sodium Chloride 9 injection) -> West-ward Pharmaceutical (6436ms) What is sodium chloride? Pregnancy Category C (FDA) -6.519706124011645 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Pregnancy Category C (FDA), Drugs in this category, Sodium chloride) -> Pregnancy Category C (FDA) (6436ms) What is sodium chloride? B. Braun Medical -6.547195004610804 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (B. Braun Medical, Drugs manufactured, Sodium Chloride 5 injectable solution) -> B. Braun Medical (6530ms) What is sodium chloride? General Injectables & Vaccines -6.547195004610804 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (General Injectables & Vaccines, Drugs manufactured, Sodium Chloride 9 injectable solution) -> General Injectables & Vaccines (6436ms) What is sodium chloride? Taro Pharmaceutical Industries Ltd. -6.5707569022672265 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Taro Pharmaceutical Industries Ltd., Drugs manufactured, Sodium Chloride 9 injectable solution) -> Taro Pharmaceutical Industries Ltd. (6530ms) What is sodium chloride? Subcutaneous injection -6.651445541568021 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Subcutaneous injection, Drug formulations, Sodium chloride 9 injection) -> Subcutaneous injection (6612ms) What is sodium chloride? Intramuscular injection -6.651445541568021 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Intramuscular injection, Drug formulations, Sodium chloride 9 injection) -> Intramuscular injection (6612ms) What is sodium chloride? Sodium chloride -6.651445541568021 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Sodium chloride, Active moiety of drug, Follitropin/Sodium chloride) -> Sodium chloride (6612ms) What is sodium chloride? Sublingual administration -6.6904297722359205 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Sublingual administration, Drug formulations, Sodium chloride 30 pellet) -> Sublingual administration (6612ms) What is sodium chloride? Magnesium chloride -6.773967409381418 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Magnesium chloride, Active moiety of drug, Sodium chloride/Sodium gluconate/Sodium acetate/Potassium chloride/Magnesium chloride) -> Magnesium chloride (6660ms) What is sodium chloride? Potassium chloride -6.773967409381418 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Potassium chloride, Active moiety of drug, Sodium chloride/Sodium gluconate/Sodium acetate/Potassium chloride/Magnesium chloride) -> Potassium chloride (6646ms) What is sodium chloride? Sodium gluconate -6.773967409381418 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Sodium gluconate, Active moiety of drug, Sodium chloride/Sodium gluconate/Sodium acetate/Potassium chloride/Magnesium chloride) -> Sodium gluconate (6647ms) What is sodium chloride? Sodium acetate -6.773967409381418 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Sodium acetate, Active moiety of drug, Sodium chloride/Sodium acetate anhydrous/Sodium gluconate/Potassium chloride/Magnesium chloride) -> Sodium acetate (6661ms) What is sodium chloride? Osmotic Laxative -6.792785760053182 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Osmotic Laxative, Drugs, Polyethylene glycol 3350/Chloride ion/Sodium cation/Potassium cation/Sulfate ion) -> Osmotic Laxative (6661ms) What is sodium chloride? Follicle-stimulating hormone -6.877061571800718 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Follicle-stimulating hormone, Active moiety of drug, Follitropin/Sodium chloride) -> Follicle-stimulating hormone (6741ms) What is sodium chloride? D-Glucose -6.877061571800718 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (D-Glucose, Active moiety of drug, Dextrose/Sodium chloride/Calcium chloride/Potassium chloride) -> D-Glucose (6733ms) What is sodium chloride? Pregnancy Category X (FDA) -6.877061571800718 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Pregnancy Category X (FDA), Drugs in this category, Follitropin/Sodium chloride) -> Pregnancy Category X (FDA) (6733ms) What is sodium chloride? FDA OTC monograph part 349 -6.983734674350196 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (FDA OTC monograph part 349, Drugs regulated, Sodium Chloride Hypertonicity 50 solution) -> FDA OTC monograph part 349 (6781ms) What is sodium chloride? Calcium chloride -7.08027207891491 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Calcium chloride, Active moiety of drug, Dextrose/Sodium chloride/Calcium chloride/Potassium chloride) -> Calcium chloride (6780ms) What is sodium chloride? Oral -7.085228832337814 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Oral, Drug formulations, Sodium chloride 30 pellet) -> Oral (6849ms) What is sodium chloride? Sodium -7.092305992382086 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Sodium, Active moiety of drug, Sodium chloride) -> Sodium (6848ms) What is sodium chloride? Ophthalmic -7.13995338542063 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Ophthalmic, Drug formulations, Sodium chloride 20 solution) -> Ophthalmic (7144ms) What is sodium chloride? Intravenous -7.13995338542063 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Intravenous, Drug formulations, Sodium chloride 9 injection) -> Intravenous (7213ms) What is sodium chloride? Irrigation -7.13995338542063 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Irrigation, Drug formulations, Sodium chloride 9 irrigant) -> Irrigation (7144ms) What is sodium chloride? Nasal -7.13995338542063 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Nasal, Drug formulations, Sodium chloride 9 solution) -> Nasal (7144ms) What is sodium chloride? Hospira -7.13995338542063 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Hospira, Drugs manufactured, Sodium Chloride 900 irrigant) -> Hospira (7213ms) What is sodium chloride? Drug -7.156699921895628 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Drug, Drug formulations in this category, Sodium chloride 9 irrigant) -> Drug (7226ms) What is sodium chloride? Medefil -7.178937616088529 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Medefil, Drugs manufactured, Sodium Chloride 9 injectable solution) -> Medefil (7239ms) What is sodium chloride? Physiosol -7.238913355577604 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Physiosol, Canonical drug, Sodium chloride/Sodium acetate anhydrous/Sodium gluconate/Potassium chloride/Magnesium chloride) -> Physiosol (7251ms) What is sodium chloride? Homeopathic -7.238913355577604 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Homeopathic, Drug formulations in this category, Sodium chloride 30 pellet) -> Homeopathic (7252ms) What is sodium chloride? Salt -7.271036230087325 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, chemical of this type, sodium chloride) -> (Salt, Chemicals of this type, Sodium chloride) -> Salt (4960ms) What is sodium chloride? Potassium Salt -7.448929035357868 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: ($x, drug, sodium chloride) -> (Potassium Salt, Drugs, Sodium chloride/Sodium gluconate/Sodium acetate/Potassium chloride/Magnesium chloride) -> Potassium Salt (7264ms) What is sodium chloride? ?salt? -8.421964843951121 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: (sodium chloride, be a way of, $x) -> (Sodium chloride, is simply a fancy way of saying, ?salt?) -> ?salt? (4960ms) What is sodium chloride? industry -10.157301449439892 What is sodium chloride? -> $x: (sodium chloride, instance of, $x) -> $x: (sodium chloride, be a by, $x) -> (Purified sodium chloride, is both a by-product of, industry) -> industry (5016ms) What is sodium chloride? Rock salt -10.328694894999488 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Rock salt, is, sodium chloride) -> Rock salt (11581ms) What is sodium chloride? NaCl -10.877584498135764 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (NaCl, is, Sodium Chloride) -> NaCl (11580ms) What is sodium chloride? Table salt -10.950430472559185 What is sodium chloride? -> what [ be sodium chloride ] ? -> what be know be sodium chloride ? -> $x: ($x, be know be, sodium chloride) -> $x: ($x, know, sodium chloride) -> (Table salt, Also known as, Sodium chloride) -> Table salt (8406ms) What is sodium chloride? Sea salt -10.95606481616344 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Sea salt, is, sodium chloride) -> Sea salt (11581ms) What is sodium chloride? a metal ion -10.997739756659033 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is, a metal ion) -> a metal ion (10814ms) What is sodium chloride? 36 grams -11.045702895964055 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is, 36 grams) -> 36 grams (10814ms) What is sodium chloride? salt-water pools -11.128697419169995 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (salt-water pools, is, sodium chloride) -> salt-water pools (11581ms) What is sodium chloride? the Dead Sea -11.155225099017539 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (the Dead Sea, is, sodium chloride) -> the Dead Sea (11580ms) What is sodium chloride? MMS -11.159746867839642 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (MMS, is a small amount of, table salt or sodium chloride) -> MMS (8226ms) What is sodium chloride? Road salts -11.25443109324124 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Road salts, are, sodium chloride) -> Road salts (11580ms) What is sodium chloride? Himalayan salt -11.268388980043014 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Himalayan salt, is, sodium chloride) -> Himalayan salt (11581ms) What is sodium chloride? solute carrier family 12 (sodium/potassium/chloride transporters), member 1 -11.342905786021625 What is sodium chloride? -> what [ be sodium chloride ] ? -> what be know be sodium chloride ? -> $x: ($x, be know be, sodium chloride) -> $x: ($x, know, sodium chloride) -> (solute carrier family 12 (sodium/potassium/chloride transporters), member 1, Also known as, sodium potassium chloride cotransporter 2) -> solute carrier family 12 (sodium/potassium/chloride transporters), member 1 (8406ms) What is sodium chloride? potassium channel, subfamily T, member 2 -11.342905786021625 What is sodium chloride? -> what [ be sodium chloride ] ? -> what be know be sodium chloride ? -> $x: ($x, be know be, sodium chloride) -> $x: ($x, know, sodium chloride) -> (potassium channel, subfamily T, member 2, Also known as, sodium and chloride activated ATP sensitive potassium channel) -> potassium channel, subfamily T, member 2 (8406ms) What is sodium chloride? Io -11.343792994775967 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Io, was, sodium chloride) -> Io (11601ms) What is sodium chloride? sea salt -11.40757237175211 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium Chloride, is just, sea salt) -> sea salt (10814ms) What is sodium chloride? table salt -11.450900224221346 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium chloride, is, table salt) -> table salt (10814ms) What is sodium chloride? a cube -11.469314232054167 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is, a cube) -> a cube (10814ms) What is sodium chloride? Wakura Onsen -11.495551428108595 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Wakura Onsen, is, sodium chloride) -> Wakura Onsen (11600ms) What is sodium chloride? Slc12a3 -11.56860396357262 What is sodium chloride? -> what [ be sodium chloride ] ? -> what be know be sodium chloride ? -> $x: ($x, be know be, sodium chloride) -> $x: ($x, know, sodium chloride) -> (Slc12a3, Also known as, Solute carrier family 12 (sodium/chloride transporters), member 3) -> Slc12a3 (8429ms) What is sodium chloride? solute carrier family 6 (neurotransmitter transporter, creatine), member 10 (pseudogene) -11.56860396357262 What is sodium chloride? -> what [ be sodium chloride ] ? -> what be know be sodium chloride ? -> $x: ($x, be know be, sodium chloride) -> $x: ($x, know, sodium chloride) -> (solute carrier family 6 (neurotransmitter transporter, creatine), member 10 (pseudogene), Also known as, similar to sodium- and chloride-dependent creatine transporter) -> solute carrier family 6 (neurotransmitter transporter, creatine), member 10 (pseudogene) (8449ms) What is sodium chloride? solute carrier family 12 (potassium/chloride transporters), member 8 -11.56860396357262 What is sodium chloride? -> what [ be sodium chloride ] ? -> what be know be sodium chloride ? -> $x: ($x, be know be, sodium chloride) -> $x: ($x, know, sodium chloride) -> (solute carrier family 12 (potassium/chloride transporters), member 8, Also known as, solute carrier family 12 (sodium/potassium/chloride transporters), member 8) -> solute carrier family 12 (potassium/chloride transporters), member 8 (8428ms) What is sodium chloride? Slc12a2 -11.56860396357262 What is sodium chloride? -> what [ be sodium chloride ] ? -> what be know be sodium chloride ? -> $x: ($x, be know be, sodium chloride) -> $x: ($x, know, sodium chloride) -> (Slc12a2, Also known as, Solute carrier family 12 (sodium/potassium/chloride transporters), member 2) -> Slc12a2 (8429ms) What is sodium chloride? solute carrier family 6, member 15 -11.56860396357262 What is sodium chloride? -> what [ be sodium chloride ] ? -> what be know be sodium chloride ? -> $x: ($x, be know be, sodium chloride) -> $x: ($x, know, sodium chloride) -> (solute carrier family 6, member 15, Also known as, sodium/chloride dependent neurotransmitter transporter Homo sapiens orphan neurotransmitter transporter NTT7) -> solute carrier family 6, member 15 (8429ms) What is sodium chloride? solute carrier family 6 (neurotransmitter transporter, glycine), member 9 -11.56860396357262 What is sodium chloride? -> what [ be sodium chloride ] ? -> what be know be sodium chloride ? -> $x: ($x, be know be, sodium chloride) -> $x: ($x, know, sodium chloride) -> (solute carrier family 6 (neurotransmitter transporter, glycine), member 9, Also known as, sodium- and chloride-dependent glycine transporter 1) -> solute carrier family 6 (neurotransmitter transporter, glycine), member 9 (8406ms) What is sodium chloride? Slc12a1 -11.56860396357262 What is sodium chloride? -> what [ be sodium chloride ] ? -> what be know be sodium chloride ? -> $x: ($x, be know be, sodium chloride) -> $x: ($x, know, sodium chloride) -> (Slc12a1, Also known as, Solute carrier family 12 (sodium/potassium/chloride transporters), member 1) -> Slc12a1 (8429ms) What is sodium chloride? solute carrier family 12 (sodium/potassium/chloride transporters), member 2 -11.56860396357262 What is sodium chloride? -> what [ be sodium chloride ] ? -> what be know be sodium chloride ? -> $x: ($x, be know be, sodium chloride) -> $x: ($x, know, sodium chloride) -> (solute carrier family 12 (sodium/potassium/chloride transporters), member 2, Also known as, bumetanide-sensitive sodium-(potassium)-chloride cotransporter 1) -> solute carrier family 12 (sodium/potassium/chloride transporters), member 2 (8449ms) What is sodium chloride? normal ocean water -11.579716210471066 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (normal ocean water, is, sodium chloride) -> normal ocean water (11601ms) What is sodium chloride? rock salt -11.586904017907944 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (rock salt, is simply the mineral form of, sodium chloride) -> rock salt (8226ms) What is sodium chloride? sodium chloride -11.627874981823675 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (sodium chloride, is made up of, sodium and chloride ions) -> sodium chloride (8226ms) What is sodium chloride? water soluble -11.638342317288952 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is highly, water soluble) -> water soluble (10814ms) What is sodium chloride? Dead Sea mineral salts -11.647697718917502 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Dead Sea mineral salts, are, sodium chloride) -> Dead Sea mineral salts (11601ms) What is sodium chloride? Halite -11.652608039052286 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Halite, is, sodium chloride) -> Halite (11600ms) What is sodium chloride? Avoid rock salt -11.677076229390217 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Avoid rock salt, is, sodium chloride) -> Avoid rock salt (11601ms) What is sodium chloride? an attractant -11.682472365406724 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is, an attractant) -> an attractant (11600ms) What is sodium chloride? S/M -11.687645121695958 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (S/M, is the concentration of, sodium chloride) -> S/M (8225ms) What is sodium chloride? smart and -11.69033658677827 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (smart and, are restricting the use of, sodium chloride) -> smart and (8250ms) What is sodium chloride? a toxin -11.715542813524547 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium chloride, is, a toxin) -> a toxin (11601ms) What is sodium chloride? bleached table salt -11.746265942121084 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is, bleached table salt) -> bleached table salt (11620ms) What is sodium chloride? a chemical -11.752157781346037 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium Chloride, is, a chemical) -> a chemical (11620ms) What is sodium chloride? ROHYPNOL -11.760902536688116 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (ROHYPNOL, is, sodium chloride) -> ROHYPNOL (11620ms) What is sodium chloride? 10-15 -11.77430642969955 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is, 10-15) -> 10-15 (11620ms) What is sodium chloride? Sea water -11.780798395370404 What is sodium chloride? -> what be [ sodium chloride ] ? -> what exactly be sodium chloride ? -> $x: ($x, exactly be, sodium chloride) -> $x: ($x, be relate to, sodium chloride) -> (Sea water, is related to, 73 per-cent sodium chloride) -> Sea water (8479ms) What is sodium chloride? typical salt -11.814969042467247 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (typical salt, is, sodium chloride) -> typical salt (11620ms) What is sodium chloride? Sodium chloride; the production and properties of salt and brine -11.81920453395079 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride; the production and properties of salt and brine, Edition Of, Sodium chloride) -> Sodium chloride; the production and properties of salt and brine (13927ms) What is sodium chloride? common table salt -11.819226995572572 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium chloride, is, common table salt) -> common table salt (11620ms) What is sodium chloride? Common human electrolytes -11.831026401385614 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Common human electrolytes, are, sodium chloride) -> Common human electrolytes (11620ms) What is sodium chloride? 40 % sodium -11.86362840304232 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is, 40 % sodium) -> 40 % sodium (11620ms) What is sodium chloride? unprocessed salt crystals -11.871537685119574 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (unprocessed salt crystals, are made of, sodium chloride) -> unprocessed salt crystals (8251ms) What is sodium chloride? a kid -11.87186365751139 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (a kid, is, sodium chloride) -> a kid (11641ms) What is sodium chloride? Halite Halite -11.880506610745925 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (Halite Halite, is the mineral form of, sodium chloride) -> Halite Halite (8251ms) What is sodium chloride? easier ? sea salt -11.884813375678169 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (easier ? sea salt, is, sodium chloride) -> easier ? sea salt (11641ms) What is sodium chloride? 3.8 grams -11.884849140180114 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is, 3.8 grams) -> 3.8 grams (11641ms) What is sodium chloride? Salt Salt -11.896897783766434 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (Salt Salt, is made of, Sodium and Chloride) -> Salt Salt (8251ms) What is sodium chloride? a very stable compound -11.90780253832045 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is, a very stable compound) -> a very stable compound (11641ms) What is sodium chloride? food and table salt -11.912841167390798 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (food and table salt, is made up of, sodium and chloride ions) -> food and table salt (8450ms) What is sodium chloride? dietary salt -11.92013183575271 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (dietary salt, is, sodium chloride) -> dietary salt (11641ms) What is sodium chloride? Lye -11.923158569645691 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Lye, is, sodium chloride) -> Lye (11641ms) What is sodium chloride? Natrum mur. -11.929906479439333 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (Natrum mur., is basically of, potensized sodium chloride) -> Natrum mur. (8450ms) What is sodium chloride? Typical table salt -11.94060633253886 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (Typical table salt, is composed of, 97.5 % sodium chloride) -> Typical table salt (8450ms) What is sodium chloride? Seawater -11.951128445111909 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (Seawater, is a source of, sodium chloride) -> Seawater (8479ms) What is sodium chloride? Commercial salt -11.95450755415219 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Commercial salt, is, sodium chloride) -> Commercial salt (11641ms) What is sodium chloride? Morton Salt -11.968699014180052 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Morton Salt, is, sodium chloride) -> Morton Salt (11641ms) What is sodium chloride? One common form -11.96906040044877 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (One common form, is, sodium chloride) -> One common form (11661ms) What is sodium chloride? 58.44 grams -11.97592149894355 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is, 58.44 grams) -> 58.44 grams (11661ms) What is sodium chloride? Sodium chloride water in granitic rocks of the western Sierra Nevada foothills -12.021651208092358 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the expansion of sodium chloride ? -> $x: (sodium chloride, expansion, $x) -> $x: (sodium chloride, edition, $x) -> (Sodium chloride water in granitic rocks of the western Sierra Nevada foothills, Edition Of, Sodium chloride water in granitic rocks of the western Sierra Nevada foothills) -> Sodium chloride water in granitic rocks of the western Sierra Nevada foothills (14042ms) What is sodium chloride? renal epithelium -12.021879157563445 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (renal epithelium, is, sodium chloride) -> renal epithelium (11661ms) What is sodium chloride? 50 mg. -12.03686658302638 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is, 50 mg.) -> 50 mg. (11662ms) What is sodium chloride? a nice and fancy way -12.03934944116315 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium Chloride, is, a nice and fancy way) -> a nice and fancy way (11661ms) What is sodium chloride? Sodium chloride 37.5 spray -12.041592733879588 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 37.5 spray, Formulation of, Sodium chloride) -> Sodium chloride 37.5 spray (14042ms) What is sodium chloride? Sodium chloride 11.25 spray -12.041592733879588 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 11.25 spray, Formulation of, Sodium chloride) -> Sodium chloride 11.25 spray (13927ms) What is sodium chloride? Sodium chloride 11.25 liquid -12.041592733879588 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 11.25 liquid, Formulation of, Sodium chloride) -> Sodium chloride 11.25 liquid (14042ms) What is sodium chloride? Sodium chloride 0.09 injection -12.041592733879588 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 0.09 injection, Formulation of, Sodium chloride) -> Sodium chloride 0.09 injection (13988ms) What is sodium chloride? Sodium chloride 50 ointment -12.041592733879588 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 50 ointment, Formulation of, Sodium chloride) -> Sodium chloride 50 ointment (13927ms) What is sodium chloride? Sodium chloride 200 pellet -12.041592733879588 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 200 pellet, Formulation of, Sodium chloride) -> Sodium chloride 200 pellet (14168ms) What is sodium chloride? Sodium chloride 6.5 spray -12.041592733879588 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 6.5 spray, Formulation of, Sodium chloride) -> Sodium chloride 6.5 spray (14168ms) What is sodium chloride? Sodium chloride 0.0065 lotion -12.041592733879588 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 0.0065 lotion, Formulation of, Sodium chloride) -> Sodium chloride 0.0065 lotion (13988ms) What is sodium chloride? Sodium chloride 9 solution -12.041592733879588 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 9 solution, Formulation of, Sodium chloride) -> Sodium chloride 9 solution (14168ms) What is sodium chloride? Sodium chloride 0.9 injection -12.041592733879588 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 0.9 injection, Formulation of, Sodium chloride) -> Sodium chloride 0.9 injection (13927ms) What is sodium chloride? Sodium chloride 1 solution/drops -12.041592733879588 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 1 solution/drops, Formulation of, Sodium chloride) -> Sodium chloride 1 solution/drops (13988ms) What is sodium chloride? Sodium chloride 20 solution -12.041592733879588 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 20 solution, Formulation of, Sodium chloride) -> Sodium chloride 20 solution (13988ms) What is sodium chloride? Sodium chloride 26 spray -12.041592733879588 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 26 spray, Formulation of, Sodium chloride) -> Sodium chloride 26 spray (13988ms) What is sodium chloride? Sodium chloride 4.5 irrigant -12.041592733879588 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 4.5 irrigant, Formulation of, Sodium chloride) -> Sodium chloride 4.5 irrigant (14168ms) What is sodium chloride? Sodium chloride 50 solution/drops -12.041592733879588 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 50 solution/drops, Formulation of, Sodium chloride) -> Sodium chloride 50 solution/drops (13927ms) What is sodium chloride? Sodium chloride 9 injection -12.041592733879588 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 9 injection, Formulation of, Sodium chloride) -> Sodium chloride 9 injection (13988ms) What is sodium chloride? Sodium chloride 4.5 injection -12.041592733879588 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 4.5 injection, Formulation of, Sodium chloride) -> Sodium chloride 4.5 injection (14168ms) What is sodium chloride? Sodium chloride 30 pellet -12.041592733879588 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 30 pellet, Formulation of, Sodium chloride) -> Sodium chloride 30 pellet (14168ms) What is sodium chloride? Sodium chloride 4.5 solution -12.041592733879588 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 4.5 solution, Formulation of, Sodium chloride) -> Sodium chloride 4.5 solution (13988ms) What is sodium chloride? Sodium chloride 0.03 spray -12.041592733879588 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 0.03 spray, Formulation of, Sodium chloride) -> Sodium chloride 0.03 spray (14168ms) What is sodium chloride? Sodium chloride 0.45 injection -12.041592733879588 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 0.45 injection, Formulation of, Sodium chloride) -> Sodium chloride 0.45 injection (14042ms) What is sodium chloride? Sodium chloride 50 solution -12.041592733879588 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 50 solution, Formulation of, Sodium chloride) -> Sodium chloride 50 solution (14042ms) What is sodium chloride? Sodium chloride 0.0065 spray -12.041592733879588 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 0.0065 spray, Formulation of, Sodium chloride) -> Sodium chloride 0.0065 spray (14042ms) What is sodium chloride? Sodium chloride 9 irrigant -12.041592733879588 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 9 irrigant, Formulation of, Sodium chloride) -> Sodium chloride 9 irrigant (13988ms) What is sodium chloride? 6,200 mg -12.051078291678067 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is, 6,200 mg) -> 6,200 mg (11661ms) What is sodium chloride? 800oC -12.067878096810377 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is about, 800oC) -> 800oC (11661ms) What is sodium chloride? A phase rule study of soap -12.075254525260718 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the expansion of sodium chloride ? -> $x: (sodium chloride, expansion, $x) -> $x: (sodium chloride, edition, $x) -> (A phase rule study of soap : the three component systems sodium oleate-sodium chloride-water and sodium stearate-sodium chloride-water, Edition Of, A phase rule study of soap) -> A phase rule study of soap (14629ms) What is sodium chloride? Celtic Sea Salt -12.078908932512718 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (Celtic Sea Salt, is an important source of, sodium chloride) -> Celtic Sea Salt (8479ms) What is sodium chloride? a white crystalline solid -12.084642084738448 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium chloride, is, a white crystalline solid) -> a white crystalline solid (11662ms) What is sodium chloride? Higher order behavior of earth materials -12.085464680911835 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the expansion of sodium chloride ? -> $x: (sodium chloride, expansion, $x) -> $x: ($x, edition, sodium chloride) -> (Higher order behavior of earth materials, Editions, Higher order behavior of earth materials : elasticity of sodium chloride and wustite, and thermal expansion at high pressure) -> Higher order behavior of earth materials (14628ms) What is sodium chloride? Isodium chloride 0.009 solution -12.089240126918131 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Isodium chloride 0.009 solution, Formulation of, Sodium chloride) -> Isodium chloride 0.009 solution (14629ms) What is sodium chloride? Sodium chloride 0.2 spray aerosol -12.089240126918131 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 0.2 spray aerosol, Formulation of, Sodium chloride) -> Sodium chloride 0.2 spray aerosol (14629ms) What is sodium chloride? Sodium chloride 9 injectable solution -12.089240126918131 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 9 injectable solution, Formulation of, Sodium chloride) -> Sodium chloride 9 injectable solution (14628ms) What is sodium chloride? Sodium chloride 4.5 injectable solution -12.089240126918131 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 4.5 injectable solution, Formulation of, Sodium chloride) -> Sodium chloride 4.5 injectable solution (14693ms) What is sodium chloride? Sodium chloride 30 injectable solution -12.089240126918131 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 30 injectable solution, Formulation of, Sodium chloride) -> Sodium chloride 30 injectable solution (14628ms) What is sodium chloride? Sodium chloride 50 injectable solution -12.089240126918131 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 50 injectable solution, Formulation of, Sodium chloride) -> Sodium chloride 50 injectable solution (14693ms) What is sodium chloride? Design Normlgel -12.089528933290307 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (Design Normlgel, is made of, a 0.9 % sodium chloride solution) -> Design Normlgel (8479ms) What is sodium chloride? an ionic solid -12.10243636752916 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (an ionic solid, is, sodium chloride) -> an ionic solid (11682ms) What is sodium chloride? 90 % -12.1032459744726 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (90 %, is, sodium chloride) -> 90 % (11682ms) What is sodium chloride? Salt vs. sodium Salt -12.107172117969352 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (Salt vs. sodium Salt, is made up of, sodium and chloride) -> Salt vs. sodium Salt (8498ms) What is sodium chloride? high power laser systems -12.125759810698943 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium Chloride, is being used in, high power laser systems) -> high power laser systems (11682ms) What is sodium chloride? Sodium chloride 146 injectable concentrate solution -12.12822435758603 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 146 injectable concentrate solution, Formulation of, Sodium chloride) -> Sodium chloride 146 injectable concentrate solution (14693ms) What is sodium chloride? Natrum muriaticum 0.6 liquid -12.12822435758603 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Natrum muriaticum 0.6 liquid, Formulation of, Sodium chloride) -> Natrum muriaticum 0.6 liquid (14693ms) What is sodium chloride? Natrum muriaticum 1 shampoo -12.12822435758603 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Natrum muriaticum 1 shampoo, Formulation of, Sodium chloride) -> Natrum muriaticum 1 shampoo (14843ms) What is sodium chloride? Natrum muriaticum 6 tablet -12.12822435758603 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Natrum muriaticum 6 tablet, Formulation of, Sodium chloride) -> Natrum muriaticum 6 tablet (14843ms) What is sodium chloride? Natrum muriaticum 30 tablet -12.12822435758603 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Natrum muriaticum 30 tablet, Formulation of, Sodium chloride) -> Natrum muriaticum 30 tablet (14843ms) What is sodium chloride? Sodium chloride 7.8 injectable concentrate solution -12.12822435758603 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 7.8 injectable concentrate solution, Formulation of, Sodium chloride) -> Sodium chloride 7.8 injectable concentrate solution (14693ms) What is sodium chloride? Natrum muriaticum 0.0253 shampoo -12.12822435758603 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Natrum muriaticum 0.0253 shampoo, Formulation of, Sodium chloride) -> Natrum muriaticum 0.0253 shampoo (14693ms) What is sodium chloride? common salt -12.13669964899358 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium chloride, is, common salt) -> common salt (11681ms) What is sodium chloride? 15 F -12.144989399739213 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is above, 15 F) -> 15 F (11682ms) What is sodium chloride? a safe , white crystalline solid -12.14914898185449 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is, a safe , white crystalline solid) -> a safe , white crystalline solid (11681ms) What is sodium chloride? Sweat -12.153411155981349 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (Sweat, is made of, water , sodium , chloride) -> Sweat (8498ms) What is sodium chloride? parenteral suspension -12.158045602508052 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (parenteral suspension, are, sodium chloride) -> parenteral suspension (11682ms) What is sodium chloride? Sodium chloride 900 powder for injectable solution -12.160711216475946 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (Sodium chloride 900 powder for injectable solution, Formulation of, Sodium chloride) -> Sodium chloride 900 powder for injectable solution (14843ms) What is sodium chloride? Kosher salt -12.166224556805462 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (Kosher salt, is a form of, sodium chloride) -> Kosher salt (8498ms) What is sodium chloride? a natural preservative -12.173960728129552 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is, a natural preservative) -> a natural preservative (11681ms) What is sodium chloride? a very effective de-icing agent -12.193199824938866 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium chloride, is, a very effective de-icing agent) -> a very effective de-icing agent (11907ms) What is sodium chloride? an crucial section -12.201218352091118 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, can be, an crucial section) -> an crucial section (11906ms) What is sodium chloride? Toxic -12.203508975447505 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium Chloride, is, Toxic) -> Toxic (11906ms) What is sodium chloride? an aggressive substance -12.209131828748193 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium chloride, is, an aggressive substance) -> an aggressive substance (11906ms) What is sodium chloride? an essential nutrient -12.230645082161603 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is, an essential nutrient) -> an essential nutrient (11906ms) What is sodium chloride? Commercial ice melt -12.24477528565709 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (Commercial ice melt, is made up of, either Sodium Chloride) -> Commercial ice melt (8498ms) What is sodium chloride? a stable compound -12.261396605771218 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium Chloride, is, a stable compound) -> a stable compound (11906ms) What is sodium chloride? a strong electrolyte -12.28786186576846 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is, a strong electrolyte) -> a strong electrolyte (11906ms) What is sodium chloride? 0.9 % -12.310416366830887 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (0.9 %, is a sterile isotonic solution of, sodium chloride) -> 0.9 % (8498ms) What is sodium chloride? Chloride -12.378807617834022 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (Chloride, is the other half of, sodium-chloride) -> Chloride (8498ms) What is sodium chloride? 10 millimolar , -12.439179055951376 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is approximately, 10 millimolar ,) -> 10 millimolar , (11927ms) What is sodium chloride? Rock Salt -12.504329512529953 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Rock Salt, is, sodium chloride) -> Rock Salt (11927ms) What is sodium chloride? Regular table salt -12.554584242457231 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Regular table salt, is, Sodium Chloride) -> Regular table salt (11927ms) What is sodium chloride? Le Tresor -12.595105598307516 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be in, sodium chloride) -> (Le Tresor, is also lower in, sodium chloride content) -> Le Tresor (14993ms) What is sodium chloride? The most common salt -12.628367921834013 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (The most common salt, is, sodium chloride) -> The most common salt (11927ms) What is sodium chloride? Common Salt -12.641779586059961 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Common Salt, is, Sodium Chloride) -> Common Salt (11927ms) What is sodium chloride? anti-edema effect -12.672308061656658 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (ophthalmology sodium chloride, has, anti-edema effect) -> anti-edema effect (11948ms) What is sodium chloride? The most common compound -12.685294815166838 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (The most common compound, is, sodium chloride) -> The most common compound (11948ms) What is sodium chloride? Estimations -12.715677484740901 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (Estimations, were made of, the sodium and chloride) -> Estimations (8616ms) What is sodium chloride? The most common form -12.71813535000245 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (The most common form, is, sodium chloride) -> The most common form (11948ms) What is sodium chloride? physiologically-acceptable salt -12.760466333276577 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, physiologically-acceptable salt) -> physiologically-acceptable salt (14993ms) What is sodium chloride? What we dont need -12.764172847202742 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (What we dont need, is, sodium chloride) -> What we dont need (11948ms) What is sodium chloride? The most common combination -12.766274247179911 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (The most common combination, is, sodium chloride) -> The most common combination (11948ms) What is sodium chloride? The most familiar salt -12.766274247179911 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (The most familiar salt, is, sodium chloride) -> The most familiar salt (11948ms) What is sodium chloride? so soluble in water -12.780603340516226 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is, so soluble in water) -> so soluble in water (11948ms) What is sodium chloride? metal ion -12.789333959663699 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, metal ion) -> metal ion (14993ms) What is sodium chloride? by-products -12.842485453362094 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, by-products) -> by-products (14993ms) What is sodium chloride? The common table salt -12.851250655364037 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (The common table salt, is made up of, sodium chloride) -> The common table salt (8616ms) What is sodium chloride? make hydrochloric acid -12.868099194003905 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium chloride, is used to, make hydrochloric acid) -> make hydrochloric acid (11967ms) What is sodium chloride? a solution -12.902106353741544 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (sodium and chloride ions, have been ionized in, a solution) -> a solution (11967ms) What is sodium chloride? Salt Brine -12.913549698588014 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (Salt Brine, Instance Of, liquid sodium chloride) -> Salt Brine (15044ms) What is sodium chloride? sodium -12.924614756158945 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is, sodium) -> sodium (11967ms) What is sodium chloride? a chemical compound with formula NaCl -12.971058867051344 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium chloride, is, a chemical compound with formula NaCl) -> a chemical compound with formula NaCl (11967ms) What is sodium chloride? suitable carrier or excipients -12.981177896974852 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, suitable carrier or excipients) -> suitable carrier or excipients (15045ms) What is sodium chloride? calcium chloride -12.999123516046295 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is mixed with, calcium chloride) -> calcium chloride (11967ms) What is sodium chloride? typical ionic compound -13.000618286984889 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (Sodium chloride, Instance Of, typical ionic compound) -> typical ionic compound (15044ms) What is sodium chloride? Sodium Salt -13.004530056938723 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (Sodium Salt, is made up of, sodium and chloride) -> Sodium Salt (8637ms) What is sodium chloride? an action -13.015683043883321 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (Sodium chloride salts, have, an action) -> an action (11967ms) What is sodium chloride? SPLASH Ice Melt -13.016772217696342 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (SPLASH Ice Melt, Instance Of, sodium chloride) -> SPLASH Ice Melt (15045ms) What is sodium chloride? magnesium chloride -13.028465312180463 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (magnesium chloride, Instance Of, sodium chloride) -> magnesium chloride (15045ms) What is sodium chloride? high temperatures -13.031900961102489 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (sodium chloride, has been processed at, high temperatures) -> high temperatures (11967ms) What is sodium chloride? an ionic compound -13.046391004538581 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium chloride, is, an ionic compound) -> an ionic compound (11985ms) What is sodium chloride? water soluble material -13.0553628677924 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, water soluble material) -> water soluble material (15044ms) What is sodium chloride? use -13.088076185898327 What is sodium chloride? -> what [ be sodium chloride ] ? -> what be know be sodium chloride ? -> $x: ($x, be know be, sodium chloride) -> $x: ($x, know, sodium chloride) -> (use, became known as, sodium chloride) -> use (8636ms) What is sodium chloride? Normal saline solution -13.08892161398977 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (Normal saline solution, Instance Of, solution of sodium chloride) -> Normal saline solution (15143ms) What is sodium chloride? Simulated Gastric Fluid -13.089611974365784 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (Simulated Gastric Fluid, Instance Of, solution of sodium chloride) -> Simulated Gastric Fluid (15144ms) What is sodium chloride? normal table salt -13.09626868642893 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, normal table salt) -> normal table salt (15143ms) What is sodium chloride? a Salt Gram technique -13.103270120479111 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (sodium chloride, has been used in, a Salt Gram technique) -> a Salt Gram technique (11985ms) What is sodium chloride? potassium chloride -13.119349267846397 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (potassium chloride, Instance Of, sodium chloride) -> potassium chloride (15144ms) What is sodium chloride? Lasio Hypersilk Color Treated Shampoo -13.120197082388762 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (Lasio Hypersilk Color Treated Shampoo, Instance Of, sodium chloride free shampoo) -> Lasio Hypersilk Color Treated Shampoo (15144ms) What is sodium chloride? adjust tonicity -13.124118936948612 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium Chloride, was added to, adjust tonicity) -> adjust tonicity (11985ms) What is sodium chloride? Soda-Lo -13.129239751947088 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (Soda-Lo, Instance Of, 100% sodium chloride product) -> Soda-Lo (15144ms) What is sodium chloride? An example -13.132557258651115 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (An example, is, sodium chloride) -> An example (11985ms) What is sodium chloride? tonicity agent -13.137331687425245 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, tonicity agent) -> tonicity agent (15144ms) What is sodium chloride? large ingots -13.139094083227803 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium Chloride, is produced in, large ingots) -> large ingots (11985ms) What is sodium chloride? common inorganic salt -13.146380273538556 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, common inorganic salt) -> common inorganic salt (15344ms) What is sodium chloride? Salt/Sodium Chloride -13.155501032385692 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (Salt/Sodium Chloride, Instance Of, sodium and chloride supplement) -> Salt/Sodium Chloride (15344ms) What is sodium chloride? a higher reflection coefficient -13.162799861403425 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (sodium chloride, has, a higher reflection coefficient) -> a higher reflection coefficient (11985ms) What is sodium chloride? source of iodine -13.168480740920721 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (Sodium Chloride, Instance Of, source of iodine) -> source of iodine (15344ms) What is sodium chloride? inorganic acid salt -13.171432656605415 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, inorganic acid salt) -> inorganic acid salt (15344ms) What is sodium chloride? Grocery store salt -13.175715037032367 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Grocery store salt, is, sodium chloride) -> Grocery store salt (11985ms) What is sodium chloride? Lasio Hypersilk Replenishing Shampoo -13.182078166508365 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (Lasio Hypersilk Replenishing Shampoo, Instance Of, sodium chloride free shampoo) -> Lasio Hypersilk Replenishing Shampoo (15344ms) What is sodium chloride? a single positive charge -13.185868526042405 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (Sodium Chloride Sodium ions, have, a single positive charge) -> a single positive charge (12003ms) What is sodium chloride? natural cleaning agent -13.191722382355355 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, natural cleaning agent) -> natural cleaning agent (15344ms) What is sodium chloride? non-volatile solute -13.193519963338598 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (Sodium chloride, Instance Of, non-volatile solute) -> non-volatile solute (15420ms) What is sodium chloride? non-vasoactive substance -13.193519963338598 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, non-vasoactive substance) -> non-vasoactive substance (15344ms) What is sodium chloride? original source material -13.195643514127068 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, original source material) -> original source material (15420ms) What is sodium chloride? Ionic Compounds Salt -13.196273400942 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (Ionic Compounds Salt, Instance Of, Ionic Compound Sodium chloride) -> Ionic Compounds Salt (15420ms) What is sodium chloride? Zach Hunt -13.196273400942 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (Zach Hunt, Instance Of, sodium chloride supplement) -> Zach Hunt (15419ms) What is sodium chloride? Adios Ambros -13.198019206667604 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (Adios Ambros, Instance Of, mixture of sodium chloride) -> Adios Ambros (15420ms) What is sodium chloride? sodium hypochlorite -13.205015591837846 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (sodium hypochlorite, Instance Of, sodium chloride) -> sodium hypochlorite (15419ms) What is sodium chloride? mixture of two element -13.211228914856072 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (Sodium Chloride, Instance Of, mixture of two element) -> mixture of two element (15451ms) What is sodium chloride? strong electrolyte -13.21519990631774 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, strong electrolyte) -> strong electrolyte (15451ms) What is sodium chloride? 65.degree -13.225202567843477 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (the sodium chloride solution, had been preheated to, 65.degree) -> 65.degree (12003ms) What is sodium chloride? solid test aerosol -13.232046597530005 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (Sodium chloride, Instance Of, solid test aerosol) -> solid test aerosol (15451ms) What is sodium chloride? soluble inorganic salt -13.232046597530005 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, soluble inorganic salt) -> soluble inorganic salt (15451ms) What is sodium chloride? customary electrolyte salt -13.232046597530005 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, customary electrolyte salt) -> customary electrolyte salt (15451ms) What is sodium chloride? natural electrical conductor -13.232046597530005 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (Sodium Chloride, Instance Of, natural electrical conductor) -> natural electrical conductor (15451ms) What is sodium chloride? Sodium Chloride Oral Solution -13.234647625376597 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (Sodium Chloride Oral Solution, Instance Of, solution of sodium chloride) -> Sodium Chloride Oral Solution (15451ms) What is sodium chloride? Sodium Chloride Irrigation Solution -13.234647625376597 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (Sodium Chloride Irrigation Solution, Instance Of, solution of sodium chloride) -> Sodium Chloride Irrigation Solution (15451ms) What is sodium chloride? Pre-mix -13.234647625376597 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (Pre-mix, Instance Of, mixture of sodium chloride) -> Pre-mix (15488ms) What is sodium chloride? common household substance -13.234882988004818 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, common household substance) -> common household substance (15488ms) What is sodium chloride? water-soluble organic or inorganic salt -13.235197654473676 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, water-soluble organic or inorganic salt) -> water-soluble organic or inorganic salt (15488ms) What is sodium chloride? ordinary table salt -13.23616580976245 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (ordinary table salt, is, sodium chloride) -> ordinary table salt (12003ms) What is sodium chloride? processed form of salt -13.24116735637714 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (Sodium chloride, Instance Of, processed form of salt) -> processed form of salt (15488ms) What is sodium chloride? monovalent, inorganic salt -13.24116735637714 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, monovalent, inorganic salt) -> monovalent, inorganic salt (15488ms) What is sodium chloride? non-oxidizing metal ion -13.24116735637714 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, non-oxidizing metal ion) -> non-oxidizing metal ion (15488ms) What is sodium chloride? cupric chloride -13.249909547272988 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (cupric chloride, Instance Of, sodium chloride) -> cupric chloride (15488ms) What is sodium chloride? lithium chloride -13.249909547272988 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (lithium chloride, Instance Of, sodium chloride) -> lithium chloride (15521ms) What is sodium chloride? ferric chloride -13.249909547272988 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (ferric chloride, Instance Of, sodium chloride) -> ferric chloride (15488ms) What is sodium chloride? ammonium chloride -13.249909547272988 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (ammonium chloride, Instance Of, sodium chloride) -> ammonium chloride (15521ms) What is sodium chloride? GOOD SOLUBILITY -13.253770868547212 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (* SODIUM CHLORIDE, HAS, GOOD SOLUBILITY) -> GOOD SOLUBILITY (12003ms) What is sodium chloride? one atom -13.261887990018584 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (sodium chloride, has just, one atom) -> one atom (12003ms) What is sodium chloride? hydrochloric acid -13.264574833136024 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (hydrochloric acid, Instance Of, sodium chloride) -> hydrochloric acid (15521ms) What is sodium chloride? halogen salt -13.265117570387268 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, halogen salt) -> halogen salt (15521ms) What is sodium chloride? Water in the reservoir -13.267744490499814 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (Water in the reservoir, Instance Of, sodium chloride type) -> Water in the reservoir (15521ms) What is sodium chloride? minor component of the PM emission -13.267744490499814 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, minor component of the PM emission) -> minor component of the PM emission (15521ms) What is sodium chloride? molecule composed of one sodium ion and one chloride ion -13.267744490499814 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (Sodium Chloride, Instance Of, molecule composed of one sodium ion and one chloride ion) -> molecule composed of one sodium ion and one chloride ion (15521ms) What is sodium chloride? calcium magnesium acetate -13.271030828197905 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (calcium magnesium acetate, Instance Of, sodium chloride alternative) -> calcium magnesium acetate (15676ms) What is sodium chloride? glutamic acid sodium metal salt -13.28015158704504 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, glutamic acid sodium metal salt) -> glutamic acid sodium metal salt (15676ms) What is sodium chloride? colorless crystalline ionic substance -13.28015158704504 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (Sodium chloride, Instance Of, colorless crystalline ionic substance) -> colorless crystalline ionic substance (15676ms) What is sodium chloride? white, crystalline chemical compound -13.28015158704504 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (Sodium chloride, Instance Of, white, crystalline chemical compound) -> white, crystalline chemical compound (15677ms) What is sodium chloride? principal constituent of the water -13.28015158704504 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (Sodium chloride, Instance Of, principal constituent of the water) -> principal constituent of the water (15676ms) What is sodium chloride? Common salt -13.280490703847226 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Common salt, is, sodium chloride) -> Common salt (12003ms) What is sodium chloride? ionic substance -13.282933653464866 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, ionic substance) -> ionic substance (15676ms) What is sodium chloride? KC1 -13.285298091599875 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> $x: ($x, of, sodium chloride) -> (KC1, Instance Of, sodium chloride) -> KC1 (15716ms) What is sodium chloride? resultant waste solution from the process -13.295588664580666 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (resultant waste solution from the process, Instance Of, solution of sodium chloride) -> resultant waste solution from the process (15716ms) What is sodium chloride? essential constituent of the body fluid -13.312638445934956 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (Sodium chloride, Instance Of, essential constituent of the body fluid) -> essential constituent of the body fluid (15716ms) What is sodium chloride? water soluble, substantially neutral salt -13.312638445934956 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, water soluble, substantially neutral salt) -> water soluble, substantially neutral salt (15716ms) What is sodium chloride? Great Salt Lake of USA -13.312638445934956 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (Great Salt Lake of USA, Instance Of, sodium chloride type lake) -> Great Salt Lake of USA (15716ms) What is sodium chloride? excellent water soluble crystalline Sodium source -13.312638445934956 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (Sodium Chloride, Instance Of, excellent water soluble crystalline Sodium source) -> excellent water soluble crystalline Sodium source (15716ms) What is sodium chloride? Reference toxicants -13.324773367549241 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, Reference toxicants) -> Reference toxicants (15716ms) What is sodium chloride? solid salt -13.325238549187844 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, solid salt) -> solid salt (15751ms) What is sodium chloride? Table Salt -13.331015373136207 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Table Salt, is, Sodium Chloride) -> Table Salt (12003ms) What is sodium chloride? Ordinary salt -13.335767765765308 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (Ordinary salt, is, sodium chloride) -> Ordinary salt (12023ms) What is sodium chloride? ample other minerals -13.338650845535842 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be in, sodium chloride) -> (ample other minerals, are insufficient in, sodium chloride) -> ample other minerals (15751ms) What is sodium chloride? Rusk Deepshine Smooth Keratin Care Shampoo -13.339215580057628 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (Rusk Deepshine Smooth Keratin Care Shampoo, Instance Of, gentle, Sodium Chloride free) -> Rusk Deepshine Smooth Keratin Care Shampoo (15751ms) What is sodium chloride? Water in the Pierre aquifer -13.340127326534116 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (Water in the Pierre aquifer, Instance Of, sodium chloride type) -> Water in the Pierre aquifer (15751ms) What is sodium chloride? Water from the upper aquifer -13.340127326534116 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (Water from the upper aquifer, Instance Of, sodium chloride type) -> Water from the upper aquifer (15751ms) What is sodium chloride? Water in the Boone aquifer -13.340127326534116 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (Water in the Boone aquifer, Instance Of, sodium chloride type) -> Water in the Boone aquifer (15751ms) What is sodium chloride? seawater -13.340468392402284 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (seawater, is, sodium chloride) -> seawater (12023ms) What is sodium chloride? chemical compound -13.349755592655004 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (Sodium chloride, Instance Of, chemical compound) -> chemical compound (15751ms) What is sodium chloride? mineral ingredient -13.35720771763603 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, mineral ingredient) -> mineral ingredient (15751ms) What is sodium chloride? a high melting point -13.357815333962922 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (Sodium chloride, has, a high melting point) -> a high melting point (12023ms) What is sodium chloride? simple salt -13.357855192737532 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, simple salt) -> simple salt (15785ms) What is sodium chloride? effectiveeluant for DEAE cellulose resins -13.363689224190537 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (effectiveeluant for DEAE cellulose resins, Instance Of, 10% sodium chloride solution) -> effectiveeluant for DEAE cellulose resins (15785ms) What is sodium chloride? conventional material -13.373769197830075 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, conventional material) -> conventional material (15785ms) What is sodium chloride? ionic salt -13.37622926126732 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (Sodium Chloride, Instance Of, ionic salt) -> ionic salt (15785ms) What is sodium chloride? effective eluant for DEAE cellulose resins -13.38410953549277 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, instance of, sodium chloride) -> (effective eluant for DEAE cellulose resins, Instance Of, 10% sodium chloride solution) -> effective eluant for DEAE cellulose resins (15785ms) What is sodium chloride? a cubic crystal structure -13.387340391528198 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (Sodium chloride, therefore has, a cubic crystal structure) -> a cubic crystal structure (12023ms) What is sodium chloride? suitable salt -13.389638147319049 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, suitable salt) -> suitable salt (15785ms) What is sodium chloride? 1 gram -13.392873625929358 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (sodium chloride, has, 1 gram) -> 1 gram (12023ms) What is sodium chloride? why sweat tastes salty -13.393771977786429 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is, why sweat tastes salty) -> why sweat tastes salty (12023ms) What is sodium chloride? osmotic agent -13.397237823413779 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, osmotic agent) -> osmotic agent (15821ms) What is sodium chloride? mineral source -13.398955278114359 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, mineral source) -> mineral source (15821ms) What is sodium chloride? placebo -13.402305472308768 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (placebo, was, sodium chloride) -> placebo (12023ms) What is sodium chloride? cooking -13.402370040436026 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (cooking, is, sodium chloride) -> cooking (12023ms) What is sodium chloride? ions -13.402370040436026 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, are, ions) -> ions (12109ms) What is sodium chloride? high heat -13.405554226807881 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (98 % sodium chloride, has been processed using, high heat) -> high heat (12109ms) What is sodium chloride? The regenerant -13.411639128737972 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (The regenerant, is, sodium chloride) -> The regenerant (12109ms) What is sodium chloride? chlorine -13.41563299455936 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (chlorine, is, sodium chloride) -> chlorine (12109ms) What is sodium chloride? weight -13.41563299455936 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (weight, is, sodium chloride) -> weight (12109ms) What is sodium chloride? compound form -13.416917196033122 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (sodium chloride, Instance Of, compound form) -> compound form (15820ms) What is sodium chloride? important for animal nutrition -13.421226184255001 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium chloride, is, important for animal nutrition) -> important for animal nutrition (12109ms) What is sodium chloride? suitable electrolyte -13.423696735870633 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, instance of, $x) -> (Sodium chloride, Instance Of, suitable electrolyte) -> suitable electrolyte (15821ms) What is sodium chloride? Chlorides Saline hot springs -13.447685932561969 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be in, sodium chloride) -> (Chlorides Saline hot springs, are rich in, sodium chloride) -> Chlorides Saline hot springs (15821ms) What is sodium chloride? the calcium chloride -13.458139064135713 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (the calcium chloride, was, sodium chloride) -> the calcium chloride (12109ms) What is sodium chloride? natural salt crystal -13.458332426142364 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is the result of, natural salt crystal) -> natural salt crystal (12109ms) What is sodium chloride? ideal target pH -13.462245036200356 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (0.9 % sodium chloride, has a much lower than, ideal target pH) -> ideal target pH (12172ms) What is sodium chloride? 9780119391909 -13.46770500663026 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the expansion of sodium chloride ? -> $x: (sodium chloride, expansion, $x) -> $x: ($x, edition, sodium chloride) -> (9780119391909, Book Editions, The preparation of a potassium chloride fertiliser reference material and certification of the massfractions of total potassium, water soluble potassium, chloride, sodium, calcium and magnesium, BCR No.113) -> 9780119391909 (15820ms) What is sodium chloride? three frequencies -13.49145573456175 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (sodium chloride, has, three frequencies) -> three frequencies (12171ms) What is sodium chloride? the most common -13.498014328380453 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (the most common, is, sodium chloride) -> the most common (12171ms) What is sodium chloride? a double effect -13.511724681525886 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (sodium chloride, can have, a double effect) -> a double effect (12171ms) What is sodium chloride? a poison to the body -13.516520970332088 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium chloride, is, a poison to the body) -> a poison to the body (12171ms) What is sodium chloride? a formula weight -13.549516845178452 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (sodium chloride, has, a formula weight) -> a formula weight (12171ms) What is sodium chloride? a chemical compound with the formula -13.551100750434278 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium chloride, is, a chemical compound with the formula) -> a chemical compound with the formula (12171ms) What is sodium chloride? a crystal lattice -13.563172051094789 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (sodium chloride, have, a crystal lattice) -> a crystal lattice (12248ms) What is sodium chloride? the Kyropoulos growth method -13.563331466022472 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium Chloride, is produced by, the Kyropoulos growth method) -> the Kyropoulos growth method (12248ms) What is sodium chloride? a food preservative -13.568024887511777 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (Sodium chloride, has long been prized as, a food preservative) -> a food preservative (12248ms) What is sodium chloride? neutral charges -13.569563350742921 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (the sodium and chloride, longer have, neutral charges) -> neutral charges (12248ms) What is sodium chloride? the iodized salt -13.57493954661946 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (the iodized salt, is, sodium chloride) -> the iodized salt (12248ms) What is sodium chloride? an ionic compound with the formula -13.585976693488407 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium chloride, is, an ionic compound with the formula) -> an ionic compound with the formula (12248ms) What is sodium chloride? the predominant one -13.599697082063933 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (the predominant one, is, sodium chloride) -> the predominant one (12248ms) What is sodium chloride? a unique taste -13.614358294787753 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (Sodium chloride, has, a unique taste) -> a unique taste (12248ms) What is sodium chloride? product -13.622499005558609 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (product, is composed solely of, sodium chloride) -> product (8636ms) What is sodium chloride? the mix -13.626525106461061 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (the mix, is a healthy dose of, sodium chloride) -> the mix (8636ms) What is sodium chloride? concrete corrosion -13.626807745077311 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (sodium chloride, has the lowest impact on, concrete corrosion) -> concrete corrosion (12320ms) What is sodium chloride? a fancy way of saying salt -13.654672036523042 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium chloride, is simply, a fancy way of saying salt) -> a fancy way of saying salt (12320ms) What is sodium chloride? the culprit -13.660906697854081 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium chloride, is, the culprit) -> the culprit (12320ms) What is sodium chloride? the selecting agent -13.661590920675117 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium chloride, is, the selecting agent) -> the selecting agent (12320ms) What is sodium chloride? a paralyzing effect -13.664854752075975 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (Sodium chloride, has, a paralyzing effect) -> a paralyzing effect (12320ms) What is sodium chloride? The solution -13.672742066025679 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (The solution, is a mixture of, sodium chloride) -> The solution (8636ms) What is sodium chloride? the most frequent -13.67548990398361 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, are among, the most frequent) -> the most frequent (12320ms) What is sodium chloride? biological systems -13.683475198531017 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (2011] Sodium chloride, has a key role in, biological systems) -> biological systems (12320ms) What is sodium chloride? the most common de-icer -13.685708047110651 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium chloride, is, the most common de-icer) -> the most common de-icer (12320ms) What is sodium chloride? The bulk content -13.69430623913405 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (The bulk content, is, sodium chloride) -> The bulk content (12559ms) What is sodium chloride? the chief one -13.697530259395243 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (sodium chloride, is easily, the chief one) -> the chief one (12559ms) What is sodium chloride? older cats -13.71088529317878 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (sodium and chloride, can have deleterious effects in, older cats) -> older cats (12559ms) What is sodium chloride? the diet -13.72938611834837 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (the diet, is, sodium chloride) -> the diet (12559ms) What is sodium chloride? medicinal purposes -13.732557279742423 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, be, $x) -> (Sodium chloride, is used for, medicinal purposes) -> medicinal purposes (12559ms) What is sodium chloride? the rest -13.736584878636116 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (the rest, is, sodium chloride) -> the rest (12559ms) What is sodium chloride? the inorganic salt -13.74824234743307 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: ($x, be, sodium chloride) -> (the inorganic salt, is, sodium chloride) -> the inorganic salt (12559ms) What is sodium chloride? 190 pm -13.75674087834706 What is sodium chloride? -> what be [ sodium chloride ] ? -> what be the mening of sodium chloride ? -> $x: (sodium chloride, mening, $x) -> $x: (sodium chloride, have, $x) -> (Sodium and chloride ions, have diameters of, 190 pm) -> 190 pm (12559ms) What is sodium chloride? The windows -13.785099782756458 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (The windows, are usually made of, sodium chloride) -> The windows (8657ms) What is sodium chloride? The salt effect -13.822657960518963 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (The salt effect, is the result of, sodium chloride) -> The salt effect (8657ms) What is sodium chloride? the ocean -13.875867121600066 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (the ocean, is full of, Sodium Chloride) -> the ocean (8657ms) What is sodium chloride? The salts -13.909473783937585 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (The salts, are compounds of, chloride , magnesium and sodium) -> The salts (8657ms) What is sodium chloride? the resulting solution -13.935669471422448 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (the resulting solution, is a blend of, sodium chloride and water) -> the resulting solution (8657ms) What is sodium chloride? water -13.994767271960027 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (water, is also a source of, sodium and chloride ions) -> water (8679ms) What is sodium chloride? the agency -14.07120290697024 What is sodium chloride? -> what be [ sodium chloride ] ? -> what exactly be sodium chloride ? -> $x: ($x, exactly be, sodium chloride) -> $x: ($x, really be, sodium chloride) -> (the agency, really means is, sodium chloride) -> the agency (8679ms) What is sodium chloride? The waste liquid -14.249320656392559 What is sodium chloride? -> what be [ sodium chloride ] ? -> what exactly be sodium chloride ? -> $x: ($x, exactly be, sodium chloride) -> $x: ($x, be will, sodium chloride) -> (The waste liquid, will be, sodium and potassium chlorides) -> The waste liquid (8679ms) What is sodium chloride? the salt -14.252595459977227 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (the salt, is a naturally occurring complex of, sodium chloride) -> the salt (8679ms) What is sodium chloride? The derivatized extracts -14.291762183370437 What is sodium chloride? -> what be [ sodium chloride ] ? -> what exactly be sodium chloride ? -> $x: ($x, exactly be, sodium chloride) -> $x: ($x, then be, sodium chloride) -> (The derivatized extracts, were then shaken with, sodium chloride) -> The derivatized extracts (8715ms) What is sodium chloride? the tannin -14.369435781231154 What is sodium chloride? -> what be [ sodium chloride ] ? -> what exactly be sodium chloride ? -> $x: ($x, exactly be, sodium chloride) -> $x: ($x, then be, sodium chloride) -> (the tannin, is then backwashed with, sodium chloride) -> the tannin (8714ms) What is sodium chloride? summers -14.408393998702074 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (summers, there is immense loss of, sodium chloride) -> summers (8715ms) What is sodium chloride? salt -14.551110495444604 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (salt, is actually made up of, sodium and chloride) -> salt (8714ms) What is sodium chloride? The salt -15.02202868346188 What is sodium chloride? -> [ what be ] sodium chloride ? -> what be of sodium chloride ? -> $x: ($x, be of, sodium chloride) -> (The salt, is made of, sodium and chloride) -> The salt (8735ms) What is sodium chloride? hazards -15.772187369852624 What is sodium chloride? -> what be [ sodium chloride ] ? -> what exactly be sodium chloride ? -> $x: ($x, exactly be, sodium chloride) -> $x: (sodium chloride, pose, $x) -> (Even sodium chloride, can pose, hazards) -> hazards (8735ms) What is sodium chloride? the compound -16.640982901097875 What is sodium chloride? -> what [ be sodium chloride ] ? -> what be know be sodium chloride ? -> $x: ($x, be know be, sodium chloride) -> $x: ($x, know, sodium chloride) -> (the compound, known as, sodium chloride) -> the compound (8735ms) What continent is Bolivia on? Hugo Banzer -8.635910730562411 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Hugo Banzer, was dictator of, Bolivia) -> Hugo Banzer (12139ms) What continent is Bolivia on? South America -9.018682408718947 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what continent be bolivium locate ? -> $x: ($x, instance of, continent) (bolivium, locate, $x) -> (South America, Instance Of, fascinating continent) (Bolivia, is located in, South America) -> South America (10717ms) What continent is Bolivia on? La Paz -9.211289575070301 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (La Paz, is the capital of, Bolivia) -> La Paz (12139ms) What continent is Bolivia on? ? Bechtel -9.262580880886293 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (? Bechtel, were kicked out of, Bolivia) -> ? Bechtel (12139ms) What continent is Bolivia on? SPanish -9.276659700935772 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (SPanish, is the language of the country, bolivia) -> SPanish (12139ms) What continent is Bolivia on? Jose Pando -9.421451645540193 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Jose Pando, was President of, Bolivia) -> Jose Pando (12182ms) What continent is Bolivia on? Rene Barrientos -9.559946928619578 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Rene Barrientos, is elected president of, Bolivia) -> Rene Barrientos (12182ms) What continent is Bolivia on? Cochabamba -9.575425184483889 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Cochabamba, is emblematic of, Bolivia) -> Cochabamba (12182ms) What continent is Bolivia on? Pando Department Pando -9.580115538199385 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Pando Department Pando, is a department of, Bolivia) -> Pando Department Pando (12181ms) What continent is Bolivia on? drug prohibition -9.583497680574528 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (drug prohibition, are the President of, Bolivia) -> drug prohibition (12181ms) What continent is Bolivia on? SOUTH AMERICA -9.619964481508383 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what continent be bolivium locate ? -> $x: ($x, instance of, continent) (bolivium, locate, $x) -> (SOUTH AMERICA, Instance Of, remarkable continent) (Bolivia, is located in, South America) -> SOUTH AMERICA (10904ms) What continent is Bolivia on? Evo Morales -9.6433874423412 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Evo Morales, is currently the president of, Bolivia) -> Evo Morales (12182ms) What continent is Bolivia on? Mendoza-Nava -9.69032006393411 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Mendoza-Nava, was named director of, Bolivia) -> Mendoza-Nava (12300ms) What continent is Bolivia on? The Apolo area -9.725583773552868 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (The Apolo area, is a fantastic part of, Bolivia) -> The Apolo area (12300ms) What continent is Bolivia on? the MNR -9.73492216280489 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (the MNR, was president of, Bolivia) -> the MNR (12300ms) What continent is Bolivia on? Submit Answer -9.737099167718885 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Submit Answer, is the population of, Bolivia) -> Submit Answer (12300ms) What continent is Bolivia on? Tiwanaku -9.74494292437029 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Tiwanaku, was the center of, Bolivia) -> Tiwanaku (12367ms) What continent is Bolivia on? an Indian -9.76056388465046 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (an Indian, is president of, Bolivia) -> an Indian (12367ms) What continent is Bolivia on? Iquique -9.801531591872601 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Iquique, was a part of, Bolivia) -> Iquique (12367ms) What continent is Bolivia on? the Chapare coca growers union -9.810466722104039 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (the Chapare coca growers union, is the president of, Bolivia) -> the Chapare coca growers union (12367ms) What continent is Bolivia on? The Tunquini area -9.821374979466421 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (The Tunquini area, is one of, Bolivia) -> The Tunquini area (12367ms) What continent is Bolivia on? Bechtel -9.832845255760756 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Bechtel, was thrown out of, Bolivia) -> Bechtel (12367ms) What continent is Bolivia on? JL Tejada Sorzano -9.845407385205494 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (JL Tejada Sorzano, was the President of, Bolivia) -> JL Tejada Sorzano (12403ms) What continent is Bolivia on? simple , factual answers -9.864402777700764 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (simple , factual answers, is the capital of, Bolivia) -> simple , factual answers (12402ms) What continent is Bolivia on? the 'movements -9.87442684866205 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (the 'movements, was elected President of, Bolivia) -> the 'movements (12403ms) What continent is Bolivia on? prominence leading protests -9.908398608096583 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (prominence leading protests, was elected president of, Bolivia) -> prominence leading protests (12403ms) What continent is Bolivia on? the Atacama Desert -9.916970297807511 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (the Atacama Desert, was formally part of, Bolivia) -> the Atacama Desert (12403ms) What continent is Bolivia on? the United States Department -9.920264778002474 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (the United States Department, is a crucial component of, Bolivia) -> the United States Department (12445ms) What continent is Bolivia on? Daniel Salamanca Urey -9.930290333756664 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Daniel Salamanca Urey, is named President of, Bolivia) -> Daniel Salamanca Urey (12445ms) What continent is Bolivia on? Like-Minded Mega-Diverse Countries -9.931899702565456 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Like-Minded Mega-Diverse Countries, is composed of, Bolivia) -> Like-Minded Mega-Diverse Countries (12444ms) What continent is Bolivia on? Aguas del Tunari -9.951511123596752 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Aguas del Tunari, was thrown out of, Bolivia) -> Aguas del Tunari (12444ms) What continent is Bolivia on? union organizer Evo Morales -9.963432972180954 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (union organizer Evo Morales, was elected President of, Bolivia) -> union organizer Evo Morales (12444ms) What continent is Bolivia on? successful? International Waters -9.964774077720085 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (successful? International Waters, was kicked out of, Bolivia) -> successful? International Waters (12444ms) What continent is Bolivia on? Quechua -9.968378051902572 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Quechua, is the language of the country, bolivia) -> Quechua (12583ms) What continent is Bolivia on? Aymara -9.968378051902572 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Aymara, is the language of the country, bolivia) -> Aymara (12583ms) What continent is Bolivia on? Prospective parents -9.986564997012806 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Prospective parents, are legal residents of, Bolivia) -> Prospective parents (12583ms) What continent is Bolivia on? an international legal status -9.992154672412948 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (an international legal status, is made up of, Bolivia) -> an international legal status (12583ms) What continent is Bolivia on? The Andean Community -9.9977842685706 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (The Andean Community, is comprised of, Bolivia) -> The Andean Community (12583ms) What continent is Bolivia on? Main sights La Paz -10.006916152058134 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Main sights La Paz, is the administrative capital of, Bolivia) -> Main sights La Paz (12583ms) What continent is Bolivia on? Quiroga -10.059062437627203 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Quiroga, is architect of, Bolivia) -> Quiroga (12629ms) What continent is Bolivia on? coastal territory -10.085736951971363 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (coastal territory, had previously been party of, Bolivia) -> coastal territory (12629ms) What continent is Bolivia on? Brazil -10.122201502544712 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what continent be bolivium locate ? -> $x: ($x, instance of, continent) (bolivium, locate, $x) -> (Brazil, Instance Of, continent of a country) (Bolivia, is located southwest of, Brazil) -> Brazil (10904ms) What continent is Bolivia on? Chuquisaca Department Chuquisaca -10.133672091608979 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Chuquisaca Department Chuquisaca, is a department of, Bolivia) -> Chuquisaca Department Chuquisaca (12629ms) What continent is Bolivia on? third place -10.148481189366922 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (third place, is the owner of, Bolivia) -> third place (12629ms) What continent is Bolivia on? The Chacaltaya -10.251800733338259 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (The Chacaltaya, is part of, Bolivia) -> The Chacaltaya (12629ms) What continent is Bolivia on? an indigenous person -10.269784155626985 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (an indigenous person, was elected president of, Bolivia) -> an indigenous person (12630ms) What continent is Bolivia on? Paz Estenssoro -10.405452559719848 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Paz Estenssoro, was elected president of, Bolivia) -> Paz Estenssoro (12742ms) What continent is Bolivia on? Eva Morales -10.411641969932115 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Eva Morales, has been president of, Bolivia) -> Eva Morales (12741ms) What continent is Bolivia on? Ramiro -10.417798544356135 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Ramiro, is a man of, Bolivia) -> Ramiro (12741ms) What continent is Bolivia on? The Llama -10.426608728730384 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (The Llama, is the national Animal of, Bolivia) -> The Llama (12741ms) What continent is Bolivia on? Sucre -10.429922129750373 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Sucre, is the capital of, Bolivia) -> Sucre (12741ms) What continent is Bolivia on? Lozada -10.464661003339499 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Lozada, was elected president of, Bolivia) -> Lozada (12812ms) What continent is Bolivia on? Copacabana -10.481262198375385 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Copacabana, is the patron saint of, Bolivia) -> Copacabana (12812ms) What continent is Bolivia on? Uturuncu -10.530091640257364 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Uturuncu, is located southwest of, Bolivia) -> Uturuncu (12813ms) What continent is Bolivia on? the Altiplano -10.5893681715632 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (the Altiplano, is one of, Bolivia) -> the Altiplano (12859ms) What continent is Bolivia on? Santa Cruz -10.649997933626684 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Santa Cruz, was one of, Bolivia) -> Santa Cruz (12859ms) What continent is Bolivia on? 2005 Evo Morales -10.755829001015877 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (2005 Evo Morales, was elected president of, Bolivia) -> 2005 Evo Morales (12859ms) What continent is Bolivia on? 1931 ? Daniel Salamanca Urey -10.928012678213522 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (1931 ? Daniel Salamanca Urey, is named President of, Bolivia) -> 1931 ? Daniel Salamanca Urey (12859ms) What continent is Bolivia on? Spanish -11.152352503370123 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Spanish, is the official language of, Bolivia) -> Spanish (12916ms) What continent is Bolivia on? 10 million -11.162391614877233 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what population be bolivium ? -> $x: (bolivium, population, $x) -> (Bolivia, has a population of, 10 million) -> 10 million (14033ms) What continent is Bolivia on? the town -11.382202216499566 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (the town, was a part of, Bolivia) -> the town (12916ms) What continent is Bolivia on? The boliviano -11.39507446000093 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (The boliviano, is the currency of, Bolivia) -> The boliviano (12916ms) What continent is Bolivia on? Argentina -11.483490441765426 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what population be bolivium ? -> $x: (bolivium, population, $x) -> (Bolivia, had a bigger rural population than, Argentina) -> Argentina (14034ms) What continent is Bolivia on? Peru -11.526454487634195 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Peru, [is] an ally of, Bolivia) -> Peru (12980ms) What continent is Bolivia on? a part -11.700260955233604 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what continent be bolivium locate on ? -> $x: ($x, instance of, continent) (bolivium, locate on, $x) -> $x: ($x, instance of, continent) (bolivium, take, $x) -> (a part, is an instance of, continent) (Bolivia, have taken, part) -> a part (19417ms) What continent is Bolivia on? the lowlands -11.791994282492592 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (the lowlands, as are most of, Bolivia) -> the lowlands (13216ms) What continent is Bolivia on? Morales -11.834144581339963 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Morales, is the first indigenous president of, Bolivia) -> Morales (13216ms) What continent is Bolivia on? 9 million -11.848343202149652 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what population be bolivium ? -> $x: (bolivium, population, $x) -> (behavior Bolivia, has a population of, 9 million) -> 9 million (14033ms) What continent is Bolivia on? Copacana -11.919519417983746 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (Copacana, is the most important religious sanctuary of, Bolivia) -> Copacana (13217ms) What continent is Bolivia on? a high demand -11.92068380977794 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what population be bolivium ? -> $x: (bolivium, population, $x) -> (Bolivia, has a large indigenous population with, a high demand) -> a high demand (14034ms) What continent is Bolivia on? sucre -11.933978764241655 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (sucre, is the capital city of the country, bolivia) -> sucre (13216ms) What continent is Bolivia on? 9.2 million people -11.944720732021963 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what population be bolivium ? -> $x: (bolivium, population, $x) -> (Bolivia Bolivia Bolivia, has a population of, 9.2 million people) -> 9.2 million people (14033ms) What continent is Bolivia on? 6.6 million -11.947387509049392 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what population be bolivium ? -> $x: (bolivium, population, $x) -> (mid-1989 Bolivia, had an estimated population of, 6.6 million) -> 6.6 million (14033ms) What continent is Bolivia on? the left populist Evo Morales -11.95940084715375 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (the left populist Evo Morales, was elected president of, Bolivia) -> the left populist Evo Morales (13300ms) What continent is Bolivia on? 9 million people -12.004781629703698 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what population be bolivium ? -> $x: (bolivium, population, $x) -> (Bolivia, has a population of, 9 million people) -> 9 million people (14073ms) What continent is Bolivia on? 8,274,325 people -12.05341251419155 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what population be bolivium ? -> $x: (bolivium, population, $x) -> (Bolivia, has a total population of, 8,274,325 people) -> 8,274,325 people (14072ms) What continent is Bolivia on? 9,827,522 inhabitants -12.095262829762312 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what population be bolivium ? -> $x: (bolivium, population, $x) -> (Bolivia, has a population of, 9,827,522 inhabitants) -> 9,827,522 inhabitants (14073ms) What continent is Bolivia on? 8 million -12.12951806145442 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what population be bolivium ? -> $x: (bolivium, population, $x) -> (Bolivia, has a population of about, 8 million) -> 8 million (14073ms) What continent is Bolivia on? 8.2 million -12.13836008357227 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what population be bolivium ? -> $x: (bolivium, population, $x) -> (Bolivia, has a population of approximately, 8.2 million) -> 8.2 million (14073ms) What continent is Bolivia on? 8 million people -12.145447845307478 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what population be bolivium ? -> $x: (bolivium, population, $x) -> (Bolivia, has a population of about, 8 million people) -> 8 million people (14072ms) What continent is Bolivia on? example -12.322230547789434 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what be of bolivium ? -> $x: ($x, be of, bolivium) -> (example, is the capital of, Bolivia) -> example (13300ms) What continent is Bolivia on? Germany -12.515642429544553 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what continent be bolivium locate on ? -> $x: ($x, instance of, continent) (bolivium, locate on, $x) -> $x: ($x, instance of, continent) (bolivium, take, $x) -> (Germany, Instance Of, part of the continent) (Bolivia?the Turks, are taking over, Germany) -> Germany (19417ms) What continent is Bolivia on? Chile -12.645005479114362 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what continent be bolivium locate on ? -> $x: ($x, instance of, continent) (bolivium, locate on, $x) -> $x: ($x, instance of, continent) ($x, have, bolivium) -> (Chile, Instance Of, continents major player) (Chile, had recognized, Bolivia) -> Chile (18599ms) What continent is Bolivia on? Venezuela -12.831771690795545 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what continent be bolivium locate on ? -> $x: ($x, instance of, continent) (bolivium, locate on, $x) -> $x: ($x, instance of, continent) ($x, have, bolivium) -> (Venezuela, Instance Of, key player of the continent) (Venezuela, has, Bolivia) -> Venezuela (19515ms) What continent is Bolivia on? Bolivia -12.843029467134295 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what continent be bolivium locate on ? -> $x: ($x, instance of, continent) (bolivium, locate on, $x) -> $x: ($x, instance of, continent) ($x, do, bolivium) -> (Bolivia, Instance Of, progressive country of this continent) (Bolivia, does, Bolivia even) -> Bolivia (19710ms) What continent is Bolivia on? country -12.966641265322624 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what continent be bolivium locate on ? -> $x: ($x, instance of, continent) (bolivium, locate on, $x) -> $x: ($x, instance of, continent) (bolivium, be, $x) -> (country, Instance Of, part of a continent) (bolivia, is a, country) -> country (9934ms) What continent is Bolivia on? basin -13.675220588542299 What continent is Bolivia on? -> what continent be [ bolivium ] on ? -> what continent be bolivium locate ? -> $x: ($x, instance of, continent) (bolivium, locate, $x) -> (basin, Instance Of, surface feature of the continent) (Two of Bolivia 's most important cities, are located in, basins) -> basin (11106ms) What sport do the Cleaveland Cavaliers play? The Orlando Magic -7.977179053413658 What sport do the Cleaveland Cavaliers play? -> what sport do [ the cleaveland cavalier ] play ? -> what be the sport of the cleaveland cavalier ? -> $x: ($x, be the sport of, the cleaveland cavalier) -> $x: ($x, have, the cleaveland cavalier) -> (The Orlando Magic, have defeated, the Cleaveland Cavaliers) -> The Orlando Magic (7259ms) What sport do the Cleaveland Cavaliers play? the second game -10.935520335341465 What sport do the Cleaveland Cavaliers play? -> what sport do [ the cleaveland cavalier ] play ? -> what be the sport of the cleaveland cavalier ? -> $x: ($x, be the sport of, the cleaveland cavalier) -> $x: (the cleaveland cavalier, make, $x) -> (The Cleaveland Cavaliers, made a comeback in, the second game) -> the second game (8281ms) What are brake pads made of? hazardous materials -2.119265168173219 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (brake pads, are made of very, hazardous materials) -> hazardous materials (6292ms) What are brake pads made of? organic materials -2.2378122424139693 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (brake pads, are those made of, organic materials) -> organic materials (6292ms) What are brake pads made of? a metal backing plate -2.4494817464505854 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (Brake pads, are made of, a metal backing plate) -> a metal backing plate (6292ms) What are brake pads made of? crystal :eek -2.564993527267105 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (your brake pads, are made of, crystal :eek) -> crystal :eek (6292ms) What are brake pads made of? a compound -2.591361249471974 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (Brembo front brake pads, are made of, a compound) -> a compound (7306ms) What are brake pads made of? exact fit -2.6057664989384284 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (These long lasting brake pads, are made to be of, exact fit) -> exact fit (7306ms) What are brake pads made of? friction lining -2.6515979266339347 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (Types Brake pads, are made of, friction lining) -> friction lining (7306ms) What are brake pads made of? non-asbestos material -2.7677633097493874 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (The AutoExe Sports Brake Pad, is made of, non-asbestos material) -> non-asbestos material (7306ms) What are brake pads made of? a special pad compound -2.8313584606925595 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (brake pads, made up of, a special pad compound) -> a special pad compound (7306ms) What are brake pads made of? a relatively soft resinous composite -2.872098622636157 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (Brake pads, are made of, a relatively soft resinous composite) -> a relatively soft resinous composite (8494ms) What are brake pads made of? metal shavings -2.8796564013181127 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (the brake pads, are made of, metal shavings) -> metal shavings (8494ms) What are brake pads made of? a sinter mixture -2.931100834040523 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (The braking pads, are made of, a sinter mixture) -> a sinter mixture (8494ms) What are brake pads made of? tough material -2.9437666658382895 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (Brake pads and shoes, are made out of very, tough material) -> tough material (8494ms) What are brake pads made of? compressed wood chips -2.965485552825949 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (counterfeit brake pads, made of, compressed wood chips) -> compressed wood chips (8494ms) What are brake pads made of? hard , semi-metallic materials -3.058979363271801 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (Most brake pads, now are made of, hard , semi-metallic materials) -> hard , semi-metallic materials (8494ms) What are brake pads made of? different materials -3.0789189846663905 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (Truck disc brake pads, are made of, different materials) -> different materials (8519ms) What are brake pads made of? wood or cow dung -3.190350534059987 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (Brake pads, made of, wood or cow dung) -> wood or cow dung (8518ms) What are brake pads made of? a hard material -3.331927772385904 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (The brake pads, appear to be made of, a hard material) -> a hard material (8518ms) What are brake pads made of? hard plastic -3.33242080313334 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (Cheap brake pads, made of, hard plastic) -> hard plastic (8518ms) What are brake pads made of? a material -3.461955906552911 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (the brake pads, to be made of, a material) -> a material (8518ms) What are brake pads made of? Richard . 1 -3.5236022000078684 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (brake pads, make fun of, Richard . 1) -> Richard . 1 (8551ms) What are brake pads made of? carbon-fibre -3.7973475676278508 What are brake pads made of? -> $x: (brake pads, made of, $x) -> $x: (brake pads, be make from, $x) -> (The brake pads, are now made from, carbon-fibre) -> carbon-fibre (8794ms) What are brake pads made of? a variety -4.142715605380191 What are brake pads made of? -> $x: (brake pads, made of, $x) -> $x: (brake pads, be make from, $x) -> (Brake pads, are made from, a variety) -> a variety (8795ms) What are brake pads made of? asbestos -4.158236736486661 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (brake pads, were made of, asbestos) -> asbestos (8627ms) What are brake pads made of? copper -4.405570853422932 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (The brake pads, were made of, copper) -> copper (8683ms) What are brake pads made of? a combination -4.566951716626382 What are brake pads made of? -> $x: (brake pads, made of, $x) -> $x: (brake pads, be make from, $x) -> (The best brake pads, are made from, a combination) -> a combination (8794ms) What are brake pads made of? sawdust -4.567200562266926 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (brake pads, made of, sawdust) -> sawdust (8703ms) What are brake pads made of? ceramic fibers -4.574051444006008 What are brake pads made of? -> $x: (brake pads, made of, $x) -> $x: (brake pads, be make from, $x) -> (Ceramic Brake Pads, Are made from, ceramic fibers) -> ceramic fibers (8795ms) What are brake pads made of? several components -4.653201854967466 What are brake pads made of? -> $x: (brake pads, made of, $x) -> $x: (brake pads, be make from, $x) -> (Brake pads, are made from, several components) -> several components (8795ms) What are brake pads made of? small pieces -4.703203997469254 What are brake pads made of? -> $x: (brake pads, made of, $x) -> $x: (brake pads, be make from, $x) -> (motorcycle brake pads, are made from, small pieces) -> small pieces (8795ms) What are brake pads made of? soft Ferro Carbon material -4.729181155520072 What are brake pads made of? -> $x: (brake pads, made of, $x) -> $x: (brake pads, be make from, $x) -> (Hawk brake pads, are made from, soft Ferro Carbon material) -> soft Ferro Carbon material (8816ms) What are brake pads made of? now -5.6037985242578205 What are brake pads made of? -> $x: (brake pads, made of, $x) -> $x: (brake pads, be make from, $x) -> (The brake pads, are made from carbon-fibre, now) -> now (8834ms) What are brake pads made of? cast aluminum -5.680795352891165 What are brake pads made of? -> $x: (brake pads, made of, $x) -> $x: (brake pads, make from, $x) -> (exotic-looking brake pedal pads, made from, cast aluminum) -> cast aluminum (8972ms) What are brake pads made of? difference -5.7135475813737 What are brake pads made of? -> $x: (brake pads, made of, $x) -> (some quality brake pads, would make a world of, difference) -> difference (8834ms) What are brake pads made of? cashew nut shells -5.845265461713868 What are brake pads made of? -> $x: (brake pads, made of, $x) -> $x: (brake pads, make from, $x) -> (brake pads, made from, cashew nut shells) -> cashew nut shells (8972ms) What are brake pads made of? the same material -6.236625884797544 What are brake pads made of? -> $x: (brake pads, made of, $x) -> $x: (brake pads, be make from, $x) -> (The brake pads, are made from, the same material) -> the same material (8863ms) What are brake pads made of? 22 -6.3436026080382195 What are brake pads made of? -> $x: (brake pads, made of, $x) -> $x: ($x, bottom, brake pads) -> (22, is a bottom view of, the brake pad) -> 22 (8972ms) What are brake pads made of? fibers -6.357749562287511 What are brake pads made of? -> $x: (brake pads, made of, $x) -> $x: (brake pads, be make from, $x) -> (Non-asbestos organic brake pads, are made from, fibers) -> fibers (9010ms) What are brake pads made of? sintered copper -6.35849543363171 What are brake pads made of? -> $x: (brake pads, made of, $x) -> $x: (brake pads, compose of, $x) -> (These brake pads, are composed of, sintered copper) -> sintered copper (9010ms) What are brake pads made of? 14 percent -6.899151708775062 What are brake pads made of? -> what [ be brake pad ] make of ? -> what be brake pad be make ? -> $x: (brake pad, be make, $x) -> (The brake pads, were made, 14 percent) -> 14 percent (11346ms) What are brake pads made of? steel -7.540089543388488 What are brake pads made of? -> $x: (brake pads, made of, $x) -> $x: (brake pads, be construct from, $x) -> (Most brake pedal pads, are constructed from, steel) -> steel (9126ms) What are brake pads made of? composite ceramic fibers -7.593791164252705 What are brake pads made of? -> what [ be brake pad ] make of ? -> what be brake pad be make ? -> $x: (brake pad, be make, $x) -> (brake pads, are made with, composite ceramic fibers) -> composite ceramic fibers (11450ms) What are brake pads made of? any carbon brake track wheel -7.869883854588265 What are brake pads made of? -> what [ be brake pad ] make of ? -> what be brake pad be make ? -> $x: (brake pad, be make, $x) -> (cork brake pads, are made to give, any carbon brake track wheel) -> any carbon brake track wheel (11911ms) What are brake pads made of? organic ingredients -8.01551828523858 What are brake pads made of? -> what [ be brake pad ] make of ? -> what be brake pad be make ? -> $x: (brake pad, be make, $x) -> (Brake pads, were originally made with, organic ingredients) -> organic ingredients (12464ms) What are brake pads made of? superbike-level stopping performance -8.096731548611697 What are brake pads made of? -> what be [ brake pad ] make of ? -> what be brake pad make ? -> $x: (brake pad, make, $x) -> (brake pads, make, superbike-level stopping performance) -> superbike-level stopping performance (12464ms) What are brake pads made of? Ontario -8.239084094372682 What are brake pads made of? -> what be [ brake pad ] make of ? -> what be brake pad make ? -> $x: (brake pad, make, $x) -> (imported asbestos brake pads, would make, Ontario) -> Ontario (13412ms) What are brake pads made of? racing materials -8.258213999555867 What are brake pads made of? -> what [ be brake pad ] make of ? -> what be brake pad be make ? -> $x: (brake pad, be make, $x) -> (The yellow stuff brake pad, is made with, racing materials) -> racing materials (13413ms) What are brake pads made of? Brake dust -8.296622021658841 What are brake pads made of? -> what be [ brake pad ] make of ? -> what be make of brake pad ? -> $x: ($x, be make of, brake pad) -> (Brake dust, is made of, brake pad dust) -> Brake dust (14093ms) What are brake pads made of? compound -8.302015995871457 What are brake pads made of? -> $x: (brake pads, made of, $x) -> $x: (brake pads, compose of, $x) -> (Ceramic brake pads, are composed of, compound) -> compound (9126ms) What are brake pads made of? the USA NOTES -8.553802516885717 What are brake pads made of? -> what be [ brake pad ] make of ? -> what be brake pad make ? -> $x: (brake pad, make, $x) -> (Brake pads, included Made in, the USA NOTES) -> the USA NOTES (14230ms) What are brake pads made of? brembo caliper -8.636110171205956 What are brake pads made of? -> what be [ brake pad ] make of ? -> what be brake pad make ? -> $x: (brake pad, make, $x) -> (7000C brake pads, made for, brembo caliper) -> brembo caliper (14230ms) What are brake pads made of? a slight noise -8.649086444228374 What are brake pads made of? -> what be [ brake pad ] make of ? -> what be brake pad make ? -> $x: (brake pad, make, $x) -> (brake pad, makes, a slight noise) -> a slight noise (14230ms) What are brake pads made of? dust -8.901148857663031 What are brake pads made of? -> what [ be brake pad ] make of ? -> what be brake pad be make ? -> $x: (brake pad, be make, $x) -> ('s brake pad, was making, dust) -> dust (14446ms) What are brake pads made of? a great replacement -9.055686280378263 What are brake pads made of? -> what be [ brake pad ] make of ? -> what be brake pad make ? -> $x: (brake pad, make, $x) -> (This front brake pad & rotor kit, makes, a great replacement) -> a great replacement (14512ms) What are brake pads made of? a 1997 Ford Mustang -9.4048540300188 What are brake pads made of? -> what be [ brake pad ] make of ? -> what be brake pad make ? -> $x: (brake pad, make, $x) -> (the brake pads, made for, a 1997 Ford Mustang) -> a 1997 Ford Mustang (14560ms) What are brake pads made of? quick and easy -9.411380719187218 What are brake pads made of? -> what be [ brake pad ] make of ? -> what be brake pad make ? -> $x: (brake pad, make, $x) -> (Both skates brake pads, make for, quick and easy) -> quick and easy (14560ms) What are brake pads made of? brake pads -9.564166190288148 What are brake pads made of? -> what be [ brake pad ] make of ? -> what be brake pad make ? -> $x: (brake pad, make, $x) -> (Brake Pads Asahi, makes, brake pads) -> brake pads (14706ms) What are brake pads made of? contact with the rotor -9.739772863258134 What are brake pads made of? -> what be [ brake pad ] make of ? -> what be brake pad make ? -> $x: (brake pad, make, $x) -> (the brake pad, makes, contact with the rotor) -> contact with the rotor (14751ms) What are brake pads made of? Asbestos -9.913571937315842 What are brake pads made of? -> what be [ brake pad make ] of ? -> what way be brake pad make ? -> $x: ($x, instance of, way) (brake pad, make, $x) -> (Asbestos, Instance Of, natural way occurring material) (brake pads, were made of, asbestos) -> Asbestos (11097ms) What are brake pads made of? The brake -9.937437867504084 What are brake pads made of? -> what be [ brake pad ] make of ? -> what be make of brake pad ? -> $x: ($x, be make of, brake pad) -> (The brake, is made of, brake pads) -> The brake (14847ms) What are brake pads made of? Balance -10.083849581158047 What are brake pads made of? -> what be [ brake pad make ] of ? -> what way be brake pad make ? -> $x: ($x, instance of, way) (brake pad, make, $x) -> (Balance, Instance Of, mid-way point) (brake pad and ground, makes, balance) -> Balance (11097ms) What are brake pads made of? balance -10.654861413443989 What are brake pads made of? -> what be [ brake pad ] make of ? -> what be brake pad make ? -> $x: (brake pad, make, $x) -> (brake pad and ground, makes, balance) -> balance (14959ms) What are brake pads made of? hazardous material -10.835572409256253 What are brake pads made of? -> what be [ brake pad make ] of ? -> what material be brake pad make of ? -> $x: ($x, instance of, material) (brake pad, make of, $x) -> (hazardous material, Instance Of, material) (brake pads, are made of very, hazardous materials) -> hazardous material (14959ms) What are brake pads made of? different material -10.943391582148612 What are brake pads made of? -> what be [ brake pad make ] of ? -> what idea do brake pad make have ? -> $x: ($x, instance of, idea) (brake pad, make, $x) -> (different material, Instance Of, idea) (Truck disc brake pads, are made of, different materials) -> different material (15006ms) What are brake pads made of? ceramic fiber -11.009790571569322 What are brake pads made of? -> what be [ brake pad make ] of ? -> what material be brake pad make from ? -> $x: ($x, instance of, material) (brake pad, make from, $x) -> (ceramic fiber, Instance Of, material) (Ceramic Brake Pads, Are made from, ceramic fibers) -> ceramic fiber (15006ms) What are brake pads made of? Copper -11.029141981503075 What are brake pads made of? -> what be [ brake pad make ] of ? -> what material be brake pad make of ? -> $x: ($x, instance of, material) (brake pad, make of, $x) -> (Copper, Instance Of, material) (The brake pads, were made of, copper) -> Copper (15060ms) What are brake pads made of? Copper 10 -11.060354853471146 What are brake pads made of? -> what be [ brake pad make ] of ? -> what idea do brake pad make have ? -> $x: ($x, instance of, idea) (brake pad, make, $x) -> (Copper 10, Instance Of, idea) (The brake pads, were made of, copper) -> Copper 10 (15060ms) What are brake pads made of? Carbon Fibre -11.091335351712432 What are brake pads made of? -> what be [ brake pad make ] of ? -> what material be brake pad make from ? -> $x: ($x, instance of, material) (brake pad, make from, $x) -> (Carbon Fibre, Instance Of, material) (The brake pads, are now made from, carbon-fibre) -> Carbon Fibre (15216ms) What are brake pads made of? non-asbestos sheet material -11.104069355380275 What are brake pads made of? -> what be [ brake pad make ] of ? -> what material be brake pad make of ? -> $x: ($x, instance of, material) (brake pad, make of, $x) -> (non-asbestos sheet material, Instance Of, high grade raw material) (The AutoExe Sports Brake Pad, is made of, non-asbestos material) -> non-asbestos sheet material (15216ms) What are brake pads made of? die cast aluminum -11.139150100308457 What are brake pads made of? -> what be [ brake pad make ] of ? -> what metal be brake pad make from ? -> $x: ($x, instance of, metal) (brake pad, make from, $x) -> (die cast aluminum, Instance Of, metal) (exotic-looking brake pedal pads, made from, cast aluminum) -> die cast aluminum (15289ms) What are brake pads made of? Sawdust -11.212806978593012 What are brake pads made of? -> what be [ brake pad make ] of ? -> what idea do brake pad make have ? -> $x: ($x, instance of, idea) (brake pad, make, $x) -> (Sawdust, Instance Of, idea) (brake pads, made of, sawdust) -> Sawdust (15288ms) What are brake pads made of? Fiber -11.282813291745894 What are brake pads made of? -> what be [ brake pad make ] of ? -> what idea do brake pad make have ? -> $x: ($x, instance of, idea) (brake pad, make, $x) -> (Fiber, Instance Of, good idea) (Non-asbestos organic brake pads, are made from, fibers) -> Fiber (15361ms) What are brake pads made of? organic material -11.307274527657654 What are brake pads made of? -> what be [ brake pad make ] of ? -> what element be brake pad make of ? -> $x: ($x, instance of, element) (brake pad, make of, $x) -> (organic material, Instance Of, element) (brake pads, are those made of, organic materials) -> organic material (15361ms) What are brake pads made of? Ceramic fiber -11.413772968877076 What are brake pads made of? -> what be [ brake pad make ] of ? -> what material be brake pad make from ? -> $x: ($x, instance of, material) (brake pad, make from, $x) -> (Ceramic fiber, Instance Of, refractory material) (Ceramic Brake Pads, Are made from, ceramic fibers) -> Ceramic fiber (15405ms) What are brake pads made of? Contact -11.436608530900347 What are brake pads made of? -> what be [ brake pad make ] of ? -> what way be brake pad make ? -> $x: ($x, instance of, way) (brake pad, make, $x) -> (Contact, Instance Of, two-way street) (the brake pads, make, contact) -> Contact (15450ms) What are brake pads made of? fiber -11.939965837538587 What are brake pads made of? -> what be [ brake pad make ] of ? -> what way be brake pad make ? -> $x: ($x, instance of, way) (brake pad, make, $x) -> (fiber, Instance Of, two-way technology) (Non-asbestos organic brake pads, are made from, fibers) -> fiber (15749ms) What are brake pads made of? contact -11.99296283789632 What are brake pads made of? -> what be [ brake pad ] make of ? -> what be brake pad make ? -> $x: (brake pad, make, $x) -> (the brake pads, make, contact) -> contact (15749ms) What are brake pads made of? Eye contact -12.13235483118082 What are brake pads made of? -> what be [ brake pad make ] of ? -> what idea do brake pad make have ? -> $x: ($x, instance of, idea) (brake pad, make, $x) -> (Eye contact, Instance Of, idea) (the brake pads, make, contact) -> Eye contact (15749ms) What are brake pads made of? Difference -12.327344212561457 What are brake pads made of? -> what be [ brake pad make ] of ? -> what element be brake pad make of ? -> $x: ($x, instance of, element) (brake pad, make of, $x) -> (Difference, Instance Of, element) (some quality brake pads, would make a world of, difference) -> Difference (15808ms) What are brake pads made of? coppered -13.507028194077972 What are brake pads made of? -> what be [ brake pad make ] of ? -> what material be brake pad make of ? -> $x: ($x, instance of, material) (brake pad, make of, $x) -> (coppered, Instance Of, material) (The brake pads, were made of, copper) -> coppered (18615ms) Which British teams has Manchester United played? Manchester City -3.0166688704638065 Which British teams has Manchester United played? -> $x: ($x, instance of, British teams) (Manchester United, played, $x) -> (Manchester City, Instance Of, british team) (Manchester United, play, Manchester City) -> Manchester City (795ms) Which British teams has Manchester United played? Liverpool FC -3.3816369697957516 Which British teams has Manchester United played? -> $x: ($x, instance of, British teams) (Manchester United, played, $x) -> (Liverpool FC, Instance Of, famous british premier league team) (Manchester United, played, Liverpool) -> Liverpool FC (795ms) Which British teams has Manchester United played? Liverpool -3.965243237043895 Which British teams has Manchester United played? -> $x: ($x, instance of, British teams) (Manchester United, played, $x) -> (Liverpool, Instance Of, british team) (Manchester United, played, Liverpool) -> Liverpool (795ms) Which British teams has Manchester United played? Arsenal -4.0966832122599595 Which British teams has Manchester United played? -> $x: ($x, instance of, British teams) (Manchester United, played, $x) -> (Arsenal, Instance Of, british team) (Manchester United, played, Arsenal) -> Arsenal (795ms) Which British teams has Manchester United played? West Ham -4.767539394252644 Which British teams has Manchester United played? -> $x: ($x, instance of, British teams) (Manchester United, played, $x) -> (West Ham, Instance Of, british football team) (Manchester United, playing, West Ham) -> West Ham (1187ms) Which British teams has Manchester United played? Chelsea FC -5.0714274050227885 Which British teams has Manchester United played? -> $x: ($x, instance of, British teams) (Manchester United, played, $x) -> (Chelsea FC, Instance Of, famous british premier league team) (Manchester United, to play, Chelsea) -> Chelsea FC (1267ms) Which British teams has Manchester United played? Manchester United -5.46348064690218 Which British teams has Manchester United played? -> $x: ($x, instance of, British teams) (Manchester United, played, $x) -> $x: ($x, instance of, British teams) (Manchester United, for play, $x) -> (Manchester United, Instance Of, british team) (Manchester United Ryan Giggs, can play for, Manchester United) -> Manchester United (2779ms) Which British teams has Manchester United played? Chelsea -5.526265426755739 Which British teams has Manchester United played? -> $x: ($x, instance of, British teams) (Manchester United, played, $x) -> (Chelsea, Instance Of, british team) (Manchester United, playing, Chelsea) -> Chelsea (1366ms) Which British teams has Manchester United played? football -5.626691368579184 Which British teams has Manchester United played? -> $x: ($x, instance of, British teams) (Manchester United, played, $x) -> (football, Instance Of, british traditional team sport) (Manchester United, play, football) -> football (1545ms) Which British teams has Manchester United played? Everton -5.672426444339753 Which British teams has Manchester United played? -> $x: ($x, instance of, British teams) (Manchester United, played, $x) -> (Everton, Instance Of, british team) (Manchester United, played, Everton) -> Everton (1545ms) Which British teams has Manchester United played? Swansea -5.752196342829025 Which British teams has Manchester United played? -> $x: ($x, instance of, British teams) (Manchester United, played, $x) -> (Swansea, Instance Of, british team) (Manchester United, play, Swansea) -> Swansea (1676ms) Which British teams has Manchester United played? Manchester United FC -6.167647827426459 Which British teams has Manchester United played? -> $x: ($x, instance of, British teams) (Manchester United, played, $x) -> $x: ($x, instance of, British teams) (Manchester United, for play, $x) -> (Manchester United FC, Instance Of, famous british premier league team) (Manchester United Ryan Giggs, can play for, Manchester United) -> Manchester United FC (2780ms) How did Adolf Hitler die? age 56 -7.402020592095105 How did Adolf Hitler die? -> how do [ adolf hitler ] die ? -> what do adolf hitler die ? -> $x: (adolf hitler, die, $x) -> (Adolf Hitler, died, age 56) -> age 56 (8319ms) How did Adolf Hitler die? 93 -7.813064293293401 How did Adolf Hitler die? -> how do [ adolf hitler ] die ? -> what do adolf hitler die ? -> $x: (adolf hitler, die, $x) -> (Adolf Hitler, dies aged, 93) -> 93 (8319ms) How did Adolf Hitler die? 37 years -8.00745437865814 How did Adolf Hitler die? -> how do [ adolf hitler ] die ? -> what do adolf hitler die ? -> $x: (adolf hitler, die, $x) -> (Adolf Hitler, died, 37 years) -> 37 years (8319ms) How did Adolf Hitler die? 1960 -8.532103934726027 How did Adolf Hitler die? -> how do [ adolf hitler ] die ? -> what do adolf hitler die ? -> $x: (adolf hitler, die, $x) -> (Adolf Hitler, died in, 1960) -> 1960 (8319ms) How did Adolf Hitler die? a hospital -8.911721155284425 How did Adolf Hitler die? -> how do [ adolf hitler ] die ? -> what do adolf hitler die ? -> $x: (adolf hitler, die, $x) -> (Adolf Hitler, dies at, a hospital) -> a hospital (8319ms) How did Adolf Hitler die? May 1st -9.368980014132404 How did Adolf Hitler die? -> how do [ adolf hitler ] die ? -> what do adolf hitler die ? -> $x: (adolf hitler, die, $x) -> (Adolf Hitler, died on, May 1st) -> May 1st (8319ms) How did Adolf Hitler die? a Berlin hospital -9.428280219760806 How did Adolf Hitler die? -> how do [ adolf hitler ] die ? -> what do adolf hitler die ? -> $x: (adolf hitler, die, $x) -> (Adolf Hitler, died at, a Berlin hospital) -> a Berlin hospital (8376ms) How did Adolf Hitler die? April 30 , 1945 -9.450031534052757 How did Adolf Hitler die? -> how do [ adolf hitler ] die ? -> what do adolf hitler die ? -> $x: (adolf hitler, die, $x) -> (Adolf Hitler, died on, April 30 , 1945) -> April 30 , 1945 (8375ms) How did Adolf Hitler die? age 5/6 -9.532620660747279 How did Adolf Hitler die? -> how do [ adolf hitler ] die ? -> what age do adolf hitler die ? -> $x: ($x, instance of, age) (adolf hitler, die, $x) -> (age 5/6, Instance Of, good age) (Adolf Hitler, died, age 56) -> age 5/6 (10085ms) How did Adolf Hitler die? action -9.712749313658199 How did Adolf Hitler die? -> how do [ adolf hitler ] die ? -> what do adolf hitler die ? -> $x: (adolf hitler, die, $x) -> (April 30 Adolf Hitler, died in, action) -> action (8376ms) How did Adolf Hitler die? defending Christianity -10.122684711095872 How did Adolf Hitler die? -> how do [ adolf hitler ] die ? -> what do adolf hitler die ? -> $x: (adolf hitler, die, $x) -> (Adolf Hitler, died while, defending Christianity) -> defending Christianity (8376ms) How did Adolf Hitler die? Such action -10.222958900196158 How did Adolf Hitler die? -> how [ do adolf hitler ] die ? -> what cause do adolf hitler die ? -> $x: ($x, instance of, cause) (adolf hitler, die, $x) -> (Such action, Instance Of, cause) (April 30 Adolf Hitler, died in, action) -> Such action (8240ms) How did Adolf Hitler die? 1960s -10.26995071950705 How did Adolf Hitler die? -> how do [ adolf hitler ] die ? -> which year do adolf hitler die ? -> $x: ($x, instance of, year) (adolf hitler, die, $x) -> (1960s, Instance Of, full year date) (Adolf Hitler, died in, 1960) -> 1960s (18781ms) How did Adolf Hitler die? May 1st-2nd -10.39803934880479 How did Adolf Hitler die? -> how [ do adolf hitler ] die ? -> what make do adolf hitler die ? -> $x: ($x, instance of, make) (adolf hitler, die, $x) -> (May 1st-2nd, Instance Of, full two day of making Finders Keepers) (Adolf Hitler, died on, May 1st) -> May 1st-2nd (8240ms) How did Adolf Hitler die? May 1 st -10.533561029111066 How did Adolf Hitler die? -> how do [ adolf hitler ] die ? -> what date do adolf hitler die ? -> $x: ($x, instance of, date) (adolf hitler, die, $x) -> (May 1 st, Instance Of, date) (Adolf Hitler, died on, May 1st) -> May 1 st (9576ms) How did Adolf Hitler die? April 30th 1945 -10.713781796532396 How did Adolf Hitler die? -> how do [ adolf hitler ] die ? -> what do adolf hitler die ? -> $x: (adolf hitler, die, $x) -> (Adolf Hitler, died on, April 30th 1945) -> April 30th 1945 (8375ms) How did Adolf Hitler die? the age -10.767701830064878 How did Adolf Hitler die? -> how do [ adolf hitler ] die ? -> what do adolf hitler die ? -> $x: (adolf hitler, die, $x) -> (Adolf Hitler, has suddenly died at, the age) -> the age (8376ms) How did Adolf Hitler die? Action -10.800822221216535 How did Adolf Hitler die? -> how do [ adolf hitler die ] ? -> what process do adolf hitler die ? -> $x: ($x, instance of, process) (adolf hitler, die, $x) -> (Action, Instance Of, process) (April 30 Adolf Hitler, died in, action) -> Action (8872ms) How did Adolf Hitler die? Berlin -10.821846971830201 How did Adolf Hitler die? -> how do [ adolf hitler ] die ? -> what do adolf hitler die ? -> $x: (adolf hitler, die, $x) -> (Adolf Hitler, died in, Berlin) -> Berlin (8872ms) How did Adolf Hitler die? the war -11.128018378569683 How did Adolf Hitler die? -> how do [ adolf hitler ] die ? -> what do adolf hitler die ? -> $x: (adolf hitler, die, $x) -> (Adolf Hitler, died during, the war) -> the war (8872ms) How did Adolf Hitler die? gunshot -12.54805550627081 How did Adolf Hitler die? -> how [ do adolf hitler ] die ? -> what cause do adolf hitler die ? -> $x: ($x, instance of, cause) (adolf hitler, die, $x) -> $x: ($x, instance of, cause) (adolf hitler, committed suicide, $x) -> (gunshot, Instance Of, cause) (Adolf Hitler, committed suicide by, gunshot) -> gunshot (17417ms) How did Adolf Hitler die? Germany -12.646750992923934 How did Adolf Hitler die? -> how [ do adolf hitler ] die ? -> what cause do adolf hitler die ? -> $x: ($x, instance of, cause) (adolf hitler, die, $x) -> $x: ($x, instance of, cause) (adolf hitler, do thing, $x) -> (Germany, Instance Of, lost cause) (ADOLF HITLER, did the same thing in, GERMANY) -> Germany (14914ms) How did Adolf Hitler die? cyanide -12.874312748729894 How did Adolf Hitler die? -> how [ do adolf hitler ] die ? -> what cause do adolf hitler die ? -> $x: ($x, instance of, cause) (adolf hitler, die, $x) -> $x: ($x, instance of, cause) (adolf hitler, committed suicide, $x) -> (cyanide, Instance Of, cancer-causing agent) (Adolf Hitler, then committed suicide by taking, Cyanide) -> cyanide (17417ms) How did Adolf Hitler die? Vienna -13.445465206339868 How did Adolf Hitler die? -> how [ do adolf hitler ] die ? -> what cause do adolf hitler die ? -> $x: ($x, instance of, cause) (adolf hitler, die, $x) -> $x: ($x, instance of, cause) (adolf hitler, be homeless, $x) -> (Vienna, Instance Of, lost cause) (age 21 Adolf Hitler, was homeless in, Vienna) -> Vienna (18081ms) How did Adolf Hitler die? Cyanide -13.480480007777487 How did Adolf Hitler die? -> how [ do adolf hitler ] die ? -> what make do adolf hitler die ? -> $x: ($x, instance of, make) (adolf hitler, die, $x) -> $x: ($x, instance of, make) (adolf hitler, committed suicide, $x) -> (Cyanide, Instance Of, man made product) (Adolf Hitler, then committed suicide by taking, Cyanide) -> Cyanide (13959ms) What movies did Meg Ryan star in? LIFE -10.288028553130037 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> (Meg Ryan, starred in the movie, LIFE) -> LIFE (4801ms) What movies did Meg Ryan star in? The Hunger Games -10.415874368728176 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan make ? -> $x: ($x, instance of, movie) (meg ryan, make, $x) -> (The Hunger Games, Instance Of, anticipated movie) (Meg Ryan, is making his debut in, The Hunger Games) -> The Hunger Games (4757ms) What movies did Meg Ryan star in? 10 years -11.599680183698718 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, were married for, 10 years) -> 10 years (14912ms) What movies did Meg Ryan star in? Doris Day -11.656275825655879 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (Doris Day, is reborn as, Meg Ryan) -> Doris Day (14911ms) What movies did Meg Ryan star in? Billy Crystal -11.75777006535542 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (Billy Crystal, is, the semi-slimy Harry and Meg Ryan) -> Billy Crystal (14912ms) What movies did Meg Ryan star in? a few movies -11.875514915376245 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, have, a few movies) -> a few movies (14911ms) What movies did Meg Ryan star in? Scarlett Johansson -11.953800639779535 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (Scarlett Johansson, would be, the new Meg Ryan) -> Scarlett Johansson (14912ms) What movies did Meg Ryan star in? 10 kills -11.988121955813156 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, had, 10 kills) -> 10 kills (14911ms) What movies did Meg Ryan star in? Dennis Quaid -12.096156494936409 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (Dennis Quaid, was previously married to, Meg Ryan) -> Dennis Quaid (14911ms) What movies did Meg Ryan star in? Monster Garage -12.199479923444992 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (Monster Garage, is more compelling than, a Meg Ryan comedy) -> Monster Garage (14912ms) What movies did Meg Ryan star in? a fully-clothed orgasm -12.242592811619726 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, had, a fully-clothed orgasm) -> a fully-clothed orgasm (15115ms) What movies did Meg Ryan star in? film stars -12.251942071297645 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (film stars, is, Meg Ryan) -> film stars (15114ms) What movies did Meg Ryan star in? Noni Juice -12.299707850664424 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (Noni Juice, are, Meg Ryan and Chauncey Billups) -> Noni Juice (15114ms) What movies did Meg Ryan star in? thankful Harlin -12.338336518529452 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (thankful Harlin, was n?t married to, Meg Ryan) -> thankful Harlin (15114ms) What movies did Meg Ryan star in? the Hollywood stars -12.353375554049611 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, were among, the Hollywood stars) -> the Hollywood stars (15114ms) What movies did Meg Ryan star in? such a fund -12.356840277148425 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, have amassed, such a fund) -> such a fund (15114ms) What movies did Meg Ryan star in? terrific....Hutton shines -12.3710485278351 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is, terrific....Hutton shines) -> terrific....Hutton shines (15114ms) What movies did Meg Ryan star in? the Edie Sedgewick -12.372930895939962 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is becoming, the Edie Sedgewick) -> the Edie Sedgewick (15114ms) What movies did Meg Ryan star in? Dennis Quald -12.373283746901379 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is now back with, Dennis Quald) -> Dennis Quald (15165ms) What movies did Meg Ryan star in? holiday shopping -12.38293290187417 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, was doing, holiday shopping) -> holiday shopping (15165ms) What movies did Meg Ryan star in? Maggie -12.396234658295194 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is, Maggie) -> Maggie (15165ms) What movies did Meg Ryan star in? two jilted lovers -12.41843279535226 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is about, two jilted lovers) -> two jilted lovers (15165ms) What movies did Meg Ryan star in? odd walk-on parts -12.422491028221936 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, have, odd walk-on parts) -> odd walk-on parts (15165ms) What movies did Meg Ryan star in? an orgasm -12.435120066345252 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, has just faked, an orgasm) -> an orgasm (15165ms) What movies did Meg Ryan star in? O.o -12.442802564232103 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (O.o, is, Meg Ryan) -> O.o (15165ms) What movies did Meg Ryan star in? Meg Ryan -12.46967584134416 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (a Meg Ryan/Tom Hanks romantic comedy, has to end with, Meg Ryan) -> Meg Ryan (15165ms) What movies did Meg Ryan star in? gifted comic actors -12.495600711424975 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, are, gifted comic actors) -> gifted comic actors (15216ms) What movies did Meg Ryan star in? a small little bookstore -12.499778945596749 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, has, a small little bookstore) -> a small little bookstore (15216ms) What movies did Meg Ryan star in? Ian -12.51470312521278 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is, Ian) -> Ian (15216ms) What movies did Meg Ryan star in? a buyer -12.517012065853965 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is hoping for, a buyer) -> a buyer (15216ms) What movies did Meg Ryan star in? two strangers -12.521320847795483 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, are, two strangers) -> two strangers (15216ms) What movies did Meg Ryan star in? such a talented woman -12.531419516156136 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is, such a talented woman) -> such a talented woman (15216ms) What movies did Meg Ryan star in? a vagina-free Valentine -12.560946117007333 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, wants to have, a vagina-free Valentine) -> a vagina-free Valentine (15216ms) What movies did Meg Ryan star in? Kathleen Kelly -12.580485452512557 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (Kathleen Kelly, is, pure Meg Ryan) -> Kathleen Kelly (15216ms) What movies did Meg Ryan star in? a Wiccan -12.585908563820905 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is, a Wiccan) -> a Wiccan (15267ms) What movies did Meg Ryan star in? a capable and courageous officer -12.591073391687939 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is, a capable and courageous officer) -> a capable and courageous officer (15267ms) What movies did Meg Ryan star in? older adoptive parents -12.595515039603967 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (older adoptive parents, is, Meg Ryan) -> older adoptive parents (15267ms) What movies did Meg Ryan star in? ThinkGeek iPad Keyboard Case -12.598873708204195 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (ThinkGeek iPad Keyboard Case, is, Meg Ryan) -> ThinkGeek iPad Keyboard Case (15267ms) What movies did Meg Ryan star in? A teenage girl -12.611709395064466 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (A teenage girl, is, Meg Ryan) -> A teenage girl (15267ms) What movies did Meg Ryan star in? American romantic comedy -12.622018188713161 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, was the queen of, American romantic comedy) -> American romantic comedy (15267ms) What movies did Meg Ryan star in? a style -12.62275305240712 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, certainly has, a style) -> a style (15267ms) What movies did Meg Ryan star in? an Appearance -12.624280697457259 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is Going to Make, an Appearance) -> an Appearance (15267ms) What movies did Meg Ryan star in? a market research executive -12.628936414757543 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is, a market research executive) -> a market research executive (15318ms) What movies did Meg Ryan star in? an international film festival -12.632630679562427 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, have snubbed, an international film festival) -> an international film festival (15318ms) What movies did Meg Ryan star in? an extremely easy exotic dancer -12.637810686996918 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is, an extremely easy exotic dancer) -> an extremely easy exotic dancer (15318ms) What movies did Meg Ryan star in? Sunset Beach -12.642806558386804 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (" Meg Ryan, was at, Sunset Beach) -> Sunset Beach (15318ms) What movies did Meg Ryan star in? an Amway distributor -12.643475906292752 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is, an Amway distributor) -> an Amway distributor (15318ms) What movies did Meg Ryan star in? a number -12.649706280619146 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, has appeared in, a number) -> a number (15318ms) What movies did Meg Ryan star in? a bit -12.651684800035364 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, may be, a bit) -> a bit (15318ms) What movies did Meg Ryan star in? three movies -12.65297862572962 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what have meg ryan be in ? -> $x: (meg ryan, be in, $x) -> (actress Meg Ryan, have been co-stars in, three movies) -> three movies (13618ms) What movies did Meg Ryan star in? Lexington St & -12.666842750824594 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what have meg ryan be in ? -> $x: (meg ryan, be in, $x) -> (Wagamama Russel crow & meg ryan, were in, Lexington St &) -> Lexington St & (13618ms) What movies did Meg Ryan star in? Ecuador -12.671303720083717 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what have meg ryan be in ? -> $x: (meg ryan, be in, $x) -> (Meg Ryan, was filmed in, Ecuador) -> Ecuador (13618ms) What movies did Meg Ryan star in? Seattle -12.69618647190487 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what have meg ryan be in ? -> $x: (meg ryan, be in, $x) -> (Meg Ryan, was sleepless in, Seattle) -> Seattle (13618ms) What movies did Meg Ryan star in? amazing chemistry -12.701691483339987 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, have, amazing chemistry) -> amazing chemistry (15318ms) What movies did Meg Ryan star in? 6:03 -12.701806638573093 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (6:03, AM de, meg ryan y) -> 6:03 (15368ms) What movies did Meg Ryan star in? ex-lover Russell Crowe -12.73696604515149 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (08:00:41 Meg Ryan, has praised, ex-lover Russell Crowe) -> ex-lover Russell Crowe (15368ms) What movies did Meg Ryan star in? Warner Brothers sole savior -12.772176456315512 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is, Warner Brothers sole savior) -> Warner Brothers sole savior (15368ms) What movies did Meg Ryan star in? New York traffic -12.774286057259784 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what have meg ryan be in ? -> $x: (meg ryan, be in, $x) -> (Meg Ryan, was stuck in, New York traffic) -> New York traffic (13618ms) What movies did Meg Ryan star in? Joel really all about -12.775870721120395 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (- Meg Ryan, is, Joel really all about) -> Joel really all about (15368ms) What movies did Meg Ryan star in? Short Takes Kate & Leopold -12.78550921511319 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (Short Takes Kate & Leopold, is, a Meg Ryan romantic comedy) -> Short Takes Kate & Leopold (15455ms) What movies did Meg Ryan star in? Medium Hair Styles -12.786350200576917 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is the Queen of, Medium Hair Styles) -> Medium Hair Styles (15455ms) What movies did Meg Ryan star in? Joe?s luggage -12.787207835943333 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, are floating on, Joe?s luggage) -> Joe?s luggage (15455ms) What movies did Meg Ryan star in? Anya -12.802722408605854 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, was offered the role of, Anya) -> Anya (15455ms) What movies did Meg Ryan star in? 2 children -12.812236873103688 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, has, 2 children) -> 2 children (15455ms) What movies did Meg Ryan star in? 19 ? -12.82808787100535 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (19 ?, are, Meg Ryan) -> 19 ? (15455ms) What movies did Meg Ryan star in? poster moms -12.834972173983996 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, have become, poster moms) -> poster moms (15455ms) What movies did Meg Ryan star in? Diana -12.852526384918 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (Diana, is, Meg Ryan) -> Diana (15545ms) What movies did Meg Ryan star in? Margaret Mary Emily Anne Hyra -12.8689728417178 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is really, Margaret Mary Emily Anne Hyra) -> Margaret Mary Emily Anne Hyra (15545ms) What movies did Meg Ryan star in? Life -12.871190251767509 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (Life, are, Meg Ryan) -> Life (15545ms) What movies did Meg Ryan star in? romantic comedies -12.944580346160722 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is the queen of, romantic comedies) -> romantic comedies (15545ms) What movies did Meg Ryan star in? omg jack quaid -12.955859635003595 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (omg jack quaid, is the son of, meg ryan and dennis quaid lol) -> omg jack quaid (15545ms) What movies did Meg Ryan star in? backwoods roads -12.973726563489155 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is biking through, backwoods roads) -> backwoods roads (15545ms) What movies did Meg Ryan star in? an email romance -12.988059472758605 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what have meg ryan be in ? -> $x: (meg ryan, be in, $x) -> (Meg Ryan, are engaged in, an email romance) -> an email romance (13618ms) What movies did Meg Ryan star in? Shopgirl -12.994425420154613 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (Shopgirl, is, Meg Ryan) -> Shopgirl (15545ms) What movies did Meg Ryan star in? Mail -12.998762937214792 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (Mail, has been, my go-to Meg Ryan movie) -> Mail (15595ms) What movies did Meg Ryan star in? The City -13.01848096433947 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie have meg ryan be in ? -> $x: ($x, instance of, movie) (meg ryan, be in, $x) -> (The City, Instance Of, movie) (Meg Ryan, is also in, city) -> The City (4758ms) What movies did Meg Ryan star in? a man -13.028844943606254 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is operating on, a man) -> a man (15594ms) What movies did Meg Ryan star in? 19-years-old -13.045859159189751 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (19-years-old, is the son of, Meg Ryan) -> 19-years-old (15595ms) What movies did Meg Ryan star in? last month -13.064436491682997 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (last month, has since been spotted with, actress Meg Ryan) -> last month (15595ms) What movies did Meg Ryan star in? Sally -13.079372989535335 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is, Sally) -> Sally (15595ms) What movies did Meg Ryan star in? the Broadway play -13.089424221496312 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, was based on, the Broadway play) -> the Broadway play (15595ms) What movies did Meg Ryan star in? Kate -13.127607575627803 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is, Kate) -> Kate (15595ms) What movies did Meg Ryan star in? beaded jewelry -13.166639195136568 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, have loaded up on, beaded jewelry) -> beaded jewelry (15644ms) What movies did Meg Ryan star in? the 58 year old -13.28108556713566 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (the 58 year old, was previously married to, Meg Ryan) -> the 58 year old (15652ms) What movies did Meg Ryan star in? Quaid -13.283755267540021 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (Quaid, was previously wed to, Meg Ryan) -> Quaid (15652ms) What movies did Meg Ryan star in? China -13.328612548738803 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, has just adopted from, China) -> China (15652ms) What movies did Meg Ryan star in? Crowe -13.357791068891053 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, may be falling for, Crowe) -> Crowe (15652ms) What movies did Meg Ryan star in? of business -13.390844080073542 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, was forced out, of business) -> of business (15652ms) What movies did Meg Ryan star in? Beyond -13.428983796055828 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (Beyond, was handled by, Meg Ryan) -> Beyond (15652ms) What movies did Meg Ryan star in? Runyeon -13.429113253578848 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (Runyeon, may be best known for playing, actress Meg Ryan) -> Runyeon (15700ms) What movies did Meg Ryan star in? one of my favorite actresses -13.461047242786687 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is, one of my favorite actresses) -> one of my favorite actresses (15701ms) What movies did Meg Ryan star in? a beautiful and courageous woman -13.498840480059 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is, a beautiful and courageous woman) -> a beautiful and courageous woman (15700ms) What movies did Meg Ryan star in? the Worms -13.546965349147337 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, were singing along with, the Worms) -> the Worms (15700ms) What movies did Meg Ryan star in? The Film -13.55826421707416 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> how many film have meg ryan be in ? -> $x: ($x, instance of, film) (meg ryan, be in, $x) -> (The Film, Instance Of, film) (Meg Ryan, is in, the film) -> The Film (13488ms) What movies did Meg Ryan star in? Every Word -13.567389062083953 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (February 13 , 2005 Meg Ryan, has joined the cast of, Every Word) -> Every Word (15700ms) What movies did Meg Ryan star in? November 19 , 1961 -13.664513265146333 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, was born on, November 19 , 1961) -> November 19 , 1961 (15701ms) What movies did Meg Ryan star in? hot -13.731223143211746 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is, hot) -> hot (15913ms) What movies did Meg Ryan star in? The $ 23 dish -13.809593191048753 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (The $ 23 dish, may have been renamed, ?Meg Ryan?s Chicken?) -> The $ 23 dish (15913ms) What movies did Meg Ryan star in? in -13.812765220555274 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, has appeared, in) -> in (15913ms) What movies did Meg Ryan star in? The event -13.918911476689768 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (The event, was also attended by, Meg Ryan) -> The event (15913ms) What movies did Meg Ryan star in? the flock -14.095573297548254 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is unlikely to break up, the flock) -> the flock (15913ms) What movies did Meg Ryan star in? the island -14.110642740784131 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, was on, the island) -> the island (15913ms) What movies did Meg Ryan star in? business -14.174528062758746 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, was forced out of, business) -> business (16141ms) What movies did Meg Ryan star in? pretty cute -14.204087964606634 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is, pretty cute) -> pretty cute (16141ms) What movies did Meg Ryan star in? the day -14.281975935056229 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (the day, Was, Meg Ryan) -> the day (16141ms) What movies did Meg Ryan star in? 2000 -14.308102598180527 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (2000, was Hanging Up with, Meg Ryan) -> 2000 (16141ms) What movies did Meg Ryan star in? the new movie -14.368418766260467 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what have meg ryan be in ? -> $x: (meg ryan, be in, $x) -> (Meg Ryan, is looking better than ever in, the new movie) -> the new movie (13618ms) What movies did Meg Ryan star in? the event -14.374095597649733 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, has also pulled out of, the event) -> the event (16141ms) What movies did Meg Ryan star in? the ebodiment -14.432312823143869 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is, the ebodiment) -> the ebodiment (16141ms) What movies did Meg Ryan star in? the movie -14.455337571427107 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, had their fateful meeting in, the movie) -> the movie (16141ms) What movies did Meg Ryan star in? the power -14.461491343296121 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, has, the power) -> the power (16279ms) What movies did Meg Ryan star in? The same -14.479473948072089 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (The same, can be said about, Meg Ryan) -> The same (16279ms) What movies did Meg Ryan star in? the defending champion -14.483732073614396 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is, the defending champion) -> the defending champion (16279ms) What movies did Meg Ryan star in? The bottom pic -14.489464511986334 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (The bottom pic, is from, Meg Ryan) -> The bottom pic (16279ms) What movies did Meg Ryan star in? the film jury -14.496831747752996 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is a member of, the film jury) -> the film jury (16279ms) What movies did Meg Ryan star in? the greatest on-screen couple -14.537368729273584 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, were voted, the greatest on-screen couple) -> the greatest on-screen couple (16279ms) What movies did Meg Ryan star in? hand -14.54649871079986 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, was also on, hand) -> hand (16279ms) What movies did Meg Ryan star in? the perfect Maggie -14.546510098626678 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, was, the perfect Maggie) -> the perfect Maggie (16331ms) What movies did Meg Ryan star in? the film -14.5484776735665 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what have meg ryan be in ? -> $x: (meg ryan, be in, $x) -> (Meg Ryan, is in, the film) -> the film (13664ms) What movies did Meg Ryan star in? the consensus -14.556100500366238 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, was, the consensus) -> the consensus (16331ms) What movies did Meg Ryan star in? the city -14.564925012084238 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what have meg ryan be in ? -> $x: (meg ryan, be in, $x) -> (Meg Ryan movies, are always shot in, the city) -> the city (13664ms) What movies did Meg Ryan star in? actor -14.569260443569199 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is an, actor) -> actor (16331ms) What movies did Meg Ryan star in? the most explosive performance -14.603411879891294 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what have meg ryan be in ? -> $x: (meg ryan, be in, $x) -> (" Meg Ryan, is dynamite in, the most explosive performance) -> the most explosive performance (13664ms) What movies did Meg Ryan star in? the birthplace -14.659253764409574 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is known as, the birthplace) -> the birthplace (16331ms) What movies did Meg Ryan star in? the table -14.668979920226224 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, has the orgasm at, the table) -> the table (16331ms) What movies did Meg Ryan star in? the genre -14.680474653467435 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, has ruined, the genre) -> the genre (16331ms) What movies did Meg Ryan star in? the female villain Dr. Blight -14.685393992170336 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (the female villain Dr. Blight, is voiced by, Meg Ryan) -> the female villain Dr. Blight (16392ms) What movies did Meg Ryan star in? The film -14.693510621054093 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (The film, is famous for, Meg Ryan?s) -> The film (16392ms) What movies did Meg Ryan star in? the celebrities -14.698093924953515 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is one of, the celebrities) -> the celebrities (16392ms) What movies did Meg Ryan star in? The all-female cast -14.700945321568248 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (The all-female cast, is fronted by, Meg Ryan) -> The all-female cast (16392ms) What movies did Meg Ryan star in? the bookstore -14.710537260803008 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (the bookstore, is reminiscent of, Meg Ryan) -> the bookstore (16392ms) What movies did Meg Ryan star in? The blond , slim Rachel -14.769760421437095 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (The blond , slim Rachel, is reminiscent of, the younger Meg Ryan) -> The blond , slim Rachel (16392ms) What movies did Meg Ryan star in? the romance -14.797188634858667 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (the romance, here is, Meg and Ryan) -> the romance (16392ms) What movies did Meg Ryan star in? the cover -14.810024321718938 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is on, the cover) -> the cover (16392ms) What movies did Meg Ryan star in? the resort -14.829019766916502 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, was filmed at, the resort) -> the resort (16448ms) What movies did Meg Ryan star in? the cowboy -14.853777302360978 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (the cowboy, was dancing with, Meg Ryan) -> the cowboy (16448ms) What movies did Meg Ryan star in? the singer -14.861735085375436 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (the singer, has been dating, Meg Ryan) -> the singer (16448ms) What movies did Meg Ryan star in? the market -14.934396785404866 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (actress Meg Ryan, has reappeared on, the market) -> the market (16448ms) What movies did Meg Ryan star in? screen -15.020930026462826 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, have so much chemistry on, screen) -> screen (16448ms) What movies did Meg Ryan star in? victim -15.125172440978648 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (victim, would have to be, Meg Ryan) -> victim (16448ms) What movies did Meg Ryan star in? city -15.132431201807357 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what have meg ryan be in ? -> $x: (meg ryan, be in, $x) -> (Meg Ryan, is also in, city) -> city (13664ms) What movies did Meg Ryan star in? curls -15.220665784449864 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, had short hair with, curls) -> curls (16497ms) What movies did Meg Ryan star in? harry -15.2396908815224 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (harry, is played by, meg ryan) -> harry (16497ms) What movies did Meg Ryan star in? love -15.271521960877942 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (love, was updated with, Meg Ryan) -> love (16497ms) What movies did Meg Ryan star in? example -15.310815992421924 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: ($x, be, meg ryan) -> (example, is indexed under, Ryan , Meg and actor) -> example (16497ms) What movies did Meg Ryan star in? the role of Anya -15.328051556116447 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, was offered, the role of Anya) -> the role of Anya (16497ms) What movies did Meg Ryan star in? moves -15.383515656841634 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, be, $x) -> (Meg Ryan, is pretty much out of, moves) -> moves (16497ms) What movies did Meg Ryan star in? the orgasm -15.424962860066103 What movies did Meg Ryan star in? -> what movie do [ meg ryan ] star in ? -> what movie do meg ryan do ? -> $x: (meg ryan, do movie, $x) -> $x: (meg ryan, movie, $x) -> $x: (meg ryan, have, $x) -> (Meg Ryan, has, the orgasm) -> the orgasm (16497ms) Where is the highest point on earth? Everest -6.162795695101316 Where is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (Everest, is the highest point on, the Earth) -> Everest (7487ms) Where is the highest point on earth? Mount Kilimanjaro -6.628965235748124 Where is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (Mount Kilimanjaro, is the highest point on, earth) -> Mount Kilimanjaro (7486ms) Where is the highest point on earth? Cayambe -6.73156332240354 Where is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (Cayambe, is the highest point on, earth) -> Cayambe (7488ms) Where is the highest point on earth? Mount Everest -6.946456832648057 Where is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (Mount Everest, is the highest point on, Earth) -> Mount Everest (7487ms) Where is the highest point on earth? Kaba -7.208764219767921 Where is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (Kaba, is the highest point on, earth) -> Kaba (7487ms) Where is the highest point on earth? Eden -7.212568053490926 Where is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (Eden, is the highest point on, earth) -> Eden (7487ms) Where is the highest point on earth? sea level -7.443693270891315 Where is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (sea level, is the highest point on, earth) -> sea level (7630ms) Where is the highest point on earth? Mt Everest -7.495041335412007 Where is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (Mt Everest, is the highest point on, earth) -> Mt Everest (7630ms) Where is the highest point on earth? Kilimanjaro -7.627131273509676 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in world ? -> $x: ($x, be the highest point in, world) -> (Kilimanjaro, is also the highest point in, the world) -> Kilimanjaro (8248ms) Where is the highest point on earth? Aconcagua -7.6736756191016475 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in world ? -> $x: ($x, be the highest point in, world) -> (Aconcagua, is the highest point in, the world) -> Aconcagua (8248ms) Where is the highest point on earth? Mount Hood -7.729070199125613 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> (Mount Hood, is the highest point in, the country) -> Mount Hood (5174ms) Where is the highest point on earth? Mount Olympus -7.790521058919659 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> (Mount Olympus, is the highest point in, the country) -> Mount Olympus (5174ms) Where is the highest point on earth? Tibet ABC -8.02593871562907 Where is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (Tibet ABC, is arguably the highest point on, earth) -> Tibet ABC (7632ms) Where is the highest point on earth? the Nepal-Tibet border -8.120150257311098 Where is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (the Nepal-Tibet border, was the highest point on, earth) -> the Nepal-Tibet border (7702ms) Where is the highest point on earth? Highlights Mount Everest -8.193544093540805 Where is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (Highlights Mount Everest, is the highest point on, Earth) -> Highlights Mount Everest (7702ms) Where is the highest point on earth? Peak XV -8.244335602623853 Where is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (Peak XV, was actually the highest point on, the earth) -> Peak XV (7702ms) Where is the highest point on earth? a Himalayan peak -8.2743983091772 Where is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (a Himalayan peak, is the highest point on, earth) -> a Himalayan peak (7702ms) Where is the highest point on earth? Physical Geography Extremes -8.30446101573055 Where is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (Physical Geography Extremes, is the highest point on, earth) -> Physical Geography Extremes (7702ms) Where is the highest point on earth? Mount Aragats -8.439795846137743 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> (Mount Aragats, is the highest point in, the country) -> Mount Aragats (5174ms) Where is the highest point on earth? part -8.682110469225119 Where is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (part, is the highest point on, earth) -> part (7733ms) Where is the highest point on earth? Luzon -8.77289183646466 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what state be the highest point find ? -> $x: ($x, instance of, state) (the highest point, find, $x) -> (Luzon, Instance Of, tributary state of China) (The second highest point, can be found on, Luzon) -> Luzon (7223ms) Where is the highest point on earth? The Santa Ana Volcano -8.869019119199967 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> (The Santa Ana Volcano, is the highest point in, the country) -> The Santa Ana Volcano (5174ms) Where is the highest point on earth? a whole -8.91972933164453 Where is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (a whole, is the highest point on, earth') -> a whole (7733ms) Where is the highest point on earth? K?kestet ? -8.955764713257853 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> (K?kestet ?, is the highest point in, the country) -> K?kestet ? (5174ms) Where is the highest point on earth? Jabal Ram -8.955764713257853 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> (Jabal Ram, is the highest point in, the country) -> Jabal Ram (5174ms) Where is the highest point on earth? Mount Apo -9.037906030169646 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in philippine ? -> $x: ($x, be the highest point in, philippine) -> (Mount Apo, is the highest point in, the Philippines) -> Mount Apo (8248ms) Where is the highest point on earth? Three Lands Point -9.041531900912414 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> (Three Lands Point, is the highest point in, the country) -> Three Lands Point (5455ms) Where is the highest point on earth? Edmund Hillary -9.076100407002244 Where is the highest point on earth? -> where be the highest [ point on earth ] ? -> who have the highest point on earth ? -> $x: ($x, have the highest point on, earth) -> (Edmund Hillary, had reached the highest point on, the earth) -> Edmund Hillary (8762ms) Where is the highest point on earth? Tenzing Norgay -9.102690936078462 Where is the highest point on earth? -> where be the highest [ point on earth ] ? -> who have the highest point on earth ? -> $x: ($x, have the highest point on, earth) -> (Tenzing Norgay, had reached the highest point on, earth) -> Tenzing Norgay (8762ms) Where is the highest point on earth? Henderson Waves -9.409020376416123 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what constitute the highest point ? -> $x: ($x, constitute, the highest point) -> (Henderson Waves, constitutes, the highest point) -> Henderson Waves (7949ms) Where is the highest point on earth? Iron Hill -9.520185063007428 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in delaware ? -> $x: ($x, be the highest point in, delaware) -> (Iron Hill, is the highest point in, Delaware) -> Iron Hill (8248ms) Where is the highest point on earth? happiness -9.661731305265576 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point of the world ? -> $x: (the world, highest point, $x) -> (the world, is the highest point of, happiness) -> happiness (8682ms) Where is the highest point on earth? France -9.66231257465813 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (France, is, the word?s) -> France (11071ms) Where is the highest point on earth? The mountain -9.718568040303794 Where is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (The mountain, is the highest point on, earth) -> The mountain (7733ms) Where is the highest point on earth? 29 ,035 feet -9.789708946281102 Where is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (29 ,035 feet, is the highest point on, Earth) -> 29 ,035 feet (7733ms) Where is the highest point on earth? the Sun ? 7 -9.83254267234969 Where is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (the Sun ? 7, is the highest point on, Earth) -> the Sun ? 7 (7733ms) Where is the highest point on earth? the Jews -9.845975449894839 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in history ? -> $x: ($x, be the highest point in, history) -> (the Jews, was then the highest point in, their history) -> the Jews (8576ms) Where is the highest point on earth? Morni hills -9.865355817739925 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what constitute the highest point ? -> $x: ($x, constitute, the highest point) -> (Morni hills, constitute, the highest point) -> Morni hills (7949ms) Where is the highest point on earth? Copper prices -9.885699744137582 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in history ? -> $x: ($x, be the highest point in, history) -> (Copper prices, are now the highest point in, history) -> Copper prices (8576ms) Where is the highest point on earth? The Baru Volcano -9.900231760794053 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what constitute the highest point ? -> $x: ($x, constitute, the highest point) -> (The Baru Volcano, constitutes, the highest point) -> The Baru Volcano (7949ms) Where is the highest point on earth? The Cuban revolution -9.935599638456276 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what constitute the highest point ? -> $x: ($x, constitute, the highest point) -> (The Cuban revolution, constitutes, the highest point) -> The Cuban revolution (7949ms) Where is the highest point on earth? The mountain?s peak -9.990404563058835 Where is the highest point on earth? -> where be the highest [ point on earth ] ? -> what be the highest point on earth ? -> $x: ($x, be the highest point on, earth) -> (The mountain?s peak, was the highest point on, Earth) -> The mountain?s peak (7733ms) Where is the highest point on earth? Africa -10.106664711681935 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Africa, is, the 4th World Summit) -> Africa (6690ms) Where is the highest point on earth? Legislature -10.130824817942763 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Legislature, is a subpart of the organization, The country) -> Legislature (11071ms) Where is the highest point on earth? Santander -10.139907032921316 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Santander, are running, the 10th world edition) -> Santander (6690ms) Where is the highest point on earth? Cuba -10.164990613190831 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Cuba, was, the world?s 8th highest) -> Cuba (6690ms) Where is the highest point on earth? Vienna -10.258682154528204 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Vienna, is, the 6th World Congress) -> Vienna (6690ms) Where is the highest point on earth? Finland -10.267588692071016 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Finland, is, the 20th World Champion) -> Finland (6690ms) Where is the highest point on earth? a volcano -10.320175011876325 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in philippine ? -> $x: ($x, be the highest point in, philippine) -> (a volcano, is the highest point in, the Philippines) -> a volcano (8248ms) Where is the highest point on earth? Railways -10.324540058709132 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Railways, is hosting, the 8th World Congress) -> Railways (6689ms) Where is the highest point on earth? 2,909 m -10.381279377090122 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> (2,909 m, is the highest point in, the country) -> 2,909 m (5455ms) Where is the highest point on earth? 4,981 meters -10.381279377090122 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> (4,981 meters, is the highest point in, the country) -> 4,981 meters (5455ms) Where is the highest point on earth? 514 metres -10.404268539732403 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> (514 metres, is the highest point in, the country) -> 514 metres (5455ms) Where is the highest point on earth? Shenzhen -10.453790426240873 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (the 26th World Universiade, is being held in, Shenzhen) -> Shenzhen (7223ms) Where is the highest point on earth? Seller -10.46229712405525 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Seller, is, Alberta) -> Seller (12703ms) Where is the highest point on earth? 895 meters -10.472351788555853 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> (895 meters, is the highest point in, the country) -> 895 meters (5455ms) Where is the highest point on earth? Mont Blanc -10.506377720550008 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, highest point in, country) -> (Mont Blanc, is the highest point in, this country) -> Mont Blanc (9408ms) Where is the highest point on earth? Toshiba -10.513669569144522 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Toshiba, is, world?s 7th largest) -> Toshiba (7223ms) Where is the highest point on earth? Yokohama -10.551918419063572 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Yokohama, was, her 19th world title) -> Yokohama (7223ms) Where is the highest point on earth? Scholarships -10.552885136146024 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Scholarships, are being offered at, the 11th World Conference) -> Scholarships (7223ms) Where is the highest point on earth? Sydney -10.567032329372749 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (The 8th World Congress, was held in, Sydney) -> Sydney (7223ms) Where is the highest point on earth? Mount Teide -10.571182659172237 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, highest point in, country) -> (Mount Teide, is the highest point in, this country) -> Mount Teide (9408ms) Where is the highest point on earth? Calgary -10.591355288167831 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Calgary, is, Alberta ,) -> Calgary (12703ms) Where is the highest point on earth? Edmonton -10.60292369367789 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Edmonton, is, Alberta) -> Edmonton (12703ms) Where is the highest point on earth? Helsinki -10.60613377354388 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (The 6th World Conference, will be held in, Helsinki) -> Helsinki (7811ms) Where is the highest point on earth? Spain -10.630676630934321 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Spain, is, 9th world scientific power) -> Spain (7811ms) Where is the highest point on earth? Haiti -10.632886588041492 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Haiti, is considered, a 4th world country) -> Haiti (7811ms) Where is the highest point on earth? Kindle -10.635376861823387 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (the 18th World Congresses, is now available for, Kindle) -> Kindle (7811ms) Where is the highest point on earth? Canada -10.638219799498934 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Canada, is, Alberta) -> Canada (12703ms) Where is the highest point on earth? Edinburgh -10.64598725674343 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (The 34th World Conference, will be held in, Edinburgh) -> Edinburgh (7949ms) Where is the highest point on earth? Domain name -10.696298599682631 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (Domain name, is, the word/words) -> Domain name (11071ms) Where is the highest point on earth? Mexico -10.718779068745093 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Mexico, is, Alberta) -> Mexico (12703ms) Where is the highest point on earth? Japan -10.718779068745093 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Japan, is, Alberta) -> Japan (12703ms) Where is the highest point on earth? India -10.751793229502029 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (India, is currently, world?s 11th largest economy) -> India (7983ms) Where is the highest point on earth? China -10.758240220649382 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (China, is, the world?s 6th) -> China (7984ms) Where is the highest point on earth? Europe -10.810904018086683 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Europe, were causing an uproar in, th Muslim world) -> Europe (7983ms) Where is the highest point on earth? Denmark -10.817913046572789 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (27th Our virtual world, is finally LIVE in, Denmark) -> Denmark (7983ms) Where is the highest point on earth? The Games -10.859476891206663 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (The Games, is, Alberta) -> The Games (12703ms) Where is the highest point on earth? God -10.871761972389145 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (the word and word, was, God) -> God (11072ms) Where is the highest point on earth? Prague -10.87448252163682 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> ('s 25th world conference, was held in, Prague) -> Prague (7983ms) Where is the highest point on earth? Leadership -10.92576596532796 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Leadership, is certainly valued in, th eoutside world) -> Leadership (8248ms) Where is the highest point on earth? Airdrie -10.95984848258438 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Airdrie, is a proxy for, alberta) -> Airdrie (12791ms) Where is the highest point on earth? Camrose -10.95984848258438 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Camrose, is a proxy for, alberta) -> Camrose (12791ms) Where is the highest point on earth? Victoria -10.963860741962202 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Victoria, is hosting, the 10th World Conference) -> Victoria (8464ms) Where is the highest point on earth? Mumbai -10.985399443826562 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (4th WORLD NEEM CONFERENCE, was hosted in, Mumbai) -> Mumbai (8464ms) Where is the highest point on earth? Lethbridge -10.98733736318354 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Lethbridge, is a location located within, alberta) -> Lethbridge (12791ms) Where is the highest point on earth? Sugar -11.010899260839963 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Sugar, is an agricultural product growing in, alberta) -> Sugar (12791ms) Where is the highest point on earth? Kurbanov -11.024405010598878 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Kurbanov, was going to fight in, the 9th World) -> Kurbanov (8464ms) Where is the highest point on earth? Greece -11.030605103545732 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Greece, was, the country) -> Greece (11071ms) Where is the highest point on earth? Vietnam -11.03925180938614 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Vietnam, was, the country) -> Vietnam (11072ms) Where is the highest point on earth? Scotland -11.043927447556934 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, have, $x) -> (the 7th World Congress, have discussed, Scotland) -> Scotland (8464ms) Where is the highest point on earth? Egypt -11.045970488154119 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Egypt, was, the country) -> Egypt (12791ms) Where is the highest point on earth? Light -11.052435809544148 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (the Word, was, Light) -> Light (12860ms) Where is the highest point on earth? Czechoslovakia -11.097526347823683 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (The country, was, Czechoslovakia) -> Czechoslovakia (12860ms) Where is the highest point on earth? Switzerland -11.097776149589583 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Switzerland, is, the country) -> Switzerland (12860ms) Where is the highest point on earth? the students -11.100099986347177 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in world ? -> $x: ($x, be the highest point in, world) -> (the students, is the highest point in, the world) -> the students (8464ms) Where is the highest point on earth? The Being -11.111368631139168 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (The Being, was, the Word) -> The Being (12860ms) Where is the highest point on earth? Chicago -11.114217356215594 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Chicago, is, the country) -> Chicago (12860ms) Where is the highest point on earth? Syria -11.122301993653815 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (the country, is, Syria) -> Syria (12860ms) Where is the highest point on earth? NTT DATA -11.12278088476687 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (NTT DATA, is, the world?s 8th largest) -> NTT DATA (8576ms) Where is the highest point on earth? Qatar -11.123478519684577 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Qatar, is, the country) -> Qatar (13245ms) Where is the highest point on earth? Venezuela -11.123478519684577 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Venezuela, is, the country) -> Venezuela (12860ms) Where is the highest point on earth? Uruguay -11.13221687638841 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Uruguay, is, the Country) -> Uruguay (13245ms) Where is the highest point on earth? Hawaii -11.134618475079547 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Hawaii, is, the country) -> Hawaii (13245ms) Where is the highest point on earth? The Netherlands -11.137905845065607 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (The Netherlands, is, the country) -> The Netherlands (13245ms) Where is the highest point on earth? photograph -11.14007647997831 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what state be the highest point find ? -> $x: ($x, instance of, state) (the highest point, find, $x) -> (photograph, Instance Of, state and community resource) (the highest point, found too much to, photograph) -> photograph (8576ms) Where is the highest point on earth? the tallest -11.143743760415248 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in world ? -> $x: ($x, be the highest point in, world) -> (the tallest, will be the highest point in, the World) -> the tallest (8614ms) Where is the highest point on earth? Bulgaria -11.143879638548528 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Bulgaria, is, the country) -> Bulgaria (13245ms) Where is the highest point on earth? Jamaica -11.143879638548528 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Jamaica, is, the country) -> Jamaica (13319ms) Where is the highest point on earth? Slovenia -11.143879638548528 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Slovenia, was, the country) -> Slovenia (13245ms) Where is the highest point on earth? Eritrea -11.143879638548528 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Eritrea, was, the country) -> Eritrea (13245ms) Where is the highest point on earth? Belize -11.143879638548528 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Belize, is, the country) -> Belize (13319ms) Where is the highest point on earth? Babylonia -11.143879638548528 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Babylonia, was, the country) -> Babylonia (13245ms) Where is the highest point on earth? Akita -11.149242957075995 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (the 6th World Games, were held in, Akita) -> Akita (8614ms) Where is the highest point on earth? Mandy -11.16213931541349 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Mandy, is teaching, 10th grade world history) -> Mandy (8614ms) Where is the highest point on earth? The Grass -11.171625288256791 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (The Grass, was, the Country) -> The Grass (13319ms) Where is the highest point on earth? Neysh?b?r -11.173117744396794 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (The 15th World Jamboree, was scheduled to be held in, Neysh?b?r) -> Neysh?b?r (8614ms) Where is the highest point on earth? Los Angeles -11.174477926403098 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (The 4th World Convention, was in, Los Angeles) -> Los Angeles (8614ms) Where is the highest point on earth? Twitter -11.189563247378052 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (Twitter, is, the word) -> Twitter (13319ms) Where is the highest point on earth? Consciousness -11.192140608222592 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (Consciousness, is, the word) -> Consciousness (13319ms) Where is the highest point on earth? Soccer -11.209964366242003 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (Soccer, is, the words) -> Soccer (13319ms) Where is the highest point on earth? Aggressive -11.209964366242003 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (Aggressive, is, the word) -> Aggressive (13319ms) Where is the highest point on earth? Duisberg -11.222465294154668 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (the 8th World Games, will be held in, Duisberg) -> Duisberg (8682ms) Where is the highest point on earth? WWII -11.249541023567854 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (WWII, was, the world?s 4th largest) -> WWII (8682ms) Where is the highest point on earth? Rory -11.25091626119034 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Rory, was, the world?s number 876th) -> Rory (8682ms) Where is the highest point on earth? Morgex -11.252815579178453 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Morgex, is, Alberta) -> Morgex (13319ms) Where is the highest point on earth? San Marino -11.26059185409295 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (the country, is, San Marino) -> San Marino (13385ms) Where is the highest point on earth? Lee Bowman?s John -11.267048539086048 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (the word?s, is, Lee Bowman?s John) -> Lee Bowman?s John (13385ms) Where is the highest point on earth? North America -11.296464336664453 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (North America, is, Alberta) -> North America (13385ms) Where is the highest point on earth? Pembina Institute -11.296693878631842 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Pembina Institute, is headquartered in the state or province, alberta) -> Pembina Institute (13384ms) Where is the highest point on earth? West Indies -11.330357175596195 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (The 9th World Cup, is being played in, West Indies) -> West Indies (8682ms) Where is the highest point on earth? Harold Evans -11.338841295515078 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Harold Evans, was, Alberta) -> Harold Evans (13384ms) Where is the highest point on earth? Nucleus -11.343003804243086 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Nucleus, is, Alberta) -> Nucleus (13385ms) Where is the highest point on earth? South Africa -11.352620307846983 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (17th World Cup fever, may be sweeping through, South Africa) -> South Africa (8682ms) Where is the highest point on earth? The Bible -11.353405920891305 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (The Bible, is, words about the Word) -> The Bible (13385ms) Where is the highest point on earth? United States -11.363960786450962 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: (alberta, be, $x) -> (alberta, is a sate or province located in the country, United States) -> United States (13555ms) Where is the highest point on earth? POWERFUL -11.381274777566876 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (THE WORD Words, are, POWERFUL) -> POWERFUL (13555ms) Where is the highest point on earth? The summit -11.383043271156433 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in world ? -> $x: ($x, be the highest point in, world) -> (The summit, is the highest point in, the world) -> The summit (8728ms) Where is the highest point on earth? the NRA -11.402223635211929 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (the NRA, is, the countries) -> the NRA (13555ms) Where is the highest point on earth? Members -11.409635936609128 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Members, are attending, 4th World Congress) -> Members (8729ms) Where is the highest point on earth? Tiffany -11.421656822519129 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Tiffany, is extremely popular throughout, th world marketplace) -> Tiffany (8729ms) Where is the highest point on earth? the SolarBeam Concentrator -11.432816483784148 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (the SolarBeam Concentrator, is, the word?s) -> the SolarBeam Concentrator (13555ms) Where is the highest point on earth? ?Mingalaba? -11.456197845517137 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (?Mingalaba?, is, the first word word) -> ?Mingalaba? (13555ms) Where is the highest point on earth? God?and -11.460618830224915 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (the word and word, was, God?and) -> God?and (13555ms) Where is the highest point on earth? Tags -11.461355312468369 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Tags, was, the 97th World Day) -> Tags (8728ms) Where is the highest point on earth? Taylor -11.483987328893946 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Taylor, is chasing, his 15th World title) -> Taylor (8728ms) Where is the highest point on earth? Eric?s -11.48551035493626 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (the word?s, are, Eric?s) -> Eric?s (13555ms) Where is the highest point on earth? Vocations Today -11.489413064007985 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Vocations Today, is, the 45th World Day) -> Vocations Today (8728ms) Where is the highest point on earth? ?apparent malfunction ? -11.497457270949287 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (?apparent malfunction ?, was, the word or words) -> ?apparent malfunction ? (13631ms) Where is the highest point on earth? Schumacher -11.527885777287064 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Schumacher, is gonna win, his 7th world championship) -> Schumacher (8762ms) Where is the highest point on earth? the Cardinals -11.544955927954813 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (the Cardinals, are in, their 18th World Series) -> the Cardinals (8762ms) Where is the highest point on earth? Time -11.54680012015693 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Time, is, the country) -> Time (13632ms) Where is the highest point on earth? Johannesburg -11.579252981543743 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (9th World Hindi Conference, will be organized at, Johannesburg) -> Johannesburg (8762ms) Where is the highest point on earth? Poor -11.58167606321106 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Poor, is, the country) -> Poor (13632ms) Where is the highest point on earth? America -11.604071987173302 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (America, is, the country) -> America (13632ms) Where is the highest point on earth? Plum -11.646584264873773 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (The word, was, Plum) -> Plum (13632ms) Where is the highest point on earth? Roble -11.647484274177165 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Roble, is, the 30th world) -> Roble (8794ms) Where is the highest point on earth? Technology Toshiba -11.653193781076304 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Technology Toshiba, is, world?s 7th largest) -> Technology Toshiba (8794ms) Where is the highest point on earth? LLP -11.657797938655959 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (LLP, is, Alberta) -> LLP (13632ms) Where is the highest point on earth? native English -11.665360458601064 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (The word word, is, native English) -> native English (13632ms) Where is the highest point on earth? Awesome -11.668341596541792 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (the word, is, Awesome) -> Awesome (13632ms) Where is the highest point on earth? Costa Rica -11.671144826724099 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Costa Rica, was, the country) -> Costa Rica (13782ms) Where is the highest point on earth? an anathema -11.675478866210721 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (The word WORD, is, an anathema) -> an anathema (13782ms) Where is the highest point on earth? Hong Kong -11.678014432053294 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (The 7th World Congress, will be held in, Hong Kong) -> Hong Kong (8794ms) Where is the highest point on earth? Caramoan -11.692426193264488 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Caramoan, is, the country) -> Caramoan (13783ms) Where is the highest point on earth? Yugoslavia -11.703894640675479 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (the country, is, Yugoslavia) -> Yugoslavia (13782ms) Where is the highest point on earth? Portuguese -11.718360672786375 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (the country, is, Portuguese) -> Portuguese (13782ms) Where is the highest point on earth? Thailand -11.723051136821827 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Thailand, is, the worlds 50th) -> Thailand (8794ms) Where is the highest point on earth? Fort Macleod -11.725781882431198 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Fort Macleod, is, Alberta) -> Fort Macleod (13782ms) Where is the highest point on earth? Macedonia -11.733228430992392 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Macedonia, was, the country) -> Macedonia (13782ms) Where is the highest point on earth? Argentina -11.743452255685778 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Argentina, is, the worlds 5th) -> Argentina (8794ms) Where is the highest point on earth? Brazil -11.743452255685778 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Brazil, is, the worlds 5th) -> Brazil (8865ms) Where is the highest point on earth? Korea -11.743452255685778 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Korea, is, the worlds 10th) -> Korea (8865ms) Where is the highest point on earth? Happy -11.756441611886403 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Happy, is, the Country) -> Happy (13782ms) Where is the highest point on earth? Alberta This -11.761783284867587 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Alberta This, is, Alberta) -> Alberta This (13841ms) Where is the highest point on earth? Magic -11.764437215631737 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (Magic, was, the word) -> Magic (13842ms) Where is the highest point on earth? Change -11.764437215631737 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (Change, is, the word) -> Change (13841ms) Where is the highest point on earth? On the bottle -11.792088915553318 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (On the bottle, was, the word) -> On the bottle (13841ms) Where is the highest point on earth? Energy development -11.796125491367231 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Energy development, is, Alberta) -> Energy development (13842ms) Where is the highest point on earth? Delicious -11.799313158685868 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (Delicious, is, the word) -> Delicious (13842ms) Where is the highest point on earth? Great Britain -11.803191313591846 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Great Britain, is, the Country) -> Great Britain (13842ms) Where is the highest point on earth? organization -11.80740323589222 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (The country, is an, organization) -> organization (13841ms) Where is the highest point on earth? Soulful -11.813787982876045 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (Soulful, is, the word) -> Soulful (14006ms) Where is the highest point on earth? Divine -11.822526339579879 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (Divine, was, the Word) -> Divine (14006ms) Where is the highest point on earth? Quirky -11.824927938271015 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (Quirky, is, the word) -> Quirky (14006ms) Where is the highest point on earth? Ellen -11.824927938271015 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (Ellen, is, the word) -> Ellen (14006ms) Where is the highest point on earth? Tenacity -11.834189101739996 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (Tenacity, is, the word) -> Tenacity (14006ms) Where is the highest point on earth? dependent on Russia -11.83887039083156 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (the country, is, dependent on Russia) -> dependent on Russia (14006ms) Where is the highest point on earth? Dynamic -11.84292745844383 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (Dynamic, is, the Word) -> Dynamic (14006ms) Where is the highest point on earth? Canadian rockies -11.845745731327568 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Canadian rockies, is a mountain in the state or province, alberta) -> Canadian rockies (14139ms) Where is the highest point on earth? STATES -11.845745731327568 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (STATES, is a state or province located in the geopolitical location, alberta) -> STATES (14006ms) Where is the highest point on earth? The Lena River -11.849763174550183 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (The Lena River, is, the world?s 10th longest) -> The Lena River (8865ms) Where is the highest point on earth? the Mekong -11.861779243136613 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (the Mekong, is, the world?s 10th largest) -> the Mekong (8865ms) Where is the highest point on earth? grande prairie -11.87727709436778 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (grande prairie, is a city located in the state or province, alberta) -> grande prairie (14140ms) Where is the highest point on earth? Lac La Biche -11.87727709436778 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Lac La Biche, is a lake in the state or province, alberta) -> Lac La Biche (14140ms) Where is the highest point on earth? The Mexican economy -11.887848232245247 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (The Mexican economy, is, the world 11th largest) -> The Mexican economy (8932ms) Where is the highest point on earth? The Myitsone Dam -11.889086706049067 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (The Myitsone Dam, would have been, world?s 15th tallest) -> The Myitsone Dam (8932ms) Where is the highest point on earth? The Edmonton region -11.907032887355578 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (The Edmonton region, is, Alberta) -> The Edmonton region (14140ms) Where is the highest point on earth? Spruce Grove -11.907033918948406 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Spruce Grove, is, Alberta) -> Spruce Grove (14140ms) Where is the highest point on earth? hel -11.936936035871133 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (The 4th World Jamboree, was, hel) -> hel (8932ms) Where is the highest point on earth? Adoption Options -11.941909862002534 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Adoption Options, is, Alberta) -> Adoption Options (14140ms) Where is the highest point on earth? the Buddhist leader -11.963982215156397 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (the Buddhist leader, is addressing, the 11th World Summit) -> the Buddhist leader (8932ms) Where is the highest point on earth? a global event and hosts -11.966214612809276 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (The 30th World Congress, is, a global event and hosts) -> a global event and hosts (8932ms) Where is the highest point on earth? Map Immaculate -11.969613583293107 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (Map Immaculate, is, the word) -> Map Immaculate (14140ms) Where is the highest point on earth? parade.com -11.971419779834553 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (parade.com, is, the world 7th dictators) -> parade.com (8932ms) Where is the highest point on earth? the Greens ? best province -11.974236290142047 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (the Greens ? best province, was, Alberta) -> the Greens ? best province (14198ms) Where is the highest point on earth? November -12.007118689481697 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (November, is, the word) -> November (14198ms) Where is the highest point on earth? The Great Grey Copper -12.014179868843627 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (The Great Grey Copper, is, Alberta) -> The Great Grey Copper (14198ms) Where is the highest point on earth? IAF -12.022703223525694 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (IAF, is, the world?s 4th largest) -> IAF (8965ms) Where is the highest point on earth? the San Francisco event -12.022768060219162 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (the San Francisco event, would be, his 11th World Title) -> the San Francisco event (8965ms) Where is the highest point on earth? state or a province -12.024423455222104 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: (alberta, be, $x) -> (alberta, is a, state or a province) -> state or a province (14198ms) Where is the highest point on earth? good a place -12.037370582386428 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (the 5th world, was as, good a place) -> good a place (8964ms) Where is the highest point on earth? strathcona county -12.051912335821264 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (strathcona county, is a proxy for, alberta) -> strathcona county (14198ms) Where is the highest point on earth? CANADA. -12.051912335821264 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: (alberta, be, $x) -> (alberta, is a location located within, CANADA.) -> CANADA. (14198ms) Where is the highest point on earth? Medicine Hat -12.051912335821264 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Medicine Hat, is a proxy for, alberta) -> Medicine Hat (14198ms) Where is the highest point on earth? every now -12.075884497542047 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (the 11th World Champion, could be found reading, every now) -> every now (8965ms) Where is the highest point on earth? The Honourable Alison Redford -12.08396697504431 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (The Honourable Alison Redford, is, Alberta) -> The Honourable Alison Redford (14198ms) Where is the highest point on earth? The Golden Tulip Hospitality group -12.085610706060994 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (The Golden Tulip Hospitality group, was placed, 18th world wide) -> The Golden Tulip Hospitality group (8964ms) Where is the highest point on earth? The Canmore Folk Music Festival -12.099589925579835 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (The Canmore Folk Music Festival, is, Alberta) -> The Canmore Folk Music Festival (14299ms) Where is the highest point on earth? The USA -12.09992122733259 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (The USA, was, the country) -> The USA (14299ms) Where is the highest point on earth? July -12.107976295421512 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (7th World Congress, was held from, July) -> July (8964ms) Where is the highest point on earth? The Vibrator Play -12.114295800625435 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (The Vibrator Play, was, our 50th world premiere) -> The Vibrator Play (8965ms) Where is the highest point on earth? DD -12.123044871670043 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (DD, is preparing, the 7th World Conference) -> DD (9003ms) Where is the highest point on earth? the Deaf -12.12523204729992 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (the Deaf, will be hosting, their 15th World Congress) -> the Deaf (9003ms) Where is the highest point on earth? Canadas -12.135336784824705 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: (alberta, be, $x) -> (Alberta, is, Canadas) -> Canadas (14299ms) Where is the highest point on earth? the UK -12.143443876227128 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (the UK, is, the country) -> the UK (14299ms) Where is the highest point on earth? upside down -12.14601584132653 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (the word, is, upside down) -> upside down (14299ms) Where is the highest point on earth? Blue -12.152498731113404 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (The word, is, Blue) -> Blue (14299ms) Where is the highest point on earth? Texas -12.155737903688657 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: (alberta, be, $x) -> (Alberta, is, Texas) -> Texas (14299ms) Where is the highest point on earth? relatively quiet -12.158329705581723 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (the country, is, relatively quiet) -> relatively quiet (14693ms) Where is the highest point on earth? Duisburg/Germany -12.172652893632232 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (The 7th World Games, are being opened in, Duisburg/Germany) -> Duisburg/Germany (9003ms) Where is the highest point on earth? Gorgeous -12.176626722167327 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, have, $x) -> (This world class 14th Floor residence, has, Gorgeous) -> Gorgeous (9003ms) Where is the highest point on earth? Iran -12.18124868034831 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Iran, is, the worlds 5th) -> Iran (9003ms) Where is the highest point on earth? an MIE -12.189574572148206 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (an MIE, is, Alberta) -> an MIE (14693ms) Where is the highest point on earth? more rural -12.193205648635853 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (the country, was, more rural) -> more rural (14693ms) Where is the highest point on earth? relatively untouched -12.193205648635853 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (the country, is, relatively untouched) -> relatively untouched (14693ms) Where is the highest point on earth? just visible -12.200432348009755 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (the word, is, just visible) -> just visible (14693ms) Where is the highest point on earth? online sale -12.201902135913222 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (97th Seoul comic world, is now on, online sale) -> online sale (9003ms) Where is the highest point on earth? The Bible Love -12.209853764926198 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (The Bible Love, is, Joy 8th World Wonder) -> The Bible Love (9003ms) Where is the highest point on earth? mere words -12.210097619210615 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (the words, be, mere words) -> mere words (14693ms) Where is the highest point on earth? the Philippines -12.213195762335387 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (the Philippines, is, the country) -> the Philippines (14693ms) Where is the highest point on earth? somewhat subjective -12.215131010234003 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (the word, is, somewhat subjective) -> somewhat subjective (14803ms) Where is the highest point on earth? democratic instinct -12.224325298825656 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (democratic instinct, is, Alberta) -> democratic instinct (14803ms) Where is the highest point on earth? tomorrow night -12.226914800983401 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (the 100th World Series, is scheduled for, tomorrow night) -> tomorrow night (9003ms) Where is the highest point on earth? 3 candles -12.233119721536848 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what surround the highest point ? -> $x: ($x, surround, the highest point) -> (3 candles, surrounded at, the highest point in your home) -> 3 candles (9042ms) Where is the highest point on earth? the Star -12.233177001069917 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (the Star, was, the word) -> the Star (14803ms) Where is the highest point on earth? debt free -12.245988951212746 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (The country, is, debt free) -> debt free (14803ms) Where is the highest point on earth? excellent status -12.25582824007621 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (excellent status, is well-known for, th world) -> excellent status (9042ms) Where is the highest point on earth? an abbreviation -12.25679661698814 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (the word, is, an abbreviation) -> an abbreviation (14803ms) Where is the highest point on earth? Sandton Convention Centre -12.272668395606033 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (the 58th Miss World, was held at, Sandton Convention Centre) -> Sandton Convention Centre (9042ms) Where is the highest point on earth? T&T Honda -12.279298167870024 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (T&T Honda, is, Alberta) -> T&T Honda (14803ms) Where is the highest point on earth? ASC -12.282514608762046 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (ASC, is, Alberta) -> ASC (14803ms) Where is the highest point on earth? AWA -12.289096270767315 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (AWA, is, Alberta) -> AWA (14803ms) Where is the highest point on earth? Heart disease -12.292092440171691 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Heart disease, is, the country) -> Heart disease (14875ms) Where is the highest point on earth? a professional poker player -12.294029265567453 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (th entire world, is, a professional poker player) -> a professional poker player (9042ms) Where is the highest point on earth? NorQuest NorQuest -12.296989432952223 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (NorQuest NorQuest, is, Alberta) -> NorQuest NorQuest (14875ms) Where is the highest point on earth? a Church -12.31091361583577 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (The 16th century world, was dominated by, a Church) -> a Church (9042ms) Where is the highest point on earth? James E. West -12.314617935273525 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (the 4th World Jamboree, was written by, James E. West) -> James E. West (9042ms) Where is the highest point on earth? the Holy Spirit -12.330998334459014 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (the Holy Spirit, is, the Word) -> the Holy Spirit (14875ms) Where is the highest point on earth? ones and zeros -12.33332619332936 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (th informatized world, is in, ones and zeros) -> ones and zeros (9080ms) Where is the highest point on earth? similar sounds -12.334854527348053 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, have, $x) -> (the word or words, have, similar sounds) -> similar sounds (14875ms) Where is the highest point on earth? an NFL record -12.338715177706064 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (their 12th world championship, is still, an NFL record) -> an NFL record (9080ms) Where is the highest point on earth? Protesters and plan -12.340976322389118 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Protesters and plan, was launched on, 15th World dachuanlian) -> Protesters and plan (9080ms) Where is the highest point on earth? coach Linzy DAVIS -12.345853342446683 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (coach Linzy DAVIS, was going for, his 6th WORLD) -> coach Linzy DAVIS (9080ms) Where is the highest point on earth? awash in weapons -12.349659782643537 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (The country, is, awash in weapons) -> awash in weapons (14875ms) Where is the highest point on earth? a womans heart -12.357496828637846 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (ths world, is, a womans heart) -> a womans heart (9080ms) Where is the highest point on earth? three syllables -12.358177167865167 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (the word, is, three syllables) -> three syllables (14875ms) Where is the highest point on earth? South Korea -12.363704505728009 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (South Korea, is, the worlds 12th) -> South Korea (9080ms) Where is the highest point on earth? Alberta Foreclosure Stoppers -12.365037944854718 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Alberta Foreclosure Stoppers, is, Alberta) -> Alberta Foreclosure Stoppers (15607ms) Where is the highest point on earth? just like person -12.37006090150749 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (the country, is, just like person) -> just like person (15607ms) Where is the highest point on earth? near economic collapse -12.37006090150749 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (The country, is, near economic collapse) -> near economic collapse (15607ms) Where is the highest point on earth? a bit harsh -12.373112421860684 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (The word, is, a bit harsh) -> a bit harsh (15607ms) Where is the highest point on earth? Blogs Caramoan -12.373295487034703 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Blogs Caramoan, is, the country) -> Blogs Caramoan (15608ms) Where is the highest point on earth? hospital -12.376035482591034 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (the 10th World Champion, was taken to, hospital) -> hospital (9080ms) Where is the highest point on earth? MISS CCEMC Proposals -12.377496267275951 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (MISS CCEMC Proposals, Are, Alberta) -> MISS CCEMC Proposals (15607ms) Where is the highest point on earth? 4100 meters -12.384979503655558 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in asia ? -> $x: ($x, be the highest point in, asia) -> (4100 meters, is the highest point in, Southeastern Asia) -> 4100 meters (9119ms) Where is the highest point on earth? strong advocate -12.387901891120322 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (strong advocate, was, Alberta) -> strong advocate (15743ms) Where is the highest point on earth? Sites Caramoan -12.398997857129697 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Sites Caramoan, is, the country) -> Sites Caramoan (15742ms) Where is the highest point on earth? wealthy in natural resources -12.400158676233191 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (The country, is, wealthy in natural resources) -> wealthy in natural resources (15742ms) Where is the highest point on earth? On the ground -12.406124189360424 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (On the ground, was, the words) -> On the ground (15742ms) Where is the highest point on earth? AUPE -12.40757877688081 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (AUPE, is, Alberta) -> AUPE (15742ms) Where is the highest point on earth? What really caught my attention -12.40799317182725 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (What really caught my attention, was, the word) -> What really caught my attention (15743ms) Where is the highest point on earth? unions -12.411132656779333 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (unions, is, Alberta) -> unions (15742ms) Where is the highest point on earth? any other province -12.413291564121305 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (any other province, is, Alberta) -> any other province (15743ms) Where is the highest point on earth? an astonishing landscape -12.416400943244854 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (an astonishing landscape, is, Alberta) -> an astonishing landscape (15865ms) Where is the highest point on earth? a distinct person -12.417667794387619 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (The Word, is, a distinct person) -> a distinct person (15865ms) Where is the highest point on earth? Travel Caramoan -12.419398975993648 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: ($x, be, the country) -> (Travel Caramoan, is, the country) -> Travel Caramoan (15865ms) Where is the highest point on earth? big -12.426082333985763 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (big, is, Alberta) -> big (15865ms) Where is the highest point on earth? FNMI education -12.426931836168198 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (FNMI education, is, Alberta) -> FNMI education (15865ms) Where is the highest point on earth? part of the Mongol empire -12.436069850465525 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (the countries, was, part of the Mongol empire) -> part of the Mongol empire (15865ms) Where is the highest point on earth? incivility -12.438539792853042 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (the Top Words words, were, incivility) -> incivility (15865ms) Where is the highest point on earth? dependent on imports -12.44138714936385 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (the country, is, dependent on imports) -> dependent on imports (15961ms) Where is the highest point on earth? an importnt part -12.444735155531784 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (th world, is deprived of, an importnt part) -> an importnt part (9119ms) Where is the highest point on earth? a smear campaign -12.44545896974151 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (the word?s, been the target of, a smear campaign) -> a smear campaign (15961ms) Where is the highest point on earth? the water -12.450655707647336 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point on land ? -> $x: ($x, be the highest point on, land) -> $x: ($x, highest point on, land) -> (the water, reached its highest point on, land) -> the water (15961ms) Where is the highest point on earth? a link -12.457140806615735 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (the word Wiki Word, is, a link) -> a link (15961ms) Where is the highest point on earth? Bernhard Tieff -12.476970965507643 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (Bernhard Tieff, is, the word) -> Bernhard Tieff (15961ms) Where is the highest point on earth? an ally of the United States -12.480091692682574 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (the country, was, an ally of the United States) -> an ally of the United States (15961ms) Where is the highest point on earth? an Evangelical scholar -12.488125384335724 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (an Evangelical scholar, is, 20th Century World Christianity) -> an Evangelical scholar (9119ms) Where is the highest point on earth? even part of my vocabulary -12.489724365038086 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (the word, was, even part of my vocabulary) -> even part of my vocabulary (15961ms) Where is the highest point on earth? a form of exaggeration -12.490063248753005 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (The word, is, a form of exaggeration) -> a form of exaggeration (15961ms) Where is the highest point on earth? Canyon Ski Area -12.494210400587253 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (Canyon Ski Area, is, Alberta) -> Canyon Ski Area (16229ms) Where is the highest point on earth? a name for the Messiah -12.502154578159 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (the word, is, a name for the Messiah) -> a name for the Messiah (16229ms) Where is the highest point on earth? where we want to be -12.51144269218218 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (The country, is, where we want to be) -> where we want to be (16229ms) Where is the highest point on earth? a record attendee -12.53375846800602 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, have, $x) -> (the 14th WorldCon, has been recognized as, a record attendee) -> a record attendee (9119ms) Where is the highest point on earth? A-Channel?s only concern -12.547262217080586 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (A-Channel?s only concern, is, Alberta) -> A-Channel?s only concern (16229ms) Where is the highest point on earth? constant frantic energy -12.561472348456906 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (Th modern world, is one of, constant frantic energy) -> constant frantic energy (9120ms) Where is the highest point on earth? in -12.56437210887549 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (the country, is, in) -> in (16229ms) Where is the highest point on earth? a comfortable margin -12.569471587282507 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (a comfortable margin, was, her 9th World Title) -> a comfortable margin (9120ms) Where is the highest point on earth? the Federal Reserve -12.601789180307577 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (the 4th World, would be, the Federal Reserve) -> the Federal Reserve (9119ms) Where is the highest point on earth? system -12.603320944574527 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (system, is best in, th world) -> system (16229ms) Where is the highest point on earth? Tiffany jewelry -12.609135844685678 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: ($x, be, th world) -> (Tiffany jewelry, can be quit famous everywhere over, th world) -> Tiffany jewelry (16229ms) Where is the highest point on earth? A case in point -12.61168259562206 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (A case in point, is, the word) -> A case in point (16339ms) Where is the highest point on earth? On the back of the picture -12.630510366561566 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (On the back of the picture, are, the words) -> On the back of the picture (16339ms) Where is the highest point on earth? a Moscow hospital -12.652853757155363 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (10th World Chess Champion, was taken to, a Moscow hospital) -> a Moscow hospital (16339ms) Where is the highest point on earth? natural gas -12.655789640463464 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: (alberta, have, $x) -> (Alberta, has, natural gas) -> natural gas (16339ms) Where is the highest point on earth? On the walls of the places -12.666486898751344 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: ($x, be, the word) -> (On the walls of the places, were, the words) -> On the walls of the places (16339ms) Where is the highest point on earth? Later -12.668506900331277 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, have, $x) -> (the country, had, Later) -> Later (16339ms) Where is the highest point on earth? so true -12.669354038356442 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the word ? -> $x: ($x, be the highest point in, the word) -> $x: (the word, be, $x) -> (the Word, is, so true) -> so true (16589ms) Where is the highest point on earth? five yellow cards -12.676094630927263 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, have, $x) -> (the 19th World Cup final, has seen, five yellow cards) -> five yellow cards (16589ms) Where is the highest point on earth? so diverse -12.684645290685307 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (The country, is, so diverse) -> so diverse (16589ms) Where is the highest point on earth? relatively stable -12.694542838006706 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (The country, is, relatively stable) -> relatively stable (16589ms) Where is the highest point on earth? one of the few places on earth -12.698448748438235 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: (alberta, be, $x) -> (Alberta, is, one of the few places on earth) -> one of the few places on earth (16651ms) Where is the highest point on earth? the Empress Theatre -12.700551665562498 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in alberta ? -> $x: ($x, be the highest point in, alberta) -> $x: ($x, be, alberta) -> (the Empress Theatre, is, Alberta) -> the Empress Theatre (16650ms) Where is the highest point on earth? a nail biting finish -12.728262313721796 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, have, $x) -> (the 18th World Memory Championship, had, a nail biting finish) -> a nail biting finish (16651ms) Where is the highest point on earth? more diverse -12.731655387056726 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (the country, is, more diverse) -> more diverse (16651ms) Where is the highest point on earth? tour -12.734950653854277 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (th Worlds, is on, tour) -> tour (16651ms) Where is the highest point on earth? easily accessible -12.736450952120773 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (the country, is, easily accessible) -> easily accessible (16650ms) Where is the highest point on earth? so far -12.741752203351812 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in the country ? -> $x: ($x, be the highest point in, the country) -> $x: (the country, be, $x) -> (The country, was, so far) -> so far (16650ms) Where is the highest point on earth? convention -12.752760756416617 Where is the highest point on earth? -> where be [ the highest point ] on earth ? -> what be the highest point in th world ? -> $x: ($x, be the highest point in, th world) -> $x: (th world, be, $x) -> (19th World Science Fiction Convention, is a, convention) -> convention (16651ms) When was Hiroshima bombed? 1945 1.9640372080376975 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> (Hiroshima, was bombed in, 1945) -> 1945 (4006ms) When was Hiroshima bombed? August 6 0.8801282130439216 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, August 6) -> August 6 (5321ms) When was Hiroshima bombed? 1999 0.41705086832427307 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1999) -> 1999 (6697ms) When was Hiroshima bombed? 1994 0.41705086832427307 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1994) -> 1994 (6236ms) When was Hiroshima bombed? 1946 0.41705086832427307 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1946) -> 1946 (6697ms) When was Hiroshima bombed? 2004 0.41705086832427307 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 2004) -> 2004 (6697ms) When was Hiroshima bombed? 1976 0.41705086832427307 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1976) -> 1976 (6235ms) When was Hiroshima bombed? 1990 0.41705086832427307 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1990) -> 1990 (6236ms) When was Hiroshima bombed? 1989 0.41705086832427307 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1989) -> 1989 (6697ms) When was Hiroshima bombed? 1997 0.41705086832427307 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1997) -> 1997 (6698ms) When was Hiroshima bombed? 1985 0.41705086832427307 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1985) -> 1985 (6738ms) When was Hiroshima bombed? 2000 0.41705086832427307 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 2000) -> 2000 (6738ms) When was Hiroshima bombed? 1971 0.41705086832427307 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1971) -> 1971 (6738ms) When was Hiroshima bombed? 1995 0.41705086832427307 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1995) -> 1995 (6236ms) When was Hiroshima bombed? 1982 0.41705086832427307 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1982) -> 1982 (6236ms) When was Hiroshima bombed? 1987 0.41705086832427307 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1987) -> 1987 (6236ms) When was Hiroshima bombed? 1972 0.41705086832427307 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1972) -> 1972 (6697ms) When was Hiroshima bombed? 2007 0.34047470094089993 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima Dreams, Publication date, 2007) -> 2007 (6798ms) When was Hiroshima bombed? 2005 0.34047470094089993 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Beyond Hiroshima, Publication date, 2005) -> 2005 (6763ms) When was Hiroshima bombed? 1992 0.34047470094089993 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (My Hiroshima, Publication date, 1992) -> 1992 (6798ms) When was Hiroshima bombed? 2003 0.34047470094089993 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima Joe, Publication date, 2003) -> 2003 (6798ms) When was Hiroshima bombed? 2009 0.280915459642721 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Shambling towards Hiroshima, Publication date, 2009) -> 2009 (6906ms) When was Hiroshima bombed? 1964 0.280915459642721 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (The Hiroshima pilot, Publication date, 1964) -> 1964 (6846ms) When was Hiroshima bombed? 1996 0.280915459642721 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima (Apple Paperbacks), Publication date, 1996) -> 1996 (6882ms) When was Hiroshima bombed? 1984 0.280915459642721 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima and Nagasaki, Publication date, 1984) -> 1984 (6822ms) When was Hiroshima bombed? 1961 0.280915459642721 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima mon amour, Publication date, 1961) -> 1961 (6882ms) When was Hiroshima bombed? 1970 0.280915459642721 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Return to Hiroshima, Publication date, 1970) -> 1970 (6846ms) When was Hiroshima bombed? 1966 0.280915459642721 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Postscript from Hiroshima, Publication date, 1966) -> 1966 (6821ms) When was Hiroshima bombed? 1983 0.280915459642721 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Shadows of Hiroshima, Publication date, 1983) -> 1983 (6821ms) When was Hiroshima bombed? 1978 0.280915459642721 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (The Hiroshima watch, Publication date, 1978) -> 1978 (6882ms) When was Hiroshima bombed? 1965 0.280915459642721 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (The Hiroshima pilot, Publication date, 1965) -> 1965 (6882ms) When was Hiroshima bombed? 1993 0.23326806660417843 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (A soul remembers Hiroshima, Publication date, 1993) -> 1993 (6906ms) When was Hiroshima bombed? 1975 0.23326806660417843 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (The legacy of Hiroshima, Publication date, 1975) -> 1975 (6929ms) When was Hiroshima bombed? 2006 0.23326806660417843 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (BY HELLSHIP TO HIROSHIMA, Publication date, 2006) -> 2006 (6929ms) When was Hiroshima bombed? 1977 0.23326806660417843 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima flows through us, Publication date, 1977) -> 1977 (6953ms) When was Hiroshima bombed? 1960 0.23326806660417843 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (The flowers of Hiroshima, Publication date, 1960) -> 1960 (6906ms) When was Hiroshima bombed? 1974 0.23326806660417843 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (New Letters from Hiroshima, Publication date, 1974) -> 1974 (6929ms) When was Hiroshima bombed? 1959 0.23326806660417843 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (The flowers of Hiroshima, Publication date, 1959) -> 1959 (6930ms) When was Hiroshima bombed? 1962 0.23326806660417843 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (The legacy of Hiroshima, Publication date, 1962) -> 1962 (6929ms) When was Hiroshima bombed? 1988 0.1942838359362793 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Bajo El Puente de Hiroshima, Publication date, 1988) -> 1988 (6954ms) When was Hiroshima bombed? 1980 0.1942838359362793 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Peace march, Nagasaki to Hiroshima, Publication date, 1980) -> 1980 (6975ms) When was Hiroshima bombed? 1973 0.1942838359362793 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (The Hiroshima atomic bomb blast, Publication date, 1973) -> 1973 (6999ms) When was Hiroshima bombed? 6 August 0.08092750529144066 When was Hiroshima bombed? -> $x: (Hiroshima bombed, be on, $x) -> (The Hiroshima bomb, was dropped on, 6 August) -> 6 August (5321ms) When was Hiroshima bombed? 1968 -0.05672997201199781 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was established in, 1968) -> 1968 (7050ms) When was Hiroshima bombed? 1589 -0.10264367646700823 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was founded in, 1589) -> 1589 (7070ms) When was Hiroshima bombed? 1986 -0.19555847074271115 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima: la bombe, Publication date, 1986) -> 1986 (7251ms) When was Hiroshima bombed? 1958 -0.4261698392577986 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be open in, $x) -> (Hiroshima Bay, was opened in, 1958) -> 1958 (7305ms) When was Hiroshima bombed? August 6th -0.5237802977436976 When was Hiroshima bombed? -> $x: (Hiroshima bombed, be on, $x) -> (The Hiroshima bomb, was dropped on, August 6th) -> August 6th (5321ms) When was Hiroshima bombed? 1957 -0.578003640313089 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be build in, $x) -> (Hiroshima Municipal Stadium, was built in, 1957) -> 1957 (7305ms) When was Hiroshima bombed? 1998 -0.5976887336132326 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be establish in, $x) -> (the Hiroshima Peace Institute, was established in, 1998) -> 1998 (5811ms) When was Hiroshima bombed? August 6 , 1945 and Nagasaki -0.7290391237700387 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed on, $x) -> (Hiroshima, was bombed on, August 6 , 1945 and Nagasaki) -> August 6 , 1945 and Nagasaki (5321ms) When was Hiroshima bombed? uranium-235 -0.7577222857407269 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, uranium-235) -> uranium-235 (5442ms) When was Hiroshima bombed? August 6 , 1945 -0.9783189371002023 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed on, $x) -> (Hiroshima, was bombed on, August 6 , 1945) -> August 6 , 1945 (5442ms) When was Hiroshima bombed? 1986-04-01 -1.036759884976648 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima Joe, Publication date, 1986-04-01) -> 1986-04-01 (7325ms) When was Hiroshima bombed? 1987-10-29 -1.036759884976648 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Saint Hiroshima, Publication date, 1987-10-29) -> 1987-10-29 (7325ms) When was Hiroshima bombed? 2009-02-01 -1.0963191262748269 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Shambling Towards Hiroshima, Publication date, 2009-02-01) -> 2009-02-01 (7325ms) When was Hiroshima bombed? 1982-08-01 -1.0963191262748269 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima No Pika, Publication date, 1982-08-01) -> 1982-08-01 (7350ms) When was Hiroshima bombed? 1949 -1.2403109184574834 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was proclaimed in, 1949) -> 1949 (7350ms) When was Hiroshima bombed? Obon -1.3923077880004175 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (Obon, is, Hiroshima) -> Obon (5601ms) When was Hiroshima bombed? 08.15 -1.63969620549118 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> (9:48 am Hiroshima and Nagasaki, were bombed in, 08.15) -> 08.15 (5601ms) When was Hiroshima bombed? 1 hour -1.6708761904662721 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, are, 1 hour) -> 1 hour (5601ms) When was Hiroshima bombed? 15 kilotons -1.6738916007254385 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, 15 kilotons) -> 15 kilotons (5671ms) When was Hiroshima bombed? 2 + 2 -1.7027073225241085 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, IS, 2 + 2) -> 2 + 2 (5672ms) When was Hiroshima bombed? the 2006 dystopian film -1.7423534500890976 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, is featured in, the 2006 dystopian film) -> the 2006 dystopian film (7419ms) When was Hiroshima bombed? Rhapsody in August -1.7478341700746203 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Atomic bombings of Hiroshima and Nagasaki, Films On This Subject, Rhapsody in August) -> Rhapsody in August (7419ms) When was Hiroshima bombed? 12 kilotons -1.7503893997813122 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, 12 kilotons) -> 12 kilotons (5672ms) When was Hiroshima bombed? 1955 -1.7507635858729906 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, open in, $x) -> (The Hiroshima Peace Memorial Museum, opened in, 1955) -> 1955 (5755ms) When was Hiroshima bombed? a 100 % -1.7937331005418162 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a 100 %) -> a 100 % (5672ms) When was Hiroshima bombed? DYING -1.798062301385111 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (HIROSHIMA, WAS, DYING) -> DYING (5755ms) When was Hiroshima bombed? 1957 and houses -1.8408916572588994 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima Castle, was restored in, 1957 and houses) -> 1957 and houses (7419ms) When was Hiroshima bombed? May 2008 -1.8594597824911072 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, is the place to be in, May 2008) -> May 2008 (7419ms) When was Hiroshima bombed? choice -1.9360969073515908 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (choice, is, Hiroshima) -> choice (5756ms) When was Hiroshima bombed? civilians -1.958986334476486 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, were, civilians) -> civilians (5756ms) When was Hiroshima bombed? August 1945 -2.0020018633372585 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be destroy in, $x) -> (Hiroshima and Nagasaki, were destroyed in, August 1945) -> August 1945 (5811ms) When was Hiroshima bombed? interest -2.005848793459849 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (interest, is, Hiroshima) -> interest (5811ms) When was Hiroshima bombed? a 13-kiloton nuclear device -2.0335368093642208 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a 13-kiloton nuclear device) -> a 13-kiloton nuclear device (5811ms) When was Hiroshima bombed? humanists -2.103110562435551 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, are, humanists) -> humanists (7520ms) When was Hiroshima bombed? 20th century -2.1522381333762564 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Hiroshima, Subjects, 20th century) -> 20th century (7520ms) When was Hiroshima bombed? World War II -2.294407853904045 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> (Hiroshima, was bombed back in, World War II) -> World War II (7520ms) When was Hiroshima bombed? Aug 6 -2.3542675606117633 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed on, $x) -> (HIROSHIMA Hiroshima, was bombed on, Aug 6) -> Aug 6 (7587ms) When was Hiroshima bombed? Aug 6th -2.35515174701286 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed on, $x) -> (Hiroshima, was bombed on, Aug 6th) -> Aug 6th (7587ms) When was Hiroshima bombed? average 2.25 cm -2.3914829899926437 When was Hiroshima bombed? -> $x: (Hiroshima bombed, be on, $x) -> (the Hiroshima bomb, were on, average 2.25 cm) -> average 2.25 cm (7587ms) When was Hiroshima bombed? city -2.4393258574819034 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (hiroshima, is a, city) -> city (7624ms) When was Hiroshima bombed? book -2.4393258574819034 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (hiroshima, is a, book) -> book (7624ms) When was Hiroshima bombed? nuclear holocaust -2.4606149150946477 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (nuclear holocaust, were, Hiroshima) -> nuclear holocaust (7624ms) When was Hiroshima bombed? August -2.4875298446419474 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was in, August) -> August (7624ms) When was Hiroshima bombed? Asia -2.5897206702616633 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Hiroshima, Subjects, Asia) -> Asia (7624ms) When was Hiroshima bombed? a subject -2.678928306834856 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a subject) -> a subject (7644ms) When was Hiroshima bombed? a little -2.6865584588858633 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, were, a little) -> a little (7644ms) When was Hiroshima bombed? question -2.6981567777812927 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (question, is, Hiroshima) -> question (7644ms) When was Hiroshima bombed? Textured Hair -2.725208005229063 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (Textured Hair, is, Hiroshima) -> Textured Hair (7644ms) When was Hiroshima bombed? attendance -2.731756282641322 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (attendance, were, Hiroshima) -> attendance (7644ms) When was Hiroshima bombed? native Japanese -2.7514971084933406 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, native Japanese) -> native Japanese (7671ms) When was Hiroshima bombed? a military base -2.7969733891679027 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a military base) -> a military base (7671ms) When was Hiroshima bombed? America???s revenge -2.8063173504911627 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, America???s revenge) -> America???s revenge (7671ms) When was Hiroshima bombed? a blunder -2.853054645800142 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a blunder) -> a blunder (7693ms) When was Hiroshima bombed? a nuclear attack -2.8787104351494066 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a nuclear attack) -> a nuclear attack (7693ms) When was Hiroshima bombed? 1985-08 -2.887947307523957 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, publication date, $x) -> (Hiroshima, Publication date, 1985-08) -> 1985-08 (7693ms) When was Hiroshima bombed? an environment -2.8971345796288945 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, an environment) -> an environment (7693ms) When was Hiroshima bombed? simple military necessities -2.907953523428914 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, were, simple military necessities) -> simple military necessities (7715ms) When was Hiroshima bombed? a hell -2.9317482368413414 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a hell) -> a hell (7716ms) When was Hiroshima bombed? Fudoin ryokan -2.941599661736967 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (Fudoin ryokan, is, Hiroshima) -> Fudoin ryokan (7714ms) When was Hiroshima bombed? one such response -2.970149564846553 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, one such response) -> one such response (7737ms) When was Hiroshima bombed? Japan -2.984423460841673 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, Japan) -> Japan (7737ms) When was Hiroshima bombed? Next stop -2.992883105428108 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (Next stop, was, Hiroshima) -> Next stop (7737ms) When was Hiroshima bombed? an ammunition depot -2.9963733229890606 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, an ammunition depot) -> an ammunition depot (7737ms) When was Hiroshima bombed? Aug 6 , 1945 -3.0058993653736623 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, occur in, $x) -> (Hiroshima, occurred in, Aug 6 , 1945) -> Aug 6 , 1945 (7757ms) When was Hiroshima bombed? a great honour -3.009636277112394 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a great honour) -> a great honour (7757ms) When was Hiroshima bombed? First stop -3.0362088188070846 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (First stop, was, Hiroshima) -> First stop (7757ms) When was Hiroshima bombed? a port city -3.046251244933885 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a port city) -> a port city (7756ms) When was Hiroshima bombed? a well known symbol -3.0681148866817667 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a well known symbol) -> a well known symbol (7757ms) When was Hiroshima bombed? a uranium bomb -3.071530115723579 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a uranium bomb) -> a uranium bomb (7784ms) When was Hiroshima bombed? a small market -3.084336302628948 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a small market) -> a small market (7784ms) When was Hiroshima bombed? japan -3.08906303528022 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (hiroshima, is a city located in the country, japan) -> japan (7784ms) When was Hiroshima bombed? the Atomic Bomb -3.0979915085452845 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, the Atomic Bomb) -> the Atomic Bomb (7784ms) When was Hiroshima bombed? a fully rebuilt city -3.1026631987724436 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a fully rebuilt city) -> a fully rebuilt city (7784ms) When was Hiroshima bombed? final assembly location -3.1056216078939967 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (final assembly location, was, Hiroshima) -> final assembly location (7784ms) When was Hiroshima bombed? The Guardian last August -3.1117360162126446 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (The Guardian last August, has come to be known as, Hiroshima Day) -> The Guardian last August (7803ms) When was Hiroshima bombed? a beautiful spectacle -3.1121386490697147 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a beautiful spectacle) -> a beautiful spectacle (7803ms) When was Hiroshima bombed? a beautiful city -3.1210451866125264 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a beautiful city) -> a beautiful city (7803ms) When was Hiroshima bombed? a sobering experience -3.1210451866125264 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a sobering experience) -> a sobering experience (7803ms) When was Hiroshima bombed? a special case -3.1554643624486913 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a special case) -> a special case (7803ms) When was Hiroshima bombed? a fast paced engaging book -3.187233369278125 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a fast paced engaging book) -> a fast paced engaging book (7867ms) When was Hiroshima bombed? a long time practitioner -3.20788269806031 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a long time practitioner) -> a long time practitioner (7867ms) When was Hiroshima bombed? a two hour flight -3.212239114640832 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a two hour flight) -> a two hour flight (7867ms) When was Hiroshima bombed? a modern Mephistopheles -3.223486963022719 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a modern Mephistopheles) -> a modern Mephistopheles (7867ms) When was Hiroshima bombed? a very successful meeting -3.2246824504903246 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a very successful meeting) -> a very successful meeting (7867ms) When was Hiroshima bombed? an important sake prefecture -3.258282008052649 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, an important sake prefecture) -> an important sake prefecture (7867ms) When was Hiroshima bombed? a communications center -3.262391638991623 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a communications center) -> a communications center (7968ms) When was Hiroshima bombed? a more manageable size -3.276850133284857 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a more manageable size) -> a more manageable size (7968ms) When was Hiroshima bombed? a very industrial city -3.3069128398382053 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a very industrial city) -> a very industrial city (7968ms) When was Hiroshima bombed? World history -3.331005006780124 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Hiroshima, Subjects, World history) -> World history (8021ms) When was Hiroshima bombed? Nuclear weapon -3.331005006780124 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Hiroshima, Subjects, Nuclear weapon) -> Nuclear weapon (7968ms) When was Hiroshima bombed? Modern history -3.331005006780124 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Hiroshima, Subjects, Modern history) -> Modern history (7968ms) When was Hiroshima bombed? Military history -3.331005006780124 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Hiroshima, Subjects, Military history) -> Military history (7968ms) When was Hiroshima bombed? a three-piece Indie pop act -3.331422165364446 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, are, a three-piece Indie pop act) -> a three-piece Indie pop act (8021ms) When was Hiroshima bombed? the Consulate General?s jurisdiction -3.331670375282679 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the Consulate General?s jurisdiction, is, Hiroshima) -> the Consulate General?s jurisdiction (8021ms) When was Hiroshima bombed? a major military target -3.3352071735893603 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a major military target) -> a major military target (8021ms) When was Hiroshima bombed? a VERY important part -3.35465953792496 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a VERY important part) -> a VERY important part (8021ms) When was Hiroshima bombed? Wonders Are Many -3.3718456293845893 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Atomic bombings of Hiroshima and Nagasaki, Films On This Subject, Wonders Are Many) -> Wonders Are Many (8021ms) When was Hiroshima bombed? quiet -3.375278280699085 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, quiet) -> quiet (8118ms) When was Hiroshima bombed? William Shawn -3.3894027714818487 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, William Shawn) -> William Shawn (8118ms) When was Hiroshima bombed? the Peace Park and Museum -3.3897792583712443 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, the Peace Park and Museum) -> the Peace Park and Museum (8118ms) When was Hiroshima bombed? World War II buffs -3.395268071271096 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (World War II buffs, are, Hiroshima) -> World War II buffs (8118ms) When was Hiroshima bombed? a picturesque , quiet city -3.439294329260192 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a picturesque , quiet city) -> a picturesque , quiet city (8139ms) When was Hiroshima bombed? An equally huge disappointment -3.4509725523723094 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (An equally huge disappointment, was, Hiroshima) -> An equally huge disappointment (8138ms) When was Hiroshima bombed? Nuclear warfare -3.467140415461676 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (The Hiroshima Panels, Subject, Nuclear warfare) -> Nuclear warfare (8138ms) When was Hiroshima bombed? a very cool city and thanks -3.472303024933091 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a very cool city and thanks) -> a very cool city and thanks (8139ms) When was Hiroshima bombed? Atomic bombings of Hiroshima and Nagasaki -3.514787808500219 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Hiroshima, Subjects, Atomic bombings of Hiroshima and Nagasaki) -> Atomic bombings of Hiroshima and Nagasaki (8156ms) When was Hiroshima bombed? Popular literature -3.553772039168118 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (From Hiroshima to the moon, Subjects, Popular literature) -> Popular literature (8156ms) When was Hiroshima bombed? Shintenchi -3.592797198438004 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (Shintenchi, was, Hiroshima) -> Shintenchi (8173ms) When was Hiroshima bombed? a street corner -3.6144597631765842 When was Hiroshima bombed? -> $x: (Hiroshima bombed, be on, $x) -> (post-bomb Hiroshima, was found on, a street corner) -> a street corner (8192ms) When was Hiroshima bombed? business -3.6390244238587237 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, will be in, business) -> business (8192ms) When was Hiroshima bombed? Destroyed -3.6431318876007923 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, Was, Destroyed) -> Destroyed (8192ms) When was Hiroshima bombed? Authorities Concept Scheme -3.656704038053911 When was Hiroshima bombed? -> $x: (Hiroshima bombed, be in, $x) -> $x: (hiroshima bomb, in, $x) -> (Atomic bomb victims--Japan--Hiroshima-shi--Biography, In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (8215ms) When was Hiroshima bombed? Topical Terms Concept Scheme -3.656704038053911 When was Hiroshima bombed? -> $x: (Hiroshima bombed, be in, $x) -> $x: (hiroshima bomb, in, $x) -> (Atomic bomb victims--Japan--Hiroshima-shi--Biography, In Scheme, Topical Terms Concept Scheme) -> Topical Terms Concept Scheme (8215ms) When was Hiroshima bombed? 8:48 pm Photos -3.657246337689449 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (8:48 pm Photos, have been discovered of, Hiroshima) -> 8:48 pm Photos (8215ms) When was Hiroshima bombed? The Hiroshima Panels -3.657729987615849 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Atomic bombings of Hiroshima and Nagasaki, Art Series on the Subject, The Hiroshima Panels) -> The Hiroshima Panels (8233ms) When was Hiroshima bombed? Black Rain -3.657729987615849 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Atomic bombings of Hiroshima and Nagasaki, Films On This Subject, Black Rain) -> Black Rain (8233ms) When was Hiroshima bombed? Bombed -3.663533006464744 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, Was, Bombed) -> Bombed (8233ms) When was Hiroshima bombed? The Atom Strikes! -3.6755977600053025 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Atomic bombings of Hiroshima and Nagasaki, Films On This Subject, The Atom Strikes!) -> The Atom Strikes! (8254ms) When was Hiroshima bombed? Empire of the Sun -3.6755977600053025 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Atomic bombings of Hiroshima and Nagasaki, Films On This Subject, Empire of the Sun) -> Empire of the Sun (8233ms) When was Hiroshima bombed? Peace Street -3.6838217631872228 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (Peace Street, is, Hiroshima) -> Peace Street (8254ms) When was Hiroshima bombed? A Tale of Two Cities -3.6913634415254086 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Atomic bombings of Hiroshima and Nagasaki, Films On This Subject, A Tale of Two Cities) -> A Tale of Two Cities (8254ms) When was Hiroshima bombed? Battles Without Honor and Humanity -3.6913634415254086 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Atomic bombings of Hiroshima and Nagasaki, Films On This Subject, Battles Without Honor and Humanity) -> Battles Without Honor and Humanity (8254ms) When was Hiroshima bombed? First Yank into Tokyo -3.6913634415254086 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Atomic bombings of Hiroshima and Nagasaki, Films On This Subject, First Yank into Tokyo) -> First Yank into Tokyo (8254ms) When was Hiroshima bombed? B-29 bombers -3.7043073540669402 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (B-29 bombers, had been made upon, Hiroshima) -> B-29 bombers (8281ms) When was Hiroshima bombed? White Light/Black Rain: The Destruction of Hiroshima and Nagasaki -3.705377380654392 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Atomic bombings of Hiroshima and Nagasaki, Films On This Subject, White Light/Black Rain: The Destruction of Hiroshima and Nagasaki) -> White Light/Black Rain: The Destruction of Hiroshima and Nagasaki (8281ms) When was Hiroshima bombed? the bombing 1945 Frank Barrett -3.7201469891178878 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (the bombing 1945 Frank Barrett, has been visiting, Hiroshima) -> the bombing 1945 Frank Barrett (8281ms) When was Hiroshima bombed? 1,000 cranes -3.809030486220635 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (1,000 cranes, will be sent to, the Hiroshima Peace Memorial) -> 1,000 cranes (8281ms) When was Hiroshima bombed? 800 atomic bombs -3.8340213159801912 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (800 atomic bombs, had been used on, Hiroshima) -> 800 atomic bombs (8281ms) When was Hiroshima bombed? petitioner?s exhibit 6 -3.878454840583216 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima victims, are also mentioned in, petitioner?s exhibit 6) -> petitioner?s exhibit 6 (8297ms) When was Hiroshima bombed? ruins -3.8999273005540513 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was certainly in, ruins) -> ruins (8297ms) When was Hiroshima bombed? teaching -3.908955407361732 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (teaching, will be done in, Hiroshima) -> teaching (8298ms) When was Hiroshima bombed? a war crime -3.9149225744469027 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a war crime) -> a war crime (8298ms) When was Hiroshima bombed? nuclear war -3.937001531194654 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (nuclear war, had been demonstrated in, Hiroshima) -> nuclear war (8319ms) When was Hiroshima bombed? Hondori Street -3.937586527844227 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (Hondori Street, is, Hiroshima) -> Hondori Street (8319ms) When was Hiroshima bombed? cities -3.9601717247744963 When was Hiroshima bombed? -> $x: (Hiroshima bombed, be on, $x) -> (100 Hiroshima-sized bombs, were dropped on, cities) -> cities (8318ms) When was Hiroshima bombed? three days -3.9644737510708206 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be bomb, $x) -> (Hiroshima, was bombed, three days) -> three days (8319ms) When was Hiroshima bombed? different -3.999503016197078 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, different) -> different (8335ms) When was Hiroshima bombed? well-known -3.999503016197078 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, well-known) -> well-known (8335ms) When was Hiroshima bombed? small -3.999503016197078 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, small) -> small (8319ms) When was Hiroshima bombed? necessary -3.999503016197078 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, necessary) -> necessary (8335ms) When was Hiroshima bombed? Little Boy -4.012747885520027 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (Little Boy, was dropped on, Hiroshima) -> Little Boy (8335ms) When was Hiroshima bombed? Mazda -4.020839759103643 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (Mazda, is a company headquartered in the city, hiroshima) -> Mazda (8335ms) When was Hiroshima bombed? famous for its oysters -4.061971761270349 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, famous for its oysters) -> famous for its oysters (8369ms) When was Hiroshima bombed? an act of terrorism -4.102950852267778 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, an act of terrorism) -> an act of terrorism (8369ms) When was Hiroshima bombed? rads -4.108719548294754 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (rads, have been found in, Hiroshima) -> rads (8369ms) When was Hiroshima bombed? an atomic bomb -4.111866552193861 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (an atomic bomb, was dropped, Hiroshima) -> an atomic bomb (8369ms) When was Hiroshima bombed? the Times -4.142319053154784 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, were being printed in, the Times) -> the Times (8431ms) When was Hiroshima bombed? Places -4.160680174092382 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Hiroshima, Subjects, Places) -> Places (8431ms) When was Hiroshima bombed? History -4.160680174092382 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Hiroshima, Subjects, History) -> History (8431ms) When was Hiroshima bombed? the time -4.171713613255498 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the time, was, Hiroshima) -> the time (8448ms) When was Hiroshima bombed? global citizenship -4.236744568433925 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (global citizenship, will be held in, Hiroshima) -> global citizenship (8448ms) When was Hiroshima bombed? The New Yorker -4.2531521217732315 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was published in, The New Yorker) -> The New Yorker (8448ms) When was Hiroshima bombed? MacArthur -4.273906082320194 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be bomb, $x) -> (Hiroshima, was bombed, MacArthur) -> MacArthur (8474ms) When was Hiroshima bombed? jeopardy -4.280997666315084 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, may be in, jeopardy) -> jeopardy (8474ms) When was Hiroshima bombed? nuclear weapons -4.314230199303221 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be bomb, $x) -> (Hiroshima and Nagasaki, were bombed with, nuclear weapons) -> nuclear weapons (8474ms) When was Hiroshima bombed? a city -4.314543078058616 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a city) -> a city (8474ms) When was Hiroshima bombed? cancer -4.386069898676176 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (cancer, has been shown in, Hiroshima and Nagasaki survivors) -> cancer (8497ms) When was Hiroshima bombed? bombs -4.41603816936338 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (bombs, had been dropped on, Hiroshima and Nagasaki) -> bombs (8496ms) When was Hiroshima bombed? great part -4.431803239094509 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was in, great part) -> great part (8496ms) When was Hiroshima bombed? better shape -4.4328089947604745 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, is in far, better shape) -> better shape (8496ms) When was Hiroshima bombed? terms -4.478932733494196 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was negligible in, terms) -> terms (8513ms) When was Hiroshima bombed? tune -4.4889702430796525 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (The Hiroshima, are so in, tune) -> tune (8513ms) When was Hiroshima bombed? a military target -4.493043820985951 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a military target) -> a military target (8513ms) When was Hiroshima bombed? charge -4.5002786870086675 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, are still in, charge) -> charge (8513ms) When was Hiroshima bombed? Yakuza -4.518035621881456 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Battles Without Honor and Humanity: Hiroshima Deathmatch, Subjects, Yakuza) -> Yakuza (8699ms) When was Hiroshima bombed? Mr. Shrestha -4.518084195104648 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (Mr. Shrestha, will be in, Hiroshima) -> Mr. Shrestha (8700ms) When was Hiroshima bombed? a living hell -4.53052753095414 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, were in, a living hell) -> a living hell (8699ms) When was Hiroshima bombed? an atomic bomb named Little Boy -4.5353370736454455 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (an atomic bomb named Little Boy, was dropped on, Hiroshima) -> an atomic bomb named Little Boy (8699ms) When was Hiroshima bombed? a modern city -4.539147309944896 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a modern city) -> a modern city (8700ms) When was Hiroshima bombed? the president -4.54128939769539 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, the president) -> the president (8700ms) When was Hiroshima bombed? Hiroshima -4.545524502480616 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Atomic bombings of Hiroshima and Nagasaki, Films On This Subject, Hiroshima) -> Hiroshima (8716ms) When was Hiroshima bombed? Insignificance -4.569086400137039 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Atomic bombings of Hiroshima and Nagasaki, Films On This Subject, Insignificance) -> Insignificance (8716ms) When was Hiroshima bombed? part -4.56912095855883 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was targeted in, part) -> part (8716ms) When was Hiroshima bombed? a big city -4.574023252999025 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, a big city) -> a big city (8716ms) When was Hiroshima bombed? MacArthur?s pilot -4.595772083182176 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be bomb, $x) -> (Hiroshima, was bombed, MacArthur?s pilot) -> MacArthur?s pilot (8716ms) When was Hiroshima bombed? The A-bomb -4.600042705018212 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (The A-bomb, was dropped on, Hiroshima) -> The A-bomb (8738ms) When was Hiroshima bombed? WWII curriculum -4.608024157548755 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, is barely mentioned in, WWII curriculum) -> WWII curriculum (8738ms) When was Hiroshima bombed? peace cranes -4.60808872567601 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (peace cranes, have been sent to, Hiroshima) -> peace cranes (8737ms) When was Hiroshima bombed? excessive numbers -4.609401740018523 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, are now dying in, excessive numbers) -> excessive numbers (8737ms) When was Hiroshima bombed? Hiroshima Witness -4.633296542420876 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Atomic bombings of Hiroshima and Nagasaki, Films On This Subject, Hiroshima Witness) -> Hiroshima Witness (8737ms) When was Hiroshima bombed? Yamaguchi -4.6372816620863055 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (Yamaguchi, was in, Hiroshima) -> Yamaguchi (8737ms) When was Hiroshima bombed? Matouqin Nocturne -4.653716853723109 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Atomic bombings of Hiroshima and Nagasaki, Films On This Subject, Matouqin Nocturne) -> Matouqin Nocturne (8753ms) When was Hiroshima bombed? a mess -4.6569678200820945 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was just in, a mess) -> a mess (8754ms) When was Hiroshima bombed? the order -4.659090808957984 When was Hiroshima bombed? -> $x: (Hiroshima bombed, be on, $x) -> (the Hiroshima bombs, were only on, the order) -> the order (8753ms) When was Hiroshima bombed? a man -4.6637286386499675 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (a man, had been a doctor in, Hiroshima) -> a man (8754ms) When was Hiroshima bombed? a flash -4.666301776808039 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was destroyed in, a flash) -> a flash (8754ms) When was Hiroshima bombed? date -4.6724266188930486 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (date, have been, Hiroshima and Auschwitz) -> date (8754ms) When was Hiroshima bombed? flames -4.674396629287502 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was completely enveloped in, flames) -> flames (8771ms) When was Hiroshima bombed? memory -4.687914765738834 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, is mainly dedicated in, memory) -> memory (8772ms) When was Hiroshima bombed? bloody puddles -4.708251316475531 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, were soaked in, bloody puddles) -> bloody puddles (8771ms) When was Hiroshima bombed? the finals -4.709286974697832 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, the finals) -> the finals (8771ms) When was Hiroshima bombed? the connection -4.722549981523461 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the connection, is, Hiroshima) -> the connection (8771ms) When was Hiroshima bombed? rightly open to question -4.727175587765771 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, rightly open to question) -> rightly open to question (8771ms) When was Hiroshima bombed? the region -4.73928516582622 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the region, is, Hiroshima) -> the region (8790ms) When was Hiroshima bombed? a showcase -4.75062822262386 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be bomb, $x) -> (Hiroshima, was bombed as, a showcase) -> a showcase (8791ms) When was Hiroshima bombed? Appalachia -4.756539422220398 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, is exploded in, Appalachia) -> Appalachia (8790ms) When was Hiroshima bombed? the Uranium bomb -4.756694309639139 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the Uranium bomb, was dropped on, Hiroshima) -> the Uranium bomb (8790ms) When was Hiroshima bombed? defence -4.759247049550005 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (defence, will be the major issue at, Hiroshima Day) -> defence (8791ms) When was Hiroshima bombed? the warrior -4.761062405699363 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the warrior, was, Hiroshima) -> the warrior (8811ms) When was Hiroshima bombed? bomb-damaged artifacts -4.762783847856687 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (bomb-damaged artifacts, will be lent by, Hiroshima and Nagasaki) -> bomb-damaged artifacts (8811ms) When was Hiroshima bombed? a tie-up -4.763707534956216 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima prefecture, is being developed in, a tie-up) -> a tie-up (8811ms) When was Hiroshima bombed? wars -4.771466760576547 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (wars, have been fought since, Hiroshima and Nagasaki) -> wars (8811ms) When was Hiroshima bombed? major journals -4.783159899291816 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, has been published in, major journals) -> major journals (8811ms) When was Hiroshima bombed? age groups -4.791738743185988 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima males, was significantly high in, age groups) -> age groups (8835ms) When was Hiroshima bombed? fiery , emotional , and incredibly memorable -4.795932783577351 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, are, fiery , emotional , and incredibly memorable) -> fiery , emotional , and incredibly memorable (8835ms) When was Hiroshima bombed? Omine-machi -4.803744659946744 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima # 6, was in, Omine-machi) -> Omine-machi (8835ms) When was Hiroshima bombed? the cumulative effect -4.807386349328903 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the cumulative effect, is, Hiroshima) -> the cumulative effect (8835ms) When was Hiroshima bombed? a Korean prince -4.81920559653845 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (a Korean prince, had been stationed in, Hiroshima) -> a Korean prince (8835ms) When was Hiroshima bombed? NEC Hiroshima -4.822948814364111 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (NEC Hiroshima, will be re-assigned to, Hiroshima Elpida) -> NEC Hiroshima (8851ms) When was Hiroshima bombed? London -4.831639456250217 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was staged in, London) -> London (8851ms) When was Hiroshima bombed? conventional human scale -4.8353275820863475 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was built in, conventional human scale) -> conventional human scale (8851ms) When was Hiroshima bombed? a city of military importance -4.837032906893148 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a city of military importance) -> a city of military importance (8852ms) When was Hiroshima bombed? origami cranes -4.842336557870159 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (origami cranes, have been sent to, Hiroshima) -> origami cranes (8851ms) When was Hiroshima bombed? the flame -4.8463376587458304 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the flame, was, Hiroshima) -> the flame (8851ms) When was Hiroshima bombed? the Air and Space museum -4.84937065378509 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, be told in, the Air and Space museum) -> the Air and Space museum (8870ms) When was Hiroshima bombed? Japan 's seventh largest city -4.8550324270659635 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, Japan 's seventh largest city) -> Japan 's seventh largest city (8870ms) When was Hiroshima bombed? the ultimate symbol -4.860438218524532 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, the ultimate symbol) -> the ultimate symbol (8871ms) When was Hiroshima bombed? war -4.869771772649042 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (war, could have been even slightly prepared for, Hiroshima) -> war (8870ms) When was Hiroshima bombed? Genius -4.87539106967053 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (The genius of Einstein leads to Hiroshima., Subjects, Genius) -> Genius (8870ms) When was Hiroshima bombed? Taka -4.876698949563408 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (Taka, has been a popular part of, Hiroshima?s nightlife scene) -> Taka (8870ms) When was Hiroshima bombed? Disarmament -4.8787526207529615 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (Disarmament, will be marking, Hiroshima Day) -> Disarmament (8870ms) When was Hiroshima bombed? paper origami cranes -4.881991483675582 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, is now draped in, paper origami cranes) -> paper origami cranes (8946ms) When was Hiroshima bombed? a new production line -4.88833989788125 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (a new production line, will be built in, Hiroshima) -> a new production line (8946ms) When was Hiroshima bombed? symbolic value -4.890833453091139 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, has been extremely rich in, symbolic value) -> symbolic value (8946ms) When was Hiroshima bombed? The target -4.891923679535094 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (The target, was, Hiroshima) -> The target (8946ms) When was Hiroshima bombed? An Atomic Bomb -4.898301784314418 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (An Atomic Bomb, had been dropped on, Hiroshima) -> An Atomic Bomb (8946ms) When was Hiroshima bombed? Tokyo -4.901491077875861 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, is headquartered in, Tokyo) -> Tokyo (9028ms) When was Hiroshima bombed? American warplanes -4.904588394524861 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be bomb, $x) -> (Hiroshima and Nagasaki, were bombed by, American warplanes) -> American warplanes (9028ms) When was Hiroshima bombed? a large conference -4.909401631025641 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (a large conference, will be held in, Hiroshima) -> a large conference (9028ms) When was Hiroshima bombed? the atomic bomb -4.919287246139424 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the atomic bomb, is, Hiroshima) -> the atomic bomb (9028ms) When was Hiroshima bombed? no sizeable store of explosives -4.920386609990888 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (no sizeable store of explosives, was in, Hiroshima) -> no sizeable store of explosives (9028ms) When was Hiroshima bombed? a city of considerable military importance -4.921187737575264 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, a city of considerable military importance) -> a city of considerable military importance (9028ms) When was Hiroshima bombed? Bintulu -4.921830124213705 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (Bintulu, will be delivered to, Hiroshima Gas) -> Bintulu (9028ms) When was Hiroshima bombed? Dag Hammarskjold Park -4.922656775726418 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima Day, was held in, Dag Hammarskjold Park) -> Dag Hammarskjold Park (9047ms) When was Hiroshima bombed? Iraq -4.923294919536343 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, occur in, $x) -> (Hiroshima-esqe tragedies, are occurring today in, Iraq) -> Iraq (9047ms) When was Hiroshima bombed? the Atom Bomb -4.925882985025565 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the Atom Bomb, had been dropped on, Hiroshima) -> the Atom Bomb (9047ms) When was Hiroshima bombed? the Canadian journal Public -4.927085569856753 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, is forthcoming in, the Canadian journal Public) -> the Canadian journal Public (9047ms) When was Hiroshima bombed? the Japan -4.933861403245552 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, would Barefoot Gen be published in, the Japan) -> the Japan (9047ms) When was Hiroshima bombed? an entire issue -4.9368117256734045 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was first published in, an entire issue) -> an entire issue (9047ms) When was Hiroshima bombed? American POWs -4.939166475136651 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (American POWs, might have been held near, Hiroshima or Nagasaki) -> American POWs (9047ms) When was Hiroshima bombed? Midnight -4.940646459364146 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (Midnight, will be Autumn in, Hiroshima) -> Midnight (9068ms) When was Hiroshima bombed? famous for all the wrong reasons -4.941588856439216 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, famous for all the wrong reasons) -> famous for all the wrong reasons (9068ms) When was Hiroshima bombed? a nuclear bomb -4.946145682399349 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (a nuclear bomb, had been dropped in, Hiroshima) -> a nuclear bomb (9068ms) When was Hiroshima bombed? a Fujiyama mama -4.966149302521352 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (a Fujiyama mama, has been to, Nagasaki and Hiroshima) -> a Fujiyama mama (9068ms) When was Hiroshima bombed? a huge bomb -4.992123954981616 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (a huge bomb, had been dropped on, Hiroshima) -> a huge bomb (9068ms) When was Hiroshima bombed? Final preparations -5.004536615725164 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (Final preparations, have been made for, the American Hiroshima) -> Final preparations (9068ms) When was Hiroshima bombed? a project to collect paper cranes -5.0235626921854175 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (a project to collect paper cranes, to be sent to, Hiroshima) -> a project to collect paper cranes (9177ms) When was Hiroshima bombed? Kyoto -5.033731021024225 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (Kyoto, will be different than in, Hiroshima) -> Kyoto (9177ms) When was Hiroshima bombed? a combat atomic bomb -5.0341679832175465 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (a combat atomic bomb, will be dropped on, Hiroshima) -> a combat atomic bomb (9177ms) When was Hiroshima bombed? the initial target -5.038097435918665 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, the initial target) -> the initial target (9177ms) When was Hiroshima bombed? Nagasaki -5.04144502664653 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, were higher than in, Nagasaki) -> Nagasaki (9177ms) When was Hiroshima bombed? ?An atom bomb -5.049104874276928 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (?An atom bomb, has been dropped on, Hiroshima) -> ?An atom bomb (9177ms) When was Hiroshima bombed? less person -5.050575384636783 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (less person, had been burnt by, the Hiroshima atomic bomb) -> less person (9177ms) When was Hiroshima bombed? Sydney -5.064434189288811 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, will be commemorated in, Sydney) -> Sydney (9201ms) When was Hiroshima bombed? an atomic weapon -5.065114928874286 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be bomb, $x) -> (the day Hiroshima, was bombed with, an atomic weapon) -> an atomic weapon (9201ms) When was Hiroshima bombed? no effects -5.066947869803736 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (no effects, have been seen in, Hiroshima or Nagasaki) -> no effects (9201ms) When was Hiroshima bombed? the United States -5.072188472785354 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be bomb, $x) -> (Hiroshima and Nagasaki, were bombed by, the United States) -> the United States (9201ms) When was Hiroshima bombed? The primary target -5.07572567369347 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (The primary target, was, Hiroshima) -> The primary target (9201ms) When was Hiroshima bombed? A hit -5.076674025620388 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (A hit, would have been like, 20 Hiroshima bombs) -> A hit (9201ms) When was Hiroshima bombed? 60 years ago -5.087176478374883 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be bomb, $x) -> (Hiroshima and Nagasaki, were bombed, 60 years ago) -> 60 years ago (9201ms) When was Hiroshima bombed? manga -5.087956609046806 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be part of, $x) -> (?Hiroshima stories, have long been a part of, manga) -> manga (9201ms) When was Hiroshima bombed? an ' Atomic bomb -5.095242203554891 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (an ' Atomic bomb, had been dropped on, Hiroshima) -> an ' Atomic bomb (9217ms) When was Hiroshima bombed? A & H Bombs -5.100247974726228 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (A & H Bombs, will be held in, Hiroshima and Nagasaki) -> A & H Bombs (9217ms) When was Hiroshima bombed? the Chugoku region -5.102381142789156 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be part of, $x) -> (Hiroshima, is part of, the Chugoku region) -> the Chugoku region (9217ms) When was Hiroshima bombed? the prime target -5.103592640963788 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, the prime target) -> the prime target (9217ms) When was Hiroshima bombed? every four years -5.111585036846871 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (every four years, will be held henceforth first in, Hiroshima) -> every four years (9217ms) When was Hiroshima bombed? the first practical application -5.132892677678614 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the first practical application, was, Hiroshima) -> the first practical application (9231ms) When was Hiroshima bombed? two nuclear bombs -5.176131487363641 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (two nuclear bombs, had been thrown on, Hiroshima and Nagasaki) -> two nuclear bombs (9231ms) When was Hiroshima bombed? the perfect nuclear target -5.203693106534905 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, the perfect nuclear target) -> the perfect nuclear target (9231ms) When was Hiroshima bombed? The most useful books -5.225798030073793 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (The most useful books, were, Hiroshima) -> The most useful books (9231ms) When was Hiroshima bombed? the Fifth Floor -5.257201428644216 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be open in, $x) -> (Hiroshima University Office, was opened in, the Fifth Floor) -> the Fifth Floor (9231ms) When was Hiroshima bombed? the issues -5.268905225707869 When was Hiroshima bombed? -> $x: (Hiroshima bombed, be in, $x) -> (the Hiroshima bombing, were well versed in, the issues) -> the issues (9250ms) When was Hiroshima bombed? the only nuclear incident country -5.288327845167842 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, the only nuclear incident country) -> the only nuclear incident country (9249ms) When was Hiroshima bombed? a bridge balustrade -5.291620551778086 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be part of, $x) -> (The Hiroshima stone, was part of, a bridge balustrade) -> a bridge balustrade (9249ms) When was Hiroshima bombed? the great French writer Albert Camus -5.321336593543036 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, the great French writer Albert Camus) -> the great French writer Albert Camus (9249ms) When was Hiroshima bombed? the most awful option imaginable -5.329759969367947 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, the most awful option imaginable) -> the most awful option imaginable (9249ms) When was Hiroshima bombed? poems -5.335810385142686 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, go to, $x) -> (a ?Hiroshima survivor?, is going to read, poems) -> poems (9249ms) When was Hiroshima bombed? the rubble -5.34848305585246 When was Hiroshima bombed? -> $x: (Hiroshima bombed, be in, $x) -> (Hiroshima bombing victims, were found in, the rubble) -> the rubble (9249ms) When was Hiroshima bombed? a chapter -5.364530970733301 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, subject, $x) -> (Hiroshima, is the subject of, a chapter) -> a chapter (9262ms) When was Hiroshima bombed? The New Yorker magazine -5.484200323832784 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (?Hiroshima?, was published in, The New Yorker magazine) -> The New Yorker magazine (9262ms) When was Hiroshima bombed? a madhouse -5.511566928836208 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, go to, $x) -> (Hiroshima, is going to be, a madhouse) -> a madhouse (9262ms) When was Hiroshima bombed? Benwa and his parents -5.533885820999282 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (Benwa and his parents, had been outside, Hiroshima) -> Benwa and his parents (9262ms) When was Hiroshima bombed? Tsutomu Yamaguchi -5.549559038466793 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (Tsutomu Yamaguchi, was in, Hiroshima) -> Tsutomu Yamaguchi (9262ms) When was Hiroshima bombed? the Packers -5.553210354222145 When was Hiroshima bombed? -> $x: (Hiroshima bombed, be in, $x) -> $x: (hiroshima bomb, in, $x) -> (Hiroshima bomb, blasted in, the Packers) -> the Packers (9285ms) When was Hiroshima bombed? the target -5.559196474596874 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, was, the target) -> the target (9285ms) When was Hiroshima bombed? world federalism -5.577063952916306 When was Hiroshima bombed? -> $x: (Hiroshima bombed, be in, $x) -> $x: (hiroshima bomb, in, $x) -> (the Hiroshima bombing, stimulated interest in, world federalism) -> world federalism (9284ms) When was Hiroshima bombed? a typical reactor -5.58914969294227 When was Hiroshima bombed? -> $x: (Hiroshima bombed, be in, $x) -> $x: (hiroshima bomb, in, $x) -> (several hundred Hiroshima bombs, exists in, a typical reactor) -> a typical reactor (9284ms) When was Hiroshima bombed? a fifty-fold increase -5.646851006414693 When was Hiroshima bombed? -> $x: (Hiroshima bombed, be in, $x) -> $x: (hiroshima bomb, in, $x) -> (40,000 Hiroshima bombs, resulted in, a fifty-fold increase) -> a fifty-fold increase (9285ms) When was Hiroshima bombed? HBO/Cinemax -5.707060790700157 When was Hiroshima bombed? -> $x: (Hiroshima bombed, be on, $x) -> $x: (hiroshima bomb, on, $x) -> (the Hiroshima bombing, aired on, HBO/Cinemax) -> HBO/Cinemax (9300ms) When was Hiroshima bombed? Murasaki -5.727190174460796 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (Murasaki, will be visiting in, Hiroshima pref) -> Murasaki (9300ms) When was Hiroshima bombed? Yoshinori Sakai -5.7287475081090315 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (Yoshinori Sakai, had been born in, Hiroshima) -> Yoshinori Sakai (9300ms) When was Hiroshima bombed? Livermore California -5.764363648391782 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, were arrested in, Livermore California) -> Livermore California (9300ms) When was Hiroshima bombed? Simucad -5.790093415849755 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (Simucad, has been working with, Hiroshima University) -> Simucad (9300ms) When was Hiroshima bombed? the Hiroshima city -5.80400978163037 When was Hiroshima bombed? -> $x: (Hiroshima bombed, be in, $x) -> $x: (hiroshima bomb, in, $x) -> (the Hiroshima Atomic bomb, held next day in, the Hiroshima city) -> the Hiroshima city (9300ms) When was Hiroshima bombed? a new type of bomb -5.818402122131921 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (a new type of bomb, had been dropped on, Hiroshima) -> a new type of bomb (9442ms) When was Hiroshima bombed? home or travel -5.838152885685507 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, go to, $x) -> (Hiroshima, has started to go, home or travel) -> home or travel (9441ms) When was Hiroshima bombed? the bomb -5.849312520597242 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the bomb, was dropped in, Hiroshima) -> the bomb (9441ms) When was Hiroshima bombed? Ramirez -5.860829276578791 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (Ramirez, had been with, the Hiroshima Carp) -> Ramirez (9441ms) When was Hiroshima bombed? The bomb -5.863787344787419 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (The bomb, was dropped over, Hiroshima) -> The bomb (9441ms) When was Hiroshima bombed? The one word response -5.869137141142339 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (The one word response, was, ?Hiroshima) -> The one word response (9441ms) When was Hiroshima bombed? the atomic-bomb -5.9190644067055 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the atomic-bomb, was dropped on, Hiroshima) -> the atomic-bomb (9543ms) When was Hiroshima bombed? the nuclear bomb -5.923703809518684 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the nuclear bomb, was dropped on, Hiroshima) -> the nuclear bomb (9543ms) When was Hiroshima bombed? the capital of Hiroshima Prefecture -5.925290279089783 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, the capital of Hiroshima Prefecture) -> the capital of Hiroshima Prefecture (9543ms) When was Hiroshima bombed? the south -5.956581167184643 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was my last big city in, the south) -> the south (9543ms) When was Hiroshima bombed? The atomic bomb -6.02395363078598 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (The atomic bomb, was used against, Hiroshima) -> The atomic bomb (9632ms) When was Hiroshima bombed? the cold war -6.06451784650535 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was a first shot in, the cold war) -> the cold war (9733ms) When was Hiroshima bombed? the capital city of Hiroshima Prefecture -6.064809880550093 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, the capital city of Hiroshima Prefecture) -> the capital city of Hiroshima Prefecture (9733ms) When was Hiroshima bombed? history -6.082895924492324 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was the first city in, history) -> history (9733ms) When was Hiroshima bombed? Nuclear Free Zone Cities -6.130193322238318 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, go to, $x) -> (Hiroshima, go back to, Nuclear Free Zone Cities) -> Nuclear Free Zone Cities (9733ms) When was Hiroshima bombed? the ashes -6.135293207932817 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (the ashes, will be sent to, Hiroshima) -> the ashes (9733ms) When was Hiroshima bombed? the morning -6.167167538091739 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, am in, the morning) -> the morning (9793ms) When was Hiroshima bombed? the New Yorker -6.179575377995931 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was published in, the New Yorker) -> the New Yorker (9793ms) When was Hiroshima bombed? the horror -6.193200603045379 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the horror, was, Hiroshima) -> the horror (9793ms) When was Hiroshima bombed? the products of a single satanic mindset -6.201178781032032 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, were, the products of a single satanic mindset) -> the products of a single satanic mindset (9793ms) When was Hiroshima bombed? the shower -6.201194409432607 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was in, the shower) -> the shower (9793ms) When was Hiroshima bombed? the place -6.20382232895882 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be, $x) -> (Hiroshima, is, the place) -> the place (9793ms) When was Hiroshima bombed? the headlines -6.2246403919951465 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was in, the headlines) -> the headlines (9992ms) When was Hiroshima bombed? the revitalization -6.301687126796727 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, is investing in, the revitalization) -> the revitalization (9992ms) When was Hiroshima bombed? Sagan -6.363109871859707 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, go to, $x) -> (Hiroshima, went down to, Sagan) -> Sagan (9992ms) When was Hiroshima bombed? the circumstances? -6.3707191301485295 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was ?understandable in, the circumstances?) -> the circumstances? (9992ms) When was Hiroshima bombed? the atmosphere -6.384801702545704 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, is now in, the atmosphere) -> the atmosphere (10040ms) When was Hiroshima bombed? The next stop -6.411686037978488 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (The next stop, is, Hiroshima) -> The next stop (10040ms) When was Hiroshima bombed? the gallery -6.415813216329699 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, are available in, the gallery) -> the gallery (10040ms) When was Hiroshima bombed? Russia -6.418962890884368 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, go to, $x) -> (the Fiftieth Hiroshima Day, go on to perform in, Russia) -> Russia (10040ms) When was Hiroshima bombed? the shadows -6.427397175366631 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (?Hiroshima, is locked in, the shadows) -> the shadows (10040ms) When was Hiroshima bombed? the circumstances -6.450296907590825 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was "understandable in, the circumstances) -> the circumstances (10067ms) When was Hiroshima bombed? the concert -6.4537691377702515 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (the concert, will be in, hiroshima) -> the concert (10067ms) When was Hiroshima bombed? the one i -6.494819010082956 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (the one i, had was from, the Hiroshima Region) -> the one i (10067ms) When was Hiroshima bombed? the fatherhood movement -6.4993652111674125 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, is a pioneer in, the fatherhood movement) -> the fatherhood movement (10067ms) When was Hiroshima bombed? Silicon Valley -6.49995856777408 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, open in, $x) -> (Hiroshima prefecture, will open an office in, Silicon Valley) -> Silicon Valley (10067ms) When was Hiroshima bombed? the history -6.50486899237271 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was the first time in, the history) -> the history (10067ms) When was Hiroshima bombed? The route -6.513074985305401 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (The route, will be from, Hiroshima) -> The route (10067ms) When was Hiroshima bombed? the type -6.5312996863334885 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the type, was dropped on, Hiroshima) -> the type (10098ms) When was Hiroshima bombed? the first Bomb -6.594838501822343 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the first Bomb, was dropped on, Hiroshima) -> the first Bomb (10098ms) When was Hiroshima bombed? the first Atomic bomb -6.605753080814816 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the first Atomic bomb, was dropped on, Hiroshima) -> the first Atomic bomb (10098ms) When was Hiroshima bombed? the same year -6.6374986390106345 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, was composed in, the same year) -> the same year (10098ms) When was Hiroshima bombed? the end -6.66873896188134 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be bomb, $x) -> (Hiroshima and Nagasaki, were A-Bombed at, the end) -> the end (10098ms) When was Hiroshima bombed? the vast flat -6.677222985955674 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, is located in, the vast flat) -> the vast flat (10098ms) When was Hiroshima bombed? the eyes of the world -6.679495131759877 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the eyes of the world, are on, Hiroshima) -> the eyes of the world (10126ms) When was Hiroshima bombed? the right direction -6.687215763758181 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, seems to be headed in, the right direction) -> the right direction (10126ms) When was Hiroshima bombed? the city -6.689541105428488 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima castle, is also in, the city) -> the city (10126ms) When was Hiroshima bombed? the international school -6.723067269271068 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (the international school, has been running in, Hiroshima) -> the international school (10126ms) When was Hiroshima bombed? the first nuclear bomb -6.723455989623275 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the first nuclear bomb, was dropped on, Hiroshima) -> the first nuclear bomb (10126ms) When was Hiroshima bombed? the downtown area -6.7336130433615615 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be in, $x) -> (Hiroshima, injured?most had been in, the downtown area) -> the downtown area (10126ms) When was Hiroshima bombed? the first atomic bomb -6.734683535528092 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the first atomic bomb, was exploded over, Hiroshima) -> the first atomic bomb (10126ms) When was Hiroshima bombed? the national conservative creed -6.7737765888536625 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be part of, $x) -> (Hiroshima, is becoming part of, the national conservative creed) -> the national conservative creed (10159ms) When was Hiroshima bombed? the bombing -6.8017608603122675 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (the bombing, has been equated to, five Hiroshimas) -> the bombing (10159ms) When was Hiroshima bombed? the nuclear bombs -6.9164087056767425 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (the nuclear bombs, had been dropped on, Hiroshima and Nagasaki) -> the nuclear bombs (10159ms) When was Hiroshima bombed? The report -6.916801056687522 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (The report, will be largely compiled at, the Hiroshima Meeting) -> The report (10159ms) When was Hiroshima bombed? the atomic bombing -6.92082179120575 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be destroy in, $x) -> (the Hiroshima castle, was destroyed in, the atomic bombing) -> the atomic bombing (10191ms) When was Hiroshima bombed? the first atomic bomb in history -6.922538598947372 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (the first atomic bomb in history, was dropped on, Hiroshima) -> the first atomic bomb in history (10191ms) When was Hiroshima bombed? the first bomb -6.927475967032526 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (the first bomb, had actually been dropped on, Hiroshima) -> the first bomb (10191ms) When was Hiroshima bombed? the atom bomb -6.956624987229876 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (the atom bomb, had been used on, Hiroshima and Nagasaki) -> the atom bomb (10191ms) When was Hiroshima bombed? The workshop -6.958422912689265 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, will be, Hiroshima) -> (The workshop, will be jointly hosted by, Hiroshima University) -> The workshop (10191ms) When was Hiroshima bombed? the bombs -6.977910292494924 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (the bombs, had just been dropped on, Hiroshima and Nagasaki) -> the bombs (10191ms) When was Hiroshima bombed? the unspeakable horrors -6.97891052172511 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be part of, $x) -> (Hiroshima and Nagasaki, was part of, the unspeakable horrors) -> the unspeakable horrors (10228ms) When was Hiroshima bombed? The first atomic bomb used in war -6.981928701677109 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, be, Hiroshima) -> (The first atomic bomb used in war, was dropped over, Hiroshima) -> The first atomic bomb used in war (10228ms) When was Hiroshima bombed? the atom bombs -7.017207272959126 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: ($x, have be, Hiroshima) -> (the atom bombs, had been dropped on, Hiroshima and Nagasaki) -> the atom bombs (10228ms) When was Hiroshima bombed? 12 to 16 kt -7.05574193363697 When was Hiroshima bombed? -> $x: (Hiroshima bombed, be in, $x) -> $x: (hiroshima bomb, in, $x) -> $x: (hiroshima bomb, have from, $x) -> (the Hiroshima bomb, have varied from, 12 to 16 kt) -> 12 to 16 kt (10228ms) When was Hiroshima bombed? the death -7.45431230057841 When was Hiroshima bombed? -> $x: (Hiroshima bombed, be in, $x) -> $x: (hiroshima bomb, in, $x) -> (the Hiroshima A-bomb, had resulted in, the death) -> the death (10265ms) When was Hiroshima bombed? the atomic explosion -7.674038532520992 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, survive, $x) -> (Hiroshima and Nagasaki, had survived, the atomic explosion) -> the atomic explosion (10265ms) When was Hiroshima bombed? the day -7.717256279546244 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, be bomb, $x) -> (Hiroshima, was bombed, the day) -> the day (10309ms) When was Hiroshima bombed? the discoveries -7.887190790984736 When was Hiroshima bombed? -> $x: (Hiroshima, was bombed in, $x) -> $x: (Hiroshima, go to, $x) -> (Hiroshima, also goes back to, the discoveries) -> the discoveries (10309ms) What is the life expectancy of a dollar bill? 18-22 months -10.311684269603013 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: (a dollar bill, life, $x) -> $x: (dollar bill, life, $x) -> (The average dollar bill, has a life span of, 18-22 months) -> 18-22 months (4074ms) What is the life expectancy of a dollar bill? dollar coins -11.571122498171102 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the lifespan of a dollar bill ? -> $x: (a dollar bill, lifespan, $x) -> $x: (dollar bill, lifespan, $x) -> (dollar bills, have a shorter lifespan than, dollar coins) -> dollar coins (4132ms) What is the life expectancy of a dollar bill? American Revolution Bicentennial two dollar bill postage-stamp cancellations -12.351246376180528 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, prefer, $x) -> (American Revolution Bicentennial two dollar bill postage-stamp cancellations, Preferred Label, American Revolution Bicentennial two dollar bill postage-stamp cancellations) -> American Revolution Bicentennial two dollar bill postage-stamp cancellations (6896ms) What is the life expectancy of a dollar bill? a world -12.942098848574876 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: (a dollar bill, life, $x) -> $x: (dollar bill, life, $x) -> $x: (dollar bill, be live, $x) -> (Hundred Dollar Bill, is still living in, a world) -> a world (5622ms) What is the life expectancy of a dollar bill? a design -13.132936546592418 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, from have, $x) -> (the hundred dollar bill, had been changed from, a design) -> a design (7228ms) What is the life expectancy of a dollar bill? An industrial economy -13.196497414056186 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: ($x, so be, dollar bill) -> (An industrial economy, so is, a dollar bill) -> An industrial economy (7014ms) What is the life expectancy of a dollar bill? Maple Syrup -13.430689154566128 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, like, $x) -> (our hundred dollar bills, smell like, Maple Syrup) -> Maple Syrup (7228ms) What is the life expectancy of a dollar bill? a cheap addition -13.448434321967067 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, like, $x) -> (the dollar bill section, properly be like, a cheap addition) -> a cheap addition (7228ms) What is the life expectancy of a dollar bill? a robot -13.57850475522491 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, like, $x) -> (a dollar bill, might look like to, a robot) -> a robot (7228ms) What is the life expectancy of a dollar bill? such a large amount -13.578805878150398 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, like, $x) -> (a 20 dollar bill, seems like, such a large amount) -> such a large amount (7228ms) What is the life expectancy of a dollar bill? RWR -13.603700764332581 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, like, $x) -> (a twenty-dollar bill, might look like with, RWR) -> RWR (7228ms) What is the life expectancy of a dollar bill? a successful stripper -13.687826903743062 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: ($x, so be, dollar bill) -> (a successful stripper, is so overburdened with, dollar bills) -> a successful stripper (7014ms) What is the life expectancy of a dollar bill? bow ties -13.732354137809647 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, like, $x) -> (the dollar bills, were shaped like, bow ties) -> bow ties (7228ms) What is the life expectancy of a dollar bill? one hundred -13.73942773442301 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, like, $x) -> (A dollar bill, would be like, one hundred) -> one hundred (7330ms) What is the life expectancy of a dollar bill? a life -13.766534533538866 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, to have, $x) -> (a ten-dollar bill, might seem to have, a life) -> a life (6869ms) What is the life expectancy of a dollar bill? comparison list -13.78891919579334 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, to have, $x) -> (the Dollar Bill, has been added to, comparison list) -> comparison list (6869ms) What is the life expectancy of a dollar bill? approx value/site -13.792416346982531 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, like, $x) -> (dollar bill, would like, approx value/site) -> approx value/site (7330ms) What is the life expectancy of a dollar bill? serial numbers -13.827059575865057 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, do have, $x) -> (Dollar bills, do have, serial numbers) -> serial numbers (7090ms) What is the life expectancy of a dollar bill? a Benjamin -13.872778628010833 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, like, $x) -> (a one-dollar bill, looks like, a Benjamin) -> a Benjamin (7330ms) What is the life expectancy of a dollar bill? future payment -13.882646278093567 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, for have, $x) -> (a $ 1 dollar bill, has been promised for, future payment) -> future payment (7014ms) What is the life expectancy of a dollar bill? a postage stamp -13.952377278386672 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, like, $x) -> (A dollar bill, is like, a postage stamp) -> a postage stamp (7330ms) What is the life expectancy of a dollar bill? Dollar bills -13.983066666961873 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: ($x, to keep, dollar bill) -> (Dollar bills, has pushed to keep, the one Dollar bill) -> Dollar bills (6411ms) What is the life expectancy of a dollar bill? a $ 10 bill -14.027485662304276 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, exchange, $x) -> (the five-dollar bills, is exchanged for, a $ 10 bill) -> a $ 10 bill (7014ms) What is the life expectancy of a dollar bill? 358 feet -14.085147543160689 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, to have, $x) -> ($ 1,000 dollar bills, would have to be, 358 feet) -> 358 feet (6869ms) What is the life expectancy of a dollar bill? Money -14.142180776729067 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, like, $x) -> (dollar bills, Look Like, Money) -> Money (7330ms) What is the life expectancy of a dollar bill? one gold coin -14.176801889098527 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, exchange, $x) -> (20 one-dollar bills, could be exchanged for, one gold coin) -> one gold coin (7014ms) What is the life expectancy of a dollar bill? a green piece -14.183542825741862 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, like, $x) -> (a dollar bill, starts looking like, a green piece) -> a green piece (7330ms) What is the life expectancy of a dollar bill? one relationship -14.229341769048197 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, to have, $x) -> (dollar bills, has an one to, one relationship) -> one relationship (6868ms) What is the life expectancy of a dollar bill? a large , lawful city -14.251359731728114 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, value, $x) -> (A ten-dollar bill, has more value in, a large , lawful city) -> a large , lawful city (6609ms) What is the life expectancy of a dollar bill? fine uses -14.334096217541337 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, to put, $x) -> (your thousand-dollar bills, are being put to very, fine uses) -> fine uses (6829ms) What is the life expectancy of a dollar bill? 3 million dollars -14.374789932977098 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, could have, $x) -> (1,000 dollar bills, could have amounted to, 3 million dollars) -> 3 million dollars (7330ms) What is the life expectancy of a dollar bill? Jamestown -14.461783786870575 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, do have, $x) -> (the dollar bill, have to do with, Jamestown) -> Jamestown (7090ms) What is the life expectancy of a dollar bill? Piggy -14.528494781860372 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, to have, $x) -> (the dollar bills, seems to have gone to, Piggy) -> Piggy (6869ms) What is the life expectancy of a dollar bill? one side -14.60800933976805 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, still have, $x) -> (The new twenty-dollar bill, still has the Queen on, one side) -> one side (6609ms) What is the life expectancy of a dollar bill? Portland -14.613870613904906 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, to come to, $x) -> ('s Fundred Dollar Bill Project, is coming to, Portland) -> Portland (6609ms) What is the life expectancy of a dollar bill? Americans -14.68018543722387 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, to have, $x) -> (the dollar bill, has become so familiar to, Americans) -> Americans (6869ms) What is the life expectancy of a dollar bill? money -15.143709204456446 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: ($x, so be, dollar bill) -> (money, so be sure to bring lots of, dollar bills) -> money (7014ms) What is the life expectancy of a dollar bill? the dollar coins -15.143873262384274 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, like, $x) -> (The dollar bills, could be traded around like, the dollar coins) -> the dollar coins (7329ms) What is the life expectancy of a dollar bill? cloth -15.159576221244942 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, like, $x) -> (a dollar bill, is more like, cloth) -> cloth (7426ms) What is the life expectancy of a dollar bill? the number -15.34374606998317 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, have find, $x) -> (a dollar bill, is found to have, the number) -> the number (7014ms) What is the life expectancy of a dollar bill? the innards -15.45897199058267 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, be lose, $x) -> (the five-dollar bill, is lost in, the innards) -> the innards (6609ms) What is the life expectancy of a dollar bill? goods -15.528301146778542 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, exchange, $x) -> (a dollar bill, can be exchanged for, goods) -> goods (7066ms) What is the life expectancy of a dollar bill? substantially more -15.536592482277126 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, value, $x) -> (The higher dollar amount bills, valued at, substantially more) -> substantially more (6609ms) What is the life expectancy of a dollar bill? the sample -15.56380989603964 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, look for, $x) -> (a genuine five dollar bill, Just look for, the sample) -> the sample (7066ms) What is the life expectancy of a dollar bill? students -15.56626856861778 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: ($x, to bring, dollar bill) -> (students, are asked to bring in, a dollar bill) -> students (7065ms) What is the life expectancy of a dollar bill? the one Dollar bill -15.613858348829805 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, to have, $x) -> (Dollar bills, has pushed to keep, the one Dollar bill) -> the one Dollar bill (6896ms) What is the life expectancy of a dollar bill? the campsite -15.614039904542057 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, have find, $x) -> (A hundred dollar bill, has just been found on, the campsite) -> the campsite (7066ms) What is the life expectancy of a dollar bill? the gift shop -15.624726953573685 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: ($x, to keep, dollar bill) -> (the gift shop, will probably need to keep, more dollar bills) -> the gift shop (6411ms) What is the life expectancy of a dollar bill? the ceiling -15.719902361142307 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, to have, $x) -> (dollar bills, had been pinned to, the ceiling) -> the ceiling (6896ms) What is the life expectancy of a dollar bill? silver -15.7630560903148 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, exchange, $x) -> (any dollar bill, could be exchanged for, silver) -> silver (7066ms) What is the life expectancy of a dollar bill? confetti -15.794100235969717 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, like, $x) -> (hundred dollar bills, were flashing around like, confetti) -> confetti (7427ms) What is the life expectancy of a dollar bill? business -15.812880164114578 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, ask about, $x) -> (dollar bills, asked about, business) -> business (7090ms) What is the life expectancy of a dollar bill? the front ...Good news -15.840406660535628 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, to come to, $x) -> (50 hundred dollar bills, please come to, the front ...Good news) -> the front ...Good news (6609ms) What is the life expectancy of a dollar bill? the back -15.900197249135232 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, do have, $x) -> (The dollar bill, does n???t have a building on, the back) -> the back (7090ms) What is the life expectancy of a dollar bill? the money -15.94591258796348 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, don?t have, $x) -> (a hundred-dollar phone bill, don?t have, the money) -> the money (6411ms) What is the life expectancy of a dollar bill? the founding -16.072720491505823 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, do have, $x) -> (The dollar bill, had nothing to do with, the founding) -> the founding (7090ms) What is the life expectancy of a dollar bill? prize -16.089981184941514 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life a dollar bill ? -> $x: (the life a dollar bill, instance of, $x) -> $x: (life dollar bill, instance of, $x) -> (Life Savers with dollar bill wrapping, Instance Of, prize) -> prize (8133ms) What is the life expectancy of a dollar bill? debt -16.15991325466822 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, to have, $x) -> (every hundred-dollar bill, has to pay, debt) -> debt (6896ms) What is the life expectancy of a dollar bill? hype -16.209820452074695 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, for have, $x) -> (The dollar bill, has a soft spot for, hype) -> hype (7065ms) What is the life expectancy of a dollar bill? banks -16.40329359183989 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, reject, $x) -> (older dollar bills, will be rejected by, banks) -> banks (7426ms) What is the life expectancy of a dollar bill? value -16.516682729757164 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, will lose, $x) -> (dollar bills, will lose, value) -> value (7066ms) What is the life expectancy of a dollar bill? vacation -16.761278529128983 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, to save, $x) -> (one-dollar bills, is another good way to save for, vacation) -> vacation (6896ms) What is the life expectancy of a dollar bill? quarters -16.820802894441137 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, to come to, $x) -> (Dollar bills, will soon come to resemble, quarters) -> quarters (6609ms) What is the life expectancy of a dollar bill? the event -17.667792164562794 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, to put, $x) -> (the 20,000-dollar bill, to put on, the event) -> the event (6829ms) What is the life expectancy of a dollar bill? hands -17.70761713007169 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: (dollar bill, exchange, $x) -> (a dollar bill, exchanges, hands) -> hands (7090ms) What is the life expectancy of a dollar bill? techniques -17.781893534082595 What is the life expectancy of a dollar bill? -> what be the life expectancy of [ a dollar bill ] ? -> what be the life of a dollar bill ? -> $x: ($x, be the life of, a dollar bill) -> $x: ($x, life of, dollar bill) -> $x: ($x, inspire, dollar bill) -> (techniques, inspired by, a simple 5 dollar bill) -> techniques (7090ms) Who was the founder of Habitat for Humanity? Hurricane Katrina -4.734485730158193 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (Hurricane Katrina, was the Habitat For, Humanity) -> Hurricane Katrina (3847ms) Who was the founder of Habitat for Humanity? Collier County -5.066855182933777 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (Collier County, was Habitat for, Humanity) -> Collier County (3847ms) Who was the founder of Habitat for Humanity? Build Louder -5.60884952908389 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (Build Louder, is Habitat for, Humanity) -> Build Louder (3847ms) Who was the founder of Habitat for Humanity? the Week -5.748174308080958 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (the Week, is Habitat for, Humanity) -> the Week (3847ms) Who was the founder of Habitat for Humanity? Marathon Petroleum -5.751140816113505 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (Marathon Petroleum, was Habitat for, Humanity) -> Marathon Petroleum (3847ms) Who was the founder of Habitat for Humanity? Navigator Online -5.776528498312991 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (Navigator Online, is helping Habitat for, Humanity) -> Navigator Online (3847ms) Who was the founder of Habitat for Humanity? Collier Construction -5.821191245433194 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (Collier Construction, is helping Habitat for, Humanity) -> Collier Construction (4287ms) Who was the founder of Habitat for Humanity? Grace Lutheran -5.903486202908331 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (Grace Lutheran, is helping Habitat for, Humanity) -> Grace Lutheran (4287ms) Who was the founder of Habitat for Humanity? single mothers -6.1993451864918105 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (single mothers, is Habitat for, Humanity) -> single mothers (4287ms) Who was the founder of Habitat for Humanity? private gifting -6.229407945747454 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (private gifting, is Habitat for, Humanity) -> private gifting (4287ms) Who was the founder of Habitat for Humanity? social activities -6.291366352485894 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (social activities, are Habitat for, Humanity) -> social activities (4287ms) Who was the founder of Habitat for Humanity? out Restore -6.499896419828262 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (out Restore, is Habitat for, Humanity) -> out Restore (4287ms) Who was the founder of Habitat for Humanity? the Home Ownership category -6.601237914387642 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (the Home Ownership category, is Habitat for, Humanity) -> the Home Ownership category (4315ms) Who was the founder of Habitat for Humanity? One such program -6.704261674392477 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (One such program, is the Habitat for, Humanity) -> One such program (4315ms) Who was the founder of Habitat for Humanity? Quiz Nite -6.774566295254376 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (Quiz Nite, is tonight Habitat for, Humanity) -> Quiz Nite (4315ms) Who was the founder of Habitat for Humanity? Questions Q -6.802348326019333 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (Questions Q, is Habitat for, Humanity) -> Questions Q (4315ms) Who was the founder of Habitat for Humanity? volunteer -6.882071249251372 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (volunteer, is Habitat for, Humanity) -> volunteer (4316ms) Who was the founder of Habitat for Humanity? choice -6.891732889643063 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (choice, is Habitat for, Humanity) -> choice (4315ms) Who was the founder of Habitat for Humanity? come Sayid -6.950208212681419 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (come Sayid, is all Habitat For, Humanity) -> come Sayid (4330ms) Who was the founder of Habitat for Humanity? such an organization -6.95102783095526 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (such an organization, is habitat for, humanity) -> such an organization (4331ms) Who was the founder of Habitat for Humanity? 11:36 -7.029302646234002 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (11:36, AM PST Habitat for, Humanity) -> 11:36 (4330ms) Who was the founder of Habitat for Humanity? One such organization -7.038563391412015 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (One such organization, is Habitat for, Humanity) -> One such organization (4330ms) Who was the founder of Habitat for Humanity? CIPH official charity -7.057196137473774 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (CIPH official charity, is Habitat for, Humanity) -> CIPH official charity (4330ms) Who was the founder of Habitat for Humanity? C volunteer hours -7.061617122181551 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (C volunteer hours, were Habitat for, Humanity) -> C volunteer hours (4331ms) Who was the founder of Habitat for Humanity? Sony Electronics Inc. employees -7.092800267585594 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (Sony Electronics Inc. employees, is Habitat for, Humanity) -> Sony Electronics Inc. employees (4331ms) Who was the founder of Habitat for Humanity? more than two decades -7.098105491396764 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (more than two decades, is Habitat for, Humanity) -> more than two decades (4331ms) Who was the founder of Habitat for Humanity? Fred -7.106390988271183 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (Fred, is Habitat for, Humanity) -> Fred (4344ms) Who was the founder of Habitat for Humanity? 6:30 -7.136871630607802 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (6:30, am Habitat for, Humanity) -> 6:30 (4344ms) Who was the founder of Habitat for Humanity? 09:14 -7.178493539311841 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (09:14, AM Habitat for, Humanity) -> 09:14 (4344ms) Who was the founder of Habitat for Humanity? DeepSouthCon 49 -7.31394978842049 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (DeepSouthCon 49, was Habitat for, Humanity) -> DeepSouthCon 49 (4345ms) Who was the founder of Habitat for Humanity? river blindness -7.380544355429805 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (river blindness, build habitats for, humanity) -> river blindness (4346ms) Who was the founder of Habitat for Humanity? support -7.3855882859134185 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (support, is Habitat for, Humanity) -> support (4344ms) Who was the founder of Habitat for Humanity? Humanity Project -7.440968067954371 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (Humanity Project, Habitat for, Humanity) -> Humanity Project (4356ms) Who was the founder of Habitat for Humanity? service -7.518610184344347 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (service, is Habitat for, Humanity) -> service (4356ms) Who was the founder of Habitat for Humanity? private -7.5381271168072015 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (private, is Habitat for, Humanity) -> private (4356ms) Who was the founder of Habitat for Humanity? Volunteers -7.541040909290787 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (Volunteers, are Habitat for, Humanity) -> Volunteers (4355ms) Who was the founder of Habitat for Humanity? attendance -7.588764985491936 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (attendance, will be Habitat for, Humanity) -> attendance (4356ms) Who was the founder of Habitat for Humanity? the earth -7.699631468988689 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (the earth, is a particularly fit habitat for, humanity) -> the earth (4355ms) Who was the founder of Habitat for Humanity? The carpenters -7.757536132195305 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (The carpenters, have been helping Habitat for, Humanity) -> The carpenters (4365ms) Who was the founder of Habitat for Humanity? Country Cares -7.787433273637458 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (Country Cares, will benefit Habitat for, Humanity) -> Country Cares (4366ms) Who was the founder of Habitat for Humanity? Heart Plates -7.836855393453165 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (Heart Plates, benefit Habitat for, Humanity) -> Heart Plates (4365ms) Who was the founder of Habitat for Humanity? social architecture -7.950868202721202 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (social architecture, include Habitat for, Humanity) -> social architecture (4366ms) Who was the founder of Habitat for Humanity? to -7.987784271121729 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (to, is Habitat For, Humanity) -> to (4365ms) Who was the founder of Habitat for Humanity? New Orleans -7.989102523082121 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (New Orleans, had the Habitat for, Humanity) -> New Orleans (4365ms) Who was the founder of Habitat for Humanity? the region -8.003108601168343 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (the region, is Habitat for, Humanity) -> the region (4365ms) Who was the founder of Habitat for Humanity? the site -8.011130952310058 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (the site, are Habitat for, Humanity) -> the site (4365ms) Who was the founder of Habitat for Humanity? mind -8.078291579838952 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (mind, is Habitat for, Humanity) -> mind (4374ms) Who was the founder of Habitat for Humanity? regional projects -8.133434724698274 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (regional projects, Habitat for, Humanity) -> regional projects (4374ms) Who was the founder of Habitat for Humanity? The event -8.198051197753612 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (The event, was Habitat for, Humanity) -> The event (4374ms) Who was the founder of Habitat for Humanity? The cause -8.201523427933038 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (The cause, was Habitat for, Humanity) -> The cause (4374ms) Who was the founder of Habitat for Humanity? The winner -8.229325774373805 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (The winner, is Habitat for, Humanity) -> The winner (4374ms) Who was the founder of Habitat for Humanity? 100 % of the proceeds -8.262658630836347 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (100 % of the proceeds, are donated to Habitat for, Humanity) -> 100 % of the proceeds (4374ms) Who was the founder of Habitat for Humanity? freewill donations -8.272288797018525 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (freewill donations, benefit Habitat for, Humanity) -> freewill donations (4385ms) Who was the founder of Habitat for Humanity? December 2011 , 9:04 -8.29317643295689 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (December 2011 , 9:04, am Habitat for, Humanity) -> December 2011 , 9:04 (4384ms) Who was the founder of Habitat for Humanity? painted houses -8.299206957058194 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (painted houses, supported Habitat for, Humanity) -> painted houses (4384ms) Who was the founder of Habitat for Humanity? The other two -8.310799476511235 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (The other two, are Habitat for, Humanity) -> The other two (4384ms) Who was the founder of Habitat for Humanity? The following businesses -8.334773139630961 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (The following businesses, are supporting Habitat for, Humanity) -> The following businesses (4384ms) Who was the founder of Habitat for Humanity? 20 Aug 1995 Q -8.339090137411901 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (20 Aug 1995 Q, is Habitat for, Humanity) -> 20 Aug 1995 Q (4384ms) Who was the founder of Habitat for Humanity? the benefiting charity -8.343769977298168 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (the benefiting charity, is Habitat for, Humanity) -> the benefiting charity (4384ms) Who was the founder of Habitat for Humanity? The company -8.363097125257088 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (The company, is supporting Habitat for, Humanity) -> The company (4384ms) Who was the founder of Habitat for Humanity? Gentrycustom ? Mon Jan 02 , 2012 3:06 -8.38985697661693 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (Gentrycustom ? Mon Jan 02 , 2012 3:06, am habitat for, humanity) -> Gentrycustom ? Mon Jan 02 , 2012 3:06 (4396ms) Who was the founder of Habitat for Humanity? REALTORS ? -8.394792392769972 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (REALTORS ?, benefitted both Habitat for, Humanity) -> REALTORS ? (4397ms) Who was the founder of Habitat for Humanity? The first place -8.410969039720522 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (The first place, was Habitat for, Humanity) -> The first place (4396ms) Who was the founder of Habitat for Humanity? the ArcelorMittal Foundation -8.47163791318666 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (the ArcelorMittal Foundation, has helped Habitat for, Humanity) -> the ArcelorMittal Foundation (4396ms) Who was the founder of Habitat for Humanity? The bands -8.471949040055637 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (The bands, are also offering Habitat for, Humanity) -> The bands (4396ms) Who was the founder of Habitat for Humanity? The currently supported charity -8.480334189550934 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (The currently supported charity, is Habitat for, Humanity) -> The currently supported charity (4396ms) Who was the founder of Habitat for Humanity? The Foundation?s projects -8.619946926106199 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (The Foundation?s projects, include Habitat for, Humanity) -> The Foundation?s projects (4450ms) Who was the founder of Habitat for Humanity? a warehouse -8.677494715826452 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (a warehouse, supports Habitat for, Humanity) -> a warehouse (4450ms) Who was the founder of Habitat for Humanity? The Healthy Homes Partnership -8.693446382111444 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (The Healthy Homes Partnership, includes Habitat for, Humanity) -> The Healthy Homes Partnership (4450ms) Who was the founder of Habitat for Humanity? Man-made Disasters -8.693474849982627 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (Man-made Disasters, Has Habitat for, Humanity) -> Man-made Disasters (4450ms) Who was the founder of Habitat for Humanity? a Friend -8.805340678620793 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (a Friend, Habitat for, Humanity) -> a Friend (4509ms) Who was the founder of Habitat for Humanity? a great idea -8.820333941938264 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (a great idea, benefits both Habitat for, Humanity) -> a great idea (4509ms) Who was the founder of Habitat for Humanity? Search Form Main Content -8.825313261292695 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (Search Form Main Content, HABITAT FOR, HUMANITY) -> Search Form Main Content (4510ms) Who was the founder of Habitat for Humanity? ECHO -8.840549552289614 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (ECHO, Habitat for, Humanity) -> ECHO (4509ms) Who was the founder of Habitat for Humanity? a successful service network -8.854360865981427 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (a successful service network, includes Habitat for, Humanity) -> a successful service network (4564ms) Who was the founder of Habitat for Humanity? Car donations -8.899855767608752 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (Car donations, help Habitat for, Humanity) -> Car donations (4564ms) Who was the founder of Habitat for Humanity? Surplus County-Owned Real Property -8.943860335533447 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (Surplus County-Owned Real Property, Habitat for, Humanity) -> Surplus County-Owned Real Property (4565ms) Who was the founder of Habitat for Humanity? target Carter -8.964923606173038 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (target Carter, supports Habitat for, Humanity) -> target Carter (4564ms) Who was the founder of Habitat for Humanity? ?Fund ? Run/ Walk -8.995180437594435 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (?Fund ? Run/ Walk, will benefit Habitat for, Humanity) -> ?Fund ? Run/ Walk (4564ms) Who was the founder of Habitat for Humanity? ?This online campaign -8.999172564841658 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (?This online campaign, benefit Habitat for, Humanity) -> ?This online campaign (4588ms) Who was the founder of Habitat for Humanity? LOCATION RACE INFO -9.00221737583795 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (LOCATION RACE INFO, support Habitat for, Humanity) -> LOCATION RACE INFO (4588ms) Who was the founder of Habitat for Humanity? Area residents -9.00752259964912 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (Area residents, can help Habitat for, Humanity) -> Area residents (4588ms) Who was the founder of Habitat for Humanity? a pay-what-you-please yard sale -9.041383388136335 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (a pay-what-you-please yard sale, benefit Habitat for, Humanity) -> a pay-what-you-please yard sale (4621ms) Who was the founder of Habitat for Humanity? Community service programs -9.067648012755816 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (Community service programs, include Habitat for, Humanity) -> Community service programs (4621ms) Who was the founder of Habitat for Humanity? Millard Fuller -9.099745885435524 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (Millard Fuller, founded Habitat for, Humanity) -> Millard Fuller (4621ms) Who was the founder of Habitat for Humanity? the cause -9.206531611921502 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (the cause, was Habitat for, Humanity) -> the cause (4621ms) Who was the founder of Habitat for Humanity? Jars -9.213500346016069 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (Jars, will benefit Habitat for, Humanity) -> Jars (4621ms) Who was the founder of Habitat for Humanity? part -9.423600704395259 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (part, Habitat for, Humanity) -> part (5355ms) Who was the founder of Habitat for Humanity? Haiti -9.434472279893303 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (Haiti, Habitat for, Humanity) -> Haiti (5355ms) Who was the founder of Habitat for Humanity? vehicle sales -9.439042754086307 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (vehicle sales, benefit Habitat for, Humanity) -> vehicle sales (5355ms) Who was the founder of Habitat for Humanity? ticket sales -9.448598745437709 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (ticket sales, will benefit Habitat for, Humanity) -> ticket sales (5355ms) Who was the founder of Habitat for Humanity? the old toilet -9.473377630702831 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (the old toilet, will be donated to Habitat for, Humanity) -> the old toilet (6394ms) Who was the founder of Habitat for Humanity? x 301 Providence Place -9.49999754946912 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (x 301 Providence Place, supports Habitat for, Humanity) -> x 301 Providence Place (6393ms) Who was the founder of Habitat for Humanity? work -9.506874336839932 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (work, help Habitat for, Humanity) -> work (6394ms) Who was the founder of Habitat for Humanity? localities -9.574565333870378 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (localities, includes Habitat for, Humanity) -> localities (6394ms) Who was the founder of Habitat for Humanity? Major partners -9.620842451484531 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (Major partners, include Habitat for, Humanity) -> Major partners (6470ms) Who was the founder of Habitat for Humanity? Service projects -9.681125436494018 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (Service projects, have included Habitat for, Humanity) -> Service projects (6471ms) Who was the founder of Habitat for Humanity? the Year -9.685574632225851 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (the Year, will benefit Habitat For, Humanity) -> the Year (6471ms) Who was the founder of Habitat for Humanity? the MGRC Foundation -9.780519777262953 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (the MGRC Foundation, will benefit Habitat for, Humanity) -> the MGRC Foundation (6549ms) Who was the founder of Habitat for Humanity? high energy event -9.850303597721224 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (high energy event, will benefit the Habitat for, Humanity) -> high energy event (6549ms) Who was the founder of Habitat for Humanity? The proceeds -9.872805145505758 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> (The proceeds, will be donated to Habitat for, Humanity) -> The proceeds (6549ms) Who was the founder of Habitat for Humanity? CD and DVD releases -9.884580023198186 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (CD and DVD releases, benefit the Habitat For, Humanity) -> CD and DVD releases (6587ms) Who was the founder of Habitat for Humanity? partnerships -9.944868528400503 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (partnerships, benefit Habitat for, Humanity and Corazon) -> partnerships (6586ms) Who was the founder of Habitat for Humanity? Homes Ball -10.004654933391413 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (Homes Ball, will benefit Habitat for, Humanity Post) -> Homes Ball (6586ms) Who was the founder of Habitat for Humanity? the event -10.038742133827123 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (the event, benefit Habitat for, Humanity) -> the event (6586ms) Who was the founder of Habitat for Humanity? the sale -10.130897539387997 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (the sale, will benefit Habitat for, Humanity) -> the sale (6586ms) Who was the founder of Habitat for Humanity? HOMES furniture -10.141233501889927 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (HOMES furniture, will benefit Habitat for, Humanity) -> HOMES furniture (6586ms) Who was the founder of Habitat for Humanity? the city -10.152674831963433 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (the city, does support Habitat for, Humanity) -> the city (6612ms) Who was the founder of Habitat for Humanity? the tournament -10.166657668843222 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (the tournament, will benefit Habitat for, Humanity) -> the tournament (6612ms) Who was the founder of Habitat for Humanity? Organizations -10.175346580575344 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (Organizations, Habitat for, Humanity) -> Organizations (6612ms) Who was the founder of Habitat for Humanity? Past concerts -10.196780463790644 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (Past concerts, benefitted Habitat for, Humanity) -> Past concerts (6612ms) Who was the founder of Habitat for Humanity? RESTORE proceeds -10.20915923151288 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (RESTORE proceeds, benefit Habitat for, Humanity) -> RESTORE proceeds (6612ms) Who was the founder of Habitat for Humanity? Wegmans ticket sales -10.221072615661704 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (Wegmans ticket sales, directly benefit Habitat for, Humanity) -> Wegmans ticket sales (6612ms) Who was the founder of Habitat for Humanity? Women -10.222432664381657 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (Women, supports Habitat for, Humanity) -> Women (6750ms) Who was the founder of Habitat for Humanity? the auction -10.228616075581662 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (the auction, will benefit Habitat for, Humanity) -> the auction (6750ms) Who was the founder of Habitat for Humanity? the local Boyscouts -10.268068738858428 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (the local Boyscouts, Habitat for, Humanity) -> the local Boyscouts (6750ms) Who was the founder of Habitat for Humanity? Americus -10.302010494526247 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (Americus, created Habitat for, Humanity) -> Americus (6750ms) Who was the founder of Habitat for Humanity? Examples -10.346220341604026 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (Examples, include Habitat for, Humanity) -> Examples (6750ms) Who was the founder of Habitat for Humanity? The initiative -10.399128820388206 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (The initiative, will benefit Habitat for, Humanity) -> The initiative (6750ms) Who was the founder of Habitat for Humanity? the event proceeds -10.403549805095984 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (the event proceeds, benefit Habitat for, Humanity) -> the event proceeds (6784ms) Who was the founder of Habitat for Humanity? Habitat program -10.427857140976338 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (Habitat program, benefits Habitat for, Humanity) -> Habitat program (6784ms) Who was the founder of Habitat for Humanity? 5k race -10.58570052269828 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (5k race, will benefit Habitat for, Humanity) -> 5k race (6784ms) Who was the founder of Habitat for Humanity? proceeds -10.642827565296312 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (proceeds, will benefit the local Habitat for, Humanity nonprofit) -> proceeds (6784ms) Who was the founder of Habitat for Humanity? the program -10.774354411792384 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (the program, will benefit Habitat for, Humanity) -> the program (6784ms) Who was the founder of Habitat for Humanity? event -10.945595436523124 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (event, will benefit Habitat for, Humanity Margarita fans) -> event (7018ms) Who was the founder of Habitat for Humanity? well -10.969630322455169 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who be habitat for humanity 2 ? -> $x: ($x, be habitat for, humanity) -> $x: ($x, habitat for, humanity) -> (well, donation to Habitat for, Humanity) -> well (7018ms) Who was the founder of Habitat for Humanity? the competition -11.366683447105286 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (the competition, will benefit Habitat for, Humanity) -> the competition (7018ms) Who was the founder of Habitat for Humanity? Proceeds -11.378613008215268 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (Proceeds, benefit Habitat for, Humanity) -> Proceeds (7062ms) Who was the founder of Habitat for Humanity? Kingfest -11.467160329734185 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (Kingfest, benefited Habitat for, Humanity) -> Kingfest (7062ms) Who was the founder of Habitat for Humanity? The race -11.534154210813751 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (The race, benefited Habitat for, Humanity) -> The race (7068ms) Who was the founder of Habitat for Humanity? The concert -11.542367123453914 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (The concert, benefits Habitat for, Humanity) -> The concert (7168ms) Who was the founder of Habitat for Humanity? the carnival games -11.63469421333713 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (the carnival games, will benefit Habitat for, Humanity) -> the carnival games (7168ms) Who was the founder of Habitat for Humanity? the candy sales -11.725781025170349 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who benefit habitat for humanity ? -> $x: ($x, benefit habitat for, humanity) -> (the candy sales, will benefit the local Habitat for, Humanity) -> the candy sales (7168ms) Who was the founder of Habitat for Humanity? Fuller -14.877944290958402 Who was the founder of Habitat for Humanity? -> who be the founder of [ habitat for humanity ] ? -> who create habitat for humanity why ? -> $x: ($x, create habitat for, humanity) -> (Fuller, created Habitat for, Humanity) -> Fuller (3386ms) Who won the 2004 World Series? Annie Duke 2.540464865319665 Who won the 2004 World Series? -> $x: ($x, won, the 2004 World Series) -> (Annie Duke, won, the 2004 World Series) -> Annie Duke (4048ms) Who won the 2004 World Series? the Yankees 2.0985221820097104 Who won the 2004 World Series? -> $x: ($x, won, the 2004 World Series) -> (the Yankees, win, the 2004 World Series) -> the Yankees (4048ms) Who won the 2004 World Series? The Sox 2.036101783014887 Who won the 2004 World Series? -> $x: ($x, won, the 2004 World Series) -> (The Sox, won, the 2004 World Series) -> The Sox (4049ms) Who won the 2004 World Series? Greg Raymer 2.025970131441441 Who won the 2004 World Series? -> $x: ($x, won, the 2004 World Series) -> (Greg Raymer, won, the 2004 World Series) -> Greg Raymer (4049ms) Who won the 2004 World Series? The Red Sox 1.7081372622664177 Who won the 2004 World Series? -> $x: ($x, won, the 2004 World Series) -> (The Red Sox, won, the 2004 World Series) -> The Red Sox (4135ms) Who won the 2004 World Series? poker 1.5929427528849804 Who won the 2004 World Series? -> $x: ($x, won, the 2004 World Series) -> (poker, is winning, the 2004 World Series) -> poker (4134ms) Who won the 2004 World Series? The Boston Red Sox 1.488468905477379 Who won the 2004 World Series? -> $x: ($x, won, the 2004 World Series) -> (The Boston Red Sox, win, the 2004 World Series) -> The Boston Red Sox (4136ms) Who won the 2004 World Series? Phil Hellmuth jr 1.4475128580027263 Who won the 2004 World Series? -> $x: ($x, won, the 2004 World Series) -> (Phil Hellmuth jr, will win, the 2004 World Series) -> Phil Hellmuth jr (4134ms) Who won the 2004 World Series? the Red Sox 1.2716517179880524 Who won the 2004 World Series? -> $x: ($x, won, the 2004 World Series) -> (the Red Sox, went on to win, the 2004 World Series) -> the Red Sox (4158ms) Who won the 2004 World Series? a Boston Red Sox player 1.1169297403736964 Who won the 2004 World Series? -> $x: ($x, won, the 2004 World Series) -> (a Boston Red Sox player, ultimately win, the 2004 World Series) -> a Boston Red Sox player (4158ms) Who won the 2004 World Series? Boston 0.5023992490487297 Who won the 2004 World Series? -> $x: ($x, won, the 2004 World Series) -> (Boston, won, the 2004 World Series) -> Boston (4158ms) Who won the 2004 World Series? the team 0.3311585833685322 Who won the 2004 World Series? -> $x: ($x, won, the 2004 World Series) -> (the team, win, the 2004 World Series) -> the team (4174ms) Who won the 2004 World Series? the unexpected and -0.19905387561325893 Who won the 2004 World Series? -> $x: ($x, won, the 2004 World Series) -> (the unexpected and, won, the 2004 World Series) -> the unexpected and (4188ms) Who won the 2004 World Series? Raymer -1.6637039643249292 Who won the 2004 World Series? -> $x: ($x, won, the 2004 World Series) -> $x: ($x, win, 2004 world series) -> (Raymer, won the primary in, 2004 World Series) -> Raymer (4222ms) Who won the 2004 World Series? David Ortiz -8.466289633683378 Who won the 2004 World Series? -> who win [ the 2004 world series ] ? -> who win the battle of the 2004 world series ? -> $x: ($x, win the battle of, the 2004 world series) -> $x: (the 2004 world series, be, $x) -> (the 2004 World Series champions, are, David Ortiz) -> David Ortiz (12855ms) Who won the 2004 World Series? 98 -8.807857681619092 Who won the 2004 World Series? -> who win [ the 2004 world series ] ? -> who have the 2004 world series win ? -> $x: (the 2004 world series, win, $x) -> $x: (2004 world series, win, $x) -> (2004 World Series champs, won, 98) -> 98 (5987ms) Who won the 2004 World Series? the Boston Red sox -9.492228296211348 Who won the 2004 World Series? -> [ who win the 2004 ] world series ? -> who win the world series who win the 2004 ? -> $x: ($x, win, the world series) ($x, win, the 2004) -> (the Boston Red sox, win, the 2012 World Series) (The Boston Red Sox, win, the 2004 World Series) -> the Boston Red sox (9609ms) Who won the 2004 World Series? the Sox -9.743741892459648 Who won the 2004 World Series? -> [ who win the 2004 ] world series ? -> who win the world series who win the 2004 ? -> $x: ($x, win, the world series) ($x, win, the 2004) -> (the Sox, won, the World Series) (The Sox, won, the 2004 World Series) -> the Sox (9609ms) Who won the 2004 World Series? Toronto -10.166474613016781 Who won the 2004 World Series? -> [ who win the 2004 ] world series ? -> who win the world series who win the 2004 ? -> $x: ($x, win, the world series) ($x, win, the 2004) -> (Toronto, win, the 2011 World Series) (Toronto, won, the 2004 Grey Cup) -> Toronto (9653ms) Who won the 2004 World Series? a nervous wreck -10.224707371283957 Who won the 2004 World Series? -> who win [ the 2004 world series ] ? -> who win the battle of the 2004 world series ? -> $x: ($x, win the battle of, the 2004 world series) -> $x: (the 2004 world series, be, $x) -> (the 2004 World Series, was, a nervous wreck) -> a nervous wreck (12855ms) Who won the 2004 World Series? A player -10.436229469359422 Who won the 2004 World Series? -> who win [ the 2004 world series ] ? -> who win the battle of the 2004 world series ? -> $x: ($x, win the battle of, the 2004 world series) -> $x: ($x, be, the 2004 world series) -> (A player, was the MVP of, the 2004 World Series) -> A player (12855ms) Who won the 2004 World Series? ESPN -10.495535264192277 Who won the 2004 World Series? -> who win [ the 2004 world series ] ? -> who win the battle of the 2004 world series ? -> $x: ($x, win the battle of, the 2004 world series) -> $x: ($x, have, the 2004 world series) -> (ESPN, has taken to running, the 2004 World Series) -> ESPN (12901ms) Who won the 2004 World Series? the Boston Red Sox -10.569886894703398 Who won the 2004 World Series? -> [ who win the 2004 ] world series ? -> who win the world series who win the 2004 ? -> $x: ($x, win, the world series) ($x, win, the 2004) -> (the Boston Red Sox, won, the world series) (The Boston Red Sox, win, the 2004 World Series) -> the Boston Red Sox (9702ms) Who won the 2004 World Series? the Red Soxs -10.637536479383085 Who won the 2004 World Series? -> [ who win the 2004 ] world series ? -> who win the world series who win the 2004 ? -> $x: ($x, win, the world series) ($x, win, the 2004) -> (the Red Soxs, won, the World Series) (the Red Sox, won, the 2004 World Series) -> the Red Soxs (9702ms) Who won the 2004 World Series? a 4 game sweep -10.809140958462605 Who won the 2004 World Series? -> who win [ the 2004 world series ] ? -> who win the battle of the 2004 world series ? -> $x: ($x, win the battle of, the 2004 world series) -> $x: (the 2004 world series, be, $x) -> (The 2004 World Series, was, a 4 game sweep) -> a 4 game sweep (12901ms) Who won the 2004 World Series? October 23 -11.151264471507876 Who won the 2004 World Series? -> who win [ the 2004 world series ] ? -> who win the battle of the 2004 world series ? -> $x: ($x, win the battle of, the 2004 world series) -> $x: (the 2004 world series, be, $x) -> (The 2004 World Series, was played from, October 23) -> October 23 (12901ms) Who won the 2004 World Series? Columbus -11.756124254271839 Who won the 2004 World Series? -> who win [ the 2004 world series ] ? -> who win the battle of the 2004 world series ? -> $x: ($x, win the battle of, the 2004 world series) -> $x: (the 2004 world series, be, $x) -> (The 2004 World Series, will be held in, Columbus) -> Columbus (12901ms) Who won the 2004 World Series? the baseball -11.760251529350692 Who won the 2004 World Series? -> who win [ the 2004 world series ] ? -> who win the battle of the 2004 world series ? -> $x: ($x, win the battle of, the 2004 world series) -> $x: ($x, be, the 2004 world series) -> (the baseball, was the final out of, the 2004 World Series) -> the baseball (12901ms) Who won the 2004 World Series? Ramirez -11.791228756112762 Who won the 2004 World Series? -> who win [ the 2004 world series ] ? -> who win the battle of the 2004 world series ? -> $x: ($x, win the battle of, the 2004 world series) -> $x: ($x, be, the 2004 world series) -> (Ramirez, was MVP of, the 2004 World Series) -> Ramirez (12901ms) Who won the 2004 World Series? 1967 -11.805788218711111 Who won the 2004 World Series? -> who win [ the 2004 world series ] ? -> who win the battle of the 2004 world series ? -> $x: ($x, win the battle of, the 2004 world series) -> $x: (the 2004 world series, be, $x) -> (The 2004 World Series, is set up just like, 1967) -> 1967 (12901ms) Who won the 2004 World Series? the history -11.996133494780244 Who won the 2004 World Series? -> who win [ the 2004 world series ] ? -> who win the battle of the 2004 world series ? -> $x: ($x, win the battle of, the 2004 world series) -> $x: (the 2004 world series, be, $x) -> (The 2004 World Series, was the 100th in, the history) -> the history (12901ms) Who won the 2004 World Series? the juice -12.053991293769823 Who won the 2004 World Series? -> who win [ the 2004 world series ] ? -> who win the battle of the 2004 world series ? -> $x: ($x, win the battle of, the 2004 world series) -> $x: (the 2004 world series, be, $x) -> (the 2004 World Series Champion Boston Red Sox, was on, the juice) -> the juice (13130ms) Who won the 2004 World Series? the best part -12.110941758485573 Who won the 2004 World Series? -> who win [ the 2004 world series ] ? -> who win the battle of the 2004 world series ? -> $x: ($x, win the battle of, the 2004 world series) -> $x: ($x, be, the 2004 world series) -> (the best part, is reliving, the 2004 World Series) -> the best part (13130ms) Who won the 2004 World Series? the cover -12.203406292470273 Who won the 2004 World Series? -> who win [ the 2004 world series ] ? -> who win the battle of the 2004 world series ? -> $x: ($x, win the battle of, the 2004 world series) -> $x: (the 2004 world series, be, $x) -> (the 2004 World Series ? Champions, is featured on, the cover) -> the cover (13130ms) Who won the 2004 World Series? The team -12.820027585151497 Who won the 2004 World Series? -> [ who win the 2004 ] world series ? -> who win the world series who win the 2004 ? -> $x: ($x, win, the world series) ($x, win, the 2004) -> (The team, won, the 1996 World Series) (the team, won, the 2004 NBA Championship) -> The team (9971ms) Who won the 2004 World Series? the spring 2005 edition -13.560639996731776 Who won the 2004 World Series? -> who win [ the 2004 world series ] ? -> who win the battle of the 2004 world series ? -> $x: ($x, win the battle of, the 2004 world series) -> $x: (the 2004 world series, be, $x) -> (the 2004 World Series, was featured in, the spring 2005 edition) -> the spring 2005 edition (13130ms) What are pomegranates? highly-valued fruit -5.3648011674571325 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, highly-valued fruit) -> highly-valued fruit (2817ms) What are pomegranates? fresh fruit and vegetable -5.456127488674752 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, fresh fruit and vegetable) -> fresh fruit and vegetable (2818ms) What are pomegranates? source of bioactive compound -5.491241115315688 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, source of bioactive compound) -> source of bioactive compound (2817ms) What are pomegranates? biblical oil -5.503205202781131 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, biblical oil) -> biblical oil (2817ms) What are pomegranates? Iranian ancient fruit -5.630742673532389 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, Iranian ancient fruit) -> Iranian ancient fruit (2817ms) What are pomegranates? fruit of the Prophet Muhammad -5.640612914994527 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, fruit of the Prophet Muhammad) -> fruit of the Prophet Muhammad (2817ms) What are pomegranates? native plant of Northern Africa -5.670119247914347 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, native plant of Northern Africa) -> native plant of Northern Africa (2973ms) What are pomegranates? rich source of polyphenols -5.675284981082676 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, rich source of polyphenols) -> rich source of polyphenols (2973ms) What are pomegranates? fresh new fashion label -5.681805606210265 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, fresh new fashion label) -> fresh new fashion label (2973ms) What are pomegranates? source of polyphenols -5.6962091085986 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, source of polyphenols) -> source of polyphenols (2974ms) What are pomegranates? symbol of righteousness -5.7008827070031725 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, symbol of righteousness) -> symbol of righteousness (2973ms) What are pomegranates? burnt pink shade -5.703067714680569 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, burnt pink shade) -> burnt pink shade (2973ms) What are pomegranates? rich source of anthocyanins -5.71060379129246 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, rich source of anthocyanins) -> rich source of anthocyanins (3036ms) What are pomegranates? handsome deciduous and somewhat thorny large shrub or small tree -5.712188473527705 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, handsome deciduous and somewhat thorny large shrub or small tree) -> handsome deciduous and somewhat thorny large shrub or small tree (3036ms) What are pomegranates? juicy kind of fruit -5.712188473527705 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, juicy kind of fruit) -> juicy kind of fruit (3036ms) What are pomegranates? exotic fruit flavor -5.719518779740909 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, exotic fruit flavor) -> exotic fruit flavor (3037ms) What are pomegranates? tropical fruit -5.742253898268431 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, tropical fruit) -> tropical fruit (3036ms) What are pomegranates? passion-red fruit -5.752960842084011 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, passion-red fruit) -> passion-red fruit (3036ms) What are pomegranates? round, delectable fruit -5.752960842084011 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, round, delectable fruit) -> round, delectable fruit (3337ms) What are pomegranates? natural antifungal agent -5.752979563757859 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, natural antifungal agent) -> natural antifungal agent (3338ms) What are pomegranates? rich source of antioxidant compound -5.780379284259812 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, rich source of antioxidant compound) -> rich source of antioxidant compound (3338ms) What are pomegranates? fruit containing seed -5.788734038672018 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, fruit containing seed) -> fruit containing seed (3337ms) What are pomegranates? famous traditional product -5.788734038672018 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, famous traditional product) -> famous traditional product (3360ms) What are pomegranates? extremely invaluable fruit -5.788734038672018 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, extremely invaluable fruit) -> extremely invaluable fruit (3338ms) What are pomegranates? fruity pink shade -5.788734038672018 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, fruity pink shade) -> fruity pink shade (3338ms) What are pomegranates? native and traditional species -5.797854797519154 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, native and traditional species) -> native and traditional species (3361ms) What are pomegranates? lovely little deciduous tree -5.797854797519154 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, lovely little deciduous tree) -> lovely little deciduous tree (3588ms) What are pomegranates? fantastic and cheap persian restaurant -5.797854797519154 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, fantastic and cheap persian restaurant) -> fantastic and cheap persian restaurant (3588ms) What are pomegranates? symbol of Abundance prosperity & Wealth -5.797854797519154 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, symbol of Abundance prosperity & Wealth) -> symbol of Abundance prosperity & Wealth (3567ms) What are pomegranates? fantastic and tasty fruit -5.797854797519154 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, fantastic and tasty fruit) -> fantastic and tasty fruit (3615ms) What are pomegranates? not-so-common variety -5.797854797519154 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, not-so-common variety) -> not-so-common variety (3567ms) What are pomegranates? great sweet smelling scent -5.797854797519154 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, great sweet smelling scent) -> great sweet smelling scent (3361ms) What are pomegranates? impressive symbol of Jewish life and commitment -5.797854797519154 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, impressive symbol of Jewish life and commitment) -> impressive symbol of Jewish life and commitment (3588ms) What are pomegranates? delicious and uncommon food -5.797854797519154 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, delicious and uncommon food) -> delicious and uncommon food (3566ms) What are pomegranates? rich source of folic acid and anti oxidant -5.797854797519154 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, rich source of folic acid and anti oxidant) -> rich source of folic acid and anti oxidant (3588ms) What are pomegranates? symbol of both fertility and immortality -5.797854797519154 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, symbol of both fertility and immortality) -> symbol of both fertility and immortality (3567ms) What are pomegranates? small tree of thorny shrub -5.797854797519154 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, small tree of thorny shrub) -> small tree of thorny shrub (3567ms) What are pomegranates? naturally occurring mystical and miraculous superfood -5.797854797519154 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, naturally occurring mystical and miraculous superfood) -> naturally occurring mystical and miraculous superfood (3588ms) What are pomegranates? So-called superfruits -5.797854797519154 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, So-called superfruits) -> So-called superfruits (3566ms) What are pomegranates? natural source of Vitamin C and Iron -5.797854797519154 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, natural source of Vitamin C and Iron) -> natural source of Vitamin C and Iron (3615ms) What are pomegranates? red-colored fruit -5.797854797519154 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, red-colored fruit) -> red-colored fruit (3361ms) What are pomegranates? millenary fruit growing species -5.797854797519154 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, millenary fruit growing species) -> millenary fruit growing species (3588ms) What are pomegranates? real rock star food -5.797854797519154 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, real rock star food) -> real rock star food (3360ms) What are pomegranates? reasonably common backyard or dooryard plant -5.797854797519154 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, reasonably common backyard or dooryard plant) -> reasonably common backyard or dooryard plant (3361ms) What are pomegranates? rich source of anti oxidant -5.80533255447619 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, rich source of anti oxidant) -> rich source of anti oxidant (3615ms) What are pomegranates? rich source of flavonoid antioxidant -5.809605558626739 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, rich source of flavonoid antioxidant) -> rich source of flavonoid antioxidant (3615ms) What are pomegranates? frozen yoghurt flavor -5.816152480847817 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, frozen yoghurt flavor) -> frozen yoghurt flavor (3615ms) What are pomegranates? SJ Creations -5.817190806275082 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (SJ Creations, Drugs manufactured, Pomegranate Orange Antibacterial Foaming Hand Wash 0.2 liquid) -> SJ Creations (3630ms) What are pomegranates? agricultural product -5.825699453190995 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, agricultural product) -> agricultural product (3631ms) What are pomegranates? luscious conditioning ingredient -5.829861700710017 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, luscious conditioning ingredient) -> luscious conditioning ingredient (3631ms) What are pomegranates? citrus fruit -5.837102618990824 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, citrus fruit) -> citrus fruit (3632ms) What are pomegranates? specialty crop -5.938928434119336 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, specialty crop) -> specialty crop (3630ms) What are pomegranates? nutritious fruit -5.983926891522968 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, nutritious fruit) -> nutritious fruit (3631ms) What are pomegranates? fruit crop -6.0495970055194785 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, fruit crop) -> fruit crop (3648ms) What are pomegranates? auspicious pattern -6.074082687223527 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, auspicious pattern) -> auspicious pattern (3648ms) What are pomegranates? beautiful ingredient -6.088339387939531 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, beautiful ingredient) -> beautiful ingredient (3648ms) What are pomegranates? exotic ingredient -6.092527904599894 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, exotic ingredient) -> exotic ingredient (3648ms) What are pomegranates? private company -6.103343190750323 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, private company) -> private company (3648ms) What are pomegranates? natural superfruit -6.110129758537861 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, natural superfruit) -> natural superfruit (3648ms) What are pomegranates? common object -6.116793055721799 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, common object) -> common object (3668ms) What are pomegranates? famous fruit -6.11835529106803 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, famous fruit) -> famous fruit (3669ms) What are pomegranates? wonderful antioxidant -6.120160895859461 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, wonderful antioxidant) -> wonderful antioxidant (3668ms) What are pomegranates? orange fruit -6.123838979625761 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, orange fruit) -> orange fruit (3669ms) What are pomegranates? common fruit -6.125085272451933 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, common fruit) -> common fruit (3668ms) What are pomegranates? good food -6.1427681425663 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, good food) -> good food (3668ms) What are pomegranates? teasing fruit -6.155023713973003 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, teasing fruit) -> teasing fruit (3701ms) What are pomegranates? tropical type -6.155023713973003 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, tropical type) -> tropical type (3701ms) What are pomegranates? oriental fruit -6.155023713973003 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, oriental fruit) -> oriental fruit (3700ms) What are pomegranates? complicated fruit -6.155023713973003 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, complicated fruit) -> complicated fruit (3701ms) What are pomegranates? powerful fruit -6.158600032477704 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, powerful fruit) -> powerful fruit (3701ms) What are pomegranates? alkaline fruit -6.159352941588205 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, alkaline fruit) -> alkaline fruit (3701ms) What are pomegranates? superior ingredient -6.161351046829945 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, superior ingredient) -> superior ingredient (3724ms) What are pomegranates? yogurt flavor -6.162501470930039 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, yogurt flavor) -> yogurt flavor (3724ms) What are pomegranates? crop species -6.164620168489392 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, crop species) -> crop species (3724ms) What are pomegranates? minor crop -6.164764476260421 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, minor crop) -> minor crop (3724ms) What are pomegranates? fresh fruit -6.166240349408557 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, fresh fruit) -> fresh fruit (3724ms) What are pomegranates? traditional crop -6.170691395041217 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, traditional crop) -> traditional crop (3724ms) What are pomegranates? good treatment -6.171160608875257 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, good treatment) -> good treatment (3763ms) What are pomegranates? lovely fruit -6.171474779033343 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, lovely fruit) -> lovely fruit (3762ms) What are pomegranates? traditional fruit -6.175587544992003 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, traditional fruit) -> traditional fruit (3762ms) What are pomegranates? desert fruit -6.175587544992003 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, desert fruit) -> desert fruit (3762ms) What are pomegranates? subtropical species -6.189657534894624 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, subtropical species) -> subtropical species (3762ms) What are pomegranates? dried fruit -6.192412498758184 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, dried fruit) -> dried fruit (3762ms) What are pomegranates? jewish symbol -6.196151376011002 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, jewish symbol) -> jewish symbol (3780ms) What are pomegranates? bold color -6.198612007668438 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, bold color) -> bold color (3780ms) What are pomegranates? cozy restaurant -6.198893222434842 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, cozy restaurant) -> cozy restaurant (3780ms) What are pomegranates? Avon Products -6.434848595403138 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Avon Products, Drugs manufactured, Naturals Pomegranate and Mango Anti-Bacterial Hand Soap 0.5 liquid) -> Avon Products (3780ms) What are pomegranates? Roccos Old School -6.48993797883984 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Roccos Old School, Drugs manufactured, Prevail Pomegranate Hand Sanitizer 36.58 gel) -> Roccos Old School (3816ms) What are pomegranates? Unique Holding Group -6.530798978475009 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Unique Holding Group, Drugs manufactured, Pomegranate Rose Hand Sanitizer 62 liquid) -> Unique Holding Group (3816ms) What are pomegranates? Topical Pharmaceuticals -6.678190441444729 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Topical Pharmaceuticals, Drugs manufactured, Throat-Releev (Cherry and Pomegranate) 1.3 liquid) -> Topical Pharmaceuticals (3816ms) What are pomegranates? Insight Pharmaceuticals -6.678190441444729 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Insight Pharmaceuticals, Drugs manufactured, Sucrets Ice Pomegranate 3.3/12.5 liquid) -> Insight Pharmaceuticals (3816ms) What are pomegranates? Duane Reade -6.678190441444729 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Duane Reade, Drugs manufactured, Prevail Pomegranate Scented Antibacterial Hand 0.15 soap) -> Duane Reade (3844ms) What are pomegranates? Greenbrier International -6.678190441444729 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Greenbrier International, Drugs manufactured, Antibacterial Hand - Strawberry Pomegranate Scent 0.15 soap) -> Greenbrier International (3844ms) What are pomegranates? anti-oxidants -6.754679129882165 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be great source of, $x) -> (pomegranates, are great sources of, anti-oxidants) -> anti-oxidants (3865ms) What are pomegranates? Apollo Health And Beauty Care -6.762466253192266 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Apollo Health And Beauty Care, Drugs manufactured, Antibacterial Foaming POMEGRANATE 0.46 liquid) -> Apollo Health And Beauty Care (3950ms) What are pomegranates? Rite Aid -6.762466253192266 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Rite Aid, Drugs manufactured, Pure Spring STRAWBERRY AND POMEGRANATE 62 liquid) -> Rite Aid (3917ms) What are pomegranates? Bath & Body Works -6.762466253192266 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Bath & Body Works, Drugs manufactured, Anti-Bacterial Hand Midnight Pomegranate 68 gel) -> Bath & Body Works (3949ms) What are pomegranates? FDA OTC monograph part 333a -7.155023713973003 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (FDA OTC monograph part 333a, Drugs regulated, Prevail Pomegranate Scented Antibacterial Hand 0.15 soap) -> FDA OTC monograph part 333a (4184ms) What are pomegranates? FDA OTC monograph part 356 -7.155023713973003 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (FDA OTC monograph part 356, Drugs regulated, Sucrets Herbal Berry Pomegranate 5/6 lozenge) -> FDA OTC monograph part 356 (4159ms) What are pomegranates? FDA OTC monograph part 333 -7.155023713973003 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (FDA OTC monograph part 333, Drugs regulated, Anti-Bacterial Hand Foam Midnight Pomegranate 69 liquid) -> FDA OTC monograph part 333 (4183ms) What are pomegranates? FDA OTC monograph part 333e -7.155023713973003 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (FDA OTC monograph part 333e, Drugs regulated, Ulta Pomegranate Lime Anti-Bacterial Deep Cleansing 0.3 liquid) -> FDA OTC monograph part 333e (4184ms) What are pomegranates? FDA OTC monograph part 352 -7.155023713973003 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (FDA OTC monograph part 352, Drugs regulated, GAP Favorite Lip Balm Pomegranate SPF 18 7.5/6 stick) -> FDA OTC monograph part 352 (4184ms) What are pomegranates? Ulta -7.39946005107625 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Ulta, Drugs manufactured, Ulta Pomegranate Lime Anti-Bacterial Deep Cleansing 0.3 liquid) -> Ulta (4381ms) What are pomegranates? Safeway -7.4541846041590665 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Safeway, Drugs manufactured, Fresh Decor CITRUS POMEGRANATE 65 liquid) -> Safeway (4483ms) What are pomegranates? Fruit -7.4541846041590665 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Fruit, Drugs with this flavor, GAP Favorite Lip Balm Creamy Pomegranate SPF 18 7.5/6 stick) -> Fruit (4520ms) What are pomegranates? Pomegranate -7.4541846041590665 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Pomegranate, Drugs with this flavor, Ulta Pomegranate Lime Anti-Bacterial Gentle Foaming 0.3 liquid) -> Pomegranate (4483ms) What are pomegranates? Circle -7.4541846041590665 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Circle, Drugs with this shape, Sucrets Herbal Berry Pomegranate 5/6 lozenge) -> Circle (4469ms) What are pomegranates? Cherry -7.4541846041590665 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Cherry, Drugs with this flavor, Throat-Releev (Cherry and Pomegranate) 1.3 liquid) -> Cherry (4391ms) What are pomegranates? Fragaria -7.4541846041590665 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Fragaria, Drugs with this flavor, Sucrets Herbal Berry Pomegranate 5/6 lozenge) -> Fragaria (4469ms) What are pomegranates? Papermates -7.4541846041590665 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Papermates, Drugs manufactured, Pomegranate Rose Hand Sanitizer 62 liquid) -> Papermates (4483ms) What are pomegranates? Vanilla -7.4541846041590665 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Vanilla, Drugs with this flavor, Ulta Pomegranate Lime Anti-Bacterial Hand Sanitizer 68 gel) -> Vanilla (4483ms) What are pomegranates? Melaleuca -7.4541846041590665 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Melaleuca, Drugs manufactured, Sun Shades Lip Balm Pomegranate SPF 15 75/30 stick) -> Melaleuca (4483ms) What are pomegranates? Raspberry -7.4541846041590665 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Raspberry, Drugs with this flavor, Sucrets Herbal Berry Pomegranate 5/6 lozenge) -> Raspberry (4483ms) What are pomegranates? Autumn Harp -7.69168916453849 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: ($x, drug, pomegranates) -> (Autumn Harp, Drugs manufactured, GAP Favorite Lip Balm Pomegranate SPF 18 7.5/6 stick) -> Autumn Harp (4520ms) What are pomegranates? Vitamin C -7.786624329397652 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be rich source of, $x) -> (Pomegranate, is a rich source of, Vitamin C) -> Vitamin C (4535ms) What are pomegranates? vitamin C -7.807970282912123 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be good source of, $x) -> (Pomegranates, are a good source of, vitamin C) -> vitamin C (4535ms) What are pomegranates? vitamins C , B , K and E. -8.067059278303386 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be good source of, $x) -> (pomegranates, are good sources of, vitamins C , B , K and E.) -> vitamins C , B , K and E. (4658ms) What are pomegranates? dietary fiber -8.098019691642612 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be good source of, $x) -> (pomegranates, are also a good source of, dietary fiber) -> dietary fiber (4673ms) What are pomegranates? season -8.140353629490905 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, season) -> season (4674ms) What are pomegranates? flavoring -8.193336403045627 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, flavoring) -> flavoring (4674ms) What are pomegranates? vitamin C. One pomegranate -8.202318536665933 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be also high in, $x) -> (Pomegranate fruit, is also high in, vitamin C. One pomegranate) -> vitamin C. One pomegranate (4674ms) What are pomegranates? host -8.211667315001506 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, host) -> host (5559ms) What are pomegranates? agriculture -8.22908329428514 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, agriculture) -> agriculture (5560ms) What are pomegranates? leader -8.294330233095735 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, leader) -> leader (5560ms) What are pomegranates? item -8.307394526471485 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, item) -> item (5560ms) What are pomegranates? delicacy -8.32301510630241 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, delicacy) -> delicacy (5560ms) What are pomegranates? ingredient -8.324506542774305 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, ingredient) -> ingredient (6715ms) What are pomegranates? folic acid and antioxidants -8.343626313979948 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be good source of, $x) -> (pomegranates, are a good source of, folic acid and antioxidants) -> folic acid and antioxidants (6716ms) What are pomegranates? vitamins C and B -8.360112600568357 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be great source of, $x) -> (pomegranate juice, is a great source of, vitamins C and B) -> vitamins C and B (6716ms) What are pomegranates? blueberry -8.377205399489238 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, blueberry) -> blueberry (6715ms) What are pomegranates? refreshment -8.400685280747979 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, refreshment) -> refreshment (6914ms) What are pomegranates? establishment -8.41223788173623 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranates, Instance Of, establishment) -> establishment (6914ms) What are pomegranates? shade -8.417128485395224 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (pomegranate, Instance Of, shade) -> shade (6914ms) What are pomegranates? project -8.420989751228777 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, project) -> project (7057ms) What are pomegranates? operation -8.421860944357665 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, operation) -> operation (7056ms) What are pomegranates? woman -8.42257354173245 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> (Pomegranate, Instance Of, woman) -> woman (7056ms) What are pomegranates? potassium and vitamin C -8.466137553008217 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be good source of, $x) -> (Pomegranates, are a good source of, potassium and vitamin C) -> potassium and vitamin C (7056ms) What are pomegranates? vitamin C and potassium -8.47448758781568 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be good source of, $x) -> (pomegranate, is a good source of, vitamin C and potassium) -> vitamin C and potassium (7056ms) What are pomegranates? the B vitamin -8.495531928576868 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be good source of, $x) -> (Pomegranate juice, is also a good source of, the B vitamin) -> the B vitamin (7056ms) What are pomegranates? vitamin K and folate -8.589031636232988 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be an excellent source of, $x) -> (Pomegranates, are an excellent source of, vitamin K and folate) -> vitamin K and folate (7075ms) What are pomegranates? dietary antioxidants -8.663406225449897 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be an excellent source of, $x) -> (Pomegranates, are an excellent source of, dietary antioxidants) -> dietary antioxidants (7256ms) What are pomegranates? Vitamin C and potassium -9.064231689863632 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be good source of, $x) -> (pomegranates, are a good source of, Vitamin C and potassium) -> Vitamin C and potassium (7345ms) What are pomegranates? ancient healing benefits -9.14047293412552 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, top the list of, $x) -> (pomegranates, top the list of, ancient healing benefits) -> ancient healing benefits (7388ms) What are pomegranates? antioxidants and flavonoids -9.14710749835895 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be rich source of, $x) -> (Pomegranates, are a rich source of, antioxidants and flavonoids) -> antioxidants and flavonoids (7388ms) What are pomegranates? oil -9.299907331143988 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, grapeseed, $x) -> (Contains pomegranate oil, grapeseed, oil) -> oil (7388ms) What are pomegranates? delicious choices -9.508530982228699 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, top the list of, $x) -> (even pomegranate truffles, top the list of, delicious choices) -> delicious choices (7554ms) What are pomegranates? jewel-boxes -10.014069612871872 What are pomegranates? -> what be [ pomegranate ] ? -> what be the mening of pomegranate ? -> $x: (pomegranate, mening, $x) -> $x: (pomegranate, be, $x) -> (Pomegranates, are, jewel-boxes) -> jewel-boxes (7616ms) What are pomegranates? potassium -10.09089593640525 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be good source of, $x) -> (pomegranates, are good sources of, potassium) -> potassium (7616ms) What are pomegranates? fiber -10.130167383307864 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be also high in, $x) -> (Pomegranates, are also high in, fiber) -> fiber (7616ms) What are pomegranates? black dot -10.148250810970003 What are pomegranates? -> what be [ pomegranate ] ? -> what be the mening of pomegranate ? -> $x: (pomegranate, mening, $x) -> $x: (pomegranate, be, $x) -> (pomegranates, are, black dot) -> black dot (7616ms) What are pomegranates? antioxidants -10.250940914238027 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be good source of, $x) -> (4 to 8. Pomegranates, are a good source of, antioxidants) -> antioxidants (7616ms) What are pomegranates? iron -10.256558916094686 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be good source of, $x) -> (Pomegranate, is a good source of, iron) -> iron (7637ms) What are pomegranates? quercetin -10.320201377158849 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be great source of, $x) -> (blue berries and pomegranates, are great sources of, quercetin) -> quercetin (7665ms) What are pomegranates? phytoestrogens -10.321714620335335 What are pomegranates? -> $x: (pomegranates, instance of, $x) -> $x: (pomegranates, be rich source of, $x) -> (Pomegranate seed oil, is a rich source of, phytoestrogens) -> phytoestrogens (7665ms) What are pomegranates? Male Excess -10.329058511305075 What are pomegranates? -> what be [ pomegranate ] ? -> what be the mening of pomegranate ? -> $x: (pomegranate, mening, $x) -> $x: ($x, be, pomegranate) -> (Male Excess, is, Pomegranate) -> Male Excess (7665ms) What are pomegranates? Greece -10.452954322687681 What are pomegranates? -> what be [ pomegranate ] ? -> what be the mening of pomegranate ? -> $x: (pomegranate, mening, $x) -> $x: ($x, be, pomegranate) -> (Greece, is, pomegranates) -> Greece (8289ms) What are pomegranates? Ellagic acid -10.502193239654272 What are pomegranates? -> what be [ pomegranate ] ? -> what be the mening of pomegranate ? -> $x: (pomegranate, mening, $x) -> $x: ($x, be, pomegranate) -> (Ellagic acid, is particularly plentiful in, pomegranates) -> Ellagic acid (8289ms) What are pomegranates? Third Millennium Publishing -10.572211721328264 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (Third Millennium Publishing, Book editions published, The Incredible Pomegranate) -> Third Millennium Publishing (8603ms) What are pomegranates? Tweak Extreme -10.609536660513374 What are pomegranates? -> what be [ pomegranate ] ? -> what be the mening of pomegranate ? -> $x: (pomegranate, mening, $x) -> $x: ($x, be, pomegranate) -> (Tweak Extreme, was, Pomegranate) -> Tweak Extreme (8289ms) What are pomegranates? Real Grenadine -10.610338342674318 What are pomegranates? -> what be [ pomegranate ] ? -> what be the mening of pomegranate ? -> $x: (pomegranate, mening, $x) -> $x: ($x, be, pomegranate) -> (Real Grenadine, is made from, Pomegranates) -> Real Grenadine (8289ms) What are pomegranates? A House of Pomegranates: Being a Narrative of Certain Recent Events in the City of Semur, in the Department of the Haute Bourgogne. a Story of the Seen And the Unseen -10.625201272150983 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (A House of Pomegranates: Being a Narrative of Certain Recent Events in the City of Semur, in the Department of the Haute Bourgogne. a Story of the Seen And the Unseen, Edition Of, A House of Pomegranates) -> A House of Pomegranates: Being a Narrative of Certain Recent Events in the City of Semur, in the Department of the Haute Bourgogne. a Story of the Seen And the Unseen (8603ms) What are pomegranates? A House of Pomegranates -10.625201272150983 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition of, $x) -> (A House of Pomegranates: Being a Narrative of Certain Recent Events in the City of Semur, in the Department of the Haute Bourgogne. a Story of the Seen And the Unseen, Edition Of, A House of Pomegranates) -> A House of Pomegranates (8603ms) What are pomegranates? Azerbaijan?s trademark -10.658379973769138 What are pomegranates? -> what be [ pomegranate ] ? -> what be the mening of pomegranate ? -> $x: (pomegranate, mening, $x) -> $x: ($x, be, pomegranate) -> (Azerbaijan?s trademark, is, pomegranates) -> Azerbaijan?s trademark (8603ms) What are pomegranates? Morocco -10.687331343838636 What are pomegranates? -> what be [ pomegranate ] ? -> what be the mening of pomegranate ? -> $x: (pomegranate, mening, $x) -> $x: ($x, be, pomegranate) -> (Morocco, are, pomegranates) -> Morocco (8603ms) What are pomegranates? Thorndike Press -10.719603184297982 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (Thorndike Press, Book editions published, Pomegranate Soup) -> Thorndike Press (8603ms) What are pomegranates? Wildside Press -10.719603184297982 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (Wildside Press, Book editions published, A House of Pomegranates) -> Wildside Press (8743ms) What are pomegranates? George Tooker -10.719603184297982 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate Artbooks, Book editions published, George Tooker) -> George Tooker (8603ms) What are pomegranates? Borgo Press -10.719603184297982 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (Borgo Press, Book editions published, A House of Pomegranates) -> Borgo Press (8742ms) What are pomegranates? Romare Bearden -10.719603184297982 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Romare Bearden) -> Romare Bearden (8603ms) What are pomegranates? Turker Korkmaz -10.720771821655251 What are pomegranates? -> what be [ pomegranate ] ? -> what be the mening of pomegranate ? -> $x: (pomegranate, mening, $x) -> $x: (pomegranate, produce, $x) -> (The Pomegranate, Produced by, Turker Korkmaz) -> Turker Korkmaz (9695ms) What are pomegranates? Massoud Bakhshi -10.720771821655251 What are pomegranates? -> what be [ pomegranate ] ? -> what be the mening of pomegranate ? -> $x: (pomegranate, mening, $x) -> $x: (pomegranate, produce, $x) -> (Tehran Has No More Pomegranates!, Produced by, Massoud Bakhshi) -> Massoud Bakhshi (9695ms) What are pomegranates? a superfood -10.721134546688361 What are pomegranates? -> what be [ pomegranate ] ? -> what be the mening of pomegranate ? -> $x: (pomegranate, mening, $x) -> $x: (pomegranate, be, $x) -> (Pomegranate, is, a superfood) -> a superfood (8743ms) What are pomegranates? a producer -10.72784529224585 What are pomegranates? -> what be [ pomegranate ] ? -> what be the mening of pomegranate ? -> $x: (pomegranate, mening, $x) -> $x: ($x, be, pomegranate) -> (a producer, was, Pomegranate) -> a producer (8742ms) What are pomegranates? a name -10.72784529224585 What are pomegranates? -> what be [ pomegranate ] ? -> what be the mening of pomegranate ? -> $x: (pomegranate, mening, $x) -> $x: ($x, be, pomegranate) -> (a name, is, Pomegranate) -> a name (8742ms) What are pomegranates? ?a little pricey ? -10.769039016967481 What are pomegranates? -> what be [ pomegranate ] ? -> what be the mening of pomegranate ? -> $x: (pomegranate, mening, $x) -> $x: (pomegranate, be, $x) -> (pomegranates, were, ?a little pricey ?) -> ?a little pricey ? (8742ms) What are pomegranates? much Vitamin K -10.772183616183455 What are pomegranates? -> what be [ pomegranate ] ? -> what be the mening of pomegranate ? -> $x: (pomegranate, mening, $x) -> $x: ($x, be, pomegranate) -> (much Vitamin K, is in, pomegranates) -> much Vitamin K (8742ms) What are pomegranates? Pomegranates from an English garden -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition of, $x) -> (Pomegranates from an English garden: a selection from the poems of Robert Browning, Edition Of, Pomegranates from an English garden) -> Pomegranates from an English garden (11602ms) What are pomegranates? Susan Seddon Boulet: the goddess paintings -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate Artbooks, Book editions published, Susan Seddon Boulet: the goddess paintings) -> Susan Seddon Boulet: the goddess paintings (11630ms) What are pomegranates? The Yosemite handbook: an insider's guide to the park, as related by Bruinhilda -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, The Yosemite handbook: an insider's guide to the park, as related by Bruinhilda) -> The Yosemite handbook: an insider's guide to the park, as related by Bruinhilda (11224ms) What are pomegranates? Taking tea with Mackintosh: the story of Miss Cranston's tea rooms -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Taking tea with Mackintosh: the story of Miss Cranston's tea rooms) -> Taking tea with Mackintosh: the story of Miss Cranston's tea rooms (10398ms) What are pomegranates? Pomegranates from the Punjab. Indian stories -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition of, $x) -> (Pomegranates from the Punjab. Indian stories, Edition Of, Pomegranates from the Punjab. Indian stories) -> Pomegranates from the Punjab. Indian stories (11223ms) What are pomegranates? The Alphabet Book Mobile (Book Mobiles) -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, The Alphabet Book Mobile (Book Mobiles)) -> The Alphabet Book Mobile (Book Mobiles) (11631ms) What are pomegranates? David Roberts: travels in Egypt & the Holy Land -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, David Roberts: travels in Egypt & the Holy Land) -> David Roberts: travels in Egypt & the Holy Land (10813ms) What are pomegranates? Ice-covered Rose Hips, Sierra Club Boxed Holiday Cards -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Ice-covered Rose Hips, Sierra Club Boxed Holiday Cards) -> Ice-covered Rose Hips, Sierra Club Boxed Holiday Cards (10813ms) What are pomegranates? Shaman: the paintings of Susan Seddon Boulet. -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate Artbooks, Book editions published, Shaman: the paintings of Susan Seddon Boulet.) -> Shaman: the paintings of Susan Seddon Boulet. (9874ms) What are pomegranates? Bartles & Jaymes -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, product, $x) -> (Raspberry Pomegranate, Products with this flavor, Bartles & Jaymes) -> Bartles & Jaymes (11256ms) What are pomegranates? Mother Goose Post Card Book -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Mother Goose Post Card Book) -> Mother Goose Post Card Book (9695ms) What are pomegranates? The Numbers Book Mobile (Book Mobiles) -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, The Numbers Book Mobile (Book Mobiles)) -> The Numbers Book Mobile (Book Mobiles) (10398ms) What are pomegranates? A Garden of Pomegranates -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition of, $x) -> (A garden of pomegranates; an outline of the Qabalah, Edition Of, A Garden of Pomegranates) -> A Garden of Pomegranates (9874ms) What are pomegranates? Dial Books for Young Readers -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (Dial Books for Young Readers, Book editions published, Persephone and the Pomegranate) -> Dial Books for Young Readers (11256ms) What are pomegranates? Shelter: Human Habitats from Around the World -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Shelter: Human Habitats from Around the World) -> Shelter: Human Habitats from Around the World (11003ms) What are pomegranates? Bells and Pomegranates. No. V -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition of, $x) -> (Bells and pomegranates : first series, Edition Of, Bells and Pomegranates. No. V) -> Bells and Pomegranates. No. V (11631ms) What are pomegranates? The Narcissus and the pomegranate : an archaeology of the Homeric Hymn to Demeter -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition of, pomegranate) -> (The Narcissus and the pomegranate : an archaeology of the Homeric Hymn to Demeter, Edition Of, The Narcissus and the pomegranate) -> The Narcissus and the pomegranate : an archaeology of the Homeric Hymn to Demeter (10813ms) What are pomegranates? Porcelain Moon and Pomegranates -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition of, $x) -> (Porcelain Moon and Pomegranates: A Woman's Trek Through Turkey, Edition Of, Porcelain Moon and Pomegranates) -> Porcelain Moon and Pomegranates (10957ms) What are pomegranates? Edward Hopper's New England -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate Artbooks, Book editions published, Edward Hopper's New England) -> Edward Hopper's New England (9768ms) What are pomegranates? Cows: a book of postcards. -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate Artbooks, Book editions published, Cows: a book of postcards.) -> Cows: a book of postcards. (9768ms) What are pomegranates? Parrish and Poetry: A Gift of Words and Art -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Parrish and Poetry: A Gift of Words and Art) -> Parrish and Poetry: A Gift of Words and Art (10813ms) What are pomegranates? Jane Morris: the Pre-Raphaelite model of beauty -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Jane Morris: the Pre-Raphaelite model of beauty) -> Jane Morris: the Pre-Raphaelite model of beauty (9874ms) What are pomegranates? Bells and Pomegranates. No. V (Collected Works of Robert Browning) -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition of, pomegranate) -> (Bells and Pomegranates. No. V (Collected Works of Robert Browning), Edition Of, Bells and Pomegranates. No. V) -> Bells and Pomegranates. No. V (Collected Works of Robert Browning) (11469ms) What are pomegranates? Meinrad Craighead: Crow Mother and the Dog God -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition of, $x) -> (Meinrad Craighead: Crow Mother and the Dog God: A Restrospective (Pomegranate Catalog), Edition Of, Meinrad Craighead: Crow Mother and the Dog God) -> Meinrad Craighead: Crow Mother and the Dog God (10212ms) What are pomegranates? Contemporary architectural drawings: donations to the Avery Library centennial drawings archive -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate Artbooks, Book editions published, Contemporary architectural drawings: donations to the Avery Library centennial drawings archive) -> Contemporary architectural drawings: donations to the Avery Library centennial drawings archive (9768ms) What are pomegranates? Mills & Boon -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (Mills & Boon, Book editions published, Isle of Pomegranates) -> Mills & Boon (10579ms) What are pomegranates? The Shadow of the Pomegranate -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition of, $x) -> (The Shadow of the Pomegranate (Tudors 3), Edition Of, The Shadow of the Pomegranate) -> The Shadow of the Pomegranate (11223ms) What are pomegranates? Gustave Baumann's Southwest -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Gustave Baumann's Southwest) -> Gustave Baumann's Southwest (11003ms) What are pomegranates? Pomegranates: a poem -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranates, Editions, Pomegranates: a poem) -> Pomegranates: a poem (11568ms) What are pomegranates? The Muir Woods handbook: an insider's guide to the park -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, The Muir Woods handbook: an insider's guide to the park) -> The Muir Woods handbook: an insider's guide to the park (11602ms) What are pomegranates? American Paintings: A Book of Postcards -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, American Paintings: A Book of Postcards) -> American Paintings: A Book of Postcards (10957ms) What are pomegranates? Women of the West: A Book of Postcards -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Women of the West: A Book of Postcards) -> Women of the West: A Book of Postcards (10461ms) What are pomegranates? The Art of Arthur & Lucia Mathews -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, The Art of Arthur & Lucia Mathews) -> The Art of Arthur & Lucia Mathews (11631ms) What are pomegranates? Percival Pea and Polly Pomegranate -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition of, pomegranate) -> (Percival Pea and Polly Pomegranate, Edition Of, Percival Pea and Polly Pomegranate) -> Percival Pea and Polly Pomegranate (11630ms) What are pomegranates? Saw-whet Owl, Sierra Club Boxed Holiday Cards -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Saw-whet Owl, Sierra Club Boxed Holiday Cards) -> Saw-whet Owl, Sierra Club Boxed Holiday Cards (9768ms) What are pomegranates? Isle of Pomegranates -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (Isle of Pomegranates, Edition Of, Isle of Pomegranates) -> Isle of Pomegranates (11224ms) What are pomegranates? Cafe Babilonia/ Pomegranate Soup -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition of, pomegranate) -> (Cafe Babilonia/ Pomegranate Soup, Edition Of, Cafe Babilonia/ Pomegranate Soup) -> Cafe Babilonia/ Pomegranate Soup (11630ms) What are pomegranates? Black velvet: the art we love to hate -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate Artbooks, Book editions published, Black velvet: the art we love to hate) -> Black velvet: the art we love to hate (10461ms) What are pomegranates? Under the Pomegranate Tree -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition of, $x) -> (Under the Pomegranate Tree: The Best New Latino Erotica, Edition Of, Under the Pomegranate Tree) -> Under the Pomegranate Tree (10398ms) What are pomegranates? Homecoming: The Paintings of William H. Johnson: A Book of Postcards -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Homecoming: The Paintings of William H. Johnson: A Book of Postcards) -> Homecoming: The Paintings of William H. Johnson: A Book of Postcards (10579ms) What are pomegranates? Pomegranate Soup: A Novel -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate Soup, Editions, Pomegranate Soup: A Novel) -> Pomegranate Soup: A Novel (11256ms) What are pomegranates? Pomegranate: Fruits of Paradise (Woodland Health Series) -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Editions, Pomegranate: Fruits of Paradise (Woodland Health Series)) -> Pomegranate: Fruits of Paradise (Woodland Health Series) (11097ms) What are pomegranates? Under the Pomegranate Tree: The Best New Latino Erotica -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition of, pomegranate) -> (Under the Pomegranate Tree: The Best New Latino Erotica, Edition Of, Under the Pomegranate Tree) -> Under the Pomegranate Tree: The Best New Latino Erotica (11003ms) What are pomegranates? The Grand Canyon handbook: an insider's guide to the park, as related by Ranger Jack -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, The Grand Canyon handbook: an insider's guide to the park, as related by Ranger Jack) -> The Grand Canyon handbook: an insider's guide to the park, as related by Ranger Jack (10957ms) What are pomegranates? Stuart Davis's abstract argot -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate Artbooks, Book editions published, Stuart Davis's abstract argot) -> Stuart Davis's abstract argot (11223ms) What are pomegranates? Crazy Dervish and the Pomegranate Tree -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition of, $x) -> (Crazy Dervish and the Pomegranate Tree, Edition Of, Crazy Dervish and the Pomegranate Tree) -> Crazy Dervish and the Pomegranate Tree (10497ms) What are pomegranates? Charles Rennie Mackintosh: textile designs -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate Artbooks, Book editions published, Charles Rennie Mackintosh: textile designs) -> Charles Rennie Mackintosh: textile designs (9768ms) What are pomegranates? CatChristmas -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, CatChristmas) -> CatChristmas (11630ms) What are pomegranates? Pastures in the Sky -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Pastures in the Sky) -> Pastures in the Sky (10579ms) What are pomegranates? A garden of pomegranates; an outline of the Qabalah -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (A garden of pomegranates; an outline of the Qabalah, Edition Of, A Garden of Pomegranates) -> A garden of pomegranates; an outline of the Qabalah (11469ms) What are pomegranates? Domes of America -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate Artbooks, Book editions published, Domes of America) -> Domes of America (10398ms) What are pomegranates? The Pomegranates of Kandahar -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (The Pomegranates of Kandahar, Editions, The Pomegranates of Kandahar) -> The Pomegranates of Kandahar (11183ms) What are pomegranates? The Hastings Hours (Illuminated Gift) -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, The Hastings Hours (Illuminated Gift)) -> The Hastings Hours (Illuminated Gift) (11183ms) What are pomegranates? Doves and pomegranates -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (Doves and pomegranates, Editions, Doves and pomegranates: poems for young readers) -> Doves and pomegranates (11631ms) What are pomegranates? The Crazy Clothes Book Mobile (Book Mobiles) -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, The Crazy Clothes Book Mobile (Book Mobiles)) -> The Crazy Clothes Book Mobile (Book Mobiles) (11184ms) What are pomegranates? Behind the doors of San Miguel de Allende -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Behind the doors of San Miguel de Allende) -> Behind the doors of San Miguel de Allende (11003ms) What are pomegranates? Marshall Field's (A Building Book) -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Marshall Field's (A Building Book)) -> Marshall Field's (A Building Book) (10957ms) What are pomegranates? Maxfield Parrish: A Retrospective -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Maxfield Parrish: A Retrospective) -> Maxfield Parrish: A Retrospective (10957ms) What are pomegranates? Seed of the pomegranate -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (Seed of the pomegranate, Editions, Seed of the pomegranate: and other poems.) -> Seed of the pomegranate (10957ms) What are pomegranates? Shadows of the pomegranate tree -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (Shadows of the pomegranate tree, Editions, Shadows of the pomegranate tree) -> Shadows of the pomegranate tree (11602ms) What are pomegranates? Outhouses by famous architects -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Outhouses by famous architects) -> Outhouses by famous architects (10497ms) What are pomegranates? Golden Bells & Pomegranates -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition of, $x) -> (Golden Bells & Pomegranates: Studies in Midrash Leviticus Rabbah (Texts & Studies in Ancient Judaism, 94), Edition Of, Golden Bells & Pomegranates) -> Golden Bells & Pomegranates (10461ms) What are pomegranates? The Yellowstone handbook: an insider's guide to the park, as related by Ranger Norm -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, The Yellowstone handbook: an insider's guide to the park, as related by Ranger Norm) -> The Yellowstone handbook: an insider's guide to the park, as related by Ranger Norm (11223ms) What are pomegranates? The Pomegranate: Love and Peace Poems -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition of, pomegranate) -> (The Pomegranate: Love and Peace Poems, Edition Of, The Pomegranate) -> The Pomegranate: Love and Peace Poems (11568ms) What are pomegranates? Bells and pomegranates : first series -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition of, pomegranate) -> (Bells and pomegranates : first series, Edition Of, Bells and Pomegranates. No. V) -> Bells and pomegranates : first series (10579ms) What are pomegranates? Pomegranates from an English garden: a selection from the poems of Robert Browning -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition of, pomegranate) -> (Pomegranates from an English garden: a selection from the poems of Robert Browning, Edition Of, Pomegranates from an English garden) -> Pomegranates from an English garden: a selection from the poems of Robert Browning (10813ms) What are pomegranates? A House of Pomegranates (Collected Works of Oscar Wilde) -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (A House of Pomegranates (Collected Works of Oscar Wilde), Edition Of, A House of Pomegranates) -> A House of Pomegranates (Collected Works of Oscar Wilde) (10212ms) What are pomegranates? White Wolf Publishing -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (White Wolf Publishing, Book editions published, Pomegranates Full and Fine) -> White Wolf Publishing (11098ms) What are pomegranates? Pomegranates Full and Fine -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition of, $x) -> (Pomegranates Full and Fine, Edition Of, Pomegranates Full and Fine) -> Pomegranates Full and Fine (11256ms) What are pomegranates? Dinosaurs and pink pomegranates -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (Dinosaurs and pink pomegranates, Edition Of, Dinosaurs and pink pomegranates) -> Dinosaurs and pink pomegranates (11568ms) What are pomegranates? The Gutenberg Bible (Illuminated Gift) -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, The Gutenberg Bible (Illuminated Gift)) -> The Gutenberg Bible (Illuminated Gift) (9874ms) What are pomegranates? Thoughts from Walden Pond by Henry David Thoreau -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Thoughts from Walden Pond by Henry David Thoreau) -> Thoughts from Walden Pond by Henry David Thoreau (11469ms) What are pomegranates? Red Fox, Sierra Club Boxed Holiday Cards -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Red Fox, Sierra Club Boxed Holiday Cards) -> Red Fox, Sierra Club Boxed Holiday Cards (10957ms) What are pomegranates? The Narcissus and the pomegranate -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition of, $x) -> (The Narcissus and the pomegranate : an archaeology of the Homeric Hymn to Demeter, Edition Of, The Narcissus and the pomegranate) -> The Narcissus and the pomegranate (10579ms) What are pomegranates? Winter Wildlife Boxed Assorted Sierra Club Holiday Cards -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Winter Wildlife Boxed Assorted Sierra Club Holiday Cards) -> Winter Wildlife Boxed Assorted Sierra Club Holiday Cards (11183ms) What are pomegranates? Doves and pomegranates: poems for young readers -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition of, pomegranate) -> (Doves and pomegranates: poems for young readers, Edition Of, Doves and pomegranates) -> Doves and pomegranates: poems for young readers (11602ms) What are pomegranates? Surfing: a history of the ancient Hawaiian sport -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate Artbooks, Book editions published, Surfing: a history of the ancient Hawaiian sport) -> Surfing: a history of the ancient Hawaiian sport (10497ms) What are pomegranates? Digireads.com -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (Digireads.com, Book editions published, A House of Pomegranates) -> Digireads.com (10579ms) What are pomegranates? Yasuo Kuniyoshi's women -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate Artbooks, Book editions published, Yasuo Kuniyoshi's women) -> Yasuo Kuniyoshi's women (9874ms) What are pomegranates? The Art of Whitfield Lovell -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition of, $x) -> (The Art of Whitfield Lovell: Whispers from the Walls (Pomegranate Catalog, No. A662), Edition Of, The Art of Whitfield Lovell) -> The Art of Whitfield Lovell (9874ms) What are pomegranates? Charles Bragg, the works!: a retrospective -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Charles Bragg, the works!: a retrospective) -> Charles Bragg, the works!: a retrospective (11224ms) What are pomegranates? Sears Tower: A Building Book from the Chicago Architecture Foundation -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Sears Tower: A Building Book from the Chicago Architecture Foundation) -> Sears Tower: A Building Book from the Chicago Architecture Foundation (10461ms) What are pomegranates? Pomegranates: A Selection from the Poems of Robert Browning -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (Pomegranates: A Selection from the Poems of Robert Browning, Edition Of, Pomegranates) -> Pomegranates: A Selection from the Poems of Robert Browning (11098ms) What are pomegranates? Altered English: surprising meanings of familiar words -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Altered English: surprising meanings of familiar words) -> Altered English: surprising meanings of familiar words (11256ms) What are pomegranates? OverTime: the jazz photographs of Milt Hinton -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate Artbooks, Book editions published, OverTime: the jazz photographs of Milt Hinton) -> OverTime: the jazz photographs of Milt Hinton (11469ms) What are pomegranates? Porcelain Moon and Pomegranates: A Woman's Trek Through Turkey -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (Porcelain Moon and Pomegranates: A Woman's Trek Through Turkey, Edition Of, Porcelain Moon and Pomegranates) -> Porcelain Moon and Pomegranates: A Woman's Trek Through Turkey (11003ms) What are pomegranates? Floating Worlds: The Letters of Edward Gorey and Peter F. Neumeyer -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Floating Worlds: The Letters of Edward Gorey and Peter F. Neumeyer) -> Floating Worlds: The Letters of Edward Gorey and Peter F. Neumeyer (10398ms) What are pomegranates? Talking Jazz: An Illustrated Oral History -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Talking Jazz: An Illustrated Oral History) -> Talking Jazz: An Illustrated Oral History (11568ms) What are pomegranates? Heart of the circle: photographs of Native American women -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate Artbooks, Book editions published, Heart of the circle: photographs of Native American women) -> Heart of the circle: photographs of Native American women (11098ms) What are pomegranates? Seed of the pomegranate: and other poems. -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition of, pomegranate) -> (Seed of the pomegranate: and other poems., Edition Of, Seed of the pomegranate) -> Seed of the pomegranate: and other poems. (11184ms) What are pomegranates? Pomegranate seed: a novel -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition of, pomegranate) -> (Pomegranate seed: a novel, Edition Of, Pomegranate seed) -> Pomegranate seed: a novel (11469ms) What are pomegranates? Cryptorunes: codes and secret writing -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Cryptorunes: codes and secret writing) -> Cryptorunes: codes and secret writing (11469ms) What are pomegranates? The Magic Pomegranate: A Jewish Folktale (On My Own Folklore) -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition of, pomegranate) -> (The Magic Pomegranate: A Jewish Folktale (On My Own Folklore), Edition Of, The Magic Pomegranate) -> The Magic Pomegranate: A Jewish Folktale (On My Own Folklore) (11256ms) What are pomegranates? Burne-Jones -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Burne-Jones) -> Burne-Jones (10398ms) What are pomegranates? The Pomegranate Princess: And Other Tales From India -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition of, pomegranate) -> (The Pomegranate Princess: And Other Tales From India, Edition Of, The Pomegranate Princess) -> The Pomegranate Princess: And Other Tales From India (9874ms) What are pomegranates? The Wuggly Ump -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, The Wuggly Ump) -> The Wuggly Ump (11602ms) What are pomegranates? M.C. Escher kaleidocycles -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate Artbooks, Book editions published, M.C. Escher kaleidocycles) -> M.C. Escher kaleidocycles (11568ms) What are pomegranates? BookSurge Classics -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: ($x, edition, pomegranate) -> (BookSurge Classics, Book editions published, A House of Pomegranates) -> BookSurge Classics (10497ms) What are pomegranates? Women of the civil rights movement -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, Women of the civil rights movement) -> Women of the civil rights movement (10398ms) What are pomegranates? A view from the river: the Chicago Architecture Foundation river cruise -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, A view from the river: the Chicago Architecture Foundation river cruise) -> A view from the river: the Chicago Architecture Foundation river cruise (11256ms) What are pomegranates? The Other Side of Color: African American Art in the Collection of Camille O. and William H. Cosby, Jr. -10.80387899604552 What are pomegranates? -> what be [ pomegranate ] ? -> what be the expansion of pomegranate ? -> $x: (pomegranate, expansion, $x) -> $x: (pomegranate, edition, $x) -> (Pomegranate, Book editions published, The Other Side of Color: African American Art in the Collection of Camille O. and William H. Cosby, Jr.) -> The Other Side of Color: African American Art in the Collection of Camille O. and William H. Cosby, Jr. (10497ms) What year was the program first broadcast? the growing interest -7.655613962172634 What year was the program first broadcast? -> $x: (the program first broadcast, year, $x) -> $x: (the program first broadcast, come, $x) -> (The program first broadcast, comes out of, the growing interest) -> the growing interest (2387ms) What is the average weight of a Yellow Labrador? Mr Deeley -9.34379171774577 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Mr Deeley, is the owner of, a yellow Labrador) -> Mr Deeley (5074ms) What is the average weight of a Yellow Labrador? CA Sonny -9.833179391518463 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (CA Sonny, is, a friendly yellow labrador) -> CA Sonny (5074ms) What is the average weight of a Yellow Labrador? 14 years -10.200768528714997 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (14 years, is, a yellow labrador) -> 14 years (5074ms) What is the average weight of a Yellow Labrador? Kentucky Fried Chicken -10.333583203170573 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: (a yellow labrador, be, $x) -> (a female yellow Labrador, was found near, Kentucky Fried Chicken) -> Kentucky Fried Chicken (5250ms) What is the average weight of a Yellow Labrador? breeder Gretchen -10.75979900558966 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: (a yellow labrador, be, $x) -> (A yellow Labrador retriever puppy, is held by, breeder Gretchen) -> breeder Gretchen (5249ms) What is the average weight of a Yellow Labrador? ME Max -10.814908069138104 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (ME Max, is, a adorable , funny yellow labrador) -> ME Max (5074ms) What is the average weight of a Yellow Labrador? a Christmas puppy -10.887211136030196 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: (a yellow labrador, be, $x) -> (a yellow Labrador, had been, a Christmas puppy) -> a Christmas puppy (5251ms) What is the average weight of a Yellow Labrador? Number three -10.903619688460138 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Number three, was, a yellow Labrador) -> Number three (5074ms) What is the average weight of a Yellow Labrador? Butch -10.904069241759359 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Butch, is, a Yellow Labrador Retriever) -> Butch (5074ms) What is the average weight of a Yellow Labrador? an older brother Jake -10.905096241500443 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (an older brother Jake, is, a Yellow Labrador Retriever) -> an older brother Jake (5249ms) What is the average weight of a Yellow Labrador? loud noises -10.909208314185255 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: (a yellow labrador, be, $x) -> (a yellow Labrador, was terrified of, loud noises) -> loud noises (5249ms) What is the average weight of a Yellow Labrador? Maddie -10.941568395981946 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Maddie, is actually, a Yellow Labrador) -> Maddie (5249ms) What is the average weight of a Yellow Labrador? Old Yeller -10.970168638246038 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Old Yeller, was played by, a Yellow Labrador Retriever) -> Old Yeller (5643ms) What is the average weight of a Yellow Labrador? Texas USA My dog -11.056926970777358 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Texas USA My dog, is, a Yellow Labrador) -> Texas USA My dog (5643ms) What is the average weight of a Yellow Labrador? Kura -11.082959039988976 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Kura, is, a 8 year old Yellow Labrador) -> Kura (5643ms) What is the average weight of a Yellow Labrador? 16451 Cosmo -11.167239248460104 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (16451 Cosmo, is, a yellow Labrador) -> 16451 Cosmo (5643ms) What is the average weight of a Yellow Labrador? Mom -11.170819545522487 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Mom, is, a yellow labrador) -> Mom (5643ms) What is the average weight of a Yellow Labrador? Naomi -11.235799965683746 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: (a yellow labrador, be, $x) -> (a yellow Labrador, is special companion of, Naomi) -> Naomi (5643ms) What is the average weight of a Yellow Labrador? Tennessee -11.243705874731297 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: (a yellow labrador, be, $x) -> (a adorable , funny yellow labrador, was rescued from, Tennessee) -> Tennessee (5708ms) What is the average weight of a Yellow Labrador? Libby -11.271484401604056 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Libby, is, a yellow Labrador retriever) -> Libby (5708ms) What is the average weight of a Yellow Labrador? a small child -11.278527368073064 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: (a yellow labrador, be, $x) -> (a huge yellow Labrador, was dragging, a small child) -> a small child (5708ms) What is the average weight of a Yellow Labrador? three years -11.339677256038776 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: (a yellow labrador, be, $x) -> (a yellow Labrador guide dog, was a little over, three years) -> three years (5708ms) What is the average weight of a Yellow Labrador? Sunshine -11.345950399334141 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Sunshine, is, a yellow labrador) -> Sunshine (5708ms) What is the average weight of a Yellow Labrador? Badge # 17 -11.389374963145531 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Badge # 17, was, a yellow Labrador Retriever) -> Badge # 17 (5831ms) What is the average weight of a Yellow Labrador? Dakota -11.443410976003888 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Dakota, is, a 4-year-old yellow Labrador) -> Dakota (5831ms) What is the average weight of a Yellow Labrador? Hubbell -11.472524928028884 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Hubbell, is, a light-colored yellow Labrador) -> Hubbell (5831ms) What is the average weight of a Yellow Labrador? Millie -11.501375817217683 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Millie, is, a beautiful yellow labrador) -> Millie (5831ms) What is the average weight of a Yellow Labrador? Stellablue -11.516773967779216 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Stellablue, was, a yellow Labrador retriever) -> Stellablue (5831ms) What is the average weight of a Yellow Labrador? Salty -11.552042109924052 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Salty, is, a mature Yellow Labrador) -> Salty (5831ms) What is the average weight of a Yellow Labrador? Digger -11.595492986977412 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Digger, is, a yellow Labrador puppy) -> Digger (5856ms) What is the average weight of a Yellow Labrador? Duster -11.635773889360095 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Duster, is, a yellow Labrador Retriever) -> Duster (5856ms) What is the average weight of a Yellow Labrador? Hooper -11.67949180182978 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Hooper, is, a yellow Labrador Retriever) -> Hooper (5856ms) What is the average weight of a Yellow Labrador? Jjurgens -11.751664704583453 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Jjurgens, is, a frisky 4-month-old yellow Labrador retriever) -> Jjurgens (5856ms) What is the average weight of a Yellow Labrador? Rudy -11.783224754622584 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Rudy, was, a happy-go-lucky , energetic Yellow Labrador) -> Rudy (5857ms) What is the average weight of a Yellow Labrador? 2012 Hooch -11.928461898000364 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (2012 Hooch, is, a 2 year old , yellow labrador seeking adoption) -> 2012 Hooch (5856ms) What is the average weight of a Yellow Labrador? Happy Jack -11.990621034591127 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Happy Jack, is, a yellow Labrador Retriever) -> Happy Jack (5882ms) What is the average weight of a Yellow Labrador? the dogs -12.393707633945597 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (the dogs, is, a female yellow Labrador) -> the dogs (5882ms) What is the average weight of a Yellow Labrador? The puppy -12.489044314421129 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (The puppy, is, a 6 week old male yellow labrador) -> The puppy (5882ms) What is the average weight of a Yellow Labrador? the tracking dog -12.502363468231827 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (the tracking dog, is, a yellow Labrador retriever) -> the tracking dog (5882ms) What is the average weight of a Yellow Labrador? the floor -12.878562986316025 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: (a yellow labrador, be, $x) -> (A yellow Labrador, was lying on, the floor) -> the floor (5882ms) What is the average weight of a Yellow Labrador? Marley -12.881939428757894 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: ($x, be, a yellow labrador) -> (Marley, is, a yellow Labrador) -> Marley (5882ms) What is the average weight of a Yellow Labrador? back -13.347144930428215 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: ($x, be the weight of, a yellow labrador) -> $x: (a yellow labrador, be, $x) -> (a yellow Labrador-type dog, was barking in, back) -> back (5998ms) What is the average weight of a Yellow Labrador? the water -14.213157156445009 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> what be the weight of a yellow labrador ? -> $x: (a yellow labrador, weight, $x) -> $x: (a yellow labrador, love to, $x) -> (a yellow labrador, just loves to play in, the water) -> the water (6747ms) What is the average weight of a Yellow Labrador? adventure -17.20007746720335 What is the average weight of a Yellow Labrador? -> what be the average weight of [ a yellow labrador ] ? -> how many heart do a yellow labrador have ? -> $x: (a yellow labrador, heart, $x) -> $x: (a yellow labrador, loving, $x) -> (a yellow Labrador, loves, adventure) -> adventure (13077ms) What birthstone is turquoise? December -4.647319943408512 What birthstone is turquoise? -> $x: (turquoise, birthstone, $x) -> (Turquoise, is the birthstone for, December) -> December (1886ms) What birthstone is turquoise? Sagittarius Nov. 22nd -4.858085034081475 What birthstone is turquoise? -> $x: (turquoise, birthstone, $x) -> (Turquoise, is the birthstone for, Sagittarius Nov. 22nd) -> Sagittarius Nov. 22nd (1887ms) What birthstone is turquoise? Sagittarius -4.953839169482679 What birthstone is turquoise? -> $x: (turquoise, birthstone, $x) -> (Turquoise, is the birthstone of, Sagittarius) -> Sagittarius (1896ms) What birthstone is turquoise? Capricorns -5.183409034160624 What birthstone is turquoise? -> $x: (turquoise, birthstone, $x) -> (Lapis and Turquoise, are the birthstones for, Capricorns) -> Capricorns (2008ms) What birthstone is turquoise? the month -6.3276831049908715 What birthstone is turquoise? -> $x: (turquoise, birthstone, $x) -> (December Birthstone Turquoise, is the birthstone of, the month) -> the month (2094ms) What birthstone is turquoise? green -18.16447444782939 What birthstone is turquoise? -> [ what birthstone be turquoise ] ? -> do what birthstone be turquoise go away ? -> do what birthstone be turquoise go ? -> $x: ($x, instance of, birthstone) (turquoise, go, $x) -> (green, Instance Of, swarovski crystal birthstone color) (the turquoises, went into, greens) -> green (5245ms) How many events are part of the LPGA tour? LPGA -6.922071525236562 How many events are part of the LPGA tour? -> $x: ($x, instance of, events) ($x, are part of, the LPGA tour) -> $x: ($x, instance of, event) ($x, part of, lpga tour) -> $x: ($x, instance of, event) ($x, also know as, lpga tour) -> (LPGA, Instance Of, event) (LPGA, Also known as, LPGA Tour) -> LPGA (7669ms) How many events are part of the LPGA tour? earnings -7.862104924911893 How many events are part of the LPGA tour? -> $x: ($x, instance of, events) ($x, are part of, the LPGA tour) -> $x: ($x, instance of, event) ($x, part of, lpga tour) -> $x: ($x, instance of, event) (lpga tour, recording, $x) -> (earnings, Instance Of, event) (the LPGA Tour, set a record for, earnings) -> earnings (2787ms) How many events are part of the LPGA tour? charity event -7.884543676030734 How many events are part of the LPGA tour? -> $x: ($x, instance of, events) ($x, are part of, the LPGA tour) -> $x: ($x, instance of, event) ($x, part of, lpga tour) -> $x: ($x, instance of, event) ($x, play, lpga tour) -> (charity event, Instance Of, event) (charity events, was played a lot on, the LPGA tour) -> charity event (4488ms) How many events are part of the LPGA tour? major -8.448235075358184 How many events are part of the LPGA tour? -> $x: ($x, instance of, events) ($x, are part of, the LPGA tour) -> $x: ($x, instance of, event) ($x, part of, lpga tour) -> $x: ($x, instance of, event) (lpga tour, include, $x) -> (major, Instance Of, event) (her 25 LPGA Tour victories, include five in, Majors) -> major (7291ms) How many events are part of the LPGA tour? major championship -8.802358805461004 How many events are part of the LPGA tour? -> $x: ($x, instance of, events) ($x, are part of, the LPGA tour) -> $x: ($x, instance of, event) ($x, part of, lpga tour) -> $x: ($x, instance of, event) ($x, play, lpga tour) -> (major championship, Instance Of, event) (major championships, played full-time on, the LPGA Tour) -> major championship (4488ms) How many events are part of the LPGA tour? Mrs Singapore -8.82802662875108 How many events are part of the LPGA tour? -> $x: ($x, instance of, events) ($x, are part of, the LPGA tour) -> $x: ($x, instance of, event) ($x, part of, lpga tour) -> $x: ($x, instance of, event) (lpga tour, play, $x) -> (Mrs Singapore, Instance Of, event) (the LPGA Tour, has played in, Singapore) -> Mrs Singapore (3090ms) How many events are part of the LPGA tour? Wie -8.952658071305228 How many events are part of the LPGA tour? -> $x: ($x, instance of, events) ($x, are part of, the LPGA tour) -> $x: ($x, instance of, event) ($x, part of, lpga tour) -> $x: ($x, instance of, event) ($x, play, lpga tour) -> (Wie, Instance Of, medium event) (Wie, will be playing, her seventh and final LPGA Tour event) -> Wie (4488ms) How many events are part of the LPGA tour? WIE -8.976694174762882 How many events are part of the LPGA tour? -> $x: ($x, instance of, events) ($x, are part of, the LPGA tour) -> $x: ($x, instance of, event) ($x, part of, lpga tour) -> $x: ($x, instance of, event) ($x, play, lpga tour) -> (WIE, Instance Of, event) (Wie, has been playing, LPGA Tour events) -> WIE (4488ms) How many events are part of the LPGA tour? South Koreans -9.095732954335679 How many events are part of the LPGA tour? -> $x: ($x, instance of, events) ($x, are part of, the LPGA tour) -> $x: ($x, instance of, event) ($x, part of, lpga tour) -> $x: ($x, instance of, event) ($x, play, lpga tour) -> (South Koreans, Instance Of, event) (South Koreans, play on, the LPGA Tour) -> South Koreans (4488ms) How many events are part of the LPGA tour? Hawaii -9.19587657176861 How many events are part of the LPGA tour? -> $x: ($x, instance of, events) ($x, are part of, the LPGA tour) -> $x: ($x, instance of, event) ($x, part of, lpga tour) -> $x: ($x, instance of, event) (lpga tour, play, $x) -> (Hawaii, Instance Of, event) (the last LPGA Tour event, played in, Hawaii) -> Hawaii (3090ms) How many events are part of the LPGA tour? Waterloo -9.317980565418344 How many events are part of the LPGA tour? -> $x: ($x, instance of, events) ($x, are part of, the LPGA tour) -> $x: ($x, instance of, event) ($x, part of, lpga tour) -> $x: ($x, instance of, event) ($x, play, lpga tour) -> (Waterloo, Instance Of, event) (Waterloo, will play host to, the LPGA Tour) -> Waterloo (6879ms) What was Sammy Sosa's team? Right Field -2.9894681182655822 What was Sammy Sosa's team? -> $x: (Sammy Sosa, team, $x) -> (sammy sosa, plays the athletic team position, Right Field) -> Right Field (2654ms) What was Sammy Sosa's team? Cubs -3.650761988408028 What was Sammy Sosa's team? -> $x: (Sammy Sosa, team, $x) -> (sammy sosa, plays for the team, Cubs) -> Cubs (2654ms) What was Sammy Sosa's team? Outfielder -3.7379734003807603 What was Sammy Sosa's team? -> $x: (Sammy Sosa, team, $x) -> (sammy sosa, plays the athletic team position, Outfielder) -> Outfielder (2654ms) What was Sammy Sosa's team? PEDs -4.901012727818765 What was Sammy Sosa's team? -> $x: (Sammy Sosa, team, $x) -> $x: (Sammy Sosa, be link, $x) -> (Sammy Sosa, have been linked to using, PEDs) -> PEDs (4651ms) What was Sammy Sosa's team? positive tests -5.270440459116543 What was Sammy Sosa's team? -> $x: (Sammy Sosa, team, $x) -> $x: (Sammy Sosa, be link, $x) -> (Sammy Sosa, were linked to, positive tests) -> positive tests (4651ms) What was Sammy Sosa's team? Chicago -5.312460267813953 What was Sammy Sosa's team? -> $x: (Sammy Sosa, team, $x) -> $x: (Sammy Sosa, well be, $x) -> (Cubbies home run king Sammy Sosa, was well loved in, Chicago) -> Chicago (4606ms) What was Sammy Sosa's team? Vegas -5.444983939960528 What was Sammy Sosa's team? -> $x: (Sammy Sosa, team, $x) -> $x: (Sammy Sosa, be spot, $x) -> (Sammy Sosa, was spotted last week in, Vegas) -> Vegas (4431ms) What was Sammy Sosa's team? home runs -5.545688944087041 What was Sammy Sosa's team? -> $x: (Sammy Sosa, team, $x) -> $x: (Sammy Sosa, league, $x) -> (Sammy Sosa, now leads the league in, home runs) -> home runs (4696ms) What was Sammy Sosa's team? Mlb -5.5858221854164185 What was Sammy Sosa's team? -> $x: (Sammy Sosa, team, $x) -> $x: (Sammy Sosa, league, $x) -> (sammy sosa, plays in the league, Mlb) -> Mlb (4697ms) What was Sammy Sosa's team? the Dominican Republic -6.177545213766242 What was Sammy Sosa's team? -> $x: (Sammy Sosa, team, $x) -> $x: (Sammy Sosa, grow up, $x) -> (Sammy Sosa, grew up in, the Dominican Republic) -> the Dominican Republic (4518ms) What was Sammy Sosa's team? 42 home runs -6.239493656224374 What was Sammy Sosa's team? -> $x: (Sammy Sosa, team, $x) -> $x: (Sammy Sosa, league, $x) -> (Sammy Sosa, now leads the Major Leagues with, 42 home runs) -> 42 home runs (4696ms) What was Sammy Sosa's team? Thursday -6.808585411637017 What was Sammy Sosa's team? -> $x: (Sammy Sosa, team, $x) -> $x: (Sammy Sosa, train, $x) -> (Sammy Sosa, began training, Thursday) -> Thursday (4718ms) What was Sammy Sosa's team? the lead -7.221086610070968 What was Sammy Sosa's team? -> $x: (Sammy Sosa, team, $x) -> $x: (Sammy Sosa, be tie, $x) -> (a 0.41 era Sammy Sosa, is tied for, the lead) -> the lead (4538ms) What was Sammy Sosa's team? homers -7.652190409012987 What was Sammy Sosa's team? -> $x: (Sammy Sosa, team, $x) -> $x: (Sammy Sosa, paired, $x) -> (Sammy Sosa, hits a pair of, homers) -> homers (4608ms) What was Sammy Sosa's team? players -7.738688186743293 What was Sammy Sosa's team? -> $x: (Sammy Sosa, team, $x) -> $x: (Sammy Sosa, stick, $x) -> (a bleached Sammy Sosa, is sticking, players) -> players (4518ms) What was Sammy Sosa's team? inside-the-park jobs -11.673655151126203 What was Sammy Sosa's team? -> what be [ sammy sosa s ] team ? -> what be the fact of sammy sosa s ? -> $x: (sammy sosa s, fact, $x) -> $x: (sammy sosa s, be, $x) -> (Sammy Sosa?s 598 home runs, were, inside-the-park jobs) -> inside-the-park jobs (7704ms) What was Sammy Sosa's team? the ?Mendoza line -11.697891199305387 What was Sammy Sosa's team? -> what be [ sammy sosa s ] team ? -> what be the fact of sammy sosa s ? -> $x: (sammy sosa s, fact, $x) -> $x: (sammy sosa s, be, $x) -> (Sammy Sosa?s average, is closer to, the ?Mendoza line) -> the ?Mendoza line (7704ms) What was Sammy Sosa's team? the news and everyone -13.79649063519231 What was Sammy Sosa's team? -> what be [ sammy sosa s ] team ? -> what be the fact of sammy sosa s ? -> $x: (sammy sosa s, fact, $x) -> $x: ($x, be, sammy sosa s) -> (the news and everyone, was talking about, Sammy Sosa?s skin) -> the news and everyone (7704ms) Which film won three awards at the festival? The Film -3.2260548419903303 Which film won three awards at the festival? -> $x: ($x, instance of, film) ($x, won three awards at, the festival) -> (The Film, Instance Of, film) (The film, won three awards at, the film festival) -> The Film (374ms) Which film won three awards at the festival? the film -7.9823076092128105 Which film won three awards at the festival? -> $x: ($x, instance of, film) ($x, won three awards at, the festival) -> $x: ($x, top the list of, film) ($x, won three awards at, the festival) -> (the film, still tops the list of, most women?s favorite films) (The film, won three awards at, the film festival) -> the film (899ms) What organization investigated the disaster? BAT-MAN -4.90778286770008 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> (BAT-MAN, Instance Of, organization) (Batman, goes to investigate, the disaster) -> BAT-MAN (2279ms) What organization investigated the disaster? Congress -5.011972323068232 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> (Congress, Instance Of, organization) (?Congress, continues to investigate, the disaster) -> Congress (2279ms) What organization investigated the disaster? scientist -7.257903452655609 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> (scientist, Instance Of, organization) (Scientists, are investigating whether, the BP oil disaster) -> scientist (2279ms) What organization investigated the disaster? local authority -7.766159809358351 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, be alert to, the disaster) -> (local authority, Instance Of, organization) (local authorities, were first alerted to, the disaster) -> local authority (2937ms) What organization investigated the disaster? Dow -7.869075654191582 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, to relate, the disaster) -> (Dow, Instance Of, organization) (Dow, has any liabilities relating to, the disaster) -> Dow (6543ms) What organization investigated the disaster? Specialists -7.956645888881363 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) (the disaster, investigate by, $x) -> (Specialists, Instance Of, organization) (the disaster, is being thoroughly investigated by, specialists) -> Specialists (5179ms) What organization investigated the disaster? DOW -7.995702986831747 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, to relate, the disaster) -> (DOW, Instance Of, organization) (Dow, has any liabilities relating to, the disaster) -> DOW (6542ms) What organization investigated the disaster? Scientists -8.305251595484723 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, be investigate whether, the disaster) -> (Scientists, Instance Of, organization of scientific man) (Scientists, are investigating whether, the BP oil disaster) -> Scientists (8183ms) What organization investigated the disaster? prosecutor -8.365790390666163 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> (prosecutor, Instance Of, organization) (prosecutors, investigating, the Concordia disaster) -> prosecutor (2740ms) What organization investigated the disaster? Investigators -9.007330364076713 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, be probe, the disaster) -> (Investigators, Instance Of, professional security organization) (Investigators, are still probing the cause of, the disaster) -> Investigators (7816ms) What organization investigated the disaster? emergency service -9.138346976716427 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, to relate, the disaster) -> (emergency service, Instance Of, organization) (emergency services, related to, the disaster) -> emergency service (6542ms) What organization investigated the disaster? participant -9.191962794824398 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> (participant, Instance Of, organization) (Participants, investigate one of, nature?s natural disasters) -> participant (2936ms) What organization investigated the disaster? specialist -9.449083139055926 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) (the disaster, investigate by, $x) -> (specialist, Instance Of, organization) (the disaster, is being thoroughly investigated by, specialists) -> specialist (5179ms) What organization investigated the disaster? children's -9.62729415155656 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, be take seriously, disaster) -> (children's, Instance Of, organization) (children, are taken seriously in, disaster response) -> children's (12467ms) What organization investigated the disaster? Materials -9.664211851210853 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, to relate, the disaster) -> (Materials, Instance Of, organization) (material, related to, the disaster) -> Materials (6542ms) What organization investigated the disaster? WHS -9.745990802361321 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, have refer, disaster) -> (WHS, Instance Of, great organization) (WHS, has been referred to as, a disaster) -> WHS (10855ms) What organization investigated the disaster? Talk -9.757172855942773 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, to relate, the disaster) -> (Talk, Instance Of, organization) (talks, related to, the disaster) -> Talk (6648ms) What organization investigated the disaster? PFD Donations -10.04191971596455 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, be to compare, disaster) -> (PFD Donations, Instance Of, organization) (donations, are relatively low compared to, other disasters) -> PFD Donations (9613ms) What organization investigated the disaster? middle school -10.068950443730952 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, to relate, disaster) -> (middle school, Instance Of, organization) (middle school, relate to, environmental disasters) -> middle school (13559ms) What organization investigated the disaster? Children's -10.074017817966476 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, be take seriously, disaster) -> (Children's, Instance Of, organization) (children, are taken seriously in, disaster response) -> Children's (12466ms) What organization investigated the disaster? Children -10.274926419956985 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, be take seriously, disaster) -> (Children, Instance Of, organization) (children, are taken seriously in, disaster response) -> Children (12466ms) What organization investigated the disaster? coyote skin -10.285209982799593 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, will revisit, disaster) -> (coyote skin, Instance Of, organization) (Coyotes, will revisit, disaster) -> coyote skin (9778ms) What organization investigated the disaster? Bank -10.430937450157193 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, be to assess, disaster) -> (Bank, Instance Of, organization) (Banks, are required to assess, various disaster risks) -> Bank (9999ms) What organization investigated the disaster? Coyotes -10.481626312120763 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, will revisit, disaster) -> (Coyotes, Instance Of, volunteer organization) (Coyotes, will revisit, disaster) -> Coyotes (9778ms) What organization investigated the disaster? TALK -10.55002529142498 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, to relate, the disaster) -> (TALK, Instance Of, organization) (talks, related to, the disaster) -> TALK (6648ms) What organization investigated the disaster? COST -10.63645243528175 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, to relate, the disaster) -> (COST, Instance Of, organization) (costs, related to, the disaster) -> COST (6648ms) What organization investigated the disaster? PAPERS -10.706759780593572 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, to relate, the disaster) -> (PAPERS, Instance Of, organization) (papers, related to, the disaster) -> PAPERS (6648ms) What organization investigated the disaster? CLAIM -10.71488180912704 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, to relate, the disaster) -> (CLAIM, Instance Of, organization) (claims, relating to, the disaster) -> CLAIM (6648ms) What organization investigated the disaster? COYOTE -10.716984884768102 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, will revisit, disaster) -> (COYOTE, Instance Of, organization) (Coyotes, will revisit, disaster) -> COYOTE (9778ms) What organization investigated the disaster? Surprise -10.812752364959604 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, to relate, disaster) -> (Surprise, Instance Of, organization) (surprise, was also related to, disaster) -> Surprise (13559ms) What organization investigated the disaster? investigator -10.927908308059948 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, be probe, the disaster) -> (investigator, Instance Of, individual and organization) (Investigators, are still probing the cause of, the disaster) -> investigator (7816ms) What organization investigated the disaster? cost -11.328227236673143 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, to relate, the disaster) -> (cost, Instance Of, organization) (costs, related to, the disaster) -> cost (6865ms) What organization investigated the disaster? Citizens -11.578976376766143 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, in understanding, disaster) -> (Citizens, Instance Of, organization) (citizens, understand in preparing for, disaster) -> Citizens (11757ms) What organization investigated the disaster? claim -11.617748227494129 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, to relate, the disaster) -> (claim, Instance Of, organization) (claims, relating to, the disaster) -> claim (6865ms) What organization investigated the disaster? Problems -11.748561767344446 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, to relate, disaster) -> (Problems, Instance Of, organization) (the problems, related to, the disaster) -> Problems (13559ms) What organization investigated the disaster? Citizen -12.089835502418765 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, in understanding, disaster) -> (Citizen, Instance Of, national, nonprofit consumer advocacy organization) (citizens, understand in preparing for, disaster) -> Citizen (11758ms) What organization investigated the disaster? bank -12.23794569080217 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, be to assess, disaster) -> (bank, Instance Of, organization) (Banks, are required to assess, various disaster risks) -> bank (9999ms) What organization investigated the disaster? donations -12.248553729856742 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, be to compare, disaster) -> (donations, Instance Of, organization) (donations, are relatively low compared to, other disasters) -> donations (9613ms) What organization investigated the disaster? teams -12.428227811428872 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, and / or, organization) ($x, investigate, disaster) -> (teams, and/or, organizations) (the team, investigating, disaster) -> teams (10314ms) What organization investigated the disaster? victim -12.450316197620888 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) (disaster, be remit to, $x) -> (victim, Instance Of, organization) (Disaster relief funds, are remitted to, victims) -> victim (11355ms) What organization investigated the disaster? AREA -12.75943299597878 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, to relate, disaster) -> (AREA, Instance Of, organization) (areas, related to, disaster management) -> AREA (16516ms) What organization investigated the disaster? issue -13.25274106366205 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, to relate, disaster) -> (issue, Instance Of, organization) (the issues, related to, the disaster) -> issue (16517ms) What organization investigated the disaster? event -13.459200632994825 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, to relate, disaster) -> (event, Instance Of, organization) (events, related to, natural disasters) -> event (16538ms) What organization investigated the disaster? citizen -13.546656447304667 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, in understanding, disaster) -> (citizen, Instance Of, role outside the organization) (citizens, understand in preparing for, disaster) -> citizen (11758ms) What organization investigated the disaster? expense -13.98356487910971 What organization investigated the disaster? -> $x: ($x, instance of, organization) ($x, investigated, the disaster) -> $x: ($x, instance of, organization) ($x, investigate, disaster) -> $x: ($x, instance of, organization) ($x, to relate, disaster) -> (expense, Instance Of, organization function) (expenses, related to, disaster response) -> expense (16580ms) What organization investigated the disaster? Investigators Forum -16.890223311589924 What organization investigated the disaster? -> what [ organization investigate the disaster ] ? -> what its organization investigate the disaster ? -> $x: ($x, instance of, its organization) ($x, investigate, the disaster) -> $x: ($x, instance of, its organization) ($x, be probe, the disaster) -> (Investigators Forum, Instance Of, one-of-its-kind full service Healthcare Research Organization) (Investigators, are still probing the cause of, the disaster) -> Investigators Forum (19482ms) What is the birthstone of October? Tourmaline 1.7331874295615455 What is the birthstone of October? -> $x: ($x, is the birthstone of, October) -> (Tourmaline, is the birthstone of, October) -> Tourmaline (1275ms) What is the birthstone of October? Opal 1.529273898587693 What is the birthstone of October? -> $x: ($x, is the birthstone of, October) -> (Opal, is also the birthstone of, October) -> Opal (1275ms) What is the birthstone of October? Coral 1.2883807580584818 What is the birthstone of October? -> $x: ($x, is the birthstone of, October) -> (Coral, is the birthstone of, October and November) -> Coral (1275ms) What is the birthstone of October? the 8th year 1.099940177611417 What is the birthstone of October? -> $x: ($x, is the birthstone of, October) -> (the 8th year, is the traditional birthstone of, October) -> the 8th year (1275ms) What is the birthstone of October? the 14th and 18th years 0.944003254939821 What is the birthstone of October? -> $x: ($x, is the birthstone of, October) -> (the 14th and 18th years, is the birthstone of, October) -> the 14th and 18th years (1275ms) What is the birthstone of October? The opal 0.8072976893795745 What is the birthstone of October? -> $x: ($x, is the birthstone of, October) -> (The opal, is the birthstone of, October) -> The opal (1306ms) When is the summer solstice? 21 June 1.6184507269723438 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> (The summer solstice, is on, 21 June) -> 21 June (1383ms) When is the summer solstice? June 21 0.9682293069479933 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> (The Summer Solstice, was on, June 21) -> June 21 (1383ms) When is the summer solstice? June 25 0.9154401328045738 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> (the summer solstice, was celebrated on, June 25) -> June 25 (1383ms) When is the summer solstice? June 21st 0.4305562099882727 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> (The Summer Solstice, was on, June 21st) -> June 21st (2942ms) When is the summer solstice? June 20th 0.4196181841047766 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> (The summer solstice, is on, June 20th) -> June 20th (2942ms) When is the summer solstice? May 2017 0.4074805201201803 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, is passed in, May 2017) -> May 2017 (2942ms) When is the summer solstice? December 22 0.324598866157114 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> (The Southern Summer Solstice, is on, December 22) -> December 22 (2942ms) When is the summer solstice? July 31st 0.2598762525591325 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> (the Summer Solstice, is celebrated on, July 31st) -> July 31st (2999ms) When is the summer solstice? June 0.1941846346447016 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (The Summer solstice, is in, June) -> June (2999ms) When is the summer solstice? December -0.5052220994464331 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, is in, December) -> December (2999ms) When is the summer solstice? 2016 -0.828170997137732 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (Northern summer solstice, is in, 2016) -> 2016 (3092ms) When is the summer solstice? 21st June -0.8485091319260403 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> (the Summer Solstice, is on, 21st June) -> 21st June (3091ms) When is the summer solstice? 1974 -0.877646567328247 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (The annual Summer Solstice Parade, began in, 1974) -> 1974 (3091ms) When is the summer solstice? 2000 -0.9137396273981655 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (The southern summer solstice, began in, 2000) -> 2000 (3131ms) When is the summer solstice? Tuesday -1.103017362517389 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> (The Summer Solstice, be celebrated on, Tuesday) -> Tuesday (3130ms) When is the summer solstice? 1o Virgo -1.2958773334962617 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, was in, 1o Virgo) -> 1o Virgo (3156ms) When is the summer solstice? December in Peru -1.4104500282169052 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, is in, December in Peru) -> December in Peru (3156ms) When is the summer solstice? theory -1.5082903188873176 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the Summer Solstice, is in, theory) -> theory (3180ms) When is the summer solstice? the 21st -1.5122387595702307 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> (The summer solstice, is always on, the 21st) -> the 21st (3180ms) When is the summer solstice? June 20 -1.5944447680235583 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (the summer solstice, occurred on, June 20) -> June 20 (3180ms) When is the summer solstice? 525.5 Seasons and zones -1.6979952639229254 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, is classed in, 525.5 Seasons and zones) -> 525.5 Seasons and zones (3206ms) When is the summer solstice? the 21st June -1.7517955989354497 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (Summer Solstice, is on, the 21st June) -> the 21st June (3206ms) When is the summer solstice? time -1.8055155375088872 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, is an instant in, time) -> time (3230ms) When is the summer solstice? June 21 , 1:45 am -2.0372640168803624 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (the Summer Solstice, begins on, June 21 , 1:45 am) -> June 21 , 1:45 am (3321ms) When is the summer solstice? June 21 marks -2.149297633190841 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (The summer solstice, falls this year on, June 21 marks) -> June 21 marks (3321ms) When is the summer solstice? June 21 or 22 -2.271223986537776 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (the Summer Solstice, occurs on, June 21 or 22) -> June 21 or 22 (3347ms) When is the summer solstice? Leo -2.2836392146535447 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, was in, Leo) -> Leo (3346ms) When is the summer solstice? June 21 , 2009 -2.332233638747864 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (the summer solstice, begins on, June 21 , 2009) -> June 21 , 2009 (3368ms) When is the summer solstice? the 4th July -2.3413734706057583 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (the summer solstice, fell on, the 4th July) -> the 4th July (3368ms) When is the summer solstice? December 21st -2.3910476508926966 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (the summer solstice, would occur on, December 21st) -> December 21st (3386ms) When is the summer solstice? June 21/June 22 -2.4109272297890634 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (The summer solstice, usually occurs on, June 21/June 22) -> June 21/June 22 (3386ms) When is the summer solstice? meaning -2.465629538716618 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (The summer solstice, is very similar in, meaning) -> meaning (3387ms) When is the summer solstice? June 20th or 21st -2.492273432735847 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (The summer solstice, occurs on, June 20th or 21st) -> June 20th or 21st (3387ms) When is the summer solstice? places -2.5442287931094483 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, is celebrated in, places) -> places (3410ms) When is the summer solstice? balance -2.5452073688612087 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer and winter solstices, are in, balance) -> balance (3410ms) When is the summer solstice? The Winter -2.711436520359163 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the Winter and Summer Solstices, are unfolded in, The Winter) -> The Winter (3431ms) When is the summer solstice? Jun 21 2011 -2.7534152420943716 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (summer solstice, begins on, Jun 21 2011) -> Jun 21 2011 (3431ms) When is the summer solstice? modern society -2.7854303226198884 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the Summer Solstice, is still celebrated in, modern society) -> modern society (3451ms) When is the summer solstice? a long valley -2.79227138786633 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (The Summer Solstice celebration, was held in, a long valley) -> a long valley (3451ms) When is the summer solstice? March 30 -2.8179492690516192 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (Mars ? Summer Solstice, occurs on, March 30) -> March 30 (3451ms) When is the summer solstice? June 21 , 2010 -2.819580339093418 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (Summer or Summer solstice, begins on, June 21 , 2010) -> June 21 , 2010 (3451ms) When is the summer solstice? June 21st and winter solstice -2.8496288805249215 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (Summer solstice, occurs on, June 21st and winter solstice) -> June 21st and winter solstice (3451ms) When is the summer solstice? June 20th/21st -2.854869536208835 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (Summer Solstice, happens each year on, June 20th/21st) -> June 20th/21st (3469ms) When is the summer solstice? a separate post -2.898439694384844 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (The Summer Solstice, will be covered in, a separate post) -> a separate post (3469ms) When is the summer solstice? Damanhur -3.1144819048581005 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the first summer solstice, was celebrated in, Damanhur) -> Damanhur (3469ms) When is the summer solstice? France -3.2234768138473386 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, is a big deal in, France) -> France (3488ms) When is the summer solstice? Authorities Concept Scheme -3.28270077853546 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (Summer solstice, In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (3488ms) When is the summer solstice? Topical Terms Concept Scheme -3.3216850092033585 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (Summer solstice, In Scheme, Topical Terms Concept Scheme) -> Topical Terms Concept Scheme (3510ms) When is the summer solstice? late June -3.3937001075839666 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (the Summer Solstice, occurred in, late June) -> late June (3509ms) When is the summer solstice? Gemini -3.411781513534758 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, is in, Gemini) -> Gemini (3510ms) When is the summer solstice? a Saturday -3.490897255730118 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (the summer solstice, fell on, a Saturday) -> a Saturday (3535ms) When is the summer solstice? Taurus -3.4910368965606917 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, is located in, Taurus) -> Taurus (3535ms) When is the summer solstice? the 20th -3.5938526494609926 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (summer solstice, is actually on, the 20th) -> the 20th (3580ms) When is the summer solstice? the 21st of June -3.713438653483691 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (The Summer Solstice, falls on, the 21st of June) -> the 21st of June (3803ms) When is the summer solstice? June 20 or 21 -3.762000349616894 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (the summer solstice, falls on, June 20 or 21) -> June 20 or 21 (3803ms) When is the summer solstice? Sunday -3.764228678315804 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (The summer solstice, arrives on, Sunday) -> Sunday (3804ms) When is the summer solstice? a Wednesday -3.7694747757352265 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (Summer Solstice, fell on, a Wednesday) -> a Wednesday (3804ms) When is the summer solstice? 1983 -3.8049629804244898 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> (The summer solstice: poems, Publication date, 1983) -> 1983 (6117ms) When is the summer solstice? the time -3.8410498724422393 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, was located in, the time) -> the time (3824ms) When is the summer solstice? Monday -3.848848554047886 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (The Summer Solstice, has arrived on, Monday) -> Monday (3824ms) When is the summer solstice? 1996 -3.882931441760288 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> (The Disappearance of Summer Solstice, Publication date, 1996) -> 1996 (6116ms) When is the summer solstice? the middle -3.929808359383856 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, is in, the middle) -> the middle (3824ms) When is the summer solstice? 2002 -4.002882920738439 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> (Midsummer: Magical Celebrations of the Summer Solstice, Publication date, 2002) -> 2002 (6116ms) When is the summer solstice? 1969 -4.002882920738439 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> (Notes on the summer solstice, June 21, 1969, Publication date, 1969) -> 1969 (6116ms) When is the summer solstice? the reversal -4.006935215215122 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the Summer Solstice, is in, the reversal) -> the reversal (3903ms) When is the summer solstice? 1988 -4.050006716051284 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> (Maestro Ali Akbar Khan: The Summer Solstice, Initial release date, 1988) -> 1988 (6116ms) When is the summer solstice? 1943 -4.126582883434657 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> (The night of the summer solstice: & other stories of the Russian war, Publication date, 1943) -> 1943 (6116ms) When is the summer solstice? summer -4.151047399272452 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (Summer Solstice, is the longest day in, summer) -> summer (3925ms) When is the summer solstice? 2001 -4.186142124732836 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> (Summer Solstice,The, Publication date, 2001) -> 2001 (6116ms) When is the summer solstice? Saturday -4.253474058685651 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (Summer Solstice events, abound on, Saturday) -> Saturday (3942ms) When is the summer solstice? the hundreds -4.301633447518312 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the Summer Solstice Parade, was in, the hundreds) -> the hundreds (3942ms) When is the summer solstice? Friday -4.354853908953768 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (The summer solstice, falls on, Friday) -> Friday (3943ms) When is the summer solstice? the day -4.484210848605629 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> (the summer solstice, am most active early in, the day) -> the day (3971ms) When is the summer solstice? 112 years?or -4.492909272413171 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (summer solstice, has occurred in, 112 years?or) -> 112 years?or (3972ms) When is the summer solstice? the mid-point -4.516558051631373 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> (the Summer Solstice, is celebrated on, the mid-point) -> the mid-point (3972ms) When is the summer solstice? mid-summer -4.5984073776328875 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (The summer solstice, occurs in, mid-summer) -> mid-summer (3989ms) When is the summer solstice? full force -4.813953042625662 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (The summer solstice, came in, full force) -> full force (4054ms) When is the summer solstice? Mid -5.166789399598218 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (the summer solstice, fell on, Mid) -> Mid (4237ms) When is the summer solstice? Mid-year -5.284525951742066 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (the summer solstice, fell on, Mid-year) -> Mid-year (4257ms) When is the summer solstice? the UK today -5.2859705507734525 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (the summer solstice, began in, the UK today) -> the UK today (4257ms) When is the summer solstice? the Northern Hemisphere -5.300117744000178 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (the summer solstice, occurs in, the Northern Hemisphere) -> the Northern Hemisphere (4279ms) When is the summer solstice? Cancer -5.306482043352654 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (the summer solstice, falls in, Cancer) -> Cancer (4279ms) When is the summer solstice? a full moon -5.375004227541533 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (the summer solstice, happened to fall on, a full moon) -> a full moon (4279ms) When is the summer solstice? seasons -5.378479731497796 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (The Summer Solstice, heralds the change in, seasons) -> seasons (4279ms) When is the summer solstice? mid-July -5.431263238205988 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (the summer solstice, then will flower in, mid-July) -> mid-July (4297ms) When is the summer solstice? the Kimmel Center -5.454252400848269 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (Summer Solstice, took place in, the Kimmel Center) -> the Kimmel Center (4297ms) When is the summer solstice? a few days -5.458309417491254 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (The Summer Solstice, will take place in, a few days) -> a few days (4298ms) When is the summer solstice? one scandal -5.459100652819109 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (the Summer Solstice Sun, will shine on, one scandal) -> one scandal (4297ms) When is the summer solstice? Beltaine -5.518257767643734 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (Midsummer / Summer Solstice, was begun in, Beltaine) -> Beltaine (4316ms) When is the summer solstice? service -5.519383637828597 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (our Summer and Winter Solstice Gatherings, is done in, service) -> service (4316ms) When is the summer solstice? an ATV -5.524923640747753 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (the summer solstice, then jumped on, an ATV) -> an ATV (4316ms) When is the summer solstice? Latvia -5.5520904676010705 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (the summer solstice, would do in, Latvia) -> Latvia (4316ms) When is the summer solstice? 2001-04-01 -5.563376710650385 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> (Summer Solstice,The, Publication date, 2001-04-01) -> 2001-04-01 (6116ms) When is the summer solstice? Argentina -5.706984147175875 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (the Summer Solstice solar eclipse, began in, Argentina) -> Argentina (4333ms) When is the summer solstice? Texas -5.777719955202615 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (Summer Solstice, was too dang hot in, Texas) -> Texas (4333ms) When is the summer solstice? Squamish -5.823698227784883 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (Sky Summer Solstice Festival, was held in, Squamish) -> Squamish (4333ms) When is the summer solstice? two weeks -5.857278159653893 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (Summer solstice, arrived in, two weeks) -> two weeks (4449ms) When is the summer solstice? 1991 -5.888668074082154 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Summer Solstice, Release Date, 1991) -> 1991 (7133ms) When is the summer solstice? 1971 -5.888668074082154 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Summer Solstice, Release Date, 1971) -> 1971 (7133ms) When is the summer solstice? 1980 -5.888668074082154 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Summer solstice, Publication date, 1980) -> 1980 (7133ms) When is the summer solstice? 1972 -5.888668074082154 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Summer solstice, Publication date, 1972) -> 1972 (7133ms) When is the summer solstice? 2003 -5.936315467120697 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Summer Solstice, Initial release date, 2003) -> 2003 (7364ms) When is the summer solstice? 1976 -5.975299697788596 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Summer solstice: a novel, Publication date, 1976) -> 1976 (7364ms) When is the summer solstice? Austin -6.052536999375797 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (Summer Solstice, officially arrives in, Austin) -> Austin (4467ms) When is the summer solstice? 2005 -6.09712541862578 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Summer Solstice: A Novel of Adobe Springs, New Mexico, Publication date, 2005) -> 2005 (7364ms) When is the summer solstice? Southern California -6.2604897466108245 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (Summer Solstice, means so much more here in, Southern California) -> Southern California (4467ms) When is the summer solstice? the longest day -6.260676581209465 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (the Summer Solstice, results in, the longest day) -> the longest day (4467ms) When is the summer solstice? the birth -6.331020190145496 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (the summer solstice, brings happiness in, the birth) -> the birth (4601ms) When is the summer solstice? the observer -6.371499649922308 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (summer solstice, depends on, the observer) -> the observer (4601ms) When is the summer solstice? the sign -6.525935927187609 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (the summer solstice, took place in, the sign) -> the sign (4601ms) When is the summer solstice? the running -6.540073594212938 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (summer solstice Labor Day, are in, the running) -> the running (4617ms) When is the summer solstice? the belief -6.554220734737367 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (Summer solstice traditions, were rooted in, the belief) -> the belief (4617ms) When is the summer solstice? the sky -6.68242944936981 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (summer solstice, is very low in, the sky) -> the sky (4636ms) When is the summer solstice? the earth -6.712660738820249 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (the summer solstice Z, represents the point on, the earth) -> the earth (4636ms) When is the summer solstice? the desert -6.808224110789062 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> ('s summer solstice celebration, was held in, the desert) -> the desert (4636ms) When is the summer solstice? the home page -6.862805794094489 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (summer solstice, is featured on, the home page) -> the home page (4636ms) When is the summer solstice? the beginnings -6.961960576915631 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (the summer solstice, ushered in, the beginnings) -> the beginnings (4659ms) When is the summer solstice? the sixth month -6.971552743465411 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (the summer solstice, occurs in, the sixth month) -> the sixth month (4659ms) When is the summer solstice? the date -7.049560705499642 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (summer solstice, occurs on, the date) -> the date (4726ms) When is the summer solstice? the night -7.1088019322052425 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (the summer solstice, start on, the night) -> the night (4726ms) When is the summer solstice? the following days -7.264222184091319 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (The summer solstice, occurs on, the following days) -> the following days (4726ms) When is the summer solstice? 1997-05-20 -7.2659026599997025 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Summer Solstice, Release Date, 1997-05-20) -> 1997-05-20 (7552ms) When is the summer solstice? 2001-02-19 -7.2659026599997025 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Summer Solstice, Release Date, 2001-02-19) -> 2001-02-19 (7552ms) When is the summer solstice? 2009-12-08 -7.2659026599997025 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Summer Solstice, Release Date, 2009-12-08) -> 2009-12-08 (7552ms) When is the summer solstice? the balance -7.282949418721518 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (the summer solstice ?Buddhabrot ?, reflects on, the balance) -> the balance (4726ms) When is the summer solstice? 2006-02-01 -7.313550053038245 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Summer Solstice, Original air date, 2006-02-01) -> 2006-02-01 (7552ms) When is the summer solstice? 1999-06-01 -7.352534283706144 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Sun Dance: Summer Solstice, Release Date, 1999-06-01) -> 1999-06-01 (7591ms) When is the summer solstice? 2011 -7.354645331696682 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the day of the summer solstice ? -> $x: ($x, be the day of, the summer solstice) -> $x: ($x, day of, summer solstice) -> (2011, was the first day of, Summer Solstice) -> 2011 (7591ms) When is the summer solstice? the ice -7.36753296733515 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> (summer solstice melt ponds, start to form on, the ice) -> the ice (4943ms) When is the summer solstice? 2011-06-21 -7.38502114259606 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Tunguska Summer Solstice, Volume 1, Release Date, 2011-06-21) -> 2011-06-21 (7591ms) When is the summer solstice? 2004-06-19 -7.41251002319522 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Summer Solstice 2004 :: Derby, Original air date, 2004-06-19) -> 2004-06-19 (7591ms) When is the summer solstice? 2005-06-19 -7.41251002319522 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Summer Solstice 2005 :: Wakefield, Original air date, 2005-06-19) -> 2005-06-19 (7591ms) When is the summer solstice? 2008-11-01 -7.41251002319522 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Summer Solstice Entheos Conference & Festival, Release Date, 2008-11-01) -> 2008-11-01 (7590ms) When is the summer solstice? 2005-06-21 -7.436071920851642 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Summer Solstice 2003 :: Woodchester Mansion, Original air date, 2005-06-21) -> 2005-06-21 (7630ms) When is the summer solstice? 2006-06-24 -7.436071920851642 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Summer Solstice 2006 : LLanelli Wales, Original air date, 2006-06-24) -> 2006-06-24 (7630ms) When is the summer solstice? 1998-06-16 -7.436071920851642 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Summer Solstice 2: A Windham Hill Collection, Release Date, 1998-06-16) -> 1998-06-16 (7630ms) When is the summer solstice? 2004-06-20 -7.456492232153876 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Most Haunted Live - Summer Solstice 2, Original air date, 2004-06-20) -> 2004-06-20 (7630ms) When is the summer solstice? 2004-06-21 -7.456492232153876 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Most Haunted Live - Summer Solstice 3, Original air date, 2004-06-21) -> 2004-06-21 (7676ms) When is the summer solstice? 2005-06-20 -7.456492232153876 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Most Haunted Live - Summer Solstice 2, Original air date, 2005-06-20) -> 2005-06-20 (7630ms) When is the summer solstice? 2006-06-26 -7.456492232153876 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Most Haunted Live - Summer Solstice 3, Original air date, 2006-06-26) -> 2006-06-26 (7630ms) When is the summer solstice? 2006-06-25 -7.456492232153876 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Most Haunted Live - Summer Solstice 2, Original air date, 2006-06-25) -> 2006-06-25 (7676ms) When is the summer solstice? father -7.570361959578433 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> $x: (summer solstice, to fall to, $x) -> (the Summer solstice, also happened to fall on, father) -> father (4943ms) When is the summer solstice? any full moon -7.607519461253842 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> $x: (summer solstice, may be on, $x) -> (This Summer Solstice ritual, may be done on, any full moon) -> any full moon (5254ms) When is the summer solstice? a variety -7.727611441753165 When is the summer solstice? -> $x: (the summer solstice, be on, $x) -> $x: (summer solstice, on, $x) -> $x: (summer solstice, work from, $x) -> (the Summer Solstice Art Show, will feature works from, a variety) -> a variety (5075ms) When is the summer solstice? the northern hemisphere -7.913921945154181 When is the summer solstice? -> $x: (the summer solstice, be in, $x) -> $x: (summer solstice, in, $x) -> (The Summer Solstice, occurs in, the northern hemisphere) -> the northern hemisphere (4963ms) When is the summer solstice? noon -8.943175668748866 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the day of the summer solstice ? -> $x: ($x, be the day of, the summer solstice) -> (noon, is the day of, the summer solstice) -> noon (8033ms) When is the summer solstice? daylight -8.957994125973293 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the day of the summer solstice ? -> $x: (the summer solstice, day, $x) -> (the summer solstice, is the longest day of, daylight) -> daylight (8033ms) When is the summer solstice? sunlight -9.071296677354592 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the day of the summer solstice ? -> $x: (the summer solstice, day, $x) -> (The Summer Solstice, is the longest day of, sunlight) -> sunlight (8100ms) When is the summer solstice? 1998-06 -9.280297873636826 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Summer Solstice: Bee Stings, Release Date, 1998-06) -> 1998-06 (8173ms) When is the summer solstice? the Season -9.461208959828886 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the day of the summer solstice ? -> $x: (the summer solstice, day, $x) -> (The Summer Solstice, is the first day of, the Season) -> the Season (8295ms) When is the summer solstice? Bulgaria ns -9.4892149573391 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the day of the summer solstice ? -> $x: (the summer solstice, day, $x) -> (The summer solstice, comes three days before, Bulgaria ns) -> Bulgaria ns (8376ms) When is the summer solstice? heathen rejoicing -9.65522110963838 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the day of the summer solstice ? -> $x: (the summer solstice, day, $x) -> (the summer solstice, had been a day of, heathen rejoicing) -> heathen rejoicing (8376ms) When is the summer solstice? Ash Today -9.679140455377748 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the day of the summer solstice ? -> $x: ($x, be the day of, the summer solstice) -> (Ash Today, was the day of, the summer solstice) -> Ash Today (8376ms) When is the summer solstice? Bulgarians -10.237707694124328 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the day of the summer solstice ? -> $x: (the summer solstice, day, $x) -> (The summer solstice, comes three days before, Bulgarians) -> Bulgarians (8376ms) When is the summer solstice? the year -11.27327887133778 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the day of the summer solstice ? -> $x: (the summer solstice, day, $x) -> (the summer solstice, is the day of, the year) -> the year (8881ms) When is the summer solstice? the Owl and children -11.350082455589583 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the day of the summer solstice ? -> $x: (the summer solstice, day, $x) -> $x: (summer solstice, day, $x) -> (Summer solstice, was the Day of, the Owl and children) -> the Owl and children (8881ms) When is the summer solstice? the Verdehr Trio -11.539340991613166 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the day of the summer solstice ? -> $x: (the summer solstice, day, $x) -> $x: (the summer solstice, be be write, $x) -> (the Summer Solstice, was written for, the Verdehr Trio) -> the Verdehr Trio (8881ms) When is the summer solstice? The shortest night -11.542943117773834 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the day of the summer solstice ? -> $x: ($x, be the day of, the summer solstice) -> (The shortest night, is the day of, the summer solstice) -> The shortest night (8881ms) When is the summer solstice? such a holiday -11.629410198949683 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the date of the summer solstice ? -> $x: (the summer solstice, date, $x) -> $x: (summer solstice, date, $x) -> (Summer solstice, is the perfect date for, such a holiday) -> such a holiday (8881ms) When is the summer solstice? the sun -11.657970822457251 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the day of the summer solstice ? -> $x: (the summer solstice, day, $x) -> (the summer solstice, was a day dedicated to, the sun) -> the sun (8934ms) When is the summer solstice? six month -11.746903204870412 When is the summer solstice? -> when be [ the summer solstice ] ? -> what month do the summer solstice occur ? -> $x: ($x, instance of, month) (the summer solstice, occur, $x) -> (six month, Instance Of, six-month period) (the summer solstice, occurs exactly, six months) -> six month (8934ms) When is the summer solstice? celebration -11.763115509800818 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the day of the summer solstice ? -> $x: (the summer solstice, day, $x) -> $x: (summer solstice, day, $x) -> (Summer Solstice, is an ancient day of, celebration) -> celebration (8982ms) When is the summer solstice? renewal -11.867706005015586 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the day of the summer solstice ? -> $x: (the summer solstice, day, $x) -> $x: (summer solstice, day, $x) -> (Summer Solstice, is traditionally a day of, renewal) -> renewal (8982ms) When is the summer solstice? the season -11.926278002603897 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the day of the summer solstice ? -> $x: (the summer solstice, day, $x) -> (The summer solstice, marks the first day of, the season) -> the season (8982ms) When is the summer solstice? The B family -12.284623146604511 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the day of the summer solstice ? -> $x: ($x, be the day of, the summer solstice) -> $x: ($x, day of, summer solstice) -> (The B family, spent the day of, the summer solstice) -> The B family (9233ms) When is the summer solstice? Wendy Pfeffer -12.320467769032327 When is the summer solstice? -> when be [ the summer solstice ] ? -> what be the day of the summer solstice ? -> $x: (the summer solstice, day, $x) -> $x: (the summer solstice, be be write, $x) -> (the Summer Solstice, is written by, Wendy Pfeffer) -> Wendy Pfeffer (9233ms) Who is Paul Newman married to? British author Roald Dahl -1.6944690349482352 Who is Paul Newman married to? -> $x: (Paul Newman, married to, $x) -> (Paul Newman, was married to, British author Roald Dahl) -> British author Roald Dahl (2327ms) Who is Paul Newman married to? acclaimed actress Joanne Woodward -1.8360052191289717 Who is Paul Newman married to? -> $x: (Paul Newman, married to, $x) -> (Paul Newman, is married to, acclaimed actress Joanne Woodward) -> acclaimed actress Joanne Woodward (2327ms) Who is Paul Newman married to? Joanne Woodward -4.620681447423999 Who is Paul Newman married to? -> who be [ paul newman ] marry to ? -> who do paul newman marry ? -> $x: (paul newman, marry, $x) -> (Paul Newman, married, Joanne Woodward) -> Joanne Woodward (7300ms) Who is Paul Newman married to? Woodward -4.850240531736532 Who is Paul Newman married to? -> $x: (Paul Newman, married to, $x) -> $x: ($x, marry to, Paul Newman) -> (Woodward, is married to, Paul Newman) -> Woodward (6701ms) Who is Paul Newman married to? 50 years -6.343133241802484 Who is Paul Newman married to? -> who be [ paul newman ] marry to ? -> who do paul newman marry ? -> $x: (paul newman, marry, $x) -> (Paul Newman, was married for, 50 years) -> 50 years (7298ms) Who is Paul Newman married to? the effect -6.7983700055555945 Who is Paul Newman married to? -> $x: (Paul Newman, married to, $x) -> $x: (Paul Newman, to say to, $x) -> (Paul Newman, says something to, the effect) -> the effect (6781ms) Who is Paul Newman married to? ty murray -7.186135317499513 Who is Paul Newman married to? -> who be [ paul newman ] marry to ? -> who marry paul newman ? -> $x: ($x, marry, paul newman) -> (ty murray, marry, katie holmes pixie paul newman) -> ty murray (7299ms) Who is Paul Newman married to? January 29 , 1958 -8.208999464962039 Who is Paul Newman married to? -> who be [ paul newman ] marry to ? -> who do paul newman marry ? -> $x: (paul newman, marry, $x) -> (Paul Newman, married on, January 29 , 1958) -> January 29 , 1958 (7321ms) Who is Paul Newman married to? joanne-woodward -9.586234061162951 Who is Paul Newman married to? -> who be [ paul newman ] marry to ? -> who do paul newman marry ? -> $x: (paul newman, marry, $x) -> $x: (paul newman, have wife, $x) -> (paul newman, has wife, joanne-woodward) -> joanne-woodward (7431ms) Who is Paul Newman married to? 50 year -10.11726244826487 Who is Paul Newman married to? -> who be [ paul newman ] marry to ? -> how many time do paul newman marry ? -> $x: ($x, instance of, time) (paul newman, marry, $x) -> (50 year, Instance Of, time) (Paul Newman, was married for, 50 years) -> 50 year (8979ms) Who is Paul Newman married to? one time -10.342955307239336 Who is Paul Newman married to? -> who be [ paul newman ] marry to ? -> who do paul newman marry ? -> $x: (paul newman, marry, $x) -> $x: (paul newman, have problem, $x) -> (Paul Newman, had the same problem at, one time) -> one time (7519ms) Who is Paul Newman married to? BTW-50 years -11.293168029679446 Who is Paul Newman married to? -> who be [ paul newman ] marry to ? -> how many time have paul newman be marry ? -> $x: ($x, instance of, time) (paul newman, be marry, $x) -> (BTW-50 years, Instance Of, short time) (Paul Newman, was married for, 50 years) -> BTW-50 years (9263ms) Who is Paul Newman married to? 1569 -14.736627429411211 Who is Paul Newman married to? -> who be paul [ newman marry to ] ? -> who be mary newman marry to ? -> $x: (mary newman, marry to, $x) -> $x: (mary newman, have marry, $x) -> (a Cornish woman named Mary Newman ,, had married in, 1569) -> 1569 (14660ms) Where did the Hindenburg disaster occur? May -4.9165768336175475 Where did the Hindenburg disaster occur? -> $x: (the Hindenburg disaster, did occur in, $x) -> $x: (hindenburg disaster, occur in, $x) -> (The Hindenburg Disaster, occurred in, May) -> May (5674ms) Where did the Hindenburg disaster occur? Mays -8.956404352081279 Where did the Hindenburg disaster occur? -> where do [ the hindenburg disaster occur ] ? -> which place be the hindenburg disaster occur ? -> $x: ($x, instance of, place) (the hindenburg disaster, occur, $x) -> (Mays, Instance Of, great place) (The Hindenburg Disaster, occurred in, May) -> Mays (6954ms) Where did the Hindenburg disaster occur? two months -10.021420878544962 Where did the Hindenburg disaster occur? -> where do [ the hindenburg disaster ] occur ? -> what do the hindenburg disaster occur ? -> $x: (the hindenburg disaster, occur, $x) -> $x: (the hindenburg disaster, happen, $x) -> (the Hindenburg disaster, happened, two months) -> two months (12677ms) Where did the Hindenburg disaster occur? Thursday -10.443547914493033 Where did the Hindenburg disaster occur? -> where do [ the hindenburg disaster ] occur ? -> what do the hindenburg disaster occur ? -> $x: (the hindenburg disaster, occur, $x) -> $x: (the hindenburg disaster, take place, $x) -> (The Hindenburg disaster, took place on, Thursday) -> Thursday (12599ms) Where did the Hindenburg disaster occur? may -11.155500098672524 Where did the Hindenburg disaster occur? -> where do [ the hindenburg disaster ] occur ? -> what time do the hindenburg disaster occur ? -> $x: ($x, instance of, time) (the hindenburg disaster, occur, $x) -> (may, Instance Of, time information) (The Hindenburg Disaster, occurred in, May) -> may (8492ms) Where did the Hindenburg disaster occur? two month -11.746625014358102 Where did the Hindenburg disaster occur? -> where do [ the hindenburg disaster ] occur ? -> what time do the hindenburg disaster occur ? -> $x: ($x, instance of, time) (the hindenburg disaster, occur, $x) -> $x: ($x, instance of, time) (the hindenburg disaster, happen, $x) -> (two month, Instance Of, time) (the Hindenburg disaster, happened, two months) -> two month (17877ms) Where did the Hindenburg disaster occur? Thursday's -12.147987882086873 Where did the Hindenburg disaster occur? -> where do [ the hindenburg disaster occur ] ? -> which place be the hindenburg disaster occur ? -> $x: ($x, instance of, place) (the hindenburg disaster, occur, $x) -> $x: ($x, instance of, place) (the hindenburg disaster, take place, $x) -> (Thursday's, Instance Of, great place) (The Hindenburg disaster, took place on, Thursday) -> Thursday's (12327ms) Where did the Hindenburg disaster occur? Two months -12.277868378837944 Where did the Hindenburg disaster occur? -> where do [ the hindenburg disaster ] occur ? -> what time do the hindenburg disaster occur ? -> $x: ($x, instance of, time) (the hindenburg disaster, occur, $x) -> $x: ($x, instance of, time) (the hindenburg disaster, happen, $x) -> (Two months, Instance Of, time) (the Hindenburg disaster, happened, two months) -> Two months (17877ms) Where did the Hindenburg disaster occur? May 6 , 1937 -13.381173183638516 Where did the Hindenburg disaster occur? -> where do [ the hindenburg disaster ] occur ? -> what do the hindenburg disaster occur ? -> $x: (the hindenburg disaster, occur, $x) -> $x: (the hindenburg disaster, take place, $x) -> (the Hindenburg airship disaster, take place on, May 6 , 1937) -> May 6 , 1937 (12599ms) Where did the Hindenburg disaster occur? Thursday DL -13.663966138322847 Where did the Hindenburg disaster occur? -> where do [ the hindenburg disaster ] occur ? -> what year do the hindenburg disaster occur ? -> $x: ($x, instance of, year) (the hindenburg disaster, occur, $x) -> $x: ($x, instance of, year) (the hindenburg disaster, take place, $x) -> (Thursday DL, Instance Of, 50-year-old gentleman) (The Hindenburg disaster, took place on, Thursday) -> Thursday DL (16699ms) Where did the Hindenburg disaster occur? Thursday TL -13.67930187658525 Where did the Hindenburg disaster occur? -> where do [ the hindenburg disaster ] occur ? -> what year do the hindenburg disaster occur ? -> $x: ($x, instance of, year) (the hindenburg disaster, occur, $x) -> $x: ($x, instance of, year) (the hindenburg disaster, take place, $x) -> (Thursday TL, Instance Of, 35-year-old woman) (The Hindenburg disaster, took place on, Thursday) -> Thursday TL (16698ms) Where did the Hindenburg disaster occur? Thursday LL -13.68306112374376 Where did the Hindenburg disaster occur? -> where do [ the hindenburg disaster ] occur ? -> what year do the hindenburg disaster occur ? -> $x: ($x, instance of, year) (the hindenburg disaster, occur, $x) -> $x: ($x, instance of, year) (the hindenburg disaster, take place, $x) -> (Thursday LL, Instance Of, 20-year-old woman) (The Hindenburg disaster, took place on, Thursday) -> Thursday LL (16698ms) When was the telegraph invented? 1837 2.6017828011117756 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> (The telegraph, was invented in, 1837) -> 1837 (5988ms) When was the telegraph invented? 1844 2.4824108720500937 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> (The telegraph key, was invented in, 1844) -> 1844 (5988ms) When was the telegraph invented? 1794 2.446981236908129 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> (The OG telegraph system, was invented in, 1794) -> 1794 (5988ms) When was the telegraph invented? 1832 2.4230106878665745 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> (The first electromagnetic telegraph, was invented in, 1832) -> 1832 (6651ms) When was the telegraph invented? 1855 -0.5839732430580167 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (the telegraph, originate in, $x) -> (the Sheffield Telegraph, originated in, 1855) -> 1855 (8156ms) When was the telegraph invented? the 1830s -0.6239046327104831 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> (the telegraph, was invented in, the 1830s) -> the 1830s (7978ms) When was the telegraph invented? 1861 -1.2737433975599122 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, be introduce in, $x) -> (the telegraph, was introduced in, 1861) -> 1861 (10451ms) When was the telegraph invented? the 1830 -1.2828846481580172 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (the telegraph, be first use in, $x) -> (the telegraph, was first used in, the 1830) -> the 1830 (8396ms) When was the telegraph invented? 1865 -1.5993568660947233 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, be announce in, $x) -> (the overland telegraph scheme, was announced in, 1865) -> 1865 (10677ms) When was the telegraph invented? 1842 -2.001140079727559 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, be patent in, $x) -> (An electrical telegraph, was US-patented in, 1842) -> 1842 (10366ms) When was the telegraph invented? 1866 -2.0106980747069247 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, be introduce in, $x) -> (Telegraph machines, were introduced in, 1866) -> 1866 (10451ms) When was the telegraph invented? 2008 -2.171309707208366 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, launch in, $x) -> (The Telegraph, launched in, 2008) -> 2008 (10854ms) When was the telegraph invented? France -2.3463740722377233 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> (The optical telegraph, was invented in, France) -> France (7978ms) When was the telegraph invented? England -2.3806205493059327 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> (The electric telegraph, was originally invented in, England) -> England (7978ms) When was the telegraph invented? 2006 -2.580707621415294 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, launch in, $x) -> (The Sunday Telegraph, have launched the program again in, 2006) -> 2006 (10854ms) When was the telegraph invented? 2007 -2.6007421212656068 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, launch in, $x) -> (Victoria and Telegraph TV, was launched in, 2007) -> 2007 (10854ms) When was the telegraph invented? 1873 -2.7162726155359795 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, license in, $x) -> (Direct United States Telegraph, was granted a license in, 1873) -> 1873 (10178ms) When was the telegraph invented? the 1830?s -2.8922655101870487 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (the telegraph, be develop in, $x) -> (the electrical telegraph, was developed in, the 1830?s) -> the 1830?s (8771ms) When was the telegraph invented? 1905 -2.9904347016246806 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, distribute in, $x) -> (American De Forest Wireless Telegraph Co., distributed in, 1905) -> 1905 (10886ms) When was the telegraph invented? 2012 -3.031128805366357 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, support in, $x) -> (Telegraph.co.uk Scuba Divers, support the Games in, 2012) -> 2012 (10276ms) When was the telegraph invented? Toronto -3.17306386434748 When was the telegraph invented? -> $x: (the telegraph invented, be in, $x) -> (The newly invented magnetic telegraph, was installed in, Toronto) -> Toronto (8010ms) When was the telegraph invented? the eighteen hundreds people -3.6400430311822896 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> (the telegraph, was invented in, the eighteen hundreds people) -> the eighteen hundreds people (8010ms) When was the telegraph invented? revolutionary France -3.7722222284011715 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (the telegraph, be develop in, $x) -> (the earliest telegraph, was developed in, revolutionary France) -> revolutionary France (8772ms) When was the telegraph invented? the nineteenth century -3.7924229045981526 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> (the telegraph, was invented in, the nineteenth century) -> the nineteenth century (8010ms) When was the telegraph invented? the U.S. -4.155523133051378 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (the telegraph, be patent in, $x) -> (the electric telegraph, was patented in, the U.S.) -> the U.S. (8771ms) When was the telegraph invented? the University -4.264115179703579 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: ($x, be the birthplace of, the telegraph) -> (the University, was the birthplace of, the Recording Telegraph) -> the University (8124ms) When was the telegraph invented? May -4.290779386850126 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, be play in, $x) -> (telegraph, was played in, May) -> May (10978ms) When was the telegraph invented? the 1840s -4.500504749584907 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, be introduce in, $x) -> (the telegraph, was introduced in, the 1840s) -> the 1840s (10451ms) When was the telegraph invented? the USA -4.502592393794892 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (the telegraph, be first introduce in, $x) -> (the telegraph, was first introduced in, the USA) -> the USA (8525ms) When was the telegraph invented? a large-scale war -4.717393178733049 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (the telegraph, be first use in, $x) -> (the telegraph, were first used in, a large-scale war) -> a large-scale war (8396ms) When was the telegraph invented? Morris County -4.723115008327262 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: ($x, be the birthplace of, the telegraph) -> (Morris County, is also the birthplace of, the telegraph) -> Morris County (8124ms) When was the telegraph invented? the 1820s -4.850716848788568 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, be introduce in, $x) -> (Copper-wire telegraphs, were introduced in, the 1820s) -> the 1820s (10451ms) When was the telegraph invented? the 1800s , money -4.95563853833639 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, be introduce in, $x) -> (the telegraph, was introduced in, the 1800s , money) -> the 1800s , money (10490ms) When was the telegraph invented? Australia -4.978602254834286 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (the telegraph, be popular in, $x) -> (The Daily Telegraph, is a very popular newspaper in, Australia) -> Australia (8156ms) When was the telegraph invented? Morse -5.134062633043072 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (the telegraph, be patent in, $x) -> (the printing telegraph, was patented in, Morse) -> Morse (8771ms) When was the telegraph invented? February -5.357342758807931 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, launch in, $x) -> (the Daily Telegraph, launched a competition in, February) -> February (10855ms) When was the telegraph invented? reporting -5.395532830877789 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, be nt in, $x) -> (The Telegraph, was n?t alone in, reporting) -> reporting (10178ms) When was the telegraph invented? America -5.440948600266088 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> (a telegraph, is invented in, America) -> America (8047ms) When was the telegraph invented? Morse code -6.367868918014849 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, require in, $x) -> (The telegraph ticket, requires a proficiency in, Morse code) -> Morse code (10886ms) When was the telegraph invented? India -6.373874151242235 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, be introduce in, $x) -> (The first electrical telegraph, is introduced in, India) -> India (10525ms) When was the telegraph invented? maximum 3.6 megabyte -6.391871230742517 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, handle in, $x) -> (TelegraphCQ, can handle in, maximum 3.6 megabyte) -> maximum 3.6 megabyte (10854ms) When was the telegraph invented? Celtic FC -6.547361076338431 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, share in, $x) -> (the Telegraph Three, offered his shares in, Celtic FC) -> Celtic FC (10525ms) When was the telegraph invented? telegraphy -6.581248917439403 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, recognize in, $x) -> (the telegraph, was a recognized expert in, telegraphy) -> telegraphy (10178ms) When was the telegraph invented? investigation -6.598665298223054 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, launch in, $x) -> (the Sunday Telegraph, launched in, investigation) -> investigation (10854ms) When was the telegraph invented? Kolkata -6.6025489331191825 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, launch in, $x) -> (The Telegraph, was launched in, Kolkata) -> Kolkata (10886ms) When was the telegraph invented? the mid-19 th century -6.90659341932221 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, be introduce in, $x) -> (the electric telegraph, was introduced in, the mid-19 th century) -> the mid-19 th century (10525ms) When was the telegraph invented? one family -7.003821529149065 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, bring into, $x) -> (the telegraph, brought the world into, one family) -> one family (10766ms) When was the telegraph invented? a link -7.029132293552051 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, view in, $x) -> (K9WDY Telegraph Patent Collection, may be viewed in, a link) -> a link (10525ms) When was the telegraph invented? away -7.077274517208647 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, bring from, $x) -> (The telegraph, brought news from far, away) -> away (10367ms) When was the telegraph invented? Liverpool -7.129675567259983 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, bring from, $x) -> (the telegraph, brings from, Liverpool) -> Liverpool (10367ms) When was the telegraph invented? turn -7.145516822727792 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, quote in, $x) -> (The Daily Telegraph?s report, was quoted in, turn) -> turn (10886ms) When was the telegraph invented? Japan -7.198707570611786 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, introduce to, $x) -> (The bicycle , train and telegraph, were introduced to, Japan) -> Japan (10301ms) When was the telegraph invented? the Titanic disaster -7.199478486198075 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, must have in, $x) -> (wireless telegraph, must have played in, the Titanic disaster) -> the Titanic disaster (10766ms) When was the telegraph invented? Soth -7.223186666615843 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: ($x, appearance, telegraph) -> (Soth, makes an appearance also in, Telegraph? Interviews) -> Soth (10525ms) When was the telegraph invented? a series -7.225675589201392 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, create in, $x) -> (Telegraph.co.uk Mr Marsh, will be created in, a series) -> a series (10330ms) When was the telegraph invented? Canada -7.386530310209013 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, introduce into, $x) -> (Land line telegraph, was introduced into, Canada) -> Canada (10886ms) When was the telegraph invented? a boat -7.575355628794075 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, to have in, $x) -> (The telegraph-boy, would have to come in, a boat) -> a boat (10767ms) When was the telegraph invented? Germany -7.648399520707466 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, emerge in, $x) -> (Electromagnetic telegraphs, emerged in, Germany) -> Germany (10276ms) When was the telegraph invented? Grafton -8.010755045707006 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, bring from, $x) -> (Old telegraph poles, were brought from, Grafton) -> Grafton (10601ms) When was the telegraph invented? the colony -8.182940425919693 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, introduce into, $x) -> (the telegraph system, was introduced into, the colony) -> the colony (10886ms) When was the telegraph invented? the survey -8.273008646282666 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, quote in, $x) -> (The Telegraph and Trouve Media, are quoted in, the survey) -> the survey (10978ms) When was the telegraph invented? the wording -8.33377973980036 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, quote in, $x) -> (the radio telegraph text, is quoted in, the wording) -> the wording (11018ms) When was the telegraph invented? Coventry -8.37664892214439 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, distribute in, $x) -> (the Coventry Telegraph, Distributed in, Coventry) -> Coventry (11018ms) When was the telegraph invented? the capture -8.794843985954216 When was the telegraph invented? -> $x: (the telegraph, was invented in, $x) -> $x: (telegraph, invent in, $x) -> $x: (telegraph, to use in, $x) -> (His wireless telegraph, was even used to help in, the capture) -> the capture (10301ms) When was the telegraph invented? telegraph offices -10.447661394314387 When was the telegraph invented? -> when [ be the telegraph ] invent ? -> who be make be the telegraph ? -> $x: ($x, be make be, the telegraph) -> (telegraph offices, is to make, the telegraph service) -> telegraph offices (16119ms) When was the telegraph invented? faxes -10.457019542544959 When was the telegraph invented? -> when [ be the telegraph ] invent ? -> who be make be the telegraph ? -> $x: ($x, be make be, the telegraph) -> (faxes, can be made at, the Central Telegraph Office) -> faxes (16118ms) When was the telegraph invented? 15 year -10.56568765764988 When was the telegraph invented? -> when be [ the telegraph invent ] ? -> what date be the telegraph invent ? -> $x: ($x, instance of, date) (the telegraph, invent, $x) -> (15 year, Instance Of, maturity date) (the telegraph, had only been invented, 15 years) -> 15 year (13937ms) When was the telegraph invented? a distinction -10.759549957663106 When was the telegraph invented? -> when [ be the telegraph ] invent ? -> who be make be the telegraph ? -> $x: ($x, be make be, the telegraph) -> (a distinction, is made between, the wireless telegraph) -> a distinction (16118ms) When was the telegraph invented? Similar claims -10.826162643424407 When was the telegraph invented? -> when [ be the telegraph ] invent ? -> who be make be the telegraph ? -> $x: ($x, be make be, the telegraph) -> (Similar claims, were made about, the telegraph) -> Similar claims (16118ms) When was the telegraph invented? Quantum leaps -11.019504079830082 When was the telegraph invented? -> when [ be the telegraph ] invent ? -> who be make be the telegraph ? -> $x: ($x, be make be, the telegraph) -> (Quantum leaps, were also made by, the telegraph) -> Quantum leaps (16119ms) When was the telegraph invented? a race -11.100204655068165 When was the telegraph invented? -> when [ be the telegraph ] invent ? -> who be make be the telegraph ? -> $x: ($x, be make be, the telegraph) -> (a race, was made for, the nearest telegraph office) -> a race (16119ms) When was the telegraph invented? Andres West?s comments -11.108162438082623 When was the telegraph invented? -> when [ be the telegraph ] invent ? -> who be make be the telegraph ? -> $x: ($x, be make be, the telegraph) -> (Andres West?s comments, were made to, the Sunday Telegraph) -> Andres West?s comments (16405ms) When was the telegraph invented? Co -11.11189804408335 When was the telegraph invented? -> when [ be the telegraph ] invent ? -> who be make be the telegraph ? -> $x: ($x, be make be, the telegraph) -> (Co, has been made for, the Daily Telegraph Business Club) -> Co (16405ms) When was the telegraph invented? sales forces -11.160528928571201 When was the telegraph invented? -> when [ be the telegraph ] invent ? -> who be make be the telegraph ? -> $x: ($x, be make be, the telegraph) -> (sales forces, was made possible by, the telegraph and telephone) -> sales forces (16405ms) When was the telegraph invented? Cornell University -11.21903813866085 When was the telegraph invented? -> when [ be the telegraph ] invent ? -> who be invent be the telegraph ? -> $x: ($x, be invent be, the telegraph) -> (Cornell University, is said to have invented, the telegraph pole) -> Cornell University (15777ms) When was the telegraph invented? Marconi -11.254318564967894 When was the telegraph invented? -> when [ be the telegraph ] invent ? -> who be invent be the telegraph ? -> $x: ($x, be invent be, the telegraph) -> (Marconi, is best known for inventing, the radio telegraph) -> Marconi (15777ms) When was the telegraph invented? Marconi's -11.276214579324705 When was the telegraph invented? -> when [ be the telegraph ] invent ? -> what year be the telegraph be invent ? -> $x: ($x, instance of, year) (the telegraph, be invent, $x) -> (Marconi's, Instance Of, 84-year old institution) (the wireless telegraph, was invented by, Marconi) -> Marconi's (14041ms) When was the telegraph invented? the telegraph -11.421890359854526 When was the telegraph invented? -> when [ be the telegraph ] invent ? -> who be invent be the telegraph ? -> $x: ($x, be invent be, the telegraph) -> (the telegraph, was invented until, the last telegraph) -> the telegraph (15777ms) When was the telegraph invented? Springer -11.869050414305622 When was the telegraph invented? -> when [ be the telegraph ] invent ? -> who be make be the telegraph ? -> $x: ($x, be make be, the telegraph) -> (Springer, is making its bid for, the Telegraph) -> Springer (16405ms) When was the telegraph invented? FRANCE -11.89693144916952 When was the telegraph invented? -> when be [ the telegraph invent ] ? -> what day be the telegraph invent ? -> $x: ($x, instance of, day) (the telegraph, invent, $x) -> (FRANCE, Instance Of, fashion Thinking Day country) (The optical telegraph, was invented in, France) -> FRANCE (14334ms) When was the telegraph invented? Suleiman -11.928291641011223 When was the telegraph invented? -> when [ be the telegraph ] invent ? -> who be make be the telegraph ? -> $x: ($x, be make be, the telegraph) -> (Suleiman, was made public by, the Daily Telegraph) -> Suleiman (16405ms) When was the telegraph invented? Frances -11.999560678221481 When was the telegraph invented? -> when [ be the telegraph ] invent ? -> what year be the telegraph be invent ? -> $x: ($x, instance of, year) (the telegraph, be invent, $x) -> (Frances, Instance Of, year hurricane) (The optical telegraph, was invented in, France) -> Frances (14450ms) When was the telegraph invented? Alexander Bain -12.009788636620296 When was the telegraph invented? -> when be [ the telegraph invent ] ? -> what century be the telegraph invent ? -> $x: ($x, instance of, century) (the telegraph, invent, $x) -> (Alexander Bain, Instance Of, nineteenth century scientist) (the chemical telegraph, invented by, Alexander Bain) -> Alexander Bain (15097ms) When was the telegraph invented? Samuel Morse -12.025604679579445 When was the telegraph invented? -> when be [ the telegraph ] invent ? -> what be the first the telegraph invent ? -> $x: (the first the telegraph, invent, $x) -> (the first practical telegraph, was invented by, Samuel Morse) -> Samuel Morse (16405ms) When was the telegraph invented? first -12.243032404964659 When was the telegraph invented? -> when be [ the telegraph invent ] ? -> what date be the telegraph invent ? -> $x: ($x, instance of, date) (the telegraph, invent, $x) -> (first, Instance Of, date) (the telegraph, was invented, first) -> first (15463ms) When was the telegraph invented? the deportations -12.600039366597539 When was the telegraph invented? -> when [ be the telegraph ] invent ? -> who be make be the telegraph ? -> $x: ($x, be make be, the telegraph) -> (the deportations, was made possible by, the telegraph) -> the deportations (16740ms) When was the telegraph invented? the same claim -12.647786064684293 When was the telegraph invented? -> when [ be the telegraph ] invent ? -> who be make be the telegraph ? -> $x: ($x, be make be, the telegraph) -> (the same claim, was made about, the telegraph) -> the same claim (16740ms) When was the telegraph invented? The cable -12.684922367851005 When was the telegraph invented? -> when [ be the telegraph ] invent ? -> who be make be the telegraph ? -> $x: ($x, be make be, the telegraph) -> (The cable, was made by, the Telegraph Construction) -> The cable (16740ms) When was the telegraph invented? the current level -12.882039161255754 When was the telegraph invented? -> when [ be the telegraph ] invent ? -> who be make be the telegraph ? -> $x: ($x, be make be, the telegraph) -> (the current level, have been made by, The Daily Telegraph) -> the current level (17102ms) What food companies have been acquired by Heinz? Weight Watchers -5.881294667674578 What food companies have been acquired by Heinz? -> $x: ($x, instance of, food companies) ($x, have been acquired by, Heinz) -> $x: ($x, instance of, food companies) ($x, be sell to, Heinz) -> (Weight Watchers, Instance Of, food company) (Weight Watchers, was sold to, H.J. Heinz Co. Today) -> Weight Watchers (1977ms) When did he die? 1990 -8.015283034047856 When did he die? -> when do [ he ] die ? -> when do william he die ? -> $x: (william he, do die in, $x) -> $x: (william he, die in, $x) -> (The Williams trials--he, died in, 1990) -> 1990 (9860ms) When did he die? 1996 -9.684835867862652 When did he die? -> when do [ he ] die ? -> when be he death ? -> $x: (he death, be in, $x) -> (his death?he, was beheaded in, 1996) -> 1996 (11011ms) When did he die? prison -12.279499405285428 When did he die? -> when do [ he ] die ? -> what be the year he die ? -> $x: (the year he, die, $x) -> $x: (year he, die, $x) -> (5 to 10 years?...He, will die in, prison) -> prison (10676ms) When did he die? leukemia -12.363562735562757 When did he die? -> when do [ he ] die ? -> what be the year he die ? -> $x: (the year he, die, $x) -> $x: (year he, die, $x) -> (only three years-he, died of, leukemia) -> leukemia (10676ms) When did he die? the unenviable position -15.365185392270849 When did he die? -> when do [ he ] die ? -> when be he death ? -> $x: (he death, be in, $x) -> (he death, was left in, the unenviable position) -> the unenviable position (11011ms) When did he die? the net -16.255047808592128 When did he die? -> when do [ he ] die ? -> when be he death ? -> $x: (he death, be in, $x) -> (he who gets free from death, will be taken in, the net) -> the net (11011ms) When was the Hoover Dam constructed? 1931 3.121346797184852 When was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> (The Hoover Dam, was constructed in, 1931) -> 1931 (2798ms) When was the Hoover Dam constructed? 1937 0.9650817321652423 When was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be complete in, $x) -> (the Hoover Dam, was completed in, 1937) -> 1937 (4500ms) When was the Hoover Dam constructed? 1935 0.9641170329427564 When was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be complete in, $x) -> (the Hoover Dam, was completed in, 1935) -> 1935 (4500ms) When was the Hoover Dam constructed? 2008 0.9380041841784776 When was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be complete in, $x) -> (the Hoover Dam Bypass, is completed in, 2008) -> 2008 (4500ms) When was the Hoover Dam constructed? 1928 0.9031233254268005 When was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be be build in, $x) -> (the Hoover Dam, was built in, 1928) -> 1928 (3873ms) When was the Hoover Dam constructed? 2010 0.7009762408880973 When was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be complete in, $x) -> (the new Hoover Dam bridge, is completed in, 2010) -> 2010 (4500ms) When was the Hoover Dam constructed? 1936 -0.2631159907361904 When was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be complete in, $x) -> (the Hoover Dam, was completed in, 1936) -> 1936 (4557ms) When was the Hoover Dam constructed? 2001 -0.37611822420461305 When was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, date to, $x) -> (The Hoover Dam Bypass project, dates back to, 2001) -> 2001 (4006ms) When was the Hoover Dam constructed? the 1930 's -1.6070926090499955 When was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be be build in, $x) -> (the Hoover Dam, was built in, the 1930 's) -> the 1930 's (3873ms) When was the Hoover Dam constructed? October 9 , 1936 -2.161137065363349 When was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed on, $x) -> $x: (the Hoover Dam, be complete on, $x) -> (The Hoover Dam, was completed on, October 9 , 1936) -> October 9 , 1936 (5645ms) When was the Hoover Dam constructed? the 1930s -2.413369431742569 When was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be be build in, $x) -> (the Hoover Dam, was being built in, the 1930s) -> the 1930s (3873ms) When was the Hoover Dam constructed? the 1930?s and , -2.520770289746152 When was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be be build in, $x) -> (The Hoover Dam, was built in, the 1930?s and ,) -> the 1930?s and , (3873ms) When was the Hoover Dam constructed? ?blocks -3.3348347421827507 When was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be be build in, $x) -> (The Hoover Dam, was built in, ?blocks) -> ?blocks (3873ms) When was the Hoover Dam constructed? part -3.555884188380822 When was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be finance in, $x) -> (the Hoover Dam, was financed in, part) -> part (3743ms) When was the Hoover Dam constructed? the 30s -3.7342631094339067 When was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be be build in, $x) -> (the Hoover Dam, was built in, the 30s) -> the 30s (3873ms) When was the Hoover Dam constructed? a peak -3.7933362195183578 When was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be build during, $x) -> (The Hoover Dam, was built during, a peak) -> a peak (3812ms) When was the Hoover Dam constructed? five years -3.9483889557888574 When was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be complete in, $x) -> (The Hoover Dam, was completed in just, five years) -> five years (4578ms) When was the Hoover Dam constructed? upper Black Canyon -4.181093100755118 When was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be be build in, $x) -> (The proposed Hoover Dam, is to be built in, upper Black Canyon) -> upper Black Canyon (3895ms) When was the Hoover Dam constructed? the Great Depression -4.45397398435394 When was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be build during, $x) -> (the Hoover Dam, was built during, the Great Depression) -> the Great Depression (3812ms) When was the Hoover Dam constructed? concrete -4.489521686167469 When was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed on, $x) -> $x: ($x, to be build, the Hoover Dam) -> (concrete, were used to build, the Hoover Dam) -> concrete (5871ms) When was the Hoover Dam constructed? Nevada -4.529714745190676 When was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be complete in, $x) -> (Dam Completed -The Hoover Dam, was completed in, Nevada) -> Nevada (4594ms) When was the Hoover Dam constructed? the Colorado River -4.540740561731354 When was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed on, $x) -> $x: (the Hoover Dam, be build across, $x) -> (the Hoover Dam, was built across, the Colorado River) -> the Colorado River (5416ms) When was the Hoover Dam constructed? the Colorado river -4.642413745140478 When was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed on, $x) -> $x: (the Hoover Dam, be build on, $x) -> (The famous Hoover dam, is built on, the Colorado river) -> the Colorado river (5871ms) When was the Hoover Dam constructed? workers -4.676690888319532 When was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed on, $x) -> $x: ($x, to be build, the Hoover Dam) -> (workers, were needed to build, the Hoover Dam . Trade Schools) -> workers (5871ms) When was the Hoover Dam constructed? a civilization -4.68253034387852 When was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed on, $x) -> $x: ($x, to be build, the Hoover Dam) -> (a civilization, is allowed to build, the Hoover Dam) -> a civilization (5871ms) When was the Hoover Dam constructed? the depression -4.690440228300883 When was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be build during, $x) -> (the Hoover Dam, was built during, the depression) -> the depression (3812ms) When was the Hoover Dam constructed? Black Canyon -4.756543199039429 When was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be be build in, $x) -> (the Hoover Dam, was built in, Black Canyon) -> Black Canyon (3894ms) When was the Hoover Dam constructed? any one company -5.134766607831 When was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed on, $x) -> $x: (the Hoover Dam, be too big for, $x) -> (The Hoover Dam project, was too big for, any one company) -> any one company (5597ms) When was the Hoover Dam constructed? the depths -5.289087810080561 When was the Hoover Dam constructed? -> $x: (the Hoover Dam, was constructed in, $x) -> $x: (the Hoover Dam, be be build in, $x) -> (the Hoover Dam, was built in, the depths) -> the depths (3895ms) Who was Picasso? international artist -3.444794674761426 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, international artist) -> international artist (4120ms) Who was Picasso? great painter -3.509644851549561 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, great painter) -> great painter (4119ms) Who was Picasso? household name -3.579729373455441 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, household name) -> household name (4119ms) Who was Picasso? influential artist -3.5852341895980966 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, influential artist) -> influential artist (4119ms) Who was Picasso? spanish master -3.6153580450228473 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, spanish master) -> spanish master (4119ms) Who was Picasso? modernist master -3.641453510252504 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, modernist master) -> modernist master (4119ms) Who was Picasso? french master -3.7370990680985727 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, french master) -> french master (4140ms) Who was Picasso? male artist -3.7386657798142227 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, male artist) -> male artist (4140ms) Who was Picasso? gifted artist -3.741828157786684 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, gifted artist) -> gifted artist (4141ms) Who was Picasso? respected artist -3.743748760801644 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, respected artist) -> respected artist (4140ms) Who was Picasso? large artist -3.745600676989916 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, large artist) -> large artist (4140ms) Who was Picasso? greatest painter -3.7480487522717345 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, greatest painter) -> greatest painter (4140ms) Who was Picasso? historical figure -3.7609081089039176 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, historical figure) -> historical figure (4177ms) Who was Picasso? pioneering artist -3.7633769665756507 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, pioneering artist) -> pioneering artist (4177ms) Who was Picasso? master painter -3.7771075487580497 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, master painter) -> master painter (4177ms) Who was Picasso? catalan artist -3.807105010755878 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, catalan artist) -> catalan artist (4177ms) Who was Picasso? accomplished artist -3.827629954530151 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, accomplished artist) -> accomplished artist (4177ms) Who was Picasso? eminent painter -3.8401779948110706 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, eminent painter) -> eminent painter (4177ms) Who was Picasso? emblematic artist -3.857750723537536 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, emblematic artist) -> emblematic artist (4192ms) Who was Picasso? competent artist -3.8837643606124814 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, competent artist) -> competent artist (4192ms) Who was Picasso? famed painter -3.8850631293260376 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, famed painter) -> famed painter (4192ms) Who was Picasso? continental artist -3.8850631293260376 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, continental artist) -> continental artist (4192ms) Who was Picasso? common name -3.885632992728394 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, common name) -> common name (4192ms) Who was Picasso? particular favorite -3.8873817354655524 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, particular favorite) -> particular favorite (4192ms) Who was Picasso? versatile artist -3.896397306925146 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, versatile artist) -> versatile artist (4214ms) Who was Picasso? crap artist -3.9135060197008396 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, crap artist) -> crap artist (4214ms) Who was Picasso? historic master -3.9135060197008396 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, historic master) -> historic master (4214ms) Who was Picasso? historic great -3.9184911910055304 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, historic great) -> historic great (4214ms) Who was Picasso? notable friend -3.920983776657876 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, notable friend) -> notable friend (4214ms) Who was Picasso? celebrity artist -3.926550916376574 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, celebrity artist) -> celebrity artist (4214ms) Who was Picasso? trained artist -3.9316410517130294 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, trained artist) -> trained artist (4311ms) Who was Picasso? born artist -3.9364609950017697 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, born artist) -> born artist (4311ms) Who was Picasso? true master -3.936671003961488 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, true master) -> true master (4311ms) Who was Picasso? perennial favorite -3.936926331947206 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, perennial favorite) -> perennial favorite (4311ms) Who was Picasso? revolutionary artist -3.941547607676876 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, revolutionary artist) -> revolutionary artist (4311ms) Who was Picasso? living artist -3.942447707710862 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, living artist) -> living artist (4311ms) Who was Picasso? realist painter -3.9456247658293937 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, realist painter) -> realist painter (4336ms) Who was Picasso? superior painter -3.9464081498215196 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, superior painter) -> superior painter (4336ms) Who was Picasso? art master -4.058469326739851 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, art master) -> art master (4336ms) Who was Picasso? world famous artist -4.1815380954060055 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, world famous artist) -> world famous artist (4336ms) Who was Picasso? twentieth-century artist -4.31412478608904 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, twentieth-century artist) -> twentieth-century artist (4336ms) Who was Picasso? famous spanish master -4.383095927357559 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, famous spanish master) -> famous spanish master (4336ms) Who was Picasso? world's most renowned artist -4.416993978231135 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, world's most renowned artist) -> world's most renowned artist (4421ms) Who was Picasso? world's greatest painter -4.4460973169178954 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, world's greatest painter) -> world's greatest painter (4421ms) Who was Picasso? name in the art world -4.45131494859238 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, name in the art world) -> name in the art world (4422ms) Who was Picasso? famous and fabulous artist -4.466661147936896 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, famous and fabulous artist) -> famous and fabulous artist (4422ms) Who was Picasso? like-minded artist -4.48883492003177 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, like-minded artist) -> like-minded artist (4422ms) Who was Picasso? well-known international artist -4.492288574747843 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, well-known international artist) -> well-known international artist (4422ms) Who was Picasso? famous and referenced international artist -4.4924426106303805 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, famous and referenced international artist) -> famous and referenced international artist (4474ms) Who was Picasso? world-class artist from modern master -4.496208904027522 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, world-class artist from modern master) -> world-class artist from modern master (4474ms) Who was Picasso? popular spanish artist -4.497138561537416 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, popular spanish artist) -> popular spanish artist (4474ms) Who was Picasso? eminently creative individual -4.513919794109173 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, eminently creative individual) -> eminently creative individual (4474ms) Who was Picasso? world-renown artist -4.519343213923897 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, world-renown artist) -> world-renown artist (4474ms) Who was Picasso? world class master -4.522488056829473 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, world class master) -> world class master (4474ms) Who was Picasso? well-known artist -4.52737396497635 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, well-known artist) -> well-known artist (4545ms) Who was Picasso? renowned japanese and international artist -4.529111034148203 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, renowned japanese and international artist) -> renowned japanese and international artist (4545ms) Who was Picasso? groundbreaking and incredibly prolific artist -4.536981272583829 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, groundbreaking and incredibly prolific artist) -> groundbreaking and incredibly prolific artist (4545ms) Who was Picasso? solid delivery, neighborhood pizza joint -4.536981272583829 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso's, Instance Of, solid delivery, neighborhood pizza joint) -> solid delivery, neighborhood pizza joint (4545ms) Who was Picasso? artist of good caliber -4.536981272583829 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, artist of good caliber) -> artist of good caliber (4545ms) Who was Picasso? superbly skilled classical artist -4.536981272583829 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, superbly skilled classical artist) -> superbly skilled classical artist (4545ms) Who was Picasso? small house museum -4.551959139000365 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, small house museum) -> small house museum (4600ms) Who was Picasso? very skilled artist -4.551959139000365 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, very skilled artist) -> very skilled artist (4599ms) Who was Picasso? really good painter -4.551959139000365 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, really good painter) -> really good painter (4601ms) Who was Picasso? hugely important artist -4.551959139000365 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, hugely important artist) -> hugely important artist (4599ms) Who was Picasso? opportunistic white artist -4.551959139000365 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, opportunistic white artist) -> opportunistic white artist (4599ms) Who was Picasso? master of technique -4.55486286418806 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, master of technique) -> master of technique (4599ms) Who was Picasso? well-established artist -4.5599232334038255 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, well-established artist) -> well-established artist (4621ms) Who was Picasso? ground breaking artist -4.563709900107951 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, ground breaking artist) -> ground breaking artist (4621ms) Who was Picasso? very talented artist -4.5687375884887995 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, very talented artist) -> very talented artist (4621ms) Who was Picasso? cri -4.56988340270451 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso's, Instance Of, cri) -> cri (4621ms) Who was Picasso? very productive artist -4.5725229700193655 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, very productive artist) -> very productive artist (4621ms) Who was Picasso? great trompe l'oeil artist -4.581875228018972 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, great trompe l'oeil artist) -> great trompe l'oeil artist (4638ms) Who was Picasso? influential and renowned artist -4.581875228018972 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, influential and renowned artist) -> influential and renowned artist (4621ms) Who was Picasso? silent and live auction fundraiser -4.581875228018972 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picassos, Instance Of, silent and live auction fundraiser) -> silent and live auction fundraiser (4638ms) Who was Picasso? renowned artist of the world -4.581875228018972 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, renowned artist of the world) -> renowned artist of the world (4640ms) Who was Picasso? tasty haven serving gourmet breakfast and lunch -4.581875228018972 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso's, Instance Of, tasty haven serving gourmet breakfast and lunch) -> tasty haven serving gourmet breakfast and lunch (4638ms) Who was Picasso? well-renowned Spanish painter -4.581875228018972 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, well-renowned Spanish painter) -> well-renowned Spanish painter (4638ms) Who was Picasso? inventive and protean artist -4.581875228018972 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, inventive and protean artist) -> inventive and protean artist (4638ms) Who was Picasso? well-known great -4.587016185773722 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, well-known great) -> well-known great (4657ms) Who was Picasso? commercially ruthless artist -4.593086801038365 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, commercially ruthless artist) -> commercially ruthless artist (4658ms) Who was Picasso? high-profile artist -4.593812508774482 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, high-profile artist) -> high-profile artist (4658ms) Who was Picasso? master of evasion -4.595584449106871 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, master of evasion) -> master of evasion (4658ms) Who was Picasso? master of public relation -4.597027524365756 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, master of public relation) -> master of public relation (4658ms) Who was Picasso? flemish and dutch master -4.599192138479782 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, flemish and dutch master) -> flemish and dutch master (4658ms) Who was Picasso? painting by artist -4.601459829047815 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, painting by artist) -> painting by artist (4673ms) Who was Picasso? artist of international renown -4.613325793683654 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, artist of international renown) -> artist of international renown (4673ms) Who was Picasso? famous sculptor and artist -4.616148278900171 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, famous sculptor and artist) -> famous sculptor and artist (4673ms) Who was Picasso? great provider of banquet hall -4.633954042583609 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picassos, Instance Of, great provider of banquet hall) -> great provider of banquet hall (4673ms) Who was Picasso? painter -4.64049894273171 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, painter) -> painter (4673ms) Who was Picasso? 20th-century painter -4.812246026378941 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, 20th-century painter) -> 20th-century painter (4673ms) Who was Picasso? luminary -4.887359052289491 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, luminary) -> luminary (4692ms) Who was Picasso? pleasure -5.189211126623183 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, pleasure) -> pleasure (4693ms) Who was Picasso? reference -5.204046539380576 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, reference) -> reference (4692ms) Who was Picasso? threat -5.303247574485111 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, threat) -> threat (4692ms) Who was Picasso? participant -5.305802048173935 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, participant) -> participant (4692ms) Who was Picasso? idol -5.336528684559014 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, idol) -> idol (4693ms) Who was Picasso? anchor -5.342942525472333 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso's, Instance Of, anchor) -> anchor (4722ms) Who was Picasso? figure -5.348636487128098 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, figure) -> figure (4722ms) Who was Picasso? treat -5.348782220388044 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (PICASSO, Instance Of, treat) -> treat (4722ms) Who was Picasso? candidate -5.352240010347242 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (picasso, instance of, $x) -> (Picasso, Instance Of, candidate) -> candidate (4722ms) Who was Picasso? painting -5.9554626337630046 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (Picasso, be a style of, $x) -> (Pablo Picasso, had been developing a similar style of, painting) -> painting (4722ms) Who was Picasso? Picasso -6.192481667593315 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: (Picasso, be a by, $x) -> (Pablo Picasso, is a painting by, Picasso) -> Picasso (4722ms) Who was Picasso? the Spanish character -6.426024243592406 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: ($x, element, Picasso) -> (the Spanish character, were a vital element in, Picasso) -> the Spanish character (4738ms) Who was Picasso? Georges Braque -8.166510218443678 Who was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (Georges Braque, was, Picasso) -> Georges Braque (5955ms) Who was Picasso? Mus?e Picasso -8.238832039867894 Who was Picasso? -> who be [ picasso ] ? -> who be picasso s name ? -> $x: (picasso, name, $x) -> (Pablo Picasso, Things named after this, Mus?e Picasso) -> Mus?e Picasso (6304ms) Who was Picasso? Torre Picasso -8.238832039867894 Who was Picasso? -> who be [ picasso ] ? -> who be picasso s name ? -> $x: (picasso, name, $x) -> (Pablo Picasso, Things named after this, Torre Picasso) -> Torre Picasso (6198ms) Who was Picasso? Museu Picasso -8.238832039867894 Who was Picasso? -> who be [ picasso ] ? -> who be picasso s name ? -> $x: (picasso, name, $x) -> (Pablo Picasso, Things named after this, Museu Picasso) -> Museu Picasso (6198ms) Who was Picasso? Pablo Picasso -8.238832039867894 Who was Picasso? -> who be [ picasso ] ? -> who be picasso s name ? -> $x: (picasso, name, $x) -> (4221 Picasso, Named after, Pablo Picasso) -> Pablo Picasso (6304ms) Who was Picasso? The style -8.737404299710274 Who was Picasso? -> $x: (Picasso, instance of, $x) -> $x: ($x, element, Picasso) -> (The style, has elements of, Picasso and Matisse) -> The style (4738ms) Who was Picasso? fairground performers -9.20573207125295 Who was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (fairground performers, was, Picasso) -> fairground performers (5955ms) Who was Picasso? reduction printing -9.273690103699721 Who was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (reduction printing, was, Picasso) -> reduction printing (5954ms) Who was Picasso? Daniel-Henry Kahnweiler -9.33564373172765 Who was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (Daniel-Henry Kahnweiler, was, Picasso) -> Daniel-Henry Kahnweiler (5955ms) Who was Picasso? Museo Picasso M?laga -9.373089610097738 Who was Picasso? -> who be [ picasso ] ? -> who be picasso s name ? -> $x: (picasso, name, $x) -> (Pablo Picasso, Things named after this, Museo Picasso M?laga) -> Museo Picasso M?laga (6304ms) Who was Picasso? Rosa 'Picasso' -9.373089610097738 Who was Picasso? -> who be [ picasso ] ? -> who be picasso s name ? -> $x: (picasso, name, $x) -> (Pablo Picasso, Things named after this, Rosa 'Picasso') -> Rosa 'Picasso' (6304ms) Who was Picasso? The Source -9.44326696366239 Who was Picasso? -> who be [ picasso ] ? -> who be one of picasso ? -> $x: ($x, be one of, picasso) -> (The Source, is one of, Picasso) -> The Source (6304ms) Who was Picasso? Goya -9.503172183768532 Who was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (Goya, was, Picasso) -> Goya (5955ms) Who was Picasso? Carlos Casagemas -9.622435519556829 Who was Picasso? -> who be [ picasso ] ? -> who be one of picasso ? -> $x: ($x, be one of, picasso) -> (Carlos Casagemas, was one of, Picasso) -> Carlos Casagemas (6366ms) Who was Picasso? art -9.689701548098348 Who was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (art, is, Picasso) -> art (5954ms) Who was Picasso? Les Demoiselles d'Avignon -9.705673486385356 Who was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (Les Demoiselles d'Avignon, was, Picasso) -> Les Demoiselles d'Avignon (6044ms) Who was Picasso? Master Sachin Tendulkar -9.763111172898633 Who was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (Master Sachin Tendulkar, is, Picasso) -> Master Sachin Tendulkar (6044ms) Who was Picasso? Arte Reina Sof?a -9.85582674078988 Who was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (Arte Reina Sof?a, is, Picasso) -> Arte Reina Sof?a (6044ms) Who was Picasso? ?one language -9.88520360909922 Who was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (?one language, is, Picasso) -> ?one language (6044ms) Who was Picasso? wealth -9.88621280698715 Who was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (wealth, was, Picasso) -> wealth (6044ms) Who was Picasso? An example -9.909404589106048 Who was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (An example, is, Picasso) -> An example (6044ms) Who was Picasso? Dutch painter Kees van Dongen -9.939919683053578 Who was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (Dutch painter Kees van Dongen, was, Picasso) -> Dutch painter Kees van Dongen (6366ms) Who was Picasso? a broader sense -9.986813178299995 Who was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (a broader sense, was, Picasso) -> a broader sense (6366ms) Who was Picasso? Pablo Diego Jos? Francisco de Paula Juan Nepomuceno Mar?a de los Remedios Cipriano de la Sant?sima Trinidad Ruiz y Picasso -9.997314345595731 Who was Picasso? -> who be [ picasso ] ? -> who be picasso s name ? -> $x: (picasso, name, $x) -> (Pablo Picasso, Official name, Pablo Diego Jos? Francisco de Paula Juan Nepomuceno Mar?a de los Remedios Cipriano de la Sant?sima Trinidad Ruiz y Picasso) -> Pablo Diego Jos? Francisco de Paula Juan Nepomuceno Mar?a de los Remedios Cipriano de la Sant?sima Trinidad Ruiz y Picasso (6366ms) Who was Picasso? Anne Paloma Picasso -9.997314345595731 Who was Picasso? -> who be [ picasso ] ? -> who be picasso s name ? -> $x: (picasso, name, $x) -> (Paloma Picasso, Official name, Anne Paloma Picasso) -> Anne Paloma Picasso (6366ms) Who was Picasso? the Michael Mina -10.02388491333945 Who was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (the Michael Mina, is, Picasso) -> the Michael Mina (6366ms) Who was Picasso? One whole rack -10.068794305011924 Who was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (One whole rack, was, Picasso ?) -> One whole rack (6455ms) Who was Picasso? Sept. 11 -10.20273835346923 Who was Picasso? -> who be [ picasso ] ? -> who be be picasso ? -> $x: ($x, be be, picasso) -> (Sept. 11, is, Picasso) -> Sept. 11 (6455ms) How did John Quincy Adams die? age 80 -5.790228617519927 How did John Quincy Adams die? -> how do [ john quincy adam ] die ? -> what do john quincy adam die ? -> $x: (john quincy adam, die, $x) -> (1848 John Quincy Adams, died at, age 80) -> age 80 (6311ms) How did John Quincy Adams die? John Adams II -6.460946902290606 How did John Quincy Adams die? -> how do john [ quincy adam ] die ? -> how many child do john quincy adam have ? -> $x: (john quincy adam, child, $x) -> (John Quincy Adams, Children, John Adams II) -> John Adams II (8323ms) How did John Quincy Adams die? George Washington Adams -6.639624626185142 How did John Quincy Adams die? -> how do john [ quincy adam ] die ? -> how many child do john quincy adam have ? -> $x: (john quincy adam, child, $x) -> (John Quincy Adams, Children, George Washington Adams) -> George Washington Adams (8323ms) How did John Quincy Adams die? Louisa Catherine Adams -6.639624626185142 How did John Quincy Adams die? -> how do john [ quincy adam ] die ? -> how many child do john quincy adam have ? -> $x: (john quincy adam, child, $x) -> (John Quincy Adams, Children, Louisa Catherine Adams) -> Louisa Catherine Adams (8323ms) How did John Quincy Adams die? 1848 -6.854811490728415 How did John Quincy Adams die? -> how do [ john quincy adam ] die ? -> what do john quincy adam die ? -> $x: (john quincy adam, die, $x) -> (John Quincy Adams, died in, 1848) -> 1848 (6311ms) How did John Quincy Adams die? Charles Francis Adams, Sr. -6.899519497304469 How did John Quincy Adams die? -> how do john [ quincy adam ] die ? -> how many child do john quincy adam have ? -> $x: (john quincy adam, child, $x) -> (John Quincy Adams, Children, Charles Francis Adams, Sr.) -> Charles Francis Adams, Sr. (8323ms) How did John Quincy Adams die? Charles Francis Adams III -6.899519497304469 How did John Quincy Adams die? -> how do john [ quincy adam ] die ? -> how many child do john quincy adam have ? -> $x: (john quincy adam, child, $x) -> (John Quincy Adams II, Children, Charles Francis Adams III) -> Charles Francis Adams III (8323ms) How did John Quincy Adams die? a stroke -7.046939780670995 How did John Quincy Adams die? -> how do [ john quincy adam ] die ? -> what do john quincy adam die ? -> $x: (john quincy adam, die, $x) -> (President John Quincy Adams, dies of, a stroke) -> a stroke (6311ms) How did John Quincy Adams die? an alcohol related death -7.467746628511599 How did John Quincy Adams die? -> how do [ john quincy adam ] die ? -> what do john quincy adam die ? -> $x: (john quincy adam, die, $x) -> (President John Quincy Adams, dies, an alcohol related death) -> an alcohol related death (6311ms) How did John Quincy Adams die? different ways -7.503939106103617 How did John Quincy Adams die? -> how do [ john quincy adam ] die ? -> what do john quincy adam die ? -> $x: (john quincy adam, die, $x) -> (John Quincy Adams, died in very, different ways) -> different ways (6311ms) How did John Quincy Adams die? the Speaker?s room -7.654670078489849 How did John Quincy Adams die? -> how do [ john quincy adam ] die ? -> what do john quincy adam die ? -> $x: (john quincy adam, die, $x) -> (John Quincy Adams, died in, the Speaker?s room) -> the Speaker?s room (6435ms) How did John Quincy Adams die? February 23 -8.450471285752979 How did John Quincy Adams die? -> how do [ john quincy adam ] die ? -> what do john quincy adam die ? -> $x: (john quincy adam, die, $x) -> (John Quincy Adams, died on, February 23) -> February 23 (6435ms) How did John Quincy Adams die? the Revolution -8.957943061812404 How did John Quincy Adams die? -> how do john [ quincy adam ] die ? -> how many child do john quincy adam have ? -> $x: (john quincy adam, child, $x) -> (John Quincy Adams, was a child during, the Revolution) -> the Revolution (8323ms) How did John Quincy Adams die? two days later -9.363885551202802 How did John Quincy Adams die? -> how do [ john quincy adam ] die ? -> what do john quincy adam die ? -> $x: (john quincy adam, die, $x) -> (John Quincy Adams, died, two days later) -> two days later (6435ms) How did John Quincy Adams die? Different Way -10.050458627208656 How did John Quincy Adams die? -> how [ do john quincy adam ] die ? -> what make do john quincy adam die ? -> $x: ($x, instance of, make) (john quincy adam, die, $x) -> (Different Way, Instance Of, well-made film) (John Quincy Adams, died in very, different ways) -> Different Way (7552ms) How did John Quincy Adams die? one habit -10.199217019851435 How did John Quincy Adams die? -> how do john [ quincy adam ] die ? -> what be john quincy adam know for ? -> $x: (john quincy adam, know for, $x) -> (President John Quincy Adams, was well know for, one habit) -> one habit (10134ms) Who invented the game bowling? color -3.2229992147086453 Who invented the game bowling? -> $x: ($x, invented, the game bowling) -> $x: ($x, invent, game bowl) -> (color, invent, new bowling games) -> color (3648ms) Who invented the game bowling? You?d -3.560047056105086 Who invented the game bowling? -> $x: ($x, invented, the game bowling) -> $x: ($x, invent, game bowl) -> (You?d, have to invent, a couple more bad bowl games) -> You?d (3648ms) Who invented the game bowling? Boston College -5.263970818652567 Who invented the game bowling? -> $x: ($x, invented, the game bowling) -> $x: ($x, invent, game bowl) -> $x: ($x, perfect, game bowl) -> (Boston College, went a perfect 5-0 overall in, bowl games) -> Boston College (4549ms) Who invented the game bowling? Series organizers -5.576033399553981 Who invented the game bowling? -> $x: ($x, invented, the game bowling) -> $x: (the game bowling, be intend by, $x) -> (the final bowl game, is intended by, Series organizers) -> Series organizers (4287ms) Who invented the game bowling? The Alamodome -6.099032442221873 Who invented the game bowling? -> $x: ($x, invented, the game bowling) -> $x: ($x, invent, game bowl) -> $x: ($x, perfect, game bowl) -> (The Alamodome, is a perfect venue for, a bowl game) -> The Alamodome (4549ms) Who invented the game bowling? the organizers -6.741840298729207 Who invented the game bowling? -> $x: ($x, invented, the game bowling) -> $x: (the game bowling, be intend by, $x) -> (the final bowl game, is intended by, the organizers) -> the organizers (4287ms) Who invented the game bowling? a former USC player -7.0070200853630755 Who invented the game bowling? -> $x: ($x, invented, the game bowling) -> $x: ($x, invent, game bowl) -> $x: ($x, actually play, game bowl) -> (a former USC player, actually played in, a Rose Bowl game) -> a former USC player (4788ms) Who invented the game bowling? Dave Bauer -7.204829803241422 Who invented the game bowling? -> $x: ($x, invented, the game bowling) -> $x: ($x, invent, game bowl) -> $x: ($x, perfect, game bowl) -> (Dave Bauer, was perfecting, his bowling game) -> Dave Bauer (4549ms) Who invented the game bowling? Tempe -7.515827965393663 Who invented the game bowling? -> $x: ($x, invented, the game bowling) -> $x: ($x, invent, game bowl) -> $x: ($x, perfect, game bowl) -> (Tempe, is the perfect place for, a college bowl game) -> Tempe (4549ms) Who invented the game bowling? The goal -7.681475846001355 Who invented the game bowling? -> $x: ($x, invented, the game bowling) -> $x: ($x, invent, game bowl) -> $x: ($x, to be create, game bowl) -> (The goal, would be to create, top-tier bowl games) -> The goal (4765ms) Who invented the game bowling? Baylor -8.408443388354721 Who invented the game bowling? -> $x: ($x, invented, the game bowling) -> $x: ($x, invent, game bowl) -> $x: ($x, first make, game bowl) -> (Baylor, made its first trip to, a bowl game) -> Baylor (4416ms) Who invented the game bowling? The Orange -9.636733825161215 Who invented the game bowling? -> who invent [ the game bowl ] ? -> who invite the game bowl ? -> $x: ($x, invite, the game bowl) -> (The Orange, were invited to play in, the second Rose Bowl Game) -> The Orange (5871ms) Who invented the game bowling? the University -9.746435795846143 Who invented the game bowling? -> who invent [ the game bowl ] ? -> who invite the game bowl ? -> $x: ($x, invite, the game bowl) -> (the University, was invited to participate in, the bowl game) -> the University (5872ms) Who invented the game bowling? any home or office -10.381511763816647 Who invented the game bowling? -> who invent [ the game bowl ] ? -> who be the game bowl invent ? -> $x: (the game bowl, invent, $x) -> $x: (the game bowl, perfect, $x) -> (The Desktop Bowling game, is perfect for, any home or office) -> any home or office (6310ms) Who invented the game bowling? the Cardinal -11.108564533610116 Who invented the game bowling? -> who invent [ the game bowl ] ? -> who invite the game bowl ? -> $x: ($x, invite, the game bowl) -> $x: ($x, invite, game bowl) -> (the Cardinal, was invited to, a BCS bowl game) -> the Cardinal (8535ms) Who invented the game bowling? tourism -11.118138483721605 Who invented the game bowling? -> who invent [ the game bowl ] ? -> who be the game bowl invent ? -> $x: (the game bowl, invent, $x) -> $x: (the game bowl, to be create, $x) -> (the two bowl games, is to create, tourism) -> tourism (6059ms) Who invented the game bowling? football teams -11.230948269172883 Who invented the game bowling? -> who invent [ the game bowl ] ? -> who invite the game bowl ? -> $x: ($x, invite, the game bowl) -> $x: ($x, invite, game bowl) -> (football teams, are invited to, bowl games) -> football teams (8535ms) Who invented the game bowling? the AP Poll -11.72837609562964 Who invented the game bowling? -> who invent [ the game bowl ] ? -> who be invent the game bowl ? -> $x: ($x, be invent, the game bowl) -> $x: ($x, be be release, the game bowl) -> (the AP Poll, was released after, the bowl games) -> the AP Poll (9889ms) Who invented the game bowling? an intricate design -11.789510362996936 Who invented the game bowling? -> who invent [ the game bowl ] ? -> who be invent the game bowl ? -> $x: ($x, be invent, the game bowl) -> $x: ($x, be be create, the game bowl) -> (an intricate design, was created for, the championship bowl game) -> an intricate design (10101ms) Who invented the game bowling? Penn State -11.862458514602672 Who invented the game bowling? -> who invent [ the game bowl ] ? -> who invite the game bowl ? -> $x: ($x, invite, the game bowl) -> $x: ($x, invite, game bowl) -> (Penn State, was invited to play in, major Bowl games) -> Penn State (8535ms) Who invented the game bowling? the Illinois football team -11.864000386441061 Who invented the game bowling? -> who invent [ the game bowl ] ? -> who invite the game bowl ? -> $x: ($x, invite, the game bowl) -> $x: ($x, invite, game bowl) -> (the Illinois football team, might get invited to, a bowl game) -> the Illinois football team (8535ms) Who invented the game bowling? Rice -11.876464493675543 Who invented the game bowling? -> who invent [ the game bowl ] ? -> who invite the game bowl ? -> $x: ($x, invite, the game bowl) -> $x: ($x, invite, game bowl) -> (Rice, was invited to, a bowl game) -> Rice (8535ms) Who invented the game bowling? PK Michael Cklamovski -11.965465723013837 Who invented the game bowling? -> who invent [ the game bowl ] ? -> who be invent the game bowl ? -> $x: ($x, be invent, the game bowl) -> $x: ($x, be concerned, the game bowl) -> (PK Michael Cklamovski, is a concern in, the bowl game) -> PK Michael Cklamovski (10237ms) Who invented the game bowling? Centre and TCU -12.485745570870417 Who invented the game bowling? -> who invent [ the game bowl ] ? -> who be the game bowl invent ? -> $x: (the game bowl, invent, $x) -> $x: (game bowl, invent, $x) -> $x: (game bowl, by play, $x) -> (One-shot bowl game, is played by, Centre and TCU) -> Centre and TCU (8584ms) Who invented the game bowling? Navy -12.56565868838453 Who invented the game bowling? -> who invent [ the game bowl ] ? -> who invite the game bowl ? -> $x: ($x, invite, the game bowl) -> $x: ($x, invite, game bowl) -> (Navy, has now been invited to, 5 consecutive bowl games) -> Navy (8535ms) Who invented the game bowling? numerous -12.673310551463342 Who invented the game bowling? -> who invent [ the game bowl ] ? -> who invite the game bowl ? -> $x: ($x, invite, the game bowl) -> $x: ($x, invite, game bowl) -> (numerous, invites to, bowl games) -> numerous (8584ms) Who invented the game bowling? p.s -12.821455004499997 Who invented the game bowling? -> who invent the game [ bowl ] ? -> who think of bowl ? -> $x: ($x, think of, bowl) -> (p.s, think of, the Extremely Bowl) -> p.s (10665ms) Who invented the game bowling? Bob -12.824246827727563 Who invented the game bowling? -> who invent the game [ bowl ] ? -> who think of bowl ? -> $x: ($x, think of, bowl) -> (Bob, often thinks of, his bowling ball) -> Bob (10664ms) Who invented the game bowling? I?ve -12.893631123896304 Who invented the game bowling? -> who invent the game [ bowl ] ? -> who think of bowl ? -> $x: ($x, think of, bowl) -> (I?ve, thought of, bowl games) -> I?ve (10664ms) Who invented the game bowling? teams -12.897727319298962 Who invented the game bowling? -> who invent [ the game bowl ] ? -> who invite the game bowl ? -> $x: ($x, invite, the game bowl) -> $x: ($x, invite, game bowl) -> (teams, are invited to play in, various bowl games) -> teams (8584ms) Who invented the game bowling? Bert and Nan -13.074410779668288 Who invented the game bowling? -> who invent the game [ bowl ] ? -> who think of bowl ? -> $x: ($x, think of, bowl) -> (Bert and Nan, were thinking of, the sugar bowl and pitcher) -> Bert and Nan (10664ms) Who invented the game bowling? not everybody -13.210202704395236 Who invented the game bowling? -> who invent the game [ bowl ] ? -> who think of bowl ? -> $x: ($x, think of, bowl) -> (not everybody, thinks highly of, bowling) -> not everybody (10664ms) Who invented the game bowling? deviantART Details -13.287810096806599 Who invented the game bowling? -> who invent the game [ bowl ] ? -> who think of bowl ? -> $x: ($x, think of, bowl) -> (deviantART Details, think of, my Metal bowl) -> deviantART Details (10664ms) Who invented the game bowling? a cell -13.322358356194982 Who invented the game bowling? -> who invent the game [ bowl ] ? -> who think of bowl ? -> $x: ($x, think of, bowl) -> (a cell, can be thought of as, a bowl) -> a cell (10665ms) Who invented the game bowling? the sidelines -13.35853099334424 Who invented the game bowling? -> who invent [ the game bowl ] ? -> who be invent the game bowl ? -> $x: ($x, be invent, the game bowl) -> $x: ($x, even start, the game bowl) -> (the sidelines, even started in, the bowl game) -> the sidelines (10177ms) Who invented the game bowling? 53.5 Everyone -13.361067504295427 Who invented the game bowling? -> who invent the game [ bowl ] ? -> who think of bowl ? -> $x: ($x, think of, bowl) -> (53.5 Everyone, thinks of, the Super Bowl) -> 53.5 Everyone (10664ms) Who invented the game bowling? the teams -13.406328260780656 Who invented the game bowling? -> who invent [ the game bowl ] ? -> who invite the game bowl ? -> $x: ($x, invite, the game bowl) -> $x: ($x, invite, game bowl) -> (the teams, are routinely invited to, bowl games) -> the teams (8584ms) Who invented the game bowling? Hot peppers -13.500082141716371 Who invented the game bowling? -> who invent the game [ bowl ] ? -> who think of bowl ? -> $x: ($x, think of, bowl) -> (Hot peppers, make one think of, bowls) -> Hot peppers (10721ms) Who invented the game bowling? TN -13.53096446654356 Who invented the game bowling? -> who invent the game [ bowl ] ? -> who think of bowl ? -> $x: ($x, think of, bowl) -> (TN, Once thought of as, a Super Bowl contender) -> TN (10721ms) Who invented the game bowling? Buffalo -13.54607241929649 Who invented the game bowling? -> who invent [ the game bowl ] ? -> who invite the game bowl ? -> $x: ($x, invite, the game bowl) -> $x: ($x, invite, game bowl) -> (Buffalo, has been invited to, one bowl game) -> Buffalo (8584ms) Who invented the game bowling? NJ -13.551365585407511 Who invented the game bowling? -> who invent the game [ bowl ] ? -> who think of bowl ? -> $x: ($x, think of, bowl) -> (NJ, Once thought of as, a Super Bowl contender) -> NJ (10721ms) Who invented the game bowling? Erik Anstine -13.553853549067629 Who invented the game bowling? -> who invent the game [ bowl ] ? -> who think of bowl ? -> $x: ($x, think of, bowl) -> (Erik Anstine, thinks of, a bowling name) -> Erik Anstine (10721ms) Who invented the game bowling? treatments -13.653273612501714 Who invented the game bowling? -> who invent the game [ bowl ] ? -> who think of bowl ? -> $x: ($x, think of, bowl) -> (treatments, Does the thought of, a big bowl) -> treatments (10721ms) Who invented the game bowling? the school -13.66359211937538 Who invented the game bowling? -> who invent [ the game bowl ] ? -> who be the game bowl invent ? -> $x: (the game bowl, invent, $x) -> $x: (game bowl, invent, $x) -> $x: (game bowl, by play, $x) -> (Sixteen bowl games, have been played by, the school) -> the school (8584ms) Who invented the game bowling? guys -13.673312876973299 Who invented the game bowling? -> who invent the game [ bowl ] ? -> who think of bowl ? -> $x: ($x, think of, bowl) -> (guys, think the impact of, a Crossfit Super Bowl commercial) -> guys (10721ms) Who invented the game bowling? the experts -14.663874448067851 Who invented the game bowling? -> who invent the game [ bowl ] ? -> who think of bowl ? -> $x: ($x, think of, bowl) -> (the experts, think of, this year?s Super Bowl commercials) -> the experts (10721ms) Who invented the game bowling? the final Seinfeld episode -14.789065468574101 Who invented the game bowling? -> who invent the game [ bowl ] ? -> who think of bowl ? -> $x: ($x, think of, bowl) -> (the final Seinfeld episode, can be thought of as, the Super Bowl) -> the final Seinfeld episode (10721ms) Who invented the game bowling? the only one -14.794584112680253 Who invented the game bowling? -> who invent the game [ bowl ] ? -> who think of bowl ? -> $x: ($x, think of, bowl) -> (the only one, thought of, the 1982 Cotton Bowl) -> the only one (10767ms) Who invented the game bowling? the place?s name -14.991760209834947 Who invented the game bowling? -> who invent the game [ bowl ] ? -> who think of bowl ? -> $x: ($x, think of, bowl) -> (the place?s name, makes one think of, bowling) -> the place?s name (10767ms) Who invented the game bowling? The club -15.0468397737076 Who invented the game bowling? -> who invent the game [ bowl ] ? -> who think of bowl ? -> $x: ($x, think of, bowl) -> (The club, is thinking of setting up, a bowling lawn) -> The club (10767ms) What do penguins eat? twenty-five species -1.879816032475612 What do penguins eat? -> $x: (penguins, eat, $x) -> (The penguin, is known to eat, twenty-five species) -> twenty-five species (11222ms) What do penguins eat? snow and ice -1.9732582082293668 What do penguins eat? -> $x: (penguins, eat, $x) -> (the Antarctic penguins, eat, snow and ice) -> snow and ice (11222ms) What do penguins eat? Mr. Popper?s goldfish -2.052980108497914 What do penguins eat? -> $x: (penguins, eat, $x) -> (the penguin Captain Cook, eats, Mr. Popper?s goldfish) -> Mr. Popper?s goldfish (11222ms) What do penguins eat? a banana -2.096440872758434 What do penguins eat? -> $x: (penguins, eat, $x) -> (the penguins, ate, a banana) -> a banana (11222ms) What do penguins eat? a shark -2.170475368715964 What do penguins eat? -> $x: (penguins, eat, $x) -> (the Penguin, was eaten by, a shark) -> a shark (11222ms) What do penguins eat? the V&A Waterfront -2.189658291102125 What do penguins eat? -> $x: (penguins, eat, $x) -> (penguins, eat along, the V&A Waterfront) -> the V&A Waterfront (11222ms) What do penguins eat? an Apple ?? -2.1909347292962247 What do penguins eat? -> $x: (penguins, eat, $x) -> (a penguin, eat, an Apple ??) -> an Apple ?? (11343ms) What do penguins eat? an ice cream cone -2.2274305707516984 What do penguins eat? -> $x: (penguins, eat, $x) -> (the penguin, came back eating, an ice cream cone) -> an ice cream cone (11344ms) What do penguins eat? an Orca or other sea mammal -2.2418210054968144 What do penguins eat? -> $x: (penguins, eat, $x) -> (the penguin, has been eaten by, an Orca or other sea mammal) -> an Orca or other sea mammal (11343ms) What do penguins eat? Patrick?s head -2.2643230965262546 What do penguins eat? -> $x: (penguins, eat, $x) -> (the penguins, was eating, Patrick?s head) -> Patrick?s head (11344ms) What do penguins eat? a tub -2.323432903942467 What do penguins eat? -> $x: (penguins, eat, $x) -> (the penguins, ate, a tub) -> a tub (11343ms) What do penguins eat? krill and surface fish -2.3464542335282186 What do penguins eat? -> $x: (penguins, eat, $x) -> (Most penguins, eat, krill and surface fish) -> krill and surface fish (11343ms) What do penguins eat? 9 fish -2.3806186700203904 What do penguins eat? -> $x: (penguins, eat, $x) -> (Six penguins, can eat, 9 fish) -> 9 fish (11359ms) What do penguins eat? one pound -2.4074694376531385 What do penguins eat? -> $x: (penguins, eat, $x) -> (A penguin, may eat up to, one pound) -> one pound (11360ms) What do penguins eat? delicious treats -2.465107578314278 What do penguins eat? -> $x: (penguins, eat, $x) -> (polar bears , seals and penguins, eat, delicious treats) -> delicious treats (11360ms) What do penguins eat? a wider variety -2.4894255552076867 What do penguins eat? -> $x: (penguins, eat, $x) -> (Chinstrap penguins, will eat, a wider variety) -> a wider variety (11360ms) What do penguins eat? small fish -2.538030074603715 What do penguins eat? -> $x: (penguins, eat, $x) -> (King penguins, eat, small fish) -> small fish (11360ms) What do penguins eat? Panda -2.5751934975177617 What do penguins eat? -> $x: (penguins, eat, $x) -> (Penguin, eats, Panda) -> Panda (11382ms) What do penguins eat? seven fish -2.645201541550308 What do penguins eat? -> $x: (penguins, eat, $x) -> (The penguins, eat five to, seven fish) -> seven fish (11382ms) What do penguins eat? small amounts -2.6585439976703418 What do penguins eat? -> $x: (penguins, eat, $x) -> (King penguins, mainly eat fish with, small amounts) -> small amounts (11382ms) What do penguins eat? leopard seals -2.7557908327766 What do penguins eat? -> $x: (penguins, eat, $x) -> (penguins, may be eaten by, leopard seals) -> leopard seals (11383ms) What do penguins eat? fish and squid -2.770615361953876 What do penguins eat? -> $x: (penguins, eat, $x) -> (a penguin, eats, fish and squid) -> fish and squid (11383ms) What do penguins eat? a fish -2.8347578993974185 What do penguins eat? -> $x: (penguins, eat, $x) -> (the penguins, ate, a fish) -> a fish (11399ms) What do penguins eat? fish and krill -2.918967829107113 What do penguins eat? -> $x: (penguins, eat, $x) -> (Penguins, eat, fish and krill) -> fish and krill (11399ms) What do penguins eat? a turtle -2.9596910189087637 What do penguins eat? -> $x: (penguins, eat, $x) -> (the penguin, can eat, a turtle) -> a turtle (11399ms) What do penguins eat? fish , squid , and krill -3.011570364482954 What do penguins eat? -> $x: (penguins, eat, $x) -> (Penguins, eat, fish , squid , and krill) -> fish , squid , and krill (11399ms) What do penguins eat? any given month -3.032924259432889 What do penguins eat? -> $x: (penguins, eat, $x) -> (How many penguins, will eat in, any given month) -> any given month (11399ms) What do penguins eat? as much as they can -3.4866170520819306 What do penguins eat? -> $x: (penguins, eat, $x) -> (penguins, eat, as much as they can) -> as much as they can (11465ms) What do penguins eat? mostly small fish -3.6076571008693588 What do penguins eat? -> $x: (penguins, eat, $x) -> (Galapagos penguins, eat, mostly small fish) -> mostly small fish (11503ms) What do penguins eat? fish -3.8454729720441554 What do penguins eat? -> $x: (penguins, eat, $x) -> (Penguins, eat, fish) -> fish (11548ms) What do penguins eat? the local fish -3.8542867293703207 What do penguins eat? -> $x: (penguins, eat, $x) -> (penguins, must eat, the local fish) -> the local fish (11554ms) What do penguins eat? sardines -3.868388950203731 What do penguins eat? -> $x: (penguins, eat, $x) -> (These penguins, eat, sardines) -> sardines (11555ms) What do penguins eat? the Apple -3.878080021090935 What do penguins eat? -> $x: (penguins, eat, $x) -> (The penguin, ate, the Apple) -> the Apple (11610ms) What do penguins eat? apples -3.9228601940482157 What do penguins eat? -> $x: (penguins, eat, $x) -> (A snowboarding penguin, eats, apples) -> apples (11708ms) What do penguins eat? lunch -3.9432181119747973 What do penguins eat? -> $x: (penguins, eat, $x) -> (penguins, eat for, lunch) -> lunch (11708ms) What do penguins eat? krill -3.952662534428769 What do penguins eat? -> $x: (penguins, eat, $x) -> (Penguins, eat, krill) -> krill (11708ms) What do penguins eat? fishes -4.0178440717133155 What do penguins eat? -> $x: (penguins, eat, $x) -> (afrv3 Big penguins, have eaten, fishes) -> fishes (11708ms) What do penguins eat? the absence -4.031590533838761 What do penguins eat? -> $x: (penguins, eat, $x) -> (penguins, eat in, the absence) -> the absence (11750ms) What do penguins eat? breakfast -4.054670222412299 What do penguins eat? -> $x: (penguins, eat, $x) -> (a penguin, eat for, breakfast) -> breakfast (11750ms) What do penguins eat? the poor halibut -4.068922296633531 What do penguins eat? -> $x: (penguins, eat, $x) -> (The penguins, are gonna eat, the poor halibut) -> the poor halibut (11751ms) What do penguins eat? the wife -4.0902966249988975 What do penguins eat? -> $x: (penguins, eat, $x) -> (the penguin, eat, the wife) -> the wife (11771ms) What do penguins eat? Sidney Crosby -4.097235775952878 What do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, play the game, $x) -> (the Penguins, played the game without, Sidney Crosby) -> Sidney Crosby (11770ms) What do penguins eat? crustaceans -4.101468113268407 What do penguins eat? -> $x: (penguins, eat, $x) -> (Emperor Penguins, mainly eat, crustaceans) -> crustaceans (11770ms) What do penguins eat? the same basic foods -4.106271663586992 What do penguins eat? -> $x: (penguins, eat, $x) -> (a less-efficient penguin, probably ate, the same basic foods) -> the same basic foods (11770ms) What do penguins eat? the leopard seals -4.137085047453682 What do penguins eat? -> $x: (penguins, eat, $x) -> (the adult penguins, were eaten by, the leopard seals) -> the leopard seals (11770ms) What do penguins eat? the ocean -4.204327110141562 What do penguins eat? -> $x: (penguins, eat, $x) -> (penguins, only eat in, the ocean) -> the ocean (11790ms) What do penguins eat? the llamas -4.207040317594273 What do penguins eat? -> $x: (penguins, eat, $x) -> (My penguins, are eating, the llamas) -> the llamas (11790ms) What do penguins eat? the camera -4.2264945211573295 What do penguins eat? -> $x: (penguins, eat, $x) -> (the penguins, kept trying to eat, the camera) -> the camera (11790ms) What do penguins eat? Antarctica -4.537354362460615 What do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, actually live, $x) -> (penguin, actually live in, Antarctica) -> Antarctica (11970ms) What do penguins eat? Staal back today -4.569469619337094 What do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, be excite, $x) -> (the Penguins, should be excited to get, Staal back today) -> Staal back today (11852ms) What do penguins eat? worms -4.624392677802755 What do penguins eat? -> $x: (penguins, eat, $x) -> (the little blue penguin, eat, worms) -> worms (11970ms) What do penguins eat? piranhas -4.723924475964206 What do penguins eat? -> $x: (penguins, eat, $x) -> (penguins, ate meat of, piranhas) -> piranhas (12014ms) What do penguins eat? a lead -4.751552943919967 What do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, find they, $x) -> (The Penguins, maybe they?ll find a way to hold, a lead) -> a lead (12014ms) What do penguins eat? Penguin USA -4.768724834377071 What do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, be excite, $x) -> (Penguin 2.0, is the very exciting website of, Penguin USA) -> Penguin USA (12014ms) What do penguins eat? the snow -4.936818161412075 What do penguins eat? -> $x: (penguins, eat, $x) -> (penguins, eat, the snow) -> the snow (12033ms) What do penguins eat? the krill -4.939206832408897 What do penguins eat? -> $x: (penguins, eat, $x) -> (the penguins, eat, the krill) -> the krill (12033ms) What do penguins eat? crazy penguins -5.053290345905257 What do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, have fun, $x) -> (Crazy Penguin Party, Have some fun together with, crazy penguins) -> crazy penguins (12058ms) What do penguins eat? a Monday -5.090282173032863 What do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, have fun, $x) -> (Penguin, Have fun on, a Monday) -> a Monday (12058ms) What do penguins eat? true lovers -5.115115258602573 What do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, be excite, $x) -> (the Penguin Threads, is an exciting new series for, true lovers) -> true lovers (12076ms) What do penguins eat? themselves -5.208849603075105 What do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, do something, $x) -> (The penguins, need to do something to protect, themselves) -> themselves (12094ms) What do penguins eat? snow -5.290024886549944 What do penguins eat? -> $x: (penguins, eat, $x) -> (Penguins, eat, snow) -> snow (12103ms) What do penguins eat? food -5.4149162329218825 What do penguins eat? -> $x: (penguins, eat, $x) -> (The penguins, eat, food) -> food (12133ms) What do penguins eat? humans -5.4597284615114425 What do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, do thing, $x) -> (2010 Websites Penguins, much do the same things as, humans) -> humans (12145ms) What do penguins eat? the years -5.544943962950373 What do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, do thing, $x) -> (the Penguins, have done amazing things over, the years) -> the years (12156ms) What do penguins eat? the animators -5.6197383778175904 What do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, do anything, $x) -> (my little penguin, did n?t look anything like, the animators) -> the animators (12156ms) What do penguins eat? the anonymity -5.926103356909502 What do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, do something, $x) -> (?penguin?, have something to do with, the anonymity) -> the anonymity (12185ms) What do penguins eat? usually -6.186903675812421 What do penguins eat? -> $x: (penguins, eat, $x) -> (Penguins, like a swim after they eat, usually) -> usually (12194ms) What do penguins eat? the same sex -6.35013947279956 What do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, actually live, $x) -> (penguin, actually live at almost, the same sex) -> the same sex (12224ms) What do penguins eat? airplanes -6.369350197373375 What do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, be fascinate, $x) -> (the local penguins, are fascinated by, airplanes) -> airplanes (12233ms) What do penguins eat? the southern hemisphere -6.4093011975084595 What do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, actually live, $x) -> (Penguins, actually live in, the southern hemisphere) -> the southern hemisphere (12233ms) What do penguins eat? the hot sauces -6.434138287651929 What do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, get one, $x) -> (the penguin, then get one of, the hot sauces) -> the hot sauces (12233ms) What do penguins eat? the hot lights -6.484457990242978 What do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, get sick, $x) -> (the penguins, got sick under, the hot lights) -> the hot lights (12245ms) What do penguins eat? the new ideas -6.52329815078692 What do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, be excite, $x) -> (the penguins, were excited by, the new ideas) -> the new ideas (12256ms) What do penguins eat? the mes -6.603675777887547 What do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, get one, $x) -> (The Penguins, were apparently the only ones to get, the mes) -> the mes (12268ms) What do penguins eat? the winbers -6.912284087160978 What do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, be excite, $x) -> (Penguins, must have been very excited for, the winbers) -> the winbers (12291ms) What do penguins eat? collectively -7.1361161694828725 What do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, have fun, $x) -> (the penguins, have fun with, collectively) -> collectively (12299ms) What do penguins eat? death -7.2962007812488965 What do penguins eat? -> $x: (penguins, eat, $x) -> $x: (penguins, be starve, $x) -> (Whales and penguins, are literally starving to, death) -> death (12299ms) What do penguins eat? Apple's -11.367202981248914 What do penguins eat? -> what [ do penguin ] eat ? -> what o do penguin eat ? -> $x: ($x, instance of, o) (penguin, eat, $x) -> (Apple's, Instance Of, OS) (A snowboarding penguin, eats, apples) -> Apple's (15817ms) What do penguins eat? crustacean s -11.493653502610421 What do penguins eat? -> what do [ penguin ] eat ? -> what animal do penguin eat ? -> $x: ($x, instance of, animal) (penguin, eat, $x) -> (crustacean s, Instance Of, animal) (Emperor Penguins, mainly eat, crustaceans) -> crustacean s (18109ms) What do penguins eat? Apple OSX -11.497072291871902 What do penguins eat? -> what [ do penguin ] eat ? -> what o do penguin eat ? -> $x: ($x, instance of, o) (penguin, eat, $x) -> (Apple OSX, Instance Of, OS) (A snowboarding penguin, eats, apples) -> Apple OSX (15817ms) What do penguins eat? Fish -11.508248898829326 What do penguins eat? -> what do [ penguin ] eat ? -> what food do penguin eat ? -> $x: ($x, instance of, food) (penguin, eat, $x) -> (Fish, Instance Of, food) (penguins, eat, fish) -> Fish (18109ms) What do penguins eat? fish's -11.590682945599312 What do penguins eat? -> what do [ penguin ] eat ? -> what animal do penguin eat ? -> $x: ($x, instance of, animal) (penguin, eat, $x) -> (fish's, Instance Of, animal) (afrv3 Big penguins, have eaten, fishes) -> fish's (18375ms) What do penguins eat? small feeder fish -11.639194446864455 What do penguins eat? -> what do [ penguin ] eat ? -> what food do penguin eat ? -> $x: ($x, instance of, food) (penguin, eat, $x) -> (small feeder fish, Instance Of, food) (King penguins, eat, small fish) -> small feeder fish (18375ms) What do penguins eat? small bait fish -11.748655754833697 What do penguins eat? -> what do [ penguin ] eat ? -> what food do penguin eat ? -> $x: ($x, instance of, food) (penguin, eat, $x) -> (small bait fish, Instance Of, food) (King penguins, eat, small fish) -> small bait fish (18622ms) What do penguins eat? Sardines -12.133536649985812 What do penguins eat? -> what do [ penguin ] eat ? -> what food do penguin eat ? -> $x: ($x, instance of, food) (penguin, eat, $x) -> (Sardines, Instance Of, food) (These penguins, eat, sardines) -> Sardines (18787ms) What do penguins eat? Krill -12.144557197336564 What do penguins eat? -> what do [ penguin ] eat ? -> what food do penguin eat ? -> $x: ($x, instance of, food) (penguin, eat, $x) -> (Krill, Instance Of, food) (Penguins, eat, krill) -> Krill (18787ms) What do penguins eat? Breakfast Club -12.684149778540098 What do penguins eat? -> what [ do penguin ] eat ? -> what doe do penguin eat ? -> $x: ($x, instance of, doe) (penguin, eat, $x) -> (Breakfast Club, Instance Of, DOE group) (a penguin, eat for, breakfast) -> Breakfast Club (18947ms) What do penguins eat? FISH -12.768486414107574 What do penguins eat? -> what [ do penguin ] eat ? -> what o do penguin eat ? -> $x: ($x, instance of, o) (penguin, eat, $x) -> (FISH, Instance Of, O. stentina using cytogenetic approach) (penguins, eat, fish) -> FISH (19000ms) What do penguins eat? sardine -13.106809581623871 What do penguins eat? -> what do [ penguin ] eat ? -> what food do penguin eat ? -> $x: ($x, instance of, food) (penguin, eat, $x) -> (sardine, Instance Of, food) (These penguins, eat, sardines) -> sardine (19105ms) What do penguins eat? apple -13.214525884827962 What do penguins eat? -> what do [ penguin ] eat ? -> what plant do penguin eat ? -> $x: ($x, instance of, plant) (penguin, eat, $x) -> (apple, Instance Of, plant) (A snowboarding penguin, eats, apples) -> apple (19348ms) What do penguins eat? worm -13.31309023438164 What do penguins eat? -> what do [ penguin ] eat ? -> what insect do penguin eat ? -> $x: ($x, instance of, insect) (penguin, eat, $x) -> (worm, Instance Of, insect) (the little blue penguin, eat, worms) -> worm (19458ms) What do penguins eat? crustacean -13.428090145519253 What do penguins eat? -> what do [ penguin ] eat ? -> what animal do penguin eat ? -> $x: ($x, instance of, animal) (penguin, eat, $x) -> (crustacean, Instance Of, animal) (Emperor Penguins, mainly eat, crustaceans) -> crustacean (19509ms) What do penguins eat? Food -13.480134188947048 What do penguins eat? -> what [ do penguin ] eat ? -> what o do penguin eat ? -> $x: ($x, instance of, o) (penguin, eat, $x) -> (Food, Instance Of, friend o) (The penguins, eat, food) -> Food (19509ms) How many non-permanent members are in the Security Council? Sri Lanka -1.5379237521036204 How many non-permanent members are in the Security Council? -> $x: ($x, instance of, non-permanent members) ($x, are in, the Security Council) -> (Sri Lanka, Instance Of, non-permanent member) (Sri Lanka, will be listed in, the Security Council) -> Sri Lanka (1496ms) How many non-permanent members are in the Security Council? Syria -1.9868836842743227 How many non-permanent members are in the Security Council? -> $x: ($x, instance of, non-permanent members) ($x, are in, the Security Council) -> (Syria, Instance Of, non-permanent member) (Syria, cannot be considered in, the Security Council) -> Syria (1496ms) How many non-permanent members are in the Security Council? South Africa -2.0560186112265213 How many non-permanent members are in the Security Council? -> $x: ($x, instance of, non-permanent members) ($x, are in, the Security Council) -> (South Africa, Instance Of, non-permanent council member) (South Africa, was taking its positions in, the Security Council) -> South Africa (1496ms) How many non-permanent members are in the Security Council? India -2.120789769106347 How many non-permanent members are in the Security Council? -> $x: ($x, instance of, non-permanent members) ($x, are in, the Security Council) -> (India, Instance Of, non-permanent member) (India, should be represented in, the Security Council) -> India (1815ms) How many non-permanent members are in the Security Council? Singapore -2.137288598192443 How many non-permanent members are in the Security Council? -> $x: ($x, instance of, non-permanent members) ($x, are in, the Security Council) -> (Singapore, Instance Of, non-permanent member) (Singapore, was the only country in, the Security Council) -> Singapore (1815ms) How many non-permanent members are in the Security Council? Austria -2.297328392180426 How many non-permanent members are in the Security Council? -> $x: ($x, instance of, non-permanent members) ($x, are in, the Security Council) -> (Austria, Instance Of, council's non-permanent member) (Austria, is represented in, the Security Council) -> Austria (1871ms) How many non-permanent members are in the Security Council? Brazil -2.3754422493762344 How many non-permanent members are in the Security Council? -> $x: ($x, instance of, non-permanent members) ($x, are in, the Security Council) -> (Brazil, Instance Of, non-permanent UN security council member) (Brazil, are seeking permanent seats in, the UN Security Council) -> Brazil (1912ms) How many non-permanent members are in the Security Council? Germany -3.9178687624000026 How many non-permanent members are in the Security Council? -> $x: ($x, instance of, non-permanent members) ($x, are in, the Security Council) -> $x: ($x, instance of, non-permanent member) ($x, in, security council) -> (Germany, Instance Of, non-permanent member) (Germany, abstained in, the Security Council vote) -> Germany (2325ms) How many non-permanent members are in the Security Council? Iran -3.9254369759270267 How many non-permanent members are in the Security Council? -> $x: ($x, instance of, non-permanent members) ($x, are in, the Security Council) -> $x: ($x, instance of, non-permanent member) ($x, in, security council) -> (Iran, Instance Of, non permanent member) (Iran, tabled in, the UN Security Council) -> Iran (2325ms) How many non-permanent members are in the Security Council? Zimbabwe -3.991820128952078 How many non-permanent members are in the Security Council? -> $x: ($x, instance of, non-permanent members) ($x, are in, the Security Council) -> $x: ($x, instance of, non-permanent member) ($x, in, security council) -> (Zimbabwe, Instance Of, non-permanent member) (Zimbabwe, belongs in, the Security Council) -> Zimbabwe (2452ms) How many non-permanent members are in the Security Council? Qatar -4.145205181856678 How many non-permanent members are in the Security Council? -> $x: ($x, instance of, non-permanent members) ($x, are in, the Security Council) -> $x: ($x, instance of, non-permanent member) ($x, in, security council) -> (Qatar, Instance Of, non-permanent member) (Qatar, can vote in, the security council) -> Qatar (2529ms) How many non-permanent members are in the Security Council? Lebanon -4.1745541406137265 How many non-permanent members are in the Security Council? -> $x: ($x, instance of, non-permanent members) ($x, are in, the Security Council) -> $x: ($x, instance of, non-permanent member) ($x, in, security council) -> (Lebanon, Instance Of, non-permanent member) (Lebanon, has led efforts in, the Security Council) -> Lebanon (2621ms) What is Ursa Major? well-known constellation -1.8004875097544475 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa major, Instance Of, well-known constellation) -> well-known constellation (5980ms) What is Ursa Major? seven-star constellation -1.969821718222199 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, seven-star constellation) -> seven-star constellation (5980ms) What is Ursa Major? easy-to-find constellation -2.2895924242246073 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, easy-to-find constellation) -> easy-to-find constellation (5980ms) What is Ursa Major? good starting point -2.358162689384028 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, good starting point) -> good starting point (5981ms) What is Ursa Major? Canadian public company -2.359922429234964 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (URSA Major Minerals Incorporated, Instance Of, Canadian public company) -> Canadian public company (5980ms) What is Ursa Major? Regular School -2.366246929575226 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major Elementary School, Instance Of, Regular School) -> Regular School (6135ms) What is Ursa Major? Canadian mining company -2.3710553334371363 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (URSA Major Minerals Incorporated, Instance Of, Canadian mining company) -> Canadian mining company (6135ms) What is Ursa Major? extreme northern constellation -2.3968633205221783 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, extreme northern constellation) -> extreme northern constellation (6136ms) What is Ursa Major? constellation's name -2.399109054887078 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, constellation's name) -> constellation's name (6135ms) What is Ursa Major? constellation of star -2.421857346242197 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, constellation of star) -> constellation of star (6135ms) What is Ursa Major? others popular constellation -2.437635689078485 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, others popular constellation) -> others popular constellation (6163ms) What is Ursa Major? fancy latin name -2.441401982475627 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, fancy latin name) -> fancy latin name (6163ms) What is Ursa Major? prominent northern constellation -2.441401982475627 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, prominent northern constellation) -> prominent northern constellation (6163ms) What is Ursa Major? small eclectic gallery -2.441401982475627 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major Gallery, Instance Of, small eclectic gallery) -> small eclectic gallery (6163ms) What is Ursa Major? bright large constellation -2.441401982475627 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, bright large constellation) -> bright large constellation (6163ms) What is Ursa Major? place of kind School -2.4505227413227635 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major School, Instance Of, place of kind School) -> place of kind School (6182ms) What is Ursa Major? pretty cool character -2.456972949697721 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, pretty cool character) -> pretty cool character (6182ms) What is Ursa Major? large and sprawling constellation -2.47203145873132 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, large and sprawling constellation) -> large and sprawling constellation (6182ms) What is Ursa Major? provider of value-added service -2.4775151466761995 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major International, Instance Of, provider of value-added service) -> provider of value-added service (6182ms) What is Ursa Major? constellation in the sky -2.4895069719906626 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, constellation in the sky) -> constellation in the sky (6199ms) What is Ursa Major? constellation for the ceiling -2.4895069719906626 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, constellation for the ceiling) -> constellation for the ceiling (6182ms) What is Ursa Major? classic North Sea Trawler -2.4895069719906626 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (URSA MAJOR'S, Instance Of, classic North Sea Trawler) -> classic North Sea Trawler (6182ms) What is Ursa Major? TSX-listed Canadian public company -2.504944049526289 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (URSA Major Minerals Incorporated, Instance Of, TSX-listed Canadian public company) -> TSX-listed Canadian public company (6199ms) What is Ursa Major? circumpolar constellation -2.51783803828278 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, circumpolar constellation) -> circumpolar constellation (6199ms) What is Ursa Major? prominent constellation -2.5204702430178862 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, prominent constellation) -> prominent constellation (6199ms) What is Ursa Major? large and reasonably bright constellation -2.521993830880578 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, large and reasonably bright constellation) -> large and reasonably bright constellation (6199ms) What is Ursa Major? constellation from the northern sky -2.521993830880578 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, constellation from the northern sky) -> constellation from the northern sky (6199ms) What is Ursa Major? sign of the greatness and infinity of bear wisdom -2.528150653701018 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, sign of the greatness and infinity of bear wisdom) -> sign of the greatness and infinity of bear wisdom (6216ms) What is Ursa Major? cluster of star -2.529216438025194 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Great Bear, Ursa Major, Instance Of, cluster of star) -> cluster of star (6216ms) What is Ursa Major? correspondent of BOLLYWOOD FANTASTIC trademark -2.5494827114797376 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (URSA MAJOR MEDIA INCORPORATED, Instance Of, correspondent of BOLLYWOOD FANTASTIC trademark) -> correspondent of BOLLYWOOD FANTASTIC trademark (6216ms) What is Ursa Major? spiral-rich galaxy cluster of the Virgo Supercluster -2.5494827114797376 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major Cluster, Instance Of, spiral-rich galaxy cluster of the Virgo Supercluster) -> spiral-rich galaxy cluster of the Virgo Supercluster (6216ms) What is Ursa Major? crossword puzzle clue -2.5545885159798054 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Constellation near Ursa Major, Instance Of, crossword puzzle clue) -> crossword puzzle clue (6216ms) What is Ursa Major? Canada-based company -2.558641816610103 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (URSA Major Minerals Incorporated, Instance Of, Canada-based company) -> Canada-based company (6216ms) What is Ursa Major? woman-owned small business -2.5619118546462136 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major Consulting, LLC, Instance Of, woman-owned small business) -> woman-owned small business (6237ms) What is Ursa Major? constellation up close and personal -2.5631214929185786 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, constellation up close and personal) -> constellation up close and personal (6237ms) What is Ursa Major? Winter & Fall & Spirng and Summer Season Constellation -2.593464920438393 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, Winter & Fall & Spirng and Summer Season Constellation) -> Winter & Fall & Spirng and Summer Season Constellation (6237ms) What is Ursa Major? Canadian mining and exploration company -2.611174204536738 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (URSA Major Minerals, Instance Of, Canadian mining and exploration company) -> Canadian mining and exploration company (6237ms) What is Ursa Major? mineral exploration and development company -2.6140683711314807 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (URSA Major Minerals Incorporated, Instance Of, mineral exploration and development company) -> mineral exploration and development company (6237ms) What is Ursa Major? Latin name -2.6252110641260575 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, Latin name) -> Latin name (6237ms) What is Ursa Major? northern constellation -2.641396861848917 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, northern constellation) -> northern constellation (6254ms) What is Ursa Major? large constellation -2.643459262669773 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, large constellation) -> large constellation (6254ms) What is Ursa Major? bright constellation -2.651684795812793 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, bright constellation) -> bright constellation (6254ms) What is Ursa Major? star pattern -2.6571684837576734 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, star pattern) -> star pattern (6254ms) What is Ursa Major? custom design -2.6572212574114635 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, custom design) -> custom design (6254ms) What is Ursa Major? huge disappointment -2.669226859289079 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, huge disappointment) -> huge disappointment (6270ms) What is Ursa Major? common constellation -2.6888935865322967 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, common constellation) -> common constellation (6271ms) What is Ursa Major? ola constellation -2.6929154796231476 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, ola constellation) -> ola constellation (6271ms) What is Ursa Major? key constellation -2.709366544683488 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, key constellation) -> key constellation (6271ms) What is Ursa Major? set of 220 star -2.710731784788501 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major Group, Instance Of, set of 220 star) -> set of 220 star (6271ms) What is Ursa Major? mythology name -2.715150309302927 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, mythology name) -> mythology name (6286ms) What is Ursa Major? spectacular constellation -2.71550560278462 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, spectacular constellation) -> spectacular constellation (6286ms) What is Ursa Major? fan favorite -2.715957168285178 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, fan favorite) -> fan favorite (6286ms) What is Ursa Major? Public school -2.72312766686637 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major Elementary School, Instance Of, Public school) -> Public school (6286ms) What is Ursa Major? private company -2.7560111345539315 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major Constellation, Instance Of, private company) -> private company (6286ms) What is Ursa Major? polar constellation -2.7600442647380694 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, polar constellation) -> polar constellation (6370ms) What is Ursa Major? interesting constellation -2.7600442647380694 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, interesting constellation) -> interesting constellation (6370ms) What is Ursa Major? northerly constellation -2.7600442647380694 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, northerly constellation) -> northerly constellation (6387ms) What is Ursa Major? bear constellation -2.7600442647380694 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, bear constellation) -> bear constellation (6370ms) What is Ursa Major? beautiful constellation -2.7600442647380694 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, beautiful constellation) -> beautiful constellation (6286ms) What is Ursa Major? astral constellation -2.7600442647380694 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, astral constellation) -> astral constellation (6369ms) What is Ursa Major? amazing constellation -2.7600442647380694 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, amazing constellation) -> amazing constellation (6370ms) What is Ursa Major? star constellation -2.7687027199684744 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, star constellation) -> star constellation (6385ms) What is Ursa Major? spring constellation -2.7764953297984087 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, spring constellation) -> spring constellation (6385ms) What is Ursa Major? popular constellation -2.7776704057865977 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, popular constellation) -> popular constellation (6385ms) What is Ursa Major? winter constellation -2.7847208629414286 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, winter constellation) -> winter constellation (6401ms) What is Ursa Major? cool design -2.788559443522285 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, cool design) -> cool design (6401ms) What is Ursa Major? famous constellation -2.7920324468679354 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, famous constellation) -> famous constellation (6401ms) What is Ursa Major? famous group -2.7935556927021583 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, famous group) -> famous group (6401ms) What is Ursa Major? profit group -2.8011719267760693 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa major, Instance Of, profit group) -> profit group (6401ms) What is Ursa Major? good place -2.8017357585094977 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, good place) -> good place (6401ms) What is Ursa Major? excellent tool -2.8392166724497647 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major MSP-126, Instance Of, excellent tool) -> excellent tool (6418ms) What is Ursa Major? administration company -2.848819319814613 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major Investments, Instance Of, administration company) -> administration company (6417ms) What is Ursa Major? double star -2.891432460396806 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Mizar in Ursa Major, Instance Of, double star) -> double star (6433ms) What is Ursa Major? star and constellation -3.1553381019957687 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, star and constellation) -> star and constellation (6433ms) What is Ursa Major? North Polar constellation -3.19521680781573 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, North Polar constellation) -> North Polar constellation (6433ms) What is Ursa Major? constellation -4.366234301479 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, constellation) -> constellation (6601ms) What is Ursa Major? album -4.835553847147453 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, album) -> album (6616ms) What is Ursa Major? design -4.841463570506495 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, design) -> design (6616ms) What is Ursa Major? beauty -4.945775024210227 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, beauty) -> beauty (6616ms) What is Ursa Major? pattern -4.950442160725227 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, pattern) -> pattern (6626ms) What is Ursa Major? boat -4.952573441932019 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa major, Instance Of, boat) -> boat (6626ms) What is Ursa Major? degree -4.9572423630659905 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, degree) -> degree (6626ms) What is Ursa Major? club -4.959930026202566 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, club) -> club (6626ms) What is Ursa Major? figure -4.9631768388991695 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, figure) -> figure (6626ms) What is Ursa Major? group -4.965671442053457 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, group) -> group (6626ms) What is Ursa Major? company -4.981640143971839 What is Ursa Major? -> $x: (Ursa Major, instance of, $x) -> (Ursa Major, Instance Of, company) -> company (6637ms) What is Ursa Major? a woman -7.960787425813683 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, was, a woman) -> a woman (8569ms) What is Ursa Major? El Alcola -8.005246808465884 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Major, are, El Alcola) -> El Alcola (8569ms) What is Ursa Major? Pole Star -8.007597408109543 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Minor, was, Pole Star) -> Pole Star (8569ms) What is Ursa Major? the ?Big Dipper -8.016647086742774 What is Ursa Major? -> what [ be ursa major ] ? -> what be know be ursa major ? -> $x: ($x, be know be, ursa major) -> (the ?Big Dipper, is also known as, Ursa Major) -> the ?Big Dipper (7055ms) What is Ursa Major? a poor man -8.049121103835182 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, was, a poor man) -> a poor man (8569ms) What is Ursa Major? 65 feet -8.25154818349118 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Major, is, 65 feet) -> 65 feet (8569ms) What is Ursa Major? Ursa Minor -8.3856324719942 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (Ursa Minor, is to, Ursa Major) -> Ursa Minor (8951ms) What is Ursa Major? White Lotus -8.386088859685948 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, was, White Lotus) -> White Lotus (8569ms) What is Ursa Major? the Fire Falls -8.508840966119738 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa ? LOIS, are, the Fire Falls) -> the Fire Falls (8951ms) What is Ursa Major? the Web -8.510464670924767 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (URSA, is accessed through, the Web) -> the Web (8951ms) What is Ursa Major? a tank -8.531076105714952 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is, a tank) -> a tank (8951ms) What is Ursa Major? ?Deal -8.544789931114476 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is like, ?Deal) -> ?Deal (8951ms) What is Ursa Major? Cancer ] -8.605477754107262 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (Cancer ], is, Ursa Major) -> Cancer ] (9027ms) What is Ursa Major? a constellation -8.651707823068044 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Minor, is, a constellation) -> a constellation (9027ms) What is Ursa Major? ICU -8.68231952150128 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, was kept in, ICU) -> ICU (9027ms) What is Ursa Major? a handprint -8.68763225616791 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is making, a handprint) -> a handprint (9027ms) What is Ursa Major? PSP -8.719083283577884 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (PSP, are the stars of, Ursa Major) -> PSP (9027ms) What is Ursa Major? Cepheus -8.74049220851343 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Minor, is, Cepheus) -> Cepheus (9094ms) What is Ursa Major? a bear -8.760967521328578 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is, a bear) -> a bear (9094ms) What is Ursa Major? Leo Minor -8.77869751051788 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Major, is, Leo Minor) -> Leo Minor (9093ms) What is Ursa Major? the Big Dipper -8.826548981350522 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is, the Big Dipper) -> the Big Dipper (9094ms) What is Ursa Major? Ms Perfect Mom -8.84412935590744 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, was, Ms Perfect Mom) -> Ms Perfect Mom (9094ms) What is Ursa Major? M?htyw -8.857402064063098 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (M?htyw, is, Ursa Major) -> M?htyw (9162ms) What is Ursa Major? The Big Dipper -8.897284842079555 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (The Big Dipper, is, Ursa Major) -> The Big Dipper (9162ms) What is Ursa Major? a shape-shifting kleptomaniac -8.913233849243769 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Ojo, is, a shape-shifting kleptomaniac) -> a shape-shifting kleptomaniac (9162ms) What is Ursa Major? the Fire Nation -8.914687741750267 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, was banished from, the Fire Nation) -> the Fire Nation (9162ms) What is Ursa Major? a boil-free bush -8.96003179280217 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, was pruning, a boil-free bush) -> a boil-free bush (9190ms) What is Ursa Major? NGC2366 -9.002778028813077 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Major, is, NGC2366) -> NGC2366 (9190ms) What is Ursa Major? a Radiant?s Agility hero -9.006480744492613 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is, a Radiant?s Agility hero) -> a Radiant?s Agility hero (9190ms) What is Ursa Major? 4,000 feet -9.009349633518736 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is in, 4,000 feet) -> 4,000 feet (9190ms) What is Ursa Major? the Great Bear -9.011785915601488 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Major, was, the Great Bear) -> the Great Bear (9190ms) What is Ursa Major? John Little -9.012695904087607 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (John Little, was called, Ursa Major) -> John Little (9191ms) What is Ursa Major? Ursa -9.013873650363653 What is Ursa Major? -> what [ be ursa major ] ? -> what be know be ursa major ? -> $x: ($x, be know be, ursa major) -> $x: ($x, know, ursa major) -> (Ursa, Also known as, Ursa Major) -> Ursa (9216ms) What is Ursa Major? a loud yet irresistibly cute little brat -9.025390163181253 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is, a loud yet irresistibly cute little brat) -> a loud yet irresistibly cute little brat (9216ms) What is Ursa Major? Superman -9.030462509190318 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, was created for, Superman) -> Superman (9216ms) What is Ursa Major? a great -9.033439967864187 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (" Ursa Minor, is, a great) -> a great (9216ms) What is Ursa Major? BruinAlert -9.04083921937706 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (URSA, are automatically enrolled in, BruinAlert) -> BruinAlert (9216ms) What is Ursa Major? Cancer -9.060540736428997 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (Cancer, is, URSA MAJOR) -> Cancer (9216ms) What is Ursa Major? La Grande Ourse -9.062185172891532 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Major, is, La Grande Ourse) -> La Grande Ourse (9240ms) What is Ursa Major? a true trawler yacht -9.083093131983835 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (The Ursa, is, a true trawler yacht) -> a true trawler yacht (9241ms) What is Ursa Major? Hospice care -9.119316941852341 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is under, Hospice care) -> Hospice care (9240ms) What is Ursa Major? a project -9.119966125543167 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, was working on, a project) -> a project (9241ms) What is Ursa Major? Tampa Bay Library Consortium -9.13115260811608 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (URSA, are, Tampa Bay Library Consortium) -> Tampa Bay Library Consortium (9268ms) What is Ursa Major? visible smudges -9.137993092648488 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Major, were, visible smudges) -> visible smudges (9268ms) What is Ursa Major? 130 miles -9.138897893011956 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is about, 130 miles) -> 130 miles (9268ms) What is Ursa Major? the Assyrian name -9.140847883760916 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is, the Assyrian name) -> the Assyrian name (9268ms) What is Ursa Major? a perfect twist -9.175727321601663 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, was, a perfect twist) -> a perfect twist (9446ms) What is Ursa Major? UCLA?s student record access system -9.195386280587359 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (URSA, is, UCLA?s student record access system) -> UCLA?s student record access system (9446ms) What is Ursa Major? a go fast sailing machine -9.19613642501929 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Minor, is, a go fast sailing machine) -> a go fast sailing machine (9446ms) What is Ursa Major? Ursa Major -9.210339036056727 What is Ursa Major? -> what be [ ursa major ] ? -> what be the expansion of ursa major ? -> $x: (ursa major, expansion, $x) -> $x: ($x, edition, ursa major) -> (Ursa Major, Editions, Ursa Major: A Tale of the Old South) -> Ursa Major (11124ms) What is Ursa Major? the Lesser Flock -9.210837607377197 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Minor, is, the Lesser Flock) -> the Lesser Flock (9446ms) What is Ursa Major? First Woman -9.235450546575414 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (First Woman, were, Ursa Major) -> First Woman (9548ms) What is Ursa Major? a variety -9.242548065428757 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (URSA, has been involved in developing, a variety) -> a variety (9548ms) What is Ursa Major? the URSA Web site -9.261765672033578 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (URSA, are available on, the URSA Web site) -> the URSA Web site (9548ms) What is Ursa Major? Vermont ?We -9.264578432659384 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (Vermont ?We, are, Ursa Major) -> Vermont ?We (9548ms) What is Ursa Major? Draco -9.26965101972334 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Minor, is, Draco) -> Draco (9548ms) What is Ursa Major? Polaris -9.28778391634986 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Minor, is, Polaris) -> Polaris (9587ms) What is Ursa Major? a very mellow and sweet lady -9.290681066664446 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is, a very mellow and sweet lady) -> a very mellow and sweet lady (9586ms) What is Ursa Major? two megalithic sites -9.292566916492275 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, are, two megalithic sites) -> two megalithic sites (9587ms) What is Ursa Major? Cygnus -9.305938338972231 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (Cygnus, is above, Ursa Major) -> Cygnus (9587ms) What is Ursa Major? library consortial borrowing -9.30664120360212 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (URSA, has been a leader in, library consortial borrowing) -> library consortial borrowing (9586ms) What is Ursa Major? Rockets in Ursa Major -9.331790089352157 What is Ursa Major? -> what be [ ursa major ] ? -> what be the expansion of ursa major ? -> $x: (ursa major, expansion, $x) -> $x: ($x, edition, ursa major) -> (Rockets in Ursa Major, Editions, Rockets in Ursa Major) -> Rockets in Ursa Major (11124ms) What is Ursa Major? Artemis -9.357221782663373 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is also, Artemis) -> Artemis (9656ms) What is Ursa Major? the Bear -9.358608049033712 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the Bear, is the constellation of, Ursa Major) -> the Bear (9656ms) What is Ursa Major? Asterisms -9.361578199243894 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, are called, Asterisms) -> Asterisms (9656ms) What is Ursa Major? Dubhe -9.363346624748383 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is called, Dubhe) -> Dubhe (9657ms) What is Ursa Major? a play -9.370169174546048 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is based on, a play) -> a play (9656ms) What is Ursa Major? Asteroid belt -9.37787655754244 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: ($x, member, ursa) -> (Asteroid belt, Asteroid Group Members, 1838 Ursa) -> Asteroid belt (10916ms) What is Ursa Major? Ursa Major The Greater Bear -9.391349330650337 What is Ursa Major? -> what be [ ursa major ] ? -> what be the expansion of ursa major ? -> $x: (ursa major, expansion, $x) -> $x: ($x, edition, ursa major) -> (Ursa Major The Greater Bear, Editions, Ursa Major The Greater Bear) -> Ursa Major The Greater Bear (11124ms) What is Ursa Major? 47 Ursae Majoris -9.394679602963055 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (47 Ursae Majoris, is in, the constellation Ursa Major) -> 47 Ursae Majoris (9681ms) What is Ursa Major? a fine physick -9.413576520229748 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is, a fine physick) -> a fine physick (9681ms) What is Ursa Major? a vague affliction -9.420295475339092 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is dying of, a vague affliction) -> a vague affliction (9681ms) What is Ursa Major? Leo -9.421736206602706 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (Leo, is, Ursa Major) -> Leo (9681ms) What is Ursa Major? Fawcett Crest -9.426192001499157 What is Ursa Major? -> what be [ ursa major ] ? -> what be the expansion of ursa major ? -> $x: (ursa major, expansion, $x) -> $x: ($x, edition, ursa major) -> (Fawcett Crest, Book editions published, Rockets in Ursa Major) -> Fawcett Crest (11124ms) What is Ursa Major? fearful determination -9.433501282572106 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, was fueled by, fearful determination) -> fearful determination (9681ms) What is Ursa Major? a small constellation -9.441172752269638 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Minor, is, a small constellation) -> a small constellation (9738ms) What is Ursa Major? Vanguards -9.445114392429854 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Warrior, is, Vanguards) -> Vanguards (9738ms) What is Ursa Major? Regulus -9.450062566931297 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, was in, Regulus) -> Regulus (9738ms) What is Ursa Major? a dignified family -9.460232864812234 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, was from, a dignified family) -> a dignified family (9738ms) What is Ursa Major? Callisto -9.461492580125181 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, was originally, Callisto) -> Callisto (9764ms) What is Ursa Major? a lot -9.474909888551215 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, away has been changed to, a lot) -> a lot (9764ms) What is Ursa Major? Rockets in Ursa Major; a novel -9.477980954356779 What is Ursa Major? -> what be [ ursa major ] ? -> what be the expansion of ursa major ? -> $x: (ursa major, expansion, $x) -> $x: (ursa major, edition, $x) -> (Rockets in Ursa Major, Editions, Rockets in Ursa Major; a novel) -> Rockets in Ursa Major; a novel (10991ms) What is Ursa Major? an amazing craft -9.485578074096836 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Minor, is, an amazing craft) -> an amazing craft (9764ms) What is Ursa Major? a distance -9.49458590854381 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is located at, a distance) -> a distance (9764ms) What is Ursa Major? Polaris?s right -9.497700796661428 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is to, Polaris?s right) -> Polaris?s right (9764ms) What is Ursa Major? Teddy Roosevelt and the treasure of Ursa Major -9.510467813246695 What is Ursa Major? -> what be [ ursa major ] ? -> what be the expansion of ursa major ? -> $x: (ursa major, expansion, $x) -> $x: ($x, edition, ursa major) -> (Teddy Roosevelt and the treasure of Ursa Major, Edition Of, Teddy Roosevelt and the treasure of Ursa Major) -> Teddy Roosevelt and the treasure of Ursa Major (11214ms) What is Ursa Major? Aladdin Paperbacks -9.515530863446426 What is Ursa Major? -> what be [ ursa major ] ? -> what be the expansion of ursa major ? -> $x: (ursa major, expansion, $x) -> $x: ($x, edition, ursa major) -> (Aladdin Paperbacks, Book editions published, Teddy Roosevelt and the treasure of Ursa Major) -> Aladdin Paperbacks (11215ms) What is Ursa Major? a circumpolar constellation -9.527763530778168 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Major, is, a circumpolar constellation) -> a circumpolar constellation (9860ms) What is Ursa Major? Michael Joseph -9.531296544966532 What is Ursa Major? -> what be [ ursa major ] ? -> what be the expansion of ursa major ? -> $x: (ursa major, expansion, $x) -> $x: ($x, edition, ursa major) -> (Michael Joseph, Book editions published, Ursa Major: a study of Dr.Johnson and his friends.) -> Michael Joseph (11350ms) What is Ursa Major? Ursa Major: A Tale of the Old South -9.537956693845855 What is Ursa Major? -> what be [ ursa major ] ? -> what be the expansion of ursa major ? -> $x: (ursa major, expansion, $x) -> $x: (ursa major, edition, $x) -> (Ursa Major, Editions, Ursa Major: A Tale of the Old South) -> Ursa Major: A Tale of the Old South (11350ms) What is Ursa Major? harbor black holes -9.562405824133059 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, are thought to, harbor black holes) -> harbor black holes (9860ms) What is Ursa Major? Comet NEAT -9.57084100667552 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (Comet NEAT, will be in, URSA MAJOR) -> Comet NEAT (9860ms) What is Ursa Major? Harper & Row / SFBC -9.58193890280451 What is Ursa Major? -> what be [ ursa major ] ? -> what be the expansion of ursa major ? -> $x: (ursa major, expansion, $x) -> $x: ($x, edition, ursa major) -> (Harper & Row / SFBC, Book editions published, Rockets in Ursa Major) -> Harper & Row / SFBC (11350ms) What is Ursa Major? Saturday -9.588366284811642 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (URSA, is operational Monday through, Saturday) -> Saturday (9860ms) What is Ursa Major? a dog -9.588906789127382 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is an absolute sweetheart of, a dog) -> a dog (9901ms) What is Ursa Major? Thuban -9.591720320376902 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (Thuban, is Alioth of, Ursa Major) -> Thuban (9901ms) What is Ursa Major? subtle evolutionary currents -9.612119505118429 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, are of, subtle evolutionary currents) -> subtle evolutionary currents (9901ms) What is Ursa Major? the Plough -9.655548139970026 What is Ursa Major? -> what [ be ursa major ] ? -> what be know be ursa major ? -> $x: ($x, be know be, ursa major) -> (the Plough, is even more widely known as, Ursa Major) -> the Plough (7055ms) What is Ursa Major? Kara -9.65673749649993 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is looking down at, Kara) -> Kara (9901ms) What is Ursa Major? the Most noticeable -9.660830568941437 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the Most noticeable, are the stars of, Ursa Major) -> the Most noticeable (9901ms) What is Ursa Major? Na'ash or Nash -9.685722146355078 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, was called, Na'ash or Nash) -> Na'ash or Nash (9928ms) What is Ursa Major? late degrees -9.735503020600685 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, were in, late degrees) -> late degrees (9927ms) What is Ursa Major? Tala -9.746041482461175 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is a lock for, Tala) -> Tala (9927ms) What is Ursa Major? High above Leo -9.756323965114946 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (High above Leo, is, the constellation Ursa Major) -> High above Leo (9927ms) What is Ursa Major? the Black Thunder mine -9.760164368110035 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the Black Thunder mine, is, ?Ursa Major?) -> the Black Thunder mine (9954ms) What is Ursa Major? 28 years -9.780657006469355 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, have, $x) -> (parents Ursa Major, would have been, 28 years) -> 28 years (9954ms) What is Ursa Major? Examples -9.786020859129632 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (Examples, are, Ursa Major) -> Examples (9954ms) What is Ursa Major? top left -9.786731525222581 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is at, top left) -> top left (9954ms) What is Ursa Major? Libra -9.786969613657984 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (Libra, is, Ursa Major) -> Libra (9955ms) What is Ursa Major? a master firebender -9.788931279714348 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, quickly she?d be extinguished by, a master firebender) -> a master firebender (9954ms) What is Ursa Major? the 2:00 p.m. -9.790979853043742 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the 2:00 p.m., Are, the Ursa Major Awards) -> the 2:00 p.m. (9987ms) What is Ursa Major? 10-40 million light years -9.797104695128752 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, are, 10-40 million light years) -> 10-40 million light years (9986ms) What is Ursa Major? Truck -9.806625576360736 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (Truck, is operating under, the name Ursa Major) -> Truck (9986ms) What is Ursa Major? The Big Dip -9.855293049432891 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (The Big Dip, is actually part of, the constellation Ursa Major) -> The Big Dip (9986ms) What is Ursa Major? the Delaware Diamond -9.860865321697279 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is called, the Delaware Diamond) -> the Delaware Diamond (9986ms) What is Ursa Major? the First Year Experience program -9.865666586668251 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is part of, the First Year Experience program) -> the First Year Experience program (10048ms) What is Ursa Major? Mars -9.9054934185182 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is like, Mars) -> Mars (10049ms) What is Ursa Major? the NASA/ESA Hubble Space Telescope -9.91076067284942 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, was taken by, the NASA/ESA Hubble Space Telescope) -> the NASA/ESA Hubble Space Telescope (10048ms) What is Ursa Major? the 7 rays -9.917221584777568 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, are the sources of, the 7 rays) -> the 7 rays (10048ms) What is Ursa Major? ?Kevin & Kell ? -9.924907866076147 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (?Kevin & Kell ?, was given, the Ursa Major Award) -> ?Kevin & Kell ? (10048ms) What is Ursa Major? the Waggon -9.92681863419537 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Major, is, the Waggon) -> the Waggon (10048ms) What is Ursa Major? interesting galaxies -9.927945355002112 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is full of, interesting galaxies) -> interesting galaxies (10080ms) What is Ursa Major? personal will -9.934000723245212 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is the star of, personal will) -> personal will (10080ms) What is Ursa Major? amateur astronomers -9.939797881664475 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is a favorite among, amateur astronomers) -> amateur astronomers (10080ms) What is Ursa Major? 10 * children -9.944918755366622 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (10 * children, must be accompanied by, adult Ursa Major-- Star) -> 10 * children (10080ms) What is Ursa Major? 41 Lyn -9.969587824966228 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (41 Lyn, is part of, Ursa Major) -> 41 Lyn (10080ms) What is Ursa Major? N?hookos -9.990223972151961 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, was named, N?hookos) -> N?hookos (10158ms) What is Ursa Major? low -10.003860699002146 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Major, is, low) -> low (10159ms) What is Ursa Major? normal stars -10.007548199873233 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is the only group of, normal stars) -> normal stars (10158ms) What is Ursa Major? one star -10.021765617705094 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (one star, was a member of, the Ursa Major) -> one star (10159ms) What is Ursa Major? Kranj -10.057500581937404 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, place of birth, $x) -> (Ursa Bezan, Place of birth, Kranj) -> Kranj (10853ms) What is Ursa Major? stellar cosmology -10.064072246545992 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is the sacred point of, stellar cosmology) -> stellar cosmology (10159ms) What is Ursa Major? a Bear -10.086084131647103 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is, a Bear) -> a Bear (10159ms) What is Ursa Major? M82 These Galaxies -10.121079026752621 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (M82 These Galaxies, are located in, Ursa Major) -> M82 These Galaxies (10202ms) What is Ursa Major? Bootes -10.14786185975374 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (Bootes, is next to, Ursa Major) -> Bootes (10202ms) What is Ursa Major? Mayflower -10.16969930532358 What is Ursa Major? -> what be [ ursa major ] ? -> what be the expansion of ursa major ? -> $x: (ursa major, expansion, $x) -> $x: ($x, edition, ursa major) -> (Mayflower, Book editions published, Rockets in Ursa Major) -> Mayflower (11375ms) What is Ursa Major? Heinemann -10.16969930532358 What is Ursa Major? -> what be [ ursa major ] ? -> what be the expansion of ursa major ? -> $x: (ursa major, expansion, $x) -> $x: ($x, edition, ursa major) -> (Heinemann, Book editions published, Rockets in Ursa Major) -> Heinemann (11375ms) What is Ursa Major? trademarks -10.172474151480817 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (URSA, are, trademarks) -> trademarks (10202ms) What is Ursa Major? MS 81 -10.263986190398192 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (MS 81, is being positioned in, the Ursa Major constellation) -> MS 81 (10202ms) What is Ursa Major? a constellation visible -10.292415741265646 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Major, is, a constellation visible) -> a constellation visible (10202ms) What is Ursa Major? GEORGE -10.305606860151263 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is up there, GEORGE) -> GEORGE (10202ms) What is Ursa Major? a cart -10.337710193031551 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, was visualized as, a cart) -> a cart (10234ms) What is Ursa Major? 2610.4 -10.349740922988158 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, run, $x) -> (Ursa Major, Running Time, 2610.4) -> 2610.4 (11498ms) What is Ursa Major? 2859.093 -10.349740922988158 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, run, $x) -> (Ursa Major, Running Time, 2859.093) -> 2859.093 (11498ms) What is Ursa Major? The nearest open cluster -10.354975541074307 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (The nearest open cluster, is, the Ursa Major cluster) -> The nearest open cluster (10234ms) What is Ursa Major? Zeta Tucanae -10.528560709511565 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, instance of, ursa major) -> (Zeta Tucanae, Instance Of, member of the Ursa Major moving group of star) -> Zeta Tucanae (11375ms) What is Ursa Major? almost overhead -10.545713432228235 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Major, is, almost overhead) -> almost overhead (10268ms) What is Ursa Major? the Arcturus -10.568473893800386 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, was probably, the Arcturus) -> the Arcturus (10267ms) What is Ursa Major? 9780583119122 -10.617033936384976 What is Ursa Major? -> what be [ ursa major ] ? -> what be the expansion of ursa major ? -> $x: (ursa major, expansion, $x) -> $x: ($x, edition, ursa major) -> (9780583119122, Book Editions, Rockets in Ursa Major) -> 9780583119122 (11375ms) What is Ursa Major? 9780434349227 -10.617033936384976 What is Ursa Major? -> what be [ ursa major ] ? -> what be the expansion of ursa major ? -> $x: (ursa major, expansion, $x) -> $x: ($x, edition, ursa major) -> (9780434349227, Book Editions, Rockets in Ursa Major) -> 9780434349227 (11375ms) What is Ursa Major? the Dipper -10.619573695700549 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, were the ones of, the Dipper) -> the Dipper (10268ms) What is Ursa Major? 9781425321079 -10.656018167052874 What is Ursa Major? -> what be [ ursa major ] ? -> what be the expansion of ursa major ? -> $x: (ursa major, expansion, $x) -> $x: ($x, edition, ursa major) -> (9781425321079, Book Editions, Ursa Major The Greater Bear) -> 9781425321079 (11375ms) What is Ursa Major? the North -10.682312220014397 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, may be seen dimly to, the North) -> the North (10312ms) What is Ursa Major? the Saptarishis -10.685496319928804 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, are equated with, the Saptarishis) -> the Saptarishis (10312ms) What is Ursa Major? a group of the first importance -10.705892045102694 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Major, are, a group of the first importance) -> a group of the first importance (10312ms) What is Ursa Major? 9780934870931 -10.739555804198373 What is Ursa Major? -> what be [ ursa major ] ? -> what be the expansion of ursa major ? -> $x: (ursa major, expansion, $x) -> $x: ($x, edition, ursa major) -> (9780934870931, Book Editions, Ursa Major: A Tale of the Old South) -> 9780934870931 (11434ms) What is Ursa Major? 9781416948575 -10.739555804198373 What is Ursa Major? -> what be [ ursa major ] ? -> what be the expansion of ursa major ? -> $x: (ursa major, expansion, $x) -> $x: ($x, edition, ursa major) -> (9781416948575, Book Editions, Teddy Roosevelt and the treasure of Ursa Major) -> 9781416948575 (11434ms) What is Ursa Major? August 17 , 2009 -10.739900653840277 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (" Ursa Major, was released on, August 17 , 2009) -> August 17 , 2009 (10312ms) What is Ursa Major? M101 -10.77432956152001 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be in, ursa major) -> (M101, is found in, the Ursa Major constellation) -> M101 (11435ms) What is Ursa Major? the star Dubheh -10.784878187890909 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Major, is, the star Dubheh) -> the star Dubheh (10359ms) What is Ursa Major? treason -10.824114659898877 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is banished for, treason) -> treason (10359ms) What is Ursa Major? Beta Ursae Majoris -10.833133759728549 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, instance of, ursa major) -> (Beta Ursae Majoris, Instance Of, member of the Ursa Major) -> Beta Ursae Majoris (11435ms) What is Ursa Major? Ursula Major -10.834006981888182 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, instance of, ursa major) -> (Ursula Major, Instance Of, pun of the constellation of star called Ursa Major) -> Ursula Major (11467ms) What is Ursa Major? Joyce Gauthier -10.834006981888182 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, instance of, ursa major) -> (Joyce Gauthier, Instance Of, Seattle physician and owner of Ursa Major) -> Joyce Gauthier (11468ms) What is Ursa Major? Megrez Alkaid -10.850963007801148 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, instance of, ursa major) -> (Megrez Alkaid, Instance Of, sequence star, and not part of the Ursa Major constellation) -> Megrez Alkaid (11468ms) What is Ursa Major? the only members -10.878056603027888 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, may be one of, the only members) -> the only members (10359ms) What is Ursa Major? the dragon Draco -10.882924407750322 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Minor, is, the dragon Draco) -> the dragon Draco (10401ms) What is Ursa Major? the best known constellation -10.887981368940963 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Major, is, the best known constellation) -> the best known constellation (10401ms) What is Ursa Major? Venetian Plaster Art-This -10.89079391303656 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, instance of, ursa major) -> (Venetian Plaster Art-This, Instance Of, star scape of Ursa Major) -> Venetian Plaster Art-This (11468ms) What is Ursa Major? the masque -10.902658518894988 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the masque, is, Ursa Major) -> the masque (10400ms) What is Ursa Major? literature and art -10.904090087451175 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, have, $x) -> (Ursa Major, has featured in, literature and art) -> literature and art (10400ms) What is Ursa Major? Winter Guard -10.90456632496951 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, instance of, ursa major) -> (Winter Guard, Instance Of, team of interchangeable superhero icon featuring Darkstar, Ursa Major, Crimson Dynamo and Red Guardian) -> Winter Guard (11468ms) What is Ursa Major? the right items -10.92485454658629 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, can be deadly with, the right items) -> the right items (10400ms) What is Ursa Major? male -10.930405207440888 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Alex Ursa, is a, male) -> male (10581ms) What is Ursa Major? Mr. H. Ross Arnold, III. -10.98013277498383 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, instance of, ursa major) -> (Mr. H. Ross Arnold, III., Instance Of, Independent Director of Ursa Major Minerals Inc.) -> Mr. H. Ross Arnold, III. (11467ms) What is Ursa Major? Hubble Deep Field -10.98013277498383 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, instance of, ursa major) -> (Hubble Deep Field, Instance Of, portrait of a small region of the Ursa Major constellation) -> Hubble Deep Field (11498ms) What is Ursa Major? the most brutal and unrelenting story -11.03383446900379 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa Major, is, the most brutal and unrelenting story) -> the most brutal and unrelenting story (10581ms) What is Ursa Major? the center -11.039711645841837 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is rising in, the center) -> the center (10581ms) What is Ursa Major? The big dipper -11.051143423845941 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (The big dipper, is part of, the Ursa Major constellation) -> The big dipper (10581ms) What is Ursa Major? Picture shown -11.061517561260835 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, instance of, ursa major) -> (Picture shown, Instance Of, stock picture of a Ursa Major) -> Picture shown (11498ms) What is Ursa Major? 1974 -11.067985413410891 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, was adopted in, 1974) -> 1974 (10808ms) What is Ursa Major? the outfit -11.118715705447034 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, would rather be in, the outfit) -> the outfit (10808ms) What is Ursa Major? the whale -11.126986266506982 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is making like, the whale) -> the whale (10808ms) What is Ursa Major? Rob -11.12774962527174 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be in, ursa major) -> (Rob, was bouncing around in, Virgo/Ursa Major) -> Rob (11498ms) What is Ursa Major? the great ?W? -11.134526888488857 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is, the great ?W?) -> the great ?W? (10808ms) What is Ursa Major? the first two galaxies -11.14620198242859 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, were, the first two galaxies) -> the first two galaxies (10808ms) What is Ursa Major? 20,000 t -11.204347902360718 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, have, $x) -> (Ursa Major, has about, 20,000 t) -> 20,000 t (10853ms) What is Ursa Major? a double meaning -11.234168249762025 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, have, $x) -> (Ursa Major, has, a double meaning) -> a double meaning (10853ms) What is Ursa Major? a mystic significance -11.237685297719489 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, have, $x) -> (the constellation Ursa Major, has, a mystic significance) -> a mystic significance (10853ms) What is Ursa Major? the most recognizable constellation -11.245687588070757 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is, the most recognizable constellation) -> the most recognizable constellation (10853ms) What is Ursa Major? similar names -11.251974628734597 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, have, $x) -> (Bootes and Ursa Major, had, similar names) -> similar names (10853ms) What is Ursa Major? a full-time Captain -11.259085851813161 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, have, $x) -> (Vic & Barb kayaking ?Ursa Major ?, has, a full-time Captain) -> a full-time Captain (10916ms) What is Ursa Major? the stellar constellations -11.260510357696553 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the stellar constellations, is, Ursa Major) -> the stellar constellations (10916ms) What is Ursa Major? the teddy bear -11.273281377211791 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the teddy bear, is, Ursa Major) -> the teddy bear (10916ms) What is Ursa Major? course -11.277106730459181 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, was of, course) -> course (10916ms) What is Ursa Major? a rampage -11.285919858808057 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, go, $x) -> (an Ursa-major, went on, a rampage) -> a rampage (10916ms) What is Ursa Major? the ox thigh constellation M?htyw -11.286162079447726 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the ox thigh constellation M?htyw, was, Ursa Major) -> the ox thigh constellation M?htyw (10916ms) What is Ursa Major? The system -11.293260568777656 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (The system, is in, Ursa Major) -> The system (10916ms) What is Ursa Major? Sirius -11.299028974490646 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: ($x, member, ursa) -> (Sirius, was a member of, the Ursa Major Moving Group) -> Sirius (11498ms) What is Ursa Major? the video image -11.315787419614633 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the video image, is, Ursa Major) -> the video image (11498ms) What is Ursa Major? the naked eye -11.31659563295263 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the naked eye, were, the bears Ursa Major) -> the naked eye (11623ms) What is Ursa Major? the asterism -11.317000705850303 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is, the asterism) -> the asterism (11623ms) What is Ursa Major? The hounds -11.318902290623226 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (The hounds, are pursuing, Ursa Major) -> The hounds (11623ms) What is Ursa Major? 1.4 % Ni -11.323466384957076 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, have, $x) -> (Ursa Major, have yielded up to, 1.4 % Ni) -> 1.4 % Ni (11623ms) What is Ursa Major? Big Dipper -11.330848128994035 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, instance of, ursa major) -> (Big Dipper, Instance Of, part of the Ursa Major constellation) -> Big Dipper (11623ms) What is Ursa Major? the first cycle -11.331577769266874 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the first cycle, were, Ursa Major) -> the first cycle (11623ms) What is Ursa Major? the most conspicuous asterism -11.334107334928609 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is, the most conspicuous asterism) -> the most conspicuous asterism (11729ms) What is Ursa Major? the two most obvious -11.335677150336673 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the two most obvious, are probably, Ursa Major) -> the two most obvious (11729ms) What is Ursa Major? The official name -11.351090781851894 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (The official name, is, Ursa Major) -> The official name (11729ms) What is Ursa Major? Messier 101 -11.353886250246559 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be in, ursa major) -> (Messier 101, is located in, the constellation Ursa Major) -> Messier 101 (11729ms) What is Ursa Major? galaxy M82 -11.366425302517829 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be in, ursa major) -> (galaxy M82, is in, the Great Bear constellation Ursa Major) -> galaxy M82 (11729ms) What is Ursa Major? the northern hemisphere -11.37113956926963 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, can be seen in, the northern hemisphere) -> the northern hemisphere (11755ms) What is Ursa Major? the trees -11.37139767360652 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is getting rather low in, the trees) -> the trees (11756ms) What is Ursa Major? the lion -11.392549750377823 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the lion, is, Ursa Major) -> the lion (11756ms) What is Ursa Major? Seven Woods Audio's SST-206 Space Station -11.402469856413655 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, instance of, ursa major) -> (Seven Woods Audio's SST-206 Space Station, Instance Of, faithful reproduction of the original Ursa Major SST-282) -> Seven Woods Audio's SST-206 Space Station (11756ms) What is Ursa Major? the beautiful Goddess Artemis -11.403894388426995 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the beautiful Goddess Artemis, is, Ursa Major) -> the beautiful Goddess Artemis (11756ms) What is Ursa Major? Trixie -11.41495293117234 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (Trixie, is, the Ursa Major) -> Trixie (11756ms) What is Ursa Major? the zodiac -11.434991277355703 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the zodiac, is, Ursa Major) -> the zodiac (11817ms) What is Ursa Major? the most prominent constellations -11.437295335892898 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the most prominent constellations, would be, Ursa Major) -> the most prominent constellations (11817ms) What is Ursa Major? the northeast -11.440231880337322 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the northeast, is, Ursa Major) -> the northeast (11817ms) What is Ursa Major? the sky -11.448168856334325 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is highest in, the sky) -> the sky (11817ms) What is Ursa Major? the northern sky -11.452589841042103 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the northern sky, is, the constellation Ursa Major) -> the northern sky (11817ms) What is Ursa Major? The radio source -11.4545870756333 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (The radio source, was, first called Ursa Major) -> The radio source (11817ms) What is Ursa Major? the most conspicuous galaxies -11.468073654579586 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is one of, the most conspicuous galaxies) -> the most conspicuous galaxies (11817ms) What is Ursa Major? the most spectacular galaxies -11.482548478769763 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is one of, the most spectacular galaxies) -> the most spectacular galaxies (11899ms) What is Ursa Major? the northern horizon -11.490049342646188 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, can be seen somewhere about, the northern horizon) -> the northern horizon (11899ms) What is Ursa Major? NGC4051 -11.497678775444268 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be in, ursa major) -> (NGC4051, is a spiral galaxy in, the constellation Ursa Major) -> NGC4051 (11899ms) What is Ursa Major? the constellation -11.501180884297987 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the constellation, is, Ursa Major) -> the constellation (11899ms) What is Ursa Major? The full constellation -11.515303350629424 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (The full constellation, actually is, Ursa Major) -> The full constellation (11898ms) What is Ursa Major? Alcor -11.52433482061107 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, instance of, ursa major) -> (Alcor, Instance Of, nuclear member of the Ursa Major star cluster) -> Alcor (11898ms) What is Ursa Major? dancing -11.537709664386984 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (dancing, was connected with, Ursa Major) -> dancing (11925ms) What is Ursa Major? the veteran character -11.542579456010316 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is portrayed as, the veteran character) -> the veteran character (11925ms) What is Ursa Major? the horizon -11.555428293663518 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the horizon, will be, Ursa Major) -> the horizon (11925ms) What is Ursa Major? the largest -11.559849278371296 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is among, the largest) -> the largest (11925ms) What is Ursa Major? the deceased?s spirit -11.56219087704161 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, was believed to protect, the deceased?s spirit) -> the deceased?s spirit (11925ms) What is Ursa Major? midnight -11.564871549116514 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, will be overhead at, midnight) -> midnight (11925ms) What is Ursa Major? binoculars -11.5794711762529 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, are very possible to see in, binoculars) -> binoculars (11925ms) What is Ursa Major? the brightest stars -11.609545323335361 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the brightest stars, is somewhat similar to, Ursa Major) -> the brightest stars (11952ms) What is Ursa Major? the ox thigh -11.63292668506835 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is clearly identified as, the ox thigh) -> the ox thigh (11951ms) What is Ursa Major? Dipper -11.633563042258942 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, instance of, ursa major) -> (Dipper, Instance Of, part of a larger group of star called Ursa Major) -> Dipper (11951ms) What is Ursa Major? Alkaid -11.653983353561175 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, instance of, ursa major) -> (Alkaid, Instance Of, sequence star, and not part of the Ursa Major constellation) -> Alkaid (11951ms) What is Ursa Major? operations -11.656502586362182 What is Ursa Major? -> what be [ ursa ] major ? -> how much education do ursa have ? -> $x: (ursa, education, $x) -> $x: (ursa, be, $x) -> (Ursa, is focused on expanding, operations) -> operations (11951ms) What is Ursa Major? the photo -11.659763606550285 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the photo, is named, Ursa Major) -> the photo (11951ms) What is Ursa Major? the oldest -11.694818758869314 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is one of, the oldest) -> the oldest (11977ms) What is Ursa Major? over -11.704664571214616 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (over, is, Ursa Major) -> over (11977ms) What is Ursa Major? NGC 4088 -11.738269353824064 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, instance of, ursa major) -> (NGC 4088, Instance Of, member of the Ursa Major North Group of galaxy) -> NGC 4088 (11977ms) What is Ursa Major? the left -11.747050957088808 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: ($x, be, ursa major) -> (the left, are the stars of, Ursa Major) -> the left (11977ms) What is Ursa Major? the home -11.752032407129171 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is best known as, the home) -> the home (11977ms) What is Ursa Major? the most well known constellations -11.753637134070917 What is Ursa Major? -> what be [ ursa major ] ? -> what be the mening of ursa major ? -> $x: (ursa major, mening, $x) -> $x: (ursa major, be, $x) -> (Ursa Major, is also one of, the most well known constellations) -> the most well known constellations (11977ms) What is peyote? mind-altering substance -4.797327701396938 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, mind-altering substance) -> mind-altering substance (2788ms) What is peyote? mind-expanding drug -5.036798857406887 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, mind-expanding drug) -> mind-expanding drug (2788ms) What is peyote? hallu-cinogenic substance -5.081692812842029 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, hallu-cinogenic substance) -> hallu-cinogenic substance (2788ms) What is peyote? vision-inducing plant -5.081692812842029 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, vision-inducing plant) -> vision-inducing plant (2788ms) What is peyote? hallucination-producing substance -5.102256643861029 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, hallucination-producing substance) -> hallucination-producing substance (2789ms) What is peyote? powerful indigenous plant -5.240998106640499 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, powerful indigenous plant) -> powerful indigenous plant (2789ms) What is peyote? type of small cactus -5.254602578676496 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, type of small cactus) -> type of small cactus (2803ms) What is peyote? species of small cactus -5.254602578676496 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, species of small cactus) -> species of small cactus (2804ms) What is peyote? hallucinogenic or entheogenic drug -5.299496534111638 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, hallucinogenic or entheogenic drug) -> hallucinogenic or entheogenic drug (2803ms) What is peyote? hallucinogenic cactus plant -5.319840410528823 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, hallucinogenic cactus plant) -> hallucinogenic cactus plant (2803ms) What is peyote? small, fleshy, spineless cactus -5.3603358568064365 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, small, fleshy, spineless cactus) -> small, fleshy, spineless cactus (2803ms) What is peyote? woolen Mexican cactus -5.384186163477459 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, woolen Mexican cactus) -> woolen Mexican cactus (2803ms) What is peyote? pretty heavy duty plant -5.4290801189126014 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, pretty heavy duty plant) -> pretty heavy duty plant (2817ms) What is peyote? small button shaped cactus -5.4290801189126014 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, small button shaped cactus) -> small button shaped cactus (2817ms) What is peyote? species of cactus -5.446365777056725 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, species of cactus) -> species of cactus (2817ms) What is peyote? natural hallucinogenic drug -5.460731728621772 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, natural hallucinogenic drug) -> natural hallucinogenic drug (2818ms) What is peyote? supremely potent medicine -5.460731728621772 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, supremely potent medicine) -> supremely potent medicine (2817ms) What is peyote? arounders CHAPTER OVERVIEW psychedelic drug -5.469852487468907 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, arounders CHAPTER OVERVIEW psychedelic drug) -> arounders CHAPTER OVERVIEW psychedelic drug (2817ms) What is peyote? hallucinogen or psychedelic -5.469852487468907 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, hallucinogen or psychedelic) -> hallucinogen or psychedelic (2839ms) What is peyote? instantly accessable drug -5.479713726579749 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, instantly accessable drug) -> instantly accessable drug (2840ms) What is peyote? hallucinogenic and mind-altering drug -5.490416318487908 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, hallucinogenic and mind-altering drug) -> hallucinogenic and mind-altering drug (2839ms) What is peyote? plant from the old world -5.493354009684079 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, plant from the old world) -> plant from the old world (2839ms) What is peyote? bead weaving technique -5.505625684056914 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, bead weaving technique) -> bead weaving technique (2856ms) What is peyote? synaesthetes hallucinogenic compound -5.505625684056914 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, synaesthetes hallucinogenic compound) -> synaesthetes hallucinogenic compound (2856ms) What is peyote? small brown cactus -5.505625684056914 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, small brown cactus) -> small brown cactus (2840ms) What is peyote? hallucinogenic plant substance -5.505625684056914 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, hallucinogenic plant substance) -> hallucinogenic plant substance (2839ms) What is peyote? plant with powerful hallucinogenic property -5.51474644290405 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, plant with powerful hallucinogenic property) -> plant with powerful hallucinogenic property (2886ms) What is peyote? spinelss dome-shaped cactus -5.51474644290405 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, spinelss dome-shaped cactus) -> spinelss dome-shaped cactus (2870ms) What is peyote? psychoactive effect of herb -5.51474644290405 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, psychoactive effect of herb) -> psychoactive effect of herb (2870ms) What is peyote? alkaloid-producing hallucinogenic plant -5.51474644290405 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, alkaloid-producing hallucinogenic plant) -> alkaloid-producing hallucinogenic plant (2886ms) What is peyote? massively powerful psychedelic plant -5.51474644290405 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, massively powerful psychedelic plant) -> massively powerful psychedelic plant (2856ms) What is peyote? small, carrot-shaped cactus -5.51474644290405 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, small, carrot-shaped cactus) -> small, carrot-shaped cactus (2870ms) What is peyote? vibrant, versatile stitch -5.51474644290405 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, vibrant, versatile stitch) -> vibrant, versatile stitch (2886ms) What is peyote? interesting conscious-alternating product -5.51474644290405 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, interesting conscious-alternating product) -> interesting conscious-alternating product (2856ms) What is peyote? small mescaline-containing cactus -5.51474644290405 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, small mescaline-containing cactus) -> small mescaline-containing cactus (2886ms) What is peyote? small, spineless, cactus -5.51474644290405 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, small, spineless, cactus) -> small, spineless, cactus (2870ms) What is peyote? small low spineless cactus of the southwestern United States and Mexico -5.51474644290405 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, small low spineless cactus of the southwestern United States and Mexico) -> small low spineless cactus of the southwestern United States and Mexico (2886ms) What is peyote? non-habit forming drug -5.51474644290405 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, non-habit forming drug) -> non-habit forming drug (2856ms) What is peyote? abusable drug of illicit origin -5.51474644290405 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, abusable drug of illicit origin) -> abusable drug of illicit origin (2886ms) What is peyote? Hallucinogenic or Psychedelic type drug -5.51474644290405 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, Hallucinogenic or Psychedelic type drug) -> Hallucinogenic or Psychedelic type drug (2871ms) What is peyote? small spineless globe-shaped cactus -5.51474644290405 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, small spineless globe-shaped cactus) -> small spineless globe-shaped cactus (2870ms) What is peyote? natural psychoactive substance -5.515907599566414 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, natural psychoactive substance) -> natural psychoactive substance (2903ms) What is peyote? illegal and prescription drug -5.5198874006588 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, illegal and prescription drug) -> illegal and prescription drug (2903ms) What is peyote? thread bead technique -5.5330441262327135 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, thread bead technique) -> thread bead technique (2903ms) What is peyote? off-loom technique -5.53531027392305 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, off-loom technique) -> off-loom technique (2903ms) What is peyote? sacred plant -5.626487939959162 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, sacred plant) -> sacred plant (2903ms) What is peyote? controlled substance -5.633406554893984 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, controlled substance) -> controlled substance (2903ms) What is peyote? psychoactive plant -5.6395590779924305 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, psychoactive plant) -> psychoactive plant (3108ms) What is peyote? illegal drug -5.6439015975436035 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, illegal drug) -> illegal drug (3108ms) What is peyote? psychotropic drug -5.660099528384556 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, psychotropic drug) -> psychotropic drug (3108ms) What is peyote? basic technique -5.666683563027491 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, basic technique) -> basic technique (3108ms) What is peyote? common drug -5.7011864441038185 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, common drug) -> common drug (3108ms) What is peyote? psychedelic drug -5.716296592274157 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, psychedelic drug) -> psychedelic drug (3108ms) What is peyote? Ritualistic drugs -5.717956950018242 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, Ritualistic drugs) -> Ritualistic drugs (3120ms) What is peyote? soft drug -5.719253954455338 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, soft drug) -> soft drug (3120ms) What is peyote? American plant -5.748261542711811 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, American plant) -> American plant (3120ms) What is peyote? hallucinatory drug -5.759987754927845 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, hallucinatory drug) -> hallucinatory drug (3120ms) What is peyote? spiritual plant -5.759987754927845 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, spiritual plant) -> spiritual plant (3120ms) What is peyote? hallucinogenic substance -5.761918910950308 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, hallucinogenic substance) -> hallucinogenic substance (3120ms) What is peyote? psychoactive drug -5.81709478189495 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, psychoactive drug) -> psychoactive drug (3135ms) What is peyote? powerful psychedelic -5.827021403922757 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, powerful psychedelic) -> powerful psychedelic (3136ms) What is peyote? shamanistic plant -5.827021403922757 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, shamanistic plant) -> shamanistic plant (3135ms) What is peyote? hardcore hallucinogen -5.827021403922757 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, hardcore hallucinogen) -> hardcore hallucinogen (3135ms) What is peyote? entheogenic drug -5.833876014466707 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, entheogenic drug) -> entheogenic drug (3135ms) What is peyote? basic stitch -5.834010189858153 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, basic stitch) -> basic stitch (3135ms) What is peyote? othe drug -5.871915359357899 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, othe drug) -> othe drug (3148ms) What is peyote? shamanic herb -5.871915359357899 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, shamanic herb) -> shamanic herb (3148ms) What is peyote? unpretentious plant -5.871915359357899 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, unpretentious plant) -> unpretentious plant (3148ms) What is peyote? useda hallucinogen -5.871915359357899 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, useda hallucinogen) -> useda hallucinogen (3162ms) What is peyote? scared substance -5.871915359357899 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, scared substance) -> scared substance (3148ms) What is peyote? organic hallucinogen -5.871915359357899 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, organic hallucinogen) -> organic hallucinogen (3162ms) What is peyote? political drug -5.871915359357899 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, political drug) -> political drug (3162ms) What is peyote? narcotic plant -5.871915359357899 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, narcotic plant) -> narcotic plant (3148ms) What is peyote? safe drug -5.874801511101367 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, safe drug) -> safe drug (3162ms) What is peyote? drug substance -5.874961852864893 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, drug substance) -> drug substance (3162ms) What is peyote? powerful drug -5.882197274867399 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, powerful drug) -> powerful drug (3162ms) What is peyote? divination technique -5.886097312038388 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, divination technique) -> divination technique (3175ms) What is peyote? healing herb -5.888117166098144 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, healing herb) -> healing herb (3175ms) What is peyote? natural substance -5.8908698464828975 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, natural substance) -> natural substance (3175ms) What is peyote? recreational drug -5.890897357315875 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, recreational drug) -> recreational drug (3175ms) What is peyote? plant psychedelic -5.892479190376899 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, plant psychedelic) -> plant psychedelic (3175ms) What is peyote? protected plant -5.903365925022581 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, protected plant) -> protected plant (3186ms) What is peyote? stimulant drug -5.906917625652358 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, stimulant drug) -> stimulant drug (3185ms) What is peyote? versatile stitch -5.93173741501419 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, versatile stitch) -> versatile stitch (3186ms) What is peyote? plant and substance -6.265202480846407 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, plant and substance) -> plant and substance (3186ms) What is peyote? American Indian stitch -6.371368113827071 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, American Indian stitch) -> American Indian stitch (3185ms) What is peyote? hallucinogen -7.4483058378733356 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, hallucinogen) -> hallucinogen (3185ms) What is peyote? drug -7.778307832991054 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, drug) -> drug (3200ms) What is peyote? narcotic -7.907687486031319 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, narcotic) -> narcotic (3200ms) What is peyote? psychedelic -7.940883404856131 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, psychedelic) -> psychedelic (3200ms) What is peyote? stitch -7.96812988754332 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, stitch) -> stitch (3200ms) What is peyote? style -7.998198145964087 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, style) -> style (3200ms) What is peyote? classic -8.086011953954603 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, classic) -> classic (3200ms) What is peyote? stitches -8.094097044874134 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, stitches) -> stitches (3218ms) What is peyote? drugs -8.105064421989594 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, drugs) -> drugs (3218ms) What is peyote? intoxicant -8.106949439261008 What is peyote? -> $x: (peyote, instance of, $x) -> (peyote, Instance Of, intoxicant) -> intoxicant (3218ms) What is peyote? challenge -8.12892988267928 What is peyote? -> $x: (peyote, instance of, $x) -> (Peyote, Instance Of, challenge) -> challenge (3218ms) What is peyote? El Peyote Asesino -11.730977946938447 What is peyote? -> what [ be peyote ] ? -> what be know be peyote ? -> $x: ($x, be know be, peyote) -> $x: ($x, know, peyote) -> (El Peyote Asesino, Also known as, "Peyote Asesino"@es) -> El Peyote Asesino (4322ms) What is peyote? Don Peyote & Marcell Cellier -11.730977946938447 What is peyote? -> what [ be peyote ] ? -> what be know be peyote ? -> $x: ($x, be know be, peyote) -> $x: ($x, know, peyote) -> (Don Peyote & Marcell Cellier, Also known as, Peyote & Marcell Cellier, Don) -> Don Peyote & Marcell Cellier (4322ms) What is peyote? Ione Skye -11.730977946938447 What is peyote? -> what [ be peyote ] ? -> what be know be peyote ? -> $x: ($x, be know be, peyote) -> $x: ($x, know, peyote) -> (Ione Skye, Also known as, Peyote) -> Ione Skye (4322ms) What is peyote? The Peyote Cowboys -11.7747575894047 What is peyote? -> what [ be peyote ] ? -> what be know be peyote ? -> $x: ($x, be know be, peyote) -> $x: ($x, know, peyote) -> (The Peyote Cowboys, Also known as, Peyote Cowboys, The) -> The Peyote Cowboys (4322ms) What is peyote? root-plowing -11.854828935254545 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, are, root-plowing) -> root-plowing (5742ms) What is peyote? native Americans -12.093743078388679 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is considered sacred by, native Americans) -> native Americans (5742ms) What is peyote? Harvard Medical School -12.103383146807491 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Harvard Medical School, is an expert on, peyote) -> Harvard Medical School (5742ms) What is peyote? veterinarian-husband -12.144018002534157 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (veterinarian-husband, is poisoned with, peyote) -> veterinarian-husband (5742ms) What is peyote? exact what -12.16894681612815 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, is to, exact what) -> exact what (5742ms) What is peyote? Bolo cord -12.17314737194995 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Bolo cord, is white intertwined nylon with, peyote) -> Bolo cord (5742ms) What is peyote? Canadian law -12.195063900601838 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, is legal under, Canadian law) -> Canadian law (5742ms) What is peyote? European-Americans -12.199014317891407 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, was condemned by, European-Americans) -> European-Americans (5742ms) What is peyote? Don Peyote -12.25669848688737 What is peyote? -> what [ be peyote ] ? -> what be know be peyote ? -> $x: ($x, be know be, peyote) -> $x: ($x, know, peyote) -> (Don Peyote, Also known as, Peyote, Don) -> Don Peyote (4322ms) What is peyote? Los Peyotes -12.25669848688737 What is peyote? -> what [ be peyote ] ? -> what be know be peyote ? -> $x: ($x, be know be, peyote) -> $x: ($x, know, peyote) -> (Los Peyotes, Also known as, Peyotes, Los) -> Los Peyotes (4444ms) What is peyote? American Indians -12.313651939837705 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (American Indians, are allowed to use, peyote) -> American Indians (5759ms) What is peyote? widespread use -12.326765096506602 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, was in, widespread use) -> widespread use (5760ms) What is peyote? Native Americans -12.362942542004056 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Native Americans, have been allowed to consume, peyote) -> Native Americans (5760ms) What is peyote? the Native American Church -12.501851115032087 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (the Native American Church, is allowed to use, Peyote) -> the Native American Church (5760ms) What is peyote? Peyote And Mescaline -12.609959242703859 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (Peyote And Mescaline, Editions, Peyote And Mescaline (Drugs: the Straight Facts)) -> Peyote And Mescaline (7387ms) What is peyote? Peyote Stitch Primer -12.650820242339028 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (Peyote Stitch Primer, Editions, Peyote Stitch Primer) -> Peyote Stitch Primer (7412ms) What is peyote? Chelsea House Publications -12.650820242339028 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (Chelsea House Publications, Book editions published, Peyote And Mescaline (Drugs: the Straight Facts)) -> Chelsea House Publications (7387ms) What is peyote? Cornell University Press -12.650820242339028 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (Cornell University Press, Book editions published, Peyote Hunt: The Sacred Journey of the Huichol Indians (Symbol, Myth & Ritual)) -> Cornell University Press (7387ms) What is peyote? Syracuse University Press -12.650820242339028 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (Syracuse University Press, Book editions published, Pipe, Bible, and peyote among the Oglala Lakota: a study in religious identity) -> Syracuse University Press (7387ms) What is peyote? a crime -12.665474131811223 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, was, a crime) -> a crime (5760ms) What is peyote? a guardian -12.669338561081355 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, is, a guardian) -> a guardian (5760ms) What is peyote? a quill -12.695338490207483 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (a quill, is, peyote stitch) -> a quill (5760ms) What is peyote? an outward physical act distinguishable -12.724052658971774 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, is, an outward physical act distinguishable) -> an outward physical act distinguishable (5778ms) What is peyote? an entheogen containing mescaline -12.740367149612565 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is, an entheogen containing mescaline) -> an entheogen containing mescaline (5778ms) What is peyote? an alkaloid called mescaline -12.74773320979925 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, is, an alkaloid called mescaline) -> an alkaloid called mescaline (5778ms) What is peyote? Stella -12.752400890725646 What is peyote? -> what [ be peyote ] ? -> what be know be peyote ? -> $x: ($x, be know be, peyote) -> (Stella, is known for, her free form flat peyote cuffs) -> Stella (3472ms) What is peyote? a type -12.764366573681452 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, occurs is, a type) -> a type (5778ms) What is peyote? a plant -12.765780711783217 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is, a plant) -> a plant (5778ms) What is peyote? a cactus -12.794441816468082 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is, a cactus) -> a cactus (5778ms) What is peyote? Warner Books -12.798211705308747 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (Warner Books, Book editions published, In the magic land of Peyote) -> Warner Books (7481ms) What is peyote? Peyote Religion -12.798211705308747 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (Peyote Religion, Editions, Peyote religion : a history) -> Peyote Religion (7481ms) What is peyote? Schocken Books -12.798211705308747 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (Schocken Books, Book editions published, The peyote cult) -> Schocken Books (7412ms) What is peyote? Archon Books -12.798211705308747 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (Archon Books, Book editions published, The peyote cult) -> Archon Books (7480ms) What is peyote? Ronin Publishing -12.798211705308747 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (Ronin Publishing, Book editions published, Peyote and Other Psychoactive Cacti) -> Ronin Publishing (7481ms) What is peyote? Atlantic Books -12.798211705308747 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (Atlantic Books, Book editions published, Sculptural Peyote Projects Primer (Beady-Eyed Women's Guides to Exquisite Beadwork)) -> Atlantic Books (7412ms) What is peyote? Grabhorn Press -12.798211705308747 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (Grabhorn Press, Book editions published, The messenger bird. [From statements on peyote and from a painting by Monroe Tsa To Ke) -> Grabhorn Press (7412ms) What is peyote? William -12.813880635101906 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (William, is on, peyote) -> William (5778ms) What is peyote? Chris Prussing -12.823815206632275 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Chris Prussing, was inspired to try, peyote) -> Chris Prussing (5839ms) What is peyote? a very powerful sacrament -12.825542614439353 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, is, a very powerful sacrament) -> a very powerful sacrament (5839ms) What is peyote? Distinct Judge McConnell -12.844459790527194 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is, Distinct Judge McConnell) -> Distinct Judge McConnell (5839ms) What is peyote? Psychedelic kinds -12.863959703925739 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Psychedelic kinds, are, Peyote) -> Psychedelic kinds (5839ms) What is peyote? a hallucinogen -12.875421248481157 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is, a hallucinogen) -> a hallucinogen (5839ms) What is peyote? University of Arizona Press -12.882487517056285 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (University of Arizona Press, Book editions published, Peyote, the divine cactus) -> University of Arizona Press (8054ms) What is peyote? Half moon way -12.882487517056285 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (Half moon way, Editions, Half moon way : the peyote ritual of Chief White Bear) -> Half moon way (8187ms) What is peyote? The Peyote cult -12.882487517056285 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition of, $x) -> (The Peyote cult: ritual equipment, Edition Of, The Peyote cult) -> The Peyote cult (8270ms) What is peyote? Sculptural Peyote Projects Primer (Beady-Eyed Women's Guides to Exquisite Beadwork) -12.882487517056285 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition of, peyote) -> (Sculptural Peyote Projects Primer (Beady-Eyed Women's Guides to Exquisite Beadwork), Edition Of, Sculptural Peyote Projects Primer) -> Sculptural Peyote Projects Primer (Beady-Eyed Women's Guides to Exquisite Beadwork) (8270ms) What is peyote? Rock Crystals & Peyote Dreams: Explorations in the Huichol Universe -12.882487517056285 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition, $x) -> (Rock Crystals & Peyote Dreams, Editions, Rock Crystals & Peyote Dreams: Explorations in the Huichol Universe) -> Rock Crystals & Peyote Dreams: Explorations in the Huichol Universe (8326ms) What is peyote? Peyote and Other Psychoactive Cacti -12.882487517056285 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition, $x) -> (Peyote and Other Psychoactive Cacti, Edition Of, Peyote and Other Psychoactive Cacti) -> Peyote and Other Psychoactive Cacti (8121ms) What is peyote? University of Tennessee Press -12.882487517056285 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (University of Tennessee Press, Book editions published, Pipe, Bible, and peyote among the Oglala Lakota: a study in religious identity) -> University of Tennessee Press (8121ms) What is peyote? Sculptural Peyote Projects Primer -12.882487517056285 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition of, $x) -> (Sculptural Peyote Projects Primer (Beady-Eyed Women's Guides to Exquisite Beadwork), Edition Of, Sculptural Peyote Projects Primer) -> Sculptural Peyote Projects Primer (8121ms) What is peyote? The Secret of the Cicadas' Song -12.882487517056285 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition of, $x) -> (The Secret of the Cicadas' Song: A Peyote Trip in Prose and Poetry, Edition Of, The Secret of the Cicadas' Song) -> The Secret of the Cicadas' Song (8358ms) What is peyote? Rock Crystals & Peyote Dreams -12.882487517056285 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition of, $x) -> (Rock Crystals & Peyote Dreams: Explorations in the Huichol Universe, Edition Of, Rock Crystals & Peyote Dreams) -> Rock Crystals & Peyote Dreams (8187ms) What is peyote? Peyote: The Divine Cactus -12.882487517056285 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition, $x) -> (Peyote, Editions, Peyote: The Divine Cactus) -> Peyote: The Divine Cactus (8326ms) What is peyote? Peyote: the divine cactus -12.882487517056285 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition, $x) -> (Peyote, Editions, Peyote: the divine cactus) -> Peyote: the divine cactus (8270ms) What is peyote? Peyote - A Medical Dictionary, Bibliography, and Annotated Research Guide to Internet References -12.882487517056285 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition of, $x) -> (Peyote - A Medical Dictionary, Bibliography, and Annotated Research Guide to Internet References, Edition Of, Peyote - A Medical Dictionary, Bibliography, and Annotated Research Guide to Internet References) -> Peyote - A Medical Dictionary, Bibliography, and Annotated Research Guide to Internet References (8326ms) What is peyote? Contemporary Beadwork I -12.882487517056285 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition, $x) -> (Contemporary Beadwork I: Counted and Charted Patterns for Flat Peyote Stitch, Edition Of, Contemporary Beadwork I) -> Contemporary Beadwork I (8187ms) What is peyote? In the magic land of Peyote -12.882487517056285 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition, $x) -> (In the magic land of Peyote, Edition Of, In the magic land of Peyote) -> In the magic land of Peyote (8188ms) What is peyote? Farrar, Straus and Giroux -12.882487517056285 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (Farrar, Straus and Giroux, Book editions published, The peyote dance) -> Farrar, Straus and Giroux (7953ms) What is peyote? Peyote And Mescaline (Drugs: the Straight Facts) -12.882487517056285 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition, $x) -> (Peyote And Mescaline, Editions, Peyote And Mescaline (Drugs: the Straight Facts)) -> Peyote And Mescaline (Drugs: the Straight Facts) (8326ms) What is peyote? Peyote & Mescaline -12.882487517056285 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition of, $x) -> (Peyote & Mescaline, Edition Of, Peyote & Mescaline) -> Peyote & Mescaline (8270ms) What is peyote? Pipe, Bible, and peyote among the Oglala Lakota -12.882487517056285 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (Pipe, Bible, and peyote among the Oglala Lakota, Editions, Pipe, Bible, and peyote among the Oglala Lakota: a study in religious identity) -> Pipe, Bible, and peyote among the Oglala Lakota (7851ms) What is peyote? Pipe, Bible, and peyote among the Oglala Lakota: a study in religious identity -12.882487517056285 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (Pipe, Bible, and peyote among the Oglala Lakota: a study in religious identity, Edition Of, Pipe, Bible, and peyote among the Oglala Lakota) -> Pipe, Bible, and peyote among the Oglala Lakota: a study in religious identity (8326ms) What is peyote? University of Oklahoma Press -12.882487517056285 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (University of Oklahoma Press, Book editions published, Peyote Religion: A History (Civilization of the American Indian Series)) -> University of Oklahoma Press (7953ms) What is peyote? Peyote Religion: A History (Civilization of the American Indian Series) -12.882487517056285 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition, $x) -> (Peyote Religion, Editions, Peyote Religion: A History (Civilization of the American Indian Series)) -> Peyote Religion: A History (Civilization of the American Indian Series) (7822ms) What is peyote? Peyote religion : a history -12.882487517056285 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition of, peyote) -> (Peyote religion : a history, Edition Of, Peyote Religion) -> Peyote religion : a history (8326ms) What is peyote? The Peyote cult: ritual equipment -12.882487517056285 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (The Peyote cult: ritual equipment, Edition Of, The Peyote cult) -> The Peyote cult: ritual equipment (8086ms) What is peyote? Peyote and magic mushrooms -12.882487517056285 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition, $x) -> (Peyote and magic mushrooms, Edition Of, Peyote and magic mushrooms) -> Peyote and magic mushrooms (8270ms) What is peyote? Peyote, the divine cactus -12.882487517056285 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition, $x) -> (Peyote, the divine cactus, Edition Of, Peyote, the divine cactus) -> Peyote, the divine cactus (8188ms) What is peyote? Peyote Hunt: The Sacred Journey of the Huichol Indians (Symbol, Myth & Ritual) -12.882487517056285 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition, $x) -> (Peyote Hunt, Editions, Peyote Hunt: The Sacred Journey of the Huichol Indians (Symbol, Myth & Ritual)) -> Peyote Hunt: The Sacred Journey of the Huichol Indians (Symbol, Myth & Ritual) (8270ms) What is peyote? Festival day -12.90747467322416 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Festival day, were, Peyote Patty) -> Festival day (5839ms) What is peyote? loom bead weaving -12.924293966785669 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (loom bead weaving, is, Peyote Stitch) -> loom bead weaving (5839ms) What is peyote? Mescaline -12.955717054922264 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Mescaline, can be extracted from, peyote) -> Mescaline (5839ms) What is peyote? Dr. Hoffman -12.959275157022741 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Dr. Hoffman, was doing a lot of, peyote) -> Dr. Hoffman (6399ms) What is peyote? a small , spineless cactus -12.97621079064938 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is, a small , spineless cactus) -> a small , spineless cactus (6399ms) What is peyote? sure i -12.979742049070705 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (sure i, was on, peyote) -> sure i (6399ms) What is peyote? a spirit -12.980645984316112 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is considered to be, a spirit) -> a spirit (6399ms) What is peyote? medicine men -12.988699290028958 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (Peyote, has been used by, medicine men) -> medicine men (6399ms) What is peyote? a jet engine -12.990003393135114 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, is like, a jet engine) -> a jet engine (6399ms) What is peyote? C13 -12.993470629777969 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (C13, was tripping on, peyote) -> C13 (6399ms) What is peyote? an entheogen -13.002460293621073 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is used as, an entheogen) -> an entheogen (8358ms) What is peyote? Citrus candies -13.020795338539086 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Citrus candies, are loaded with, peyote) -> Citrus candies (8358ms) What is peyote? modern american culture -13.023642123156142 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, was brought to, modern american culture) -> modern american culture (8358ms) What is peyote? particularly their religion -13.029831533368409 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (particularly their religion, was centered around, Peyote) -> particularly their religion (8358ms) What is peyote? Design -13.030906532229999 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Design, is stitched using, circular peyote) -> Design (8358ms) What is peyote? pan-Indianism -13.034531254805472 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, was thus a step toward, pan-Indianism) -> pan-Indianism (8358ms) What is peyote? a small gray-green desert cactus -13.059163626575561 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is, a small gray-green desert cactus) -> a small gray-green desert cactus (8358ms) What is peyote? One such example -13.060416754043198 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (One such example, would be the legal use of, peyote) -> One such example (8386ms) What is peyote? Ligusticum porteri -13.072855252268992 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Ligusticum porteri, is called, Peyote) -> Ligusticum porteri (8386ms) What is peyote? Christ -13.080486171246202 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Christ, is the Goddess of, peyote) -> Christ (8385ms) What is peyote? Peyote paraphernalia -13.085698024170476 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition of, $x) -> (Peyote paraphernalia, Edition Of, Peyote paraphernalia) -> Peyote paraphernalia (8415ms) What is peyote? Peyote music -13.085698024170476 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition of, $x) -> (Peyote music, Edition Of, Peyote music) -> Peyote music (8415ms) What is peyote? Students -13.115779811708 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Students, must be proficient in, Peyote stitch) -> Students (8445ms) What is peyote? a god-powerful medicine -13.124654859040556 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, was believed to be, a god-powerful medicine) -> a god-powerful medicine (8445ms) What is peyote? 2n = 22 -13.125608341807798 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, is, 2n = 22) -> 2n = 22 (8445ms) What is peyote? dream-like -13.125685173239415 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (Peyote, have been described as very, dream-like) -> dream-like (8445ms) What is peyote? a sacrament -13.146865466740898 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is conceived of as, a sacrament) -> a sacrament (8445ms) What is peyote? added height and delight -13.162576096262447 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, was consumed for, added height and delight) -> added height and delight (8445ms) What is peyote? an introspective experience -13.166989556322859 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is, an introspective experience) -> an introspective experience (8445ms) What is peyote? great importance -13.169766538660152 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (great importance, is still employed, ....? Peyote) -> great importance (8471ms) What is peyote? Prem Das -13.185709329028683 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Prem Das, had been an avid student of, peyote) -> Prem Das (8471ms) What is peyote? a plant sacrament -13.203110819168604 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is, a plant sacrament) -> a plant sacrament (8471ms) What is peyote? a great Rock / Kosmische / Psychedelic band -13.20958267807206 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, are, a great Rock / Kosmische / Psychedelic band) -> a great Rock / Kosmische / Psychedelic band (8471ms) What is peyote? a small cactus -13.21614587784587 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is, a small cactus) -> a small cactus (8471ms) What is peyote? a flowering plant -13.234998709931139 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is, a flowering plant) -> a flowering plant (8471ms) What is peyote? peyote cult -13.239656433510135 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: (peyote, edition, $x) -> (The Peyote cult, Edition Of, peyote cult) -> peyote cult (8499ms) What is peyote? Schedule -13.266251706748344 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is, Schedule) -> Schedule (8526ms) What is peyote? a classic stitch -13.316288154173224 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is, a classic stitch) -> a classic stitch (8526ms) What is peyote? a holy medicine -13.31914827066082 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is considered, a holy medicine) -> a holy medicine (8526ms) What is peyote? a dangerous hallucinogen -13.33049986282491 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, is, a dangerous hallucinogen) -> a dangerous hallucinogen (8526ms) What is peyote? religious ceremonies -13.34691717996326 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, was used in, religious ceremonies) -> religious ceremonies (8526ms) What is peyote? Sanapia -13.353912483581777 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, was, Sanapia) -> Sanapia (8526ms) What is peyote? a different genus -13.369875158914315 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, clearly is, a different genus) -> a different genus (8526ms) What is peyote? a controversial plant -13.375237141430183 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, has been, a controversial plant) -> a controversial plant (8526ms) What is peyote? a controlled substance -13.387972769430611 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, is, a controlled substance) -> a controlled substance (10702ms) What is peyote? Delica beads -13.410061071283968 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Delica beads, are used widely for, peyote stitch) -> Delica beads (10702ms) What is peyote? a healing herb -13.411453866680986 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is, a healing herb) -> a healing herb (10702ms) What is peyote? capsicum peppers -13.435810818693477 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is quite visually distinct from, capsicum peppers) -> capsicum peppers (10702ms) What is peyote? a different drug -13.446329809735115 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is, a different drug) -> a different drug (10702ms) What is peyote? Sunday -13.469278792432196 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is being released on, Sunday) -> Sunday (10702ms) What is peyote? Parker -13.531338353958532 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Parker, was given, peyote) -> Parker (10702ms) What is peyote? Peyote -13.574205868023085 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (Peyote, Edition Of, Peyote) -> Peyote (10964ms) What is peyote? Indians -13.59001859270041 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Indians, should be permitted to use, Peyote) -> Indians (10964ms) What is peyote? a Schedule 1 narcotic -13.590566055534957 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, is listed as, a Schedule 1 narcotic) -> a Schedule 1 narcotic (12533ms) What is peyote? Examples -13.621526526320872 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Examples, are, Basic Peyote) -> Examples (12533ms) What is peyote? Prerequisite -13.629554061307383 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Prerequisite, Must be proficient with, peyote) -> Prerequisite (12533ms) What is peyote? The drug -13.634229258230686 What is peyote? -> what [ be peyote ] ? -> what be know be peyote ? -> $x: ($x, be know be, peyote) -> (The drug, is known locally as, Peyote) -> The drug (3473ms) What is peyote? Whalen -13.638745081578572 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Whalen, was experimenting with, peyote) -> Whalen (12533ms) What is peyote? Feather Fan -13.658171173805115 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Feather Fan, Instance Of, chief symbol of the peyote religion) -> Feather Fan (12533ms) What is peyote? indigenous peoples -13.659805194045731 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (peyote, has been used by, indigenous peoples) -> indigenous peoples (12533ms) What is peyote? LSD. -13.66013571455343 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (peyote, has an effect comparable to, LSD.) -> LSD. (12533ms) What is peyote? the Toilet Bowl -13.685703394772643 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, go, $x) -> (Peyote Manning, is going to is, the Toilet Bowl) -> the Toilet Bowl (12560ms) What is peyote? Castaneda -13.707855453257874 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Castaneda, was specifically interested in, peyote) -> Castaneda (12560ms) What is peyote? Peyotists -13.751499128527135 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (Peyotists, are endearingly called, " Peyote boys) -> Peyotists (12560ms) What is peyote? Peyote Hunt -13.81171042840251 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (Peyote Hunt, Editions, Peyote Hunt: The Sacred Journey of the Huichol Indians (Symbol, Myth & Ritual)) -> Peyote Hunt (12560ms) What is peyote? Nevada -13.822263697811913 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (Peyote, may have been important in, Nevada) -> Nevada (12587ms) What is peyote? the Chichimeca and Toltec -13.82784348280347 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, was known to, the Chichimeca and Toltec) -> the Chichimeca and Toltec (12587ms) What is peyote? anyplace ? slurs -13.82807459600184 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, go, $x) -> (a Peyote song, is liable to go, anyplace ? slurs) -> anyplace ? slurs (12587ms) What is peyote? long as inhabitants -13.835232098888794 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (Peyote Peyote, has been around as, long as inhabitants) -> long as inhabitants (12587ms) What is peyote? Rose Boutonniere -13.855564217164373 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Rose Boutonniere, Instance Of, 3-dimensional circular peyote amulet bag) -> Rose Boutonniere (12587ms) What is peyote? beaded bag -13.864202155799337 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (beaded bag, Instance Of, peyote stitch project) -> beaded bag (12587ms) What is peyote? amulet bag -13.864202155799337 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (amulet bag, Instance Of, peyote stitch project) -> amulet bag (12587ms) What is peyote? a sacrament of the Native American Church -13.866305769146717 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is, a sacrament of the Native American Church) -> a sacrament of the Native American Church (12587ms) What is peyote? a lifeline -13.877222701888188 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (The peyote religion, has been, a lifeline) -> a lifeline (12697ms) What is peyote? 1518.133 -13.900438350692282 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, run, $x) -> (Peyote Radio Theatre, Running Time, 1518.133) -> 1518.133 (12697ms) What is peyote? 2630.267 -13.900438350692282 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, run, $x) -> (Peyote, Running Time, 2630.267) -> 2630.267 (12697ms) What is peyote? a treatment -13.915779996544424 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (Healing Alcoholism Peyote, has been used as, a treatment) -> a treatment (12697ms) What is peyote? the 1870 -13.933522910124266 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (the 1870, have been relying on, peyote) -> the 1870 (12697ms) What is peyote? a source -13.93652854942334 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (Peyote, has been used as, a source) -> a source (12697ms) What is peyote? a rather peculiar man -13.943034213103033 What is peyote? -> what [ be peyote ] ? -> what be know be peyote ? -> $x: ($x, be know be, peyote) -> $x: ($x, know, peyote) -> (a rather peculiar man, knew a great deal about, peyote) -> a rather peculiar man (4444ms) What is peyote? Marcellus Bearheart Williams -13.951514600236244 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Marcellus Bearheart Williams, Instance Of, respected elder shaman and Road Chief of the Peyote Lodge) -> Marcellus Bearheart Williams (12789ms) What is peyote? least five different genera -13.986738216278336 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (peyote, had been included in at, least five different genera) -> least five different genera (12789ms) What is peyote? Marquee Bracelet -14.013239739214514 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Marquee Bracelet, Instance Of, elegant, flat peyote bracelet using Delica and 15/0 bead) -> Marquee Bracelet (12789ms) What is peyote? Easter Egg earrings -14.022244521537427 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be in, peyote) -> (Easter Egg earrings, are weaved in, flat vertical peyote) -> Easter Egg earrings (12789ms) What is peyote? Gerald Wayne Primeaux, Sr. -14.047403963852425 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Gerald Wayne Primeaux, Sr., Instance Of, generation member of the respected Primeaux family of Peyote singer and songmakers) -> Gerald Wayne Primeaux, Sr. (12789ms) What is peyote? Peyote Cultivation -14.054012107770822 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Peyote Cultivation, Instance Of, essential and inseparable part of responsible peyote worship) -> Peyote Cultivation (12789ms) What is peyote? 9780806122144 -14.06052472975238 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780806122144, Book Editions, The Peyote cult) -> 9780806122144 (12995ms) What is peyote? 9780816506804 -14.06052472975238 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780816506804, Book Editions, Peyote, the divine cactus) -> 9780816506804 (12995ms) What is peyote? 9780208014566 -14.06052472975238 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780208014566, Book Editions, The peyote cult) -> 9780208014566 (12789ms) What is peyote? 9780446893060 -14.06052472975238 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780446893060, Book Editions, In the magic land of Peyote) -> 9780446893060 (12845ms) What is peyote? 9780801491375 -14.06052472975238 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780801491375, Book Editions, Peyote Hunt: The Sacred Journey of the Huichol Indians (Symbol, Myth & Ritual)) -> 9780801491375 (12817ms) What is peyote? 9780805204933 -14.06052472975238 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780805204933, Book Editions, The peyote cult) -> 9780805204933 (12817ms) What is peyote? 9780964607705 -14.06052472975238 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780964607705, Book Editions, Contemporary Beadwork I: Counted and Charted Patterns for Flat Peyote Stitch) -> 9780964607705 (12995ms) What is peyote? 9780874808698 -14.06052472975238 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780874808698, Book Editions, Rock Crystals & Peyote Dreams: Explorations in the Huichol Universe) -> 9780874808698 (12845ms) What is peyote? 9780451620347 -14.06052472975238 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780451620347, Book Editions, Peyote) -> 9780451620347 (12789ms) What is peyote? 9780965584210 -14.06052472975238 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780965584210, Book Editions, The Secret of the Cicadas' Song: A Peyote Trip in Prose and Poetry) -> 9780965584210 (12995ms) What is peyote? 9780816516544 -14.06052472975238 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780816516544, Book Editions, Peyote: The Divine Cactus) -> 9780816516544 (13022ms) What is peyote? 9781889789019 -14.06052472975238 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9781889789019, Book Editions, Peyote Stitch Primer) -> 9781889789019 (12817ms) What is peyote? 9789122017127 -14.06052472975238 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9789122017127, Book Editions, The attraction of peyote: an inquiry into the basic conditions of the diffusion of the peyote religion in North America) -> 9789122017127 (12845ms) What is peyote? 9780914171959 -14.06052472975238 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780914171959, Book Editions, Peyote and Other Psychoactive Cacti) -> 9780914171959 (12817ms) What is peyote? 9780791085455 -14.06052472975238 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780791085455, Book Editions, Peyote And Mescaline (Drugs: the Straight Facts)) -> 9780791085455 (12845ms) What is peyote? 9780816506132 -14.06052472975238 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780816506132, Book Editions, Peyote, the divine cactus) -> 9780816506132 (12845ms) What is peyote? 9789122004523 -14.06052472975238 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9789122004523, Book Editions, Pipe, Bible, and peyote among the Oglala Lakota: a study in religious identity) -> 9789122004523 (13022ms) What is peyote? 9780892302109 -14.06052472975238 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780892302109, Book Editions, Peyote & Mescaline) -> 9780892302109 (12817ms) What is peyote? 9780806120683 -14.06052472975238 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780806120683, Book Editions, Peyote religion : a history) -> 9780806120683 (12845ms) What is peyote? 9780374230906 -14.06052472975238 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780374230906, Book Editions, The peyote dance) -> 9780374230906 (12818ms) What is peyote? 9781889789057 -14.06052472975238 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9781889789057, Book Editions, Sculptural Peyote Projects Primer (Beady-Eyed Women's Guides to Exquisite Beadwork)) -> 9781889789057 (12818ms) What is peyote? 9780870496233 -14.06052472975238 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780870496233, Book Editions, Pipe, Bible, and peyote among the Oglala Lakota: a study in religious identity) -> 9780870496233 (12817ms) What is peyote? 9780597835735 -14.06052472975238 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780597835735, Book Editions, Peyote - A Medical Dictionary, Bibliography, and Annotated Research Guide to Internet References) -> 9780597835735 (12995ms) What is peyote? 9780823917006 -14.06052472975238 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780823917006, Book Editions, Peyote and magic mushrooms) -> 9780823917006 (12995ms) What is peyote? 9780806124575 -14.06052472975238 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780806124575, Book Editions, Peyote Religion: A History (Civilization of the American Indian Series)) -> 9780806124575 (12845ms) What is peyote? 9780815605577 -14.06052472975238 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780815605577, Book Editions, Pipe, Bible, and peyote among the Oglala Lakota: a study in religious identity) -> 9780815605577 (12995ms) What is peyote? 9780816516537 -14.06052472975238 What is peyote? -> what be [ peyote ] ? -> what be the expansion of peyote ? -> $x: (peyote, expansion, $x) -> $x: ($x, edition, peyote) -> (9780816516537, Book Editions, Peyote: The Divine Cactus) -> 9780816516537 (12995ms) What is peyote? Lone Tree -14.071254270523447 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Lone Tree, Instance Of, member of the Peyote Church) -> Lone Tree (13022ms) What is peyote? P. aselliformis -14.093393964083216 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (P. aselliformis, Instance Of, well known medicinal peyote) -> P. aselliformis (13022ms) What is peyote? ancient cultural significance -14.09840014478629 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (peyote, has, ancient cultural significance) -> ancient cultural significance (13022ms) What is peyote? Tooty Frooty -14.098906063205964 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Tooty Frooty, Instance Of, long, skinny peyote tube) -> Tooty Frooty (13022ms) What is peyote? Kimberly House -14.098906063205964 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Kimberly House, Instance Of, open pavilion and adjoining peyote) -> Kimberly House (13077ms) What is peyote? Danny Trejo -14.098906063205964 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Danny Trejo, Instance Of, peyote-eating desert guru) -> Danny Trejo (13022ms) What is peyote? Dutch Spiral -14.098906063205964 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Dutch Spiral, Instance Of, simple variation of tubular odd count peyote stitch) -> Dutch Spiral (13022ms) What is peyote? an outstanding job -14.135690021007902 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, do, $x) -> (Los Peyotes, truly do, an outstanding job) -> an outstanding job (13077ms) What is peyote? Gerald Primeaux, Sr. -14.138287919518358 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Gerald Primeaux, Sr., Instance Of, fifth generation member of the respected Primeaux family of Peyote singer and songmakers) -> Gerald Primeaux, Sr. (13077ms) What is peyote? Rev. Anne Zapf -14.138287919518358 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Rev. Anne Zapf, Instance Of, apostle and sacrament steward of the Peyote Way Church) -> Rev. Anne Zapf (13077ms) What is peyote? N-methylmescaline -14.138287919518358 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (N-methylmescaline, Instance Of, trace component of peyote) -> N-methylmescaline (13077ms) What is peyote? Tim's Grandfather -14.138287919518358 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Tim's Grandfather, Instance Of, peyote man) -> Tim's Grandfather (13077ms) What is peyote? The hills -14.171064638272295 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (The hills, are covered with, peyote) -> The hills (13159ms) What is peyote? large taproots and care -14.171942137773517 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (peyote plants, have pretty, large taproots and care) -> large taproots and care (13159ms) What is peyote? The strips -14.173503354701834 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (The strips, are, Peyote) -> The strips (13159ms) What is peyote? a narcotic -14.182366842215801 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, is, a narcotic) -> a narcotic (13159ms) What is peyote? stitch on the BRACELET -14.183181874953501 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (stitch on the BRACELET, Instance Of, PEYOTE STITCH) -> stitch on the BRACELET (13159ms) What is peyote? Bangle Bracelet or Necklace by Isabee Thiebaut Demski -14.183181874953501 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Bangle Bracelet or Necklace by Isabee Thiebaut Demski, Instance Of, peyote project) -> Bangle Bracelet or Necklace by Isabee Thiebaut Demski (13307ms) What is peyote? Santa Fe -14.183181874953501 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Santa Fe, Instance Of, peyote's natural growth area) -> Santa Fe (13159ms) What is peyote? Peyote Church of God -14.183181874953501 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Peyote Church of God, Instance Of, peyote church) -> Peyote Church of God (13307ms) What is peyote? Flat Peyote Banner Pin by Judi Wood -14.183181874953501 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Flat Peyote Banner Pin by Judi Wood, Instance Of, easy peyote project) -> Flat Peyote Banner Pin by Judi Wood (13307ms) What is peyote? Available now on e-Bay -14.183181874953501 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Available now on e-Bay, Instance Of, 4 color Peyote Rope Stitch Bolo Tie) -> Available now on e-Bay (13307ms) What is peyote? highlight of the book -14.183181874953501 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (highlight of the book, Instance Of, full-color photo gallery of peyote-stitched beadwork) -> highlight of the book (13307ms) What is peyote? Part II of Allen Ginsberg's Howl'' -14.183181874953501 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Part II of Allen Ginsberg's Howl'', Instance Of, peyote-induced hallucination of a hotel) -> Part II of Allen Ginsberg's Howl'' (13307ms) What is peyote? Seed Bead Strip Tease by Kathie Schroeder -14.183181874953501 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Seed Bead Strip Tease by Kathie Schroeder, Instance Of, sampler of peyote strip) -> Seed Bead Strip Tease by Kathie Schroeder (13307ms) What is peyote? S. disciformis -14.183181874953501 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (S. disciformis, Instance Of, well known peyote species) -> S. disciformis (13307ms) What is peyote? 500 B.C. -14.183559909540241 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (Peyote, have been found dating back to, 500 B.C.) -> 500 B.C. (13337ms) What is peyote? a take-no-prisoners -14.243295149487324 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (peyote rituals, has evolved into, a take-no-prisoners) -> a take-no-prisoners (13337ms) What is peyote? an Easter Egg -14.245508944100063 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be in, peyote) -> (an Easter Egg, is weaved in, flat vertical peyote) -> an Easter Egg (13337ms) What is peyote? the military -14.246035815583143 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (the military, were barred from using, peyote) -> the military (13337ms) What is peyote? use -14.293077255792596 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (Peyote, has a long history of, use) -> use (13337ms) What is peyote? Oregon law -14.307741371759313 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, was a crime under, Oregon law) -> Oregon law (13367ms) What is peyote? Beauty -14.30944690751491 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be in, peyote) -> (Beauty, is found in, the all-night peyote ceremonies) -> Beauty (13367ms) What is peyote? Bead Patterns Boutique -14.332361762869168 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be on, $x) -> (peyote cuffs, are all listed on, Bead Patterns Boutique) -> Bead Patterns Boutique (13367ms) What is peyote? the Mescalero Apache -14.34712004953051 What is peyote? -> what [ be peyote ] ? -> what be know be peyote ? -> $x: ($x, be know be, peyote) -> $x: ($x, know, peyote) -> (the Mescalero Apache, knew about, peyote and Christianity) -> the Mescalero Apache (4444ms) What is peyote? religious rights -14.36529176131174 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (Hairstyles and peyote, have been blessed as, religious rights) -> religious rights (13367ms) What is peyote? 10,000 years -14.367458065999863 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (Peyote, has been used for over, 10,000 years) -> 10,000 years (13367ms) What is peyote? The N-acetyl analogue -14.383443814549157 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be in, peyote) -> (The N-acetyl analogue, has been found in, the peyote plant) -> The N-acetyl analogue (13367ms) What is peyote? a ritual setting -14.384999003429439 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, do, $x) -> (peyote, is done in, a ritual setting) -> a ritual setting (13367ms) What is peyote? Dutch spiral -14.386392382067694 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Dutch spiral, Instance Of, peyote stitch variation) -> Dutch spiral (13367ms) What is peyote? a type of beading stitch -14.3918115904052 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, is, a type of beading stitch) -> a type of beading stitch (13398ms) What is peyote? hallucinogenic properties -14.396542003136567 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (peyote, also has, hallucinogenic properties) -> hallucinogenic properties (13398ms) What is peyote? the US and Canada -14.396653598654947 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (Peyote, has spread northward into, the US and Canada) -> the US and Canada (13398ms) What is peyote? a cross or rosette -14.423949104702956 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be on, $x) -> (the Peyote plant, is placed on, a cross or rosette) -> a cross or rosette (13398ms) What is peyote? The Cellini spiral -14.426859854355671 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (The Cellini spiral, is a modified version of, tubular peyote) -> The Cellini spiral (13398ms) What is peyote? mescaline -14.430461780576799 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (peyote, is, mescaline) -> mescaline (13398ms) What is peyote? a resounding success -14.44053955865289 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (Our peyote experiments, have been, a resounding success) -> a resounding success (13398ms) What is peyote? beneficial effects -14.441636089317738 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (peyote , cocaine & marijuana, can have, beneficial effects) -> beneficial effects (13398ms) What is peyote? Dis -14.446204738197672 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, instance of, peyote) -> (Dis, Instance Of, peyote song) -> Dis (13595ms) What is peyote? dreadlocks -14.464055886567813 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, be, peyote) -> (dreadlocks, are, peyote satiates) -> dreadlocks (13595ms) What is peyote? a teacher of the right path to walk -14.539893786415941 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is, a teacher of the right path to walk) -> a teacher of the right path to walk (13595ms) What is peyote? Native people -14.54592799747012 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (peyote, has increased somewhat among, Native people) -> Native people (13595ms) What is peyote? long roots -14.55222538054403 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (Peyote?s tale, has, long roots) -> long roots (13595ms) What is peyote? a long time -14.557169355221426 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, have, $x) -> (The peyote cactus, has been used for, a long time) -> a long time (13595ms) What is peyote? a sacrament for all the children of the Earth -14.557893306588756 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: (peyote, be, $x) -> (Peyote, is, a sacrament for all the children of the Earth) -> a sacrament for all the children of the Earth (13595ms) What is peyote? peyote-induced -14.562448538611408 What is peyote? -> what be [ peyote ] ? -> what be the mening of peyote ? -> $x: (peyote, mening, $x) -> $x: ($x, make of, peyote) -> (peyote-induced, only made the prospect of, peyote) -> peyote-induced (13595ms) What is peyote? cacti -17.5305696966461 What is peyote? -> what [ be peyote ] ? -> what be know be peyote ? -> $x: ($x, be know be, peyote) -> $x: ($x, know, peyote) -> (cacti, known as, peyote) -> cacti (4444ms) What is peyote? beaders -18.16395614638265 What is peyote? -> what [ be peyote ] ? -> what be know be peyote ? -> $x: ($x, be know be, peyote) -> $x: ($x, know, peyote) -> (beaders, knew, peyote stitch) -> beaders (4457ms) Where was the Andersonville Prison? Emigranten -2.1020298020173454 Where was the Andersonville Prison? -> $x: (the Andersonville Prison, was in, $x) -> (the dreaded Andersonville prison, was told in, Emigranten) -> Emigranten (1201ms) Where was the Andersonville Prison? operation -6.297804841599822 Where was the Andersonville Prison? -> $x: (the Andersonville Prison, was in, $x) -> $x: (andersonville prison, in, $x) -> (Andersonville Prison, was in, operation) -> operation (2133ms) Where was the Andersonville Prison? the National Cemetery -6.6962931040007945 Where was the Andersonville Prison? -> $x: (the Andersonville Prison, was in, $x) -> $x: (andersonville prison, in, $x) -> (Andersonville prison pen, lies buried in, the National Cemetery) -> the National Cemetery (2134ms) Where was the Andersonville Prison? Boston -9.951373094071212 Where was the Andersonville Prison? -> where be [ the andersonville prison ] ? -> what be the andersonville prison s location ? -> $x: (the andersonville prison, location, $x) -> $x: (the andersonville prison, place, $x) -> (The soldier's story of his captivity at Andersonville, Belle Isle, and other Rebel prisons, Place of publication, Boston) -> Boston (5543ms) Where was the Andersonville Prison? Cushman -10.108125827805473 Where was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, be, the andersonville prison) -> (Cushman, was sent to, the Andersonville Prison) -> Cushman (3427ms) Where was the Andersonville Prison? Georgia -10.403388629289317 Where was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, be, the andersonville prison) -> (Georgia, was also the site of, the infamous Andersonville Prison) -> Georgia (3427ms) Where was the Andersonville Prison? Knapp -10.44773276863618 Where was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, be, the andersonville prison) -> (Knapp, was also a prisoner at, the Andersonville prison camp) -> Knapp (3427ms) Where was the Andersonville Prison? war crimes -10.561376641201235 Where was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: (the andersonville prison, be, $x) -> (the Andersonville prison, was charged with, war crimes) -> war crimes (3427ms) Where was the Andersonville Prison? New York City -11.131767675084298 Where was the Andersonville Prison? -> where be [ the andersonville prison ] ? -> what be the andersonville prison s location ? -> $x: (the andersonville prison, location, $x) -> $x: (the andersonville prison, place, $x) -> (This was Andersonville: the true story of Andersonville Military Prison, Place of publication, New York City) -> New York City (5542ms) Where was the Andersonville Prison? Chauncey -11.74979558009105 Where was the Andersonville Prison? -> where be [ the andersonville prison ] ? -> what be the andersonville prison s location ? -> $x: (the andersonville prison, location, $x) -> $x: ($x, die, the andersonville prison) -> (Chauncey, died at, the Andersonville Prison) -> Chauncey (5445ms) Where was the Andersonville Prison? prisoner -12.139713558411234 Where was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, be, the andersonville prison) -> (prisoner, was imprisoned in, the infamous Andersonville Prison) -> prisoner (3427ms) Where was the Andersonville Prison? FOX -12.221092762887519 Where was the Andersonville Prison? -> where be [ the andersonville prison ] ? -> what be the andersonville prison s location ? -> $x: (the andersonville prison, location, $x) -> $x: ($x, die, the andersonville prison) -> (FOX, died in, the Andersonville prison) -> FOX (5444ms) Where was the Andersonville Prison? Earthworks -12.346420898696175 Where was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, get be, andersonville prison) -> $x: ($x, be, andersonville prison) -> (Earthworks, were erected about, Andersonville prison) -> Earthworks (6549ms) Where was the Andersonville Prison? the Civil war -12.439027675914417 Where was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, get be, andersonville prison) -> $x: ($x, be, andersonville prison) -> (the Civil war, was confined in, Andersonville prison) -> the Civil war (6549ms) Where was the Andersonville Prison? Thomas Eston -12.496914403074117 Where was the Andersonville Prison? -> where be [ the andersonville prison ] ? -> what be the andersonville prison s location ? -> $x: (the andersonville prison, location, $x) -> $x: ($x, die, the andersonville prison) -> (Thomas Eston, died in, the Andersonville prison pen) -> Thomas Eston (5444ms) Where was the Andersonville Prison? the most dreaded -12.687437835878399 Where was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: (the andersonville prison, be, $x) -> (The Andersonville Prison, was, the most dreaded) -> the most dreaded (3427ms) Where was the Andersonville Prison? HOLLINGSHEAD -12.810833754422092 Where was the Andersonville Prison? -> where be [ the andersonville prison ] ? -> what be the andersonville prison s location ? -> $x: (the andersonville prison, location, $x) -> $x: ($x, die, the andersonville prison) -> (HOLLINGSHEAD, died in, the Andersonville prison) -> HOLLINGSHEAD (5444ms) Where was the Andersonville Prison? the leading horseman -12.879378513896269 Where was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, be, the andersonville prison) -> (the leading horseman, is, the dreaded Andersonville Prison) -> the leading horseman (3516ms) Where was the Andersonville Prison? Belle Isle -13.00356271281014 Where was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, get be, andersonville prison) -> $x: (andersonville prison, be, $x) -> (Andersonville prison camp, was sent to, Belle Isle) -> Belle Isle (6549ms) Where was the Andersonville Prison? the Union army -13.201490408681156 Where was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, get be, andersonville prison) -> $x: ($x, be, andersonville prison) -> (the Union army, was a prisoner at, Andersonville prison) -> the Union army (6583ms) Where was the Andersonville Prison? variety -13.271307266775601 Where was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, get be, andersonville prison) -> $x: ($x, be, andersonville prison) -> (variety, are, Andersonville prison) -> variety (6583ms) Where was the Andersonville Prison? a Union prisoner -13.379125238577629 Where was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, get be, andersonville prison) -> $x: (andersonville prison, be, $x) -> (Andersonville Prison, pretend to be, a Union prisoner) -> a Union prisoner (6583ms) Where was the Andersonville Prison? Union sailors -13.52662720814768 Where was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, get be, andersonville prison) -> $x: ($x, be, andersonville prison) -> (Union sailors, were sent to, Andersonville prison) -> Union sailors (6583ms) Where was the Andersonville Prison? Ira DeForest WARREN -13.64916826839936 Where was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, get be, andersonville prison) -> $x: ($x, be, andersonville prison) -> (Ira DeForest WARREN, was a prisoner in, Andersonville Prison) -> Ira DeForest WARREN (6583ms) Where was the Andersonville Prison? alive -14.24479260600296 Where was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, get be, andersonville prison) -> $x: ($x, be, andersonville prison) -> (alive, were taken to, Andersonville Prison) -> alive (6615ms) Where was the Andersonville Prison? the Union Army -14.255796797851385 Where was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, get be, andersonville prison) -> $x: ($x, have, andersonville prison) -> (the Union Army, had died in, Andersonville Prison) -> the Union Army (6615ms) Where was the Andersonville Prison? a stone -14.341237662108936 Where was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, get be, andersonville prison) -> $x: (andersonville prison, be, $x) -> (Andersonville prison, is commemorated on, a stone) -> a stone (6615ms) Where was the Andersonville Prison? The carpenter -14.461858170429114 Where was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, get be, andersonville prison) -> $x: ($x, be, andersonville prison) -> (The carpenter, had once been a prisoner in, Andersonville prison) -> The carpenter (6615ms) Where was the Andersonville Prison? the bright drummer boy -14.563092387319097 Where was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, get be, andersonville prison) -> $x: ($x, be, andersonville prison) -> (the bright drummer boy, was in, Andersonville prison) -> the bright drummer boy (6615ms) Where was the Andersonville Prison? The above Flag -14.869844453044475 Where was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, get be, andersonville prison) -> $x: ($x, be, andersonville prison) -> (The above Flag, was raised in, Andersonville Prison) -> The above Flag (6615ms) Where was the Andersonville Prison? 45,000 Union soldiers -15.093380398340713 Where was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> what get be the andersonville prison ? -> $x: ($x, get be, the andersonville prison) -> $x: ($x, get be, andersonville prison) -> $x: ($x, be, andersonville prison) -> (45,000 Union soldiers, were confined at, Andersonville Prison) -> 45,000 Union soldiers (6647ms) Where was the Andersonville Prison? Variety for a dog -15.460626523135316 Where was the Andersonville Prison? -> where [ be the andersonville prison ] ? -> which organ be be the andersonville prison ? -> $x: ($x, instance of, organ) ($x, be be, the andersonville prison) -> $x: ($x, instance of, organ) ($x, be be, andersonville prison) -> (Variety for a dog, Instance Of, meat, soft digestable bone, organ) (variety, are, Andersonville prison) -> Variety for a dog (7934ms) When was the company founded? 1909 2.1800845556126975 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1909) -> 1909 (4195ms) When was the company founded? 1914 2.148172135158499 When was the company founded? -> $x: (the company, was founded in, $x) -> (The Company, was founded in, 1914) -> 1914 (4195ms) When was the company founded? 1990 1.867184593101853 When was the company founded? -> $x: (the company, was founded on, $x) -> (The company, was founded on, 1990) -> 1990 (4195ms) When was the company founded? 1974 1.6111368820327852 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1974) -> 1974 (4195ms) When was the company founded? 1975 1.5885194226547186 When was the company founded? -> $x: (the company, was founded in, $x) -> (The Company, was founded in, 1975) -> 1975 (5664ms) When was the company founded? 1946 1.586034208878376 When was the company founded? -> $x: (the company, was founded in, $x) -> (the Company, was founded in, 1946) -> 1946 (5664ms) When was the company founded? 1994 1.575418172337002 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1994) -> 1994 (5664ms) When was the company founded? 1912 1.572658425816333 When was the company founded? -> $x: (the company, was founded in, $x) -> (The Company, was founded in, 1912) -> 1912 (5664ms) When was the company founded? 1964 1.5620022112680565 When was the company founded? -> $x: (the company, was founded in, $x) -> (The Company, was founded in, 1964) -> 1964 (5664ms) When was the company founded? 2000 1.5550170534730499 When was the company founded? -> $x: (the company, was founded in, $x) -> (the company, was founded in, 2000) -> 2000 (7941ms) When was the company founded? 2001 1.5550170534730499 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 2001) -> 2001 (7940ms) When was the company founded? 1896 1.5499335254409297 When was the company founded? -> $x: (the company, was founded in, $x) -> (the company, was founded in, 1896) -> 1896 (7940ms) When was the company founded? 1873 1.5466862471555687 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1873) -> 1873 (7940ms) When was the company founded? 1954 1.5405422292828725 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1954) -> 1954 (7940ms) When was the company founded? 1867 1.539486078109539 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1867) -> 1867 (7940ms) When was the company founded? 1932 1.5320150962334798 When was the company founded? -> $x: (the company, was founded in, $x) -> (The Company, was founded in, 1932) -> 1932 (8805ms) When was the company founded? 1849 1.5310806933556615 When was the company founded? -> $x: (the company, was founded in, $x) -> (the company, was founded in, 1849) -> 1849 (8805ms) When was the company founded? 1920 1.5239473996605057 When was the company founded? -> $x: (the company, was founded in, $x) -> (The Company, was founded in, 1920) -> 1920 (8805ms) When was the company founded? 2004 1.5201411104189204 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 2004) -> 2004 (9255ms) When was the company founded? 1895 1.5201411104189204 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1895) -> 1895 (8804ms) When was the company founded? 1848 1.5201411104189204 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1848) -> 1848 (9254ms) When was the company founded? 1997 1.5201411104189204 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1997) -> 1997 (9254ms) When was the company founded? 1919 1.5201411104189204 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1919) -> 1919 (8804ms) When was the company founded? 1922 1.5201411104189204 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1922) -> 1922 (8804ms) When was the company founded? 1869 1.5201411104189204 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1869) -> 1869 (9254ms) When was the company founded? 1921 1.5201411104189204 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1921) -> 1921 (9255ms) When was the company founded? 1870 1.508338903618823 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1870) -> 1870 (10150ms) When was the company founded? 1943 1.4952402353643621 When was the company founded? -> $x: (the company, was founded in, $x) -> (The Company, was founded in, 1943) -> 1943 (10150ms) When was the company founded? 1840 1.4914091852374871 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1840) -> 1840 (10150ms) When was the company founded? 1776 1.4914091852374871 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1776) -> 1776 (10151ms) When was the company founded? 1828 1.4657068151424943 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1828) -> 1828 (10150ms) When was the company founded? 1735 1.4657068151424943 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1735) -> 1735 (10150ms) When was the company founded? 1775 1.4453056962785422 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1775) -> 1775 (10733ms) When was the company founded? 1816 1.4453056962785422 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, 1816) -> 1816 (10733ms) When was the company founded? 2009 1.3661839104792368 When was the company founded? -> $x: (the company, was founded in, $x) -> (The Company, was founded in, 2009) -> 2009 (10733ms) When was the company founded? 1996 1.3661839104792368 When was the company founded? -> $x: (the company, was founded in, $x) -> (The Company, was founded in, 1996) -> 1996 (10733ms) When was the company founded? 1983 1.3661839104792368 When was the company founded? -> $x: (the company, was founded in, $x) -> (the Company, was founded in, 1983) -> 1983 (10733ms) When was the company founded? 1987 1.3661839104792368 When was the company founded? -> $x: (the company, was founded in, $x) -> (The Company, was founded in, 1987) -> 1987 (10733ms) When was the company founded? 1998 1.2666279723840055 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, has been founded in, 1998) -> 1998 (11424ms) When was the company founded? 1871 1.2666279723840055 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, had been founded in, 1871) -> 1871 (11424ms) When was the company founded? 1773 0.6889272881571258 When was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be begin in, $x) -> (the company, was begun in, 1773) -> 1773 (18864ms) When was the company founded? 2003 0.5317071063827705 When was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be initiate in, $x) -> (the two companies, were initiated in, 2003) -> 2003 (13235ms) When was the company founded? 1898 0.5202823297359758 When was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be buy in, $x) -> (the company, was bought in, 1898) -> 1898 (11424ms) When was the company founded? 1831 0.5202823297359758 When was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be charter in, $x) -> (the company, was chartered in, 1831) -> 1831 (11424ms) When was the company founded? 2008 0.4936866168149625 When was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be buy in, $x) -> (The daughter company, was bought in, 2008) -> 2008 (12135ms) When was the company founded? 1992 0.4636936622336649 When was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be initiate in, $x) -> (The company, was initiated in, 1992) -> 1992 (13235ms) When was the company founded? 2006 0.4537952695618803 When was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be create in, $x) -> (The company, was created in, 2006) -> 2006 (13851ms) When was the company founded? January 2010 0.44937389633329783 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, January 2010) -> January 2010 (12135ms) When was the company founded? 1989 0.44689390980365085 When was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be close in, $x) -> (the company, was closed in, 1989) -> 1989 (17218ms) When was the company founded? 2005 0.44515735300549464 When was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be create in, $x) -> (The company, was created in, 2005) -> 2005 (13852ms) When was the company founded? 1988 0.44488867931677367 When was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be create in, $x) -> (The Company, was created in, 1988) -> 1988 (13852ms) When was the company founded? 1927 0.4359207165300254 When was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be rename in, $x) -> (the company, was renamed in, 1927) -> 1927 (18542ms) When was the company founded? 2010 0.42662192719421066 When was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be buy in, $x) -> (The company, was bought in, 2010) -> 2010 (12135ms) When was the company founded? 1852 0.4195483305808483 When was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be disband in, $x) -> (the company, was disbanded in, 1852) -> 1852 (15312ms) When was the company founded? 1638 0.4185995760524954 When was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be begin in, $x) -> (The Company, was begun in, 1638) -> 1638 (18864ms) When was the company founded? 1984 0.41646443231659225 When was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be create in, $x) -> (The company, was created in, 1984) -> 1984 (15312ms) When was the company founded? July 2006 0.4144979532791684 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, July 2006) -> July 2006 (13235ms) When was the company founded? July 2008 0.4144979532791684 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, July 2008) -> July 2008 (13235ms) When was the company founded? January 2012 0.41350020482036154 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, January 2012) -> January 2012 (13235ms) When was the company founded? 1977 0.40887342023584283 When was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be buy in, $x) -> (The company, was bought in, 1977) -> 1977 (13235ms) When was the company founded? 1928 0.40179982362248046 When was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be close in, $x) -> (the company, was closed in, 1928) -> 1928 (17218ms) When was the company founded? November 2000 0.40002312908899196 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, November 2000) -> November 2000 (15842ms) When was the company founded? July 2007 0.40002312908899196 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, July 2007) -> July 2007 (16230ms) When was the company founded? August 2000 0.40002312908899196 When was the company founded? -> $x: (the company, was founded in, $x) -> (the company, was founded in, August 2000) -> August 2000 (15842ms) When was the company founded? February 2004 0.40002312908899196 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, February 2004) -> February 2004 (15842ms) When was the company founded? 1995 0.39851820764379875 When was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be create in, $x) -> (The company, was created in, 1995) -> 1995 (16230ms) When was the company founded? 1913 0.38777784677243377 When was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be organize in, $x) -> (The company, was organized in, 1913) -> 1913 (17798ms) When was the company founded? 1886 0.38777784677243377 When was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be organize in, $x) -> (The company, was organized in, 1886) -> 1886 (17798ms) When was the company founded? 1986 0.38412369421392656 When was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be create in, $x) -> (The company, was created in, 1986) -> 1986 (17799ms) When was the company founded? 1864 0.38323164568797763 When was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be buy in, $x) -> (The company, was bought in, 1864) -> 1864 (18004ms) When was the company founded? 1970 0.3815884892624628 When was the company founded? -> $x: (the company, was founded in, $x) -> $x: (the company, be create in, $x) -> (The company, was created in, 1970) -> 1970 (18004ms) When was the company founded? April 1994 0.37962201022503983 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, April 1994) -> April 1994 (18542ms) When was the company founded? November 2005 0.37962201022503983 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, November 2005) -> November 2005 (18542ms) When was the company founded? November 2001 0.37962201022503983 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, November 2001) -> November 2001 (18004ms) When was the company founded? October 1998 0.37962201022503983 When was the company founded? -> $x: (the company, was founded in, $x) -> (The company, was founded in, October 1998) -> October 1998 (18004ms) What is pastrami made of? a cut -4.930307002358361 What is pastrami made of? -> $x: (pastrami, made of, $x) -> $x: (pastrami, be make from, $x) -> (Pastrami, ideally is made from, a cut) -> a cut (5606ms) What is pastrami made of? brisket or beef navel -4.93832352081483 What is pastrami made of? -> $x: (pastrami, made of, $x) -> $x: (pastrami, be make from, $x) -> (Traditional pastrami, is made from, brisket or beef navel) -> brisket or beef navel (5607ms) What is pastrami made of? beef brisket -4.944086305493759 What is pastrami made of? -> $x: (pastrami, made of, $x) -> $x: (pastrami, be make from, $x) -> (Pastrami, is made from, beef brisket) -> beef brisket (5606ms) What is pastrami made of? beef -5.056377718745544 What is pastrami made of? -> $x: (pastrami, made of, $x) -> (True pastrami, is made of, beef) -> beef (5120ms) What is pastrami made of? gourmet meats -5.369594754078334 What is pastrami made of? -> $x: (pastrami, made of, $x) -> $x: (pastrami, be make from, $x) -> (The Reuben and Hot Pastrami, are made from, gourmet meats) -> gourmet meats (5606ms) What is pastrami made of? 100 % brisket -5.47439750094213 What is pastrami made of? -> $x: (pastrami, made of, $x) -> $x: (pastrami, be make from, $x) -> (Our pastrami, is made from, 100 % brisket) -> 100 % brisket (5619ms) What is pastrami made of? a secret recipe -6.305867859602824 What is pastrami made of? -> $x: (pastrami, made of, $x) -> $x: (pastrami, make from, $x) -> (pastrami, made from, a secret recipe) -> a secret recipe (5987ms) What is pastrami made of? a brisket -6.485505249794368 What is pastrami made of? -> $x: (pastrami, made of, $x) -> $x: (pastrami, compose of, $x) -> (The real pastrami, is composed of, a brisket) -> a brisket (5835ms) What is pastrami made of? the forequarter -6.974620170026348 What is pastrami made of? -> $x: (pastrami, made of, $x) -> $x: (pastrami, be make from, $x) -> (Pastrami, is traditionally made from, the forequarter) -> the forequarter (5619ms) What is pastrami made of? the deli section -8.016273421530002 What is pastrami made of? -> $x: (pastrami, made of, $x) -> $x: (pastrami, make from, $x) -> (a pastrami or roast beef sandwich, made from, the deli section) -> the deli section (5987ms) What is pastrami made of? a pound -8.28451057392602 What is pastrami made of? -> what [ be pastrami ] make of ? -> what be pastrami be make ? -> $x: (pastrami, be make, $x) -> (hot pastrami sandwich, is made with over, a pound) -> a pound (7129ms) What is pastrami made of? 6 ounces -8.825015628604053 What is pastrami made of? -> what [ be pastrami ] make of ? -> what be pastrami be make ? -> $x: (pastrami, be make, $x) -> (Our standard pastrami sandwich, is made with, 6 ounces) -> 6 ounces (7263ms) What is pastrami made of? the premises -10.63771781511945 What is pastrami made of? -> what [ be pastrami ] make of ? -> what be pastrami be make ? -> $x: (pastrami, be make, $x) -> (the corned beef and pastrami, will be made on, the premises) -> the premises (7334ms) What is pastrami made of? order -11.600442685230906 What is pastrami made of? -> what be [ pastrami make ] of ? -> what be pastrami make to do ? -> $x: (pastrami, make to, $x) -> (decent pastrami sandwiches, made fresh to, order) -> order (7334ms) Where are the National Archives? Prague -0.32765848764642924 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, is in, Prague) -> Prague (1175ms) Where are the National Archives? Paris -0.5805442497471331 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The French National Archives, are in, Paris) -> Paris (1175ms) Where are the National Archives? Canberra -0.6996777006489356 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, are also based in, Canberra) -> Canberra (1176ms) Where are the National Archives? Florida -0.7721818814778691 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives Workshop, was held in, Florida) -> Florida (1176ms) Where are the National Archives? Records -0.8776106168110016 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, are in, Records) -> Records (1175ms) Where are the National Archives? Sucre -1.0464923802145405 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, are in, Sucre) -> Sucre (2059ms) Where are the National Archives? Washington -1.0562185887334876 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, are in, Washington) -> Washington (2059ms) Where are the National Archives? Parkes -1.2667273919835662 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, is located in, Parkes) -> Parkes (2059ms) Where are the National Archives? English -1.2823450955701454 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the Hungarian National Archives, is available in, English) -> English (2059ms) Where are the National Archives? the USA -1.388130224243659 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, are made in, the USA) -> the USA (2059ms) Where are the National Archives? Washington DC -1.5894715526906364 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, are in, Washington DC) -> Washington DC (2059ms) Where are the National Archives? Tripoli -1.9118418425832342 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, are located in, Tripoli) -> Tripoli (2087ms) Where are the National Archives? Dar es Salaam -2.062664704110177 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The national archives, are also located in, Dar es Salaam) -> Dar es Salaam (2087ms) Where are the National Archives? research guides -2.1161444661931452 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, are described in, research guides) -> research guides (2087ms) Where are the National Archives? much better condition -2.1391336288354257 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, are in, much better condition) -> much better condition (2087ms) Where are the National Archives? negotiations -2.18365847264968 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, is currently in, negotiations) -> negotiations (2087ms) Where are the National Archives? cooperative projects -2.2261478012446663 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archive, are involved in, cooperative projects) -> cooperative projects (2132ms) Where are the National Archives? essence -2.2384141465202463 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives Experience, is in, essence) -> essence (2132ms) Where are the National Archives? Kew -2.2862082784401196 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, are based in, Kew) -> Kew (2132ms) Where are the National Archives? court -2.3144551783581555 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Security Archive, is in, court) -> court (2132ms) Where are the National Archives? an extremely poor state -2.329410119941897 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the national archive, is in, an extremely poor state) -> an extremely poor state (2132ms) Where are the National Archives? early censuses -2.3672566189445647 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, was included in, early censuses) -> early censuses (2132ms) Where are the National Archives? a constant battle -2.370776846317937 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, is engaged in, a constant battle) -> a constant battle (2281ms) Where are the National Archives? an area -2.376918259336256 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, is located in, an area) -> an area (2281ms) Where are the National Archives? an accessible style -2.406399906308159 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, is written in, an accessible style) -> an accessible style (2281ms) Where are the National Archives? PDF. -2.432622687735175 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The national archives, are particularly interested in, PDF.) -> PDF. (2281ms) Where are the National Archives? two different buildings -2.5761659088150894 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, is housed in, two different buildings) -> two different buildings (2281ms) Where are the National Archives? an iconic building -2.5807857012169126 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the national archives, are usually housed in, an iconic building) -> an iconic building (2466ms) Where are the National Archives? R. J. Whitwell -2.6709093054519966 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, has been translated in, R. J. Whitwell) -> R. J. Whitwell (2466ms) Where are the National Archives? jeopardy -2.8361077899267775 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The national archive, was in, jeopardy) -> jeopardy (2466ms) Where are the National Archives? accordance -2.844466466544046 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, shall be authenticated in, accordance) -> accordance (2466ms) Where are the National Archives? a project -2.9212832677242773 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The Dutch National Archives, are involved in, a project) -> a project (2466ms) Where are the National Archives? progress -2.9276773198453974 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, is now in, progress) -> progress (2503ms) Where are the National Archives? a series -2.95285984369329 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, is the latest in, a series) -> a series (2503ms) Where are the National Archives? charge -2.957312659917908 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Music Archives, was in, charge) -> charge (2503ms) Where are the National Archives? Authorities Concept Scheme -2.9648978804975066 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (Archives and national socialism, In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (2503ms) Where are the National Archives? Topical Terms Concept Scheme -2.992386761096666 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (Archives and national socialism, In Scheme, Topical Terms Concept Scheme) -> Topical Terms Concept Scheme (2534ms) Where are the National Archives? scandal -2.9988053796651406 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, was embroiled in, scandal) -> scandal (2534ms) Where are the National Archives? the Regional Archives -3.031980358560286 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, are kept in, the Regional Archives) -> the Regional Archives (2534ms) Where are the National Archives? absentia -3.170990647060278 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Security Archive, was cited in, absentia) -> absentia (2534ms) Where are the National Archives? a fire -3.177381520070787 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the national archive, was destroyed in, a fire) -> a fire (2563ms) Where are the National Archives? the Gelman Library -3.187539916792843 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Security Archive, is housed in, the Gelman Library) -> the Gelman Library (2564ms) Where are the National Archives? memory -3.207242763825892 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives award, is named in, memory) -> memory (2564ms) Where are the National Archives? Belmopan -3.2621566844095 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (Its national archives, are in, Belmopan) -> Belmopan (2713ms) Where are the National Archives? the business -3.5440066019675136 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, be in, the business) -> the business (2789ms) Where are the National Archives? the possession -3.722187154706867 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, was in, the possession) -> the possession (2788ms) Where are the National Archives? the process -3.7414489048417225 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, is in, the process) -> the process (2815ms) Where are the National Archives? Boulevard 9 -3.83256019784913 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, are situated in, Boulevard 9) -> Boulevard 9 (2849ms) Where are the National Archives? the 60s -3.8475915774769516 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Film Archive, was created in, the 60s) -> the 60s (2849ms) Where are the National Archives? Record Group 59 -3.9668046295932307 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, are contained in, Record Group 59) -> Record Group 59 (2849ms) Where are the National Archives? Fact Sheet 1 -3.967688815994327 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, are given in, Fact Sheet 1) -> Fact Sheet 1 (2849ms) Where are the National Archives? the centre -3.9792308386791513 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, are located in, the centre) -> the centre (2849ms) Where are the National Archives? the form -3.9928859918931923 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, have been in, the form) -> the form (2904ms) Where are the National Archives? January -3.9965329826369125 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, made in, January) -> January (2904ms) Where are the National Archives? Record Group 127 -4.004825119161038 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, are found in, Record Group 127) -> Record Group 127 (2904ms) Where are the National Archives? the classroom -4.0120404937864524 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, might be useful in, the classroom) -> the classroom (2904ms) Where are the National Archives? the Squadron -4.062054077226282 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (National Archives, else was in, the Squadron) -> the Squadron (2904ms) Where are the National Archives? the database -4.064506039023325 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, is found in, the database) -> the database (2972ms) Where are the National Archives? the development -4.06988011862357 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archive, is currently involved in, the development) -> the development (2972ms) Where are the National Archives? an 18th century mansion -4.077627895903698 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The national archives, are stored in, an 18th century mansion) -> an 18th century mansion (2972ms) Where are the National Archives? the north-east -4.088379388066701 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archive, is located in, the north-east) -> the north-east (2971ms) Where are the National Archives? the article -4.106063326897813 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, is mentioned in, the article) -> the article (3001ms) Where are the National Archives? the same building -4.106947513298909 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, were in, the same building) -> the same building (3001ms) Where are the National Archives? the middle -4.110061232786573 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, is hidden away in, the middle) -> the middle (3001ms) Where are the National Archives? the cellar -4.138778645356746 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, are housed in, the cellar) -> the cellar (3001ms) Where are the National Archives? the theft -4.1658909302644656 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, has been charged in, the theft) -> the theft (3001ms) Where are the National Archives? July -4.180240868871634 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (The National Security Archive, found in, July) -> July (3001ms) Where are the National Archives? the Archives -4.181678648732274 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (National Australian Archives, Was in, the Archives) -> the Archives (3032ms) Where are the National Archives? the some premises -4.403978687584948 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives office, is located in, the some premises) -> the some premises (3032ms) Where are the National Archives? College Park -4.440305249930798 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, located in, College Park) -> College Park (3062ms) Where are the National Archives? April 2003 -4.73840630325841 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, was formed in, April 2003) -> April 2003 (3117ms) Where are the National Archives? October 2000 -4.761634024593087 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Obituary Archive?, was launched in, October 2000) -> October 2000 (3118ms) Where are the National Archives? CAC -4.786495613849455 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, presented in, CAC) -> CAC (3140ms) Where are the National Archives? force -4.803804487883996 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, remain in, force) -> force (3140ms) Where are the National Archives? partnership -4.832983008036248 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, works in, partnership) -> partnership (3197ms) Where are the National Archives? the 2001 Census -4.836790817327605 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, was first introduced in, the 2001 Census) -> the 2001 Census (3197ms) Where are the National Archives? a news release -4.886305873202758 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, said in, a news release) -> a news release (3197ms) Where are the National Archives? categories -4.908532052563768 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (National archives, were valued in, categories) -> categories (3197ms) Where are the National Archives? new information -4.917317386986754 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives II, resulted in, new information) -> new information (3289ms) Where are the National Archives? common -4.928868603300464 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, have in, common) -> common (3289ms) Where are the National Archives? multiple locations -4.9578314317644505 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archive, s in, multiple locations) -> multiple locations (3289ms) Where are the National Archives? 1970 -4.965420481690385 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, was in, 1970) -> 1970 (3289ms) Where are the National Archives? every capital city -4.985860205897086 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (The National Archives, has a presence in, every capital city) -> every capital city (3289ms) Where are the National Archives? Rio -4.997620346836746 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (National Archives, are both located in, Rio) -> Rio (3289ms) Where are the National Archives? quantity -5.009822554454246 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the national archives, grew in, quantity) -> quantity (3360ms) Where are the National Archives? 1992 -5.029277714154787 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, was established in, 1992) -> 1992 (3360ms) Where are the National Archives? countless attics -5.049787976928984 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, searched in, countless attics) -> countless attics (3360ms) Where are the National Archives? William Preston?s Classic book -5.084858044851163 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, cited in, William Preston?s Classic book) -> William Preston?s Classic book (3411ms) Where are the National Archives? a very long time -5.122413150845557 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the national archives, should have resulted in, a very long time) -> a very long time (3411ms) Where are the National Archives? 2003 -5.237948392630621 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, were created in, 2003) -> 2003 (3477ms) Where are the National Archives? 1838 -5.29264347095406 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, was created in, 1838) -> 1838 (3496ms) Where are the National Archives? 1988 -5.323715580285183 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, was established in, 1988) -> 1988 (3496ms) Where are the National Archives? 1936 -5.331310932730047 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives building, was erected in, 1936) -> 1936 (3496ms) Where are the National Archives? 1922 -5.345820503824072 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the national archives, were burnt in, 1922) -> 1922 (3496ms) Where are the National Archives? 1934 -5.34733374700056 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, was established in, 1934) -> 1934 (3496ms) Where are the National Archives? 1997 -5.350176920404595 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (the National Archives, was established in, 1997) -> 1997 (3496ms) Where are the National Archives? 1985 -5.368745098339097 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives building, was built in, 1985) -> 1985 (3518ms) Where are the National Archives? 1998 -5.380890571746251 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Photographic Archive, was opened in, 1998) -> 1998 (3539ms) Where are the National Archives? 1935 -5.396806137775169 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The BFI National Archive, was founded in, 1935) -> 1935 (3539ms) Where are the National Archives? 1882 -5.425398333968664 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Archives, were founded in, 1882) -> 1882 (3562ms) Where are the National Archives? terms -5.48714523371091 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, established in, terms) -> terms (3593ms) Where are the National Archives? microfilm -5.515072796528356 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (The National Archives, published in, microfilm) -> microfilm (3593ms) Where are the National Archives? 1953 -5.5727614977920705 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> (The National Literary Archives, were opened in, 1953) -> 1953 (3593ms) Where are the National Archives? Pune -5.731264048796603 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> $x: (national archive, be `` in, $x) -> (National Film Archives, are also located in, Pune) -> Pune (3891ms) Where are the National Archives? a statement -6.088990208338516 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (National Archives officials, said in, a statement) -> a statement (4134ms) Where are the National Archives? historic documents -6.314870504074284 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (The National Archives, benefited in, historic documents) -> historic documents (4202ms) Where are the National Archives? the framing -6.415363922662426 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, aided in, the framing) -> the framing (4469ms) Where are the National Archives? the Roll -6.442364763335165 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> $x: ($x, may be purchase, national archive) -> (the Roll, may be purchased from, the National Archives) -> the Roll (4579ms) Where are the National Archives? Chapter 1 -6.497566673698133 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Security Archive, cited in, Chapter 1) -> Chapter 1 (4702ms) Where are the National Archives? the study -6.557655209692041 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, engaged in, the study) -> the study (5946ms) Where are the National Archives? the spring -6.674235301034177 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Gay Archives, appeared in, the spring) -> the spring (6005ms) Where are the National Archives? the planning -6.799066274055632 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (our national archives, reflect the results in, the planning) -> the planning (6142ms) Where are the National Archives? touch -7.023024216467026 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (The National Archives, Getting in, touch) -> touch (6180ms) Where are the National Archives? the 1980 's -7.140190168418899 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, declassified in, the 1980 's) -> the 1980 's (6216ms) Where are the National Archives? Jan 2008 -7.204407608198808 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the Serbian National Archives, arrived in, Jan 2008) -> Jan 2008 (6275ms) Where are the National Archives? head -7.225270253403793 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> $x: (national archive, have be since, $x) -> (the National Archives, has since then been, head) -> head (6275ms) Where are the National Archives? formats -7.296137124713871 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, to deliver those records in, formats) -> formats (6312ms) Where are the National Archives? previous censuses -7.330025436442511 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> $x: (national archive, have from, $x) -> (the National Archives, has released data from, previous censuses) -> previous censuses (6346ms) Where are the National Archives? the October 17 -7.3352350417155225 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (The National Archives, published in, the October 17) -> the October 17 (6346ms) Where are the National Archives? 1972 -7.742264460954731 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, began in, 1972) -> 1972 (6829ms) Where are the National Archives? 1968 -7.8265909067705515 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (the National Archives, occurred in, 1968) -> 1968 (6900ms) Where are the National Archives? 2006 -8.10668307498239 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (The National Archives building, renovated in, 2006) -> 2006 (7070ms) Where are the National Archives? maps -8.27595588573629 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> $x: (national archive, coverage, $x) -> (( National Archives, Coverage, maps) -> maps (7227ms) Where are the National Archives? the series -9.041421997045699 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> $x: (national archive, have from, $x) -> (the National Archives, has digitized from, the series) -> the series (7507ms) Where are the National Archives? 1918 -9.240131221291534 Where are the National Archives? -> $x: (the National Archives, are in, $x) -> $x: (national archive, in, $x) -> (The National Archives, closed in, 1918) -> 1918 (7542ms) Where are the National Archives? Constitution Avenue -9.26441112988176 Where are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (The National Archives, is located on, Constitution Avenue) -> Constitution Avenue (7586ms) Where are the National Archives? Tumblr Welcome -9.41605219341385 Where are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (the National Archives, is on, Tumblr Welcome) -> Tumblr Welcome (7586ms) Where are the National Archives? August -9.428133157757367 Where are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (the National Archive, was first signed on, August) -> August (7620ms) Where are the National Archives? Kennedy -9.450991088136899 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Archives, are, Kennedy) -> Kennedy (7994ms) Where are the National Archives? Windhoek -9.486754439300142 Where are the National Archives? -> where be [ the national archive ] ? -> what be the national archive s location ? -> $x: (the national archive, location, $x) -> $x: (the national archive, place, $x) -> (Film register of the National Archives, Place of publication, Windhoek) -> Windhoek (11021ms) Where are the National Archives? History -9.503978389205272 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archives, is, History) -> History (9476ms) Where are the National Archives? Discovery -9.563029054412421 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (Discovery, is, The National Archives) -> Discovery (9521ms) Where are the National Archives? Stockholm -9.588855995811306 Where are the National Archives? -> where be [ the national archive ] ? -> what be the national archive s location ? -> $x: (the national archive, location, $x) -> $x: (the national archive, place, $x) -> (The Diplomatica collection in the Swedish National Archives, Place of publication, Stockholm) -> Stockholm (11021ms) Where are the National Archives? the Internet -9.637502386013495 Where are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (the National Archive, were posted on, the Internet) -> the Internet (9568ms) Where are the National Archives? Seattle -9.696963526234892 Where are the National Archives? -> where be [ the national archive ] ? -> what be the national archive s location ? -> $x: (the national archive, location, $x) -> $x: (the national archive, place, $x) -> (Picturing the century: one hundred years of photography from the National Archives, Place of publication, Seattle) -> Seattle (11021ms) Where are the National Archives? Kolkata -9.696963526234892 Where are the National Archives? -> where be [ the national archive ] ? -> what be the national archive s location ? -> $x: (the national archive, location, $x) -> $x: (the national archive, place, $x) -> (Selections from Ochterlony papers, 1818-1825, in the National Archives of India, Place of publication, Kolkata) -> Kolkata (11021ms) Where are the National Archives? United Kingdom -9.79977613882833 Where are the National Archives? -> where be [ the national archive ] ? -> what be the national archive s location ? -> $x: (the national archive, location, $x) -> $x: ($x, contain, the national archive) -> (United Kingdom, Contains, The National Archives) -> United Kingdom (11198ms) Where are the National Archives? Edmonton -9.8116230281993 Where are the National Archives? -> where be [ the national archive ] ? -> what be the national archive s location ? -> $x: (the national archive, location, $x) -> $x: (the national archive, place, $x) -> (The John Robert Kovalevitch Collection, National Archives of Canada, Manuscript Division, MG30, D218 : finding aid, Place of publication, Edmonton) -> Edmonton (11021ms) Where are the National Archives? London -9.8116230281993 Where are the National Archives? -> where be [ the national archive ] ? -> what be the national archive s location ? -> $x: (the national archive, location, $x) -> $x: (the national archive, place, $x) -> (Administering the Empire, 1801-1968 : a guide to the records of the Colonial Office in the National Archives of the UK, Place of publication, London) -> London (11021ms) Where are the National Archives? Delhi -9.85840410500078 Where are the National Archives? -> where be [ the national archive ] ? -> what be the national archive s location ? -> $x: (the national archive, location, $x) -> $x: (the national archive, place, $x) -> (Indian sources for African history : guide to the sources of the history of Africa and of the Indian diaspora in the basin of the Indian Ocean in the National Archives of India, Place of publication, Delhi) -> Delhi (11063ms) Where are the National Archives? Cambridge -9.883816047954669 Where are the National Archives? -> where be [ the national archive ] ? -> what be the national archive s location ? -> $x: (the national archive, location, $x) -> $x: (the national archive, place, $x) -> (The national archives of Latin America; edited for the Joint committee on Latin American studies of the National research council, the American council of learned societies, and the Social science research council, Place of publication, Cambridge) -> Cambridge (11063ms) Where are the National Archives? Syracuse -9.895160665344799 Where are the National Archives? -> where be [ the national archive ] ? -> what be the national archive s location ? -> $x: (the national archive, location, $x) -> $x: (the national archive, place, $x) -> (A guide to the Kenya National Archives : to the microfilms of the provincial and district annual reports, record books, and handing-over reports, miscellaneous correspondence, and intelligence reports, Place of publication, Syracuse) -> Syracuse (11063ms) Where are the National Archives? Leipzig -9.987052066204846 Where are the National Archives? -> where be [ the national archive ] ? -> what be the national archive s location ? -> $x: (the national archive, location, $x) -> $x: (the national archive, place, $x) -> (Personal recollections of Joan of Arc by the sieur Louis de Conte [pseud.] (her page and secretary) freely translated out of the ancient French into modern English from the original unpublished manuscript in the National Archives by Jean Francois Alden, Place of publication, Leipzig) -> Leipzig (11063ms) Where are the National Archives? Chapel Hill -10.137905301378193 Where are the National Archives? -> where be [ the national archive ] ? -> what be the national archive s location ? -> $x: (the national archive, location, $x) -> $x: (the national archive, place, $x) -> (The National Archives: America's ministry of documents, 1934-1968, Place of publication, Chapel Hill) -> Chapel Hill (11063ms) Where are the National Archives? Dallas -10.199071179592535 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, have, the national archive) -> (Dallas, has been stored at, the National Archives) -> Dallas (9828ms) Where are the National Archives? the National Mall -10.20576751078457 Where are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (The National Archives, is located on, the National Mall) -> the National Mall (9828ms) Where are the National Archives? military service -10.224520953912421 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (military service, are, the National Archives) -> military service (9828ms) Where are the National Archives? Sound Archive -10.269541977357765 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (Sound Archive, is, the national audiovisual archive) -> Sound Archive (9828ms) Where are the National Archives? Probate Records -10.271310350159958 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (Probate Records, is, the National Archives) -> Probate Records (9828ms) Where are the National Archives? Processing -10.322923477644453 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, have, the national archive) -> (Processing, has been completed by, the National Archives) -> Processing (9875ms) Where are the National Archives? C-SPAN?s website -10.348080685827101 Where are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (the National Archives, is available on, C-SPAN?s website) -> C-SPAN?s website (9875ms) Where are the National Archives? Temple Bar -10.399661879500277 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (Temple Bar, are, the National Photographic Archive) -> Temple Bar (9875ms) Where are the National Archives? William Spencer -10.407049428623727 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (William Spencer, is, The National Archives) -> William Spencer (9875ms) Where are the National Archives? public display -10.407560523927392 Where are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (the National Video Game Archive, are on, public display) -> public display (9948ms) Where are the National Archives? the Mall -10.41970068025494 Where are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (The National Archives Building, is also on, the Mall) -> the Mall (9948ms) Where are the National Archives? information -10.441236414129207 Where are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (the National Archives, was based on, information) -> information (9948ms) Where are the National Archives? a crash course -10.452396597882348 Where are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (The National Archives, is now embarked on, a crash course) -> a crash course (9948ms) Where are the National Archives? a single terminal -10.455307169311851 Where are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (the National Archives, are available on, a single terminal) -> a single terminal (9948ms) Where are the National Archives? onion skin paper -10.462380765925214 Where are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (the National Archives, is printed on, onion skin paper) -> onion skin paper (9948ms) Where are the National Archives? World Vital Records -10.474367281854448 Where are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (the National Archives, are available on, World Vital Records) -> World Vital Records (9948ms) Where are the National Archives? Australia -10.493107445706302 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, have, the national archive) -> (Australia, has worked with, the national archives) -> Australia (9990ms) Where are the National Archives? Solsis Berhad -10.502547955939736 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archives Malaysia, is, Solsis Berhad) -> Solsis Berhad (9990ms) Where are the National Archives? a wide range -10.528502197847514 Where are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (the National Archives, is an expert on, a wide range) -> a wide range (9990ms) Where are the National Archives? telephone -10.549302650190707 Where are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (The National Archives, may be contacted on, telephone) -> telephone (9990ms) Where are the National Archives? officers papers -10.58611347447856 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Archives, are, officers papers) -> officers papers (9990ms) Where are the National Archives? wheelchair -10.599064541751446 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Archives, are, wheelchair) -> wheelchair (9990ms) Where are the National Archives? Morton Halperin -10.605179464151568 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Security Archive, was, Morton Halperin) -> Morton Halperin (9990ms) Where are the National Archives? Philadelphia -10.613815144542249 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, have, the national archive) -> (Philadelphia, have survived at, the National Archives) -> Philadelphia (9990ms) Where are the National Archives? sector responsible -10.619738460197883 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archives, is, sector responsible) -> sector responsible (10040ms) Where are the National Archives? D.C. -10.620785612764783 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (D.C., is, the National Archives) -> D.C. (10040ms) Where are the National Archives? one month -10.659627110787564 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Archives, is, one month) -> one month (10040ms) Where are the National Archives? Washington, D.C. -10.694271591053495 Where are the National Archives? -> where be [ the national archive ] ? -> what be the national archive s location ? -> $x: (the national archive, location, $x) -> $x: (the national archive, place, $x) -> (Repair and preservation in the National Archives, Place of publication, Washington, D.C.) -> Washington, D.C. (11063ms) Where are the National Archives? NGDC -10.704784374914857 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (NGDC, is, the National Archive) -> NGDC (10040ms) Where are the National Archives? view -10.706904252163168 Where are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (the National Archives, are going on, view) -> view (10040ms) Where are the National Archives? one box -10.732031608801407 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Archives, is, one box) -> one box (10130ms) Where are the National Archives? New Year -10.735595895911082 Where are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (the National Archives, were released on, New Year) -> New Year (10130ms) Where are the National Archives? the U.S. Government -10.736944528117279 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archives, is, the U.S. Government) -> the U.S. Government (10130ms) Where are the National Archives? DC -10.742804864482665 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (DC, is, the National Archives) -> DC (10130ms) Where are the National Archives? the UK government -10.753779500639718 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archives, is, the UK government) -> the UK government (10130ms) Where are the National Archives? Friedman -10.765236737228363 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, have, the national archive) -> (Friedman, had been phoning, the National Archives) -> Friedman (10130ms) Where are the National Archives? display -10.773541522600787 Where are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (the National Archives, is on, display) -> display (10230ms) Where are the National Archives? Control Commission for Germany (British Element), Political Division -10.780625139499124 Where are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> $x: (national archive, on, $x) -> (The National Archives Catalogue, includes metadata on, Control Commission for Germany (British Element), Political Division) -> Control Commission for Germany (British Element), Political Division (10229ms) Where are the National Archives? Melbourne -10.803192515378178 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, have, the national archive) -> (Melbourne, have joined forces with, the National Archives) -> Melbourne (10229ms) Where are the National Archives? a national treasure -10.805294812357054 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archives, are, a national treasure) -> a national treasure (10230ms) Where are the National Archives? cost prohibitive -10.809026579012464 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Archives everyday, is, cost prohibitive) -> cost prohibitive (10230ms) Where are the National Archives? political culture -10.813377811748191 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (political culture, is, the National Archives) -> political culture (10272ms) Where are the National Archives? each entry -10.818557766480387 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (each entry, is, the National Archives) -> each entry (10272ms) Where are the National Archives? The State Papers -10.818682982857066 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (The State Papers, are, The National Archives) -> The State Papers (10272ms) Where are the National Archives? Allied Commission for Austria (British Element): Headquarters and Regional Files -10.828272532537666 Where are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> $x: (national archive, on, $x) -> (The National Archives Catalogue, includes metadata on, Allied Commission for Austria (British Element): Headquarters and Regional Files) -> Allied Commission for Austria (British Element): Headquarters and Regional Files (10272ms) Where are the National Archives? a public trust -10.83220967461501 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archives, is, a public trust) -> a public trust (10272ms) Where are the National Archives? government research -10.834598548885984 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (government research, is, the National Archives) -> government research (10272ms) Where are the National Archives? Control Commission for Germany (British Element), Military Sections and Headquarters Secretariat -10.848692843839899 Where are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> $x: (national archive, on, $x) -> (The National Archives Catalogue, includes metadata on, Control Commission for Germany (British Element), Military Sections and Headquarters Secretariat) -> Control Commission for Germany (British Element), Military Sections and Headquarters Secretariat (10272ms) Where are the National Archives? Control Commission for Germany (British Element), Prisoners of War/Displaced Persons Division -10.848692843839899 Where are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> $x: (national archive, on, $x) -> (The National Archives Catalogue, includes metadata on, Control Commission for Germany (British Element), Prisoners of War/Displaced Persons Division) -> Control Commission for Germany (British Element), Prisoners of War/Displaced Persons Division (10272ms) Where are the National Archives? nation?s pride -10.851398301316 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archives, are, nation?s pride) -> nation?s pride (10656ms) Where are the National Archives? China -10.8587284135823 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, have, the national archive) -> (China, has been obtained from, the National Archives) -> China (10656ms) Where are the National Archives? a living document -10.862898066481934 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Archives, is, a living document) -> a living document (10656ms) Where are the National Archives? heaven -10.869262287904755 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (heaven, was, the National Archives) -> heaven (10656ms) Where are the National Archives? Contents INTRODUCTION -10.887650418081613 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (Contents INTRODUCTION, is, the National Archives) -> Contents INTRODUCTION (10656ms) Where are the National Archives? one source -10.89656213946922 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the great national archives, are, one source) -> one source (10656ms) Where are the National Archives? a chilling read -10.896691696210013 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Security Archive, are, a chilling read) -> a chilling read (10656ms) Where are the National Archives? a government department -10.89850280182884 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archives, is, a government department) -> a government department (10656ms) Where are the National Archives? the Rotunda -10.90268174500714 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Archives Experience, is, the Rotunda) -> the Rotunda (10848ms) Where are the National Archives? The Public Record Office -10.902751549681485 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (The Public Record Office, is, the National Archives) -> The Public Record Office (10895ms) Where are the National Archives? a joint project -10.90805672079036 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Archives, is, a joint project) -> a joint project (10895ms) Where are the National Archives? ways -10.909842340346994 Where are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (The National Archives, is working on, ways) -> ways (10895ms) Where are the National Archives? a major institution -10.912477705498137 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the national archives, are, a major institution) -> a major institution (10895ms) Where are the National Archives? Control Commission for Germany (British Element), Combined Travel Security Board, later Combined Travel Board, and Zonal Travel Directorate and Bureaux -10.914037840007044 Where are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> $x: (national archive, on, $x) -> (The National Archives Catalogue, includes metadata on, Control Commission for Germany (British Element), Combined Travel Security Board, later Combined Travel Board, and Zonal Travel Directorate and Bureaux) -> Control Commission for Germany (British Element), Combined Travel Security Board, later Combined Travel Board, and Zonal Travel Directorate and Bureaux (10895ms) Where are the National Archives? a small map -10.91555768388456 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Archives, was, a small map) -> a small map (10895ms) Where are the National Archives? an annual event -10.92141941043108 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Archives, is, an annual event) -> an annual event (10942ms) Where are the National Archives? the ONLY time tours -10.93104588343264 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Archives, is, the ONLY time tours) -> the ONLY time tours (10942ms) Where are the National Archives? open seven days -10.93104588343264 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archives, are, open seven days) -> open seven days (10942ms) Where are the National Archives? President Clinton -10.932629517261327 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, have, the national archive) -> (President Clinton, has asked, the National Archives) -> President Clinton (10942ms) Where are the National Archives? The Presbyterian Historical Society -10.938810885688868 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (The Presbyterian Historical Society, is, the National Archives) -> The Presbyterian Historical Society (10942ms) Where are the National Archives? Brief -10.940074616529085 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, have, the national archive) -> (Brief, has been extracted from, the National Archives) -> Brief (10942ms) Where are the National Archives? a UK government department -10.94135836320805 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archives, is, a UK government department) -> a UK government department (11119ms) Where are the National Archives? census records -10.950428443093895 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Archives, are, census records) -> census records (11118ms) Where are the National Archives? a minute-by-minute time line -10.952852944529191 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Archives, was, a minute-by-minute time line) -> a minute-by-minute time line (11119ms) Where are the National Archives? full color scans -10.97260317130713 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Archives, were, full color scans) -> full color scans (11119ms) Where are the National Archives? The NFSA -10.98225957515173 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (The NFSA, is, the national audiovisual archive) -> The NFSA (11198ms) Where are the National Archives? any Roswell files -10.983148945397621 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (any Roswell files, was, the National Archives) -> any Roswell files (11198ms) Where are the National Archives? Gaston County -10.983177051354597 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, have, the national archive) -> (Gaston County, has been produced by, the The National Archives) -> Gaston County (11198ms) Where are the National Archives? a real bonus -10.991171296539337 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archives, is, a real bonus) -> a real bonus (11198ms) Where are the National Archives? a mammoth task -10.997360706751603 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Archives, was, a mammoth task) -> a mammoth task (11198ms) Where are the National Archives? the US Capitol building -10.998180325025443 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Archives, is, the US Capitol building) -> the US Capitol building (11198ms) Where are the National Archives? research genealogy -11.000827700383939 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (research genealogy, are, the National Archives) -> research genealogy (11321ms) Where are the National Archives? National -11.003464288648964 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (National, is, the national audiovisual archive) -> National (11321ms) Where are the National Archives? The British Library -11.003550064261574 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (The British Library, is, the national published archive) -> The British Library (11321ms) Where are the National Archives? the U.S. Government?s collection -11.008790719945488 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archives, is, the U.S. Government?s collection) -> the U.S. Government?s collection (11321ms) Where are the National Archives? foreign policy -11.020841804001977 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (foreign policy, is, the National Security Archive) -> foreign policy (11321ms) Where are the National Archives? a government agency -11.03538119631941 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archives, is, a government agency) -> a government agency (11321ms) Where are the National Archives? the Natural History Museum -11.041570606531677 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (the Natural History Museum, is, the National Archives) -> the Natural History Museum (11377ms) Where are the National Archives? a Crown asset -11.066914465934907 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archive Collection, is, a Crown asset) -> a Crown asset (11377ms) Where are the National Archives? Army Medical Services research -11.081945845562728 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (Army Medical Services research, is, the National Archives) -> Army Medical Services research (11377ms) Where are the National Archives? an Executive Agency -11.092789482095561 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archives, is, an Executive Agency) -> an Executive Agency (11377ms) Where are the National Archives? Michael?s -11.094614666304748 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archives, was supposed to be, Michael?s) -> Michael?s (11377ms) Where are the National Archives? material -11.098990790054874 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: ($x, be, the national archive) -> (material, is, the National Archives collection) -> material (11470ms) Where are the National Archives? a secondary find -11.115545350422758 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the UK National Archives, was, a secondary find) -> a secondary find (11470ms) Where are the National Archives? ADA compliant -11.123800995879556 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archives Experience, is, ADA compliant) -> ADA compliant (11470ms) Where are the National Archives? the UK government?s official archive -11.148433314947352 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archives, is, the UK government?s official archive) -> the UK government?s official archive (11470ms) Where are the National Archives? schedule -11.158004071452785 Where are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (the National Archives Building, is progressing on, schedule) -> schedule (11470ms) Where are the National Archives? an amazing resource -11.15936299840983 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Security Archive, is, an amazing resource) -> an amazing resource (11470ms) Where are the National Archives? request -11.162425056160563 Where are the National Archives? -> where [ be the national archive ] ? -> when be the national archive be ? -> $x: (the national archive, be be on, $x) -> (the National Archives ?, is available on, request) -> request (11569ms) Where are the National Archives? Upper Canada Land Petition -11.173018204326166 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Archives, is, Upper Canada Land Petition) -> Upper Canada Land Petition (11570ms) Where are the National Archives? Professor Howard Newby -11.194174373336702 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (the National Data Archive, was, Professor Howard Newby) -> Professor Howard Newby (11570ms) Where are the National Archives? a Senior Reader Adviser -11.195942746138895 Where are the National Archives? -> where [ be the national archive ] ? -> what get be the national archive ? -> $x: ($x, get be, the national archive) -> $x: (the national archive, be, $x) -> (The National Archives, is, a Senior Reader Adviser) -> a Senior Reader Adviser (11570ms) What countries supplied aid? America -4.7906221848151125 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> (America, Instance Of, country) (America, supplied, military aid) -> America (6222ms) What countries supplied aid? Israel -4.855447144721803 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> (Israel, Instance Of, country) (Israel, has supplied, enough aid) -> Israel (6222ms) What countries supplied aid? America's -5.2101862344715 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> (America's, Instance Of, country) (America, supplied, military aid) -> America's (6222ms) What countries supplied aid? Food -6.152068526313819 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> (Food, Instance Of, country) (Food, supplied by, international aid groups) -> Food (6419ms) What countries supplied aid? Britain -6.326339828711551 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> (Britain, Instance Of, country) (Britain, will supply, vital aid) -> Britain (8885ms) What countries supplied aid? France -6.704906185402016 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> (France, Instance Of, country) (France, has supplied, economic aid and troops) -> France (9509ms) What countries supplied aid? Britain's -6.899585622825403 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> (Britain's, Instance Of, country) (Britain, will supply, vital aid) -> Britain's (9509ms) What countries supplied aid? state -6.97837541929851 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> (state, Instance Of, country) (states, routinely supply, aid) -> state (9509ms) What countries supplied aid? Ankara -7.212157417756265 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> (Ankara, Instance Of, country) (Ankara, wants to begin supplying, aid) -> Ankara (9604ms) What countries supplied aid? France 18 -7.259558903042546 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> (France 18, Instance Of, country) (France, has supplied, economic aid and troops) -> France 18 (9605ms) What countries supplied aid? USA -7.2696019041176285 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> $x: ($x, instance of, countries) ($x, of provide, aid) -> (USA, Instance Of, country) (USA, actually provided most of, the aid) -> USA (9604ms) What countries supplied aid? 6 France -7.326196906311518 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> (6 France, Instance Of, country) (France, has supplied, economic aid and troops) -> 6 France (9605ms) What countries supplied aid? third world country -7.454004171499524 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> $x: ($x, instance of, countries) ($x, be supply, aid) -> (third world country, Instance Of, country) (third world countries, are supplied with, medical aids) -> third world country (10982ms) What countries supplied aid? the U.S. -7.621525276861821 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> $x: ($x, study abroad, countries) ($x, supplied, aid) -> (the U.S., have studied abroad in, another country) (the U.S., supplied, aid) -> the U.S. (14542ms) What countries supplied aid? The United States -7.713038077864789 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> $x: ($x, modelling, countries) ($x, supplied, aid) -> (The United States, seldom follows the models of, other countries) (The United States, is supplying, military aid) -> The United States (12879ms) What countries supplied aid? China -7.757723611859106 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> $x: ($x, instance of, countries) ($x, have supply, aid) -> (China, Instance Of, country) (China, has already supplied, some 50 public aid projects) -> China (11505ms) What countries supplied aid? the United States -7.779329309923347 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> $x: ($x, instance of, countries) ($x, to supply, aid) -> (the United States, Instance Of, country) (the United States, had already begun to supply, some aid) -> the United States (17376ms) What countries supplied aid? North America -7.807206842562621 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> $x: ($x, instance of, countries) ($x, furnish, aid) -> (North America, Instance Of, country) (North America, had furnished only, naval and logistical aid) -> North America (11505ms) What countries supplied aid? China. -7.88010024066536 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> $x: ($x, instance of, countries) ($x, have supply, aid) -> (China., Instance Of, country) (China, has already supplied, some 50 public aid projects) -> China. (11841ms) What countries supplied aid? The U.S. -7.958357444573487 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> $x: ($x, top the list of, countries) ($x, supplied, aid) -> (The U.S., routinely tops the list of, countries) (the U.S., had already begun to supply, some aid) -> The U.S. (14046ms) What countries supplied aid? the Unite States -8.04315056546983 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> $x: ($x, instance of, countries) ($x, to supply, aid) -> (the Unite States, Instance Of, country) (the United States, had already begun to supply, some aid) -> the Unite States (17376ms) What countries supplied aid? Sweden -8.186813955781703 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> $x: ($x, instance of, countries) ($x, furnish, aid) -> (Sweden, Instance Of, country) (Sweden, furnish, their stipulated aid) -> Sweden (12515ms) What countries supplied aid? European country -8.20098165983822 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> $x: ($x, instance of, countries) ($x, of provide, aid) -> (European country, Instance Of, country) (European countries, provide the bulk of, aid) -> European country (12516ms) What countries supplied aid? USA. -8.211102521975803 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> $x: ($x, instance of, countries) ($x, of provide, aid) -> (USA., Instance Of, country) (USA, actually provided most of, the aid) -> USA. (12554ms) What countries supplied aid? 44 employer -8.218218203872429 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> $x: ($x, instance of, countries) ($x, furnish, aid) -> (44 employer, Instance Of, country) (Employer, must furnish, medical aid ? approval) -> 44 employer (12554ms) What countries supplied aid? Europe -8.273443971730082 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> $x: ($x, instance of, countries) ($x, of provide, aid) -> (Europe, Instance Of, country) (Europe, could provide a significant amount of, aid) -> Europe (13060ms) What countries supplied aid? Intel -8.468145599521895 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> $x: ($x, instance of, countries) ($x, be supply, aid) -> (Intel, Instance Of, major of the country) (Intel, was heavily involved in supplying, immediate aid) -> Intel (18768ms) What countries supplied aid? North and South America -8.549525677335401 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> $x: ($x, instance of, countries) ($x, furnish, aid) -> (North and South America, Instance Of, country) (North America, had furnished only, naval and logistical aid) -> North and South America (19024ms) What countries supplied aid? North-America -8.620412145544893 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> $x: ($x, instance of, countries) ($x, furnish, aid) -> (North-America, Instance Of, country) (North America, had furnished only, naval and logistical aid) -> North-America (19024ms) What countries supplied aid? North & South America -8.77823139095236 What countries supplied aid? -> $x: ($x, instance of, countries) ($x, supplied, aid) -> $x: ($x, instance of, countries) ($x, furnish, aid) -> (North & South America, Instance Of, country) (North America, had furnished only, naval and logistical aid) -> North & South America (19417ms) What companies has BAT owned? Brown & Williamson -4.395408431499474 What companies has BAT owned? -> $x: ($x, instance of, companies) (BAT, owned, $x) -> (Brown & Williamson, Instance Of, company) (BAT, owns 100 % of, Brown & Williamson) -> Brown & Williamson (1942ms) What companies has BAT owned? Bats Global Markets -4.762102273907678 What companies has BAT owned? -> $x: ($x, instance of, companies) (BAT, owned, $x) -> (Bats Global Markets, Instance Of, company) (BATS Europe, is owned by, BATS Global Markets) -> Bats Global Markets (1942ms) What companies has BAT owned? School -5.075291185799822 What companies has BAT owned? -> $x: ($x, instance of, companies) (BAT, owned, $x) -> (School, Instance Of, company) (? bat, carry their own books to, school) -> School (1942ms) What companies has BAT owned? Kelly's -6.767597540510904 What companies has BAT owned? -> $x: ($x, instance of, companies) (BAT, owned, $x) -> $x: ($x, instance of, companies) (BAT, from buy, $x) -> (Kelly's, Instance Of, company) (brand new bats, bought directly from, Kelly) -> Kelly's (12182ms) What companies has BAT owned? a group -6.976292809752059 What companies has BAT owned? -> $x: ($x, instance of, companies) (BAT, owned, $x) -> $x: (companies, offer include, $x) (BAT, owned, $x) -> (the company, included their offer to, a group) (Bats, is owned by, a group) -> a group (6285ms) What companies has BAT owned? Hardware Store -6.997229779605754 What companies has BAT owned? -> $x: ($x, instance of, companies) (BAT, owned, $x) -> $x: ($x, instance of, companies) (BAT, in purchase, $x) -> (Hardware Store, Instance Of, private company) (Bat houses, can be purchased in, hardware stores) -> Hardware Store (6570ms) What companies has BAT owned? Last night I -7.069950036982564 What companies has BAT owned? -> $x: ($x, instance of, companies) (BAT, owned, $x) -> $x: ($x, instance of, companies) (BAT, from carry, $x) -> (Last night I, Instance Of, guest of the Ford Motor Company) ('s hot bats, carried over from, last night) -> Last night I (14181ms) What companies has BAT owned? B&W -7.088133191007337 What companies has BAT owned? -> $x: ($x, instance of, companies) (BAT, owned, $x) -> $x: ($x, instance of, companies) (BAT, be the parent company of, $x) -> (B&W, Instance Of, company) (12 BAT Ind, is the parent company of, B&W) -> B&W (12183ms) What companies has BAT owned? hardware store -7.088532120687972 What companies has BAT owned? -> $x: ($x, instance of, companies) (BAT, owned, $x) -> $x: ($x, instance of, companies) (BAT, in purchase, $x) -> (hardware store, Instance Of, company) (Bat houses, can be purchased in, hardware stores) -> hardware store (6571ms) What companies has BAT owned? Kelly -7.134406325974645 What companies has BAT owned? -> $x: ($x, instance of, companies) (BAT, owned, $x) -> $x: ($x, instance of, companies) (BAT, from buy, $x) -> (Kelly, Instance Of, company) (brand new bats, bought directly from, Kelly) -> Kelly (12183ms) What companies has BAT owned? insect -7.267730069114185 What companies has BAT owned? -> $x: ($x, instance of, companies) (BAT, owned, $x) -> (insect, Instance Of, PEST CONTROL company pest) (A single bat, will eat its own weight in, insects) -> insect (3629ms) What companies has BAT owned? Ceramics -7.470130815946483 What companies has BAT owned? -> $x: ($x, instance of, companies) (BAT, owned, $x) -> $x: ($x, instance of, companies) (BAT, be famous, $x) -> (Ceramics, Instance Of, company) (Bat Trang Ceramic Village, is famous for, ceramics) -> Ceramics (14083ms) What companies has BAT owned? Flamingo -7.5365667816289 What companies has BAT owned? -> $x: ($x, instance of, companies) (BAT, owned, $x) -> $x: ($x, instance of, companies) (BAT, be be run, $x) -> (Flamingo, Instance Of, company) (The Bat Islands, are a long run from, Flamingo) -> Flamingo (8247ms) What companies has BAT owned? CASA -8.262971311983895 What companies has BAT owned? -> $x: ($x, instance of, companies) (BAT, owned, $x) -> $x: ($x, instance of, companies) (BAT, be be run, $x) -> (CASA, Instance Of, company) (casaRun.bat, is used to run, casa) -> CASA (8863ms) What companies has BAT owned? The school -8.572169074435621 What companies has BAT owned? -> $x: ($x, instance of, companies) (BAT, owned, $x) -> $x: ($x, modelling, companies) (BAT, owned, $x) -> (The school, is modeled after, the old company schools) (? bat, carry their own books to, school) -> The school (5296ms) What companies has BAT owned? school -14.612202425147844 What companies has BAT owned? -> what [ company have bat own ] ? -> what big company have bat own ? -> $x: ($x, instance of, big company) (bat, own, $x) -> (school, Instance Of, medium/big size company or organization) (? bat, carry their own books to, school) -> school (16134ms) Where does chocolate come from? the Gallery Room -6.695205452232306 Where does chocolate come from? -> $x: (chocolate, does come from in, $x) -> $x: (chocolate, come from in, $x) -> (chocolate, comes from in, the Gallery Room) -> the Gallery Room (16599ms) Where does chocolate come from? France -8.1831657056829 Where does chocolate come from? -> $x: (chocolate, does come from in, $x) -> $x: (chocolate, come from in, $x) -> $x: (chocolate, exist in, $x) -> (almond filled chocolates, have existed in, France) -> France (18096ms) Where does chocolate come from? Belgium -8.312288026138823 Where does chocolate come from? -> $x: (chocolate, does come from in, $x) -> $x: (chocolate, come from in, $x) -> $x: (chocolate, arrive in, $x) -> (chocolates, arrived in, Belgium) -> Belgium (18097ms) Where does chocolate come from? State -8.353629671312921 Where does chocolate come from? -> where do [ chocolate come ] from ? -> what year do chocolate come out ? -> $x: ($x, instance of, year) (chocolate, come out, $x) -> (State, Instance Of, year tournament) (the chocolate, does come from out of, state) -> State (18096ms) Where does chocolate come from? Europe -8.383480654085822 Where does chocolate come from? -> $x: (chocolate, does come from in, $x) -> $x: (chocolate, come from in, $x) -> $x: (chocolate, arrive in, $x) -> (Chocolate, arrived in, Europe) -> Europe (18096ms) Where does chocolate come from? London -8.3879016387936 Where does chocolate come from? -> $x: (chocolate, does come from in, $x) -> $x: (chocolate, come from in, $x) -> $x: (chocolate, arrive in, $x) -> (chocolate, arrived in, London) -> London (18096ms) Where does chocolate come from? Spain -8.417080158945852 Where does chocolate come from? -> $x: (chocolate, does come from in, $x) -> $x: (chocolate, come from in, $x) -> $x: (chocolate, arrive in, $x) -> (chocolate, arrived in, Spain) -> Spain (18163ms) Where does chocolate come from? Cleveland -8.470286169558593 Where does chocolate come from? -> $x: (chocolate, does come from in, $x) -> $x: (chocolate, come from in, $x) -> $x: (chocolate, raise in, $x) -> ('s Chocolates, was raised in, Cleveland) -> Cleveland (18162ms) Where does chocolate come from? England -8.47470715426637 Where does chocolate come from? -> $x: (chocolate, does come from in, $x) -> $x: (chocolate, come from in, $x) -> $x: (chocolate, exist in, $x) -> (numerous chocolate houses, existed in, England) -> England (18163ms) Where does chocolate come from? Carpet -8.581527180181734 Where does chocolate come from? -> where do [ chocolate come ] from ? -> what year do chocolate come out ? -> $x: ($x, instance of, year) (chocolate, come out, $x) -> (Carpet, Instance Of, year new, good condition) (Hot Chocolate, come out of, carpets) -> Carpet (18163ms) Where does chocolate come from? the cold -8.795993502026532 Where does chocolate come from? -> $x: (chocolate, does come from in, $x) -> $x: (chocolate, come from in, $x) -> ($ 1 Hot Chocolate or Hot Mocha, Come in from, the cold) -> the cold (16599ms) Where does chocolate come from? Blood -8.993174233613265 Where does chocolate come from? -> where do [ chocolate come ] from ? -> what year do chocolate come out ? -> $x: ($x, instance of, year) (chocolate, come out, $x) -> (Blood, Instance Of, year-long series) (the chocolate-strawberry syrup mix, came out for, blood) -> Blood (18163ms) Who was the captain of the Titanic? Edward Smith 3.377083714006817 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> (Edward Smith, was the captain of, the Titanic) -> Edward Smith (2009ms) Who was the captain of the Titanic? Dick Clark 2.183322146133709 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> (Dick Clark, was the captain of, the Titanic) -> Dick Clark (2010ms) Who was the captain of the Titanic? Edward J. Smith 2.0061330826638555 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> (Edward J. Smith, was the captain of, the Titanic) -> Edward J. Smith (2010ms) Who was the captain of the Titanic? ugly ;A 1.4690517085319095 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> (ugly ;A, is the captain of, the Titanic richer) -> ugly ;A (2009ms) Who was the captain of the Titanic? deviantART More 1.4266748023835802 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> (deviantART More, is the captain of, the Titanic richer) -> deviantART More (2677ms) Who was the captain of the Titanic? deviantART Details 1.4062736835196281 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> (deviantART Details, is the captain of, the Titanic richer) -> deviantART Details (2677ms) Who was the captain of the Titanic? Captain Edward John Smith 1.367433522975685 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> (Captain Edward John Smith, was the captain of, the Titanic) -> Captain Edward John Smith (2677ms) Who was the captain of the Titanic? Rosenthal 0.45691291107455667 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> (Rosenthal, is the captain of, the Titanic) -> Rosenthal (2698ms) Who was the captain of the Titanic? Obama -0.13813636208227065 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> (Obama, was the captain of, the Titanic) -> Obama (2698ms) Who was the captain of the Titanic? The most famous -0.28482106326782075 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> (The most famous, is the captain of, the Titanic) -> The most famous (2698ms) Who was the captain of the Titanic? RMS Carpathia -0.8026183004194172 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: (the Titanic, rescue, $x) -> (Sinking of the Titanic, Rescue ship, RMS Carpathia) -> RMS Carpathia (4229ms) Who was the captain of the Titanic? SS Californian -0.8026183004194172 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: (the Titanic, rescue, $x) -> (Sinking of the Titanic, Rescue ship, SS Californian) -> SS Californian (4229ms) Who was the captain of the Titanic? ?Full -0.9090921019002856 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, captain of, titanic) -> (?Full, says the captain of, the Titanic) -> ?Full (2735ms) Who was the captain of the Titanic? Bush -1.867887275738954 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, captain of, titanic) -> (Bush, were captain of, the Titanic) -> Bush (2788ms) Who was the captain of the Titanic? he?s -1.8793440615325863 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, be member of, the Titanic) -> (he?s, was a member of, The Titanic Players) -> he?s (4293ms) Who was the captain of the Titanic? Green Gables -1.9373279863696498 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (Green Gables, sails on, the Titanic) -> Green Gables (3280ms) Who was the captain of the Titanic? Christopher -1.971366610640017 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, captain of, titanic) -> (Christopher, Is Captain Of, The Titanic Important) -> Christopher (2788ms) Who was the captain of the Titanic? ? Stephen Cox -2.1800141462258886 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, be the author of, the Titanic) -> (? Stephen Cox, is the author of, ?The Titanic Story) -> ? Stephen Cox (2809ms) Who was the captain of the Titanic? Lukes Lane Primary School -2.267891843418174 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, be member of, the Titanic) -> (Lukes Lane Primary School, was a member of, the Titanic Society) -> Lukes Lane Primary School (4293ms) Who was the captain of the Titanic? 18 -2.3655405543682675 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, be member of, the Titanic) -> (18, was the youngest member of, the Titanic crew) -> 18 (4293ms) Who was the captain of the Titanic? international waters -2.411647708150931 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: (the Titanic, rest in, $x) -> (The Titanic, rests in, international waters) -> international waters (2908ms) Who was the captain of the Titanic? Arthur Peuchen -2.4395184835780226 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Arthur Peuchen, boarded, the Titanic) -> Arthur Peuchen (4229ms) Who was the captain of the Titanic? One such example -2.572625184408663 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, captain, the Titanic) -> (One such example, might have been the captain on, the Titanic) -> One such example (3280ms) Who was the captain of the Titanic? unreachable depths -2.628410766266079 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: (the Titanic, rest in, $x) -> (the Titanic, was resting in, unreachable depths) -> unreachable depths (2908ms) Who was the captain of the Titanic? NY -2.8771463898268554 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (NY, boarded, the Titanic) -> NY (4229ms) Who was the captain of the Titanic? three boys -2.8962521789801703 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (three boys, boarded, the RMS Titanic) -> three boys (4229ms) Who was the captain of the Titanic? Building C -2.9091485821390894 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, alone be, the Titanic) -> (Building C, alone is large enough to hold, the Titanic) -> Building C (3728ms) Who was the captain of the Titanic? Woody -2.9426774982854695 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, captain of, titanic) -> (Woody, were Captain of, the Titanic) -> Woody (2789ms) Who was the captain of the Titanic? New York -2.9468811502530037 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (New York, boarded, the Titanic) -> New York (4229ms) Who was the captain of the Titanic? New York City -2.969083184642172 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (New York City, boarded, the Titanic) -> New York City (4229ms) Who was the captain of the Titanic? a family -3.1297777935913134 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (a family, was almost going to board, the Titanic) -> a family (4229ms) Who was the captain of the Titanic? Leonardo DiCaprio -3.1332509356416605 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (Leonardo DiCaprio, set sail on, the Titanic) -> Leonardo DiCaprio (3425ms) Who was the captain of the Titanic? the Mauretania -3.2361807386771675 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (the Mauretania, boarded, the Titanic) -> the Mauretania (4293ms) Who was the captain of the Titanic? Anna -3.26807898482676 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Anna, boarded, the Titanic) -> Anna (4293ms) Who was the captain of the Titanic? Oscar Rudolph Theg -3.3492693112998135 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Oscar Rudolph Theg, boarded, the Titanic) -> Oscar Rudolph Theg (4293ms) Who was the captain of the Titanic? a leather worker -3.362532318125442 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (a leather worker, boarded, the Titanic) -> a leather worker (4293ms) Who was the captain of the Titanic? Dr. Robert Ballard -3.3660494606951423 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: (the Titanic, found by, $x) -> (the Titanic, was found by, Dr. Robert Ballard) -> Dr. Robert Ballard (2933ms) Who was the captain of the Titanic? Babler -3.3671072871929346 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, be head of, the Titanic) -> (Babler, is head of, the Switzerland Titanic Society) -> Babler (3728ms) Who was the captain of the Titanic? only the wealthy -3.4339418155383616 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (only the wealthy, were allowed to board, the luxurious Titanic) -> only the wealthy (4293ms) Who was the captain of the Titanic? very wealthy people -3.434954709622395 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (very wealthy people, initially boarded, the Titanic) -> very wealthy people (4391ms) Who was the captain of the Titanic? real-life children -3.442869118294451 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (real-life children, sailed aboard, the Titanic) -> real-life children (3425ms) Who was the captain of the Titanic? Spanish domestic Encarnacion Reynaldo -3.448071046210987 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Spanish domestic Encarnacion Reynaldo, boarded, the Titanic) -> Spanish domestic Encarnacion Reynaldo (4391ms) Who was the captain of the Titanic? the Manitobans -3.4598629937293124 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (the Manitobans, sailed on, the RMS Titanic) -> the Manitobans (3424ms) Who was the captain of the Titanic? exactly the same number -3.4649059660311314 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (exactly the same number, sailed on, the Titanic) -> exactly the same number (3450ms) Who was the captain of the Titanic? The New Republican party -3.4710781187050728 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (The New Republican party, is setting sail on, the Titanic) -> The New Republican party (3451ms) Who was the captain of the Titanic? the Jesuit master -3.4724561511802627 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (the Jesuit master, boarded, the Titanic) -> the Jesuit master (4391ms) Who was the captain of the Titanic? ?People -3.494198223663275 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (?People, sailed on, the Titanic) -> ?People (3451ms) Who was the captain of the Titanic? Soto y Vallejo -3.524340484915619 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Soto y Vallejo, boarded, the Titanic) -> Soto y Vallejo (4391ms) Who was the captain of the Titanic? Mr Smith -3.5286173994994403 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Mr Smith, boarded, the Titanic) -> Mr Smith (4391ms) Who was the captain of the Titanic? six year old daughter -3.5478601580133007 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (six year old daughter, boarded, the Titanic) -> six year old daughter (4391ms) Who was the captain of the Titanic? Co Cork -3.549018518363392 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Co Cork, boarded, the Titanic) -> Co Cork (4391ms) Who was the captain of the Titanic? a minister -3.5605130996845324 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (a minister, boarded, the Titanic) -> a minister (4391ms) Who was the captain of the Titanic? William Ali -3.573776053807866 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (William Ali, boarded, the Titanic) -> William Ali (4617ms) Who was the captain of the Titanic? Andrick -3.574509221137475 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, be member of, the Titanic) -> (Andrick, is a longtime member of, the Titanic Historical Society) -> Andrick (4617ms) Who was the captain of the Titanic? Mahala?s French maid -3.5933079201401656 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Mahala?s French maid, boarded, the Titanic) -> Mahala?s French maid (4617ms) Who was the captain of the Titanic? ?the same number -3.6077529056844377 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (?the same number, sailed on, the fateful Titanic voyage) -> ?the same number (3451ms) Who was the captain of the Titanic? The Laroche family -3.6090793633428326 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (The Laroche family, boarded, the Titanic) -> The Laroche family (4617ms) Who was the captain of the Titanic? Anna Sophia Turja -3.612760284475765 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Anna Sophia Turja, boarded, the Titanic) -> Anna Sophia Turja (4617ms) Who was the captain of the Titanic? a companion -3.6127954518658947 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (a companion, sails on, the Titanic) -> a companion (3450ms) Who was the captain of the Titanic? passengers -3.620217585571267 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (passengers, board, the famous ship Titanic) -> passengers (4617ms) Who was the captain of the Titanic? Washington A. Roebling II -3.620489607921207 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Washington A. Roebling II, boarded, the Titanic) -> Washington A. Roebling II (4617ms) Who was the captain of the Titanic? The MS Balmoral -3.6309510452689335 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (The MS Balmoral, sets sail for, the Titanic... View Full Caption) -> The MS Balmoral (3512ms) Who was the captain of the Titanic? crew-- -3.6356698924190503 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (crew--, sailed on, the Titanic) -> crew-- (3512ms) Who was the captain of the Titanic? peace -3.6567147669206803 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: (the Titanic, rest in, $x) -> (the Titanic, can again rest in, peace) -> peace (2908ms) Who was the captain of the Titanic? Eleanore and George -3.6684647128746835 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Eleanore and George, boarded, the Titanic) -> Eleanore and George (4815ms) Who was the captain of the Titanic? Bridget Delia Bradley -3.6684647128746835 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Bridget Delia Bradley, boarded, the Titanic) -> Bridget Delia Bradley (4617ms) Who was the captain of the Titanic? William and Marie -3.6684647128746835 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (William and Marie, boarded, the Titanic) -> William and Marie (4815ms) Who was the captain of the Titanic? several Philadelphia-area families -3.6722004707954805 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (several Philadelphia-area families, sailed on, the Titanic) -> several Philadelphia-area families (3512ms) Who was the captain of the Titanic? Dattilo -3.674423549316467 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, be member of, the Titanic) -> (Dattilo, is a longtime member of, the Titanic Historical Society) -> Dattilo (4815ms) Who was the captain of the Titanic? very few children -3.6761940363201258 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (very few children, sailed on, the Titanic) -> very few children (3512ms) Who was the captain of the Titanic? dogs -3.6835451126599446 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (dogs, sailed on, the Titanic) -> dogs (3512ms) Who was the captain of the Titanic? no mummy -3.7011154632063605 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (no mummy, sailed on, the Titanic) -> no mummy (3686ms) Who was the captain of the Titanic? an Englishwoman -3.704363206396897 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (an Englishwoman, sets sail on, the Titanic) -> an Englishwoman (3686ms) Who was the captain of the Titanic? Three Widener family members -3.760699003604728 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (Three Widener family members, sailed on, the Titanic) -> Three Widener family members (3686ms) Who was the captain of the Titanic? Lucy Ridsdale -3.763321707013021 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Lucy Ridsdale, boarded, the Titanic) -> Lucy Ridsdale (4815ms) Who was the captain of the Titanic? a poor choice -3.7849645517388133 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (a poor choice, sailed back on, the Titanic) -> a poor choice (3686ms) Who was the captain of the Titanic? Francis Browne -3.828357277377947 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Francis Browne, boarded, the Titanic) -> Francis Browne (4815ms) Who was the captain of the Titanic? John Harper -3.8564901222443972 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (John Harper, boarded, the Titanic) -> John Harper (4815ms) Who was the captain of the Titanic? Michael Dunnagan -3.8649524238816326 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (Michael Dunnagan, to sail on, the Titanic) -> Michael Dunnagan (3686ms) Who was the captain of the Titanic? Elna Strom -3.8786596139105423 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Elna Strom, boarded, the Titanic) -> Elna Strom (4815ms) Who was the captain of the Titanic? Mary -3.8923037203247532 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Mary, boarded, the Titanic) -> Mary (4849ms) Who was the captain of the Titanic? Rood -3.8923037203247532 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Rood, boarded, the Titanic) -> Rood (4848ms) Who was the captain of the Titanic? Behr -3.8923037203247532 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Behr, boarded, the Titanic) -> Behr (4848ms) Who was the captain of the Titanic? the tour guides -3.920055112089393 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, be member of, the Titanic) -> (the tour guides, are actual members of, the Titanic cast) -> the tour guides (4849ms) Who was the captain of the Titanic? 111 other passengers -3.921944994038315 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (111 other passengers, boarded, the Titanic) -> 111 other passengers (4849ms) Who was the captain of the Titanic? 705 survivors -3.925010038555293 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: (the Titanic, rescue, $x) -> (the Titanic, rescued, 705 survivors) -> 705 survivors (4849ms) Who was the captain of the Titanic? 123 people -3.9819263370210556 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (123 people, boarded, the Titanic) -> 123 people (4849ms) Who was the captain of the Titanic? 100 Irish passengers -3.988751804667666 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (100 Irish passengers, boarded, the Titanic) -> 100 Irish passengers (4848ms) Who was the captain of the Titanic? 497 third-class passengers -4.0183225766129205 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (497 third-class passengers, boarded, the Titanic) -> 497 third-class passengers (4890ms) Who was the captain of the Titanic? 710 steerage passengers -4.023627747721795 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (710 steerage passengers, boarded, the Titanic) -> 710 steerage passengers (4890ms) Who was the captain of the Titanic? 12 honeymoon couples -4.0438355744068595 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (12 honeymoon couples, sailed on, the Titanic) -> 12 honeymoon couples (3728ms) Who was the captain of the Titanic? 2,228 passengers -4.0553793250806365 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (2,228 passengers, boarded, the Titanic) -> 2,228 passengers (4890ms) Who was the captain of the Titanic? 2,224 passengers -4.0553793250806365 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (2,224 passengers, boarded, the Titanic) -> 2,224 passengers (4890ms) Who was the captain of the Titanic? An Irish 19 year-old man -4.09130608789733 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (An Irish 19 year-old man, boarded, the Titanic) -> An Irish 19 year-old man (4891ms) Who was the captain of the Titanic? dock -4.133362865597988 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: (the Titanic, rest in, $x) -> (The Titanic, rests in, dock) -> dock (2908ms) Who was the captain of the Titanic? 88-year-old Edwina Mackenzie -4.195012396711002 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (88-year-old Edwina Mackenzie, had sailed on, the Titanic) -> 88-year-old Edwina Mackenzie (3728ms) Who was the captain of the Titanic? She and her husband -4.2059285570894795 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (She and her husband, boarded, the Titanic) -> She and her husband (4890ms) Who was the captain of the Titanic? Guntur -4.230058696004661 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Guntur, boarded, the Titanic) -> Guntur (4890ms) Who was the captain of the Titanic? death -4.263785729968738 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (death, had boarded, the Titanic) -> death (4890ms) Who was the captain of the Titanic? The ship -4.298630289753185 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (The ship, sail on is, the Titanic) -> The ship (3728ms) Who was the captain of the Titanic? relatives -4.32443253112295 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (relatives, sailed on, the Titanic) -> relatives (3728ms) Who was the captain of the Titanic? Bernanke -4.340217078639161 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, steer, the Titanic) -> (Bernanke, has steered, the Titanic) -> Bernanke (2789ms) Who was the captain of the Titanic? Saalfeld -4.342869207373276 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Saalfeld, boarded, the Titanic) -> Saalfeld (5014ms) Who was the captain of the Titanic? Twelve dogs -4.344919121239284 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (Twelve dogs, set sail on, the Titanic) -> Twelve dogs (3727ms) Who was the captain of the Titanic? an iceberg -4.376358189830235 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: (the Titanic, rescue, $x) -> (the Titanic, to rescue, an iceberg) -> an iceberg (5014ms) Who was the captain of the Titanic? Mrs -4.391982174281123 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Mrs, boarded, the Titanic) -> Mrs (5014ms) Who was the captain of the Titanic? State residents -4.406464326618732 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (State residents, set sail Those on, the Titanic) -> State residents (3728ms) Who was the captain of the Titanic? How many black people -4.440637493314109 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (How many black people, sailed on, the Titanic) -> How many black people (5014ms) Who was the captain of the Titanic? a ship -4.702623226285961 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, have rescue, the Titanic) -> (a ship, had rescued, the survivors of the Titanic) -> a ship (5014ms) Who was the captain of the Titanic? Ireland -4.778953800794691 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Ireland, boarded, the Titanic) -> Ireland (5041ms) Who was the captain of the Titanic? a museum -4.819040972819179 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: (the Titanic, rest in, $x) -> (the Titanic, to spend the rest of its days in, a museum) -> a museum (2908ms) Who was the captain of the Titanic? Syrians -4.867964548747457 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Syrians, Boarded, the Titanic. ?) -> Syrians (5042ms) Who was the captain of the Titanic? Gumoshtnik -4.905200104260085 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Gumoshtnik, boarded, the Titanic) -> Gumoshtnik (5042ms) Who was the captain of the Titanic? Browne -4.911816880953188 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Browne, boarded, the Titanic) -> Browne (5041ms) Who was the captain of the Titanic? Newcastle -4.935262863515728 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Newcastle, boarded, the Titanic) -> Newcastle (5041ms) Who was the captain of the Titanic? the kind -4.951605033141349 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (the kind, might board, the Titanic) -> the kind (5041ms) Who was the captain of the Titanic? Francisco -4.967093942871269 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Francisco, boarded, the Titanic) -> Francisco (5042ms) Who was the captain of the Titanic? Harper -4.967093942871269 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Harper, boarded, the Titanic) -> Harper (5068ms) Who was the captain of the Titanic? Ellen -4.9759359649891195 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Ellen, boarded, the Titanic) -> Ellen (5068ms) Who was the captain of the Titanic? the survivors -4.994190630243185 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: (the Titanic, rescue, $x) -> (the Titanic, came to rescue, the survivors) -> the survivors (5068ms) Who was the captain of the Titanic? the famous fashion designer -5.020304081948491 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (the famous fashion designer, is about to board, the Titanic) -> the famous fashion designer (5068ms) Who was the captain of the Titanic? Thieves -5.032524579789135 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Thieves, boarded, the Titanic) -> Thieves (5068ms) Who was the captain of the Titanic? the passengers -5.065747067368456 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (the passengers, sailed on, the Titanic) -> the passengers (5068ms) Who was the captain of the Titanic? the icy waters -5.081910710319433 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: (the Titanic, rescue, $x) -> (the Titanic, were rescued from, the icy waters) -> the icy waters (5068ms) Who was the captain of the Titanic? the chance -5.099266059407095 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (the chance, board, the RMS Titanic) -> the chance (5115ms) Who was the captain of the Titanic? the two -5.127199207587674 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (the two, were secretly sailing on, the Titanic) -> the two (5115ms) Who was the captain of the Titanic? the couple -5.173702538915984 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (the couple, boarded, the Titanic) -> the couple (5116ms) Who was the captain of the Titanic? the bankers -5.18422856265726 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, steer, the Titanic) -> (the bankers, only steered, the financial Titanic) -> the bankers (2810ms) Who was the captain of the Titanic? the full No one -5.200955491815343 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (the full No one, boarded, the Titanic) -> the full No one (5115ms) Who was the captain of the Titanic? the guy -5.215614369999377 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, steer, the Titanic) -> (the guy, steered, the Titanic) -> the guy (2810ms) Who was the captain of the Titanic? the coronation -5.25944997622133 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (the coronation, also sailed aboard, the Titanic) -> the coronation (5116ms) Who was the captain of the Titanic? The family -5.328728492932731 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (The family, boarded, the Titanic) -> The family (5116ms) Who was the captain of the Titanic? the real people -5.358278105770486 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (the real people, sailed on, the Titanic) -> the real people (5115ms) Who was the captain of the Titanic? the same number -5.402427357301136 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (the same number, sailed on, the Titanic) -> the same number (5157ms) Who was the captain of the Titanic? The two -5.422908874763728 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (The two, boarded, the Titanic) -> The two (5157ms) Who was the captain of the Titanic? the children?s dogs -5.43084690742897 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (the children?s dogs, had boarded, the Titanic) -> the children?s dogs (5157ms) Who was the captain of the Titanic? The three ladies -5.450155148938318 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (The three ladies, boarded, the Titanic) -> The three ladies (5157ms) Who was the captain of the Titanic? The wealthy and glamorous passengers -5.462324363541111 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (The wealthy and glamorous passengers, boarded, the Titanic) -> The wealthy and glamorous passengers (5157ms) Who was the captain of the Titanic? The two ladies -5.4705562678022694 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (The two ladies, boarded, the Titanic) -> The two ladies (5157ms) Who was the captain of the Titanic? the same ship -5.615656636009668 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, have rescue, the Titanic) -> (the same ship, had rescued survivors from, the RMS Titanic) -> the same ship (5157ms) Who was the captain of the Titanic? the troubled Massey family -5.6243365326593615 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (the troubled Massey family, set sail on, the Titanic) -> the troubled Massey family (5215ms) Who was the captain of the Titanic? the son -5.643788844292667 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, sail, the Titanic) -> (the son, had sailed on, the Titanic?s sister ship) -> the son (5215ms) Who was the captain of the Titanic? Margaret -6.273859603155181 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Margaret, boarded, the Titanic) -> Margaret (5215ms) Who was the captain of the Titanic? Michael -6.294260722019132 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (Michael, boards, the Titanic) -> Michael (5215ms) Who was the captain of the Titanic? the families -6.589629613226503 Who was the captain of the Titanic? -> $x: ($x, was the captain of, the Titanic) -> $x: ($x, board, the Titanic) -> (the families, boarded, the unsinkable Titanic) -> the families (5247ms) Who was the captain of the Titanic? typical captain -8.129499733902783 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be the titanic captain ? -> $x: (the titanic captain, instance of, $x) -> (Captain of the Titanic, Instance Of, typical captain) -> typical captain (6490ms) Who was the captain of the Titanic? positive thinker -8.148955027001767 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be the titanic captain ? -> $x: (the titanic captain, instance of, $x) -> (Captain of the Titanic, Instance Of, positive thinker) -> positive thinker (6490ms) Who was the captain of the Titanic? experienced captain -8.149562008545981 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be the titanic captain ? -> $x: (the titanic captain, instance of, $x) -> (captain of the Titanic, Instance Of, experienced captain) -> experienced captain (6490ms) Who was the captain of the Titanic? strong captain -8.156918176078582 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be the titanic captain ? -> $x: (the titanic captain, instance of, $x) -> (Captain of the Titanic, Instance Of, strong captain) -> strong captain (6490ms) Who was the captain of the Titanic? Eastern Europe -8.23307470357156 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, be a product of, the titanic) -> (Eastern Europe, were a product of, the titanic clash) -> Eastern Europe (5388ms) Who was the captain of the Titanic? great commander -8.294637795246707 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be the titanic captain ? -> $x: (the titanic captain, instance of, $x) -> (Captain of the Titanic, Instance Of, great commander) -> great commander (6490ms) Who was the captain of the Titanic? The Britannic -8.573313594345763 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, be the sister of, the titanic) -> (The Britannic, was the sister ship of, the Titanic) -> The Britannic (5388ms) Who was the captain of the Titanic? great guy -8.932772643782048 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be the titanic captain ? -> $x: (the titanic captain, instance of, $x) -> (captain of the Titanic, Instance Of, great guy) -> great guy (6490ms) Who was the captain of the Titanic? The Olympic -9.075756660102778 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, be the sister of, the titanic) -> (The Olympic, was the sister ship of, the Titanic) -> The Olympic (5452ms) Who was the captain of the Titanic? Millvina Dean -9.080327618047185 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, be the last of, the titanic) -> (Millvina Dean, was the last survivor of, the Titanic) -> Millvina Dean (5453ms) Who was the captain of the Titanic? Jesuit tempore co-adjutor -9.125763427377413 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be the titanic captain ? -> $x: (the titanic captain, instance of, $x) -> (Captain of the Titanic Edward Smith, Instance Of, Jesuit tempore co-adjutor) -> Jesuit tempore co-adjutor (6490ms) Who was the captain of the Titanic? countertop installation -9.128402062275745 Who was the captain of the Titanic? -> who be the captain [ of the titanic ] ? -> who be of the titanic captain ? -> $x: ($x, be of, the titanic captain) -> $x: ($x, of, titanic captain) -> (countertop installation, Instance Of, brass key ring s s titanic captain office affordable interior decorating advice service) -> countertop installation (5625ms) Who was the captain of the Titanic? Maury Yeston -9.14545776853348 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who compose the titanic ? -> $x: ($x, compose, the titanic) -> $x: ($x, compose, titanic) -> (Maury Yeston, Plays Composed, Titanic) -> Maury Yeston (6490ms) Who was the captain of the Titanic? Mrs. Harrison -9.19110415093588 Who was the captain of the Titanic? -> who be the captain [ of the titanic ] ? -> who be of the titanic captain ? -> $x: ($x, be of, the titanic captain) -> $x: ($x, of, titanic captain) -> (Mrs. Harrison, Instance Of, descendant of the HMS Titanic's Captain Smith) -> Mrs. Harrison (5625ms) Who was the captain of the Titanic? Cobh -9.209088380165525 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, be the last of, the titanic) -> (Cobh, was the last port of, the Titanic) -> Cobh (5453ms) Who was the captain of the Titanic? R.M.S. Olympic -9.290555942807506 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, be the sister of, the titanic) -> (R.M.S. Olympic, is the sister ship of, the Titanic) -> R.M.S. Olympic (5626ms) Who was the captain of the Titanic? expert -9.371547832437557 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be the titanic captain ? -> $x: (the titanic captain, instance of, $x) -> (captain of the Titanic, Instance Of, expert) -> expert (6581ms) Who was the captain of the Titanic? Sinking of the Titanic -9.46332685527264 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (Sinking of the Titanic, Made shipwreck, Wreck of the RMS Titanic) -> Sinking of the Titanic (6581ms) Who was the captain of the Titanic? woman -9.466442643113242 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be the titanic captain ? -> $x: (the titanic captain, instance of, $x) -> (captain of the Titanic, Instance Of, woman) -> woman (6581ms) Who was the captain of the Titanic? Edward John Smith -9.510886912362619 Who was the captain of the Titanic? -> who be the captain [ of the titanic ] ? -> who be of the titanic captain ? -> $x: ($x, be of, the titanic captain) -> $x: ($x, of, titanic captain) -> (Edward John Smith, Instance Of, captain of RMS Titanic) -> Edward John Smith (5625ms) Who was the captain of the Titanic? character -9.536367345425294 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be the titanic captain ? -> $x: (the titanic captain, instance of, $x) -> (Captain of the Titanic, Instance Of, character) -> character (6581ms) Who was the captain of the Titanic? fact -9.550636336339203 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, be the last of, the titanic) -> (fact, is the last photograph of, the Titanic) -> fact (5626ms) Who was the captain of the Titanic? dummy -9.552554133355594 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be the titanic captain ? -> $x: (the titanic captain, instance of, $x) -> (captain of the TITANIC, Instance Of, dummy) -> dummy (6581ms) Who was the captain of the Titanic? the Olympic -9.579738670032174 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, be the sister of, the titanic) -> (the Olympic, was the sister ship of, the HMS Titanic) -> the Olympic (5626ms) Who was the captain of the Titanic? Benjamin Guggenheim -9.590116635574178 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (Benjamin Guggenheim, went down with, the Titanic) -> Benjamin Guggenheim (5680ms) Who was the captain of the Titanic? careerist -9.69301614438399 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be the titanic captain ? -> $x: (the titanic captain, instance of, $x) -> (Captain Smith of the Titanic, Instance Of, careerist) -> careerist (6581ms) Who was the captain of the Titanic? Thomas Andrews -9.759123615354396 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (Thomas Andrews, went down with, the Titanic) -> Thomas Andrews (5680ms) Who was the captain of the Titanic? Eleven-year-old John Payne -10.075827243991494 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, be a student of, the titanic) -> (Eleven-year-old John Payne, has been a student of, the Titanic) -> Eleven-year-old John Payne (5758ms) Who was the captain of the Titanic? TPS -10.084397793567321 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, be a product of, the titanic) -> (TPS, is a product of, the post- Titanic era) -> TPS (5758ms) Who was the captain of the Titanic? Captain Smith -10.110448584351424 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (Captain Smith, went down with, the Titanic) -> Captain Smith (5758ms) Who was the captain of the Titanic? James Cameron -10.231885729591399 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (James Cameron, made, the movie Titanic) -> James Cameron (6581ms) Who was the captain of the Titanic? Isador Straus -10.257792248125533 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (Isador Straus, went down with, the Titanic) -> Isador Straus (5781ms) Who was the captain of the Titanic? Downton Abbey -10.260444860031116 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (Downton Abbey, went down with, the Titanic) -> Downton Abbey (5781ms) Who was the captain of the Titanic? Englishman -10.314911257566326 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be the titanic captain ? -> $x: (the titanic captain, instance of, $x) -> (Captain Smith of the Titanic, Instance Of, Englishman) -> Englishman (6607ms) Who was the captain of the Titanic? they?d -10.349005295007437 Who was the captain of the Titanic? -> who be the captain [ of the titanic ] ? -> who be of the titanic captain ? -> $x: ($x, be of, the titanic captain) -> $x: ($x, of, titanic captain) -> (they?d, include actual film of, the Titanic?s Captain Smith) -> they?d (5781ms) Who was the captain of the Titanic? help -10.454134073888634 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who think of the titanic ? -> $x: ($x, think of, the titanic) -> (help, think of, the Titanic) -> help (5781ms) Who was the captain of the Titanic? Jesuit -10.47980550225487 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be the titanic captain ? -> $x: (the titanic captain, instance of, $x) -> (Captain Edward Smith of the Titanic, Instance Of, Jesuit) -> Jesuit (6607ms) Who was the captain of the Titanic? call -10.483446078492022 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, be the last of, the titanic) -> (call, was the last stop of, the Titanic) -> call (5781ms) Who was the captain of the Titanic? Gaelic Storm -10.490857338706284 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (Gaelic Storm, made famous in, the blockbuster movie Titanic) -> Gaelic Storm (6607ms) Who was the captain of the Titanic? a 46-year-old auditor -10.574455108579816 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who think of the titanic ? -> $x: ($x, think of, the titanic) -> (a 46-year-old auditor, thought of, the Titanic) -> a 46-year-old auditor (5806ms) Who was the captain of the Titanic? Click here -10.700265067209662 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who think of the titanic ? -> $x: ($x, think of, the titanic) -> (Click here, thought of, the the Titanic disaster) -> Click here (5806ms) Who was the captain of the Titanic? crew members -10.739218142097299 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (crew members, went down with, the RMS Titanic) -> crew members (5805ms) Who was the captain of the Titanic? Ballmer -10.753205586950017 Who was the captain of the Titanic? -> who be the captain [ of the titanic ] ? -> who be of the titanic captain ? -> $x: ($x, be of, the titanic captain) -> $x: ($x, of, titanic captain) -> (Ballmer, Instance Of, Titanic of a Captain) -> Ballmer (5805ms) Who was the captain of the Titanic? Ida Straus -10.83989905907479 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (Ida Straus, went down with, the Titanic) -> Ida Straus (5806ms) Who was the captain of the Titanic? ?My grandfather -10.84441466532725 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, be second on, the titanic) -> (?My grandfather, was the Second Officer on, the Titanic) -> ?My grandfather (5874ms) Who was the captain of the Titanic? The FISTS club -10.882749904842395 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who run the titanic ? -> $x: ($x, run, the titanic) -> (The FISTS club, is also running, the Titanic 24 Hour Sprint) -> The FISTS club (5874ms) Who was the captain of the Titanic? Mr Ismay -10.91105796740624 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who run the titanic ? -> $x: ($x, run, the titanic) -> (Mr Ismay, runs, the Titanic Museum) -> Mr Ismay (5874ms) Who was the captain of the Titanic? J.P. Morgan -10.91335435129117 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who own the titanic ? -> $x: ($x, own, the titanic) -> (J.P. Morgan, owned, the Titanic) -> J.P. Morgan (5874ms) Who was the captain of the Titanic? The engineer -10.942401543052933 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be against the titanic ? -> $x: ($x, be against, the titanic) -> (The engineer, is continually battling against, the titanic might) -> The engineer (5874ms) Who was the captain of the Titanic? John Jacob Astor -11.034620136202161 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (John Jacob Astor, had gone down with, the Titanic) -> John Jacob Astor (5874ms) Who was the captain of the Titanic? John Jacob Astor IV -11.055776305212698 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (John Jacob Astor IV, went down with, the Titanic) -> John Jacob Astor IV (5874ms) Who was the captain of the Titanic? Shine -11.075390719376518 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, be employee of, the titanic) -> (Shine, was an employee of, the Titanic crew) -> Shine (5874ms) Who was the captain of the Titanic? Michigan Senator -11.088298551672402 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be lead the titanic ? -> $x: ($x, be lead, the titanic) -> $x: ($x, lead, titanic) -> (Michigan Senator, led, Titanic investigation) -> Michigan Senator (6061ms) Who was the captain of the Titanic? God -11.10662108625905 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (God, made, the Titanic collide) -> God (6608ms) Who was the captain of the Titanic? popular movies -11.205279528530266 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (popular movies, have been made about, the Titanic) -> popular movies (6607ms) Who was the captain of the Titanic? Eloise Smith -11.246732330211403 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (Eloise Smith, made her way into, the Titanic?s lifeboat No. 6) -> Eloise Smith (6607ms) Who was the captain of the Titanic? Payne -11.33719299129196 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, be a student of, the titanic) -> (Payne, has been a student of, the Titanic) -> Payne (6061ms) Who was the captain of the Titanic? Leonardo Di Caprio -11.346741774800208 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (Leonardo Di Caprio, has made the event of, the Titanic?s demise) -> Leonardo Di Caprio (6633ms) Who was the captain of the Titanic? three Jewish men -11.387186231551478 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (three Jewish men, went down with, the Titanic) -> three Jewish men (6061ms) Who was the captain of the Titanic? an artist -11.397549690509528 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (an artist, later went down with, the S.S. Titanic) -> an artist (6096ms) Who was the captain of the Titanic? the matter -11.422624915749703 Who was the captain of the Titanic? -> who be the captain [ of the titanic ] ? -> who be of the titanic captain ? -> $x: ($x, be of, the titanic captain) -> $x: ($x, of, titanic captain) -> (the matter, was reminiscent of, Titanic captain Edward Smith) -> the matter (6096ms) Who was the captain of the Titanic? the Major Archibald Willingham Butt -11.443100596610957 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (the Major Archibald Willingham Butt, went down with, the Titanic) -> the Major Archibald Willingham Butt (6096ms) Who was the captain of the Titanic? Len -11.462043914761368 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who own the titanic ? -> $x: ($x, own, the titanic) -> (Len, has his own connection to, the Titanic) -> Len (6096ms) Who was the captain of the Titanic? a mess steward -11.462864412333511 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (a mess steward, went down with, the Titanic) -> a mess steward (6096ms) Who was the captain of the Titanic? the White Star Line -11.468462746694595 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who own the titanic ? -> $x: ($x, own, the titanic) -> (the White Star Line, owned, the Titanic ?) -> the White Star Line (6096ms) Who was the captain of the Titanic? there?s Isidor and Ida Straus -11.491815241664344 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (there?s Isidor and Ida Straus, went down with, the Titanic) -> there?s Isidor and Ida Straus (6096ms) Who was the captain of the Titanic? a British journalist -11.504421700208 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (a British journalist, went down with, the Titanic) -> a British journalist (6120ms) Who was the captain of the Titanic? the Titanic -11.522666147376793 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be lead the titanic ? -> $x: ($x, be lead, the titanic) -> $x: ($x, lead, titanic) -> (the Titanic, led by, RMS Titanic Inc) -> the Titanic (6119ms) Who was the captain of the Titanic? Alfred S. Allsop -11.537137018666932 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (Alfred S. Allsop, went down with, the Titanic) -> Alfred S. Allsop (6119ms) Who was the captain of the Titanic? White Star Lines -11.554333177541496 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who own the titanic ? -> $x: ($x, own, the titanic) -> (White Star Lines, owned, the Titanic) -> White Star Lines (6119ms) Who was the captain of the Titanic? Feburary?s ride -11.562740638859216 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be lead the titanic ? -> $x: ($x, be lead, the titanic) -> $x: ($x, be bigger, the titanic) -> (Feburary?s ride, will be bigger than, the Titanic) -> Feburary?s ride (7303ms) Who was the captain of the Titanic? the Oceanic Steam Navigation Company -11.567100636679488 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who own the titanic ? -> $x: ($x, own, the titanic) -> (the Oceanic Steam Navigation Company, owned, the Titanic) -> the Oceanic Steam Navigation Company (6119ms) Who was the captain of the Titanic? the building -11.596853971134383 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who think of the titanic ? -> $x: ($x, think of, the titanic) -> (the building, think of, the city ?s Titanic link) -> the building (6119ms) Who was the captain of the Titanic? Mary Eloise Faulkland-Herne -11.60048783139565 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (Mary Eloise Faulkland-Herne, had gone down with, the Titanic) -> Mary Eloise Faulkland-Herne (6140ms) Who was the captain of the Titanic? Switzerland Henry Bond -11.645009129860384 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (Switzerland Henry Bond, went down with, the Titanic) -> Switzerland Henry Bond (6140ms) Who was the captain of the Titanic? National Geographic magazine -11.64677628641768 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (National Geographic magazine, has made, the Titanic anniversary) -> National Geographic magazine (6633ms) Who was the captain of the Titanic? The Mighty Mo -11.684160439161197 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be lead the titanic ? -> $x: ($x, be lead, the titanic) -> $x: ($x, be bigger, the titanic) -> (The Mighty Mo, is bigger than, the Titanic) -> The Mighty Mo (7303ms) Who was the captain of the Titanic? The White Star Line -11.687875026959018 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who own the titanic ? -> $x: ($x, own, the titanic) -> (The White Star Line, owned, the Titanic) -> The White Star Line (6140ms) Who was the captain of the Titanic? Europe and America -11.701702867769903 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be lead the titanic ? -> $x: ($x, be lead, the titanic) -> $x: ($x, lead, titanic) -> (Europe and America, led to, the Titanic?s demise) -> Europe and America (6140ms) Who was the captain of the Titanic? Over-confidence -11.727986250543482 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be lead the titanic ? -> $x: ($x, be lead, the titanic) -> $x: ($x, lead, titanic) -> (Over-confidence, had led to, the Titanic) -> Over-confidence (6160ms) Who was the captain of the Titanic? Capricorn ? -11.730283061257365 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (Capricorn ?, Make like, the Titanic and split) -> Capricorn ? (6632ms) Who was the captain of the Titanic? A discovery -11.735333080664194 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (A discovery, was made of, the fabled luxury liner Titanic Found) -> A discovery (6632ms) Who was the captain of the Titanic? students -11.744794872621728 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who own the titanic ? -> $x: ($x, own, the titanic) -> (students, write their own story about, the Titanic) -> students (6160ms) Who was the captain of the Titanic? the 8 Musicians -11.75825061460337 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (the 8 Musicians, Went Down with, the Titanic) -> the 8 Musicians (6161ms) Who was the captain of the Titanic? More than 1,500 people -11.75935890278687 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (More than 1,500 people, went down with, the Titanic) -> More than 1,500 people (6160ms) Who was the captain of the Titanic? Jack Astor -11.771141469366512 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (Jack Astor, went down with, the Titanic) -> Jack Astor (6160ms) Who was the captain of the Titanic? a shipbuilder -11.795411965727457 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (a shipbuilder, was to make, the Titanic watertight) -> a shipbuilder (6633ms) Who was the captain of the Titanic? Cha -11.81498870673337 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (Cha, have started making, the Titanic) -> Cha (6632ms) Who was the captain of the Titanic? carpet -11.815218213321787 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (carpet, was made for, the Titanic) -> carpet (6633ms) Who was the captain of the Titanic? the 8 musicians -11.827674817045878 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (the 8 musicians, went down with, the Titanic) -> the 8 musicians (6160ms) Who was the captain of the Titanic? Jack Phillips -11.853436426841649 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (Jack Phillips, went down with, the Titanic) -> Jack Phillips (6160ms) Who was the captain of the Titanic? the Belfast boat-builders -11.856382395788216 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (the Belfast boat-builders, made, the Titanic) -> the Belfast boat-builders (6659ms) Who was the captain of the Titanic? Windy City -11.876161352197318 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be lead the titanic ? -> $x: ($x, be lead, the titanic) -> $x: ($x, lead, titanic) -> (Windy City, took a 14-10 lead before, Titanic) -> Windy City (6182ms) Who was the captain of the Titanic? Jeromy and Ron -11.934755062175999 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be lead the titanic ? -> $x: ($x, be lead, the titanic) -> $x: ($x, lead, titanic) -> (Jeromy and Ron, led the way with, Titanic banner) -> Jeromy and Ron (6182ms) Who was the captain of the Titanic? Kate Winslet -11.936071964157186 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (Kate Winslet, made famous in, the Titanic movie) -> Kate Winslet (6659ms) Who was the captain of the Titanic? New plans -11.970155455677514 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (New plans, are being made to raise, the Titanic) -> New plans (6659ms) Who was the captain of the Titanic? A lifetime highlight -11.9785242320971 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (A lifetime highlight, was making dives to, the Titanic wrecksite) -> A lifetime highlight (6659ms) Who was the captain of the Titanic? mention -11.99886318985874 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (mention, was made of, the Titanic) -> mention (6659ms) Who was the captain of the Titanic? Orlando -12.06583019377046 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (Orlando, go down with, the Titanic or trade Dwight Howard) -> Orlando (6182ms) Who was the captain of the Titanic? the Dordogne -12.084544001015312 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who run the titanic ? -> $x: ($x, run, the titanic) -> $x: ($x, run, titanic) -> (the Dordogne, are running, a Titanic cooking course) -> the Dordogne (6659ms) Who was the captain of the Titanic? Count Alexander Bismarck -12.118301807255083 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (Count Alexander Bismarck, famously made, the Titanic necklace) -> Count Alexander Bismarck (6659ms) Who was the captain of the Titanic? Policies Michigan Senator -12.147399329167726 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be lead the titanic ? -> $x: ($x, be lead, the titanic) -> $x: ($x, lead, titanic) -> (Policies Michigan Senator, led, Titanic investigation) -> Policies Michigan Senator (6182ms) Who was the captain of the Titanic? A Buckley -12.15041871200702 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be lead the titanic ? -> $x: ($x, be lead, the titanic) -> $x: ($x, lead, titanic) -> (A Buckley, led, ?Titanic?) -> A Buckley (6182ms) Who was the captain of the Titanic? CIE Tours -12.16190241062836 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (CIE Tours, makes, the Titanic Museum) -> CIE Tours (6684ms) Who was the captain of the Titanic? the museum -12.1639116350281 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who run the titanic ? -> $x: ($x, run, the titanic) -> (the museum, is run by, the Titanic Historical Society) -> the museum (6182ms) Who was the captain of the Titanic? n't teen-aged boys -12.168826280921806 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (n't teen-aged boys, made, Titanic the biggest hit) -> n't teen-aged boys (6685ms) Who was the captain of the Titanic? automatist -12.172997514495119 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (automatist, went down with, the Titanic) -> automatist (6182ms) Who was the captain of the Titanic? Information Act -12.179357889890454 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (Information Act, has made, the titanic bumblebee) -> Information Act (6685ms) Who was the captain of the Titanic? a long time -12.198745686098796 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (a long time, makes, the Titanic disaster) -> a long time (6685ms) Who was the captain of the Titanic? Lightoller -12.254208155282981 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, be second on, the titanic) -> (Lightoller, was the Second Officer on, the RMS Titanic) -> Lightoller (6203ms) Who was the captain of the Titanic? lucky readers -12.284175178112488 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who run the titanic ? -> $x: ($x, run, the titanic) -> $x: ($x, run, titanic) -> (lucky readers, can have my running commentary on, this titanic) -> lucky readers (6685ms) Who was the captain of the Titanic? Vermont -12.285551843676643 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (Vermont, goes down with, the Titanic) -> Vermont (6202ms) Who was the captain of the Titanic? Odysseus ? crew -12.304108539465314 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (Odysseus ? crew, makes, the Titanic staff look) -> Odysseus ? crew (6684ms) Who was the captain of the Titanic? The British company -12.332542383439975 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who run the titanic ? -> $x: ($x, run, the titanic) -> $x: ($x, run, titanic) -> (The British company, has been running, Titanic tours) -> The British company (6684ms) Who was the captain of the Titanic? a dressing table -12.335055485122055 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (a dressing table, originally made for, the Titanic) -> a dressing table (6740ms) Who was the captain of the Titanic? a rare lunar event -12.347826871631082 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be against the titanic ? -> $x: ($x, be against, the titanic) -> $x: ($x, against, titanic) -> (a rare lunar event, stacked the deck against, the Titanic) -> a rare lunar event (6741ms) Who was the captain of the Titanic? drinkers -12.361727933530341 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (drinkers, can make a replica of, the Titanic) -> drinkers (6740ms) Who was the captain of the Titanic? Commander -12.363753447407454 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (Commander, went down with, the Titanic) -> Commander (6202ms) Who was the captain of the Titanic? A cigar box -12.375818853627633 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who own the titanic ? -> $x: ($x, own, the titanic) -> (A cigar box, owned by, the captain of the Titanic) -> A cigar box (6202ms) Who was the captain of the Titanic? small factors -12.381111952423232 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who compose the titanic ? -> $x: ($x, compose, the titanic) -> $x: ($x, in play, the titanic) -> (small factors, played a role in, the Titanic disaster) -> small factors (9636ms) Who was the captain of the Titanic? Dancing -12.398990693457565 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who own the titanic ? -> $x: ($x, own, the titanic) -> (Dancing, has his own connection to, the legendary ship Titanic) -> Dancing (6202ms) Who was the captain of the Titanic? the crew -12.451879537338675 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (the crew, went down with, the Titanic) -> the crew (6202ms) Who was the captain of the Titanic? wireless telegraph -12.467827894606147 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who compose the titanic ? -> $x: ($x, compose, the titanic) -> $x: ($x, in play, the titanic) -> (wireless telegraph, must have played in, the Titanic disaster) -> wireless telegraph (9637ms) Who was the captain of the Titanic? particular numerals -12.48639607254065 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who compose the titanic ? -> $x: ($x, compose, the titanic) -> $x: ($x, in play, the titanic) -> (particular numerals, played its part in, the Titanic disaster) -> particular numerals (9637ms) Who was the captain of the Titanic? Glasgow -12.57282688469041 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who own the titanic ? -> $x: ($x, own, the titanic) -> (Glasgow, has its own direct link to, the Titanic) -> Glasgow (6202ms) Who was the captain of the Titanic? Every effort -12.621254332746378 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (Every effort, has been made to be respectful to, the Titanic) -> Every effort (6740ms) Who was the captain of the Titanic? Mark -12.654368085694124 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (Mark, made an excellent parallel between, the Titanic) -> Mark (6740ms) Who was the captain of the Titanic? Engine room -12.695003308925974 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who compose the titanic ? -> $x: ($x, compose, the titanic) -> $x: ($x, from send, the titanic) -> (Engine room, was sent from, the Titanic) -> Engine room (9501ms) Who was the captain of the Titanic? seven passengers -12.70675763378766 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> what be leave the titanic ? -> $x: ($x, be leave, the titanic) -> $x: ($x, leave, titanic) -> (seven passengers, left, the Titanic) -> seven passengers (10465ms) Who was the captain of the Titanic? Clash -12.734595360873273 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who think of the titanic ? -> $x: ($x, think of, the titanic) -> $x: ($x, think of, titanic) -> (Clash, think of, ?Titanic) -> Clash (6817ms) Who was the captain of the Titanic? Nova Scotia -12.788580838918383 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who compose the titanic ? -> $x: ($x, compose, the titanic) -> $x: ($x, in play, the titanic) -> (Nova Scotia, played a central role in, the Titanic event) -> Nova Scotia (9637ms) Who was the captain of the Titanic? Belfast -12.858187359943246 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (Belfast, could make, the Titanic) -> Belfast (6818ms) Who was the captain of the Titanic? America -12.920150579321156 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be lead the titanic ? -> $x: ($x, be lead, the titanic) -> $x: ($x, lead, titanic) -> (America, was leading the civilized world in, a titanic struggle) -> America (6818ms) Who was the captain of the Titanic? Smith -12.953239309316324 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (Smith, went down with, the Titanic) -> Smith (6818ms) Who was the captain of the Titanic? the S.O.S. signals -12.975441219843502 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who compose the titanic ? -> $x: ($x, compose, the titanic) -> $x: ($x, from send, the titanic) -> (the S.O.S. signals, sent from, the doomed Titanic) -> the S.O.S. signals (9501ms) Who was the captain of the Titanic? Minnesota -12.983743892781316 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who run the titanic ? -> $x: ($x, run, the titanic) -> $x: ($x, run, titanic) -> (Minnesota, extended the run of, Titanic) -> Minnesota (6818ms) Who was the captain of the Titanic? 2012 Many famous names -12.984777087096013 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (2012 Many famous names, went down with, the Titanic) -> 2012 Many famous names (6817ms) Who was the captain of the Titanic? the dogs -13.023936590042137 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (the dogs, went down with, the Titanic) -> the dogs (6817ms) Who was the captain of the Titanic? Gracie -13.035496421423186 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (Gracie, actually went down with, the Titanic) -> Gracie (6877ms) Who was the captain of the Titanic? Polar -13.039917406130964 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (Polar, nearly went down with, the Titanic) -> Polar (6878ms) Who was the captain of the Titanic? the progenitor -13.095492069045012 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (the progenitor, went down with, the Titanic) -> the progenitor (6877ms) Who was the captain of the Titanic? the men passengers -13.1147981649173 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> what be leave the titanic ? -> $x: ($x, be leave, the titanic) -> (the men passengers, were left aboard, the Titanic) -> the men passengers (6877ms) Who was the captain of the Titanic? The Park Inn Belfast -13.12206915483813 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who compose the titanic ? -> $x: ($x, compose, the titanic) -> $x: ($x, join force, the titanic) -> (The Park Inn Belfast, has joined forces with, the Titanic Dock) -> The Park Inn Belfast (9971ms) Who was the captain of the Titanic? the way women and children -13.167350961558157 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> what be leave the titanic ? -> $x: ($x, be leave, the titanic) -> (the way women and children, were allowed to leave, the Titanic) -> the way women and children (6878ms) Who was the captain of the Titanic? 2009 -13.1740359035162 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be lead the titanic ? -> $x: ($x, be lead, the titanic) -> $x: ($x, lead, titanic) -> (2009, is led by, ?Titanic? director James Cameron?s ?Avatar) -> 2009 (6878ms) Who was the captain of the Titanic? the wreck -13.180604059098364 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be lead the titanic ? -> $x: ($x, be lead, the titanic) -> $x: ($x, lead, titanic) -> (the wreck, was led by, RMS Titanic Inc.) -> the wreck (6878ms) Who was the captain of the Titanic? the image -13.19072246670802 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be lead the titanic ? -> $x: ($x, be lead, the titanic) -> $x: ($x, lead, titanic) -> (the image, was led by, RMS Titanic Inc.) -> the image (6940ms) Who was the captain of the Titanic? the firm -13.204704581617342 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who own the titanic ? -> $x: ($x, own, the titanic) -> (the firm, owned, the Titanic) -> the firm (6940ms) Who was the captain of the Titanic? postcards -13.210350850346618 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who compose the titanic ? -> $x: ($x, compose, the titanic) -> $x: ($x, from send, the titanic) -> (postcards, sent from, the Titanic) -> postcards (9501ms) Who was the captain of the Titanic? Kevin -13.234515554318568 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who own the titanic ? -> $x: ($x, own, the titanic) -> (Kevin, has his own connection to, the Titanic tragedy) -> Kevin (6940ms) Who was the captain of the Titanic? the crucial missing heir -13.265035469257798 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (the crucial missing heir, went down with, the Titanic) -> the crucial missing heir (6940ms) Who was the captain of the Titanic? the matter ? -13.299440427269824 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (the matter ?, went down with, the Titanic) -> the matter ? (6940ms) Who was the captain of the Titanic? The question -13.340341988312233 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (The question, go down with, the Titanic) -> The question (6940ms) Who was the captain of the Titanic? a love story -13.386929078969677 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be against the titanic ? -> $x: ($x, be against, the titanic) -> $x: ($x, against, titanic) -> (a love story, set against, the sinking of the Titanic) -> a love story (6963ms) Who was the captain of the Titanic? Distress calls -13.400082260060364 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who compose the titanic ? -> $x: ($x, compose, the titanic) -> $x: ($x, from send, the titanic) -> (Distress calls, were sent from, the Titanic) -> Distress calls (9501ms) Who was the captain of the Titanic? the routes -13.411812245455758 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be lead the titanic ? -> $x: ($x, be lead, the titanic) -> $x: ($x, lead, titanic) -> (the routes, leads to, Titanic Rock) -> the routes (6963ms) Who was the captain of the Titanic? the shipping line -13.421096346660235 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who own the titanic ? -> $x: ($x, own, the titanic) -> (the shipping line, owned, the Titanic) -> the shipping line (6963ms) Who was the captain of the Titanic? The left boots -13.440027856922207 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (The left boots, went down with, the Titanic) -> The left boots (6963ms) Who was the captain of the Titanic? the prospective groom -13.475788039079728 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (the prospective groom, goes down with, the Titanic) -> the prospective groom (6963ms) Who was the captain of the Titanic? The chair -13.497514928649755 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be captain of the titanic ? -> $x: ($x, be captain of, the titanic) -> $x: ($x, go down with, the titanic) -> (The chair, should have gone down with, the Titanic) -> The chair (6963ms) Who was the captain of the Titanic? Disney -13.722030274960503 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who run the titanic ? -> $x: ($x, run, the titanic) -> $x: ($x, run, titanic) -> (Disney, should run, Titanic Belfast) -> Disney (6989ms) Who was the captain of the Titanic? Savage -13.73084794779373 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (Savage, made these observations about, the Titanic) -> Savage (6989ms) Who was the captain of the Titanic? The same inversions -13.838880628084546 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (The same inversions, could have made, the Titanic) -> The same inversions (6989ms) Who was the captain of the Titanic? The sets -13.845380464424235 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (The sets, were painstakingly made to represent, the real Titanic) -> The sets (6989ms) Who was the captain of the Titanic? the film -13.858310313304695 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who compose the titanic ? -> $x: ($x, compose, the titanic) -> $x: ($x, compose, titanic) -> (the film, is actually composed by, Titanic composer James Horner) -> the film (6989ms) Who was the captain of the Titanic? the company -13.874389721059726 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who own the titanic ? -> $x: ($x, own, the titanic) -> (the company, owned, the Titanic) -> the company (6989ms) Who was the captain of the Titanic? the analyst community -13.893779913360707 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (the analyst community, made a few moves to change, the Titanic) -> the analyst community (6989ms) Who was the captain of the Titanic? the fruity -13.898655058359585 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (the fruity, made jokes about, the Titanic) -> the fruity (7169ms) Who was the captain of the Titanic? land -13.90935080827355 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who compose the titanic ? -> $x: ($x, compose, the titanic) -> $x: ($x, in play, the titanic) -> (land, played an important role in, the Titanic story) -> land (9638ms) Who was the captain of the Titanic? the accident HBO -13.917334351270569 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who run the titanic ? -> $x: ($x, run, the titanic) -> $x: ($x, run, titanic) -> (the accident HBO, was running, Titanic) -> the accident HBO (7169ms) Who was the captain of the Titanic? the errors -13.926046299260072 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (the errors, made on, the Titanic) -> the errors (7169ms) Who was the captain of the Titanic? the necklace -13.926846148918402 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (the necklace, made famous in, the Titanic movie) -> the necklace (7169ms) Who was the captain of the Titanic? The beardy Canadian -14.140684554401627 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (The beardy Canadian, made, Titanic the biggest film) -> The beardy Canadian (7169ms) Who was the captain of the Titanic? The movie -14.223812358804434 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who be against the titanic ? -> $x: ($x, be against, the titanic) -> $x: ($x, against, titanic) -> (The movie, went up against, Titanic) -> The movie (7169ms) Who was the captain of the Titanic? The only reason people -14.22648667074451 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (The only reason people, made such a big deal about, the Titanic) -> The only reason people (7169ms) Who was the captain of the Titanic? Edvard -14.33741304104294 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who run the titanic ? -> $x: ($x, run, the titanic) -> $x: ($x, run, titanic) -> (Edvard, runs, a titanic smouldering balrog) -> Edvard (7169ms) Who was the captain of the Titanic? the lifeboats -14.350179952318747 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who compose the titanic ? -> $x: ($x, compose, the titanic) -> $x: ($x, from send, the titanic) -> (the lifeboats, were sent away from, the Titanic) -> the lifeboats (9501ms) Who was the captain of the Titanic? The morning show -14.355653802821323 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who run the titanic ? -> $x: ($x, run, the titanic) -> $x: ($x, run, titanic) -> (The morning show, will run, a Titanic piece and interview) -> The morning show (7222ms) Who was the captain of the Titanic? a telegram -14.42320244710411 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who compose the titanic ? -> $x: ($x, compose, the titanic) -> $x: ($x, from send, the titanic) -> (a telegram, sent from, the Titanic) -> a telegram (9501ms) Who was the captain of the Titanic? Halifax -14.556700670615147 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who compose the titanic ? -> $x: ($x, compose, the titanic) -> $x: ($x, in play, the titanic) -> (Halifax, played a specific role in, the Titanic story) -> Halifax (9637ms) Who was the captain of the Titanic? the items -14.593099063699837 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who own the titanic ? -> $x: ($x, own, the titanic) -> $x: ($x, own, titanic) -> (the items, are owned by, RMS Titanic Inc.) -> the items (8901ms) Who was the captain of the Titanic? the site -14.670618875151806 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who compose the titanic ? -> $x: ($x, compose, the titanic) -> $x: ($x, can listen to, the titanic) -> (the site, can also listen to, the 1990s Titanic playlist) -> the site (9373ms) Who was the captain of the Titanic? the same line -14.85306084863009 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who own the titanic ? -> $x: ($x, own, the titanic) -> (the same line, owned, the Titanic) -> the same line (7222ms) Who was the captain of the Titanic? the same company -14.85306084863009 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who own the titanic ? -> $x: ($x, own, the titanic) -> (the same company, owned, the Titanic) -> the same company (7222ms) Who was the captain of the Titanic? the city ?s locals -14.930020613246826 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who compose the titanic ? -> $x: ($x, compose, the titanic) -> $x: ($x, pride, the titanic) -> (the city ?s locals, take so much pride with, the Titanic) -> the city ?s locals (9971ms) Who was the captain of the Titanic? The dramatic images -15.205102069192343 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who make the titanic ? -> $x: ($x, make, the titanic) -> (The dramatic images, made from, 250 mosaics of the Titanic site) -> The dramatic images (7222ms) Who was the captain of the Titanic? The maiden voyage -15.39075381173706 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who own the titanic ? -> $x: ($x, own, the titanic) -> $x: ($x, own, titanic) -> (The maiden voyage, has its own space at, Titanic Belfast) -> The maiden voyage (8942ms) Who was the captain of the Titanic? the role -16.091273728270682 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who compose the titanic ? -> $x: ($x, compose, the titanic) -> $x: ($x, in play, the titanic) -> (the role, played in, the Titanic recovery effort) -> the role (9637ms) Who was the captain of the Titanic? the distress message -16.242975377570353 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who compose the titanic ? -> $x: ($x, compose, the titanic) -> $x: ($x, from send, the titanic) -> (the distress message, sent from, the Titanic) -> the distress message (9501ms) Who was the captain of the Titanic? the shipping company -16.495862991559925 Who was the captain of the Titanic? -> who be the captain of [ the titanic ] ? -> who own the titanic ? -> $x: ($x, own, the titanic) -> $x: ($x, own, titanic) -> (the shipping company, owned, Titanic) -> the shipping company (8987ms) What is the tallest statue in the world? Giza -10.91053803294247 What is the tallest statue in the world? -> what be the tallest [ statue in the world ] ? -> what be largest statue in the world ? -> $x: ($x, be largest statue in, the world) -> (Giza, is the largest monolith statue in, the world) -> Giza (8732ms) What is the tallest statue in the world? the Sam Houston Statue/Visitor Center -11.329393150439248 What is the tallest statue in the world? -> what be [ the tallest statue ] in the world ? -> who see the tallest statue ? -> $x: ($x, see, the tallest statue) -> (the Sam Houston Statue/Visitor Center, see, the tallest statue) -> the Sam Houston Statue/Visitor Center (11645ms) What is the tallest statue in the world? Disabled access -11.498939584566154 What is the tallest statue in the world? -> what be [ the tallest statue ] in the world ? -> who see the tallest statue ? -> $x: ($x, see, the tallest statue) -> (Disabled access, See, the tallest open air statues) -> Disabled access (11645ms) What is the tallest statue in the world? Vulcan -11.719434757082944 What is the tallest statue in the world? -> what be the tallest [ statue in the world ] ? -> what be largest statue in the world ? -> $x: ($x, be largest statue in, the world) -> (Vulcan, is the largest cast iron statue in, the world) -> Vulcan (8732ms) What is a stratocaster? separate piece -5.028795776966302 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> (neck of a Fender Stratocaster, Instance Of, separate piece) -> separate piece (4431ms) What is a stratocaster? solid-body guitar -6.306428310835462 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, solid-body guitar) -> solid-body guitar (5585ms) What is a stratocaster? double-cutaway guitar -6.306428310835462 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, double-cutaway guitar) -> double-cutaway guitar (5585ms) What is a stratocaster? iconic fender instrument -6.347303498898952 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, iconic fender instrument) -> iconic fender instrument (5584ms) What is a stratocaster? model of electric guitar -6.358607981801314 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, model of electric guitar) -> model of electric guitar (5584ms) What is a stratocaster? fender's original guitar -6.4956769410008715 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, fender's original guitar) -> fender's original guitar (5584ms) What is a stratocaster? top quality instrument -6.540570896436014 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, top quality instrument) -> top quality instrument (5584ms) What is a stratocaster? type of electric guitar -6.5571341622257515 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, type of electric guitar) -> type of electric guitar (5691ms) What is a stratocaster? fender's successful and modern guitar -6.570618729254677 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, fender's successful and modern guitar) -> fender's successful and modern guitar (5691ms) What is a stratocaster? fender's iconic instrument -6.58507135479987 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, fender's iconic instrument) -> fender's iconic instrument (5691ms) What is a stratocaster? fender and gibson model -6.603704029796408 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, fender and gibson model) -> fender and gibson model (5691ms) What is a stratocaster? great electric guitar -6.644694858058898 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, great electric guitar) -> great electric guitar (5691ms) What is a stratocaster? comfortable guitar design -6.644694858058898 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, comfortable guitar design) -> comfortable guitar design (5691ms) What is a stratocaster? timeless electric guitar design -6.650049323508892 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, timeless electric guitar design) -> timeless electric guitar design (5704ms) What is a stratocaster? fender style electric guitar -6.653815616906034 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, fender style electric guitar) -> fender style electric guitar (5705ms) What is a stratocaster? solid body electric guitar -6.681234059081834 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, solid body electric guitar) -> solid body electric guitar (5704ms) What is a stratocaster? innovative electric model -6.685467226615205 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, innovative electric model) -> innovative electric model (5704ms) What is a stratocaster? standard type guitar -6.685467226615205 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, standard type guitar) -> standard type guitar (5719ms) What is a stratocaster? three pickup guitar -6.685467226615205 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, three pickup guitar) -> three pickup guitar (5704ms) What is a stratocaster? fender model guitar -6.685467226615205 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, fender model guitar) -> fender model guitar (5718ms) What is a stratocaster? iconic electric guitar -6.685467226615205 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, iconic electric guitar) -> iconic electric guitar (5704ms) What is a stratocaster? type of guitar -6.693768202955845 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, type of guitar) -> type of guitar (5719ms) What is a stratocaster? famous guitar in the world -6.694587985462341 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, famous guitar in the world) -> famous guitar in the world (5719ms) What is a stratocaster? lady boudoir guitar -6.730361182050347 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, lady boudoir guitar) -> lady boudoir guitar (5745ms) What is a stratocaster? basic electric guitar -6.730361182050347 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (stratocaster, Instance Of, basic electric guitar) -> basic electric guitar (5732ms) What is a stratocaster? popular model guitar -6.730361182050347 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, popular model guitar) -> popular model guitar (5732ms) What is a stratocaster? iconic electric model -6.730361182050347 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, iconic electric model) -> iconic electric model (5719ms) What is a stratocaster? signature fender guitar -6.730361182050347 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, signature fender guitar) -> signature fender guitar (5732ms) What is a stratocaster? popular guitar model -6.730361182050347 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, popular guitar model) -> popular guitar model (5732ms) What is a stratocaster? double cutaway guitar -6.730361182050347 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, double cutaway guitar) -> double cutaway guitar (5732ms) What is a stratocaster? extreemely versatile instrument -6.730361182050347 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, extreemely versatile instrument) -> extreemely versatile instrument (5745ms) What is a stratocaster? standard shape guitar -6.730361182050347 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, standard shape guitar) -> standard shape guitar (5745ms) What is a stratocaster? fender electric guitar -6.730361182050347 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, fender electric guitar) -> fender electric guitar (5745ms) What is a stratocaster? original fender guitar -6.730361182050347 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, original fender guitar) -> original fender guitar (5732ms) What is a stratocaster? solid electric guitar -6.730361182050347 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (stratocaster, Instance Of, solid electric guitar) -> solid electric guitar (5719ms) What is a stratocaster? type of Fender guitar -6.73571564750034 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, type of Fender guitar) -> type of Fender guitar (5745ms) What is a stratocaster? pretty distinct sounding guitar -6.739481940897483 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, pretty distinct sounding guitar) -> pretty distinct sounding guitar (5773ms) What is a stratocaster? famous type of guitar -6.739481940897483 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, famous type of guitar) -> famous type of guitar (5745ms) What is a stratocaster? guitar of standard -6.739481940897483 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (stratocaster, Instance Of, guitar of standard) -> guitar of standard (5759ms) What is a stratocaster? fender's instrument -6.739481940897483 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, fender's instrument) -> fender's instrument (5773ms) What is a stratocaster? double cutaway type guitar -6.739481940897483 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, double cutaway type guitar) -> double cutaway type guitar (5773ms) What is a stratocaster? FENDER design -6.739481940897483 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, FENDER design) -> FENDER design (5773ms) What is a stratocaster? icon of mid-century modernism and industrial design -6.739481940897483 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, icon of mid-century modernism and industrial design) -> icon of mid-century modernism and industrial design (5759ms) What is a stratocaster? original design of interest -6.739481940897483 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, original design of interest) -> original design of interest (5759ms) What is a stratocaster? guitar and bass model -6.739481940897483 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, guitar and bass model) -> guitar and bass model (5759ms) What is a stratocaster? pro quality instrument -6.739481940897483 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, pro quality instrument) -> pro quality instrument (5772ms) What is a stratocaster? registered trademark of Fender guitar -6.739481940897483 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, registered trademark of Fender guitar) -> registered trademark of Fender guitar (5786ms) What is a stratocaster? fender's most popular model -6.739481940897483 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, fender's most popular model) -> fender's most popular model (5759ms) What is a stratocaster? classic solid body guitar -6.739481940897483 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, classic solid body guitar) -> classic solid body guitar (5772ms) What is a stratocaster? top notch electric guitar -6.739481940897483 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, top notch electric guitar) -> top notch electric guitar (5759ms) What is a stratocaster? great rhythm instrument -6.750925013069347 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, great rhythm instrument) -> great rhythm instrument (5786ms) What is a stratocaster? famous fender guitar -6.757779624226147 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, famous fender guitar) -> famous fender guitar (5786ms) What is a stratocaster? popular model of electric guitar -6.766900383073283 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, popular model of electric guitar) -> popular model of electric guitar (5786ms) What is a stratocaster? well known guitar -6.771488844088347 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, well known guitar) -> well known guitar (5786ms) What is a stratocaster? electric guitar -6.776842366154001 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, electric guitar) -> electric guitar (5800ms) What is a stratocaster? MyCams model -6.785995087808933 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (STRATOCASTER, Instance Of, MyCams model) -> MyCams model (5800ms) What is a stratocaster? guitar model -6.813614810140651 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, guitar model) -> guitar model (5800ms) What is a stratocaster? Fender model -6.942692448011675 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, Fender model) -> Fender model (5800ms) What is a stratocaster? classic design -6.997449548533994 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, classic design) -> classic design (5800ms) What is a stratocaster? modern design -7.006369391610141 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, modern design) -> modern design (5812ms) What is a stratocaster? fender instrument -7.010984533359883 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, fender instrument) -> fender instrument (5812ms) What is a stratocaster? fender guitar -7.015709830601856 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, fender guitar) -> fender guitar (5813ms) What is a stratocaster? fender model -7.016859913913676 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, fender model) -> fender model (5813ms) What is a stratocaster? popular guitar -7.019210065890053 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, popular guitar) -> popular guitar (5812ms) What is a stratocaster? real guitar -7.02092746227634 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, real guitar) -> real guitar (5813ms) What is a stratocaster? traditional design -7.02430206245172 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, traditional design) -> traditional design (5825ms) What is a stratocaster? popular model -7.039980142357403 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, popular model) -> popular model (5825ms) What is a stratocaster? great guitar -7.048060813713066 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, great guitar) -> great guitar (5825ms) What is a stratocaster? flagship model -7.066350588010877 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, flagship model) -> flagship model (5825ms) What is a stratocaster? iconic model -7.075258424131361 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, iconic model) -> iconic model (5825ms) What is a stratocaster? sexy guitar -7.096650857351332 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, sexy guitar) -> sexy guitar (5839ms) What is a stratocaster? bright guitar -7.096650857351332 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, bright guitar) -> bright guitar (5838ms) What is a stratocaster? original guitar -7.096650857351332 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, original guitar) -> original guitar (5839ms) What is a stratocaster? percussion instrument -7.107377170259915 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, percussion instrument) -> percussion instrument (5839ms) What is a stratocaster? classic model -7.110651763133696 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, classic model) -> classic model (5839ms) What is a stratocaster? modern guitar -7.111606371265404 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, modern guitar) -> modern guitar (5839ms) What is a stratocaster? complicated instrument -7.1118031536981166 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, complicated instrument) -> complicated instrument (5851ms) What is a stratocaster? signature design -7.114276998399861 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, signature design) -> signature design (5851ms) What is a stratocaster? electrical guitar -7.117214688370332 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, electrical guitar) -> electrical guitar (5851ms) What is a stratocaster? classic guitar -7.120152379566504 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, classic guitar) -> classic guitar (5851ms) What is a stratocaster? iconic instrument -7.120152379566504 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, iconic instrument) -> iconic instrument (5851ms) What is a stratocaster? excellent guitar -7.123090068311275 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, excellent guitar) -> excellent guitar (5851ms) What is a stratocaster? popular brand -7.128758260853538 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, popular brand) -> popular brand (5862ms) What is a stratocaster? good guitar -7.130649724080428 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, good guitar) -> good guitar (5862ms) What is a stratocaster? guitar -7.332781055565015 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> (old-style Stratocaster with a three-position selector switch, Instance Of, guitar) -> guitar (4431ms) What is a stratocaster? high end guitar -7.48993797883984 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, high end guitar) -> high end guitar (5862ms) What is a stratocaster? 2006 American Vintage Series Stratocaster -7.491012647994264 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, 2006 American Vintage Series Stratocaster) -> 2006 American Vintage Series Stratocaster (5862ms) What is a stratocaster? variation -9.058072771444778 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, variation) -> variation (5875ms) What is a stratocaster? model -9.070280922255296 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, model) -> model (5875ms) What is a stratocaster? reference -9.26622605979561 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, reference) -> reference (5875ms) What is a stratocaster? design -9.302027234928238 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, design) -> design (5875ms) What is a stratocaster? manufacturer -9.331036569312602 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, manufacturer) -> manufacturer (5887ms) What is a stratocaster? classic -9.355641407383178 What is a stratocaster? -> $x: (a stratocaster, instance of, $x) -> $x: (stratocaster, instance of, $x) -> (Stratocaster, Instance Of, classic) -> classic (5887ms) What is a stratocaster? Stellas & Stratocasters: an anthology of articles, interviews, and columns from the pages of Vintage guitar magazine plus new essays -11.714041994281752 What is a stratocaster? -> what [ be a stratocaster ] ? -> what be know be a stratocaster ? -> $x: ($x, be know be, a stratocaster) -> $x: ($x, know, stratocaster) -> (Stellas & Stratocasters: an anthology of articles, interviews, and columns from the pages of Vintage guitar magazine plus new essays, Also known as, Stellas and Stratocasters.) -> Stellas & Stratocasters: an anthology of articles, interviews, and columns from the pages of Vintage guitar magazine plus new essays (7336ms) What is a stratocaster? Stevie Ray -12.783745690593214 What is a stratocaster? -> what [ be a stratocaster ] ? -> what be know be a stratocaster ? -> $x: ($x, be know be, a stratocaster) -> $x: ($x, know, stratocaster) -> (Stevie Ray, was well-known for playing, Stratocasters) -> Stevie Ray (7336ms) What is a stratocaster? Jimi Hendrix -12.904234521924247 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: (a stratocaster, be, $x) -> (A Fender Stratocaster, is carved on, Jimi Hendrix) -> Jimi Hendrix (9416ms) What is a stratocaster? Dick Dale -13.01404615460802 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (Dick Dale, is, a prominent Stratocaster player) -> Dick Dale (9416ms) What is a stratocaster? Charley -13.26638029761037 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (Charley, was, a custom-made Stratocaster) -> Charley (9416ms) What is a stratocaster? Guitar -13.515598861182918 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (Guitar, is, a Fender Stratocaster) -> Guitar (9416ms) What is a stratocaster? Mexico -13.602481539926433 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: (a stratocaster, be, $x) -> (a Red Fender Stratocaster, was made in, Mexico) -> Mexico (9416ms) What is a stratocaster? Fender -13.654972996491772 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (Fender, is introducing, a Blacktop Stratocaster HSH) -> Fender (9416ms) What is a stratocaster? PA system -13.67316094098447 What is a stratocaster? -> [ what be a stratocaster ] ? -> what be a stratocaster connect to ? -> $x: (a stratocaster, connect to, $x) -> (a 79 Fender Stratocaster, connected to, PA system) -> PA system (8635ms) What is a stratocaster? an auction -13.720743653177069 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (an auction, is ongoing for, a a Fender Stratocaster) -> an auction (9416ms) What is a stratocaster? The Jimi Hendrix Gibson -13.738870847291974 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (The Jimi Hendrix Gibson, Will be, a Stratocaster) -> The Jimi Hendrix Gibson (9416ms) What is a stratocaster? Dimensions -13.799981410851935 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (Dimensions, Are For, A Fender Stratocaster Guitar) -> Dimensions (9436ms) What is a stratocaster? SECOND FAVORITE -13.807637625848662 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (SECOND FAVORITE, IS, A 1974 FENDER STRATOCASTER SUNBURST.) -> SECOND FAVORITE (9436ms) What is a stratocaster? Claude V. Lucas -13.93928588031101 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: (a stratocaster, be, $x) -> (a 1955 Stratocaster, is the work of, Claude V. Lucas) -> Claude V. Lucas (9436ms) What is a stratocaster? quite small -14.00477371058351 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (quite small, is carved with, a Stratocaster) -> quite small (9436ms) What is a stratocaster? a '60 NoNeck -14.008524817251438 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: (a stratocaster, be, $x) -> (a pre-owned Custom Shop Stratocaster, is, a '60 NoNeck) -> a '60 NoNeck (9436ms) What is a stratocaster? a jazz guitarist -14.103050671865208 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: (a stratocaster, be, $x) -> (a Stratocaster, seems to be unusual for, a jazz guitarist) -> a jazz guitarist (9436ms) What is a stratocaster? Ritchie Blackmore -14.15713880904903 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: (a stratocaster, do, $x) -> (a Stratocaster, did, Ritchie Blackmore) -> Ritchie Blackmore (9436ms) What is a stratocaster? Dweezil -14.273648783488735 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (Dweezil, is holding, a burned Stratocaster) -> Dweezil (9456ms) What is a stratocaster? ChoicePt -14.300006216912083 What is a stratocaster? -> what [ be a stratocaster ] ? -> what branch have be a stratocaster ? -> $x: ($x, instance of, branch) ($x, have be, a stratocaster) -> (ChoicePt, Instance Of, secret branch of NSA) (choice, has been, a Fender Stratocaster) -> ChoicePt (8512ms) What is a stratocaster? The GK-2 MIDI pickup -14.417545960619053 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (The GK-2 MIDI pickup, was mounted onto, a Stratocaster copy) -> The GK-2 MIDI pickup (9456ms) What is a stratocaster? a 1954 Strat -14.479228598153087 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: (a stratocaster, be, $x) -> (a 1992 Fender Stratocaster, has been turned into, a 1954 Strat) -> a 1954 Strat (9456ms) What is a stratocaster? Townshend -14.486293626657693 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: (a stratocaster, be, $x) -> (a 1957 Fender Stratocaster, was given to, Townshend) -> Townshend (9456ms) What is a stratocaster? Bruce -14.545534906065587 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (Bruce, was using, a cheap Fender Stratocaster copy) -> Bruce (9456ms) What is a stratocaster? a humbucker -14.773990909878256 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: (a stratocaster, have, $x) -> (a Fender Stratocaster, had, a humbucker) -> a humbucker (9456ms) What is a stratocaster? the Affinity -14.788487775420393 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (the Affinity, is lighter than, a standard stratocaster) -> the Affinity (9456ms) What is a stratocaster? the Author -15.191394895536698 What is a stratocaster? -> what [ be a stratocaster ] ? -> what be know be a stratocaster ? -> $x: ($x, be know be, a stratocaster) -> $x: ($x, know, stratocaster) -> (the Author, Want to known more about, the Fender Stratocaster) -> the Author (7336ms) What is a stratocaster? choice -15.30185965956923 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (choice, has been, a Fender Stratocaster) -> choice (9507ms) What is a stratocaster? magnets -15.308933256182591 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: (a stratocaster, be, $x) -> (a Fender Stratocaster pickup, are, magnets) -> magnets (9507ms) What is a stratocaster? the guitar player -15.403107033767165 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (the guitar player, was playing, a Fender Stratocaster) -> the guitar player (9507ms) What is a stratocaster? the end -15.420453341729221 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (the end, is on, a Stratocaster) -> the end (9507ms) What is a stratocaster? the other vital component part -15.553579728634192 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: (a stratocaster, be, $x) -> (a Fender Stratocaster, was, the other vital component part) -> the other vital component part (9507ms) What is a stratocaster? The guitar -15.581944122397648 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (The guitar, is, a Fender Stratocaster US 1983 Gear) -> The guitar (9507ms) What is a stratocaster? the looks -15.6060583719617 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: (a stratocaster, be, $x) -> (a Stratocaster, neither are, the looks) -> the looks (9589ms) What is a stratocaster? The bridge -15.648651197509613 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (The bridge, is, a Fender Stratocaster Deluxe Gold tremolo) -> The bridge (9589ms) What is a stratocaster? the instrument -15.678906118402468 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (the instrument, is either, a Fender Stratocaster) -> the instrument (9589ms) What is a stratocaster? The black guitar -15.7099236676198 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (The black guitar, is definitely, a Fender Stratocaster) -> The black guitar (9589ms) What is a stratocaster? The pinball machine -15.712576279525383 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (The pinball machine, was, a Fender Stratocaster guitar) -> The pinball machine (9588ms) What is a stratocaster? the auction -15.71810331064699 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (the auction, was, a 1957 Fender Stratocaster) -> the auction (9588ms) What is a stratocaster? the first Van Halen record -15.771519643788645 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (the first Van Halen record, was, a 1959 Fender Stratocaster) -> the first Van Halen record (9588ms) What is a stratocaster? the track -15.782649708461463 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (the track, was, a 1972 Fender Stratocaster) -> the track (9589ms) What is a stratocaster? The other addition -15.796734098371154 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (The other addition, was, a Rory Gallagher 1961 Stratocaster) -> The other addition (9610ms) What is a stratocaster? the electric -15.807967709238524 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (the electric, is, a Fender Blacktop HH Stratocaster) -> the electric (9610ms) What is a stratocaster? the bass -15.816741200631881 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (the bass, is, a 20-year-old Fender Stratocaster) -> the bass (9610ms) What is a stratocaster? The first two guitar solos -15.83695028070651 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (The first two guitar solos, were played on, a Stratocaster) -> The first two guitar solos (9610ms) What is a stratocaster? the raffle -15.928537876696645 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: (a stratocaster, be, $x) -> (a Fender Squire Stratocaster guitar, was won in, the raffle) -> the raffle (9610ms) What is a stratocaster? the body -16.05729630962029 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: ($x, be, a stratocaster) -> (the body, tends to be heavy than even, a USA Stratocaster) -> the body (9610ms) What is a stratocaster? a local pawnshop -16.289776183496716 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: (a stratocaster, have, $x) -> (a used Stratocaster, had caught his eye in, a local pawnshop) -> a local pawnshop (9610ms) What is a stratocaster? the sea change I needed -17.132802665838895 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: (a stratocaster, be, $x) -> (switching to a Stratocaster, might be, the sea change I needed) -> the sea change I needed (9610ms) What is a stratocaster? the exact same tools -17.963739937750574 What is a stratocaster? -> what [ be a stratocaster ] ? -> what be know be a stratocaster ? -> $x: ($x, be know be, a stratocaster) -> $x: ($x, know, stratocaster) -> $x: ($x, to talk to about, stratocaster) -> (the exact same tools, can be used to talk about, Stratocasters) -> the exact same tools (10753ms) What is a stratocaster? recently -18.89054687835976 What is a stratocaster? -> what be [ a stratocaster ] ? -> what be the mening of a stratocaster ? -> $x: (a stratocaster, mening, $x) -> $x: (a stratocaster, have, $x) -> (a used Stratocaster, had caught his eye, recently) -> recently (9631ms) Which terrorist organization claimed responsibility for the massacre? Islamic Group -3.1325584319941533 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> (Islamic Group, Instance Of, global terrorist organization) (Islamic Group, claimed responsibility for, the 1997 massacre) -> Islamic Group (470ms) Which terrorist organization claimed responsibility for the massacre? Islamic Jihad Group -3.4878549061741753 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> (Islamic Jihad Group, Instance Of, terrorist organization) (Islamic Group, claimed responsibility for, the 1997 massacre) -> Islamic Jihad Group (470ms) Which terrorist organization claimed responsibility for the massacre? Al Qaeda -7.053598525508242 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, carry out, the massacre) -> (Al Qaeda, Instance Of, terrorist organization) (Al Qaeda, carries out, the Ashoura Massacre) -> Al Qaeda (8525ms) Which terrorist organization claimed responsibility for the massacre? organized crime -7.166039522065161 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, blame for, the massacre) -> (organized crime, Instance Of, transnational terrorist organization) (organized crime, has been blamed for, the local massacre) -> organized crime (12215ms) Which terrorist organization claimed responsibility for the massacre? Los Zetas -7.394949043079736 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, blame for, the massacre) -> (Los Zetas, Instance Of, narco-terrorist organization) (Los Zetas, is blamed for, the massacre) -> Los Zetas (12215ms) Which terrorist organization claimed responsibility for the massacre? Al-Qaeda -7.400417851264347 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, carry out, the massacre) -> (Al-Qaeda, Instance Of, terrorist organization) (Al Qaeda, carries out, the Ashoura Massacre) -> Al-Qaeda (8525ms) Which terrorist organization claimed responsibility for the massacre? al-qaeda -7.50668480254942 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, carry out, the massacre) -> (al-qaeda, Instance Of, terrorist organization) (Al-Qaeda, carried out, the Ashoura Massacre) -> al-qaeda (8525ms) Which terrorist organization claimed responsibility for the massacre? BushCo -7.544328979421882 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, know of, the massacre) -> (BushCo, Instance Of, terrorist organization) (Bush, knew of, the massacre) -> BushCo (1416ms) Which terrorist organization claimed responsibility for the massacre? Al- Qaeda -7.59125962375064 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, carry out, the massacre) -> (Al- Qaeda, Instance Of, terrorist organization) (Al Qaeda, carries out, the Ashoura Massacre) -> Al- Qaeda (8525ms) Which terrorist organization claimed responsibility for the massacre? Iraq -7.59433919137836 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, take credit for, the massacre) -> (Iraq, Instance Of, terrorist organization) (Iraq, took credit for, the massacre) -> Iraq (12215ms) Which terrorist organization claimed responsibility for the massacre? End of History -7.692393506672573 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, witness, the massacre) -> (End of History, Instance Of, terrorist organization) (History, is witness to, the massacres) -> End of History (13386ms) Which terrorist organization claimed responsibility for the massacre? Amnesty International -7.7202460622290054 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, kill in, the massacre) -> (Amnesty International, Instance Of, terrorist organization) (Amnesty International, were killed in, the massacre) -> Amnesty International (8597ms) Which terrorist organization claimed responsibility for the massacre? Ordine Nuovo -7.728289236775908 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) (the massacre, carry out by, $x) -> (Ordine Nuovo, Instance Of, Italian extreme right terrorist organization) (the massacre, had been carried out by, Ordine Nuovo) -> Ordine Nuovo (7238ms) Which terrorist organization claimed responsibility for the massacre? AlQaeda -7.7687849887567415 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, carry out, the massacre) -> (AlQaeda, Instance Of, terrorist organization) (Al-Qaeda, carried out, the Ashoura Massacre) -> AlQaeda (8597ms) Which terrorist organization claimed responsibility for the massacre? People's Will -7.784315429413306 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, survive, the massacre) -> (People's Will, Instance Of, terrorist organization) (people, survived, the massacre) -> People's Will (6062ms) Which terrorist organization claimed responsibility for the massacre? al-fatah -7.790743570462085 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, be involve in, the massacre) -> (al-fatah, Instance Of, terrorist organization) (Al-Fatah, were involved in, the massacre) -> al-fatah (12215ms) Which terrorist organization claimed responsibility for the massacre? LTTE -7.867360300767774 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) (the massacre, carry out by, $x) -> (LTTE, Instance Of, terrorist organization) (the most heartless massacre, was carried out by, LTTE) -> LTTE (7238ms) Which terrorist organization claimed responsibility for the massacre? Al Fatah -7.897249876382546 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, be involve in, the massacre) -> (Al Fatah, Instance Of, terrorist organization) (Al-Fatah, were involved in, the massacre) -> Al Fatah (12466ms) Which terrorist organization claimed responsibility for the massacre? Bush -7.928893632955793 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, know of, the massacre) -> (Bush, Instance Of, terrorist organization) (Bush, knew of, the massacre) -> Bush (1416ms) Which terrorist organization claimed responsibility for the massacre? Human Rights Watch -7.928915793740094 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, be complicit in, the massacre) -> (Human Rights Watch, Instance Of, terrorist organization) (Human Rights Watch, was complicit in, the massacre) -> Human Rights Watch (9743ms) Which terrorist organization claimed responsibility for the massacre? Israel -7.958837853396858 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, be responsible for, the massacre) -> (Israel, Instance Of, terrorist organization) (Israel, was indirectly responsible for, the massacre) -> Israel (9573ms) Which terrorist organization claimed responsibility for the massacre? CAIR -7.961211826617671 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, denounce, the massacre) -> (CAIR, Instance Of, terrorist organization) (CAIR, just denounced, the Fort Hood Massacre) -> CAIR (1416ms) Which terrorist organization claimed responsibility for the massacre? Iran -7.985608525919254 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, condemn, the massacre) -> (Iran, Instance Of, terrorist organization) (Iran, unreservedly condemns, the massacre) -> Iran (10434ms) Which terrorist organization claimed responsibility for the massacre? Hama's -8.006827273751586 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) (the massacre, carry out by, $x) -> (Hama's, Instance Of, terrorist organization) (the massacre, carried out by, Hamas) -> Hama's (7238ms) Which terrorist organization claimed responsibility for the massacre? terrorist -8.201793474716391 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, perpetrate, the massacre) -> (terrorist, Instance Of, terrorist organization) (the terrorists, would perpetrate, the Munich Massacre) -> terrorist (10434ms) Which terrorist organization claimed responsibility for the massacre? Hamas -8.239020032636681 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) (the massacre, carry out by, $x) -> (Hamas, Instance Of, terrorist organization) (the massacre, carried out by, Hamas) -> Hamas (7239ms) Which terrorist organization claimed responsibility for the massacre? group -8.335179366454142 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, carry out, the massacre) -> (group, Instance Of, terrorist organization) (group, had carried out, the massacre) -> group (9573ms) Which terrorist organization claimed responsibility for the massacre? Islamic Jihad -8.369280730929898 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, claim responsibility for, massacre) -> $x: ($x, instance of, terrorist organization) ($x, take credit for, massacre) -> (Islamic Jihad, Instance Of, terrorist organization) (Islamic Jihad, were quick to take credit for, massacres) -> Islamic Jihad (14017ms) Which terrorist organization claimed responsibility for the massacre? government -8.52315743801942 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, condemn, the massacre) -> (government, Instance Of, terrorist organization) (Government, condemns, the massacre) -> government (10434ms) Which terrorist organization claimed responsibility for the massacre? Government -8.635943079801082 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, condemn, the massacre) -> (Government, Instance Of, terrorist organization) (Government, condemns, the massacre) -> Government (10434ms) Which terrorist organization claimed responsibility for the massacre? loyalist -8.641946454847218 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) (the massacre, be carry out by, $x) -> (loyalist, Instance Of, terrorist organization) (the pub massacres, were all carried out by, loyalists) -> loyalist (3558ms) Which terrorist organization claimed responsibility for the massacre? Haganah -8.829336558864952 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, condemn, the massacre) -> (Haganah, Instance Of, terrorist organization) (Haganah, immediately condemned, the Deir Yassin massacre) -> Haganah (10434ms) Which terrorist organization claimed responsibility for the massacre? Mossad -8.841353022740204 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, be behind, the massacre) -> (Mossad, Instance Of, terrorist organization) (Mossad, was also behind, the Munich Olympics massacre) -> Mossad (9743ms) Which terrorist organization claimed responsibility for the massacre? MOSSAD -8.843426728357096 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, be behind, the massacre) -> (MOSSAD, Instance Of, state-department-identified Terrorist Organization) (Mossad, was also behind, the Munich Olympics massacre) -> MOSSAD (9743ms) Which terrorist organization claimed responsibility for the massacre? Indonesia -8.932222850966753 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, condemn, the massacre) -> (Indonesia, Instance Of, terrorist organization) (Indonesia, are condemning, the Bali massacre) -> Indonesia (10434ms) Which terrorist organization claimed responsibility for the massacre? German -9.004542282884165 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) (the massacre, carry out by, $x) -> (German, Instance Of, terrorist organization) (the massacre, was principally carried out by, Germans) -> German (7730ms) Which terrorist organization claimed responsibility for the massacre? Irgun -9.040610920999695 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, be involve in, the massacre) -> (Irgun, Instance Of, terrorist organization) (Irgun, was also involved in, the Deir Yassin Massacre) -> Irgun (13386ms) Which terrorist organization claimed responsibility for the massacre? Advance -9.115011607852328 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) (the massacre, be plan in, $x) -> (Advance, Instance Of, terrorist organization) (the massacre, was planned well in, advance) -> Advance (11070ms) Which terrorist organization claimed responsibility for the massacre? America -9.232745539250764 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, be complicit in, the massacre) -> (America, Instance Of, terrorist organization) (America, was complicit in, the 1990s Rwanda massacres) -> America (9743ms) Which terrorist organization claimed responsibility for the massacre? man -9.525131208358793 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, claim responsibility for, massacre) -> $x: ($x, instance of, terrorist organization) ($x, mastermind, massacre) -> (man, Instance Of, member of a terrorist organization) (man, masterminded, Munich massacre tinyurl.com/28cykju) -> man (18998ms) Which terrorist organization claimed responsibility for the massacre? military police -9.635347352058666 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, claim responsibility for, massacre) -> $x: ($x, instance of, terrorist organization) (massacre, carry out by, $x) -> (military police, Instance Of, terrorist or insurgent organization) (a massacre, carried out by, military police) -> military police (17376ms) Which terrorist organization claimed responsibility for the massacre? Islam -10.118953866774905 Which terrorist organization claimed responsibility for the massacre? -> $x: ($x, instance of, terrorist organization) ($x, claimed responsibility for, the massacre) -> $x: ($x, instance of, terrorist organization) ($x, claim responsibility for, massacre) -> $x: ($x, instance of, terrorist organization) ($x, have order, massacre) -> (Islam, Instance Of, terrorist organization) (Islam, had ordered, such massacres) -> Islam (16979ms) What is the richest country in the world? lux 0.6837586975726548 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (lux, is the richest country in, the world) -> lux (7442ms) What is the richest country in the world? Great Britain 0.6129766880037093 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Great Britain, was the richest country in, the world) -> Great Britain (7442ms) What is the richest country in the world? The Vatican 0.27426030362464404 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (The Vatican, is the richest country in, the world) -> The Vatican (7441ms) What is the richest country in the world? The USA 0.1961572269395262 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (The USA, IS the richest country in, the world) -> The USA (7441ms) What is the richest country in the world? India 0.1810591897113184 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (India, was the richest country in, the world) -> India (7442ms) What is the richest country in the world? Luxembourg 0.1795548560711523 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Luxembourg, was the richest country in, the world) -> Luxembourg (7564ms) What is the richest country in the world? the US today 0.1687867322079707 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (the US today, is the richest country in, the world) -> the US today (7564ms) What is the richest country in the world? The U.S. 0.16838751236968108 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (The U.S., is the richest country in, the world) -> The U.S. (7564ms) What is the richest country in the world? Qatar 0.11457706649341726 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Qatar, is the richest country in, the world) -> Qatar (7564ms) What is the richest country in the world? Russia 0.11307567640525351 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Russia, was the richest country in, the world) -> Russia (8673ms) What is the richest country in the world? Australia 0.0876589064537473 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Australia, was the richest country in, the world) -> Australia (8674ms) What is the richest country in the world? Argentina 0.0764313605489314 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Argentina, was the richest country in, the world) -> Argentina (8673ms) What is the richest country in the world? New Zealand 0.04630063338884194 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (New Zealand, was the second richest country in, the world) -> New Zealand (8674ms) What is the richest country in the world? Canada -0.012380638101923025 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Canada, is the richest country in, the world) -> Canada (9517ms) What is the richest country in the world? Bermuda -0.012380638101923025 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Bermuda, is the richest country in, the world) -> Bermuda (9517ms) What is the richest country in the world? The United States -0.023637911144806067 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (The United States, is the richest country in, the world) -> The United States (9517ms) What is the richest country in the world? Brazil -0.03133658260105576 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Brazil, is probably the richest country in, the world) -> Brazil (9518ms) What is the richest country in the world? The UAE -0.062480857117141464 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (The UAE, is the second richest country in, the world) -> The UAE (9582ms) What is the richest country in the world? Singapore -0.1224089413644921 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Singapore, is the third richest country in, the world) -> Singapore (9582ms) What is the richest country in the world? Kazakhstan -0.1357716310052114 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Kazakhstan, is the second richest country in, the world) -> Kazakhstan (9581ms) What is the richest country in the world? The Dutch Republic -0.1523758416306643 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (The Dutch Republic, was the richest country in, the World) -> The Dutch Republic (9730ms) What is the richest country in the world? Austria -0.15505969169616896 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Austria, is the 12th richest country in, the world) -> Austria (9730ms) What is the richest country in the world? Japan -0.17546081056012108 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Japan, is the second richest country in, the world) -> Japan (9730ms) What is the richest country in the world? Economy Austria -0.18760102289927627 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Economy Austria, is the 12th richest country in, the world) -> Economy Austria (9730ms) What is the richest country in the world? England -0.19491317489572046 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (England, was already the richest country in, the world) -> England (9790ms) What is the richest country in the world? up all -0.20802400903269236 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (up all, probably is the richest country in, the world) -> up all (9790ms) What is the richest country in the world? Kuwait -0.24177563387908352 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Kuwait, is the fourth richest country in, the world) -> Kuwait (9790ms) What is the richest country in the world? Norway -0.2506176032946392 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Norway, is the third richest country in, the world) -> Norway (9790ms) What is the richest country in the world? Scotland -0.2987619167694846 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Scotland, would be the sixth richest country in, the world) -> Scotland (9915ms) What is the richest country in the world? the Soviet Union -0.3148769343640968 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (the Soviet Union, is the richest country in, the world) -> the Soviet Union (9914ms) What is the richest country in the world? the USA -0.4120944047935071 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (the USA, is the richest country in, the world) -> the USA (9914ms) What is the richest country in the world? the Vatican -0.4184136799149275 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (the Vatican, is probably the richest country in, the world) -> the Vatican (9914ms) What is the richest country in the world? Congo -0.43140244007513484 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Congo, would be the richest country in, the world) -> Congo (9914ms) What is the richest country in the world? America -0.450373068981722 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (America, is the richest country in, the world) -> America (9981ms) What is the richest country in the world? The Scandinavians -0.4538078101520252 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (The Scandinavians, are the richest countries in, the world) -> The Scandinavians (9980ms) What is the richest country in the world? the United States -0.46601560710665113 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (the United States, is still the richest country in, the world) -> the United States (9981ms) What is the richest country in the world? China -0.5386962232055068 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (China, is the richest country in, the world) -> China (10081ms) What is the richest country in the world? Britain -0.5477933749490621 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Britain, was the richest country in, the world) -> Britain (10082ms) What is the richest country in the world? Britain today -0.6154812807989514 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Britain today, may be the fourth richest country in, the world) -> Britain today (10082ms) What is the richest country in the world? Amercia -0.6277634041843609 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Amercia, is the richest country in, the world) -> Amercia (10082ms) What is the richest country in the world? the 20th century America -0.6901405854003769 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (the 20th century America, was the richest country in, the world) -> the 20th century America (10146ms) What is the richest country in the world? EverQuest -0.7313108019992971 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (EverQuest, is the 77th richest country in, the world) -> EverQuest (10146ms) What is the richest country in the world? the UK -0.7313108019992971 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (the UK, is the fifth richest country in, the world) -> the UK (10146ms) What is the richest country in the world? 2005 america -0.9202428555248994 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (2005 america, is the richest country in, the world) -> 2005 america (10211ms) What is the richest country in the world? U.A.E -1.010595409815087 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> $x: ($x, richest country in, world) -> (U.A.E, is richest country in, the world) -> U.A.E (10212ms) What is the richest country in the world? the U.S. -1.0620215103864938 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (the U.S., is the richest country in, the world) -> the U.S. (10236ms) What is the richest country in the world? We?ve -1.1172985723045745 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (We?ve, been the richest country in, the world) -> We?ve (10237ms) What is the richest country in the world? Haiti -1.1847921877733816 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Haiti, was the richest country in, the world) -> Haiti (10313ms) What is the richest country in the world? the nation -1.380158156939404 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (the nation, was the richest country in, the world) -> the nation (10437ms) What is the richest country in the world? Nepal -1.3881532099119687 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Nepal, is the second richest country in, the world) -> Nepal (10437ms) What is the richest country in the world? Barbados -1.4230291529660977 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Barbados, is the 51st richest country in, the world) -> Barbados (10613ms) What is the richest country in the world? Iceland -1.4230291529660977 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (Iceland, is the 5th richest country in, the world) -> Iceland (10613ms) What is the richest country in the world? the question -1.9654782164684939 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (the question, is the richest country in, the world) -> the question (10951ms) What is the richest country in the world? amerca -2.331482512156284 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (amerca, is the richest country in, the world) -> amerca (11325ms) What is the richest country in the world? 2000 Ireland -2.7367236600476983 What is the richest country in the world? -> $x: ($x, is the richest country in, the world) -> (2000 Ireland, was the sixth-richest country in, the world) -> 2000 Ireland (11514ms) What is the richest country in the world? RSA -7.221216499308602 What is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest country in africa ? -> $x: ($x, be the richest country in, africa) -> (RSA, is the richest country in, Africa) -> RSA (12902ms) What is the richest country in the world? South Africa -7.358647063302024 What is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest country in africa ? -> $x: ($x, be the richest country in, africa) -> (South Africa, is the richest country in, Africa) -> South Africa (12903ms) What is the richest country in the world? inhabitants Angola -7.866409228252671 What is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest country in africa ? -> $x: ($x, be the richest country in, africa) -> (inhabitants Angola, should be the richest country in, Africa) -> inhabitants Angola (12902ms) What is the richest country in the world? Burma -7.9567752428358425 What is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest country in asia ? -> $x: ($x, be the richest country in, asia) -> (Burma, was once the richest country in, Asia) -> Burma (11968ms) What is the richest country in the world? sooner..the Philippines -7.9595308643807705 What is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest country in asia ? -> $x: ($x, be the richest country in, asia) -> (sooner..the Philippines, will be the richest country in, Asia) -> sooner..the Philippines (11992ms) What is the richest country in the world? Uganda -8.121407672630154 What is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest country in africa ? -> $x: ($x, be the richest country in, africa) -> (Uganda, is the richest country in, Africa) -> Uganda (13085ms) What is the richest country in the world? Nigeria -8.402970351201846 What is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest country in africa ? -> $x: ($x, be the richest country in, africa) -> (Nigeria, should be the richest country in, Africa) -> Nigeria (13290ms) What is the richest country in the world? New York city -8.585315623041751 What is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest city in the world ? -> $x: ($x, be the richest city in, the world) -> (New York city, is the richest city in, the world) -> New York city (12179ms) What is the richest country in the world? Ethiopia -8.61001508993558 What is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest country in africa ? -> $x: ($x, be the richest country in, africa) -> (Ethiopia, is also the 10th richest country in, Africa) -> Ethiopia (13432ms) What is the richest country in the world? Zambia -8.610762206871673 What is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest country in africa ? -> $x: ($x, be the richest country in, africa) -> (Zambia, was actually the richest country in, Central Africa) -> Zambia (13432ms) What is the richest country in the world? a good track record -8.696368981828794 What is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest country in africa ? -> $x: ($x, be the richest country in, africa) -> (a good track record, is the richest country in, Africa) -> a good track record (13547ms) What is the richest country in the world? 1962 Myanmar -8.801049613093863 What is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest country in asia ? -> $x: ($x, be the richest country in, asia) -> (1962 Myanmar, was the single richest country in, Asia) -> 1962 Myanmar (12400ms) What is the richest country in the world? Philadelphia -8.805247833868023 What is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest city in the world ? -> $x: ($x, be the richest city in, the world) -> (Philadelphia, was the richest city in, the world) -> Philadelphia (12400ms) What is the richest country in the world? the Arab world -8.999537649893465 What is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the name of the richest country ? -> $x: ($x, be the name of, the richest country) -> (the Arab world, is the name of, the richest country) -> the Arab world (13829ms) What is the richest country in the world? Babylon -9.025594137591385 What is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest city in the world ? -> $x: ($x, be the richest city in, the world) -> (Babylon, was the richest city in, the ancient world) -> Babylon (13829ms) What is the richest country in the world? Zimbabwe -9.077302093900729 What is the richest country in the world? -> what [ be the richest country ] in the world ? -> what be be the richest country on the planet ? -> $x: ($x, be be the richest country on, the planet) -> (Zimbabwe, would be the richest country on, the planet) -> Zimbabwe (13914ms) What is the richest country in the world? Melbourne -9.08140792448434 What is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest city in the world ? -> $x: ($x, be the richest city in, the world) -> (Melbourne, was the richest city in, the world) -> Melbourne (13914ms) What is the richest country in the world? Abu Dhabi -9.1326843193116 What is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest city in the world ? -> $x: ($x, be the richest city in, the world) -> (Abu Dhabi, is the richest city in, the world) -> Abu Dhabi (14018ms) What is the richest country in the world? Timbuktu -9.1627189073387 What is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest city in the world ? -> $x: ($x, be the richest city in, the world) -> (Timbuktu, was the richest city in, the world) -> Timbuktu (14018ms) What is the richest country in the world? Baghdad -9.173329302258743 What is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest city in the world ? -> $x: ($x, be the richest city in, the world) -> (Baghdad, was the richest city in, the world) -> Baghdad (14199ms) What is the richest country in the world? Economy S?o Paulo -9.229906263089827 What is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest city in the world ? -> $x: ($x, be the richest city in, the world) -> (Economy S?o Paulo, is the 10th richest city in, the world) -> Economy S?o Paulo (14365ms) What is the richest country in the world? London -9.274381414805262 What is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest city in the world ? -> $x: ($x, be the richest city in, the world) -> (London, is likely the richest city in, the world) -> London (14415ms) What is the richest country in the world? THE BUZZ Abu Dhabi -9.445656100617922 What is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest city in the world ? -> $x: ($x, be the richest city in, the world) -> (THE BUZZ Abu Dhabi, is the richest city in, the world) -> THE BUZZ Abu Dhabi (14465ms) What is the richest country in the world? Sao Paulo Brazil -9.503833353882342 What is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest city in the world ? -> $x: ($x, be the richest city in, the world) -> (Sao Paulo Brazil, is the 19th richest city in, the world) -> Sao Paulo Brazil (14536ms) What is the richest country in the world? S?o Paulo -9.881188468204506 What is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest city in the world ? -> $x: ($x, be the richest city in, the world) -> (S?o Paulo, is the 19th richest city in, the world) -> S?o Paulo (14766ms) What is the richest country in the world? Sao Paulo -9.942133552287338 What is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest city in the world ? -> $x: ($x, be the richest city in, the world) -> (Sao Paulo, is the 10th richest city in, the world) -> Sao Paulo (14797ms) What is the richest country in the world? America and China -10.333429559042877 What is the richest country in the world? -> what be the richest [ country in the world ] ? -> what be two country in the world ? -> $x: ($x, be two country in, the world) -> (America and China, are the only two countries in, the world) -> America and China (14969ms) What is the richest country in the world? China and India -10.345808326765113 What is the richest country in the world? -> what be the richest [ country in the world ] ? -> what be two country in the world ? -> $x: ($x, be two country in, the world) -> (China and India, are the only two countries in, the world) -> China and India (14969ms) What is the richest country in the world? India & China -10.35818709448735 What is the richest country in the world? -> what be the richest [ country in the world ] ? -> what be two country in the world ? -> $x: ($x, be two country in, the world) -> (India & China, are the only two countries in, the world) -> India & China (14994ms) What is the richest country in the world? Amsterdam -10.3648009644728 What is the richest country in the world? -> what be [ the richest ] country in the world ? -> what be the richest city in the world ? -> $x: ($x, be the richest city in, the world) -> (Amsterdam, was the richest city in, the world) -> Amsterdam (14994ms) What is the richest country in the world? Madagascar -10.366154096724534 What is the richest country in the world? -> what be the richest [ country in the world ] ? -> what be two country in the world ? -> $x: ($x, be two country in, the world) -> (Madagascar, are the only two countries in, the world) -> Madagascar (14995ms) What is the richest country in the world? India and China -10.519539850115551 What is the richest country in the world? -> what be the richest [ country in the world ] ? -> what be two country in the world ? -> $x: ($x, be two country in, the world) -> (India and China, are the only two countries in, the world) -> India and China (15155ms) What store does Martha Stewart advertise for? year -9.52837686564407 What store does Martha Stewart advertise for? -> $x: ($x, instance of, store) (Martha Stewart, advertise for, $x) -> $x: ($x, instance of, store) (Martha Stewart, could be for, $x) -> (year, Instance Of, Store key vehicle information) (Martha Stewart, could be living there for, years) -> year (546ms) What is Britney Spears' middle name? Britney Spears -10.107564249071503 What is Britney Spears' middle name? -> what be [ britney spear ] middle name ? -> who know britney spear ? -> $x: ($x, know, britney spear) -> (Britney Spears, Also known as, Britney Jean Spears) -> Britney Spears (14969ms) What is Britney Spears' middle name? Svetlana Svetikova -10.191101886217002 What is Britney Spears' middle name? -> what be [ britney spear ] middle name ? -> who know britney spear ? -> $x: ($x, know, britney spear) -> (Svetlana Svetikova, Also known as, Britney Spears of Russia) -> Svetlana Svetikova (14968ms) What is Britney Spears' middle name? The Circus: Starring Britney Spears -10.295798009266772 What is Britney Spears' middle name? -> what be [ britney spear ] middle name ? -> who know britney spear ? -> $x: ($x, know, britney spear) -> (The Circus: Starring Britney Spears, Also known as, The Circus Starring: Britney Spears) -> The Circus: Starring Britney Spears (14968ms) What is Britney Spears' middle name? Britney Spears: In the Zone -10.295798009266772 What is Britney Spears' middle name? -> what be [ britney spear ] middle name ? -> who know britney spear ? -> $x: ($x, know, britney spear) -> (Britney Spears: In the Zone, Also known as, "Britney Spears: In the Zone"@ru) -> Britney Spears: In the Zone (14968ms) What is Britney Spears' middle name? Britney Spears: Greatest Hits: My Prerogative -10.313665781656226 What is Britney Spears' middle name? -> what be [ britney spear ] middle name ? -> who know britney spear ? -> $x: ($x, know, britney spear) -> (Britney Spears: Greatest Hits: My Prerogative, Also known as, Britney Spears: Greatest Hits - My Prerogative) -> Britney Spears: Greatest Hits: My Prerogative (14968ms) What is Britney Spears' middle name? Oops! I Did It Again: The Best Of Britney Spears -10.367269098824586 What is Britney Spears' middle name? -> what be [ britney spear ] middle name ? -> who know britney spear ? -> $x: ($x, know, britney spear) -> (Oops! I Did It Again: The Best Of Britney Spears, Also known as, Oops! I Did It Again - The Best Of Britney Spears) -> Oops! I Did It Again: The Best Of Britney Spears (14969ms) What is Britney Spears' middle name? Britney Spears doll -11.048461731742062 What is Britney Spears' middle name? -> what be [ britney spear ] middle name ? -> who know britney spear ? -> $x: ($x, know, britney spear) -> (Britney Spears doll, Also known as, Britney Spears Doll) -> Britney Spears doll (14968ms) What is Britney Spears' middle name? the West -11.855484163754525 What is Britney Spears' middle name? -> what be [ britney spear ] middle name ? -> who know britney spear ? -> $x: ($x, know, britney spear) -> (the West, knows everything about, Britney Spears) -> the West (14968ms) What is Britney Spears' middle name? the Lindsay Lohan -13.71137586212592 What is Britney Spears' middle name? -> what be [ britney spear ] middle name ? -> who know britney spear ? -> $x: ($x, know, britney spear) -> (the Lindsay Lohan, known as, the Britney Spears) -> the Lindsay Lohan (15051ms) What is Britney Spears' middle name? The lass -14.069143350975917 What is Britney Spears' middle name? -> what be [ britney spear ] middle name ? -> who know britney spear ? -> $x: ($x, know, britney spear) -> (The lass, has been known as, the Britney Spears lookalike) -> The lass (15051ms) What is Britney Spears' middle name? the next county -14.43227232759724 What is Britney Spears' middle name? -> what be [ britney spear ] middle name ? -> who know britney spear ? -> $x: ($x, know, britney spear) -> (the next county, knows all about, Britney Spears) -> the next county (15051ms) What is Britney Spears' middle name? the students -14.563013549972922 What is Britney Spears' middle name? -> what be [ britney spear ] middle name ? -> who know britney spear ? -> $x: ($x, know, britney spear) -> (the students, knew, Elvis or Britney Spears) -> the students (15051ms) What is Britney Spears' middle name? the train wreck -15.285417646976379 What is Britney Spears' middle name? -> what be [ britney spear ] middle name ? -> who know britney spear ? -> $x: ($x, know, britney spear) -> (the train wreck, known as, Britney Spears) -> the train wreck (15051ms) Who is Anubis? egyptian deity -2.4730515156282245 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, egyptian deity) -> egyptian deity (3229ms) Who is Anubis? infernal deity -2.544856315900308 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, infernal deity) -> infernal deity (3229ms) Who is Anubis? intriguing character -2.6637353514532114 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, intriguing character) -> intriguing character (3229ms) Who is Anubis? awesome character -2.6638419787596628 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, awesome character) -> awesome character (3229ms) Who is Anubis? great leader -2.667844523659931 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, great leader) -> great leader (3229ms) Who is Anubis? protective deity -2.6791288483693214 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, protective deity) -> protective deity (3229ms) Who is Anubis? removable figure -2.6887705217074065 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, removable figure) -> removable figure (3378ms) Who is Anubis? cynocephalic deity -2.6887705217074065 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, cynocephalic deity) -> cynocephalic deity (3378ms) Who is Anubis? primary character -2.6997378988228666 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, primary character) -> primary character (3378ms) Who is Anubis? minor deity -2.703286167493083 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, minor deity) -> minor deity (3378ms) Who is Anubis? dark deity -2.7112037925785155 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, dark deity) -> dark deity (3378ms) Who is Anubis? leaved plant -2.7118597356551537 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (anubis, Instance Of, leaved plant) -> leaved plant (3378ms) Who is Anubis? great ride -2.7145761144876532 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, great ride) -> great ride (3393ms) Who is Anubis? great tool -2.730549755976404 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, great tool) -> great tool (3393ms) Who is Anubis? egyptian god -2.981268084477934 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, egyptian god) -> egyptian god (3393ms) Who is Anubis? low light plant -3.177563617256066 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, low light plant) -> low light plant (3393ms) Who is Anubis? ancient egyptian god -3.196031054700807 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, ancient egyptian god) -> ancient egyptian god (3393ms) Who is Anubis? ancient god -3.213696521043385 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, ancient god) -> ancient god (3393ms) Who is Anubis? god -3.235275317733835 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, god) -> god (3410ms) Who is Anubis? extremely ancient deity -3.2415573170154834 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, extremely ancient deity) -> extremely ancient deity (3410ms) Who is Anubis? egytian god -3.2574251971274473 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, egytian god) -> egytian god (3410ms) Who is Anubis? animal-headed god of ancient egypt -3.2714734060340893 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, animal-headed god of ancient egypt) -> animal-headed god of ancient egypt (3410ms) Who is Anubis? malwarebinary analysis platform -3.2823296855717903 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, malwarebinary analysis platform) -> malwarebinary analysis platform (3410ms) Who is Anubis? hieroglyph egyptian god -3.2920372370530897 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, hieroglyph egyptian god) -> hieroglyph egyptian god (3425ms) Who is Anubis? principal egyptian god -3.2920372370530897 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, principal egyptian god) -> principal egyptian god (3410ms) Who is Anubis? dog-headed human figure -3.312245774590396 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, dog-headed human figure) -> dog-headed human figure (3425ms) Who is Anubis? fate and underworld deity -3.312245774590396 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, fate and underworld deity) -> fate and underworld deity (3425ms) Who is Anubis? deity of Egyptian cult and religion -3.312245774590396 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, deity of Egyptian cult and religion) -> deity of Egyptian cult and religion (3425ms) Who is Anubis? Egyptian Lord of the Dead -3.312245774590396 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, Egyptian Lord of the Dead) -> Egyptian Lord of the Dead (3425ms) Who is Anubis? goldfish safe aquarium plant -3.312245774590396 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, goldfish safe aquarium plant) -> goldfish safe aquarium plant (3425ms) Who is Anubis? comic book character -3.3177695242588396 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, comic book character) -> comic book character (3447ms) Who is Anubis? false god -3.3270095510523117 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, false god) -> false god (3447ms) Who is Anubis? dynamicmalware analysis platform -3.327223641006932 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, dynamicmalware analysis platform) -> dynamicmalware analysis platform (3447ms) Who is Anubis? fairly small character -3.327223641006932 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, fairly small character) -> fairly small character (3447ms) Who is Anubis? amazingly young band -3.327223641006932 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, amazingly young band) -> amazingly young band (3447ms) Who is Anubis? well rounded character -3.3387682479808056 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, well rounded character) -> well rounded character (3461ms) Who is Anubis? ancient Egyptian deity -3.339664216766196 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, ancient Egyptian deity) -> ancient Egyptian deity (3461ms) Who is Anubis? great aquatic plant -3.354642083182732 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, great aquatic plant) -> great aquatic plant (3461ms) Who is Anubis? middle kingdom deity -3.354642083182732 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, middle kingdom deity) -> middle kingdom deity (3461ms) Who is Anubis? house band with name -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (anubis, Instance Of, house band with name) -> house band with name (3492ms) Who is Anubis? fate and the underworld deity -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, fate and the underworld deity) -> fate and the underworld deity (3491ms) Who is Anubis? lord of the land of death -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, lord of the land of death) -> lord of the land of death (3476ms) Who is Anubis? principal egyptian-greco-roman god -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, principal egyptian-greco-roman god) -> principal egyptian-greco-roman god (3507ms) Who is Anubis? god of the pharoahs -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, god of the pharoahs) -> god of the pharoahs (3523ms) Who is Anubis? god with the head of a dog or a jackal -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, god with the head of a dog or a jackal) -> god with the head of a dog or a jackal (3476ms) Who is Anubis? god of greek mythology -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, god of greek mythology) -> god of greek mythology (3491ms) Who is Anubis? Ancient Mysterious Figure -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, Ancient Mysterious Figure) -> Ancient Mysterious Figure (3491ms) Who is Anubis? anthropomorphic egyptian god -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, anthropomorphic egyptian god) -> anthropomorphic egyptian god (3523ms) Who is Anubis? god of antiquity -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, god of antiquity) -> god of antiquity (3507ms) Who is Anubis? Egyptian-themed character -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, Egyptian-themed character) -> Egyptian-themed character (3536ms) Who is Anubis? dog-like deity -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, dog-like deity) -> dog-like deity (3524ms) Who is Anubis? god by mortal -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, god by mortal) -> god by mortal (3476ms) Who is Anubis? god with astonishing power -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, god with astonishing power) -> god with astonishing power (3524ms) Who is Anubis? famous figure from historical egypt -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, famous figure from historical egypt) -> famous figure from historical egypt (3524ms) Who is Anubis? giant stones of these deity -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, giant stones of these deity) -> giant stones of these deity (3536ms) Who is Anubis? animal-shaped or animal-headed deity -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, animal-shaped or animal-headed deity) -> animal-shaped or animal-headed deity (3507ms) Who is Anubis? funerary and protective deity -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, funerary and protective deity) -> funerary and protective deity (3507ms) Who is Anubis? egyptian god of lore -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, egyptian god of lore) -> egyptian god of lore (3476ms) Who is Anubis? religious or mythological figure -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, religious or mythological figure) -> religious or mythological figure (3491ms) Who is Anubis? common egyptian tattoo show god -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, common egyptian tattoo show god) -> common egyptian tattoo show god (3461ms) Who is Anubis? egypt too god -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, egypt too god) -> egypt too god (3536ms) Who is Anubis? egyptians god -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, egyptians god) -> egyptians god (3524ms) Who is Anubis? dog deity of the Egyptians -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, dog deity of the Egyptians) -> dog deity of the Egyptians (3476ms) Who is Anubis? second order Egyptian deity -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, second order Egyptian deity) -> second order Egyptian deity (3506ms) Who is Anubis? god in the afterlife -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, god in the afterlife) -> god in the afterlife (3507ms) Who is Anubis? egyption god -3.357139730025539 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, egyption god) -> egyption god (3491ms) Who is Anubis? progressive rock band -3.3587919008219496 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, progressive rock band) -> progressive rock band (3536ms) Who is Anubis? animal god -3.3630151105793313 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, animal god) -> animal god (3536ms) Who is Anubis? sun god -3.3727015486240033 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (anubis, Instance Of, sun god) -> sun god (3536ms) Who is Anubis? god of egypt -3.3735907950858786 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, god of egypt) -> god of egypt (3991ms) Who is Anubis? solar god -3.3754186910675053 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, solar god) -> solar god (3991ms) Who is Anubis? low-light plant -3.38266724337958 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (anubis, Instance Of, low-light plant) -> low-light plant (3991ms) Who is Anubis? MyCams model -3.403652876936989 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (ANUBIS, Instance Of, MyCams model) -> MyCams model (3991ms) Who is Anubis? hieroglyphic egyptian god -3.404142774455881 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, hieroglyphic egyptian god) -> hieroglyphic egyptian god (3991ms) Who is Anubis? deity -3.7385169927980977 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, deity) -> deity (4251ms) Who is Anubis? Egyptian deity -3.8594282487293414 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, Egyptian deity) -> Egyptian deity (4251ms) Who is Anubis? tool -3.8792911934571457 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, tool) -> tool (4251ms) Who is Anubis? symbol -3.895933846981114 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, symbol) -> symbol (4251ms) Who is Anubis? good plant -3.9003857807912157 Who is Anubis? -> $x: (Anubis, instance of, $x) -> $x: (anubi, instance of, $x) -> (Anubus, Instance Of, good plant) -> good plant (4251ms) Who is Anubis? character -3.9091037781199436 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, character) -> character (4271ms) Who is Anubis? private company -3.947491820469608 Who is Anubis? -> $x: (Anubis, instance of, $x) -> $x: (anubi, instance of, $x) -> (Anubus Software, Instance Of, private company) -> private company (4271ms) Who is Anubis? figure -4.051238285935138 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, figure) -> figure (4271ms) Who is Anubis? warlord -4.080078800350735 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, warlord) -> warlord (4271ms) Who is Anubis? candidate -4.082610556918667 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, candidate) -> candidate (4271ms) Who is Anubis? woman -4.092747079912777 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, woman) -> woman (4271ms) Who is Anubis? factor -4.097401106342255 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, factor) -> factor (4283ms) Who is Anubis? female -4.117497859612275 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, female) -> female (4283ms) Who is Anubis? matter -4.121663356403885 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, matter) -> matter (4283ms) Who is Anubis? monster -4.121921400540455 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, monster) -> monster (4283ms) Who is Anubis? creature -4.122014752291906 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, creature) -> creature (4283ms) Who is Anubis? gift -4.124195524806964 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, gift) -> gift (4283ms) Who is Anubis? work -4.127841702380648 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, work) -> work (4296ms) Who is Anubis? name -4.131457156562065 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, name) -> name (4296ms) Who is Anubis? girl -4.133281608327132 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, girl) -> girl (4296ms) Who is Anubis? platform -4.137230494539669 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (Anubis, Instance Of, platform) -> platform (4296ms) Who is Anubis? material -4.149840166038013 Who is Anubis? -> $x: (Anubis, instance of, $x) -> (ANUBIS, Instance Of, material) -> material (4296ms) Who is Anubis? two-pieces-band -4.2199635169646115 Who is Anubis? -> $x: (Anubis, instance of, $x) -> $x: (anubi, instance of, $x) -> (Anubi, Instance Of, two-pieces-band) -> two-pieces-band (4307ms) Who is Anubis? improved lollo rosso -4.551959139000365 Who is Anubis? -> $x: (Anubis, instance of, $x) -> $x: (anubi, instance of, $x) -> (Anubi, Instance Of, improved lollo rosso) -> improved lollo rosso (4307ms) Who is Anubis? sound pug -4.581875228018972 Who is Anubis? -> $x: (Anubis, instance of, $x) -> $x: (anubi, instance of, $x) -> (Anubus, Instance Of, sound pug) -> sound pug (4307ms) Who is Anubis? sexy part of this Egyptian breakfast -4.581875228018972 Who is Anubis? -> $x: (Anubis, instance of, $x) -> $x: (anubi, instance of, $x) -> (Anubus, Instance Of, sexy part of this Egyptian breakfast) -> sexy part of this Egyptian breakfast (4307ms) Who is Anubis? set of portfolio management tool -4.581875228018972 Who is Anubis? -> $x: (Anubis, instance of, $x) -> $x: (anubi, instance of, $x) -> (Anubus, Instance Of, set of portfolio management tool) -> set of portfolio management tool (4307ms) Who is Anubis? improved lollo rosso type -4.581875228018972 Who is Anubis? -> $x: (Anubis, instance of, $x) -> $x: (anubi, instance of, $x) -> (Anubi, Instance Of, improved lollo rosso type) -> improved lollo rosso type (4307ms) Who is Anubis? WAY better name -4.607184559446741 Who is Anubis? -> $x: (Anubis, instance of, $x) -> $x: (anubi, instance of, $x) -> (Anubus, Instance Of, WAY better name) -> WAY better name (4323ms) Who is Anubis? net.label -4.618890122872612 Who is Anubis? -> $x: (Anubis, instance of, $x) -> $x: (anubi, instance of, $x) -> (Anubus Music, Instance Of, net.label) -> net.label (4323ms) Who is Anubis? 4 year entire male -5.04182813631746 Who is Anubis? -> $x: (Anubis, instance of, $x) -> $x: (anubi, instance of, $x) -> (Anubus, Instance Of, 4 year entire male) -> 4 year entire male (4323ms) Who is Anubis? leader -5.3699111358057126 Who is Anubis? -> $x: (Anubis, instance of, $x) -> $x: (anubi, instance of, $x) -> (Anubus, Instance Of, leader) -> leader (4323ms) Who is Anubis? the donate button -10.02087966425503 Who is Anubis? -> $x: (Anubis, instance of, $x) -> $x: (Anubis, modelling, $x) -> (an Anubis plushie, modeled after, the donate button) -> the donate button (4323ms) Who is Anubis? The face -11.805365560375574 Who is Anubis? -> who be [ anubi ] ? -> who be be anubi ? -> $x: ($x, be be, anubi) -> (The face, down was a Judgement of, Anubus) -> The face (5255ms) Who is Anubis? Xylophanes anubus -11.855263317291634 Who is Anubis? -> who be [ anubi ] ? -> what s the name of anubi ? -> $x: (anubi, name, $x) -> (Xylophanes anubus, Scientific name, Xylophanes anubus) -> Xylophanes anubus (5686ms) Who is Anubis? the genus Xylophanes -12.017784186859425 Who is Anubis? -> who be [ anubi ] ? -> who be be anubi ? -> $x: ($x, be be, anubi) -> (the genus Xylophanes, is, Xylophanes anubus) -> the genus Xylophanes (5255ms) Who is Anubis? the black fox -12.21309217569454 Who is Anubis? -> who be [ anubi ] ? -> who be be anubi ? -> $x: ($x, be be, anubi) -> (the black fox, is, Anubi) -> the black fox (5255ms) Who is Anubis? 1987-03-03 -13.387515100112395 Who is Anubis? -> who be [ anubi ] ? -> what be the birthdate of anubi ? -> $x: (anubi, birthdate, $x) -> $x: (anubi, date of birth, $x) -> (Kola Anubi, Date of birth, 1987-03-03) -> 1987-03-03 (8044ms) When did Hawaii become a state? 1978 -5.070058624713676 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what date be hawaius establish ? -> $x: (hawaius, establish date, $x) -> (Hawaii Volcanoes Wilderness, Date Established, 1978) -> 1978 (11073ms) When did Hawaii become a state? 1963 -6.394324438141158 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become in, $x) -> $x: (hawaius, become in, $x) -> (Hawaii, became a state in, 1963) -> 1963 (13140ms) When did Hawaii become a state? 1893 -6.404934780358907 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become in, $x) -> $x: (hawaius, become in, $x) -> (Hawaii, became a republic in, 1893) -> 1893 (13140ms) When did Hawaii become a state? 1900 -6.4288081294022845 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become in, $x) -> $x: (hawaius, become in, $x) -> (Hawaii, became a territory in, 1900) -> 1900 (13139ms) When did Hawaii become a state? 1959 -6.497283577316443 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become in, $x) -> $x: (hawaius, become in, $x) -> (Hawaii, became a State in, 1959) -> 1959 (13140ms) When did Hawaii become a state? 2005 -6.607765749645945 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what be the date of hawaius independence ? -> $x: (hawaius independence, date, $x) -> (A Study on Korean immigration and independence movements in Hawaii : relating to Korean churches and picture bride, 1903-2003, Publication date, 2005) -> 2005 (9524ms) When did Hawaii become a state? 1918 -6.746885474927543 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become in, $x) -> $x: (hawaius, become in, $x) -> (Hawaii, became dry in, 1918) -> 1918 (13140ms) When did Hawaii become a state? 2000 -6.771703605919145 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become in, $x) -> $x: (hawaius, become in, $x) -> (Hawaii, became available in, 2000) -> 2000 (13275ms) When did Hawaii become a state? 1970 -6.82563966151587 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become in, $x) -> $x: (hawaius, become in, $x) -> (Hawaii, became independent in, 1970) -> 1970 (13275ms) When did Hawaii become a state? 1898 -6.846040780379823 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become in, $x) -> $x: (hawaius, become in, $x) -> (Hawaii, became American in, 1898) -> 1898 (13275ms) When did Hawaii become a state? 1894 -7.054671958157225 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become in, $x) -> $x: (hawaius, become in, $x) -> (Hawaii, became an independent republic in, 1894) -> 1894 (13324ms) When did Hawaii become a state? 2001 -7.063724986551965 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what date be hawaius establish ? -> $x: ($x, instance of, date) (hawaius, establish, $x) -> (2001, Instance Of, date) (Hawaii Photography Club, was established in, 2001) -> 2001 (11073ms) When did Hawaii become a state? 1957 -7.18295426170441 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what date be hawaius establish ? -> $x: ($x, instance of, date) (hawaius, establish, $x) -> (1957, Instance Of, date) (Hawaii, was established in, 1957.) -> 1957 (11073ms) When did Hawaii become a state? 2010 -7.290121527935911 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what date be hawaius establish ? -> $x: ($x, instance of, date) (hawaius, establish, $x) -> (2010, Instance Of, date) (The East Hawai?i Fund, was established in, 2010) -> 2010 (11073ms) When did Hawaii become a state? 1961 -7.411932104437973 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> which state be hawaius ? -> $x: (hawaius, state, $x) -> (Hawaii, was a state in, 1961) -> 1961 (18336ms) When did Hawaii become a state? August 1959 -7.8849304312290815 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become in, $x) -> $x: (hawaius, become in, $x) -> (Hawaii, became a state in, August 1959) -> August 1959 (13978ms) When did Hawaii become a state? June 1900 -8.036759066286908 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become in, $x) -> $x: (hawaius, become in, $x) -> (Hawaii, became a US territory in, June 1900) -> June 1900 (14042ms) When did Hawaii become a state? August 21 , 1959 -8.546669640953473 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> which state be hawaius ? -> $x: (hawaius, state, $x) -> (Hawaii, became a state on, August 21 , 1959) -> August 21 , 1959 (18437ms) When did Hawaii become a state? Aug. 21 , 1959 -8.603931941834329 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> which state be hawaius ? -> $x: (hawaius, state, $x) -> (Hawaii, became a state on, Aug. 21 , 1959) -> Aug. 21 , 1959 (18566ms) When did Hawaii become a state? 1916 D -8.901292924518023 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what date be hawaius establish ? -> $x: ($x, instance of, date) (hawaius, establish, $x) -> (1916 D, Instance Of, date) (Kamaka Hawaii, was established in, 1916) -> 1916 D (12271ms) When did Hawaii become a state? August 25 , 2010 -9.157147495811838 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when be hawaius settle ? -> $x: (hawaius, be settle on, $x) -> (The Hawaii suit, was settled on, August 25 , 2010) -> August 25 , 2010 (17495ms) When did Hawaii become a state? August -9.279918241199637 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become in, $x) -> $x: (hawaius, become in, $x) -> (Hawaii, became a state in, August) -> August (15266ms) When did Hawaii become a state? August of 1959 -9.363010828191173 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become in, $x) -> $x: (hawaius, become in, $x) -> (Hawaii, became a state in, August of 1959) -> August of 1959 (15266ms) When did Hawaii become a state? 1941 -9.54113162293297 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what date be hawaius establish ? -> $x: ($x, instance of, date) (hawaius, establish, $x) -> $x: ($x, instance of, date) (hawaius, be establish, $x) -> (1941, Instance Of, date) (Hawaii Vocational School, was established in, 1941) -> 1941 (16005ms) When did Hawaii become a state? July 4 -9.75389569368812 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what date be hawaius establish ? -> $x: ($x, instance of, date) (hawaius, establish, $x) -> (July 4, Instance Of, date) (The Republic of Hawaii, was established, July 4) -> July 4 (12368ms) When did Hawaii become a state? 1979 -9.773882542340456 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what date be hawaius establish ? -> $x: ($x, instance of, date) (hawaius, establish, $x) -> $x: ($x, instance of, date) (hawaius, be establish, $x) -> (1979, Instance Of, date) (The Hawaii Jayceettes, were established in, 1979) -> 1979 (16132ms) When did Hawaii become a state? 1898. -9.845030747326321 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become in, $x) -> $x: (hawaius, become in, $x) -> (Hawaii, officially became a US territory in, 1898.) -> 1898. (16770ms) When did Hawaii become a state? August 21 -9.876556593516419 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become on, $x) -> $x: (hawaius, become on, $x) -> (Hawaii, became a state on, August 21) -> August 21 (16770ms) When did Hawaii become a state? the Union -10.021293173956021 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become in, $x) -> (Hawai'i, did indeed become the 50th State in, the Union) -> the Union (12368ms) When did Hawaii become a state? hips -10.035753686776495 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what become of hawaius ? -> $x: ($x, become of, hawaius) -> (hips, has become a legendary symbol of, Hawaii) -> hips (12368ms) When did Hawaii become a state? Japan 1894.7.4 Dole -10.156241555777315 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what become of hawaius ? -> $x: ($x, become of, hawaius) -> (Japan 1894.7.4 Dole, became president of, Hawaii) -> Japan 1894.7.4 Dole (16770ms) When did Hawaii become a state? 16 years -10.20817290949549 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become in, $x) -> $x: (hawaius, become in, $x) -> (Hawaii, recently became the first state in, 16 years) -> 16 years (16770ms) When did Hawaii become a state? 2. Prince Kamehameha V -10.213350441615928 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what become of hawaius ? -> $x: ($x, become of, hawaius) -> (2. Prince Kamehameha V, became the King of, Hawaii) -> 2. Prince Kamehameha V (16890ms) When did Hawaii become a state? John -10.243140749355359 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what become of hawaius ? -> $x: ($x, become of, hawaius) -> (John, became a member of, the Hawaii Bar) -> John (16890ms) When did Hawaii become a state? July 4th -10.296572142448923 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what date be hawaius establish ? -> $x: ($x, instance of, date) (hawaius, establish, $x) -> (July 4th, Instance Of, date) (The Republic of Hawaii, was established, July 4) -> July 4th (16890ms) When did Hawaii become a state? the Republic -10.383799136063912 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what become of hawaius ? -> $x: ($x, become of, hawaius) -> (the Republic, became the Territory of, Hawaii) -> the Republic (16890ms) When did Hawaii become a state? the Pacific -10.546715114078136 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what become of hawaius ? -> $x: ($x, become of, hawaius) -> (the Pacific, could become part of, Hawaii) -> the Pacific (16983ms) When did Hawaii become a state? August 21st 1959 -10.625955358598905 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become on, $x) -> $x: (hawaius, become on, $x) -> (Hawaii, became the 50th state on, August 21st 1959) -> August 21st 1959 (16983ms) When did Hawaii become a state? righteousness ? -10.651934666068296 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what become of hawaius ? -> $x: ($x, become of, hawaius) -> (righteousness ?, became the motto of, Hawaii) -> righteousness ? (16983ms) When did Hawaii become a state? a company -10.716312533687974 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what become of hawaius ? -> $x: ($x, become of, hawaius) -> (a company, became the State of, Hawaii) -> a company (17123ms) When did Hawaii become a state? Chow -10.718357892678132 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what become of hawaius ? -> $x: ($x, become of, hawaius) -> (Chow, became the head coach of, the Hawaii Warriors) -> Chow (17123ms) When did Hawaii become a state? a Ph.D -10.768355000105828 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what become of hawaius ? -> $x: ($x, become of, hawaius) -> (a Ph.D, became a University of, Hawaii professor) -> a Ph.D (17123ms) When did Hawaii become a state? Aug. 21 , -10.827563501241835 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become on, $x) -> $x: (hawaius, become on, $x) -> (( Hawaii, became a state on, Aug. 21 ,) -> Aug. 21 , (17123ms) When did Hawaii become a state? real estate -10.83303191720934 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what become of hawaius ? -> $x: ($x, become of, hawaius) -> (real estate, has become a major portion of, Hawaii?s economy) -> real estate (17123ms) When did Hawaii become a state? the United States -10.852717590027272 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what become of hawaius ? -> $x: ($x, become of, hawaius) -> (the United States, becomes a resident of, Hawaii) -> the United States (17123ms) When did Hawaii become a state? marine debris -10.865059900158187 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become in, $x) -> $x: (hawaius, become in, $x) -> (Alaska and Hawaii, become entangled in, marine debris) -> marine debris (17495ms) When did Hawaii become a state? Oahu -10.878770484242064 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when be hawaius ratify ? -> $x: (hawaius, be ratify in, $x) -> $x: ($x, be, hawaius) -> (Oahu, is a proxy for, HAWAII) -> Oahu (17495ms) When did Hawaii become a state? a small local drive-inn -10.941336197281462 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what become of hawaius ? -> $x: ($x, become of, hawaius) -> (a small local drive-inn, has become one of, Hawaii) -> a small local drive-inn (17495ms) When did Hawaii become a state? the West -10.944702298430034 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> when do hawaius become ? -> $x: (hawaius, do become in, $x) -> $x: (hawaius, become in, $x) -> (Hawaii, started to become popular in, the West) -> the West (17495ms) When did Hawaii become a state? a nice Jewish republican woman -10.946641368390337 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what become of hawaius ? -> $x: ($x, become of, hawaius) -> (a nice Jewish republican woman, become Governor of, Hawaii) -> a nice Jewish republican woman (17770ms) When did Hawaii become a state? 5 hour -11.00113307175845 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what state be hawaius locate ? -> $x: ($x, instance of, state) (hawaius, locate, $x) -> (5 hour, Instance Of, state-selected, average-stream-flow travel time) (Hawaii, is located, 5 hours) -> 5 hour (17770ms) When did Hawaii become a state? Land -11.008250750303482 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what become of hawaius ? -> $x: ($x, become of, hawaius) -> (Land, become the Islands of, Hawai?i) -> Land (17769ms) When did Hawaii become a state? usa... -11.029100195849988 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what state be hawaius locate ? -> $x: (hawaius, locate state, $x) -> (HAWAII, is a state or province located in the geopolitical location, usa...) -> usa... (17769ms) When did Hawaii become a state? Us -11.029100195849988 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what state be hawaius locate ? -> $x: (hawaius, locate state, $x) -> (HAWAII, is a state or province located in the geopolitical location, Us) -> Us (17769ms) When did Hawaii become a state? Hana -13.594969541979744 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> which state be in hawaius ? -> $x: ($x, instance of, state) ($x, be in, hawaius) -> (Hana, Instance Of, state of mind) (hana, is a city located in the state or province, HAWAII) -> Hana (8235ms) When did Hawaii become a state? sugar -14.378224614440597 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> which state be in hawaius ? -> $x: ($x, instance of, state) ($x, be in, hawaius) -> (sugar, Instance Of, state industry) (Sugar, is an agricultural product growing in, HAWAII) -> sugar (8235ms) When did Hawaii become a state? coffee -14.411250398430981 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> which state be in hawaius ? -> $x: ($x, instance of, state) ($x, be in, hawaius) -> (coffee, Instance Of, state industry) (Coffee, is an agricultural product growing in, HAWAII) -> coffee (8235ms) When did Hawaii become a state? Schofield Barracks -15.002202048804207 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> which state be in hawaius ? -> $x: ($x, instance of, state) ($x, be in, hawaius) -> (Schofield Barracks, Instance Of, United States Army installation) (Schofield Barracks, is a city located in the state or province, HAWAII) -> Schofield Barracks (9523ms) When did Hawaii become a state? Haleiwa -15.104781528222693 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> which state be in hawaius ? -> $x: ($x, instance of, state) ($x, be in, hawaius) -> (Haleiwa, Instance Of, state marina) (haleiwa, is a city located in the state or province, HAWAII) -> Haleiwa (9549ms) When did Hawaii become a state? hotel -15.278160565544436 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> what year hawaius become a state ? -> $x: ($x, instance of, year hawaius) ($x, become, a state) -> $x: ($x, instance of, year hawaius) ($x, become, state) -> (hotel, Instance Of, year hawaii's travel industry) (a hotel, has become, ?state) -> hotel (9549ms) When did Hawaii become a state? Coffee -15.283749280098094 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> which state be in hawaius ? -> $x: ($x, instance of, state) ($x, be in, hawaius) -> (Coffee, Instance Of, constant state) (Coffee, is an agricultural product growing in, HAWAII) -> Coffee (9549ms) When did Hawaii become a state? Skye -15.51255030437358 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> which state be in hawaius ? -> $x: ($x, instance of, state) ($x, be in, hawaius) -> (Skye, Instance Of, state of mind) (Skye, is in, Hawaii) -> Skye (9549ms) When did Hawaii become a state? Maui -15.54753327044663 When did Hawaii become a state? -> when do [ hawaius ] become a state ? -> which state be in hawaius ? -> $x: ($x, instance of, state) ($x, be in, hawaius) -> (Maui, Instance Of, U.S. state) (Maui, is in, Hawaii) -> Maui (9549ms) Why is the sun yellow? Canonical -10.575314772880931 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (Canonical, is removing, the Sun JDK) -> Canonical (11674ms) Why is the sun yellow? God -10.786534737574172 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what make the sun yellow ? -> $x: ($x, make, the sun yellow) -> (God, made, the big bright , yellow sun) -> God (10455ms) Why is the sun yellow? helium -10.82619421934224 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be source of the sun ? -> $x: ($x, be source of, the sun) -> (helium, is the source of, the Sun) -> helium (12491ms) Why is the sun yellow? the Moon -10.851249081906376 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (the Moon, is removed from, the Sun) -> the Moon (11674ms) Why is the sun yellow? man -11.28692343765034 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> (The sun and moon, were to function for, man) -> man (12634ms) Why is the sun yellow? a very high frequency -11.316101957802593 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> (the Sun, are functioning at, a very high frequency) -> a very high frequency (12634ms) Why is the sun yellow? Hydrogen -11.31875682753605 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be source of the sun ? -> $x: ($x, be source of, the sun) -> (Hydrogen, has been the power source of, the sun) -> Hydrogen (12493ms) Why is the sun yellow? Museum -11.407622692174176 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (sun, function, $x) -> (Dr Sun Yat-sen Museum, Building Function, Museum) -> Museum (12766ms) Why is the sun yellow? Nuclear fusion -11.454152428395277 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be source of the sun ? -> $x: ($x, be source of, the sun) -> (Nuclear fusion, is the primary energy source of, the Sun) -> Nuclear fusion (12491ms) Why is the sun yellow? a wheel or spring -11.491903794067323 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> (the sun, functions as, a wheel or spring) -> a wheel or spring (12634ms) Why is the sun yellow? Fusion -11.517026294434812 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be source of the sun ? -> $x: ($x, be source of, the sun) -> (Fusion, is the source of, the sun) -> Fusion (12491ms) Why is the sun yellow? day -11.605185197897631 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> (the sun, functions only by, day) -> day (12634ms) Why is the sun yellow? extracts -11.623303183312789 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the Sun, is running, extracts) -> extracts (17956ms) Why is the sun yellow? a CLIENT -11.64722320340999 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> (The Sun RPC, has another function to create, a CLIENT) -> a CLIENT (12635ms) Why is the sun yellow? an administrative and political centre -11.685642729214946 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> (the Sun, functioned as, an administrative and political centre) -> an administrative and political centre (12634ms) Why is the sun yellow? Two questions -11.69570401832935 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be source of the sun ? -> $x: ($x, be source of, the sun) -> (Two questions, is the source of, the sun) -> Two questions (12491ms) Why is the sun yellow? G-d -11.71523612932584 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (G-d, will remove, the sun) -> G-d (11674ms) Why is the sun yellow? very hot conditions -11.743637778067237 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (very hot conditions, should be removed from, the sun) -> very hot conditions (11674ms) Why is the sun yellow? service -11.757163140045467 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> (The sun, performs his specific function of, service) -> service (12766ms) Why is the sun yellow? Sun Visor Removal -11.785911341805452 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (Sun Visor Removal, Remove, the sun visor) -> Sun Visor Removal (11674ms) Why is the sun yellow? enormous amounts -11.813496410207502 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be source of the sun ? -> $x: ($x, be source of, the sun) -> (enormous amounts, is the source of, the Suns power) -> enormous amounts (12517ms) Why is the sun yellow? north -11.851154364352212 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (north, remove, the actual sun illumination) -> north (11674ms) Why is the sun yellow? USA -11.879175607561463 Why is the sun yellow? -> why be [ the sun ] yellow ? -> who have play the sun ? -> $x: ($x, have play, the sun) -> (USA, had been a football-playing member of, the Sun Belt) -> USA (11449ms) Why is the sun yellow? a confirmation -11.912755739390075 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (a confirmation, removed, the sun glasses) -> a confirmation (12024ms) Why is the sun yellow? two signs -11.927888968390475 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (two signs, removed from, the sun) -> two signs (12024ms) Why is the sun yellow? fusion -11.937914950617566 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be source of the sun ? -> $x: ($x, be source of, the sun) -> (fusion, is the energy source of, the sun and stars) -> fusion (12518ms) Why is the sun yellow? disease -11.983008720195249 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the Sun, are responsible for, disease) -> disease (17956ms) Why is the sun yellow? the Earth -12.01084628672844 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, is responsible for, the Earth) -> the Earth (17956ms) Why is the sun yellow? a long time -12.013871837674603 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (a long time, just remove from, the sun) -> a long time (12024ms) Why is the sun yellow? RedHat -12.024440844395354 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (The Suns, have been running, RedHat) -> RedHat (17955ms) Why is the sun yellow? no greater delight -12.064573198553328 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (no greater delight, indiscriminatly remove, the moon and sun) -> no greater delight (12024ms) Why is the sun yellow? Fusion energy -12.06573136075471 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be source of the sun ? -> $x: ($x, be source of, the sun) -> (Fusion energy, is the energy source of, the sun and stars) -> Fusion energy (12517ms) Why is the sun yellow? the Skopjeans -12.07649080599119 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (the Skopjeans, finally decided to remove, the Sun) -> the Skopjeans (12024ms) Why is the sun yellow? ?Showtime? -12.078502116368757 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (The Suns, are running like, ?Showtime?) -> ?Showtime? (17956ms) Why is the sun yellow? climate change -12.08263042247899 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, is mainly responsible for, climate change) -> climate change (17956ms) Why is the sun yellow? ?We?ll -12.092604929414236 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (?We?ll, have to remove, the sun) -> ?We?ll (12024ms) Why is the sun yellow? 4194326 uninstall -12.097910153225405 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (4194326 uninstall, removes, the Sun WebServer) -> 4194326 uninstall (12050ms) Why is the sun yellow? Earl -12.116890566622759 Why is the sun yellow? -> why be [ the sun ] yellow ? -> who have play the sun ? -> $x: ($x, have play, the sun) -> (Earl, has been playing pretty well for, the Suns) -> Earl (11448ms) Why is the sun yellow? ice ages -12.125136464881832 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the Sun, has been responsible for, ice ages) -> ice ages (17955ms) Why is the sun yellow? efforts -12.13497606841879 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (The Baltimore Sun, is running a series about, efforts) -> efforts (18006ms) Why is the sun yellow? Saturn -12.135195703233249 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be interested, $x) -> (the Sun, are particularly interested in, Saturn) -> Saturn (16854ms) Why is the sun yellow? solar activity -12.145645714386484 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, is responsible for, solar activity) -> solar activity (18006ms) Why is the sun yellow? gas -12.182907181227579 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the Suns, are running out of, gas) -> gas (18006ms) Why is the sun yellow? Baltimore -12.193453008020366 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the Baltimore Sun, was run out of, Baltimore) -> Baltimore (18005ms) Why is the sun yellow? a rough calendar -12.195472439770548 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> (the SunClock, also functions as, a rough calendar) -> a rough calendar (12766ms) Why is the sun yellow? sunscreen -12.196152204314393 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the sun, contain, sunscreen) -> sunscreen (13556ms) Why is the sun yellow? grammar -12.200526604633728 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be interested, $x) -> (The Sun, is very interested in, grammar) -> grammar (16854ms) Why is the sun yellow? fuel -12.20166948403013 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the sun, is gradually running out of, fuel) -> fuel (18006ms) Why is the sun yellow? MODERATION -12.210317328577636 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be healthy, $x) -> (the sun, can be healthy in, MODERATION) -> MODERATION (16854ms) Why is the sun yellow? The Oakley terroir -12.22635736552401 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what characterize the sun ? -> $x: ($x, characterize, the sun) -> (The Oakley terroir, is characterized by, the hot sun) -> The Oakley terroir (12212ms) Why is the sun yellow? gardening -12.235661187980869 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be benefit, $x) -> (the sun, is an indirect benefit of, gardening) -> gardening (17465ms) Why is the sun yellow? players -12.246643679707391 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be healing, $x) -> (The Suns, are healing, players) -> players (17465ms) Why is the sun yellow? climate changes -12.250627999481434 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, has been responsible for, climate changes) -> climate changes (18005ms) Why is the sun yellow? acrylic paint -12.25338328328648 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, are colored with, acrylic paint) -> acrylic paint (14245ms) Why is the sun yellow? utility -12.273344160079873 Why is the sun yellow? -> why be [ the sun ] yellow ? -> who have play the sun ? -> $x: ($x, have play, the sun) -> (utility, has played for, the Suns) -> utility (11448ms) Why is the sun yellow? sport -12.279284763802183 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be interested, $x) -> (The Sun, was always interested in, sport) -> sport (16854ms) Why is the sun yellow? global warming -12.283407886067623 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, is also responsible for, global warming) -> global warming (18006ms) Why is the sun yellow? Perihelion -12.286937755528013 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the opposite of the sun ? -> $x: (the sun, opposite, $x) -> (the sun, is the opposite to, Perihelion) -> Perihelion (16283ms) Why is the sun yellow? photons -12.288108749478925 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the sun, contains, photons) -> photons (13556ms) Why is the sun yellow? Skin moisture -12.293213756049923 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (Skin moisture, unfortunately get removed by, the sun) -> Skin moisture (12050ms) Why is the sun yellow? A reader -12.296710974365645 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what characterize the sun ? -> $x: ($x, characterize, the sun) -> (A reader, characterizes, The Sun) -> A reader (12212ms) Why is the sun yellow? Peace -12.298414297018416 Why is the sun yellow? -> why be [ the sun yellow ] ? -> what person be the sun yellow ? -> $x: (the sun yellow, person, $x) -> $x: ($x, be, the sun yellow) -> (Peace, is like, the fresh yellow sun) -> Peace (19326ms) Why is the sun yellow? better lighting -12.301410743357483 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what make the sun blue ? -> $x: ($x, make, the sun blue) -> (better lighting, made the most of, the sun and blue sky) -> better lighting (11448ms) Why is the sun yellow? choice -12.312131829484956 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be single, $x) -> (the sun dress, can be a single garment of, choice) -> choice (17342ms) Why is the sun yellow? energy -12.320479621107078 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be single, $x) -> (The sun, is the single greatest source of, energy) -> energy (17342ms) Why is the sun yellow? Allah -12.335362439546412 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what sign be the sun ? -> $x: (the sun, sign, $x) -> (the sun, are signs of, Allah) -> Allah (16283ms) Why is the sun yellow? gold -12.345154236901493 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the sun, contain, gold) -> gold (13556ms) Why is the sun yellow? UK -12.358564678802141 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be single, $x) -> (The Morning Sun, is the new single from, UK) -> UK (17342ms) Why is the sun yellow? Blue light -12.35956364754124 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (Blue light, is therefore removed from, the Sun?s beam) -> Blue light (12050ms) Why is the sun yellow? god -12.388349740614785 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what sign be the sun ? -> $x: (the sun, sign, $x) -> (the sun, were signs of, god) -> god (16283ms) Why is the sun yellow? vandalism -12.39828902574718 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the Sun, is running a piece on, vandalism) -> vandalism (18005ms) Why is the sun yellow? ingredients -12.403938643686836 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the sun, contain, ingredients) -> ingredients (13556ms) Why is the sun yellow? defense Fish -12.408418335027859 Why is the sun yellow? -> why be [ the sun ] yellow ? -> who have play the sun ? -> $x: ($x, have play, the sun) -> (defense Fish, has been playing is keeping, the Suns) -> defense Fish (11448ms) Why is the sun yellow? Gold -12.42763974016666 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: ($x, be the color of, the sun) -> (Gold, is the color of, the sun) -> Gold (19143ms) Why is the sun yellow? Dennis Erickson -12.43587184889833 Why is the sun yellow? -> why be [ the sun ] yellow ? -> who have play the sun ? -> $x: ($x, have play, the sun) -> (Dennis Erickson, have played for, the Sun Devils) -> Dennis Erickson (11448ms) Why is the sun yellow? Bingo -12.45204185814688 Why is the sun yellow? -> why be [ the sun ] yellow ? -> who have play the sun ? -> $x: ($x, have play, the sun) -> (Bingo, has been played in, The Sun) -> Bingo (12050ms) Why is the sun yellow? Re -12.471399080403165 Why is the sun yellow? -> why be [ the sun yellow ] ? -> what person be the sun yellow ? -> $x: (the sun yellow, person, $x) -> $x: ($x, be, the sun yellow) -> (Re, is, the sun yellow) -> Re (19326ms) Why is the sun yellow? 450Mhz -12.482561592069775 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the sun, was running at, 450Mhz) -> 450Mhz (18079ms) Why is the sun yellow? Shawn Marion -12.499552560497975 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be better off, $x) -> (the Suns, could be better off with, Shawn Marion) -> Shawn Marion (16699ms) Why is the sun yellow? Superman -12.509245600089447 Why is the sun yellow? -> why be [ the sun yellow ] ? -> what person be the sun yellow ? -> $x: (the sun yellow, person, $x) -> $x: ($x, be, the sun yellow) -> (Superman, is powered by, the yellow sun) -> Superman (19326ms) Why is the sun yellow? production -12.516161096929805 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, are responsible for, production) -> production (18079ms) Why is the sun yellow? home appliances -12.524640242604077 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (The sun, can be used to run, home appliances) -> home appliances (18079ms) Why is the sun yellow? Gordon Brown -12.541638802728137 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (The Sun, is running a despicable campaign against, Gordon Brown) -> Gordon Brown (18079ms) Why is the sun yellow? changes -12.559556562280832 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, are chiefly responsible for, changes) -> changes (18079ms) Why is the sun yellow? wrinkles -12.562958987785912 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, are responsible for, wrinkles) -> wrinkles (18079ms) Why is the sun yellow? Oklahoma -12.57082235197819 Why is the sun yellow? -> why be [ the sun ] yellow ? -> who have play the sun ? -> $x: ($x, have play, the sun) -> (Oklahoma, has played three times in, the Sun Bowl) -> Oklahoma (12050ms) Why is the sun yellow? Johnny Cash -12.577691679852405 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what happen at the sun ? -> $x: ($x, happen at, the sun) -> (Johnny Cash, happened to be at, the Sun Records recording studio) -> Johnny Cash (13067ms) Why is the sun yellow? London -12.578084363592708 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (The Sun Protection Conference, is run biennially in, London) -> London (18079ms) Why is the sun yellow? Fos -12.609726149942968 Why is the sun yellow? -> why be [ the sun yellow ] ? -> what person be the sun yellow ? -> $x: (the sun yellow, person, $x) -> $x: (the sun yellow, be, $x) -> (the yellow sun, is, Fos) -> Fos (19326ms) Why is the sun yellow? Sunday -12.61339644555189 Why is the sun yellow? -> why be [ the sun yellow ] ? -> what person be the sun yellow ? -> $x: (the sun yellow, person, $x) -> $x: ($x, be, the sun yellow) -> (Sunday, is ruled by, the Sun and yellow candles) -> Sunday (19326ms) Why is the sun yellow? two -12.6151912387077 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (The Suns, are responsible for, two) -> two (19143ms) Why is the sun yellow? life -12.616175213328479 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, was responsible for, life) -> life (19143ms) Why is the sun yellow? solar energy -12.619217796223998 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be relatively new, $x) -> (the sun, is a relatively new use of, solar energy) -> solar energy (17083ms) Why is the sun yellow? the Wanted -12.62105820180131 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be single, $x) -> (the Sun, is the lead single from, the Wanted) -> the Wanted (17342ms) Why is the sun yellow? bad contracts -12.63206079581206 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be plague, $x) -> (the Suns, are plagued by, bad contracts) -> bad contracts (16466ms) Why is the sun yellow? Colbie -12.635533025991487 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be single, $x) -> (the Sun, is the second single from, Colbie) -> Colbie (17342ms) Why is the sun yellow? Lindsay Lohan -12.64240035026294 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be a mess, $x) -> (the Sun, was a "hot mess like, Lindsay Lohan) -> Lindsay Lohan (16943ms) Why is the sun yellow? Sodam Yat -12.649535167299492 Why is the sun yellow? -> why be [ the sun yellow ] ? -> what person be the sun yellow ? -> $x: (the sun yellow, person, $x) -> $x: ($x, be, the sun yellow) -> (Sodam Yat, is power by, the yellow sun) -> Sodam Yat (19326ms) Why is the sun yellow? room -12.65167159121908 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (The Sun kernel, was just plain running out of, room) -> room (19143ms) Why is the sun yellow? 50 % -12.653710308188975 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, was responsible for, 50 %) -> 50 % (19143ms) Why is the sun yellow? SunOS 3.2 -12.658516952086677 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the Suns, were running, SunOS 3.2) -> SunOS 3.2 (19143ms) Why is the sun yellow? climate -12.667233705125554 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (The sun, is responsible for, climate) -> climate (19143ms) Why is the sun yellow? recent warming -12.669132530851517 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, is responsible for, recent warming) -> recent warming (19143ms) Why is the sun yellow? Vitamin D -12.671123902852383 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be single, $x) -> (The sun, is the single greatest natural source of, Vitamin D) -> Vitamin D (17342ms) Why is the sun yellow? bingo games -12.675972833149796 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (The Sun Bingo, will be running online, bingo games) -> bingo games (19326ms) Why is the sun yellow? blue light -12.682067470010688 Why is the sun yellow? -> why be [ the sun yellow ] ? -> what person be the sun yellow ? -> $x: (the sun yellow, person, $x) -> $x: ($x, be, the sun yellow) -> (blue light, is, the Sun yellow) -> blue light (19326ms) Why is the sun yellow? zone -12.697193570287588 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the Sun Devils, were only running inside, zone) -> zone (19388ms) Why is the sun yellow? The Secret -12.700973195666556 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be try to figure out, $x) -> (the Midnight Sun, are trying to figure out, The Secret) -> The Secret (16854ms) Why is the sun yellow? injuries -12.717763415339368 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be plague, $x) -> (the Suns, would be plagued by, injuries) -> injuries (16466ms) Why is the sun yellow? spot -12.722053724420288 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be in there, $x) -> (the sun, would be in there, spot) -> spot (17342ms) Why is the sun yellow? the Brethren -12.723063402603447 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, is responsible for, the Brethren) -> the Brethren (19388ms) Why is the sun yellow? recent changes -12.726307522312585 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, cannot be responsible for, recent changes) -> recent changes (19388ms) Why is the sun yellow? a Phoenix Suns player -12.730440339073454 Why is the sun yellow? -> why be [ the sun ] yellow ? -> who have play the sun ? -> $x: ($x, have play, the sun) -> (a Phoenix Suns player, has been playing for, the Suns) -> a Phoenix Suns player (12075ms) Why is the sun yellow? topography -12.743626288607572 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (sun, function, $x) -> (percent possible sun, be a function of, topography) -> topography (12766ms) Why is the sun yellow? today?s climate -12.747006503618875 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, was responsible for, today?s climate) -> today?s climate (19388ms) Why is the sun yellow? scientists -12.759588187461045 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what happen at the sun ? -> $x: ($x, happen at, the sun) -> (scientists, 's happening at, the Sun) -> scientists (13067ms) Why is the sun yellow? 10 percent -12.766394299827219 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, is responsible for, 10 percent) -> 10 percent (19482ms) Why is the sun yellow? such symptoms -12.766394299827219 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, is responsible for, such symptoms) -> such symptoms (19387ms) Why is the sun yellow? 90 percent -12.766394299827219 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, is responsible for, 90 percent) -> 90 percent (19387ms) Why is the sun yellow? an AP story -12.775887161328788 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the Lowell Sun, is running, an AP story) -> an AP story (19482ms) Why is the sun yellow? full swing and life -12.78176664381753 Why is the sun yellow? -> why be [ the sun ] yellow ? -> who have play the sun ? -> $x: ($x, have play, the sun) -> (full swing and life, has been spent playing in, the sun) -> full swing and life (12075ms) Why is the sun yellow? pieces -12.79347676351153 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (The Baltimore Sun, has been running, pieces) -> pieces (19482ms) Why is the sun yellow? skin cancer -12.795637388106726 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, are responsible for, skin cancer) -> skin cancer (19482ms) Why is the sun yellow? a bunch -12.799993804687247 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (The Sun, is run by, a bunch) -> a bunch (19482ms) Why is the sun yellow? different skin reactions -12.804181495079943 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, are responsible for, different skin reactions) -> different skin reactions (19482ms) Why is the sun yellow? two astronomers -12.806383974245398 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what happen at the sun ? -> $x: ($x, happen at, the sun) -> (two astronomers, happened to be looking at, the sun) -> two astronomers (13067ms) Why is the sun yellow? any significant amount -12.808448839389408 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, cannot be responsible for, any significant amount) -> any significant amount (19482ms) Why is the sun yellow? surface features -12.810668715032252 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, are responsible for, surface features) -> surface features (19482ms) Why is the sun yellow? QB Dwight Dasher -12.812171487106408 Why is the sun yellow? -> why be [ the sun ] yellow ? -> who have play the sun ? -> $x: ($x, have play, the sun) -> (QB Dwight Dasher, may have been playing in, the lowly Sun Belt) -> QB Dwight Dasher (12075ms) Why is the sun yellow? depression -12.814205513338933 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be healthy, $x) -> (The sun, is extremely healthy for, depression) -> depression (16854ms) Why is the sun yellow? full force -12.818062583365794 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be in there, $x) -> (The sun, will definitely be out there in, full force) -> full force (17465ms) Why is the sun yellow? each other -12.827163676173639 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the opposite of the sun ? -> $x: (the sun, opposite, $x) -> (the Sun, are opposite, each other) -> each other (16361ms) Why is the sun yellow? future affairs -12.833657877674533 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be interested, $x) -> (the Sun, are interested in, future affairs) -> future affairs (16854ms) Why is the sun yellow? free agent -12.83754789645176 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what sign be the sun ? -> $x: (the sun, sign, $x) -> (The Connecticut Sun, signed, free agent) -> free agent (16361ms) Why is the sun yellow? much more -12.838963048783407 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the Sun, was responsible for, much more) -> much more (19538ms) Why is the sun yellow? four men -12.839484804614909 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the Sun, was running stories about, four men) -> four men (19538ms) Why is the sun yellow? Weezer -12.839653387512001 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be single, $x) -> (the Sun?, is a 2001 single by, Weezer) -> Weezer (17465ms) Why is the sun yellow? a story -12.841551092561737 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (The Sun, are running with, a story) -> a story (19538ms) Why is the sun yellow? freckles -12.844897276667673 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, are responsible for causing, freckles) -> freckles (19538ms) Why is the sun yellow? drought -12.845928733049226 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the problem of the sun ? -> $x: (the sun, problem, $x) -> (the sun, aggravates the problems of, drought) -> drought (14245ms) Why is the sun yellow? four/3 odds -12.850918790388922 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the Phoenix Suns, is running at, four/3 odds) -> four/3 odds (19538ms) Why is the sun yellow? a significant part -12.851282565457996 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, could be responsible for, a significant part) -> a significant part (19538ms) Why is the sun yellow? Mercury -12.85884283230214 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be interested, $x) -> (The Sun, is very interested in, Mercury) -> Mercury (16854ms) Why is the sun yellow? light -12.860127678320513 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the Sun, contains all colors of, light) -> light (14245ms) Why is the sun yellow? a TV campaign -12.876293476818168 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (The Sun, has been running, a TV campaign) -> a TV campaign (19538ms) Why is the sun yellow? 10 % -12.877867777454606 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (The Sun, is responsible for, 10 %) -> 10 % (19738ms) Why is the sun yellow? such wonders -12.884876753238418 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (The sun, was responsible for, such wonders) -> such wonders (19738ms) Why is the sun yellow? Midlands football -12.8901872414269 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be interested, $x) -> (recently The Sun, were so interested in, Midlands football) -> Midlands football (16943ms) Why is the sun yellow? same management ,journalists -12.894369667442282 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the sun, are run by, same management ,journalists) -> same management ,journalists (19738ms) Why is the sun yellow? The Earth -12.896253729218841 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the opposite of the sun ? -> $x: ($x, be the opposite of, the sun) -> (The Earth, is always the exact opposite of, the Sun sign) -> The Earth (19738ms) Why is the sun yellow? premature aging -12.899580501902788 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (The sun, is responsible for, premature aging) -> premature aging (19738ms) Why is the sun yellow? reception -12.900013185463234 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be interested, $x) -> (the Sun, are very interested each other by, reception) -> reception (16943ms) Why is the sun yellow? Summersgill -12.900856887394593 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the sun, was run over by, Summersgill) -> Summersgill (19738ms) Why is the sun yellow? wallflowers -12.90201264986075 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (The spring-like sun, makes the colors of, wallflowers) -> wallflowers (14245ms) Why is the sun yellow? epoxy -12.9022362746837 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, could also change the color of, epoxy) -> epoxy (14245ms) Why is the sun yellow? history -12.904095823258935 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be interested, $x) -> (the Sun, is another interesting look at, history) -> history (16943ms) Why is the sun yellow? Phoenix -12.908516807966713 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be viable, $x) -> (the sun, was a viable option since, Phoenix) -> Phoenix (16466ms) Why is the sun yellow? millions -12.909698909512443 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be stable, $x) -> (The sun, has been stable for, millions) -> millions (17083ms) Why is the sun yellow? A typical scenario -12.910807918149516 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (A typical scenario, removed from, the sun) -> A typical scenario (12074ms) Why is the sun yellow? a 7-man rotation -12.91293779267449 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (The Suns, are effectively running, a 7-man rotation) -> a 7-man rotation (19738ms) Why is the sun yellow? plants and flowers -12.916656827741908 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be rough, $x) -> (the blazing sun, can be rough on, plants and flowers) -> plants and flowers (16943ms) Why is the sun yellow? a vague brightness -12.9171405688567 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be conscious, $x) -> (the sun, is half conscious of, a vague brightness) -> a vague brightness (16361ms) Why is the sun yellow? Earth -12.918072018889836 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the opposite of the sun ? -> $x: (the sun, opposite, $x) -> (the Sun and Uranus, are opposite as seen from, Earth) -> Earth (16361ms) Why is the sun yellow? non-melanoma skin cancers -12.918178448358404 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, are responsible for, non-melanoma skin cancers) -> non-melanoma skin cancers (19812ms) Why is the sun yellow? noon -12.923051905882643 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what sign be the sun ? -> $x: (the sun, sign, $x) -> (the sun, changed signs at about, noon) -> noon (16361ms) Why is the sun yellow? cholesterol -12.925758247865355 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, react, $x) -> (the sun, reacts with, cholesterol) -> cholesterol (16361ms) Why is the sun yellow? such a deal -12.930621784207897 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be interested, $x) -> (the Suns, are interested in, such a deal) -> such a deal (16943ms) Why is the sun yellow? a corner -12.931474322409148 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (The sun, was coloring, a corner) -> a corner (14245ms) Why is the sun yellow? telescopic observers -12.93262876840478 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be interested, $x) -> (the sun, were a keen interest among, telescopic observers) -> telescopic observers (16943ms) Why is the sun yellow? recent global climate changes -12.93627384211652 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, is responsible for, recent global climate changes) -> recent global climate changes (19812ms) Why is the sun yellow? more carp movement -12.93641894262716 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, is responsible for, more carp movement) -> more carp movement (19812ms) Why is the sun yellow? weather -12.937928622434047 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (The Sun, is ultimately responsible for, weather) -> weather (19812ms) Why is the sun yellow? 99.86 -12.941904256922173 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the sun, contains, 99.86) -> 99.86 (13556ms) Why is the sun yellow? the Earths -12.944718624890566 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, react, $x) -> (the Sun, react with, the Earths) -> the Earths (16361ms) Why is the sun yellow? pressure -12.945602811291662 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, react, $x) -> (the Sun, react to, pressure) -> pressure (16466ms) Why is the sun yellow? early 20th century -12.945653111133423 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, was responsible for, early 20th century) -> early 20th century (19812ms) Why is the sun yellow? several trips -12.949125341312849 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the SUN DANCER, has been running, several trips) -> several trips (19812ms) Why is the sun yellow? SPARC processors -12.950566083151589 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the Sun systems, are run on, SPARC processors) -> SPARC processors (19812ms) Why is the sun yellow? tubing -12.953463406370568 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the sun, contain, tubing) -> tubing (13557ms) Why is the sun yellow? emotions -12.956172330280426 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, change different color for there, emotions) -> emotions (14245ms) Why is the sun yellow? media veterans -12.957967310728405 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (The Sun newspaper, is being run by, media veterans) -> media veterans (19812ms) Why is the sun yellow? a great many -12.965989661870118 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (The sun, is responsible for, a great many) -> a great many (19858ms) Why is the sun yellow? a copper kettle -12.966614142303378 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, is the color of, a copper kettle) -> a copper kettle (14245ms) Why is the sun yellow? more like 99.9 % -12.967996646067002 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, is responsible for, more like 99.9 %) -> more like 99.9 % (19858ms) Why is the sun yellow? the Archaeological Survey -12.969243683523976 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the Sun Temple Museum, is run by, the Archaeological Survey) -> the Archaeological Survey (19858ms) Why is the sun yellow? The Eagles -12.970460895673725 Why is the sun yellow? -> why be [ the sun ] yellow ? -> who have play the sun ? -> $x: ($x, have play, the sun) -> (The Eagles, have yet to play, the Rising Sun Shiners) -> The Eagles (12075ms) Why is the sun yellow? PartyPoker -12.972179072082385 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the sun, are running every day on, PartyPoker) -> PartyPoker (19858ms) Why is the sun yellow? Steve Nash -12.977107097828277 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what sign be the sun ? -> $x: (the sun, sign, $x) -> (The Suns, signed, Steve Nash) -> Steve Nash (16466ms) Why is the sun yellow? leadership -12.978166180596443 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the problem of the sun ? -> $x: (the sun, problem, $x) -> (the Sun, creates problems with, leadership) -> leadership (14277ms) Why is the sun yellow? familiar elements -12.978342458377616 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the Sun, contains, familiar elements) -> familiar elements (13625ms) Why is the sun yellow? pleasure -12.98065796361069 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, react, $x) -> (the sun, might react with, pleasure) -> pleasure (16466ms) Why is the sun yellow? two windows -12.993438406132695 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the Sun, contains, two windows) -> two windows (13625ms) Why is the sun yellow? will , honesty and focus -12.993816664361782 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what characterize the sun ? -> $x: ($x, characterize, the sun) -> (will , honesty and focus, characterize, the Sun?s time) -> will , honesty and focus (12212ms) Why is the sun yellow? magnetic storms -13.004894390541319 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, also were responsible for, magnetic storms) -> magnetic storms (19858ms) Why is the sun yellow? a business -13.007785561139299 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the Sun Spa, is permitted to run, a business) -> a business (19858ms) Why is the sun yellow? Hakim Warrick -13.012454300290159 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what sign be the sun ? -> $x: (the sun, sign, $x) -> (The Suns, have agreed to sign, Hakim Warrick) -> Hakim Warrick (16699ms) Why is the sun yellow? Middle Earth -13.016631094488098 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, has its usual color in, Middle Earth) -> Middle Earth (14277ms) Why is the sun yellow? Red -13.017175753292612 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: ($x, be the color of, the sun) -> (Red, is the color of, the Sun) -> Red (19858ms) Why is the sun yellow? front -13.017309782535637 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be in there, $x) -> (the sun, has been right there in, front) -> front (17465ms) Why is the sun yellow? god yellow star -13.019280142460438 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be honest, $x) -> (The sun, is an honest to, god yellow star) -> god yellow star (17083ms) Why is the sun yellow? Various members -13.030586460700492 Why is the sun yellow? -> why be [ the sun ] yellow ? -> who have play the sun ? -> $x: ($x, have play, the sun) -> (Various members, have also played with, The Suns) -> Various members (12099ms) Why is the sun yellow? the Netbeans IDE -13.034500329876701 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the SUN demos, were running on, the Netbeans IDE) -> the Netbeans IDE (19903ms) Why is the sun yellow? solar flare -13.038644292095414 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the problem of the sun ? -> $x: (the sun, problem, $x) -> (the sun, can produce problems with, solar flare) -> solar flare (14277ms) Why is the sun yellow? the Bridge deck -13.044219556847064 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the opposite of the sun ? -> $x: (the sun, opposite, $x) -> (The Sun deck, is opposite, the Bridge deck) -> the Bridge deck (16699ms) Why is the sun yellow? Doomsaying pundits -13.046074607546277 Why is the sun yellow? -> why be [ the sun ] yellow ? -> who have play the sun ? -> $x: ($x, have play, the sun) -> (Doomsaying pundits, have played, the Sun Belt dirge) -> Doomsaying pundits (12099ms) Why is the sun yellow? narration -13.046302675172337 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the problem of the sun ? -> $x: (the sun, problem, $x) -> (the Sun Alan Moody, faced an interesting problem in, narration) -> narration (14277ms) Why is the sun yellow? geological reckoning -13.048657470306736 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (the sun, will be a short run by, geological reckoning) -> geological reckoning (19904ms) Why is the sun yellow? four stories -13.049142887233907 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the Sun, contains, four stories) -> four stories (13625ms) Why is the sun yellow? the United States -13.051921794137645 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (the United States, to build a tower to remove, the sun) -> the United States (12099ms) Why is the sun yellow? Scorpio -13.053528923821052 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what sign be the sun ? -> $x: (the sun, sign, $x) -> (The sun, enters the sign of, Scorpio) -> Scorpio (16699ms) Why is the sun yellow? the Phoenix metropolitan area -13.05649537592726 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the Sun, contains, the Phoenix metropolitan area) -> the Phoenix metropolitan area (13625ms) Why is the sun yellow? Capricorn -13.0568009251665 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what sign be the sun ? -> $x: (the sun, sign, $x) -> (the sun, enters the sign of, Capricorn) -> Capricorn (16698ms) Why is the sun yellow? short periods -13.056997505208594 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be healing, $x) -> (The sun, is very healing for, short periods) -> short periods (19903ms) Why is the sun yellow? town -13.058341341998496 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be in the game, $x) -> (the Suns, were the only game in, town) -> town (16943ms) Why is the sun yellow? the Principalities -13.059567144761827 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the Sun, contained, the Principalities) -> the Principalities (13625ms) Why is the sun yellow? 6.02 times -13.061521654956145 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the sun, contains, 6.02 times) -> 6.02 times (13625ms) Why is the sun yellow? a hypocrite -13.064876479006617 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what sign be the sun ? -> $x: (the sun, sign, $x) -> (the Sun, is the sign of, a hypocrite) -> a hypocrite (16698ms) Why is the sun yellow? a lav tank -13.066635966468656 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (a lav tank, to remove everything under, the sun) -> a lav tank (12099ms) Why is the sun yellow? the magnitude and direction -13.070461748512868 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> (the Sun, is a function of, the magnitude and direction) -> the magnitude and direction (12802ms) Why is the sun yellow? warm but temporary periods -13.070563586151579 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (the sun, are responsible for, warm but temporary periods) -> warm but temporary periods (19903ms) Why is the sun yellow? millions of?years -13.071144645733025 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be stable, $x) -> (The sun, has been stable for, millions of?years) -> millions of?years (17083ms) Why is the sun yellow? good days -13.073653880294916 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what sign be the sun ? -> $x: (the sun, sign, $x) -> (the Sun, are signs of, good days) -> good days (17012ms) Why is the sun yellow? skin cancer worldwide -13.074299192152306 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be single, $x) -> (the sun, is the single biggest cause of, skin cancer worldwide) -> skin cancer worldwide (19903ms) Why is the sun yellow? OOXML. -13.079117729148654 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the problem of the sun ? -> $x: (the sun, problem, $x) -> (the Sun OpenOffice .org team, has some problems with, OOXML.) -> OOXML. (14277ms) Why is the sun yellow? one coach -13.079405555567135 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be interested, $x) -> (The Sun Devils, were reportedly interested in, one coach) -> one coach (17012ms) Why is the sun yellow? a supernova 20,000 light years -13.079411213555229 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (a supernova 20,000 light years, removed from, the sun) -> a supernova 20,000 light years (12099ms) Why is the sun yellow? Japanese prints -13.088122361308308 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be interested, $x) -> (the Rising Sun, was very interested in, Japanese prints) -> Japanese prints (17012ms) Why is the sun yellow? G Steve Nash -13.091545764596976 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be be run, $x) -> (The Suns, are run by, G Steve Nash) -> G Steve Nash (19903ms) Why is the sun yellow? gases -13.091858315811091 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, react, $x) -> (the sun, react with, gases) -> gases (17012ms) Why is the sun yellow? a warning -13.095056591688918 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the sun, contain, a warning) -> a warning (13720ms) Why is the sun yellow? Bulgarian yoghurt -13.099051905565295 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be interested, $x) -> (the rising sun, has been interested in, Bulgarian yoghurt) -> Bulgarian yoghurt (17012ms) Why is the sun yellow? Cancer -13.099762378731317 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what sign be the sun ? -> $x: (the sun, sign, $x) -> (the Sun, leaves the sign of, Cancer) -> Cancer (17012ms) Why is the sun yellow? blotchy pigmentation -13.10215615951702 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, be responsible, $x) -> (The sun, is largely responsible for, blotchy pigmentation) -> blotchy pigmentation (19904ms) Why is the sun yellow? 99.86 percent -13.110636664629533 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun, contains, 99.86 percent) -> 99.86 percent (13720ms) Why is the sun yellow? a fact -13.114325261531246 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the Sun Herald, contains, a fact) -> a fact (13720ms) Why is the sun yellow? The Lobos -13.119890294741666 Why is the sun yellow? -> why be [ the sun ] yellow ? -> who have play the sun ? -> $x: ($x, have play, the sun) -> (The Lobos, have already played, the Sun Devils three times) -> The Lobos (12099ms) Why is the sun yellow? skin cells -13.131920356310374 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (the sun, react, $x) -> (the sun, react with, skin cells) -> skin cells (17012ms) Why is the sun yellow? Meursault -13.133128285491148 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the problem of the sun ? -> $x: (the sun, problem, $x) -> (The sun, first presents a problem to, Meursault) -> Meursault (14277ms) Why is the sun yellow? Grant Hill -13.133555577990222 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what sign be the sun ? -> $x: (the sun, sign, $x) -> (The Phoenix Suns today, signed, Grant Hill) -> Grant Hill (17083ms) Why is the sun yellow? infinite knowledge -13.133961267657822 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The sun, contains, infinite knowledge) -> infinite knowledge (13720ms) Why is the sun yellow? a geocentric chart -13.136896798771957 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the opposite of the sun ? -> $x: (the sun, opposite, $x) -> (the sun, are opposite in, a geocentric chart) -> a geocentric chart (17083ms) Why is the sun yellow? sun damage -13.137872699848234 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what sign be the sun ? -> $x: (the sun, sign, $x) -> (the sun, are a sign of, sun damage) -> sun damage (17083ms) Why is the sun yellow? 99.85 % -13.150370177053118 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The sun, contains, 99.85 %) -> 99.85 % (13720ms) Why is the sun yellow? 99.86 % -13.150370177053118 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The sun, contains, 99.86 %) -> 99.86 % (13719ms) Why is the sun yellow? harmful chemicals -13.16320435593733 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the sun, contain, harmful chemicals) -> harmful chemicals (13747ms) Why is the sun yellow? 25 CDs -13.165608757924682 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the atomic sun, contains, 25 CDs) -> 25 CDs (13747ms) Why is the sun yellow? 99.9 % -13.1682543974205 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun, contains, 99.9 %) -> 99.9 % (13747ms) Why is the sun yellow? a light source -13.170392593688337 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun, contains, a light source) -> a light source (13747ms) Why is the sun yellow? cataracts -13.170909970668546 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the problem of the sun ? -> $x: (the sun, problem, $x) -> (the sun, can cause other health problems such as, cataracts) -> cataracts (14277ms) Why is the sun yellow? moral lessons -13.17405852824953 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the Sun King, contain, moral lessons) -> moral lessons (13747ms) Why is the sun yellow? 99.8 percent -13.1760105428427 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun, contains, 99.8 percent) -> 99.8 percent (13747ms) Why is the sun yellow? 99.8 % -13.181517351543834 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The sun, contains, 99.8 %) -> 99.8 % (13775ms) Why is the sun yellow? materials -13.181772533871833 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the sun, contained in, materials) -> materials (13775ms) Why is the sun yellow? huge rivers -13.185184115801835 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun, contains, huge rivers) -> huge rivers (13775ms) Why is the sun yellow? a very light green -13.187663588501449 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, was colored, a very light green) -> a very light green (14307ms) Why is the sun yellow? seven colors -13.202536503791661 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the sun, contains, seven colors) -> seven colors (13774ms) Why is the sun yellow? seven different colours -13.205005421203975 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the sun, contain, seven different colours) -> seven different colours (13775ms) Why is the sun yellow? T.J. Simpson -13.216360775687217 Why is the sun yellow? -> why be [ the sun ] yellow ? -> who have play the sun ? -> $x: ($x, have play, the sun) -> (T.J. Simpson, have played huge roles for, the Sun Devils) -> T.J. Simpson (12124ms) Why is the sun yellow? 99.9 percent -13.23128760476078 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun, contains, 99.9 percent) -> 99.9 percent (13775ms) Why is the sun yellow? visible light -13.243164510542503 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The sun?s spectrum, contains, visible light) -> visible light (13802ms) Why is the sun yellow? similar chemical constituents -13.246006206343113 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the Sun, contain, similar chemical constituents) -> similar chemical constituents (13802ms) Why is the sun yellow? occupants -13.259699198663828 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the problem of the sun ? -> $x: (the sun, problem, $x) -> (the sun, can be a major problem to, occupants) -> occupants (14307ms) Why is the sun yellow? each reed -13.259761095074541 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the sun, contained within, each reed) -> each reed (13802ms) Why is the sun yellow? the Spring Lake Outdoor Club -13.261970480906012 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (sun, function, $x) -> (sun, is a function of, the Spring Lake Outdoor Club) -> the Spring Lake Outdoor Club (12927ms) Why is the sun yellow? considerable interesting material -13.267226943480905 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun, contains, considerable interesting material) -> considerable interesting material (13803ms) Why is the sun yellow? four groups -13.282689609467399 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The sun symbol, contains, four groups) -> four groups (13802ms) Why is the sun yellow? Iron Composer -13.286641991822574 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the ingredient of the sun ? -> $x: (the sun, ingredient, $x) -> (the sun, could be a secret ingredient for, Iron Composer) -> Iron Composer (12927ms) Why is the sun yellow? one million -13.287628062344858 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun, could contain, one million) -> one million (13803ms) Why is the sun yellow? a nuclear fusion reactor -13.295387235262893 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the sun, contains, a nuclear fusion reactor) -> a nuclear fusion reactor (13830ms) Why is the sun yellow? vision work -13.301914266375373 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, does color, vision work) -> vision work (14307ms) Why is the sun yellow? a kid -13.31248885393989 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what make the sun yellow ? -> $x: ($x, make, the sun yellow) -> $x: ($x, make, sun yellow) -> (a kid, makes, our sun yellow) -> a kid (10563ms) Why is the sun yellow? invisible ultraviolet rays -13.321227567204888 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the sun, contains, invisible ultraviolet rays) -> invisible ultraviolet rays (13830ms) Why is the sun yellow? 99 percent -13.326140539223054 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun, contains approximately, 99 percent) -> 99 percent (13830ms) Why is the sun yellow? the center -13.359525503295295 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what characterize the sun ? -> $x: ($x, characterize, the sun) -> (the center, characterizes, the sun) -> the center (12212ms) Why is the sun yellow? a blood red orange -13.36032076160636 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (The sun, was the color of, a blood red orange) -> a blood red orange (14307ms) Why is the sun yellow? a minimal number -13.36412152809243 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the SUN FROST refrigerator, contains, a minimal number) -> a minimal number (13830ms) Why is the sun yellow? freezes -13.375125644589652 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (freezes, remove them after, the sun) -> freezes (12124ms) Why is the sun yellow? leather -13.382117027405114 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (The sun?s UV rays, will affect the color of, leather) -> leather (14307ms) Why is the sun yellow? a morning sun -13.386782101725771 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, was colored too darkly for, a morning sun) -> a morning sun (14307ms) Why is the sun yellow? one or more loops -13.388228019530818 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the Sun, contains, one or more loops) -> one or more loops (13830ms) Why is the sun yellow? UVA and UVB -13.406994754859449 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the sun, contains, UVA and UVB) -> UVA and UVB (13856ms) Why is the sun yellow? a very powerful wind -13.41750102825151 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the forming sun, contained, a very powerful wind) -> a very powerful wind (13856ms) Why is the sun yellow? a view -13.418857079552751 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what happen at the sun ? -> $x: ($x, happen at, the sun) -> (a view, has happened at, the Sun) -> a view (13068ms) Why is the sun yellow? competitive teams -13.425299754570274 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun Belt Conference, contains, competitive teams) -> competitive teams (13856ms) Why is the sun yellow? red -13.425751398524225 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (The sun, was setting a magnificient color of, red) -> red (14307ms) Why is the sun yellow? The program -13.466411461804986 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (The program, can also remove, the Sun Download Manager) -> The program (12124ms) Why is the sun yellow? two decillion grams -13.468690036076506 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The sun, contains about, two decillion grams) -> two decillion grams (13856ms) Why is the sun yellow? more GLA -13.484764658801119 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the Sun Evening Primrose Deluxe, contain, more GLA) -> more GLA (13856ms) Why is the sun yellow? the independent power source -13.486380493932497 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be source of the sun ? -> $x: ($x, be source of, the sun) -> (the independent power source, is the source of, the sun) -> the independent power source (12953ms) Why is the sun yellow? a letter -13.49167914601649 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The New York Sun, contained, a letter) -> a letter (13857ms) Why is the sun yellow? the fog -13.501922555208338 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what make the sun blue ? -> $x: ($x, make, the sun blue) -> (the fog, made space for, the sun and blue sky) -> the fog (12124ms) Why is the sun yellow? native C interfaces -13.502448597632231 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the Sun Performance Library, contains, native C interfaces) -> native C interfaces (13883ms) Why is the sun yellow? PDT -13.503806229978748 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (PDT, can also be used to remove, sun damage) -> PDT (12124ms) Why is the sun yellow? a statue -13.504708957744812 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun Yatsen Memorial Hall, contains, a statue) -> a statue (13883ms) Why is the sun yellow? a Skull -13.51221430684961 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the Sun halo, contained, a Skull) -> a Skull (13883ms) Why is the sun yellow? positive development -13.517363025615644 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the ingredient of the sun ? -> $x: (the sun, ingredient, $x) -> (the sun, produces the ingredients for, positive development) -> positive development (12953ms) Why is the sun yellow? significant safety concerns -13.518507412988104 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the ingredient of the sun ? -> $x: (the sun, ingredient, $x) -> (the sun, contained ingredients with, significant safety concerns) -> significant safety concerns (12953ms) Why is the sun yellow? TDateTime -13.529927553383178 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (sun, function, $x) -> (sun, longitude is linear function of, TDateTime) -> TDateTime (12953ms) Why is the sun yellow? a silvery gray -13.540578749968997 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, change the color to, a silvery gray) -> a silvery gray (14307ms) Why is the sun yellow? the system -13.541146295726715 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (the system, are furthest removed from, the Divine central sun) -> the system (12212ms) Why is the sun yellow? the Ptolemaic system -13.585059622953306 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the problem of the sun ? -> $x: (the sun, problem, $x) -> (the sun, caused enormous problems to, the Ptolemaic system) -> the Ptolemaic system (14338ms) Why is the sun yellow? creatures -13.59590180270923 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (creatures, removed from, the sun and human biology) -> creatures (12278ms) Why is the sun yellow? a gas fireplace -13.603023540091662 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun room, contains, a gas fireplace) -> a gas fireplace (13883ms) Why is the sun yellow? misuse -13.613393510105187 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the problem of the sun ? -> $x: (the sun, problem, $x) -> (The Sun, covered the problem of, misuse) -> misuse (14338ms) Why is the sun yellow? a rainbow -13.63771086298613 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (The sun, makes the colors of, a rainbow) -> a rainbow (14338ms) Why is the sun yellow? SunOS 4 -13.650337389776787 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (sun, function, $x) -> (Sun, had implemented the gettext function in, SunOS 4) -> SunOS 4 (13067ms) Why is the sun yellow? dark amber -13.6517934880856 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (The sun, turned the color of, dark amber) -> dark amber (14338ms) Why is the sun yellow? night -13.65444604728889 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, reflects colored light at, night) -> night (14338ms) Why is the sun yellow? two pools -13.658559394222825 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The gulf front sun deck, contains, two pools) -> two pools (13884ms) Why is the sun yellow? sunrise -13.664096427990955 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, has a very strong reddish color at, sunrise) -> sunrise (14338ms) Why is the sun yellow? the night -13.672891755963542 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (the night, will only be removed by, the rising Sun) -> the night (12278ms) Why is the sun yellow? eye strains -13.68870333681183 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the problem of the sun ? -> $x: (the sun, problem, $x) -> (the sun, can cause health problems such as, eye strains) -> eye strains (14338ms) Why is the sun yellow? a smoggy or hazy sky -13.698944408585382 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the setting sun, turns different colors in, a smoggy or hazy sky) -> a smoggy or hazy sky (14338ms) Why is the sun yellow? a buffet and BBQ set-up -13.714134587149456 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The sun deck, contains, a buffet and BBQ set-up) -> a buffet and BBQ set-up (14564ms) Why is the sun yellow? cities -13.731386674271358 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the Europe Sun-Belt, contains, cities) -> cities (14564ms) Why is the sun yellow? a catalyst -13.737212709923902 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (sun, function, $x) -> (Every sun, functions as, a catalyst) -> a catalyst (14564ms) Why is the sun yellow? Microdermabrasion -13.744154668680318 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (Microdermabrasion, is used to remove, sun-damaged skin) -> Microdermabrasion (14564ms) Why is the sun yellow? UPDATE -13.769868433617997 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what happen at the sun ? -> $x: ($x, happen at, the sun) -> (UPDATE, happened at, the HOLE Lotta Fun Holiday Club Sun) -> UPDATE (14564ms) Why is the sun yellow? Romney and Huntsman -13.773821070657801 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the problem of the sun ? -> $x: (the sun, problem, $x) -> (The Sun News, reports the problem for, Romney and Huntsman) -> Romney and Huntsman (14564ms) Why is the sun yellow? a carrying case -13.7824592116424 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (sun, function, $x) -> (A sun visor, also functions as, a carrying case) -> a carrying case (14564ms) Why is the sun yellow? non-UTF-8 characters -13.813609933027802 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the problem of the sun ? -> $x: (the sun, problem, $x) -> (The sun format, has also problems with, non-UTF-8 characters) -> non-UTF-8 characters (14597ms) Why is the sun yellow? on-board computers -13.83776309553724 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (sun, function, $x) -> (all SUN MCA, functions including, on-board computers) -> on-board computers (14596ms) Why is the sun yellow? five radiant tracks -13.880796322990081 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the Terminal Sun?, contains, five radiant tracks) -> five radiant tracks (14596ms) Why is the sun yellow? ?Lasers -13.893955729475856 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (?Lasers, can remove every bit of, sun damage?brown spots) -> ?Lasers (14674ms) Why is the sun yellow? several factual errors and implications -13.901788600558856 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the Sun-News, contains, several factual errors and implications) -> several factual errors and implications (14674ms) Why is the sun yellow? a laser -13.940999826966383 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (a laser, is used to remove, sun damage or age spots) -> a laser (14674ms) Why is the sun yellow? two errors -13.993009916894609 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The shrinking-sun argument, contains, two errors) -> two errors (14674ms) Why is the sun yellow? IPLs -14.005576584370946 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (IPLs, are very good at removing, sun spots) -> IPLs (14673ms) Why is the sun yellow? UVA radiation -14.02218843704686 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The sun?s rays, contain, UVA radiation) -> UVA radiation (14674ms) Why is the sun yellow? Falmer -14.028841991496403 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (Falmer, had removed, his sun-helmet , seemingly oblivious) -> Falmer (14770ms) Why is the sun yellow? a national distributor -14.038779339868997 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (sun, function, $x) -> (K-Sun, continues to function as, a national distributor) -> a national distributor (14770ms) Why is the sun yellow? the ND protocol -14.039909028358933 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (the ND protocol, was removed from, SunOS.) -> the ND protocol (14770ms) Why is the sun yellow? comments -14.05382811111537 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (comments, removed for, Sun) -> comments (14770ms) Why is the sun yellow? 4 Heat Sun God -14.070493543446078 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (4 Heat Sun God, removes the hydrogen from, our Sun) -> 4 Heat Sun God (14771ms) Why is the sun yellow? 2-4 months -14.10464511851538 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (2-4 months, remove, sun spots) -> 2-4 months (14771ms) Why is the sun yellow? Vehicles -14.12498615448045 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (Vehicles, are to be removed from, Tree Suns Towing compound) -> Vehicles (14771ms) Why is the sun yellow? Dermafile ? Exfoliation -14.137161396408715 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (Dermafile ? Exfoliation, remove, sun damage) -> Dermafile ? Exfoliation (14800ms) Why is the sun yellow? the blond nut -14.143623346451282 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (the blond nut, is removed from, the fruit and sun-dried) -> the blond nut (14800ms) Why is the sun yellow? 4E , divine -14.162514656737867 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (4E , divine, is simply removed from, Dark Sun) -> 4E , divine (14800ms) Why is the sun yellow? particular those -14.178817989331415 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (particular those, remove, sun damage) -> particular those (14800ms) Why is the sun yellow? The story -14.182036187029869 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (The story, has been removed from, the Sun?s website) -> The story (14800ms) Why is the sun yellow? a dermatologist -14.187305524073055 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (a dermatologist, remove, minor sun skin-damage) -> a dermatologist (14800ms) Why is the sun yellow? editors -14.191042410079582 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (editors, removed, ?Chicago Sun-Times) -> editors (14800ms) Why is the sun yellow? summer months -14.214985787620558 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (summer months, removed to allow, sun light) -> summer months (14831ms) Why is the sun yellow? care -14.229937612549383 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (care, remove, brown and sun spots) -> care (14830ms) Why is the sun yellow? Resurface -14.237349055056022 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (Resurface, Remove, Sun Damaged) -> Resurface (14830ms) Why is the sun yellow? the thinker -14.265052967814762 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the problem of the sun ? -> $x: (the sun, problem, $x) -> (the sun, are an ever-present problem for, the thinker) -> the thinker (14831ms) Why is the sun yellow? an innovative way -14.273899383362705 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (an innovative way, comfortably remove, sun spots) -> an innovative way (14830ms) Why is the sun yellow? Cosmetic procedures -14.278633065164492 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (Cosmetic procedures, can remove, sun damage) -> Cosmetic procedures (14830ms) Why is the sun yellow? Make eye contact -14.305010068541137 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (Make eye contact, remove, all eye-concealing sun glasses) -> Make eye contact (14831ms) Why is the sun yellow? less costly ray -14.323513625646088 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (less costly ray, remove, sunglasses sale-gucci sun light) -> less costly ray (14861ms) Why is the sun yellow? Chemical peeling -14.330800747959023 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (Chemical peeling, remove, some sun damage) -> Chemical peeling (14861ms) Why is the sun yellow? 10 & 2 -14.37670884892037 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (10 & 2, remove, your sun glasses or hat) -> 10 & 2 (14861ms) Why is the sun yellow? Bell -14.379138685702083 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (Bell, removed, Sun News Network) -> Bell (14861ms) Why is the sun yellow? Q-switched lasers -14.391889902165811 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (Q-switched lasers, can remove, brown sun spots) -> Q-switched lasers (14861ms) Why is the sun yellow? evens -14.395446450821709 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (evens, removes, sun damaged skin) -> evens (14861ms) Why is the sun yellow? 99.8 percent of the total material -14.404408640698858 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun, contains over, 99.8 percent of the total material) -> 99.8 percent of the total material (14861ms) Why is the sun yellow? more than a million Earths -14.405424793646318 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun, could contain, more than a million Earths) -> more than a million Earths (14861ms) Why is the sun yellow? The fill flash -14.432936261788447 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> (The fill flash, remove shadows, when the sun is overhead) -> The fill flash (14890ms) Why is the sun yellow? percent of all the mass in our solar system -14.484382295470567 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun, contains, percent of all the mass in our solar system) -> percent of all the mass in our solar system (14889ms) Why is the sun yellow? early spring -14.486349332916014 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (early spring, remove, old , twiggy growth Sun Exposure) -> early spring (14889ms) Why is the sun yellow? A peel -14.487224323438904 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (A peel, removes several layers of, sun damaged skin cells) -> A peel (14889ms) Why is the sun yellow? the penguins -14.487870786815026 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the problem of the sun ? -> $x: (the sun, problem, $x) -> (The strong sun, is the main problem for, the penguins) -> the penguins (14890ms) Why is the sun yellow? A power washer -14.528414840379682 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (A power washer, is best for removing, sun-damaged wood fibers) -> A power washer (14889ms) Why is the sun yellow? as many as 5,000 former mortgagors -14.532327658200575 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (as many as 5,000 former mortgagors, were removed from, SunTrust) -> as many as 5,000 former mortgagors (14889ms) Why is the sun yellow? Tom -14.548239426797238 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (Tom, removed, his dark black sun-glasses) -> Tom (14889ms) Why is the sun yellow? 0 / 5 Fraxel laser treatment -14.550011597031686 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (0 / 5 Fraxel laser treatment, removes, sun damage) -> 0 / 5 Fraxel laser treatment (14918ms) Why is the sun yellow? out there -14.574120041017105 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the problem of the sun ? -> $x: (the sun, problem, $x) -> (The sun, was obviously causing a problem, out there) -> out there (14918ms) Why is the sun yellow? whats -14.57826813821212 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what happen at the sun ? -> $x: ($x, happen at, the sun) -> (whats, happening at, the Sun) -> whats (14918ms) Why is the sun yellow? laser facials -14.589861282798982 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (laser facials, remove, sun- and liver-spots) -> laser facials (14918ms) Why is the sun yellow? the hills -14.593037922806287 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, change the colors of, the hills) -> the hills (14918ms) Why is the sun yellow? pages -14.596934701650248 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (The sun, coloring, pages) -> pages (14918ms) Why is the sun yellow? out -14.659744224133753 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, bringing the colors, out) -> out (14918ms) Why is the sun yellow? the teams -14.675660236642091 Why is the sun yellow? -> why be [ the sun ] yellow ? -> who have play the sun ? -> $x: ($x, have play, the sun) -> (the teams, have played better than, the Suns) -> the teams (14918ms) Why is the sun yellow? Removal -14.706774887145055 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (Removal, attempt to remove, a SunPass Mini Sticker Transponder) -> Removal (14994ms) Why is the sun yellow? the soap -14.75511307524734 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the sun, contains, the soap) -> the soap (14994ms) Why is the sun yellow? pictures free -14.764561860607172 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, coloring, pictures free) -> pictures free (14994ms) Why is the sun yellow? the dog -14.76457229811541 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (The sun, enhances the color of, the dog) -> the dog (14994ms) Why is the sun yellow? the clouds -14.786478664260173 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (The sun, can change the color of, the clouds) -> the clouds (14994ms) Why is the sun yellow? the reality -14.804265347782707 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the sun, contains, the reality) -> the reality (14994ms) Why is the sun yellow? Mayfield fund -14.824048519446002 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (Mayfield fund, has removed all reference to, SunRocket) -> Mayfield fund (15023ms) Why is the sun yellow? the sun -14.847478790268863 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the Sun Glow, will be the same color as, the sun) -> the sun (15023ms) Why is the sun yellow? important safeguards -14.88392588101213 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun Download Center, contains, important safeguards) -> important safeguards (15023ms) Why is the sun yellow? 99.85 % of the mass -14.885691197081222 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun, contains, 99.85 % of the mass) -> 99.85 % of the mass (15023ms) Why is the sun yellow? Apr 07 -14.916959584033648 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the morning sun, color-me-club, Apr 07) -> Apr 07 (15052ms) Why is the sun yellow? 99.8 % of all matter -14.942807573831868 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The sun, contains, 99.8 % of all matter) -> 99.8 % of all matter (15052ms) Why is the sun yellow? about 98 % of the mass -14.942807573831868 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The sun, contains, about 98 % of the mass) -> about 98 % of the mass (15052ms) Why is the sun yellow? 99 % of the matter -14.942807573831868 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The sun, contains over, 99 % of the matter) -> 99 % of the matter (15052ms) Why is the sun yellow? the sky -14.949412825648954 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, color, the sky) -> the sky (15052ms) Why is the sun yellow? more than 99.8 % of the mass -15.02863337619685 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun, contains, more than 99.8 % of the mass) -> more than 99.8 % of the mass (15052ms) Why is the sun yellow? 99.8 % of the mass of the solar system -15.02863337619685 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun, contains, 99.8 % of the mass of the solar system) -> 99.8 % of the mass of the solar system (15052ms) Why is the sun yellow? the cimi or sign -15.030557892563545 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the Sun, contains, the cimi or sign) -> the cimi or sign (15125ms) Why is the sun yellow? the paper -15.047446582271334 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (The setting sun, produced a warm color to, the paper) -> the paper (15125ms) Why is the sun yellow? the oven -15.100516187367731 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the ingredient of the sun ? -> $x: (the sun, ingredient, $x) -> (the sun, add the ingredients to, the oven) -> the oven (15125ms) Why is the sun yellow? the ocean -15.104134778226143 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the midday sun and eyes, are the color of, the ocean) -> the ocean (15125ms) Why is the sun yellow? the direct channels -15.149621014868195 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what function do the sun have ? -> $x: (the sun, function, $x) -> $x: (sun, function, $x) -> (Only those suns, function in, the direct channels) -> the direct channels (15125ms) Why is the sun yellow? the shorts -15.220796297931754 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (the shorts, can be removed for, sunning) -> the shorts (15125ms) Why is the sun yellow? the encumbrances -15.253447048263432 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (the encumbrances, have been removed by, Sun) -> the encumbrances (15232ms) Why is the sun yellow? the sands -15.272967139405495 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, changes the colors of, the sands) -> the sands (15232ms) Why is the sun yellow? the leaves -15.295655280926228 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (the leaves, have been removed for, sun exposure) -> the leaves (15232ms) Why is the sun yellow? the townsite -15.299489941675247 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (the townsite, was removed between, two suns) -> the townsite (15232ms) Why is the sun yellow? the sky change -15.345764750150689 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, see the colors of, the sky change) -> the sky change (15259ms) Why is the sun yellow? the lake -15.353364535121631 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, changed the colors of, the lake) -> the lake (15260ms) Why is the sun yellow? the private swimming pool -15.36163574124196 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The terracotta sun terrace, contains, the private swimming pool) -> the private swimming pool (15260ms) Why is the sun yellow? the tea -15.390701857085082 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (the tea, remove from, sun) -> the tea (15260ms) Why is the sun yellow? the coral and fish -15.390888604852972 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, will enhance the colors of, the coral and fish) -> the coral and fish (15260ms) Why is the sun yellow? the rainbow -15.4239663538815 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the Sun, contains all the colors of, the rainbow) -> the rainbow (15259ms) Why is the sun yellow? the planet -15.441166788176613 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the problem of the sun ? -> $x: (the sun, problem, $x) -> (the sun?s rays, is a problem for, the planet) -> the planet (15260ms) Why is the sun yellow? the solid materials -15.462826507615052 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The sun ! Mother Earth, contains, the solid materials) -> the solid materials (15328ms) Why is the sun yellow? the scenery -15.46906044006267 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, brings out the color of, the scenery) -> the scenery (15329ms) Why is the sun yellow? the decoration -15.494702214610534 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, brought out the colors of, the decoration) -> the decoration (15329ms) Why is the sun yellow? the landscape -15.499282256014007 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the low afternoon sun, brought the colors of, the landscape) -> the landscape (15329ms) Why is the sun yellow? the story -15.527244799500082 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the ingredient of the sun ? -> $x: (the sun, ingredient, $x) -> (the ?sun stone ? ?, was another ingredient of, the story) -> the story (15329ms) Why is the sun yellow? the door -15.546499822927892 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (the door, remove, my sun glasses) -> the door (15328ms) Why is the sun yellow? The abrasion -15.582324520510372 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (The abrasion, removes, sun damaged cells) -> The abrasion (15418ms) Why is the sun yellow? the day -15.585808413692988 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, shall paint its colors on, the day) -> the day (15418ms) Why is the sun yellow? the mystical runes -15.606946151127968 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the sun-fertilizes, contains, the mystical runes) -> the mystical runes (15418ms) Why is the sun yellow? the desiccated -15.609499457985342 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (the Sun?s good light, contain, the desiccated) -> the desiccated (15418ms) Why is the sun yellow? the canyon walls -15.612002619178298 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (The sun, really brought out the colors in, the canyon walls) -> the canyon walls (15418ms) Why is the sun yellow? The oil -15.752399653950985 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (The oil, is useful to remove, any sun damage or age spots) -> The oil (15418ms) Why is the sun yellow? the water -15.821186979324555 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, colored, the water) -> the water (15446ms) Why is the sun yellow? the room -15.841588098188508 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, coloring, the room) -> the room (15446ms) Why is the sun yellow? the practice green -15.852849536898958 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (the practice green, awkwardly removed, their sun visors) -> the practice green (15446ms) Why is the sun yellow? the flowers -15.861405320511519 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, colors, the flowers) -> the flowers (15446ms) Why is the sun yellow? the new research -15.951924589724843 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the problem of the sun ? -> $x: (the sun, problem, $x) -> (Even the Chicago Sun-Times, had a problem with, the new research) -> the new research (15446ms) Why is the sun yellow? a process -16.16661348191807 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what remove the sun ? -> $x: ($x, remove, the sun) -> $x: ($x, remove, sun) -> (a process, removes, sun-damaged cells) -> a process (15474ms) Why is the sun yellow? the bulk of solar system material -16.173437111901148 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what do the sun contain ? -> $x: (the sun, contain, $x) -> (The Sun, contains, the bulk of solar system material) -> the bulk of solar system material (15474ms) Why is the sun yellow? the horizon -16.445411714822548 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, colors, the horizon) -> the horizon (15474ms) Why is the sun yellow? the walls -16.451892418434618 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, colored, the walls) -> the walls (15474ms) Why is the sun yellow? the mountains -16.465812833686503 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, colored, the mountains) -> the mountains (15474ms) Why is the sun yellow? the morning sky -16.618965168453247 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the sun, colors, the morning sky) -> the morning sky (15501ms) Why is the sun yellow? the sky pink -16.936962954290458 Why is the sun yellow? -> why be [ the sun ] yellow ? -> what be the colour of the sun ? -> $x: (the sun, color, $x) -> (the first rays of the sun, colored, the sky pink) -> the sky pink (15502ms) In what month is it held? God -13.533145011258897 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> (Jan holding Issue 6 February 2006, marked 20 years since, God) -> God (15407ms) In what month is it held? Business Objects -13.535622046533254 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> (privately held firm, also spent 12 years at, Business Objects) -> Business Objects (15407ms) In what month is it held? NYC -13.593232696043605 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it 2010 ? -> $x: (it 2010, be in, $x) -> (2010 | 3 CommentsIt, is finally spring here in, NYC) -> NYC (15183ms) In what month is it held? Hold It Up -13.617112095291068 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> $x: (hold, record version, $x) -> (Hold It Up, Recorded versions, Hold It Up) -> Hold It Up (17676ms) In what month is it held? Hold It Against Me -13.656096325958966 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> $x: (hold, split to, $x) -> (Hold It Against Me, Split To, Hold It Against Me) -> Hold It Against Me (18756ms) In what month is it held? business -13.68712266989418 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> (Hold Marketing, is celebrating its 20th year in, business) -> business (15407ms) In what month is it held? Hold On (live in Japan) -13.688583184848882 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> $x: (hold, record version, $x) -> (Hold On, Recorded versions, Hold On (live in Japan)) -> Hold On (live in Japan) (17677ms) In what month is it held? What The Future Holds -13.688583184848882 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> $x: (hold, recording of composition, $x) -> (What the Future Holds, Recording of Composition, What The Future Holds) -> What The Future Holds (17676ms) In what month is it held? Hold On -13.716072065448042 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> $x: (hold, recording of composition, $x) -> (Hold On (live in Japan), Recording of Composition, Hold On) -> Hold On (17676ms) In what month is it held? Holding On (When Love Is Gone) -13.739633963104465 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> $x: (hold, recording of composition, $x) -> (Holding On, Recording of Composition, Holding On (When Love Is Gone)) -> Holding On (When Love Is Gone) (18756ms) In what month is it held? Hold It Against Me (The Alias Radio Edit) -13.760054274406698 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> $x: (hold, record version, $x) -> (Hold It Against Me, Recorded versions, Hold It Against Me (The Alias Radio Edit)) -> Hold It Against Me (The Alias Radio Edit) (18756ms) In what month is it held? Hold It Against Me (Tracy Young Ferosh radio remix) -13.777922046796151 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> $x: (hold, record version, $x) -> (Hold It Against Me, Recorded versions, Hold It Against Me (Tracy Young Ferosh radio remix)) -> Hold It Against Me (Tracy Young Ferosh radio remix) (18756ms) In what month is it held? the FederalRegister -13.786732180081252 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it 2010 ? -> $x: (it 2010, be in, $x) -> (2010.It, was published in, the FederalRegister) -> the FederalRegister (15183ms) In what month is it held? Washington -13.870783265865162 In what month is it held? -> When is it held? -> when be [ it hold ] ? -> when be the 1 st it hold ? -> $x: (the 1 st it, be hold in, $x) -> (The 1st Annual GovIT Expo, is held in, Washington) -> Washington (13913ms) In what month is it held? In Held 'Twas in I: Glimpses of Nirvana - 'Twas Teatime at the Circus - In the Autumn of My Madness - Look to Your Soul - Grand Finale -13.887113989176147 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> $x: (hold, split to, $x) -> (In Held 'Twas in I: Glimpses of Nirvana - 'Twas Teatime at the Circus - In the Autumn of My Madness - Look to Your Soul - Grand Finale, Split To, In Held 'Twas in I: Glimpses of Nirvana - 'Twas Teatime at the Circus - In the Autumn of My Madness - Look to Your Soul - Grand Finale) -> In Held 'Twas in I: Glimpses of Nirvana - 'Twas Teatime at the Circus - In the Autumn of My Madness - Look to Your Soul - Grand Finale (18756ms) In what month is it held? an upcoming edition -13.916903339681642 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it 2010 ? -> $x: (it 2010, be in, $x) -> (2010--it, will be published in, an upcoming edition) -> an upcoming edition (15183ms) In what month is it held? VCT shares -13.94600639654465 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> (the minimum holding period, will be 3 years for, VCT shares) -> VCT shares (15407ms) In what month is it held? a CTS operation -13.94624998216944 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> (hand-held tools, are symptom-free 3 years after, a CTS operation) -> a CTS operation (15407ms) In what month is it held? two -13.981414386739988 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> (hold, said the 47-year-old mother of, two) -> two (15407ms) In what month is it held? honor -14.042937540926586 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> (patent holding companies, throw a year-end party in, honor) -> honor (16042ms) In what month is it held? expertise internet -14.05903809219672 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> (Omaha hold?em locksmiths, have got years of, expertise internet) -> expertise internet (16042ms) In what month is it held? half price -14.089985037853461 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> (hold, get the sixth year at, half price) -> half price (16041ms) In what month is it held? a lifetime kind -14.090235909016366 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it 2010 ? -> $x: (it 2010, be in, $x) -> (July 15 , 2010 ?It, was a once in, a lifetime kind) -> a lifetime kind (15183ms) In what month is it held? Tandem Computer -14.15542579732347 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> (Held, spent 18 years at, Tandem Computer) -> Tandem Computer (16042ms) In what month is it held? an executive -14.158560860437285 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> (MIT. Held, spent 18 years as, an executive) -> an executive (16042ms) In what month is it held? Europe -14.284025485787714 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it 2010 ? -> $x: (it 2010, be in, $x) -> (,2010.It, was launch in, Europe) -> Europe (15183ms) In what month is it held? cooperation -14.3041483603472 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it 2010 ? -> $x: (it 2010, be in, $x) -> (The conhIT Congress 2010, is being organised in, cooperation) -> cooperation (15183ms) In what month is it held? business and management experience -14.351073613732158 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> (Held, has 25 years of, business and management experience) -> business and management experience (16041ms) In what month is it held? May 16 -14.382900143376515 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it 2010 ? -> $x: (it 2010, be on, $x) -> (2010...It, was 50 years ago on, May 16) -> May 16 (15210ms) In what month is it held? PRESIDENT Robert Mugabe -14.451602933420212 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the date for hold ? -> $x: ($x, be the date for, hold) -> $x: ($x, date for, hold) -> (PRESIDENT Robert Mugabe, says the date for, the holding) -> PRESIDENT Robert Mugabe (9838ms) In what month is it held? experience -14.485045857051102 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> (Jane Held Jane, has 32 years of, experience) -> experience (16407ms) In what month is it held? 11th -14.571279789670013 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it 2010 ? -> $x: (it 2010, be on, $x) -> (The IT Show 2010, will be here on, 11th) -> 11th (15210ms) In what month is it held? stress -14.600796053436694 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> (hold, will probably be two years of, stress) -> stress (16407ms) In what month is it held? South Korea -14.679757624735224 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> $x: (hold, go, $x) -> (hold, went to, South Korea) -> South Korea (16407ms) In what month is it held? the Republican debates -14.693528697005398 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (the Republican debates, have been held to, date) -> the Republican debates (14922ms) In what month is it held? a Redskins uniform?HTTR! -14.742974354476083 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it this year ? -> $x: (it this year, be in, $x) -> (this year?it?ll, just be in, a Redskins uniform?HTTR!) -> a Redskins uniform?HTTR! (13634ms) In what month is it held? the President -14.748439189917889 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the date for hold ? -> $x: ($x, be the date for, hold) -> $x: ($x, date for, hold) -> (the President, shall fix the date for, the holding) -> the President (9838ms) In what month is it held? November?s general election -14.818066631785639 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it this year ? -> $x: (it this year, be in, $x) -> (this year?it, will be in, November?s general election) -> November?s general election (13634ms) In what month is it held? town -14.845020693628086 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it 2010 ? -> $x: (it 2010, be in, $x) -> (January 26 , 2010 Ahhhh?.It, feels damn good to be back in, town) -> town (15210ms) In what month is it held? 1988 -14.865813277170098 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it this year ? -> $x: (it this year, be in, $x) -> (old this year--it, was first introduced in, 1988) -> 1988 (13634ms) In what month is it held? New York -14.92940611757019 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> $x: (hold, go, $x) -> (hold, went to, New York) -> New York (16407ms) In what month is it held? Kawasaki -14.979671658319416 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it 2010 ? -> $x: (it 2010, be in, $x) -> (The Nippon IT Charity Relay Race 2010, will be held in, Kawasaki) -> Kawasaki (15210ms) In what month is it held? a different direction -14.991141525109956 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> $x: (hold, go, $x) -> (hold, we?ll go in, a different direction) -> a different direction (16407ms) In what month is it held? veggies tomorrow -15.003711609826544 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the year of hold ? -> $x: (hold, year, $x) -> $x: (hold, go, $x) -> (hold &, will be going for, veggies tomorrow) -> veggies tomorrow (16407ms) In what month is it held? data -15.010296443904847 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it 2010 ? -> $x: (it 2010, be on, $x) -> (The PayItGreen Survey 2010, is based on, data) -> data (15210ms) In what month is it held? The Contest -15.040913040993214 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (The Contest, will be held, Date) -> The Contest (14921ms) In what month is it held? 08sep 2010.additional -15.070833573415463 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it 2010 ? -> $x: (it 2010, be on, $x) -> (2010 .It, was received on, 08sep 2010.additional) -> 08sep 2010.additional (15210ms) In what month is it held? the SADC -15.166504596182037 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the criterion for hold ? -> $x: ($x, be the criterion for, hold) -> $x: ($x, criterion for, hold) -> (the SADC, has its own clear criteria for, the holding) -> the SADC (10001ms) In what month is it held? The Match -15.18736765756246 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (The Match, will be held in, dates) -> The Match (14922ms) In what month is it held? six-party talks -15.251815300196366 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (six-party talks, were held to, date) -> six-party talks (14921ms) In what month is it held? John Stott -15.256007825335127 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (John Stott, will be held on, Date) -> John Stott (14921ms) In what month is it held? the Executive Committee -15.316595511580227 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (the Executive Committee, shall be held on, dates) -> the Executive Committee (14921ms) In what month is it held? innovative 30-month program -15.353399274973137 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (Department of Education, ACE-IT in College, Instance Of, innovative 30-month program) -> innovative 30-month program (10925ms) In what month is it held? new and innovative 30-month program -15.353399274973137 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (ACE-IT in College, Instance Of, new and innovative 30-month program) -> new and innovative 30-month program (10925ms) In what month is it held? cloud computing -15.385365709551595 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it this year ? -> $x: (it this year, be on, $x) -> (this year?s Symposium?it, was the sessions on, cloud computing) -> cloud computing (13634ms) In what month is it held? free gay masturbation porn video -15.42188571021813 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (College Guy Jerking It, Instance Of, free gay masturbation porn video) -> free gay masturbation porn video (10925ms) In what month is it held? the years -15.475629968554943 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it 2010 ? -> $x: (it 2010, be in, $x) -> (April 06 , 2010 GE Healthcare IT, has been working in, the years) -> the years (15238ms) In what month is it held? Affiliated College -15.492738443493721 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (Platinum College of IT, Raipur, Instance Of, Affiliated College) -> Affiliated College (10927ms) In what month is it held? nice elevated plot -15.528124695349822 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be a college it ? -> $x: (a college it, instance of, $x) -> (A.Aziz Engineering College.It, Instance Of, nice elevated plot) -> nice elevated plot (10300ms) In what month is it held? the Kirkwall Teaching Scroll -15.58852603985741 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (the Kirkwall Teaching Scroll, is held to, date) -> the Kirkwall Teaching Scroll (14998ms) In what month is it held? Five such conferences -15.599136382075159 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (Five such conferences, have been held to, date) -> Five such conferences (14997ms) In what month is it held? New York City -15.634300234809563 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be bore, $x) -> (Marion Held Marion Held, was born in, New York City) -> New York City (10001ms) In what month is it held? Palo Alto -15.634300234809563 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be bore, $x) -> (ARCHIE HELD Biography Archie Held, was born in, Palo Alto) -> Palo Alto (10001ms) In what month is it held? collection of INTERNET search engine -15.639283633204396 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (Northwestern College's SearchIT, Instance Of, collection of INTERNET search engine) -> collection of INTERNET search engine (12954ms) In what month is it held? Beed based college -15.639283633204396 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (Tulsi College of Computer Science & I.T., Instance Of, Beed based college) -> Beed based college (11017ms) In what month is it held? tough game of football -15.639283633204396 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (Hazelwood College.It, Instance Of, tough game of football) -> tough game of football (11017ms) In what month is it held? SEASON yanno -15.639283633204396 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (LOVE college football-it, Instance Of, SEASON yanno) -> SEASON yanno (12955ms) In what month is it held? newly developed boarding school -15.639283633204396 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (GameIT College, Instance Of, newly developed boarding school) -> newly developed boarding school (11017ms) In what month is it held? long tough project -15.639283633204396 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (Good-luck with it. College life, Instance Of, long tough project) -> long tough project (11017ms) In what month is it held? growing independentnon-denominational college -15.639283633204396 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (TEACHING AIDE/IT ADMINBrindabella Christian College, Instance Of, growing independentnon-denominational college) -> growing independentnon-denominational college (12954ms) In what month is it held? blast Kia -15.639283633204396 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (Summer before college..it, Instance Of, blast Kia) -> blast Kia (11017ms) In what month is it held? part of Mahatma Gandhi Mission -15.639283633204396 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (College of Computer Science & I.T, Instance Of, part of Mahatma Gandhi Mission) -> part of Mahatma Gandhi Mission (12954ms) In what month is it held? six -15.652337977590705 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (six, have been held to, date) -> six (14997ms) In what month is it held? a meteorological phenomena -15.655332850486761 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (a meteorological phenomena, has been held to, date) -> a meteorological phenomena (14997ms) In what month is it held? Thirteen PRO Institutes -15.661030220686344 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (Thirteen PRO Institutes, have been held to, date) -> Thirteen PRO Institutes (14998ms) In what month is it held? follow-up workshops -15.675098680663968 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (follow-up workshops, were held at later, dates) -> follow-up workshops (15023ms) In what month is it held? web-based project -15.69349737175576 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (Resolve-It College Virtual Campus, Instance Of, web-based project) -> web-based project (12954ms) In what month is it held? spite -15.714355894847577 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it this year ? -> $x: (it this year, be in, $x) -> (this year.It, has been another good season in, spite) -> spite (13634ms) In what month is it held? the north -15.719168785956592 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it 2010 ? -> $x: (it 2010, be in, $x) -> (June 1 , 2010 ?It, is my mission in, the north) -> the north (15238ms) In what month is it held? voluntary society -15.722156289170783 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (Bareilly College-Social Service League.-It., Instance Of, voluntary society) -> voluntary society (12955ms) In what month is it held? Two Conferences -15.722382170825597 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (Two Conferences, have been held to, date) -> Two Conferences (15023ms) In what month is it held? 10 % -15.726382124355109 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (10 %, are required to hold, dates) -> 10 % (15023ms) In what month is it held? undergraduate college -15.727639977115663 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (Rani Birla Girls CollegeIt, Instance Of, undergraduate college) -> undergraduate college (13145ms) In what month is it held? Only one public hearing -15.730570443627327 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (Only one public hearing, has been held to, date) -> Only one public hearing (15023ms) In what month is it held? the Business office -15.731344512592345 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (Your hold, will only be released by, the Business office) -> the Business office (13146ms) In what month is it held? the country -15.794780960333945 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it 2010 ? -> $x: (it 2010, be in, $x) -> (2009 or 2010..it, will be here in, the country) -> the country (15238ms) In what month is it held? 173 -15.79646220554977 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (173, are held to later, date) -> 173 (15023ms) In what month is it held? Public workshops -15.819386800064795 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (Public workshops, are held on, dates) -> Public workshops (15024ms) In what month is it held? 1989 and nine conferences -15.838050303027774 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (1989 and nine conferences, have been held to, date) -> 1989 and nine conferences (15239ms) In what month is it held? June 4 -15.841670239513709 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (Hold, is released on, June 4) -> June 4 (13146ms) In what month is it held? twenty sessions -15.84668499146892 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (twenty sessions, have been held to, date) -> twenty sessions (15239ms) In what month is it held? MAPnet -15.853497812950868 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (all held records, will be released in, MAPnet) -> MAPnet (13145ms) In what month is it held? A written contract -15.856373376911588 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be hold date ? -> $x: ($x, be hold, date) -> (A written contract, is required to hold, dates) -> A written contract (15239ms) In what month is it held? general public -15.903637136693403 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (all held seats, will be released to, general public) -> general public (13145ms) In what month is it held? 48 hours -15.909425240548462 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (Holds, are also released within, 48 hours) -> 48 hours (13145ms) In what month is it held? New Orleans -15.951702047667833 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be bore, $x) -> (Many hold, was born in, New Orleans) -> New Orleans (10001ms) In what month is it held? 1928 -15.951880982520585 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be bore, $x) -> (Al Held Al Held, was born in, 1928) -> 1928 (10001ms) In what month is it held? 1951 -16.012006448329576 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be bore, $x) -> (David Held, was born in, 1951) -> 1951 (10001ms) In what month is it held? 2 weeks -16.01442179333995 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (The hold, will be released in, 2 weeks) -> 2 weeks (13184ms) In what month is it held? 1984 -16.06429929479849 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (?Hold Me?, was released in, 1984) -> 1984 (13183ms) In what month is it held? a German refugee camp -16.131300230295892 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be bore, $x) -> (Held, was born in, a German refugee camp) -> a German refugee camp (10075ms) In what month is it held? the UAE -16.14580455444097 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be cancel, $x) -> (hold, have been cancelled in, the UAE) -> the UAE (10075ms) In what month is it held? 2005 -16.156842216624078 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (Inconsistent ?Hold Your Colour?, was released in, 2005) -> 2005 (13183ms) In what month is it held? 5-7 business days -16.162796841541542 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (The hold, would be released in, 5-7 business days) -> 5-7 business days (13184ms) In what month is it held? bonus -16.190047818885308 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (Advanced Diploma in Engineering York College 2yearsIt, Instance Of, bonus) -> bonus (13184ms) In what month is it held? 21 days -16.219838531531856 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (the hold, can be released before, 21 days) -> 21 days (13236ms) In what month is it held? ten days -16.23700113501775 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (the hold, may be released within, ten days) -> ten days (13236ms) In what month is it held? Aug. 23 -16.26030768337947 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (Texas Hold-em, will be released, Aug. 23) -> Aug. 23 (13236ms) In what month is it held? the Office -16.300806085989002 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (the legal hold, is released by, the Office) -> the Office (13235ms) In what month is it held? Mystic Music -16.31075590372947 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (Holding, was released on, Mystic Music) -> Mystic Music (13235ms) In what month is it held? a growing number -16.3121899203024 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be to begin, $x) -> (hold, are beginning to be, a growing number) -> a growing number (10380ms) In what month is it held? Mrs. Knight -16.31901839962967 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (hold, was released after, Mrs. Knight) -> Mrs. Knight (13236ms) In what month is it held? relief -16.32559596094419 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (Held breaths, were released in, relief) -> relief (13269ms) In what month is it held? 4 business days -16.333588601550616 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (the hold, would be released within, 4 business days) -> 4 business days (13269ms) In what month is it held? 14 days -16.33470550608957 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (The hold, will be released, 14 days) -> 14 days (13269ms) In what month is it held? 7 days -16.33470550608957 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (This hold, will be released, 7 days) -> 7 days (13269ms) In what month is it held? person -16.342097850931864 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be cancel, $x) -> (703-228-5990 Holds, can also be cancelled in, person) -> person (10076ms) In what month is it held? 72 hours -16.350734972757717 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (The hold, is usually released approximately, 72 hours) -> 72 hours (13269ms) In what month is it held? one business day -16.3565777641929 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (the hold, will be released within, one business day) -> one business day (13336ms) In what month is it held? a positive impact -16.359541774783143 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be bore, $x) -> (free hold development, is bearing, a positive impact) -> a positive impact (10076ms) In what month is it held? December 10 , -16.368816507923793 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, commence on, $x) -> (UAP Holding Corp., was commenced on, December 10 ,) -> December 10 , (13336ms) In what month is it held? three years -16.37742737543 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (Hold Time, was released, three years) -> three years (13336ms) In what month is it held? Teller Services -16.39340935447387 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (Most financial holds, may be released by, Teller Services) -> Teller Services (13336ms) In what month is it held? a power level -16.4151816877571 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be bore, $x) -> ('held promise, was born with, a power level) -> a power level (10075ms) In what month is it held? lengthy negotiations -16.432615359277584 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (The yearlong hold, was released after, lengthy negotiations) -> lengthy negotiations (13336ms) In what month is it held? 2 working days -16.437859399012424 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (this hold, will be released within, 2 working days) -> 2 working days (13396ms) In what month is it held? Arkansas BioVentures -16.44234495184746 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be bore, $x) -> (a privately-held company, was born out of, Arkansas BioVentures) -> Arkansas BioVentures (10151ms) In what month is it held? service -16.44315687625427 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (Click-It @ College student banking package, Instance Of, service) -> service (13397ms) In what month is it held? any objects -16.451186921263016 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be hold on, $x) -> (using HOLD_CURSOR=YES no locks, are held on, any objects) -> any objects (10574ms) In what month is it held? 4 working days -16.466153680061286 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (this hold, will be released within, 4 working days) -> 4 working days (13396ms) In what month is it held? delay -16.49697203045737 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (held incommunicado, should be released without, delay) -> delay (13396ms) In what month is it held? four working days -16.498808402973093 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (this authorisation hold, is released within, four working days) -> four working days (13396ms) In what month is it held? project management -16.50327573658997 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> what year it take place ? -> $x: ($x, instance of, year it) ($x, take, place) -> (project management, Instance Of, year experience in IT) (Project management, took, place) -> project management (13396ms) In what month is it held? lipstick -16.505403390326943 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, would be like, $x) -> (holding hearings, would be like putting, lipstick) -> lipstick (13452ms) In what month is it held? gate -16.51519401480723 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (Face it. College, Instance Of, gate) -> gate (13452ms) In what month is it held? October 1 , 2010 -16.520029140110886 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (Held scores, will be released, October 1 , 2010) -> October 1 , 2010 (13452ms) In what month is it held? advantage -16.52447164334468 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (College or university degree within IT. Project experience, Instance Of, advantage) -> advantage (13452ms) In what month is it held? location -16.524913137976768 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (Arya college of Engineering &IT, Instance Of, location) -> location (13452ms) In what month is it held? 24 hours -16.532844575596755 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (Your hold, will be released within, 24 hours) -> 24 hours (13512ms) In what month is it held? January 11 , 2010 -16.537157082211905 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (Legal Holds ?, will be released on, January 11 , 2010) -> January 11 , 2010 (13512ms) In what month is it held? course -16.539763901130847 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> what be college it ? -> $x: (college it, instance of, $x) -> (I.T at Sutton College, Instance Of, course) -> course (13512ms) In what month is it held? October 23 , 1929 -16.54080230590892 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be bore, $x) -> (GEORGE HELD, was born, October 23 , 1929) -> October 23 , 1929 (10151ms) In what month is it held? Draft and Publish -16.547732601145924 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (Hold and, Release are now, Draft and Publish) -> Draft and Publish (13512ms) In what month is it held? TOURISTS -16.548359900238 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the date for hold ? -> $x: ($x, be the date for, hold) -> $x: ($x, date for, hold) -> $x: ($x, be visit for, hold) -> (TOURISTS, ARE VISITING THAILAND FOR, LESS THAN 30 DAYS AND HOLD) -> TOURISTS (13512ms) In what month is it held? FY03 -16.556564577015138 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, will resume, $x) -> (hold, will resume in, FY03) -> FY03 (9659ms) In what month is it held? a Muslim reaction -16.571045601087995 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be bore, $x) -> (held power, was born out of, a Muslim reaction) -> a Muslim reaction (10151ms) In what month is it held? a few days -16.576743023989874 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (Advising holds, are released automatically within, a few days) -> a few days (13551ms) In what month is it held? 24 hours time -16.58192297872207 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (This hold, will be released after, 24 hours time) -> 24 hours time (13551ms) In what month is it held? August 23rd -16.59371087372819 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (?Worth Holding, was released on, August 23rd) -> August 23rd (13551ms) In what month is it held? August -16.59764615987644 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (Worth Holding, was self-released in, August) -> August (13551ms) In what month is it held? a few minutes -16.599159398915717 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (the hold, is released within, a few minutes) -> a few minutes (13551ms) In what month is it held? an English -16.600616320330957 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (Your AZ hold, must be released by, an English) -> an English (13551ms) In what month is it held? first day -16.60880682148327 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be hold on, $x) -> (Dharam Sansad Held First Dharam Sansad, was held on, first day) -> first day (10574ms) In what month is it held? program OEHR -16.6114735985107 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (Held orders, can be released with, program OEHR) -> program OEHR (13702ms) In what month is it held? sexual harassment -16.614745497039962 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, still do, $x) -> (hold, still did n?t count for, sexual harassment) -> sexual harassment (10151ms) In what month is it held? a second broad fortitude -16.620152445232094 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (The holds, are released pursuant to, a second broad fortitude) -> a second broad fortitude (13703ms) In what month is it held? a second click -16.628026467681014 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (The hold, can be released with, a second click) -> a second click (13702ms) In what month is it held? inspection -16.630485916198687 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (the hold, will be released upon, inspection) -> inspection (13703ms) In what month is it held? Geneva -16.641856059656515 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be bore, $x) -> (John Held, was born in, Geneva) -> Geneva (10151ms) In what month is it held? hold radio -16.66201743209613 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be over on, $x) -> (hold message, is important over on, hold radio) -> hold radio (10478ms) In what month is it held? Virginia -16.67987654922432 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be bore, $x) -> (Grey Held, was born in, Virginia) -> Virginia (10152ms) In what month is it held? April 11 , 1912 -16.700798242633827 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (The Lucky Hold Up, was released on, April 11 , 1912) -> April 11 , 1912 (13702ms) In what month is it held? notice -16.70557814080595 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be cancel, $x) -> (your hold, can be cancelled without, notice) -> notice (10217ms) In what month is it held? market trends -16.747375143677885 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, will continue on, $x) -> (Tri-Tech Holding, will continue to focus on, market trends) -> market trends (10300ms) In what month is it held? payment -16.748019615081535 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (This hold, is released only upon, payment) -> payment (13808ms) In what month is it held? a income -16.75353686797223 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (holds, were released as well as, a income) -> a income (13808ms) In what month is it held? bail -16.763264467706634 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (Holding, was released on, bail) -> bail (13808ms) In what month is it held? fruit -16.772841718653265 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be bore, $x) -> (Our long-held bullish view, is bearing, fruit) -> fruit (10217ms) In what month is it held? April -16.794524394588798 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (TEXAS HOLD HIM, will be released in, April) -> April (13808ms) In what month is it held? processing -16.79464940862934 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (all held adjustment requests, shall be released for, processing) -> processing (13808ms) In what month is it held? 25-knot gusts -16.80567506264928 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, still stand, $x) -> (a no-holds-barred one design, still stand tall in, 25-knot gusts) -> 25-knot gusts (13808ms) In what month is it held? Tuesday -16.870868821812568 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (its holding companies, is released, Tuesday) -> Tuesday (13913ms) In what month is it held? any time -16.892242676139404 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, re-opened, $x) -> (the hold status, may be re-opened at, any time) -> any time (10217ms) In what month is it held? a balloon -16.917665770371105 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, would be like, $x) -> (the holding tank, would be like, a balloon) -> a balloon (13913ms) In what month is it held? wake -16.968483362945125 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (The hold, was recently released in, wake) -> wake (13913ms) In what month is it held? John -17.042805762059988 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be bore, $x) -> (John Held, was born to, John) -> John (10217ms) In what month is it held? items -17.061563287456764 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be hold on, $x) -> (hold, Hold can only be placed on, items) -> items (10575ms) In what month is it held? November 27th -17.071714857454232 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, will begin on, $x) -> (No Limit Hold?em tournament, will begin on, November 27th) -> November 27th (10300ms) In what month is it held? 7:01 p.m. tonight -17.096800076564453 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, will resume, $x) -> (a planned hold, will resume at, 7:01 p.m. tonight) -> 7:01 p.m. tonight (9660ms) In what month is it held? March -17.113559965202672 In what month is it held? -> When is it held? -> when be [ it ] hold ? -> when be it this year ? -> $x: (it this year, be on, $x) -> (this year?s Code Camp Oz ? It?ll, be on, March) -> March (13913ms) In what month is it held? riggers -17.137191065233385 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be release, $x) -> (a holding bridle, would be released by, riggers) -> riggers (13913ms) In what month is it held? Monday -17.139501074655634 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be hold on, $x) -> (the Future Holds, will be held on, Monday) -> Monday (10575ms) In what month is it held? Goals Divorce -17.139950160609907 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: ($x, mark the end of, hold) -> (Goals Divorce, will mark the end of, your once-held goals) -> Goals Divorce (10300ms) In what month is it held? new policy applications -17.147299069371883 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, will continue on, $x) -> (the temporary hold, will continue on, new policy applications) -> new policy applications (10300ms) In what month is it held? Monday October 26th -17.18479493975838 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, resume on, $x) -> (hold, then resume on, Monday October 26th) -> Monday October 26th (9740ms) In what month is it held? Sunday -17.195284289005947 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be hold on, $x) -> (a stein holding competition, will be held on, Sunday) -> Sunday (10575ms) In what month is it held? February -17.198768883963304 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, will resume, $x) -> (hold, will resume in, February) -> February (9660ms) In what month is it held? same date -17.215981069895676 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, still exist, $x) -> (holds, still exist on, same date) -> same date (9740ms) In what month is it held? Brooklyn -17.21660089165569 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be bore, $x) -> (Al Held, was born in, Brooklyn) -> Brooklyn (10380ms) In what month is it held? readers -17.226644777514544 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be cancel, $x) -> (hold, is cancelled * For, readers) -> readers (10380ms) In what month is it held? March 2nd , 2009 Today -17.227661350400187 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: ($x, mark the end of, hold) -> (March 2nd , 2009 Today, marks the end of, the holding period) -> March 2nd , 2009 Today (10380ms) In what month is it held? one to five days -17.2842499652002 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, last from, $x) -> (This hold, can last from, one to five days) -> one to five days (10380ms) In what month is it held? 2002 -17.297869329130528 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be bore, $x) -> (The Hold Steady, was born in, 2002) -> 2002 (10413ms) In what month is it held? January 2nd -17.312544298951355 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, will resume on, $x) -> (hold, will resume on, January 2nd) -> January 2nd (10478ms) In what month is it held? sight -17.33561419984505 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be bore, $x) -> (its hold, was quickly borne out of, sight) -> sight (10413ms) In what month is it held? suspicion -17.335992233813915 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be be hold on, $x) -> (rebel-held war zone, are being held on, suspicion) -> suspicion (10575ms) In what month is it held? 3-7 days -17.337366402523084 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, last from, $x) -> (This hold, typically lasts from, 3-7 days) -> 3-7 days (10413ms) In what month is it held? life -17.33926172395097 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be to begin, $x) -> (the Scourge-held land, was beginning to return to, life) -> life (10413ms) In what month is it held? March 5th -17.347584545650125 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, will begin on, $x) -> (Financial Registration Holds, will begin on, March 5th) -> March 5th (10413ms) In what month is it held? August 2006 -17.351449027622554 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, resume on, $x) -> (hold, then resumed on, August 2006) -> August 2006 (9741ms) In what month is it held? the go -17.72247272749324 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: ($x, be the first of, hold) -> (the go, is the first killer app of, the hand-held world) -> the go (10478ms) In what month is it held? December -17.857450313477703 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: ($x, mark the end of, hold) -> (December, also marks the end of, our legal hold) -> December (10478ms) In what month is it held? the cardholder -18.0493410025571 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be cancel, $x) -> (Holds, can be cancelled by, the cardholder) -> the cardholder (10477ms) In what month is it held? the host -18.100410973250963 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: (hold, be cancel, $x) -> (This hold open override, can be canceled by, the host) -> the host (10478ms) In what month is it held? the Supreme Court in Minor -18.31905217245746 In what month is it held? -> When is it held? -> when be it [ hold ] ? -> what be the first day of hold ? -> $x: ($x, be the first day of, hold) -> $x: ($x, discerning, hold) -> (the Supreme Court in Minor, to properly discern, their holding) -> the Supreme Court in Minor (9741ms) What state is the Filenes store located in? Airport Plaza -9.771154428074743 What state is the Filenes store located in? -> what state be [ the filene store ] locate in ? -> what be the region of the filene store ? -> $x: ($x, be the region of, the filene store) -> $x: ($x, have, the filene store) -> (Airport Plaza, still has, the former Filene?s furniture stores) -> Airport Plaza (6587ms) What is the population of Venezuela? 26 million -0.07274820127267301 What is the population of Venezuela? -> $x: (Venezuela, population, $x) -> (Venezuela, has a population of over, 26 million) -> 26 million (5241ms) What is the population of Venezuela? one million people -0.40985396721055123 What is the population of Venezuela? -> $x: (Venezuela, population, $x) -> (Venezuela, has a population of approximately, one million people) -> one million people (5240ms) What is the population of Venezuela? refugee and asylum seekers -0.5473965858666425 What is the population of Venezuela? -> $x: (Venezuela, population, $x) -> (Venezuela, hosted a population of, refugee and asylum seekers) -> refugee and asylum seekers (5240ms) What is the population of Venezuela? 29 million people -0.9513488924511337 What is the population of Venezuela? -> $x: (Venezuela, population, $x) -> (Venezuela, has a population of about, 29 million people) -> 29 million people (5241ms) What is the population of Venezuela? 23916810 -1.8228952319585927 What is the population of Venezuela? -> $x: (Venezuela, population, $x) -> (Venezuela, has an approximate population of, 23916810) -> 23916810 (5240ms) What is the population of Venezuela? ignorant Greek -9.057734332076608 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: ($x, be the population of, greece) -> (ignorant Greek, was the population of, Balkans and Greece) -> ignorant Greek (13377ms) What is the population of Venezuela? Such a large number -9.755721402034272 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: ($x, be the population of, france) -> (Such a large number, is twice the population of, France) -> Such a large number (13614ms) What is the population of Venezuela? African Americans -9.776433098339671 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of mississippus ? -> $x: (mississippus, population, $x) -> (Mississippi, has the largest population of, African Americans) -> African Americans (12869ms) What is the population of Venezuela? One such population -9.807817973150849 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population in uganda ? -> $x: ($x, be the population in, uganda) -> (One such population, was the black population in, Uganda) -> One such population (12578ms) What is the population of Venezuela? 14 million -10.054405039324926 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of cambodium ? -> $x: (cambodium, population, $x) -> (Cambodia, has a population of, 14 million) -> 14 million (12577ms) What is the population of Venezuela? 10 million -10.078670587459012 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of cambodium ? -> $x: (cambodium, population, $x) -> (Cambodia, has a population of, 10 million) -> 10 million (12578ms) What is the population of Venezuela? 15 million -10.084625165860997 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of cambodium ? -> $x: (cambodium, population, $x) -> (Cambodia, has a population of just under, 15 million) -> 15 million (12578ms) What is the population of Venezuela? 22 million -10.122382091612842 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of romanium ? -> $x: (romanium, population, $x) -> (Romania, has a total population of, 22 million) -> 22 million (12869ms) What is the population of Venezuela? 126 million -10.262404899645686 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: ($x, be the population of, france) -> (126 million, was almost double the entire population of, France) -> 126 million (13614ms) What is the population of Venezuela? Central Europe -10.356205975075738 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of romanium ? -> $x: (romanium, population, $x) -> (Romania, has the second largest population in, Central Europe) -> Central Europe (12869ms) What is the population of Venezuela? 23 million -10.366877619591229 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of romanium ? -> $x: (romanium, population, $x) -> (Romania, had a population of, 23 million) -> 23 million (12869ms) What is the population of Venezuela? 20 people -10.384933346036135 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of sweden ? -> $x: (sweden, population, $x) -> (Sweden, has a low population density of, 20 people) -> 20 people (13092ms) What is the population of Venezuela? 21 inhabitants -10.419809289090265 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of sweden ? -> $x: (sweden, population, $x) -> (Sweden, has a low population density of, 21 inhabitants) -> 21 inhabitants (13092ms) What is the population of Venezuela? 21 people -10.462441377566593 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of sweden ? -> $x: (sweden, population, $x) -> (Sweden, has a low population density of, 21 people) -> 21 people (13092ms) What is the population of Venezuela? Clos 17th June 2005 -10.604407914660658 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: ($x, be the population of, france) -> (Clos 17th June 2005, was the population of, France) -> Clos 17th June 2005 (13614ms) What is the population of Venezuela? 379,066 -10.73139822406841 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of mississippus ? -> $x: (mississippus, population, $x) -> (the Mississippi River, had a population of, 379,066) -> 379,066 (13214ms) What is the population of Venezuela? western Europe -10.734744876662134 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has the largest jewish population in, western Europe) -> western Europe (13615ms) What is the population of Venezuela? 14.5 million -10.766273236837591 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of cambodium ? -> $x: (cambodium, population, $x) -> (the CIA Fact book Cambodia, has a population of, 14.5 million) -> 14.5 million (12613ms) What is the population of Venezuela? 28,781 -10.768989938397096 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of mississippus ? -> $x: (mississippus, population, $x) -> (the Mississippi River, has a population of, 28,781) -> 28,781 (13214ms) What is the population of Venezuela? 65 million -10.799002057641948 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a population of almost, 65 million) -> 65 million (13614ms) What is the population of Venezuela? ninety thousand people -10.804082658001644 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of romanium ? -> $x: (romanium, population, $x) -> (Romania, had a population of, ninety thousand people) -> ninety thousand people (13214ms) What is the population of Venezuela? 8.9 Millions -10.811777714113362 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of cambodium ? -> $x: (cambodium, population, $x) -> (Cambodia, counted a population of, 8.9 Millions) -> 8.9 Millions (12613ms) What is the population of Venezuela? wild animals -10.822865058641856 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of romanium ? -> $x: (romanium, population, $x) -> (Romania, has a very large population of, wild animals) -> wild animals (13214ms) What is the population of Venezuela? Great Britain -10.828759475236582 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of romanium ? -> $x: ($x, be the population of, romanium) -> $x: ($x, population of, romanium) -> (Great Britain, has three times the population of, Romania) -> Great Britain (13214ms) What is the population of Venezuela? Crete -10.833168954274774 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population in greece ? -> $x: ($x, be the population in, greece) -> (Crete, is the only viable population in, Greece) -> Crete (13614ms) What is the population of Venezuela? Southeast Asia -10.839591404250733 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of cambodium ? -> $x: (cambodium, population, $x) -> (Cambodia, has the youngest population in, Southeast Asia) -> Southeast Asia (12613ms) What is the population of Venezuela? 11,426,223 people -10.840891666138358 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of cambodium ? -> $x: (cambodium, population, $x) -> (Cambodia, has a population of, 11,426,223 people) -> 11,426,223 people (12612ms) What is the population of Venezuela? 11 million -10.86305538387872 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, has a population of about, 11 million) -> 11 million (13378ms) What is the population of Venezuela? Arab heritage -10.863698978033309 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a large Muslim population of, Arab heritage) -> Arab heritage (13758ms) What is the population of Venezuela? two million -10.880273220013091 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of cambodium ? -> $x: (cambodium, population, $x) -> (Cambodia, has a population of about, two million) -> two million (12613ms) What is the population of Venezuela? hundreds of thousands -10.901070085479772 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of haitus ? -> $x: (haitus, population, $x) -> (Haiti, has created a population of, hundreds of thousands) -> hundreds of thousands (13214ms) What is the population of Venezuela? 63 millions -10.916992728365123 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France France France, has a population of, 63 millions) -> 63 millions (13758ms) What is the population of Venezuela? 14,805,000 -10.919649825306813 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of cambodium ? -> $x: (cambodium, population, $x) -> (Cambodia, has an estimated population of, 14,805,000) -> 14,805,000 (12613ms) What is the population of Venezuela? English speaking people -10.928709630630138 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has the largest population of, English speaking people) -> English speaking people (13758ms) What is the population of Venezuela? 14,805,358 people -10.932063661201404 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of cambodium ? -> $x: (cambodium, population, $x) -> (Cambodia, has an estimated population of, 14,805,358 people) -> 14,805,358 people (13378ms) What is the population of Venezuela? 13.8 million -10.969592163458824 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of cambodium ? -> $x: (cambodium, population, $x) -> (Cambodia, has an estimated population of, 13.8 million) -> 13.8 million (13378ms) What is the population of Venezuela? Western Europe -10.975119653680864 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has the largest Muslim population in, Western Europe) -> Western Europe (13758ms) What is the population of Venezuela? 9,568,000 -10.97660119194493 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of cambodium ? -> $x: (cambodium, population, $x) -> (1994 Cambodia, had a population of about, 9,568,000) -> 9,568,000 (13758ms) What is the population of Venezuela? 17 million -10.991401494444274 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, had a population of about, 17 million) -> 17 million (13758ms) What is the population of Venezuela? nine million -11.009021956008649 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of mississippus ? -> $x: (mississippus, population, $x) -> (the Mississippi River, has a population of over, nine million) -> nine million (13786ms) What is the population of Venezuela? 27,426 -11.012055405211436 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of mississippus ? -> $x: (mississippus, population, $x) -> (Mississippi County, has a population of, 27,426) -> 27,426 (13786ms) What is the population of Venezuela? Pelasgians -11.026344543465223 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, had a population of, Pelasgians) -> Pelasgians (13786ms) What is the population of Venezuela? San Timoteo -11.028978734310574 What is the population of Venezuela? -> what be the population [ of venezuelum ] ? -> what be of venezuelum population ? -> $x: ($x, be of, venezuelum population) -> $x: ($x, of, venezuelum population) -> (San Timoteo, Instance Of, population of the Zulia state, Venezuela) -> San Timoteo (11135ms) What is the population of Venezuela? south America -11.03740271590654 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, south America) -> south America (10049ms) What is the population of Venezuela? 60 million -11.04569337760566 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a population of, 60 million) -> 60 million (13786ms) What is the population of Venezuela? 8.5 million -11.070809727260244 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of haitus ? -> $x: (haitus, population, $x) -> (Haiti, has an estimated population of, 8.5 million) -> 8.5 million (13787ms) What is the population of Venezuela? 15 million people -11.072651090853789 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of cambodium ? -> $x: (cambodium, population, $x) -> (Cambodia, has a population of, 15 million people) -> 15 million people (13864ms) What is the population of Venezuela? more than 14 million -11.075853421050578 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of cambodium ? -> $x: (cambodium, population, $x) -> (Cambodia, has a population of, more than 14 million) -> more than 14 million (13864ms) What is the population of Venezuela? 40 million -11.084855209074671 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, then had a population of about, 40 million) -> 40 million (13864ms) What is the population of Venezuela? 63 million -11.090330544648795 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (( France, has a population of, 63 million) -> 63 million (13864ms) What is the population of Venezuela? Muslims -11.09676325842404 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has the highest population of, Muslims) -> Muslims (13864ms) What is the population of Venezuela? 21,680,974 -11.098384895008847 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of romanium ? -> $x: (romanium, population, $x) -> (Romania, has a population of, 21,680,974) -> 21,680,974 (13864ms) What is the population of Venezuela? European France -11.100851251882592 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, exceeded the total Jewish population of, European France) -> European France (13895ms) What is the population of Venezuela? 9.35 million -11.102550148050227 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of sweden ? -> $x: (sweden, population, $x) -> (Sweden, has a population of only, 9.35 million) -> 9.35 million (13895ms) What is the population of Venezuela? 9,263,872 -11.105375406021473 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of sweden ? -> $x: (sweden, population, $x) -> (Sweden, puts the population at, 9,263,872) -> 9,263,872 (13895ms) What is the population of Venezuela? the USA -11.117297190722377 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has one-fifth the population of, the USA) -> the USA (13895ms) What is the population of Venezuela? more than nine million people -11.123422520906624 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of haitus ? -> $x: (haitus, population, $x) -> (Haiti, has a population of, more than nine million people) -> more than nine million people (13895ms) What is the population of Venezuela? 2,967,297 -11.141748219573698 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of mississippus ? -> $x: (mississippus, population, $x) -> (Mississippi, has a population of, 2,967,297) -> 2,967,297 (13895ms) What is the population of Venezuela? South American Countries -11.152983382421821 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (venezuela, is a country located in the geopolitical location, South American Countries) -> South American Countries (10049ms) What is the population of Venezuela? more than 2,200,000 -11.171842223432543 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of romanium ? -> $x: (romanium, population, $x) -> (Romania, has a population of, more than 2,200,000) -> more than 2,200,000 (13926ms) What is the population of Venezuela? 2,951,996 -11.173422597557712 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of mississippus ? -> $x: (mississippus, population, $x) -> (Nathan Culpepper Mississippi, has a population of, 2,951,996) -> 2,951,996 (13926ms) What is the population of Venezuela? 21,698,181 -11.199610828772068 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of romanium ? -> $x: (romanium, population, $x) -> (Romania, had a population of, 21,698,181) -> 21,698,181 (13926ms) What is the population of Venezuela? Jews and Muslims -11.203203795817846 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has the largest population of, Jews and Muslims) -> Jews and Muslims (13926ms) What is the population of Venezuela? Vietnam -11.204951987037818 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of cambodium ? -> $x: (cambodium, population, $x) -> (Cambodia and Laos, have tiny populations compared to, Vietnam) -> Vietnam (13926ms) What is the population of Venezuela? 22 million people -11.217945712391488 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of romanium ? -> $x: (romanium, population, $x) -> (Romania Romania, has a population of, 22 million people) -> 22 million people (13926ms) What is the population of Venezuela? 8,400 -11.228619298574474 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of mississippus ? -> $x: (mississippus, population, $x) -> (Mississippi, has a population of approximately, 8,400) -> 8,400 (13957ms) What is the population of Venezuela? 21.7 million -11.229771996473985 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of romanium ? -> $x: (romanium, population, $x) -> (Romania, has a population of, 21.7 million) -> 21.7 million (13957ms) What is the population of Venezuela? 22,607,620 -11.238282263128184 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of romanium ? -> $x: (romanium, population, $x) -> (1996 Romania, had an estimated population of, 22,607,620) -> 22,607,620 (13957ms) What is the population of Venezuela? 9 million -11.239600832098226 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of sweden ? -> $x: (sweden, population, $x) -> (Sweden, has a population of around, 9 million) -> 9 million (13957ms) What is the population of Venezuela? 21,698,181 inhabitants -11.246696965280677 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of romanium ? -> $x: (romanium, population, $x) -> (Romania, has a population of, 21,698,181 inhabitants) -> 21,698,181 inhabitants (13957ms) What is the population of Venezuela? 2.8 million -11.261334617033407 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of mississippus ? -> $x: (mississippus, population, $x) -> (Mississippi, has a population of, 2.8 million) -> 2.8 million (13957ms) What is the population of Venezuela? Asians today -11.29710256567582 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of sweden ? -> $x: (sweden, population, $x) -> (Sweden, also has a huge population of, Asians today) -> Asians today (13957ms) What is the population of Venezuela? eight million -11.314801678215405 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of sweden ? -> $x: (sweden, population, $x) -> (Sweden, has a population of, eight million) -> eight million (13993ms) What is the population of Venezuela? 9 million people -11.316060666763818 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of sweden ? -> $x: (sweden, population, $x) -> (? Sweden, has a total population of, 9 million people) -> 9 million people (13993ms) What is the population of Venezuela? a state -11.320343199872251 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, a state) -> a state (10049ms) What is the population of Venezuela? the Yellow Fever zone -11.322989865371426 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, the Yellow Fever zone) -> the Yellow Fever zone (10050ms) What is the population of Venezuela? 8.7 million -11.323202337301373 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of haitus ? -> $x: (haitus, population, $x) -> (Haiti, has a population of, 8.7 million) -> 8.7 million (13993ms) What is the population of Venezuela? the U.S. State -11.325652684416198 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, has a population less than, the U.S. State) -> the U.S. State (13993ms) What is the population of Venezuela? less than eight million -11.326209187151548 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, had a population of, less than eight million) -> less than eight million (13993ms) What is the population of Venezuela? 45,000 -11.333446499553858 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of mississippus ? -> $x: (mississippus, population, $x) -> (Mississippi, had an undocumented population of about, 45,000) -> 45,000 (13993ms) What is the population of Venezuela? 10M people -11.348904707396365 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of haitus ? -> $x: (haitus, population, $x) -> (Haiti, has a population of, 10M people) -> 10M people (14021ms) What is the population of Venezuela? the European Union -11.3526374294199 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has the largest Muslim population in, the European Union) -> the European Union (14022ms) What is the population of Venezuela? 95,000 -11.357356618308826 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of sweden ? -> $x: (sweden, population, $x) -> (east central Sweden, has a population of about, 95,000) -> 95,000 (14022ms) What is the population of Venezuela? 9 million ? -11.360735950117306 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of sweden ? -> $x: (sweden, population, $x) -> (Sweden, has a population of, 9 million ?) -> 9 million ? (14022ms) What is the population of Venezuela? North America -11.389449289385395 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, North America) -> North America (10049ms) What is the population of Venezuela? top -11.392905622417492 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, was on, top) -> top (10049ms) What is the population of Venezuela? less than 10 million -11.39714553338112 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of sweden ? -> $x: (sweden, population, $x) -> (Sweden, has a population of, less than 10 million) -> less than 10 million (14021ms) What is the population of Venezuela? 10 million people -11.398786450001248 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of haitus ? -> $x: (haitus, population, $x) -> (Haiti, has a population of, 10 million people) -> 10 million people (14022ms) What is the population of Venezuela? 21.7 million people -11.427500577268418 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of romanium ? -> $x: (romanium, population, $x) -> (Romania, has a population of, 21.7 million people) -> 21.7 million people (14053ms) What is the population of Venezuela? 8 millions -11.433697050084273 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of sweden ? -> $x: (sweden, population, $x) -> (Sweden, has a population of, 8 millions) -> 8 millions (14053ms) What is the population of Venezuela? 11 million people -11.43845552529312 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, has a population of, 11 million people) -> 11 million people (14053ms) What is the population of Venezuela? 9 Million -11.441197913960696 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of sweden ? -> $x: (sweden, population, $x) -> (Sweden, has a population of about, 9 Million) -> 9 Million (14053ms) What is the population of Venezuela? 8 million people -11.444889938960191 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of haitus ? -> $x: (haitus, population, $x) -> (Haiti, has a population of, 8 million people) -> 8 million people (14053ms) What is the population of Venezuela? homeless dogs -11.44708979413985 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of romanium ? -> $x: (romanium, population, $x) -> (Romania, has a very large population of, homeless dogs) -> homeless dogs (14053ms) What is the population of Venezuela? 9.2 million people -11.450039883376252 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of sweden ? -> $x: (sweden, population, $x) -> (Sweden, has a population of, 9.2 million people) -> 9.2 million people (14190ms) What is the population of Venezuela? any country -11.453253269701657 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has the largest Muslim population of, any country) -> any country (14190ms) What is the population of Venezuela? greater risk -11.453618132921921 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of haitus ? -> $x: (haitus, population, $x) -> (Haiti, put an already vulnerable population at, greater risk) -> greater risk (14190ms) What is the population of Venezuela? 23 million citizens -11.471867943546695 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of romanium ? -> $x: (romanium, population, $x) -> (Romania, has a total population of, 23 million citizens) -> 23 million citizens (14190ms) What is the population of Venezuela? 21 000 000 people -11.47268761452283 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of romanium ? -> $x: (romanium, population, $x) -> (Romania, has a population of around, 21 000 000 people) -> 21 000 000 people (14190ms) What is the population of Venezuela? non-believers -11.491567752713198 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of sweden ? -> $x: (sweden, population, $x) -> (Denmark and Sweden, have large populations of, non-believers) -> non-believers (14190ms) What is the population of Venezuela? 10,964,020 people -11.501945651771436 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, reported a population of, 10,964,020 people) -> 10,964,020 people (14190ms) What is the population of Venezuela? Pool A -11.55418711767862 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, are in, Pool A) -> Pool A (10596ms) What is the population of Venezuela? 10,964,020 -11.568468189328414 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, had a population of, 10,964,020) -> 10,964,020 (14371ms) What is the population of Venezuela? 700,000 -11.571638216701384 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, had a population of, 700,000) -> 700,000 (14371ms) What is the population of Venezuela? least five million -11.57818926287387 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a Muslim population of at, least five million) -> least five million (14371ms) What is the population of Venezuela? Europe -11.598680353260916 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has the first Jewish population in, Europe) -> Europe (14371ms) What is the population of Venezuela? ten million people -11.612298208146388 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a population of over, ten million people) -> ten million people (14371ms) What is the population of Venezuela? 54 million people -11.618572378272436 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (The People France, has a population of, 54 million people) -> 54 million people (14371ms) What is the population of Venezuela? the UK -11.632804923348333 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a similar population to, the UK) -> the UK (14428ms) What is the population of Venezuela? 11.082.752 -11.633691112008265 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, had a total population of, 11.082.752) -> 11.082.752 (14428ms) What is the population of Venezuela? the US Congress -11.66574555767305 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is being prepared in, the US Congress) -> the US Congress (10596ms) What is the population of Venezuela? 11.3m -11.668899985677086 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, has a population of, 11.3m) -> 11.3m (14428ms) What is the population of Venezuela? more than five million -11.67130878387108 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a Muslim population of, more than five million) -> more than five million (14428ms) What is the population of Venezuela? 520,000 inhabitants -11.678263710924144 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, has a population of about, 520,000 inhabitants) -> 520,000 inhabitants (14428ms) What is the population of Venezuela? 11,000,000 -11.703383676938213 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, has a population of, 11,000,000) -> 11,000,000 (14456ms) What is the population of Venezuela? the United States -11.704654491405359 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, would have the same population as, the United States) -> the United States (14456ms) What is the population of Venezuela? 805,000 people -11.716348821321501 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, has an estimated population of, 805,000 people) -> 805,000 people (14456ms) What is the population of Venezuela? Underprivileged viewers -11.722367196875542 What is the population of Venezuela? -> what be the population [ of venezuelum ] ? -> what be of venezuelum s population ? -> $x: ($x, be of, venezuelum s population) -> $x: ($x, of, venezuelum s population) -> (Underprivileged viewers, make 80 % of, Venezuela?s population) -> Underprivileged viewers (8798ms) What is the population of Venezuela? 57 million people -11.730849529479533 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (The People France, has a population of, 57 million people) -> 57 million people (14456ms) What is the population of Venezuela? 10.76 million -11.749883758054276 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, has a current population of, 10.76 million) -> 10.76 million (14456ms) What is the population of Venezuela? sixty million -11.754841821206936 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a population of over, sixty million) -> sixty million (14456ms) What is the population of Venezuela? five million Muslims -11.771846067526276 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a population of over, five million Muslims) -> five million Muslims (15855ms) What is the population of Venezuela? 10,623,835 -11.775162780764038 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, has an estimated population of, 10,623,835) -> 10,623,835 (15855ms) What is the population of Venezuela? Northern South America -11.796502685564464 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, Northern South America) -> Northern South America (10596ms) What is the population of Venezuela? the ?Axis -11.80102781621656 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, has been placed on, the ?Axis) -> the ?Axis (10596ms) What is the population of Venezuela? 500,000 -11.802935627249905 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, has a Muslim population of around, 500,000) -> 500,000 (15855ms) What is the population of Venezuela? the 60 meterband -11.81941057672891 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, are in, the 60 meterband) -> the 60 meterband (10596ms) What is the population of Venezuela? French law ? -11.829509129595394 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: ($x, be the population of, france) -> $x: ($x, population of, france) -> (French law ?, put the current Muslim population of, France) -> French law ? (15855ms) What is the population of Venezuela? 600,000 -11.832671839809409 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, indeed has a Jewish population of, 600,000) -> 600,000 (15855ms) What is the population of Venezuela? the Perija mountains -11.843857742809764 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, the Perija mountains) -> the Perija mountains (10596ms) What is the population of Venezuela? 64.3 million -11.852581123283043 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a population of, 64.3 million) -> 64.3 million (16241ms) What is the population of Venezuela? 10m -11.85870462377608 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, has a total population of about, 10m) -> 10m (16241ms) What is the population of Venezuela? Texas -11.866846000064072 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of sweden ? -> $x: ($x, be the population of, sweden) -> $x: ($x, population of, sweden) -> (Texas, has nearly twice the population density of, Sweden) -> Texas (16241ms) What is the population of Venezuela? 762,000 -11.86947253789662 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, had an immigrant population of just over, 762,000) -> 762,000 (16241ms) What is the population of Venezuela? 12 million people -11.87919869371327 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, has a population of about, 12 million people) -> 12 million people (16241ms) What is the population of Venezuela? the Troncal del Caribe -11.880148727223117 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is easy on, the Troncal del Caribe) -> the Troncal del Caribe (11135ms) What is the population of Venezuela? thirty millions -11.889571596110706 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, had a population of, thirty millions) -> thirty millions (16241ms) What is the population of Venezuela? a mess -11.903795098379467 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was in, a mess) -> a mess (11135ms) What is the population of Venezuela? 200,000 -11.919780133003101 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a population of only, 200,000) -> 200,000 (16333ms) What is the population of Venezuela? Bush?s agenda -11.931571727560655 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, might be next on, Bush?s agenda) -> Bush?s agenda (11135ms) What is the population of Venezuela? more than 30 million -11.95173923160424 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a population of, more than 30 million) -> more than 30 million (16333ms) What is the population of Venezuela? Maracaibo -11.953335280365428 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, Maracaibo) -> Maracaibo (11135ms) What is the population of Venezuela? 10,000 people -11.962806393742246 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (Fort Frances, has a population of approximately, 10,000 people) -> 10,000 people (16334ms) What is the population of Venezuela? 400,000 -11.969295203892049 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, had a Muslim population of, 400,000) -> 400,000 (16333ms) What is the population of Venezuela? 5 million -11.972349602201405 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a Muslim population of, 5 million) -> 5 million (16365ms) What is the population of Venezuela? 63.1 million -11.974300975063386 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a metropolitan population of around, 63.1 million) -> 63.1 million (16365ms) What is the population of Venezuela? 58.7 million -11.979905598812094 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a population of, 58.7 million) -> 58.7 million (16365ms) What is the population of Venezuela? Countries -11.988404590188566 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (venezuela, is a country located in the geopolitical location, Countries) -> Countries (11135ms) What is the population of Venezuela? Moscow -11.999229234471223 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, would be signed in, Moscow) -> Moscow (11164ms) What is the population of Venezuela? 60 million people -12.002595308814541 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has an estimated population of, 60 million people) -> 60 million people (16365ms) What is the population of Venezuela? 2.2 million people -12.00347949521564 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a population of about, 2.2 million people) -> 2.2 million people (16365ms) What is the population of Venezuela? Caracas -12.003669969528216 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, Caracas) -> Caracas (11164ms) What is the population of Venezuela? 65 million people -12.012163998132992 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a population of, 65 million people) -> 65 million people (16365ms) What is the population of Venezuela? 12.687 million people -12.019330493117302 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a population of over, 12.687 million people) -> 12.687 million people (16365ms) What is the population of Venezuela? 41,500,000 people -12.023231259488774 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a population of, 41,500,000 people) -> 41,500,000 people (16397ms) What is the population of Venezuela? 8 million Muslims -12.044879316591924 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a population of, 8 million Muslims) -> 8 million Muslims (16397ms) What is the population of Venezuela? a par -12.04596869643729 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is on, a par) -> a par (11164ms) What is the population of Venezuela? 100,000 -12.047624826868455 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (Fort de France, has a population of over, 100,000) -> 100,000 (16397ms) What is the population of Venezuela? a plan -12.072592472337945 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, has been working on, a plan) -> a plan (11166ms) What is the population of Venezuela? oil -12.079824064451294 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, has been awash in, oil) -> oil (11164ms) What is the population of Venezuela? 64.5 million -12.082015619758636 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has an estimated population of, 64.5 million) -> 64.5 million (16397ms) What is the population of Venezuela? a `` social bomb -12.096111292207812 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is sitting on, a `` social bomb) -> a `` social bomb (11227ms) What is the population of Venezuela? Facebook -12.10983827604673 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, are on, Facebook) -> Facebook (11227ms) What is the population of Venezuela? 59 million people -12.11488840471577 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has a population of about, 59 million people) -> 59 million people (16397ms) What is the population of Venezuela? electronic voting machines -12.12404805057599 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, was recorded on, electronic voting machines) -> electronic voting machines (11226ms) What is the population of Venezuela? England -12.126764723207119 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, had a much larger population than, England) -> England (16396ms) What is the population of Venezuela? 300,000 -12.130678807070305 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (Pre-war France, had a Jewish population of over, 300,000) -> 300,000 (16428ms) What is the population of Venezuela? 6964549 -12.154785578175677 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of haitus ? -> $x: (haitus, population, $x) -> (Haiti, has an approximate population of, 6964549) -> 6964549 (16428ms) What is the population of Venezuela? 8875053 -12.170545917511781 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of sweden ? -> $x: (sweden, population, $x) -> (Sweden, has an approximate population of, 8875053) -> 8875053 (16428ms) What is the population of Venezuela? temporary bilateral agreements -12.172614366936585 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is working on, temporary bilateral agreements) -> temporary bilateral agreements (11226ms) What is the population of Venezuela? Modern scholars -12.180507735285817 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: ($x, be the population of, france) -> $x: ($x, population of, france) -> (Modern scholars, estimate the population of, France) -> Modern scholars (16428ms) What is the population of Venezuela? Colombia -12.186735934513964 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is his position on, Colombia) -> Colombia (11227ms) What is the population of Venezuela? WWII -12.204146562933673 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (northern Greece, had a thriving Jewish population prior to, WWII) -> WWII (16428ms) What is the population of Venezuela? single digits -12.213732756150007 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was in, single digits) -> single digits (11340ms) What is the population of Venezuela? good shape -12.226111523872245 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was in, good shape) -> good shape (11340ms) What is the population of Venezuela? first place -12.236721918792288 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, first place) -> first place (11340ms) What is the population of Venezuela? Spanish -12.248969019413956 What is the population of Venezuela? -> what be the population [ of venezuelum ] ? -> what population be of venezuelum ? -> $x: ($x, instance of, population) ($x, be of, venezuelum) -> (Spanish, Instance Of, population) (SPanish, is the language of the country, venezuela) -> Spanish (16428ms) What is the population of Venezuela? Mr. Bush?s list -12.264108869210254 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is very high on, Mr. Bush?s list) -> Mr. Bush?s list (11340ms) What is the population of Venezuela? trade and investment deals -12.269414040319129 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is concentrating on, trade and investment deals) -> trade and investment deals (11340ms) What is the population of Venezuela? desperate need -12.270321423652318 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, desperate need) -> desperate need (11340ms) What is the population of Venezuela? fourth place -12.322363890070172 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, fourth place) -> fourth place (11372ms) What is the population of Venezuela? major sea and air routes -12.326659203401118 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is ideally located on, major sea and air routes) -> major sea and air routes (11372ms) What is the population of Venezuela? STATES -12.336513427456902 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (venezuela, is a country located in the geopolitical location, STATES) -> STATES (11372ms) What is the population of Venezuela? France -12.337763463788287 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: ($x, be the population of, france) -> $x: ($x, population of, france) -> (France, exceeded the total Jewish population of, European France) -> France (16459ms) What is the population of Venezuela? a better situation -12.360859392834369 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, a better situation) -> a better situation (11372ms) What is the population of Venezuela? 26 February -12.375448817651716 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, was operated on, 26 February) -> 26 February (11373ms) What is the population of Venezuela? 1.36 trillion barrels -12.386023026952575 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is sitting on, 1.36 trillion barrels) -> 1.36 trillion barrels (11403ms) What is the population of Venezuela? the Middle East -12.38618170531813 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, the Middle East) -> the Middle East (11403ms) What is the population of Venezuela? similar programmes -12.387050490833063 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is embarking on, similar programmes) -> similar programmes (11404ms) What is the population of Venezuela? the 2010 Great Place -12.42208190519514 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, has been included in, the 2010 Great Place) -> the 2010 Great Place (11403ms) What is the population of Venezuela? a strategic location -12.432871639055207 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, a strategic location) -> a strategic location (11403ms) What is the population of Venezuela? Sunday -12.441037423793516 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, will be on, Sunday) -> Sunday (11404ms) What is the population of Venezuela? high alert -12.447588389253449 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is on, high alert) -> high alert (11473ms) What is the population of Venezuela? Canadian exports -12.456630248155301 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is particularly reliant on, Canadian exports) -> Canadian exports (11473ms) What is the population of Venezuela? second place -12.46560393162814 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was in, second place) -> second place (11473ms) What is the population of Venezuela? undemanding approval -12.470899579365515 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela ?, are looked on with, undemanding approval) -> undemanding approval (11473ms) What is the population of Venezuela? news bulletins -12.511786922583784 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, has been on, news bulletins) -> news bulletins (11473ms) What is the population of Venezuela? more than 20 tax treaties -12.5178472731408 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, more than 20 tax treaties) -> more than 20 tax treaties (11473ms) What is the population of Venezuela? a critical situation -12.54952115153696 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was in, a critical situation) -> a critical situation (11543ms) What is the population of Venezuela? each other -12.551347378087064 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, are rubbing off on, each other) -> each other (11543ms) What is the population of Venezuela? Facebook 60 percent -12.55153193619349 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, are on, Facebook 60 percent) -> Facebook 60 percent (11543ms) What is the population of Venezuela? basic knowledge -12.553279695033313 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, was focused on, basic knowledge) -> basic knowledge (11543ms) What is the population of Venezuela? a desalination project -12.568496158589191 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is currently working on, a desalination project) -> a desalination project (11543ms) What is the population of Venezuela? Miraflores -12.597504314807114 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was in, Miraflores) -> Miraflores (11543ms) What is the population of Venezuela? a long decline -12.600804647930396 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is on, a long decline) -> a long decline (11573ms) What is the population of Venezuela? MI deaths -12.611033723774 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population in the 1900s ? -> $x: ($x, be the population in, the 1900s) -> $x: ($x, population in, 1900) -> (MI deaths, was the English population in, 1900) -> MI deaths (16460ms) What is the population of Venezuela? a similar suitation -12.61760440036041 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, a similar suitation) -> a similar suitation (11573ms) What is the population of Venezuela? slaves -12.619910759833626 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, increased the population of, slaves) -> slaves (16459ms) What is the population of Venezuela? an independent path -12.63179723661205 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is increasingly going on, an independent path) -> an independent path (11573ms) What is the population of Venezuela? Britain -12.63856966807351 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, Britain) -> Britain (11573ms) What is the population of Venezuela? South America -12.652659076573588 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is a country in, South America) -> South America (11573ms) What is the population of Venezuela? a similar principle -12.669543623585925 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is based on, a similar principle) -> a similar principle (11573ms) What is the population of Venezuela? Bolivars -12.680946574221839 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, Bolivars) -> Bolivars (11603ms) What is the population of Venezuela? the Llanos -12.756368517889555 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is tropical on, the Llanos) -> the Llanos (11602ms) What is the population of Venezuela? 59551227 -12.76260752244519 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, has an approximate population of, 59551227) -> 59551227 (16459ms) What is the population of Venezuela? Latin America -12.910354791323371 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is the only country in, Latin America) -> Latin America (11603ms) What is the population of Venezuela? zero -12.94055830856196 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of mississippus ? -> $x: (mississippus, population, $x) -> (the Mississippi River, has a total population of, zero) -> zero (16491ms) What is the population of Venezuela? the edge -12.982573739266572 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is on, the edge) -> the edge (11632ms) What is the population of Venezuela? January 20 , 1836 -13.08440682808326 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, was signed on, January 20 , 1836) -> January 20 , 1836 (11632ms) What is the population of Venezuela? vampires -13.099395667952146 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: (greece, population, $x) -> (Greece, has a very large population of, vampires) -> vampires (16491ms) What is the population of Venezuela? the country -13.12859357050755 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of mississippus ? -> $x: (mississippus, population, $x) -> (Mississippi, has the highest black population in, the country) -> the country (16491ms) What is the population of Venezuela? the EU -13.140400593106142 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, found on, the EU) -> the EU (11632ms) What is the population of Venezuela? a state of political turmoil -13.155813295453818 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was in, a state of political turmoil) -> a state of political turmoil (11658ms) What is the population of Venezuela? the government power -13.186582698596874 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, are in, the government power) -> the government power (11659ms) What is the population of Venezuela? bass -13.188461346672444 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of mississippus ? -> $x: (mississippus, population, $x) -> (the mighty Mississippi, holds a good population of, bass) -> bass (16491ms) What is the population of Venezuela? the planning committee -13.22283481536249 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is on, the planning committee) -> the planning committee (11658ms) What is the population of Venezuela? Salonika -13.26220239254417 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population in greece ? -> $x: ($x, be the population in, greece) -> $x: ($x, population in, greece) -> (Salonika, had the largest Jewish population in, Greece) -> Salonika (16491ms) What is the population of Venezuela? the same path -13.2687485198175 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, was on, the same path) -> the same path (11658ms) What is the population of Venezuela? the southern state -13.292686436988133 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, the southern state) -> the southern state (11659ms) What is the population of Venezuela? the up -13.302611150198913 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, are on, the up) -> the up (11690ms) What is the population of Venezuela? 11330700 -13.330436628748924 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, is Paris Population of, 11330700) -> 11330700 (16685ms) What is the population of Venezuela? the same level -13.332410731230876 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, are on, the same level) -> the same level (11690ms) What is the population of Venezuela? the map -13.333493527728397 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, was on, the map) -> the map (11690ms) What is the population of Venezuela? the number -13.333715024428095 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of haitus ? -> $x: ($x, be the population of, haitus) -> $x: ($x, population of, haitus) -> (the number, exceeds the population of, Haiti) -> the number (16685ms) What is the population of Venezuela? the United Nations -13.34208466326675 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, passed in, the United Nations) -> the United Nations (11690ms) What is the population of Venezuela? the energy sector -13.35988544670819 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, the energy sector) -> the energy sector (11690ms) What is the population of Venezuela? approx -13.37291483682888 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of sweden ? -> $x: (sweden, population, $x) -> (Contents Sweden, has a population of, approx) -> approx (16685ms) What is the population of Venezuela? the list -13.411821197091033 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is placed on, the list) -> the list (11720ms) What is the population of Venezuela? northern South America -13.434751993377224 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is a country in, northern South America) -> northern South America (11720ms) What is the population of Venezuela? an axis -13.44273952754889 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is located on, an axis) -> an axis (11720ms) What is the population of Venezuela? the side -13.453832277389944 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (?Venezuela, is on, the side) -> the side (11720ms) What is the population of Venezuela? tens -13.455663573752094 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, had a population of, tens) -> tens (16685ms) What is the population of Venezuela? the midst -13.470167400477143 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, the midst) -> the midst (11720ms) What is the population of Venezuela? the thrall -13.47852524470716 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, the thrall) -> the thrall (11747ms) What is the population of Venezuela? the wings -13.484779170344389 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, the wings) -> the wings (11747ms) What is the population of Venezuela? the process -13.49536408440514 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, the process) -> the process (11747ms) What is the population of Venezuela? the receiving end -13.49565969256209 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is on, the receiving end) -> the receiving end (11747ms) What is the population of Venezuela? the provision -13.49981054997221 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, the provision) -> the provision (11747ms) What is the population of Venezuela? the semifinals -13.516610302402224 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, the semifinals) -> the semifinals (11944ms) What is the population of Venezuela? the better side -13.521693666200662 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, was on, the better side) -> the better side (11944ms) What is the population of Venezuela? the brink -13.525253714423652 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is possibly on, the brink) -> the brink (11944ms) What is the population of Venezuela? the hit list -13.526606585516534 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, was on, the hit list) -> the hit list (11944ms) What is the population of Venezuela? the wrong track -13.530471067488962 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is on, the wrong track) -> the wrong track (11944ms) What is the population of Venezuela? political and social hatred -13.540657623842051 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is boiling in, political and social hatred) -> political and social hatred (11971ms) What is the population of Venezuela? 2004 -13.542902872078422 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was in, 2004) -> 2004 (11971ms) What is the population of Venezuela? the northern coast -13.550872186352914 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is on, the northern coast) -> the northern coast (11971ms) What is the population of Venezuela? the grip -13.555942397554261 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, the grip) -> the grip (11971ms) What is the population of Venezuela? immigrants -13.562511102600311 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (New France, had a relatively small population of, immigrants) -> immigrants (16685ms) What is the population of Venezuela? the highest order -13.578441337696374 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is based on, the highest order) -> the highest order (11971ms) What is the population of Venezuela? the same trajectory -13.590661101425209 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is on, the same trajectory) -> the same trajectory (11998ms) What is the population of Venezuela? Osaka -13.602479443377783 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population in japan ? -> $x: ($x, be the population in, japan) -> $x: ($x, population in, japan) -> (Osaka, has the third largest population in, Japan) -> Osaka (17989ms) What is the population of Venezuela? the middle -13.611219459472341 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, the middle) -> the middle (11997ms) What is the population of Venezuela? the region -13.621437602599382 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was in, the region) -> the region (11997ms) What is the population of Venezuela? conformity -13.62204930902871 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was in, conformity) -> conformity (11997ms) What is the population of Venezuela? solidarity -13.628504872258198 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, solidarity) -> solidarity (11997ms) What is the population of Venezuela? the crapper -13.63591242678956 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was in, the crapper) -> the crapper (12024ms) What is the population of Venezuela? the rise -13.65137117289822 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is on, the rise) -> the rise (12024ms) What is the population of Venezuela? the throes -13.656313545653513 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was in, the throes) -> the throes (12024ms) What is the population of Venezuela? the Caribbean port city -13.66633041565502 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, established in, the Caribbean port city) -> the Caribbean port city (12051ms) What is the population of Venezuela? the verge -13.680549693050471 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, was on, the verge) -> the verge (12051ms) What is the population of Venezuela? Nagasaki -13.695328037068265 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population in japan ? -> $x: ($x, be the population in, japan) -> $x: ($x, population in, japan) -> (Nagasaki, had the largest Christian population in, Japan) -> Nagasaki (17989ms) What is the population of Venezuela? the increase -13.706712802943557 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is on, the increase) -> the increase (12051ms) What is the population of Venezuela? light -13.709157503004628 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was in, light) -> light (12079ms) What is the population of Venezuela? the northern tropical Caribbean coast -13.71872936741122 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is located on, the northern tropical Caribbean coast) -> the northern tropical Caribbean coast (12078ms) What is the population of Venezuela? the path -13.725216412750804 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is on, the path) -> the path (12079ms) What is the population of Venezuela? the agenda -13.72700985298182 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, perhaps will be on, the agenda) -> the agenda (12078ms) What is the population of Venezuela? Recently -13.727492041246558 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, has been in the news, Recently) -> Recently (12079ms) What is the population of Venezuela? the interests -13.732155967394998 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is being run in, the interests) -> the interests (12078ms) What is the population of Venezuela? slavery -13.737516404883038 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, were in, slavery) -> slavery (12105ms) What is the population of Venezuela? the field -13.746303160621725 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, will be on, the field) -> the field (12105ms) What is the population of Venezuela? Osaka city -13.756865220751173 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population in japan ? -> $x: ($x, be the population in, japan) -> $x: ($x, population in, japan) -> (Osaka city, has the largest homeless population in, Japan) -> Osaka city (17991ms) What is the population of Venezuela? the family -13.757797689240569 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is tough on, the family) -> the family (12105ms) What is the population of Venezuela? political turmoil -13.787100044976238 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, political turmoil) -> political turmoil (12105ms) What is the population of Venezuela? live television -13.793766400268956 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, joked on, live television) -> live television (12105ms) What is the population of Venezuela? the list of countries -13.793822032475429 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is on, the list of countries) -> the list of countries (12105ms) What is the population of Venezuela? fifth place -13.798866570138927 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was in, fifth place) -> fifth place (12132ms) What is the population of Venezuela? the Himalaya glacier trip -13.809315327587283 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, went on, the Himalaya glacier trip) -> the Himalaya glacier trip (12132ms) What is the population of Venezuela? souls -13.836407942638704 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: ($x, be the population of, france) -> $x: ($x, population of, france) -> (souls, constituted the population of, France) -> souls (16685ms) What is the population of Venezuela? the course -13.845268734272363 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, was set on, the course) -> the course (12132ms) What is the population of Venezuela? the minds -13.851522659909591 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, was suddenly on, the minds) -> the minds (12132ms) What is the population of Venezuela? recessions -13.851577926288755 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, are in, recessions) -> recessions (12132ms) What is the population of Venezuela? the barrios -13.854175271815176 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is going on, the barrios) -> the barrios (12158ms) What is the population of Venezuela? the U.S. market -13.855777242066566 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, depends on, the U.S. market) -> the U.S. market (12159ms) What is the population of Venezuela? the part -13.85594364461737 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, has been on, the part) -> the part (12158ms) What is the population of Venezuela? 1813 -13.85659524747454 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: ($x, be the population of, france) -> $x: ($x, population of, france) -> (1813, make the population of, ancient France 28,786,911) -> 1813 (16715ms) What is the population of Venezuela? need -13.87267344704987 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, need) -> need (12158ms) What is the population of Venezuela? July -13.87989761572882 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was formally accepted in, July) -> July (12158ms) What is the population of Venezuela? preferential terms -13.8978265402959 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, has been providing oil on, preferential terms) -> preferential terms (12215ms) What is the population of Venezuela? fact -13.898932372582507 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, fact) -> fact (12215ms) What is the population of Venezuela? the British Parliament -13.905299746554656 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, calls on, the British Parliament) -> the British Parliament (12215ms) What is the population of Venezuela? Cuba -13.90867368308307 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, remains in, Cuba) -> Cuba (12215ms) What is the population of Venezuela? a change -13.985641921783229 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, resulted in, a change) -> a change (12215ms) What is the population of Venezuela? the north of South America -14.019410243051604 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is located in, the north of South America) -> the north of South America (12269ms) What is the population of Venezuela? a very early morning -14.050211824393056 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, resulted in, a very early morning) -> a very early morning (12268ms) What is the population of Venezuela? the northern coast of South America -14.067000941794955 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is located on, the northern coast of South America) -> the northern coast of South America (12403ms) What is the population of Venezuela? a viral encephalitis -14.074225135471274 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population in japan ? -> $x: ($x, be the population in, japan) -> $x: ($x, population in, japan) -> (a viral encephalitis, affects populations in, Japan) -> a viral encephalitis (17989ms) What is the population of Venezuela? 30 April -14.106456640842396 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, announced on, 30 April) -> 30 April (12404ms) What is the population of Venezuela? air -14.113352700461213 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, came on, air) -> air (12403ms) What is the population of Venezuela? Italy and Paris -14.13028158914574 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, lived in, Italy and Paris) -> Italy and Paris (16716ms) What is the population of Venezuela? Havana -14.160966585113584 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, arrived in, Havana) -> Havana (16716ms) What is the population of Venezuela? a power hungry tyrant -14.16869433050655 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (venezuela, take on, a power hungry tyrant) -> a power hungry tyrant (16748ms) What is the population of Venezuela? an amazing dance exhibition -14.169513948780391 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, put on, an amazing dance exhibition) -> an amazing dance exhibition (16748ms) What is the population of Venezuela? trade -14.174290323118797 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is based largely on, trade) -> trade (16748ms) What is the population of Venezuela? Haiti -14.181367703977536 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, happened in, Haiti) -> Haiti (16748ms) What is the population of Venezuela? an international pageant -14.190204620868844 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, joined in, an international pageant) -> an international pageant (16748ms) What is the population of Venezuela? Baghdad -14.201704202011936 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, gathered in, Baghdad) -> Baghdad (16748ms) What is the population of Venezuela? the conflict -14.20521030163154 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population in uganda ? -> $x: ($x, be the population in, uganda) -> $x: ($x, population in, uganda) -> (the conflict, badly affected the population in, northern Uganda) -> the conflict (16748ms) What is the population of Venezuela? four trillion barrels -14.208204456147266 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, sits on, four trillion barrels) -> four trillion barrels (16779ms) What is the population of Venezuela? aid missions -14.210673181408797 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum 2, be on, $x) -> $x: (venezuelum 2, on, $x) -> (Venezuela 2 helicopters, crashed on, aid missions) -> aid missions (16779ms) What is the population of Venezuela? Israel -14.22027237994644 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, called on, Israel) -> Israel (16779ms) What is the population of Venezuela? Barcelona -14.221976184621376 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, works in, Barcelona) -> Barcelona (16779ms) What is the population of Venezuela? Quito -14.232651147668676 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, held in, Quito) -> Quito (16779ms) What is the population of Venezuela? Plague -14.236089736648212 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of greece ? -> $x: ($x, be the population of, greece) -> $x: ($x, population of, greece) -> (Plague, wipes out over half of the population with, Greece) -> Plague (16779ms) What is the population of Venezuela? oil exports -14.288903891211291 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, depends on, oil exports) -> oil exports (16836ms) What is the population of Venezuela? foreigners -14.289145311684678 What is the population of Venezuela? -> what be [ the population ] of venezuelum ? -> what be the population of france ? -> $x: (france, population, $x) -> (France, also had a large population of, foreigners) -> foreigners (16836ms) What is the population of Venezuela? Interpol -14.296313411784348 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, called on, Interpol) -> Interpol (16836ms) What is the population of Venezuela? second position -14.3578011018307 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, remained in, second position) -> second position (16836ms) What is the population of Venezuela? Venezuelan television -14.36217868180409 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, went on, Venezuelan television) -> Venezuelan television (16836ms) What is the population of Venezuela? a news conference -14.374935664508689 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, highlighted in, a news conference) -> a news conference (16836ms) What is the population of Venezuela? five areas -14.383050624585564 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, focuses on, five areas) -> five areas (16908ms) What is the population of Venezuela? the side of the people -14.39899857753721 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is on, the side of the people) -> the side of the people (16908ms) What is the population of Venezuela? November 10 -14.401903909750567 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, held on, November 10) -> November 10 (16908ms) What is the population of Venezuela? tenth spot -14.416158142135204 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, falls in, tenth spot) -> tenth spot (16908ms) What is the population of Venezuela? ethnographic fieldwork -14.422412120474727 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, draws on, ethnographic fieldwork) -> ethnographic fieldwork (16908ms) What is the population of Venezuela? contact -14.431592762006677 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, contact) -> contact (16908ms) What is the population of Venezuela? life -14.436706829826742 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> what be the popularity of venezuelum ? -> $x: (venezuelum, popularity, $x) -> $x: (venezuelum, quality, $x) -> (Venezuela, directly affects the quality of, life) -> life (8646ms) What is the population of Venezuela? danger -14.44473049975333 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, danger) -> danger (16908ms) What is the population of Venezuela? less than $ 2 -14.476368790033822 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, lived on, less than $ 2) -> less than $ 2 (16989ms) What is the population of Venezuela? shambles -14.47927483926388 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is in, shambles) -> shambles (16988ms) What is the population of Venezuela? line -14.492602414216764 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, were in, line) -> line (16988ms) What is the population of Venezuela? track -14.499675958127831 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is on, track) -> track (16988ms) What is the population of Venezuela? Prieto -14.506426406250583 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> how many student be attend venezuelum ? -> $x: ($x, instance of, student) ($x, be attend, venezuelum) -> (Prieto, Instance Of, student of mine) (Prieto, is currently attending, the First Cuba-Venezuela Meeting) -> Prieto (17989ms) What is the population of Venezuela? oil sales -14.507365346333328 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, depends on, oil sales) -> oil sales (16988ms) What is the population of Venezuela? February -14.510962246693005 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, warned in, February) -> February (16988ms) What is the population of Venezuela? discussions -14.51834387157972 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was in, discussions) -> discussions (16988ms) What is the population of Venezuela? the brink of civil war -14.534999459977119 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is on, the brink of civil war) -> the brink of civil war (16988ms) What is the population of Venezuela? September -14.564898354992025 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, starts in, September) -> September (17018ms) What is the population of Venezuela? control -14.580073406546262 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was in, control) -> control (17018ms) What is the population of Venezuela? carnival holidays -14.580683488958222 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, 's on, carnival holidays) -> carnival holidays (17018ms) What is the population of Venezuela? trouble -14.587638937767718 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was in, trouble) -> trouble (17018ms) What is the population of Venezuela? board -14.589346715022783 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is on, board) -> board (17018ms) What is the population of Venezuela? turmoil -14.600474525410215 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was in, turmoil) -> turmoil (17018ms) What is the population of Venezuela? fire -14.601294143684054 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is on, fire) -> fire (17018ms) What is the population of Venezuela? 1991 and 1996 -14.621101487891874 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, issued in, 1991 and 1996) -> 1991 and 1996 (17018ms) What is the population of Venezuela? Page -14.648792880916229 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, began on, Page) -> Page (17048ms) What is the population of Venezuela? point -14.654563067512857 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is a case in, point) -> point (17048ms) What is the population of Venezuela? behalf -14.659361317441899 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is acting on, behalf) -> behalf (17048ms) What is the population of Venezuela? view -14.66053542309195 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, was on, view) -> view (17048ms) What is the population of Venezuela? account -14.663252550422495 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, was on, account) -> account (17048ms) What is the population of Venezuela? Los Angeles -14.676666363497107 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, raised in, Los Angeles) -> Los Angeles (17048ms) What is the population of Venezuela? the Report -14.68426516929792 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, contained in, the Report) -> the Report (17076ms) What is the population of Venezuela? dozens -14.690498824597086 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is being tried on, dozens) -> dozens (17076ms) What is the population of Venezuela? charges -14.692411320225531 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, was indicted Thursday on, charges) -> charges (17076ms) What is the population of Venezuela? race -14.732940351574968 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is based on, race) -> race (17076ms) What is the population of Venezuela? alert -14.73388910610332 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, are being put on, alert) -> alert (17076ms) What is the population of Venezuela? hold -14.75954581452063 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, has been put on, hold) -> hold (17076ms) What is the population of Venezuela? the Seminar -14.767379797749193 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, participated in, the Seminar) -> the Seminar (17076ms) What is the population of Venezuela? the state sponsor of terrorism list -14.785612371413613 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, to be placed on, the state sponsor of terrorism list) -> the state sponsor of terrorism list (17076ms) What is the population of Venezuela? Peter -14.786632009748024 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, Get on, Peter) -> Peter (17105ms) What is the population of Venezuela? imports -14.788788902800137 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> (Venezuela, is highly reliant on, imports) -> imports (17104ms) What is the population of Venezuela? a Moratorium on the Use of the Death -14.821881069305958 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, voted on, a Moratorium on the Use of the Death) -> a Moratorium on the Use of the Death (17105ms) What is the population of Venezuela? January 23 , 1961 -14.8315405391699 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, decreed on, January 23 , 1961) -> January 23 , 1961 (17105ms) What is the population of Venezuela? Asuncion -14.849802286553308 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, met in, Asuncion) -> Asuncion (17105ms) What is the population of Venezuela? December 1999 -14.857246881845022 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, suffered in, December 1999) -> December 1999 (17105ms) What is the population of Venezuela? April 2002 -14.860093426710872 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, failed in, April 2002) -> April 2002 (17104ms) What is the population of Venezuela? Sunday 24-hour power cutoffs -14.981918745468489 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, announced on, Sunday 24-hour power cutoffs) -> Sunday 24-hour power cutoffs (17204ms) What is the population of Venezuela? June -14.984843869260288 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, joined in, June) -> June (17204ms) What is the population of Venezuela? the global oil market -14.986011410482277 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is an important player in, the global oil market) -> the global oil market (17204ms) What is the population of Venezuela? September 26th -14.997442059704404 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, signed on, September 26th) -> September 26th (17204ms) What is the population of Venezuela? February 27 , 1989 -15.068570119524146 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, exploded on, February 27 , 1989) -> February 27 , 1989 (17204ms) What is the population of Venezuela? January 1922 -15.071222731429732 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, signed on, January 1922) -> January 1922 (17204ms) What is the population of Venezuela? the news -15.136913436659238 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, has been in, the news) -> the news (17293ms) What is the population of Venezuela? the road -15.199896462910424 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, continue on, the road) -> the road (17328ms) What is the population of Venezuela? the tropics -15.214881897995038 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, is entirely situated in, the tropics) -> the tropics (17328ms) What is the population of Venezuela? the world community -15.34481709125157 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, called on, the world community) -> the world community (17355ms) What is the population of Venezuela? ruins -15.349176127118625 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> (Venezuela, was in, ruins) -> ruins (17462ms) What is the population of Venezuela? the lush valleys -15.352015851539317 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, flourished in, the lush valleys) -> the lush valleys (17462ms) What is the population of Venezuela? the post-War era -15.359973634553775 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, experienced in, the post-War era) -> the post-War era (17462ms) What is the population of Venezuela? the world stage -15.381129803564313 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, plays on, the world stage) -> the world stage (17462ms) What is the population of Venezuela? 2010 -15.402853827299808 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, continued in, 2010) -> 2010 (17461ms) What is the population of Venezuela? discounted heating oil -15.470184398364962 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, in providing, discounted heating oil) -> discounted heating oil (17521ms) What is the population of Venezuela? mid September -15.508052370853182 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, returned in, mid September) -> mid September (17521ms) What is the population of Venezuela? 2008 -15.510916552694002 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, launched in, 2008) -> 2008 (17521ms) What is the population of Venezuela? the aftermath -15.534923987961934 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, faced in, the aftermath) -> the aftermath (18111ms) What is the population of Venezuela? the proletariat -15.536692360764128 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, rests on, the proletariat) -> the proletariat (18111ms) What is the population of Venezuela? the major sea and air routes -15.544309838981658 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, lies on, the major sea and air routes) -> the major sea and air routes (18111ms) What is the population of Venezuela? 2005 -15.544580678383582 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, said in, 2005) -> 2005 (18111ms) What is the population of Venezuela? the leaves -15.553556681321396 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, chew on, the leaves) -> the leaves (18111ms) What is the population of Venezuela? the responsibility -15.555325106825885 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, take on, the responsibility) -> the responsibility (18111ms) What is the population of Venezuela? the achievements and obstacles -15.569235471734434 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, commented on, the achievements and obstacles) -> the achievements and obstacles (18111ms) What is the population of Venezuela? the north coast -15.585806916515502 What is the population of Venezuela? -> what be the population of [ venezuelum ] ? -> when be venezuelum 2 ? -> $x: (venezuelum, be on, $x) -> $x: (venezuelum, on, $x) -> (Venezuela, lies on, the north coast) -> the north coast (18111ms) What is an Indian flute made of? river cane and cedar -4.736114065153823 What is an Indian flute made of? -> $x: (an Indian flute, made of, $x) -> $x: (indian flute, make of, $x) -> (Primitive Indian flutes, made both of, river cane and cedar) -> river cane and cedar (4170ms) What is an Indian flute made of? bamboo -6.244394360483471 What is an Indian flute made of? -> $x: (an Indian flute, made of, $x) -> $x: (indian flute, make of, $x) -> (The North Indian flute, is usually made of, bamboo) -> bamboo (4170ms) What is an Indian flute made of? Bamboo -11.37234979439026 What is an Indian flute made of? -> what be [ an indian flute make ] of ? -> what idea do an indian flute make have ? -> $x: ($x, instance of, idea) (an indian flute, make have, $x) -> $x: ($x, instance of, idea) (indian flute, make, $x) -> (Bamboo, Instance Of, great idea) (The North Indian flute, is usually made of, bamboo) -> Bamboo (6824ms) Who is the airport named after? Constantine the Great -0.5041256847490265 Who is the airport named after? -> $x: (the airport, named after, $x) -> (Ni? Constantine the Great Airport, Named after, Constantine the Great) -> Constantine the Great (4038ms) Who is the airport named after? Thurgood Marshall -0.6253926755760428 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Thurgood Marshall) -> Thurgood Marshall (4038ms) Who is the airport named after? Medgar Evers -0.6317726472867575 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Medgar Evers) -> Medgar Evers (4038ms) Who is the airport named after? Amerigo Vespucci -0.6565947508584875 Who is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, was named after, Amerigo Vespucci) -> Amerigo Vespucci (4039ms) Who is the airport named after? Mother Teresa -0.6959268460105243 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, Mother Teresa) -> Mother Teresa (5059ms) Who is the airport named after? Paul the Apostle -0.7185389534224711 Who is the airport named after? -> $x: (the airport, named after, $x) -> (Ohrid "St. Paul the Apostle" Airport, Named after, Paul the Apostle) -> Paul the Apostle (5060ms) Who is the airport named after? Alexander the Great -0.7185389534224711 Who is the airport named after? -> $x: (the airport, named after, $x) -> (Skopje "Alexander the Great" Airport, Named after, Alexander the Great) -> Alexander the Great (5060ms) Who is the airport named after? Elefth?rios Veniz?los -0.7582775045419674 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Elefth?rios Veniz?los) -> Elefth?rios Veniz?los (5060ms) Who is the airport named after? Kempe Gowda -0.9089996347691145 Who is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, be named after, Kempe Gowda) -> Kempe Gowda (5060ms) Who is the airport named after? Medger Evers -1.252525152605326 Who is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, is named after, Medger Evers) -> Medger Evers (7294ms) Who is the airport named after? Ioannis Daskalogiannis -1.3710076587188207 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Ioannis Daskalogiannis) -> Ioannis Daskalogiannis (7295ms) Who is the airport named after? Halim Perdanakusuma -1.4059258151383052 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Halim Perdanakusuma Airport, Named after, Halim Perdanakusuma) -> Halim Perdanakusuma (7294ms) Who is the airport named after? Amelia Earhart -1.4059258151383052 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Amelia Earhart Airport, Named after, Amelia Earhart) -> Amelia Earhart (7386ms) Who is the airport named after? Roland Garros -1.4059258151383052 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Roland Garros Airport, Named after, Roland Garros) -> Roland Garros (7295ms) Who is the airport named after? Ferit Melen -1.4059258151383052 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Ferit Melen Airport, Named after, Ferit Melen) -> Ferit Melen (7295ms) Who is the airport named after? Sultan Hasanuddin -1.5012206012153912 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Sultan Hasanuddin International Airport, Named after, Sultan Hasanuddin) -> Sultan Hasanuddin (7478ms) Who is the airport named after? Tancredo Neves -1.5012206012153912 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Tancredo Neves International Airport, Named after, Tancredo Neves) -> Tancredo Neves (7519ms) Who is the airport named after? Abraham Lincoln -1.5012206012153912 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Abraham Lincoln Capital Airport, Named after, Abraham Lincoln) -> Abraham Lincoln (7386ms) Who is the airport named after? Indira Gandhi -1.5012206012153912 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Indira Gandhi International Airport, Named after, Indira Gandhi) -> Indira Gandhi (7479ms) Who is the airport named after? Norman Manley -1.5012206012153912 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Norman Manley International Airport, Named after, Norman Manley) -> Norman Manley (7386ms) Who is the airport named after? Nikola Tesla -1.5012206012153912 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Belgrade Nikola Tesla Airport, Named after, Nikola Tesla) -> Nikola Tesla (7519ms) Who is the airport named after? Aurel Vlaicu -1.5012206012153912 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Aurel Vlaicu International Airport, Named after, Aurel Vlaicu) -> Aurel Vlaicu (7519ms) Who is the airport named after? Arnold Palmer -1.5012206012153912 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Arnold Palmer Regional Airport, Named after, Arnold Palmer) -> Arnold Palmer (7519ms) Who is the airport named after? Henri Coand? -1.5012206012153912 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Henri Coand? International Airport, Named after, Henri Coand?) -> Henri Coand? (7479ms) Who is the airport named after? Rajiv Gandhi -1.5012206012153912 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Rajiv Gandhi International Airport, Named after, Rajiv Gandhi) -> Rajiv Gandhi (7478ms) Who is the airport named after? Sakamoto Ry?ma -1.5012206012153912 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (K?chi Airport, Named after, Sakamoto Ry?ma) -> Sakamoto Ry?ma (7479ms) Who is the airport named after? Jorge Ch?vez -1.5012206012153912 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Jorge Ch?vez International Airport, Named after, Jorge Ch?vez) -> Jorge Ch?vez (7386ms) Who is the airport named after? Federico Fellini -1.5012206012153912 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Federico Fellini International Airport, Named after, Federico Fellini) -> Federico Fellini (7480ms) Who is the airport named after? Sim?n Bol?var -1.5012206012153912 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Sim?n Bol?var International Airport, Named after, Sim?n Bol?var) -> Sim?n Bol?var (7519ms) Who is the airport named after? S?leyman Demirel -1.5012206012153912 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Isparta S?leyman Demirel Airport, Named after, S?leyman Demirel) -> S?leyman Demirel (7519ms) Who is the airport named after? Julius Nyerere -1.5012206012153912 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Julius Nyerere International Airport, Named after, Julius Nyerere) -> Julius Nyerere (7386ms) Who is the airport named after? Fr?d?ric Chopin -1.5012206012153912 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Warsaw Chopin Airport, Named after, Fr?d?ric Chopin) -> Fr?d?ric Chopin (7386ms) Who is the airport named after? Benazir Bhutto -1.5791890625511895 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Islamabad International Airport, Named after, Benazir Bhutto) -> Benazir Bhutto (7543ms) Who is the airport named after? Djuanda Kartawidjaja -1.5791890625511895 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Juanda International Airport, Named after, Djuanda Kartawidjaja) -> Djuanda Kartawidjaja (7543ms) Who is the airport named after? Galileo Galilei -1.5791890625511895 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Pisa International Airport, Named after, Galileo Galilei) -> Galileo Galilei (7543ms) Who is the airport named after? Ioannis Kapodistrias -1.5791890625511895 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Corfu International Airport, Named after, Ioannis Kapodistrias) -> Ioannis Kapodistrias (7543ms) Who is the airport named after? Billy Mitchell -1.5791890625511895 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (General Mitchell International Airport, Named after, Billy Mitchell) -> Billy Mitchell (7543ms) Who is the airport named after? ?stor Piazzolla -1.5791890625511895 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (?stor Piazzola International Airport, Named after, ?stor Piazzolla) -> ?stor Piazzolla (7543ms) Who is the airport named after? NASA -1.5884752208682258 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, NASA) -> NASA (7606ms) Who is the airport named after? Christopher Columbus -1.6441627803310217 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Genoa Cristoforo Colombo Airport, Named after, Christopher Columbus) -> Christopher Columbus (7606ms) Who is the airport named after? Charles Lindbergh -1.6441627803310217 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Airport ? Terminal 1-Lindbergh, Named after, Charles Lindbergh) -> Charles Lindbergh (7606ms) Who is the airport named after? Norman Mineta -1.6441627803310217 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (San Jose International Airport, Named after, Norman Mineta) -> Norman Mineta (7606ms) Who is the airport named after? Benito Juarez -1.7581776031430096 Who is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, named after, Benito Juarez) -> Benito Juarez (7606ms) Who is the airport named after? Charles de Gaulle -1.8036649645864242 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Charles de Gaulle Airport, Named after, Charles de Gaulle) -> Charles de Gaulle (7606ms) Who is the airport named after? Hussein of Jordan -1.946607143702054 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (King Hussein International Airport, Named after, Hussein of Jordan) -> Hussein of Jordan (7641ms) Who is the airport named after? Muhammad al-Idrisi -1.9725100988279205 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Cherif Al Idrissi Airport, Named after, Muhammad al-Idrisi) -> Muhammad al-Idrisi (7641ms) Who is the airport named after? Enrique Olaya Herrera -1.9928719064363882 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Enrique Olaya Herrera) -> Enrique Olaya Herrera (7642ms) Who is the airport named after? the Battle -2.0049824236219442 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, the Battle) -> the Battle (7641ms) Who is the airport named after? John Foster Dulles -2.0255265766458983 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, John Foster Dulles) -> John Foster Dulles (7641ms) Who is the airport named after? Will Rogers -2.121313087611617 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Will Rogers) -> Will Rogers (7803ms) Who is the airport named after? Ibn Battuta -2.1330015397492925 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Tangier Ibn Battouta Airport, Named after, Ibn Battuta) -> Ibn Battuta (7802ms) Who is the airport named after? George H. W. Bush -2.1722899263583586 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, George H. W. Bush) -> George H. W. Bush (7802ms) Who is the airport named after? Ayatollah Ruhollah Khomeini -2.2107672358464248 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is now named after, Ayatollah Ruhollah Khomeini) -> Ayatollah Ruhollah Khomeini (7802ms) Who is the airport named after? airplanes -2.220549456552429 Who is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, are named after, airplanes) -> airplanes (7802ms) Who is the airport named after? Pope John Paul II -2.231987972984217 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, Pope John Paul II) -> Pope John Paul II (7802ms) Who is the airport named after? Queen Alia -2.273423915257548 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, Queen Alia) -> Queen Alia (7874ms) Who is the airport named after? Frank Pa?s -2.338797030023384 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Frank Pa?s Airport, Named after, Frank Pa?s) -> Frank Pa?s (7874ms) Who is the airport named after? Juliana of the Netherlands -2.42106490277179 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Princess Juliana International Airport, Named after, Juliana of the Netherlands) -> Juliana of the Netherlands (7874ms) Who is the airport named after? Lennart Meri -2.4340918161004703 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Tallinn Airport, Named after, Lennart Meri) -> Lennart Meri (7874ms) Who is the airport named after? Cyril King -2.4340918161004703 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Cyril E. King Airport, Named after, Cyril King) -> Cyril King (7874ms) Who is the airport named after? Fiorello LaGuardia -2.435513342840406 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Fiorello LaGuardia) -> Fiorello LaGuardia (7968ms) Who is the airport named after? former President -2.437673967435602 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, former President) -> former President (7968ms) Who is the airport named after? an MP -2.4469081886441604 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, an MP) -> an MP (7968ms) Who is the airport named after? Jos? Joaqu?n -2.4654117457491127 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, Jos? Joaqu?n) -> Jos? Joaqu?n (7968ms) Who is the airport named after? Louis Armstrong -2.5180337003229245 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, be name for, $x) -> (The airport, is named for, Louis Armstrong) -> Louis Armstrong (7968ms) Who is the airport named after? a prominent businessman -2.5207836274870314 Who is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, was named after, a prominent businessman) -> a prominent businessman (7968ms) Who is the airport named after? Robert Mueller -2.541971617493558 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, be name for, $x) -> (The airport, was named for, Robert Mueller) -> Robert Mueller (8023ms) Who is the airport named after? Bob Hope -2.556965581646879 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Bob Hope Airport, Named after, Bob Hope) -> Bob Hope (8023ms) Who is the airport named after? Captain Auguste George Airport -2.5693499438476266 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, Captain Auguste George Airport) -> Captain Auguste George Airport (8023ms) Who is the airport named after? a local heroine -2.587098450805994 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, a local heroine) -> a local heroine (8023ms) Who is the airport named after? a prominent politician -2.6348451488927482 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, a prominent politician) -> a prominent politician (8023ms) Who is the airport named after? Wendell H. Ford -2.635478171445235 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Wendell H. Ford Airport, Named after, Wendell H. Ford) -> Wendell H. Ford (8061ms) Who is the airport named after? Henry E. Rohlsen -2.635478171445235 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Henry E. Rohlsen Airport, Named after, Henry E. Rohlsen) -> Henry E. Rohlsen (8061ms) Who is the airport named after? William P. Hobby -2.635478171445235 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (William P. Hobby Airport, Named after, William P. Hobby) -> William P. Hobby (8137ms) Who is the airport named after? Rafael Hern?ndez Mar?n -2.635478171445235 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Rafael Hern?ndez Airport, Named after, Rafael Hern?ndez Mar?n) -> Rafael Hern?ndez Mar?n (8061ms) Who is the airport named after? Mariana Grajales Coello -2.635478171445235 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Mariana Grajales Airport, Named after, Mariana Grajales Coello) -> Mariana Grajales Coello (8061ms) Who is the airport named after? Fiorello H. LaGuardia -2.635478171445235 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (LaGuardia Airport, Named after, Fiorello H. LaGuardia) -> Fiorello H. LaGuardia (8061ms) Who is the airport named after? Zachary Smith Reynolds -2.635478171445235 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Smith Reynolds Airport, Named after, Zachary Smith Reynolds) -> Zachary Smith Reynolds (8061ms) Who is the airport named after? Federico Garc?a Lorca -2.635478171445235 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Federico Garc?a Lorca Airport, Named after, Federico Garc?a Lorca) -> Federico Garc?a Lorca (8137ms) Who is the airport named after? King Mohammed V -2.6560013179032853 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, King Mohammed V) -> King Mohammed V (8137ms) Who is the airport named after? former Prime Minister -2.6631394826439037 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, former Prime Minister) -> former Prime Minister (8137ms) Who is the airport named after? a freedom fighter -2.6772866231683334 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, a freedom fighter) -> a freedom fighter (8136ms) Who is the airport named after? Hugo Ch?vez -2.6775191424134155 Who is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, is named after, Hugo Ch?vez) -> Hugo Ch?vez (8137ms) Who is the airport named after? Philippine hero-senator Beniguo -2.6790550486728217 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, Philippine hero-senator Beniguo) -> Philippine hero-senator Beniguo (8166ms) Who is the airport named after? Franz Josef Strau? -2.679874666946662 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, Franz Josef Strau?) -> Franz Josef Strau? (8166ms) Who is the airport named after? David Ben-Gurion -2.713446632781033 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Ben Gurion Airport, Named after, David Ben-Gurion) -> David Ben-Gurion (8295ms) Who is the airport named after? Clyde Edward Pangborn -2.713446632781033 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Pangborn Memorial Airport, Named after, Clyde Edward Pangborn) -> Clyde Edward Pangborn (8295ms) Who is the airport named after? Edward Lawrence Logan -2.713446632781033 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Logan International Airport, Named after, Edward Lawrence Logan) -> Edward Lawrence Logan (8166ms) Who is the airport named after? Ruben Martin Berta -2.713446632781033 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Ruben Berta International Airport, Named after, Ruben Martin Berta) -> Ruben Martin Berta (8166ms) Who is the airport named after? Wolfgang Amadeus Mozart -2.713446632781033 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Salzburg Airport, Named after, Wolfgang Amadeus Mozart) -> Wolfgang Amadeus Mozart (8295ms) Who is the airport named after? Alia al-Hussein -2.713446632781033 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Queen Alia International Airport, Named after, Alia al-Hussein) -> Alia al-Hussein (8295ms) Who is the airport named after? Charles Kingsford Smith -2.713446632781033 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Sydney Airport, Named after, Charles Kingsford Smith) -> Charles Kingsford Smith (8166ms) Who is the airport named after? Alberto Santos-Dumont -2.713446632781033 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Santos Dumont Airport, Named after, Alberto Santos-Dumont) -> Alberto Santos-Dumont (8166ms) Who is the airport named after? Theodore F. Green -2.713446632781033 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (T. F. Green Airport, Named after, Theodore F. Green) -> Theodore F. Green (8295ms) Who is the airport named after? L?on M'ba -2.713446632781033 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Libreville International Airport, Named after, L?on M'ba) -> L?on M'ba (8296ms) Who is the airport named after? Liverpudlian musician John Lennon -2.759835125907605 Who is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, is named after, Liverpudlian musician John Lennon) -> Liverpudlian musician John Lennon (8401ms) Who is the airport named after? the Venetian traveller Marco Polo -2.7660597035100007 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, the Venetian traveller Marco Polo) -> the Venetian traveller Marco Polo (8401ms) Who is the airport named after? Milan Rastislav ?tef?nik -2.7784203505608644 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (M. R. ?tef?nik Airport, Named after, Milan Rastislav ?tef?nik) -> Milan Rastislav ?tef?nik (8572ms) Who is the airport named after? James M. Cox -2.7784203505608644 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Dayton International Airport, Named after, James M. Cox) -> James M. Cox (8572ms) Who is the airport named after? Gustav III of Sweden -2.7784203505608644 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Gustaf III Airport, Named after, Gustav III of Sweden) -> Gustav III of Sweden (8572ms) Who is the airport named after? Lester B. Pearson -2.7784203505608644 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Toronto Pearson International Airport, Named after, Lester B. Pearson) -> Lester B. Pearson (8572ms) Who is the airport named after? Mohammed V of Morocco -2.7784203505608644 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Mohammed V International Airport, Named after, Mohammed V of Morocco) -> Mohammed V of Morocco (8572ms) Who is the airport named after? Nilo de Sousa Coelho -2.7784203505608644 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Petrolina Airport, Named after, Nilo de Sousa Coelho) -> Nilo de Sousa Coelho (8402ms) Who is the airport named after? the Venetian traveler Marco Polo -2.7787661548979843 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, the Venetian traveler Marco Polo) -> the Venetian traveler Marco Polo (8651ms) Who is the airport named after? Florence native Amerigo Vespucci -2.7885568788418924 Who is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, was named after, Florence native Amerigo Vespucci) -> Florence native Amerigo Vespucci (8651ms) Who is the airport named after? Sep? Tiaraju -2.7893625170719063 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Sep? Tiaraju Airport, Named after, Sep? Tiaraju) -> Sep? Tiaraju (8651ms) Who is the airport named after? Bert Mooney -2.7893625170719063 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Bert Mooney Airport, Named after, Bert Mooney) -> Bert Mooney (8651ms) Who is the airport named after? John Wayne -2.7893625170719063 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (John Wayne Airport, Named after, John Wayne) -> John Wayne (8651ms) Who is the airport named after? Ibn Saud -2.795202546839595 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (King Abdulaziz International Airport, Named after, Ibn Saud) -> Ibn Saud (8651ms) Who is the airport named after? Norman Y . Mineta -2.805688234815488 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Norman Y . Mineta) -> Norman Y . Mineta (8686ms) Who is the airport named after? either Judge John Heath -2.8145908524804657 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, either Judge John Heath) -> either Judge John Heath (8686ms) Who is the airport named after? Herkalion native Nikos Kazantzakis -2.8169157807203034 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Herkalion native Nikos Kazantzakis) -> Herkalion native Nikos Kazantzakis (8686ms) Who is the airport named after? Bologna native Guglielmo Marconi -2.817182816136628 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Bologna native Guglielmo Marconi) -> Bologna native Guglielmo Marconi (8686ms) Who is the airport named after? Clarence E. Hancock -2.820452579026985 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The Airport, was originally named after, Clarence E. Hancock) -> Clarence E. Hancock (8686ms) Who is the airport named after? Gen . Murtala Muhammed -2.8213367654280814 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, Gen . Murtala Muhammed) -> Gen . Murtala Muhammed (8686ms) Who is the airport named after? President Gustavo D?az Ordaz -2.8278538066037995 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, President Gustavo D?az Ordaz) -> President Gustavo D?az Ordaz (8836ms) Who is the airport named after? Italian filmmaker Federico Fellini -2.833158977712674 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, Italian filmmaker Federico Fellini) -> Italian filmmaker Federico Fellini (8836ms) Who is the airport named after? Fahd of Saudi Arabia -2.833398111759184 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (King Fahd International Airport, Named after, Fahd of Saudi Arabia) -> Fahd of Saudi Arabia (8836ms) Who is the airport named after? Khalid of Saudi Arabia -2.833398111759184 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (King Khalid International Airport, Named after, Khalid of Saudi Arabia) -> Khalid of Saudi Arabia (8836ms) Who is the airport named after? Benigno Aquino, Jr. -2.833398111759184 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Ninoy Aquino International Airport, Named after, Benigno Aquino, Jr.) -> Benigno Aquino, Jr. (8835ms) Who is the airport named after? Aden Abdullah Osman Daar -2.833398111759184 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Mogadishu International Airport, Named after, Aden Abdullah Osman Daar) -> Aden Abdullah Osman Daar (8836ms) Who is the airport named after? Argentine aviator Jorge Newbery -2.848254925467751 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Argentine aviator Jorge Newbery) -> Argentine aviator Jorge Newbery (8874ms) Who is the airport named after? an American WWII pilot -2.849139111868848 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, an American WWII pilot) -> an American WWII pilot (8873ms) Who is the airport named after? Captain Robert A. LaFleur -2.854444335680017 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, Captain Robert A. LaFleur) -> Captain Robert A. LaFleur (8873ms) Who is the airport named after? Leo? Jan??ek -2.884657303148993 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Leo? Jan??ek Airport Ostrava, Named after, Leo? Jan??ek) -> Leo? Jan??ek (9392ms) Who is the airport named after? Jomo Kenyatta -2.884657303148993 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Jomo Kenyatta International Airport, Named after, Jomo Kenyatta) -> Jomo Kenyatta (8873ms) Who is the airport named after? Juan Santamar?a -2.884657303148993 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Juan Santamar?a International Airport, Named after, Juan Santamar?a) -> Juan Santamar?a (8873ms) Who is the airport named after? Jo?e Pu?nik -2.884657303148993 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Ljubljana Jo?e Pu?nik Airport, Named after, Jo?e Pu?nik) -> Jo?e Pu?nik (9392ms) Who is the airport named after? Luiz Eduardo -2.8981714211209364 Who is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, is also named after, Luiz Eduardo) -> Luiz Eduardo (9392ms) Who is the airport named after? Army aviator Major Harold Geiger -2.917128140690071 Who is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, was named after, Army aviator Major Harold Geiger) -> Army aviator Major Harold Geiger (9392ms) Who is the airport named after? Italian polymath Leonardo da Vinci -2.9356356703751514 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Italian polymath Leonardo da Vinci) -> Italian polymath Leonardo da Vinci (9392ms) Who is the airport named after? Reagan -2.936599771404543 Who is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, is named after, Reagan) -> Reagan (9392ms) Who is the airport named after? the French writer and pilot Antoine -2.9490238408751632 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, the French writer and pilot Antoine) -> the French writer and pilot Antoine (9566ms) Who is the airport named after? Israel -2.9697073416564788 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Israel) -> Israel (9566ms) Who is the airport named after? Shaka -2.981960893002037 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Shaka) -> Shaka (9566ms) Who is the airport named after? atists -2.9915510319150718 Who is the airport named after? -> $x: (the airport, named after, $x) -> (the airports, were named after, atists) -> atists (9566ms) Who is the airport named after? Cuban patriot and poet Jose Marti -2.9980048784518427 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Cuban patriot and poet Jose Marti) -> Cuban patriot and poet Jose Marti (9654ms) Who is the airport named after? Leonardo da Vinci -3.1440800167069964 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, be name for, $x) -> (the Rome airport, is named for, Leonardo da Vinci) -> Leonardo da Vinci (9654ms) Who is the airport named after? Elefthrios Venizlos -3.3166169442033144 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Elefthrios Venizlos) -> Elefthrios Venizlos (9684ms) Who is the airport named after? an entertainer -3.466450677617058 Who is the airport named after? -> $x: (the airport, named after, $x) -> (the first airport, to be named after, an entertainer) -> an entertainer (9786ms) Who is the airport named after? the village -3.5746779377980404 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, the village) -> the village (10046ms) Who is the airport named after? politician -3.6096249890609253 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, politician) -> politician (10046ms) Who is the airport named after? Minister -3.6124356342594246 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, Minister) -> Minister (10046ms) Who is the airport named after? Daskalogiannis -3.631887998595024 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Daskalogiannis) -> Daskalogiannis (10046ms) Who is the airport named after? Standiford -3.6328367531233763 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, Standiford) -> Standiford (10242ms) Who is the airport named after? Carlos Manuel de C?spedes -3.6408453923578294 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Carlos Manuel C?spedes Airport, Named after, Carlos Manuel de C?spedes) -> Carlos Manuel de C?spedes (10242ms) Who is the airport named after? Bauerfield -3.6522891174589756 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Bauerfield) -> Bauerfield (10242ms) Who is the airport named after? the Gipper -3.776868007286519 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (airport, was named after, the Gipper) -> the Gipper (10242ms) Who is the airport named after? George W. Bush -3.8048603531391336 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, be name for, $x) -> (the airport, is named for, George W. Bush) -> George W. Bush (10389ms) Who is the airport named after? Ninoy -3.8400622572343917 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was later named after, Ninoy) -> Ninoy (10389ms) Who is the airport named after? Nikos Kazantzakis -3.8433262387642504 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: ($x, name after, airport) -> (Nikos Kazantzakis, Named after, Heraklion International Airport) -> Nikos Kazantzakis (10389ms) Who is the airport named after? the close -3.8473385113529996 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, the close) -> the close (10591ms) Who is the airport named after? the hamlet -3.8677396302169513 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, the hamlet) -> the hamlet (10591ms) Who is the airport named after? lesser persons -3.9223843352322287 Who is the airport named after? -> $x: (the airport, named after, $x) -> (airports all over the world, named after, lesser persons) -> lesser persons (10798ms) Who is the airport named after? Heathrow -3.925444239071177 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (London Heathrow Airport, Named after, Heathrow) -> Heathrow (10874ms) Who is the airport named after? Franz Josef Strau -3.9408416797013075 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, Franz Josef Strau) -> Franz Josef Strau (10874ms) Who is the airport named after? Coleman Young -3.9632777177424012 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: ($x, name after, airport) -> (Coleman Young, Things named after this, Coleman A. Young International Airport) -> Coleman Young (10874ms) Who is the airport named after? Shivaji -4.020739025148263 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (Chhatrapati Shivaji International Airport, Named after, Shivaji) -> Shivaji (10941ms) Who is the airport named after? the small village -4.034219156880347 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, the small village) -> the small village (11166ms) Who is the airport named after? the French writer and pilot -4.083480021498236 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, the French writer and pilot) -> the French writer and pilot (11193ms) Who is the airport named after? Neil Armstrong -4.086754803301823 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, be name after, $x) -> (The nearby airport, is named after, Neil Armstrong) -> Neil Armstrong (11193ms) Who is the airport named after? the area native -4.160659446008301 Who is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, is named after, the area native) -> the area native (11328ms) Who is the airport named after? Preston Smith -4.175629029456129 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: ($x, thing name after this, airport) -> (Preston Smith, Things named after this, Lubbock Preston Smith International Airport) -> Preston Smith (11517ms) Who is the airport named after? Habib Bourguiba -4.175629029456129 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: ($x, thing name after this, airport) -> (Habib Bourguiba, Things named after this, Monastir Habib Bourguiba International Airport) -> Habib Bourguiba (11432ms) Who is the airport named after? Joshua Nkomo -4.175629029456129 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: ($x, thing name after this, airport) -> (Joshua Nkomo, Things named after this, Joshua Mqabuko Nkomo International Airport) -> Joshua Nkomo (11433ms) Who is the airport named after? Jesus Christ -4.222752824768973 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: ($x, thing name after this, airport) -> (Jesus Christ, Things named after this, Bom Jesus Da Lapa Airport) -> Jesus Christ (12331ms) Who is the airport named after? the small town -4.250783050243385 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, the small town) -> the small town (12331ms) Who is the airport named after? the former mayor -4.250783050243385 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, the former mayor) -> the former mayor (12484ms) Who is the airport named after? the first President -4.260608994279718 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, the first President) -> the first President (12484ms) Who is the airport named after? the archeological site -4.271184169107336 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, the archeological site) -> the archeological site (12484ms) Who is the airport named after? the famous scientist -4.278257765720699 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, the famous scientist) -> the famous scientist (12485ms) Who is the airport named after? The Starship -4.339693401084606 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: ($x, name after, the airport) -> (The Starship, was named after, the Vulcan airports identifier) -> The Starship (12656ms) Who is the airport named after? the former ruler -4.387501134928088 Who is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, has been named after, the former ruler) -> the former ruler (12797ms) Who is the airport named after? a motorway -4.394665965503256 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, be name after, $x) -> (the nearest airport, is named after, a motorway) -> a motorway (12797ms) Who is the airport named after? COS -4.429418118158273 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: ($x, name after, the airport) -> (COS, was names after, the airport) -> COS (12834ms) Who is the airport named after? the hamlet Heath Row -4.461518611635805 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, was named after, the hamlet Heath Row) -> the hamlet Heath Row (12881ms) Who is the airport named after? aviator Gerald McClellan -4.487506697068886 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, be name for, $x) -> (The airport, is named for, aviator Gerald McClellan) -> aviator Gerald McClellan (12881ms) Who is the airport named after? Dr Abdus Salam -4.518771756117016 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, be name after, $x) -> (the Multan airport, is being named after, Dr Abdus Salam) -> Dr Abdus Salam (12921ms) Who is the airport named after? the first Tanzanian President -4.52985699008496 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, the first Tanzanian President) -> the first Tanzanian President (12921ms) Who is the airport named after? John Munro -4.546096256618471 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, be name for, $x) -> (The airport, is named for, John Munro) -> John Munro (12921ms) Who is the airport named after? former Rhode Island governor -4.563740625921508 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, be name for, $x) -> (the airport, was named for, former Rhode Island governor) -> former Rhode Island governor (12962ms) Who is the airport named after? the most famous Zulu monarch -4.606216082611965 Who is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, is named after, the most famous Zulu monarch) -> the most famous Zulu monarch (13204ms) Who is the airport named after? the first Kenyan prime minister -4.624784260546468 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, the first Kenyan prime minister) -> the first Kenyan prime minister (13241ms) Who is the airport named after? an electronic number -4.6266493825143025 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: ($x, name after, the airport) -> (an electronic number, is named after, the airport) -> an electronic number (13241ms) Who is the airport named after? the former Jamaican Prime Minister -4.668994160326541 Who is the airport named after? -> $x: (the airport, named after, $x) -> (the airport, is named after, the former Jamaican Prime Minister) -> the former Jamaican Prime Minister (13278ms) Who is the airport named after? Gonggar County -4.682082820992772 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, take its name from, $x) -> (The airport, takes its name from, Gonggar County) -> Gonggar County (13279ms) Who is the airport named after? Elrey B Jeppesen -4.747684765327319 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, be name after, $x) -> (The airport terminal building, is named after, Elrey B Jeppesen) -> Elrey B Jeppesen (13348ms) Who is the airport named after? Charles McGhee Tyson -5.042557526773925 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: ($x, name after, airport) -> (Charles McGhee Tyson, Things named after this, McGhee Tyson Airport) -> Charles McGhee Tyson (13549ms) Who is the airport named after? John F. Kennedy -5.097535287972245 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: ($x, name after, airport) -> (John F. Kennedy, Things named after this, John F. Kennedy International Airport) -> John F. Kennedy (13587ms) Who is the airport named after? Fernando L. Ribas-Dominicci -5.185499705889555 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: ($x, name after, airport) -> (Fernando L. Ribas-Dominicci, Things named after this, Fernando Luis Ribas Dominicci Airport) -> Fernando L. Ribas-Dominicci (13731ms) Who is the airport named after? Luis Mu?oz Mar?n -5.309886599685972 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: ($x, thing name after this, airport) -> (Luis Mu?oz Mar?n, Things named after this, Luis Mu?oz Mar?n International Airport) -> Luis Mu?oz Mar?n (14021ms) Who is the airport named after? Louise Thaden -5.336940587269504 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name after, $x) -> ('s airport, is named after, Louise Thaden) -> Louise Thaden (14227ms) Who is the airport named after? John Murtha -5.346714419676002 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: ($x, name after, airport) -> (John Murtha, Things named after this, Johnstown?Cambria County Airport) -> John Murtha (14227ms) Who is the airport named after? Ben Elbert Douglas, Sr. -5.397851017603283 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: ($x, thing name after this, airport) -> (Ben Elbert Douglas, Sr., Things named after this, Charlotte/Douglas International Airport) -> Ben Elbert Douglas, Sr. (14271ms) Who is the airport named after? Muhammad bin Fahd -5.397851017603283 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: ($x, thing name after this, airport) -> (Muhammad bin Fahd, Things named after this, Prince Mohammad Bin Abdulaziz Airport) -> Muhammad bin Fahd (14308ms) Who is the airport named after? Ian Fleming -5.451150122035584 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (a new international airport, named after, Ian Fleming) -> Ian Fleming (14387ms) Who is the airport named after? new members -5.489871153367969 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, should be with, $x) -> (The Airport Authority, should be replaced with, new members) -> new members (14387ms) Who is the airport named after? FedEx -5.5852266380950475 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: ($x, have found, the airport) -> (FedEx, has found room at, the Memphis Airport) -> FedEx (14522ms) Who is the airport named after? Maj -5.588479517666511 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name for, $x) -> (Logan International Airport, is named for, Maj) -> Maj (14522ms) Who is the airport named after? Floyd Glass -5.599785932736754 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name for, $x) -> (This airport, is now named for, Floyd Glass) -> Floyd Glass (14521ms) Who is the airport named after? Blaise Diagne -5.660869176264209 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name for, $x) -> (Africa ?s newest airport, is named for, Blaise Diagne) -> Blaise Diagne (14560ms) Who is the airport named after? the President -5.7413262842297135 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name after, $x) -> (This airport, is named after, the President) -> the President (14560ms) Who is the airport named after? a part -5.750025567903653 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, take its name from, $x) -> (The airport, took its name from, a part) -> a part (14560ms) Who is the airport named after? the great opera composer -5.761545287808763 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, the great opera composer) -> the great opera composer (14596ms) Who is the airport named after? the first Kenyan president -5.761545287808763 Who is the airport named after? -> $x: (the airport, named after, $x) -> (The airport, is named after, the first Kenyan president) -> the first Kenyan president (14596ms) Who is the airport named after? political leaders -5.77123642851807 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name after, $x) -> (no airport, would be named after, political leaders) -> political leaders (14595ms) Who is the airport named after? aviation pioneers -5.834595513111796 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name for, $x) -> (Airports, have been named for, aviation pioneers) -> aviation pioneers (14596ms) Who is the airport named after? a high-speed rail link -5.858396319386857 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: ($x, could build, the airport) -> (a high-speed rail link, could be built between, the airports) -> a high-speed rail link (14595ms) Who is the airport named after? the LTTE -5.86182208162062 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: ($x, to bomb, the airport) -> (the LTTE, were able to bomb, the capital and airport) -> the LTTE (14647ms) Who is the airport named after? British Airways -5.907364354274458 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be abandon by, $x) -> (London Heathrow Airport, was abandoned by, British Airways) -> British Airways (14647ms) Who is the airport named after? Manchester Airport -5.916426757497342 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: ($x, be look to buy, airport) -> (Manchester Airport, is looking to buy, a fifth airport ?) -> Manchester Airport (14647ms) Who is the airport named after? the Algerian -6.005698005636285 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: ($x, to bomb, the airport) -> (the Algerian, tried to bomb, the Los Angeles airport) -> the Algerian (15784ms) Who is the airport named after? foreign exchange counters -6.007861352618914 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: ($x, can locate, the airport) -> (foreign exchange counters, can be located at, the airport) -> foreign exchange counters (15784ms) Who is the airport named after? the family -6.025440038517608 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, be name for, $x) -> (the Friedman Memorial Airport, is named for, the family) -> the family (15784ms) Who is the airport named after? the historic city -6.0370691795534315 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, be name for, $x) -> (The airport, is named for, the historic city) -> the historic city (15784ms) Who is the airport named after? the nearby village -6.078751631102303 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, be name for, $x) -> (The Airport, is named for, the nearby village) -> the nearby village (16061ms) Who is the airport named after? once my luggage -6.103143510428131 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: ($x, have found, the airport) -> (once my luggage, has been found by, the airport) -> once my luggage (16061ms) Who is the airport named after? the late Secretary -6.117656359773503 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, be name for, $x) -> (The airport, was named for, the late Secretary) -> the late Secretary (16060ms) Who is the airport named after? pak21 -6.177410189583017 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, creator, $x) -> (Airport Coder, Creator(s), pak21) -> pak21 (16336ms) Who is the airport named after? the Chicago & Western Indiana Railroad -6.181076119517506 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: ($x, bisect, the airport) -> (the Chicago & Western Indiana Railroad, bisected, the airport) -> the Chicago & Western Indiana Railroad (16428ms) Who is the airport named after? Pierre Savorgnan de Brazza -6.208193251543438 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: ($x, name after, airport) -> (Pierre Savorgnan de Brazza, Things named after this, Trieste ? Friuli Venezia Giulia Airport) -> Pierre Savorgnan de Brazza (16428ms) Who is the airport named after? a shuttle -6.212039364669074 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, can hire, $x) -> (the airport, can chose to hire, a shuttle) -> a shuttle (16428ms) Who is the airport named after? the famous Charles Schulz -6.231949770464062 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, be name for, $x) -> (The airport, is named for, the famous Charles Schulz) -> the famous Charles Schulz (16428ms) Who is the airport named after? the nearby suburb -6.23328203620787 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, be name after, $x) -> (The Paris Orly Airport, was named after, the nearby suburb) -> the nearby suburb (16428ms) Who is the airport named after? I?ll -6.2357425492472025 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: ($x, have found, the airport) -> (I?ll, have to find something interesting in, the airport) -> I?ll (16428ms) Who is the airport named after? a small river -6.260008150083582 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: ($x, run past, the airport) -> (a small river, runs right past, the airport premises) -> a small river (16509ms) Who is the airport named after? Hahn -6.288569426999697 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: ($x, know for, the airport) -> (Hahn, is known for, the Frankfurt-Hahn Airport) -> Hahn (16617ms) Who is the airport named after? a master developer -6.30759732896984 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, will hire, $x) -> (The Springs Airport, will hire, a master developer) -> a master developer (16617ms) Who is the airport named after? the United States Secretary -6.307949079521993 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name after, $x) -> (This airport, is named after, the United States Secretary) -> the United States Secretary (16617ms) Who is the airport named after? parking -6.411432159937652 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, actually pay, $x) -> (the airport, actually pay the same price for, parking) -> parking (16788ms) Who is the airport named after? Worcester North9 -6.412947896978714 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: ($x, bisect, the airport) -> (Worcester North9, bisects, the airport) -> Worcester North9 (16866ms) Who is the airport named after? Fuji Television -6.484238005411718 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, creator, $x) -> (TOKYO Airport: Air Traffic Controller, Program creator, Fuji Television) -> Fuji Television (16949ms) Who is the airport named after? a world war -6.497022116105654 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name for, $x) -> (?Its largest airport, is named for, a world war) -> a world war (16949ms) Who is the airport named after? A new report -6.503889239723438 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: ($x, have found, the airport) -> (A new report, has found, the Cairns Airport) -> A new report (16949ms) Who is the airport named after? Each traveler -6.563235438493512 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: ($x, have found, the airport) -> (Each traveler, has to find their own way out of, the airport) -> Each traveler (17087ms) Who is the airport named after? an overrated twit -6.563393314058571 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name for, $x) -> ('s airport, is named for, an overrated twit) -> an overrated twit (17087ms) Who is the airport named after? a forgettable president -6.617329369655296 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name for, $x) -> ('s airport, is named for, a forgettable president) -> a forgettable president (17087ms) Who is the airport named after? Apple -6.6224797538927165 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name for, $x) -> (Airport Express Airport, is the name for, Apple) -> Apple (17087ms) Who is the airport named after? Noir de Noir 72 percent cacao -6.625670588693674 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: ($x, have found, the airport) -> (Noir de Noir 72 percent cacao, have been found at, the airport) -> Noir de Noir 72 percent cacao (17212ms) Who is the airport named after? a legendary proto-communist terrorist -6.630664301985366 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> (An airport, named after, a legendary proto-communist terrorist) -> a legendary proto-communist terrorist (17212ms) Who is the airport named after? premier -6.635661112974646 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, to honor, $x) -> (The Phoenix Airport Museum, is honored to, premier) -> premier (17212ms) Who is the airport named after? Solidarity -6.640169692190681 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: ($x, thing name after this, airport) -> (Solidarity, Things named after this, "Solidarity" Szczecin-Goleni?w Airport) -> Solidarity (17212ms) Who is the airport named after? former US Secretary -6.659770896633177 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name after, $x) -> (Dulles Airport, is named after, former US Secretary) -> former US Secretary (17212ms) Who is the airport named after? Sky Towers -6.665232341140552 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: ($x, name after, airport) -> (Sky Towers, named after, airport codes) -> Sky Towers (17212ms) Who is the airport named after? 1965 -6.666032453523047 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (the airport, be abandon by, $x) -> (The airport, was abandoned by, 1965) -> 1965 (17212ms) Who is the airport named after? a relatively obscure general -6.714789946325044 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name for, $x) -> ('s airport, is named for, a relatively obscure general) -> a relatively obscure general (17354ms) Who is the airport named after? Norm Mineta -6.717332478206813 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name after, $x) -> (this airport, is named after, Norm Mineta) -> Norm Mineta (17354ms) Who is the airport named after? the IEEE 802.11 -6.723237527475801 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name for, $x) -> (AirPort, is Apple 's name for, the IEEE 802.11) -> the IEEE 802.11 (17354ms) Who is the airport named after? The Newberry iPhone Case -6.746442603115973 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: ($x, name after, airport) -> (The Newberry iPhone Case, is named after, Newbery Airport) -> The Newberry iPhone Case (17354ms) Who is the airport named after? a WWII hero -6.748881438495462 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name for, $x) -> (?Its largest airport, is named for, a WWII hero) -> a WWII hero (17487ms) Who is the airport named after? an authentic hero -6.781040201516751 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name for, $x) -> (O?Hare International Airport, is named for, an authentic hero) -> an authentic hero (17487ms) Who is the airport named after? Memphis -6.782605530240314 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: ($x, know for, the airport) -> (Memphis, is known for having, the largest freight airport) -> Memphis (17487ms) Who is the airport named after? a World War II battle -6.813931176878153 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name after, $x) -> (this airport, was named after, a World War II battle) -> a World War II battle (17487ms) Who is the airport named after? a legendary Hamilton member -6.820893684716301 Who is the airport named after? -> $x: (the airport, named after, $x) -> $x: (airport, name after, $x) -> $x: (airport, be name for, $x) -> (This airport, is named for, a legendary Hamilton member) -> a legendary Hamilton member (17487ms) Where is the U.S. Mint headquartered? Philadelphia -5.503849162824033 Where is the U.S. Mint headquartered? -> $x: (the U.S. Mint, is headquartered in, $x) -> $x: (the U.S. Mint, start operation in, $x) -> (The first U.S. Mint, started operations in, Philadelphia) -> Philadelphia (4004ms) Where is the U.S. Mint headquartered? Denver -7.202585476672536 Where is the U.S. Mint headquartered? -> $x: (the U.S. Mint, is headquartered in, $x) -> $x: (us mint, headquarter in, $x) -> $x: (us mint, located in, $x) -> (the U.S. Mint, located in, Denver) -> Denver (5245ms) Where is the U.S. Mint headquartered? Dahlonega -7.599649790452959 Where is the U.S. Mint headquartered? -> $x: (the U.S. Mint, is headquartered in, $x) -> $x: (us mint, headquarter in, $x) -> $x: (us mint, located in, $x) -> (the US Mint, located in, Dahlonega) -> Dahlonega (5245ms) Where is the U.S. Mint headquartered? the city -7.70849478153711 Where is the U.S. Mint headquartered? -> $x: (the U.S. Mint, is headquartered in, $x) -> $x: (the U.S. Mint, be base in, $x) -> (the U.S. Mint, are based in, the city) -> the city (4163ms) Where is the U.S. Mint headquartered? Charlotte -7.727387818599631 Where is the U.S. Mint headquartered? -> $x: (the U.S. Mint, is headquartered in, $x) -> $x: (us mint, headquarter in, $x) -> $x: (us mint, located in, $x) -> (the U.S. Mint, located in, Charlotte) -> Charlotte (5245ms) Where is the U.S. Mint headquartered? Congress -8.598041283771714 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, was authorized by, Congress) -> Congress (8095ms) Where is the U.S. Mint headquartered? Kentucky -8.791983762141673 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (Kentucky, is another facility of, the US Mint) -> Kentucky (8095ms) Where is the U.S. Mint headquartered? Coins -8.833819906791152 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (Coins, are produced by, the US mint) -> Coins (8095ms) Where is the U.S. Mint headquartered? David Rittenhouse -9.140453638712948 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, was, David Rittenhouse) -> David Rittenhouse (8095ms) Where is the U.S. Mint headquartered? authorized dealers -9.174294342250757 Where is the U.S. Mint headquartered? -> $x: (the U.S. Mint, is headquartered in, $x) -> $x: (us mint, headquarter in, $x) -> $x: (us mint, do business with, $x) -> (The U.S. Mint, does business with, authorized dealers) -> authorized dealers (5245ms) Where is the U.S. Mint headquartered? Eagles -9.201502102052174 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is turning out, Eagles) -> Eagles (8240ms) Where is the U.S. Mint headquartered? Eagle -9.246721404610021 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (Eagle, is available from, the US Mint) -> Eagle (8240ms) Where is the U.S. Mint headquartered? the Fed -9.27519899824999 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (the Fed, is, the US Mint) -> the Fed (8240ms) Where is the U.S. Mint headquartered? Silver Coin -9.290115463047865 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (Silver Coin, was struck by, the US Mint) -> Silver Coin (8240ms) Where is the U.S. Mint headquartered? legal tender -9.368048886240542 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, are, legal tender) -> legal tender (8240ms) Where is the U.S. Mint headquartered? January -9.461446838918606 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, are absolutely exploding in, January) -> January (8240ms) Where is the U.S. Mint headquartered? law -9.490814898386285 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is required by, law) -> law (8240ms) Where is the U.S. Mint headquartered? Dimes -9.537861031126132 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (Dimes, have been produced by, the US Mint) -> Dimes (8345ms) Where is the U.S. Mint headquartered? San Francisco -9.548984027318935 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, was built in, San Francisco) -> San Francisco (8345ms) Where is the U.S. Mint headquartered? bas-relief -9.710488170872871 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, are struck in, bas-relief) -> bas-relief (8345ms) Where is the U.S. Mint headquartered? Gold Coin -9.842286377878288 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (Gold Coin, was struck by, the US Mint) -> Gold Coin (8345ms) Where is the U.S. Mint headquartered? bullion coins -9.93767240635926 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, will be offered as, bullion coins) -> bullion coins (8345ms) Where is the U.S. Mint headquartered? Platinum Coin -9.947074739700788 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (Platinum Coin, was struck by, the US Mint) -> Platinum Coin (8345ms) Where is the U.S. Mint headquartered? a Palladium Eagle coin -9.991511434128475 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is planning to issue, a Palladium Eagle coin) -> a Palladium Eagle coin (8345ms) Where is the U.S. Mint headquartered? UKW -10.014463385031476 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is audited annually by, UKW) -> UKW (8429ms) Where is the U.S. Mint headquartered? a Mint -10.047149328140986 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is, a Mint) -> a Mint (8429ms) Where is the U.S. Mint headquartered? Jefferson Nickels -10.070551570614828 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (Jefferson Nickels, was introduced by, the US Mint) -> Jefferson Nickels (8430ms) Where is the U.S. Mint headquartered? Daniel Carr -10.076132473344199 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (Daniel Carr, was invited by, the US Mint) -> Daniel Carr (8429ms) Where is the U.S. Mint headquartered? a nickel worth -10.097255906833485 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is, a nickel worth) -> a nickel worth (8430ms) Where is the U.S. Mint headquartered? an unlikely partner -10.120737056786155 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (an unlikely partner, is, the US Mint) -> an unlikely partner (8430ms) Where is the U.S. Mint headquartered? the FBI building -10.178080353948769 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (the FBI building, is, the US Mint) -> the FBI building (8459ms) Where is the U.S. Mint headquartered? less offers -10.197234855842028 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, there are, less offers) -> less offers (8459ms) Where is the U.S. Mint headquartered? today Conversal -10.240858378961049 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is, today Conversal) -> today Conversal (8459ms) Where is the U.S. Mint headquartered? demand -10.279710437252039 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (demand, is, the US Mint) -> demand (8459ms) Where is the U.S. Mint headquartered? two products -10.315891352520662 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is now missing, two products) -> two products (8459ms) Where is the U.S. Mint headquartered? bags and rolls -10.342680689290926 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, has been offering, bags and rolls) -> bags and rolls (8459ms) Where is the U.S. Mint headquartered? a bad precedent -10.357513208522407 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is setting, a bad precedent) -> a bad precedent (8459ms) Where is the U.S. Mint headquartered? Peppermint -10.361047716496607 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, instance of, the us mint) -> (Peppermint, Instance Of, mint in the US) -> Peppermint (10943ms) Where is the U.S. Mint headquartered? Spearmint -10.361047716496607 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, instance of, the us mint) -> (Spearmint, Instance Of, mint in the US) -> Spearmint (10944ms) Where is the U.S. Mint headquartered? a highly collectible proof version -10.381460201585446 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is, a highly collectible proof version) -> a highly collectible proof version (8459ms) Where is the U.S. Mint headquartered? new quarters -10.405021347916765 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is making, new quarters) -> new quarters (8487ms) Where is the U.S. Mint headquartered? new silver dollars -10.412333503222523 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US mint, has been minting, new silver dollars) -> new silver dollars (8487ms) Where is the U.S. Mint headquartered? Tabitha -10.436105240039616 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, instance of, the us mint) -> (Tabitha, Instance Of, freshly minted Veteran of the US Army) -> Tabitha (10943ms) Where is the U.S. Mint headquartered? a low premium -10.440998328990066 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Territorial Mint, is available at, a low premium) -> a low premium (8487ms) Where is the U.S. Mint headquartered? a private company -10.464699993711102 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, are rolled by, a private company) -> a private company (8487ms) Where is the U.S. Mint headquartered? a pricing grid -10.465385372418153 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is developing, a pricing grid) -> a pricing grid (8487ms) Where is the U.S. Mint headquartered? silver American eagles -10.465385372418153 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is selling, silver American eagles) -> silver American eagles (8487ms) Where is the U.S. Mint headquartered? FREE coin boards -10.468037931621444 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is offering, FREE coin boards) -> FREE coin boards (8487ms) Where is the U.S. Mint headquartered? a brilliant finish -10.485329671361846 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is using, a brilliant finish) -> a brilliant finish (8487ms) Where is the U.S. Mint headquartered? longer periods -10.509794079892272 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, have been available for, longer periods) -> longer periods (8515ms) Where is the U.S. Mint headquartered? a whole lot -10.527478018723382 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, has been communicating, a whole lot) -> a whole lot (8515ms) Where is the U.S. Mint headquartered? numismatic bags and rolls -10.530622565237062 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is offering, numismatic bags and rolls) -> numismatic bags and rolls (8515ms) Where is the U.S. Mint headquartered? two roll sets -10.531243375816857 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is offering, two roll sets) -> two roll sets (8515ms) Where is the U.S. Mint headquartered? sales -10.534131330542147 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is currently rationing, sales) -> sales (8515ms) Where is the U.S. Mint headquartered? an initial ordering limit -10.562845949087901 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is placing, an initial ordering limit) -> an initial ordering limit (8515ms) Where is the U.S. Mint headquartered? Silver Proof Coin -10.568167064890908 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (Silver Proof Coin, was struck by, the US Mint) -> Silver Proof Coin (8515ms) Where is the U.S. Mint headquartered? Klaus -10.56896361339207 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, instance of, the us mint) -> (Klaus, Instance Of, newly minted chief executive of the US business of Siemens) -> Klaus (10943ms) Where is the U.S. Mint headquartered? Carson City Mint -10.597491700602598 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, instance of, the us mint) -> (Carson City Mint, Instance Of, branch of the US Mint) -> Carson City Mint (10943ms) Where is the U.S. Mint headquartered? gold -10.600053902068106 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (gold, is obtained by, the US mints) -> gold (8515ms) Where is the U.S. Mint headquartered? Platinum Proof Coin -10.600901606045838 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (Platinum Proof Coin, was struck by, the US Mint) -> Platinum Proof Coin (8545ms) Where is the U.S. Mint headquartered? a Fractional coin -10.627628599351972 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is still considering introducing, a Fractional coin) -> a Fractional coin (8545ms) Where is the U.S. Mint headquartered? excessive premiums -10.629160772406863 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, had been priced at, excessive premiums) -> excessive premiums (8545ms) Where is the U.S. Mint headquartered? silver -10.629232422220358 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (silver, were used by, the US mint) -> silver (8544ms) Where is the U.S. Mint headquartered? None Silver American Eagles -10.630536946118347 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (None Silver American Eagles, are minted by, the US Mint) -> None Silver American Eagles (8545ms) Where is the U.S. Mint headquartered? coin production figures -10.63616980089297 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (coin production figures, are available from, the US Mint) -> coin production figures (8544ms) Where is the U.S. Mint headquartered? American currency -10.638002741822419 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US mint, is responsible for producing, American currency) -> American currency (8545ms) Where is the U.S. Mint headquartered? the United States congress -10.663579895540733 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (the United States congress, is backed by, the US Mint) -> the United States congress (8545ms) Where is the U.S. Mint headquartered? Pocket change -10.67595866326297 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (Pocket change, is a product of, the US Mint) -> Pocket change (8574ms) Where is the U.S. Mint headquartered? the Newest State Quarters -10.681328455201395 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (the Newest State Quarters, are released by, the US Mint) -> the Newest State Quarters (8574ms) Where is the U.S. Mint headquartered? Once more information -10.684865253508077 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (Once more information, is available from, the US Mint) -> Once more information (8574ms) Where is the U.S. Mint headquartered? Double Eagle Gold Coin -10.703769366707268 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (Double Eagle Gold Coin, was struck by, the US Mint) -> Double Eagle Gold Coin (8574ms) Where is the U.S. Mint headquartered? the James K. Polk Dollar -10.70443913440625 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (the James K. Polk Dollar, has been revealed by, the US Mint) -> the James K. Polk Dollar (8574ms) Where is the U.S. Mint headquartered? four new Lincoln pennies -10.70608599064587 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is releasing, four new Lincoln pennies) -> four new Lincoln pennies (8574ms) Where is the U.S. Mint headquartered? ?American Gold Eagles ? -10.722237756422091 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, are known as, ?American Gold Eagles ?) -> ?American Gold Eagles ? (8574ms) Where is the U.S. Mint headquartered? Silver Eagle bullion coins -10.728312483449628 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is required to produce, Silver Eagle bullion coins) -> Silver Eagle bullion coins (8574ms) Where is the U.S. Mint headquartered? Shipping charges -10.733496085293632 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (Shipping charges, are also covered by, the US Mint) -> Shipping charges (8603ms) Where is the U.S. Mint headquartered? American Gold Bullion Coins -10.762846289768227 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (American Gold Bullion Coins, are issued by, the US Mint) -> American Gold Bullion Coins (8603ms) Where is the U.S. Mint headquartered? Presidential dollar coins -10.764679283399971 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (Presidential dollar coins, will be issued by, the US Mint) -> Presidential dollar coins (8603ms) Where is the U.S. Mint headquartered? pace -10.772194896357998 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is on, pace) -> pace (8603ms) Where is the U.S. Mint headquartered? Silver Eagle coins -10.773521252815526 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (Silver Eagle coins, had been sold by, the US Mint) -> Silver Eagle coins (8603ms) Where is the U.S. Mint headquartered? the same way -10.800420294647694 Where is the U.S. Mint headquartered? -> $x: (the U.S. Mint, is headquartered in, $x) -> $x: (us mint, headquarter in, $x) -> $x: (us mint, operate in, $x) -> (The U.S. Mint, operates in much, the same way) -> the same way (5053ms) Where is the U.S. Mint headquartered? A solid customer base -10.880459062550408 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (A solid customer base, is just like owning, the US Mint) -> A solid customer base (8603ms) Where is the U.S. Mint headquartered? the historic French Quarter -10.93419755621031 Where is the U.S. Mint headquartered? -> $x: (the U.S. Mint, is headquartered in, $x) -> $x: (us mint, headquarter in, $x) -> $x: (us mint, located in, $x) -> (the old U.S. Mint, located in, the historic French Quarter) -> the historic French Quarter (5245ms) Where is the U.S. Mint headquartered? production -10.98940968180705 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is scaling down, production) -> production (8603ms) Where is the U.S. Mint headquartered? purchases -10.994779473745476 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, were to disallow, purchases) -> purchases (8632ms) Where is the U.S. Mint headquartered? raid -11.00172785398216 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (raid, was related to, the US Mint) -> raid (8632ms) Where is the U.S. Mint headquartered? mint -11.020421195591046 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is legally required to, mint) -> mint (8632ms) Where is the U.S. Mint headquartered? wonderful approach -11.037891783893368 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing with the U.S. mint, Instance Of, wonderful approach) -> wonderful approach (10943ms) Where is the U.S. Mint headquartered? effective option -11.040263383165598 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing from the U.S. mint, Instance Of, effective option) -> effective option (10944ms) Where is the U.S. Mint headquartered? The U.S. Silver Eagle -11.042272107877823 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be in, the us mint) -> (The U.S. Silver Eagle, is minted in, the U.S. Mint) -> The U.S. Silver Eagle (11026ms) Where is the U.S. Mint headquartered? wonderful technique -11.052043579760053 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing with the U.S. mint, Instance Of, wonderful technique) -> wonderful technique (10943ms) Where is the U.S. Mint headquartered? great approach -11.053445780380569 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing from the U.S. mint, Instance Of, great approach) -> great approach (11026ms) Where is the U.S. Mint headquartered? fantastic method -11.065099186943668 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing through the U.S. mint, Instance Of, fantastic method) -> fantastic method (11026ms) Where is the U.S. Mint headquartered? excellent technique -11.067153734437483 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing with the U.S. mint, Instance Of, excellent technique) -> excellent technique (11026ms) Where is the U.S. Mint headquartered? good technique -11.067634130331191 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing from the U.S. mint, Instance Of, good technique) -> good technique (11026ms) Where is the U.S. Mint headquartered? great strategy -11.068816273704675 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing with the U.S. mint, Instance Of, great strategy) -> great strategy (11026ms) Where is the U.S. Mint headquartered? popular option -11.069815371063589 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing from the U.S. mint, Instance Of, popular option) -> popular option (11125ms) Where is the U.S. Mint headquartered? popular method -11.06985035989131 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing with the U.S. mint, Instance Of, popular method) -> popular method (11124ms) Where is the U.S. Mint headquartered? popular strategy -11.072333806725625 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing from the U.S. mint, Instance Of, popular strategy) -> popular strategy (11125ms) Where is the U.S. Mint headquartered? popular technique -11.072343190683624 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing with the U.S. mint, Instance Of, popular technique) -> popular technique (11125ms) Where is the U.S. Mint headquartered? superb approach -11.074174915751561 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing with the U.S. mint, Instance Of, superb approach) -> superb approach (11125ms) Where is the U.S. Mint headquartered? excellent strategy -11.084035256970969 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing with the U.S. mint, Instance Of, excellent strategy) -> excellent strategy (11125ms) Where is the U.S. Mint headquartered? fantastic option -11.084580036426036 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing from the U.S. mint, Instance Of, fantastic option) -> fantastic option (11124ms) Where is the U.S. Mint headquartered? wonderful option -11.084986353472628 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing with the U.S. mint, Instance Of, wonderful option) -> wonderful option (11125ms) Where is the U.S. Mint headquartered? good method -11.086232385224735 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing from the U.S. mint, Instance Of, good method) -> good method (11256ms) Where is the U.S. Mint headquartered? fantastic technique -11.08796380392031 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing from the U.S. mint, Instance Of, fantastic technique) -> fantastic technique (11255ms) Where is the U.S. Mint headquartered? excellent method -11.088001783455649 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing through the U.S. mint, Instance Of, excellent method) -> excellent method (11255ms) Where is the U.S. Mint headquartered? effective approach -11.08913979918338 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing through the U.S. mint, Instance Of, effective approach) -> effective approach (11255ms) Where is the U.S. Mint headquartered? effective technique -11.091817242434665 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing from the U.S. mint, Instance Of, effective technique) -> effective technique (11347ms) Where is the U.S. Mint headquartered? superb method -11.092172401221204 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing through the U.S. mint, Instance Of, superb method) -> superb method (11347ms) Where is the U.S. Mint headquartered? excellent option -11.096680851280315 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing through the U.S. mint, Instance Of, excellent option) -> excellent option (11347ms) Where is the U.S. Mint headquartered? ways -11.101767398537831 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, was experimenting on, ways) -> ways (8632ms) Where is the U.S. Mint headquartered? wonderful method -11.105315759013122 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing with the U.S. mint, Instance Of, wonderful method) -> wonderful method (11347ms) Where is the U.S. Mint headquartered? wonderful strategy -11.108355055823488 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing from the U.S. mint, Instance Of, wonderful strategy) -> wonderful strategy (11347ms) Where is the U.S. Mint headquartered? good approach -11.112385487846586 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing through the U.S. mint, Instance Of, good approach) -> good approach (11386ms) Where is the U.S. Mint headquartered? fantastic strategy -11.112390868668896 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing with the U.S. mint, Instance Of, fantastic strategy) -> fantastic strategy (11386ms) Where is the U.S. Mint headquartered? great method -11.112494717313805 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing with the U.S. mint, Instance Of, great method) -> great method (11426ms) Where is the U.S. Mint headquartered? popular approach -11.112628323499502 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing through the U.S. mint, Instance Of, popular approach) -> popular approach (11426ms) Where is the U.S. Mint headquartered? superb strategy -11.112967643792668 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing from the U.S. mint, Instance Of, superb strategy) -> superb strategy (11426ms) Where is the U.S. Mint headquartered? excellent approach -11.113063147873044 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing through the U.S. mint, Instance Of, excellent approach) -> excellent approach (11426ms) Where is the U.S. Mint headquartered? great technique -11.113170859923857 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing with the U.S. mint, Instance Of, great technique) -> great technique (11426ms) Where is the U.S. Mint headquartered? superb option -11.116669350472044 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing from the U.S. mint, Instance Of, superb option) -> superb option (11464ms) Where is the U.S. Mint headquartered? good option -11.118131296605714 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing through the U.S. mint, Instance Of, good option) -> good option (11464ms) Where is the U.S. Mint headquartered? effective method -11.11865765379214 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing from the U.S. mint, Instance Of, effective method) -> effective method (11464ms) Where is the U.S. Mint headquartered? great option -11.121735256174002 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing from the U.S. mint, Instance Of, great option) -> great option (11464ms) Where is the U.S. Mint headquartered? good strategy -11.156067314387283 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing through the U.S. mint, Instance Of, good strategy) -> good strategy (11504ms) Where is the U.S. Mint headquartered? superb technique -11.156213167765813 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing with the U.S. mint, Instance Of, superb technique) -> superb technique (11504ms) Where is the U.S. Mint headquartered? bold -11.159240252441236 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, are listed in, bold) -> bold (8632ms) Where is the U.S. Mint headquartered? fantastic approach -11.161262004371755 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing from the U.S. mint, Instance Of, fantastic approach) -> fantastic approach (11669ms) Where is the U.S. Mint headquartered? effective strategy -11.162178087531695 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, instance of, $x) -> (Purchasing from the U.S. mint, Instance Of, effective strategy) -> effective strategy (11708ms) Where is the U.S. Mint headquartered? line -11.196222915209635 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is standing last in, line) -> line (8632ms) Where is the U.S. Mint headquartered? travelers -11.22048846334372 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (travelers, were buying coins from, the US Mint) -> travelers (8661ms) Where is the U.S. Mint headquartered? Proof Sets -11.2283940344258 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, offer, the us mint) -> (Proof Sets, were publicly offered by, the U.S. Mint) -> Proof Sets (11708ms) Where is the U.S. Mint headquartered? able to meet demand -11.289968423415594 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, was, able to meet demand) -> able to meet demand (8661ms) Where is the U.S. Mint headquartered? uncirculated -11.385811721366258 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint price, will be $ 1500 for, uncirculated) -> uncirculated (8661ms) Where is the U.S. Mint headquartered? 10,000 coins -11.543077352881339 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is, 10,000 coins) -> 10,000 coins (8661ms) Where is the U.S. Mint headquartered? now -11.54641384426381 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is done, now) -> now (8661ms) Where is the U.S. Mint headquartered? 3.34 cents -11.61832853496652 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, was losing, 3.34 cents) -> 3.34 cents (8661ms) Where is the U.S. Mint headquartered? 801 9th street -11.720895475051098 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is, 801 9th street) -> 801 9th street (8661ms) Where is the U.S. Mint headquartered? 25-coin rolls -11.84108178583953 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is offering, 25-coin rolls) -> 25-coin rolls (8688ms) Where is the U.S. Mint headquartered? 100-coin bags -11.86148290470348 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is offering, 100-coin bags) -> 100-coin bags (8688ms) Where is the U.S. Mint headquartered? the proof version -11.90421043173744 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is, the proof version) -> the proof version (8688ms) Where is the U.S. Mint headquartered? the same -11.969835140821061 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US mint, is doing exactly, the same) -> the same (8688ms) Where is the U.S. Mint headquartered? 2009-dated gold Eagles -11.974213472395741 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, will be shipping, 2009-dated gold Eagles) -> 2009-dated gold Eagles (8688ms) Where is the U.S. Mint headquartered? the majority -12.000290099167412 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is setting aside, the majority) -> the majority (8688ms) Where is the U.S. Mint headquartered? able to help you there -12.009780104359958 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, should be, able to help you there) -> able to help you there (8688ms) Where is the U.S. Mint headquartered? 5,000 coins -12.037811115681862 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is limiting sales to, 5,000 coins) -> 5,000 coins (8688ms) Where is the U.S. Mint headquartered? the other end -12.038673439791095 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US mints, were at, the other end) -> the other end (8715ms) Where is the U.S. Mint headquartered? the rolls -12.03949269028095 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is selling, the rolls) -> the rolls (8715ms) Where is the U.S. Mint headquartered? the 10th Anniversary Platinum Eagle Set -12.045833466823577 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is, the 10th Anniversary Platinum Eagle Set) -> the 10th Anniversary Platinum Eagle Set (8715ms) Where is the U.S. Mint headquartered? The coins -12.107575886402106 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (The coins, are from, the US Mint) -> The coins (8715ms) Where is the U.S. Mint headquartered? the organizations -12.113467434172032 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (the organizations, was forwarded to, the US Mint) -> the organizations (8715ms) Where is the U.S. Mint headquartered? the $ 1 coins -12.133540711602674 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is trying to get, the $ 1 coins) -> the $ 1 coins (8715ms) Where is the U.S. Mint headquartered? Jan 04 -12.138674251091501 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (Jan 04, are your thoughts on, the US Mint) -> Jan 04 (8715ms) Where is the U.S. Mint headquartered? the problem -12.176672878367446 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is aware of, the problem) -> the problem (8715ms) Where is the U.S. Mint headquartered? the graphics -12.19026743603436 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (the graphics, are as real as, the US Mint) -> the graphics (8978ms) Where is the U.S. Mint headquartered? the limit -12.192007384814918 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, has been right at, the limit) -> the limit (8978ms) Where is the U.S. Mint headquartered? the 2011-W Proof Gold Buffalo -12.204341140458965 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (the 2011-W Proof Gold Buffalo, is available from, the US Mint) -> the 2011-W Proof Gold Buffalo (8978ms) Where is the U.S. Mint headquartered? The exchanges -12.21735597974644 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (The exchanges, will be available at, the US Mint sales) -> The exchanges (8978ms) Where is the U.S. Mint headquartered? the production -12.235486738592208 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, has been prioritizing, the production) -> the production (8978ms) Where is the U.S. Mint headquartered? the proofs -12.267317817947749 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (the proofs, are struck at, the US Mint) -> the proofs (8978ms) Where is the U.S. Mint headquartered? the court -12.29112659886387 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (the court, were delivered to, the US Mint) -> the court (9054ms) Where is the U.S. Mint headquartered? the release -12.291921712993911 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is getting ready for, the release) -> the release (9054ms) Where is the U.S. Mint headquartered? The sets -12.299968568279427 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (The sets, are offered by, the US Mint) -> The sets (9054ms) Where is the U.S. Mint headquartered? The foundation-stone -12.306157978491692 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (The foundation-stone, was laid for, the US Mint) -> The foundation-stone (9054ms) Where is the U.S. Mint headquartered? annually -12.325022380899982 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is audited, annually) -> annually (9054ms) Where is the U.S. Mint headquartered? 100th , 442nd and MIS veterans -12.326245708992118 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is inviting, 100th , 442nd and MIS veterans) -> 100th , 442nd and MIS veterans (9054ms) Where is the U.S. Mint headquartered? the coins -12.328993448033366 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (the coins, are sold directly by, the US Mint) -> the coins (9054ms) Where is the U.S. Mint headquartered? the government -12.345365833982543 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (the government, was ready to open, the US Mint) -> the government (9097ms) Where is the U.S. Mint headquartered? no 2009-dated proof Silver Eagles -12.358141409177211 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (no 2009-dated proof Silver Eagles, were released by, the US Mint) -> no 2009-dated proof Silver Eagles (9097ms) Where is the U.S. Mint headquartered? 9,023,500 American Silver Eagle coins -12.363446580286084 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (9,023,500 American Silver Eagle coins, were sold by, the US Mint) -> 9,023,500 American Silver Eagle coins (9097ms) Where is the U.S. Mint headquartered? The cat and mouse -12.367470757521431 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (The cat and mouse, are outside, the US Mint) -> The cat and mouse (9097ms) Where is the U.S. Mint headquartered? The bullion coins -12.373267915940694 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (The bullion coins, are distributed through, the US Mint) -> The bullion coins (9097ms) Where is the U.S. Mint headquartered? The coin series -12.404741352957227 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (The coin series, was first offered by, the US Mint) -> The coin series (9097ms) Where is the U.S. Mint headquartered? the design -12.407259672593728 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, has been responsible for, the design) -> the design (9284ms) Where is the U.S. Mint headquartered? The dollar coins -12.416037073882027 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (The dollar coins, are distributed by, the US Mint) -> The dollar coins (9284ms) Where is the U.S. Mint headquartered? the typical release pattern -12.468468132497861 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is reverting to, the typical release pattern) -> the typical release pattern (9284ms) Where is the U.S. Mint headquartered? The new coin catalog -12.522011989003879 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (The new coin catalog, was delivered to, the US Mint) -> The new coin catalog (9284ms) Where is the U.S. Mint headquartered? The whole roof -12.526760604675108 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (The whole roof, was off of, the old US Mint) -> The whole roof (9284ms) Where is the U.S. Mint headquartered? the 2010 Kennedy Halves -12.543865563403795 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, is selling, the 2010 Kennedy Halves) -> the 2010 Kennedy Halves (9284ms) Where is the U.S. Mint headquartered? The newest item -12.55328656562407 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (The newest item, is a first for, the US Mint) -> The newest item (9348ms) Where is the U.S. Mint headquartered? the gold sale business -12.560660982814287 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, has been out of, the gold sale business) -> the gold sale business (9348ms) Where is the U.S. Mint headquartered? a 2012 Birth Set -12.573044083556047 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (the US Mint, is, a 2012 Birth Set) -> a 2012 Birth Set (9348ms) Where is the U.S. Mint headquartered? The first American Buffalo gold coin -12.612778497849051 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (The first American Buffalo gold coin, was issued by, the US Mint) -> The first American Buffalo gold coin (9348ms) Where is the U.S. Mint headquartered? 2011 Silver -12.730987821076091 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, has been selling, 2011 Silver) -> 2011 Silver (9348ms) Where is the U.S. Mint headquartered? the 2009 Proof Silver Eagle -12.775140793689419 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (the 2009 Proof Silver Eagle, was canceled by, the US Mint) -> the 2009 Proof Silver Eagle (9348ms) Where is the U.S. Mint headquartered? April 2 , 1792 -13.135893483138776 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, was created on, April 2 , 1792) -> April 2 , 1792 (9348ms) Where is the U.S. Mint headquartered? The next product -13.18022056907262 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: ($x, be, the us mint) -> (The next product, to be released by, the US Mint) -> The next product (9348ms) Where is the U.S. Mint headquartered? 1792 -13.582231840310822 Where is the U.S. Mint headquartered? -> where be [ the us mint ] headquarter ? -> what be the acronym for the us mint ? -> $x: ($x, be the acronym for, the us mint) -> $x: (the us mint, be, $x) -> (The US Mint, was established in, 1792) -> 1792 (9416ms) When was PBGC established? 1974 -0.4642900643429906 When was PBGC established? -> $x: (PBGC, was established in, $x) -> $x: (PBGC, be create in, $x) -> (The PBGC, was created in, 1974) -> 1974 (4667ms) When was PBGC established? PBGC?s Web site -6.4380372659542555 When was PBGC established? -> $x: (PBGC, was established on, $x) -> $x: (PBGC, be found on, $x) -> (PBGC?s strategic plan, may be found on, PBGC?s Web site) -> PBGC?s Web site (5678ms) When was PBGC established? employer liability -8.126683029055306 When was PBGC established? -> $x: (PBGC, was established on, $x) -> $x: (pbgc, establish on, $x) -> $x: (pbgc, charge on, $x) -> (PBGC, will charge on, employer liability) -> employer liability (7296ms) When was PBGC established? Variable Rate Premiums -8.265824596546754 When was PBGC established? -> $x: (PBGC, was established on, $x) -> $x: (pbgc, establish on, $x) -> $x: (pbgc, rule on, $x) -> (the PBGC, issued a Proposed Rule on, Variable Rate Premiums) -> Variable Rate Premiums (7296ms) When was PBGC established? the interest rate -9.857477868943912 When was PBGC established? -> $x: (PBGC, was established on, $x) -> $x: (pbgc, establish on, $x) -> $x: (pbgc, rule on, $x) -> (The PBGC, amends its final rule on, the interest rate) -> the interest rate (7296ms) When was PBGC established? statute -10.276804985385073 When was PBGC established? -> when be [ pbgc ] establish ? -> what do pbgc define ? -> $x: (pbgc, define, $x) -> (the PBGC?s premiums, are defined by, statute) -> statute (7653ms) When was PBGC established? behalf -10.834462648080626 When was PBGC established? -> when be [ pbgc ] establish ? -> when be pbgc be make ? -> $x: (pbgc, be be make on, $x) -> (the PBGC, would be made on, behalf) -> behalf (8135ms) When was PBGC established? a beautiful island -11.363233458062751 When was PBGC established? -> [ when be pbgc ] establish ? -> when be pbgc be locate ? -> $x: (pbgc, be be locate on, $x) -> (PBGC, is located on, a beautiful island) -> a beautiful island (8695ms) When was PBGC established? benefit plans -12.274151729618358 When was PBGC established? -> when be [ pbgc ] establish ? -> what do pbgc define ? -> $x: (pbgc, define, $x) -> (the PBGC insures, most defined, benefit plans) -> benefit plans (7653ms) Where is the Kalahari desert? Africa -1.4144406648460184 Where is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> (The Kalahari Desert, is located in, Africa) -> Africa (3332ms) Where is the Kalahari desert? Southern Africa -1.9565594977090286 Where is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> (the Kalahari desert, is located in, Southern Africa) -> Southern Africa (3332ms) Where is the Kalahari desert? southern Africa -2.323396828203536 Where is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> (the Kalahari Desert, is in, southern Africa) -> southern Africa (3332ms) Where is the Kalahari desert? eastern Namibia -3.024740906808585 Where is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> (the Kalahari Desert, is located in, eastern Namibia) -> eastern Namibia (3332ms) Where is the Kalahari desert? popularity and usage -3.130591269284145 Where is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> (the Kalahari Desert, are growing in, popularity and usage) -> popularity and usage (3332ms) Where is the Kalahari desert? a class -3.586212089518628 Where is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> (the Kalahari Desert, is in, a class) -> a class (4270ms) Where is the Kalahari desert? Authorities Concept Scheme -3.669785784007915 Where is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> $x: (kalaharus desert, in, $x) -> (Kalahari Desert, In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (4269ms) Where is the Kalahari desert? Geographic Names Concept Scheme -3.708770014675814 Where is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> $x: (kalaharus desert, in, $x) -> (Kalahari Desert, In Scheme, Geographic Names Concept Scheme) -> Geographic Names Concept Scheme (4269ms) Where is the Kalahari desert? Topical Terms Concept Scheme -4.098612321354804 Where is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> $x: (kalaharus desert, in, $x) -> (Brown hyena--Behavior--Kalahari Desert, In Scheme, Topical Terms Concept Scheme) -> Topical Terms Concept Scheme (4466ms) Where is the Kalahari desert? South Africa -4.255155361905228 Where is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> $x: (kalaharus desert, in, $x) -> (Kalahari Desert, is in, South Africa) -> South Africa (4466ms) Where is the Kalahari desert? the rough , -4.759951512705209 Where is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> (the Kalahari Desert, was a diamond in, the rough ,) -> the rough , (4480ms) Where is the Kalahari desert? the southwest -4.7949864950266665 Where is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> (The Kalahari Desert, is located in, the southwest) -> the southwest (4480ms) Where is the Kalahari desert? the same place -5.133674029363853 Where is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> (the Kalahari desert, have been living in exactly, the same place) -> the same place (4479ms) Where is the Kalahari desert? large colonies -5.527654890092744 Where is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> $x: (kalaharus desert, in, $x) -> (the Kalahari Desert, live in, large colonies) -> large colonies (4497ms) Where is the Kalahari desert? dry stony areas -5.672490658387245 Where is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> $x: (kalaharus desert, in, $x) -> (the Kalahari Desert, sometimes appears in, dry stony areas) -> dry stony areas (4496ms) Where is the Kalahari desert? the Kalahari -5.814652388676066 Where is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> $x: (kalaharus desert, in, $x) -> (The Kalahari Desert Bushman, have lived in, the Kalahari) -> the Kalahari (4496ms) Where is the Kalahari desert? a dry bush desert -5.992446327970532 Where is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> $x: (kalaharus desert, in, $x) -> (Kalahari Desert, live in, a dry bush desert) -> a dry bush desert (4496ms) Where is the Kalahari desert? the Kalahari Basin -6.51811698378752 Where is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> $x: (kalaharus desert, in, $x) -> (The Kalahari Desert, lies in, the Kalahari Basin) -> the Kalahari Basin (4548ms) Where is the Kalahari desert? the southern areas -7.461204689022443 Where is the Kalahari desert? -> $x: (the Kalahari desert, is in, $x) -> $x: (kalaharus desert, in, $x) -> (the Kalahari Desert, located in, the southern areas) -> the southern areas (4548ms) Where is the Kalahari desert? a mission station -7.52409295973956 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: (the kalaharus desert, name, $x) -> (the Kalahari Desert, was named to head, a mission station) -> a mission station (5505ms) Where is the Kalahari desert? Botswana -8.90575097265469 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (Botswana, is, the Kalahari Desert) -> Botswana (9725ms) Where is the Kalahari desert? Namibia -9.198904933938094 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari Desert, is perhaps, Namibia) -> Namibia (9725ms) Where is the Kalahari desert? Hoodia -9.283723367064303 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (Hoodia, is from, the Kalahari Desert) -> Hoodia (9725ms) Where is the Kalahari desert? Hawaii -9.454507876071638 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (Hawaii, is antipodal to, the Kalahari Desert) -> Hawaii (9968ms) Where is the Kalahari desert? Watermelons -9.468590448468811 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (Watermelons, are native to, the Kalahari desert) -> Watermelons (9968ms) Where is the Kalahari desert? Millions -9.823199421408138 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (Millions, are displaced as, the Kalahari desert) -> Millions (10054ms) Where is the Kalahari desert? the ?edge -9.925754076855569 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari desert, was, the ?edge) -> the ?edge (10099ms) Where is the Kalahari desert? Food -9.98072404759202 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (Food, is available in, the Kalahari desert) -> Food (10099ms) Where is the Kalahari desert? Hoodia Gordonii -9.983210061710706 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (Hoodia Gordonii, is located in, the Kalahari Desert part) -> Hoodia Gordonii (10099ms) Where is the Kalahari desert? Watermelon -10.033181705468202 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (Watermelon, is native to, the Kalahari Desert) -> Watermelon (10099ms) Where is the Kalahari desert? America -10.123762129623545 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari desert, were introduced to, America) -> America (10099ms) Where is the Kalahari desert? Tsodilo -10.138858024676328 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (Tsodilo, is situated in, the Kalahari Desert) -> Tsodilo (10099ms) Where is the Kalahari desert? Bushmen -10.149632113818743 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (Bushmen, live in, the Kalahari Desert) -> Bushmen (7682ms) Where is the Kalahari desert? Meerkats -10.351721182991604 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (Meerkats, live in, the Kalahari Desert) -> Meerkats (7681ms) Where is the Kalahari desert? Hoodia gordonii -10.51554605040268 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (Hoodia gordonii, is from, the Kalahari Desert) -> Hoodia gordonii (10144ms) Where is the Kalahari desert? nuclear power -10.650704437068988 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (nuclear power, could be the destruction of, the Kalahari desert) -> nuclear power (10144ms) Where is the Kalahari desert? Hoodia Stems -10.672009671747103 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari deserts, have been eating, Hoodia Stems) -> Hoodia Stems (10218ms) Where is the Kalahari desert? extraordinary people -10.699305946207415 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari desert, are, extraordinary people) -> extraordinary people (10218ms) Where is the Kalahari desert? a harsh desert -10.708212483750227 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari Desert, is, a harsh desert) -> a harsh desert (10218ms) Where is the Kalahari desert? Springbok -10.776031655019443 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what desert be in the kalaharus ? -> $x: ($x, instance of, desert) ($x, be in, the kalaharus) -> (Springbok, Instance Of, desert antelope) (springbok, are abundant in, the Kalahari) -> Springbok (9150ms) Where is the Kalahari desert? sand -10.807185245004305 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the area of the kalaharus ? -> $x: (the kalaharus, area, $x) -> (The Kalahari, is the largest continuous area of, sand) -> sand (7302ms) Where is the Kalahari desert? one such group -10.822706608183871 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari desert, are, one such group) -> one such group (10218ms) Where is the Kalahari desert? grassland -10.839975078281192 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari Desert, is savanna, grassland) -> grassland (10218ms) Where is the Kalahari desert? grasses -10.9382839471215 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, is, grasses) -> grasses (10402ms) Where is the Kalahari desert? a vast open space -10.940463832671895 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari desert, is, a vast open space) -> a vast open space (10402ms) Where is the Kalahari desert? hoodia -10.952112780074103 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (hoodia, is in, the Kalahari Desert) -> hoodia (10402ms) Where is the Kalahari desert? the San bushmen -10.952842600394131 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari desert, is home to, the San bushmen) -> the San bushmen (10402ms) Where is the Kalahari desert? delicate balance -10.986014694027345 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the area of the kalaharus ? -> $x: (the kalaharus, area, $x) -> (The Central Kalahari, is an area of, delicate balance) -> delicate balance (7302ms) Where is the Kalahari desert? a principle home -10.999610722729127 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari desert, is, a principle home) -> a principle home (10402ms) Where is the Kalahari desert? An exception -11.030944683631779 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (An exception, is, the the Kalahari Desert) -> An exception (10402ms) Where is the Kalahari desert? indigenous tribes -11.080078003652126 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, was once used by, indigenous tribes) -> indigenous tribes (10490ms) Where is the Kalahari desert? associate DHEA -11.092610411772675 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (associate DHEA, is found in, the Kalahari Desert) -> associate DHEA (10490ms) Where is the Kalahari desert? an important and forgotten storehouse -11.095501635072951 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, are, an important and forgotten storehouse) -> an important and forgotten storehouse (10490ms) Where is the Kalahari desert? ostrich eggshells -11.095755010988649 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (ostrich eggshells, are common around, the Kalahari Desert) -> ostrich eggshells (10490ms) Where is the Kalahari desert? Susie -11.125568959254117 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (Susie, spends summer in, the Kalahari Desert) -> Susie (7704ms) Where is the Kalahari desert? the Southwest -11.143307584207353 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, is expanding to, the Southwest) -> the Southwest (10490ms) Where is the Kalahari desert? red sand dunes -11.14583632423574 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari Desert, is characterised by, red sand dunes) -> red sand dunes (10490ms) Where is the Kalahari desert? the San -11.147430706472793 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, is the native place for, the San) -> the San (10490ms) Where is the Kalahari desert? dry river-beds -11.152735877581666 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, is crossed by, dry river-beds) -> dry river-beds (10490ms) Where is the Kalahari desert? an extraordinary natural phenomenon -11.153620063982764 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, is, an extraordinary natural phenomenon) -> an extraordinary natural phenomenon (10537ms) Where is the Kalahari desert? an extreme realm -11.180443887374064 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari Desert, is, an extreme realm) -> an extreme realm (10537ms) Where is the Kalahari desert? previous excavations -11.190538158623905 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, has been the scene of, previous excavations) -> previous excavations (10537ms) Where is the Kalahari desert? the San Bushmen -11.20032893527011 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari desert, were highly beneficial for, the San Bushmen) -> the San Bushmen (10537ms) Where is the Kalahari desert? a new concession -11.203925753347855 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> where be the kalaharus locate ? -> $x: (the kalaharus, be locate in, $x) -> (The Kalahari Plains Camp, is located in, a new concession) -> a new concession (10537ms) Where is the Kalahari desert? a classic , maybe cliche example -11.22086429370085 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, are, a classic , maybe cliche example) -> a classic , maybe cliche example (10537ms) Where is the Kalahari desert? ivory poachers -11.225240111112894 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari desert, are disrupted by, ivory poachers) -> ivory poachers (10580ms) Where is the Kalahari desert? weight -11.22977015620964 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, could be key to, weight) -> weight (10580ms) Where is the Kalahari desert? Hoodia stems -11.231429468622865 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Deserts, have been eating, Hoodia stems) -> Hoodia stems (10580ms) Where is the Kalahari desert? the Namib -11.246460848250688 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari Desert, is very different to, the Namib) -> the Namib (10580ms) Where is the Kalahari desert? a vast and open space -11.255020041013418 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari Desert, is, a vast and open space) -> a vast and open space (10580ms) Where is the Kalahari desert? rugged beauty -11.255737833063908 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the area of the kalaharus ? -> $x: (the kalaharus, area, $x) -> (The Kalahari Gemsbok National Park, is an area of, rugged beauty) -> rugged beauty (7302ms) Where is the Kalahari desert? the Bushveld -11.26231184615235 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (the Bushveld, is the southern basin of, the Kalahari Desert) -> the Bushveld (10580ms) Where is the Kalahari desert? tsama melons -11.263499212075393 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari desert, have been seen eating, tsama melons) -> tsama melons (10620ms) Where is the Kalahari desert? an organic powder -11.271655802783897 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (an organic powder, is only found in, the Kalahari Desert) -> an organic powder (10620ms) Where is the Kalahari desert? a slender column cactus -11.27342417558609 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (a slender column cactus, is found in, the Kalahari Desert) -> a slender column cactus (10620ms) Where is the Kalahari desert? an episode -11.281828778615205 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari Desert, was the site of, an episode) -> an episode (10620ms) Where is the Kalahari desert? the San people -11.282951523708697 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari Desert, has been home to, the San people) -> the San people (10620ms) Where is the Kalahari desert? time -11.28601171528912 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, is a lot of, time) -> time (10620ms) Where is the Kalahari desert? miraculous -11.294983650655997 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, is nothing short of, miraculous) -> miraculous (10620ms) Where is the Kalahari desert? course Upington -11.308071910209048 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (course Upington, is your gateway to, the Kalahari desert) -> course Upington (10702ms) Where is the Kalahari desert? Devil?s Claw -11.310058544239105 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (Devil?s Claw, is indigenous to, the Kalahari Desert) -> Devil?s Claw (10702ms) Where is the Kalahari desert? San tribe -11.32382348557843 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, is a native place of, San tribe) -> San tribe (10702ms) Where is the Kalahari desert? poor or damaged women -11.326712297231317 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari desert, is a refuge for, poor or damaged women) -> poor or damaged women (10702ms) Where is the Kalahari desert? Natural hoodia -11.330395042273505 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (Natural hoodia, is found in, the Kalahari Desert) -> Natural hoodia (10702ms) Where is the Kalahari desert? a cactus plant -11.332466594597644 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (a cactus plant, is found in, the Kalahari Desert) -> a cactus plant (10702ms) Where is the Kalahari desert? a year-out -11.336649020613027 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (a year-out, was traveling in, the Kalahari Desert) -> a year-out (10702ms) Where is the Kalahari desert? agriculture -11.345443556195464 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Australian or Kalahari desert, is to, agriculture) -> agriculture (10824ms) Where is the Kalahari desert? a wider area -11.361645167452192 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari Desert, is part of, a wider area) -> a wider area (10824ms) Where is the Kalahari desert? weight loss success -11.367908168981824 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, could be the key to, weight loss success) -> weight loss success (10824ms) Where is the Kalahari desert? the Hoodia Gordonii plant -11.374908121575524 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, has been using, the Hoodia Gordonii plant) -> the Hoodia Gordonii plant (10824ms) Where is the Kalahari desert? Jack?s Camp -11.377552871356258 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (Jack?s Camp, is located deep in, the Kalahari Desert) -> Jack?s Camp (10824ms) Where is the Kalahari desert? Salt Pan Salt pans -11.390823687604444 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (Salt Pan Salt pans, can be found throughout, the Kalahari Desert) -> Salt Pan Salt pans (10824ms) Where is the Kalahari desert? satan -11.395321057654007 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (satan, were located in, the Kalahari Desert) -> satan (10824ms) Where is the Kalahari desert? an advanced fat burner -11.40097726260423 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, is also, an advanced fat burner) -> an advanced fat burner (10824ms) Where is the Kalahari desert? a natural remedy -11.40320245532668 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, is used as, a natural remedy) -> a natural remedy (10859ms) Where is the Kalahari desert? Craig -11.404482364928384 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, have, the kalaharus desert) -> (Craig, has also driven across, the Kalahari Desert) -> Craig (10859ms) Where is the Kalahari desert? Hoodia plant -11.408050806515297 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (Hoodia plant, is seen in, the great Kalahari Desert) -> Hoodia plant (10859ms) Where is the Kalahari desert? fascinating species -11.408507626435554 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari desert region, is home to, fascinating species) -> fascinating species (10859ms) Where is the Kalahari desert? a succulent plant -11.411095670213884 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (a succulent plant, is found in, the Kalahari Desert) -> a succulent plant (10858ms) Where is the Kalahari desert? The Bukakhwe San people -11.44475974320117 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (The Bukakhwe San people, are indigenous to, the Kalahari Desert) -> The Bukakhwe San people (11090ms) Where is the Kalahari desert? the Khoikhoi and San -11.449180727908947 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, were left to, the Khoikhoi and San) -> the Khoikhoi and San (11090ms) Where is the Kalahari desert? Deception Valley -11.449747876962675 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (Deception Valley, lies in, the scenic Kalahari Desert) -> Deception Valley (7722ms) Where is the Kalahari desert? Sunny Meerkat -11.455321410558987 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (Sunny Meerkat, lives in, the Kalahari desert) -> Sunny Meerkat (7722ms) Where is the Kalahari desert? Devil?s Claw -11.464212107536769 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (Devil?s Claw, is found in, the harsh Kalahari Desert) -> Devil?s Claw (11090ms) Where is the Kalahari desert? appetite -11.468650173836387 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, has been shown to suppress, appetite) -> appetite (11090ms) Where is the Kalahari desert? a daily challenge -11.492193860840057 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the inhospitable KalahariDesert, is, a daily challenge) -> a daily challenge (11090ms) Where is the Kalahari desert? a game preserve -11.500663031996428 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari desert, was officially turned into, a game preserve) -> a game preserve (11090ms) Where is the Kalahari desert? red-brown sands -11.500956131592863 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the area of the kalaharus ? -> $x: (the kalaharus, area, $x) -> (The Kalahari, has vast areas covered by, red-brown sands) -> red-brown sands (7302ms) Where is the Kalahari desert? eastern and southern Namibia -11.515694358921955 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (eastern and southern Namibia, is covered by, the Kalahari Desert) -> eastern and southern Namibia (11143ms) Where is the Kalahari desert? a vast and almost unpopulated area -11.537799335163138 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari Desert, is, a vast and almost unpopulated area) -> a vast and almost unpopulated area (11143ms) Where is the Kalahari desert? Dq?e Qare Game Reserve -11.566093668914293 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (Dq?e Qare Game Reserve, is located in, the Kalahari Desert) -> Dq?e Qare Game Reserve (11143ms) Where is the Kalahari desert? the San or Bushmen -11.582893421344309 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari Desert, is the last refuge of, the San or Bushmen) -> the San or Bushmen (11215ms) Where is the Kalahari desert? UTC+02:00 -11.590893965101625 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (UTC+02:00, Locations in this time zone, Kalahari Desert) -> UTC+02:00 (7722ms) Where is the Kalahari desert? camels -11.632226766131053 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (camels, were also introduced into, the Kalahari desert region) -> camels (11216ms) Where is the Kalahari desert? Habitat Meerkats -11.653838514035035 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (Habitat Meerkats, live in, the Kalahari Desert) -> Habitat Meerkats (7722ms) Where is the Kalahari desert? a desert -11.700482102403322 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, is called, a desert) -> a desert (11259ms) Where is the Kalahari desert? plant -11.748589024271977 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (plant, is found in, the kalahari desert) -> plant (11258ms) Where is the Kalahari desert? the Ju/'hoansi -11.806600689896623 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (the Ju/'hoansi, live in, the Kalahari Desert) -> the Ju/'hoansi (7741ms) Where is the Kalahari desert? The Bushmen -11.810168714370388 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (The Bushmen, have lived in, the Kalahari Desert) -> The Bushmen (7741ms) Where is the Kalahari desert? Commment Hoodia -11.848780017541358 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (Commment Hoodia, grows in, Kalahari Desert) -> Commment Hoodia (7756ms) Where is the Kalahari desert? sparrow-sized birds -11.870064343915873 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (sparrow-sized birds, live in, the Kalahari desert) -> sparrow-sized birds (7756ms) Where is the Kalahari desert? a cactus-like plant -11.874946488908027 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (a cactus-like plant, can be seen in, Kalahari Desert) -> a cactus-like plant (7756ms) Where is the Kalahari desert? a normal plant -11.877599048111316 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (a normal plant, can be found in, Kalahari Desert) -> a normal plant (7756ms) Where is the Kalahari desert? the Beholder -11.942310367623266 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (the Beholder, lived in, the Kalahari desert) -> the Beholder (7756ms) Where is the Kalahari desert? pill form -11.95189472475049 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (pill form, grows in, the Kalahari Desert) -> pill form (7756ms) Where is the Kalahari desert? the Tsodilo Hills -11.951926597831172 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, is known as, the Tsodilo Hills) -> the Tsodilo Hills (11430ms) Where is the Kalahari desert? an African plant -11.977146757276667 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (an African plant, grows in, the Kalahari Desert) -> an African plant (7773ms) Where is the Kalahari desert? natives -11.98289861394587 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the harsh Kalahari Desert, is used by, natives) -> natives (11462ms) Where is the Kalahari desert? a paleodesert -11.985328132816372 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari Desert, is also, a paleodesert) -> a paleodesert (11462ms) Where is the Kalahari desert? a small mammal -12.043461580595629 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (a small mammal, live in, the Kalahari Desert) -> a small mammal (7773ms) Where is the Kalahari desert? a host -12.069142427542118 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the semi-arid Kalahari desert, is home to, a host) -> a host (11462ms) Where is the Kalahari desert? the Okavango Delta -12.094745963574503 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, is the magical oasis of, the Okavango Delta) -> the Okavango Delta (11462ms) Where is the Kalahari desert? millions -12.106783491166416 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (millions, are displaced as, the Kalahari desert expands) -> millions (11462ms) Where is the Kalahari desert? centuries -12.107022102561107 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, has actually been used for, centuries) -> centuries (11501ms) Where is the Kalahari desert? part of the huge sand basin -12.11510015862989 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, is, part of the huge sand basin) -> part of the huge sand basin (11501ms) Where is the Kalahari desert? yucca plant -12.135206560273891 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what desert be in the kalaharus ? -> $x: ($x, instance of, desert) ($x, be in, the kalaharus) -> (yucca plant, Instance Of, desert plant) (a cactus plant, is found in, the Kalahari Desert) -> yucca plant (11501ms) Where is the Kalahari desert? a small ceremony -12.157005587316185 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (a small ceremony, recently held in, the Kalahari desert) -> a small ceremony (7773ms) Where is the Kalahari desert? The Hoodia Gordonii plant -12.172791187393782 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (The Hoodia Gordonii plant, grows in, the Kalahari Desert region) -> The Hoodia Gordonii plant (7901ms) Where is the Kalahari desert? cactus plant -12.18338397502447 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what desert be in the kalaharus ? -> $x: ($x, instance of, desert) ($x, be in, the kalaharus) -> (cactus plant, Instance Of, desert plant) (a cactus plant, is found in, the Kalahari Desert) -> cactus plant (11501ms) Where is the Kalahari desert? Even Bushmen -12.184838760782966 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (Even Bushmen, clapped in, the Kalahari Desert) -> Even Bushmen (7901ms) Where is the Kalahari desert? the Bushman -12.203797991587964 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, have, the kalaharus desert) -> (the Bushman, has to live in, the Kalahari Desert) -> the Bushman (11501ms) Where is the Kalahari desert? a rare species -12.22084827485477 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, collect from, kalaharus desert) -> (a rare species, collected from, the Kalahari Desert) -> a rare species (7901ms) Where is the Kalahari desert? a cactus-like , succulent plant -12.257138030242801 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (a cactus-like , succulent plant, found in, the Kalahari Desert) -> a cactus-like , succulent plant (7901ms) Where is the Kalahari desert? An anthropologist -12.26399351210854 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (An anthropologist, did a study in, the Kalahari desert) -> An anthropologist (7901ms) Where is the Kalahari desert? 362,500 square miles -12.302286463867379 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, is, 362,500 square miles) -> 362,500 square miles (11542ms) Where is the Kalahari desert? medicine -12.316178276494913 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: (kalaharus desert, plant, $x) -> (Kalahari Desert, have been using this plant as, medicine) -> medicine (7901ms) Where is the Kalahari desert? An appetite suppressant -12.33043355180418 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (An appetite suppressant, found in, the African Kalahari desert) -> An appetite suppressant (7918ms) Where is the Kalahari desert? the honey -12.34785410094675 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the Kalahari Desert, are, the honey) -> the honey (11542ms) Where is the Kalahari desert? thousands -12.35566508797853 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: (kalaharus desert, plant, $x) -> (the Kalahari desert, have used the plant for, thousands) -> thousands (7918ms) Where is the Kalahari desert? just pure hoodia -12.372586200577674 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, originate from, kalaharus desert) -> (just pure hoodia, originates from, Kalahari Desert) -> just pure hoodia (7918ms) Where is the Kalahari desert? San Camp -12.375088970411397 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (San Camp, is located deep in, the Kalahari Desert) -> San Camp (11542ms) Where is the Kalahari desert? The plant -12.408789466090402 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (The plant, is native to, the Kalahari Desert) -> The plant (11542ms) Where is the Kalahari desert? the plant -12.431147862698479 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (the plant, is grown in, Kalahari Desert) -> the plant (7918ms) Where is the Kalahari desert? juicy cactus -12.450580693145579 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (juicy cactus, found in, Kalahari Desert) -> juicy cactus (7918ms) Where is the Kalahari desert? The BBC -12.507440526269722 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, have, the kalaharus desert) -> (The BBC, may have traveled deep into, the Kalahari Desert) -> The BBC (11616ms) Where is the Kalahari desert? one of the worlds -12.514305966062686 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari Desert, is, one of the worlds) -> one of the worlds (11616ms) Where is the Kalahari desert? a succulent -12.60709478471298 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (a succulent, only grows in, the Kalahari desert) -> a succulent (7918ms) Where is the Kalahari desert? a 250,000 sq -12.61096585987287 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (the deep Kalahari desert, is, a 250,000 sq) -> a 250,000 sq (11616ms) Where is the Kalahari desert? the country -12.62460797554374 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (the country, are, the Kalahari Desert) -> the country (11649ms) Where is the Kalahari desert? springbok -12.66158677326348 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what desert be in the kalaharus ? -> $x: ($x, instance of, desert) ($x, be in, the kalaharus) -> (springbok, Instance Of, desert species) (springbok, are abundant in, the Kalahari) -> springbok (11648ms) Where is the Kalahari desert? great -12.673112743024618 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (great, affect in, the Kalahari Desert) -> great (11649ms) Where is the Kalahari desert? 900,000 sq -12.68288376944534 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari Desert, is over, 900,000 sq) -> 900,000 sq (11648ms) Where is the Kalahari desert? night -12.729701410526928 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (night, walks in, the Kalahari Desert) -> night (11721ms) Where is the Kalahari desert? the deserts -12.736673642556498 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari Desert, is one of, the deserts) -> the deserts (11721ms) Where is the Kalahari desert? a leopardess -12.749850252466995 Where is the Kalahari desert? -> where be [ the kalaharus ] desert ? -> what be the name of the kalaharus desert ? -> $x: ($x, be the name of, the kalaharus desert) -> $x: ($x, name of, kalaharus desert) -> $x: ($x, in, kalaharus desert) -> (a leopardess, survive in, the Kalahari Desert) -> a leopardess (11721ms) Where is the Kalahari desert? 70 % -12.754568752486716 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: ($x, be, the kalaharus desert) -> (70 %, is covered by, the Kalahari Desert) -> 70 % (11721ms) Where is the Kalahari desert? the largest continuous stretch -12.755311519760758 Where is the Kalahari desert? -> where [ be the kalaharus desert ] ? -> what get be the kalaharus desert ? -> $x: ($x, get be, the kalaharus desert) -> $x: (the kalaharus desert, be, $x) -> (The Kalahari Desert, is, the largest continuous stretch) -> the largest continuous stretch (11721ms) What year was the phonograph invented? 1877 -3.2086469146632726 What year was the phonograph invented? -> When was the phonograph invented? -> $x: (the phonograph, was invented in, $x) -> (The phonograph, was invented in, 1877) -> 1877 (12130ms) What year was the phonograph invented? Thomas Edison Invents The Light Bulb! The Phonograph! (Part 1) -3.8535095317573047 What year was the phonograph invented? -> $x: (the phonograph invented, year, $x) -> $x: (the phonograph invented, record, $x) -> (Thomas Edison Invents The Light Bulb! The Phonograph! (Part 1), Recording, Thomas Edison Invents The Light Bulb! The Phonograph! (Part 1)) -> Thomas Edison Invents The Light Bulb! The Phonograph! (Part 1) (12446ms) What year was the phonograph invented? Thomas Edison Invents The Light Bulb! The Phonograph! (Part 2) -3.8535095317573047 What year was the phonograph invented? -> $x: (the phonograph invented, year, $x) -> $x: (the phonograph invented, record, $x) -> (Thomas Edison Invents The Light Bulb! The Phonograph! (Part 2), Recording, Thomas Edison Invents The Light Bulb! The Phonograph! (Part 2)) -> Thomas Edison Invents The Light Bulb! The Phonograph! (Part 2) (12447ms) What year was the phonograph invented? Thomas Edison Invents the Light Bulb! The Phonograph! (Part 2) -3.8535095317573047 What year was the phonograph invented? -> $x: (the phonograph invented, year, $x) -> $x: (the phonograph invented, record, $x) -> (Thomas Edison Invents the Light Bulb! The Phonograph! (Part 2), Recording, Thomas Edison Invents the Light Bulb! The Phonograph! (Part 2)) -> Thomas Edison Invents the Light Bulb! The Phonograph! (Part 2) (12446ms) What year was the phonograph invented? Thomas Edison Invents the Light Bulb! The Phonograph! (Part 1) -3.8535095317573047 What year was the phonograph invented? -> $x: (the phonograph invented, year, $x) -> $x: ($x, version, the phonograph invented) -> (Thomas Edison Invents the Light Bulb! The Phonograph! (Part 1), Versions, Thomas Edison Invents The Light Bulb! The Phonograph! (Part 1)) -> Thomas Edison Invents the Light Bulb! The Phonograph! (Part 1) (12672ms) What year was the phonograph invented? Stan Freberg -4.666206176893622 What year was the phonograph invented? -> $x: (the phonograph invented, year, $x) -> $x: (the phonograph invented, record, $x) -> (Thomas Edison Invents The Light Bulb! The Phonograph! (Part 2), Recorded by, Stan Freberg) -> Stan Freberg (12622ms) What year was the phonograph invented? the 1820s -4.809943311183133 What year was the phonograph invented? -> When was the phonograph invented? -> $x: (the phonograph, was invented in, $x) -> (the phonograph, actually had been invented in, the 1820s) -> the 1820s (12130ms) What year was the phonograph invented? the 18th century -4.871590781679366 What year was the phonograph invented? -> When was the phonograph invented? -> $x: (the phonograph, was invented in, $x) -> (The phonograph, was invented in, the 18th century) -> the 18th century (12130ms) What year was the phonograph invented? 1912 -5.803051971668819 What year was the phonograph invented? -> When was the phonograph invented? -> $x: (the phonograph, was invented in, $x) -> $x: (the phonograph, be develop in, $x) -> (The Edison Disc Phonograph, was developed in, 1912) -> 1912 (16127ms) What year was the phonograph invented? Edison -5.911363088320591 What year was the phonograph invented? -> $x: ($x, instance of, year) (the phonograph, invented, $x) -> $x: ($x, instance of, year) (phonograph, invent, $x) -> (Edison, Instance Of, second year man) (phonograph or Gramophone, invented by, Edison) -> Edison (4076ms) What year was the phonograph invented? Fall 2003 -6.42505998990267 What year was the phonograph invented? -> When was the phonograph invented? -> $x: (the phonograph, was invented in, $x) -> $x: (the phonograph, be be release in, $x) -> (the phonograph and branding, was released in, Fall 2003) -> Fall 2003 (16074ms) What year was the phonograph invented? First -6.708329268421062 What year was the phonograph invented? -> $x: ($x, instance of, year) (the phonograph, invented, $x) -> $x: ($x, instance of, year) (the phonograph, be marketing, $x) -> (First, Instance Of, one year certificate-program) (the phonograph, was marketed, first) -> First (7677ms) What year was the phonograph invented? FIRST -7.103120905491909 What year was the phonograph invented? -> $x: ($x, instance of, year) (the phonograph, invented, $x) -> $x: ($x, instance of, year) (the phonograph, be marketing, $x) -> (FIRST, Instance Of, three year postdoctoral program) (the phonograph, was marketed, first) -> FIRST (7943ms) What year was the phonograph invented? the Year ? -7.7716999918788945 What year was the phonograph invented? -> $x: ($x, instance of, year) (the phonograph, invented, $x) -> $x: ($x, modelling, year) (the phonograph, invented, $x) -> (the Year ?, had a pro model for, seven years) (the phonograph, was invented, the year) -> the Year ? (10245ms) What year was the phonograph invented? existence -7.801775112112679 What year was the phonograph invented? -> When was the phonograph invented? -> $x: (the phonograph, was invented in, $x) -> $x: (the phonograph, be popular in, $x) -> (the phonograph, was the most popular technology in, existence) -> existence (15937ms) What year was the phonograph invented? the year -9.169726713197708 What year was the phonograph invented? -> $x: ($x, instance of, year) (the phonograph, invented, $x) -> $x: (year, element, $x) (the phonograph, invented, $x) -> (20 years-old, still has elements of, the year) (the phonograph, was invented, the year) -> the year (10176ms) What team drafted Brett Favre? the Falcons -6.14926749205712 What team drafted Brett Favre? -> $x: ($x, instance of, team) ($x, drafted, Brett Favre) -> $x: ($x, be the type of, team) ($x, drafted, Brett Favre) -> (the Falcons, are the type of, team) (the Falcons, drafted, Brett Favre) -> the Falcons (2995ms) What is the inner peel of an orange called? Blend -9.700258568251698 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> (an orange, peeled, Blend) -> Blend (297ms) What is the inner peel of an orange called? a man -9.834975575943112 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> (an orange, is peeled by, a man) -> a man (297ms) What is the inner peel of an orange called? a vegetable peeler -10.431222702857228 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> (an orange skin, peeled with, a vegetable peeler) -> a vegetable peeler (297ms) What is the inner peel of an orange called? essential oil -10.861967288748138 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Orange, peel, essential oil) -> essential oil (760ms) What is the inner peel of an orange called? tea -10.991084959647912 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Orange, peel, tea) -> tea (760ms) What is the inner peel of an orange called? an adsorbent -11.223307148348747 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Orange, peel as, an adsorbent) -> an adsorbent (760ms) What is the inner peel of an orange called? old fashioned -11.345201541423911 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (orange, peel, old fashioned) -> old fashioned (760ms) What is the inner peel of an orange called? side -11.48687404344703 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> (an orange slice, peel, side) -> side (297ms) What is the inner peel of an orange called? free motion -11.551219411886624 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (the orange, peel, free motion) -> free motion (760ms) What is the inner peel of an orange called? a little -11.574376283894772 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (this hot the orange backing tape, peel, a little) -> a little (760ms) What is the inner peel of an orange called? ? skin -11.586898394213977 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (your dimply ?orange, peeled, ? skin) -> ? skin (790ms) What is the inner peel of an orange called? oil -11.648974795296654 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Ginger and Orange, peel, oil) -> oil (790ms) What is the inner peel of an orange called? block pattern -11.687584664525275 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (the classic orange, peel, block pattern) -> block pattern (790ms) What is the inner peel of an orange called? ice -11.701034301903903 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (1 orange, peeled, ice) -> ice (790ms) What is the inner peel of an orange called? Re -11.727793405247878 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Orange, peels, Re) -> Re (790ms) What is the inner peel of an orange called? such a way -11.760322010137457 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Oranges, were carefully peeled in, such a way) -> such a way (790ms) What is the inner peel of an orange called? a long strip -11.778435330801333 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (the orange, peel, a long strip) -> a long strip (790ms) What is the inner peel of an orange called? Steps -11.778551836413927 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Orange, peel, Steps) -> Steps (790ms) What is the inner peel of an orange called? several ?sachets -11.795800826254448 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (powdered dry orange, peel, several ?sachets) -> several ?sachets (816ms) What is the inner peel of an orange called? color and pulp color -11.799534392763356 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (a large orange, peel, color and pulp color) -> color and pulp color (816ms) What is the inner peel of an orange called? Steep tea -11.830132234862166 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Fair Trade Certified honey Thick orange, peel, Steep tea) -> Steep tea (816ms) What is the inner peel of an orange called? the layer -11.855299216353327 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> (An evil orange--you, peel away, the layer) -> the layer (298ms) What is the inner peel of an orange called? ? navel orange -11.87007343258787 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Orange Extract, Thinly peel, ? navel orange) -> ? navel orange (816ms) What is the inner peel of an orange called? 20mg -11.882173983734782 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Orange, peel, 20mg) -> 20mg (816ms) What is the inner peel of an orange called? Place all ingredients -11.899680810200676 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Nutmeg 3 pieces Orange, peels, Place all ingredients) -> Place all ingredients (816ms) What is the inner peel of an orange called? aluminum reflector -11.937952286739769 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Orange, peel, aluminum reflector) -> aluminum reflector (816ms) What is the inner peel of an orange called? Brew tea -11.94283900244858 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (cinnamon stick and orange, peel, Brew tea) -> Brew tea (816ms) What is the inner peel of an orange called? outer skin -11.971191796115134 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Marinated oranges Preparation, peel, outer skin) -> outer skin (846ms) What is the inner peel of an orange called? holy yumminess -12.004503815823346 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (candy orange, peels, holy yumminess) -> holy yumminess (846ms) What is the inner peel of an orange called? cancer studies -12.095637232046732 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Orange, peel extract has been used in, cancer studies) -> cancer studies (846ms) What is the inner peel of an orange called? 4x6 -12.117464959807947 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Monday Feb252008 orange, peeled, 4x6) -> 4x6 (846ms) What is the inner peel of an orange called? each quarter -12.134701017413626 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Oranges, peel, each quarter) -> each quarter (846ms) What is the inner peel of an orange called? Peel -12.141085145028207 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (! Orange, peel, Peel) -> Peel (846ms) What is the inner peel of an orange called? 1 carrot -12.14962779462714 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (1 orange, peeled, 1 carrot) -> 1 carrot (869ms) What is the inner peel of an orange called? quality -12.151901016672927 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> (an exotic orange, peel, quality) -> quality (297ms) What is the inner peel of an orange called? 50 grams butter Extract fresh orange juice -12.166781903771941 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Orange, peel, 50 grams butter Extract fresh orange juice) -> 50 grams butter Extract fresh orange juice (869ms) What is the inner peel of an orange called? 1/2 -12.172777189116157 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Orange Champagne, Thinly peel, 1/2) -> 1/2 (869ms) What is the inner peel of an orange called? 250g small strawberries -12.23548208234803 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (2 large oranges, peeled, 250g small strawberries) -> 250g small strawberries (868ms) What is the inner peel of an orange called? Directions -12.24188775891297 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Orange, peel, Directions) -> Directions (869ms) What is the inner peel of an orange called? the Ginger -12.245197237670993 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (the Oranges, peel, the Ginger) -> the Ginger (869ms) What is the inner peel of an orange called? 1 tsp -12.277039370222518 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Procedure .5 oz Orange, peel, 1 tsp) -> 1 tsp (869ms) What is the inner peel of an orange called? rough or dead skin -12.288894035619087 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (an orange, be rub, $x) -> (an orange, can be rubbed against, rough or dead skin) -> rough or dead skin (979ms) What is the inner peel of an orange called? a railroad track -12.315244919821417 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (orange pennies, peeled off, a railroad track) -> a railroad track (869ms) What is the inner peel of an orange called? Madge -12.322761375380889 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (That orange, was peeled for, Madge) -> Madge (892ms) What is the inner peel of an orange called? 1 tablespoon fresh rosemary -12.333770974179584 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (nytimes.com 2 navel oranges, peeled, 1 tablespoon fresh rosemary) -> 1 tablespoon fresh rosemary (892ms) What is the inner peel of an orange called? 4 c Sifted flour -12.34971112488482 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (1 tb Orange, peel, 4 c Sifted flour) -> 4 c Sifted flour (892ms) What is the inner peel of an orange called? 1/2 cup -12.359505178800532 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (blood orange and chia seed jam Ingredients, peeled, 1/2 cup) -> 1/2 cup (892ms) What is the inner peel of an orange called? papery flakes -12.378700672670861 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (beautiful reddish-orange bark, peels in, papery flakes) -> papery flakes (892ms) What is the inner peel of an orange called? 4 cups fresh soft crumbs -12.519844741806141 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (finely grated orange, peel, 4 cups fresh soft crumbs) -> 4 cups fresh soft crumbs (892ms) What is the inner peel of an orange called? a lot of attention -12.592943781731861 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (an orange, be be draw, $x) -> (The specter of an orange, is drawing, a lot of attention) -> a lot of attention (892ms) What is the inner peel of an orange called? Strain -12.672577842983188 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Jared Sadoian 1.00 ea Orange, peel, Strain) -> Strain (915ms) What is the inner peel of an orange called? now -12.983447763167778 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (orange, peels, now) -> now (915ms) What is the inner peel of an orange called? a skydiver -13.06440572865059 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (an orange, just fall, $x) -> (An average orange, falls just as fast as, a skydiver) -> a skydiver (979ms) What is the inner peel of an orange called? the orange rind -13.199961296470368 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (1 orange, will be peeled for, the orange rind) -> the orange rind (915ms) What is the inner peel of an orange called? the oranges -13.205305926129906 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (6 oranges, peel, the oranges) -> the oranges (915ms) What is the inner peel of an orange called? the orange zest -13.290979795446372 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (SOUR ORANGE MARMALADE 1, Carefully peel, the orange zest) -> the orange zest (915ms) What is the inner peel of an orange called? hand -13.301240410534028 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (The oranges, can be peeled easily by, hand) -> hand (915ms) What is the inner peel of an orange called? the fruit -13.350415882419755 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (one orange, peel, the fruit) -> the fruit (915ms) What is the inner peel of an orange called? the rest -13.390358437890363 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (the oranges, peeled, the rest) -> the rest (932ms) What is the inner peel of an orange called? a yellow colour -13.406972402666586 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (an orange, fading, $x) -> (an orange cupped top, fades to, a yellow colour) -> a yellow colour (932ms) What is the inner peel of an orange called? Lake Geneva -13.468443322455588 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be draw, $x) -> (Orange Cinema Geneva People, are drawn to, Lake Geneva) -> Lake Geneva (1473ms) What is the inner peel of an orange called? 15 troubled months -13.487309111247631 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (an orange, fading, $x) -> (an orange coalition, faded after, 15 troubled months) -> 15 troubled months (932ms) What is the inner peel of an orange called? thighs -13.552281622707188 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (their orange, peeled, thighs) -> thighs (932ms) What is the inner peel of an orange called? already -13.59427607966942 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> (an orange, peeled, already) -> already (297ms) What is the inner peel of an orange called? filtered water -13.595119340037446 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (orange, peel with, filtered water) -> filtered water (932ms) What is the inner peel of an orange called? acts -13.59626789766431 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Orange, peel, acts) -> acts (978ms) What is the inner peel of an orange called? Thai basil -13.596506750818396 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (1/2 orange, diced, Thai basil) -> Thai basil (2250ms) What is the inner peel of an orange called? Gulf Shores -13.60998283660813 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be drive, $x) -> (Orange Beach, is only a short drive from, Gulf Shores) -> Gulf Shores (1563ms) What is the inner peel of an orange called? peach -13.633468768958277 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (oranges, peeled, peach) -> peach (978ms) What is the inner peel of an orange called? grapes -13.659994677204944 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (oranges, peeled, grapes) -> grapes (978ms) What is the inner peel of an orange called? zest -13.746875136453896 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (orange zest, is to peel, zest) -> zest (978ms) What is the inner peel of an orange called? loose skin -13.773477619415107 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (A mandarin orange with, peels easily, loose skin) -> loose skin (1005ms) What is the inner peel of an orange called? chicken -13.798673390813292 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Lettuce wraps and orange, peeled, chicken) -> chicken (1005ms) What is the inner peel of an orange called? water -13.798673390813292 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (dry orange, peel mixed with, water) -> water (1005ms) What is the inner peel of an orange called? pear -13.819481479124883 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (orange blossom honey, peeled, pear) -> pear (1005ms) What is the inner peel of an orange called? 1/4 cup -13.81973618607423 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (ground black pepper 1 medium orange, peeled, 1/4 cup) -> 1/4 cup (1005ms) What is the inner peel of an orange called? real-world connections -13.852834013538276 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be drive, $x) -> (Orange, is a Web-driven campaign with, real-world connections) -> real-world connections (1563ms) What is the inner peel of an orange called? teeth -13.865159708608148 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (an orange, be rub, $x) -> (an orange peel, could be rubbed on, teeth) -> teeth (1005ms) What is the inner peel of an orange called? the appearance -13.94574620475055 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (?orange, peeled ? due to, the appearance) -> the appearance (1005ms) What is the inner peel of an orange called? a branch -13.977688143465441 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be rub, $x) -> (the orange, has been rubbing against, a branch) -> a branch (1765ms) What is the inner peel of an orange called? the cleanest -13.9780427203818 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Orange-peeling competition, peels, the cleanest) -> the cleanest (1026ms) What is the inner peel of an orange called? a copper pan -13.98774704379759 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, have melt, $x) -> (a very orange wax, may have been melted in, a copper pan) -> a copper pan (2059ms) What is the inner peel of an orange called? a BMW. -13.995377336589867 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be drive, $x) -> (orange county, is driving, a BMW.) -> a BMW. (1563ms) What is the inner peel of an orange called? birthmarks Icepack -14.048767938154628 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be rub, $x) -> (vitamin E and orange oil, can be rubbed over, birthmarks Icepack) -> birthmarks Icepack (1765ms) What is the inner peel of an orange called? least four times -14.084766693370652 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be draw, $x) -> (the orange ball, will be drawn at, least four times) -> least four times (1473ms) What is the inner peel of an orange called? sea -14.085245725674783 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, to float, $x) -> (the orange and lemon trees, floated out to, sea) -> sea (1473ms) What is the inner peel of an orange called? purplish-blue -14.118583855946582 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (the last red and orange streaked clouds, faded to, purplish-blue) -> purplish-blue (2059ms) What is the inner peel of an orange called? the Crumlin Road -14.13680263501813 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be drive, $x) -> (The Orange men, were driven down, the Crumlin Road) -> the Crumlin Road (1563ms) What is the inner peel of an orange called? aromas -14.137442572838287 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Orange, peel, aromas) -> aromas (1026ms) What is the inner peel of an orange called? a big coat -14.153561043249507 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be slip, $x) -> (red orange hair, was quickly slipping, a big coat) -> a big coat (1765ms) What is the inner peel of an orange called? sweet potatoes -14.188173417021204 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, mash, $x) -> (orange, is mashed, sweet potatoes) -> sweet potatoes (1935ms) What is the inner peel of an orange called? Orange Beach -14.2409718894645 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be draw, $x) -> (Orange Beach Artisans, are drawn to, Orange Beach) -> Orange Beach (1473ms) What is the inner peel of an orange called? one output -14.24297973838317 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be drive, $x) -> (the orange, is driven by, one output) -> one output (1563ms) What is the inner peel of an orange called? a Subaru SUV -14.292532382753103 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be drive, $x) -> (Orange, was driving, a Subaru SUV) -> a Subaru SUV (1563ms) What is the inner peel of an orange called? pure white light -14.302878465418418 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, will be turn, $x) -> (orange light, will gradually be turned into, pure white light) -> pure white light (1892ms) What is the inner peel of an orange called? fine-line magic marker -14.329580971393664 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be draw, $x) -> (orange slices, may be drawn with, fine-line magic marker) -> fine-line magic marker (1473ms) What is the inner peel of an orange called? base -14.338314524995358 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Orange, peel in, base) -> base (1026ms) What is the inner peel of an orange called? dudes -14.366608858746513 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (those oranges, peeled, dudes) -> dudes (1026ms) What is the inner peel of an orange called? dark blue and black -14.399194260650875 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (the orange, faded to, dark blue and black) -> dark blue and black (2059ms) What is the inner peel of an orange called? Penzance -14.424049281482157 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be draw, $x) -> (U.K. Orange Trevillion, was drawn to, Penzance) -> Penzance (1473ms) What is the inner peel of an orange called? a corner -14.444959994325384 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be fold, $x) -> (orange camouglage jacket, are neatly folded in, a corner) -> a corner (1080ms) What is the inner peel of an orange called? red -14.494783418545136 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (the blaze orange, faded to, red) -> red (2059ms) What is the inner peel of an orange called? Tortilla chips -14.584116014798091 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (Sliced 1 orange bell, diced, Tortilla chips) -> Tortilla chips (2250ms) What is the inner peel of an orange called? firm conclusions -14.59732068550959 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be draw, $x) -> (Agent Orange, was too small to draw, firm conclusions) -> firm conclusions (1473ms) What is the inner peel of an orange called? social media -14.616607755277386 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, mash, $x) -> (Powered By Orange, mashes up, social media) -> social media (1935ms) What is the inner peel of an orange called? the LED ligts -14.641262048674943 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, to float, $x) -> (a dozen orange orbs, floated to, the LED ligts) -> the LED ligts (1563ms) What is the inner peel of an orange called? a fertile area -14.649657176280458 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be drive, $x) -> (the Orange Free State, had been driven into, a fertile area) -> a fertile area (1563ms) What is the inner peel of an orange called? Los Angeles -14.670136514793445 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be tuck, $x) -> (Orange County, is tucked sweetly between, Los Angeles) -> Los Angeles (1935ms) What is the inner peel of an orange called? maraschino cherries -14.671000578092073 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (orange jello and mandarin oranges, diced, maraschino cherries) -> maraschino cherries (2250ms) What is the inner peel of an orange called? character -14.683797258276654 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (a spicy marmalade/orange, peel, character) -> character (1026ms) What is the inner peel of an orange called? a year or so -14.722326759520032 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (The flourescent orange, faded from, a year or so) -> a year or so (2059ms) What is the inner peel of an orange called? the air pockets -14.734626067981134 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (an orange, to float, $x) -> (An orange, will float due to, the air pockets) -> the air pockets (1026ms) What is the inner peel of an orange called? Ukraine -14.736465459506075 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (The Orange Revolution, has faded away in, Ukraine) -> Ukraine (2059ms) What is the inner peel of an orange called? AOS weekend -14.75014356264617 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, just fall, $x) -> (Orange Beach, is just prior to fall, AOS weekend) -> AOS weekend (1935ms) What is the inner peel of an orange called? a dark blue -14.752224116365035 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be fading, $x) -> (The orange sunset color, was fading away into, a dark blue) -> a dark blue (1288ms) What is the inner peel of an orange called? a supermarket -14.76291044164487 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, have roll, $x) -> (a hand retrieves oranges, have rolled all over, a supermarket) -> a supermarket (1195ms) What is the inner peel of an orange called? Forrest Wang -14.768101049687044 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be drive, $x) -> (The orange, was driven by, Forrest Wang) -> Forrest Wang (1892ms) What is the inner peel of an orange called? green containers , dogs and cats -14.776423338923287 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, get put, $x) -> (the orange lids, gets put on, green containers , dogs and cats) -> green containers , dogs and cats (1194ms) What is the inner peel of an orange called? a Ziploc sandwich bag -14.779906552884189 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, to melt, $x) -> (the leftover orange candy, melts to, a Ziploc sandwich bag) -> a Ziploc sandwich bag (1288ms) What is the inner peel of an orange called? 1,000 degrees -14.78896982748007 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be burnt, $x) -> (Agent Orange, was burned there at, 1,000 degrees) -> 1,000 degrees (2250ms) What is the inner peel of an orange called? a year or so ? more Options -14.800054283132933 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (The flourescent orange, faded from, a year or so ? more Options) -> a year or so ? more Options (2059ms) What is the inner peel of an orange called? the ROM update -14.82402396988888 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, have roll, $x) -> (Orange UK, has just rolled out, the ROM update) -> the ROM update (1195ms) What is the inner peel of an orange called? utter contempt -14.842595231874148 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (the orange blazed trail, fade gradually into, utter contempt) -> utter contempt (2119ms) What is the inner peel of an orange called? small patches -14.87036326186125 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be fading, $x) -> (His once smooth orange breast, was faded in, small patches) -> small patches (1288ms) What is the inner peel of an orange called? a plate -14.87202656024937 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, quarter, $x) -> (some oranges, quartered on, a plate) -> a plate (1288ms) What is the inner peel of an orange called? cold winter gray -14.872316351709046 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (the burnt-orange autumn afternoons, fade to, cold winter gray) -> cold winter gray (2119ms) What is the inner peel of an orange called? Glass -14.967757213858636 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, quarter, $x) -> (2 orange wheels, quartered, Glass) -> Glass (1288ms) What is the inner peel of an orange called? drying -14.96826968632778 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Orange, peels, drying) -> drying (1026ms) What is the inner peel of an orange called? East Michigan Street -14.975344483982422 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, to take i, $x) -> (north Orange County, Take I-4 west to, East Michigan Street) -> East Michigan Street (1195ms) What is the inner peel of an orange called? 6 sprigs -14.99042794554492 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, quarter, $x) -> (2 oranges, quartered, 6 sprigs) -> 6 sprigs (1288ms) What is the inner peel of an orange called? red bell peppers -15.013088026196353 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (Valencia orange segments, diced, red bell peppers) -> red bell peppers (2250ms) What is the inner peel of an orange called? E. Michigan Street -15.02867504268667 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, to take i, $x) -> (north Orange County, Take I-4 west to, E. Michigan Street) -> E. Michigan Street (1195ms) What is the inner peel of an orange called? Valentine -15.03022581610324 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, will be turn, $x) -> (our oranges, will be turned into, Valentine) -> Valentine (1935ms) What is the inner peel of an orange called? the Elite Eight -15.044588915078002 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, have roll, $x) -> (his Syracuse Orange, have rolled into, the Elite Eight) -> the Elite Eight (1195ms) What is the inner peel of an orange called? non-stop mobile Internet access -15.045420411329221 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, have roll, $x) -> (Orange Tunisia, has rolled out, non-stop mobile Internet access) -> non-stop mobile Internet access (1195ms) What is the inner peel of an orange called? Pastry -15.061129277329561 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (? tsp orange zest, diced For, Pastry) -> Pastry (2250ms) What is the inner peel of an orange called? Fresh dill Dash soy sauce Method -15.08119718634827 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (big orange squash, diced, Fresh dill Dash soy sauce Method) -> Fresh dill Dash soy sauce Method (2250ms) What is the inner peel of an orange called? a black night -15.086864099384279 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (the orange sun, fade into, a black night) -> a black night (2119ms) What is the inner peel of an orange called? black velvet -15.102470201143152 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> ('s orange glow, faded to, black velvet) -> black velvet (2250ms) What is the inner peel of an orange called? usually -15.112180746418055 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (Oranges, are peeled, usually) -> usually (1050ms) What is the inner peel of an orange called? a delicate light pink -15.115814131707138 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (Bronzy orange petals, fade to, a delicate light pink) -> a delicate light pink (2250ms) What is the inner peel of an orange called? DRIVE -15.128994063621281 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be drive, $x) -> (A BIG ORANGE TRUCK, IS DRIVING ON, DRIVE) -> DRIVE (2250ms) What is the inner peel of an orange called? 1 kiwi -15.134015493573699 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (1 orange, diced, 1 kiwi) -> 1 kiwi (2250ms) What is the inner peel of an orange called? pale pink Celestite -15.140761611491245 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (brown/orange varieties, may fade to, pale pink Celestite) -> pale pink Celestite (2250ms) What is the inner peel of an orange called? 1 lemon -15.145607604244578 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, quarter, $x) -> (2 medium oranges, quartered, 1 lemon) -> 1 lemon (1288ms) What is the inner peel of an orange called? pale orange -15.149332712828809 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (a bright orange, then fade to, pale orange) -> pale orange (2263ms) What is the inner peel of an orange called? a play kitchen -15.156842215907167 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be tuck, $x) -> (orange?that, were tucked into, a play kitchen) -> a play kitchen (2263ms) What is the inner peel of an orange called? a cold , pale rust tone -15.166914721478726 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (These orange details, have faded to, a cold , pale rust tone) -> a cold , pale rust tone (2263ms) What is the inner peel of an orange called? 3 T minced cilantro -15.19614448970718 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (orange bell pepper, diced, 3 T minced cilantro) -> 3 T minced cilantro (2263ms) What is the inner peel of an orange called? 4 oz -15.200553062619079 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, quarter, $x) -> (2 naval oranges, quartered, 4 oz) -> 4 oz (1288ms) What is the inner peel of an orange called? I-95 North -15.201955915299902 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, to take i, $x) -> (the Westside and Orange Park, Take I-10 East to, I-95 North) -> I-95 North (1316ms) What is the inner peel of an orange called? macerate -15.230817248637171 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (the orange, peel, macerate) -> macerate (1051ms) What is the inner peel of an orange called? 3 Tb -15.277789679542744 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (1 orange, diced, 3 Tb) -> 3 Tb (2263ms) What is the inner peel of an orange called? Yellow Baby Ben Patent # 201895 -15.29150076371339 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (Orange, fade, Yellow Baby Ben Patent # 201895) -> Yellow Baby Ben Patent # 201895 (2263ms) What is the inner peel of an orange called? 2 tbs -15.296849792085341 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (candied orange, diced, 2 tbs) -> 2 tbs (2263ms) What is the inner peel of an orange called? 1 cup ripe mango -15.29966696496251 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (orange sections, diced, 1 cup ripe mango) -> 1 cup ripe mango (2263ms) What is the inner peel of an orange called? 2 large avocados -15.301287009071912 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (2 sour oranges, diced, 2 large avocados) -> 2 large avocados (2263ms) What is the inner peel of an orange called? orange segments -15.315318570106077 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (orange salsa?combine, diced, orange segments) -> orange segments (2263ms) What is the inner peel of an orange called? 1 lime -15.318462781016137 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, quarter, $x) -> (2 oranges, quartered, 1 lime) -> 1 lime (1316ms) What is the inner peel of an orange called? hamburger meat -15.327056445647905 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (Orange Mix, diced onion in, hamburger meat) -> hamburger meat (2267ms) What is the inner peel of an orange called? 2 14 oz -15.331398791972136 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (red , yellow and orange, roughly diced, 2 14 oz) -> 2 14 oz (2266ms) What is the inner peel of an orange called? 1 Tbsp parsley -15.344104555564002 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (1 orange, diced, 1 Tbsp parsley) -> 1 Tbsp parsley (2266ms) What is the inner peel of an orange called? a bit -15.352047551084398 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (Her orange hair, had faded, a bit) -> a bit (2266ms) What is the inner peel of an orange called? 1 small onion -15.360020068890625 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, quarter, $x) -> (1 oranges, quartered, 1 small onion) -> 1 small onion (1316ms) What is the inner peel of an orange called? 1 cup jicama -15.360020068890625 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (1 orange, diced, 1 cup jicama) -> 1 cup jicama (2266ms) What is the inner peel of an orange called? 1 green bell pepper -15.363180847683097 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (1 orange bell pepper, diced, 1 green bell pepper) -> 1 green bell pepper (2266ms) What is the inner peel of an orange called? 1 sm -15.370630463810668 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, quarter, $x) -> (orange ,, quartered, 1 sm) -> 1 sm (1316ms) What is the inner peel of an orange called? ? 1 kiwi -15.37465924942774 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (1 orange, diced, ? 1 kiwi) -> ? 1 kiwi (2266ms) What is the inner peel of an orange called? 1 stalk celery -15.377704060424032 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (orange, diced, 1 stalk celery) -> 1 stalk celery (2266ms) What is the inner peel of an orange called? Highway 76 -15.387667802150183 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, to take i, $x) -> (Los Angeles / Orange County, Take I-5 south to, Highway 76) -> Highway 76 (1316ms) What is the inner peel of an orange called? fresh figs -15.411973395950898 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (Sassy Fig Orange Jam 1 1/2 cups, diced, fresh figs) -> fresh figs (2266ms) What is the inner peel of an orange called? 1/2 cup fresh cilantro -15.420443780238118 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (orange zest 1 cup corn, diced, 1/2 cup fresh cilantro) -> 1/2 cup fresh cilantro (2266ms) What is the inner peel of an orange called? the bottom -15.439494237743965 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be burnt, $x) -> (the orange, might be burnt on, the bottom) -> the bottom (2266ms) What is the inner peel of an orange called? a darker color -15.460637100418262 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (a bright-orange or red, fades into, a darker color) -> a darker color (2266ms) What is the inner peel of an orange called? Black satin -15.528834016165149 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (Flo-orange, fade to, Black satin) -> Black satin (2267ms) What is the inner peel of an orange called? 3-4 minutes -15.551167367450029 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (red-orange object, faded after, 3-4 minutes) -> 3-4 minutes (2270ms) What is the inner peel of an orange called? white -15.552538329659638 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (an orange, fading, $x) -> (an orange, almost faded to, white) -> white (1051ms) What is the inner peel of an orange called? the March -15.566905403164746 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be draw, $x) -> (The orange trend line, is drawn from, the March) -> the March (2270ms) What is the inner peel of an orange called? again -15.584870183819534 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> (oranges, peeled, again) -> again (1051ms) What is the inner peel of an orange called? Dissolve -15.621310195828798 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (oranges, diced, Dissolve) -> Dissolve (2270ms) What is the inner peel of an orange called? the house -15.667473014605825 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be burnt, $x) -> (orange peel, may be burned in, the house) -> the house (2270ms) What is the inner peel of an orange called? nostalgia -15.714125354091465 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be burnt, $x) -> (the oranges, is mutely burning, nostalgia) -> nostalgia (2270ms) What is the inner peel of an orange called? the market -15.715794177772292 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be drive, $x) -> (Orange, is driving, the market) -> the market (2270ms) What is the inner peel of an orange called? 1868 -15.735758083592037 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be burnt, $x) -> (The first Orange County Courthouse, was burned in, 1868) -> 1868 (2270ms) What is the inner peel of an orange called? lavender and indigo -15.781081641742865 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (Crimson and orange, had faded to, lavender and indigo) -> lavender and indigo (2270ms) What is the inner peel of an orange called? the mine site -15.795202592828552 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be drive, $x) -> (Orange, is a beautiful 20 minute drive from, the mine site) -> the mine site (2270ms) What is the inner peel of an orange called? thousands -15.868226443386565 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be draw, $x) -> (the Orange Bowl, is expected to draw, thousands) -> thousands (2270ms) What is the inner peel of an orange called? the global restaurant chain -15.90264011844505 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be draw, $x) -> (orange shorts, are the main draw at, the global restaurant chain) -> the global restaurant chain (2273ms) What is the inner peel of an orange called? the final mixture -15.907001642490483 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be fold, $x) -> (one orange, was also folded into, the final mixture) -> the final mixture (1080ms) What is the inner peel of an orange called? the sky -15.945349815724038 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be drift, $x) -> (The orange quarter moon, was drifting low in, the sky) -> the sky (1316ms) What is the inner peel of an orange called? the west -15.962534531075772 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, slowly move, $x) -> (a small orange glow, was seen moving slowly to, the west) -> the west (2273ms) What is the inner peel of an orange called? ice Combine -15.965796092547167 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, quarter, $x) -> (thirds oranges, quartered, ice Combine) -> ice Combine (1316ms) What is the inner peel of an orange called? the town -15.966370481241261 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, slowly move, $x) -> (the dark orange sun, slowly move downward behind, the town) -> the town (2273ms) What is the inner peel of an orange called? the obvious years -15.992828290807388 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be fading, $x) -> (his orange t-shirt, was very faded from, the obvious years) -> the obvious years (2273ms) What is the inner peel of an orange called? the lungs -16.00320130834226 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be rip, $x) -> (the Agent Orange, was ripping out, the lungs) -> the lungs (2273ms) What is the inner peel of an orange called? the value -16.009099897883274 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be draw, $x) -> (The orange vertical line, has been drawn at, the value) -> the value (2273ms) What is the inner peel of an orange called? the crowd -16.051796183253064 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, just fall, $x) -> (a radiant orange dusk, was just falling over, the crowd) -> the crowd (2273ms) What is the inner peel of an orange called? extinction -16.05651938924899 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be drive, $x) -> (The green and orange races, were driven to, extinction) -> extinction (2273ms) What is the inner peel of an orange called? the dirt -16.07369363064654 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (The orange, faded from, the dirt) -> the dirt (2273ms) What is the inner peel of an orange called? attention -16.09217978318683 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be draw, $x) -> (The Orange NST Chronograph, is sure to draw, attention) -> attention (2273ms) What is the inner peel of an orange called? the laboring -16.099086903606477 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be draw, $x) -> (Orange membership, was drawn from, the laboring) -> the laboring (2273ms) What is the inner peel of an orange called? the fastest -16.112299742672338 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be burnt, $x) -> (the orange candle, was going to burn, the fastest) -> the fastest (2273ms) What is the inner peel of an orange called? commuters -16.132131943398868 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be draw, $x) -> (South Orange, is a big draw to, commuters) -> commuters (2275ms) What is the inner peel of an orange called? the atmosphere -16.16098074221766 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be fading, $x) -> (The orange tint, was fading from, the atmosphere) -> the atmosphere (2275ms) What is the inner peel of an orange called? the ongoing transformation -16.16144712045691 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be drive, $x) -> (?Orange, is helping to drive, the ongoing transformation) -> the ongoing transformation (2275ms) What is the inner peel of an orange called? bankruptcy -16.174761816603258 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be drive, $x) -> (Orange County, is driven into, bankruptcy) -> bankruptcy (2275ms) What is the inner peel of an orange called? the hotel -16.178801279560656 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be drive, $x) -> (Orange, is located a short drive from, the hotel) -> the hotel (2275ms) What is the inner peel of an orange called? insurance -16.187794119745686 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be drive, $x) -> (South Orange County, are driving without, insurance) -> insurance (2275ms) What is the inner peel of an orange called? the gaze -16.20981279334465 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be draw, $x) -> (Orange County?s water utility, has been drawing, the gaze) -> the gaze (2275ms) What is the inner peel of an orange called? the rain -16.22238808665566 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, just drive, $x) -> (SolidOrange, just drove in, the rain) -> the rain (2275ms) What is the inner peel of an orange called? the pocket -16.254842311398562 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be tuck, $x) -> (His little orange book, was tucked in, the pocket) -> the pocket (2275ms) What is the inner peel of an orange called? nails -16.258650742882296 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be rub, $x) -> (The raw orange peels, can be rubbed on, nails) -> nails (2275ms) What is the inner peel of an orange called? the center -16.342160075070705 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (Red , yellow , and orange, had faded in, the center) -> the center (2275ms) What is the inner peel of an orange called? the hall or parking lot -16.342759754693525 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, would roll, $x) -> (oranges, would roll down, the hall or parking lot) -> the hall or parking lot (2275ms) What is the inner peel of an orange called? colour -16.352519549498226 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (The orange, faded, colour) -> colour (2278ms) What is the inner peel of an orange called? zucchini -16.410876589802726 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (orange peel, diced, zucchini) -> zucchini (2277ms) What is the inner peel of an orange called? the oven -16.43544646939024 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be tuck, $x) -> (these orange-gold tubers, are tucked into, the oven) -> the oven (2278ms) What is the inner peel of an orange called? the menu -16.463941269027806 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, to float, $x) -> (orange cream, floats to, the menu) -> the menu (2278ms) What is the inner peel of an orange called? pears -16.484235509780152 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (the orange pieces, diced, pears) -> pears (2278ms) What is the inner peel of an orange called? the night air -16.500689035528197 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (bright orange city buses, faded into, the night air) -> the night air (2278ms) What is the inner peel of an orange called? the flesh -16.500984673823574 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, scoop out, $x) -> (the orange, scoop out, the flesh) -> the flesh (2278ms) What is the inner peel of an orange called? the canvas -16.50465097616875 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, to float, $x) -> (vivid oranges, seem to float above, the canvas) -> the canvas (2278ms) What is the inner peel of an orange called? the middle -16.58509531854264 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, mash, $x) -> (orange Zig Zags, mashed into, the middle) -> the middle (2278ms) What is the inner peel of an orange called? the trout -16.602240299728024 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, have slip, $x) -> (deep orange mucus-covered roe, had slipped out of, the trout) -> the trout (2278ms) What is the inner peel of an orange called? the testing fork -16.612917616004466 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, mash, $x) -> (The orange flesh, mashed up beautifully with, the testing fork) -> the testing fork (2280ms) What is the inner peel of an orange called? the horizon -16.629270050932583 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (the orange glow, finally fades over, the horizon) -> the horizon (2280ms) What is the inner peel of an orange called? the hive -16.655589015174492 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, have roll, $x) -> (Orange Juice, has a very important roll in, the hive) -> the hive (2280ms) What is the inner peel of an orange called? almonds -16.65990300726032 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, flake, $x) -> (orange juice, flaked, almonds) -> almonds (2280ms) What is the inner peel of an orange called? the painful light -16.718751587297007 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, squint, $x) -> (orange-twilight sky, squinted at, the painful light) -> the painful light (2280ms) What is the inner peel of an orange called? rocks -16.729377068163746 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be scrape, $x) -> (The black , orange and green lichens, are scraped from, rocks) -> rocks (2280ms) What is the inner peel of an orange called? part -16.75100920303359 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be drive, $x) -> (TechPortal Orange, have been driven in, part) -> part (2280ms) What is the inner peel of an orange called? coconut -16.78280649808159 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, flake, $x) -> (mandarin oranges, flaked, coconut) -> coconut (2280ms) What is the inner peel of an orange called? sight -16.8064427804226 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (the entire orange light/object, faded out of, sight) -> sight (2280ms) What is the inner peel of an orange called? landfill -16.809644854538142 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, get take, $x) -> (your orange rubbish bag, gets taken to, landfill) -> landfill (2280ms) What is the inner peel of an orange called? the army -16.81494465626162 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, just fall, $x) -> (the Orange Free State, had just fallen to, the army) -> the army (2280ms) What is the inner peel of an orange called? prunes -16.81640600294162 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, stew, $x) -> (orange cream, stewed, prunes) -> prunes (2280ms) What is the inner peel of an orange called? the sunset -16.817771699802794 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (Orange County, slowly fades away into, the sunset) -> the sunset (2280ms) What is the inner peel of an orange called? mushrooms -16.821353292238257 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (pineapple or orange marmalade, diced, mushrooms) -> mushrooms (2280ms) What is the inner peel of an orange called? paint -16.850112476591896 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be draw, $x) -> (Oranges, were drawn under, paint) -> paint (2282ms) What is the inner peel of an orange called? time -16.872781144744355 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (bright oranges and pinks, faded over, time) -> time (2282ms) What is the inner peel of an orange called? buttercup -16.89318226360831 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (woodsy brown , rusty orange, faded, buttercup) -> buttercup (2282ms) What is the inner peel of an orange called? driftwood -16.910622960921028 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (burnt oranges, faded, driftwood) -> driftwood (2282ms) What is the inner peel of an orange called? year -16.91158413256704 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be burnt, $x) -> (average 14 Orange Halls, have been burnt per, year) -> year (2282ms) What is the inner peel of an orange called? tomatoes -16.924506626406384 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, dice, $x) -> (oranges, diced, tomatoes) -> tomatoes (2282ms) What is the inner peel of an orange called? board -16.925003922167043 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, stow, $x) -> (oranges, were stowed on, board) -> board (2282ms) What is the inner peel of an orange called? edges -16.969139534880682 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (orange card cover, faded at, edges) -> edges (2282ms) What is the inner peel of an orange called? black -16.976936819666776 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (the orange, does fade into, black) -> black (2282ms) What is the inner peel of an orange called? night -17.104501264335422 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (the purple and orange velvet clouds, fade into, night) -> night (2282ms) What is the inner peel of an orange called? turquoise -17.14546711697954 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (pink-orange , dirty white ,, faded, turquoise) -> turquoise (2284ms) What is the inner peel of an orange called? yellow -17.1719930779285 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (light orange/tawny gold hues, fade to, yellow) -> yellow (2284ms) What is the inner peel of an orange called? input -17.205669859437545 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be drive, $x) -> (OrangeFS development, tends to be driven by, input) -> input (2284ms) What is the inner peel of an orange called? front -17.30650505467627 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, just run, $x) -> (The famous West Orange Trail, runs just in, front) -> front (2284ms) What is the inner peel of an orange called? widgets -17.33552066136501 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, have roll, $x) -> (Orange, had only rolled out, widgets) -> widgets (2284ms) What is the inner peel of an orange called? hours -17.42898725224845 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, stew, $x) -> (harsh orange pekoe tea, stew for, hours) -> hours (2284ms) What is the inner peel of an orange called? blue -17.46458282073209 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (orange sparks, faded to, blue) -> blue (2284ms) What is the inner peel of an orange called? brown -17.480329313121256 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (those fabulous reds and oranges, fade to, brown) -> brown (2284ms) What is the inner peel of an orange called? greens -17.533257997007965 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (pretty reds , oranges and, faded, greens) -> greens (2284ms) What is the inner peel of an orange called? spine -17.564497201613378 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (262p orange paperback, faded, spine) -> spine (2284ms) What is the inner peel of an orange called? potatoes -18.19085833021683 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, mash, $x) -> (orange, mashed, potatoes) -> potatoes (2285ms) What is the inner peel of an orange called? points -18.215373528060933 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, be be draw, $x) -> (orange, is its own Will draw for, points) -> points (2285ms) What is the inner peel of an orange called? away -18.312321296360032 What is the inner peel of an orange called? -> what be the inner [ peel of an orange ] call ? -> what be your peel of an orange ? -> $x: (an orange, peel, $x) -> $x: (orange, peel, $x) -> $x: (orange, fading, $x) -> (the orange, faded, away) -> away (2285ms) Where is Rider College located? Jamaica -6.723843521347898 Where is Rider College located? -> where be [ rider ] college locate ? -> what be the location of rider ? -> $x: (rider, location, $x) -> (Honeychile Rider, Tryst location(s), Jamaica) -> Jamaica (8702ms) Where is Rider College located? Agoura -6.77149091438644 Where is Rider College located? -> where be [ rider ] college locate ? -> what be the location of rider ? -> $x: (rider, location, $x) -> (Night Riders, Notable filming locations, Agoura) -> Agoura (8806ms) Where is Rider College located? Prescott -6.77149091438644 Where is Rider College located? -> where be [ rider ] college locate ? -> what be the location of rider ? -> $x: (rider, location, $x) -> (Easy Rider, Notable filming locations, Prescott) -> Prescott (8805ms) Where is Rider College located? Cottonwood -6.77149091438644 Where is Rider College located? -> where be [ rider ] college locate ? -> what be the location of rider ? -> $x: (rider, location, $x) -> (Easy Rider, Notable filming locations, Cottonwood) -> Cottonwood (8702ms) Where is Rider College located? Flagstaff -6.77149091438644 Where is Rider College located? -> where be [ rider ] college locate ? -> what be the location of rider ? -> $x: (rider, location, $x) -> (Easy Rider, Notable filming locations, Flagstaff) -> Flagstaff (8702ms) Where is Rider College located? Tucson -6.77149091438644 Where is Rider College located? -> where be [ rider ] college locate ? -> what be the location of rider ? -> $x: (rider, location, $x) -> (Easy Rider, Notable filming locations, Tucson) -> Tucson (8702ms) Where is Rider College located? Ottawa -6.77149091438644 Where is Rider College located? -> where be [ rider ] college locate ? -> what be the location of rider ? -> $x: (rider, location, $x) -> (Ottawa Junior Riders, Sports Team Location, Ottawa) -> Ottawa (8702ms) Where is Rider College located? Lawrenceville -6.842962003944256 Where is Rider College located? -> where be [ rider ] college locate ? -> what be the location of rider ? -> $x: (rider, location, $x) -> (Rider Broncs men's basketball, Sports Team Location, Lawrenceville) -> Lawrenceville (8806ms) Where is Rider College located? New Zealand -6.845863689381227 Where is Rider College located? -> where be [ rider ] college locate ? -> what be the location of rider ? -> $x: (rider, location, $x) -> (Whale Rider, Notable filming locations, New Zealand) -> New Zealand (8807ms) Where is Rider College located? New Orleans -6.845863689381227 Where is Rider College located? -> where be [ rider ] college locate ? -> what be the location of rider ? -> $x: (rider, location, $x) -> (Easy Rider, Notable filming locations, New Orleans) -> New Orleans (8805ms) Where is Rider College located? Mescal -6.870450884543415 Where is Rider College located? -> where be [ rider ] college locate ? -> what be the location of rider ? -> $x: (rider, location, $x) -> (Legend of the Phantom Rider, Notable filming locations, Mescal) -> Mescal (8805ms) Where is Rider College located? Nashville -7.20031745173333 Where is Rider College located? -> where be [ rider ] college locate ? -> what be the location of rider ? -> $x: (rider, location, $x) -> (Kentucky-Rider 1993 NCAA Men's Division I Basketball Tournament Game, Location(s), Nashville) -> Nashville (8887ms) Where is Rider College located? Frisco -7.20031745173333 Where is Rider College located? -> where be [ rider ] college locate ? -> what be the location of rider ? -> $x: (rider, location, $x) -> (Frisco RoughRiders, Sports Team Location, Frisco) -> Frisco (8888ms) Where is Rider College located? Bronc -7.974099722002956 Where is Rider College located? -> where be [ rider ] college locate ? -> what be the mascot of rider university ? -> $x: (rider university, mascot, $x) -> (Rider University, Mascot, Bronc) -> Bronc (8887ms) Where is Rider College located? New Jersey -8.668728561224757 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> (New Jersey, Instance Of, state) (Rider University, is located in, New Jersey) -> New Jersey (7687ms) Where is Rider College located? Singapore -8.954506412874878 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> (Singapore, Instance Of, state) (1-800-780-5733 Riders Lodge, is located in, Singapore) -> Singapore (7687ms) Where is Rider College located? Jut -9.529807292780134 Where is Rider College located? -> where be [ rider ] college locate ? -> what be near rider ? -> $x: ($x, be near, rider) -> (Jut, was nowhere near, your rider) -> Jut (7786ms) Where is Rider College located? Southern California -9.57002059254417 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> (Southern California, Instance Of, state) (riders, are located in, Southern California) -> Southern California (7786ms) Where is Rider College located? Africa -9.866024191315631 Where is Rider College located? -> where be [ rider ] college locate ? -> when be rider build ? -> $x: (rider, be build in, $x) -> (Riders, is building capacity in, Africa) -> Africa (18797ms) Where is Rider College located? Ipswich -9.982345440184183 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> (Ipswich, Instance Of, area around the state) (EdgeRiders, is located in, Ipswich) -> Ipswich (7844ms) Where is Rider College located? safety and comfort -10.325378643881255 Where is Rider College located? -> where be [ rider ] college locate ? -> what be the location of rider ? -> $x: (rider, location, $x) -> (bicycle riders, can reach the location in, safety and comfort) -> safety and comfort (8888ms) Where is Rider College located? any shuttle -10.340185869024378 Where is Rider College located? -> where be [ rider ] college locate ? -> what be the location of rider ? -> $x: (rider, location, $x) -> (riders, can track the location of, any shuttle) -> any shuttle (8888ms) Where is Rider College located? southern California -10.413121083316227 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> (southern California, Instance Of, state) (riders, are located in, Southern California) -> southern California (7946ms) Where is Rider College located? Pennsylvania -10.76838597889708 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, from visit, $x) -> (Pennsylvania, Instance Of, state) (a third rider, was visiting from, Pennsylvania) -> Pennsylvania (15219ms) Where is Rider College located? NJ New Jersey -10.911013618560675 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> (NJ New Jersey, Instance Of, state) (Rider University, is located in, New Jersey) -> NJ New Jersey (7946ms) Where is Rider College located? SCLC -11.203776792247526 Where is Rider College located? -> where be [ rider ] college locate ? -> when be rider build ? -> $x: (rider, be build in, $x) -> (A five rider carousel, was built in, SCLC) -> SCLC (18797ms) Where is Rider College located? the pack -11.482093377779329 Where is Rider College located? -> where be [ rider ] college locate ? -> what be near rider ? -> $x: ($x, be near, rider) -> (the pack, is positioned near, the riders mouth) -> the pack (7946ms) Where is Rider College located? Stuntman Kidd -11.490024329300626 Where is Rider College located? -> where be [ rider ] college locate ? -> what be near rider ? -> $x: ($x, be near, rider) -> $x: ($x, near, rider) -> (Stuntman Kidd, nears, marathon end Former stunt rider Eddie Kidd) -> Stuntman Kidd (9003ms) Where is Rider College located? The Board -11.737952070893673 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, modelling, state) (rider, locate, $x) -> (The Board, was modeled on, the Massachusetts State Board) (the rider, locate, the board) -> The Board (17382ms) Where is Rider College located? Possession -11.808498891882742 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, in finding, $x) -> (Possession, Instance Of, mental state) (the rider, was found to be in, possession) -> Possession (11465ms) Where is Rider College located? Stevens -11.816827408704093 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, will trust, $x) -> (Stevens, Instance Of, state) (Planet Bike rider Katie Compton, will be trusting, Stevens) -> Stevens (15219ms) Where is Rider College located? Houston -11.829596069032652 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, in finding, $x) -> (Houston, Instance Of, state) (Sirrus-Rider, find similar routes in, Houston) -> Houston (11465ms) Where is Rider College located? Steven -11.891767662759932 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, will trust, $x) -> (Steven, Instance Of, multi-state champion) (Planet Bike rider Katie Compton, will be trusting, Stevens) -> Steven (15894ms) Where is Rider College located? Stanford -11.933339516907157 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, can connect with, $x) -> (Stanford, Instance Of, united state university) (riders, can connect with, Stanford) -> Stanford (16107ms) Where is Rider College located? VWS members -12.000845175288351 Where is Rider College located? -> where be [ rider ] college locate ? -> what be the location of rider ? -> $x: ($x, be the location of, rider) -> $x: ($x, location of, rider) -> (VWS members, communicate the location of, horses and riders) -> VWS members (9002ms) Where is Rider College located? Criteria -12.118302699233528 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, comply, $x) -> (Criteria, Instance Of, state initiative) (The rider training programs, shall comply with, criteria) -> Criteria (14850ms) Where is Rider College located? Nina DePetris -12.155186173818112 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider ? -> $x: (rider, state, $x) -> (dressage riders, stated, Nina DePetris) -> Nina DePetris (18640ms) Where is Rider College located? the port -12.184371033743412 Where is Rider College located? -> where be [ rider ] college locate ? -> what be the location of rider ? -> $x: (rider, location, $x) -> (rider Dave Feazell, changed the location of, the port) -> the port (8888ms) Where is Rider College located? The Station -12.185012785463172 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, will view, $x) -> (The Station, Instance Of, state-legislative mandated facility) (Riders, will even be able to get an aerial view of, the station) -> The Station (13337ms) Where is Rider College located? Mike Karsting -12.274304656414472 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider ? -> $x: (rider, state, $x) -> (the top off-road motorcycle riders, stated, Mike Karsting) -> Mike Karsting (18640ms) Where is Rider College located? Area -12.29574564228178 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, in finding, $x) -> (Area, Instance Of, state) (no okada rider, must be found in, areas) -> Area (11465ms) Where is Rider College located? an email -12.31586194428896 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider ? -> $x: (rider, state, $x) -> (Australian rider Baden Cooke, stated in, an email) -> an email (18640ms) Where is Rider College located? Scranton -12.319673488098854 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, in finding, $x) -> (Scranton, Instance Of, state) (ATV riders, found her body in, Scranton) -> Scranton (11465ms) Where is Rider College located? Friends -12.36718596568127 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, to spend time with, $x) -> (Friends, Instance Of, United state sitcom) (Some riders, choose to spend time with, friends) -> Friends (14016ms) Where is Rider College located? Friend -12.398486637623492 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, to spend time with, $x) -> (Friend, Instance Of, state pratrol person) (Some riders, choose to spend time with, friends) -> Friend (14016ms) Where is Rider College located? John Harrel -12.42235139253263 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider ? -> $x: (rider, state, $x) -> (rider acceptability, ? states, John Harrel) -> John Harrel (18639ms) Where is Rider College located? the Olympics -12.437756032332459 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider ? -> $x: (rider, state, $x) -> (riders, have represented the United States in, the Olympics) -> the Olympics (18640ms) Where is Rider College located? daily -12.452969784532748 Where is Rider College located? -> where be [ rider ] college locate ? -> what be the location of rider ? -> $x: (rider, location, $x) -> (more than 1,000 riders, use that location, daily) -> daily (8915ms) Where is Rider College located? night -12.508229531854525 Where is Rider College located? -> where be [ rider ] college locate ? -> what be the location of rider ? -> $x: (rider, location, $x) -> (Night Rider, Mastered every location at, night) -> night (8915ms) Where is Rider College located? Hill -12.810221505901705 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, need to access, $x) -> (Hill, Instance Of, state employee) (the rider, needs access to, hills) -> Hill (10776ms) Where is Rider College located? Title V -12.885086389249167 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, in finding, $x) -> (Title V, Instance Of, state agency) (the rider, is found in, Title V) -> Title V (11465ms) Where is Rider College located? Hall -12.91212749305543 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider ? -> $x: (rider, state, $x) -> (In my opinion , Julia was a perfect rider, states, Hall) -> Hall (18640ms) Where is Rider College located? real estate -12.974632958746819 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, of buying, $x) -> (real estate, Instance Of, state asset) (later every rider, buys a ?cheap? piece of, real estate) -> real estate (10776ms) Where is Rider College located? construction project -13.133126259513064 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, navigate to, $x) -> (construction project, Instance Of, state-sponsored prestige project) (time riders, will have to navigate around, construction projects) -> construction project (17382ms) Where is Rider College located? the style -13.220629954036902 Where is Rider College located? -> where be [ rider ] college locate ? -> when be rider build ? -> $x: (rider, be build in, $x) -> (The Stock Rider, is built in, the style) -> the style (18797ms) Where is Rider College located? Real estate -13.245195107217516 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, of buying, $x) -> (Real estate, Instance Of, state) (later every rider, buys a ?cheap? piece of, real estate) -> Real estate (11592ms) Where is Rider College located? Will county -13.331128217683172 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, can also access, $x) -> (Will county, Instance Of, county in the state) (Riders, also can access, Will County) -> Will county (14142ms) Where is Rider College located? il Houston -13.38817002939754 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, in finding, $x) -> (il Houston, Instance Of, state) (Sirrus-Rider, find similar routes in, Houston) -> il Houston (11592ms) Where is Rider College located? Pre existing conditions -13.477505204821195 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, can list, $x) -> (Pre existing conditions, Instance Of, stated cause) (the rider/driver, can list, pre-existing conditions) -> Pre existing conditions (12840ms) Where is Rider College located? ? 1st grade children -13.531211130343348 Where is Rider College located? -> where be [ rider ] college locate ? -> what be near rider ? -> $x: ($x, be near, rider) -> $x: ($x, near, rider) -> (? 1st grade children, gather near, 1st grade car rider door) -> ? 1st grade children (9003ms) Where is Rider College located? possession -13.560976046956373 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, in finding, $x) -> (possession, Instance Of, mental state) (the rider, was found to be in, possession) -> possession (11879ms) Where is Rider College located? southern california -13.57212557183951 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: (state, be a state or province located in the geopolitical location, $x) (rider, locate, $x) -> (STATES, is a state or province located in the geopolitical location, southern california) (riders, are located in, Southern California) -> southern california (11879ms) Where is Rider College located? the dog attack -13.739398961390819 Where is Rider College located? -> where be [ rider ] college locate ? -> what be near rider ? -> $x: ($x, be near, rider) -> $x: ($x, near, rider) -> (the dog attack, occurred near, East Rider Street) -> the dog attack (9003ms) Where is Rider College located? SINGAPORE -13.887767015847963 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, be a country located in the geopolitical location, state) (rider, locate, $x) -> (SINGAPORE, is a country located in the geopolitical location, STATES) (1-800-780-5733 Riders Lodge, is located in, Singapore) -> SINGAPORE (13558ms) Where is Rider College located? criterion -13.900603778550122 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, comply, $x) -> (criterion, Instance Of, state) (The rider training programs, shall comply with, criteria) -> criterion (14849ms) Where is Rider College located? criteria -13.904805931661018 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, comply, $x) -> (criteria, Instance Of, state) (The rider training programs, shall comply with, criteria) -> criteria (14849ms) Where is Rider College located? point -13.996583602925266 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, from finding, $x) -> (point, Instance Of, state) (transit riders, find their way from, points) -> point (14849ms) Where is Rider College located? the depth -14.016598457448 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider ? -> $x: (rider, state, $x) -> (riders, also states, the depth) -> the depth (18640ms) Where is Rider College located? the expiration -14.149817650143506 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider ? -> $x: (rider, state, $x) -> (Such rider, shall state the approximate date of, the expiration) -> the expiration (18797ms) Where is Rider College located? hill -14.155647664880233 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, need to access, $x) -> (hill, Instance Of, region of the state) (the rider, needs access to, hills) -> hill (11879ms) Where is Rider College located? friend -14.163504649174605 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, to spend time with, $x) -> (friend, Instance Of, state police officer) (Some riders, choose to spend time with, friends) -> friend (14016ms) Where is Rider College located? The board -14.338518727153621 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, be a by, state) (rider, locate, $x) -> (The board, was dealt a difficult hand by, the state) (the rider, locate, the board) -> The board (16326ms) Where is Rider College located? The Sign -14.480278008310535 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, instance of, state) (rider, can look for, $x) -> (The Sign, Instance Of, good Western-mystery hybrid, featuring Arizona State Trooper Ben Hale) (Riders, can look for, the signs) -> The Sign (16606ms) Where is Rider College located? 3-mm thick steel plate -14.617140636199794 Where is Rider College located? -> where be [ rider ] college locate ? -> when be rider build ? -> $x: (rider, be build in, $x) -> (All Riders, are built in, 3-mm thick steel plate) -> 3-mm thick steel plate (18797ms) Where is Rider College located? the project -14.624230755831022 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, be a by, state) (rider, locate, $x) -> (the project, was a joint effort by, the State Government) (westbound riders, is located west of, the Project) -> the project (16326ms) Where is Rider College located? The project -14.697005142115113 Where is Rider College located? -> where be [ rider ] college locate ? -> what state be rider locate ? -> $x: ($x, instance of, state) (rider, locate, $x) -> $x: ($x, be a by, state) (rider, locate, $x) -> (The project, was also considered a high priority by, the State) (westbound riders, is located west of, the Project) -> The project (16326ms) Where is Rider College located? 1902 -14.77692997333474 Where is Rider College located? -> where be [ rider ] college locate ? -> when be rider build ? -> $x: (rider, be build in, $x) -> (The Rider House, was built in, 1902) -> 1902 (18797ms) What is the heaviest naturally occurring element? crossword puzzle clue -4.779116976579605 What is the heaviest naturally occurring element? -> $x: (the heaviest naturally occurring element, instance of, $x) -> $x: (heaviest naturally occur element, instance of, $x) -> (Heaviest naturally occurring element, Instance Of, crossword puzzle clue) -> crossword puzzle clue (5401ms) What is the heaviest naturally occurring element? element -7.190815481989836 What is the heaviest naturally occurring element? -> $x: (the heaviest naturally occurring element, instance of, $x) -> $x: (heaviest naturally occur element, instance of, $x) -> (heaviest naturally occurring chemical element, Instance Of, element) -> element (5401ms) what is Speedy Claxton's real name? Speedy Claxton -8.022953487716052 what is Speedy Claxton's real name? -> what be [ speedy claxton ] s real name ? -> what be speedy claxton s name ? -> $x: (speedy claxton, name, $x) -> (Speedy Claxton, Daylife Topic Name, Speedy Claxton) -> Speedy Claxton (8843ms) What is the capital of Italy? Florence Italy 2.4146375686835606 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Florence Italy, was actually the capital of, Italy) -> Florence Italy (4485ms) What is the capital of Italy? Romans Rome Rome 2.364002325127956 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Romans Rome Rome, is the capital of, Italy) -> Romans Rome Rome (4486ms) What is the capital of Italy? Emilia-Romagna 2.2630374781369906 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Emilia-Romagna, is the gastronomic capital of, Italy) -> Emilia-Romagna (4485ms) What is the capital of Italy? Rome Rome Rome 2.062184116270105 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Rome Rome Rome, is the capital of, Italy) -> Rome Rome Rome (4486ms) What is the capital of Italy? Florence 1.9461090416576043 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Florence, was the capital of, Italy) -> Florence (4980ms) What is the capital of Italy? neighbouring Riccione 1.8876901549271912 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (neighbouring Riccione, is the clubbing capital of, Italy) -> neighbouring Riccione (4980ms) What is the capital of Italy? Rome 1.872730415770571 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Rome, Is the capital of, Italy) -> Rome (4980ms) What is the capital of Italy? Firenze 1.794132513644377 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Firenze, was the capital of, Italy) -> Firenze (12469ms) What is the capital of Italy? Turin 1.78568274331953 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Turin, was the capital of, Italy) -> Turin (12469ms) What is the capital of Italy? Italy Florence 1.773095612585871 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Italy Florence, is the artistic capital of, Italy) -> Italy Florence (12469ms) What is the capital of Italy? Rome Rome 1.7471768411428368 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Rome Rome, has been the capital of, Italy) -> Rome Rome (12469ms) What is the capital of Italy? Florence Florence 1.744801278834716 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Florence Florence, is the artistic capital of, Italy) -> Florence Florence (12469ms) What is the capital of Italy? The 'Eternal City 1.6852478351415225 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (The 'Eternal City, is the capital of, Italy) -> The 'Eternal City (12845ms) What is the capital of Italy? E Rome 1.6631780789927633 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (E Rome, is the capital of, Italy) -> E Rome (12986ms) What is the capital of Italy? Major Cities 1.6572657183779609 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Major Cities, is the capital of, Italy) -> Major Cities (12986ms) What is the capital of Italy? close Rome 1.6472625129638452 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (close Rome, is the capital of, Italy) -> close Rome (12986ms) What is the capital of Italy? Perugia 1.5806530838961348 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Perugia, is the capital city of, Italy) -> Perugia (13437ms) What is the capital of Italy? Salerno 1.5205276180871432 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Salerno, was the capital city of, Italy) -> Salerno (13876ms) What is the capital of Italy? Student Blogger Florence 1.520024525133096 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Student Blogger Florence, has been the capital of, Italy) -> Student Blogger Florence (13876ms) What is the capital of Italy? Bologna 1.5138511889643311 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Bologna, is also the culinary capital of, Italy) -> Bologna (13876ms) What is the capital of Italy? Ask 1.5103835970548936 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Ask, is the capital of, Italy) -> Ask (13876ms) What is the capital of Italy? a Roman Rome Rome 1.5027764297686175 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (a Roman Rome Rome, is the capital of, Italy) -> a Roman Rome Rome (13876ms) What is the capital of Italy? National government Rome 1.459782319933221 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (National government Rome, is the national capital of, Italy) -> National government Rome (14052ms) What is the capital of Italy? Discussion Forum Rome Rome 1.4566729408096726 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Discussion Forum Rome Rome, is the capital of, Italy) -> Discussion Forum Rome Rome (14052ms) What is the capital of Italy? an extremely beautiful country 1.423704077086605 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (an extremely beautiful country, is the capital of, Italy) -> an extremely beautiful country (14052ms) What is the capital of Italy? an extremely attractive city 1.423639508959349 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (an extremely attractive city, is the capital of, Italy) -> an extremely attractive city (14052ms) What is the capital of Italy? Local Information Rome 1.4067304507375922 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Local Information Rome, is the capital of, Italy) -> Local Information Rome (14113ms) What is the capital of Italy? Venice 1.4059590344908512 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (Kingdom of Italy, Capital, Venice) -> Venice (14113ms) What is the capital of Italy? Milan 1.4059590344908512 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (Kingdom of Italy, Capital, Milan) -> Milan (14114ms) What is the capital of Italy? world history Rome 1.3798864290995345 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (world history Rome, is the capital city of, Italy) -> world history Rome (14113ms) What is the capital of Italy? Rome Colosseum Rome 1.357642799031777 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Rome Colosseum Rome, is the capital city of, Italy) -> Rome Colosseum Rome (14363ms) What is the capital of Italy? a . Rome 1.357642799031777 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (a . Rome, is the capital of, Italy) -> a . Rome (14363ms) What is the capital of Italy? Ravenna 1.314906719007444 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Ravenna, was then the Roman capital of, Italy) -> Ravenna (14363ms) What is the capital of Italy? Johnny 1.2858022404815497 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Johnny, is the capital of, Italy) -> Johnny (14450ms) What is the capital of Italy? Society Rome ? 1.2773840571422141 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Society Rome ?, is the capital city of, Italy) -> Society Rome ? (14450ms) What is the capital of Italy? close Turin ? 1.267136513278047 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (close Turin ?, was the original capital of, Italy) -> close Turin ? (14450ms) What is the capital of Italy? Rome and Vatican City Rome 1.2485683353435442 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Rome and Vatican City Rome, is the capital of, Italy) -> Rome and Vatican City Rome (14450ms) What is the capital of Italy? Rome Hotel Guide Rome 1.2203385697196447 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Rome Hotel Guide Rome, is the current capital of, Italy) -> Rome Hotel Guide Rome (14450ms) What is the capital of Italy? unified Italy 1.0241068435023557 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (Italy, was the first capital of, unified Italy) -> unified Italy (14601ms) What is the capital of Italy? the Emilia-Romagna 1.0184393787507466 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (northern Italy, is the capital city of, the Emilia-Romagna) -> the Emilia-Romagna (14601ms) What is the capital of Italy? Italy Rome 1.0004942760129674 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Italy Rome, is the capital of, Italy) -> Italy Rome (14601ms) What is the capital of Italy? Tirana 0.8818377110668756 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (Albania under Italy, Capital, Tirana) -> Tirana (15244ms) What is the capital of Italy? Italy 0.7670499558745321 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (Italy Rome, is the capital of, Italy) -> Italy (15243ms) What is the capital of Italy? the 2006 winter Olympics 0.7601626064567417 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (the 2006 winter Olympics, is the capital of, Italy) -> the 2006 winter Olympics (15244ms) What is the capital of Italy? Tuscany ? 0.7446188025430254 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (12:00 pm Florence , Italy ,, is the capital of, Tuscany ?) -> Tuscany ? (15285ms) What is the capital of Italy? Availability Rome 0.6844400967575917 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Availability Rome, is the capital of, Italy) -> Availability Rome (15286ms) What is the capital of Italy? 4 June Rome Rome Rome 0.6779322171088613 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (4 June Rome Rome Rome, is the capital of, Italy) -> 4 June Rome Rome Rome (15286ms) What is the capital of Italy? 1861 Rome 0.6708586731977935 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (1861 Rome, was declared the capital of, Italy) -> 1861 Rome (15286ms) What is the capital of Italy? National Rome 0.6658719188230888 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (National Rome, is the national capital of, Italy) -> National Rome (15648ms) What is the capital of Italy? Latin Roma 0.6284012500934 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Latin Roma, is the capital city of, Italy) -> Latin Roma (15650ms) What is the capital of Italy? February 8-10 Milan 0.4777853946571917 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (February 8-10 Milan, is the economic capital of, Italy) -> February 8-10 Milan (15739ms) What is the capital of Italy? Milan Rome 0.42551373051583385 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Milan Rome, may be the administrative capital of, Italy) -> Milan Rome (15739ms) What is the capital of Italy? Rome 2313 60.05 % Rome 0.37436392004649033 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (Rome 2313 60.05 % Rome, is the capital city of, Italy) -> Rome 2313 60.05 % Rome (15739ms) What is the capital of Italy? the Province 0.35697588649582346 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (Italy, is the capital of, the Province) -> the Province (15856ms) What is the capital of Italy? Naples 0.3505943768273232 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (Italy Napoli, is the capital city of, Naples) -> Naples (15856ms) What is the capital of Italy? Tuscany 0.3169948719672937 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (Italy Florence, is the regional capital of, Tuscany) -> Tuscany (15856ms) What is the capital of Italy? the Siena Province 0.31334802561737396 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (Italy, is the capital of, the Siena Province) -> the Siena Province (15856ms) What is the capital of Italy? Sicily 0.2887651063433945 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (Palermo Italy Palermo, is the capital city of, Sicily) -> Sicily (16131ms) What is the capital of Italy? the Campania Region 0.15282121271884463 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (Italy, is the capital city of, the Campania Region) -> the Campania Region (16201ms) What is the capital of Italy? the Italian island 0.12267525067158358 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (Italy Palermo, is the capital of, the Italian island) -> the Italian island (16201ms) What is the capital of Italy? the Calabria region 0.08773473949019861 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (Italy Catanzaro, is capital of, the Calabria region) -> the Calabria region (16201ms) What is the capital of Italy? the Trentino region 0.08773473949019861 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (Italy Trento, is the capital of, the Trentino region) -> the Trentino region (16200ms) What is the capital of Italy? Veneto 0.0774513421633718 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (Italy, is the capital of, Veneto) -> Veneto (16554ms) What is the capital of Italy? the Italian region 0.07150106006988999 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (Italy Florence, is the capital city of, the Italian region) -> the Italian region (16554ms) What is the capital of Italy? trulli country 0.05030868092223795 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (southern Italy, is the capital of, trulli country) -> trulli country (16554ms) What is the capital of Italy? tasty food and Rome 0.02624032113689001 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (Italy, is arguably the world???s capital of, tasty food and Rome) -> tasty food and Rome (16554ms) What is the capital of Italy? the capital -0.21201693391782195 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (the capital, is now the capital of, Italy) -> the capital (16929ms) What is the capital of Italy? the city -0.28147630375046306 What is the capital of Italy? -> $x: ($x, is the capital of, Italy) -> (the city, is the capital of, Italy) -> the city (17121ms) What is the capital of Italy? Veneto area -0.3755390631318536 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (Venice Italy, is a capital of, Veneto area) -> Veneto area (17364ms) What is the capital of Italy? central Italy -0.4173884941836672 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, be the heart of, Italy) -> (central Italy, is the heart of, Italy) -> central Italy (17601ms) What is the capital of Italy? Province of La Spezia -0.5439690625012423 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of La Spezia, Second level division of, Italy) -> Province of La Spezia (17983ms) What is the capital of Italy? South Tyrol -0.8211135273964281 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (South Tyrol, Second level division of, Italy) -> South Tyrol (18587ms) What is the capital of Italy? Aosta Valley -0.8211135273964281 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, first level division of, Italy) -> (Aosta Valley, First level division of, Italy) -> Aosta Valley (18587ms) What is the capital of Italy? the island -0.8478143596960721 What is the capital of Italy? -> $x: (Italy, capital, $x) -> (ITALY Cagliari, is the capital of, the island) -> the island (18716ms) What is the capital of Italy? Province of Matera -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Matera, Second level division of, Italy) -> Province of Matera (19609ms) What is the capital of Italy? Province of Rieti -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Rieti, Second level division of, Italy) -> Province of Rieti (19810ms) What is the capital of Italy? Province of Mantua -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Mantua, Second level division of, Italy) -> Province of Mantua (19144ms) What is the capital of Italy? Province of Ravenna -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Ravenna, Second level division of, Italy) -> Province of Ravenna (19144ms) What is the capital of Italy? Province of Genoa -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Genoa, Second level division of, Italy) -> Province of Genoa (19144ms) What is the capital of Italy? Province of Pordenone -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Pordenone, Second level division of, Italy) -> Province of Pordenone (19810ms) What is the capital of Italy? Province of Florence -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Florence, Second level division of, Italy) -> Province of Florence (19670ms) What is the capital of Italy? Province of Vercelli -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Vercelli, Second level division of, Italy) -> Province of Vercelli (18948ms) What is the capital of Italy? Province of Pistoia -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Pistoia, Second level division of, Italy) -> Province of Pistoia (19310ms) What is the capital of Italy? Province of Udine -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Udine, Second level division of, Italy) -> Province of Udine (19810ms) What is the capital of Italy? Province of Forl?-Cesena -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Forl?-Cesena, Second level division of, Italy) -> Province of Forl?-Cesena (19535ms) What is the capital of Italy? Province of Cuneo -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Cuneo, Second level division of, Italy) -> Province of Cuneo (18874ms) What is the capital of Italy? Province of Brescia -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Brescia, Second level division of, Italy) -> Province of Brescia (19739ms) What is the capital of Italy? Province of Crotone -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Crotone, Second level division of, Italy) -> Province of Crotone (19311ms) What is the capital of Italy? Province of Grosseto -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Grosseto, Second level division of, Italy) -> Province of Grosseto (19739ms) What is the capital of Italy? Province of Rovigo -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Rovigo, Second level division of, Italy) -> Province of Rovigo (19388ms) What is the capital of Italy? Province of Cremona -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Cremona, Second level division of, Italy) -> Province of Cremona (19144ms) What is the capital of Italy? Province of Messina -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Messina, Second level division of, Italy) -> Province of Messina (19810ms) What is the capital of Italy? Province of Parma -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Parma, Second level division of, Italy) -> Province of Parma (19311ms) What is the capital of Italy? Province of Latina -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Latina, Second level division of, Italy) -> Province of Latina (19670ms) What is the capital of Italy? Province of Taranto -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Taranto, Second level division of, Italy) -> Province of Taranto (19388ms) What is the capital of Italy? Province of Perugia -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Perugia, Second level division of, Italy) -> Province of Perugia (19670ms) What is the capital of Italy? Province of Avellino -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Avellino, Second level division of, Italy) -> Province of Avellino (18948ms) What is the capital of Italy? Province of Alessandria -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Alessandria, Second level division of, Italy) -> Province of Alessandria (19609ms) What is the capital of Italy? Province of Benevento -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Benevento, Second level division of, Italy) -> Province of Benevento (19609ms) What is the capital of Italy? Province of Bergamo -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Bergamo, Second level division of, Italy) -> Province of Bergamo (19739ms) What is the capital of Italy? Province of Arezzo -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Arezzo, Second level division of, Italy) -> Province of Arezzo (18874ms) What is the capital of Italy? Province of Brindisi -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Brindisi, Second level division of, Italy) -> Province of Brindisi (19535ms) What is the capital of Italy? Province of Novara -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Novara, Second level division of, Italy) -> Province of Novara (19312ms) What is the capital of Italy? Province of Campobasso -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Campobasso, Second level division of, Italy) -> Province of Campobasso (19739ms) What is the capital of Italy? Province of Ragusa -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Ragusa, Second level division of, Italy) -> Province of Ragusa (19739ms) What is the capital of Italy? Province of Biella -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Biella, Second level division of, Italy) -> Province of Biella (19000ms) What is the capital of Italy? Province of Padua -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Padua, Second level division of, Italy) -> Province of Padua (19144ms) What is the capital of Italy? Province of Ancona -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Ancona, Second level division of, Italy) -> Province of Ancona (19609ms) What is the capital of Italy? Province of Milan -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Milan, Second level division of, Italy) -> Province of Milan (19144ms) What is the capital of Italy? Province of Syracuse -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Syracuse, Second level division of, Italy) -> Province of Syracuse (19535ms) What is the capital of Italy? Province of Terni -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Terni, Second level division of, Italy) -> Province of Terni (19810ms) What is the capital of Italy? Province of Turin -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Turin, Second level division of, Italy) -> Province of Turin (19609ms) What is the capital of Italy? Province of Sassari -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Sassari, Second level division of, Italy) -> Province of Sassari (19535ms) What is the capital of Italy? Province of Carbonia-Iglesias -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Carbonia-Iglesias, Second level division of, Italy) -> Province of Carbonia-Iglesias (19000ms) What is the capital of Italy? Province of Sondrio -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Sondrio, Second level division of, Italy) -> Province of Sondrio (19535ms) What is the capital of Italy? Province of Belluno -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Belluno, Second level division of, Italy) -> Province of Belluno (18948ms) What is the capital of Italy? Province of Agrigento -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Agrigento, Second level division of, Italy) -> Province of Agrigento (19000ms) What is the capital of Italy? Province of Bari -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Bari, Second level division of, Italy) -> Province of Bari (19670ms) What is the capital of Italy? Province of Venice -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Venice, Second level division of, Italy) -> Province of Venice (18948ms) What is the capital of Italy? Province of Fermo -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Fermo, Second level division of, Italy) -> Province of Fermo (19739ms) What is the capital of Italy? Province of Prato -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Prato, Second level division of, Italy) -> Province of Prato (19000ms) What is the capital of Italy? Province of Teramo -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Teramo, Second level division of, Italy) -> Province of Teramo (19810ms) What is the capital of Italy? Province of Lodi -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Lodi, Second level division of, Italy) -> Province of Lodi (19388ms) What is the capital of Italy? Province of Lecco -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Lecco, Second level division of, Italy) -> Province of Lecco (19388ms) What is the capital of Italy? Province of Gorizia -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Gorizia, Second level division of, Italy) -> Province of Gorizia (19388ms) What is the capital of Italy? Province of Asti -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Asti, Second level division of, Italy) -> Province of Asti (19670ms) What is the capital of Italy? Province of Caltanissetta -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Caltanissetta, Second level division of, Italy) -> Province of Caltanissetta (18948ms) What is the capital of Italy? Friuli-Venezia Giulia -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, first level division of, Italy) -> (Friuli-Venezia Giulia, First level division of, Italy) -> Friuli-Venezia Giulia (19000ms) What is the capital of Italy? Province of Barletta-Andria-Trani -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Barletta-Andria-Trani, Second level division of, Italy) -> Province of Barletta-Andria-Trani (19310ms) What is the capital of Italy? Province of Cagliari -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Cagliari, Second level division of, Italy) -> Province of Cagliari (19609ms) What is the capital of Italy? Province of Pisa -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Pisa, Second level division of, Italy) -> Province of Pisa (19000ms) What is the capital of Italy? Province of Olbia-Tempio -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Olbia-Tempio, Second level division of, Italy) -> Province of Olbia-Tempio (19388ms) What is the capital of Italy? Province of Ferrara -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Ferrara, Second level division of, Italy) -> Province of Ferrara (19311ms) What is the capital of Italy? Province of Lucca -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Lucca, Second level division of, Italy) -> Province of Lucca (18874ms) What is the capital of Italy? Province of Rimini -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Rimini, Second level division of, Italy) -> Province of Rimini (19535ms) What is the capital of Italy? Province of Treviso -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Treviso, Second level division of, Italy) -> Province of Treviso (19671ms) What is the capital of Italy? Province of Bologna -0.9053893391439654 What is the capital of Italy? -> $x: (Italy, capital, $x) -> $x: ($x, second level division of, Italy) -> (Province of Bologna, Second level division of, Italy) -> Province of Bologna (18948ms) What did George Washington call his house? Ryan -12.628676313672054 What did George Washington call his house? -> what do george washington [ call his house ] ? -> what george washington call his house ? -> $x: ($x, instance of, george washington) ($x, call, his house) -> (Ryan, Instance Of, 2010 graduate of The George Washington University Law School) (Ryan, just called, his house) -> Ryan (2406ms) What does the acronym NATO stand for? North Atlantic -7.63531148886095 What does the acronym NATO stand for? -> what do the acronym [ nato ] stand for ? -> what do nato stand ? -> $x: (nato, stand, $x) -> (NATO, stood for, North Atlantic) -> North Atlantic (9587ms) What does the acronym NATO stand for? the North Atlantic Treaty Organization -7.681980946482119 What does the acronym NATO stand for? -> what do the acronym [ nato ] stand for ? -> what do nato stand ? -> $x: (nato, stand, $x) -> (NATO, stands for, the North Atlantic Treaty Organization) -> the North Atlantic Treaty Organization (9587ms) What does the acronym NATO stand for? the Soviet threat -8.069055707882875 What does the acronym NATO stand for? -> what do the acronym [ nato ] stand for ? -> what do nato stand ? -> $x: (nato, stand, $x) -> (NATO, stood against, the Soviet threat) -> the Soviet threat (9587ms) What does the acronym NATO stand for? North Atlantic Treaty Organisation -8.126904639301165 What does the acronym NATO stand for? -> what do the acronym [ nato ] stand for ? -> what do nato stand ? -> $x: (nato, stand, $x) -> (NATO, stands for, North Atlantic Treaty Organisation) -> North Atlantic Treaty Organisation (9587ms) What does the acronym NATO stand for? a chance -8.239288977464904 What does the acronym NATO stand for? -> what do the acronym [ nato ] stand for ? -> what do nato stand ? -> $x: (nato, stand, $x) -> (NATO, stands, a chance) -> a chance (9587ms) What does the acronym NATO stand for? the ICJ -8.268967771117534 What does the acronym NATO stand for? -> what do the acronym [ nato ] stand for ? -> what do nato stand ? -> $x: (nato, stand, $x) -> (The NATO countries, all stood before, the ICJ) -> the ICJ (9587ms) What does the acronym NATO stand for? Afghan fighting units -8.327921230769066 What does the acronym NATO stand for? -> what do the acronym [ nato ] stand for ? -> what do nato stand ? -> $x: (nato, stand, $x) -> (NATO, stands up, Afghan fighting units) -> Afghan fighting units (9677ms) What does the acronym NATO stand for? Estonia -8.393060886683417 What does the acronym NATO stand for? -> what do the acronym [ nato ] stand for ? -> what do nato stand ? -> $x: (nato, stand, $x) -> (NATO, would stand up for, Estonia) -> Estonia (9677ms) What does the acronym NATO stand for? a crossroads -8.44147556270204 What does the acronym NATO stand for? -> what do the acronym [ nato ] stand for ? -> what do nato stand ? -> $x: (nato, stand, $x) -> (1991 NATO, stood at, a crossroads) -> a crossroads (9677ms) What does the acronym NATO stand for? NATO Ain?t -8.44398954250915 What does the acronym NATO stand for? -> what do the acronym [ nato ] stand for ? -> what do nato stand ? -> $x: (nato, stand, $x) -> (NATO, stands for, NATO Ain?t) -> NATO Ain?t (9677ms) What does the acronym NATO stand for? ?No Action Talking Only? -8.529260257624951 What does the acronym NATO stand for? -> what do the acronym [ nato ] stand for ? -> what do nato stand ? -> $x: (nato, stand, $x) -> (NATO, stands for, ?No Action Talking Only?) -> ?No Action Talking Only? (9677ms) When was Julius Caesar born? July 0.1174499290396569 When was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> (the Roman emperor Julius Caesar, was born on, July) -> July (3044ms) When was Julius Caesar born? either July 12th 0.10466789276076138 When was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> (Julius Caesar, was born on, either July 12th) -> either July 12th (3044ms) When was Julius Caesar born? July 12 , 100 BC -0.10886118951158696 When was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> (Julius Caesar, was born on, July 12 , 100 BC) -> July 12 , 100 BC (3045ms) When was Julius Caesar born? July 13 , 100 BC -0.15645188825493683 When was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> (Gaius Julius Caesar, was born on, July 13 , 100 BC) -> July 13 , 100 BC (3044ms) When was Julius Caesar born? july 12 -0.3777277898696143 When was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> (Julius Caesar, was born on, july 12) -> july 12 (6586ms) When was Julius Caesar born? July 13 -0.4905392351569562 When was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> (Gaius Julius Caesar, was born on, July 13) -> July 13 (6586ms) When was Julius Caesar born? 12 July -0.5611153969600489 When was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (Julius Caesar, be bear, $x) -> (Gaius Julius Caesar, was born, 12 July) -> 12 July (10008ms) When was Julius Caesar born? Rome -0.600761657549409 When was Julius Caesar born? -> $x: (Julius Caesar, was born in, $x) -> (Julius Caesar, was born in, Rome) -> Rome (6586ms) When was Julius Caesar born? 100 B.C. -0.8769801793151204 When was Julius Caesar born? -> $x: (Julius Caesar, was born in, $x) -> (Julius Caesar, was born in, 100 B.C.) -> 100 B.C. (6585ms) When was Julius Caesar born? 100 BC -0.8951561054566203 When was Julius Caesar born? -> $x: (Julius Caesar, was born in, $x) -> (Julius Caesar, was born in, 100 BC) -> 100 BC (6586ms) When was Julius Caesar born? July 12 , 100 -1.8604485919653655 When was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (Julius Caesar, be bear, $x) -> (Julius Caesar, was born, July 12 , 100) -> July 12 , 100 (10008ms) When was Julius Caesar born? 100 -1.8835372034509126 When was Julius Caesar born? -> $x: (Julius Caesar, was born in, $x) -> (Julius Caesar, was born in, 100) -> 100 (7666ms) When was Julius Caesar born? the Subura -2.1061463100090316 When was Julius Caesar born? -> $x: (Julius Caesar, was born in, $x) -> (Julius Caesar, was born in, the Subura) -> the Subura (7666ms) When was Julius Caesar born? March 15th -3.2199772970650553 When was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (julius caesar, bear on, $x) -> $x: (julius caesar, be murder on, $x) -> (Julius Caesar, was murdered on, March 15th) -> March 15th (11808ms) When was Julius Caesar born? March 15 , 44 B.C. -3.551630374759136 When was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (julius caesar, bear on, $x) -> $x: (julius caesar, be murder on, $x) -> (Julius Caesar, was murdered on, March 15 , 44 B.C.) -> March 15 , 44 B.C. (11808ms) When was Julius Caesar born? c-section -3.7488015269025423 When was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (Julius Caesar, be bear, $x) -> (Julius Caesar, was born through, c-section) -> c-section (10098ms) When was Julius Caesar born? southern France -4.044145359656497 When was Julius Caesar born? -> $x: (Julius Caesar, was born in, $x) -> $x: (Julius Caesar, have be found in, $x) -> (Julius Caesar, has just been found in, southern France) -> southern France (7772ms) When was Julius Caesar born? Caesarean section -4.046720726934993 When was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (Julius Caesar, be bear, $x) -> (Julius Caesar, was born by, Caesarean section) -> Caesarean section (10125ms) When was Julius Caesar born? 709 AUC -4.116383857195709 When was Julius Caesar born? -> $x: (Julius Caesar, was born in, $x) -> $x: (julius caesar, bear in, $x) -> $x: (julius caesar, be be kill in, $x) -> (Julius Caesar, was killed in, 709 AUC) -> 709 AUC (10288ms) When was Julius Caesar born? the twelfth -4.174503720891208 When was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> (C. Julius Caesar, was born on, the twelfth) -> the twelfth (7687ms) When was Julius Caesar born? 44 B.C. -4.295876015519292 When was Julius Caesar born? -> $x: (Julius Caesar, was born in, $x) -> $x: (julius caesar, bear in, $x) -> $x: (julius caesar, be be kill in, $x) -> (Julius Caesar, was killed in, 44 B.C.) -> 44 B.C. (10288ms) When was Julius Caesar born? 44 B.C. Dramatic stuff -4.338128272795908 When was Julius Caesar born? -> $x: (Julius Caesar, was born in, $x) -> $x: (julius caesar, bear in, $x) -> $x: (julius caesar, be be kill in, $x) -> (Julius Caesar, was killed in, 44 B.C. Dramatic stuff) -> 44 B.C. Dramatic stuff (10288ms) When was Julius Caesar born? 44 BC -4.38700902253215 When was Julius Caesar born? -> $x: (Julius Caesar, was born in, $x) -> $x: (julius caesar, bear in, $x) -> $x: (julius caesar, be be kill in, $x) -> (Julius Caesar, was killed in, 44 BC) -> 44 BC (10288ms) When was Julius Caesar born? natal teeth -4.7754060443987285 When was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (Julius Caesar, be bear, $x) -> (Julius Caesar, were born with, natal teeth) -> natal teeth (10125ms) When was Julius Caesar born? diamonds -4.784833261618841 When was Julius Caesar born? -> $x: (Julius Caesar, was born in, $x) -> $x: (Julius Caesar, become king of, $x) -> (Julius Caesar, became the king of, diamonds) -> diamonds (7825ms) When was Julius Caesar born? a virgin -4.909933620579641 When was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (Julius Caesar, be bear, $x) -> (Julius Caesar, was reportedly born of, a virgin) -> a virgin (10159ms) When was Julius Caesar born? Egypt -4.92919963222056 When was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (Julius Caesar, be to come to, $x) -> (Julius Caesar, was coming to, Egypt) -> Egypt (9780ms) When was Julius Caesar born? Google and Wikipedia -5.038712497448058 When was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (Julius Caesar, be bear, $x) -> (Julius Caesar, was born thanks to, Google and Wikipedia) -> Google and Wikipedia (10159ms) When was Julius Caesar born? the Julian calendar -5.187451058558768 When was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (Julius Caesar, be to come to, $x) -> (Julius Caesar, came to be known as, the Julian calendar) -> the Julian calendar (9781ms) When was Julius Caesar born? the year 164 -5.329822380393794 When was Julius Caesar born? -> $x: (Julius Caesar, was born in, $x) -> $x: (Julius Caesar, be bear about, $x) -> (Julius Caesar Tiberius Gracchus, was born about, the year 164) -> the year 164 (7717ms) When was Julius Caesar born? a long time -5.3489431336634405 When was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (Julius Caesar, be bear, $x) -> (?Julius Caesar, was born, a long time) -> a long time (10159ms) When was Julius Caesar born? the Romans -5.507459134821632 When was Julius Caesar born? -> $x: (Julius Caesar, was born in, $x) -> $x: (Julius Caesar, become king of, $x) -> (Julius Caesar, became king of, the Romans) -> the Romans (7825ms) When was Julius Caesar born? a cold blood -5.710332807455528 When was Julius Caesar born? -> $x: (Julius Caesar, was born in, $x) -> $x: (julius caesar, bear in, $x) -> $x: (julius caesar, be be kill in, $x) -> (' Julius Caesar, was killed in, a cold blood) -> a cold blood (10309ms) When was Julius Caesar born? a ford -6.146090827242957 When was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (Julius Caesar, establish on, $x) -> (Julius Caesar, established a settlement on, a ford) -> a ford (10159ms) When was Julius Caesar born? a long time ago -6.368359495019032 When was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (Julius Caesar, be bear, $x) -> (Julius Caesar, was born, a long time ago) -> a long time ago (10189ms) When was Julius Caesar born? suspicion -6.452714755212475 When was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (julius caesar, bear on, $x) -> $x: (julius caesar, be murder on, $x) -> (its leader Julius Caesar, was murdered on, suspicion) -> suspicion (11808ms) When was Julius Caesar born? the Ides -6.465977709335808 When was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (julius caesar, bear on, $x) -> $x: (julius caesar, be murder on, $x) -> (Julius Caesar, is still murdered on, the Ides) -> the Ides (11808ms) When was Julius Caesar born? the forum -6.684480937954416 When was Julius Caesar born? -> $x: (Julius Caesar, was born in, $x) -> $x: (julius caesar, bear in, $x) -> $x: (julius caesar, be be kill in, $x) -> (Julius Caesar, was killed in, the forum) -> the forum (10310ms) When was Julius Caesar born? behalf -7.006983604792712 When was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (julius caesar, bear on, $x) -> $x: (julius caesar, intervene on, $x) -> (Julius Caesar, intervened on, behalf) -> behalf (11872ms) When was Julius Caesar born? British soil -7.46109541792311 When was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (julius caesar, bear on, $x) -> $x: (julius caesar, set foot on, $x) -> (Julius Caesar, set foot on, British soil) -> British soil (12037ms) When was Julius Caesar born? the British shore -7.542600624863295 When was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (julius caesar, bear on, $x) -> $x: (julius caesar, set foot on, $x) -> (Julius Caesar, set foot on, the British shore) -> the British shore (12038ms) When was Julius Caesar born? the steps -8.123373646215017 When was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (julius caesar, bear on, $x) -> $x: (julius caesar, be murder on, $x) -> (Julius Caesar, was murdered on, the steps) -> the steps (11808ms) When was Julius Caesar born? the fateful Ides -8.29290630170457 When was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (julius caesar, bear on, $x) -> $x: (julius caesar, be murder on, $x) -> (Julius Caesar, was murdered on, the fateful Ides) -> the fateful Ides (11808ms) When was Julius Caesar born? Britain -8.365005174476215 When was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (julius caesar, bear on, $x) -> $x: (julius caesar, set foot on, $x) -> (Julius Caesar, first set foot on, Britain) -> Britain (12071ms) When was Julius Caesar born? the island -8.441099092863361 When was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (julius caesar, bear on, $x) -> $x: (julius caesar, landing on, $x) -> (Julius Caesar, landed on, the island) -> the island (11747ms) When was Julius Caesar born? the ides -8.675629350092514 When was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (julius caesar, bear on, $x) -> $x: (julius caesar, be murder on, $x) -> (?Julius Caesar, was murdered on, the ides) -> the ides (11808ms) When was Julius Caesar born? the year -8.681561555506603 When was Julius Caesar born? -> $x: (Julius Caesar, was born in, $x) -> $x: (julius caesar, bear in, $x) -> $x: (julius caesar, be be kill in, $x) -> (Julius Caesar, was killed in, the year) -> the year (10309ms) When was Julius Caesar born? the shores -9.013030929190144 When was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (julius caesar, bear on, $x) -> $x: (julius caesar, landing on, $x) -> (Julius Caesar, landed on, the shores) -> the shores (11747ms) When was Julius Caesar born? the coast -9.090081363805828 When was Julius Caesar born? -> $x: (Julius Caesar, was born on, $x) -> $x: (julius caesar, bear on, $x) -> $x: (julius caesar, landing on, $x) -> (Julius Caesar, landed on, the coast) -> the coast (11747ms) How many NFL teams are there? The Saints -6.840264358157438 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (The Saints, are the hottest team in, the NFL) -> The Saints (9590ms) How many NFL teams are there? The Redskins -6.947619053883503 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (The Redskins, were the first team in, the NFL) -> The Redskins (9589ms) How many NFL teams are there? chiefs -7.021414995421466 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (chiefs, is a sports team that plays in the league, NFL) -> chiefs (9589ms) How many NFL teams are there? Louis Rams -7.307776257675483 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Louis Rams, is a sports team that plays in the league, NFL) -> Louis Rams (9589ms) How many NFL teams are there? Bucs -7.328966983746895 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Bucs, is a sports team that plays in the league, NFL) -> Bucs (9954ms) How many NFL teams are there? Jags -7.328966983746895 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Jags, is a sports team that plays in the league, NFL) -> Jags (9589ms) How many NFL teams are there? Pats -7.328966983746895 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Pats, is a sports team that plays in the league, NFL) -> Pats (9589ms) How many NFL teams are there? philadelphia-eagles -7.396095768861817 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (philadelphia-eagles, is a sports team that plays in the league, NFL) -> philadelphia-eagles (9954ms) How many NFL teams are there? BILLS -7.396095768861817 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (BILLS, is a sports team that plays in the league, NFL) -> BILLS (9954ms) How many NFL teams are there? GIANTS -7.396095768861817 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (GIANTS, is a sports team that plays in the league, NFL) -> GIANTS (10021ms) How many NFL teams are there? NFL Jerseys -7.396095768861817 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (NFL Jerseys, is a sports team that plays in the league, NFL) -> NFL Jerseys (10021ms) How many NFL teams are there? minnesota-vikings -7.396095768861817 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (minnesota-vikings, is a sports team that plays in the league, NFL) -> minnesota-vikings (9954ms) How many NFL teams are there? new-england-patriots -7.396095768861817 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (new-england-patriots, is a sports team that plays in the league, NFL) -> new-england-patriots (10021ms) How many NFL teams are there? cincinnati-bengals -7.396095768861817 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (cincinnati-bengals, is a sports team that plays in the league, NFL) -> cincinnati-bengals (9954ms) How many NFL teams are there? jacksonville-jaguars -7.396095768861817 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (jacksonville-jaguars, is a sports team that plays in the league, NFL) -> jacksonville-jaguars (9954ms) How many NFL teams are there? the Giants -7.411437224459803 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the Giants, are the best team in, the NFL) -> the Giants (10021ms) How many NFL teams are there? BUFFALO BILLS -7.457356702768514 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (BUFFALO BILLS, is a sports team that plays in the league, NFL) -> BUFFALO BILLS (10045ms) How many NFL teams are there? houston texans -7.457356702768514 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (houston texans, is a sports team that plays in the league, NFL) -> houston texans (10045ms) How many NFL teams are there? chicago cardinals -7.457356702768514 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (chicago cardinals, is a sports team that plays in the league, NFL) -> chicago cardinals (10045ms) How many NFL teams are there? NY Jets -7.457356702768514 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (NY Jets, is a sports team that plays in the league, NFL) -> NY Jets (10045ms) How many NFL teams are there? atlanta falcons -7.457356702768514 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (atlanta falcons, is a sports team that plays in the league, NFL) -> atlanta falcons (10021ms) How many NFL teams are there? tennessee oilers -7.457356702768514 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (tennessee oilers, is a sports team that plays in the league, NFL) -> tennessee oilers (10045ms) How many NFL teams are there? sd chargers -7.457356702768514 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (sd chargers, is a sports team that plays in the league, NFL) -> sd chargers (10069ms) How many NFL teams are there? tennessee titans -7.457356702768514 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (tennessee titans, is a sports team that plays in the league, NFL) -> tennessee titans (10021ms) How many NFL teams are there? L.A. Rams -7.457356702768514 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (L.A. Rams, is a sports team that plays in the league, NFL) -> L.A. Rams (10045ms) How many NFL teams are there? oakland raiders -7.457356702768514 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (oakland raiders, is a sports team that plays in the league, NFL) -> oakland raiders (10069ms) How many NFL teams are there? los angeles raiders -7.510960019936876 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (los angeles raiders, is a sports team that plays in the league, NFL) -> los angeles raiders (11021ms) How many NFL teams are there? Saint Louis Rams -7.510960019936876 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Saint Louis Rams, is a sports team that plays in the league, NFL) -> Saint Louis Rams (11021ms) How many NFL teams are there? new york titans -7.510960019936876 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (new york titans, is a sports team that plays in the league, NFL) -> new york titans (10069ms) How many NFL teams are there? St Louis Rams -7.510960019936876 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (St Louis Rams, is a sports team that plays in the league, NFL) -> St Louis Rams (10069ms) How many NFL teams are there? New Orleans Hornets -7.510960019936876 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (New Orleans Hornets, is a sports team that plays in the league, NFL) -> New Orleans Hornets (11020ms) How many NFL teams are there? tampa bay bucs -7.510960019936876 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (tampa bay bucs, is a sports team that plays in the league, NFL) -> tampa bay bucs (10069ms) How many NFL teams are there? Pittsburgh Steelers Sunday -7.510960019936876 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Pittsburgh Steelers Sunday, is a sports team that plays in the league, NFL) -> Pittsburgh Steelers Sunday (10069ms) How many NFL teams are there? the Lions -7.517476394723805 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the Lions, were the worst team in, the NFL) -> the Lions (11020ms) How many NFL teams are there? Denver -7.534392502733491 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Denver, is the only team in, the NFL) -> Denver (11020ms) How many NFL teams are there? The Titans -7.55644569152226 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (The Titans, are the only team in, the NFL) -> The Titans (11021ms) How many NFL teams are there? Florida Intl Golden Panthers -7.5582570644971945 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Florida Intl Golden Panthers, is a sports team that plays in the league, NFL) -> Florida Intl Golden Panthers (11245ms) How many NFL teams are there? the Colts -7.585231959881509 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the Colts, are the worst team in, the NFL) -> the Colts (11245ms) How many NFL teams are there? The Green Bay Packers -7.589598376367634 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (The Green Bay Packers, are the only team in, the NFL) -> The Green Bay Packers (11245ms) How many NFL teams are there? ? The Chargers -7.606398181499943 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (? The Chargers, are the first team in, NFL history) -> ? The Chargers (11245ms) How many NFL teams are there? the Indianapolis Colts -7.609610903033606 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the Indianapolis Colts, are the best team in, the NFL) -> the Indianapolis Colts (11245ms) How many NFL teams are there? The Buccaneers -7.611140717143403 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (The Buccaneers, were the youngest team in, the NFL) -> The Buccaneers (11245ms) How many NFL teams are there? The Dolphins -7.629834111454585 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (The Dolphins, are the worst team in, the NFL) -> The Dolphins (11296ms) How many NFL teams are there? The Carolina Panthers -7.658733774831846 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (The Carolina Panthers, were the worst team in, the NFL) -> The Carolina Panthers (11297ms) How many NFL teams are there? WE CANT -7.703461090079305 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (WE CANT, BE THE WORST TEAMS IN, THE NFL) -> WE CANT (11296ms) How many NFL teams are there? Miami Dolphins -7.750680307292411 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Miami Dolphins, is a sports team that plays in the league, NFL) -> Miami Dolphins (11322ms) How many NFL teams are there? Seattle Seahawks -7.750680307292411 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Seattle Seahawks, is a sports team that plays in the league, NFL) -> Seattle Seahawks (11322ms) How many NFL teams are there? Greenbay Packers -7.750680307292411 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Greenbay Packers, is a sports team that plays in the league, NFL) -> Greenbay Packers (11322ms) How many NFL teams are there? Dallas Cowboys -7.750680307292411 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Dallas Cowboys, is a sports team that plays in the league, NFL) -> Dallas Cowboys (11322ms) How many NFL teams are there? Baltimore Colts -7.750680307292411 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Baltimore Colts, is a sports team that plays in the league, NFL) -> Baltimore Colts (11297ms) How many NFL teams are there? Detroit Lions -7.750680307292411 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Detroit Lions, is a sports team that plays in the league, NFL) -> Detroit Lions (11297ms) How many NFL teams are there? Houston Oilers -7.750680307292411 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Houston Oilers, is a sports team that plays in the league, NFL) -> Houston Oilers (11322ms) How many NFL teams are there? Indianapolis Colts -7.750680307292411 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Indianapolis Colts, is a sports team that plays in the league, NFL) -> Indianapolis Colts (11297ms) How many NFL teams are there? the New York Football Giants -7.821494469935347 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the New York Football Giants, are the best team in, the NFL) -> the New York Football Giants (11322ms) How many NFL teams are there? 2012 Super Bowl -7.823254802862815 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (2012 Super Bowl, is a sports team that plays in the league, NFL) -> 2012 Super Bowl (11348ms) How many NFL teams are there? 2009 pro bowl -7.823254802862815 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (2009 pro bowl, is a sports team that plays in the league, NFL) -> 2009 pro bowl (11349ms) How many NFL teams are there? 2011 Pro Bowl -7.823254802862815 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (2011 Pro Bowl, is a sports team that plays in the league, NFL) -> 2011 Pro Bowl (11349ms) How many NFL teams are there? San Francisco 49ers -7.823254802862815 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (San Francisco 49ers, is a sports team that plays in the league, NFL) -> San Francisco 49ers (11349ms) How many NFL teams are there? Chicago bears -7.825835360192812 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Chicago bears, is a sports team that plays in the league, NFL) -> Chicago bears (11349ms) How many NFL teams are there? Denver broncos -7.825835360192812 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Denver broncos, is a sports team that plays in the league, NFL) -> Denver broncos (11348ms) How many NFL teams are there? the 49ers -7.834684149667911 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the 49ers, are the best team in, the NFL) -> the 49ers (11375ms) How many NFL teams are there? Further Review -7.874373191092317 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Further Review, is the best team in, the NFL) -> Further Review (11376ms) How many NFL teams are there? Redskins -8.00098449560388 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Redskins, is a sports team that plays in the league, NFL) -> Redskins (11375ms) How many NFL teams are there? Buccaneers -8.00098449560388 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Buccaneers, is a sports team that plays in the league, NFL) -> Buccaneers (11376ms) How many NFL teams are there? Browns -8.00098449560388 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Browns, is a sports team that plays in the league, NFL) -> Browns (11375ms) How many NFL teams are there? Ravens -8.00098449560388 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Ravens, is a sports team that plays in the league, NFL) -> Ravens (11375ms) How many NFL teams are there? the Packers -8.157227554971096 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the Packers, are the best team in, the NFL) -> the Packers (11401ms) How many NFL teams are there? the Saints -8.177628673835047 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the Saints, were the only team in, the NFL) -> the Saints (11401ms) How many NFL teams are there? the Vikings -8.192103498025224 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the Vikings, are the only team in, the NFL) -> the Vikings (11401ms) How many NFL teams are there? the Steelers -8.212504616889175 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the Steelers, are the best team in, the NFL) -> the Steelers (11431ms) How many NFL teams are there? the Cowboys -8.212504616889175 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the Cowboys, are the best team in, the NFL) -> the Cowboys (11431ms) How many NFL teams are there? the Redskins -8.212504616889175 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the Redskins, were the last team in, the NFL) -> the Redskins (11431ms) How many NFL teams are there? Bengals -8.771289854672295 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Bengals, are the worst team in, the NFL) -> Bengals (11431ms) How many NFL teams are there? the Panthers -8.816328233523217 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the Panthers, are the worst team in, the NFL) -> the Panthers (11482ms) How many NFL teams are there? the Patriots -8.816328233523217 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the Patriots, are the best team in, the NFL) -> the Patriots (11482ms) How many NFL teams are there? the Rams -8.816328233523217 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the Rams, are the worst team in, the NFL) -> the Rams (11456ms) How many NFL teams are there? the Ravens -8.816328233523217 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the Ravens, are the only team in, the NFL) -> the Ravens (11456ms) How many NFL teams are there? Arizona -8.81739334363124 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Arizona, is the only team in, the NFL) -> Arizona (11482ms) How many NFL teams are there? the Bills -8.836729352387168 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the Bills, are the worst team in, the NFL) -> the Bills (11658ms) How many NFL teams are there? the Bears -8.836729352387168 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the Bears, are the best team in, the NFL) -> the Bears (11658ms) How many NFL teams are there? the Chargers -8.836729352387168 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the Chargers, are the best team in, the NFL) -> the Chargers (11658ms) How many NFL teams are there? the Texans -8.836729352387168 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the Texans, are the only team in, the NFL) -> the Texans (11658ms) How many NFL teams are there? themost -8.919448747887436 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> $x: ($x, team in, nfl) -> (themost, improved teams in, the NFL) -> themost (11728ms) How many NFL teams are there? the Jets -8.928117310472755 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the best team in nfl ? -> $x: ($x, be the best team in, nfl) -> (the Jets, are the 2nd best team in, the NFL) -> the Jets (11755ms) How many NFL teams are there? New England -8.990895335485037 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the best team in nfl ? -> $x: ($x, be the best team in, nfl) -> (New England, is the best team in, the NFL) -> New England (11912ms) How many NFL teams are there? The 49ers -9.102920646354164 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (The 49ers, are the only team in, the NFL) -> The 49ers (11966ms) How many NFL teams are there? The Jets -9.105384276073886 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the best team in nfl ? -> $x: ($x, be the best team in, nfl) -> (The Jets, are arguably the best team in, the NFL) -> The Jets (11966ms) How many NFL teams are there? the Baltimore Ravens -9.188109751895308 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> $x: ($x, team in, nfl) -> (the Baltimore Ravens, is a great team in, nfl) -> the Baltimore Ravens (11966ms) How many NFL teams are there? ?dey ? -9.229763012783303 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the best team in nfl ? -> $x: ($x, be the best team in, nfl) -> (?dey ?, is possibly the best team in, the NFL) -> ?dey ? (12018ms) How many NFL teams are there? Ben Roethlisberger -9.272269055186145 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the best team in nfl ? -> $x: ($x, be the best team in, nfl) -> (Ben Roethlisberger, are probably the best team in, the NFL) -> Ben Roethlisberger (12018ms) How many NFL teams are there? The Browns -9.28621738801653 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the best team in nfl ? -> $x: ($x, be the best team in, nfl) -> (The Browns, are the best 1-4 team in, the NFL) -> The Browns (12650ms) How many NFL teams are there? a matter -9.349992907204626 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> $x: ($x, team in, nfl) -> (a matter, does any team in, the NFL) -> a matter (14080ms) How many NFL teams are there? votes -9.360690229160664 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the best team in nfl ? -> $x: ($x, be the best team in, nfl) -> (votes, is the Best team in, the NFL right) -> votes (14080ms) How many NFL teams are there? St . Louis -9.36592945772791 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the best team in nfl ? -> $x: ($x, be the best team in, nfl) -> (St . Louis, is the best team in, the NFL) -> St . Louis (14080ms) How many NFL teams are there? the team -9.405414639302654 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the team, is the only non-profit team in, NFL) -> the team (14080ms) How many NFL teams are there? the season -9.466424291512741 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (the season, were the only team in, the NFL) -> the season (14261ms) How many NFL teams are there? The Chargers -9.488376655035426 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the best team in nfl ? -> $x: ($x, be the best team in, nfl) -> (The Chargers, were the best team in, the NFL) -> The Chargers (14261ms) How many NFL teams are there? profootballtalk?s -9.5307316824989 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> $x: ($x, team in, nfl) -> (profootballtalk?s, ranked team in, the NFL) -> profootballtalk?s (14478ms) How many NFL teams are there? Texans -9.531955992593353 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> $x: ($x, team in, nfl) -> (Texans, are only team in, NFL) -> Texans (14477ms) How many NFL teams are there? The Eagles -9.551219248174961 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the best team in nfl ? -> $x: ($x, be the best team in, nfl) -> (The Eagles, are the best team in, the NFL) -> The Eagles (14478ms) How many NFL teams are there? Detroit -9.558570771132931 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the team in nfl ? -> $x: ($x, be the team in, nfl) -> (Detroit, is the only team in, NFL history) -> Detroit (14477ms) How many NFL teams are there? the Pittsburgh Steelers -9.571794410306348 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the best team in nfl ? -> $x: ($x, be the best team in, nfl) -> (the Pittsburgh Steelers, were the best team in, the NFL) -> the Pittsburgh Steelers (16508ms) How many NFL teams are there? the Pats -9.605090735644431 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the best team in nfl ? -> $x: ($x, be the best team in, nfl) -> (the Pats, are the second-best team in, the NFL) -> the Pats (16508ms) How many NFL teams are there? Green Bay -9.608046474369667 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the best team in nfl ? -> $x: ($x, be the best team in, nfl) -> (Green Bay, is the best team in, the NFL) -> Green Bay (16508ms) How many NFL teams are there? the Eagles -9.652191806022484 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the best team in nfl ? -> $x: ($x, be the best team in, nfl) -> (the Eagles, are the best team in, the NFL right) -> the Eagles (16508ms) How many NFL teams are there? the Fins -9.66817194017866 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the best team in nfl ? -> $x: ($x, be the best team in, nfl) -> (the Fins, are the best 2-4 team in, the NFL) -> the Fins (17847ms) How many NFL teams are there? The Seahawks -9.674058170868978 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the best team in nfl ? -> $x: ($x, be the best team in, nfl) -> (The Seahawks, are the best team in, the NFL) -> The Seahawks (17847ms) How many NFL teams are there? The Patriots -9.681983322012517 How many NFL teams are there? -> how many [ nfl ] team be there ? -> what be the best team in nfl ? -> $x: ($x, be the best team in, nfl) -> (The Patriots, are the best team in, the NFL) -> The Patriots (17847ms) What do manatees eat? 22 pounds -1.480537010794668 What do manatees eat? -> $x: (manatees, eat, $x) -> (The manatee, eats, 22 pounds) -> 22 pounds (5580ms) What do manatees eat? 72 heads -1.5532599011679693 What do manatees eat? -> $x: (manatees, eat, $x) -> (the two manatees, eat about, 72 heads) -> 72 heads (5580ms) What do manatees eat? marine and freshwater plant -2.055980532185341 What do manatees eat? -> $x: (manatees, eat, $x) -> (Shelter Manatees, eat, marine and freshwater plant) -> marine and freshwater plant (5580ms) What do manatees eat? marine and freshwater plants -2.079525767093797 What do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, eat, marine and freshwater plants) -> marine and freshwater plants (5580ms) What do manatees eat? a tiny Mexican place -2.092540511298898 What do manatees eat? -> $x: (manatees, eat, $x) -> (Manatee and I, ate at, a tiny Mexican place) -> a tiny Mexican place (5580ms) What do manatees eat? 150 pounds -2.331605202812704 What do manatees eat? -> $x: (manatees, eat, $x) -> (manatees, eat over, 150 pounds) -> 150 pounds (5580ms) What do manatees eat? 9 % -2.3813578896955914 What do manatees eat? -> $x: (manatees, eat, $x) -> (an adult manatee, can eat nearly, 9 %) -> 9 % (5674ms) What do manatees eat? 50 different types -2.415494613074519 What do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, eat over, 50 different types) -> 50 different types (5673ms) What do manatees eat? 10-15 % -2.422487000077692 What do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, can eat, 10-15 %) -> 10-15 % (5673ms) What do manatees eat? 10 -2.45354613890538 What do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, can eat, 10) -> 10 (5674ms) What do manatees eat? different kinds -2.49276593558257 What do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, eat lots of, different kinds) -> different kinds (5674ms) What do manatees eat? exotic plants -2.4950828128174987 What do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, eat, exotic plants) -> exotic plants (5674ms) What do manatees eat? 4 to 9 percent -2.5139686298839443 What do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, must eat, 4 to 9 percent) -> 4 to 9 percent (5703ms) What do manatees eat? 10 % -2.519810175612073 What do manatees eat? -> $x: (manatees, eat, $x) -> (Food Manatees, can eat up to, 10 %) -> 10 % (5703ms) What do manatees eat? 60 different species -2.5362374793005955 What do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, eat over, 60 different species) -> 60 different species (5703ms) What do manatees eat? 10 % to 20 % -2.540101908570729 What do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, eat, 10 % to 20 %) -> 10 % to 20 % (5703ms) What do manatees eat? eight heads -2.604593008204172 What do manatees eat? -> $x: (manatees, eat, $x) -> (The young manatee, is eating, eight heads) -> eight heads (5703ms) What do manatees eat? 100 to 150 pounds -2.6206284932436716 What do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, eat, 100 to 150 pounds) -> 100 to 150 pounds (5703ms) What do manatees eat? 10-15 percent -2.6374282456736866 What do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, eat anywhere from, 10-15 percent) -> 10-15 percent (5726ms) What do manatees eat? 100 pounds -2.6399815525310606 What do manatees eat? -> $x: (manatees, eat, $x) -> (An adult manatee, eats over, 100 pounds) -> 100 pounds (5726ms) What do manatees eat? 60 different plant species -2.6841914523111337 What do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, eat over, 60 different plant species) -> 60 different plant species (5726ms) What do manatees eat? 60 to 100 pounds -2.7786658169307783 What do manatees eat? -> $x: (manatees, eat, $x) -> (An adult manatee, eats as much as, 60 to 100 pounds) -> 60 to 100 pounds (5726ms) What do manatees eat? water plants -2.803388573291037 What do manatees eat? -> $x: (manatees, eat, $x) -> (The manatee, eats mostly a variety of, water plants) -> water plants (5741ms) What do manatees eat? Recreation Area -2.926126090001433 What do manatees eat? -> $x: (manatees, eat, $x) -> (Lake Manatee St, ate, Recreation Area) -> Recreation Area (5741ms) What do manatees eat? 10-15 % of their body weight -3.3879119933738737 What do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, can eat, 10-15 % of their body weight) -> 10-15 % of their body weight (5741ms) What do manatees eat? hydrilla -3.649573260381265 What do manatees eat? -> $x: (manatees, eat, $x) -> (manatees, eat, hydrilla) -> hydrilla (5758ms) What do manatees eat? the vegetation right -3.9054063525882885 What do manatees eat? -> $x: (manatees, eat, $x) -> (manatees, will come eat, the vegetation right) -> the vegetation right (5803ms) What do manatees eat? plankton -3.921505387526616 What do manatees eat? -> $x: (manatees, eat, $x) -> (manatees, ever eat, plankton) -> plankton (5835ms) What do manatees eat? lettuce -3.970671407559931 What do manatees eat? -> $x: (manatees, eat, $x) -> (manatees, eat heads of, lettuce) -> lettuce (5835ms) What do manatees eat? the abundant sea grasses -3.9918293480264113 What do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, eat, the abundant sea grasses) -> the abundant sea grasses (5834ms) What do manatees eat? clams -4.002115524371854 What do manatees eat? -> $x: (manatees, eat, $x) -> (West African manatees, have been known to eat, clams) -> clams (5834ms) What do manatees eat? elephants -4.010068070839223 What do manatees eat? -> $x: (manatees, eat, $x) -> (manatees, eat grass like, elephants) -> elephants (5835ms) What do manatees eat? the lettuce -4.163810261307901 What do manatees eat? -> $x: (manatees, eat, $x) -> (The manatees, eat, the lettuce) -> the lettuce (5848ms) What do manatees eat? fish -4.1959187146616275 What do manatees eat? -> $x: (manatees, eat, $x) -> (Antillean manatees, have been known to eat, fish) -> fish (5848ms) What do manatees eat? the vegetation -4.951829883083909 What do manatees eat? -> $x: (manatees, eat, $x) -> (manatees, eat, the vegetation) -> the vegetation (5861ms) What do manatees eat? Feb. 20 -5.1742519355961605 What do manatees eat? -> $x: (manatees, eat, $x) -> $x: (manatees, get one, $x) -> (Pasco , Polk and Manatee students, get one for, Feb. 20) -> Feb. 20 (5949ms) What do manatees eat? daily -6.156406018119301 What do manatees eat? -> $x: (manatees, eat, $x) -> (Manatees, can eat 10-15 % of their body weight, daily) -> daily (5894ms) What was Malcolm X's original surname? Wettin -14.494825079508457 What was Malcolm X's original surname? -> what be malcolm x [ s original surname ] ? -> what be there s original surname ? -> $x: ($x, be there s, original surname) -> $x: ($x, there s, original surname) -> $x: (original surname, have have, $x) -> ('s original surname, may have been, Wettin) -> Wettin (5508ms) What was Malcolm X's original surname? present day -14.56498094814928 What was Malcolm X's original surname? -> what be malcolm x [ s original surname ] ? -> what be there s original surname ? -> $x: ($x, be there s, original surname) -> $x: ($x, there s, original surname) -> $x: (original surname, have have, $x) -> (original Hutterite surnames, have survived until, present day) -> present day (5508ms) What was Malcolm X's original surname? Hatkho -15.11751458459927 What was Malcolm X's original surname? -> what be malcolm x [ s original surname ] ? -> what be there s original surname ? -> $x: ($x, be there s, original surname) -> $x: ($x, there s, original surname) -> $x: (original surname, have have, $x) -> (his original surname, had been, Hatkho) -> Hatkho (5508ms) What was Malcolm X's original surname? Shaink -15.444244743071877 What was Malcolm X's original surname? -> what be malcolm x [ s original surname ] ? -> what be there s original surname ? -> $x: ($x, be there s, original surname) -> $x: ($x, there s, original surname) -> $x: (original surname, change, $x) -> (The original family surname, was changed to, Shaink) -> Shaink (5423ms) What was Malcolm X's original surname? STRANG -15.459916571187406 What was Malcolm X's original surname? -> what be malcolm x [ s original surname ] ? -> what be there s original surname ? -> $x: ($x, be there s, original surname) -> $x: ($x, there s, original surname) -> $x: (original surname, have have, $x) -> (my STRONG ancestors original Surname, may have been, STRANG) -> STRANG (5508ms) What is cribbage? small-area event -5.081692812842029 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, small-area event) -> small-area event (1909ms) What is cribbage? point-based game -5.098143877902369 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, point-based game) -> point-based game (1909ms) What is cribbage? challenging card game -5.315325035549797 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, challenging card game) -> challenging card game (1909ms) What is cribbage? classic card game -5.315876340619406 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, classic card game) -> classic card game (1909ms) What is cribbage? two-player card game -5.334956584826713 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, two-player card game) -> two-player card game (1908ms) What is cribbage? card game -5.341132365883407 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, card game) -> card game (1909ms) What is cribbage? AOL compatible video online card game -5.343413794921152 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, AOL compatible video online card game) -> AOL compatible video online card game (1924ms) What is cribbage? card and board game -5.384707275628207 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, card and board game) -> card and board game (1923ms) What is cribbage? play free online board game -5.4290801189126014 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, play free online board game) -> play free online board game (1924ms) What is cribbage? social club offering activity -5.445531183972941 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, social club offering activity) -> social club offering activity (1923ms) What is cribbage? counting card game -5.447377802241265 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, counting card game) -> counting card game (1923ms) What is cribbage? two-to-four player card game -5.469852487468907 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, two-to-four player card game) -> two-to-four player card game (2138ms) What is cribbage? card game of the period -5.469852487468907 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, card game of the period) -> card game of the period (2138ms) What is cribbage? terrific, fast paced game -5.469852487468907 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, terrific, fast paced game) -> terrific, fast paced game (2138ms) What is cribbage? century old game of skill and persistence -5.469852487468907 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, century old game of skill and persistence) -> century old game of skill and persistence (2138ms) What is cribbage? game of making match and group of card -5.469852487468907 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, game of making match and group of card) -> game of making match and group of card (2138ms) What is cribbage? featured classic card game -5.469852487468907 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, featured classic card game) -> featured classic card game (2138ms) What is cribbage? pub game -5.490942725254116 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, pub game) -> pub game (2153ms) What is cribbage? math type game -5.505625684056914 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, math type game) -> math type game (2153ms) What is cribbage? extensive table game -5.505625684056914 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, extensive table game) -> extensive table game (2153ms) What is cribbage? wooden game favorite -5.505625684056914 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, wooden game favorite) -> wooden game favorite (2170ms) What is cribbage? good card game -5.505625684056914 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, good card game) -> good card game (2169ms) What is cribbage? math board game -5.505625684056914 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, math board game) -> math board game (2153ms) What is cribbage? online card game -5.505625684056914 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, online card game) -> online card game (2169ms) What is cribbage? oldfashioned card game -5.505625684056914 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, oldfashioned card game) -> oldfashioned card game (2170ms) What is cribbage? beautiful classic game -5.505625684056914 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, beautiful classic game) -> beautiful classic game (2169ms) What is cribbage? noble card game -5.505625684056914 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, noble card game) -> noble card game (2170ms) What is cribbage? prime winter pastime -5.505625684056914 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, prime winter pastime) -> prime winter pastime (2153ms) What is cribbage? social card game -5.505625684056914 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, social card game) -> social card game (2153ms) What is cribbage? live online adult poker game -5.51474644290405 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, live online adult poker game) -> live online adult poker game (2223ms) What is cribbage? age-old pub game -5.51474644290405 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, age-old pub game) -> age-old pub game (2281ms) What is cribbage? freeware version of the popular card game -5.51474644290405 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, freeware version of the popular card game) -> freeware version of the popular card game (2223ms) What is cribbage? MAINSTREET CLASSIC game -5.51474644290405 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, MAINSTREET CLASSIC game) -> MAINSTREET CLASSIC game (2280ms) What is cribbage? century-old card game of English origin -5.51474644290405 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, century-old card game of English origin) -> century-old card game of English origin (2280ms) What is cribbage? interesting and engaging game -5.51474644290405 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, interesting and engaging game) -> interesting and engaging game (2280ms) What is cribbage? addictive and fast-paced card game -5.51474644290405 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, addictive and fast-paced card game) -> addictive and fast-paced card game (2280ms) What is cribbage? fashioned great classic card game of skill -5.51474644290405 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, fashioned great classic card game of skill) -> fashioned great classic card game of skill (2222ms) What is cribbage? jovial kind of game -5.51474644290405 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, jovial kind of game) -> jovial kind of game (2294ms) What is cribbage? Regency-era card game -5.51474644290405 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, Regency-era card game) -> Regency-era card game (2222ms) What is cribbage? one-on-one board game -5.51474644290405 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, one-on-one board game) -> one-on-one board game (2295ms) What is cribbage? relaxing, totally not physical game -5.51474644290405 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, relaxing, totally not physical game) -> relaxing, totally not physical game (2222ms) What is cribbage? game of sailor -5.51474644290405 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, game of sailor) -> game of sailor (2280ms) What is cribbage? good game of skill an luck -5.51474644290405 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, good game of skill an luck) -> good game of skill an luck (2295ms) What is cribbage? interest in event -5.51474644290405 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, interest in event) -> interest in event (2295ms) What is cribbage? exciting game of wit and luck -5.51474644290405 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, exciting game of wit and luck) -> exciting game of wit and luck (2222ms) What is cribbage? player card game -5.515907599566414 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, player card game) -> player card game (2295ms) What is cribbage? social, educational and physical activity -5.519584991397133 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, social, educational and physical activity) -> social, educational and physical activity (2295ms) What is cribbage? game of point -5.522224199861086 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, game of point) -> game of point (2314ms) What is cribbage? strategic card game -5.527771349362637 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, strategic card game) -> strategic card game (2315ms) What is cribbage? game on board -5.53119750796439 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, game on board) -> game on board (2315ms) What is cribbage? classic board game -5.542914765514058 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, classic board game) -> classic board game (2315ms) What is cribbage? two-player board game -5.543284005418801 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, two-player board game) -> two-player board game (2315ms) What is cribbage? classic game -5.601893739655087 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, classic game) -> classic game (2315ms) What is cribbage? time favorite -5.730628999681266 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, time favorite) -> time favorite (2325ms) What is cribbage? recreational activity -5.763576675850563 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, recreational activity) -> recreational activity (2326ms) What is cribbage? ancient game -5.771707318988828 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, ancient game) -> ancient game (2326ms) What is cribbage? big game -5.776388266248569 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, big game) -> big game (2326ms) What is cribbage? strategy game -5.7829671895851025 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, strategy game) -> strategy game (2326ms) What is cribbage? wonderful game -5.7853604158151075 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, wonderful game) -> wonderful game (2326ms) What is cribbage? excellent game -5.794226579366626 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, excellent game) -> excellent game (2386ms) What is cribbage? social activity -5.811965122641354 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, social activity) -> social activity (2386ms) What is cribbage? conventional sport -5.83273357947819 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, conventional sport) -> conventional sport (2386ms) What is cribbage? quiet game -5.8358344744470205 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, quiet game) -> quiet game (2386ms) What is cribbage? house game -5.837303319432257 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, house game) -> house game (2386ms) What is cribbage? lifetime activity -5.83756695888861 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, lifetime activity) -> lifetime activity (2386ms) What is cribbage? board game -5.84091873425945 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, board game) -> board game (2485ms) What is cribbage? competitive game -5.843139001406681 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, competitive game) -> competitive game (2484ms) What is cribbage? popular 2-person game -5.862409948249645 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, popular 2-person game) -> popular 2-person game (2484ms) What is cribbage? timeless amusement -5.871915359357899 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, timeless amusement) -> timeless amusement (2484ms) What is cribbage? cribbage game -5.871915359357899 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, cribbage game) -> cribbage game (2484ms) What is cribbage? accessible game -5.871915359357899 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, accessible game) -> accessible game (2484ms) What is cribbage? promotional game -5.877790739911692 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, promotional game) -> promotional game (2498ms) What is cribbage? recycled item -5.881592456344066 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, recycled item) -> recycled item (2498ms) What is cribbage? complicated game -5.8852704671812255 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, complicated game) -> complicated game (2498ms) What is cribbage? player game -5.886917902149252 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, player game) -> player game (2498ms) What is cribbage? pogo game -5.888366424418239 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, pogo game) -> pogo game (2498ms) What is cribbage? family game -5.888630344559857 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, family game) -> family game (2498ms) What is cribbage? french game -5.890194320399866 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, french game) -> french game (2510ms) What is cribbage? indoor sport -5.890301843692902 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, indoor sport) -> indoor sport (2509ms) What is cribbage? mind sport -5.890897357315875 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, mind sport) -> mind sport (2509ms) What is cribbage? tabletop game -5.893643181135706 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, tabletop game) -> tabletop game (2509ms) What is cribbage? difficult game -5.893943055956522 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, difficult game) -> difficult game (2509ms) What is cribbage? leisure activity -5.902836893359098 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, leisure activity) -> leisure activity (2509ms) What is cribbage? free game -5.916320307442001 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, free game) -> free game (2521ms) What is cribbage? traditional pub game -6.1593355975734765 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, traditional pub game) -> traditional pub game (2522ms) What is cribbage? class and activity -6.186272584194335 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, class and activity) -> class and activity (2522ms) What is cribbage? popular pub game -6.189818072364458 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, popular pub game) -> popular pub game (2521ms) What is cribbage? program and activity -6.2318531323851385 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, program and activity) -> program and activity (2522ms) What is cribbage? sport and activity -6.232387134261486 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, sport and activity) -> sport and activity (2522ms) What is cribbage? favorite -7.75891072724033 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, favorite) -> favorite (2535ms) What is cribbage? card -7.788190573395969 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, card) -> card (2535ms) What is cribbage? pastime -7.95316233112829 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, pastime) -> pastime (2535ms) What is cribbage? tournament -7.999186493935377 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, tournament) -> tournament (2535ms) What is cribbage? sport -8.058333530904653 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, sport) -> sport (2547ms) What is cribbage? hobby -8.058900922452164 What is cribbage? -> $x: (cribbage, instance of, $x) -> (cribbage, Instance Of, hobby) -> hobby (2548ms) What is cribbage? time -8.135486668385402 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, time) -> time (2547ms) What is cribbage? group -8.147132390693534 What is cribbage? -> $x: (cribbage, instance of, $x) -> (Cribbage, Instance Of, group) -> group (2547ms) What is cribbage? Rules of cribbage -11.672247053165188 What is cribbage? -> what [ be cribbage ] ? -> what be know be cribbage ? -> $x: ($x, be know be, cribbage) -> $x: ($x, know, cribbage) -> (Rules of cribbage, Also known as, Cribbage) -> Rules of cribbage (3500ms) What is cribbage? Cribbage statistics -11.87545756027938 What is cribbage? -> what [ be cribbage ] ? -> what be know be cribbage ? -> $x: ($x, be know be, cribbage) -> $x: ($x, know, cribbage) -> (Cribbage statistics, Also known as, Cribbage) -> Cribbage statistics (3501ms) What is cribbage? 29 points -12.081618949867709 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is, 29 points) -> 29 points (4340ms) What is cribbage? Card game -12.248788479876241 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, game, cribbage) -> (Card game, Computer games, Hi-Res Cribbage) -> Card game (5324ms) What is cribbage? The Cribbage Generation Is Here -12.326399963427946 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (The Cribbage Generation Is Here, Editions, The Cribbage Generation Is Here) -> The Cribbage Generation Is Here (5324ms) What is cribbage? User login -12.348221356563933 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (User login, is, Five Hundred Cribbage) -> User login (4340ms) What is cribbage? every day -12.380983320895297 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, are played, every day) -> every day (4340ms) What is cribbage? Each point -12.434997946996269 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Each point, is called, a cribbage) -> Each point (4340ms) What is cribbage? I?ll -12.47610467133805 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (I?ll, be playing, cribbage) -> I?ll (4340ms) What is cribbage? 61 points -12.48887653649394 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, was played to, 61 points) -> 61 points (4340ms) What is cribbage? a term -12.521959703607576 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, is, a term) -> a term (4340ms) What is cribbage? King Cribbage -12.534815477322429 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, game, cribbage) -> (King Cribbage, Game, King Cribbage) -> King Cribbage (5324ms) What is cribbage? a little -12.636969979541647 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is, a little) -> a little (4340ms) What is cribbage? a new cribbage game -12.664994671369875 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is, a new cribbage game) -> a new cribbage game (4527ms) What is cribbage? fun -12.68363247041748 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is, fun) -> fun (4527ms) What is cribbage? a doubt -12.694861688975031 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is without, a doubt) -> a doubt (4527ms) What is cribbage? Cribbage -12.73248828683868 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Cribbage, is, a new cribbage game) -> Cribbage (4527ms) What is cribbage? Double Cribbage -12.739245410433831 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Double Cribbage, is, four player cribbage) -> Double Cribbage (4527ms) What is cribbage? Simulation video game -12.740214966559932 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, game, cribbage) -> (Simulation video game, Computer games, Hoyle's Backgammon & Cribbage) -> Simulation video game (5360ms) What is cribbage? Strategy video game -12.740214966559932 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, game, cribbage) -> (Strategy video game, Computer games, The Games People Play: Gin, Cribbage, Checkers, and Backgammon) -> Strategy video game (5359ms) What is cribbage? more complex card games -12.776309712342373 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, are, more complex card games) -> more complex card games (4527ms) What is cribbage? Microsoft Windows -12.778157323364018 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, game, cribbage) -> (Microsoft Windows, Games On This Platform, Hoyle's Backgammon & Cribbage) -> Microsoft Windows (5360ms) What is cribbage? Winchester Press -12.778157323364018 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (Winchester Press, Book editions published, How to win at cribbage) -> Winchester Press (5360ms) What is cribbage? two men -12.795636860301293 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (two men, were playing at, cribbage) -> two men (4527ms) What is cribbage? new -12.795692272003627 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (new, is, Cribbage Vox) -> new (4527ms) What is cribbage? DeLynn -12.801826217811264 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (DeLynn, was hosting, his cribbage tournament) -> DeLynn (4596ms) What is cribbage? a hit -12.807373395925664 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, was, a hit) -> a hit (4596ms) What is cribbage? a classic , two-player game -12.826078176994349 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is, a classic , two-player game) -> a classic , two-player game (4596ms) What is cribbage? Bill@PlayCribbage .com Website -12.829710632393635 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Bill@PlayCribbage .com Website, is, PlayCribbage) -> Bill@PlayCribbage .com Website (4596ms) What is cribbage? Lake Superior Cribbage -12.837259840693461 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: (cribbage, edition of, $x) -> (Lake Superior Cribbage: The GEM of Board Games, Edition Of, Lake Superior Cribbage) -> Lake Superior Cribbage (5393ms) What is cribbage? Carte Primus -12.854979700251432 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Carte Primus, is, a cool cribbage game) -> Carte Primus (4596ms) What is cribbage? Hoyle's Backgammon & Cribbage -12.862433135111557 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, game, cribbage) -> (Hoyle's Backgammon & Cribbage, Game, Hoyle's Backgammon & Cribbage) -> Hoyle's Backgammon & Cribbage (5393ms) What is cribbage? Fun with Cribbage -12.862433135111557 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: (cribbage, edition of, $x) -> (Fun with Cribbage, Edition Of, Fun with Cribbage) -> Fun with Cribbage (6192ms) What is cribbage? How to win at cribbage -12.862433135111557 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (How to win at cribbage, Edition Of, How to win at cribbage) -> How to win at cribbage (6121ms) What is cribbage? Hayden Book Company, Inc. -12.862433135111557 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, game, cribbage) -> (Hayden Book Company, Inc., Games Developed, King Cribbage) -> Hayden Book Company, Inc. (6192ms) What is cribbage? Winning Cribbage Tips (Mensa) -12.862433135111557 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (Winning Cribbage Tips (Mensa), Edition Of, Winning Cribbage Tips) -> Winning Cribbage Tips (Mensa) (5539ms) What is cribbage? Cribbage for Experts -12.862433135111557 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (Cribbage for Experts, Editions, Cribbage for Experts: And Future Experts) -> Cribbage for Experts (6192ms) What is cribbage? Win at cribbage -12.862433135111557 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: (cribbage, edition of, $x) -> (Win at cribbage, Edition Of, Win at cribbage) -> Win at cribbage (6192ms) What is cribbage? Cribbage for Experts: And Future Experts -12.862433135111557 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition of, cribbage) -> (Cribbage for Experts: And Future Experts, Edition Of, Cribbage for Experts) -> Cribbage for Experts: And Future Experts (6121ms) What is cribbage? Winning Cribbage Tips -12.862433135111557 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: (cribbage, edition, $x) -> (Winning Cribbage Tips (Mensa), Edition Of, Winning Cribbage Tips) -> Winning Cribbage Tips (6121ms) What is cribbage? Play Cribbage to Win MENSA -12.862433135111557 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition of, cribbage) -> (Play Cribbage to Win MENSA, Edition Of, Play Cribbage to Win MENSA) -> Play Cribbage to Win MENSA (6018ms) What is cribbage? Cribbage d'Etroit -12.862433135111557 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (Cribbage d'Etroit, Editions, Cribbage d'Etroit) -> Cribbage d'Etroit (6121ms) What is cribbage? Lake Superior Cribbage: The GEM of Board Games -12.862433135111557 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (Lake Superior Cribbage: The GEM of Board Games, Edition Of, Lake Superior Cribbage) -> Lake Superior Cribbage: The GEM of Board Games (6121ms) What is cribbage? Key to Cribbage -12.862433135111557 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: (cribbage, edition, $x) -> (Key to Cribbage (050107), Edition Of, Key to Cribbage) -> Key to Cribbage (6192ms) What is cribbage? the Wrentham Senior Center -12.864883600617336 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is offered at, the Wrentham Senior Center) -> the Wrentham Senior Center (4596ms) What is cribbage? 10 years -12.867162780290148 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (the biggest cribbage sites, has been around for over, 10 years) -> 10 years (4596ms) What is cribbage? a very interesting and engaging game -12.87104752997031 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is, a very interesting and engaging game) -> a very interesting and engaging game (4687ms) What is cribbage? a fun game -12.872087538541965 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is, a fun game) -> a fun game (4687ms) What is cribbage? a great family game -12.87873784709927 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, could be, a great family game) -> a great family game (4687ms) What is cribbage? a mention -12.884048966852212 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, would be complete without, a mention) -> a mention (4687ms) What is cribbage? Star Wars fame -12.88690418741346 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Star Wars fame, may be playing a game of, cribbage) -> Star Wars fame (4687ms) What is cribbage? an itinerant?s game -12.890263464683464 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (?Cribbage, is, an itinerant?s game) -> an itinerant?s game (4687ms) What is cribbage? a family -12.904951689397427 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (a family, is, Cribbage Death Match) -> a family (4687ms) What is cribbage? one game -12.907124484122363 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is, one game) -> one game (4687ms) What is cribbage? 29 -12.917590879048976 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, is, 29) -> 29 (4981ms) What is cribbage? local favourites -12.918156536343067 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, are, local favourites) -> local favourites (4981ms) What is cribbage? a call shot game -12.952265072359275 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is, a call shot game) -> a call shot game (4981ms) What is cribbage? InterStellar MacCribbage -12.959656630862922 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (InterStellar MacCribbage, is, a shareware Cribbage program) -> InterStellar MacCribbage (4981ms) What is cribbage? Swan River -12.964834435549447 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, go, $x) -> (the singles cribbage championship, is going back to, Swan River) -> Swan River (4981ms) What is cribbage? Royal Cribbage -12.966135215988537 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Royal Cribbage, is, a freeware Cribbage program) -> Royal Cribbage (4981ms) What is cribbage? One game I?d -12.966605011099606 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (One game I?d, ever played was, cribbage) -> One game I?d (4981ms) What is cribbage? Cribbage Corner -12.969890723839585 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Cribbage Corner, is one of, the biggest cribbage sites) -> Cribbage Corner (4981ms) What is cribbage? a Game -12.971592220318195 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is considered to be, a Game) -> a Game (5048ms) What is cribbage? England -12.977317160850202 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (England, is the birthplace of, cribbage) -> England (5048ms) What is cribbage? free or -12.980812799873458 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, can be played for, free or) -> free or (5048ms) What is cribbage? accurate counting -12.981326813148351 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, is, accurate counting) -> accurate counting (5048ms) What is cribbage? Amend Games -12.986789728615516 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Amend Games, was introduced after, a cribbage game) -> Amend Games (5048ms) What is cribbage? an Englishman -13.018579895678236 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, is credited to, an Englishman) -> an Englishman (5048ms) What is cribbage? Every Saturday -13.020911309919548 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Every Saturday, is, Cribbage) -> Every Saturday (6192ms) What is cribbage? a new and growing group -13.024138513252435 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is, a new and growing group) -> a new and growing group (6192ms) What is cribbage? Parson?s poke -13.0256534922916 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Parson?s poke, is, another cribbage term) -> Parson?s poke (6346ms) What is cribbage? The ACC -13.0427712066119 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (The ACC, is the home of, great cribbage) -> The ACC (6346ms) What is cribbage? a study -13.05597597172122 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (a study, had been done regarding, cribbage hands) -> a study (6346ms) What is cribbage? Zach and Jonathan -13.05780258623972 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Zach and Jonathan, were essentially, cribbage machines) -> Zach and Jonathan (6346ms) What is cribbage? an avid Boston Red Sox Fan -13.0673649215832 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, was, an avid Boston Red Sox Fan) -> an avid Boston Red Sox Fan (6346ms) What is cribbage? Sir John Suckling -13.06933233495099 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, was invented by, Sir John Suckling) -> Sir John Suckling (6346ms) What is cribbage? The Past Playing Cards -13.073077690557401 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (The Past Playing Cards, are included with, this Cribbage set) -> The Past Playing Cards (6346ms) What is cribbage? the Oxford English Dictionary -13.080543538963768 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (the Oxford English Dictionary, may be a reference to, cribbage) -> the Oxford English Dictionary (6346ms) What is cribbage? Over-pegging your score -13.08224785505936 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Over-pegging your score, is another form of, cribbage cheating) -> Over-pegging your score (6375ms) What is cribbage? a two player game -13.095823075807527 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is generally, a two player game) -> a two player game (6375ms) What is cribbage? the 15-ball -13.100248788754197 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (the 15-ball, is, a cribbage) -> the 15-ball (6375ms) What is cribbage? the BCA Official Rules and Records Book -13.10972205911602 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, are in, the BCA Official Rules and Records Book) -> the BCA Official Rules and Records Book (6375ms) What is cribbage? each row and column -13.122100826838256 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (each row and column, is done as in, normal cribbage) -> each row and column (6375ms) What is cribbage? the Wawatam Area Senior Center -13.143256995848793 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (CRIBBAGE, will be played at, the Wawatam Area Senior Center) -> the Wawatam Area Senior Center (6375ms) What is cribbage? Club director Tracy Yott -13.147891453553848 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Club director Tracy Yott, was introduced to, cribbage) -> Club director Tracy Yott (6375ms) What is cribbage? August Cribbage -13.155142329051621 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (August Cribbage, is, the perfect cribbage hand) -> August Cribbage (6403ms) What is cribbage? the ACC -13.173925427192422 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, has been a member of, the ACC) -> the ACC (6403ms) What is cribbage? a fifty two card pack -13.183830873225455 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is played with, a fifty two card pack) -> a fifty two card pack (6403ms) What is cribbage? 4 or more cards -13.19709693874701 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, is, 4 or more cards) -> 4 or more cards (6403ms) What is cribbage? the ACC Web site -13.1977987762358 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, are available on, the ACC Web site) -> the ACC Web site (6403ms) What is cribbage? two phases -13.206545074242976 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is played in, two phases) -> two phases (6403ms) What is cribbage? a crazy game -13.240137092036573 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, is, a crazy game) -> a crazy game (6403ms) What is cribbage? Commodore 64 -13.254990595892293 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, game, cribbage) -> (Commodore 64, Games On This Platform, King Cribbage) -> Commodore 64 (6431ms) What is cribbage? Key to Cribbage (050107) -13.254990595892293 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: (cribbage, edition, $x) -> (Key to Cribbage, Editions, Key to Cribbage (050107)) -> Key to Cribbage (050107) (6431ms) What is cribbage? Miracles on 4th Street -13.254990595892293 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (Miracles on 4th Street, Editions, Miracles on 4th Street: A Quiz Book for Cribbage Fanatics) -> Miracles on 4th Street (6431ms) What is cribbage? Atari 8-bit family -13.254990595892293 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, game, cribbage) -> (Atari 8-bit family, Games On This Platform, King Cribbage) -> Atari 8-bit family (6431ms) What is cribbage? a card game -13.264895983537036 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is, a card game) -> a card game (6431ms) What is cribbage? Hal Mueller -13.26521191101487 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Hal Mueller, is, a strong Cribbage program) -> Hal Mueller (6461ms) What is cribbage? Scoring aces -13.270739249170564 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Scoring aces, Is the ace high in, cribbage) -> Scoring aces (6461ms) What is cribbage? the 15 -13.292654850345478 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (the 15, is in, standard Cribbage) -> the 15 (6461ms) What is cribbage? an elderly couple -13.295687891626985 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (an elderly couple, were playing, cribbage) -> an elderly couple (6461ms) What is cribbage? a great game -13.296233772228495 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is, a great game) -> a great game (6461ms) What is cribbage? Forum -13.299011927104033 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Forum, Is, cribbage dying) -> Forum (6461ms) What is cribbage? The 15 ball -13.305917804468812 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (The 15 ball, is, a cribbage) -> The 15 ball (6461ms) What is cribbage? two people -13.31247478721413 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, is played generally between, two people) -> two people (6461ms) What is cribbage? a poker expert -13.316634891092448 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is, a poker expert) -> a poker expert (6488ms) What is cribbage? a wonderful game -13.316634891092448 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is, a wonderful game) -> a wonderful game (6488ms) What is cribbage? The Captain -13.348784942210035 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (The Captain, was playing, cribbage) -> The Captain (6488ms) What is cribbage? the 4th Earl -13.364379816837792 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (the 4th Earl, was busy playing a game of, cribbage) -> the 4th Earl (6488ms) What is cribbage? 400 years -13.368129657672576 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, has been around for, 400 years) -> 400 years (6488ms) What is cribbage? no hard evidence -13.381548572449235 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (no hard evidence, was the inventor of, Cribbage) -> no hard evidence (6488ms) What is cribbage? Subject property -13.39619604684921 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Subject property, is located at, 3965 Cribbage Lane) -> Subject property (6488ms) What is cribbage? Mr Windsor -13.398807901618769 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Mr Windsor, Instance Of, national cribbage champion) -> Mr Windsor (6488ms) What is cribbage? the 2nd and 4th Sundays -13.430023496283761 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is, the 2nd and 4th Sundays) -> the 2nd and 4th Sundays (6519ms) What is cribbage? 1:00 p.m. Mah Jongg -13.448343411597737 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is held each Thursday at, 1:00 p.m. Mah Jongg) -> 1:00 p.m. Mah Jongg (6518ms) What is cribbage? Jennifer -13.450274319803716 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Jennifer, was playing, cribbage) -> Jennifer (6518ms) What is cribbage? a cribbage board -13.45294427249181 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is scored with, a cribbage board) -> a cribbage board (6519ms) What is cribbage? 12:30 -13.463166233925826 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is held each Thursday at, 12:30) -> 12:30 (6519ms) What is cribbage? mysterious terms -13.465370759983614 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is full of mildly, mysterious terms) -> mysterious terms (6518ms) What is cribbage? table-talk -13.466274827472208 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (cribbage, has developed a sort of, table-talk) -> table-talk (6518ms) What is cribbage? Scores -13.483379040353206 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Scores, are as, standard Cribbage) -> Scores (6543ms) What is cribbage? free accessories -13.497494838786242 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (free accessories, are provided with, the cribbage board) -> free accessories (6543ms) What is cribbage? Word -13.49942693299554 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, game, cribbage) -> (Word, Games, Kings Cribbage) -> Word (6543ms) What is cribbage? a standard 52-card deck -13.50305748154217 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is played with, a standard 52-card deck) -> a standard 52-card deck (6543ms) What is cribbage? 1:00 p.m. -13.512154633285725 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is held each Thursday at, 1:00 p.m.) -> 1:00 p.m. (6543ms) What is cribbage? a charter member -13.523898359593742 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (a charter member, has been playing, cribbage) -> a charter member (6543ms) What is cribbage? Book publishing -13.54592250278419 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be in, cribbage) -> (Book publishing, is an industry in, a cribbage game?and) -> Book publishing (6543ms) What is cribbage? Oldcastle -13.554151486078357 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (Oldcastle, Book editions published, Win at cribbage) -> Oldcastle (6632ms) What is cribbage? Macintosh -13.554151486078357 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, game, cribbage) -> (Macintosh, Games On This Platform, Hoyle's Backgammon & Cribbage) -> Macintosh (6543ms) What is cribbage? pagat.com -13.561462508581208 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (pagat.com, can be found on, the Cribbage Variations page) -> pagat.com (6632ms) What is cribbage? Noddy -13.564690075909862 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is exactly like, Noddy) -> Noddy (6632ms) What is cribbage? The most popular activity -13.588410896826566 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (The most popular activity, was, cribbage) -> The most popular activity (6632ms) What is cribbage? a similar idea -13.594570029962401 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, was already working on, a similar idea) -> a similar idea (6632ms) What is cribbage? 9780963658302 -13.611643810460764 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (9780963658302, Book Editions, The Cribbage Generation Is Here) -> 9780963658302 (6632ms) What is cribbage? Scoring -13.640736594930836 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Scoring, is virtually the same as, Cribbage) -> Scoring (6632ms) What is cribbage? Janet -13.650172780836046 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Janet, was, an avid cribbage player) -> Janet (6632ms) What is cribbage? The next game viewer -13.651799883176219 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (The next game viewer, will be for, cribbage) -> The next game viewer (6661ms) What is cribbage? boards and pegs -13.652321853011587 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (CRIBBAGE, Here are, boards and pegs) -> boards and pegs (6661ms) What is cribbage? Adam -13.655573693562221 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Adam, is dying to play, cribbage) -> Adam (6661ms) What is cribbage? Aces -13.680331229006695 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Aces, are always low in, cribbage) -> Aces (6661ms) What is cribbage? the 1600 -13.692036499261631 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, were codified in, the 1600) -> the 1600 (6661ms) What is cribbage? Cards -13.69915271617953 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Cards, are used in, Cribbage) -> Cards (6661ms) What is cribbage? a game of luck -13.726198108547663 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is, a game of luck) -> a game of luck (6661ms) What is cribbage? 30 holes -13.727529112309035 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (A standard cribbage board, has four parallel rows of, 30 holes) -> 30 holes (6661ms) What is cribbage? adults and children -13.734413437031789 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is good for, adults and children) -> adults and children (6690ms) What is cribbage? Morneau -13.739630908214401 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Morneau, is a whiz at, cribbage and solitaire) -> Morneau (6690ms) What is cribbage? 60 holes -13.745213051140146 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (The traditional cribbage board layout, has, 60 holes) -> 60 holes (6690ms) What is cribbage? more fun than gin rummy -13.74753247296248 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, is, more fun than gin rummy) -> more fun than gin rummy (6690ms) What is cribbage? Captain's Cribbage -13.771279871028574 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Captain's Cribbage, Instance Of, variant of cribbage) -> Captain's Cribbage (6690ms) What is cribbage? a sign -13.799590557498178 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (Cribbage whiz Harold Butts, may have been tacking up, a sign) -> a sign (6690ms) What is cribbage? White Maple -13.808821336523305 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (The Rosewood cribbage board, has been inlaid with, White Maple) -> White Maple (6690ms) What is cribbage? Cribbage Pro Online -13.8194439827826 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Cribbage Pro Online, Instance Of, classic cribbage game) -> Cribbage Pro Online (6690ms) What is cribbage? Damage -13.82025674523326 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Damage, is recorded with, brass cribbage markers) -> Damage (6775ms) What is cribbage? Karl Demanski -13.835509835219645 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Karl Demanski, Instance Of, master cribbage player) -> Karl Demanski (6775ms) What is cribbage? Cribbage.ca -13.836978347926223 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Cribbage.ca, Instance Of, bilingual cribbage card game) -> Cribbage.ca (6775ms) What is cribbage? HALSCRIB -13.839182688780593 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (HALSCRIB, is certainly, THE killer cribbage program) -> HALSCRIB (6775ms) What is cribbage? Keith Masters -13.882884611121842 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (Cribbage Championships, has been organised by, Keith Masters) -> Keith Masters (6775ms) What is cribbage? big -13.923969056623179 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is, big) -> big (6775ms) What is cribbage? gin rummy -13.933101266791567 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, is more fun than, gin rummy) -> gin rummy (7035ms) What is cribbage? Cribbage .ca -13.96553356458727 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Cribbage .ca, Instance Of, bilingual cribbage card game) -> Cribbage .ca (7035ms) What is cribbage? Canadian Military people -13.97621884342801 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, has been played by, Canadian Military people) -> Canadian Military people (7035ms) What is cribbage? Brass -13.989678594123973 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (The Rosewood cribbage board, has been inlaid with, Brass) -> Brass (7035ms) What is cribbage? Crash Cribbage -13.993185357269786 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Crash Cribbage, Instance Of, variation of cribbage) -> Crash Cribbage (7035ms) What is cribbage? Cribbage League -13.993185357269786 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Cribbage League, Instance Of, five-week cribbage contest) -> Cribbage League (7035ms) What is cribbage? metal marker pegs -14.005776961183077 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (This folding travel Cribbage Board, has, metal marker pegs) -> metal marker pegs (9209ms) What is cribbage? ACC Grass Roots -14.00871690691116 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (ACC Grass Roots, Instance Of, non-profit cribbage organization) -> ACC Grass Roots (9209ms) What is cribbage? Thursday -14.03635604375612 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (Thursday, was, table bowling and cribbage) -> Thursday (9209ms) What is cribbage? 9780970622563 -14.040470347807652 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (9780970622563, Book Editions, Fun with Cribbage) -> 9780970622563 (9456ms) What is cribbage? 9780962700361 -14.040470347807652 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (9780962700361, Book Editions, Lake Superior Cribbage: The GEM of Board Games) -> 9780962700361 (9456ms) What is cribbage? 9781402711046 -14.040470347807652 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (9781402711046, Book Editions, Winning Cribbage Tips (Mensa)) -> 9781402711046 (9456ms) What is cribbage? 9780962700378 -14.040470347807652 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (9780962700378, Book Editions, Cribbage d'Etroit) -> 9780962700378 (9456ms) What is cribbage? 9780876913048 -14.040470347807652 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (9780876913048, Book Editions, How to win at cribbage) -> 9780876913048 (9456ms) What is cribbage? 9780870190278 -14.040470347807652 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (9780870190278, Book Editions, Key to Cribbage (050107)) -> 9780870190278 (9209ms) What is cribbage? 9780948353970 -14.040470347807652 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (9780948353970, Book Editions, Win at cribbage) -> 9780948353970 (9456ms) What is cribbage? 9780806943138 -14.040470347807652 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (9780806943138, Book Editions, Play Cribbage to Win MENSA) -> 9780806943138 (9209ms) What is cribbage? 9780970622594 -14.040470347807652 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (9780970622594, Book Editions, Miracles on 4th Street: A Quiz Book for Cribbage Fanatics) -> 9780970622594 (9456ms) What is cribbage? 9780970622587 -14.040470347807652 What is cribbage? -> what be [ cribbage ] ? -> what be the expansion of cribbage ? -> $x: (cribbage, expansion, $x) -> $x: ($x, edition, cribbage) -> (9780970622587, Book Editions, Cribbage for Experts: And Future Experts) -> 9780970622587 (9456ms) What is cribbage? The play -14.047355703684662 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (The play, is the same as, traditional cribbage) -> The play (9484ms) What is cribbage? Jason Marquis -14.075085387864092 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Jason Marquis, Instance Of, keen cribbage player) -> Jason Marquis (9484ms) What is cribbage? Kings Cribbage -14.078851681261236 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Kings Cribbage, Instance Of, cribbage game) -> Kings Cribbage (9512ms) What is cribbage? Compact Cribbage -14.078851681261236 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Compact Cribbage, Instance Of, half length cribbage board game) -> Compact Cribbage (9512ms) What is cribbage? Pattern Cribbage -14.078851681261236 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Pattern Cribbage, Instance Of, Pattern of cribbage) -> Pattern Cribbage (9484ms) What is cribbage? Michael Schell -14.078851681261236 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Michael Schell, Instance Of, pioneer of modern cribbage theory) -> Michael Schell (9484ms) What is cribbage? Cribbage Quest -14.078851681261236 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Cribbage Quest, Instance Of, fun graphical cribbage game) -> Cribbage Quest (9512ms) What is cribbage? Raymond Rasmussen -14.078851681261236 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Raymond Rasmussen, Instance Of, champion cribbage player) -> Raymond Rasmussen (9484ms) What is cribbage? Cribbage Champion -14.078851681261236 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Cribbage Champion, Instance Of, exciting game of Cribbage) -> Cribbage Champion (9484ms) What is cribbage? James Nelson -14.086685521795342 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (James Nelson, Instance Of, avid cribbage player) -> James Nelson (9512ms) What is cribbage? Corb Lund -14.09232755061672 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Corb Lund, Instance Of, cribbage player) -> Corb Lund (9513ms) What is cribbage? Fish , Romme , and Skat -14.1057795172952 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, go, $x) -> (Cribbage, Go, Fish , Romme , and Skat) -> Fish , Romme , and Skat (9512ms) What is cribbage? Championship Cribbage Pro -14.11823353757363 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Championship Cribbage Pro, Instance Of, simple and fun cribbage game) -> Championship Cribbage Pro (9771ms) What is cribbage? Mr. Cody -14.11823353757363 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Mr. Cody, Instance Of, avid bowler and cribbage player) -> Mr. Cody (9771ms) What is cribbage? King's Cribbage -14.11823353757363 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (King's Cribbage, Instance Of, combination of Scrabble and Cribbage) -> King's Cribbage (9771ms) What is cribbage? Mr. Jordan -14.126067378107738 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Mr. Jordan, Instance Of, avid cribbage player) -> Mr. Jordan (9771ms) What is cribbage? such a rich history -14.128898593186507 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (Cribbage, has, such a rich history) -> such a rich history (9771ms) What is cribbage? Maple -14.13094723146773 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (The Snake shape cribbage board, has been inlaid in, Maple) -> Maple (9771ms) What is cribbage? Ebony -14.138020828081093 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (The White Maple cribbage board, has been inlaid with, Ebony) -> Ebony (9771ms) What is cribbage? O'Kane -14.163127493008773 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (O'Kane, Instance Of, singularly lucky cribbage player) -> O'Kane (9857ms) What is cribbage? CoCocoGames.com -14.163127493008773 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (CoCocoGames.com, Instance Of, cribbage board company) -> CoCocoGames.com (9912ms) What is cribbage? Cribbage ca -14.163127493008773 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Cribbage ca, Instance Of, bilingual cribbage card game) -> Cribbage ca (9830ms) What is cribbage? Mrs. Cerrone -14.163127493008773 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Mrs. Cerrone, Instance Of, member of the Cribbage Club) -> Mrs. Cerrone (9912ms) What is cribbage? QC Cribbage Club -14.163127493008773 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (QC Cribbage Club, Instance Of, group of social cribbage player) -> QC Cribbage Club (9830ms) What is cribbage? ECribbage -14.163127493008773 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (ECribbage, Instance Of, free , online cribbage game) -> ECribbage (9912ms) What is cribbage? Hopoate at center -14.163127493008773 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Hopoate at center, Instance Of, stupid pick, Cribbage) -> Hopoate at center (9885ms) What is cribbage? American Cribbage Congress Grass Roots -14.163127493008773 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (American Cribbage Congress Grass Roots, Instance Of, non-profit cribbage organization) -> American Cribbage Congress Grass Roots (9885ms) What is cribbage? Pavillion Deluxe Cribbage Set -14.163127493008773 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Pavillion Deluxe Cribbage Set, Instance Of, reasonably priced Cribbage Set) -> Pavillion Deluxe Cribbage Set (9830ms) What is cribbage? Rev. Poland -14.163127493008773 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Rev. Poland, Instance Of, avid cribbage) -> Rev. Poland (9858ms) What is cribbage? Halscrib by Hal Mueller -14.163127493008773 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Halscrib by Hal Mueller, Instance Of, strong Cribbage program) -> Halscrib by Hal Mueller (9830ms) What is cribbage? O Cribbage.ca -14.163127493008773 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (O Cribbage.ca, Instance Of, bilingual cribbage card game) -> O Cribbage.ca (9858ms) What is cribbage? MVP Cribbage -14.163127493008773 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (MVP Cribbage, Instance Of, cribbage game) -> MVP Cribbage (9885ms) What is cribbage? Mrs. Kimball -14.163127493008773 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Mrs. Kimball, Instance Of, accomplished cribbage player) -> Mrs. Kimball (9885ms) What is cribbage? Cribbage Champion Game -14.163127493008773 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Cribbage Champion Game, Instance Of, exciting game of Cribbage) -> Cribbage Champion Game (9885ms) What is cribbage? Mr. C -14.163127493008773 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Mr. C, Instance Of, master of cribbage) -> Mr. C (9858ms) What is cribbage? Mr. Montgomery -14.163127493008773 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Mr. Montgomery, Instance Of, accomplished cribbage player) -> Mr. Montgomery (9858ms) What is cribbage? table on the left -14.163127493008773 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (table on the left, Instance Of, Cribbage Coffee table) -> table on the left (9830ms) What is cribbage? CribbageBoardStore.com -14.163127493008773 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (CribbageBoardStore.com, Instance Of, exclusive online seller of classic cribbage board) -> CribbageBoardStore.com (9830ms) What is cribbage? rule of three -14.163127493008773 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (rule of three, Instance Of, cribbage technique) -> rule of three (9885ms) What is cribbage? rule of seven -14.163127493008773 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (rule of seven, Instance Of, cribbage technique) -> rule of seven (9857ms) What is cribbage? Mr. Bradstreet -14.163127493008773 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Mr. Bradstreet, Instance Of, masterful cribbage player) -> Mr. Bradstreet (9858ms) What is cribbage? a drink -14.163940868651512 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (cribbage, have, a drink) -> a drink (9911ms) What is cribbage? Nintendo -14.164621724846901 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (cribbage , bridge or backgammon, have come to include, Nintendo) -> Nintendo (9911ms) What is cribbage? Mr. Obuchowski -14.17096133354288 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Mr. Obuchowski, Instance Of, avid cribbage player) -> Mr. Obuchowski (9911ms) What is cribbage? Mr. Jodoin -14.17096133354288 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Mr. Jodoin, Instance Of, avid cribbage player) -> Mr. Jodoin (9911ms) What is cribbage? Mrs. Goodwin -14.17096133354288 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Mrs. Goodwin, Instance Of, avid cribbage player) -> Mrs. Goodwin (9911ms) What is cribbage? a new home -14.175002082145452 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (Cribbage Forum, has, a new home) -> a new home (9939ms) What is cribbage? Regular readers -14.189955550151865 What is cribbage? -> what [ be cribbage ] ? -> what be know be cribbage ? -> $x: ($x, be know be, cribbage) -> $x: ($x, know, cribbage) -> (Regular readers, will know, the standard Cribbage Corner method) -> Regular readers (3501ms) What is cribbage? two kinds -14.190382419594592 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (The cribbage board, has been inlaid in, two kinds) -> two kinds (9939ms) What is cribbage? a VIDEO option -14.200187036773059 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (The update cribbage, also has, a VIDEO option) -> a VIDEO option (9938ms) What is cribbage? a library -14.204221718331901 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (cribbage , converse, have, a library) -> a library (9938ms) What is cribbage? Charles Dickens Toby Crackit -14.204255155046773 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Charles Dickens Toby Crackit, Instance Of, cribbage player) -> Charles Dickens Toby Crackit (9939ms) What is cribbage? a rich user interface -14.207199985136999 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (Cribbage, has, a rich user interface) -> a rich user interface (9939ms) What is cribbage? several distinctive features -14.209142468550036 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (Cribbage, has, several distinctive features) -> several distinctive features (9939ms) What is cribbage? le -14.217964377360373 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (le, Instance Of, cribbage term) -> le (9965ms) What is cribbage? a wonderful Xmas -14.253695725888946 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (all cribbage players, have, a wonderful Xmas) -> a wonderful Xmas (9965ms) What is cribbage? bed -14.266833463635601 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, go, $x) -> (Cribbage, then went to, bed) -> bed (9965ms) What is cribbage? Fish , Hearts , Old Maid -14.275736081300579 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, go, $x) -> (Cribbage, Go, Fish , Hearts , Old Maid) -> Fish , Hearts , Old Maid (9990ms) What is cribbage? ISA conventions -14.301442371273406 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, go, $x) -> (camping and fishing , play cribbage, go to, ISA conventions) -> ISA conventions (9990ms) What is cribbage? comparison list -14.313179196498442 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (The product Cribbage Board, has been added to, comparison list) -> comparison list (9990ms) What is cribbage? a flip top storing -14.330620891425657 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (The dark brown Cribbage board, has, a flip top storing) -> a flip top storing (9991ms) What is cribbage? one of the few games -14.409982085343835 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is, one of the few games) -> one of the few games (10016ms) What is cribbage? five years -14.431819880211098 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (cribbage boards, has been open seven days a week for, five years) -> five years (10016ms) What is cribbage? Interland/Web.com -14.447335024736958 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (Cribbage Forum, has given up on, Interland/Web.com) -> Interland/Web.com (10015ms) What is cribbage? Roy -14.471044311688086 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Roy, Instance Of, avid bridge and cribbage player) -> Roy (10328ms) What is cribbage? Lew -14.471044311688086 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Lew, Instance Of, dedicated cribbage player) -> Lew (10016ms) What is cribbage? Law -14.478878152222194 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Law, Instance Of, avid cribbage player) -> Law (10328ms) What is cribbage? recommended books -14.495854313706431 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (Cribbage Corner, has its own Amazon list of, recommended books) -> recommended books (10328ms) What is cribbage? the world?s -14.514918293370668 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is one of, the world?s) -> the world?s (10328ms) What is cribbage? journey bags -14.51685569528583 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (Cribbage Provide, had a massive need for, journey bags) -> journey bags (10328ms) What is cribbage? prime directive -14.520296409462622 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (prime directive, Instance Of, cribbage technique) -> prime directive (10328ms) What is cribbage? a faithful following -14.524483510407853 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (Cribbage, has, a faithful following) -> a faithful following (10357ms) What is cribbage? the time -14.525471077114656 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (the time, was spent playing, cribbage) -> the time (10357ms) What is cribbage? two players -14.535778074213415 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (all wood cribbage set, has double tracks for, two players) -> two players (10357ms) What is cribbage? the English language -14.585425099704068 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (Cribbage, has given, the English language) -> the English language (10357ms) What is cribbage? a 29 hand -14.59723005038883 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (cribbage, have yet to get, a 29 hand) -> a 29 hand (10357ms) What is cribbage? the different strategy -14.603556319303713 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, stand out is, the different strategy) -> the different strategy (10357ms) What is cribbage? the British poet -14.648517083806983 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, was invented by, the British poet) -> the British poet (10357ms) What is cribbage? storage space -14.656842914925061 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (Every 29 cribbage board, has, storage space) -> storage space (10426ms) What is cribbage? Dan Barlow -14.688848032957697 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Dan Barlow, Instance Of, National Open Cribbage champion) -> Dan Barlow (10426ms) What is cribbage? the most popular card games -14.692840502213445 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, is one of, the most popular card games) -> the most popular card games (10426ms) What is cribbage? Paul -14.69602752699681 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Paul, Instance Of, avid cribbage player) -> Paul (10426ms) What is cribbage? Roy Snyder -14.696681873491803 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Roy Snyder, Instance Of, avid cribbage player) -> Roy Snyder (10426ms) What is cribbage? The iPhone -14.699658916498809 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (The iPhone, is well served with, free cribbage games) -> The iPhone (10426ms) What is cribbage? user settings -14.71032215060153 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (Cribbage Pro, has a nice set of, user settings) -> user settings (10426ms) What is cribbage? 2 deck -14.723178352206395 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (Every continuous cribbage board, has storage space for, 2 deck) -> 2 deck (10527ms) What is cribbage? two kinds of wood -14.724105060247954 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (The cribbage board, has been inlaid in, two kinds of wood) -> two kinds of wood (10526ms) What is cribbage? 4 player pins -14.742238517451286 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (Cribbage board, has, 4 player pins) -> 4 player pins (10526ms) What is cribbage? the six-card game -14.748465428615663 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, has been superceded by, the six-card game) -> the six-card game (10527ms) What is cribbage? the game -14.749878593533493 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (Cribbage, was, the game) -> the game (10526ms) What is cribbage? James -14.750752080079625 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (James, Instance Of, avid cribbage player) -> James (10527ms) What is cribbage? monumental size -14.753220444797373 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (the Cribbage Series, had grown to, monumental size) -> monumental size (10555ms) What is cribbage? excellent graphics -14.75498887030186 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (Ultimate Cribbage, has, excellent graphics) -> excellent graphics (10555ms) What is cribbage? Jack -14.755227335457615 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Jack, Instance Of, excellent cribbage player) -> Jack (10555ms) What is cribbage? Greg -14.755227335457615 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Greg, Instance Of, mean Cribbage player) -> Greg (10555ms) What is cribbage? Rosewood -14.762245563579086 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, have, $x) -> (The White Maple cribbage board, has been inlaid with, Rosewood) -> Rosewood (10555ms) What is cribbage? Battlefield -14.769179519984124 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Battlefield, Instance Of, variation of cribbage) -> Battlefield (10555ms) What is cribbage? Ernest -14.77701336051823 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Ernest, Instance Of, avid cribbage player) -> Ernest (10555ms) What is cribbage? learning -14.781299700559044 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, be, cribbage) -> (learning, is, our cribbage books) -> learning (10584ms) What is cribbage? brass slot hinges -14.787959812483459 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, make, $x) -> (cribbage boxes, are made with, brass slot hinges) -> brass slot hinges (10584ms) What is cribbage? the language -14.795882346975052 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: (cribbage, be, $x) -> (cribbage, is, the language) -> the language (10584ms) What is cribbage? Ross -14.800121290892758 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Ross, Instance Of, pretty good cribbage player) -> Ross (10584ms) What is cribbage? Tuch -14.800121290892758 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Tuch, Instance Of, lively cribbage player) -> Tuch (10584ms) What is cribbage? Enos -14.800121290892758 What is cribbage? -> what be [ cribbage ] ? -> what be the mening of cribbage ? -> $x: (cribbage, mening, $x) -> $x: ($x, instance of, cribbage) -> (Enos, Instance Of, master cribbage player) -> Enos (10584ms) In what year was the Guinness Brewery founded? 1759 -3.3558047005136467 In what year was the Guinness Brewery founded? -> When was the Guinness Brewery founded? -> $x: (the Guinness Brewery, was founded in, $x) -> (The Guinness brewery, was founded in, 1759) -> 1759 (955ms) Who founded the House of Chanel? Jacques Wetheimer -8.626903841647383 Who founded the House of Chanel? -> who found [ the house of chanel ] ? -> who be the house of chanel 2 ? -> $x: ($x, be the house of, chanel) -> $x: ($x, house of, chanel) -> (Jacques Wetheimer, bought the entire House of, Chanel) -> Jacques Wetheimer (2792ms) Who founded the House of Chanel? Jacques Wertheimer -8.705989684481585 Who founded the House of Chanel? -> who found [ the house of chanel ] ? -> who be the house of chanel 2 ? -> $x: ($x, be the house of, chanel) -> $x: ($x, house of, chanel) -> (Jacques Wertheimer, bought the entire House of, Chanel) -> Jacques Wertheimer (2792ms) Who founded the House of Chanel? Coco Chanel -9.322607237067926 Who founded the House of Chanel? -> who found [ the house of chanel ] ? -> who be the house of chanel 2 ? -> $x: ($x, be the house of, chanel) -> $x: ($x, house of, chanel) -> (Coco Chanel, first established the house of, Chanel) -> Coco Chanel (2792ms) Who founded the House of Chanel? Karl Lagerfeld -9.444800532053241 Who founded the House of Chanel? -> who found [ the house of chanel ] ? -> who be the house of chanel 2 ? -> $x: ($x, be the house of, chanel) -> $x: ($x, house of, chanel) -> (Karl Lagerfeld, took over the House of, Chanel) -> Karl Lagerfeld (2792ms) Who founded the House of Chanel? herself?and -9.540249035144159 Who founded the House of Chanel? -> who found [ the house of chanel ] ? -> who be the house of chanel 2 ? -> $x: ($x, be the house of, chanel) -> $x: ($x, house of, chanel) -> (herself?and, has become the iconic House of, Chanel) -> herself?and (2792ms) Who founded the House of Chanel? Chanel -11.237332684271047 Who founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> (Coco Chanel, first established the house of, Chanel) -> Chanel (3294ms) Who founded the House of Chanel? Dellal -13.067881189883938 Who founded the House of Chanel? -> who found [ the house of chanel ] ? -> who be the house of chanel 2 ? -> $x: ($x, be the house of, chanel) -> $x: ($x, be the will of, chanel) -> (Dellal, will be the new face of, the Boy Chanel handbag campaign) -> Dellal (3656ms) Who founded the House of Chanel? Alain Wertheimer -14.299163433115368 Who founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be own, $x) -> (Chanel, is jointly owned by, Alain Wertheimer) -> Alain Wertheimer (5744ms) Who founded the House of Chanel? the perfect height -14.50489881194736 Who founded the House of Chanel? -> who found [ the house of chanel ] ? -> who be the house of chanel 2 ? -> $x: ($x, be the house of, chanel) -> $x: (chanel, be blessing, $x) -> (Chanel Iman, is blessed with, the perfect height) -> the perfect height (3707ms) Who founded the House of Chanel? Larcrest Holsteins -15.116297898174082 Who founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be own, $x) -> (EX-93-3E GMD DOM Chanel, is owned by, Larcrest Holsteins) -> Larcrest Holsteins (5744ms) Who founded the House of Chanel? exquisite craftsmanship -15.626396107163572 Who founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be famous, $x) -> (Chanel flap bag, is famous for, exquisite craftsmanship) -> exquisite craftsmanship (5691ms) Who founded the House of Chanel? 1939 -15.638709361507367 Who founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> (Coco Chanel, closed her couture house in, 1939) -> 1939 (4122ms) Who founded the House of Chanel? chanel -15.71697312153653 Who founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be famous, $x) -> (Chanel J12 Watches, is famous series of, chanel) -> chanel (5691ms) Who founded the House of Chanel? the Wertheimer brothers--grandsons -15.87559481503284 Who founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be own, $x) -> (Chanel, is jointly owned by, the Wertheimer brothers--grandsons) -> the Wertheimer brothers--grandsons (5744ms) Who founded the House of Chanel? lies and rumors -15.877363187835034 Who founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be famous, $x) -> (Chanel, was famous of spreading, lies and rumors) -> lies and rumors (5691ms) Who founded the House of Chanel? the ?little black dress? -15.881015953937894 Who founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be famous, $x) -> (Chanel, is most famous for, the ?little black dress?) -> the ?little black dress? (5691ms) Who founded the House of Chanel? an olfactive diamond -16.120513812842034 Who founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be be construct, $x) -> (Chanel perfume, is constructed around, an olfactive diamond) -> an olfactive diamond (5789ms) Who founded the House of Chanel? a recent recovery -16.155489491413547 Who founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be famous, $x) -> (Chanel hand bags, really are famous for, a recent recovery) -> a recent recovery (5691ms) Who founded the House of Chanel? harpies -16.162519373325917 Who founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be be run, $x) -> (Chanel, is run by, harpies) -> harpies (5868ms) Who founded the House of Chanel? a single unit -16.180639278651025 Who founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be be construct, $x) -> (Chanel jackets, are constructed as, a single unit) -> a single unit (5789ms) Who founded the House of Chanel? a cloud -16.207229755024947 Who founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be surround, $x) -> (Chanel, was surrounded by, a cloud) -> a cloud (5828ms) Who founded the House of Chanel? Gloria Lee -16.21430335163831 Who founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be own, $x) -> (Chanel, is jointly owned by, Gloria Lee) -> Gloria Lee (5744ms) Who founded the House of Chanel? quilts -16.384453005925085 Who founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be famous, $x) -> (Chanel, is famous for there, quilts) -> quilts (5691ms) Who founded the House of Chanel? 80 years -16.534525822601744 Who founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be famous, $x) -> (Chanel, is a famous brand in, 80 years) -> 80 years (5691ms) Who founded the House of Chanel? Coco -16.535384325012572 Who founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be own, $x) -> (Chanel, is surprisingly still owned by, Coco) -> Coco (5745ms) Who founded the House of Chanel? a over 80 years -16.53763520172529 Who founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be famous, $x) -> (Chanel, is a famous brand with, a over 80 years) -> a over 80 years (5691ms) Who founded the House of Chanel? a stroll in the variety -16.5962347467144 Who founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be own, $x) -> (chanel outlet, is owned by, a stroll in the variety) -> a stroll in the variety (5745ms) Who founded the House of Chanel? the NBA -16.677862106792375 Who founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be be run, $x) -> (Chanel outlet, is likely to run in, the NBA) -> the NBA (5868ms) Who founded the House of Chanel? the industry -17.114260654258256 Who founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be famous, $x) -> (Chanel Unisex watches, are very famous in, the industry) -> the industry (5744ms) Who founded the House of Chanel? the fashion industry -17.388280322439805 Who founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be famous, $x) -> (Chanel Unisex watches, are very famous in, the fashion industry) -> the fashion industry (5744ms) Who founded the House of Chanel? the different types -17.412441957851726 Who founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be famous, $x) -> (Chanel Handbags, is famous among, the different types) -> the different types (5789ms) Who founded the House of Chanel? the likes -17.47624161336659 Who founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be famous, $x) -> (Coco Chanel, was made famous by, the likes) -> the likes (5789ms) Who founded the House of Chanel? the extra attention -17.569358207594316 Who founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be own, $x) -> (Chanel, is owned by, the extra attention) -> the extra attention (5789ms) Who founded the House of Chanel? the little black dress -17.639759246124935 Who founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be famous, $x) -> (chanel uk, is most famous for, the little black dress) -> the little black dress (5789ms) Who founded the House of Chanel? the best quality -17.668798686164894 Who founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be famous, $x) -> (Chanel bags, are famous for, the best quality) -> the best quality (5789ms) Who founded the House of Chanel? the highest standards -17.705176019307185 Who founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be be construct, $x) -> (Chanel handbags, are constructed with, the highest standards) -> the highest standards (5789ms) Who founded the House of Chanel? the dedicated pair -17.719979655411294 Who founded the House of Chanel? -> who found [ the house of chanel ] ? -> what be la the house of chanel ? -> $x: (chanel, the house, $x) -> $x: (chanel, house, $x) -> $x: (chanel, be famous, $x) -> (The actual Chanel bag, will be famous for, the dedicated pair) -> the dedicated pair (5828ms) What is Weiss's home town? small comic masterpiece -11.177009238450053 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be old weiss ? -> $x: (old weiss, instance of, $x) -> (Weiss's bad tempered old hornet'', Instance Of, small comic masterpiece) -> small comic masterpiece (15598ms) What is Weiss's home town? Answers.com -11.291827625118414 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Weiss, can be found at, Answers.com) -> Answers.com (14377ms) What is Weiss's home town? Weiss?s warning -11.534018861839552 What is Weiss's home town? -> what be [ weiss s ] home town ? -> what be weiss s s state ? -> $x: (weiss s, state, $x) -> (Weiss Research?s Safe Money Report, stated, Weiss?s warning) -> Weiss?s warning (10004ms) What is Weiss's home town? inspirer of politics -11.537328622265823 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be old weiss ? -> $x: (old weiss, instance of, $x) -> (Seventeen-year-old Aimee Lee Weiss, Instance Of, inspirer of politics) -> inspirer of politics (15598ms) What is Weiss's home town? old-world clockworker, making metal animal -11.537328622265823 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be old weiss ? -> $x: (old weiss, instance of, $x) -> (Old Frau Weiss, Instance Of, old-world clockworker, making metal animal) -> old-world clockworker, making metal animal (15598ms) What is Weiss's home town? http://en.wikipedia.org/wiki/Emil%20Weiss -11.80361328631787 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Emil Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Emil%20Weiss) -> http://en.wikipedia.org/wiki/Emil%20Weiss (14553ms) What is Weiss's home town? http://en.wikipedia.org/wiki/Eric%20Weiss -11.80361328631787 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Eric Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Eric%20Weiss) -> http://en.wikipedia.org/wiki/Eric%20Weiss (14376ms) What is Weiss's home town? http://en.wikipedia.org/wiki/Andrew%20Weiss%20(guitarist) -11.80361328631787 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Andy Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Andrew%20Weiss%20(guitarist)) -> http://en.wikipedia.org/wiki/Andrew%20Weiss%20(guitarist) (14431ms) What is Weiss's home town? http://en.wikipedia.org/wiki/Wojciech%20Weiss -11.80361328631787 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (wojciech weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Wojciech%20Weiss) -> http://en.wikipedia.org/wiki/Wojciech%20Weiss (14504ms) What is Weiss's home town? http://en.wikipedia.org/wiki/John%20Weiss -11.80361328631787 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (John Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/John%20Weiss) -> http://en.wikipedia.org/wiki/John%20Weiss (14432ms) What is Weiss's home town? http://en.wikipedia.org/wiki/Shaun%20Weiss -11.80361328631787 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Shaun Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Shaun%20Weiss) -> http://en.wikipedia.org/wiki/Shaun%20Weiss (14431ms) What is Weiss's home town? http://en.wikipedia.org/wiki/Norman%20Weiss -11.80361328631787 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Norman Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Norman%20Weiss) -> http://en.wikipedia.org/wiki/Norman%20Weiss (14504ms) What is Weiss's home town? http://en.wikipedia.org/wiki/Ellen%20Weiss -11.80361328631787 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (ellen weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Ellen%20Weiss) -> http://en.wikipedia.org/wiki/Ellen%20Weiss (14464ms) What is Weiss's home town? http://en.wikipedia.org/wiki/Mount%20Weiss -11.80361328631787 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Mount Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Mount%20Weiss) -> http://en.wikipedia.org/wiki/Mount%20Weiss (14376ms) What is Weiss's home town? http://en.wikipedia.org/wiki/Allan%20Weiss -11.80361328631787 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Allan Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Allan%20Weiss) -> http://en.wikipedia.org/wiki/Allan%20Weiss (14464ms) What is Weiss's home town? http://en.wikipedia.org/wiki/Sid%20Weiss -11.80361328631787 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Sid Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sid%20Weiss) -> http://en.wikipedia.org/wiki/Sid%20Weiss (14504ms) What is Weiss's home town? http://en.wikipedia.org/wiki/Vladimir%20Weiss%20(footballer%20born%201964) -11.80361328631787 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Vladimir Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Vladimir%20Weiss%20(footballer%20born%201964)) -> http://en.wikipedia.org/wiki/Vladimir%20Weiss%20(footballer%20born%201964) (14504ms) What is Weiss's home town? http://en.wikipedia.org/wiki/Lisa%20Wei%C3%9F -11.80361328631787 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Lisa Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Lisa%20Wei%C3%9F) -> http://en.wikipedia.org/wiki/Lisa%20Wei%C3%9F (14504ms) What is Weiss's home town? http://en.wikipedia.org/wiki/Matt%20Weiss -11.80361328631787 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Matt Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Matt%20Weiss) -> http://en.wikipedia.org/wiki/Matt%20Weiss (14376ms) What is Weiss's home town? http://en.wikipedia.org/wiki/Johnny%20Weiss -11.80361328631787 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Johnny Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Johnny%20Weiss) -> http://en.wikipedia.org/wiki/Johnny%20Weiss (14431ms) What is Weiss's home town? http://en.wikipedia.org/wiki/Rob%20Weiss -11.80361328631787 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Rob Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Rob%20Weiss) -> http://en.wikipedia.org/wiki/Rob%20Weiss (14431ms) What is Weiss's home town? http://en.wikipedia.org/wiki/Erick%20Weiss -11.80361328631787 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Erick Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Erick%20Weiss) -> http://en.wikipedia.org/wiki/Erick%20Weiss (14464ms) What is Weiss's home town? http://en.wikipedia.org/wiki/Stanley%20Weiss -11.80361328631787 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Stanley Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Stanley%20Weiss) -> http://en.wikipedia.org/wiki/Stanley%20Weiss (14464ms) What is Weiss's home town? http://en.wikipedia.org/wiki/Trude%20Weiss%2DRosmarin -11.80361328631787 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Trude Weiss-Rosmarin, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Trude%20Weiss%2DRosmarin) -> http://en.wikipedia.org/wiki/Trude%20Weiss%2DRosmarin (14464ms) What is Weiss's home town? http://en.wikipedia.org/wiki/Nate%20Weiss -11.80361328631787 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Nate Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Nate%20Weiss) -> http://en.wikipedia.org/wiki/Nate%20Weiss (14376ms) What is Weiss's home town? http://en.wikipedia.org/wiki/Roberta%20Weiss -11.80361328631787 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Roberta Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Roberta%20Weiss) -> http://en.wikipedia.org/wiki/Roberta%20Weiss (14376ms) What is Weiss's home town? http://en.wikipedia.org/wiki/Bill%20Weiss -11.80361328631787 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Bill Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Bill%20Weiss) -> http://en.wikipedia.org/wiki/Bill%20Weiss (14431ms) What is Weiss's home town? http://en.wikipedia.org/wiki/Emanuel%20Weiss -11.80361328631787 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Emanuel Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Emanuel%20Weiss) -> http://en.wikipedia.org/wiki/Emanuel%20Weiss (14504ms) What is Weiss's home town? http://en.wikipedia.org/wiki/Pierre%20Weiss -11.80361328631787 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Pierre-Ernest Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Pierre%20Weiss) -> http://en.wikipedia.org/wiki/Pierre%20Weiss (14464ms) What is Weiss's home town? http://en.wikipedia.org/wiki/Jamie%20Sue%20Weiss -11.827175183974292 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (jamie sue weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Jamie%20Sue%20Weiss) -> http://en.wikipedia.org/wiki/Jamie%20Sue%20Weiss (14553ms) What is Weiss's home town? http://en.wikipedia.org/wiki/Carl%20G%C3%BCnther%20Weiss -11.827175183974292 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Carl G?nther Weiss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Carl%20G%C3%BCnther%20Weiss) -> http://en.wikipedia.org/wiki/Carl%20G%C3%BCnther%20Weiss (14553ms) What is Weiss's home town? http://en.wikipedia.org/wiki/Mallory%E2%80%93Weiss%20syndrome -11.827175183974292 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Mallory Weiss syndrome, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Mallory%E2%80%93Weiss%20syndrome) -> http://en.wikipedia.org/wiki/Mallory%E2%80%93Weiss%20syndrome (14553ms) What is Weiss's home town? http://en.wikipedia.org/wiki/Louis%20A%2E%20Weiss%20Memorial%20Hospital -11.86546326766598 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be found at, $x) -> (Louis A. Weiss Memorial Hospital, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Louis%20A%2E%20Weiss%20Memorial%20Hospital) -> http://en.wikipedia.org/wiki/Louis%20A%2E%20Weiss%20Memorial%20Hospital (14553ms) What is Weiss's home town? any settlement negotitations -11.966371436492807 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what prevent weiss ? -> $x: ($x, prevent, weiss) -> (any settlement negotitations, prevent, Milberg Weiss) -> any settlement negotitations (10280ms) What is Weiss's home town? Philadelphia -12.062026094129136 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be originally from, $x) -> ($ 1,500 Robert Weiss, is originally from, Philadelphia) -> Philadelphia (14553ms) What is Weiss's home town? the USA -12.075137796582373 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be popular in, $x) -> (His Weiss-Antiqua typeface, was particularly popular in, the USA) -> the USA (14581ms) What is Weiss's home town? Hungry -12.503435398696439 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, be originally from, $x) -> (David Weiss, were originally from, Hungry) -> Hungry (14581ms) What is Weiss's home town? The building -12.761281392207731 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: ($x, be home of, weiss) -> (The building, is the home of, the Stephan Weiss Studio) -> The building (14914ms) What is Weiss's home town? The UND Center -12.770903325914155 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: ($x, play host to, weiss) -> (The UND Center, will play host to, Martin Weiss) -> The UND Center (14762ms) What is Weiss's home town? the U.S. Holocaust Memorial Museum -12.784166332739783 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: ($x, play host to, weiss) -> (the U.S. Holocaust Memorial Museum, played host to, Martin Weiss) -> the U.S. Holocaust Memorial Museum (14763ms) What is Weiss's home town? Romania -12.82867078556631 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, emigrate from, $x) -> (Weiss, emigrated from, Romania) -> Romania (14581ms) What is Weiss's home town? Davis -13.412222419590911 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, will take over, $x) -> (Barry Weiss, will take over for, Davis) -> Davis (14719ms) What is Weiss's home town? President -13.456432319370986 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: (weiss, will take over, $x) -> (Tom Weiss, will take over as, President) -> President (14719ms) What is Weiss's home town? powerhouse -13.66325604262189 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be old weiss ? -> $x: (old weiss, instance of, $x) -> (Weiss's 10-year-old show, Instance Of, powerhouse) -> powerhouse (15598ms) What is Weiss's home town? The new building -13.895387635943782 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: ($x, will be connect to, weiss) -> (The new building, will be connected to, Weiss) -> The new building (14992ms) What is Weiss's home town? work -15.343115815845916 What is Weiss's home town? -> what be [ weiss ] s home town ? -> what be the birthplace of weiss ? -> $x: ($x, be the birthplace of, weiss) -> $x: ($x, change his name to, weiss) -> (work, changed his last name to, Weiss) -> work (14655ms) Which king signed the Magna Carta? King John -4.084419249049735 Which king signed the Magna Carta? -> $x: ($x, instance of, king) ($x, signed, the Magna Carta) -> (King John, Instance Of, english king) (King John, famously signed, the Magna Carta) -> King John (846ms) Which king signed the Magna Carta? Robin Hood -4.2230887782548585 Which king signed the Magna Carta? -> $x: ($x, instance of, king) ($x, signed, the Magna Carta) -> (Robin Hood, Instance Of, king and great heroes) (Robin Hood, signed, the Magna Carta) -> Robin Hood (1241ms) Which king signed the Magna Carta? a hand -7.312238190015426 Which king signed the Magna Carta? -> $x: ($x, instance of, king) ($x, signed, the Magna Carta) -> $x: ($x, modelling, king) ($x, signed, the Magna Carta) -> (a hand, casted model of, Cambridge Kings College) (hand, was about to sign, the Magna Carta) -> a hand (1895ms) Which king signed the Magna Carta? England -7.5479983164466775 Which king signed the Magna Carta? -> $x: ($x, instance of, king) ($x, signed, the Magna Carta) -> $x: ($x, be a by, king) ($x, signed, the Magna Carta) -> (England, was a book first published by, Daniel King) (England, signed, the Magna Carta) -> England (2196ms) Who founded Wal-Mart? Sam Walton 0.601150388120341 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (Sam Walton, founded, Wal-Mart) -> Sam Walton (1946ms) Who founded Wal-Mart? the Walton family -0.6078750500570229 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (the Walton family, founded, Wal-Mart) -> the Walton family (1946ms) Who founded Wal-Mart? no . Sam Walton -0.6914602459265022 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (no . Sam Walton, founded, Wal-Mart) -> no . Sam Walton (1945ms) Who founded Wal-Mart? the Authors Sam Walton -0.9093357261885111 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (the Authors Sam Walton, founded, Wal-Mart and Sam?s Club) -> the Authors Sam Walton (2498ms) Who founded Wal-Mart? Univ -0.9462212121370062 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (Univ, then founded, Wal-Mart) -> Univ (2498ms) Who founded Wal-Mart? Newport native -1.1895213417373895 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (Newport native, founded, Wal-Mart Stores) -> Newport native (2498ms) Who founded Wal-Mart? Arkansas -1.2025610763787573 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (Arkansas, founded, Wal-Mart) -> Arkansas (2498ms) Who founded Wal-Mart? Oklahoma -1.4048142868743332 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (Oklahoma, founded, two American retailers Wal-Mart) -> Oklahoma (2498ms) Who founded Wal-Mart? Illinois -1.484741115172262 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (Illinois, was founded by, Wal-Mart) -> Illinois (2541ms) Who founded Wal-Mart? Bentonville -1.712669248545175 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (Bentonville, was founded by, Wal-Mart heiress Alice Walton) -> Bentonville (2541ms) Who founded Wal-Mart? Walton -1.7394870037000905 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (Walton, founded, Wal-Mart) -> Walton (2542ms) Who founded Wal-Mart? 1962 Sam Walton -2.0903241140367226 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (1962 Sam Walton, founded, Wal-Mart Stores) -> 1962 Sam Walton (2541ms) Who founded Wal-Mart? mike duke -2.528154753226417 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be a person who lead the organization, Wal-Mart) -> (mike duke, is a person who leads the organization, wal-Mart) -> mike duke (2565ms) Who founded Wal-Mart? pet food -2.5989088452892277 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (pet food, found at, Wal*Mart) -> pet food (2565ms) Who founded Wal-Mart? weights and measures -2.63937993453388 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (weights and measures, found, 164 Wal-Marts) -> weights and measures (2565ms) Who founded Wal-Mart? obscure brands -2.7066443712138737 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (obscure brands, found at, Wal-Mart work) -> obscure brands (2565ms) Who founded Wal-Mart? private labels -2.7495778327998477 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (private labels, find, Wal-Mart) -> private labels (2565ms) Who founded Wal-Mart? small vehicles -2.762413420442343 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (small vehicles, can be found at, Wal-Mart) -> small vehicles (2565ms) Who founded Wal-Mart? scrapbooking supplies -2.799549723609054 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (scrapbooking supplies, found at, Wal-Mart) -> scrapbooking supplies (2653ms) Who founded Wal-Mart? Baja California -2.824706240623516 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Baja California, can find, a Wal-Mart) -> Baja California (2654ms) Who founded Wal-Mart? the New York Times -2.859217510665108 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the New York Times, is still found in, many Wal-Marts) -> the New York Times (2653ms) Who founded Wal-Mart? lee scott -3.0100956507090872 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be a person who lead the organization, Wal-Mart) -> (lee scott, is a person who leads the organization, wal-Mart) -> lee scott (2654ms) Who founded Wal-Mart? sam walton -3.0100956507090872 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be a person who lead the organization, Wal-Mart) -> (sam walton, is a person who leads the organization, wal-Mart) -> sam walton (2653ms) Who founded Wal-Mart? Gil -3.03130899027795 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Gil, found a job at, Wal-Mart) -> Gil (2796ms) Who founded Wal-Mart? white sculpy clay -3.1036508980315043 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (white sculpy clay, can be found at, Wal-Mart) -> white sculpy clay (2796ms) Who founded Wal-Mart? a Wal-Mart Supercenter -3.1151240254922863 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (a Wal-Mart Supercenter, found, Wal-Mart) -> a Wal-Mart Supercenter (2796ms) Who founded Wal-Mart? a search -3.1354605762289824 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (a search, found, Wal-Mart) -> a search (2796ms) Who founded Wal-Mart? a local tire company -3.1411931665209893 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (a local tire company, suddenly finds, Wal-Mart) -> a local tire company (2796ms) Who founded Wal-Mart? a clothes line and can?t -3.1822584670850897 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (a clothes line and can?t, find one at, Wal Mart) -> a clothes line and can?t (2796ms) Who founded Wal-Mart? white cardstock paper -3.182504872839512 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (white cardstock paper, can be found at, Wal-Mart) -> white cardstock paper (2822ms) Who founded Wal-Mart? Lotus Center -3.2121390595278907 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, duplicated, Wal-Mart) -> (Lotus Center, is almost an exact duplicate of, a Super Wal Mart) -> Lotus Center (3007ms) Who founded Wal-Mart? a Clone Trooper Power Quad -3.261900865356936 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (a Clone Trooper Power Quad, found at, a Wal-Mart) -> a Clone Trooper Power Quad (2822ms) Who founded Wal-Mart? the Pure Ice brand -3.2639060431415183 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the Pure Ice brand, is found mostly at, Wal-Mart) -> the Pure Ice brand (2822ms) Who founded Wal-Mart? Basker and Noel -3.33175248698258 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Basker and Noel, find, that Wal-Mart) -> Basker and Noel (2822ms) Who founded Wal-Mart? the Luanna brand -3.3635189982108655 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the Luanna brand, found in, Wal-Mart) -> the Luanna brand (2822ms) Who founded Wal-Mart? The Ranch Style Beans -3.364403237314257 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (The Ranch Style Beans, can be found at, Wal Mart) -> The Ranch Style Beans (2856ms) Who founded Wal-Mart? a clear COLORPLACE Spray Paint -3.3715413493525803 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (a clear COLORPLACE Spray Paint, found at, WalMart) -> a clear COLORPLACE Spray Paint (2856ms) Who founded Wal-Mart? the US judges -3.3724255884559717 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the US judges, have found, Wal-Mart guilty) -> the US judges (2856ms) Who founded Wal-Mart? A Florida jury -3.3729175230640656 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (A Florida jury, finds, Wal-Mart liable) -> A Florida jury (2856ms) Who founded Wal-Mart? new electronic gifts -3.378550377838687 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (new electronic gifts, found at, Wal-Mart) -> new electronic gifts (2856ms) Who founded Wal-Mart? Home materials -3.3805556083255643 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Home materials, can be found at, Wal Mart) -> Home materials (2856ms) Who founded Wal-Mart? an explosive device -3.382151744272624 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (an explosive device, found at, Wal-Mart) -> an explosive device (2896ms) Who founded Wal-Mart? Missing special-needs teen -3.3882159381082118 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Missing special-needs teen, found at, Wal-Mart) -> Missing special-needs teen (2896ms) Who founded Wal-Mart? a tool box -3.3954146983959577 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (a tool box, found at, Wal-Mart) -> a tool box (2896ms) Who founded Wal-Mart? a plastic trading card sleeve -3.3954146983959577 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (a plastic trading card sleeve, found at, WalMart) -> a plastic trading card sleeve (2896ms) Who founded Wal-Mart? alcohol -3.416501724548503 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (alcohol, even find, a Wal-Mart) -> alcohol (2896ms) Who founded Wal-Mart? CLW -3.4626137608183116 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (CLW, has found, that Wal-Mart) -> CLW (2896ms) Who founded Wal-Mart? The Brinkmann Q Beam -3.475876714941645 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (The Brinkmann Q Beam, can be found at, Wal Mart) -> The Brinkmann Q Beam (2919ms) Who founded Wal-Mart? Top left -3.485602870758297 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Top left, was found only in, Wal-Mart) -> Top left (2919ms) Who founded Wal-Mart? ? variety -3.501057879934413 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (? variety, would be found at, Wal-Mart) -> ? variety (2919ms) Who founded Wal-Mart? 12/20/2004 AMR Research -3.5162007120921133 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (12/20/2004 AMR Research, finds, Wal-Mart suppliers) -> 12/20/2004 AMR Research (2919ms) Who founded Wal-Mart? natural and organic foods sections -3.5200866147217185 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (natural and organic foods sections, are found in, Wal-Mart) -> natural and organic foods sections (2921ms) Who founded Wal-Mart? customers -3.5425752427427466 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (customers, find great value at, Wal-Mart) -> customers (2919ms) Who founded Wal-Mart? more workers -3.552963306023133 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: (Wal-Mart, have found, $x) -> (?Wal-Mart, was found to have, more workers) -> more workers (3569ms) Who founded Wal-Mart? Aloe Vera -3.5731204532066205 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (Aloe Vera, can now be found at, your local Wal-Mart) -> Aloe Vera (2948ms) Who founded Wal-Mart? zero people -3.613416402795577 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: (Wal-Mart, have found, $x) -> (Wal-Mart stores, have so far found exactly, zero people) -> zero people (3569ms) Who founded Wal-Mart? the family -3.6215414338457825 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (the family, founded, Wal-Mart) -> the family (2947ms) Who founded Wal-Mart? employment gains -3.689522002760742 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: (Wal-Mart, have found, $x) -> (Wal-Mart, were found to have, employment gains) -> employment gains (3569ms) Who founded Wal-Mart? Wal-Mart -3.715033729519122 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (Wal-Mart, can be found by visiting, www.WalMart.com) -> Wal-Mart (2948ms) Who founded Wal-Mart? Bell -3.7164311563452577 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Bell, found at, Wal-Mart) -> Bell (2947ms) Who founded Wal-Mart? greater liability -3.757605198881898 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: (Wal-Mart, have found, $x) -> (Wal*Mart, has been found to have much, greater liability) -> greater liability (3569ms) Who founded Wal-Mart? house advertising -3.7610167808119006 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: (Wal-Mart, have found, $x) -> (Wal-Mart, has found, house advertising) -> house advertising (3569ms) Who founded Wal-Mart? clear coat -3.7654984137691008 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (clear coat, be found at, Wal-Mart) -> clear coat (2984ms) Who founded Wal-Mart? basketball team -3.769983966604135 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (basketball team, could be found outside, the local Wal-Mart) -> basketball team (2984ms) Who founded Wal-Mart? 3-D Paint -3.7846692254134866 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (3-D Paint, found at, Wal-Mart) -> 3-D Paint (2984ms) Who founded Wal-Mart? much that -3.7863915199434413 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (much that, is found in, Wal-mart) -> much that (2984ms) Who founded Wal-Mart? the guy -3.807969744681244 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> (the guy, founded, Wal-Mart) -> the guy (2984ms) Who founded Wal-Mart? a 3$ scarf i -3.8142399446564466 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (a 3$ scarf i, found at, Wal-mart) -> a 3$ scarf i (3006ms) Who founded Wal-Mart? Warren Buffett -3.8179549931322048 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, try to find, wal-mart) -> (Warren Buffett, try to find, the next Wal-Mart) -> Warren Buffett (4409ms) Who founded Wal-Mart? the $ 100 models -3.8301555106853646 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the $ 100 models, found at, Wal Mart) -> the $ 100 models (3007ms) Who founded Wal-Mart? I?m -3.8467791897559507 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, outraged, Wal-Mart) -> (I?m, outraged, that Wal-Mart?s Supercenters) -> I?m (3253ms) Who founded Wal-Mart? CR2032 -3.859826018148005 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (CR2032, are commonly found at, Wal-Mart) -> CR2032 (3006ms) Who founded Wal-Mart? an entrepreneur -3.860990951109931 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: (Wal-Mart, be start by, $x) -> (this ? Wal-Mart, was started by, an entrepreneur) -> an entrepreneur (3006ms) Who founded Wal-Mart? eight weeks -3.881392876104267 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (eight weeks, can be found at, Wal-Mart) -> eight weeks (3006ms) Who founded Wal-Mart? suppose -3.9059616169703735 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (suppose, find, a Wal-Mart) -> suppose (3069ms) Who founded Wal-Mart? coffees -3.9103180335508956 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (coffees, found at, Wal-Mart) -> coffees (3069ms) Who founded Wal-Mart? Procter & Gamble -3.9400453009051697 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Procter & Gamble, has found, Wal-Mart) -> Procter & Gamble (3069ms) Who founded Wal-Mart? German shoppers -4.011544681337451 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (German shoppers, found, Wal-Mart) -> German shoppers (3069ms) Who founded Wal-Mart? Sandwich containers -4.027952234676757 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Sandwich containers, can be found at, Wal-Mart) -> Sandwich containers (3069ms) Who founded Wal-Mart? Several states -4.041542872465838 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Several states, have found, Wal-Mart workers) -> Several states (3163ms) Who founded Wal-Mart? a famous store brand -4.071155945634938 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (a famous store brand, can be found in, all Wal-Mart stores) -> a famous store brand (3163ms) Who founded Wal-Mart? Hearing officer -4.110574823115346 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Hearing officer, found, Wal-Mart Stores) -> Hearing officer (3163ms) Who founded Wal-Mart? a product -4.116910840651563 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (a product, found at, Wal-Mart) -> a product (3163ms) Who founded Wal-Mart? commonality -4.125242690366251 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (commonality, found in, Wal-Mart) -> commonality (3163ms) Who founded Wal-Mart? a hat -4.12532250364551 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (a hat, find at, WalMart) -> a hat (3163ms) Who founded Wal-Mart? January Lee County zoning staff -4.1301031585234025 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (January Lee County zoning staff, found, Wal-Mart) -> January Lee County zoning staff (3199ms) Who founded Wal-Mart? Oregon -4.133461706661006 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Oregon, found, Wal-Mart guilty) -> Oregon (3199ms) Who founded Wal-Mart? the USA -4.181585940905434 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the USA, found, a Wal-Mart) -> the USA (3199ms) Who founded Wal-Mart? the Striking Z Fighters -4.197851364388596 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, have found, Wal-Mart) -> (the Striking Z Fighters, have been found at, Wal-Mart) -> the Striking Z Fighters (3199ms) Who founded Wal-Mart? a flavoring oil & yes -4.216354974195843 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (a flavoring oil & yes, can usually be found at, Wal-Mart) -> a flavoring oil & yes (3230ms) Who founded Wal-Mart? solid footing online -4.219218771763425 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: (Wal-Mart, have found, $x) -> (Wal-Mart, has struggled to find, solid footing online) -> solid footing online (3626ms) Who founded Wal-Mart? www.walmartstores.com -4.220840527030877 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: (Wal-Mart, be found by, $x) -> ('s Wal-Mart, can be found by visiting, www.walmartstores.com) -> www.walmartstores.com (3230ms) Who founded Wal-Mart? a certain grand confection -4.240292891366476 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (a certain grand confection, Was found at, Wal-Mart) -> a certain grand confection (3230ms) Who founded Wal-Mart? Eventual his company -4.300353736345917 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, would build, Wal-Mart) -> (Eventual his company, would build, 40 Wal-Marts) -> Eventual his company (3253ms) Who founded Wal-Mart? two other units -4.302186729977661 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: (Wal-Mart, have found, $x) -> (Wal-Mart investigators, have found, two other units) -> two other units (3626ms) Who founded Wal-Mart? thousands -4.314949202182037 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: (Wal-Mart, have found, $x) -> (Wal-Mart, has been found to have, thousands) -> thousands (3626ms) Who founded Wal-Mart? www.WalMart.com -4.3392584650171155 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: (Wal-Mart, be found by, $x) -> (Wal-Mart, can be found by visiting, www.WalMart.com) -> www.WalMart.com (3253ms) Who founded Wal-Mart? disc brakes -4.363356564358956 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, can find, wal-mart) -> (disc brakes, can be found on, Target and Wal-Mart specials) -> disc brakes (4349ms) Who founded Wal-Mart? so few American made items -4.3777063737680555 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (so few American made items, can be found at, Wal-Mart) -> so few American made items (3307ms) Who founded Wal-Mart? the HALO ? Sleep Sack -4.40033268535446 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (the HALO ? Sleep Sack, can be found at, Wal-Mart) -> the HALO ? Sleep Sack (3307ms) Who founded Wal-Mart? violations -4.429830341861594 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (violations, were found throughout, the Wal-Mart system) -> violations (3382ms) Who founded Wal-Mart? travel kits and accessories -4.448708387514311 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (travel kits and accessories, can be found in, Wal-Mart) -> travel kits and accessories (3382ms) Who founded Wal-Mart? one such brand -4.464814567743973 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (one such brand, can be found in, Wal-Mart and Reliance) -> one such brand (3382ms) Who founded Wal-Mart? Force Unleashed figures -4.480794701900146 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, have found, Wal-Mart) -> (Force Unleashed figures, have found their way to, Wal-Mart) -> Force Unleashed figures (3382ms) Who founded Wal-Mart? a man -4.48338269297618 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (a man, was found behind, the WalMart) -> a man (3382ms) Who founded Wal-Mart? Combat? Ant Baits and Gels -4.488497302586607 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (Combat? Ant Baits and Gels, can be found at, your local Wal-Mart) -> Combat? Ant Baits and Gels (3382ms) Who founded Wal-Mart? Udi?s Gluten Free Foods -4.490520857716799 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (Udi?s Gluten Free Foods, can be found in, 150 Wal-Mart stores) -> Udi?s Gluten Free Foods (3439ms) Who founded Wal-Mart? the Cushing crime scene -4.497594454330161 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (the Cushing crime scene, was also found at, that Wal-Mart) -> the Cushing crime scene (3439ms) Who founded Wal-Mart? A good GPSr -4.501131252636842 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (A good GPSr, can be found at, a Super Wal-mart) -> A good GPSr (3439ms) Who founded Wal-Mart? Beautiful blank books -4.513117768566077 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (Beautiful blank books, can be found at, Wal-Mart) -> Beautiful blank books (3439ms) Who founded Wal-Mart? Silk Fruit&Protein -4.515213825034017 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (Silk Fruit&Protein, is easily found at, your local Wal-mart) -> Silk Fruit&Protein (3439ms) Who founded Wal-Mart? OxiClean Versatile Stain Remover -4.542688540511332 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (OxiClean Versatile Stain Remover, can be found at, Wal-Mart) -> OxiClean Versatile Stain Remover (3698ms) Who founded Wal-Mart? Kelly -4.5428263534709 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Kelly, found, a Wal-Mart) -> Kelly (3698ms) Who founded Wal-Mart? Carolina Pad arts and crafts items -4.543508158785173 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (Carolina Pad arts and crafts items, can be found at, Wal-Mart) -> Carolina Pad arts and crafts items (3720ms) Who founded Wal-Mart? Ultimate Game Cards -4.543508158785173 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (Ultimate Game Cards, currently can be found at, select Wal-Marts) -> Ultimate Game Cards (3720ms) Who founded Wal-Mart? meth -4.656249527295795 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (meth, can be found at, WalMart) -> meth (3805ms) Who founded Wal-Mart? Equate -4.6749346647636045 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Equate, found in, Wal-Mart) -> Equate (3805ms) Who founded Wal-Mart? Kantar -4.7042423211703674 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Kantar, found, Wal-Mart) -> Kantar (3995ms) Who founded Wal-Mart? a woman -4.743541884886213 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, in finding, wal-mart) -> (a woman, was found in, a Wal-Mart retention pond) -> a woman (4256ms) Who founded Wal-Mart? Bandanas -4.765251973380456 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Bandanas, can be found at, WalMart) -> Bandanas (4016ms) Who founded Wal-Mart? the union -4.771539873054504 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the union, has found, Wal-Mart nearly) -> the union (4016ms) Who founded Wal-Mart? Cimarron -4.774486194589015 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Cimarron, then found, the Wal-Mart) -> Cimarron (4016ms) Who founded Wal-Mart? Frankfort -4.777958424768441 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Frankfort, finally found, freggin Wal Mart) -> Frankfort (4016ms) Who founded Wal-Mart? R4-P17 -4.781072873919886 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, have found, Wal-Mart) -> (R4-P17, has been found at, a Louisville area Wal-Mart) -> R4-P17 (4114ms) Who founded Wal-Mart? Elaine -4.786800394183995 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (Elaine, found this item at, Wal-Mart) -> Elaine (4114ms) Who founded Wal-Mart? products -4.834446373000258 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (products, cannot be found in, Wal-mart or Target) -> products (4114ms) Who founded Wal-Mart? union households -4.843129440934431 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, to like, wal-mart) -> (union households, would like to see, a Wal-Mart open) -> union households (4553ms) Who founded Wal-Mart? 09:23 AM CST C & D Visionary products -4.859831033088341 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (09:23 AM CST C & D Visionary products, can be found at, Wal-Mart) -> 09:23 AM CST C & D Visionary products (4114ms) Who founded Wal-Mart? 10 -4.862091393200922 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: (Wal-Mart, have found, $x) -> (Wal-Mart, has been found guilty in, 10) -> 10 (4114ms) Who founded Wal-Mart? the agency -4.90151696048914 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the agency, has found, Wal-Mart) -> the agency (4256ms) Who founded Wal-Mart? more than $ 200 million -4.936756251327346 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (more than $ 200 million, is found in, many Wal-Mart) -> more than $ 200 million (4256ms) Who founded Wal-Mart? PREMARIN -4.946386004205658 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, in finding, wal-mart) -> (PREMARIN, will find in, KMart or WalMart) -> PREMARIN (4257ms) Who founded Wal-Mart? the states -4.962526612699227 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the states, find, a Wal-Mart) -> the states (4281ms) Who founded Wal-Mart? general merchandise -4.9633803198501205 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, in finding, wal-mart) -> (general merchandise, found in, traditional Wal-Mart stores) -> general merchandise (4280ms) Who founded Wal-Mart? inspirational selections -4.990298479889789 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, in finding, wal-mart) -> (inspirational selections, found in, Target or Wal-Mart) -> inspirational selections (4281ms) Who founded Wal-Mart? the photo -5.020819084876473 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the photo, found this set at, a Wal-Mart) -> the photo (4350ms) Who founded Wal-Mart? the type -5.022587457678666 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the type, found at, Wal-Mart) -> the type (4350ms) Who founded Wal-Mart? readers -5.027468520863498 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (readers, can be found at, Wal-Mart) -> readers (4384ms) Who founded Wal-Mart? the product -5.0624409408782185 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the product, found at, Wal-Mart) -> the product (4384ms) Who founded Wal-Mart? Wall Street -5.082909188952311 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, to like, wal-mart) -> (Wall Street, is starting to look like, Wal-Mart Street) -> Wall Street (4554ms) Who founded Wal-Mart? folks -5.0875939339701945 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (folks, are still finding the shirts in, Wal-Mart stores) -> folks (4409ms) Who founded Wal-Mart? a car -5.100757776028891 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, from steal, wal-mart) -> (a car, was stolen from, the Stapleton Wal-Mart) -> a car (4408ms) Who founded Wal-Mart? Similar items -5.114608623672751 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (Similar items, can be found at, Wal-Mart) -> Similar items (4433ms) Who founded Wal-Mart? Inexpensive ones -5.114608623672751 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (Inexpensive ones, can be found at, Wal-Mart) -> Inexpensive ones (4433ms) Who founded Wal-Mart? Jason products -5.123450593088307 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (Jason products, are found in, Wal-Mart) -> Jason products (4433ms) Who founded Wal-Mart? success -5.169065353293657 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: (Wal-Mart, have found, $x) -> (Wal-Mart, has found, success) -> success (4553ms) Who founded Wal-Mart? the produce packaging -5.173255639058903 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the produce packaging, found in, Wal-Mart stores) -> the produce packaging (4553ms) Who founded Wal-Mart? workers -5.196475500643716 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: (Wal-Mart, have found, $x) -> (Wal-Mart, has found an unlimited pool of, workers) -> workers (4580ms) Who founded Wal-Mart? Targ?t -5.196736733924011 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (Targ?t, ever would be found in, Wal-Mart) -> Targ?t (4579ms) Who founded Wal-Mart? confectionary -5.1991280598470055 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, have leave to, Wal-Mart) -> (confectionary, has also left to join, Wal-Mart) -> confectionary (4579ms) Who founded Wal-Mart? figures -5.203549097257078 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (figures, are being found at, Wal-Mart stores) -> figures (4579ms) Who founded Wal-Mart? the greatest gender gaps -5.217038119655845 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the greatest gender gaps, found at, Wal-Mart stores) -> the greatest gender gaps (4579ms) Who founded Wal-Mart? work -5.220348849687093 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (work, can be found at, Wal-Mart) -> work (4612ms) Who founded Wal-Mart? the inexpensive needles -5.224931334543047 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the inexpensive needles, found at, Wal-Mart) -> the inexpensive needles (4612ms) Who founded Wal-Mart? item -5.275104523557658 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (item, was still being found on, Wal-Mart shelves) -> item (4612ms) Who founded Wal-Mart? the lower-priced models -5.288265914992973 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the lower-priced models, found at, Wal-Mart) -> the lower-priced models (4628ms) Who founded Wal-Mart? a travel pillow -5.368650806785304 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, can find, wal-mart) -> (a travel pillow, can be found at, any Target or WalMart) -> a travel pillow (4698ms) Who founded Wal-Mart? don?t -5.3748324075750125 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, from steal, wal-mart) -> (don?t, steal from, Wal-Mart) -> don?t (4785ms) Who founded Wal-Mart? an hour -5.402250311645333 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, can find, wal-mart) -> (an hour, can now only find work as, a Wal-Mart greeter) -> an hour (4785ms) Who founded Wal-Mart? the environment -5.402461090865335 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (the environment, can be found at, www.VermontWalMartWatch .org) -> the environment (4785ms) Who founded Wal-Mart? a television -5.440270853915435 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, from steal, wal-mart) -> (a television, was stolen from, a Pahrump Wal-Mart) -> a television (4857ms) Who founded Wal-Mart? You?ll -5.450816628005928 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, from finding, wal-mart) -> (You?ll, find everyone from, Wal-Mart) -> You?ll (4857ms) Who founded Wal-Mart? pharmacists -5.474254063257604 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, think to, wal-mart) -> (pharmacists, seem to think, Wal-Mart) -> pharmacists (4857ms) Who founded Wal-Mart? a Nazi symbol -5.4871333128987985 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, in finding, wal-mart) -> (a Nazi symbol, found in, a Wal-Mart store) -> a Nazi symbol (4857ms) Who founded Wal-Mart? future financial success -5.496121952551391 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, to like, wal-mart) -> (future financial success, is to be "more like, Wal-Mart) -> future financial success (4933ms) Who founded Wal-Mart? a laptop computer -5.497679139691586 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, from steal, wal-mart) -> (a laptop computer, was reported stolen from, Wal-Mart) -> a laptop computer (4934ms) Who founded Wal-Mart? The Federal Government -5.497743707818842 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, learn a lot from, wal-mart) -> (The Federal Government, has a lot to learn from, Wal-Mart) -> The Federal Government (4933ms) Who founded Wal-Mart? Star Wars items -5.509238289139983 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, in finding, wal-mart) -> (Star Wars items, recently found in, the Wal-Mart data base) -> Star Wars items (4934ms) Who founded Wal-Mart? high cadmium content -5.51285713685415 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, can find, wal-mart) -> (high cadmium content, can be found at, Wal-Mart and Claire?s) -> high cadmium content (4934ms) Who founded Wal-Mart? a TV -5.51631183305105 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, from steal, wal-mart) -> (a TV, had been stolen from, Wal-Mart) -> a TV (4933ms) Who founded Wal-Mart? WalMart CCYC -5.523385429664412 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, to like, wal-mart) -> (WalMart CCYC, would like to thank, WalMart) -> WalMart CCYC (4994ms) Who founded Wal-Mart? real-time -5.53065295923804 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, to like, wal-mart) -> (real-time, are starting to look like, our Wal-Mart shopping) -> real-time (4995ms) Who founded Wal-Mart? Labor -5.579575472487237 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, glove, Wal-Mart) -> (Labor, is working hand-in-glove with, Wal-Mart) -> Labor (4995ms) Who founded Wal-Mart? dresses -5.592219153903713 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, from steal, wal-mart) -> (dresses, were stolen from, a Wal-Mart) -> dresses (4994ms) Who founded Wal-Mart? no policeman -5.609088049191719 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, from steal, wal-mart) -> (no policeman, should be stealing from, Wal-Mart) -> no policeman (5013ms) Who founded Wal-Mart? a fundraising device -5.624942966971214 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, in finding, wal-mart) -> (a fundraising device, found in, Wal-Marts and McDonalds) -> a fundraising device (5013ms) Who founded Wal-Mart? a friend -5.645340165957332 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, from steal, wal-mart) -> (a friend, steal DVDs from, Wal-Mart) -> a friend (5031ms) Who founded Wal-Mart? February 2000 Cifra -5.682684057745638 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, change its name, Wal-Mart) -> (February 2000 Cifra, changed its name to, Wal-Mart) -> February 2000 Cifra (5031ms) Who founded Wal-Mart? Can?t -5.694035618572439 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, from steal, wal-mart) -> (Can?t, be stealing from, Wal-Mart) -> Can?t (5049ms) Who founded Wal-Mart? a mess kit -5.6949198049735354 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, easily find, wal-mart) -> (a mess kit, can easily be found at, a Target or Wal-Mart) -> a mess kit (5049ms) Who founded Wal-Mart? a little girl -5.724982511526884 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, from steal, wal-mart) -> (a little girl, was stolen from, the Wal-Mart) -> a little girl (5104ms) Who founded Wal-Mart? Coleman -5.795064565248435 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (Coleman, can also be found at, Wal-Mart) -> Coleman (5201ms) Who founded Wal-Mart? Clinton -5.8011168532934025 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (Clinton, is finding her past ties to, Wal-Mart too) -> Clinton (5201ms) Who founded Wal-Mart? Mama -5.8576041934876235 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, to like, wal-mart) -> (Mama, liked to go to, the Wal-Mart) -> Mama (5218ms) Who founded Wal-Mart? Utapau -5.858097772588716 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (Utapau, has been found at, Wal-Mart) -> Utapau (5218ms) Who founded Wal-Mart? the author -5.873327377195704 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, outraged, Wal-Mart) -> (the author, is outraged by, Wal-Mart) -> the author (5218ms) Who founded Wal-Mart? The kind -5.959324692627632 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (The kind, can find at, Wal-Mart) -> The kind (5235ms) Who founded Wal-Mart? the girl -5.970981345262116 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: (Wal-Mart, have found, $x) -> (Wal-Mart, have yet to find, the girl) -> the girl (5235ms) Who founded Wal-Mart? the lowest price -6.009259178040651 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (the lowest price, can usually be found at, Wal-Mart) -> the lowest price (5253ms) Who founded Wal-Mart? The clothes -6.097219622161328 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (The clothes, can be found from, WalMart) -> The clothes (5271ms) Who founded Wal-Mart? the chemical -6.125715968141224 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (the chemical, have been found at, Target , Wal-Mart and Babies) -> the chemical (5271ms) Who founded Wal-Mart? the figures -6.128368580046809 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (the figures, are being found at, both Target and Wal-Mart stores) -> the figures (5291ms) Who founded Wal-Mart? the bag -6.158293842498674 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (the bag, could easily be found at, WalMart) -> the bag (5291ms) Who founded Wal-Mart? 2:00 -6.172594078848917 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, arrive home from, wal-mart) -> (2:00, finally arrive home from, Wal-mart) -> 2:00 (5290ms) Who founded Wal-Mart? items -6.183236583632384 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, from steal, wal-mart) -> (items, were stolen from, the Carthage Wal-Mart) -> items (5290ms) Who founded Wal-Mart? the products -6.1884939931535055 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (the products, can be found at, Wal-mart) -> the products (5389ms) Who founded Wal-Mart? The new Star Wars sticker books -6.218419308307665 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (The new Star Wars sticker books, have been found at, Wal-Mart) -> The new Star Wars sticker books (5389ms) Who founded Wal-Mart? Natural brushes -6.2464955279757035 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, can find, wal-mart) -> (Natural brushes, can be found at, Target , Wal-Mart or K-Mart) -> Natural brushes (5389ms) Who founded Wal-Mart? The spudtrooper -6.266101438267162 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (The spudtrooper, was found today at, Wal-Mart) -> The spudtrooper (5407ms) Who founded Wal-Mart? The following list -6.296228712947768 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (The following list, was found in, Wal-Marts computers) -> The following list (5425ms) Who founded Wal-Mart? the international union -6.3147968908822705 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, have found, Wal-Mart) -> (the international union, has found more success with, Wal-Mart) -> the international union (5425ms) Who founded Wal-Mart? The real challenge -6.321745218416659 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (The real challenge, is n?t finding, the Wal-Marts) -> The real challenge (5425ms) Who founded Wal-Mart? The spray paint -6.340438612727841 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (The spray paint, can also be found at, Wal-Mart) -> The spray paint (5447ms) Who founded Wal-Mart? the above photo -6.342206985530034 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (the above photo, were found these at, the Wal-Mart) -> the above photo (5448ms) Who founded Wal-Mart? the stuff -6.3510176283312205 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the stuff, find at, WalMart) -> the stuff (5448ms) Who founded Wal-Mart? The parking lot -6.351540942255978 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, still own, Wal-Mart) -> (The parking lot, is still private land owned by, Wal-Mart) -> The parking lot (5448ms) Who founded Wal-Mart? The white prison truck -6.357730352468243 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (The white prison truck, was found near, a Wal-Mart) -> The white prison truck (5448ms) Who founded Wal-Mart? the most venerated managers -6.367848707375604 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be founder of, Wal-Mart) -> (the most venerated managers, is the founder of, Wal-Mart) -> the most venerated managers (5465ms) Who founded Wal-Mart? The one above -6.370501319281189 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (The one above, was recently found at, a Wal-Mart) -> The one above (5465ms) Who founded Wal-Mart? The white pickup -6.370501319281189 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (The white pickup, was found later at, a Wal-Mart store) -> The white pickup (5465ms) Who founded Wal-Mart? The lists -6.376690729493454 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, be found, Wal-Mart) -> (The lists, below can also be found at, Wal-mart and Target) -> The lists (5465ms) Who founded Wal-Mart? the bargains -6.397121117290165 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the bargains, find at, Wal-Mart) -> the bargains (5625ms) Who founded Wal-Mart? hundreds of thousands of dresses -6.418536642688601 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, from steal, wal-mart) -> (hundreds of thousands of dresses, were stolen from, a Wal-Mart) -> hundreds of thousands of dresses (5626ms) Who founded Wal-Mart? Starbucks -6.419703806412956 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, to like, wal-mart) -> (Starbucks, is like going to, WalMart) -> Starbucks (5626ms) Who founded Wal-Mart? Police -6.464797892594126 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, also find, wal-mart) -> (Police, also found, a Wal-Mart receipt) -> Police (5663ms) Who founded Wal-Mart? the the one -6.555769638267066 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> (the the one, found at, Wal-Mart) -> the the one (5680ms) Who founded Wal-Mart? you guys -6.584056200001372 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, to like, wal-mart) -> (you guys, like to, shop at WalMart) -> you guys (5741ms) Who founded Wal-Mart? the couple -7.235505758327843 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, from steal, wal-mart) -> (the couple, was trying to steal from, Wal-Mart) -> the couple (5855ms) Who founded Wal-Mart? the inventory -7.246935771521727 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, to like, wal-mart) -> (the inventory, is starting to look like, Wal-Mart?s shelves) -> the inventory (5855ms) Who founded Wal-Mart? the size -7.269924881461712 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, can find, wal-mart) -> (the size, can be found at, Pep Boys or WalMart) -> the size (5925ms) Who founded Wal-Mart? the staples -7.287673441122376 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, in finding, wal-mart) -> (the staples, found in, all Wal-mart sites) -> the staples (5925ms) Who founded Wal-Mart? the softest cotton sheet i -7.297262152837545 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, could find, wal-mart) -> (the softest cotton sheet i, could find at, wal-mart) -> the softest cotton sheet i (5925ms) Who founded Wal-Mart? the library -7.35834468102186 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, to like, wal-mart) -> (the library, has been like going to, Wal-Mart) -> the library (5925ms) Who founded Wal-Mart? the silicone top -7.481175295868905 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, also find, wal-mart) -> (the silicone top, also found at, Wal-Mart and Kmart) -> the silicone top (5991ms) Who founded Wal-Mart? the teal colored bag ? -7.498859287402311 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, can find, wal-mart) -> (the teal colored bag ?, can be found in, Wegman?s and Wal-Mart) -> the teal colored bag ? (5991ms) Who founded Wal-Mart? the jury -8.028621895011286 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, in finding, wal-mart) -> (the jury, found in, favor of Wal-Mart) -> the jury (6105ms) Who founded Wal-Mart? Alvin -8.413536795334398 Who founded Wal-Mart? -> $x: ($x, founded, Wal-Mart) -> $x: ($x, found, wal-mart) -> $x: ($x, from steal, wal-mart) -> (Alvin, with stealing condoms from, a Wal-Mart) -> Alvin (6105ms) Who founded Wal-Mart? good answer -11.242772571113033 Who founded Wal-Mart? -> who found [ wal-mart ] ? -> who be wal-mart 2 ? -> $x: (wal-mart 2, instance of, $x) -> (WalMart isle 2, Instance Of, good answer) -> good answer (6991ms) Who founded Wal-Mart? national chain -11.248643525051843 Who founded Wal-Mart? -> who found [ wal-mart ] ? -> who be wal-mart 2 ? -> $x: (wal-mart 2, instance of, $x) -> (2 Wal-Mart's, Instance Of, national chain) -> national chain (6991ms) Who founded Wal-Mart? Let?s -11.595018755292614 Who founded Wal-Mart? -> who found [ wal-mart ] ? -> who be credit for wal-mart ? -> $x: ($x, be credit for, wal-mart) -> $x: ($x, credit for, wal-mart) -> (Let?s, give some credit for, Wal-mart) -> Let?s (6178ms) Who founded Wal-Mart? Andrei Hagiu -11.904997131484599 Who founded Wal-Mart? -> who found [ wal-mart ] ? -> what identify wal-mart ? -> $x: ($x, identify, wal-mart) -> (Andrei Hagiu, identifies, Wal-Mart) -> Andrei Hagiu (6991ms) Who founded Wal-Mart? popular product and model -11.913720971808726 Who founded Wal-Mart? -> who found [ wal-mart ] ? -> who be wal-mart 2 ? -> $x: (wal-mart 2, instance of, $x) -> (wal mart black decker drill driver 2vxp, Instance Of, popular product and model) -> popular product and model (6991ms) Who founded Wal-Mart? good gun -11.937429120052048 Who founded Wal-Mart? -> who found [ wal-mart ] ? -> who be wal-mart 2 ? -> $x: (wal-mart 2, instance of, $x) -> (RS2 from wal-mart, Instance Of, good gun) -> good gun (6991ms) Who founded Wal-Mart? the Vines -12.310888776334526 Who founded Wal-Mart? -> who found [ wal-mart ] ? -> what identify wal-mart ? -> $x: ($x, identify, wal-mart) -> (the Vines, identified, a Wal-Mart store) -> the Vines (6991ms) Who founded Wal-Mart? existing customers -12.338295391314055 Who founded Wal-Mart? -> who found [ wal-mart ] ? -> what identify wal-mart ? -> $x: ($x, identify, wal-mart) -> (existing customers, identify, new onesWal-Mart) -> existing customers (6991ms) Who founded Wal-Mart? name -12.632652846928448 Who founded Wal-Mart? -> who found [ wal-mart ] ? -> who be wal-mart 2 ? -> $x: (wal-mart 2, instance of, $x) -> (2 Wal Marts Supercenters, Instance Of, name) -> name (6991ms) Who founded Wal-Mart? Lowes -13.333254878844354 Who founded Wal-Mart? -> who found [ wal-mart ] ? -> who be wal-mart 2 ? -> $x: (wal-mart 2, instance of, $x) -> (WalMart less than 2 miles away and, Instance Of, Lowes) -> Lowes (7196ms) Who founded Wal-Mart? The IEP team -13.333817731519222 Who founded Wal-Mart? -> who found [ wal-mart ] ? -> what identify wal-mart ? -> $x: ($x, identify, wal-mart) -> (The IEP team, identified, Wal-Mart) -> The IEP team (7196ms) Who founded Wal-Mart? Dems -13.580626151262356 Who founded Wal-Mart? -> who found [ wal-mart ] ? -> what identify wal-mart ? -> $x: ($x, identify, wal-mart) -> (Dems, have identified, Wal-Mart) -> Dems (7196ms) Who founded Wal-Mart? Dyster -13.604996331804024 Who founded Wal-Mart? -> who found [ wal-mart ] ? -> who be credit for wal-mart ? -> $x: ($x, be credit for, wal-mart) -> $x: ($x, credit for, wal-mart) -> (Dyster, takes credit for, the new Wal-Mart) -> Dyster (6648ms) Who founded Wal-Mart? Recent studies -13.949947714460714 Who founded Wal-Mart? -> who found [ wal-mart ] ? -> what identify wal-mart ? -> $x: ($x, identify, wal-mart) -> (Recent studies, have identified, Wal-Mart) -> Recent studies (7196ms) Who founded Wal-Mart? Herro -14.561626835012595 Who founded Wal-Mart? -> who found [ wal-mart ] ? -> what identify wal-mart ? -> $x: ($x, identify, wal-mart) -> (Herro, has identified, Wal-Mart) -> Herro (7196ms) Who founded Wal-Mart? the magazine -15.014598915435204 Who founded Wal-Mart? -> who found [ wal-mart ] ? -> what identify wal-mart ? -> $x: ($x, identify, wal-mart) -> (the magazine, identifies, Wal-Mart) -> the magazine (7196ms) Who founded Wal-Mart? The suit -15.344555535499609 Who founded Wal-Mart? -> who found [ wal-mart ] ? -> who originate wal-mart ? -> $x: ($x, originate, wal-mart) -> (The suit, originated with, Wal-Mart worker Betty Dukes) -> The suit (8103ms) Who founded Wal-Mart? The bribery allegations -15.353332936787908 Who founded Wal-Mart? -> who found [ wal-mart ] ? -> who originate wal-mart ? -> $x: ($x, originate, wal-mart) -> (The bribery allegations, originated with, a Wal-Mart lawyer) -> The bribery allegations (8103ms) What is Susan B. Anthony's birthday? cause -5.721449213440808 What is Susan B. Anthony's birthday? -> $x: (Susan B. Anthony's birthday, instance of, $x) -> (Susan B. Anthony's birthday, Instance Of, cause) -> cause (4400ms) What is Susan B. Anthony's birthday? Women's rights activist -8.910589526080209 What is Susan B. Anthony's birthday? -> what be [ susan b anthony ] s birthday ? -> what be susan b anthony s profession ? -> $x: (susan b anthony, profession, $x) -> (Susan B. Anthony, Profession, Women's rights activist) -> Women's rights activist (6340ms) What is Susan B. Anthony's birthday? 1820-02-15 -9.21646922509012 What is Susan B. Anthony's birthday? -> what be [ susan b anthony ] s birthday ? -> what be the birth date of susan b anthony ? -> $x: (susan b anthony, birth date, $x) -> (Susan B. Anthony, Date of birth, 1820-02-15) -> 1820-02-15 (6052ms) What is Susan B. Anthony's birthday? Baldwin, Hoar & Sherman family -9.817451567086648 What is Susan B. Anthony's birthday? -> what be [ susan b anthony ] s birthday ? -> what kind of family do susan b anthony have ? -> what family do susan b anthony have ? -> $x: (susan b anthony, family, $x) -> (Susan B. Anthony, Family, Baldwin, Hoar & Sherman family) -> Baldwin, Hoar & Sherman family (6920ms) What is Susan B. Anthony's birthday? Adams -9.933951196746795 What is Susan B. Anthony's birthday? -> what be [ susan b anthony ] s birthday ? -> when be susan b anthony s birth ? -> $x: (susan b anthony, birth, $x) -> (Susan B. Anthony, Place of birth, Adams) -> Adams (6660ms) What is Susan B. Anthony's birthday? Rochester -9.938175918996073 What is Susan B. Anthony's birthday? -> what be [ susan b anthony ] s birthday ? -> when be susan b anthony s death ? -> $x: (susan b anthony, death, $x) -> (Susan B. Anthony, Place of death, Rochester) -> Rochester (6660ms) What is Susan B. Anthony's birthday? 1906-03-13 -9.942553883242699 What is Susan B. Anthony's birthday? -> what be [ susan b anthony ] s birthday ? -> when be susan b anthony s death ? -> $x: (susan b anthony, death, $x) -> (Susan B. Anthony, Date of death, 1906-03-13) -> 1906-03-13 (6660ms) What is Susan B. Anthony's birthday? The Selected Papers of Elizabeth Cady Stanton and Susan B. Anthony -10.387416053564824 What is Susan B. Anthony's birthday? -> what be [ susan b anthony ] s birthday ? -> what be susan b anthony add ? -> $x: (susan b anthony, add, $x) -> $x: (susan b anthony, to contribute, $x) -> (Susan B. Anthony, Series Written (or Contributed To), The Selected Papers of Elizabeth Cady Stanton and Susan B. Anthony) -> The Selected Papers of Elizabeth Cady Stanton and Susan B. Anthony (7478ms) What is Susan B. Anthony's birthday? Last week -10.46310225968897 What is Susan B. Anthony's birthday? -> what be [ susan b anthony ] s birthday ? -> what be the birth date of susan b anthony ? -> $x: ($x, be the birth date of, susan b anthony) -> (Last week, was the 185th birth date of, Susan B. Anthony) -> Last week (6272ms) What is Susan B. Anthony's birthday? the business committee -11.482746689418265 What is Susan B. Anthony's birthday? -> what be [ susan b anthony ] s birthday ? -> what be susan b anthony add ? -> $x: (susan b anthony, add, $x) -> (Susan B. Anthony, be added to, the business committee) -> the business committee (5880ms) What is Susan B. Anthony's birthday? Feb. 15 -12.197856805642404 What is Susan B. Anthony's birthday? -> what be [ susan b anthony ] s birthday ? -> when be susan b anthony b day ? -> $x: (susan b anthony b day, be on, $x) -> (Susan B. Anthony Day, will be held on, Feb. 15) -> Feb. 15 (6920ms) What is Susan B. Anthony's birthday? Vol -12.768579482484453 What is Susan B. Anthony's birthday? -> what be [ susan b anthony ] s birthday ? -> what be susan b anthony add ? -> $x: (susan b anthony, add, $x) -> $x: (susan b anthony, to contribute, $x) -> (Susan B. Anthony, contributed to, Vol) -> Vol (7478ms) What is Susan B. Anthony's birthday? nursing -13.417004211090914 What is Susan B. Anthony's birthday? -> what be [ susan b anthony ] s birthday ? -> what be susan b anthony s profession ? -> $x: (susan b anthony, profession, $x) -> (Susan B. Anthony and nursing, promote the profession of, nursing) -> nursing (6339ms) What day did Pearl Harbor occur? December 7, 1941 -1.9583085770656385 What day did Pearl Harbor occur? -> $x: ($x, instance of, day) (Pearl Harbor, occur, $x) -> (December 7, 1941, Instance Of, day of infamy) (Pearl Harbor, occurred in, December 1941) -> December 7, 1941 (2798ms) What day did Pearl Harbor occur? December -2.0192700511453765 What day did Pearl Harbor occur? -> $x: ($x, instance of, day) (Pearl Harbor, occur, $x) -> (December, Instance Of, 31 day time frame) (Pearl Harbor, occurred in, December) -> December (2798ms) What day did Pearl Harbor occur? December 7,1941 -2.188094886755573 What day did Pearl Harbor occur? -> $x: ($x, instance of, day) (Pearl Harbor, occur, $x) -> (December 7,1941, Instance Of, day which would live in infamy) (Pearl Harbor, occurred in, December 1941) -> December 7,1941 (2798ms) What day did Pearl Harbor occur? Sundays -3.926076015090198 What day did Pearl Harbor occur? -> $x: ($x, instance of, day) (Pearl Harbor, occur, $x) -> $x: ($x, be the sort of, day) (Pearl Harbor, occur, $x) -> (Sundays, are the right sort of, day) (Pearl Harbor, occurred on, a Sunday) -> Sundays (10054ms) What day did Pearl Harbor occur? Sunday -3.9620679114311597 What day did Pearl Harbor occur? -> $x: ($x, instance of, day) (Pearl Harbor, occur, $x) -> $x: ($x, be the sort of, day) (Pearl Harbor, occur, $x) -> (Sunday, was the sort of, day) (Pearl Harbor, occurred on, a Sunday) -> Sunday (10054ms) What day did Pearl Harbor occur? part -4.158655115082682 What day did Pearl Harbor occur? -> $x: ($x, instance of, day) (Pearl Harbor, occur, $x) -> $x: ($x, instance of, day) (Pearl Harbor, happen, $x) -> (part, Instance Of, day cost) (Pearl Harbor, happened as, part) -> part (14429ms) What day did Pearl Harbor occur? December 8 -4.4876302247085285 What day did Pearl Harbor occur? -> $x: ($x, instance of, day) (Pearl Harbor, occur, $x) -> $x: ($x, instance of, day) (Pearl Harbor, take place, $x) -> (December 8, Instance Of, worldwide day of light) (Pearl Harbor, took place in, December) -> December 8 (12767ms) What day did Pearl Harbor occur? ?Today -4.544047960949598 What day did Pearl Harbor occur? -> $x: ($x, instance of, day) (Pearl Harbor, occur, $x) -> $x: ($x, be the kind of, day) (Pearl Harbor, occur, $x) -> (?Today, is the kind of, day) (Pearl Harbor, has occured, today) -> ?Today (4589ms) What day did Pearl Harbor occur? December 26 th -4.546021046282645 What day did Pearl Harbor occur? -> $x: ($x, instance of, day) (Pearl Harbor, occur, $x) -> $x: ($x, instance of, day) (Pearl Harbor, happen, $x) -> (December 26 th, Instance Of, tourist day) (Pearl Harbor, happened on, December 7th) -> December 26 th (14529ms) What day did Pearl Harbor occur? Japan -4.574750581817721 What day did Pearl Harbor occur? -> $x: ($x, instance of, day) (Pearl Harbor, occur, $x) -> $x: ($x, instance of, day) (Pearl Harbor, be serious, $x) -> (Japan, Instance Of, day country) (Pearl Harbor, was a serious achievement by, Japan) -> Japan (11561ms) What day did Pearl Harbor occur? December 8 th -4.613536163609085 What day did Pearl Harbor occur? -> $x: ($x, instance of, day) (Pearl Harbor, occur, $x) -> $x: ($x, instance of, day) (Pearl Harbor, be accompany, $x) -> (December 8 th, Instance Of, Hol y Day of Obligation) (Pearl Harbor, is accompanied, December 8th) -> December 8 th (11949ms) What day did Pearl Harbor occur? TODAY.. -4.682588914356465 What day did Pearl Harbor occur? -> $x: ($x, instance of, day) (Pearl Harbor, occur, $x) -> $x: ($x, instance of, day) (Pearl Harbor, have occur, $x) -> (TODAY.., Instance Of, interesting day thusfar) (Pearl Harbor, has occured, today) -> TODAY.. (15177ms) What day did Pearl Harbor occur? Congress -4.991716181465715 What day did Pearl Harbor occur? -> $x: ($x, instance of, day) (Pearl Harbor, occur, $x) -> $x: ($x, instance of, day) (Pearl Harbor, be utter, $x) -> (Congress, Instance Of, one day event) (a ?digital Pearl Harbor?, was first uttered before, Congress) -> Congress (13958ms) What day did Pearl Harbor occur? Spain -5.264267536175075 What day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: ($x, do have, Pearl Harbor) -> (Spain, have nothing to do with, Pearl Harbor) -> Spain (16412ms) What day did Pearl Harbor occur? Russia -5.266035961679563 What day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: ($x, do have, Pearl Harbor) -> (Russia, had nothing to do with, Pearl Harbor) -> Russia (16411ms) What day did Pearl Harbor occur? Italy -5.284211887821064 What day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: ($x, do have, Pearl Harbor) -> (Italy, had nothing to do with, Pearl Harbor) -> Italy (16411ms) What day did Pearl Harbor occur? ILM -5.48358898619358 What day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: ($x, do have, Pearl Harbor) -> (ILM, had done with, Pearl Harbor) -> ILM (16411ms) What day did Pearl Harbor occur? a world -5.484985426701182 What day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: (pearl harbor, occur in, $x) -> (Pearl Harbor, occurred in, a world) -> a world (16006ms) What day did Pearl Harbor occur? 1941 -5.522557092244409 What day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: (pearl harbor, occur in, $x) -> (Pearl Harbor, occurred in, 1941) -> 1941 (16006ms) What day did Pearl Harbor occur? order -5.526068743196779 What day did Pearl Harbor occur? -> $x: ($x, instance of, day) (Pearl Harbor, occur, $x) -> $x: ($x, instance of, day) (Pearl Harbor, happen, $x) -> (order, Instance Of, day operation) (Pearl Harbor, to happen in, order) -> order (14529ms) What day did Pearl Harbor occur? any -5.544877697412866 What day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: (pearl harbor, occur in, $x) -> (Pearl Harbor, might have occurred in, any) -> any (16006ms) What day did Pearl Harbor occur? December 1941 -5.695424477979209 What day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: (pearl harbor, occur in, $x) -> (Pearl Harbor, occurred in, December 1941) -> December 1941 (16006ms) What day did Pearl Harbor occur? Fascist Italy -5.831218225463708 What day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: ($x, do have, Pearl Harbor) -> (Fascist Italy, had anything to do with, Pearl Harbor) -> Fascist Italy (16411ms) What day did Pearl Harbor occur? none -5.876997690351929 What day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: ($x, do have, Pearl Harbor) -> (none, had anything to do with, Pearl Harbor) -> none (16435ms) What day did Pearl Harbor occur? the Japanese -5.959663192545747 What day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: ($x, do have, Pearl Harbor) -> (the Japanese, could have done better in, the Pearl Harbor attack) -> the Japanese (16435ms) What day did Pearl Harbor occur? the Moroccans -5.9877212738473045 What day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: ($x, do have, Pearl Harbor) -> (the Moroccans, had nothing to do with, Pearl Harbor) -> the Moroccans (16435ms) What day did Pearl Harbor occur? New York City -5.992277971283045 What day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: (Pearl Harbor, happen in, $x) -> (Pearl Harbor, happened in, New York City) -> New York City (16634ms) What day did Pearl Harbor occur? December 7 , 1941 -6.053869579908086 What day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur on, $x) -> $x: (pearl harbor, occur on, $x) -> (Pearl Harbor, occurred on, December 7 , 1941) -> December 7 , 1941 (16072ms) What day did Pearl Harbor occur? Order -6.191613624489529 What day did Pearl Harbor occur? -> $x: ($x, instance of, day) (Pearl Harbor, occur, $x) -> $x: ($x, instance of, day) (Pearl Harbor, to happen, $x) -> (Order, Instance Of, modern-day society) (Pearl Harbor, to happen in, order) -> Order (12440ms) What day did Pearl Harbor occur? a Sunday -6.636532687167475 What day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur on, $x) -> $x: (pearl harbor, occur on, $x) -> (Pearl Harbor, occurred on, a Sunday) -> a Sunday (16072ms) What day did Pearl Harbor occur? 11 -6.6929710058820095 What day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: ($x, can experience, Pearl Harbor) -> (11, can experience, this popular Pearl Harbor tour) -> 11 (16435ms) What day did Pearl Harbor occur? U.S. -7.094307993099916 What day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: ($x, have survive, Pearl Harbor) -> (U.S., has survived, ?economic Pearl Harbor?) -> U.S. (16667ms) What day did Pearl Harbor occur? detailed narrations and photos -7.915703345778449 What day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: (pearl harbor, occur in, $x) -> $x: (pearl harbor, unfold in, $x) -> (Pearl Harbor, will unfold in, detailed narrations and photos) -> detailed narrations and photos (16850ms) What day did Pearl Harbor occur? The reason -7.940205968942922 What day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: ($x, do have, Pearl Harbor) -> (The reason, had nothing to do with, Pearl Harbor) -> The reason (16435ms) What day did Pearl Harbor occur? December of 1941 -8.271912079655564 What day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: (Pearl Harbor, happen in, $x) -> (Pearl Harbor, happened in, December of 1941) -> December of 1941 (16667ms) What day did Pearl Harbor occur? forty minutes -8.555751819635715 What day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur on, $x) -> $x: (pearl harbor, occur on, $x) -> $x: (pearl harbor, around, $x) -> (Pearl Harbor, lasts around, forty minutes) -> forty minutes (17865ms) What day did Pearl Harbor occur? the naval battleship USS Arizona -8.56801910023704 What day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur on, $x) -> $x: (pearl harbor, occur on, $x) -> (Pearl Harbor, occurred on, the naval battleship USS Arizona) -> the naval battleship USS Arizona (16103ms) What day did Pearl Harbor occur? two continents -8.616809233847006 What day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur on, $x) -> $x: (pearl harbor, occur on, $x) -> $x: (pearl harbor, take place on, $x) -> (Pearl Harbor, took place on, two continents) -> two continents (17865ms) What day did Pearl Harbor occur? surprise -8.70518127140595 What day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur on, $x) -> $x: (pearl harbor, occur on, $x) -> $x: (pearl harbor, around, $x) -> (Pearl Harbor, was designed around, surprise) -> surprise (17865ms) What day did Pearl Harbor occur? the financial world -8.802740350542491 What day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: (Pearl Harbor, happen in, $x) -> (an economic Pearl Harbor, was happening in, the financial world) -> the financial world (16667ms) What day did Pearl Harbor occur? the Schofield Barracks -8.84016566750712 What day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur on, $x) -> $x: (pearl harbor, occur on, $x) -> $x: (pearl harbor, around, $x) -> (Pearl Harbor, turned around over, the Schofield Barracks) -> the Schofield Barracks (17866ms) What day did Pearl Harbor occur? December 7th -8.864417746614922 What day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur on, $x) -> $x: (pearl harbor, occur on, $x) -> $x: (pearl harbor, happen on, $x) -> (Pearl Harbor, happened on, December 7th) -> December 7th (17906ms) What day did Pearl Harbor occur? December 7 , 2006 -8.944581900718271 What day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur on, $x) -> $x: (pearl harbor, occur on, $x) -> $x: (pearl harbor, happen on, $x) -> (Pearl Harbor, happened on, December 7 , 2006) -> December 7 , 2006 (17906ms) What day did Pearl Harbor occur? December 7 , 1942 -9.029685335779064 What day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur on, $x) -> $x: (pearl harbor, occur on, $x) -> $x: (pearl harbor, take place on, $x) -> (Pearl Harbor, took place on, December 7 , 1942) -> December 7 , 1942 (17866ms) What day did Pearl Harbor occur? 9-11-01 -9.033885886679514 What day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur on, $x) -> $x: (pearl harbor, occur on, $x) -> $x: (pearl harbor, happen on, $x) -> (" Pearl Harbor, has already happened on, 9-11-01) -> 9-11-01 (17906ms) What day did Pearl Harbor occur? The point -9.071545865853395 What day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: ($x, to avoid, Pearl Harbor) -> (The point, is to avoid, another Pearl Harbor-like event) -> The point (16103ms) What day did Pearl Harbor occur? 9/11 -9.103735854784732 What day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur on, $x) -> $x: (pearl harbor, occur on, $x) -> $x: (pearl harbor, take place on, $x) -> (a New Pearl Harbor, took place on, 9/11) -> 9/11 (17865ms) What day did Pearl Harbor occur? a Pacific island -9.232427940372114 What day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur on, $x) -> $x: (pearl harbor, occur on, $x) -> $x: (pearl harbor, take place on, $x) -> (the Pearl Harbor attack, took place on, a Pacific island) -> a Pacific island (17906ms) What day did Pearl Harbor occur? the final episode -9.271098492811925 What day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur in, $x) -> $x: (pearl harbor, occur in, $x) -> (A global Pearl Harbor event, to occur in, the final episode) -> the final episode (16103ms) What day did Pearl Harbor occur? December, 1941 -9.39336171375876 What day did Pearl Harbor occur? -> what day do [ pearl harbor occur ] ? -> how many month do pearl harbor occur ? -> $x: ($x, instance of, month) (pearl harbor, occur, $x) -> (December, 1941, Instance Of, month of change) (Pearl Harbor, occurred in, December 1941) -> December, 1941 (17658ms) What day did Pearl Harbor occur? what day -9.549795719689914 What day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur on, $x) -> $x: (pearl harbor, occur on, $x) -> $x: (pearl harbor, take place on, $x) -> (The Pearl Harbor attack, took place on, what day) -> what day (17906ms) What day did Pearl Harbor occur? the island -9.645472618289983 What day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur on, $x) -> $x: (pearl harbor, occur on, $x) -> $x: (pearl harbor, around, $x) -> (Pearl Harbor, then continue around, the island) -> the island (17906ms) What day did Pearl Harbor occur? the watch -10.574334395932336 What day did Pearl Harbor occur? -> When did Pearl Harbor occur? -> $x: (Pearl Harbor, did occur on, $x) -> $x: (pearl harbor, occur on, $x) -> $x: (pearl harbor, happen on, $x) -> (his Pearl Harbor, had happened on, the watch) -> the watch (17932ms) How large is it? big order -8.49050681219752 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, big order) -> big order (8563ms) How large is it? event -9.000637917613274 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, event) -> event (8564ms) How large is it? large social gathering -9.03245560095229 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, large social gathering) -> large social gathering (8563ms) How large is it? large event -9.042177494289598 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, large event) -> large event (8563ms) How large is it? large private event -9.168441786210503 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, large private event) -> large private event (8563ms) How large is it? no-go -9.171151348926175 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large wedding party, Instance Of, no-go) -> no-go (8564ms) How large is it? outdoor event -9.18106262215241 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, outdoor event) -> outdoor event (8636ms) How large is it? special-event occasion -9.197912868381396 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, special-event occasion) -> special-event occasion (8636ms) How large is it? non-business event -9.201489186886096 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, non-business event) -> non-business event (8636ms) How large is it? large group event -9.20733795780272 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, large group event) -> large group event (8636ms) How large is it? large scale event -9.221384181998234 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, large scale event) -> large scale event (8636ms) How large is it? entertainment and business facility -9.231365026986303 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party room, Instance Of, entertainment and business facility) -> entertainment and business facility (8636ms) How large is it? unfamiliar person -9.232092050343699 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, unfamiliar person) -> unfamiliar person (8661ms) How large is it? commercial activity -9.239320432539156 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, commercial activity) -> commercial activity (8659ms) How large is it? Moreno Valley area -9.24556026141994 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, Moreno Valley area) -> Moreno Valley area (8659ms) How large is it? large social event -9.254106269108187 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large holiday party, Instance Of, large social event) -> large social event (8659ms) How large is it? private event -9.256181217188852 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, private event) -> private event (8659ms) How large is it? social and formal function -9.260214367671695 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, social and formal function) -> social and formal function (8660ms) How large is it? function -9.262777694428335 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, function) -> function (8678ms) How large is it? restaurant wide private event -9.272137395542611 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large cocktail party, Instance Of, restaurant wide private event) -> restaurant wide private event (8678ms) How large is it? helped coordinate event -9.272978703595738 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, helped coordinate event) -> helped coordinate event (8678ms) How large is it? costly event -9.274359970046273 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, costly event) -> costly event (8679ms) How large is it? large party -9.275397974283292 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (traditionally large party, Instance Of, large party) -> large party (8678ms) How large is it? occasional family gathering -9.284544492087837 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (no large party, Instance Of, occasional family gathering) -> occasional family gathering (8696ms) How large is it? routine police activity -9.284544492087837 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large parties disturbing, Instance Of, routine police activity) -> routine police activity (8696ms) How large is it? ming dynasty huizhou merchant -9.284544492087837 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, ming dynasty huizhou merchant) -> ming dynasty huizhou merchant (8697ms) How large is it? event in the ballroom -9.284544492087837 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, event in the ballroom) -> event in the ballroom (8696ms) How large is it? ship's heavy work -9.284544492087837 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large liberty party, Instance Of, ship's heavy work) -> ship's heavy work (8678ms) How large is it? social celebration -9.285562496450934 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, social celebration) -> social celebration (8696ms) How large is it? social event -9.286137645320924 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, social event) -> social event (8696ms) How large is it? indoor or outdoor event -9.289685449842587 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, indoor or outdoor event) -> indoor or outdoor event (8715ms) How large is it? wonderful amenity -9.293670605617834 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party room, Instance Of, wonderful amenity) -> wonderful amenity (8715ms) How large is it? work special event -9.303526490045815 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large birthday party, Instance Of, work special event) -> work special event (8715ms) How large is it? dance party -9.310280617378112 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large scale dance party, Instance Of, dance party) -> dance party (8715ms) How large is it? opposition party -9.310878253710966 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large opposition party, Instance Of, opposition party) -> opposition party (8715ms) How large is it? formal party -9.312389728279355 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large dinner party, Instance Of, formal party) -> formal party (8736ms) How large is it? onetime event -9.313506316475642 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, onetime event) -> onetime event (8736ms) How large is it? uncommon event -9.314850357638603 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, uncommon event) -> uncommon event (8736ms) How large is it? complex event -9.316848533051658 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, complex event) -> complex event (8736ms) How large is it? physical space -9.317135227922062 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, physical space) -> physical space (8736ms) How large is it? customer need -9.317941652619838 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, customer need) -> customer need (8805ms) How large is it? separate event -9.319173085061113 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, separate event) -> separate event (8806ms) How large is it? busy event -9.321353450030973 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, busy event) -> busy event (8805ms) How large is it? planning event -9.322245027773949 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, planning event) -> planning event (8806ms) How large is it? social custom -9.323857124325944 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large dinner party, Instance Of, social custom) -> social custom (8806ms) How large is it? formal gathering -9.327054848969532 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large birthday party, Instance Of, formal gathering) -> formal gathering (8806ms) How large is it? common facility -9.327484314583359 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party area, Instance Of, common facility) -> common facility (8861ms) How large is it? upcoming event -9.33186054376145 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, upcoming event) -> upcoming event (8861ms) How large is it? private function -9.337902761062239 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, private function) -> private function (8861ms) How large is it? decline of case plan -9.344449793153553 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (swimsuit large breast party, Instance Of, decline of case plan) -> decline of case plan (8861ms) How large is it? public event -9.345591924276814 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, public event) -> public event (8877ms) How large is it? local event -9.346323309178796 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, local event) -> local event (8878ms) How large is it? tasty main dish -9.348520856347571 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (Large party casserole, Instance Of, tasty main dish) -> tasty main dish (8877ms) How large is it? good place -9.351972111149541 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, good place) -> good place (8878ms) How large is it? high profile event -9.355476774826684 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large members Christmas Party, Instance Of, high profile event) -> high profile event (8878ms) How large is it? mandatory charge -9.356588025909904 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (automatic large party gratuity, Instance Of, mandatory charge) -> mandatory charge (8895ms) How large is it? dining room -9.364066467217723 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large birthday party, Instance Of, dining room) -> dining room (8895ms) How large is it? personal event -9.368990548416534 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large birthday party, Instance Of, personal event) -> personal event (8895ms) How large is it? perfect place -9.392829256981445 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party situation, Instance Of, perfect place) -> perfect place (8895ms) How large is it? endurance group -9.399055672454654 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large birthday party, Instance Of, endurance group) -> endurance group (8912ms) How large is it? occasion -9.406253901685666 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, occasion) -> occasion (8912ms) How large is it? party -9.411569126301206 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large birthday party, Instance Of, party) -> party (8912ms) How large is it? amenity -9.414718565184796 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party room, Instance Of, amenity) -> amenity (8912ms) How large is it? group -9.446045107125435 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large birthday party, Instance Of, group) -> group (8970ms) How large is it? circumstance -9.498778920938406 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (extra large wedding party, Instance Of, circumstance) -> circumstance (8970ms) How large is it? activity -9.502860581279883 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, activity) -> activity (8970ms) How large is it? gathering -9.511432780025462 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, gathering) -> gathering (9027ms) How large is it? idea -9.52035301409986 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, idea) -> idea (9028ms) How large is it? unit -9.526673685891005 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party unit, Instance Of, unit) -> unit (9027ms) How large is it? topic -9.543494092310768 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party, Instance Of, topic) -> topic (9045ms) How large is it? exception -9.569998415100024 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (very large party, Instance Of, exception) -> exception (9045ms) How large is it? requirement -9.577749476156677 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (extra large party, Instance Of, requirement) -> requirement (9045ms) How large is it? option -9.584532518699639 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party reservation, Instance Of, option) -> option (9044ms) How large is it? venue -9.591218539745817 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large private party, Instance Of, venue) -> venue (9045ms) How large is it? task -9.6009787238601 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (arranging large party, Instance Of, task) -> task (9066ms) How large is it? website -9.605569911110022 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large third party website, Instance Of, website) -> website (9066ms) How large is it? retailer -9.606020826471104 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large third party retailer, Instance Of, retailer) -> retailer (9066ms) How large is it? service -9.608033214793116 How large is it? -> how [ large be ] it ? -> what be party large be ? -> $x: (party large, instance of, $x) -> (large party tray, Instance Of, service) -> service (9066ms) How large is it? exhibition of digital photo of Australian landscape -12.44067130658266 How large is it? -> how large be [ it ] ? -> what be lake it ? -> $x: (lake it, instance of, $x) -> (Lake George.It, Instance Of, exhibition of digital photo of Australian landscape) -> exhibition of digital photo of Australian landscape (9400ms) How large is it? evening of nail-biting drama -12.485565262017802 How large is it? -> how large be [ it ] ? -> what be lake it ? -> $x: (lake it, instance of, $x) -> (ELLIOT LAKE-It, Instance Of, evening of nail-biting drama) -> evening of nail-biting drama (9400ms) How large is it? independent professional organization and forum -12.485565262017802 How large is it? -> how large be [ it ] ? -> what be lake it ? -> $x: (lake it, instance of, $x) -> (itSMF Great Lakes Local Interest Group, Instance Of, independent professional organization and forum) -> independent professional organization and forum (9400ms) How large is it? Chicago based company -12.493276456271126 How large is it? -> how large be [ it ] ? -> what be lake it ? -> $x: (lake it, instance of, $x) -> (Great Lakes IT, Inc., Instance Of, Chicago based company) -> Chicago based company (9400ms) How large is it? place of kind Reservoir -12.554193456252895 How large is it? -> how large be [ it ] ? -> what be lake it ? -> $x: (lake it, instance of, $x) -> (Lake Just-It, Instance Of, place of kind Reservoir) -> place of kind Reservoir (9400ms) How large is it? cool lake -12.619867765245438 How large is it? -> how large be [ it ] ? -> what be lake it ? -> $x: (lake it, instance of, $x) -> (Love it. Lake Eufaula, Instance Of, cool lake) -> cool lake (9400ms) How large is it? fascinating place -12.620983041789682 How large is it? -> how large be [ it ] ? -> what be lake it ? -> $x: (lake it, instance of, $x) -> (Lake Titicaca and it's environs, Instance Of, fascinating place) -> fascinating place (9492ms) How large is it? nice lake -12.629339588763232 How large is it? -> how large be [ it ] ? -> what be lake it ? -> $x: (lake it, instance of, $x) -> (Lakes..it, Instance Of, nice lake) -> nice lake (9491ms) How large is it? private company -12.631918811783287 How large is it? -> how large be [ it ] ? -> what be lake it ? -> $x: (lake it, instance of, $x) -> (Dig-It Inc in Lake Odessa, MI, Instance Of, private company) -> private company (9492ms) How large is it? beautiful place -12.638655919998929 How large is it? -> how large be [ it ] ? -> what be lake it ? -> $x: (lake it, instance of, $x) -> (Historic lake.It, Instance Of, beautiful place) -> beautiful place (9492ms) How large is it? circular lake -12.66373727125588 How large is it? -> how large be [ it ] ? -> what be lake it ? -> $x: (lake it, instance of, $x) -> (Kankaria LakeIt, Instance Of, circular lake) -> circular lake (9492ms) How large is it? bite -12.812346886120565 How large is it? -> how large be [ it ] ? -> what be lake it ? -> $x: (lake it, instance of, $x) -> (LAKE ALMANOR-It, Instance Of, bite) -> bite (9491ms) How large is it? Chinese proverb meaning better -12.92251700057922 How large is it? -> how large be [ it ] ? -> what be it curse ? -> $x: (it curse, instance of, $x) -> (It is better to light a candle than curse the darkness, Instance Of, Chinese proverb meaning better) -> Chinese proverb meaning better (9084ms) How large is it? mark of evil thing -13.18898754668652 How large is it? -> how large be [ it ] ? -> what be it curse ? -> $x: (it curse, instance of, $x) -> (Curse on thy Spanish steelcoat!It, Instance Of, mark of evil thing) -> mark of evil thing (9084ms) How large is it? incredibly popular fast-food chain -13.218263843076457 How large is it? -> how large be [ it ] ? -> what be it bell ? -> $x: (it bell, instance of, $x) -> (Let's face it. Taco Bell, Instance Of, incredibly popular fast-food chain) -> incredibly popular fast-food chain (9506ms) How large is it? proven container-tag printing resource -13.2631577985116 How large is it? -> how large be [ it ] ? -> what be it bell ? -> $x: (it bell, instance of, $x) -> (Bell and Howell's TagIt Pro?, Instance Of, proven container-tag printing resource) -> proven container-tag printing resource (9506ms) How large is it? Scot -13.291966115670293 How large is it? -> how large be [ it ] ? -> what be it bell ? -> $x: (it bell, instance of, $x) -> (Love it. Bell, Instance Of, Scot) -> Scot (9506ms) How large is it? proverb -13.328895029259296 How large is it? -> how large be [ it ] ? -> what be it curse ? -> $x: (it curse, instance of, $x) -> (It is better to light a candle than curse the darkness, Instance Of, proverb) -> proverb (9101ms) How large is it? instant hit -13.35461214524131 How large is it? -> how large be [ it ] ? -> what be it strait ? -> $x: (it strait, instance of, $x) -> (George Strait's current single It Just Comes Natural'', Instance Of, instant hit) -> instant hit (10207ms) How large is it? great race -13.400455926864192 How large is it? -> how large be [ it ] ? -> what be it bell ? -> $x: (it bell, instance of, $x) -> (Bell.\n\nIt, Instance Of, great race) -> great race (9506ms) How large is it? sturdy product -13.44254617266278 How large is it? -> how large be [ it ] ? -> what be it bell ? -> $x: (it bell, instance of, $x) -> (PACKARD BELL EASYNOTE MZ36-U-020-IT, Instance Of, sturdy product) -> sturdy product (9506ms) How large is it? spelling contest -13.475057219433117 How large is it? -> how large be [ it ] ? -> what be it strait ? -> $x: (it strait, instance of, $x) -> (RHB New Straits Times National Spell-It-Right Challenge, Instance Of, spelling contest) -> spelling contest (10206ms) How large is it? spelling competition -13.503846582369437 How large is it? -> how large be [ it ] ? -> what be it strait ? -> $x: (it strait, instance of, $x) -> (RHB New Straits Times National Spell-It-Right Challenge, Instance Of, spelling competition) -> spelling competition (10206ms) How large is it? position of superior responsibility -14.124854973575262 How large is it? -> how large be [ it ] ? -> who be it commander ? -> $x: (it commander, instance of, $x) -> (IT-05-88-PT p.2984 StaffIDeputy Commander, Instance Of, position of superior responsibility) -> position of superior responsibility (10316ms) How large is it? PC-based software simulation -14.124854973575262 How large is it? -> how large be [ it ] ? -> who be it commander ? -> $x: (it commander, instance of, $x) -> (Gadomski, http://erg4146.casaccia.enea.it Incident Commander, Instance Of, PC-based software simulation) -> PC-based software simulation (10317ms) Who is Aaron Copland? musical legend -1.5348521789133773 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, musical legend) -> musical legend (2683ms) Who is Aaron Copland? contemporary composer -1.5675427038095426 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, contemporary composer) -> contemporary composer (2683ms) Who is Aaron Copland? classical composer -1.589409594200286 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, classical composer) -> classical composer (2683ms) Who is Aaron Copland? notorious conductor -1.603945860539497 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, notorious conductor) -> notorious conductor (2684ms) Who is Aaron Copland? century composer -1.6212821086006832 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, century composer) -> century composer (2684ms) Who is Aaron Copland? modern composer -1.6297768309008 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, modern composer) -> modern composer (2684ms) Who is Aaron Copland? music luminary -1.6304123760701412 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, music luminary) -> music luminary (2842ms) Who is Aaron Copland? classical music -1.6451533404194265 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, classical music) -> classical music (2841ms) Who is Aaron Copland? musical luminary -1.6578613676237675 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, musical luminary) -> musical luminary (2841ms) Who is Aaron Copland? distinguished musician -1.6675143146109896 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, distinguished musician) -> distinguished musician (2841ms) Who is Aaron Copland? established composer -1.6854882265751896 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, established composer) -> established composer (2842ms) Who is Aaron Copland? great composer -1.6871469195962745 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, great composer) -> great composer (2841ms) Who is Aaron Copland? mainstream composer -1.6952849654805717 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, mainstream composer) -> mainstream composer (3006ms) Who is Aaron Copland? musical figure -1.699894100040446 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, musical figure) -> musical figure (3005ms) Who is Aaron Copland? american composer -1.700249393522139 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, american composer) -> american composer (3006ms) Who is Aaron Copland? prominent artist -1.720320064341093 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, prominent artist) -> prominent artist (3005ms) Who is Aaron Copland? early work -1.7212488482028074 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland's, Instance Of, early work) -> early work (3005ms) Who is Aaron Copland? opera composer -1.7251315294640186 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, opera composer) -> opera composer (3048ms) Who is Aaron Copland? interestin composer -1.7345061399660882 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, interestin composer) -> interestin composer (3047ms) Who is Aaron Copland? modernist composer -1.75133109250657 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, modernist composer) -> modernist composer (3047ms) Who is Aaron Copland? master composer -1.753200532358679 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, master composer) -> master composer (3047ms) Who is Aaron Copland? guest conductor -1.7624621986070723 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, guest conductor) -> guest conductor (3047ms) Who is Aaron Copland? native composer -1.7631166880036968 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, native composer) -> native composer (3047ms) Who is Aaron Copland? great musician -1.7663048436086082 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, great musician) -> great musician (3065ms) Who is Aaron Copland? famed conductor -1.766693005589123 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, famed conductor) -> famed conductor (3064ms) Who is Aaron Copland? established artist -1.767523613344804 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, established artist) -> established artist (3064ms) Who is Aaron Copland? leading figure -1.77087329412644 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, leading figure) -> leading figure (3064ms) Who is Aaron Copland? notable composer -1.770897889019492 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, notable composer) -> notable composer (3065ms) Who is Aaron Copland? eminent composer -1.7731661421837521 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, eminent composer) -> eminent composer (3064ms) Who is Aaron Copland? great conductor -1.792950710013499 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, great conductor) -> great conductor (3082ms) Who is Aaron Copland? famous composer -1.8001021587069035 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, famous composer) -> famous composer (3082ms) Who is Aaron Copland? American composer of concert and film music -2.167803572470184 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, American composer of concert and film music) -> American composer of concert and film music (3082ms) Who is Aaron Copland? great american composer -2.2393515465749663 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, great american composer) -> great american composer (3082ms) Who is Aaron Copland? well-known american composer -2.2693798779616006 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, well-known american composer) -> well-known american composer (3082ms) Who is Aaron Copland? contemporary american composer -2.2727853746920195 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, contemporary american composer) -> contemporary american composer (3082ms) Who is Aaron Copland? british and american composer -2.29878325830832 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, british and american composer) -> british and american composer (3099ms) Who is Aaron Copland? world's greatest musician -2.3116095351057635 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, world's greatest musician) -> world's greatest musician (3099ms) Who is Aaron Copland? mainstream Americans -2.317209024292771 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, mainstream Americans) -> mainstream Americans (3099ms) Who is Aaron Copland? serious american composer -2.334940328312708 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, serious american composer) -> serious american composer (3099ms) Who is Aaron Copland? composer and conductor -2.3421632723974875 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, composer and conductor) -> composer and conductor (3099ms) Who is Aaron Copland? instru-mentsandgreat composer -2.357981392849078 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, instru-mentsandgreat composer) -> instru-mentsandgreat composer (3099ms) Who is Aaron Copland? prominent gay composer -2.375138332840814 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, prominent gay composer) -> prominent gay composer (3116ms) Who is Aaron Copland? learned, modernist composer -2.379367505449016 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, learned, modernist composer) -> learned, modernist composer (3116ms) Who is Aaron Copland? musician and composer -2.3898267839188714 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, musician and composer) -> musician and composer (3116ms) Who is Aaron Copland? now-famous composer -2.40287534828422 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, now-famous composer) -> now-famous composer (3116ms) Who is Aaron Copland? contemporary of barber -2.40287534828422 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, contemporary of barber) -> contemporary of barber (3116ms) Who is Aaron Copland? outstanding american composer -2.403131139044815 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, outstanding american composer) -> outstanding american composer (3116ms) Who is Aaron Copland? American nationalist composer of concert and film music -2.416578342752657 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, American nationalist composer of concert and film music) -> American nationalist composer of concert and film music (3177ms) Who is Aaron Copland? twentieth-century composer -2.4165845693721204 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, twentieth-century composer) -> twentieth-century composer (3177ms) Who is Aaron Copland? freaking amazing composer -2.4206066523041567 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, freaking amazing composer) -> freaking amazing composer (3177ms) Who is Aaron Copland? famous american composer -2.4206066523041567 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, famous american composer) -> famous american composer (3177ms) Who is Aaron Copland? twentieth century composer -2.4206066523041567 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, twentieth century composer) -> twentieth century composer (3177ms) Who is Aaron Copland? american musical artist -2.4206066523041567 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, american musical artist) -> american musical artist (3177ms) Who is Aaron Copland? songwriter and composer -2.423413721253624 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, songwriter and composer) -> songwriter and composer (3271ms) Who is Aaron Copland? American classical composer -2.4236102216435427 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, American classical composer) -> American classical composer (3271ms) Who is Aaron Copland? well-known American composer -2.434204389800616 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, well-known American composer) -> well-known American composer (3271ms) Who is Aaron Copland? world-renowned composer, teacher, writer and conductor -2.4375551070496835 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, world-renowned composer, teacher, writer and conductor) -> world-renowned composer, teacher, writer and conductor (3271ms) Who is Aaron Copland? great contemporary composer -2.439301044696748 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, great contemporary composer) -> great contemporary composer (3271ms) Who is Aaron Copland? twentieth century classical composer -2.44461301655552 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, twentieth century classical composer) -> twentieth century classical composer (3271ms) Who is Aaron Copland? notable jewish composer -2.4480250944799566 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, notable jewish composer) -> notable jewish composer (3287ms) Who is Aaron Copland? goldfarb's favorite composer -2.4505227413227635 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, goldfarb's favorite composer) -> goldfarb's favorite composer (3287ms) Who is Aaron Copland? top american composer -2.4505227413227635 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, top american composer) -> top american composer (3287ms) Who is Aaron Copland? modern classical composer -2.4507669384523973 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, modern classical composer) -> modern classical composer (3287ms) Who is Aaron Copland? artist and composer -2.4624529032135856 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, artist and composer) -> artist and composer (3287ms) Who is Aaron Copland? composer -2.4647442571187677 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, composer) -> composer (3287ms) Who is Aaron Copland? modern american jewish composer -2.47203145873132 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, modern american jewish composer) -> modern american jewish composer (3302ms) Who is Aaron Copland? yet-to-be-famous writer and musician -2.47203145873132 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, yet-to-be-famous writer and musician) -> yet-to-be-famous writer and musician (3302ms) Who is Aaron Copland? america's most renowned composer -2.48574067859352 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, america's most renowned composer) -> america's most renowned composer (3302ms) Who is Aaron Copland? esteemed and reputable composer -2.4895069719906626 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, esteemed and reputable composer) -> esteemed and reputable composer (3317ms) Who is Aaron Copland? first generation american composer -2.4895069719906626 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, first generation american composer) -> first generation american composer (3302ms) Who is Aaron Copland? world-renowned composer and conductor -2.4895069719906626 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, world-renowned composer and conductor) -> world-renowned composer and conductor (3303ms) Who is Aaron Copland? modern american classical composer -2.4895069719906626 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, modern american classical composer) -> modern american classical composer (3317ms) Who is Aaron Copland? respected American composer -2.4916504033607634 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, respected American composer) -> respected American composer (3317ms) Who is Aaron Copland? influential American composer -2.4916504033607634 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, influential American composer) -> influential American composer (3317ms) Who is Aaron Copland? well-known composer of the twentieth century -2.521993830880578 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, well-known composer of the twentieth century) -> well-known composer of the twentieth century (3332ms) Who is Aaron Copland? composer in the music literature -2.521993830880578 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, composer in the music literature) -> composer in the music literature (3317ms) Who is Aaron Copland? American composer of concert and film -2.521993830880578 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, American composer of concert and film) -> American composer of concert and film (3332ms) Who is Aaron Copland? american musician of jewish origin -2.5306346340286625 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, american musician of jewish origin) -> american musician of jewish origin (3332ms) Who is Aaron Copland? greatest american art-song composer -2.5306346340286625 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, greatest american art-song composer) -> greatest american art-song composer (3332ms) Who is Aaron Copland? American classical composer, composition teacher, writer and conductor -2.593464920438393 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, American classical composer, composition teacher, writer and conductor) -> American classical composer, composition teacher, writer and conductor (3332ms) Who is Aaron Copland? legendary 20th century artist -2.7725543071500756 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, legendary 20th century artist) -> legendary 20th century artist (3347ms) Who is Aaron Copland? 20th century american composer -2.8226658942597025 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, 20th century american composer) -> 20th century american composer (3348ms) Who is Aaron Copland? 20th century jewish composer -2.8226658942597025 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, 20th century jewish composer) -> 20th century jewish composer (3348ms) Who is Aaron Copland? figure -2.8257732362523154 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, figure) -> figure (3362ms) Who is Aaron Copland? treasured 20th-century composer -2.869347987583252 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, treasured 20th-century composer) -> treasured 20th-century composer (3364ms) Who is Aaron Copland? musician -2.8795382256037403 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, musician) -> musician (3380ms) Who is Aaron Copland? 20th-century's greatest american composer -2.908332218251151 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, 20th-century's greatest american composer) -> 20th-century's greatest american composer (3380ms) Who is Aaron Copland? name -2.9169860692050262 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, name) -> name (3394ms) Who is Aaron Copland? composer of the 20th century -2.9243820369851514 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, composer of the 20th century) -> composer of the 20th century (3394ms) Who is Aaron Copland? contemporary -2.93654836893036 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, contemporary) -> contemporary (3408ms) Who is Aaron Copland? American composer of the 20th century -2.940819077141067 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, American composer of the 20th century) -> American composer of the 20th century (3408ms) Who is Aaron Copland? student -2.9576851374778013 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, student) -> student (3422ms) Who is Aaron Copland? friend -3.108846886022671 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, friend) -> friend (3497ms) Who is Aaron Copland? exception -3.116203078069267 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, exception) -> exception (3497ms) Who is Aaron Copland? luminary -3.1347085741819374 Who is Aaron Copland? -> $x: (Aaron Copland, instance of, $x) -> (Aaron Copland, Instance Of, luminary) -> luminary (3497ms) Who is Aaron Copland? Nadia Boulanger -8.249846654366955 Who is Aaron Copland? -> who be [ aaron copland ] ? -> who s aaron copland ? -> $x: ($x, s, aaron copland) -> (Nadia Boulanger, Student(s), Aaron Copland) -> Nadia Boulanger (4166ms) Who is Aaron Copland? Aaron Copeland -9.571478219749794 Who is Aaron Copland? -> who be [ aaron copland ] ? -> who be aaron copland know as ? -> $x: (aaron copland, know as, $x) -> (Aaron Copland, Also known as, Aaron Copeland) -> Aaron Copeland (4307ms) Who is Aaron Copland? Aaronn Copland -9.571478219749794 Who is Aaron Copland? -> who be [ aaron copland ] ? -> who be aaron copland know as ? -> $x: (aaron copland, know as, $x) -> (Aaron Copland, Also known as, Aaronn Copland) -> Aaronn Copland (4307ms) Who is Aaron Copland? Copeland House -9.619125612788338 Who is Aaron Copland? -> who be [ aaron copland ] ? -> who be aaron copland know as ? -> $x: (aaron copland, know as, $x) -> (Aaron Copland House, Also known as, Copeland House) -> Copeland House (4307ms) Who is Aaron Copland? 4532 Copland -10.177080575009064 Who is Aaron Copland? -> who be [ aaron copland ] ? -> who be aaron copland s name ? -> $x: (aaron copland, name, $x) -> (Aaron Copland, Things named after this, 4532 Copland) -> 4532 Copland (4097ms) Who is Aaron Copland? Rock Hill -10.596453513649596 Who is Aaron Copland? -> who be [ aaron copland ] ? -> who be aaron copland know as ? -> $x: (aaron copland, know as, $x) -> (Aaron Copland House, Also known as, Rock Hill) -> Rock Hill (4307ms) Who is Aaron Copland? Film Score Composer -10.59962753011029 Who is Aaron Copland? -> who be [ aaron copland ] ? -> what be aaron copland s profession ? -> $x: (aaron copland, profession, $x) -> (Aaron Copland, Profession, Film Score Composer) -> Film Score Composer (5109ms) Who is Aaron Copland? Copland, Aaron -10.705735789979638 Who is Aaron Copland? -> who be [ aaron copland ] ? -> who be aaron copland know as ? -> $x: (aaron copland, know as, $x) -> (Aaron Copland, Also known as, Copland, Aaron) -> Copland, Aaron (4307ms) Who is Aaron Copland? The Dean of American composers -10.852343153175156 Who is Aaron Copland? -> who be [ aaron copland ] ? -> who be aaron copland know as ? -> $x: (aaron copland, know as, $x) -> (Aaron Copland, Also known as, The Dean of American composers) -> The Dean of American composers (4308ms) Who is Aaron Copland? William Grant -10.905854155526066 Who is Aaron Copland? -> who be [ aaron copland ] ? -> who s aaron copland ? -> $x: ($x, s, aaron copland) -> (William Grant, Still 's The American Scene to, Aaron Copland) -> William Grant (4166ms) Who is Aaron Copland? Aaron Copland (1900-1990) -11.124561036240127 Who is Aaron Copland? -> who be [ aaron copland ] ? -> who be aaron copland know as ? -> $x: (aaron copland, know as, $x) -> (Aaron Copland, Also known as, Aaron Copland (1900-1990)) -> Aaron Copland (1900-1990) (4371ms) Who is Aaron Copland? MIDI -11.345240260301669 Who is Aaron Copland? -> who be [ aaron copland ] ? -> who s aaron copland ? -> $x: ($x, s, aaron copland) -> (MIDI, here 's a theme from, Aaron Copland) -> MIDI (4166ms) Who is Aaron Copland? A Copland Celebration, Volume 3 (New York Philharmonic and Choral Art Society feat. conductor: Aaron Copland) (disc 2) -11.422357242731021 Who is Aaron Copland? -> who be [ aaron copland ] ? -> who be aaron copland know as ? -> $x: (aaron copland, know as, $x) -> (A Copland Celebration, Volume 3 (New York Philharmonic and Choral Art Society feat. conductor: Aaron Copland), Also known as, A Copland Celebration, Volume 3 (New York Philharmonic and Choral Art Society feat. conductor: Aaron Copland) (disc 2)) -> A Copland Celebration, Volume 3 (New York Philharmonic and Choral Art Society feat. conductor: Aaron Copland) (disc 2) (4371ms) Who is Aaron Copland? Pianist -11.848752975131765 Who is Aaron Copland? -> who be [ aaron copland ] ? -> what be aaron copland s profession ? -> $x: (aaron copland, profession, $x) -> (Aaron Copland, Profession, Pianist) -> Pianist (5109ms) Who is Aaron Copland? Composer -11.848752975131765 Who is Aaron Copland? -> who be [ aaron copland ] ? -> what be aaron copland s profession ? -> $x: (aaron copland, profession, $x) -> (Aaron Copland, Profession, Composer) -> Composer (5109ms) Who is Aaron Copland? Conductor -11.848752975131765 Who is Aaron Copland? -> who be [ aaron copland ] ? -> what be aaron copland s profession ? -> $x: (aaron copland, profession, $x) -> (Aaron Copland, Profession, Conductor) -> Conductor (5110ms) Who is Aaron Copland? Writer -11.848752975131765 Who is Aaron Copland? -> who be [ aaron copland ] ? -> what be aaron copland s profession ? -> $x: (aaron copland, profession, $x) -> (Aaron Copland, Profession, Writer) -> Writer (5110ms) Who is Aaron Copland? Copland -12.031437402384487 Who is Aaron Copland? -> who be [ aaron copland ] ? -> who be aaron copland know as ? -> $x: (aaron copland, know as, $x) -> (Aaron Copland, Also known as, Copland) -> Copland (4371ms) Who is Aaron Copland? Aaron Copland Interview - 1977 -12.059058402376339 Who is Aaron Copland? -> who be [ aaron copland ] ? -> who be aaron copland know as ? -> $x: (aaron copland, know as, $x) -> (Aaron Copland Interview 1977, Also known as, Aaron Copland Interview - 1977) -> Aaron Copland Interview - 1977 (4371ms) Who is Aaron Copland? Copeland -12.090996643682665 Who is Aaron Copland? -> who be [ aaron copland ] ? -> who be aaron copland know as ? -> $x: (aaron copland, know as, $x) -> (Aaron Copland, Also known as, Copeland) -> Copeland (4371ms) Who is Aaron Copland? ?Appalachian Spring -12.690569098790117 Who is Aaron Copland? -> who be [ aaron copland ] ? -> what do aaron copland enjoy ? -> $x: (aaron copland, enjoy, $x) -> $x: (aaron copland, do nt like, $x) -> (Aaron Copland?s music, does n?t sound like, ?Appalachian Spring) -> ?Appalachian Spring (4948ms) Who is Aaron Copland? the coming -14.173199671229426 Who is Aaron Copland? -> who be [ aaron copland ] ? -> what do aaron copland enjoy ? -> $x: (aaron copland, enjoy, $x) -> $x: (aaron copland, in play, $x) -> (Aaron Copland, played a crucial role in, the coming) -> the coming (5006ms) When was Microsoft established? 1975 1.9869912032898487 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> (Microsoft, was established in, 1975) -> 1975 (5295ms) When was Microsoft established? 1980 1.957455598734724 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> (Microsoft, was established in, 1980) -> 1980 (5295ms) When was Microsoft established? 1999 1.7436858635508923 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> (Microsoft Latvia, was established in, 1999) -> 1999 (5296ms) When was Microsoft established? 1986 0.12197289863890592 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> (MicrosoftOfficeWebServer, was established in, 1986) -> 1986 (5296ms) When was Microsoft established? 1981 0.06888483078273433 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> (MicrosoftOfficeWebServer, was established in, 1981) -> 1981 (5296ms) When was Microsoft established? 1992 0.0484837119187822 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> (MicrosoftOfficeWebServer, was established in, 1992) -> 1992 (5425ms) When was Microsoft established? 1979 0.0484837119187822 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> (MicrosoftOfficeWebServer, was established in, 1979) -> 1979 (5425ms) When was Microsoft established? 2003 -0.4740996137849902 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft Workplace Publisher, was launched in, 2003) -> 2003 (7216ms) When was Microsoft established? 1995 -0.5952984075493291 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be form in, $x) -> (a Microsoft Gold Partner, was formed in, 1995) -> 1995 (6069ms) When was Microsoft established? 1987 -0.6356489385421606 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, have be around since, $x) -> (Microsoft PowerPoint, has been around since, 1987) -> 1987 (6664ms) When was Microsoft established? 1985 -0.6361256129221444 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (microsoft, establish in, $x) -> (Microsoft, established a Canadian subsidiary in, 1985) -> 1985 (5453ms) When was Microsoft established? 1994 -0.6500442889848235 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be last update in, $x) -> (Microsoft, was last updated in, 1994) -> 1994 (5645ms) When was Microsoft established? 2004 -0.702541514669683 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (the Microsoft UP program, was launched in, 2004) -> 2004 (7217ms) When was Microsoft established? 2007 -0.7219938790052827 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (The Microsoft Connector service, was launched in, 2007) -> 2007 (7216ms) When was Microsoft established? 1996 -0.784348825198546 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be start in, $x) -> (The Microsoft core Web fonts project, was started in, 1996) -> 1996 (7007ms) When was Microsoft established? 1982 -0.8688785423660463 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, have be around since, $x) -> (Microsoft Flight Simulation, has been around since, 1982) -> 1982 (6664ms) When was Microsoft established? 2011 -1.2039517875445003 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft?s own phone, will be launched in, 2011) -> 2011 (7281ms) When was Microsoft established? Office 2007 -1.2605904607513927 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be open in, $x) -> (Microsoft Office, is opened in, Office 2007) -> Office 2007 (6825ms) When was Microsoft established? 2009 -1.4400473740453523 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, close in, $x) -> (Microsoft, closed positively in, 2009) -> 2009 (5453ms) When was Microsoft established? Office 2010 -1.4603997162778537 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft, is expected to launch in, Office 2010) -> Office 2010 (7281ms) When was Microsoft established? 2005 -1.5231552659952587 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, go bankrupt in, $x) -> (Microsoft, went bankrupt in, 2005) -> 2005 (7281ms) When was Microsoft established? 2010 -1.6744941471683585 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, expand in, $x) -> (Microsoft, will probably expand its market share in, 2010) -> 2010 (6170ms) When was Microsoft established? July 2010 -1.6912289076876141 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (microsoft, establish in, $x) -> (Microsoft, established in, July 2010) -> July 2010 (5453ms) When was Microsoft established? Holiday 2010 -1.7456227131042836 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft, would be launching in, Holiday 2010) -> Holiday 2010 (7281ms) When was Microsoft established? 2001 -1.82209975253964 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be open in, $x) -> (Microsoft, been an open company in, 2001) -> 2001 (6825ms) When was Microsoft established? 2013 occupies -1.8224745376235454 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be start in, $x) -> (Microsoft, is expected to start in, 2013 occupies) -> 2013 occupies (7007ms) When was Microsoft established? October 1990 -1.9110850851552632 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be start in, $x) -> (Microsoft Workplace, was started in, October 1990) -> October 1990 (7007ms) When was Microsoft established? October 2007 -1.9383139580328526 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft?s HealthVault, was launched in, October 2007) -> October 2007 (7373ms) When was Microsoft established? October 2001 -1.9399476409592658 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft Windows XP, was launched in, October 2001) -> October 2001 (7373ms) When was Microsoft established? September 2007 -1.9445935775611076 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft PerformancePoint, was also launched in, September 2007) -> September 2007 (7373ms) When was Microsoft established? late 1998 -1.9446923994378493 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be begin in, $x) -> (Microsoft Access, was begun in, late 1998) -> late 1998 (7373ms) When was Microsoft established? February 2012 -1.9515028178275338 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be start in, $x) -> (Microsoft, is due to start in, February 2012) -> February 2012 (7007ms) When was Microsoft established? July 2005 -1.9968600822323817 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Connect Microsoft Connect, was launched in, July 2005) -> July 2005 (7510ms) When was Microsoft established? April 2000 -2.034880571800189 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft, was found guilty in, April 2000) -> April 2000 (6432ms) When was Microsoft established? 2006 GSI action -2.0525645106313 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft, is launched in, 2006 GSI action) -> 2006 GSI action (7510ms) When was Microsoft established? 2006 -2.129996144023738 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (microsoft, establish in, $x) -> $x: (microsoft, to complete in, $x) -> (Microsoft, has to be completed in, 2006) -> 2006 (11877ms) When was Microsoft established? December 2003 -2.148647410179474 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (The Microsoft Partner Programme, was launched in, December 2003) -> December 2003 (7510ms) When was Microsoft established? the August 1989 -2.172383689757848 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Ramesh Microsoft Office, was launched in, the August 1989) -> the August 1989 (7510ms) When was Microsoft established? October 2003 -2.1912794986558026 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (The Microsoft Partner Network, was launched in, October 2003) -> October 2003 (7510ms) When was Microsoft established? Oct 2003 -2.2116806175197548 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (The Microsoft Partner Program, was launched in, Oct 2003) -> Oct 2003 (7510ms) When was Microsoft established? 1968 -2.2156534642942787 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be charter in, $x) -> (MicrosoftOfficeWebServer, was chartered in, 1968) -> 1968 (6170ms) When was Microsoft established? November 2005 -2.230550846340642 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (The BL and Microsoft partnership, was launched in, November 2005) -> November 2005 (7574ms) When was Microsoft established? Word 2003 -2.263548847674455 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be open in, $x) -> (a Microsoft Word 95 file, can normally be opened in, Word 2003) -> Word 2003 (6825ms) When was Microsoft established? Q3 2012 -2.3013187092526035 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft?s Windows 8 OS, is due to launch in, Q3 2012) -> Q3 2012 (7574ms) When was Microsoft established? July 1997 -2.34612199773332 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be set up in, $x) -> (Microsoft Research Cambridge, was set up in, July 1997) -> July 1997 (7574ms) When was Microsoft established? June -2.553179359931711 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft Office 2010, was launched in, June) -> June (7593ms) When was Microsoft established? December 2009 -2.854849230443297 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft Dynamics CRM, is expected to come in, December 2009) -> December 2009 (10997ms) When was Microsoft established? 1997 -2.9370930053752176 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, begin operation in, $x) -> (Microsoft, began operations in Reno in, 1997) -> 1997 (7611ms) When was Microsoft established? CRM -3.0648013060570274 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> (Microsoft Michael, is a well-established authority on, CRM) -> CRM (5511ms) When was Microsoft established? June 25 , 2003 -3.134182585165462 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft Media Player 9 Series, was found on, June 25 , 2003) -> June 25 , 2003 (8963ms) When was Microsoft established? May 12 -3.1421877847948876 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, reveal on, $x) -> (Microsoft, revealed on, May 12) -> May 12 (9206ms) When was Microsoft established? mid January -3.168513858324454 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft Windows, would be launched sometime in, mid January) -> mid January (7611ms) When was Microsoft established? December -3.1812727865260633 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be institute in, $x) -> (Microsoft, was instituted in, December) -> December (5511ms) When was Microsoft established? Windows NT 4.0, 2000 -3.2056579028130203 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, has found a flaw in, Windows NT 4.0, 2000) -> Windows NT 4.0, 2000 (6664ms) When was Microsoft established? Beijing -3.2729824685835744 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> (Microsoft Asian research institute, was established in, Beijing) -> Beijing (5645ms) When was Microsoft established? Japan -3.302225556863082 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> (ASCII Microsoft company, is formally established in, Japan) -> Japan (5645ms) When was Microsoft established? May -3.3675382865276147 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be start in, $x) -> (the new Nokia-Microsoft programme, is set to start in, May) -> May (7611ms) When was Microsoft established? September -3.37707520557042 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft Security Essentials, was launched in, September) -> September (7611ms) When was Microsoft established? January -3.379976027394238 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft Vista, was launched in, January) -> January (7611ms) When was Microsoft established? April 2 , 1993 -3.4501022094438643 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be create on, $x) -> (The Microsoft Word document, was created on, April 2 , 1993) -> April 2 , 1993 (9949ms) When was Microsoft established? January 8 -3.513356471304837 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, is intending to release on, January 8) -> January 8 (9718ms) When was Microsoft established? Ireland -3.652795796982031 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> (Microsoft Ireland Microsoft, was first established in, Ireland) -> Ireland (5645ms) When was Microsoft established? 75 % -3.738241559017096 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft, is found in, 75 %) -> 75 % (6432ms) When was Microsoft established? China -3.7957876286217664 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> (Microsoft, is establishing a center in, China) -> China (5645ms) When was Microsoft established? MSKB 246817 -3.8181276819788037 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft, can be found in, MSKB 246817) -> MSKB 246817 (6432ms) When was Microsoft established? 23 cities -3.8650181888052093 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (microsoft, establish in, $x) -> (Microsoft, established representative offices in, 23 cities) -> 23 cities (5645ms) When was Microsoft established? contempt -3.941635646727689 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft, is found in, contempt) -> contempt (6432ms) When was Microsoft established? Windows 7 -3.9505665773311884 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, was quick to come out with, Windows 7) -> Windows 7 (10997ms) When was Microsoft established? late 2006 -3.967902912917857 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (microsoft, establish in, $x) -> $x: (microsoft, work since, $x) -> (Microsoft+Novell, have been working since, late 2006) -> late 2006 (11400ms) When was Microsoft established? corporations -3.976180259004262 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft, is typically found in, corporations) -> corporations (6432ms) When was Microsoft established? Word -4.0382726491106435 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be create in, $x) -> (Microsoft Word Headings, are created in, Word) -> Word (6825ms) When was Microsoft established? the ?70s -4.0502230829610735 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, have be around since, $x) -> (Microsoft, has been around since, the ?70s) -> the ?70s (6851ms) When was Microsoft established? the '70s -4.0706242018250265 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, have be around since, $x) -> (Microsoft, has been around since, the '70s) -> the '70s (6851ms) When was Microsoft established? continuation -4.114938394839006 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be create in, $x) -> (Microsoft, is created in, continuation) -> continuation (6851ms) When was Microsoft established? the AX 2012 release -4.188098395969545 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (microsoft, establish in, $x) -> $x: (microsoft, set out in, $x) -> (Simplicity Microsoft, set out in, the AX 2012 release) -> the AX 2012 release (12270ms) When was Microsoft established? http://en.wikipedia.org/wiki/Microsoft%20XNA -4.231673116161005 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (microsoft xna, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20XNA) -> http://en.wikipedia.org/wiki/Microsoft%20XNA (8964ms) When was Microsoft established? http://en.wikipedia.org/wiki/Microsoft%20Flight -4.231673116161005 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft Flight, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Flight) -> http://en.wikipedia.org/wiki/Microsoft%20Flight (8964ms) When was Microsoft established? http://en.wikipedia.org/wiki/Microsoft%20Narrator -4.231673116161005 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft Narrator, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Narrator) -> http://en.wikipedia.org/wiki/Microsoft%20Narrator (9017ms) When was Microsoft established? http://en.wikipedia.org/wiki/Microsoft%20Press -4.231673116161005 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft Press, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Press) -> http://en.wikipedia.org/wiki/Microsoft%20Press (8963ms) When was Microsoft established? http://en.wikipedia.org/wiki/Microsoft%20Tinker -4.231673116161005 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft Tinker, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Tinker) -> http://en.wikipedia.org/wiki/Microsoft%20Tinker (8964ms) When was Microsoft established? http://en.wikipedia.org/wiki/Microsoft%20Research%20Maps -4.231673116161005 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft TerraServer, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Research%20Maps) -> http://en.wikipedia.org/wiki/Microsoft%20Research%20Maps (8963ms) When was Microsoft established? Word 2010 -4.272192151241583 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (microsoft, establish in, $x) -> $x: (microsoft, modify in, $x) -> (Microsoft Word 2010 Learn, modify documents in, Word 2010) -> Word 2010 (12036ms) When was Microsoft established? the No. 2 Xbox 360 -4.277079625259699 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be close in, $x) -> (Microsoft Corp., was closing in on, the No. 2 Xbox 360) -> the No. 2 Xbox 360 (5761ms) When was Microsoft established? 1991 -4.2809469859650084 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (microsoft, establish in, $x) -> $x: (microsoft, set up in, $x) -> (Microsoft, set up its Hong Kong office in, 1991) -> 1991 (11537ms) When was Microsoft established? partnership -4.286594339412999 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be create in, $x) -> (Microsoft Outlook, was created in, partnership) -> partnership (6851ms) When was Microsoft established? http://en.wikipedia.org/wiki/Microsoft%20Pinball%20Arcade -4.296646833940837 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft Pinball Arcade, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Pinball%20Arcade) -> http://en.wikipedia.org/wiki/Microsoft%20Pinball%20Arcade (9017ms) When was Microsoft established? http://en.wikipedia.org/wiki/Microsoft%20Baseball%202001 -4.296646833940837 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft Baseball 2001, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Baseball%202001) -> http://en.wikipedia.org/wiki/Microsoft%20Baseball%202001 (9017ms) When was Microsoft established? http://en.wikipedia.org/wiki/Microsoft%20Binary%20Format -4.296646833940837 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft Binary Format, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Binary%20Format) -> http://en.wikipedia.org/wiki/Microsoft%20Binary%20Format (9089ms) When was Microsoft established? http://en.wikipedia.org/wiki/Microsoft%20Space%20Simulator -4.296646833940837 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft Space Simulator, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Space%20Simulator) -> http://en.wikipedia.org/wiki/Microsoft%20Space%20Simulator (9017ms) When was Microsoft established? http://en.wikipedia.org/wiki/Bing%20Maps%20Platform -4.296646833940837 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (microsoft virtual earth, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Bing%20Maps%20Platform) -> http://en.wikipedia.org/wiki/Bing%20Maps%20Platform (9016ms) When was Microsoft established? http://en.wikipedia.org/wiki/Microsoft%20Entertainment%20Pack -4.296646833940837 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft Entertainment Pack, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Entertainment%20Pack) -> http://en.wikipedia.org/wiki/Microsoft%20Entertainment%20Pack (9017ms) When was Microsoft established? Microsoft Word -4.442909208074951 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be open in, $x) -> (a Microsoft Excel file, also may be opened in, Microsoft Word) -> Microsoft Word (6872ms) When was Microsoft established? market -4.478281623667842 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft Dynamics brand, was launched in, market) -> market (7740ms) When was Microsoft established? Windows 8. -4.489311835791286 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, is coming to, Windows 8.) -> Windows 8. (10997ms) When was Microsoft established? October -4.50113975121751 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, close in, $x) -> (Microsoft and Skype, closed the deal in, October) -> October (5761ms) When was Microsoft established? MS Office -4.584186751962676 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft applications, could be found in, MS Office) -> MS Office (6432ms) When was Microsoft established? Windows Phone 7 -4.589118730620737 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, is now on to, Windows Phone 7) -> Windows Phone 7 (9718ms) When was Microsoft established? IBS -4.591195780448783 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be start in, $x) -> (Microsoft Business Solution practice, was started in, IBS) -> IBS (7740ms) When was Microsoft established? more than 100,000 apps -4.612512402459452 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, is expected to come up with, more than 100,000 apps) -> more than 100,000 apps (10998ms) When was Microsoft established? computer technology -4.613365272114928 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be start in, $x) -> (Microsoft, was just starting out in, computer technology) -> computer technology (7740ms) When was Microsoft established? New Jersey -4.664743257076803 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be open in, $x) -> (Microsoft, will be opening a store in, New Jersey) -> New Jersey (6873ms) When was Microsoft established? the 17th place -4.670325070639472 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be rank on, $x) -> (Environment Microsoft, is ranked on, the 17th place) -> the 17th place (10597ms) When was Microsoft established? Round 2 -4.672092582503316 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, was already on to, Round 2) -> Round 2 (9718ms) When was Microsoft established? the Xbox 360 -4.702840918063633 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, will be coming to, the Xbox 360) -> the Xbox 360 (10997ms) When was Microsoft established? 15 percent -4.714335499384774 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft, can already be found on, 15 percent) -> 15 percent (9089ms) When was Microsoft established? any -4.72292054017793 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (microsoft, establish in, $x) -> (Microsoft Corporation, has established in, any) -> any (5761ms) When was Microsoft established? 90 percent -4.757661160061455 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft Corp, can be found on, 90 percent) -> 90 percent (9089ms) When was Microsoft established? the Nokia N8 -4.765321080633576 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft Office, will also be coming to, the Nokia N8) -> the Nokia N8 (10997ms) When was Microsoft established? Windows 8 -4.770798950510406 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, is continues to work on, Windows 8) -> Windows 8 (9718ms) When was Microsoft established? mode -4.77383295899025 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be buy in, $x) -> (Microsoft, is back in buying, mode) -> mode (7740ms) When was Microsoft established? p2p file sharing -4.784220961329434 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, is looking to improve on, p2p file sharing) -> p2p file sharing (9718ms) When was Microsoft established? more than 160 mobile phones -4.811948859726728 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft software, can be found on, more than 160 mobile phones) -> more than 160 mobile phones (9089ms) When was Microsoft established? a Twitter clone -4.824605067241775 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be create in, $x) -> (Microsoft, is interested in creating, a Twitter clone) -> a Twitter clone (6873ms) When was Microsoft established? iPad -4.8578799415879885 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft Office, is coming to, iPad) -> iPad (11056ms) When was Microsoft established? Tuesday -4.860988598681003 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, reveal on, $x) -> (Microsoft, revealed on, Tuesday) -> Tuesday (9205ms) When was Microsoft established? 200 Ugandans -4.872528086717578 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, found only one in, 200 Ugandans) -> 200 Ugandans (7758ms) When was Microsoft established? top 25 apps -4.883343200011001 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, close in, $x) -> (Microsoft, close all gaps in, top 25 apps) -> top 25 apps (5960ms) When was Microsoft established? OpenID -4.9094910689448765 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be implement on, $x) -> (Microsoft, is working on implementing, OpenID) -> OpenID (10597ms) When was Microsoft established? a few years -4.91020368062858 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft Surface, will be launched in, a few years) -> a few years (7759ms) When was Microsoft established? 32-bit versions -4.913801777875458 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be design on, $x) -> (Microsoft Photo Info, is designed to run on, 32-bit versions) -> 32-bit versions (9763ms) When was Microsoft established? a 32-bit version -4.927129300126047 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, is also said to be working on, a 32-bit version) -> a 32-bit version (9718ms) When was Microsoft established? violation -4.9400621631904995 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (1999 Microsoft, was found in, violation) -> violation (7758ms) When was Microsoft established? opposition -4.942509873249004 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be set up in, $x) -> (Microsoft servers, are set up in, opposition) -> opposition (7759ms) When was Microsoft established? light -4.943939645518167 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, are now coming to, light) -> light (11056ms) When was Microsoft established? four years -4.950359727362759 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft, was first launched in, four years) -> four years (7759ms) When was Microsoft established? a garage -4.95905770760584 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be start in, $x) -> (Microsoft, was started in, a garage) -> a garage (7778ms) When was Microsoft established? a market -4.962507770750375 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, is coming to, a market) -> a market (11056ms) When was Microsoft established? mobile -4.966924412097326 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (microsoft, establish in, $x) -> (Microsoft, will establish a foothold in, mobile) -> mobile (5960ms) When was Microsoft established? compatibility mode -4.9906436572412805 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be open in, $x) -> (Microsoft Company 2007, are opened in, compatibility mode) -> compatibility mode (7778ms) When was Microsoft established? malware company Claria -4.995255256149802 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be buy in, $x) -> (Microsoft, is interested in buying, malware company Claria) -> malware company Claria (7778ms) When was Microsoft established? a couple -5.006516543155859 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (new Microsoft OS, is due to be launched in, a couple) -> a couple (7778ms) When was Microsoft established? response -5.006973462293893 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be create in, $x) -> (The Microsoft Home brand, has been created in, response) -> response (7778ms) When was Microsoft established? Yahoo! -5.010786566281396 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be acquire in, $x) -> (Microsoft, was once interested in acquiring, Yahoo!) -> Yahoo! (7777ms) When was Microsoft established? Monday -5.030499418859934 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, reveal on, $x) -> (Microsoft, revealed on, Monday) -> Monday (9205ms) When was Microsoft established? the File menu -5.032424311439732 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft Word, is found in, the File menu) -> the File menu (7795ms) When was Microsoft established? a college dorm room -5.034224552948256 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be start in, $x) -> (Microsoft, was started in, a college dorm room) -> a college dorm room (7795ms) When was Microsoft established? early next year -5.036877112151546 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft, will be launched in, early next year) -> early next year (7795ms) When was Microsoft established? Insert option -5.048570250866814 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft Word, is found in, Insert option) -> Insert option (7795ms) When was Microsoft established? a discussion -5.053612296454305 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be open in, $x) -> (Microsoft, have been commendably open in, a discussion) -> a discussion (7795ms) When was Microsoft established? 20 to 80 years -5.054931539770476 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, go bankrupt in, $x) -> (Microsoft, goes bankrupt in, 20 to 80 years) -> 20 to 80 years (7795ms) When was Microsoft established? tough times -5.065370003296829 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft, were all launched in, tough times) -> tough times (7811ms) When was Microsoft established? a stake -5.069398788913899 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be buy in, $x) -> (Microsoft, was interested in buying, a stake) -> a stake (7812ms) When was Microsoft established? software -5.08863528183284 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be develop on, $x) -> (Microsoft, is completely focused on developing, software) -> software (10157ms) When was Microsoft established? the Common Files -5.106828469294576 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft, can be found in, the Common Files) -> the Common Files (7812ms) When was Microsoft established? force -5.112310020779795 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft licensing, was due to come into, force) -> force (11056ms) When was Microsoft established? reality -5.1127374399629275 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, might be gradually coming around to, reality) -> reality (11056ms) When was Microsoft established? technology -5.128488765032391 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be develop on, $x) -> (Microsoft, is now focused on developing, technology) -> technology (10157ms) When was Microsoft established? an exposition -5.129984829313575 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be set up in, $x) -> (Microsoft, would be interested in setting up, an exposition) -> an exposition (7812ms) When was Microsoft established? a gathering place -5.133776549775429 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be create in, $x) -> (generous Microsoft, has been in creating, a gathering place) -> a gathering place (7830ms) When was Microsoft established? Canada -5.134250731821478 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be expand in, $x) -> (Microsoft, is expanding in, Canada) -> Canada (5960ms) When was Microsoft established? fraud -5.140231556271765 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be build upon, $x) -> (Microsoft Corporation, is built upon, fraud) -> fraud (11101ms) When was Microsoft established? MSN -5.149317250377181 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be start on, $x) -> (Microsoft, is starting to focus on, MSN) -> MSN (11101ms) When was Microsoft established? such a way -5.15463448855964 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be create in, $x) -> (the Microsoft site, is created in, such a way) -> such a way (7830ms) When was Microsoft established? the Colorado Convention Center -5.156222280936557 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (microsoft, establish in, $x) -> (Microsoft, had established in, the Colorado Convention Center) -> the Colorado Convention Center (5960ms) When was Microsoft established? older training -5.159055473267418 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft Visual C++, are found packaged in, older training) -> older training (7830ms) When was Microsoft established? pricing -5.159180528361132 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, is refusing to budge on, pricing) -> pricing (9763ms) When was Microsoft established? India -5.1653191940407925 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be start in, $x) -> (Microsoft Store, was started in, India) -> India (7831ms) When was Microsoft established? price -5.1670012419105875 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, was willing to deal on, price) -> price (9763ms) When was Microsoft established? college dorm rooms -5.167440675465009 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be start in, $x) -> (Facebook and Microsoft, were started in, college dorm rooms) -> college dorm rooms (7848ms) When was Microsoft established? town Microsoft -5.174117983922741 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, is coming to, town Microsoft) -> town Microsoft (11101ms) When was Microsoft established? new ways -5.174419730807637 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Problem Microsoft, was interested in finding, new ways) -> new ways (7848ms) When was Microsoft established? the Film menu -5.179232967308418 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft Word, is found in, the Film menu) -> the Film menu (7848ms) When was Microsoft established? timing -5.199371391120161 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be close in, $x) -> (Apple and Microsoft, are also once again close in, timing) -> timing (6069ms) When was Microsoft established? North America -5.200167174381401 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft, will be launched in, North America) -> North America (7848ms) When was Microsoft established? HP -5.200992945861325 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, is looking to capitalize on, HP) -> HP (9763ms) When was Microsoft established? benchmarks -5.207182356073591 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be declare on, $x) -> (Microsoft, is declaring open season on, benchmarks) -> benchmarks (10597ms) When was Microsoft established? Powerset -5.209280831200337 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be acquire in, $x) -> (Microsoft, may be interested in acquiring, Powerset) -> Powerset (7848ms) When was Microsoft established? Jeeves -5.209280831200337 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be acquire in, $x) -> (Microsoft, might be interested in acquiring, Jeeves) -> Jeeves (7848ms) When was Microsoft established? various systems -5.214695386241375 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be incorporate in, $x) -> (Microsoft windows, has now been incorporated in, various systems) -> various systems (7864ms) When was Microsoft established? San Antonio -5.217792750993635 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft Bootcamp, is coming to, San Antonio) -> San Antonio (11101ms) When was Microsoft established? Las Vegas -5.217792750993635 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft Bootcamp, is coming to, Las Vegas) -> Las Vegas (11101ms) When was Microsoft established? conferences -5.232443893199743 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be open in, $x) -> (Microsoft, is also very open about participating in, conferences) -> conferences (7864ms) When was Microsoft established? several cases -5.24116064623862 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft, has been found guilty recently in, several cases) -> several cases (7864ms) When was Microsoft established? the FAST Search Server -5.254127064990728 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be incorporate in, $x) -> (Microsoft, has now been incorporated in, the FAST Search Server) -> the FAST Search Server (7864ms) When was Microsoft established? VB6 -5.258979939446601 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, would give up, $x) -> (a darn shame Microsoft, would just give up on, VB6) -> VB6 (11101ms) When was Microsoft established? previous versions -5.261100926086704 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be open in, $x) -> (Microsoft Office 2010 files, can be opened in, previous versions) -> previous versions (7864ms) When was Microsoft established? an Internet Explorer browser -5.277081060242878 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be open in, $x) -> (Microsoft Word, can be opened in, an Internet Explorer browser) -> an Internet Explorer browser (7882ms) When was Microsoft established? servers -5.278539224980044 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be design on, $x) -> (Microsoft SQL Server, are designed to be used on, servers) -> servers (9763ms) When was Microsoft established? the Online Books -5.278849433045071 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft SQL Server, can be found in, the Online Books) -> the Online Books (7882ms) When was Microsoft established? campus -5.2793375359129024 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, is coming to, campus) -> campus (11188ms) When was Microsoft established? a few chapels -5.281502044950656 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (microsoft windows, are still found in quite, a few chapels) -> a few chapels (7882ms) When was Microsoft established? a lot -5.29293205814454 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft and Adobe computer software, are found in, a lot) -> a lot (7882ms) When was Microsoft established? a phased approach -5.2956141700050265 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be close in, $x) -> (Microsoft, will be closing newsgroups in, a phased approach) -> a phased approach (6102ms) When was Microsoft established? entertainment -5.2990214632886445 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, has found one in, entertainment) -> entertainment (7882ms) When was Microsoft established? the Start Menu -5.312448990607396 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft Sound Recorder, can be found in, the Start Menu) -> the Start Menu (7882ms) When was Microsoft established? Vancouver -5.324851572466992 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be open in, $x) -> (Microsoft, is opening a new office in, Vancouver) -> Vancouver (7899ms) When was Microsoft established? the U. S. -5.354038581305703 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft Office Accounting 2007, can be found in, the U. S.) -> the U. S. (7899ms) When was Microsoft established? the USA -5.366803849031806 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be authorize in, $x) -> (Microsoft Office Suite ?, Must be authorized to work in, the USA) -> the USA (7899ms) When was Microsoft established? Reno -5.367150802070775 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, begin operation in, $x) -> (Microsoft, began operations in, Reno) -> Reno (7899ms) When was Microsoft established? par -5.373640843064757 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, is going to be on, par) -> par (9822ms) When was Microsoft established? a down economy -5.381808624922651 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Burger King and Microsoft, were launched in, a down economy) -> a down economy (7899ms) When was Microsoft established? FaceBob -5.393178117070805 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be resurrect, $x) -> (Microsoft Bob, can be resurrected as, FaceBob) -> FaceBob (9822ms) When was Microsoft established? dozens -5.402861056358898 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft?s music player, is found in, dozens) -> dozens (7916ms) When was Microsoft established? town -5.419924965565286 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (town Microsoft, is coming to, town) -> town (11188ms) When was Microsoft established? Africa -5.420470132314884 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be expand in, $x) -> (Google and Microsoft, are expanding rapidly in, Africa) -> Africa (6102ms) When was Microsoft established? friends -5.429848052905715 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft OneAlbum, Find your photos in, friends) -> friends (7916ms) When was Microsoft established? iOS -5.4364189207793325 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft Office, is coming to, iOS) -> iOS (11187ms) When was Microsoft established? terms -5.441473386368826 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, is coming to, terms) -> terms (11188ms) When was Microsoft established? Bangalore -5.448078837059071 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft Research India, was launched in, Bangalore) -> Bangalore (7916ms) When was Microsoft established? Microsoft -5.468953710673144 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be set up in, $x) -> (the Microsoft officials, were involved in setting up, Microsoft) -> Microsoft (7916ms) When was Microsoft established? Silicon Valley -5.473944663302 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be expand in, $x) -> (Microsoft, is expanding its reach in, Silicon Valley) -> Silicon Valley (6102ms) When was Microsoft established? a standard -5.479496371537781 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be create on, $x) -> (Microsoft, was working on creating, a standard) -> a standard (9949ms) When was Microsoft established? Australia -5.489804338473142 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (The day Microsoft Kinect, was launched in, Australia) -> Australia (7916ms) When was Microsoft established? a legacy -5.4969071849419056 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be build upon, $x) -> (Microsoft, is building upon, a legacy) -> a legacy (11187ms) When was Microsoft established? Thursday -5.499688158369174 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, reveal on, $x) -> (Microsoft, revealed on, Thursday) -> Thursday (9205ms) When was Microsoft established? tablets -5.501536726949414 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, is going to work on, tablets) -> tablets (9822ms) When was Microsoft established? Moscow -5.504468894464958 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be close in, $x) -> (Microsoft software, has been closed down in, Moscow) -> Moscow (6170ms) When was Microsoft established? the Web. -5.505544787075298 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft, can probably still be found somewhere on, the Web.) -> the Web. (9089ms) When was Microsoft established? a journey -5.509559078091129 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be start on, $x) -> (Microsoft, is starting out on, a journey) -> a journey (11187ms) When was Microsoft established? Europe -5.520022029924282 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (the Microsoft portable media player Zune, be launched in, Europe) -> Europe (7934ms) When was Microsoft established? Capitol Hill -5.537809158187195 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be here on, $x) -> (Microsoft, was here on, Capitol Hill) -> Capitol Hill (10040ms) When was Microsoft established? Gordon Brown -5.54286606485373 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (microsoft, establish in, $x) -> (the UK, Microsoft, established a major office in, Gordon Brown) -> Gordon Brown (6171ms) When was Microsoft established? open source -5.549078059467774 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, should be make on, $x) -> (?One big bet Microsoft, should make is on, open source) -> open source (9089ms) When was Microsoft established? grips -5.551364628586146 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, was yet to come to, grips) -> grips (11248ms) When was Microsoft established? Symphony -5.570942827181911 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be open in, $x) -> (a Microsoft word 2002 document, is opened in, Symphony) -> Symphony (7934ms) When was Microsoft established? handy making work -5.576102763199097 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, might come to be, handy making work) -> handy making work (11248ms) When was Microsoft established? an end -5.577825968705557 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, are coming to, an end) -> an end (11248ms) When was Microsoft established? the DotSpatial Library -5.583507910653745 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be build upon, $x) -> (Microsoft Windows, is built upon, the DotSpatial Library) -> the DotSpatial Library (11248ms) When was Microsoft established? about 265 of the patents -5.586526915873214 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, is hanging on to, about 265 of the patents) -> about 265 of the patents (9822ms) When was Microsoft established? typosquatters -5.598162519442253 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be declare on, $x) -> (Microsoft, is declaring war on, typosquatters) -> typosquatters (10598ms) When was Microsoft established? skeuomorphs -5.598406296834408 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be declare on, $x) -> (Microsoft, is declaring a war on, skeuomorphs) -> skeuomorphs (10598ms) When was Microsoft established? Windows -5.60719489124523 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Other important Microsoft files, can be found in, Windows) -> Windows (7934ms) When was Microsoft established? track -5.6158464582733645 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, seems to be on, track) -> track (9822ms) When was Microsoft established? a way -5.616054992247254 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be set up in, $x) -> (Microsoft?s PPTP server, is also set up in, a way) -> a way (7950ms) When was Microsoft established? the Republic -5.632070588525628 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, have operation in, $x) -> (WPP and Microsoft, have operations in, the Republic) -> the Republic (6246ms) When was Microsoft established? a whole bunch -5.637317579506554 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Ex-Microsoft Employee, was found in, a whole bunch) -> a whole bunch (7950ms) When was Microsoft established? RPL! -5.638651979124668 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft Office 2010, is coming to, RPL!) -> RPL! (11300ms) When was Microsoft established? a point -5.646732755680682 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, is coming to, a point) -> a point (11300ms) When was Microsoft established? a screen -5.665936910098048 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft Windows, is coming to, a screen) -> a screen (11300ms) When was Microsoft established? alert -5.667705282900242 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, have to constantly be on, alert) -> alert (9822ms) When was Microsoft established? Office piracy -5.674313286703152 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, continue to be lax on, Office piracy) -> Office piracy (9949ms) When was Microsoft established? any PC -5.684827555990891 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be start on, $x) -> (Microsoft Outlook files, can be started on, any PC) -> any PC (11340ms) When was Microsoft established? Ukraine and Russia -5.68701968538884 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft Corporation, is coming to, Ukraine and Russia) -> Ukraine and Russia (11399ms) When was Microsoft established? Photoshop -5.69338939886515 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be open in, $x) -> (A Microsoft word document, cannot be simply opened in, Photoshop) -> Photoshop (7951ms) When was Microsoft established? right -5.695732581235072 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, needs to be working on, right) -> right (9949ms) When was Microsoft established? UK. -5.702125159345314 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft?s .NET platform, is coming to, UK.) -> UK. (11399ms) When was Microsoft established? Cambridge -5.705006795146877 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (microsoft, establish in, $x) -> (Microsoft?s R&D Center, already established in, Cambridge) -> Cambridge (6247ms) When was Microsoft established? a domain -5.710991442878491 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be create on, $x) -> (Microsoft FrontPage subaccounts, can be created on, a domain) -> a domain (9949ms) When was Microsoft established? Land System -5.714136042094464 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft Surface, Is Finally Coming In To, Land System) -> Land System (11399ms) When was Microsoft established? town Bill -5.719605930278449 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (threats Microsoft, is coming to, town Bill) -> town Bill (11399ms) When was Microsoft established? huge annuity streams -5.727395076339964 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, is trying to hang on to, huge annuity streams) -> huge annuity streams (9949ms) When was Microsoft established? The Halloween Memo -5.727916411685184 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, came to be known as, The Halloween Memo) -> The Halloween Memo (11537ms) When was Microsoft established? leverage Redmond -5.741904548216214 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, came down being able to, leverage Redmond) -> leverage Redmond (11537ms) When was Microsoft established? an internet -5.746677124290243 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (this Yahoo Microsoft merger, is coming very soon to, an internet) -> an internet (11558ms) When was Microsoft established? cloud services -5.750673085850014 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (microsoft, establish in, $x) -> $x: (microsoft, be relatively new to, $x) -> (Microsoft, is relatively new to offering, cloud services) -> cloud services (12210ms) When was Microsoft established? the Identity layer -5.760671283544844 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be implement on, $x) -> (Microsoft, was implementing on, the Identity layer) -> the Identity layer (10598ms) When was Microsoft established? top -5.7702722229848185 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, does seem to be on, top) -> top (10040ms) When was Microsoft established? a patent hunt -5.7719026866423055 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, seem to be on, a patent hunt) -> a patent hunt (10040ms) When was Microsoft established? promotions -5.772101244036433 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, is keen to expand on, promotions) -> promotions (10040ms) When was Microsoft established? sale -5.775638042343115 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, is ready to go on, sale) -> sale (10040ms) When was Microsoft established? a game -5.777078784181856 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, is coming late to, a game) -> a game (11558ms) When was Microsoft established? a collision course -5.785722196203284 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, seems to be on, a collision course) -> a collision course (10040ms) When was Microsoft established? a patch -5.7870324747164 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, was able to come up with, a patch) -> a patch (11618ms) When was Microsoft established? an imitation -5.7915786758008565 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, was forced to come up with, an imitation) -> an imitation (11618ms) When was Microsoft established? examples -5.796758630533052 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, has been unable to come up with, examples) -> examples (11618ms) When was Microsoft established? a place -5.810574120998422 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Mac v. Microsoft, seem to be coming from, a place) -> a place (11618ms) When was Microsoft established? a tablet computer -5.811812542099946 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, was the very first to come up with, a tablet computer) -> a tablet computer (11618ms) When was Microsoft established? a dramatic escalation -5.812674196561971 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, is about to embark on, a dramatic escalation) -> a dramatic escalation (10104ms) When was Microsoft established? a tear -5.817134734670476 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, appears to be on, a tear) -> a tear (10103ms) When was Microsoft established? various levels -5.826758148732552 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be possible on, $x) -> (Microsoft Dynamics GP, is possible on, various levels) -> various levels (10104ms) When was Microsoft established? such speculation -5.835629518885234 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, was reluctant to comment on, such speculation) -> such speculation (10104ms) When was Microsoft established? slow machines -5.8375569483831224 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be design on, $x) -> (Microsoft software, was designed to run on, slow machines) -> slow machines (10104ms) When was Microsoft established? Office -5.838239382153892 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be incorporate in, $x) -> (Microsoft Excel, was incorporated in, Office) -> Office (7988ms) When was Microsoft established? such rumors -5.839925287216333 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, is reluctant to comment on, such rumors) -> such rumors (10104ms) When was Microsoft established? San Francisco -5.842017486491628 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft Bootcamp, is coming to, San Francisco) -> San Francisco (11699ms) When was Microsoft established? San Diego -5.842017486491628 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft Bootcamp, is coming to, San Diego) -> San Diego (11699ms) When was Microsoft established? Ross Mayfield -5.847180008931463 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (kneejerk anti-Microsoft stuff, found in, Ross Mayfield) -> Ross Mayfield (7988ms) When was Microsoft established? WGA notification -5.850467204114181 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be start on, $x) -> (Microsoft, would be starting on, WGA notification) -> WGA notification (11699ms) When was Microsoft established? the Xbox Live service -5.852951027146751 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, is decided to capitalize on, the Xbox Live service) -> the Xbox Live service (10157ms) When was Microsoft established? Freehold Raceway Mall -5.857048813417155 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, is coming to, Freehold Raceway Mall) -> Freehold Raceway Mall (11699ms) When was Microsoft established? bloated and stodgy -5.861732348312884 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, has come to be seen as, bloated and stodgy) -> bloated and stodgy (11787ms) When was Microsoft established? any computer -5.870932828420202 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, is easy to install on, any computer) -> any computer (10157ms) When was Microsoft established? RIM?s patent portfolio -5.873383746585022 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, could find value in, RIM?s patent portfolio) -> RIM?s patent portfolio (8005ms) When was Microsoft established? Symantec IM Manager -5.8820997787778895 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft Lync, was coming to, Symantec IM Manager) -> Symantec IM Manager (11787ms) When was Microsoft established? smartphone marketplace -5.882491977868597 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, was slow to capitalize on, smartphone marketplace) -> smartphone marketplace (10157ms) When was Microsoft established? a crest -5.884260403373085 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft Outlook/Interwoven Mailsite, is coming to, a crest) -> a crest (11787ms) When was Microsoft established? www .sugarexchange -5.889440358105281 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft Outlook, can be found on, www .sugarexchange) -> www .sugarexchange (9164ms) When was Microsoft established? performance , stability and -5.8911358203591995 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft Windows XP, is comes to, performance , stability and) -> performance , stability and (11877ms) When was Microsoft established? previous success -5.893102372788641 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, are continuing to build on, previous success) -> previous success (10157ms) When was Microsoft established? access -5.895953542088353 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be start on, $x) -> (microsoft, was just starting work on, access) -> access (11877ms) When was Microsoft established? a few more lovers -5.896897963308403 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft, is counting on finding, a few more lovers) -> a few more lovers (9164ms) When was Microsoft established? a settlement spree -5.898407543897515 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, seems to be on, a settlement spree) -> a settlement spree (10228ms) When was Microsoft established? criteria -5.898441384216532 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be choose on, $x) -> (Microsoft Managed ISV Partners, are chosen based on, criteria) -> criteria (9165ms) When was Microsoft established? a dime -5.907184945185815 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, was able to turn on, a dime) -> a dime (10233ms) When was Microsoft established? a Windows computer -5.911308219371325 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be create on, $x) -> (Microsoft Word documents, were created on, a Windows computer) -> a Windows computer (10228ms) When was Microsoft established? a project -5.914815097236822 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, appears to be working on, a project) -> a project (10228ms) When was Microsoft established? Albuquerque -5.919247596335628 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be form in, $x) -> (Micro-Soft, had been formed in, Albuquerque) -> Albuquerque (8006ms) When was Microsoft established? a copy-cat version -5.924635642404139 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, was sure to come up with, a copy-cat version) -> a copy-cat version (11877ms) When was Microsoft established? state -5.925994415082532 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, found in, state) -> state (8226ms) When was Microsoft established? America -5.928195289292132 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be create in, $x) -> (the next Microsoft, is created in, America) -> America (8226ms) When was Microsoft established? a recruiting trip -5.94615424198427 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be here on, $x) -> (( Microsoft, was here on, a recruiting trip) -> a recruiting trip (10228ms) When was Microsoft established? the 'coat-tails -5.950575226692047 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, were able to ride on, the 'coat-tails) -> the 'coat-tails (12271ms) When was Microsoft established? a Windows-based -5.950734283387743 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, is expected to come out with, a Windows-based) -> a Windows-based (12270ms) When was Microsoft established? the Microsoft website -5.963838180815381 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (the Microsoft Surface, can be found on, the Microsoft website) -> the Microsoft website (9165ms) When was Microsoft established? a hacking website -5.965701042186014 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft software, has been found on, a hacking website) -> a hacking website (9165ms) When was Microsoft established? Allaire -5.967968206967999 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be acquire in, $x) -> (Microsoft, was once interested in acquiring, Allaire) -> Allaire (8226ms) When was Microsoft established? an unfinished specification -5.974448575735424 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be implement on, $x) -> (Microsoft, is implementing this on, an unfinished specification) -> an unfinished specification (12271ms) When was Microsoft established? a very generous foot -5.976471339905693 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be start on, $x) -> (Microsoft, are starting the year off on, a very generous foot) -> a very generous foot (12271ms) When was Microsoft established? Google?s turf -5.977920753212556 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, is trying to compete on, Google?s turf) -> Google?s turf (12297ms) When was Microsoft established? a new fresh take -5.980497590003554 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, was able to come up with, a new fresh take) -> a new fresh take (12297ms) When was Microsoft established? server OS licensing -5.981780911859573 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to be on, $x) -> (Microsoft, manages to be flexible on, server OS licensing) -> server OS licensing (12297ms) When was Microsoft established? release standards -5.984994349825918 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (The Microsoft reader, is found on, release standards) -> release standards (9205ms) When was Microsoft established? the MVP website -5.985153406521613 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (a Microsoft MVP, can be found on, the MVP website) -> the MVP website (9233ms) When was Microsoft established? a solution -5.985217974648869 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (Microsoft, was challenged to come up with, a solution) -> a solution (12296ms) When was Microsoft established? Apple ideas -6.000249354276691 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, have be steal, $x) -> (Microsoft, has long been accused of stealing, Apple ideas) -> Apple ideas (9233ms) When was Microsoft established? place -6.001601555187481 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, have operation in, $x) -> (Microsoft, has massive operations in, place) -> place (8243ms) When was Microsoft established? VersusSport.com -6.009816453397647 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft Tag, can also be found on, VersusSport.com) -> VersusSport.com (9233ms) When was Microsoft established? the Mall -6.024122703320068 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be to come to, $x) -> (A Microsoft retail store, is coming to, the Mall) -> the Mall (12296ms) When was Microsoft established? the Springer site -6.0325077535975895 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft Word etc, can be found on, the Springer site) -> the Springer site (9233ms) When was Microsoft established? every field -6.035847640207278 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, expand in, $x) -> (Microsoft, has expanded its operations in nearly, every field) -> every field (8243ms) When was Microsoft established? the MS AntiSpyware application -6.037779957153527 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft Research, found in, the MS AntiSpyware application) -> the MS AntiSpyware application (8264ms) When was Microsoft established? the Microsoft Web site -6.061259006486779 When was Microsoft established? -> $x: (Microsoft, was established on, $x) -> $x: (Microsoft, be found on, $x) -> (Microsoft Press, can be found on, the Microsoft Web site) -> the Microsoft Web site (9233ms) When was Microsoft established? Metro -6.068079839430949 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be create in, $x) -> (a former Microsoft designer, was involved in creating, Metro) -> Metro (8264ms) When was Microsoft established? the fall -6.091919942756567 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft, will be launched worldwide in, the fall) -> the fall (8281ms) When was Microsoft established? server software -6.123139475974172 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, finds flaw in, server software) -> server software (8280ms) When was Microsoft established? various work fields -6.126506797611722 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft access, finds great easy use in, various work fields) -> various work fields (8281ms) When was Microsoft established? a promising collaboration -6.130113767539323 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, finds solace in, a promising collaboration) -> a promising collaboration (8297ms) When was Microsoft established? Massachusetts -6.2157321232655836 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, expand in, $x) -> (Microsoft, will expand its presence in, Massachusetts) -> Massachusetts (8298ms) When was Microsoft established? the TechEd office meeting -6.227280543393061 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, go public in, $x) -> (Microsoft, went public recently in, the TechEd office meeting) -> the TechEd office meeting (8297ms) When was Microsoft established? Windows Installer -6.22932429871501 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, found in, Windows Installer) -> Windows Installer (8313ms) When was Microsoft established? now -6.278568122482543 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be open in, $x) -> (Microsoft developers, are in open rebellion, now) -> now (8313ms) When was Microsoft established? System Tools -6.313676459696275 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (The Microsoft Backup utility, can be found in, System Tools) -> System Tools (8313ms) When was Microsoft established? a position -6.411770432256565 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft, is finding itself in, a position) -> a position (8329ms) When was Microsoft established? the late 1990s -6.63673930232348 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, found out in, the late 1990s) -> the late 1990s (8483ms) When was Microsoft established? a special diagnostic mode -6.656061731679786 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be start in, $x) -> (Microsoft Windows, can be started in, a special diagnostic mode) -> a special diagnostic mode (8483ms) When was Microsoft established? the New York metro area -6.667163507022316 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be open in, $x) -> (Microsoft, is opening two stores in, the New York metro area) -> the New York metro area (8482ms) When was Microsoft established? the TechEd conference -6.68101357375674 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, go public in, $x) -> ('microsoft ', went public recently in, the TechEd conference) -> the TechEd conference (8482ms) When was Microsoft established? the race -6.730291871481285 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (glasses Microsoft, is also launching in, the race) -> the race (8498ms) When was Microsoft established? the city -6.780005499764361 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft, can be found in, the city) -> the city (8498ms) When was Microsoft established? the newer versions -6.80380979545211 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be open in, $x) -> (Microsoft office files, cannot be opened in, the newer versions) -> the newer versions (8498ms) When was Microsoft established? the caves -6.828437826858083 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft FS, has been found in, the caves) -> the caves (8498ms) When was Microsoft established? the possession -6.886109238155619 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft software, were found in, the possession) -> the possession (8514ms) When was Microsoft established? the download -6.923965010648315 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft Word OpenOffice, can be found in, the download) -> the download (8514ms) When was Microsoft established? the products side -6.9574445833324905 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (microsoft, establish in, $x) -> (Microsoft, has completely established in, the products side) -> the products side (8514ms) When was Microsoft established? the next ten years -6.9691843132061635 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be create in, $x) -> (Microsoft, will be created in, the next ten years) -> the next ten years (8514ms) When was Microsoft established? the same sense -6.992014419152749 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be close in, $x) -> (microsoft, is n?t closed in, the same sense) -> the same sense (8530ms) When was Microsoft established? the right approach -6.9975137151296725 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft, are taking a lead in finding, the right approach) -> the right approach (8530ms) When was Microsoft established? the middle -7.00376779268697 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be start in, $x) -> (Hewlett Packard and Microsoft, were started in, the middle) -> the middle (8530ms) When was Microsoft established? Boulder -7.01787963214827 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, expand in, $x) -> (Microsoft, expanded its operations in, Boulder) -> Boulder (8530ms) When was Microsoft established? the edit menu -7.026657167109571 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (Microsoft Explorer, can be found in, the edit menu) -> the edit menu (8587ms) When was Microsoft established? the final analysi -7.027968673476025 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (microsoft office product key, was launched in, the final analysi) -> the final analysi (8587ms) When was Microsoft established? the stock market -7.054951500860725 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be start in, $x) -> (Microsoft, is starting a process in, the stock market) -> the stock market (8587ms) When was Microsoft established? the second half -7.0925150712904985 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be launch in, $x) -> (Microsoft Expression Web, will be launched in, the second half) -> the second half (8660ms) When was Microsoft established? Verizon -7.093820928468793 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, finds an ally in, Verizon) -> Verizon (8660ms) When was Microsoft established? the upper left corner -7.1597141337128525 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be found in, $x) -> (The Microsoft Office Button, is found in, the upper left corner) -> the upper left corner (8660ms) When was Microsoft established? Redmond -7.224826441973464 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, have its headquarters in, $x) -> (Microsoft, has its headquarters in, Redmond) -> Redmond (8660ms) When was Microsoft established? the window -7.388617572648799 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be create in, $x) -> (the Microsoft?s strategy, is created in, the window) -> the window (8675ms) When was Microsoft established? the internet market -7.526417703349716 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, be create in, $x) -> (Microsoft?s Bing, is creating a buzz in, the internet market) -> the internet market (8689ms) When was Microsoft established? a rather interesting position -7.532298179596973 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, finds itself in, a rather interesting position) -> a rather interesting position (8689ms) When was Microsoft established? a bid -7.564785038486889 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, expand in, $x) -> (Microsoft, to expand its Trustworthy Computing in, a bid) -> a bid (8703ms) When was Microsoft established? the future world -7.709699036648879 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft DRM, finds a hospitable home in, the future world) -> the future world (8703ms) When was Microsoft established? the years -7.711994400992252 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, expand over, $x) -> (Microsoft Research, has expanded over, the years) -> the years (8703ms) When was Microsoft established? the new age -7.826260640771348 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, find its path in, the new age) -> the new age (8718ms) When was Microsoft established? the next month -7.979882617680344 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, close in, $x) -> (Microsoft, expects the deal to close in, the next month) -> the next month (8717ms) When was Microsoft established? the relationship -7.99683127498038 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, found its future in, the relationship) -> the relationship (8717ms) When was Microsoft established? the enterprise -8.009289597401612 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (many Microsoft applications, found standard in, the enterprise) -> the enterprise (8718ms) When was Microsoft established? the post-Windows world -8.027729051284483 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, will find its place in, the post-Windows world) -> the post-Windows world (8732ms) When was Microsoft established? the buisness sector -8.074491774750461 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, has found a market in, the buisness sector) -> the buisness sector (8732ms) When was Microsoft established? the second quarter -8.076260147552654 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, close in, $x) -> (Microsoft, expects the deal to close in, the second quarter) -> the second quarter (8732ms) When was Microsoft established? the new Outlook Web App -8.112590997567368 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, incorporate in, $x) -> (A.? Microsoft, has incorporated in, the new Outlook Web App) -> the new Outlook Web App (8732ms) When was Microsoft established? the same position -9.327316137911197 When was Microsoft established? -> $x: (Microsoft, was established in, $x) -> $x: (Microsoft, found in, $x) -> (Microsoft, finds itself in, the same position) -> the same position (8746ms) Where was Shakespeare born? Italy -3.1340132230169333 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, Italy) -> Italy (7380ms) Where was Shakespeare born? England -3.202588406448478 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, England) -> England (7379ms) Where was Shakespeare born? Worcester -3.390616684269352 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Nicholas Shakespeare, was born in, Worcester) -> Worcester (7379ms) Where was Shakespeare born? Stratford -3.8193473462424 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, Stratford) -> Stratford (7379ms) Where was Shakespeare born? Kingston -4.1295389176559265 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Robbie Shakespeare, were both born in, Kingston) -> Kingston (7443ms) Where was Shakespeare born? April -4.16907766590016 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, April) -> April (7443ms) Where was Shakespeare born? Stratford-upon-Avon -4.187201889738574 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, Stratford-upon-Avon) -> Stratford-upon-Avon (7443ms) Where was Shakespeare born? Jackson -4.256698676109865 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare scholar Bruce R. Smith, was born in, Jackson) -> Jackson (7458ms) Where was Shakespeare born? Henley Street -4.593510231838309 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, Henley Street) -> Henley Street (7457ms) Where was Shakespeare born? Teaneck -4.673035209695007 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, had been born in, Teaneck) -> Teaneck (7474ms) Where was Shakespeare born? St . Austell -4.7992841505728165 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare scholar and authority, was born in, St . Austell) -> St . Austell (7474ms) Where was Shakespeare born? Stratford-on-Avon -4.907570716029436 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, Stratford-on-Avon) -> Stratford-on-Avon (7474ms) Where was Shakespeare born? a small town -4.9213887486114345 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, a small town) -> a small town (7474ms) Where was Shakespeare born? the Warwickshire town -5.192146907395033 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Will Shakespeare, was born in, the Warwickshire town) -> the Warwickshire town (7487ms) Where was Shakespeare born? Stratford and today -5.215136070037314 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, Stratford and today) -> Stratford and today (7487ms) Where was Shakespeare born? Latin -5.845406190924455 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, educate in, $x) -> (Shakespeare, was better educated in, Latin) -> Latin (8708ms) Where was Shakespeare born? April and World book day -6.025712404096037 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, April and World book day) -> April and World book day (7500ms) Where was Shakespeare born? Project Gutenberg -6.315404799280729 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, be originally from, $x) -> (Shakespeare, were originally drawn from, Project Gutenberg) -> Project Gutenberg (8918ms) Where was Shakespeare born? the town -6.378249621932209 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, the town) -> the town (7500ms) Where was Shakespeare born? the year -6.827586825605374 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, the year) -> the year (7500ms) Where was Shakespeare born? Thailand -6.850310838323594 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, be be kill in, $x) -> (Shakespeare, has been killed in, Thailand) -> Thailand (9735ms) Where was Shakespeare born? Avon -6.858865325703308 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: ($x, be the birthplace of, Shakespeare) -> (Avon, was the birthplace of, William Shakespeare) -> Avon (8763ms) Where was Shakespeare born? the village -6.862954755969891 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, the village) -> the village (7500ms) Where was Shakespeare born? the latter half -6.998613785352715 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (scotland Shakespeare, was born in, the latter half) -> the latter half (7500ms) Where was Shakespeare born? the depths -7.002474357430202 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, the depths) -> the depths (7500ms) Where was Shakespeare born? Stratford upon Avon -7.027510380533754 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: ($x, be the birthplace of, Shakespeare) -> (Stratford upon Avon, is the birthplace of, Shakespeare) -> Stratford upon Avon (8994ms) Where was Shakespeare born? thirty-five years -7.373368065253245 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, be bear about, $x) -> (the Shakespeare, was born about, thirty-five years) -> thirty-five years (9048ms) Where was Shakespeare born? April 1564 -7.475768974445508 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, April 1564) -> April 1564 (7556ms) Where was Shakespeare born? April , 1564 -7.593915853699872 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, April , 1564) -> April , 1564 (7556ms) Where was Shakespeare born? late April 1564 -7.6332466217807955 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Biography William Shakespeare, was born in, late April 1564) -> late April 1564 (7556ms) Where was Shakespeare born? Vancouver -7.650376065869472 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, to travel to, $x) -> (a Shakespeare fix, were forced to travel to, Vancouver) -> Vancouver (10338ms) Where was Shakespeare born? Australia -7.763688070072128 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, to travel to, $x) -> ('s Royal Shakespeare Company, will travel to, Australia) -> Australia (10338ms) Where was Shakespeare born? the county of Warwick -7.842791809989508 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (William Shakespeare, was born in, the county of Warwick) -> the county of Warwick (7630ms) Where was Shakespeare born? 1564 -7.8660855227106445 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, 1564) -> 1564 (7630ms) Where was Shakespeare born? 1554 -7.980506543786145 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Shakespeare, was born in, 1554) -> 1554 (7630ms) Where was Shakespeare born? the English language -8.011937904054435 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, educate in, $x) -> (Shakespeare, was highly educated in, the English language) -> the English language (8709ms) Where was Shakespeare born? Temple Grafton church -8.05519899660386 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, marry in, $x) -> (William Shakespeare, was married in, Temple Grafton church) -> Temple Grafton church (8709ms) Where was Shakespeare born? a time -8.095385944864809 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, be bear at, $x) -> (Shakespeare, was born at, a time) -> a time (9251ms) Where was Shakespeare born? 1529 -8.196501471692429 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (John Shakespeare, was born in, 1529) -> 1529 (7644ms) Where was Shakespeare born? the same year -8.488673499519965 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> (Galileo and Shakespeare, were born in, the same year) -> the same year (7657ms) Where was Shakespeare born? the start -8.558323415165646 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, be bear at, $x) -> (William Shakespeare, was born at, the start) -> the start (9251ms) Where was Shakespeare born? a gang-related shooting -8.558935709054095 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, be be kill in, $x) -> (Letisha Shakespeare, was killed in, a gang-related shooting) -> a gang-related shooting (9736ms) Where was Shakespeare born? The town -8.792808259812714 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: ($x, be the birthplace of, Shakespeare) -> (The town, is the birthplace of, William Shakespeare) -> The town (9251ms) Where was Shakespeare born? Names -8.79387851852314 Where was Shakespeare born? -> where be [ shakespeare bear ] ? -> what be shakespeare bear s location ? -> $x: (shakespeare bear, location, $x) -> $x: (shakespeare bear, subject, $x) -> (In real life, unlike in Shakespeare, the sweetness of the rose depends upon the name it bears. Things are not only what they are. They are, in very important respects, what they seem to be., Subjects, Names) -> Names (11124ms) Where was Shakespeare born? unser Shakespeare -8.802198007691759 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, have be come to, $x) -> (Shakespeare, has come to be known as, unser Shakespeare) -> unser Shakespeare (9558ms) Where was Shakespeare born? What town -8.862167155271013 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: ($x, be the birthplace of, Shakespeare) -> (What town, was the birthplace of, William Shakespeare) -> What town (9302ms) Where was Shakespeare born? the editors -9.095961344735237 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, be away in, $x) -> (Shakespeare, was given away in, the editors) -> the editors (8607ms) Where was Shakespeare born? the work -9.175539122177533 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, be reborn in, $x) -> (Shakespeare, is truly reborn in, the work) -> the work (8607ms) Where was Shakespeare born? a fight -9.18926016902251 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, be be kill in, $x) -> (Shakespeare, was killed in, a fight) -> a fight (9735ms) Where was Shakespeare born? a Taurean sun -9.31248123878847 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, bear under, $x) -> (William Shakespeare, were also born under, a Taurean sun) -> a Taurean sun (10006ms) Where was Shakespeare born? the art -9.789157783837668 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, educate in, $x) -> (Shakespeare, was well educated in, the art) -> the art (8708ms) Where was Shakespeare born? the law -9.79760750146022 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, educate in, $x) -> (Shakespeare, was clearly educated in, the law) -> the law (8709ms) Where was Shakespeare born? music -9.859463453447098 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, have ever be to, $x) -> (No Shakespeare sonnet, has ever been successfully put to, music) -> music (10339ms) Where was Shakespeare born? a world -9.979862366273121 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, bear into, $x) -> (William Shakespeare, was born into, a world) -> a world (9931ms) Where was Shakespeare born? film -10.242945070685238 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, to migrate to, $x) -> (Shakespeare, migrated to, film) -> film (10051ms) Where was Shakespeare born? schools -10.271173631252385 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> $x: (shakespeare, to travel to, $x) -> (Shakespeare & Company actor/teachers, travel to, schools) -> schools (10338ms) Where was Shakespeare born? 1564 ! 2 -10.96902333196757 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> (Happy birthday William Shakespeare, born in, 1564 ! 2) -> 1564 ! 2 (8466ms) Where was Shakespeare born? 1564 ! 1 hour ago -11.163152600043555 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> (Happy birthday William Shakespeare, born in, 1564 ! 1 hour ago) -> 1564 ! 1 hour ago (8479ms) Where was Shakespeare born? 1564 ! 5 hours ago -11.183553718907506 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> (Happy birthday William Shakespeare, born in, 1564 ! 5 hours ago) -> 1564 ! 5 hours ago (8479ms) Where was Shakespeare born? 1564 ! 3 hours ago -11.183553718907506 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (shakespeare, bear in, $x) -> (Happy birthday William Shakespeare, born in, 1564 ! 3 hours ago) -> 1564 ! 3 hours ago (8479ms) Where was Shakespeare born? 1582 -11.400243576359621 Where was Shakespeare born? -> $x: (Shakespeare, was born in, $x) -> $x: (Shakespeare, marry in, $x) -> (Shakespeare, married her in, 1582) -> 1582 (9559ms) Where was Shakespeare born? Mormon -11.495536588257634 Where was Shakespeare born? -> where [ be shakespeare bear ] ? -> what get be shakespeare bear ? -> $x: ($x, get be, shakespeare bear) -> $x: ($x, be, shakespeare bear) -> (Mormon, was writing before, Shakespeare was born) -> Mormon (13791ms) Where was Shakespeare born? Beowulf -11.524132062921698 Where was Shakespeare born? -> where [ be shakespeare bear ] ? -> what get be shakespeare bear ? -> $x: ($x, get be, shakespeare bear) -> $x: ($x, be, shakespeare bear) -> (Beowulf, was written before, Shakespeare was born) -> Beowulf (13792ms) Where was Shakespeare born? 1585-02-02 -12.496113682108337 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Hamnet Shakespeare, Date of birth, 1585-02-02) -> 1585-02-02 (10998ms) Where was Shakespeare born? 1893-08-24 -12.496113682108337 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (William Shakespeare, Date of birth, 1893-08-24) -> 1893-08-24 (11022ms) Where was Shakespeare born? 1909-07-25 -12.496113682108337 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Heather Shakespeare, Date of birth, 1909-07-25) -> 1909-07-25 (10846ms) Where was Shakespeare born? 1571-09-28 -12.496113682108337 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Anne Shakespeare, Date of birth, 1571-09-28) -> 1571-09-28 (10862ms) Where was Shakespeare born? 1925-04-09 -12.496113682108337 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Frank Shakespeare, Date of birth, 1925-04-09) -> 1925-04-09 (10823ms) Where was Shakespeare born? 1569-04-15 -12.496113682108337 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Joan Shakespeare, Date of birth, 1569-04-15) -> 1569-04-15 (10998ms) Where was Shakespeare born? 1906-02-28 -12.496113682108337 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Percy Shakespeare, Date of birth, 1906-02-28) -> 1906-02-28 (10998ms) Where was Shakespeare born? 1616-11-23 -12.496113682108337 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Shakespeare Quiney, Date of birth, 1616-11-23) -> 1616-11-23 (10823ms) Where was Shakespeare born? 1558-09-15 -12.496113682108337 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Joan Shakespeare, Date of birth, 1558-09-15) -> 1558-09-15 (10823ms) Where was Shakespeare born? 1950-04-25 -12.496113682108337 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Malcolm Shakespeare, Date of birth, 1950-04-25) -> 1950-04-25 (10861ms) Where was Shakespeare born? 1574-03-11 -12.496113682108337 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Richard Shakespeare, Date of birth, 1574-03-11) -> 1574-03-11 (10846ms) Where was Shakespeare born? 1966-05-11 -12.496113682108337 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Tom Shakespeare, Date of birth, 1966-05-11) -> 1966-05-11 (11022ms) Where was Shakespeare born? 1562-12-02 -12.496113682108337 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Margaret Shakespeare, Date of birth, 1562-12-02) -> 1562-12-02 (10823ms) Where was Shakespeare born? 1953-09-27 -12.496113682108337 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Robbie Shakespeare, Date of birth, 1953-09-27) -> 1953-09-27 (11022ms) Where was Shakespeare born? 1957-03-03 -12.496113682108337 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Nicholas Shakespeare, Date of birth, 1957-03-03) -> 1957-03-03 (10845ms) Where was Shakespeare born? 1841-02-26 -12.496113682108337 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Shakespeare Hirst, Date of birth, 1841-02-26) -> 1841-02-26 (10846ms) Where was Shakespeare born? 1966-04-23 -12.496113682108337 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Abraham Shakespeare, Date of birth, 1966-04-23) -> 1966-04-23 (10998ms) Where was Shakespeare born? 1580-05-03 -12.496113682108337 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Edmund Shakespeare, Date of birth, 1580-05-03) -> 1580-05-03 (10863ms) Where was Shakespeare born? 1912-09-27 -12.496113682108337 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (William Shakespeare, Date of birth, 1912-09-27) -> 1912-09-27 (11022ms) Where was Shakespeare born? 1977-05-06 -12.496113682108337 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Shannon Shakespeare, Date of birth, 1977-05-06) -> 1977-05-06 (10863ms) Where was Shakespeare born? 1839-01-26 -12.496113682108337 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Noah Shakespeare, Date of birth, 1839-01-26) -> 1839-01-26 (10998ms) Where was Shakespeare born? 1897-09-27 -12.496113682108337 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Arthur Shakespeare, Date of birth, 1897-09-27) -> 1897-09-27 (10823ms) Where was Shakespeare born? 1949-06-03 -12.496113682108337 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Clive Shakespeare, Date of birth, 1949-06-03) -> 1949-06-03 (10998ms) Where was Shakespeare born? 1952-07-19 -12.496113682108337 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Ivan Shakespeare, Date of birth, 1952-07-19) -> 1952-07-19 (10861ms) Where was Shakespeare born? 1957-04-09 -12.496113682108337 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Stephan Shakespeare, Date of birth, 1957-04-09) -> 1957-04-09 (10823ms) Where was Shakespeare born? 1566-10-13 -12.496113682108337 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Gilbert Shakespeare, Date of birth, 1566-10-13) -> 1566-10-13 (11022ms) Where was Shakespeare born? 1849-06-16 -12.496113682108337 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (William Shakespeare, Date of birth, 1849-06-16) -> 1849-06-16 (10846ms) Where was Shakespeare born? 1930-05-31 -12.496113682108337 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Frank Shakespeare, Date of birth, 1930-05-31) -> 1930-05-31 (10846ms) Where was Shakespeare born? 1564-04-23 -12.496113682108337 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (William Shakespeare, Date of birth, 1564-04-23) -> 1564-04-23 (10861ms) Where was Shakespeare born? 1963-10-26 -12.496113682108337 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Craig Shakespeare, Date of birth, 1963-10-26) -> 1963-10-26 (11022ms) Where was Shakespeare born? 1837-07-19 -12.543761075146879 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (William Shakespeare Hays, Date of birth, 1837-07-19) -> 1837-07-19 (11039ms) Where was Shakespeare born? 1825-12-25 -12.543761075146879 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (William Shakespeare Hall, Date of birth, 1825-12-25) -> 1825-12-25 (11039ms) Where was Shakespeare born? 1824-06-01 -12.543761075146879 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (William Shakespeare Burton, Date of birth, 1824-06-01) -> 1824-06-01 (11039ms) Where was Shakespeare born? 1853-05-07 -12.582745305814779 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Arthur Henry Shakespeare Lucas, Date of birth, 1853-05-07) -> 1853-05-07 (11039ms) Where was Shakespeare born? Eternity -12.79652535888662 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> which state produce shakespeare ? -> $x: ($x, instance of, state) ($x, produce, shakespeare) -> (Eternity, Instance Of, state) (eternity, produce the complete works of, Shakespeare) -> Eternity (13792ms) Where was Shakespeare born? 1893-09-23 -12.972587612493768 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Sir Geoffrey Shakespeare, 1st Baronet, Date of birth, 1893-09-23) -> 1893-09-23 (11039ms) Where was Shakespeare born? Charm -13.00377498709717 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> which state produce shakespeare ? -> $x: ($x, instance of, state) ($x, produce, shakespeare) -> (Charm, Instance Of, state of spirit) (CHARM, will be produced at, Orlando Shakespeare) -> Charm (13861ms) Where was Shakespeare born? Random -13.011574227175435 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> which state produce shakespeare ? -> $x: ($x, instance of, state) ($x, produce, shakespeare) -> (Random, Instance Of, state) (random, could eventually produce the works of, Shakespeare) -> Random (13861ms) Where was Shakespeare born? Charmed -13.038636686886406 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> which state produce shakespeare ? -> $x: ($x, instance of, state) ($x, produce, shakespeare) -> (Charmed, Instance Of, state) (CHARM, will be produced at, Orlando Shakespeare) -> Charmed (13861ms) Where was Shakespeare born? Pope -13.11102726407436 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> which state produce shakespeare ? -> $x: ($x, instance of, state) ($x, produce, shakespeare) -> (Pope, Instance Of, head of state) (Pope, produced an errant edition of, William Shakespeare) -> Pope (13901ms) Where was Shakespeare born? 1531 -13.29326800534803 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (John Shakespeare, Date of birth, 1531) -> 1531 (11072ms) Where was Shakespeare born? 1600 -13.29326800534803 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (William Shakespeare, Date of birth, 1600) -> 1600 (11039ms) Where was Shakespeare born? 1537 -13.29326800534803 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Mary Shakespeare, Date of birth, 1537) -> 1537 (11057ms) Where was Shakespeare born? 1603 -13.29326800534803 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Mary Shakespeare, Date of birth, 1603) -> 1603 (11057ms) Where was Shakespeare born? 1608 -13.29326800534803 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Michael Shakespeare, Date of birth, 1608) -> 1608 (11072ms) Where was Shakespeare born? 1985 -13.29326800534803 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Letisha Shakespeare, Date of birth, 1985) -> 1985 (11072ms) Where was Shakespeare born? 1968 -13.29326800534803 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Steven Shakespeare, Date of birth, 1968) -> 1968 (11072ms) Where was Shakespeare born? 1605 -13.29326800534803 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Thomas Shakespeare, Date of birth, 1605) -> 1605 (11057ms) Where was Shakespeare born? 1869 -13.29326800534803 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (William Shakespeare, Date of birth, 1869) -> 1869 (11071ms) Where was Shakespeare born? 1950 -13.29326800534803 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (William Shakespeare, Date of birth, 1950) -> 1950 (11057ms) Where was Shakespeare born? 1490 -13.29326800534803 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Richard Shakespeare, Date of birth, 1490) -> 1490 (11057ms) Where was Shakespeare born? 1948 -13.29326800534803 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (Pam Shakespeare, Date of birth, 1948) -> 1948 (11057ms) Where was Shakespeare born? Fire -13.2991076112617 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> which state produce shakespeare ? -> $x: ($x, instance of, state) ($x, produce, shakespeare) -> (Fire, Instance Of, state subject) (Fire, produces, free outdoor Shakespeare) -> Fire (13901ms) Where was Shakespeare born? 1826 -13.340915398386574 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (William Shakespeare Burton, Date of birth, 1826) -> 1826 (11072ms) Where was Shakespeare born? Papp -13.409533518013735 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> which state produce shakespeare ? -> $x: ($x, instance of, state) ($x, produce, shakespeare) -> (Papp, Instance Of, 1975 graduate of the United States Coast Guard Academy) (Papp, produced musical versions of, William Shakespeare) -> Papp (13901ms) Where was Shakespeare born? 1927 -13.769741935733462 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> what be the birthdate of shakespeare ? -> $x: (shakespeare, birthdate, $x) -> $x: (shakespeare, date of birth, $x) -> (William Geoffrey Shakespeare, 2nd Baronet, Date of birth, 1927) -> 1927 (11088ms) Where was Shakespeare born? golden monkey -14.087058539691023 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> which state produce shakespeare ? -> $x: ($x, instance of, state) ($x, produce, shakespeare) -> (golden monkey, Instance Of, state protected animal) (one monkey, could produce the complete works of, shakespeare) -> golden monkey (13952ms) Where was Shakespeare born? SRTS -14.140068366423712 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> which state produce shakespeare ? -> $x: ($x, instance of, state) ($x, produce, shakespeare) -> (SRTS, Instance Of, federal, state) (SRT, also produces, the ' Shakespeare) -> SRTS (13952ms) Where was Shakespeare born? SRT -14.23274548404028 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> which state produce shakespeare ? -> $x: ($x, instance of, state) ($x, produce, shakespeare) -> (SRT, Instance Of, emergency response group of pre-designated State agency) (SRT, also produces, the ' Shakespeare) -> SRT (13951ms) Where was Shakespeare born? typewriter -14.54373929571994 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> which state produce shakespeare ? -> $x: ($x, instance of, state) ($x, produce, shakespeare) -> (typewriter, Instance Of, state property) (typewriters, could produce the works of, Shakespeare) -> typewriter (13987ms) Where was Shakespeare born? fire -14.650921382304574 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> which state produce shakespeare ? -> $x: ($x, instance of, state) ($x, produce, shakespeare) -> (fire, Instance Of, state service) (Fire, produces, free outdoor Shakespeare) -> fire (13987ms) Where was Shakespeare born? keyboard -14.68059174600807 Where was Shakespeare born? -> where be [ shakespeare ] bear ? -> which state produce shakespeare ? -> $x: ($x, instance of, state) ($x, produce, shakespeare) -> (keyboard, Instance Of, state accessory) (keyboards, would produce the works of, Shakespeare) -> keyboard (13987ms) How many people visit Angkor Wat annually? Vietnam -5.780650374512806 How many people visit Angkor Wat annually? -> How many people visit Angkor Wat ? -> $x: ($x, instance of, people) ($x, visit, Angkor Wat) -> (Vietnam, Instance Of, nation of many peoples and religion) (Vietnam, visit, Angkor Wat) -> Vietnam (5786ms) How many people visit Angkor Wat annually? Cambodia -5.834855679078596 How many people visit Angkor Wat annually? -> How many people visit Angkor Wat ? -> $x: ($x, instance of, people) ($x, visit, Angkor Wat) -> (Cambodia, Instance Of, peoples culture) (Cambodia, will be visiting, Angkor Wat) -> Cambodia (5786ms) How many people visit Angkor Wat annually? course -7.0343797185780605 How many people visit Angkor Wat annually? -> How many people visit Angkor Wat ? -> $x: ($x, instance of, people) ($x, visit, Angkor Wat) -> $x: ($x, be a by, people) ($x, visit, Angkor Wat) -> (course, is a common thought by, many people) (course, visit, Angkor Wat) -> course (13594ms) How many people visit Angkor Wat annually? you?ll -7.604860081964796 How many people visit Angkor Wat annually? -> How many people visit Angkor Wat ? -> $x: ($x, instance of, people) ($x, visit, Angkor Wat) -> $x: ($x, modelling, people) ($x, visit, Angkor Wat) -> (you?ll, have to model, successful people) (You?ll, visit, the marvelous Angkor Wat) -> you?ll (16634ms) How many people visit Angkor Wat annually? guests -7.809406208432081 How many people visit Angkor Wat annually? -> How many people visit Angkor Wat ? -> $x: ($x, instance of, people) ($x, visit, Angkor Wat) -> $x: ($x, be the type of, people) ($x, visit, Angkor Wat) -> (guests, are the only type of, people) (Guests, will also visit, the impressive Angkor Wat) -> guests (12910ms) How many people visit Angkor Wat annually? the course -9.217531695680382 How many people visit Angkor Wat annually? -> How many people visit Angkor Wat ? -> $x: ($x, instance of, people) ($x, visit, Angkor Wat) -> $x: (people, drug, $x) ($x, visit, Angkor Wat) -> (people, take the drug over, the course) (course, visit, Angkor Wat) -> the course (16634ms) How many people visit Angkor Wat annually? The issue -9.970841967386013 How many people visit Angkor Wat annually? -> How many people visit Angkor Wat ? -> $x: ($x, instance of, people) ($x, visit, Angkor Wat) -> $x: ($x, be a by, people) ($x, visit, Angkor Wat) -> (The issue, is a critical one followed closely by, people) (issues, visit, Angkor Wat) -> The issue (13595ms) How many people visit Angkor Wat annually? the other people -10.020724931612417 How many people visit Angkor Wat annually? -> How many people visit Angkor Wat ? -> $x: ($x, instance of, people) ($x, visit, Angkor Wat) -> $x: ($x, be the kind of, people) ($x, visit, Angkor Wat) -> (the other people, there were the kind of, people) (the people, want to visit, Angkor Wat) -> the other people (10539ms) How many people visit Angkor Wat annually? the day -11.254870829194687 How many people visit Angkor Wat annually? -> How many people visit Angkor Wat ? -> $x: ($x, instance of, people) ($x, visit, Angkor Wat) -> $x: (people, drug, $x) ($x, visit, Angkor Wat) -> (Many people, have to take prescription drugs throughout, the day) (the day, was the visit to, Angkor Wat) -> the day (16646ms) What did Rachel Carson die of? breast cancer -2.4955962525566333 What did Rachel Carson die of? -> $x: (Rachel Carson, die of, $x) -> (Rachel Carson, died of, breast cancer) -> breast cancer (2462ms) What did Rachel Carson die of? Breast Cancer -2.7185670394231303 What did Rachel Carson die of? -> $x: (Rachel Carson, die of, $x) -> (?Rachel Carson, Died of, Breast Cancer) -> Breast Cancer (2463ms) What did Rachel Carson die of? cancer -4.518048342433856 What did Rachel Carson die of? -> $x: (Rachel Carson, die of, $x) -> (Rachel Carson, died of, cancer) -> cancer (2463ms) What did Rachel Carson die of? Silver Spring -6.473976869948759 What did Rachel Carson die of? -> what do [ rachel carson ] die of ? -> what do rachel carson die ? -> $x: (rachel carson, die, $x) -> (Rachel Carson, died in, Silver Spring) -> Silver Spring (6119ms) What did Rachel Carson die of? April 14 -7.632256154178657 What did Rachel Carson die of? -> what do [ rachel carson ] die of ? -> what do rachel carson die ? -> $x: (rachel carson, die, $x) -> (breast cancer Rachel Carson, died in, April 14) -> April 14 (6119ms) What did Rachel Carson die of? the public -7.882079871137097 What did Rachel Carson die of? -> $x: (Rachel Carson, die of, $x) -> $x: (Rachel Carson, have already have, $x) -> (Rachel Carson, had already awoken, the public) -> the public (5783ms) What did Rachel Carson die of? April 14 , 1964 -8.418487916863167 What did Rachel Carson die of? -> what do [ rachel carson ] die of ? -> what do rachel carson die ? -> $x: (rachel carson, die, $x) -> (Resistance Rachel Carson, died on, April 14 , 1964) -> April 14 , 1964 (6474ms) What did Rachel Carson die of? 1861 -8.481368742157969 What did Rachel Carson die of? -> what do [ rachel carson ] die of ? -> what do rachel carson die ? -> $x: (rachel carson, die, $x) -> (Rachel Carson Benson, died, 1861) -> 1861 (6474ms) What did Rachel Carson die of? 1964 -8.513666380666901 What did Rachel Carson die of? -> what do [ rachel carson ] die of ? -> what do rachel carson die ? -> $x: (rachel carson, die, $x) -> (Rachel Carson, died in, 1964) -> 1964 (6473ms) What did Rachel Carson die of? 1965 -8.531375800357306 What did Rachel Carson die of? -> what do [ rachel carson ] die of ? -> what do rachel carson die ? -> $x: (rachel carson, die, $x) -> (Rachel Carson, died in, 1965) -> 1965 (6474ms) What did Rachel Carson die of? the peak -8.668147808790621 What did Rachel Carson die of? -> what do [ rachel carson ] die of ? -> what do rachel carson die ? -> $x: (rachel carson, die, $x) -> (Rachel Carson, died at, the peak) -> the peak (6814ms) What did Rachel Carson die of? Breast cancer -10.000525603098245 What did Rachel Carson die of? -> what do [ rachel carson ] die of ? -> what age be rachel carson die ? -> $x: ($x, instance of, age) (rachel carson, die, $x) -> (Breast cancer, Instance Of, disease of ageing) (Rachel Carson, died of, breast cancer) -> Breast cancer (7204ms) What did Rachel Carson die of? the age of 56 -11.010077473916649 What did Rachel Carson die of? -> what do [ rachel carson ] die of ? -> what do rachel carson die ? -> $x: (rachel carson, die, $x) -> (Rachel Carson, died at, the age of 56) -> the age of 56 (7660ms) What did Rachel Carson die of? April 11, 1964 -11.839701893458862 What did Rachel Carson die of? -> what do [ rachel carson ] die of ? -> what date do rachel carson die ? -> $x: ($x, instance of, date) (rachel carson, die, $x) -> (April 11, 1964, Instance Of, date) (Resistance Rachel Carson, died on, April 14 , 1964) -> April 11, 1964 (8111ms) What did Rachel Carson die of? Silver Springs -12.46197137476543 What did Rachel Carson die of? -> what do [ rachel carson die ] of ? -> what city be rachel carson die in ? -> $x: ($x, instance of, city) (rachel carson, die in, $x) -> (Silver Springs, Instance Of, city) (Rachel Carson, died in, Silver Spring) -> Silver Springs (12027ms) What did Rachel Carson die of? Cancer -12.875527796747916 What did Rachel Carson die of? -> what do [ rachel carson ] die of ? -> what age be rachel carson die ? -> $x: ($x, instance of, age) (rachel carson, die, $x) -> $x: ($x, instance of, age) (rachel carson, be die, $x) -> (Cancer, Instance Of, age disease) (Rachel Carson, was dying of, cancer) -> Cancer (10748ms) What did Rachel Carson die of? Silver Spring MD -12.897144417115038 What did Rachel Carson die of? -> what do [ rachel carson die ] of ? -> what city be rachel carson die in ? -> $x: ($x, instance of, city) (rachel carson, die in, $x) -> (Silver Spring MD, Instance Of, city) (Rachel Carson, died in, Silver Spring) -> Silver Spring MD (12067ms) What is amitriptyline? anti-depressants -2.2510757560309207 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, anti-depressants) -> anti-depressants (2496ms) What is amitriptyline? anti-anxiety drug -2.7705977153768107 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, anti-anxiety drug) -> anti-anxiety drug (2496ms) What is amitriptyline? mood-altering drug -2.9272497663919888 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, mood-altering drug) -> mood-altering drug (2496ms) What is amitriptyline? TCAs -2.9581344039856834 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, TCAs) -> TCAs (2496ms) What is amitriptyline? anti-psychotic drug -2.9587199208851382 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, anti-psychotic drug) -> anti-psychotic drug (2497ms) What is amitriptyline? excellent med -3.0497601448026224 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, excellent med) -> excellent med (2510ms) What is amitriptyline? tertiary tricyclic antidepressant -3.0912459898804134 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, tertiary tricyclic antidepressant) -> tertiary tricyclic antidepressant (2511ms) What is amitriptyline? oral tricyclic antidepressant -3.1075231948664266 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, oral tricyclic antidepressant) -> oral tricyclic antidepressant (2510ms) What is amitriptyline? sedative antidepressant drug -3.212241060077327 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, sedative antidepressant drug) -> sedative antidepressant drug (2510ms) What is amitriptyline? case adjuvant analgesic -3.217458691751811 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, case adjuvant analgesic) -> case adjuvant analgesic (2511ms) What is amitriptyline? tri-cyclic anti-depressant medication -3.2213618189244624 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, tri-cyclic anti-depressant medication) -> tri-cyclic anti-depressant medication (2574ms) What is amitriptyline? drug anti-depressants -3.2213618189244624 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, drug anti-depressants) -> drug anti-depressants (2511ms) What is amitriptyline? Beers criterion medication -3.2349215614739153 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, Beers criterion medication) -> Beers criterion medication (2573ms) What is amitriptyline? anticholinergic tricyclic antidepressant -3.236091366748348 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, anticholinergic tricyclic antidepressant) -> anticholinergic tricyclic antidepressant (2573ms) What is amitriptyline? daily prophylactic medication -3.2452308472693314 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, daily prophylactic medication) -> daily prophylactic medication (2573ms) What is amitriptyline? neuropathic pain drug -3.26983040414399 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, neuropathic pain drug) -> neuropathic pain drug (2572ms) What is amitriptyline? re-uptake inhibitor -3.2714734060340893 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, re-uptake inhibitor) -> re-uptake inhibitor (2573ms) What is amitriptyline? first generation tricyclic antidepressant -3.2920372370530897 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, first generation tricyclic antidepressant) -> first generation tricyclic antidepressant (2590ms) What is amitriptyline? closely related tricyclics -3.3031250157432606 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, closely related tricyclics) -> closely related tricyclics (2590ms) What is amitriptyline? fairly complex molecule -3.3031250157432606 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, fairly complex molecule) -> fairly complex molecule (2590ms) What is amitriptyline? tertiary tricyclic drug -3.3031250157432606 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, tertiary tricyclic drug) -> tertiary tricyclic drug (2590ms) What is amitriptyline? strongly basic antidepressant drug -3.312245774590396 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, strongly basic antidepressant drug) -> strongly basic antidepressant drug (2601ms) What is amitriptyline? tricyclic antidepressant in low dose -3.312245774590396 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, tricyclic antidepressant in low dose) -> tricyclic antidepressant in low dose (2601ms) What is amitriptyline? prescription tricyclic antidepressant medication -3.312245774590396 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, prescription tricyclic antidepressant medication) -> prescription tricyclic antidepressant medication (2590ms) What is amitriptyline? anti-depressant and anti-epileptic medication -3.312245774590396 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, anti-depressant and anti-epileptic medication) -> anti-depressant and anti-epileptic medication (2590ms) What is amitriptyline? drug for IC -3.312245774590396 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, drug for IC) -> drug for IC (2602ms) What is amitriptyline? SSRIs -3.3255269063935637 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, SSRIs) -> SSRIs (2601ms) What is amitriptyline? non-narcotic sleep aid -3.3328096056093965 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, non-narcotic sleep aid) -> non-narcotic sleep aid (2601ms) What is amitriptyline? anti-migraine prophylactic medication -3.339664216766196 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, anti-migraine prophylactic medication) -> anti-migraine prophylactic medication (2601ms) What is amitriptyline? prescribed tricyclic antidepressant -3.3480189711784023 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, prescribed tricyclic antidepressant) -> prescribed tricyclic antidepressant (2627ms) What is amitriptyline? frequently prescribed medication -3.3480189711784023 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, frequently prescribed medication) -> frequently prescribed medication (2614ms) What is amitriptyline? simple oral drug -3.3480189711784023 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, simple oral drug) -> simple oral drug (2627ms) What is amitriptyline? basic pharmaceutical drug -3.3480189711784023 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, basic pharmaceutical drug) -> basic pharmaceutical drug (2614ms) What is amitriptyline? psyc hotropic agent -3.3480189711784023 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, psyc hotropic agent) -> psyc hotropic agent (2626ms) What is amitriptyline? tricylic prescription drug -3.3480189711784023 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, tricylic prescription drug) -> tricylic prescription drug (2614ms) What is amitriptyline? weak basic drug -3.3480189711784023 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, weak basic drug) -> weak basic drug (2614ms) What is amitriptyline? prophylactic migraine medication -3.3480189711784023 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, prophylactic migraine medication) -> prophylactic migraine medication (2614ms) What is amitriptyline? anticholinergic acting drug -3.3480189711784023 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, anticholinergic acting drug) -> anticholinergic acting drug (2614ms) What is amitriptyline? older generation drug -3.3480189711784023 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, older generation drug) -> older generation drug (2627ms) What is amitriptyline? frequently prescribed antidepressant agent -3.357139730025539 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, frequently prescribed antidepressant agent) -> frequently prescribed antidepressant agent (2669ms) What is amitriptyline? placebo and various prescription antidepressant -3.357139730025539 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, placebo and various prescription antidepressant) -> placebo and various prescription antidepressant (2669ms) What is amitriptyline? disruptive, tricyclic antidepressant -3.357139730025539 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, disruptive, tricyclic antidepressant) -> disruptive, tricyclic antidepressant (2653ms) What is amitriptyline? generation antidepressant drug of the tricyclic family -3.357139730025539 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, generation antidepressant drug of the tricyclic family) -> generation antidepressant drug of the tricyclic family (2653ms) What is amitriptyline? member of the category of drug -3.357139730025539 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, member of the category of drug) -> member of the category of drug (2627ms) What is amitriptyline? fairly potent inhibitor of serotonin reuptake -3.357139730025539 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, fairly potent inhibitor of serotonin reuptake) -> fairly potent inhibitor of serotonin reuptake (2639ms) What is amitriptyline? nerve root pain and agent -3.357139730025539 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, nerve root pain and agent) -> nerve root pain and agent (2669ms) What is amitriptyline? tricyclic and antidepressant drug -3.357139730025539 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, tricyclic and antidepressant drug) -> tricyclic and antidepressant drug (2653ms) What is amitriptyline? drug therapy for pain -3.357139730025539 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, drug therapy for pain) -> drug therapy for pain (2639ms) What is amitriptyline? member of the family of antidepressant -3.357139730025539 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, member of the family of antidepressant) -> member of the family of antidepressant (2653ms) What is amitriptyline? sedating tricyclic antidepressant medication -3.357139730025539 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, sedating tricyclic antidepressant medication) -> sedating tricyclic antidepressant medication (2639ms) What is amitriptyline? synthetic anti-depressants -3.357139730025539 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, synthetic anti-depressants) -> synthetic anti-depressants (2639ms) What is amitriptyline? meds for IC -3.357139730025539 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, meds for IC) -> meds for IC (2640ms) What is amitriptyline? established migraine preventive drug -3.357139730025539 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, established migraine preventive drug) -> established migraine preventive drug (2653ms) What is amitriptyline? psychoactive drug in monitoring -3.357139730025539 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, psychoactive drug in monitoring) -> psychoactive drug in monitoring (2653ms) What is amitriptyline? drug with sedative effect -3.357139730025539 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, drug with sedative effect) -> drug with sedative effect (2639ms) What is amitriptyline? effective migraine prophylactic agent -3.357139730025539 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, effective migraine prophylactic agent) -> effective migraine prophylactic agent (2627ms) What is amitriptyline? potent neurotoxic agent -3.3571584516993855 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, potent neurotoxic agent) -> potent neurotoxic agent (2669ms) What is amitriptyline? first line drug -3.3583008866879025 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, first line drug) -> first line drug (2669ms) What is amitriptyline? frequently preventive drug -3.375437413354202 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, frequently preventive drug) -> frequently preventive drug (2669ms) What is amitriptyline? tertiary amine antidepressant -3.375437413354202 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, tertiary amine antidepressant) -> tertiary amine antidepressant (2680ms) What is amitriptyline? member of the group of drug called tricyclic antidepressant -3.3845581722013387 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, member of the group of drug called tricyclic antidepressant) -> member of the group of drug called tricyclic antidepressant (2681ms) What is amitriptyline? tricyclic antidepressant medication -3.393716375621869 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, tricyclic antidepressant medication) -> tricyclic antidepressant medication (2681ms) What is amitriptyline? adjuvant analgesic tricyclic anti-depressants -3.3982673920635387 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, adjuvant analgesic tricyclic anti-depressants) -> adjuvant analgesic tricyclic anti-depressants (2681ms) What is amitriptyline? psychotropic drug -3.4493682066784794 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, psychotropic drug) -> psychotropic drug (2681ms) What is amitriptyline? anti depressant -3.4573327270880494 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, anti depressant) -> anti depressant (2681ms) What is amitriptyline? tricyclic drug -3.483442890886451 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, tricyclic drug) -> tricyclic drug (2696ms) What is amitriptyline? good drug -3.560025756645196 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, good drug) -> good drug (2696ms) What is amitriptyline? neuropathic medication -3.585385345922262 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, neuropathic medication) -> neuropathic medication (2696ms) What is amitriptyline? prescription medicine -3.613063065824922 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, prescription medicine) -> prescription medicine (2696ms) What is amitriptyline? conventional drug -3.636614204402626 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, conventional drug) -> conventional drug (2696ms) What is amitriptyline? common drug -3.638585273770077 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, common drug) -> common drug (2697ms) What is amitriptyline? big help -3.67042683268762 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, big help) -> big help (2709ms) What is amitriptyline? lethal drug -3.6724611845512403 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, lethal drug) -> lethal drug (2710ms) What is amitriptyline? opioid drug -3.6828441314345577 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, opioid drug) -> opioid drug (2710ms) What is amitriptyline? dangerous drug -3.687693652086212 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, dangerous drug) -> dangerous drug (2710ms) What is amitriptyline? good medicine -3.68885685839712 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, good medicine) -> good medicine (2710ms) What is amitriptyline? white pill -3.6933435118359217 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, white pill) -> white pill (2721ms) What is amitriptyline? CYP 1A2 inhibitor -3.7048032353711333 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, CYP 1A2 inhibitor) -> CYP 1A2 inhibitor (2722ms) What is amitriptyline? behavioral medicine -3.7143086464793873 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, behavioral medicine) -> behavioral medicine (2722ms) What is amitriptyline? ricyclic antidepressant -3.7143086464793873 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, ricyclic antidepressant) -> ricyclic antidepressant (2722ms) What is amitriptyline? inexpensive medication -3.7143086464793873 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, inexpensive medication) -> inexpensive medication (2721ms) What is amitriptyline? depression medication -3.7159214960281526 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, depression medication) -> depression medication (2722ms) What is amitriptyline? psychotherapeutic drug -3.720889072258384 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, psychotherapeutic drug) -> psychotherapeutic drug (2736ms) What is amitriptyline? daily medication -3.7239151076092964 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, daily medication) -> daily medication (2736ms) What is amitriptyline? great medication -3.7258593942094755 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, great medication) -> great medication (2736ms) What is amitriptyline? oral agent -3.7260594075869733 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, oral agent) -> oral agent (2736ms) What is amitriptyline? powerful drug -3.726844886300131 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, powerful drug) -> powerful drug (2736ms) What is amitriptyline? potent drug -3.7275356331238143 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, potent drug) -> potent drug (2736ms) What is amitriptyline? supportive measure -3.7335526451330283 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, supportive measure) -> supportive measure (3169ms) What is amitriptyline? serotonin modulator -3.7408426211970003 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, serotonin modulator) -> serotonin modulator (3169ms) What is amitriptyline? treatment for hypertension -4.079152877593093 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, treatment for hypertension) -> treatment for hypertension (3169ms) What is amitriptyline? Mutual Pharmceutical Company -4.090083910981394 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Mutual Pharmceutical Company, Drugs manufactured, Amitriptyline Hydrochloride 10 film coated tablet) -> Mutual Pharmceutical Company (3185ms) What is amitriptyline? Bryant Ranch Prepack -4.090083910981394 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Bryant Ranch Prepack, Drugs manufactured, Amitriptyline Hydrochloride 75 film coated tablet) -> Bryant Ranch Prepack (3185ms) What is amitriptyline? Major Pharmaceuticals -4.2374753739511135 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Major Pharmaceuticals, Drugs manufactured, Amitriptyline Hydrochloride 25 film coated tablet) -> Major Pharmaceuticals (3250ms) What is amitriptyline? Mutual Pharmaceutical -4.2374753739511135 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Mutual Pharmaceutical, Drugs manufactured, Amitriptyline Hydrochloride 25 film coated tablet) -> Mutual Pharmaceutical (3236ms) What is amitriptyline? Dispensing Solutions -4.2374753739511135 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Dispensing Solutions, Drugs manufactured, Amitriptyline Hydrochloride 50 film coated tablet) -> Dispensing Solutions (3185ms) What is amitriptyline? Blenheim Pharmacal -4.2374753739511135 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Blenheim Pharmacal, Drugs manufactured, Amitriptyline Hydrochloride 50 film coated tablet) -> Blenheim Pharmacal (3250ms) What is amitriptyline? Rebel Distributors -4.2374753739511135 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Rebel Distributors, Drugs manufactured, Amitriptyline Hydrochloride 50 film coated tablet) -> Rebel Distributors (3250ms) What is amitriptyline? Preferred Pharmaceuticals -4.2374753739511135 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Preferred Pharmaceuticals, Drugs manufactured, Amitriptyline Hydrochloride 10 film coated tablet) -> Preferred Pharmaceuticals (3236ms) What is amitriptyline? Cardinal Health -4.2374753739511135 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Cardinal Health, Drugs manufactured, Amitriptyline Hydrochloride 10 film coated tablet) -> Cardinal Health (3250ms) What is amitriptyline? Pregnancy Category C (FDA) -4.32175118569865 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Pregnancy Category C (FDA), Drugs in this category, Amitriptyline) -> Pregnancy Category C (FDA) (3336ms) What is amitriptyline? Physicians Total Care -4.32175118569865 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Physicians Total Care, Drugs manufactured, Amitriptyline Hydrochloride 150 film coated tablet) -> Physicians Total Care (3325ms) What is amitriptyline? H.J. Harkins Company -4.32175118569865 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (H.J. Harkins Company, Drugs manufactured, Amitriptyline Hydrochloride 50 film coated tablet) -> H.J. Harkins Company (3326ms) What is amitriptyline? NCS HEALTHCARE OF KENTUCKY INC -4.32175118569865 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (NCS HEALTHCARE OF KENTUCKY INC, Drugs manufactured, Amitriptyline Hydrochloride 10 film coated tablet) -> NCS HEALTHCARE OF KENTUCKY INC (3275ms) What is amitriptyline? Stat Rx Usa -4.32175118569865 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Stat Rx Usa, Drugs manufactured, Amitriptyline Hydrochloride 75 film coated tablet) -> Stat Rx Usa (3336ms) What is amitriptyline? St Marys Medical Park Pharmacy -4.32175118569865 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (St Marys Medical Park Pharmacy, Drugs manufactured, Amitriptyline Hydrochloride 50 tablet) -> St Marys Medical Park Pharmacy (3336ms) What is amitriptyline? Contract Pharmacy Services-PA -4.32175118569865 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Contract Pharmacy Services-PA, Drugs manufactured, Amitriptyline Hydrochloride 100 film coated tablet) -> Contract Pharmacy Services-PA (3264ms) What is amitriptyline? PD-Rx Pharmaceuticals -4.32175118569865 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (PD-Rx Pharmaceuticals, Drugs manufactured, Amitriptyline Hydrochloride 10 film coated tablet) -> PD-Rx Pharmaceuticals (3325ms) What is amitriptyline? Lake Erie Medical -4.32175118569865 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Lake Erie Medical, Drugs manufactured, Amitriptyline Hydrochloride 10 film coated tablet) -> Lake Erie Medical (3290ms) What is amitriptyline? UDL Laboratories Inc -4.32175118569865 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (UDL Laboratories Inc, Drugs manufactured, Amitriptyline Hydrochloride 10 film coated tablet) -> UDL Laboratories Inc (3325ms) What is amitriptyline? Mylan Laboratories Inc. -4.32175118569865 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Mylan Laboratories Inc., Drugs manufactured, Amitriptyline Hydrochloride 25 film coated tablet) -> Mylan Laboratories Inc. (3291ms) What is amitriptyline? TCAD -4.34984312294783 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, TCAD) -> TCAD (3336ms) What is amitriptyline? Med Health Pharma -4.3655308281649035 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Med Health Pharma, Drugs manufactured, Amitriptyline Hydrochloride 100 film coated tablet) -> Med Health Pharma (3336ms) What is amitriptyline? Tricyclic antidepressant -4.524961692812843 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: (amitriptyline, pharmacological class, $x) -> (Amitriptyline, Pharmacological class, Tricyclic antidepressant) -> Tricyclic antidepressant (3590ms) What is amitriptyline? Drug -4.958744983582635 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Drug, Drug formulations in this category, Amitriptyline hydrochloride 50 tablet) -> Drug (3659ms) What is amitriptyline? Oral -4.958744983582635 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Oral, Drug formulations, Amitriptyline hydrochloride 150 tablet) -> Oral (3659ms) What is amitriptyline? Oval -4.958744983582635 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Oval, Drugs with this shape, Amitriptyline Hydrochloride 150 tablet) -> Oval (3659ms) What is amitriptyline? Remedyrepack -5.013469536665451 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Remedyrepack, Drugs manufactured, Amitriptyline Hydrochloride 50 film coated tablet) -> Remedyrepack (4478ms) What is amitriptyline? Limbitrol -5.013469536665451 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Limbitrol, Canonical drug, Chlordiazepoxide/Amitriptyline) -> Limbitrol (3658ms) What is amitriptyline? Qualitest -5.013469536665451 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Qualitest, Drugs manufactured, Amitriptyline Hydrochloride 75 film coated tablet) -> Qualitest (4478ms) What is amitriptyline? Sandoz -5.013469536665451 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Sandoz, Drugs manufactured, Amitriptyline Hydrochloride 10 film coated tablet) -> Sandoz (4453ms) What is amitriptyline? Chlordiazepoxide -5.013469536665451 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Chlordiazepoxide, Active moiety of drug, Chlordiazepoxide/Amitriptyline) -> Chlordiazepoxide (3671ms) What is amitriptyline? Circle -5.013469536665451 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Circle, Drugs with this shape, Amitriptyline Hydrochloride 50 tablet) -> Circle (4478ms) What is amitriptyline? Phenothiazine -5.013469536665451 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: (amitriptyline, pharmacological class, $x) -> (Perphenazine/Amitriptyline, Pharmacological class, Phenothiazine) -> Phenothiazine (3684ms) What is amitriptyline? Amitriptyline -5.013469536665451 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Amitriptyline, Active moiety of drug, Chlordiazepoxide/Amitriptyline) -> Amitriptyline (3739ms) What is amitriptyline? Choline -5.013469536665451 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Choline, Active moiety of drug, Amitriptyline/Choline) -> Choline (3684ms) What is amitriptyline? Benzodiazepine -5.013469536665451 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Benzodiazepine, Drugs, Chlordiazepoxide/Amitriptyline) -> Benzodiazepine (4478ms) What is amitriptyline? Perphenazine -5.013469536665451 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> $x: ($x, drug, amitriptyline) -> (Perphenazine, Active moiety of drug, Perphenazine/Amitriptyline) -> Perphenazine (4454ms) What is amitriptyline? drug -5.564470842099775 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (Amitriptyline, Instance Of, drug) -> drug (4478ms) What is amitriptyline? medicine -5.647343748306392 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, medicine) -> medicine (4478ms) What is amitriptyline? depressant -5.702348444620621 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, depressant) -> depressant (4494ms) What is amitriptyline? tranquilizer -5.844573493130415 What is amitriptyline? -> $x: (amitriptyline, instance of, $x) -> (amitriptyline, Instance Of, tranquilizer) -> tranquilizer (4494ms) What is amitriptyline? a very few -9.036178194912129 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, was, a very few) -> a very few (4494ms) What is amitriptyline? a very low -9.22490457444427 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, was, a very low) -> a very low (4494ms) What is amitriptyline? self-stimulation -9.38620740896799 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (self-stimulation, was restored with, amitriptyline) -> self-stimulation (4494ms) What is amitriptyline? dry mouth -9.518427844252331 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, are, dry mouth) -> dry mouth (4494ms) What is amitriptyline? problem-solving therapy -9.619582495758385 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (problem-solving therapy, were as effective as, amitriptyline) -> problem-solving therapy (4509ms) What is amitriptyline? an overdose -9.624300555649656 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, is, an overdose) -> an overdose (4509ms) What is amitriptyline? Straightforward Guide -9.632295355393637 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Straightforward Guide, is, Amitriptyline) -> Straightforward Guide (4509ms) What is amitriptyline? tension-type headaches -9.63575145555033 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (tension-type headaches, can be treated with, amitriptyline) -> tension-type headaches (4509ms) What is amitriptyline? Generic Elavil -9.648702908732943 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Generic Elavil, is, Amitriptyline) -> Generic Elavil (4509ms) What is amitriptyline? serotonin syndrome -9.659458032240886 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (serotonin syndrome, have been reported with, amitriptyline) -> serotonin syndrome (4509ms) What is amitriptyline? spinal manipulation -9.708655088537254 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (spinal manipulation, was as effective as, Amitriptyline) -> spinal manipulation (4525ms) What is amitriptyline? a very -9.712518929431047 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, was, a very) -> a very (4525ms) What is amitriptyline? an antidepressant -9.735317213356785 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, an antidepressant) -> an antidepressant (4525ms) What is amitriptyline? an antidepressant , -9.741682989988371 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, an antidepressant ,) -> an antidepressant , (4525ms) What is amitriptyline? extreme weight gain -9.744713050715111 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, are, extreme weight gain) -> extreme weight gain (4525ms) What is amitriptyline? good treatment choices -9.746360320810032 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, may be, good treatment choices) -> good treatment choices (4525ms) What is amitriptyline? a very popular drug -9.768326353830501 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, was, a very popular drug) -> a very popular drug (4540ms) What is amitriptyline? a group -9.794056039759448 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is in, a group) -> a group (4540ms) What is amitriptyline? a very interesting drug -9.821148521557424 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, was, a very interesting drug) -> a very interesting drug (4540ms) What is amitriptyline? a very few hereditary causes -9.868976376552073 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, was, a very few hereditary causes) -> a very few hereditary causes (4540ms) What is amitriptyline? tricyclic antidepressant -9.87160088819385 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is a type of, tricyclic antidepressant) -> tricyclic antidepressant (4540ms) What is amitriptyline? an anti-depressant drug -9.879290176771718 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, is, an anti-depressant drug) -> an anti-depressant drug (4540ms) What is amitriptyline? A common protocol -9.901364064047554 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (A common protocol, is to give, amitriptyline) -> A common protocol (4598ms) What is amitriptyline? an oral and parenteral tertiary -9.906996918822175 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, an oral and parenteral tertiary) -> an oral and parenteral tertiary (4599ms) What is amitriptyline? a comprehensive Canadian -9.927429073949181 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, a comprehensive Canadian) -> a comprehensive Canadian (4599ms) What is amitriptyline? side effects -9.947538862635854 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, is a drug having the side effect, side effects) -> side effects (4599ms) What is amitriptyline? chronic tension headaches -9.952368771009409 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (chronic tension headaches, are, Amitriptyline and Mirtazapine) -> chronic tension headaches (4599ms) What is amitriptyline? Nortriptyline -9.982418705319073 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Nortriptyline, is as effective as, amitriptyline) -> Nortriptyline (4598ms) What is amitriptyline? Acupuncture -10.002488220639444 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Acupuncture, is comparable with, amitriptyline) -> Acupuncture (4776ms) What is amitriptyline? 100 -10.005091177477482 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, is, 100) -> 100 (4777ms) What is amitriptyline? similar side effects -10.012821867781852 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (similar side effects, was worse with, amitriptyline) -> similar side effects (4777ms) What is amitriptyline? Haloperidol -10.039952207471902 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Haloperidol, was as effective as, amitriptyline) -> Haloperidol (4777ms) What is amitriptyline? a very low price -10.042845401876498 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, was, a very low price) -> a very low price (4777ms) What is amitriptyline? 75 mg/day -10.052540013121897 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, 75 mg/day) -> 75 mg/day (4784ms) What is amitriptyline? a very powerful drug related questions -10.083801728319218 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, was, a very powerful drug related questions) -> a very powerful drug related questions (5177ms) What is amitriptyline? low doses and act -10.096180496041455 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, are used in, low doses and act) -> low doses and act (5178ms) What is amitriptyline? Riboflavin -10.13105809809954 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Riboflavin, are also recommended along with, amitriptyline) -> Riboflavin (5179ms) What is amitriptyline? a very small , hearing and balance -10.143057941596556 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, was, a very small , hearing and balance) -> a very small , hearing and balance (5178ms) What is amitriptyline? a need -10.150649171811297 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, was developed out of, a need) -> a need (5178ms) What is amitriptyline? cardiac function -10.159451859547254 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, is to impair, cardiac function) -> cardiac function (5196ms) What is amitriptyline? 79 -10.172325508464171 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (79, are, amitriptyline tablets price) -> 79 (5195ms) What is amitriptyline? the GI tract -10.179787059100821 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is well absorbed from, the GI tract) -> the GI tract (5196ms) What is amitriptyline? FDA category C. Patients -10.195210690521645 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is classified as, FDA category C. Patients) -> FDA category C. Patients (5196ms) What is amitriptyline? several times -10.20277757292623 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, may be taken, several times) -> several times (5197ms) What is amitriptyline? IC/PBS patients -10.207604392113327 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, seems to be most effective for, IC/PBS patients) -> IC/PBS patients (5218ms) What is amitriptyline? a majority -10.23109143800777 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is usually the first choice for, a majority) -> a majority (5218ms) What is amitriptyline? an antidepressant medication -10.25526401085372 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, an antidepressant medication) -> an antidepressant medication (5218ms) What is amitriptyline? Louis PERIACTIN -10.263293886642801 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Louis PERIACTIN, was put on, Amitriptyline 10 mg) -> Louis PERIACTIN (5218ms) What is amitriptyline? an antidepressant drug -10.271179576882638 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, an antidepressant drug) -> an antidepressant drug (5218ms) What is amitriptyline? a first line agent -10.281941566574003 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is often used as, a first line agent) -> a first line agent (5235ms) What is amitriptyline? a first generation -10.287028857118942 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, a first generation) -> a first generation (5235ms) What is amitriptyline? Clomipramine -10.287149144340919 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Clomipramine, would be worth a trial instead of, Amitriptyline) -> Clomipramine (5235ms) What is amitriptyline? a very expensive -10.308185026129479 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, was, a very expensive) -> a very expensive (5235ms) What is amitriptyline? 30 to 50 % -10.319071312065768 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, is about, 30 to 50 %) -> 30 to 50 % (5235ms) What is amitriptyline? a very dangerous -10.328586144993432 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, was, a very dangerous) -> a very dangerous (5235ms) What is amitriptyline? a tricyclic antidepressant -10.33398329489943 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, a tricyclic antidepressant) -> a tricyclic antidepressant (5550ms) What is amitriptyline? such medication -10.340837607049707 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (such medication, is, Amitriptyline Generic Tablets) -> such medication (5550ms) What is amitriptyline? TRAMADOL -10.348540797741425 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (TRAMADOL, was on, Amitriptyline) -> TRAMADOL (5551ms) What is amitriptyline? a day -10.352863969903936 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, only needs to be taken once, a day) -> a day (5551ms) What is amitriptyline? the 7 days -10.363281159143545 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (the 7 days, am still taking, the amitriptyline) -> the 7 days (5550ms) What is amitriptyline? a useful prophylactic -10.363954075357949 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, a useful prophylactic) -> a useful prophylactic (5551ms) What is amitriptyline? the American Academy -10.397798697432567 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is listed by, the American Academy) -> the American Academy (5650ms) What is amitriptyline? Excessive saliva -10.415320202411769 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Excessive saliva, can be treated with, amitriptyline) -> Excessive saliva (5651ms) What is amitriptyline? healthy volunteers -10.421662421948977 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (healthy volunteers, were incubated with, amitriptyline) -> healthy volunteers (5651ms) What is amitriptyline? 7/2/11 10:22 -10.454035556016699 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (7/2/11 10:22, AM Tracked by, Amitriptyline) -> 7/2/11 10:22 (5651ms) What is amitriptyline? Britain -10.46618122754136 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Britain, is, that sell amitriptyline) -> Britain (5650ms) What is amitriptyline? Showings -10.46753079751587 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Showings, are, amitriptyline hlc) -> Showings (5650ms) What is amitriptyline? a good drug -10.469109059220854 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, a good drug) -> a good drug (5779ms) What is amitriptyline? an antidepressants -10.487037781066341 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, an antidepressants) -> an antidepressants (5779ms) What is amitriptyline? vgx rats -10.526887611731762 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (vgx rats, was also attenuated by, gabapentin and amitriptyline) -> vgx rats (5779ms) What is amitriptyline? a tricyclic -10.589342663717456 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, is, a tricyclic) -> a tricyclic (5779ms) What is amitriptyline? an anti-depressant -10.601493971478565 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, is, an anti-depressant) -> an anti-depressant (5779ms) What is amitriptyline? a Tricyclic Antidepressant -10.64061561614947 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, a Tricyclic Antidepressant) -> a Tricyclic Antidepressant (5779ms) What is amitriptyline? Examples of Tricyclic antidepressants -10.685441736827098 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Examples of Tricyclic antidepressants, are, amitriptyline) -> Examples of Tricyclic antidepressants (5803ms) What is amitriptyline? Elavil -10.738793107328325 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Elavil, is the brand name for, Amitriptyline) -> Elavil (5803ms) What is amitriptyline? more effective than placebo -10.789432858842083 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, was, more effective than placebo) -> more effective than placebo (5803ms) What is amitriptyline? a class of medications -10.812201516211887 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is in, a class of medications) -> a class of medications (5804ms) What is amitriptyline? children and adolescents -10.830820273003106 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (children and adolescents, is available for, amitriptyline) -> children and adolescents (5803ms) What is amitriptyline? Amytriptyline -10.850776177068749 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Amytriptyline, is a common misspelling of, amitriptyline) -> Amytriptyline (5821ms) What is amitriptyline? Amitriptilyne -10.850776177068749 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Amitriptilyne, is a common misspelling of, amitriptyline) -> Amitriptilyne (5820ms) What is amitriptyline? Amytriptiline -10.850776177068749 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Amytriptiline, is a common misspelling of, amitriptyline) -> Amytriptiline (5820ms) What is amitriptyline? Amytripyline -10.850776177068749 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Amytripyline, is a common misspelling of, amitriptyline) -> Amytripyline (5820ms) What is amitriptyline? Amitryptyline -10.862762745700277 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Amitryptyline, is an alternate name for, Amitriptyline) -> Amitryptyline (5820ms) What is amitriptyline? treat depression and anxiety -10.880250028114382 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is used to, treat depression and anxiety) -> treat depression and anxiety (5857ms) What is amitriptyline? Somebody -10.892904926001139 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Somebody, else may be best suited by, 10 mg amitriptyline) -> Somebody (5857ms) What is amitriptyline? Lennox -10.900291247957696 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Lennox, was quite rightly put on, Amitriptyline) -> Lennox (5857ms) What is amitriptyline? serious side effects -10.95775627302724 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, is more likely to have, serious side effects) -> serious side effects (5857ms) What is amitriptyline? AUC -10.972838846488303 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (AUC, Instance Of, pharmacokinetic parameter of amitriptyline) -> AUC (5857ms) What is amitriptyline? a treatment -11.052998032657143 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, has also been used as, a treatment) -> a treatment (5874ms) What is amitriptyline? AmiKet -11.071951657205577 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (AmiKet, Instance Of, prescription, topical analgesic cream containing 4% amitriptyline and 2% ketamine) -> AmiKet (5874ms) What is amitriptyline? Amitriptyline HCI -11.114434638873137 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Amitriptyline HCI, Instance Of, common misspelling and variation of amitriptyline) -> Amitriptyline HCI (5874ms) What is amitriptyline? a much better safety profile -11.125059550137546 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (amitriptyline, has, a much better safety profile) -> a much better safety profile (5874ms) What is amitriptyline? Convenience. bodies -11.181468287868048 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Convenience. bodies, Instance Of, can-yoy-take-amitriptyline-with-nexium) -> Convenience. bodies (5874ms) What is amitriptyline? I t -11.181468287868048 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (I t, Instance Of, definite side effect of the amitriptyline) -> I t (5874ms) What is amitriptyline? PERIACTIN -11.195971118804312 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (PERIACTIN, was put on, Amitriptyline 10 mg) -> PERIACTIN (5961ms) What is amitriptyline? hair loss -11.222293218849442 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, has caused, hair loss) -> hair loss (5961ms) What is amitriptyline? National Data Bank for Rheumatic Diseases -11.22636224330319 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (National Data Bank for Rheumatic Diseases, Instance Of, world-renowned, non-profit, independent research group Amitriptyline 90 Pills 25 Mg 54.95) -> National Data Bank for Rheumatic Diseases (5962ms) What is amitriptyline? Budesonide/formoterol -11.22636224330319 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Budesonide/formoterol, Instance Of, Buy buy amitriptyline) -> Budesonide/formoterol (5961ms) What is amitriptyline? biological half-life -11.24281330836353 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (biological half-life, Instance Of, pharmacokinetic parameter of amitriptyline) -> biological half-life (5961ms) What is amitriptyline? volume of distribution -11.24281330836353 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (volume of distribution, Instance Of, pharmacokinetic parameter of amitriptyline) -> volume of distribution (5961ms) What is amitriptyline? Heart Rate Increase -11.26748990534119 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Heart Rate Increase, Instance Of, Amitriptyline side effect) -> Heart Rate Increase (6031ms) What is amitriptyline? more side effects -11.30780971733623 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, has, more side effects) -> more side effects (6031ms) What is amitriptyline? an NNT -11.313329109749429 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (neuropathic pain.Amitriptyline, has, an NNT) -> an NNT (6030ms) What is amitriptyline? Weight gain -11.339784839547098 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Weight gain, Instance Of, potential side effect of amitriptyline) -> Weight gain (6031ms) What is amitriptyline? greater antihistaminic effects -11.342293408597357 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, has, greater antihistaminic effects) -> greater antihistaminic effects (6080ms) What is amitriptyline? a fairly high overdose rate -11.34918897472204 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Comments Amitriptyline, has, a fairly high overdose rate) -> a fairly high overdose rate (6080ms) What is amitriptyline? a tricyclic antidepressant TCA -11.401994832179959 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, a tricyclic antidepressant TCA) -> a tricyclic antidepressant TCA (6100ms) What is amitriptyline? more than 50 years -11.415013757379649 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, has been prescribed for, more than 50 years) -> more than 50 years (6100ms) What is amitriptyline? a prominent sedative action -11.421265789070135 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, had, a prominent sedative action) -> a prominent sedative action (6100ms) What is amitriptyline? a class of drugs -11.421951427519703 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is in, a class of drugs) -> a class of drugs (6100ms) What is amitriptyline? treat symptoms of depression -11.423495331599302 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is used to, treat symptoms of depression) -> treat symptoms of depression (6100ms) What is amitriptyline? a coma -11.4296568872095 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, go, $x) -> (The patient using amitriptyline, may go into, a coma) -> a coma (6100ms) What is amitriptyline? EpiCept NP-1 Cream -11.433134430555835 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (EpiCept NP-1 Cream, Instance Of, patented formulation containing two FDA-approved drugs, amitriptyline and ketamine) -> EpiCept NP-1 Cream (6154ms) What is amitriptyline? a group of drugs -11.456827370573833 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is in, a group of drugs) -> a group of drugs (6154ms) What is amitriptyline? Neither drug -11.460308360345813 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Neither drug, are rediscovering, amitriptyline) -> Neither drug (6153ms) What is amitriptyline? it has a tendency -11.473160720705575 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, should be avoided because, it has a tendency) -> it has a tendency (6153ms) What is amitriptyline? extremely sedating -11.486880379881878 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, extremely sedating) -> extremely sedating (6154ms) What is amitriptyline? drowsiness -11.489785610401476 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, are, drowsiness) -> drowsiness (6175ms) What is amitriptyline? harmful to an unborn baby -11.504474763612375 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, may be, harmful to an unborn baby) -> harmful to an unborn baby (6175ms) What is amitriptyline? several times a day -11.504474763612375 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, may be taken, several times a day) -> several times a day (6175ms) What is amitriptyline? NP-1 -11.506992099653875 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (NP-1, Instance Of, patented formulation containing two FDA-approved drugs, amitriptyline) -> NP-1 (6175ms) What is amitriptyline? patients -11.519856577196773 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (patients, are rediscovering, amitriptyline) -> patients (6192ms) What is amitriptyline? an antidepressant used to treat depression -11.520864228676798 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, an antidepressant used to treat depression) -> an antidepressant used to treat depression (6192ms) What is amitriptyline? a member of the class of drugs -11.520864228676798 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, a member of the class of drugs) -> a member of the class of drugs (6192ms) What is amitriptyline? EpiCept NP-1 -11.533253380092479 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (EpiCept NP-1, Instance Of, topical analgesic cream containing two FDA-approved drugs, amitriptyline and ketamine) -> EpiCept NP-1 (6192ms) What is amitriptyline? blurred vision -11.538637204321898 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (blurred vision, Instance Of, Amitriptyline's most common side-effects) -> blurred vision (6192ms) What is amitriptyline? Examples -11.546436998828243 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (Examples, are, amitriptyline) -> Examples (6212ms) What is amitriptyline? Mylan 277 -11.574025748648786 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Mylan 277, Instance Of, Amitriptyline) -> Mylan 277 (6212ms) What is amitriptyline? side effect -11.58353115975704 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (side effect, Instance Of, information on Amitriptyline) -> side effect (6212ms) What is amitriptyline? drugging tablet -11.606016143813765 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (low amitriptyline, have, drugging tablet) -> drugging tablet (6211ms) What is amitriptyline? EpiCept? NP-1 -11.618919704083929 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (EpiCept? NP-1, Instance Of, topical analgesic cream containing two FDA-approved drugs, amitriptyline and ketamine) -> EpiCept? NP-1 (6232ms) What is amitriptyline? earlier studies -11.649341857192741 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (? Amitriptyline or Pamelor, had, earlier studies) -> earlier studies (6232ms) What is amitriptyline? 2010 -11.65834932118381 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (2010, is filed under, Amitriptyline Review) -> 2010 (6232ms) What is amitriptyline? adverse effects -11.669778143446823 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, has the highest rate of, adverse effects) -> adverse effects (6250ms) What is amitriptyline? a generic alternative -11.67833379954545 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, has, a generic alternative) -> a generic alternative (6251ms) What is amitriptyline? sleep issues -11.72117003964783 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is prescribed for, sleep issues) -> sleep issues (6250ms) What is amitriptyline? treat depression -11.722269401702862 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is used to, treat depression) -> treat depression (6250ms) What is amitriptyline? treating depression -11.73403592686555 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is used for, treating depression) -> treating depression (6251ms) What is amitriptyline? similar effects -11.751024558173928 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, had, similar effects) -> similar effects (6267ms) What is amitriptyline? the first choice drug -11.773460979797907 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, is, the first choice drug) -> the first choice drug (6267ms) What is amitriptyline? 313.87 -11.774034334778577 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline HCl, has a molecular weight of, 313.87) -> 313.87 (6267ms) What is amitriptyline? sleep disturbances -11.795234457953999 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (amitriptyline, may have a better effect on, sleep disturbances) -> sleep disturbances (6267ms) What is amitriptyline? a moderate effect -11.812696704297734 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, has, a moderate effect) -> a moderate effect (6267ms) What is amitriptyline? elderly patients -11.813996287027681 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, should be avoided in, elderly patients) -> elderly patients (6282ms) What is amitriptyline? the most widely researched prophylactic agent -11.820149949234931 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, the most widely researched prophylactic agent) -> the most widely researched prophylactic agent (6282ms) What is amitriptyline? oxycodone -11.825509505700998 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (oxycodone, were unaffected by, amitriptyline) -> oxycodone (6282ms) What is amitriptyline? the tricyclic -11.830431920483598 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, the tricyclic) -> the tricyclic (6282ms) What is amitriptyline? the boxed warning -11.832036729646779 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, has been shown to, the boxed warning) -> the boxed warning (6282ms) What is amitriptyline? The best evidence -11.834962619318386 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (The best evidence, is for, amitriptyline) -> The best evidence (6283ms) What is amitriptyline? the generic form -11.84631426418477 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, the generic form) -> the generic form (6307ms) What is amitriptyline? a false positive -11.871937983705628 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, has shown up as, a false positive) -> a false positive (6307ms) What is amitriptyline? Nortiptyline -11.873186638834849 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Nortiptyline, Instance Of, metabolite of amitriptyline) -> Nortiptyline (6307ms) What is amitriptyline? Amitriptoline -11.873186638834849 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Amitriptoline, Instance Of, common misspelling of amitriptyline) -> Amitriptoline (6307ms) What is amitriptyline? the breast milk -11.874545692966539 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is excreted in, the breast milk) -> the breast milk (6307ms) What is amitriptyline? the prototypical tertiary amine -11.87475153439068 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, the prototypical tertiary amine) -> the prototypical tertiary amine (6307ms) What is amitriptyline? the most widely used TCA -11.898450858013954 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, the most widely used TCA) -> the most widely used TCA (6324ms) What is amitriptyline? the few people -11.899901268925863 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (the few people, was on, Amitriptyline) -> the few people (6325ms) What is amitriptyline? Dosulepin -11.918080594269991 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Dosulepin, Instance Of, analog of amitriptyline) -> Dosulepin (6343ms) What is amitriptyline? Ranitidine -11.918080594269991 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Ranitidine, Instance Of, clomipramine vs amitriptyline of the modality class h2 antagonist) -> Ranitidine (6343ms) What is amitriptyline? Amytriptaline -11.918080594269991 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Amytriptaline, Instance Of, common misspelling of amitriptyline) -> Amytriptaline (6343ms) What is amitriptyline? Butalbital -11.918080594269991 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Butalbital, Instance Of, drug amitriptyline Elavil Etrafon clomipramine medicine) -> Butalbital (6552ms) What is amitriptyline? Reasons -11.918080594269991 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Reasons, Instance Of, segment of amitriptyline ibs-a different lifestyle) -> Reasons (6343ms) What is amitriptyline? Levazine -11.918080594269991 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Levazine, Instance Of, combination medication made of Perphenazine and Amitriptyline) -> Levazine (6325ms) What is amitriptyline? Amitryptilin -11.918080594269991 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Amitryptilin, Instance Of, common misspelling of amitriptyline) -> Amitryptilin (6552ms) What is amitriptyline? Amtriptyline -11.918080594269991 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Amtriptyline, Instance Of, common misspelling of amitriptyline) -> Amtriptyline (6343ms) What is amitriptyline? Amitriptylline -11.918080594269991 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Amitriptylline, Instance Of, common misspelling of amitriptyline) -> Amitriptylline (6325ms) What is amitriptyline? Endep -11.918080594269991 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Endep, Instance Of, form of amitriptyline) -> Endep (6324ms) What is amitriptyline? Amatriptaline -11.918080594269991 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Amatriptaline, Instance Of, common misspelling of amitriptyline) -> Amatriptaline (6552ms) What is amitriptyline? Amixide -11.918080594269991 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Amixide, Instance Of, brand name of a medicine called amitriptyline) -> Amixide (6343ms) What is amitriptyline? Lamictal -11.918080594269991 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Lamictal, Instance Of, amitriptyline or newer drug) -> Lamictal (6343ms) What is amitriptyline? Character -11.918080594269991 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Character, Instance Of, part of the Amitriptyline dosage) -> Character (6552ms) What is amitriptyline? Amitryptaline -11.918080594269991 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Amitryptaline, Instance Of, common misspelling of amitriptyline) -> Amitryptaline (6343ms) What is amitriptyline? Lipsovir -11.918080594269991 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Lipsovir, Instance Of, offered Amitriptyline of limita and inulin) -> Lipsovir (6552ms) What is amitriptyline? Laroxyl -11.918080594269991 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Laroxyl, Instance Of, Amitriptylines) -> Laroxyl (6552ms) What is amitriptyline? lower fit threshold -11.928930255629115 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, do, $x) -> (amitriptyline, does, lower fit threshold) -> lower fit threshold (6552ms) What is amitriptyline? citalopram -11.932605199557978 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (citalopram, is probably as efficacious as, amitriptyline) -> citalopram (6571ms) What is amitriptyline? the past few weeks -11.934533498110435 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (the past few weeks, is a dead-give away as to, the amitriptyline) -> the past few weeks (6570ms) What is amitriptyline? Trembling -11.959208256307992 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Trembling, Instance Of, Amitriptyline side effect) -> Trembling (6571ms) What is amitriptyline? Dizziness -11.959208256307992 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Dizziness, Instance Of, Amitriptyline side effect) -> Dizziness (6571ms) What is amitriptyline? Nausea -11.959208256307992 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (Nausea, Instance Of, Amitriptyline side effect) -> Nausea (6571ms) What is amitriptyline? sleep -11.966031162169372 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (sleep, was improved by, both amitriptyline and nabilone) -> sleep (6571ms) What is amitriptyline? the survey sites -11.970543089402963 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (the survey sites, are free to join, ! Amitriptyline) -> the survey sites (6571ms) What is amitriptyline? symptoms -11.978583472140244 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is used to recover, symptoms) -> symptoms (6571ms) What is amitriptyline? the central nervous system -11.991043432363645 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is likely to work in, the central nervous system) -> the central nervous system (6595ms) What is amitriptyline? sertraline -12.001006410271712 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (sertraline, was found to be as effective as, amitriptyline) -> sertraline (6596ms) What is amitriptyline? pill imprinted with 2101 -12.022786905835114 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (pill imprinted with 2101, Instance Of, 10 mg Amitriptyline HCl tablet) -> pill imprinted with 2101 (6595ms) What is amitriptyline? The most widely used TCA -12.028264072273121 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (The most widely used TCA, is called, amitriptyline) -> The most widely used TCA (6596ms) What is amitriptyline? the same period patient -12.08051130976665 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (the same period patient, was treated with, AMITRIPTYLINE HCL) -> the same period patient (6595ms) What is amitriptyline? five different medications -12.086455717627635 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, make, $x) -> (Amitriptyline, is actually made of, five different medications) -> five different medications (6595ms) What is amitriptyline? the patient -12.10789790445724 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is to be used only by, the patient) -> the patient (6613ms) What is amitriptyline? letter -12.121083942512831 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (letter, Is, Amitriptyline) -> letter (6613ms) What is amitriptyline? an effect on pain -12.143775562379084 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (amitriptyline, has, an effect on pain) -> an effect on pain (6613ms) What is amitriptyline? orthostatic or postural hypotension -12.194082180845758 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, produce, $x) -> (Amitriptyline, can produce, orthostatic or postural hypotension) -> orthostatic or postural hypotension (6613ms) What is amitriptyline? sedation , drowsiness , dry mouth -12.220231182452054 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, include, $x) -> (amitriptyline, include, sedation , drowsiness , dry mouth) -> sedation , drowsiness , dry mouth (6630ms) What is amitriptyline? heroin -12.327752901169095 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (heroin, was taking, amitriptyline) -> heroin (6630ms) What is amitriptyline? a greater overall incidence -12.387352382475957 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, produce, $x) -> (Amitriptyline, produced, a greater overall incidence) -> a greater overall incidence (6630ms) What is amitriptyline? taking acidophilus -12.417312411434555 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, go, $x) -> (amitriptyline, went to, taking acidophilus) -> taking acidophilus (6630ms) What is amitriptyline? treatment -12.478628278622864 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (treatment, is, the tricyclic antidepressant amitriptyline) -> treatment (6630ms) What is amitriptyline? tips -12.48375947701393 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (tips, were selected for, the Amitriptyline unproblematic) -> tips (6630ms) What is amitriptyline? outpatients -12.498771106292537 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (outpatients, is to begin with, 50 to 100 mg amitriptyline) -> outpatients (6630ms) What is amitriptyline? adverse interactions -12.510700833216495 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, produce, $x) -> (Amitriptyline, can produce, adverse interactions) -> adverse interactions (6649ms) What is amitriptyline? caution -12.532296234090452 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is used with, caution) -> caution (6649ms) What is amitriptyline? lists -12.585081067869755 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, is included on, lists) -> lists (6649ms) What is amitriptyline? depression -12.618421095164008 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is used to relieve symptoms of, depression) -> depression (6649ms) What is amitriptyline? baseline -12.646069300187662 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (baseline, was 49 % for, amitriptyline) -> baseline (6649ms) What is amitriptyline? purposes -12.665447427322839 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, may also be used for, purposes) -> purposes (6649ms) What is amitriptyline? of fashion - side effects -12.677106886180223 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, go, $x) -> (amitriptyline, went out, of fashion - side effects) -> of fashion - side effects (6666ms) What is amitriptyline? the first line treatment for fibromyalgia -12.712817924141516 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, is, the first line treatment for fibromyalgia) -> the first line treatment for fibromyalgia (6666ms) What is amitriptyline? of fashion - side effects in the body -12.718637126389698 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, go, $x) -> (amitriptyline, went out, of fashion - side effects in the body) -> of fashion - side effects in the body (6666ms) What is amitriptyline? shelf life written on them -12.744844964899059 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, has, shelf life written on them) -> shelf life written on them (6666ms) What is amitriptyline? London -12.75784269196566 What is amitriptyline? -> what be [ amitriptyline ] ? -> what exactly be amitriptyline ? -> $x: ($x, exactly be, amitriptyline) -> $x: ($x, concerned, amitriptyline) -> (London, raised concerns about, amitriptyline and use) -> London (7041ms) What is amitriptyline? fibromyalgia -12.847432080471979 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, has been used for, fibromyalgia) -> fibromyalgia (6666ms) What is amitriptyline? arrhythmias -12.887638692951942 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (amitriptyline, have been reported to produce, arrhythmias) -> arrhythmias (6666ms) What is amitriptyline? humans -12.922906887799074 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, has been used extensively in, humans) -> humans (6722ms) What is amitriptyline? the most -12.932150265891467 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (amitriptyline, have been relied upon, the most) -> the most (6722ms) What is amitriptyline? adults -12.98603193339585 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline and topiramate, have long been used in, adults) -> adults (6722ms) What is amitriptyline? the nerve pain -12.994857035965026 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, do, $x) -> (Amitriptyline, Does indeed calm, the nerve pain) -> the nerve pain (6722ms) What is amitriptyline? fashion -13.140310829716334 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, go, $x) -> (sell amitriptyline, went out of, fashion) -> fashion (6722ms) What is amitriptyline? the greatest anticholinergic effects -13.169500790397699 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, has, the greatest anticholinergic effects) -> the greatest anticholinergic effects (6722ms) What is amitriptyline? the best support -13.236699852820053 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, seems to have, the best support) -> the best support (6722ms) What is amitriptyline? the same day -13.255953616501827 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, be taken on, the same day) -> the same day (6780ms) What is amitriptyline? years -13.25783505510008 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (trazodone and amitriptyline, have been used for, years) -> years (6780ms) What is amitriptyline? nabilone -13.274383535409383 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (nabilone, was, superior to amitriptyline) -> nabilone (6780ms) What is amitriptyline? nortriptyline -13.27581782836437 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is metabolized to, nortriptyline) -> nortriptyline (6780ms) What is amitriptyline? pain -13.339255352375517 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (amitriptyline, has an effect on, pain) -> pain (6780ms) What is amitriptyline? The first drug -13.356972955321055 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, be, amitriptyline) -> (The first drug, are taking, an overdose of amitriptyline) -> The first drug (6795ms) What is amitriptyline? the cells -13.378557569845718 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, do, $x) -> (Amitriptyline, did n?t kill, the cells) -> the cells (6795ms) What is amitriptyline? the reduction -13.390573486512078 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (amitriptyline, may have had a greater effect on, the reduction) -> the reduction (6795ms) What is amitriptyline? the treatment -13.413041261106844 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, has FDA approval for, the treatment) -> the treatment (6795ms) What is amitriptyline? cats -13.435340131077101 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (amitriptyline, has been prescribed for, cats) -> cats (6795ms) What is amitriptyline? the class -13.474964060430057 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is a member of, the class) -> the class (6795ms) What is amitriptyline? animals -13.48757238199889 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, has been used in, animals) -> animals (6795ms) What is amitriptyline? available -13.545718767418531 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is, available) -> available (6810ms) What is amitriptyline? effective -13.566554408887683 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (amitriptyline, was, effective) -> effective (6810ms) What is amitriptyline? the electrocardiograph -13.625770125936874 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, have, $x) -> (Amitriptyline, has the effects on, the electrocardiograph) -> the electrocardiograph (6810ms) What is amitriptyline? nausea -13.669934934172199 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (nausea, Instance Of, withdrawal side effect with amitriptyline) -> nausea (6810ms) What is amitriptyline? usually -13.68947968450106 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is prescribed, usually) -> usually (6810ms) What is amitriptyline? useful -13.693500764195338 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, be, $x) -> (Amitriptyline, is also, useful) -> useful (6810ms) What is amitriptyline? the similar pharmacology -13.753638292011733 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, include, $x) -> (amitriptyline but, are included due to, the similar pharmacology) -> the similar pharmacology (6810ms) What is amitriptyline? tremor -13.805712845273275 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (tremor, Instance Of, side effect of amitriptyline) -> tremor (6828ms) What is amitriptyline? dosage -13.805712845273275 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (dosage, Instance Of, information on Amitriptyline) -> dosage (6828ms) What is amitriptyline? constipation -13.805712845273275 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (constipation, Instance Of, amitriptyline steady-state concentration minor complaint) -> constipation (6828ms) What is amitriptyline? bioavailability -13.822163910333614 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (bioavailability, Instance Of, pharmacokinetic parameter of amitriptyline) -> bioavailability (6828ms) What is amitriptyline? clearance -13.822163910333614 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: ($x, instance of, amitriptyline) -> (clearance, Instance Of, pharmacokinetic parameter of amitriptyline) -> clearance (6828ms) What is amitriptyline? the sun -14.18110102704297 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, make, $x) -> (Amitriptyline, may make your skin more sensitive to, the sun) -> the sun (6842ms) What is amitriptyline? fever -14.197405213758335 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, include, $x) -> (an amitriptyline overdose, can include, fever) -> fever (6842ms) What is amitriptyline? the benzodiazepines -14.326924541494886 What is amitriptyline? -> what be [ amitriptyline ] ? -> what exactly be amitriptyline ? -> $x: ($x, exactly be, amitriptyline) -> $x: (amitriptyline, mention in, $x) -> (Amitriptyline, is mentioned in, the benzodiazepines) -> the benzodiazepines (6842ms) What is amitriptyline? sedation -14.394520715365903 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, produce, $x) -> (Amitriptyline, produces, sedation) -> sedation (6842ms) What is amitriptyline? the addict -14.476846390706331 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, include, $x) -> (The 2008 amitriptyline and aspirin, includes, the addict) -> the addict (6858ms) What is amitriptyline? flinching -14.988415708894223 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, produce, $x) -> (Amitriptyline, produced dose-related suppression of, flinching) -> flinching (6858ms) What is amitriptyline? generic -15.217708684977932 What is amitriptyline? -> what be [ amitriptyline ] ? -> what be the mening of amitriptyline ? -> $x: (amitriptyline, mening, $x) -> $x: (amitriptyline, go, $x) -> (amitriptyline, went, generic) -> generic (6872ms) Which airlines use Dulles? traffic -4.4776328448786265 Which airlines use Dulles? -> $x: ($x, instance of, airlines) ($x, use, Dulles) -> (traffic, Instance Of, information on airline) (Traffic, will be directed to use, the Dulles Connector Rd) -> traffic (2551ms) Who was the first king of England? The Independent 3.6915554022960855 Who was the first king of England? -> $x: ($x, was the first king of, England) -> (The Independent, was the first King of, England) -> The Independent (6575ms) Who was the first king of England? the Great 2.294095738310092 Who was the first king of England? -> $x: ($x, was the first king of, England) -> (the Great, was the first effective King of, England 871-899) -> the Great (6575ms) Who was the first king of England? St . Edward 2.034275090898541 Who was the first king of England? -> $x: ($x, was the first king of, England) -> (St . Edward, was the first King of, England) -> St . Edward (6575ms) Who was the first king of England? Aquitaine 1.7514266092796316 Who was the first king of England? -> $x: ($x, was the first king of, England) -> (Aquitaine, was the first king of, England) -> Aquitaine (6575ms) Who was the first king of England? Wessex 1.2763498482366042 Who was the first king of England? -> $x: ($x, was the first king of, England) -> (Wessex, was the first king of, all England) -> Wessex (6575ms) Who was the first king of England? Alfred 1.199911201010604 Who was the first king of England? -> $x: ($x, was the first king of, England) -> (Alfred, could be considered the first king of, England) -> Alfred (6653ms) Who was the first king of England? March 24 0.9083446808952851 Who was the first king of England? -> $x: ($x, was the first king of, England) -> (March 24, was the first king of, both England and Scotland) -> March 24 (6652ms) Who was the first king of England? Egbert 0.3996058891190306 Who was the first king of England? -> $x: ($x, was the first king of, England) -> (Egbert, is considered the first king of, all England) -> Egbert (6720ms) Who was the first king of England? ?thelstan 0.3908284878307309 Who was the first king of England? -> $x: ($x, was the first king of, England) -> (?thelstan, was the first real king of, all England) -> ?thelstan (6720ms) Who was the first king of England? the Peaceful -0.21320402373744174 Who was the first king of England? -> $x: ($x, was the first king of, England) -> $x: ($x, first king of, england) -> (the Peaceful, became the first King of, All England) -> the Peaceful (8079ms) Who was the first king of England? the Saxon King Harold II -0.4147025470967739 Who was the first king of England? -> $x: ($x, was the first king of, England) -> $x: ($x, first king of, england) -> (the Saxon King Harold II, became the first King of, England) -> the Saxon King Harold II (8079ms) Who was the first king of England? ?thelstan -0.4665817156725923 Who was the first king of England? -> $x: ($x, was the first king of, England) -> $x: ($x, first king of, england) -> (?thelstan, becomes the first king of, England) -> ?thelstan (8079ms) Who was the first king of England? Athelstan -0.4976249138833535 Who was the first king of England? -> $x: ($x, was the first king of, England) -> (Athelstan, [is] the first king of, all England) -> Athelstan (8079ms) Who was the first king of England? Europe and Egbert -0.7002983911093196 Who was the first king of England? -> $x: ($x, was the first king of, England) -> $x: ($x, first king of, england) -> (Europe and Egbert, became the first King of, England) -> Europe and Egbert (8078ms) Who was the first king of England? Diana -1.8220979762136624 Who was the first king of England? -> $x: ($x, was the first king of, England) -> $x: ($x, first king of, england) -> (Diana, first met the future King of, England) -> Diana (8634ms) Who was the first king of England? Edgar -1.852269988558753 Who was the first king of England? -> $x: ($x, was the first king of, England) -> $x: ($x, first king of, england) -> (Edgar, was crowned first King of, England) -> Edgar (8634ms) Who was the first king of England? James -2.217856548432559 Who was the first king of England? -> $x: ($x, was the first king of, England) -> $x: ($x, first king of, england) -> (James, became the first King of, both Scotland and England) -> James (8634ms) Who was the first king of England? Uther Pendragon -5.841993770885821 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (Uther Pendragon, was king of, England) -> Uther Pendragon (8722ms) Who was the first king of England? Prince William -5.901235050293716 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (Prince William, be King of, England) -> Prince William (8722ms) Who was the first king of England? Westminster Cathedral -6.394104235994662 Who was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (Westminster Cathedral, is the king of, England) -> Westminster Cathedral (8722ms) Who was the first king of England? Henry Tudor -6.596369637085885 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (Henry Tudor, was proclaimed King of, England) -> Henry Tudor (8722ms) Who was the first king of England? William III -6.662370564277884 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (William III, was the king of, England) -> William III (8852ms) Who was the first king of England? Prince Charles -6.8639313891322535 Who was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (Prince Charles, is the potential King of, England) -> Prince Charles (8852ms) Who was the first king of England? George III -6.985121855634414 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (George III, is King of, England) -> George III (8852ms) Who was the first king of England? Charles II -7.008316120421842 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (Charles II, was King of, England) -> Charles II (8852ms) Who was the first king of England? George VI -7.009100571305552 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (George VI, was king of, England) -> George VI (8853ms) Who was the first king of England? the Battle -7.04298844861957 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (the Battle, was crowned King of, England) -> the Battle (8918ms) Who was the first king of England? Edward VII -7.1031836175540075 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (Edward VII, was King of, England) -> Edward VII (8918ms) Who was the first king of England? King Henry II -7.107987327853391 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (King Henry II, was the king of, England) -> King Henry II (8918ms) Who was the first king of England? Edward II -7.126937449710347 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (Edward II, was became king of, England) -> Edward II (8918ms) Who was the first king of England? Richard Plantagenet -7.130065564658534 Who was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (Richard Plantagenet, was the King of, England) -> Richard Plantagenet (8918ms) Who was the first king of England? Edward IV -7.137975263813523 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (Edward IV, was crowned king of, England) -> Edward IV (8925ms) Who was the first king of England? Henry III -7.186044817387286 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (Henry III, is crowned King of, England) -> Henry III (8946ms) Who was the first king of England? George V -7.2098535983034076 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (George V, was crowned King of, England) -> George V (8946ms) Who was the first king of England? One player -7.257352158794075 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (One player, is the king of, England) -> One player (8946ms) Who was the first king of England? DK -7.291301974177678 Who was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (DK, was the King of, England) -> DK (8946ms) Who was the first king of England? the Confessor -7.437851130060085 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (the Confessor, was the King of, England) -> the Confessor (8946ms) Who was the first king of England? Saul -7.4531664807245726 Who was the first king of England? -> who be [ the first ] king of england ? -> what be the name of the first king ? -> $x: ($x, be the name of, the first king) -> (Saul, was the name of, the first king) -> Saul (11730ms) Who was the first king of England? like manner -7.472230817475133 Who was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (like manner, was the king of, England) -> like manner (8970ms) Who was the first king of England? a boy -7.616391642642576 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (a boy, was king of, England) -> a boy (8970ms) Who was the first king of England? England Edward IV -7.621304614660742 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (England Edward IV, was King of, England) -> England Edward IV (8970ms) Who was the first king of England? Israel and Jesus -7.628944453632248 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (Israel and Jesus, was king of, England) -> Israel and Jesus (8970ms) Who was the first king of England? Edward III -7.6557782078483845 Who was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (Edward III, was the king of, England) -> Edward III (8970ms) Who was the first king of England? Washington D.C. -7.6781834570854475 Who was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (Washington D.C., was the King of, England) -> Washington D.C. (8970ms) Who was the first king of England? The Lionheart -7.710961294201408 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (The Lionheart, is King of, England) -> The Lionheart (9138ms) Who was the first king of England? King George III -7.732748569457565 Who was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (King George III, was the king of, England) -> King George III (9138ms) Who was the first king of England? Henry VII -7.743614094003314 Who was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (Henry VII, was the King of, England) -> Henry VII (9138ms) Who was the first king of England? George II -7.7672291029846425 Who was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (George II, was the King of, England) -> George II (9138ms) Who was the first king of England? Richard III -7.775660645247475 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (Richard III, was crowned King of, England) -> Richard III (9139ms) Who was the first king of England? New York state -7.783721122466999 Who was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (New York state, was the King of, England) -> New York state (9176ms) Who was the first king of England? John -7.8855382802396825 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (John, was king of, England) -> John (9244ms) Who was the first king of England? Bono -7.892276558369649 Who was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (Bono, would be the King of, England) -> Bono (9244ms) Who was the first king of England? World history -7.901841043613979 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (World history, was the kings of, England) -> World history (9244ms) Who was the first king of England? the Trust -7.923653187537979 Who was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (the Trust, is the King of, England) -> the Trust (9244ms) Who was the first king of England? Richard II -7.944779014587034 Who was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (Richard II, was the lawful king of, England) -> Richard II (9244ms) Who was the first king of England? Henry VI -7.957157782309271 Who was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (Henry VI, was the crowned King of, England) -> Henry VI (9369ms) Who was the first king of England? James II -7.958926207813759 Who was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (James II, was the crowned king of, England) -> James II (9370ms) Who was the first king of England? the Eighth -8.096951808612207 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (the Eighth, was king of, England) -> the Eighth (9439ms) Who was the first king of England? the Unready -8.096951808612207 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (the Unready, was King of, England) -> the Unready (9439ms) Who was the first king of England? One Monkey -8.111037303988498 Who was the first king of England? -> who be [ the first ] king of england ? -> what be the name of the first king ? -> $x: (the first king, name, $x) -> (the first king, was named, One Monkey) -> One Monkey (11730ms) Who was the first king of England? Henry II -8.230078437337607 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (Henry II, was king of, England) -> Henry II (9942ms) Who was the first king of England? 978 Ethelred -8.235284209358035 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (978 Ethelred, was crowned king of, England) -> 978 Ethelred (9943ms) Who was the first king of England? Prompt:Charles -8.25548608117037 Who was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (Prompt:Charles, is the king of, England) -> Prompt:Charles (9974ms) Who was the first king of England? God -8.256644865267724 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (God, [is] king of, England) -> God (9974ms) Who was the first king of England? England Henry VIII -8.26715190352693 Who was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (England Henry VIII, was the King of, England) -> England Henry VIII (9974ms) Who was the first king of England? Edward V -8.286597761236218 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (Edward V, was king of, England) -> Edward V (9974ms) Who was the first king of England? law courts -8.316126704199649 Who was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (law courts, was to be the King of, England) -> law courts (10061ms) Who was the first king of England? VII -8.320911802390688 Who was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (VII, was the second king of, England) -> VII (10061ms) Who was the first king of England? Connie Justice -8.321306201462669 Who was the first king of England? -> who be the first king of [ england ] ? -> who be president of england ? -> $x: ($x, be president of, england) -> (Connie Justice, is president of, a New England exporter) -> Connie Justice (10061ms) Who was the first king of England? the Christian -8.329915962426135 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king in england ? -> $x: ($x, be king in, england) -> (the Christian, was the most powerful king in, England) -> the Christian (10061ms) Who was the first king of England? ?Pine -8.35964092615967 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king in england ? -> $x: ($x, be king in, england) -> (?Pine, was king in, New England) -> ?Pine (10061ms) Who was the first king of England? Harold Godwinson -8.422927504279581 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> $x: ($x, be crown king of, england) -> (Harold Godwinson, was crowned King of, England) -> Harold Godwinson (13476ms) Who was the first king of England? Edgar St Edgar -8.463332225674815 Who was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (Edgar St Edgar, was the King of, England) -> Edgar St Edgar (11422ms) Who was the first king of England? Harry Lauder -8.467658739404875 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> $x: ($x, be crown king of, england) -> (Harry Lauder, Was crowned King of, England) -> Harry Lauder (13476ms) Who was the first king of England? King Alfred -8.484873323945363 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king in england ? -> $x: ($x, be king in, england) -> (King Alfred, was King in, England) -> King Alfred (11422ms) Who was the first king of England? Norway -8.518015243202289 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (Norway, then is King of, England) -> Norway (11422ms) Who was the first king of England? King George -8.52103754612101 Who was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (King George, was the king of, England) -> King George (11566ms) Who was the first king of England? King James -8.540585518936906 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (King James, was the king of, England) -> King James (11566ms) Who was the first king of England? a particular movie or -8.556336255082481 Who was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (a particular movie or, was the King of, England) -> a particular movie or (11566ms) Who was the first king of England? The 'squirming dog -8.591859000996353 Who was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (The 'squirming dog, then was the King of, England) -> The 'squirming dog (11566ms) Who was the first king of England? Such a monarch -8.604173200591333 Who was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (Such a monarch, is the King of, England) -> Such a monarch (11730ms) Who was the first king of England? a sorry contemptible lot -8.618355310070344 Who was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (a sorry contemptible lot, were the kings of, England) -> a sorry contemptible lot (11730ms) Who was the first king of England? a wretched and peevish fellow -8.654163364676407 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (a wretched and peevish fellow, is this king of, England) -> a wretched and peevish fellow (11821ms) Who was the first king of England? 1167-1216 -8.656199969416615 Who was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (1167-1216, was the king of, England) -> 1167-1216 (11821ms) Who was the first king of England? the Lionheart -8.661090856195187 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (the Lionheart, [is] the king of, England) -> the Lionheart (11821ms) Who was the first king of England? Winston Churchill -8.665928844379325 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> $x: ($x, be the prime minister of, england) -> (Winston Churchill, was the prime minister of, England) -> Winston Churchill (13476ms) Who was the first king of England? Benjamin Disraeli -8.67349437560078 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> $x: ($x, be the prime minister of, england) -> (Benjamin Disraeli, was the prime minister of, England) -> Benjamin Disraeli (13476ms) Who was the first king of England? the 8th -8.710231633493638 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (the 8th, was King of, England) -> the 8th (11872ms) Who was the first king of England? the Lionhearted -8.716367918113269 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (the Lionhearted, [is] king of, England) -> the Lionhearted (11872ms) Who was the first king of England? the Longshanks -8.716367918113269 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (the Longshanks, [is] king of, England) -> the Longshanks (11872ms) Who was the first king of England? Neville Chamberlain -8.728771437518862 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> $x: ($x, be the prime minister of, england) -> (Neville Chamberlain, was the Prime Minister of, England) -> Neville Chamberlain (13476ms) Who was the first king of England? the conquest -8.764373774678482 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (the conquest, was crowned King of, England) -> the conquest (12058ms) Who was the first king of England? money -8.784261600383829 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king in england ? -> $x: ($x, be king in, england) -> (money, is king in, England) -> money (12058ms) Who was the first king of England? Kent -8.803423212942615 Who was the first king of England? -> who be the first king of [ england ] ? -> who be president of england ? -> $x: ($x, be president of, england) -> (Kent, is president of, the All England Club) -> Kent (12059ms) Who was the first king of England? the Anglican Church -8.806675758794672 Who was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (the Anglican Church, was the King of, England) -> the Anglican Church (12059ms) Who was the first king of England? ? Beckham -8.824368392584974 Who was the first king of England? -> who be the first king of [ england ] ? -> who be president of england ? -> $x: ($x, be president of, england) -> (? Beckham, is a vice president of, Englands bid team) -> ? Beckham (12227ms) Who was the first king of England? the Bible -8.828902615077002 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> $x: ($x, be crown king of, england) -> (the Bible, was crowned king of, England) -> the Bible (13476ms) Who was the first king of England? Gary -8.839739897835486 Who was the first king of England? -> who be the first king of [ england ] ? -> who be president of england ? -> $x: ($x, be president of, england) -> (Gary, was president of, the New England chapter) -> Gary (12227ms) Who was the first king of England? Ethelred -8.847974758635548 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (Ethelred, was king of, England) -> Ethelred (12227ms) Who was the first king of England? one day -8.87594655368008 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (one day, be King of, England) -> one day (12333ms) Who was the first king of England? Sir -8.877385595733099 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> $x: ($x, be the people of, england) -> (Sir, hath been the People of, England) -> Sir (13579ms) Who was the first king of England? the Dane -8.890421377870258 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (the Dane, [is] king of, England) -> the Dane (12333ms) Who was the first king of England? Henry -8.895062169512974 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (Henry, was King of, England) -> Henry (12332ms) Who was the first king of England? Arthur -8.914906785641577 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (Arthur, was King of, England) -> Arthur (12477ms) Who was the first king of England? the Congress -8.950041454797066 Who was the first king of England? -> who be the first king of [ england ] ? -> who be president of england ? -> $x: ($x, be president of, england) -> (the Congress, is President of, the CNU New England chapter) -> the Congress (12477ms) Who was the first king of England? William -8.970745564385396 Who was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (William, was the King of, England) -> William (12477ms) Who was the first king of England? Normandy -9.015210593791174 Who was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (Normandy, was the King of, England) -> Normandy (12477ms) Who was the first king of England? Harold -9.042296197081871 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (Harold, was crowned king of, England) -> Harold (13055ms) Who was the first king of England? the general public -9.070198178765661 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (the general public, was the King of, England) -> the general public (13055ms) Who was the first king of England? the game players -9.070516292157052 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> (the game players, will be king of, England) -> the game players (13055ms) Who was the first king of England? Harold Harefoot -9.070844420397098 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> $x: ($x, become king of, england) -> (Harold Harefoot, became King of, England) -> Harold Harefoot (13579ms) Who was the first king of England? Richard Lionheart -9.102429301695656 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> $x: ($x, be crown king of, england) -> (Richard Lionheart, was crowned King of, England) -> Richard Lionheart (13579ms) Who was the first king of England? Edmund Ironside -9.108472710874196 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> $x: ($x, become king of, england) -> (Edmund Ironside, becomes King of, England) -> Edmund Ironside (13579ms) Who was the first king of England? Italy -9.112075195276326 Who was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (Italy, was the rightful King of, England) -> Italy (13579ms) Who was the first king of England? Queen Victoria -9.125997645711907 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> $x: ($x, be queen of, england) -> (Queen Victoria, was Queen of, England) -> Queen Victoria (13660ms) Who was the first king of England? 24 Henry VII -9.130905474297558 Who was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (24 Henry VII, is crowned the King of, England) -> 24 Henry VII (13660ms) Who was the first king of England? France -9.164242878070858 Who was the first king of England? -> who be the first king of [ england ] ? -> who be the king of england ? -> $x: ($x, be the king of, england) -> (France, as was the King of, England) -> France (13660ms) Who was the first king of England? Henry VIII -9.17124477171581 Who was the first king of England? -> who be the first king of [ england ] ? -> who be king of england ? -> $x: ($x, be king of, england) -> $x: ($x, king of, england) -> (Henry VIII, becomes king of, England) -> Henry VIII (13660ms) Who was the first king of England? Mr. Tracy -9.172298379858773 Who was the first king of England? -> who be the first king of [ england ] ? -> who be president of england ? -> $x: ($x, be president of, england) -> (Mr. Tracy, was the President of, the New England Association) -> Mr. Tracy (13660ms) Where is the Orinoco River? swamps -0.8501574509261465 Where is the Orinoco River? -> $x: (the Orinoco River, is in, $x) -> (the river Orinoco, is lost in, swamps) -> swamps (3765ms) Where is the Orinoco River? Authorities Concept Scheme -1.5836501606872182 Where is the Orinoco River? -> $x: (the Orinoco River, is in, $x) -> $x: (orinoco river, in, $x) -> (Orinoco River Delta (Venezuela), In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (4182ms) Where is the Orinoco River? Geographic Names Concept Scheme -1.611139041286378 Where is the Orinoco River? -> $x: (the Orinoco River, is in, $x) -> $x: (orinoco river, in, $x) -> (Orinoco River Delta (Venezuela), In Scheme, Geographic Names Concept Scheme) -> Geographic Names Concept Scheme (4182ms) Where is the Orinoco River? Topical Terms Concept Scheme -1.9410056084762926 Where is the Orinoco River? -> $x: (the Orinoco River, is in, $x) -> $x: (orinoco river, in, $x) -> (Indians of South America--Orinoco River Valley (Venezuela and Colombia), In Scheme, Topical Terms Concept Scheme) -> Topical Terms Concept Scheme (4196ms) Where is the Orinoco River? the past -2.7298229157540597 Where is the Orinoco River? -> $x: (the Orinoco River, is in, $x) -> (the Orinoco river, was an advantage in, the past) -> the past (3765ms) Where is the Orinoco River? the jungles -5.0272908688593025 Where is the Orinoco River? -> $x: (the Orinoco River, is in, $x) -> $x: (orinoco river, in, $x) -> (course Orinoco River area, could be anywhere in, the jungles) -> the jungles (4209ms) Where is the Orinoco River? South America -7.530655358281185 Where is the Orinoco River? -> where be [ the orinoco ] river ? -> what be the length of the orinoco river ? -> $x: (the orinoco river, length, $x) -> $x: ($x, am |, the orinoco river) -> (South America, is, the Orinoco river) -> South America (6188ms) Where is the Orinoco River? Venezuela -8.045796465383106 Where is the Orinoco River? -> where be [ the orinoco ] river ? -> which river be the orinoco ? -> $x: (the orinoco, river, $x) -> (The Orinoco, is a river in, Venezuela) -> Venezuela (6756ms) Where is the Orinoco River? La Concepci?n -8.995310609451826 Where is the Orinoco River? -> where be [ the orinoco ] river ? -> what be the orinoco river call ? -> $x: (the orinoco river, call, $x) -> (the Orinoco River, called, La Concepci?n) -> La Concepci?n (5946ms) Where is the Orinoco River? the Cardinal tetra -9.237565702418337 Where is the Orinoco River? -> where be [ the orinoco ] river ? -> what be the length of the orinoco river ? -> $x: (the orinoco river, length, $x) -> $x: ($x, am |, the orinoco river) -> (the Cardinal tetra, is, the upper Orinoco and Negro rivers) -> the Cardinal tetra (6188ms) Where is the Orinoco River? a large natural area -9.24949534388312 Where is the Orinoco River? -> where be [ the orinoco ] river ? -> what be the length of the orinoco river ? -> $x: (the orinoco river, length, $x) -> $x: ($x, am |, the orinoco river) -> (a large natural area, is located south of, the Orinoco River) -> a large natural area (6188ms) Where is the Orinoco River? too wide a sur-face-it -9.33754465142688 Where is the Orinoco River? -> where be [ the orinoco ] river ? -> what be the length of the orinoco river ? -> $x: (the orinoco river, length, $x) -> $x: ($x, am |, the orinoco river) -> (too wide a sur-face-it, is like, the river Orinoco) -> too wide a sur-face-it (6188ms) Where is the Orinoco River? Estado Delta Amacuro -9.456027157540374 Where is the Orinoco River? -> where be [ the orinoco ] river ? -> what be the length of the orinoco river ? -> $x: (the orinoco river, length, $x) -> $x: ($x, am |, the orinoco river) -> (Estado Delta Amacuro, is situated at, the Orinoco River delta) -> Estado Delta Amacuro (6188ms) Where is the Orinoco River? 326.0 -10.060221033660296 Where is the Orinoco River? -> where be [ the orinoco ] river ? -> what be the length of the orinoco river ? -> $x: (the orinoco river, length, $x) -> $x: (orinoco river, length, $x) -> (Casiquiare canal-Orinoco River hydrographic divide, Length, 326.0) -> 326.0 (5946ms) Where is the Orinoco River? Rhinodoras gallagheri -10.401583055502758 Where is the Orinoco River? -> where be [ the orinoco ] river ? -> what be the name of the orinoco river ? -> $x: (the orinoco river, name, $x) -> $x: (orinoco river, name, $x) -> ('s Orinoco river basin, has been named, Rhinodoras gallagheri) -> Rhinodoras gallagheri (6059ms) Where is the Orinoco River? terms -10.71782762433543 Where is the Orinoco River? -> where be [ the orinoco ] river ? -> which river be the orinoco ? -> $x: (the orinoco, river, $x) -> (The Orinoco, is the world?s fourth largest river in, terms) -> terms (6756ms) Where is the Orinoco River? 61695 -10.85737535689999 Where is the Orinoco River? -> where be [ the orinoco ] river ? -> what be the length of the orinoco river ? -> $x: (the orinoco river, length, $x) -> $x: (orinoco river, length, $x) -> (OrinocoRiverCrossing, Length, 61695) -> 61695 (5946ms) Where is the Orinoco River? 196.0 -10.886728031206037 Where is the Orinoco River? -> where be [ the orinoco ] river ? -> what be the length of the orinoco ? -> $x: (the orinoco, length, $x) -> (The Orinoco Kid, Length, 196.0) -> 196.0 (9182ms) Where is the Orinoco River? 196.64 -10.886728031206037 Where is the Orinoco River? -> where be [ the orinoco ] river ? -> what be the length of the orinoco ? -> $x: (the orinoco, length, $x) -> (The Orinoco Kid, Length, 196.64) -> 196.64 (9182ms) Where is the Orinoco River? 196.4 -10.886728031206037 Where is the Orinoco River? -> where be [ the orinoco ] river ? -> what be the length of the orinoco ? -> $x: (the orinoco, length, $x) -> (The Orinoco Kid, Length, 196.4) -> 196.4 (9182ms) Where is the Orinoco River? The flat area -10.980321542071884 Where is the Orinoco River? -> where be [ the orinoco ] river ? -> what be the length of the orinoco river ? -> $x: (the orinoco river, length, $x) -> $x: ($x, am |, the orinoco river) -> (The flat area, is bounded by, the Orinoco River) -> The flat area (6188ms) Where is the Orinoco River? the ever-wet Amazon -10.991816123393024 Where is the Orinoco River? -> where be [ the orinoco ] river ? -> what be the length of the orinoco river ? -> $x: (the orinoco river, length, $x) -> $x: ($x, am |, the orinoco river) -> (the ever-wet Amazon, are, the Orinoco river ' Llanos) -> the ever-wet Amazon (6212ms) Where is the Orinoco River? Orinoco River Crossing -11.00514910790269 Where is the Orinoco River? -> where be [ the orinoco ] river ? -> what be the length of the orinoco river ? -> $x: (the orinoco river, length, $x) -> $x: (orinoco river, length, $x) -> $x: ($x, am |, orinoco river) -> (Orinoco River Crossing, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Orinoco%20River%20Crossing) -> Orinoco River Crossing (8218ms) Where is the Orinoco River? the fish -11.222080337265837 Where is the Orinoco River? -> where be [ the orinoco ] river ? -> what be the length of the orinoco river ? -> $x: (the orinoco river, length, $x) -> $x: ($x, am |, the orinoco river) -> (the fish, was native to, the upper Orinoco and Negro Rivers) -> the fish (6212ms) Where is the Orinoco River? The region -11.230723498987347 Where is the Orinoco River? -> where be [ the orinoco ] river ? -> what be the length of the orinoco river ? -> $x: (the orinoco river, length, $x) -> $x: ($x, am |, the orinoco river) -> (The region, is very close to, the Orinoco river banks) -> The region (6212ms) Where is the Orinoco River? 333.0 -11.672910016342001 Where is the Orinoco River? -> where be [ the orinoco ] river ? -> what be the length of the orinoco ? -> $x: (the orinoco, length, $x) -> (Megamix: The Summer of '69 / I Useta Lover / Take Me to the Clouds Above / Orinoco Flow / Teenage Kicks / I Still Haven't Found What I'm Looking For, Length, 333.0) -> 333.0 (9182ms) Where is the Orinoco River? 75811 -12.096215563433125 Where is the Orinoco River? -> where be [ the orinoco ] river ? -> what be the length of the orinoco ? -> $x: (the orinoco, length, $x) -> (Bridge over the Orinoco at Ciudad Bol?var, Venezuela, Length, 75811) -> 75811 (9182ms) Where is Merrill Lynch headquartered? London -2.6498899559505795 Where is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> (Merrill Lynch HSBC, will be headquartered in, London) -> London (1492ms) Where is Merrill Lynch headquartered? new york city -3.928222569647443 Where is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> (america merrill lynch, is headquartered in, new york city) -> new york city (1492ms) Where is Merrill Lynch headquartered? New York City -4.523456733948949 Where is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> (Merrill Lynch, is headquartered in, New York City) -> New York City (1493ms) Where is Merrill Lynch headquartered? New York -4.817951509707132 Where is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> (Merrill Lynch and Morgan Stanley, are headquartered in, New York) -> New York (1493ms) Where is Merrill Lynch headquartered? Taipei -4.8732003902919345 Where is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> $x: (Merrill Lynch, be base in, $x) -> (Merrill Lynch analyst Tony Tseng, is based in, Taipei) -> Taipei (3822ms) Where is Merrill Lynch headquartered? Los Angeles -5.443706891771381 Where is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> $x: (merrill lynch, headquarter in, $x) -> (Merrill Lynch, headquartered in, Los Angeles) -> Los Angeles (2573ms) Where is Merrill Lynch headquartered? Europe -5.74169232000138 Where is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> $x: (Merrill Lynch, expand into, $x) -> (Merrill Lynch, have expanded into, Europe) -> Europe (3173ms) Where is Merrill Lynch headquartered? Oregon -6.736357193116286 Where is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> $x: (merrill lynch, headquarter in, $x) -> $x: (merrill lynch, operate in, $x) -> (Merrill Lynch, operate in, Oregon) -> Oregon (4420ms) Where is Merrill Lynch headquartered? The Wellesley Office Park -6.834725240109867 Where is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> $x: (Merrill Lynch, be locate in, $x) -> (Merrill Lynch, is located in, The Wellesley Office Park) -> The Wellesley Office Park (3707ms) Where is Merrill Lynch headquartered? Dow Jones -7.66351653113462 Where is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> $x: (merrill lynch, headquarter in, $x) -> $x: (merrill lynch, do business with, $x) -> (Merrill Lynch, does business with, Dow Jones) -> Dow Jones (4303ms) Where is Merrill Lynch headquartered? Bank -7.753854687549016 Where is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> $x: (merrill lynch, headquarter in, $x) -> $x: (merrill lynch, take over by, $x) -> (Merrill Lynch, is being taken over by, Bank) -> Bank (4388ms) Where is Merrill Lynch headquartered? Jersey City -7.7606496641916065 Where is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> $x: (merrill lynch, headquarter in, $x) -> $x: (merrill lynch, expand in, $x) -> (Merrill Lynch, may expand facilities in, Jersey City) -> Jersey City (4448ms) Where is Merrill Lynch headquartered? Asia -7.804726194560495 Where is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> $x: (merrill lynch, headquarter in, $x) -> $x: (merrill lynch, expand in, $x) -> (Merrill Lynch, have all expanded their presence in, Asia) -> Asia (4448ms) Where is Merrill Lynch headquartered? FINRA -8.080870559913759 Where is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> $x: (merrill lynch, headquarter in, $x) -> $x: (merrill lynch, sanction by, $x) -> (The five Merrill Lynch brokers, sanctioned by, FINRA) -> FINRA (4420ms) Where is Merrill Lynch headquartered? MetroPCS -8.356940841745562 Where is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> $x: (merrill lynch, headquarter in, $x) -> $x: ($x, file a lawsuit against, merrill lynch) -> (MetroPCS, has filed a lawsuit against, Merrill Lynch) -> MetroPCS (4468ms) Where is Merrill Lynch headquartered? Broadway -8.421533647916085 Where is Merrill Lynch headquartered? -> where be [ merrill lynch ] headquarter ? -> which state be merrill lynch locate ? -> $x: ($x, instance of, state) (merrill lynch, locate, $x) -> (Broadway, Instance Of, state of mind) (The Merrill Lynch building, is located south of, Broadway) -> Broadway (4303ms) Where is Merrill Lynch headquartered? the Bank -8.503295727398402 Where is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> $x: (merrill lynch, headquarter in, $x) -> $x: (merrill lynch, take over by, $x) -> (Merrill Lynch, was taken over by, the Bank) -> the Bank (4388ms) Where is Merrill Lynch headquartered? Bank of America -9.93921352298348 Where is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> $x: (merrill lynch, headquarter in, $x) -> $x: (merrill lynch, take over by, $x) -> (Merrill Lynch, is taken over by, Bank of America) -> Bank of America (4388ms) Where is Merrill Lynch headquartered? the Bank of America -10.217049891845114 Where is Merrill Lynch headquartered? -> $x: (Merrill Lynch, is headquartered in, $x) -> $x: (merrill lynch, headquarter in, $x) -> $x: (merrill lynch, take over by, $x) -> (Merrill Lynch, has been taken over by, the Bank of America) -> the Bank of America (4401ms) Where is Merrill Lynch headquartered? John Thain -10.274736953544332 Where is Merrill Lynch headquartered? -> where be [ merrill lynch ] headquarter ? -> who head merrill lynch ? -> $x: ($x, head, merrill lynch) -> (John Thain, is the now-outgoing head of, Merrill Lynch) -> John Thain (7205ms) Where is Merrill Lynch headquartered? Marcus Heilner -10.276004844427568 Where is Merrill Lynch headquartered? -> where be [ merrill lynch ] headquarter ? -> who head merrill lynch ? -> $x: ($x, head, merrill lynch) -> (Marcus Heilner, has been the head of, Merrill Lynch) -> Marcus Heilner (7205ms) Where is Merrill Lynch headquartered? A syndicate -12.363115670685232 Where is Merrill Lynch headquartered? -> where be [ merrill lynch ] headquarter ? -> who head merrill lynch ? -> $x: ($x, head, merrill lynch) -> (A syndicate, headed by, Merrill Lynch) -> A syndicate (7205ms) Where is Merrill Lynch headquartered? women -14.551894914369134 Where is Merrill Lynch headquartered? -> where be [ merrill lynch ] headquarter ? -> which state be merrill lynch locate ? -> $x: ($x, instance of, state) (merrill lynch, locate, $x) -> $x: (state, drug, $x) (merrill lynch, locate, $x) -> (Some states, provide prescription drug assistance to, women) (Merrill Lynch office, is located near, Women) -> women (5410ms) Aspartame is also known as what? brain tumors -11.31443303868324 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be aspartame be be know for ? -> $x: (aspartame, be be know for, $x) -> (aspartame, is known for causing, brain tumors) -> brain tumors (5344ms) Aspartame is also known as what? Multiple Sclerosis -11.384395198461963 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, Multiple Sclerosis) -> Multiple Sclerosis (7841ms) Aspartame is also known as what? Birth Defects -11.433026082949814 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, Birth Defects) -> Birth Defects (7841ms) Aspartame is also known as what? brain cancer -11.683872983523386 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, causes, brain cancer) -> brain cancer (7841ms) Aspartame is also known as what? metabolic acidosis -11.7097053195697 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, metabolic acidosis) -> metabolic acidosis (7841ms) Aspartame is also known as what? memory loss -11.710654074098052 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, memory loss) -> memory loss (7841ms) Aspartame is also known as what? a known neurotoxin -11.727256751822662 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, a known neurotoxin) -> a known neurotoxin (6611ms) Aspartame is also known as what? brain damage -11.743244176180307 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, cause, brain damage) -> brain damage (7841ms) Aspartame is also known as what? sudden cardiac death -11.746108345895435 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, causes, sudden cardiac death) -> sudden cardiac death (8008ms) Aspartame is also known as what? birth defects -11.798875554825461 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, birth defects) -> birth defects (8008ms) Aspartame is also known as what? drug -11.813782452054339 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is a, drug) -> drug (6611ms) Aspartame is also known as what? food -11.813782452054339 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is a, food) -> food (6611ms) Aspartame is also known as what? diabetic retinopathy -11.819679707466822 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be a substitute for aspartame be ? -> $x: ($x, be a substitute for, aspartame) -> $x: ($x, often be, aspartame) -> (diabetic retinopathy, is often, aspartame retinopathy) -> diabetic retinopathy (8756ms) Aspartame is also known as what? manic depression -11.927282535588345 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, manic depression) -> manic depression (8008ms) Aspartame is also known as what? seizures -11.936519662295854 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be aspartame be be know for ? -> $x: (aspartame, be be know for, $x) -> (aspartame, is known for causing, seizures) -> seizures (5343ms) Aspartame is also known as what? New York -11.952894411442442 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, take, $x) -> (aspartame brain tumor cases, are being taken in, New York) -> New York (6611ms) Aspartame is also known as what? a known destroyer of DNA -12.046475056141691 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, a known destroyer of DNA) -> a known destroyer of DNA (6611ms) Aspartame is also known as what? sugar substitute -12.049653902128586 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, sugar substitute) -> sugar substitute (14483ms) Aspartame is also known as what? leukemias/lymphomas -12.062021352504622 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, caused, leukemias/lymphomas) -> leukemias/lymphomas (8008ms) Aspartame is also known as what? so poisonous -12.063998021319495 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, so poisonous) -> so poisonous (6611ms) Aspartame is also known as what? anaphylactic shock -12.082012110307527 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, go, $x) -> (aspartame, have gone into, anaphylactic shock) -> anaphylactic shock (6686ms) Aspartame is also known as what? an adjuvant -12.12487723753355 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, an adjuvant) -> an adjuvant (6686ms) Aspartame is also known as what? soft drinks -12.126168294693674 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the condition of aspartame be ? -> $x: (aspartame, condition, $x) -> $x: (aspartame, be fully, $x) -> (Aspartame, was fully marketed for, soft drinks) -> soft drinks (12977ms) Aspartame is also known as what? Methanol Toxicity -12.13935599141901 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, Cause, Methanol Toxicity) -> Methanol Toxicity (8008ms) Aspartame is also known as what? severe health problems -12.154753162651167 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, caused, severe health problems) -> severe health problems (8202ms) Aspartame is also known as what? reproductive outcome -12.190231441619233 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the effect of aspartame be ? -> $x: (aspartame, effect, $x) -> (aspartame, is having adverse effects on, reproductive outcome) -> reproductive outcome (8203ms) Aspartame is also known as what? nerve cells -12.192457331409862 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, go, $x) -> (Aspartame, goes to, nerve cells) -> nerve cells (6686ms) Aspartame is also known as what? brain function -12.196658016152018 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the effect of aspartame be ? -> $x: (aspartame, effect, $x) -> (Aspartame, has a direct effect on, brain function) -> brain function (8202ms) Aspartame is also known as what? a higher incidence -12.201123687026437 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, caused, a higher incidence) -> a higher incidence (8202ms) Aspartame is also known as what? well known neurotoxin -12.20361106467892 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, well known neurotoxin) -> well known neurotoxin (14483ms) Aspartame is also known as what? Acesulfame K -12.209394211795198 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be a substitute for aspartame be ? -> $x: ($x, be a substitute for, aspartame) -> $x: ($x, often be, aspartame) -> (Acesulfame K, is often blended with, aspartame) -> Acesulfame K (8755ms) Aspartame is also known as what? brain tumors and cancer -12.230709392841135 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, causes, brain tumors and cancer) -> brain tumors and cancer (8203ms) Aspartame is also known as what? Gulf War illness -12.239536375684951 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, caused, Gulf War illness) -> Gulf War illness (8202ms) Aspartame is also known as what? Human Brain Cancer -12.242425792572925 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, Cause, Human Brain Cancer) -> Human Brain Cancer (8288ms) Aspartame is also known as what? seizures and degrades -12.245268965976958 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, causes, seizures and degrades) -> seizures and degrades (8287ms) Aspartame is also known as what? a multipotential carcinogen -12.25711884408163 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, a multipotential carcinogen) -> a multipotential carcinogen (6686ms) Aspartame is also known as what? 200 million people -12.26402020450459 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, go, $x) -> (Aspartame, is going to kill, 200 million people) -> 200 million people (6686ms) Aspartame is also known as what? sweetening agent -12.289249811839268 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, sweetening agent) -> sweetening agent (14483ms) Aspartame is also known as what? convulsions -12.290110712880999 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, caused, convulsions) -> convulsions (8287ms) Aspartame is also known as what? brain tumors and seizures -12.295812346093253 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, caused, brain tumors and seizures) -> brain tumors and seizures (8288ms) Aspartame is also known as what? an artificial sweetener -12.301516564599401 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, an artificial sweetener) -> an artificial sweetener (6686ms) Aspartame is also known as what? chronic methanol poisoning -12.307986395442112 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, causes, chronic methanol poisoning) -> chronic methanol poisoning (8287ms) Aspartame is also known as what? a multi-potential carcinogen -12.333019772295026 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, a multi-potential carcinogen) -> a multi-potential carcinogen (6783ms) Aspartame is also known as what? food supply -12.342475455553952 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, food supply) -> food supply (14483ms) Aspartame is also known as what? lupus -12.360026955336194 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, causes, lupus) -> lupus (8287ms) Aspartame is also known as what? a known Excitotoxin -12.360742650789636 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, a known Excitotoxin) -> a known Excitotoxin (6783ms) Aspartame is also known as what? cancer ? lymphoma and leukemia -12.3631751480373 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, caused, cancer ? lymphoma and leukemia) -> cancer ? lymphoma and leukemia (8331ms) Aspartame is also known as what? aspartame Neotame -12.367174459903682 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be a substitute for aspartame be ? -> $x: ($x, be a substitute for, aspartame) -> $x: ($x, be a derivative of, aspartame) -> (aspartame Neotame, is a derivative of, aspartame) -> aspartame Neotame (8331ms) Aspartame is also known as what? 50 percent phenylalanine -12.37126845070766 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, 50 percent phenylalanine) -> 50 percent phenylalanine (6783ms) Aspartame is also known as what? better than sugar -12.376646042585726 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, better than sugar) -> better than sugar (6783ms) Aspartame is also known as what? a Monsanto product -12.38762129549318 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, was, a Monsanto product) -> a Monsanto product (6783ms) Aspartame is also known as what? full meals -12.394044887070937 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, take, $x) -> (aspartame, is taken with, full meals) -> full meals (6783ms) Aspartame is also known as what? an rDNA derivative -12.400407926275445 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, an rDNA derivative) -> an rDNA derivative (6862ms) Aspartame is also known as what? carcinogenic agent -12.400674506468935 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, carcinogenic agent) -> carcinogenic agent (14483ms) Aspartame is also known as what? satiety and hunger -12.417627351146443 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the effect of aspartame be ? -> $x: (aspartame, effect, $x) -> (Stevia and aspartame, had similar effects on, satiety and hunger) -> satiety and hunger (8330ms) Aspartame is also known as what? illness and death -12.420796959513023 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, illness and death) -> illness and death (8330ms) Aspartame is also known as what? agonizing joint pain -12.421288894121115 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, agonizing joint pain) -> agonizing joint pain (8330ms) Aspartame is also known as what? safe sweetener -12.42150450213187 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, safe sweetener) -> safe sweetener (14483ms) Aspartame is also known as what? NutraSweet -12.447979183109535 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (NutraSweet, Instance Of, aspartame product) -> NutraSweet (15336ms) Aspartame is also known as what? 200 times sweeter than sugar -12.449077441917293 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, 200 times sweeter than sugar) -> 200 times sweeter than sugar (6861ms) Aspartame is also known as what? mood and cognition -12.449493650594409 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the effect of aspartame be ? -> $x: (aspartame, effect, $x) -> (Aspartame, has a profound effect on, mood and cognition) -> mood and cognition (8331ms) Aspartame is also known as what? Obesity Dear Editor -12.45528065077415 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, Obesity Dear Editor) -> Obesity Dear Editor (8411ms) Aspartame is also known as what? sudden death -12.456441294095963 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, sudden death) -> sudden death (8411ms) Aspartame is also known as what? synthetic sweetener -12.458363735614013 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, synthetic sweetener) -> synthetic sweetener (14483ms) Aspartame is also known as what? health agencies -12.46045419895834 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, take, $x) -> (aspartame, is being taken seriously by, health agencies) -> health agencies (6862ms) Aspartame is also known as what? common sweetener -12.46346531880098 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, common sweetener) -> common sweetener (14484ms) Aspartame is also known as what? polychemical sensitivity syndrome -12.46903559220787 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, polychemical sensitivity syndrome) -> polychemical sensitivity syndrome (8411ms) Aspartame is also known as what? an irregular heart rhythm -12.473280949286643 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, an irregular heart rhythm) -> an irregular heart rhythm (8411ms) Aspartame is also known as what? a safe sugar substitute -12.474418047331056 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, a safe sugar substitute) -> a safe sugar substitute (6861ms) Aspartame is also known as what? safe for pregnant women -12.477703192179716 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, safe for pregnant women) -> safe for pregnant women (6862ms) Aspartame is also known as what? carbohydrate craving -12.483168892637185 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, carbohydrate craving) -> carbohydrate craving (8411ms) Aspartame is also known as what? much sweeter than sugar -12.486964355648698 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, much sweeter than sugar) -> much sweeter than sugar (6861ms) Aspartame is also known as what? chronic fatigue -12.491317237150092 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, chronic fatigue) -> chronic fatigue (8412ms) Aspartame is also known as what? thyroid dysfunction and hyperthyroidism -12.498685866149826 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, thyroid dysfunction and hyperthyroidism) -> thyroid dysfunction and hyperthyroidism (8514ms) Aspartame is also known as what? Calcium Phosphate -12.510913434378224 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (Calcium Phosphate, Instance Of, aspartame related product) -> Calcium Phosphate (15336ms) Aspartame is also known as what? confusion and memory loss -12.514601432178743 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, confusion and memory loss) -> confusion and memory loss (8514ms) Aspartame is also known as what? the FDA such as -12.515289876456507 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, take, $x) -> (the aspartame issue, takes statements from, the FDA such as) -> the FDA such as (6890ms) Aspartame is also known as what? Proxy being introduced in Sachets -12.534389378345322 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (Proxy being introduced in Sachets, Instance Of, sugar substitute containing aspartame) -> Proxy being introduced in Sachets (15336ms) Aspartame is also known as what? new-style intense sweetener of amino acid -12.53931054782444 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, new-style intense sweetener of amino acid) -> new-style intense sweetener of amino acid (14650ms) Aspartame is also known as what? cancer -12.543968590768454 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, cancer) -> cancer (8514ms) Aspartame is also known as what? 180 times sweeter than sucrose -12.555671653515514 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, 180 times sweeter than sucrose) -> 180 times sweeter than sucrose (6890ms) Aspartame is also known as what? Dicalcium Phosphate -12.555807389813367 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (Dicalcium Phosphate, Instance Of, aspartame related offer) -> Dicalcium Phosphate (15337ms) Aspartame is also known as what? Activated Carbon -12.555807389813367 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (Activated Carbon, Instance Of, aspartame related offer) -> Activated Carbon (15337ms) Aspartame is also known as what? noncaloric sweetener -12.56129316896587 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, noncaloric sweetener) -> noncaloric sweetener (14651ms) Aspartame is also known as what? an irregular heart rate -12.571190099681054 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, an irregular heart rate) -> an irregular heart rate (8514ms) Aspartame is also known as what? causative factor -12.581536240937673 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, causative factor) -> causative factor (14651ms) Aspartame is also known as what? www.nutrasweet.com -12.581735694793686 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, go, $x) -> (aspartame, please go to, www.nutrasweet.com) -> www.nutrasweet.com (6889ms) Aspartame is also known as what? hazardous product -12.583082568136124 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, hazardous product) -> hazardous product (14650ms) Aspartame is also known as what? infertility -12.58638157264314 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, infertility) -> infertility (8515ms) Aspartame is also known as what? dangerous drug -12.596654146195892 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, dangerous drug) -> dangerous drug (14651ms) Aspartame is also known as what? Cori Brackett -12.596988942088116 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (Cori Brackett, Instance Of, aspartame victim) -> Cori Brackett (15336ms) Aspartame is also known as what? neurotoxic substance -12.600171526578935 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, neurotoxic substance) -> neurotoxic substance (14650ms) Aspartame is also known as what? Aspartic acid -12.601101708046775 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (Aspartic acid, Instance Of, component of aspartame) -> Aspartic acid (15336ms) Aspartame is also known as what? headache -12.60141295227096 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, caused, headache) -> headache (8514ms) Aspartame is also known as what? safe low-calorie sweetener -12.604388183698797 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, safe low-calorie sweetener) -> safe low-calorie sweetener (14651ms) Aspartame is also known as what? flavoured water -12.608782488180108 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be a substitute for aspartame be ? -> $x: ($x, be a substitute for, aspartame) -> $x: ($x, often be, aspartame) -> (flavoured water, is often sweetened with, aspartame) -> flavoured water (8755ms) Aspartame is also known as what? approximately 200 times sweeter than sugar -12.609505415900376 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, approximately 200 times sweeter than sugar) -> approximately 200 times sweeter than sugar (6890ms) Aspartame is also known as what? food chemical -12.610168711708456 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, food chemical) -> food chemical (14650ms) Aspartame is also known as what? high intensity, no-calorie sweetener -12.61302473591769 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, high intensity, no-calorie sweetener) -> high intensity, no-calorie sweetener (15400ms) Aspartame is also known as what? harmful chemical -12.61460667422099 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, harmful chemical) -> harmful chemical (15400ms) Aspartame is also known as what? artificial or intense sweetener -12.629475800978032 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, artificial or intense sweetener) -> artificial or intense sweetener (15400ms) Aspartame is also known as what? responsible for 75 percent of complaints -12.629906534764327 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, responsible for 75 percent of complaints) -> responsible for 75 percent of complaints (6889ms) Aspartame is also known as what? 200 times sweeter than normal sugar -12.629906534764327 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, 200 times sweeter than normal sugar) -> 200 times sweeter than normal sugar (6889ms) Aspartame is also known as what? PUR Gum -12.630649464137402 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (PUR Gum, Instance Of, aspartame free gum) -> PUR Gum (15400ms) Aspartame is also known as what? ant poison -12.632792895507503 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, ant poison) -> ant poison (15401ms) Aspartame is also known as what? low -12.638789603294189 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, low) -> low (7047ms) Aspartame is also known as what? fried food -12.645184303120105 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, fried food) -> fried food (15401ms) Aspartame is also known as what? addictive neurotoxin -12.64711944726009 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, addictive neurotoxin) -> addictive neurotoxin (15401ms) Aspartame is also known as what? dipeptide compound -12.64711944726009 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, dipeptide compound) -> dipeptide compound (15401ms) Aspartame is also known as what? sugar sweetener -12.64711944726009 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, sugar sweetener) -> sugar sweetener (15565ms) Aspartame is also known as what? non-calorie sweetener -12.64888866708615 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, non-calorie sweetener) -> non-calorie sweetener (15565ms) Aspartame is also known as what? one?s health -12.649598590949218 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the effect of aspartame be ? -> $x: (aspartame, effect, $x) -> (aspartame, has any negative effects on, one?s health) -> one?s health (8554ms) Aspartame is also known as what? protein -12.651076822307957 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the function of aspartame be ? -> $x: (aspartame, function, $x) -> (Aspartame, has the same metabolic function as, protein) -> protein (8553ms) Aspartame is also known as what? evil substance -12.65321243427408 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, evil substance) -> evil substance (15565ms) Aspartame is also known as what? so safe -12.65334681376336 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, so safe) -> so safe (7046ms) Aspartame is also known as what? brand name -12.658323734347638 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, brand name) -> brand name (15565ms) Aspartame is also known as what? nerve toxin -12.661925406182107 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, nerve toxin) -> nerve toxin (15565ms) Aspartame is also known as what? low calorie, artificial sweetener -12.663136323027317 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, low calorie, artificial sweetener) -> low calorie, artificial sweetener (15565ms) Aspartame is also known as what? safe for use by people with epilepsy -12.664483177098695 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, safe for use by people with epilepsy) -> safe for use by people with epilepsy (7046ms) Aspartame is also known as what? non-saccharide artificial sweetener -12.671421832693708 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, non-saccharide artificial sweetener) -> non-saccharide artificial sweetener (15565ms) Aspartame is also known as what? Diet Coke -12.671421832693708 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (Diet Coke, Instance Of, aspartame product) -> Diet Coke (16072ms) Aspartame is also known as what? great tasting sweetener -12.671421832693708 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, great tasting sweetener) -> great tasting sweetener (16072ms) Aspartame is also known as what? moderately powerful genotoxin -12.671421832693708 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, moderately powerful genotoxin) -> moderately powerful genotoxin (16072ms) Aspartame is also known as what? a carcinogen -12.672830268319839 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, a carcinogen) -> a carcinogen (7047ms) Aspartame is also known as what? 160 to 220 times sweeter than sugar -12.675623132493666 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, 160 to 220 times sweeter than sugar) -> 160 to 220 times sweeter than sugar (7047ms) Aspartame is also known as what? compound of phenylalanine -12.677331557460953 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, compound of phenylalanine) -> compound of phenylalanine (16072ms) Aspartame is also known as what? Dietary excitotoxins -12.677331557460953 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, Dietary excitotoxins) -> Dietary excitotoxins (16072ms) Aspartame is also known as what? DKP -12.677331557460953 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (DKP, Instance Of, byproduct of aspartame) -> DKP (16072ms) Aspartame is also known as what? general-purpose sweetener -12.677331557460953 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, general-purpose sweetener) -> general-purpose sweetener (16072ms) Aspartame is also known as what? leading cause of obesity -12.683172593801295 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, leading cause of obesity) -> leading cause of obesity (16072ms) Aspartame is also known as what? a neurotoxin -12.685163690610818 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, a neurotoxin) -> a neurotoxin (7047ms) Aspartame is also known as what? diet soda -12.686103677927989 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (diet soda, Instance Of, aspartame product) -> diet soda (16113ms) Aspartame is also known as what? individuals -12.687998704845551 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the effect of aspartame be ? -> $x: (aspartame, effect, $x) -> (aspartame, only causes adverse effects in, individuals) -> individuals (8554ms) Aspartame is also known as what? organic compound -12.688424384717798 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, organic compound) -> organic compound (16113ms) Aspartame is also known as what? Senator Howard Metzenbaum -12.690625203626476 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (Senator Howard Metzenbaum, Instance Of, vocal critic of aspartame) -> Senator Howard Metzenbaum (16113ms) Aspartame is also known as what? hard drug -12.692979774003506 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, hard drug) -> hard drug (16113ms) Aspartame is also known as what? low-calorie alternative -12.697895388479951 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, low-calorie alternative) -> low-calorie alternative (16113ms) Aspartame is also known as what? white, odourless powder -12.698840274869509 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, white, odourless powder) -> white, odourless powder (16113ms) Aspartame is also known as what? a sweetener -12.699149287434832 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, use, $x) -> (Aspartame, is used as, a sweetener) -> a sweetener (16113ms) Aspartame is also known as what? expensive ingredient -12.699237377715649 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, expensive ingredient) -> expensive ingredient (16113ms) Aspartame is also known as what? healthy sugar substitute -12.71631578812885 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, healthy sugar substitute) -> healthy sugar substitute (16150ms) Aspartame is also known as what? Stevia amoroso -12.71631578812885 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (Stevia amoroso, Instance Of, accustomed aspartame) -> Stevia amoroso (16228ms) Aspartame is also known as what? form IV -12.71631578812885 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (form IV, Instance Of, adduct of aspartame) -> form IV (16189ms) Aspartame is also known as what? heavily researched product -12.71631578812885 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, heavily researched product) -> heavily researched product (16189ms) Aspartame is also known as what? kind of artificial food -12.71631578812885 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, kind of artificial food) -> kind of artificial food (16228ms) Aspartame is also known as what? dangerous collection of chemical -12.71631578812885 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, dangerous collection of chemical) -> dangerous collection of chemical (16228ms) Aspartame is also known as what? endocrine disrupting drug -12.71631578812885 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, endocrine disrupting drug) -> endocrine disrupting drug (16150ms) Aspartame is also known as what? dangerous, carcinogenic toxin -12.71631578812885 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, dangerous, carcinogenic toxin) -> dangerous, carcinogenic toxin (16151ms) Aspartame is also known as what? non-saccharine, artificial sweetener -12.71631578812885 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, non-saccharine, artificial sweetener) -> non-saccharine, artificial sweetener (16189ms) Aspartame is also known as what? non sugar sweetener -12.71631578812885 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, non sugar sweetener) -> non sugar sweetener (16150ms) Aspartame is also known as what? great ant poison -12.71631578812885 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, great ant poison) -> great ant poison (16228ms) Aspartame is also known as what? chemical sugar substitute -12.71631578812885 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, chemical sugar substitute) -> chemical sugar substitute (16150ms) Aspartame is also known as what? lowcalorie, intensive sweetener -12.71631578812885 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, lowcalorie, intensive sweetener) -> lowcalorie, intensive sweetener (16189ms) Aspartame is also known as what? artificial non-nutritive sweetner -12.71631578812885 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, artificial non-nutritive sweetner) -> artificial non-nutritive sweetner (16189ms) Aspartame is also known as what? esterified, dipeptide sweetener -12.71631578812885 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, esterified, dipeptide sweetener) -> esterified, dipeptide sweetener (16189ms) Aspartame is also known as what? synthetic sugar substitute -12.71631578812885 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, synthetic sugar substitute) -> synthetic sugar substitute (16189ms) Aspartame is also known as what? good quality sweetener -12.71631578812885 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, good quality sweetener) -> good quality sweetener (16189ms) Aspartame is also known as what? one of the most thoroughly studied food additives -12.72274692780651 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, one of the most thoroughly studied food additives) -> one of the most thoroughly studied food additives (7099ms) Aspartame is also known as what? food aspartame -12.726876046484296 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (food aspartame, Instance Of, aspartame related product) -> food aspartame (16228ms) Aspartame is also known as what? sugar free -12.726876046484296 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (sugar free, Instance Of, aspartame product) -> sugar free (16228ms) Aspartame is also known as what? chinese aspartame -12.726876046484296 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (chinese aspartame, Instance Of, aspartame related product) -> chinese aspartame (16228ms) Aspartame is also known as what? Ajinomoto Food Ingredients -12.731397572182784 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (Ajinomoto Food Ingredients, Instance Of, leading manufacturer of aspartame) -> Ajinomoto Food Ingredients (16265ms) Aspartame is also known as what? an artificial sweetener used in place of sugar -12.732008091275492 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, an artificial sweetener used in place of sugar) -> an artificial sweetener used in place of sugar (7099ms) Aspartame is also known as what? conflicting sweetener -12.732785771251539 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, conflicting sweetener) -> conflicting sweetener (16265ms) Aspartame is also known as what? deadly additive -12.732785771251539 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, deadly additive) -> deadly additive (16265ms) Aspartame is also known as what? protein sweetener -12.732785771251539 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, protein sweetener) -> protein sweetener (16265ms) Aspartame is also known as what? excitoneurotoxic drug -12.732785771251539 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, excitoneurotoxic drug) -> excitoneurotoxic drug (16265ms) Aspartame is also known as what? quarrelsome chemical -12.732785771251539 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, quarrelsome chemical) -> quarrelsome chemical (16265ms) Aspartame is also known as what? brain tumor -12.733101624935607 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (brain tumor, Instance Of, aspartame & disease) -> brain tumor (16265ms) Aspartame is also known as what? brain lesion -12.733101624935607 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (brain lesion, Instance Of, aspartame & disease) -> brain lesion (16265ms) Aspartame is also known as what? sweet substance -12.73777094255623 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, sweet substance) -> sweet substance (16303ms) Aspartame is also known as what? migraine trigger -12.741444226481944 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, migraine trigger) -> migraine trigger (16303ms) Aspartame is also known as what? controversial product -12.741925251772523 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, controversial product) -> controversial product (16303ms) Aspartame is also known as what? simple ingredient -12.742900952972832 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, simple ingredient) -> simple ingredient (16303ms) Aspartame is also known as what? caloric sweetener -12.743067686761039 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, caloric sweetener) -> caloric sweetener (16303ms) Aspartame is also known as what? harmless substance -12.743636473998933 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, harmless substance) -> harmless substance (16303ms) Aspartame is also known as what? DiketopiperazineDKP -12.74373423030465 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (DiketopiperazineDKP, Instance Of, byproduct of aspartame metabolism) -> DiketopiperazineDKP (16303ms) Aspartame is also known as what? dangerous -12.744560573390133 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, dangerous) -> dangerous (7099ms) Aspartame is also known as what? the Internet -12.74764102777023 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the condition of aspartame be ? -> $x: (aspartame, condition, $x) -> $x: (aspartame, circulate, $x) -> (aspartame, has recently been circulating on, the Internet) -> the Internet (12632ms) Aspartame is also known as what? choice then sugar substitute -12.748802647018767 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, choice then sugar substitute) -> choice then sugar substitute (16341ms) Aspartame is also known as what? teratogen, endocrine disrupting chemical -12.748802647018767 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, teratogen, endocrine disrupting chemical) -> teratogen, endocrine disrupting chemical (16341ms) Aspartame is also known as what? artificial or low-cal sweetener -12.748802647018767 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, artificial or low-cal sweetener) -> artificial or low-cal sweetener (16379ms) Aspartame is also known as what? leading low calorie sweetener -12.748802647018767 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, leading low calorie sweetener) -> leading low calorie sweetener (16341ms) Aspartame is also known as what? popular type of artificial sweetener -12.748802647018767 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, popular type of artificial sweetener) -> popular type of artificial sweetener (16341ms) Aspartame is also known as what? first group fall product -12.748802647018767 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, first group fall product) -> first group fall product (16341ms) Aspartame is also known as what? Dr. Roberts -12.748802647018767 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (Dr. Roberts, Instance Of, world aspartame expert) -> Dr. Roberts (16303ms) Aspartame is also known as what? molecule composed of three component -12.748802647018767 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, molecule composed of three component) -> molecule composed of three component (16379ms) Aspartame is also known as what? very popular zero-calorie sweetener -12.748802647018767 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, very popular zero-calorie sweetener) -> very popular zero-calorie sweetener (16379ms) Aspartame is also known as what? CLP Chemcials, L.P. -12.748802647018767 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (CLP Chemcials, L.P., Instance Of, distributor of Aspartame) -> CLP Chemcials, L.P. (16341ms) Aspartame is also known as what? John Garst, Pd.D. -12.748802647018767 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (John Garst, Pd.D., Instance Of, aspartame flack) -> John Garst, Pd.D. (16379ms) Aspartame is also known as what? excellent acceptable sugar substitute -12.748802647018767 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, excellent acceptable sugar substitute) -> excellent acceptable sugar substitute (16341ms) Aspartame is also known as what? synthetic, low-calorie sugar substitute -12.748802647018767 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, synthetic, low-calorie sugar substitute) -> synthetic, low-calorie sugar substitute (16341ms) Aspartame is also known as what? an excitotoxin -12.749101973031543 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, an excitotoxin) -> an excitotoxin (7099ms) Aspartame is also known as what? rtificial saweetners -12.74923683631188 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, rtificial saweetners) -> rtificial saweetners (16379ms) Aspartame is also known as what? really bad -12.75246228005496 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, really bad) -> really bad (7099ms) Aspartame is also known as what? artificial product -12.75334960227054 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, artificial product) -> artificial product (16379ms) Aspartame is also known as what? artificial ingredient -12.753787130537935 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (aspartame, Instance Of, artificial ingredient) -> artificial ingredient (16379ms) Aspartame is also known as what? Im afraid so. Neotame -12.754959469839207 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (Im afraid so. Neotame, Instance Of, modified version of aspartame) -> Im afraid so. Neotame (16415ms) Aspartame is also known as what? J Starr Hull -12.754959469839207 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (J Starr Hull, Instance Of, book exposing aspartame danger) -> J Starr Hull (16379ms) Aspartame is also known as what? a dipeptide -12.76084187139285 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, a dipeptide) -> a dipeptide (7099ms) Aspartame is also known as what? diet coke -12.771770001919439 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (diet coke, Instance Of, aspartame product) -> diet coke (16415ms) Aspartame is also known as what? diet cola -12.771770001919439 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (diet cola, Instance Of, aspartame product) -> diet cola (16415ms) Aspartame is also known as what? diet drink -12.771770001919439 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (diet drink, Instance Of, aspartame product) -> diet drink (16415ms) Aspartame is also known as what? soft drink -12.771770001919439 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (soft drink, Instance Of, aspartame product) -> soft drink (16415ms) Aspartame is also known as what? a disease -12.775316695583026 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, a disease) -> a disease (7230ms) Aspartame is also known as what? well-characterized, thoroughly studied, high-intensity sweetener -12.776291527617927 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, well-characterized, thoroughly studied, high-intensity sweetener) -> well-characterized, thoroughly studied, high-intensity sweetener (16415ms) Aspartame is also known as what? new generation low calorie sweetener -12.776291527617927 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, new generation low calorie sweetener) -> new generation low calorie sweetener (16415ms) Aspartame is also known as what? healthy -12.788828035800801 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, healthy) -> healthy (7230ms) Aspartame is also known as what? artificial Low calorie sweetener -12.789930309056766 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, artificial Low calorie sweetener) -> artificial Low calorie sweetener (16453ms) Aspartame is also known as what? ordinary thomas kinkade screen saver -12.79985342527435 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (ordinary thomas kinkade screen saver, Instance Of, aspartame of carbon) -> ordinary thomas kinkade screen saver (16453ms) Aspartame is also known as what? Janet Starr Hull -12.79985342527435 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (Janet Starr Hull, Instance Of, book exposing aspartame danger) -> Janet Starr Hull (16453ms) Aspartame is also known as what? Stevia or Agave -12.79985342527435 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (Stevia or Agave, Instance Of, good sweetener versus Aspartame) -> Stevia or Agave (16453ms) Aspartame is also known as what? baby aspirin -12.804256860809353 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (baby aspirin, Instance Of, meds with aspartame) -> baby aspirin (16453ms) Aspartame is also known as what? very bad -12.812343056924888 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, very bad) -> very bad (7230ms) Aspartame is also known as what? clinical trials -12.826838760500362 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, use, $x) -> (Aspartame, is particularly convenient to use in, clinical trials) -> clinical trials (16453ms) Aspartame is also known as what? okay -12.82861948058325 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, okay) -> okay (7230ms) Aspartame is also known as what? artificial sweeteners -12.828747476544397 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, use, $x) -> (aspartame, is used in, artificial sweeteners) -> artificial sweeteners (16533ms) Aspartame is also known as what? an excipient -12.829230576805669 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, use, $x) -> (Aspartame, is only used as, an excipient) -> an excipient (16533ms) Aspartame is also known as what? crystal light -12.831745741408513 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (crystal light, Instance Of, drinking beverage with aspartame) -> crystal light (16534ms) Aspartame is also known as what? yeast extract -12.831745741408513 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (yeast extract, Instance Of, aspartame and food additive) -> yeast extract (16534ms) Aspartame is also known as what? aspartic acid -12.831745741408513 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (aspartic acid, Instance Of, breakdown product in aspartame) -> aspartic acid (16534ms) Aspartame is also known as what? meat product -12.831745741408513 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, instance of, aspartame) -> (meat product, Instance Of, aspartame and normal food) -> meat product (16533ms) Aspartame is also known as what? Part 1 -12.831814703571691 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, go, $x) -> (Aspartame Part, would like to go to, Part 1) -> Part 1 (7230ms) Aspartame is also known as what? nasty -12.842987240730057 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, nasty) -> nasty (7299ms) Aspartame is also known as what? extremely harmful -12.846961629246325 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, extremely harmful) -> extremely harmful (7299ms) Aspartame is also known as what? evil -12.862065779872081 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, evil) -> evil (7299ms) Aspartame is also known as what? a low-calorie -12.874439949662186 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, a low-calorie) -> a low-calorie (7299ms) Aspartame is also known as what? Heath Ledger -12.876509882829113 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, like, $x) -> (aspartame, have died like, Heath Ledger) -> Heath Ledger (13563ms) Aspartame is also known as what? a substitute sweetener -12.890013814557848 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, use, $x) -> (Aspartame, is used as, a substitute sweetener) -> a substitute sweetener (16663ms) Aspartame is also known as what? safe or harmful -12.891981881515271 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, safe or harmful) -> safe or harmful (7299ms) Aspartame is also known as what? Stevia -12.893407793850393 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be a substitute for aspartame be ? -> $x: ($x, be a substitute for, aspartame) -> $x: ($x, substitute for, aspartame) -> (Stevia, can be used to substitute for, aspartame) -> Stevia (5635ms) Aspartame is also known as what? health -12.900220346749911 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the effect of aspartame be ? -> $x: (aspartame, effect, $x) -> (aspartame, has any other adverse effect on, health) -> health (8554ms) Aspartame is also known as what? persons -12.901593220066955 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be aspartame be be know for ? -> $x: (aspartame, be be know for, $x) -> (Aspartame intake, is known to be dangerous for, persons) -> persons (5342ms) Aspartame is also known as what? decades -12.913176873659152 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be aspartame be be know for ? -> $x: (aspartame, be be know for, $x) -> (Aspartame carcinogenicity, has been known for, decades) -> decades (5343ms) Aspartame is also known as what? good for you -12.929838617236868 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, was, good for you) -> good for you (7299ms) Aspartame is also known as what? public health -12.932288559854657 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, protect, $x) -> (aspartame, protect, public health) -> public health (16663ms) Aspartame is also known as what? horrible withdrawal -12.939436600156812 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, go, $x) -> (Many aspartame victims, go through, horrible withdrawal) -> horrible withdrawal (7337ms) Aspartame is also known as what? carbohydrate or food -12.940687792409927 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be a substitute for aspartame be ? -> $x: ($x, be a substitute for, aspartame) -> $x: (aspartame, be substitute for, $x) -> (aspartame, is substituted for, carbohydrate or food) -> carbohydrate or food (8807ms) Aspartame is also known as what? safe as a general purpose sweetener in food -12.941017587387362 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, safe as a general purpose sweetener in food) -> safe as a general purpose sweetener in food (7337ms) Aspartame is also known as what? sweetener -12.94237928794507 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, instance of, $x) -> (Aspartame, Instance Of, sweetener) -> sweetener (16663ms) Aspartame is also known as what? the United States -12.943109874535349 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, create, $x) -> (Aspartame, was created in, the United States) -> the United States (16891ms) Aspartame is also known as what? the PR Agency -12.943875134037363 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, go, $x) -> (aspartame, then went to work for, the PR Agency) -> the PR Agency (7337ms) Aspartame is also known as what? medications -12.945514421551055 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: (aspartame, be cure by, $x) -> (aspartame disease, cannot be cured by, medications) -> medications (9480ms) Aspartame is also known as what? safe for you -12.950239736100821 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, safe for you) -> safe for you (7337ms) Aspartame is also known as what? physicians -12.954246569617947 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be do, $x) -> (An aspartame study, will be done with, physicians) -> physicians (16891ms) Aspartame is also known as what? pregnant women -12.954393483393545 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: ($x, use, aspartame) -> (pregnant women, use, aspartame) -> pregnant women (16891ms) Aspartame is also known as what? insulin -12.955105156874989 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the effect of aspartame be ? -> $x: (aspartame, effect, $x) -> (aspartame, does n?t have an effect on, insulin) -> insulin (8553ms) Aspartame is also known as what? a deadly poison -12.95724450779302 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, a deadly poison) -> a deadly poison (7337ms) Aspartame is also known as what? 10,000 calls -12.963246697966913 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, take, $x) -> (Aspartame Safety Network, has taken over, 10,000 calls) -> 10,000 calls (7337ms) Aspartame is also known as what? a deadly neurotoxin -12.96979081611066 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, a deadly neurotoxin) -> a deadly neurotoxin (7367ms) Aspartame is also known as what? a psycho drug -12.96979081611066 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, a psycho drug) -> a psycho drug (7366ms) Aspartame is also known as what? rat poison -12.970459886409403 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, use, $x) -> (aspartame, can be used as, rat poison) -> rat poison (16891ms) Aspartame is also known as what? pharmaceutical companies -12.9902803050391 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: ($x, to remove, aspartame) -> (pharmaceutical companies, refuse to even remove, aspartame such) -> pharmaceutical companies (8939ms) Aspartame is also known as what? a sugar substitute -12.992500241821036 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, use, $x) -> (Aspartame, is used as, a sugar substitute) -> a sugar substitute (16891ms) Aspartame is also known as what? DNA -12.994432613074173 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, change, $x) -> (aspartame, can change, DNA) -> DNA (16890ms) Aspartame is also known as what? a health risk -12.995493186205653 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, a health risk) -> a health risk (7367ms) Aspartame is also known as what? a toxic poison -12.995493186205653 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, a toxic poison) -> a toxic poison (7367ms) Aspartame is also known as what? inherently and uniquely unstable -12.998698888662634 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, inherently and uniquely unstable) -> inherently and uniquely unstable (7367ms) Aspartame is also known as what? The NutraSweet Company -13.002946649216621 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be a substitute for aspartame be ? -> $x: ($x, be a substitute for, aspartame) -> $x: ($x, be a derivative of, aspartame) -> (The NutraSweet Company, is a derivative of, aspartame) -> The NutraSweet Company (8554ms) Aspartame is also known as what? a seizure triggering drug -13.013279940752282 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, a seizure triggering drug) -> a seizure triggering drug (7367ms) Aspartame is also known as what? a dangerous neurotoxin -13.015894305069605 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, a dangerous neurotoxin) -> a dangerous neurotoxin (8592ms) Aspartame is also known as what? a chemical hypersensitization agent -13.025414094069573 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, a chemical hypersensitization agent) -> a chemical hypersensitization agent (8592ms) Aspartame is also known as what? tacky stria -13.045307620410217 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, take, $x) -> (Assisted aspartame, barely takes the form of, tacky stria) -> tacky stria (8592ms) Aspartame is also known as what? an Imminent Health Hazard -13.072264874014131 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, an Imminent Health Hazard) -> an Imminent Health Hazard (8592ms) Aspartame is also known as what? unfit for human consumption -13.076313148092563 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, unfit for human consumption) -> unfit for human consumption (8592ms) Aspartame is also known as what? especially deadly for diabetics -13.076313148092563 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, especially deadly for diabetics) -> especially deadly for diabetics (8592ms) Aspartame is also known as what? completely safe for diabetics -13.09078797228274 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, completely safe for diabetics) -> completely safe for diabetics (8630ms) Aspartame is also known as what? a multipotential carcinogenic agent -13.098642782829051 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, a multipotential carcinogenic agent) -> a multipotential carcinogenic agent (8630ms) Aspartame is also known as what? a very safe substance -13.098642782829051 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, a very safe substance) -> a very safe substance (8630ms) Aspartame is also known as what? a very dangerous chemical -13.10192792767771 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, a very dangerous chemical) -> a very dangerous chemical (8630ms) Aspartame is also known as what? 40 percent aspartic acid -13.111189091146692 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, 40 percent aspartic acid) -> 40 percent aspartic acid (8630ms) Aspartame is also known as what? an effective ant poison -13.111189091146692 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, an effective ant poison) -> an effective ant poison (8662ms) Aspartame is also known as what? a literal chemical poison -13.111189091146692 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, a literal chemical poison) -> a literal chemical poison (8662ms) Aspartame is also known as what? safe for use in food -13.130507755205905 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, safe for use in food) -> safe for use in food (8662ms) Aspartame is also known as what? crime -13.142523059317682 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, causes, crime) -> crime (8662ms) Aspartame is also known as what? 86oF -13.151910882373482 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the condition of aspartame be ? -> $x: (aspartame, condition, $x) -> $x: (aspartame, heated, $x) -> (aspartame, is heated above, 86oF) -> 86oF (13563ms) Aspartame is also known as what? an addictive excitoneurotoxic carcinogenic drug -13.168756433618537 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, an addictive excitoneurotoxic carcinogenic drug) -> an addictive excitoneurotoxic carcinogenic drug (8694ms) Aspartame is also known as what? lymphoma and leukemia -13.16883436558688 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, causes, lymphoma and leukemia) -> lymphoma and leukemia (8694ms) Aspartame is also known as what? lymphomas and leukaemia -13.1726211721927 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, causes, lymphomas and leukaemia) -> lymphomas and leukaemia (8694ms) Aspartame is also known as what? weight gain -13.177180165596798 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, weight gain) -> weight gain (8694ms) Aspartame is also known as what? birth defects and mental retardation -13.189406401121705 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, causes, birth defects and mental retardation) -> birth defects and mental retardation (8755ms) Aspartame is also known as what? leukemia and lymphoma -13.199555312415459 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, caused, leukemia and lymphoma) -> leukemia and lymphoma (8807ms) Aspartame is also known as what? stroke-like symptoms -13.20371030864101 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, to cause, stroke-like symptoms) -> stroke-like symptoms (8807ms) Aspartame is also known as what? multiple sclerosis -13.211517129393053 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, causes, multiple sclerosis) -> multiple sclerosis (8807ms) Aspartame is also known as what? cancer of the kidney -13.211605402860599 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, caused, cancer of the kidney) -> cancer of the kidney (8807ms) Aspartame is also known as what? unique among the intense sweeteners in -13.219255327208192 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, unique among the intense sweeteners in) -> unique among the intense sweeteners in (8841ms) Aspartame is also known as what? an epidemic of obesity -13.231670861443432 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, has caused, an epidemic of obesity) -> an epidemic of obesity (8841ms) Aspartame is also known as what? brain tumors and brain cancer -13.231885245928012 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, causes, brain tumors and brain cancer) -> brain tumors and brain cancer (8841ms) Aspartame is also known as what? diabetics to go into convulsions -13.236545443415446 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, diabetics to go into convulsions) -> diabetics to go into convulsions (8888ms) Aspartame is also known as what? headaches than placebo -13.242694539308909 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, to cause, headaches than placebo) -> headaches than placebo (8888ms) Aspartame is also known as what? a potent neurotoxin and endocrine disrupter -13.24487010679334 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, a potent neurotoxin and endocrine disrupter) -> a potent neurotoxin and endocrine disrupter (8888ms) Aspartame is also known as what? Splenda -13.245978517926027 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, go, $x) -> (aspartame, go to, Splenda) -> Splenda (8888ms) Aspartame is also known as what? a coma -13.247188053099068 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, go, $x) -> (an aspartame product, had gone into, a coma) -> a coma (8888ms) Aspartame is also known as what? joint pain -13.259164522431597 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, can cause, joint pain) -> joint pain (8938ms) Aspartame is also known as what? a poison when the NSDA opposed it -13.26141493026417 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, was, a poison when the NSDA opposed it) -> a poison when the NSDA opposed it (8938ms) Aspartame is also known as what? Saccharin -13.26414374266086 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be a substitute for aspartame be ? -> $x: ($x, be a substitute for, aspartame) -> $x: ($x, often be, aspartame) -> (Saccharin, is often used together with, aspartame) -> Saccharin (8939ms) Aspartame is also known as what? a toxic poison unfit for human consumption -13.276161604279048 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, a toxic poison unfit for human consumption) -> a toxic poison unfit for human consumption (8974ms) Aspartame is also known as what? a multipotential carcinogen even in small amounts -13.276161604279048 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, a multipotential carcinogen even in small amounts) -> a multipotential carcinogen even in small amounts (8972ms) Aspartame is also known as what? a potent brain toxin and endocrine disrupter -13.299847867991659 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, a potent brain toxin and endocrine disrupter) -> a potent brain toxin and endocrine disrupter (8972ms) Aspartame is also known as what? Lyme disease and the Lyme treponema -13.309283626270215 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, can cause, Lyme disease and the Lyme treponema) -> Lyme disease and the Lyme treponema (8973ms) Aspartame is also known as what? mass poisoning of the American public and more -13.3190191566379 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, mass poisoning of the American public and more) -> mass poisoning of the American public and more (8973ms) Aspartame is also known as what? a significant conversion -13.349568866877258 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the condition of aspartame be ? -> $x: (aspartame, condition, $x) -> $x: (aspartame, heated, $x) -> (aspartame, is heated there is, a significant conversion) -> a significant conversion (13563ms) Aspartame is also known as what? 160 to 220 times sweeter than table sugar -13.356232826773486 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, 160 to 220 times sweeter than table sugar) -> 160 to 220 times sweeter than table sugar (8973ms) Aspartame is also known as what? phenylalanine -13.363626653835176 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, like, $x) -> (drinking aspartame, is like drinking, phenylalanine) -> phenylalanine (13563ms) Aspartame is also known as what? a cause -13.372280924749887 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, a cause) -> a cause (9008ms) Aspartame is also known as what? 30 centigrad -13.37947251673491 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the condition of aspartame be ? -> $x: (aspartame, condition, $x) -> $x: (aspartame, heated, $x) -> (aspartame, is heated above, 30 centigrad) -> 30 centigrad (13563ms) Aspartame is also known as what? a life -13.385272649868078 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, take, $x) -> (aspartame, have taken on, a life) -> a life (9008ms) Aspartame is also known as what? a world aspartame expert -13.40194794225491 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: ($x, treat, aspartame) -> (a world aspartame expert, treated, aspartame victims) -> a world aspartame expert (9480ms) Aspartame is also known as what? toxic -13.405311083357 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, was, toxic) -> toxic (9008ms) Aspartame is also known as what? names -13.415188718691057 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, go, $x) -> (Aspartame, goes by, names) -> names (9009ms) Aspartame is also known as what? cardiac disease -13.416726309946934 Aspartame is also known as what? -> [ aspartame ] be also know as what ? -> what role do aspartame have ? -> $x: (aspartame, role, $x) -> (aspartame, plays a major role in, cardiac disease) -> cardiac disease (9008ms) Aspartame is also known as what? 86 degrees Fahrenheit -13.42256503501658 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the condition of aspartame be ? -> $x: (aspartame, condition, $x) -> $x: (aspartame, heated, $x) -> (aspartame, is heated above, 86 degrees Fahrenheit) -> 86 degrees Fahrenheit (13562ms) Aspartame is also known as what? sale -13.435133017634751 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, go, $x) -> (aspartame, go on, sale) -> sale (9038ms) Aspartame is also known as what? poison -13.436754242254896 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, poison) -> poison (9038ms) Aspartame is also known as what? deadly -13.436939748125768 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, deadly) -> deadly (9038ms) Aspartame is also known as what? a harmful chemical -13.442706573001413 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, like, $x) -> (aspartame, is treated like, a harmful chemical) -> a harmful chemical (13563ms) Aspartame is also known as what? harmful -13.443658426893744 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, harmful) -> harmful (9038ms) Aspartame is also known as what? fine -13.458233078434377 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, fine) -> fine (9038ms) Aspartame is also known as what? Searle -13.458965272567763 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, take, $x) -> (the aspartame studies, took a job with, Searle) -> Searle (9038ms) Aspartame is also known as what? controversial -13.463601913915458 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, was, controversial) -> controversial (9070ms) Aspartame is also known as what? unstable -13.471815691179899 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, was, unstable) -> unstable (9070ms) Aspartame is also known as what? helpful -13.473245334945194 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, was, helpful) -> helpful (9070ms) Aspartame is also known as what? safe -13.473245334945194 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, safe) -> safe (9070ms) Aspartame is also known as what? sweet -13.473245334945194 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, was, sweet) -> sweet (9070ms) Aspartame is also known as what? symptoms -13.474579366441603 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: ($x, may contribute to, aspartame) -> (symptoms, may be contributed to by, aspartame) -> symptoms (9197ms) Aspartame is also known as what? aspartame -13.479425505621183 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: ($x, treat, aspartame) -> (aspartame, treats, aspartame cases) -> aspartame (9480ms) Aspartame is also known as what? available -13.48400303277941 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, available) -> available (9070ms) Aspartame is also known as what? stable -13.486290515370074 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, stable) -> stable (9111ms) Aspartame is also known as what? Neotame -13.498239283625521 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be a substitute for aspartame be ? -> $x: ($x, be a substitute for, aspartame) -> $x: ($x, be a derivative of, aspartame) -> (Neotame, is a derivative of, aspartame) -> Neotame (9111ms) Aspartame is also known as what? everywhere -13.506691634234027 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, was, everywhere) -> everywhere (9111ms) Aspartame is also known as what? genotoxic -13.506691634234027 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, was, genotoxic) -> genotoxic (9111ms) Aspartame is also known as what? a Maillard reaction -13.558843189729215 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: (aspartame, undergo, $x) -> (aspartame, can undergo, a Maillard reaction) -> a Maillard reaction (9606ms) Aspartame is also known as what? further investigation -13.580553775833522 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: (aspartame, undergo, $x) -> (aspartame, has undergone, further investigation) -> further investigation (9606ms) Aspartame is also known as what? a sludge -13.586181458801374 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: ($x, to remove, aspartame) -> (a sludge, is centrifuged to remove, the aspartame) -> a sludge (9197ms) Aspartame is also known as what? death -13.591124399782386 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, is, death) -> death (9197ms) Aspartame is also known as what? straight to the brain -13.610952362298637 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, go, $x) -> (Components of aspartame, go, straight to the brain) -> straight to the brain (9233ms) Aspartame is also known as what? Cincinnati -13.666756192940705 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: ($x, treat, aspartame) -> (Cincinnati, has been treating, aspartame victims) -> Cincinnati (9480ms) Aspartame is also known as what? The FDA -13.674043017680898 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: ($x, to remove, aspartame) -> (The FDA, has refused to remove, aspartame) -> The FDA (9233ms) Aspartame is also known as what? 200 studies -13.678473409985177 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: (aspartame, undergo, $x) -> (Aspartame, has undergone close to, 200 studies) -> 200 studies (9606ms) Aspartame is also known as what? FL -13.68935078761925 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: ($x, treat, aspartame) -> (FL, has treated hundreds of, aspartame reactors) -> FL (9480ms) Aspartame is also known as what? the cell -13.724788103686011 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the function of aspartame be ? -> $x: (aspartame, function, $x) -> (aspartame, disrupts the functioning of, the cell) -> the cell (9233ms) Aspartame is also known as what? millions -13.734787378610937 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, take, $x) -> (the aspartame disease toll, has taken the lives of, millions) -> millions (9233ms) Aspartame is also known as what? chromosomal damage -13.804652728442738 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, causes, chromosomal damage) -> chromosomal damage (9272ms) Aspartame is also known as what? 86o F. -13.810048654931993 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the condition of aspartame be ? -> $x: (aspartame, condition, $x) -> $x: (aspartame, heating, $x) -> (aspartame-sweetened beverages, had been heated to over, 86o F.) -> 86o F. (12897ms) Aspartame is also known as what? great toxicity -13.835741864891048 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, great toxicity) -> great toxicity (9272ms) Aspartame is also known as what? health problems -13.847508390053736 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, health problems) -> health problems (9314ms) Aspartame is also known as what? serious disease -13.847508390053736 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, serious disease) -> serious disease (9315ms) Aspartame is also known as what? brain lesions -13.88338925792959 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, to cause, brain lesions) -> brain lesions (9314ms) Aspartame is also known as what? Monsanto -13.894869834826219 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: ($x, prevent, aspartame) -> (Monsanto, prevented, aspartame congressional hearings) -> Monsanto (9314ms) Aspartame is also known as what? leukemia -13.904973647100492 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, leukemia) -> leukemia (9357ms) Aspartame is also known as what? Deaths -13.905538869499168 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: ($x, have be link to, aspartame) -> (Deaths, have also been linked to, aspartame consumption) -> Deaths (9357ms) Aspartame is also known as what? an epidemic of diabetes -13.911172658859506 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, has caused, an epidemic of diabetes) -> an epidemic of diabetes (9357ms) Aspartame is also known as what? a spike in insulin levels -13.911172658859506 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, a spike in insulin levels) -> a spike in insulin levels (9357ms) Aspartame is also known as what? adverse changes or health problems -13.922740018070428 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, can cause, adverse changes or health problems) -> adverse changes or health problems (9388ms) Aspartame is also known as what? lesions -13.93536999267891 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, lesions) -> lesions (9388ms) Aspartame is also known as what? an epidemic of obesity and diabetes -13.941822318251138 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, has caused, an epidemic of obesity and diabetes) -> an epidemic of obesity and diabetes (9388ms) Aspartame is also known as what? tumors -13.944004586380172 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causing, tumors) -> tumors (9388ms) Aspartame is also known as what? brain tumors or brain cancer in animals -13.962223437115089 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, has caused, brain tumors or brain cancer in animals) -> brain tumors or brain cancer in animals (9388ms) Aspartame is also known as what? participants -13.975267977567515 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: ($x, to remove, aspartame) -> (participants, are asked to remove, aspartame) -> participants (9514ms) Aspartame is also known as what? headaches -13.994929233977087 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, may cause, headaches) -> headaches (9513ms) Aspartame is also known as what? fair -14.001952995212173 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: ($x, to remove, aspartame) -> (fair, is to remove, all aspartame products) -> fair (9513ms) Aspartame is also known as what? the devil -14.07167733290325 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, the devil) -> the devil (9546ms) Aspartame is also known as what? years -14.124206676595701 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, go, $x) -> (?Aspartame News ?, goes back for, years) -> years (9546ms) Aspartame is also known as what? the highest incidence -14.133538814099389 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, caused, the highest incidence) -> the highest incidence (9546ms) Aspartame is also known as what? the market -14.144884852470076 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, take, $x) -> (Aspartame products, should be taken off, the market) -> the market (9546ms) Aspartame is also known as what? the disappearance -14.2448123501464 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the effect of aspartame be ? -> $x: (aspartame, effect, $x) -> (aspartame, again effected, the disappearance) -> the disappearance (9546ms) Aspartame is also known as what? the market years -14.374541588193493 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, take, $x) -> (Aspartame, should have been taken off, the market years) -> the market years (9576ms) Aspartame is also known as what? the product of genetic engineering -14.378533887102668 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, the product of genetic engineering) -> the product of genetic engineering (9577ms) Aspartame is also known as what? the body -14.421554287972588 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the effect of aspartame be ? -> $x: (aspartame, effect, $x) -> (aspartame, has the same deleterious effects on, the body) -> the body (9576ms) Aspartame is also known as what? the brain -14.507089268273011 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, go, $x) -> (aspartame, go straight to, the brain) -> the brain (9606ms) Aspartame is also known as what? the brains -14.507474128974719 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the effect of aspartame be ? -> $x: (aspartame, effect, $x) -> (aspartame, has such an effect on, the brains) -> the brains (9606ms) Aspartame is also known as what? the cell?s energy source -14.527963072096963 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the function of aspartame be ? -> $x: (aspartame, function, $x) -> (aspartame, disrupts the functioning of, the cell?s energy source) -> the cell?s energy source (9606ms) Aspartame is also known as what? Merck -14.568441007572526 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: ($x, to remove, aspartame) -> (Merck, was told to remove, the aspartame) -> Merck (9638ms) Aspartame is also known as what? the behavior -14.572677075071166 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the effect of aspartame be ? -> $x: (aspartame, effect, $x) -> (neither sugar nor aspartame, had any effect on, the behavior) -> the behavior (9638ms) Aspartame is also known as what? the pink -14.596472832118689 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, take, $x) -> (The blue ? aspartame, Took the spotlight from, the pink) -> the pink (9637ms) Aspartame is also known as what? problems -14.60010577903887 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (aspartame, can cause, problems) -> problems (9637ms) Aspartame is also known as what? the gut right -14.613649262461578 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, go, $x) -> (aspartame methanol, goes from, the gut right) -> the gut right (9637ms) Aspartame is also known as what? the blood brain barrier -14.630070928220434 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, go, $x) -> (? Aspartame, goes past, the blood brain barrier) -> the blood brain barrier (9717ms) Aspartame is also known as what? 86 degrees -14.646316207855747 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the condition of aspartame be ? -> $x: (aspartame, condition, $x) -> $x: (aspartame, heating, $x) -> (aspartame, is heated above, 86 degrees) -> 86 degrees (12897ms) Aspartame is also known as what? 85 degrees -14.703767969453462 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the condition of aspartame be ? -> $x: (aspartame, condition, $x) -> $x: (aspartame, heating, $x) -> (Aspartame, is heated above, 85 degrees) -> 85 degrees (12897ms) Aspartame is also known as what? the FDA -15.05310802586057 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: ($x, to remove, aspartame) -> (the FDA, to remove, aspartame) -> the FDA (9717ms) Aspartame is also known as what? the most tested additive in history -15.055186032062853 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, was, the most tested additive in history) -> the most tested additive in history (9717ms) Aspartame is also known as what? the single focus in Sweet Misery -15.076470697084327 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (aspartame, was, the single focus in Sweet Misery) -> the single focus in Sweet Misery (9717ms) Aspartame is also known as what? the substance name for the sugar substitutes -15.088133459244444 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, the substance name for the sugar substitutes) -> the substance name for the sugar substitutes (9794ms) Aspartame is also known as what? Attorney James Turner -15.113222283406367 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: ($x, prevent, aspartame) -> (Attorney James Turner, tried to prevent, approval of aspartame) -> Attorney James Turner (9794ms) Aspartame is also known as what? the brain to cease production of serotonin -15.121598410653153 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the cause of aspartame be ? -> $x: (aspartame, cause, $x) -> (Aspartame, causes, the brain to cease production of serotonin) -> the brain to cease production of serotonin (9794ms) Aspartame is also known as what? Dr. John Olney -15.126834917256188 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: ($x, prevent, aspartame) -> (Dr. John Olney, tried to prevent, approval of aspartame) -> Dr. John Olney (9794ms) Aspartame is also known as what? the most tested food additive in history -15.130564912125124 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the application of aspartame be ? -> $x: (aspartame, application, $x) -> $x: (aspartame, be, $x) -> (Aspartame, is, the most tested food additive in history) -> the most tested food additive in history (9794ms) Aspartame is also known as what? Food -15.138671255294895 Aspartame is also known as what? -> [ aspartame ] be also know as what ? -> which country be aspartame locate ? -> $x: ($x, instance of, country) (aspartame, locate, $x) -> $x: ($x, instance of, country) (aspartame, in finding, $x) -> (Food, Instance Of, country) (aspartame, is found in, foods) -> Food (12526ms) Aspartame is also known as what? the first South African retailer -17.005589857981857 Aspartame is also known as what? -> [ aspartame be ] also know as what ? -> what be the treatment of aspartame be ? -> $x: (aspartame, treatment, $x) -> $x: ($x, to remove, aspartame) -> (the first South African retailer, to remove, aspartame) -> the first South African retailer (9860ms) What countries have Rhodes Scholars come from? Australia -3.2474246255901003 What countries have Rhodes Scholars come from? -> $x: ($x, instance of, countries) (Rhodes Scholars, come from, $x) -> (Australia, Instance Of, country) (some Rhodes Scholars, come from, Australia) -> Australia (3130ms) What countries have Rhodes Scholars come from? Australia's -3.654204484345242 What countries have Rhodes Scholars come from? -> $x: ($x, instance of, countries) (Rhodes Scholars, come from, $x) -> (Australia's, Instance Of, country) (some Rhodes Scholars, come from, Australia) -> Australia's (3131ms) What countries have Rhodes Scholars come from? Australia/NZ -12.001006203161731 What countries have Rhodes Scholars come from? -> what country have [ rhode scholar come from ] ? -> what nation have rhode scholar come from ? -> $x: ($x, instance of, nation) (rhode scholar, come from, $x) -> (Australia/NZ, Instance Of, nation) (some Rhodes Scholars, come from, Australia) -> Australia/NZ (8095ms) What countries have Rhodes Scholars come from? Carolina's -12.65637398361742 What countries have Rhodes Scholars come from? -> what country [ have rhode scholar ] come from ? -> what country produce have rhode scholar ? -> $x: ($x, instance of, country) ($x, produce have, rhode scholar) -> (Carolina's, Instance Of, place around the country) (Carolina, has produced, more Rhodes Scholars) -> Carolina's (9081ms) What countries have Rhodes Scholars come from? Carolinas -12.710651993545644 What countries have Rhodes Scholars come from? -> what country [ have rhode scholar ] come from ? -> what country produce have rhode scholar ? -> $x: ($x, instance of, country) ($x, produce have, rhode scholar) -> (Carolinas, Instance Of, country) (Carolina, has produced, more Rhodes Scholars) -> Carolinas (9081ms) What countries have Rhodes Scholars come from? Carolina -12.912195671028 What countries have Rhodes Scholars come from? -> what country [ have rhode scholar ] come from ? -> what country produce have rhode scholar ? -> $x: ($x, instance of, country) ($x, produce have, rhode scholar) -> (Carolina, Instance Of, country) (Carolina, has produced, more Rhodes Scholars) -> Carolina (9275ms) What countries have Rhodes Scholars come from? australia -14.510759249617752 What countries have Rhodes Scholars come from? -> what country have [ rhode scholar come from ] ? -> what county have rhode scholar come from ? -> $x: ($x, instance of, county) (rhode scholar, come from, $x) -> (australia, Instance Of, overseas county) (some Rhodes Scholars, come from, Australia) -> australia (9420ms) On what date did the disaster occur? the Philippine island -4.449582943097699 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (The disaster, occurred on, the Philippine island) -> the Philippine island (1336ms) On what date did the disaster occur? the Housatonic line -4.488552239896154 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (disaster, occurred on, the Housatonic line) -> the Housatonic line (1336ms) On what date did the disaster occur? the Riverside area -4.5691567810543985 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, occur in, the Riverside area) -> the Riverside area (1336ms) On what date did the disaster occur? the Japanese archipelago -4.66169811268249 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, occurred this year in, the Japanese archipelago) -> the Japanese archipelago (1337ms) On what date did the disaster occur? the Costa Concordia -4.672803584465823 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (a disaster, occurred on, the Costa Concordia) -> the Costa Concordia (2210ms) On what date did the disaster occur? urban forestry -4.673986655317394 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, do get, the disaster) -> (urban forestry, got to do with, the disaster) -> urban forestry (4905ms) On what date did the disaster occur? the United States -4.746523237581372 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, were occurring in, the United States) -> the United States (2210ms) On what date did the disaster occur? the Cape -4.776115073478792 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (other disasters, do occur on, the Cape) -> the Cape (2210ms) On what date did the disaster occur? Lake Huron -4.8311834530727005 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (the sad disaster, occurred on, Lake Huron) -> Lake Huron (2211ms) On what date did the disaster occur? January 2 -4.900150835594953 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (The Ibrox disaster, occurred on, January 2) -> January 2 (2307ms) On what date did the disaster occur? Interstate 10 -4.914968095923475 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (a disaster, occurred on, Interstate 10) -> Interstate 10 (2307ms) On what date did the disaster occur? the Afghan people -5.039212931652478 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, die from, the disaster) -> (the Afghan people, will be dying from, the disaster) -> the Afghan people (5609ms) On what date did the disaster occur? international waters -5.047472744329748 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (990 disaster, occurred on, international waters) -> international waters (2307ms) On what date did the disaster occur? the Chinese people -5.050899780694786 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, battle, the disaster) -> (the Chinese people, could win the battle against, the disaster) -> the Chinese people (2307ms) On what date did the disaster occur? New Hamburg -5.06752366876302 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, do have, the disaster) -> (New Hamburg, have anything to do with, the disaster) -> New Hamburg (5559ms) On what date did the disaster occur? such a gradient -5.093771260017944 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (The disaster, occurs on, such a gradient) -> such a gradient (2806ms) On what date did the disaster occur? Microsoft Exchange server -5.109725072954323 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (disaster, occurs on, Microsoft Exchange server) -> Microsoft Exchange server (2807ms) On what date did the disaster occur? the Indian leaders -5.162800624803013 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, overcome, the disaster) -> (the Indian leaders, were struggling to overcome, the disaster) -> the Indian leaders (2807ms) On what date did the disaster occur? the 15th -5.1757630906734295 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (this disaster, occurred on, the 15th) -> the 15th (2807ms) On what date did the disaster occur? the Tohoku region -5.189282333924692 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (the Tohoku region, were affected by, the disaster) -> the Tohoku region (5217ms) On what date did the disaster occur? CRA loans -5.192762654250276 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, do have, the disaster) -> (CRA loans, had almost nothing to do with, the subprime disaster) -> CRA loans (5559ms) On what date did the disaster occur? Mohave County -5.19931911745566 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, have typically occurred in, Mohave County) -> Mohave County (2807ms) On what date did the disaster occur? the 20th -5.1999343021591455 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (the disaster, occurred on, the 20th) -> the 20th (3489ms) On what date did the disaster occur? territorial waters -5.202207314506562 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (those disasters, occurred on, territorial waters) -> territorial waters (3488ms) On what date did the disaster occur? human karma -5.207931787236899 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, do have, the disaster) -> (human karma, had nothing to do with, the disasters) -> human karma (5559ms) On what date did the disaster occur? Southeast Asia -5.2755365962660425 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, engulf, $x) -> (the economic disaster, has engulfed, Southeast Asia) -> Southeast Asia (3488ms) On what date did the disaster occur? July 18 -5.278041694517063 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (no disaster, will occur on, July 18) -> July 18 (3489ms) On what date did the disaster occur? floor failure -5.307239444920774 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, do have, the disaster) -> (floor failure, had nothing to do with, the WTC disasters) -> floor failure (5559ms) On what date did the disaster occur? New Zealand -5.308943732476954 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, have occur in, $x) -> (the biggest disasters, has occurred in, New Zealand) -> New Zealand (3896ms) On what date did the disaster occur? Dow Chemical -5.317244700135611 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, do have, the disaster) -> (Dow Chemical, had nothing to do with, the Bhopal disaster) -> Dow Chemical (5559ms) On what date did the disaster occur? the Japanese people -5.3293778289689815 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (the Japanese people, were affected by, the disaster) -> the Japanese people (5217ms) On what date did the disaster occur? the PUP -5.336546715821077 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, do have, the disaster) -> (the PUP, have done with, the NEMO disaster agency) -> the PUP (5559ms) On what date did the disaster occur? the Republic -5.362472509655581 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, suffer from, the disaster) -> (the Republic, suffered from, the Chernobyl disaster) -> the Republic (5217ms) On what date did the disaster occur? the Japanese groups -5.376397807152841 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (the Japanese groups, were directly affected by, the disasters) -> the Japanese groups (5217ms) On what date did the disaster occur? complex systems -5.392455727884328 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, arise in, $x) -> (The disasters, arise in, complex systems) -> complex systems (4496ms) On what date did the disaster occur? Jan . 12 , 2010 -5.395717782905346 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (the disaster, occurred on, Jan . 12 , 2010) -> Jan . 12 , 2010 (3488ms) On what date did the disaster occur? June 5 , 1976 -5.397249955960236 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (the disaster, occurred on, June 5 , 1976) -> June 5 , 1976 (3488ms) On what date did the disaster occur? Japanese people -5.404304973264043 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, suffer from, the disaster) -> (Japanese people, are suffering from, the triple disaster) -> Japanese people (5217ms) On what date did the disaster occur? manufacturing plants -5.407915105252096 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, have occurred frequently in, manufacturing plants) -> manufacturing plants (3609ms) On what date did the disaster occur? the Ukraine -5.412871766945625 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the Chernobyl disaster, happened in, the Ukraine) -> the Ukraine (4830ms) On what date did the disaster occur? decorating combs -5.416060363344872 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, do have, the disaster) -> (decorating combs, has something to do with, the almost disaster) -> decorating combs (5610ms) On what date did the disaster occur? Port au Prince -5.4239099909472115 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disaster, has occurred in, Port au Prince) -> Port au Prince (4118ms) On what date did the disaster occur? Jackson Hole -5.424964394515853 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disaster, had occurred in, Jackson Hole) -> Jackson Hole (4117ms) On what date did the disaster occur? a clear day -5.427605789427632 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (The disaster, occured on, a clear day) -> a clear day (3609ms) On what date did the disaster occur? Tuesday afternoon -5.448826526565425 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (the Katrina disaster, occurred on, Tuesday afternoon) -> Tuesday afternoon (3609ms) On what date did the disaster occur? the North Sea Piper Alpha rig -5.4592548306443405 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (the disaster, occurred on, the North Sea Piper Alpha rig) -> the North Sea Piper Alpha rig (3609ms) On what date did the disaster occur? December 22 , 2008 -5.463564779279199 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (the disaster, occurred on, December 22 , 2008) -> December 22 , 2008 (3609ms) On what date did the disaster occur? Let?s -5.467470436918694 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, to avoid, the disaster) -> (Let?s, try to avoid, the disaster part) -> Let?s (4118ms) On what date did the disaster occur? Warren County -5.469785974166262 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, have occured in, Warren County) -> Warren County (3609ms) On what date did the disaster occur? Tur `Abdin -5.492278325129551 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be destroy in, the disaster) -> (Tur `Abdin, were destroyed in, the disaster) -> Tur `Abdin (5610ms) On what date did the disaster occur? a periodic basis -5.495992334419171 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (disasters, occur on, a periodic basis) -> a periodic basis (3697ms) On what date did the disaster occur? 26 April 1986 -5.519070399984072 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (The disaster, occurred on, 26 April 1986) -> 26 April 1986 (3697ms) On what date did the disaster occur? April 26 1986 -5.5224138068940904 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (the Chernobyl disaster, occurred on, April 26 1986) -> April 26 1986 (3697ms) On what date did the disaster occur? New York -5.527988253738464 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disaster, occurred in, New York) -> New York (4119ms) On what date did the disaster occur? helping Haitians -5.559065951664043 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (helping Haitians, were affected by, the disaster) -> helping Haitians (5217ms) On what date did the disaster occur? english language -5.563076364135158 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, to report, the disaster) -> (english language, reports relating to, the disaster) -> english language (3697ms) On what date did the disaster occur? Stephens Media -5.5662130389396065 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, to report, the disaster) -> (Stephens Media, continues to report on, the financial disaster) -> Stephens Media (3697ms) On what date did the disaster occur? a project site?contact -5.566728195148206 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (a disaster, occurs on, a project site?contact) -> a project site?contact (3697ms) On what date did the disaster occur? urban areas -5.569538161739265 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (urban areas, may be affected by, the disaster) -> urban areas (5281ms) On what date did the disaster occur? South East Asia -5.576798895813421 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, have occur in, $x) -> (the tragic natural disaster, has occurred in, South East Asia) -> South East Asia (3897ms) On what date did the disaster occur? the Meuse Valley -5.577159992693748 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the mysterious fog disaster, occurred in, the Meuse Valley) -> the Meuse Valley (4117ms) On what date did the disaster occur? April 26 , 1986 -5.577501084308237 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (The disaster, occurred on, April 26 , 1986) -> April 26 , 1986 (3775ms) On what date did the disaster occur? NYC -5.583757250264638 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the 9-11 disaster, happened in, NYC) -> NYC (4830ms) On what date did the disaster occur? BP -5.586837129433285 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, suffer from, the disaster) -> (BP, could suffer from, the Gulf disaster) -> BP (5281ms) On what date did the disaster occur? October 5 , 1930 -5.595310239516027 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (The disaster, occurred on, October 5 , 1930) -> October 5 , 1930 (3775ms) On what date did the disaster occur? October 7 , 2010 -5.603268022530486 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (The disaster, occurred on, October 7 , 2010) -> October 7 , 2010 (3775ms) On what date did the disaster occur? 2012 -5.616795149366839 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, will again occur in, 2012) -> 2012 (3775ms) On what date did the disaster occur? September 30 , 1879 -5.6236045732671816 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (The disaster, occurred on, September 30 , 1879) -> September 30 , 1879 (3775ms) On what date did the disaster occur? September -5.625409003341349 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (the disaster, occurred on, September) -> September (3775ms) On what date did the disaster occur? the 26th April 1986 -5.639756391745698 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (the Chernobyl nuclear disaster, occurred on, the 26th April 1986) -> the 26th April 1986 (3896ms) On what date did the disaster occur? hydrogen peroxide -5.653993743809598 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (hydrogen peroxide, has been affected by, the disaster) -> hydrogen peroxide (5281ms) On what date did the disaster occur? western Hungary -5.66816430020528 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disaster, occurred in, western Hungary) -> western Hungary (4497ms) On what date did the disaster occur? hillside communities -5.675138191352289 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, occurred in, hillside communities) -> hillside communities (4497ms) On what date did the disaster occur? 3 May 1945 -5.689271462634646 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (The greatest ship disaster, occurred on, 3 May 1945) -> 3 May 1945 (4537ms) On what date did the disaster occur? BMW -5.69883241559447 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, to avoid, the disaster) -> (BMW, is trying to completely avoid, the GM EV1 disaster) -> BMW (4538ms) On what date did the disaster occur? Waco -5.702609244281291 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disaster, occurred in, Waco) -> Waco (4536ms) On what date did the disaster occur? more than 85 percent -5.703143789914343 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, do have, the disaster) -> (more than 85 percent, has much to do with, the BP oil disaster) -> more than 85 percent (5609ms) On what date did the disaster occur? New Yorkers -5.704018086842863 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, cope with, the disaster) -> (New Yorkers, cope with, the disaster) -> New Yorkers (4537ms) On what date did the disaster occur? any part -5.704566978815167 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, occur in, any part) -> any part (4537ms) On what date did the disaster occur? Raph -5.705911169324156 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, do get, the disaster) -> (Raph, do Labour plan to get, the natural disaster fund) -> Raph (4905ms) On what date did the disaster occur? the Courland -5.7099433178542895 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be experience, the disaster) -> (the Courland, was experiencing, the sand disaster) -> the Courland (5371ms) On what date did the disaster occur? Tuesday -5.711176190995911 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (the disaster, occurred on, Tuesday) -> Tuesday (4830ms) On what date did the disaster occur? Aug. 29 , 2005 -5.7151832596107255 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (disaster, occurred on, Aug. 29 , 2005) -> Aug. 29 , 2005 (4830ms) On what date did the disaster occur? an island -5.716891887976281 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (this disaster, occurred on, an island) -> an island (4905ms) On what date did the disaster occur? any -5.721287229248482 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disaster, occurs in, any) -> any (4905ms) On what date did the disaster occur? different regions -5.729958486052406 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, occur in, different regions) -> different regions (4905ms) On what date did the disaster occur? a tremendous scale -5.736037225814808 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (disaster, would occur on, a tremendous scale) -> a tremendous scale (4905ms) On what date did the disaster occur? coastal areas -5.739391614172785 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, will occur in, coastal areas) -> coastal areas (5280ms) On what date did the disaster occur? Mouse Island -5.752499170358837 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (a natural weather disaster, occurs on, Mouse Island) -> Mouse Island (5371ms) On what date did the disaster occur? a Dutch government -5.759626386979023 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, do have, the disaster) -> (a Dutch government, has done so since, the Chernobyl-disaster) -> a Dutch government (5609ms) On what date did the disaster occur? Monday -5.773562016917484 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (the disaster, occurred on, Monday) -> Monday (5371ms) On what date did the disaster occur? Local governments -5.780895283811277 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, cope with, the disaster) -> (Local governments, are desperate to cope with, the disaster) -> Local governments (5371ms) On what date did the disaster occur? earth -5.789120132622706 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (natural disasters, will occur on, earth) -> earth (5371ms) On what date did the disaster occur? a big scale -5.790365632422311 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (disasters, occur on, a big scale) -> a big scale (5412ms) On what date did the disaster occur? certain terrain types -5.795178212574028 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disaster, tends to occur in, certain terrain types) -> certain terrain types (5412ms) On what date did the disaster occur? the Atlantic -5.812482411504389 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, exhibit, the disaster) -> (the Atlantic, has an exhibit about, the disaster) -> the Atlantic (5412ms) On what date did the disaster occur? New Orleans -5.827898563218403 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the devastating natural disaster, happened in, New Orleans) -> New Orleans (5413ms) On what date did the disaster occur? April 20th -5.828442880694817 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (This disaster, occurred on, April 20th) -> April 20th (5412ms) On what date did the disaster occur? July 28 , 1976 -5.834476767642612 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (a natural disaster, occurred on, July 28 , 1976) -> July 28 , 1976 (5412ms) On what date did the disaster occur? 1937 -5.8452372986881285 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disaster, occurred in, 1937) -> 1937 (5609ms) On what date did the disaster occur? the States -5.846071699190841 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the Chilean mining disaster, had happened here in, the States) -> the States (5889ms) On what date did the disaster occur? Prince William Sound -5.848094293531336 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (The Exxon Valdez disaster, occurred in, Prince William Sound) -> Prince William Sound (5889ms) On what date did the disaster occur? calm seas -5.859394372873296 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disaster, occurred in, calm seas) -> calm seas (5889ms) On what date did the disaster occur? Iraq -5.862023544863483 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disaster, has already occurred in, Iraq) -> Iraq (5888ms) On what date did the disaster occur? conflict zones -5.866124930997012 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, occur in, conflict zones) -> conflict zones (5889ms) On what date did the disaster occur? December 2 , 1959 ? i .e -5.8695161828678035 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (The disaster, occurred here on, December 2 , 1959 ? i .e) -> December 2 , 1959 ? i .e (5889ms) On what date did the disaster occur? four villages -5.8831036630341735 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, engulf, $x) -> (The mudflow disaster, engulfed, four villages) -> four villages (5926ms) On what date did the disaster occur? May -5.887743341090969 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disaster, occurred in, May) -> May (5927ms) On what date did the disaster occur? a much larger scale -5.891591466967757 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (disasters, occur on, a much larger scale) -> a much larger scale (5926ms) On what date did the disaster occur? Max -5.896224533457355 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, overcome, the disaster) -> (Max, must overcome, the previous evening?s disaster) -> Max (5926ms) On what date did the disaster occur? 1902 -5.901984970183839 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the Monomoy Disaster, occured in, 1902) -> 1902 (5926ms) On what date did the disaster occur? an area -5.903275819381619 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disaster, occurs in, an area) -> an area (5927ms) On what date did the disaster occur? 1989 -5.9116166901343465 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disaster, occurred in, 1989) -> 1989 (5995ms) On what date did the disaster occur? the Northeast -5.915737812303883 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (The disaster, happened in, the Northeast) -> the Northeast (5995ms) On what date did the disaster occur? the Judiciary -5.923854652014038 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, cause in, $x) -> (the disaster he?s, caused in, the Judiciary) -> the Judiciary (5995ms) On what date did the disaster occur? local communities -5.926021937236987 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, occurs first in, local communities) -> local communities (5995ms) On what date did the disaster occur? Asia -5.92713484053662 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disasters, occurred in, Asia) -> Asia (6260ms) On what date did the disaster occur? a local , national or global scale -5.934291634238648 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (disasters, occur on, a local , national or global scale) -> a local , national or global scale (6261ms) On what date did the disaster occur? Rapu-Rapu island -5.938518494078377 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (an environmental disaster, occurred on, Rapu-Rapu island) -> Rapu-Rapu island (6261ms) On what date did the disaster occur? 1999 -5.948688425173802 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, cause in, $x) -> (the disaster, caused in, 1999) -> 1999 (6261ms) On what date did the disaster occur? numerous occasions -5.95021977992922 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (Disasters, have occurred on, numerous occasions) -> numerous occasions (6342ms) On what date did the disaster occur? the Middle East -5.9502235036609115 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the disaster, is happening in, the Middle East) -> the Middle East (6342ms) On what date did the disaster occur? a worldwide scale -5.9509902128738545 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (such disasters, occur repeatedly on, a worldwide scale) -> a worldwide scale (6342ms) On what date did the disaster occur? an effort -5.964121167947066 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, cope with, the disaster) -> (an effort, cope with, the disaster) -> an effort (6342ms) On what date did the disaster occur? CA ARCserve D2D servers -5.964317735124443 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (a disaster, occurs on, CA ARCserve D2D servers) -> CA ARCserve D2D servers (6342ms) On what date did the disaster occur? a smaller scale -5.966905778902772 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (Disasters, can also occur on, a smaller scale) -> a smaller scale (6342ms) On what date did the disaster occur? less developed regions -5.998790550498391 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (Disasters, often occur in, less developed regions) -> less developed regions (6401ms) On what date did the disaster occur? the Japanese -6.000964974006872 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (the Japanese, have been affected by, the disasters) -> the Japanese (6401ms) On what date did the disaster occur? land and sea -6.001454038291154 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (countless disasters, occurred both on, land and sea) -> land and sea (6401ms) On what date did the disaster occur? 100 -6.0059280839799 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, die from, the disaster) -> (100, have died from, the disaster) -> 100 (6401ms) On what date did the disaster occur? the Gulf -6.010741320480681 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (The ecological disaster, occurred in, the Gulf) -> the Gulf (6401ms) On what date did the disaster occur? ?the system ? -6.013758285042497 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, overcome, the disaster) -> (?the system ?, will overcome, the disasters) -> ?the system ? (6450ms) On what date did the disaster occur? young children -6.014976658707384 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, cope with, the disaster) -> (young children, cope with, the disaster) -> young children (6450ms) On what date did the disaster occur? dates -6.01718798755506 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (disasters, seem to frequently occur on, dates) -> dates (6450ms) On what date did the disaster occur? August 5 , 2010 -6.0191380298245605 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (This disaster, occurred on, August 5 , 2010) -> August 5 , 2010 (6450ms) On what date did the disaster occur? H-GAC -6.019190938885459 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have develop, the disaster) -> (H-GAC, has developed, the Disaster Debris Clearance) -> H-GAC (6450ms) On what date did the disaster occur? coal-fired power stations -6.021052262760893 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, also affect, $x) -> (the natural disaster, also affected, coal-fired power stations) -> coal-fired power stations (6765ms) On what date did the disaster occur? 7 February 1967 -6.022936111758429 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (an Australian natural disaster, occurred on, 7 February 1967) -> 7 February 1967 (6766ms) On what date did the disaster occur? security drills -6.029123799231814 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur during, $x) -> (the disasters, occurred during, security drills) -> security drills (6766ms) On what date did the disaster occur? war -6.030591130855935 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur during, $x) -> (the disaster, occurred during, war) -> war (6766ms) On what date did the disaster occur? consequence -6.0366823432081835 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the disaster, happened in, consequence) -> consequence (6818ms) On what date did the disaster occur? whole villages -6.037873301383342 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, engulf, $x) -> (the worst tsunami disasters, engulfed, whole villages) -> whole villages (6818ms) On what date did the disaster occur? musicians -6.038489855980634 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, suffer from, the disaster) -> (musicians, suffered from, the disaster) -> musicians (6818ms) On what date did the disaster occur? 1644 -6.03936858484653 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (The disaster, occurred in, 1644) -> 1644 (6818ms) On what date did the disaster occur? a more regular basis -6.047693647202903 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (These disasters, are occurring on, a more regular basis) -> a more regular basis (6818ms) On what date did the disaster occur? The GOP -6.049255450879302 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, overcome, the disaster) -> (The GOP, has truly overcome, the disaster) -> The GOP (6909ms) On what date did the disaster occur? 1957 -6.051478990081329 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disaster, had occurred in, 1957) -> 1957 (6909ms) On what date did the disaster occur? disabilities -6.054366282039295 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have survive, the disaster) -> (disabilities, have survived, the disaster) -> disabilities (6909ms) On what date did the disaster occur? 150 youth -6.057261781219649 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (150 youth, were affected by, the disasters) -> 150 youth (6909ms) On what date did the disaster occur? unexpected places -6.058651583874912 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, have occurred in, unexpected places) -> unexpected places (6910ms) On what date did the disaster occur? 1.5 million people -6.065120951594405 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (1.5 million people, have been affected by, the disaster) -> 1.5 million people (7004ms) On what date did the disaster occur? about non-Japanese regions -6.065312515307349 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (about non-Japanese regions, are affected by, the disaster) -> about non-Japanese regions (7004ms) On what date did the disaster occur? 386.400 people -6.0709313544169285 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, suffer from, the disaster) -> (386.400 people, suffered from, the disaster) -> 386.400 people (7004ms) On what date did the disaster occur? 417,000 people -6.0709313544169285 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, suffer from, the disaster) -> (417,000 people, suffered from, the disaster) -> 417,000 people (7004ms) On what date did the disaster occur? each other -6.079458488394602 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, cope with, the disaster) -> (each other, cope with, the disaster) -> each other (7104ms) On what date did the disaster occur? individual schools -6.084421661259081 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (individual schools, were affected by, the disaster) -> individual schools (7105ms) On what date did the disaster occur? Help children -6.085865481344278 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, cope with, the disaster) -> (Help children, cope with, the disaster) -> Help children (7104ms) On what date did the disaster occur? a long time -6.093882400748859 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, suffer from, the disaster) -> (a long time, are now suffering from, the disaster) -> a long time (7105ms) On what date did the disaster occur? 1923 -6.10312920470618 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (The worst disaster, occurred in, 1923) -> 1923 (7105ms) On what date did the disaster occur? Cuba -6.105839363586356 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, have take place in, $x) -> (the greatest natural disasters, have taken place in, Cuba) -> Cuba (7105ms) On what date did the disaster occur? Part 1 -6.121175895375393 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the nuclear disaster, happened in, Part 1) -> Part 1 (7352ms) On what date did the disaster occur? line -6.125876672282289 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, do have, the disaster) -> (line, had absolutely nothing to do with, the Katrina disaster) -> line (7352ms) On what date did the disaster occur? recent years -6.127512642045552 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, have occur in, $x) -> (the natural disasters, had occurred in, recent years) -> recent years (7407ms) On what date did the disaster occur? no Canadian media outlet -6.12799386992803 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have report, the disaster) -> (no Canadian media outlet, has reported on, the USC disaster) -> no Canadian media outlet (7407ms) On what date did the disaster occur? March 2011 -6.129288394721432 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disaster, occurred in, March 2011) -> March 2011 (7407ms) On what date did the disaster occur? each generation -6.133463353264924 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the Aberfan disaster, will happen only once in, each generation) -> each generation (7407ms) On what date did the disaster occur? half the world -6.138715150600547 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, suffer from, the disaster) -> (half the world, suffers from, the worst natural disaster) -> half the world (7407ms) On what date did the disaster occur? 1984 -6.139506537848473 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (The Bhopal Disaster, occurred in, 1984) -> 1984 (7509ms) On what date did the disaster occur? twang -6.141777785241424 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, do have, the disaster) -> (twang, had anything to do with, the Challenger disaster) -> twang (7510ms) On what date did the disaster occur? as many as 50 % -6.142513232534416 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have survive, the disaster) -> (as many as 50 %, would have survived, the disaster) -> as many as 50 % (7509ms) On what date did the disaster occur? December 1987 -6.153653678372903 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (The disaster, occurred in, December 1987) -> December 1987 (7509ms) On what date did the disaster occur? the Deaf -6.159828721304226 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (the Deaf, has been affected by, the disaster) -> the Deaf (7559ms) On what date did the disaster occur? time -6.168116506357713 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (Disasters, may occur suddenly in, time) -> time (7559ms) On what date did the disaster occur? 1986 -6.168620390655693 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the Chernobyl nuclear disaster, happened in, 1986) -> 1986 (7559ms) On what date did the disaster occur? successive kinds -6.184742608512019 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (The disaster, occurs in, successive kinds) -> successive kinds (7559ms) On what date did the disaster occur? chile -6.185292124002283 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the disaster, happened in, chile) -> chile (7635ms) On what date did the disaster occur? Food -6.195136993806326 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, also get, the disaster) -> (Food, has also been slow getting to, the disaster area) -> Food (7636ms) On what date did the disaster occur? large part -6.19636515637646 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, cause in, $x) -> (the Katrina disaster, was caused in, large part) -> large part (7636ms) On what date did the disaster occur? Japan -6.197240742419725 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, recently occurred in, Japan) -> Japan (7636ms) On what date did the disaster occur? May 1910 -6.1999596346209165 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disaster, occurred in, May 1910) -> May 1910 (7694ms) On what date did the disaster occur? two players -6.203522884744503 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have survive, the disaster) -> (two players, had survived, the most famous maritime disaster) -> two players (7694ms) On what date did the disaster occur? Louisiana -6.2051985254341835 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, occur here in, Louisiana) -> Louisiana (7694ms) On what date did the disaster occur? Alabama -6.206887396239676 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, occur in, Alabama) -> Alabama (7694ms) On what date did the disaster occur? Earth?s populations -6.211946051332375 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have survive, the disaster) -> (Earth?s populations, have survived, the Nuclear Disaster) -> Earth?s populations (7694ms) On what date did the disaster occur? a floor -6.2157839032591875 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (a disaster, occurs on, a floor) -> a floor (7827ms) On what date did the disaster occur? late October and early November 2007 -6.216069173597814 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disasters, occurred in, late October and early November 2007) -> late October and early November 2007 (7827ms) On what date did the disaster occur? Kie Fallis -6.217142354621143 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have report, the disaster) -> (Kie Fallis, had issued a report before, the disaster) -> Kie Fallis (7827ms) On what date did the disaster occur? Assisi parishioners -6.218185814311024 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (Assisi parishioners, were affected by, the disaster) -> Assisi parishioners (7827ms) On what date did the disaster occur? 13 provinces -6.2229695973723835 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (13 provinces, were affected by, the disaster) -> 13 provinces (7827ms) On what date did the disaster occur? residents -6.224072742716561 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, do have, the disaster) -> (residents, do have to weather, the occasional natural disaster) -> residents (7944ms) On what date did the disaster occur? Irish wills -6.227060086550398 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be destroy in, the disaster) -> (Irish wills, were destroyed in, the 1922 disaster) -> Irish wills (7944ms) On what date did the disaster occur? regulations -6.233390413455289 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, to develop, the disaster) -> (regulations, were developed to prevent, the next disaster) -> regulations (7945ms) On what date did the disaster occur? April 1986 -6.240272687907348 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the Chernobyl nuclear disaster, occurred in, April 1986) -> April 1986 (7945ms) On what date did the disaster occur? a place -6.241488647720615 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, occur in, a place) -> a place (8072ms) On what date did the disaster occur? children -6.247772339274519 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, cope with, the disaster) -> (children, cope with, the recent wildfire disaster) -> children (8072ms) On what date did the disaster occur? young specialists -6.25020831360224 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, suffer from, the disaster) -> (young specialists, suffered from, the Chernobyl disaster) -> young specialists (8072ms) On what date did the disaster occur? depositors or borrowers -6.250435749196544 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (depositors or borrowers, have been affected by, the disaster) -> depositors or borrowers (8072ms) On what date did the disaster occur? defaulted borrowers -6.2587661676742865 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (defaulted borrowers, have been affected by, the disaster) -> defaulted borrowers (8072ms) On what date did the disaster occur? Bagong Silang -6.260605988254653 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (Bagong Silang, has been affected the most by, the disaster) -> Bagong Silang (8072ms) On what date did the disaster occur? specimens -6.261684747206443 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have survive, the disaster) -> (specimens, had survived, the Space Shuttle Columbia disaster) -> specimens (8116ms) On what date did the disaster occur? winter -6.2632956535104345 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disaster and destruction, occurs in, winter) -> winter (8116ms) On what date did the disaster occur? April 20 -6.263348185698563 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (the Deepwater Horizon disaster, occurred on, April 20) -> April 20 (8116ms) On what date did the disaster occur? MySpace -6.2636483505534954 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have survive, the disaster) -> (MySpace, has been able to survive with, the disaster) -> MySpace (8116ms) On what date did the disaster occur? 200,000 people -6.272763514293783 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (200,000 people, were directly affected by, the disaster) -> 200,000 people (8117ms) On what date did the disaster occur? the Aged -6.276115587352464 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (the Aged, were affected by, the disaster) -> the Aged (8307ms) On what date did the disaster occur? 1347 -6.277301824639945 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, break out in, $x) -> (The fearful disaster, broke out in, 1347) -> 1347 (8307ms) On what date did the disaster occur? real time -6.280820738446793 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the disaster, is happening in almost, real time) -> real time (8307ms) On what date did the disaster occur? once offered protection -6.2811213585238015 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be destroy in, the disaster) -> (once offered protection, were destroyed in, the disaster) -> once offered protection (8307ms) On what date did the disaster occur? Palm Beach -6.2853344712647 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the ballot disaster, happened in, Palm Beach) -> Palm Beach (8307ms) On what date did the disaster occur? 1868 -6.2854919904651965 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the most notorious disaster, happened here in, 1868) -> 1868 (8307ms) On what date did the disaster occur? late July -6.286154089538541 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur during, $x) -> (The disaster, specifically occurred during, late July) -> late July (8388ms) On what date did the disaster occur? the North End -6.286803596049426 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the Boston Molasses Disaster, occurred in, the North End) -> the North End (8388ms) On what date did the disaster occur? Korean carmakers -6.2873107160337725 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (Korean carmakers, were less affected by, the disaster) -> Korean carmakers (8388ms) On what date did the disaster occur? USDA -6.289137236192966 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, struggle with, the disaster) -> (USDA, was struggling with, the disaster program regulations) -> USDA (8388ms) On what date did the disaster occur? a magnitude -6.289598415303532 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (natural disasters, occur on, a magnitude) -> a magnitude (8388ms) On what date did the disaster occur? industry -6.293952348666821 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disasters, have occurred in, industry) -> industry (8388ms) On what date did the disaster occur? CINCPACFLT -6.296989527679711 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disaster, occurs in, CINCPACFLT) -> CINCPACFLT (8479ms) On what date did the disaster occur? the Gulf of Mexico -6.298370629326308 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (the disaster, occurred in, the Gulf of Mexico) -> the Gulf of Mexico (8479ms) On what date did the disaster occur? governments -6.304360954074535 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, cope with, the disaster) -> (governments, cope with, the insurmountable disaster assistance) -> governments (8479ms) On what date did the disaster occur? 950,000 people -6.306637863992694 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (950,000 people, have been affected by, the disaster) -> 950,000 people (8479ms) On what date did the disaster occur? a reservation -6.311828555219099 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (a natural disaster, occur on, a reservation) -> a reservation (8479ms) On what date did the disaster occur? witness -6.316614558122388 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, cope with, the disaster) -> (witness, were coping with, the disaster ?) -> witness (8832ms) On what date did the disaster occur? iPad tablets -6.317373422587121 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (iPad tablets, could be affected by, the disaster) -> iPad tablets (8832ms) On what date did the disaster occur? economic activities -6.31750027439554 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, also affect, $x) -> (The natural disaster, has also affected, economic activities) -> economic activities (8832ms) On what date did the disaster occur? scam people -6.31817420691244 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (scam people, have been affected by, the disaster) -> scam people (8832ms) On what date did the disaster occur? British families -6.3191418480916095 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (British families, have been affected by, the disaster) -> British families (8833ms) On what date did the disaster occur? 1967 -6.325123386336996 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (The third Mayak disaster, occurred in, 1967) -> 1967 (8876ms) On what date did the disaster occur? Three attempts -6.3263634609589445 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, overcome, the disaster) -> (Three attempts, have been made to overcome, the disaster) -> Three attempts (8876ms) On what date did the disaster occur? 14 million people -6.329556706718581 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (14 million people, have been affected by, the disaster) -> 14 million people (8876ms) On what date did the disaster occur? the ship -6.331018111899781 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (The disaster, occurred on, the ship) -> the ship (8876ms) On what date did the disaster occur? April 2010 -6.333238688551951 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the Deepwater Horizon disaster, occurred in, April 2010) -> April 2010 (8876ms) On what date did the disaster occur? industry employees -6.338613845099218 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (industry employees, were affected by, the disasters) -> industry employees (8876ms) On what date did the disaster occur? more than 90,000 people -6.339428046061922 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, suffer from, the disaster) -> (more than 90,000 people, suffered from, the disaster) -> more than 90,000 people (8920ms) On what date did the disaster occur? 99,300 cattle or sheep -6.339428046061922 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, die from, the disaster) -> (99,300 cattle or sheep, died from, the disasters) -> 99,300 cattle or sheep (8920ms) On what date did the disaster occur? SLA members -6.341674190813631 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (SLA members, have been affected by, the disaster) -> SLA members (8920ms) On what date did the disaster occur? Haiti -6.343708168009654 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, cope with, the disaster) -> (Haiti, cope with, the disaster) -> Haiti (8920ms) On what date did the disaster occur? 28 December 1879 -6.34581482749604 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (the Tay Bridge disaster, occurred on, 28 December 1879) -> 28 December 1879 (8920ms) On what date did the disaster occur? 20 people -6.346548752540442 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (20 people, have each been affected by, the disaster) -> 20 people (8920ms) On what date did the disaster occur? Saturday -6.349687149960524 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (This disaster, occurred on, Saturday) -> Saturday (9004ms) On what date did the disaster occur? December -6.3502069397943455 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disaster, occurred there in, December) -> December (9004ms) On what date did the disaster occur? Baze -6.350868039038781 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, notice, the disaster) -> (Baze, failed to notice, the disaster) -> Baze (9004ms) On what date did the disaster occur? women and children -6.3520860656099405 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (women and children, have been affected by, the natural disaster) -> women and children (9004ms) On what date did the disaster occur? takeoff -6.355709117813001 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur during, $x) -> (The Challenger disaster, occurred during, takeoff) -> takeoff (9004ms) On what date did the disaster occur? five turtle species -6.357162337659417 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (five turtle species, are affected by, the disaster) -> five turtle species (9004ms) On what date did the disaster occur? Texas -6.36048265038969 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, occur in, Texas) -> Texas (9048ms) On what date did the disaster occur? Ogoni-land -6.3677223798130775 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, cause in, $x) -> (the environmental disaster Shell, was causing in, Ogoni-land) -> Ogoni-land (9048ms) On what date did the disaster occur? Dec 2009 -6.370114887298335 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the worst coal ash disasters, happened in, Dec 2009) -> Dec 2009 (9048ms) On what date did the disaster occur? Somalia -6.376197934882336 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disaster, occurred in, Somalia) -> Somalia (9112ms) On what date did the disaster occur? Van -6.387025138513902 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (Van, have been the worst affected by, the disaster) -> Van (9112ms) On what date did the disaster occur? confidence -6.392482891192342 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, cause in, $x) -> (the Chernobyl disaster, may cause a sudden drop in, confidence) -> confidence (9478ms) On what date did the disaster occur? employees -6.393280601808498 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (employees, may have been affected by, the disaster) -> employees (9479ms) On what date did the disaster occur? consumers -6.395526263911212 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, cope with, the disaster) -> (consumers, cope with, the World Trade Center disaster) -> consumers (9479ms) On what date did the disaster occur? the public -6.402199888643847 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, do have, the disaster) -> (the public, has done little to avert, the disaster) -> the public (9478ms) On what date did the disaster occur? volunteers -6.402925712279018 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, don?t have, the disaster) -> (volunteers, don?t have to be on-scene at, the disaster) -> volunteers (9479ms) On what date did the disaster occur? The Peruvian Trading Company -6.4031406102416835 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be destroy in, the disaster) -> (The Peruvian Trading Company, was destroyed in, the disaster) -> The Peruvian Trading Company (9526ms) On what date did the disaster occur? 12 provinces -6.404024849345074 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (12 provinces, were directly affected by, the disaster) -> 12 provinces (9526ms) On what date did the disaster occur? ten districts -6.407361689250599 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (ten districts, have been affected by, the disaster) -> ten districts (9526ms) On what date did the disaster occur? Hvalur?s fin whale meat -6.414831959765049 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be destroy in, the disaster) -> (Hvalur?s fin whale meat, were destroyed in, the disaster) -> Hvalur?s fin whale meat (9526ms) On what date did the disaster occur? Kansas -6.419813767974819 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disaster, occurs in, Kansas) -> Kansas (9526ms) On what date did the disaster occur? pets -6.422351624797711 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, cope with, the disaster) -> (pets, coped better with, the disaster) -> pets (9526ms) On what date did the disaster occur? 250,000 people -6.431277477494636 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (250,000 people, were affected by, the disaster) -> 250,000 people (9575ms) On what date did the disaster occur? individuals -6.435208012549394 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (individuals, were adversely affected by, the disaster) -> individuals (9575ms) On what date did the disaster occur? Tabasco -6.437889958598934 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disasters, occurred in, Tabasco) -> Tabasco (9575ms) On what date did the disaster occur? close friends -6.439203837624996 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (close friends, have been affected by, the Tsunami disaster) -> close friends (9575ms) On what date did the disaster occur? the New Orleans -6.447411887950081 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, have take place in, $x) -> (the great disaster, has taken place in, the New Orleans) -> the New Orleans (9575ms) On what date did the disaster occur? Ten vehicles -6.451771494729535 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be destroy in, the disaster) -> (Ten vehicles, were completely destroyed in, the disaster) -> Ten vehicles (9635ms) On what date did the disaster occur? thirteen million -6.453973880923336 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (thirteen million, have been affected by, the disaster) -> thirteen million (9635ms) On what date did the disaster occur? Palestinians -6.464449759866913 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, suffer from, the disaster) -> (Palestinians, still suffer from, the disaster) -> Palestinians (9635ms) On what date did the disaster occur? commercial bank balance sheets -6.464871148821558 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, have take place in, $x) -> (the disaster, has taken place in, commercial bank balance sheets) -> commercial bank balance sheets (9635ms) On what date did the disaster occur? 2500 Gulf residents -6.4708929852004555 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (2500 Gulf residents, have been affected by, the Gulf disaster) -> 2500 Gulf residents (9635ms) On what date did the disaster occur? 115 Foundation grant recipients -6.4714851953946155 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (115 Foundation grant recipients, were affected by, the disaster) -> 115 Foundation grant recipients (9635ms) On what date did the disaster occur? surrounding areas -6.472742017258995 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (surrounding areas, were seriously affected by, the disaster) -> surrounding areas (9911ms) On what date did the disaster occur? More people -6.4773493781267515 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (More people, have been directly affected by, the disaster) -> More people (9911ms) On what date did the disaster occur? 500 and 1,000 people -6.4780097827511876 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (500 and 1,000 people, could have been affected by, the disaster) -> 500 and 1,000 people (9911ms) On what date did the disaster occur? Comoros -6.48010452523228 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (Disaster, occurred in, Comoros) -> Comoros (9912ms) On what date did the disaster occur? more than 18 million people -6.481378872342342 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (more than 18 million people, were affected by, the disaster) -> more than 18 million people (9912ms) On what date did the disaster occur? Minnesota -6.48896142851728 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, have occurred in, Minnesota) -> Minnesota (9990ms) On what date did the disaster occur? Mexico -6.48896142851728 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, have occurred in, Mexico) -> Mexico (9990ms) On what date did the disaster occur? a hand -6.497657584707218 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, overcome, the disaster) -> (a hand, overcome, the typhoon disaster) -> a hand (9990ms) On what date did the disaster occur? More than 300 churches -6.500663715546867 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (More than 300 churches, were affected by, the disaster) -> More than 300 churches (9990ms) On what date did the disaster occur? more than 200,000 people -6.5017154230790375 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (more than 200,000 people, have been affected by, the disaster) -> more than 200,000 people (10054ms) On what date did the disaster occur? Pakistan -6.50230887367932 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, engulf, $x) -> (the disaster, has engulfed, Pakistan) -> Pakistan (10054ms) On what date did the disaster occur? Twenty-two provinces -6.504231206433298 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (Twenty-two provinces, have been affected by, the disaster) -> Twenty-two provinces (10054ms) On what date did the disaster occur? 36 districts -6.507537353759073 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (36 districts, had been directly affected by, the disaster) -> 36 districts (10054ms) On what date did the disaster occur? Myanmar -6.511864702490016 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the natural disasters, have happened in, Myanmar) -> Myanmar (10054ms) On what date did the disaster occur? particular -6.5121332307883995 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (particular, has been affected by, the disaster) -> particular (10141ms) On what date did the disaster occur? auctions -6.5251756676801005 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, cause in, $x) -> (The March 11 disaster, caused the decline in, auctions) -> auctions (10141ms) On what date did the disaster occur? Four million people -6.525421250991341 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (Four million people, have been affected by, the disaster) -> Four million people (10141ms) On what date did the disaster occur? life and livelihood -6.530544183777136 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (life and livelihood, has been most affected by, the BP disaster) -> life and livelihood (10141ms) On what date did the disaster occur? Libreville -6.537804286777925 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the disaster, happened in, Libreville) -> Libreville (10401ms) On what date did the disaster occur? a million people -6.538651767844591 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (a million people, have been affected by, the natural disaster) -> a million people (10400ms) On what date did the disaster occur? the Gulf Stream Current -6.540355625221823 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (the Gulf Stream Current, has been affected by, the B.P. disaster) -> the Gulf Stream Current (10401ms) On what date did the disaster occur? Tokyo -6.553421990364505 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, cope with, the disaster) -> (Tokyo, are still coping with, the disaster) -> Tokyo (10401ms) On what date did the disaster occur? Hungary -6.55375369312586 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the ecological disaster, occurred in, Hungary) -> Hungary (10401ms) On what date did the disaster occur? India -6.55695888788896 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, cause in, $x) -> (the great disaster, caused in, India) -> India (11300ms) On what date did the disaster occur? Curly -6.571990168299007 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, to report, the disaster) -> (Curly, was the first to report, the disaster) -> Curly (11300ms) On what date did the disaster occur? California -6.589531536230647 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (Disasters, occur every year in, California) -> California (12285ms) On what date did the disaster occur? Russia -6.589659891769246 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (Russia, were severely affected by, the disaster) -> Russia (12285ms) On what date did the disaster occur? site -6.593562156149684 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (disaster, should occur on, site) -> site (12285ms) On what date did the disaster occur? Montana -6.593997428710394 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the worst environmental disaster, has happened in, Montana) -> Montana (12285ms) On what date did the disaster occur? percent -6.603070199277935 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (percent, has been affected by, the disaster) -> percent (12889ms) On what date did the disaster occur? a year -6.609091345206126 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, suffer from, the disaster) -> (a year, are still suffering from, the Chernobyl disaster) -> a year (12890ms) On what date did the disaster occur? hull design -6.611208833054622 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, have be make in, $x) -> (the Titanic disaster changes, had been made both in, hull design) -> hull design (12889ms) On what date did the disaster occur? students -6.62179584371064 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (students, may have been affected by, the disaster) -> students (13795ms) On what date did the disaster occur? Adam -6.6268006418415055 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the disaster, had happened in, Adam) -> Adam (13794ms) On what date did the disaster occur? Whitehaven -6.648915386538014 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the Wellington Pit Disaster, occurred in, Whitehaven) -> Whitehaven (13897ms) On what date did the disaster occur? the workplace -6.659551233139469 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, do occur in, the workplace) -> the workplace (13896ms) On what date did the disaster occur? Italy -6.666013001410367 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disaster, occurred in, Italy) -> Italy (13896ms) On what date did the disaster occur? the earth -6.666561763064014 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (Disasters, were occurring somewhere on, the earth) -> the earth (13897ms) On what date did the disaster occur? a building -6.674103126594012 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disaster, has occurred in, a building) -> a building (14817ms) On what date did the disaster occur? wildlife -6.677771399263447 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have survive, the disaster) -> (wildlife, had survived, the disaster) -> wildlife (14817ms) On what date did the disaster occur? developing countries -6.678017901816398 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, occurring in, developing countries) -> developing countries (14817ms) On what date did the disaster occur? Kauai -6.681203385031589 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the worst Disasters, happen in, Kauai) -> Kauai (15468ms) On what date did the disaster occur? an urban area -6.690317495703825 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (a disaster, occurs in, an urban area) -> an urban area (15468ms) On what date did the disaster occur? Fishermen -6.698980278608079 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, battle, the disaster) -> (Fishermen, now are battling, the worst maritime oil disaster) -> Fishermen (15468ms) On what date did the disaster occur? Indonesia -6.699612506270396 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the disasters, happened in, Indonesia) -> Indonesia (15468ms) On what date did the disaster occur? Germany and japan -6.703616076578493 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (Similar disasters, occurred in, Germany and japan) -> Germany and japan (15468ms) On what date did the disaster occur? Japan and Thailand -6.703616076578493 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (natural disasters, occurring in, Japan and Thailand) -> Japan and Thailand (15574ms) On what date did the disaster occur? October -6.709338662087049 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the disaster, happened in, October) -> October (15573ms) On what date did the disaster occur? connections -6.710968914208362 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (connections, had been affected by, the September 11 disaster) -> connections (15573ms) On what date did the disaster occur? Australia -6.71265455445475 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, have occur in, $x) -> (the horrific disaster, has occurred right here in, Australia) -> Australia (15573ms) On what date did the disaster occur? the island -6.716469085745965 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (Natural disasters, sometimes occur on, the island) -> the island (15573ms) On what date did the disaster occur? June -6.717713943909247 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the disaster, happened in, June) -> June (15573ms) On what date did the disaster occur? developed countries -6.718282828895253 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (Natural disasters, occurring in, developed countries) -> developed countries (16383ms) On what date did the disaster occur? June 14th -6.7224320047476676 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (also the disaster, occurred on, June 14th) -> June 14th (16383ms) On what date did the disaster occur? Belarus -6.724007611145275 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, suffer from, the disaster) -> (Belarus, suffered the most from, the Chernobyl disaster) -> Belarus (16383ms) On what date did the disaster occur? mothers -6.725247022898608 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (mothers, had been affected by, the Chernobyl Disaster) -> mothers (16383ms) On what date did the disaster occur? Southampton -6.726347823979141 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (Southampton, were affected by, the disaster) -> Southampton (16383ms) On what date did the disaster occur? the planet -6.727611791896729 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (the disaster, occurred on, the planet) -> the planet (16383ms) On what date did the disaster occur? April -6.727673644924244 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the following disasters, occurred in, April) -> April (17169ms) On what date did the disaster occur? Vermont -6.7355021924664165 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be experience, the disaster) -> (Vermont, is experiencing, the worst flooding disaster) -> Vermont (17169ms) On what date did the disaster occur? the Galacian coast -6.736262461938385 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> $x: (disaster, unfold on, $x) -> (the environmental disaster, has unfolded on, the Galacian coast) -> the Galacian coast (17169ms) On what date did the disaster occur? the Republican watch -6.741194834788075 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> $x: (disaster, happen on, $x) -> (the disaster, happened on, the Republican watch) -> the Republican watch (17169ms) On what date did the disaster occur? March 11 -6.7421699945039775 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> $x: (disaster, happen on, $x) -> (the earthquake disaster, happened on, March 11) -> March 11 (17169ms) On what date did the disaster occur? sedation -6.7483678286215625 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (?The worst disasters, occur in, sedation) -> sedation (17242ms) On what date did the disaster occur? Romania -6.753125483048105 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (The most severe disaster, occurred in, Romania) -> Romania (17242ms) On what date did the disaster occur? Meknes -6.757244416869499 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the mosque disaster, occurred in, Meknes) -> Meknes (17242ms) On what date did the disaster occur? Florida -6.757722036898944 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, have occur in, $x) -> (The natural disasters, have occurred in, Florida) -> Florida (18321ms) On what date did the disaster occur? the Philippines -6.7620350102520135 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (The worst smallpox disaster, occurred in, the Philippines) -> the Philippines (18321ms) On what date did the disaster occur? the Earth -6.763207986055724 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> $x: (disaster, happen on, $x) -> (disaster, often happens on, the Earth) -> the Earth (18322ms) On what date did the disaster occur? an economy -6.780083542932331 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (The disaster, occurred in, an economy) -> an economy (18322ms) On what date did the disaster occur? the U.S. -6.780391816187363 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, occur in, the U.S.) -> the U.S. (18398ms) On what date did the disaster occur? Afghanistan -6.785966017883716 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, suffer from, the disaster) -> (Afghanistan, suffered from, the Oct. 8 disaster) -> Afghanistan (18398ms) On what date did the disaster occur? Chernobyl -6.797033331941794 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (The last disaster, happened in, Chernobyl) -> Chernobyl (18398ms) On what date did the disaster occur? Sichuan -6.805483049564347 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, happen in, $x) -> (the earthquake disaster, happened in, Sichuan) -> Sichuan (18471ms) On what date did the disaster occur? screams -6.811871608963521 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, to avoid, the disaster) -> (screams, runs to avoid, the messy disaster) -> screams (18471ms) On what date did the disaster occur? Rikuzentakata -6.812934629907545 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be destroy in, the disaster) -> (Rikuzentakata, were destroyed in, the disaster) -> Rikuzentakata (18471ms) On what date did the disaster occur? Bhopal -6.8319300751051095 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (Bhopal, were directly affected by, the disaster) -> Bhopal (18471ms) On what date did the disaster occur? warning -6.838397517210188 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, can strike, $x) -> (the unexpected Disaster, can strike without, warning) -> warning (18550ms) On what date did the disaster occur? Jiangxi -6.847026022860187 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (Jiangxi, have been affected by, the disaster) -> Jiangxi (18549ms) On what date did the disaster occur? Tohoshinki -6.859861709720458 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (Tohoshinki, were affected by, the disaster) -> Tohoshinki (18550ms) On what date did the disaster occur? victims -6.884757898022489 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (victims, are affected by, the disaster) -> victims (18621ms) On what date did the disaster occur? Gray -6.904032189170236 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (Gray, was affected personally by, the disaster) -> Gray (18697ms) On what date did the disaster occur? renters -6.906053498770577 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, suffer from, the disaster) -> (renters, have suffered from, the disaster) -> renters (18697ms) On what date did the disaster occur? Persuasion -6.9088695087049885 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (The one real disaster, occurs in, Persuasion) -> Persuasion (18697ms) On what date did the disaster occur? the Reagan years -6.912376851181441 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> $x: (disaster, unfold in, $x) -> (the savings and loan disaster, unfolded in, the Reagan years) -> the Reagan years (18697ms) On what date did the disaster occur? companies -6.923699321291338 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, to avoid, the disaster) -> (companies, want to avoid being, the next risk disaster) -> companies (18772ms) On what date did the disaster occur? September 11 -6.934977655775833 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> $x: (disaster, happen on, $x) -> (the disaster, happened on, September 11) -> September 11 (18773ms) On what date did the disaster occur? part -6.937884578126118 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, cause in, $x) -> (the disaster, was caused in, part) -> part (18772ms) On what date did the disaster occur? Friday -6.941645524794993 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (worst disasters, occurred on, Friday) -> Friday (18772ms) On what date did the disaster occur? the Garden of Eden -6.942996483688253 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (the disaster, occurred in, the Garden of Eden) -> the Garden of Eden (18846ms) On what date did the disaster occur? the amulet -6.947666464973385 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, do have, the disaster) -> (the amulet, has something to do with, the disasters) -> the amulet (18846ms) On what date did the disaster occur? Adobe -6.95933375460857 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be experience, the disaster) -> (Adobe, is experiencing its own version of, the Y2k disaster) -> Adobe (18929ms) On what date did the disaster occur? April 15 , 1989 -6.965684192643375 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (The Hillsborough disaster, occurred on, April 15 , 1989) -> April 15 , 1989 (18929ms) On what date did the disaster occur? news -6.971120114921354 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have report, the disaster) -> (news, have already been reported about, the disaster) -> news (18929ms) On what date did the disaster occur? records -6.97317764488034 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (records, are affected by, the disaster) -> records (18929ms) On what date did the disaster occur? members -6.983064085246025 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (members, have been affected by, the disaster) -> members (19060ms) On what date did the disaster occur? Sabbath -6.98763165950211 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (our disasters, occurred on, Sabbath) -> Sabbath (19060ms) On what date did the disaster occur? history -6.997710643997572 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have survive, the disaster) -> (history, had miraculously managed to survive, the disaster) -> history (19268ms) On what date did the disaster occur? Guatemala -6.999992220234808 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, be affect by, the disaster) -> (Guatemala, was most affected by, the disaster) -> Guatemala (19268ms) On what date did the disaster occur? the night -7.000965990354336 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (Disaster, occurred on, the night) -> the night (19268ms) On what date did the disaster occur? England -7.022633167668367 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, cause in, $x) -> (the 17th this disaster, caused an immense sensation in, England) -> England (19268ms) On what date did the disaster occur? the cusp -7.023326096221225 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (the disaster, occured on, the cusp) -> the cusp (19357ms) On what date did the disaster occur? successive kinds of turbulence -7.028237811234516 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (The disaster, occurs in, successive kinds of turbulence) -> successive kinds of turbulence (19356ms) On what date did the disaster occur? terms -7.030425962456505 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, cause in, $x) -> (the swine flu disaster, has caused in, terms) -> terms (19356ms) On what date did the disaster occur? the Space Pirate -7.031311359056607 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> $x: (disaster, strike on, $x) -> (disaster, struck on, the Space Pirate) -> the Space Pirate (19356ms) On what date did the disaster occur? April 20 , 2010 -7.03290207460995 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> (the Deepwater Horizon disaster, occurred on, April 20 , 2010) -> April 20 , 2010 (19356ms) On what date did the disaster occur? earnest -7.07852241324718 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, have start in, $x) -> (the disaster, has started in, earnest) -> earnest (19595ms) On what date did the disaster occur? 2008 -7.079202319103705 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, occurring in, 2008) -> 2008 (19595ms) On what date did the disaster occur? 2011 -7.087765471889056 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (a disaster, occurring in, 2011) -> 2011 (19595ms) On what date did the disaster occur? King County -7.090319361069244 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, can strike, $x) -> (the most common disasters, can strike in, King County) -> King County (19595ms) On what date did the disaster occur? the absence -7.091586937829587 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disaster, occurs in, the absence) -> the absence (19595ms) On what date did the disaster occur? the county -7.097284360731464 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disasters, occur in, the county) -> the county (19668ms) On what date did the disaster occur? the future -7.105116927369245 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (disaster, occur in, the future) -> the future (19668ms) On what date did the disaster occur? 2010-11 -7.106098909526249 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (a disaster, occurred in, 2010-11) -> 2010-11 (19668ms) On what date did the disaster occur? 2010 -7.113467841984049 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (a disaster, occurring in, 2010) -> 2010 (19668ms) On what date did the disaster occur? slow motion -7.124088279920293 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> $x: (disaster, unfold in, $x) -> (the disaster, unfolded in, slow motion) -> slow motion (19668ms) On what date did the disaster occur? facilities -7.127282943469433 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: ($x, have be affect by, the disaster) -> (facilities, may have been affected by, the disaster) -> facilities (19668ms) On what date did the disaster occur? Oct. 4 -7.128855566018536 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur on, $x) -> $x: (disaster, occur on, $x) -> $x: (disaster, erupt on, $x) -> (The Hungarian disaster, erupted on, Oct. 4) -> Oct. 4 (19793ms) On what date did the disaster occur? costs -7.1314858133660755 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, cause in, $x) -> (the Deepwater Horizon disaster, caused an increase in, costs) -> costs (19792ms) On what date did the disaster occur? the Balkans -7.131629240377255 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> $x: (disaster, have occur in, $x) -> (Great disasters, have occurred in, the Balkans) -> the Balkans (19792ms) On what date did the disaster occur? the form -7.1381086567756995 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (disaster, occur in, $x) -> (Disasters, can occur in, the form) -> the form (19792ms) On what date did the disaster occur? March -7.145164701718648 On what date did the disaster occur? -> When did the disaster occur? -> $x: (the disaster, did occur in, $x) -> $x: (the disaster, occur in, $x) -> (the disaster, occurred in, March) -> March (19792ms) When was the first camera invented? 1975 3.029787366808575 When was the first camera invented? -> $x: (the first camera, was invented in, $x) -> (the first digital camera, was invented in, 1975) -> 1975 (3009ms) When was the first camera invented? 1888 2.9980168830001603 When was the first camera invented? -> $x: (the first camera, was invented in, $x) -> (The first cheap camera, was invented in, 1888) -> 1888 (3009ms) When was the first camera invented? 1685 2.6271243598410527 When was the first camera invented? -> $x: (the first camera, was invented in, $x) -> (The first small and portable camera, was invented in, 1685) -> 1685 (3009ms) When was the first camera invented? 1892 0.7983009409271902 When was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (the first camera, be develop in, $x) -> (the first trichromatic camera, was developed in, 1892) -> 1892 (6221ms) When was the first camera invented? 1991 0.7534993710216384 When was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (the first camera, be be release in, $x) -> (The first digital camera, was released in, 1991) -> 1991 (6438ms) When was the first camera invented? 1996 0.7081773366921067 When was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (the first camera, be be release in, $x) -> (The first IP camera, was released in, 1996) -> 1996 (6437ms) When was the first camera invented? 1951 0.6877762178281546 When was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (the first camera, be develop in, $x) -> (The first video camera, was developed in, 1951) -> 1951 (6221ms) When was the first camera invented? November 2000 -0.5677571770606078 When was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (the first camera, be be release in, $x) -> (the first camera phone, was released in, November 2000) -> November 2000 (6437ms) When was the first camera invented? 1987 -0.8975530711982707 When was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (first camera, invent in, $x) -> $x: (first camera, be introduce in, $x) -> (the first such camera, was introduced in, 1987) -> 1987 (8205ms) When was the first camera invented? 1988 -1.4941535496555454 When was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (first camera, invent in, $x) -> $x: (first camera, launch in, $x) -> (The first true digital camera, was launched in, 1988) -> 1988 (8144ms) When was the first camera invented? 1995 -1.5220258915900562 When was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (first camera, invent in, $x) -> $x: (first camera, be introduce in, $x) -> (My first digital camera, was introduced in, 1995) -> 1995 (8205ms) When was the first camera invented? 2006 -1.9279125764982652 When was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (first camera, invent in, $x) -> $x: (first camera, launch in, $x) -> ('s first digital rangefinder camera, was launched in, 2006) -> 2006 (8144ms) When was the first camera invented? February 2012 -2.2582763662022236 When was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (first camera, invent in, $x) -> $x: (first camera, be announce in, $x) -> (the first X camera, will be announced in, February 2012) -> February 2012 (8165ms) When was the first camera invented? q1 2008 -2.7387107338648726 When was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (first camera, invent in, $x) -> $x: (first camera, be introduce in, $x) -> (The first new camera system, will be introduced in, q1 2008) -> q1 2008 (8231ms) When was the first camera invented? 1934 as well as -2.7727205410109343 When was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (first camera, invent in, $x) -> $x: (first camera, create in, $x) -> (the first Polaroid camera, was created in, 1934 as well as) -> 1934 as well as (8302ms) When was the first camera invented? October 1958 -3.044104729074089 When was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (first camera, invent in, $x) -> $x: (first camera, assemble in, $x) -> (The first five M2 cameras, were assembled in, October 1958) -> October 1958 (8481ms) When was the first camera invented? 1981 -3.2025716800575292 When was the first camera invented? -> when be [ the first ] camera invent ? -> when be the first computer invent ? -> $x: (the first computer, be invent in, $x) -> (the first portable computer, was invented in, 1981) -> 1981 (10772ms) When was the first camera invented? the 80s -3.254384475560015 When was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (the first camera, be develop in, $x) -> (The first lomo camera, was developed in, the 80s) -> the 80s (6221ms) When was the first camera invented? the laboratory -3.3101493630917913 When was the first camera invented? -> $x: (the first camera, was invented in, $x) -> (The first movie camera, was invented in, the laboratory) -> the laboratory (4286ms) When was the first camera invented? 1929 -3.4735356707949627 When was the first camera invented? -> when be [ the first ] camera invent ? -> when be the first radio invent ? -> $x: (the first radio, be invent in, $x) -> (The first car radio, was invented in, 1929) -> 1929 (10771ms) When was the first camera invented? 1946 -3.6454479198237 When was the first camera invented? -> when be [ the first ] camera invent ? -> when be the first computer invent ? -> $x: (the first computer, be invent in, $x) -> (The first modern computer, was invented in, 1946) -> 1946 (10771ms) When was the first camera invented? 1963 -3.671150289918693 When was the first camera invented? -> when be [ the first ] camera invent ? -> when be the first computer invent ? -> $x: (the first computer, be invent in, $x) -> (The first computer mouse, was invented in, 1963) -> 1963 (10771ms) When was the first camera invented? the year 1988 -4.154992012069372 When was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (first camera, invent in, $x) -> $x: (first camera, be introduce in, $x) -> (the first true digital camera, was introduced in, the year 1988) -> the year 1988 (8232ms) When was the first camera invented? France -4.290360067248156 When was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (the first camera, be patent in, $x) -> (The first motion picture camera, was patented in, France) -> France (6437ms) When was the first camera invented? 1936 -4.812922841258395 When was the first camera invented? -> when be [ the first ] camera invent ? -> when be the first computer invent ? -> $x: (the first computer, be invent in, $x) -> (The first modern computer, was invented in, 1936) -> 1936 (10771ms) When was the first camera invented? Ann Arbor -4.976300319946641 When was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (first camera, invent in, $x) -> $x: (first camera, be manufacture in, $x) -> (The first Argus camera, was manufactured in, Ann Arbor) -> Ann Arbor (8145ms) When was the first camera invented? Japan -5.6792436357742355 When was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (first camera, invent in, $x) -> $x: (first camera, be introduce in, $x) -> (the first camera phones, were introduced in, Japan) -> Japan (8232ms) When was the first camera invented? 1920 -5.854953780736266 When was the first camera invented? -> when be [ the first ] camera invent ? -> when be the first radio invent ? -> $x: (the first radio, be invent in, $x) -> $x: (the first radio, come into be in, $x) -> (the first radio station, came into being in, 1920) -> 1920 (13439ms) When was the first camera invented? around 1964 -6.28761800384569 When was the first camera invented? -> when be [ the first ] camera invent ? -> when be the first computer invent ? -> $x: (the first computer, be invent in, $x) -> (The first computer mouse, was invented in, around 1964) -> around 1964 (10872ms) When was the first camera invented? Leningrad -6.344219879330578 When was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (first camera, invent in, $x) -> $x: (first camera, create in, $x) -> (the first Lomo Lubitel camera, was created in, Leningrad) -> Leningrad (8302ms) When was the first camera invented? Illinois -6.419347020190124 When was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (first camera, invent in, $x) -> $x: (first camera, allow in, $x) -> (the first time speed cameras, have been allowed in, Illinois) -> Illinois (8066ms) When was the first camera invented? the 1940?s -6.859498900582878 When was the first camera invented? -> when be [ the first ] camera invent ? -> when be the first computer invent ? -> $x: (the first computer, be invent in, $x) -> (The first programmable computers, were invented in, the 1940?s) -> the 1940?s (10872ms) When was the first camera invented? the public -6.9657112891152435 When was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (first camera, invent in, $x) -> $x: (first camera, introduce to, $x) -> (the first Leica camera, was introduced to, the public) -> the public (8231ms) When was the first camera invented? way -7.409306176908764 When was the first camera invented? -> when be the first [ camera invent ] ? -> what be the the first camera invent ? -> $x: (the the first camera, invent, $x) -> (the first camera, was invented, way) -> way (11554ms) When was the first camera invented? the year -7.77845835249474 When was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (first camera, invent in, $x) -> $x: (first camera, launch in, $x) -> (The first Canon ELPH camera, was launched in, the year) -> the year (8144ms) When was the first camera invented? Manchester -8.419851809953201 When was the first camera invented? -> when be [ the first ] camera invent ? -> when be the first computer invent ? -> $x: (the first computer, be invent in, $x) -> (The first computer, was invented in, Manchester) -> Manchester (10872ms) When was the first camera invented? Sir David Brewster -8.56202261113873 When was the first camera invented? -> when be the first [ camera invent ] ? -> what be the the first camera invent ? -> $x: (the the first camera, invent, $x) -> (The first pinhole camera, was invented by, Sir David Brewster) -> Sir David Brewster (11642ms) When was the first camera invented? the early 1960s -8.823647583956555 When was the first camera invented? -> when be [ the first ] camera invent ? -> when be the first computer invent ? -> $x: (the first computer, be invent in, $x) -> (The first computer mouse, was invented in, the early 1960s) -> the early 1960s (10872ms) When was the first camera invented? the market -8.91358830944103 When was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (first camera, invent in, $x) -> $x: (first camera, launch in, $x) -> (the first prototype phantom camera, launched in, the market) -> the market (8144ms) When was the first camera invented? the early 1940s -8.928012350282746 When was the first camera invented? -> when be [ the first ] camera invent ? -> when be the first computer invent ? -> $x: (the first computer, be invent in, $x) -> (The first digital computer, was invented in, the early 1940s) -> the early 1940s (10872ms) When was the first camera invented? the Middle Ages -9.12135923345616 When was the first camera invented? -> when be [ the first ] camera invent ? -> who invent the first camera ? -> $x: ($x, invent, the first camera) -> (the Middle Ages, invented, the first pinhole camera) -> the Middle Ages (13827ms) When was the first camera invented? the west -9.14641797054617 When was the first camera invented? -> $x: (the first camera, was invented in, $x) -> $x: (first camera, invent in, $x) -> $x: (first camera, export to, $x) -> (the first of the Zorki cameras, to be exported to, the west) -> the west (8165ms) When was the first camera invented? the 1970s -9.14729885201864 When was the first camera invented? -> when be [ the first ] camera invent ? -> when be the first radio invent ? -> $x: (the first radio, be invent in, $x) -> $x: (the first radio, be develop in, $x) -> (The first radio equipment, was developed in, the 1970s) -> the 1970s (13646ms) When was the first camera invented? Axis -9.361353266824608 When was the first camera invented? -> when be [ the first ] camera invent ? -> who invent the first camera ? -> $x: ($x, invent, the first camera) -> (Axis, invented, the first network security surveillance camera) -> Axis (13827ms) When was the first camera invented? Louis Boutan -9.413487481978764 When was the first camera invented? -> when be the first [ camera invent ] ? -> what be the the first camera invent ? -> $x: (the the first camera, invent, $x) -> (The first underwater camera, is invented by, Louis Boutan) -> Louis Boutan (11642ms) When was the first camera invented? an electrical engineer -9.67578029182016 When was the first camera invented? -> when be [ the first ] camera invent ? -> who invent the first camera ? -> $x: ($x, invent, the first camera) -> (an electrical engineer, invented, the first digital camera) -> an electrical engineer (13828ms) When was the first camera invented? partnership -9.755091719516482 When was the first camera invented? -> when be [ the first ] camera invent ? -> when be the first radio invent ? -> $x: (the first radio, be invent in, $x) -> $x: (the first radio, be develop in, $x) -> (The First Response Radio Unit, was developed in, partnership) -> partnership (13827ms) When was the first camera invented? Eastman Kodak Co. -9.871378630373405 When was the first camera invented? -> when be [ the first ] camera invent ? -> who invent the first camera ? -> $x: ($x, invent, the first camera) -> (Eastman Kodak Co., invented, the first digital camera) -> Eastman Kodak Co. (13827ms) When was the first camera invented? Kodak engineers -9.963096616845542 When was the first camera invented? -> when be [ the first ] camera invent ? -> who invent the first camera ? -> $x: ($x, invent, the first camera) -> (Kodak engineers, invented, the first digital camera) -> Kodak engineers (13827ms) When was the first camera invented? the past -9.986764544518229 When was the first camera invented? -> when be [ the first ] camera invent ? -> when be the first computer invent ? -> $x: (the first computer, be invent in, $x) -> (The very first and basic computer, was invented in, the past) -> the past (10872ms) When was the first camera invented? George Eastman -10.082593334762326 When was the first camera invented? -> when be the first [ camera invent ] ? -> what be the the first camera invent ? -> $x: (the the first camera, invent, $x) -> (the first cheap camera, was invented by, George Eastman) -> George Eastman (11805ms) When was the first camera invented? Steven Sasson -10.146589187842926 When was the first camera invented? -> when be [ the first ] camera invent ? -> who invent the first camera ? -> $x: ($x, invent, the first camera) -> (Steven Sasson, invented, the first digital camera) -> Steven Sasson (13827ms) When was the first camera invented? a basement -10.516024648635364 When was the first camera invented? -> when be [ the first ] camera invent ? -> when be the first computer invent ? -> $x: (the first computer, be invent in, $x) -> $x: (first computer, invent in, $x) -> ('s first electronic computer, was invented in, a basement) -> a basement (11804ms) When was the first camera invented? Way -10.539560516168505 When was the first camera invented? -> when be [ the first camera invent ] ? -> what century be the first camera invent ? -> $x: ($x, instance of, century) (the first camera, invent, $x) -> (Way, Instance Of, late-nineteenth century text) (the first camera, was invented, way) -> Way (12752ms) When was the first camera invented? Kodak -10.575584958501713 When was the first camera invented? -> when be [ the first ] camera invent ? -> who invent the first camera ? -> $x: ($x, invent, the first camera) -> (Kodak, invented, the first digital camera) -> Kodak (13923ms) When was the first camera invented? Britain -11.08253271693773 When was the first camera invented? -> when be [ the first ] camera invent ? -> when be the first radio invent ? -> $x: (the first radio, be invent in, $x) -> $x: (the first radio, be develop in, $x) -> (The first radio, is developed in, Britain) -> Britain (13923ms) When was the first camera invented? Second Life -11.908496374998773 When was the first camera invented? -> when be [ the first ] camera invent ? -> when be the first radio invent ? -> $x: (the first radio, be invent in, $x) -> $x: (the first radio, to launch in, $x) -> (the first radio station, to launch in, Second Life) -> Second Life (13439ms) Who was the first host of Jeopardy? Art Fleming -5.4778618834541195 Who was the first host of Jeopardy? -> who be the first [ host of jeopardy ] ? -> who be host of jeopardy 2 ? -> $x: ($x, be host of, jeopardy) -> (Art Fleming, was the host of, Jeopardy) -> Art Fleming (1729ms) Who was the first host of Jeopardy? ?AND NOW... HERE -6.094877206642865 Who was the first host of Jeopardy? -> who be the first [ host of jeopardy ] ? -> who be host of jeopardy 2 ? -> $x: ($x, be host of, jeopardy) -> (?AND NOW... HERE, IS THE HOST OF, JEOPARDY) -> ?AND NOW... HERE (1727ms) Who was the first host of Jeopardy? Texas Public Health -8.63669253913492 Who was the first host of Jeopardy? -> who be the first [ host of jeopardy ] ? -> who be host of jeopardy 2 ? -> $x: ($x, be host of, jeopardy) -> $x: ($x, host of, jeopardy) -> (Texas Public Health, will host a game of, Jeopardy) -> Texas Public Health (1831ms) Who is president of Nissan Corp.? aftermarket tuners -9.72066692364342 Who is president of Nissan Corp.? -> who be president of [ nissan corp ] ? -> who be nissan corp s president ? -> $x: (nissan corp, president, $x) -> $x: (nissan corp, have, $x) -> (the Nissan Corp., has ruined the fun of, aftermarket tuners) -> aftermarket tuners (3919ms) Who is president of Nissan Corp.? a Thai-made eco car -10.09458852939699 Who is president of Nissan Corp.? -> who be president of [ nissan corp ] ? -> who be nissan corp s president ? -> $x: (nissan corp, president, $x) -> $x: (nissan corp, be, $x) -> (Nissan Motor Corp, was the first to produce, a Thai-made eco car) -> a Thai-made eco car (3919ms) Who is president of Nissan Corp.? a new president -10.321679603040998 Who is president of Nissan Corp.? -> who be president of [ nissan corp ] ? -> who be nissan corp s president ? -> $x: (nissan corp, president, $x) -> $x: (nissan corp, have, $x) -> (Nissan Motors Acceptance Corp., has, a new president) -> a new president (3919ms) Who is president of Nissan Corp.? Japan -10.577489514666532 Who is president of Nissan Corp.? -> who be president of [ nissan corp ] ? -> who be nissan corp s president ? -> $x: (nissan corp, president, $x) -> $x: (nissan corp, be, $x) -> (Nissan Motor Corp, is established in, Japan) -> Japan (3919ms) Who is president of Nissan Corp.? Raleigh -10.649993695495464 Who is president of Nissan Corp.? -> who be president of [ nissan corp ] ? -> who be nissan corp s president ? -> $x: (nissan corp, president, $x) -> $x: (nissan corp, be, $x) -> (Nissan Computer Corp., is based in, Raleigh) -> Raleigh (3919ms) Who is president of Nissan Corp.? the GO6 Series -11.210106962566506 Who is president of Nissan Corp.? -> who be president of [ nissan corp ] ? -> who be nissan corp s president ? -> $x: (nissan corp, president, $x) -> $x: (nissan corp, have, $x) -> (Nissan Forklift Corp., has added, the GO6 Series) -> the GO6 Series (3919ms) Who is president of Nissan Corp.? a deal -11.501356519185217 Who is president of Nissan Corp.? -> who be president [ of nissan corp ] ? -> who be the vice president of nissan corp ? -> $x: ($x, be the vice president of, nissan corp) -> $x: ($x, be, nissan corp) -> (a deal, has been reached with, Nissan Motor Acceptance Corp.) -> a deal (8289ms) Who is president of Nissan Corp.? work -12.011782497374288 Who is president of Nissan Corp.? -> who be president [ of nissan corp ] ? -> who be the vice president of nissan corp ? -> $x: ($x, be the vice president of, nissan corp) -> $x: ($x, be, nissan corp) -> (work, is, Nissan Motor Acceptance Corp.) -> work (8289ms) Who is president of Nissan Corp.? the casualties -12.18701975203559 Who is president of Nissan Corp.? -> who be president [ of nissan corp ] ? -> who be the vice president of nissan corp ? -> $x: ($x, be the vice president of, nissan corp) -> $x: ($x, be, nissan corp) -> (the casualties, are, Nissan Corp) -> the casualties (8289ms) Who is president of Nissan Corp.? the company -13.170381785450578 Who is president of Nissan Corp.? -> who be president [ of nissan corp ] ? -> who be the vice president of nissan corp ? -> $x: ($x, be the vice president of, nissan corp) -> $x: ($x, be, nissan corp) -> (the company, was briefly called, Nissan Heavy Industries Corp.) -> the company (8289ms) Who is president of Nissan Corp.? The graphics display -13.365002611893004 Who is president of Nissan Corp.? -> who be president [ of nissan corp ] ? -> who be the vice president of nissan corp ? -> $x: ($x, be the vice president of, nissan corp) -> $x: ($x, be, nissan corp) -> (The graphics display, was contributed by, the Nissan Corp.) -> The graphics display (8289ms) How many Great Lakes are there? Star Theatres -8.13121991974591 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, Star Theatres) -> Star Theatres (10090ms) How many Great Lakes are there? Mastercuts, Great Lakes Mall -8.945552440300919 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Mastercuts, Great Lakes Mall) -> Mastercuts, Great Lakes Mall (10447ms) How many Great Lakes are there? Gymboree, Great Lakes Mall -8.945552440300919 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Gymboree, Great Lakes Mall) -> Gymboree, Great Lakes Mall (10270ms) How many Great Lakes are there? GameStop, Great Lakes Mall -8.945552440300919 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, GameStop, Great Lakes Mall) -> GameStop, Great Lakes Mall (10090ms) How many Great Lakes are there? Chick-fil-A, Great Lakes Mall -8.945552440300919 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Chick-fil-A, Great Lakes Mall) -> Chick-fil-A, Great Lakes Mall (10271ms) How many Great Lakes are there? Macy's, Great Lakes Mall -8.945552440300919 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Macy's, Great Lakes Mall) -> Macy's, Great Lakes Mall (10270ms) How many Great Lakes are there? Dillard's, Great Lakes Mall -8.945552440300919 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Dillard's, Great Lakes Mall) -> Dillard's, Great Lakes Mall (10270ms) How many Great Lakes are there? Michaels, Great Lakes Mall -8.945552440300919 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Michaels, Great Lakes Mall) -> Michaels, Great Lakes Mall (10090ms) How many Great Lakes are there? RadioShack, Great Lakes Mall -8.945552440300919 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, RadioShack, Great Lakes Mall) -> RadioShack, Great Lakes Mall (10270ms) How many Great Lakes are there? Express, Great Lakes Mall -8.945552440300919 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Express, Great Lakes Mall) -> Express, Great Lakes Mall (10447ms) How many Great Lakes are there? Subway, Great Lakes Mall -8.945552440300919 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Subway, Great Lakes Mall) -> Subway, Great Lakes Mall (10447ms) How many Great Lakes are there? LensCrafters, Great Lakes Mall -8.945552440300919 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, LensCrafters, Great Lakes Mall) -> LensCrafters, Great Lakes Mall (10270ms) How many Great Lakes are there? EyeMasters, Great Lakes Mall -8.945552440300919 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, EyeMasters, Great Lakes Mall) -> EyeMasters, Great Lakes Mall (10090ms) How many Great Lakes are there? Claire's, Great Lakes Mall -8.945552440300919 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Claire's, Great Lakes Mall) -> Claire's, Great Lakes Mall (10447ms) How many Great Lakes are there? Talbots, Great Lakes Mall -8.945552440300919 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Talbots, Great Lakes Mall) -> Talbots, Great Lakes Mall (10090ms) How many Great Lakes are there? A?ropostale, Great Lakes Mall -8.945552440300919 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, A?ropostale, Great Lakes Mall) -> A?ropostale, Great Lakes Mall (10447ms) How many Great Lakes are there? OfficeMax, Great Lakes Mall -8.945552440300919 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, OfficeMax, Great Lakes Mall) -> OfficeMax, Great Lakes Mall (10090ms) How many Great Lakes are there? Lids, Great Lakes Mall -8.945552440300919 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Lids, Great Lakes Mall) -> Lids, Great Lakes Mall (10447ms) How many Great Lakes are there? Rainforest Cafe -8.969235242620773 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, Rainforest Cafe) -> Rainforest Cafe (10494ms) How many Great Lakes are there? The Limited, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, The Limited, Great Lakes Mall) -> The Limited, Great Lakes Mall (10493ms) How many Great Lakes are there? Victoria's Secret, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Victoria's Secret, Great Lakes Mall) -> Victoria's Secret, Great Lakes Mall (12357ms) How many Great Lakes are there? Pacific Sunwear, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Pacific Sunwear, Great Lakes Mall) -> Pacific Sunwear, Great Lakes Mall (12118ms) How many Great Lakes are there? Disney Store, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Disney Store, Great Lakes Mall) -> Disney Store, Great Lakes Mall (10493ms) How many Great Lakes are there? Wet Seal, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Wet Seal, Great Lakes Mall) -> Wet Seal, Great Lakes Mall (11188ms) How many Great Lakes are there? Best Buy, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Best Buy, Great Lakes Mall) -> Best Buy, Great Lakes Mall (12234ms) How many Great Lakes are there? Payless ShoeSource, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Payless ShoeSource, Great Lakes Mall) -> Payless ShoeSource, Great Lakes Mall (10573ms) How many Great Lakes are there? Talbots, Great Lakes Crossing -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, Talbots, Great Lakes Crossing) -> Talbots, Great Lakes Crossing (10494ms) How many Great Lakes are there? Motherhood Maternity, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Motherhood Maternity, Great Lakes Mall) -> Motherhood Maternity, Great Lakes Mall (12119ms) How many Great Lakes are there? Hot Topic, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Hot Topic, Great Lakes Mall) -> Hot Topic, Great Lakes Mall (12234ms) How many Great Lakes are there? Spencer's Gifts, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Spencer's Gifts, Great Lakes Mall) -> Spencer's Gifts, Great Lakes Mall (12357ms) How many Great Lakes are there? Zales Jewelers, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Zales Jewelers, Great Lakes Mall) -> Zales Jewelers, Great Lakes Mall (12357ms) How many Great Lakes are there? Dairy Queen, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Dairy Queen, Great Lakes Mall) -> Dairy Queen, Great Lakes Mall (10573ms) How many Great Lakes are there? Build-A-Bear Workshop, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Build-A-Bear Workshop, Great Lakes Mall) -> Build-A-Bear Workshop, Great Lakes Mall (12234ms) How many Great Lakes are there? Champs Sports, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Champs Sports, Great Lakes Mall) -> Champs Sports, Great Lakes Mall (10493ms) How many Great Lakes are there? Select Comfort, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Select Comfort, Great Lakes Mall) -> Select Comfort, Great Lakes Mall (12357ms) How many Great Lakes are there? Taco Bell, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Taco Bell, Great Lakes Mall) -> Taco Bell, Great Lakes Mall (12234ms) How many Great Lakes are there? Foot Locker, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Foot Locker, Great Lakes Mall) -> Foot Locker, Great Lakes Mall (12234ms) How many Great Lakes are there? Kay Jewelers, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Kay Jewelers, Great Lakes Mall) -> Kay Jewelers, Great Lakes Mall (12119ms) How many Great Lakes are there? Trade Secret, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Trade Secret, Great Lakes Mall) -> Trade Secret, Great Lakes Mall (12118ms) How many Great Lakes are there? Lane Bryant, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Lane Bryant, Great Lakes Mall) -> Lane Bryant, Great Lakes Mall (12357ms) How many Great Lakes are there? Wilsons Leather, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Wilsons Leather, Great Lakes Mall) -> Wilsons Leather, Great Lakes Mall (12234ms) How many Great Lakes are there? Circuit City, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Circuit City, Great Lakes Mall) -> Circuit City, Great Lakes Mall (12357ms) How many Great Lakes are there? The Buckle, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, The Buckle, Great Lakes Mall) -> The Buckle, Great Lakes Mall (11188ms) How many Great Lakes are there? Journeys Shoes, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Journeys Shoes, Great Lakes Mall) -> Journeys Shoes, Great Lakes Mall (10573ms) How many Great Lakes are there? Piercing Pagoda, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Piercing Pagoda, Great Lakes Mall) -> Piercing Pagoda, Great Lakes Mall (11189ms) How many Great Lakes are there? Hollister Co., Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Hollister Co., Great Lakes Mall) -> Hollister Co., Great Lakes Mall (12118ms) How many Great Lakes are there? Regis Salons, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Regis Salons, Great Lakes Mall) -> Regis Salons, Great Lakes Mall (10573ms) How many Great Lakes are there? Charlotte Russe, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Charlotte Russe, Great Lakes Mall) -> Charlotte Russe, Great Lakes Mall (10493ms) How many Great Lakes are there? GameWorks -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, GameWorks) -> GameWorks (12119ms) How many Great Lakes are there? Steak Escape, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Steak Escape, Great Lakes Mall) -> Steak Escape, Great Lakes Mall (11189ms) How many Great Lakes are there? J.C. Penney, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, J.C. Penney, Great Lakes Mall) -> J.C. Penney, Great Lakes Mall (10572ms) How many Great Lakes are there? Whitehall Jewellers, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Whitehall Jewellers, Great Lakes Mall) -> Whitehall Jewellers, Great Lakes Mall (11188ms) How many Great Lakes are there? H&M, Great Lakes Crossing -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, H&M, Great Lakes Crossing) -> H&M, Great Lakes Crossing (11188ms) How many Great Lakes are there? Things Remembered, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Things Remembered, Great Lakes Mall) -> Things Remembered, Great Lakes Mall (10572ms) How many Great Lakes are there? Finish Line, Inc., Great Lakes Mall -9.118815687713804 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Finish Line, Inc., Great Lakes Mall) -> Finish Line, Inc., Great Lakes Mall (12491ms) How many Great Lakes are there? Icing by Claire's, Great Lakes Mall -9.118815687713804 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Icing by Claire's, Great Lakes Mall) -> Icing by Claire's, Great Lakes Mall (12420ms) How many Great Lakes are there? Yankee Candle Company, Great Lakes Mall -9.118815687713804 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Yankee Candle Company, Great Lakes Mall) -> Yankee Candle Company, Great Lakes Mall (12492ms) How many Great Lakes are there? Wilsons Leather, Great Lakes Crossing -9.118815687713804 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, Wilsons Leather, Great Lakes Crossing) -> Wilsons Leather, Great Lakes Crossing (12420ms) How many Great Lakes are there? The Children's Place, Great Lakes Mall -9.118815687713804 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, The Children's Place, Great Lakes Mall) -> The Children's Place, Great Lakes Mall (12492ms) How many Great Lakes are there? Abercrombie & Fitch, Great Lakes Mall -9.118815687713804 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Abercrombie & Fitch, Great Lakes Mall) -> Abercrombie & Fitch, Great Lakes Mall (12420ms) How many Great Lakes are there? Stride Rite Corporation, Great Lakes Mall -9.118815687713804 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Stride Rite Corporation, Great Lakes Mall) -> Stride Rite Corporation, Great Lakes Mall (12421ms) How many Great Lakes are there? Sunglass Hut International, Great Lakes Mall -9.118815687713804 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Sunglass Hut International, Great Lakes Mall) -> Sunglass Hut International, Great Lakes Mall (12420ms) How many Great Lakes are there? General Nutrition Centers, Great Lakes Mall -9.118815687713804 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, General Nutrition Centers, Great Lakes Mall) -> General Nutrition Centers, Great Lakes Mall (12420ms) How many Great Lakes are there? American Eagle Outfitters, Great Lakes Mall -9.118815687713804 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, American Eagle Outfitters, Great Lakes Mall) -> American Eagle Outfitters, Great Lakes Mall (12492ms) How many Great Lakes are there? Christopher & Banks, Great Lakes Mall -9.118815687713804 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Christopher & Banks, Great Lakes Mall) -> Christopher & Banks, Great Lakes Mall (12491ms) How many Great Lakes are there? Bass Pro Shops -9.183789405493636 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, Bass Pro Shops) -> Bass Pro Shops (12534ms) How many Great Lakes are there? Bath & Body Works, Great Lakes Mall -9.183789405493636 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Bath & Body Works, Great Lakes Mall) -> Bath & Body Works, Great Lakes Mall (12534ms) How many Great Lakes are there? Sears, Roebuck and Company, Great Lakes Mall -9.183789405493636 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Sears, Roebuck and Company, Great Lakes Mall) -> Sears, Roebuck and Company, Great Lakes Mall (12534ms) How many Great Lakes are there? Rocky Mountain Chocolate Factory, Great Lakes Mall -9.183789405493636 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Rocky Mountain Chocolate Factory, Great Lakes Mall) -> Rocky Mountain Chocolate Factory, Great Lakes Mall (12534ms) How many Great Lakes are there? New York & Company, Great Lakes Mall -9.183789405493636 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, New York & Company, Great Lakes Mall) -> New York & Company, Great Lakes Mall (12492ms) How many Great Lakes are there? Steve & Barry's -9.183789405493636 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, Steve & Barry's) -> Steve & Barry's (12534ms) How many Great Lakes are there? Lord & Taylor -9.183789405493636 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, Lord & Taylor) -> Lord & Taylor (12534ms) How many Great Lakes are there? Fye - For Your Entertainment, Great Lakes Mall -9.238767166691954 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Fye - For Your Entertainment, Great Lakes Mall) -> Fye - For Your Entertainment, Great Lakes Mall (12611ms) How many Great Lakes are there? Polo By Ralph Lauren, Great Lakes Crossing -9.238767166691954 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, Polo By Ralph Lauren, Great Lakes Crossing) -> Polo By Ralph Lauren, Great Lakes Crossing (12610ms) How many Great Lakes are there? response -10.597308259300476 How many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be produce ? -> $x: ($x, instance of, baby) (great lake, be produce, $x) -> (response, Instance Of, newborn baby's characteristic) (Great Lakes Lighthouse Odyssey, was produced in, response) -> response (12611ms) How many Great Lakes are there? cooperation -10.964533058654688 How many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be produce ? -> $x: ($x, instance of, baby) (great lake, be produce, $x) -> (cooperation, Instance Of, baby's social skill) (low Great Lakes water levels, have been produced in, cooperation) -> cooperation (12611ms) How many Great Lakes are there? pain -11.794062169264166 How many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be have ? -> $x: ($x, instance of, baby) (great lake, be have, $x) -> (pain, Instance Of, baby's basic need) (Great Lakes, has been a lot of, pain) -> pain (15118ms) How many Great Lakes are there? salt -11.883960279561645 How many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be have ? -> $x: ($x, instance of, baby) (great lake, be have, $x) -> (salt, Instance Of, baby's blood chemical and mineral) (the Great Salt Lake, has been accumulating, salt) -> salt (15118ms) How many Great Lakes are there? leave -12.298350582322172 How many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be have ? -> $x: ($x, instance of, baby) (great lake, be have, $x) -> (leave, Instance Of, baby item) (Great Lakes, have both been here the past week on, leave) -> leave (15169ms) How many Great Lakes are there? Last year I -12.601962653660209 How many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be have ? -> $x: ($x, instance of, baby) (great lake, be have, $x) -> (Last year I, Instance Of, baby nurse) (the Great Lakes Basin, have been reduced in, the last 20 years) -> Last year I (15169ms) How many Great Lakes are there? gull -12.730196683288893 How many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be there today ? -> $x: ($x, instance of, great lake) ($x, be there, today) -> (gull, Instance Of, bird of great salt lake) (gulls, were there, today) -> gull (5861ms) How many Great Lakes are there? Gull -12.819161334017133 How many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be there today ? -> $x: ($x, instance of, great lake) ($x, be there, today) -> (Gull, Instance Of, great lake) (gulls, were there, today) -> Gull (5861ms) How many Great Lakes are there? mineral -13.043901154041436 How many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be produce ? -> $x: ($x, instance of, baby) (great lake, be produce, $x) -> $x: ($x, instance of, baby) (great lake, be source, $x) -> (mineral, Instance Of, baby building nutrient) (Great Salt Lake, is an important source of, minerals) -> mineral (18569ms) How many Great Lakes are there? mountain -13.052006522547622 How many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be on earth ? -> $x: ($x, instance of, great lake) ($x, be on, earth) -> (mountain, Instance Of, great lake) (such a mountain, were placed on, Earth) -> mountain (8497ms) How many Great Lakes are there? job -13.28066228083943 How many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be produce ? -> $x: ($x, instance of, baby) (great lake, be produce, $x) -> $x: ($x, instance of, baby) (great lake, be be create, $x) -> (job, Instance Of, baby) (the Great Lakes, is creating, jobs) -> job (17935ms) How many Great Lakes are there? computer -13.447291949725129 How many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be in the world today ? -> $x: ($x, instance of, great lake) ($x, be in, the world today) -> (computer, Instance Of, Great Lakes.Maintains NPS property) (computers, are important in, the world today) -> computer (16818ms) How many Great Lakes are there? Tims -13.648383066863769 How many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be there world wide ? -> $x: ($x, instance of, great lake) ($x, be there, world wide) -> $x: ($x, instance of, great lake) ($x, be be work, world wide) -> (Tims, Instance Of, great lake) (Tim, was working on called, the World Wide Web.) -> Tims (8814ms) How many Great Lakes are there? information -13.724729783686524 How many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be produce ? -> $x: ($x, instance of, baby) (great lake, be produce, $x) -> $x: ($x, instance of, baby) (great lake, be source, $x) -> (information, Instance Of, program for the baby boomers) (GreatLakesDestinations.com, is your source of, information) -> information (18569ms) How many Great Lakes are there? Swan -13.750714621473154 How many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be produce ? -> $x: ($x, instance of, baby) (great lake, be produce, $x) -> $x: ($x, instance of, baby) (great lake, be stage, $x) -> (Swan, Instance Of, seldom used baby name) (The Great Lakes, is the first major staging area for, swans) -> Swan (19041ms) How many Great Lakes are there? Spirit -14.021797796245348 How many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be on earth ? -> $x: ($x, instance of, great lake) ($x, be on, earth) -> (Spirit, Instance Of, great lake) (spirit, is expressed on, earth) -> Spirit (8497ms) How many Great Lakes are there? Washington -14.093554465306886 How many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be on earth ? -> $x: ($x, instance of, great lake) ($x, be on, earth) -> (Washington, Instance Of, great lake) (Washington, is basically hell on, Earth) -> Washington (8498ms) How many Great Lakes are there? Limestone -14.107651490773842 How many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be on earth ? -> $x: ($x, instance of, great lake) ($x, be on, earth) -> (Limestone, Instance Of, great lake) (Limestone, is found virtually everywhere on, earth) -> Limestone (8814ms) How many Great Lakes are there? Ontario -14.145311635808786 How many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be on earth ? -> $x: ($x, instance of, great lake) ($x, be on, earth) -> (Ontario, Instance Of, great lake) (Ontario, is the fifth-richest nation on, Earth) -> Ontario (8814ms) How many Great Lakes are there? Communication 06-7 -14.178450627140919 How many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be in the world today ? -> $x: ($x, instance of, great lake) ($x, be in, the world today) -> (Communication 06-7, Instance Of, appeal of a decision of Great Lakes-Gulf Presbytery) (communications, are in, the world today) -> Communication 06-7 (16818ms) How many Great Lakes are there? Moab -14.203004540850031 How many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be produce ? -> $x: ($x, instance of, baby) (great lake, be produce, $x) -> $x: ($x, instance of, baby) (great lake, provide service, $x) -> (Moab, Instance Of, baby boy name) (GREAT LAKES AIRLINES, provides daily service to, Moab) -> Moab (19043ms) How many Great Lakes are there? Canada -14.496758126388668 How many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be produce ? -> $x: ($x, instance of, baby) (great lake, be produce, $x) -> $x: ($x, instance of, baby) (great lake, be be create, $x) -> (Canada, Instance Of, young, sparsely populated nation of aging baby-boomers having trouble filling job) (The Great Lakes Fishery Commission, was created by, Canada) -> Canada (17935ms) How many Great Lakes are there? Star Theatres -8.13121991974591 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, Star Theatres) -> Star Theatres (1299ms) How many Great Lakes are there? Mastercuts, Great Lakes Mall -8.945552440300919 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Mastercuts, Great Lakes Mall) -> Mastercuts, Great Lakes Mall (1433ms) How many Great Lakes are there? Gymboree, Great Lakes Mall -8.945552440300919 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Gymboree, Great Lakes Mall) -> Gymboree, Great Lakes Mall (1362ms) How many Great Lakes are there? GameStop, Great Lakes Mall -8.945552440300919 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, GameStop, Great Lakes Mall) -> GameStop, Great Lakes Mall (1298ms) How many Great Lakes are there? Chick-fil-A, Great Lakes Mall -8.945552440300919 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Chick-fil-A, Great Lakes Mall) -> Chick-fil-A, Great Lakes Mall (1362ms) How many Great Lakes are there? Macy's, Great Lakes Mall -8.945552440300919 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Macy's, Great Lakes Mall) -> Macy's, Great Lakes Mall (1362ms) How many Great Lakes are there? Dillard's, Great Lakes Mall -8.945552440300919 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Dillard's, Great Lakes Mall) -> Dillard's, Great Lakes Mall (1362ms) How many Great Lakes are there? Michaels, Great Lakes Mall -8.945552440300919 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Michaels, Great Lakes Mall) -> Michaels, Great Lakes Mall (1298ms) How many Great Lakes are there? RadioShack, Great Lakes Mall -8.945552440300919 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, RadioShack, Great Lakes Mall) -> RadioShack, Great Lakes Mall (1362ms) How many Great Lakes are there? Express, Great Lakes Mall -8.945552440300919 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Express, Great Lakes Mall) -> Express, Great Lakes Mall (1432ms) How many Great Lakes are there? LensCrafters, Great Lakes Mall -8.945552440300919 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, LensCrafters, Great Lakes Mall) -> LensCrafters, Great Lakes Mall (1362ms) How many Great Lakes are there? Subway, Great Lakes Mall -8.945552440300919 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Subway, Great Lakes Mall) -> Subway, Great Lakes Mall (1432ms) How many Great Lakes are there? EyeMasters, Great Lakes Mall -8.945552440300919 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, EyeMasters, Great Lakes Mall) -> EyeMasters, Great Lakes Mall (1298ms) How many Great Lakes are there? Claire's, Great Lakes Mall -8.945552440300919 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Claire's, Great Lakes Mall) -> Claire's, Great Lakes Mall (1432ms) How many Great Lakes are there? Talbots, Great Lakes Mall -8.945552440300919 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Talbots, Great Lakes Mall) -> Talbots, Great Lakes Mall (1298ms) How many Great Lakes are there? A?ropostale, Great Lakes Mall -8.945552440300919 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, A?ropostale, Great Lakes Mall) -> A?ropostale, Great Lakes Mall (1432ms) How many Great Lakes are there? OfficeMax, Great Lakes Mall -8.945552440300919 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, OfficeMax, Great Lakes Mall) -> OfficeMax, Great Lakes Mall (1299ms) How many Great Lakes are there? Lids, Great Lakes Mall -8.945552440300919 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Lids, Great Lakes Mall) -> Lids, Great Lakes Mall (1433ms) How many Great Lakes are there? Rainforest Cafe -8.969235242620773 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, Rainforest Cafe) -> Rainforest Cafe (1457ms) How many Great Lakes are there? The Limited, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, The Limited, Great Lakes Mall) -> The Limited, Great Lakes Mall (1457ms) How many Great Lakes are there? Victoria's Secret, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Victoria's Secret, Great Lakes Mall) -> Victoria's Secret, Great Lakes Mall (1803ms) How many Great Lakes are there? Pacific Sunwear, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Pacific Sunwear, Great Lakes Mall) -> Pacific Sunwear, Great Lakes Mall (1747ms) How many Great Lakes are there? Disney Store, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Disney Store, Great Lakes Mall) -> Disney Store, Great Lakes Mall (1458ms) How many Great Lakes are there? Wet Seal, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Wet Seal, Great Lakes Mall) -> Wet Seal, Great Lakes Mall (1634ms) How many Great Lakes are there? Best Buy, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Best Buy, Great Lakes Mall) -> Best Buy, Great Lakes Mall (1776ms) How many Great Lakes are there? Payless ShoeSource, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Payless ShoeSource, Great Lakes Mall) -> Payless ShoeSource, Great Lakes Mall (1522ms) How many Great Lakes are there? Talbots, Great Lakes Crossing -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, Talbots, Great Lakes Crossing) -> Talbots, Great Lakes Crossing (1458ms) How many Great Lakes are there? Motherhood Maternity, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Motherhood Maternity, Great Lakes Mall) -> Motherhood Maternity, Great Lakes Mall (1747ms) How many Great Lakes are there? Hot Topic, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Hot Topic, Great Lakes Mall) -> Hot Topic, Great Lakes Mall (1776ms) How many Great Lakes are there? Spencer's Gifts, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Spencer's Gifts, Great Lakes Mall) -> Spencer's Gifts, Great Lakes Mall (1803ms) How many Great Lakes are there? Zales Jewelers, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Zales Jewelers, Great Lakes Mall) -> Zales Jewelers, Great Lakes Mall (1803ms) How many Great Lakes are there? Dairy Queen, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Dairy Queen, Great Lakes Mall) -> Dairy Queen, Great Lakes Mall (1522ms) How many Great Lakes are there? Champs Sports, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Champs Sports, Great Lakes Mall) -> Champs Sports, Great Lakes Mall (1457ms) How many Great Lakes are there? Build-A-Bear Workshop, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Build-A-Bear Workshop, Great Lakes Mall) -> Build-A-Bear Workshop, Great Lakes Mall (1776ms) How many Great Lakes are there? Select Comfort, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Select Comfort, Great Lakes Mall) -> Select Comfort, Great Lakes Mall (1803ms) How many Great Lakes are there? Taco Bell, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Taco Bell, Great Lakes Mall) -> Taco Bell, Great Lakes Mall (1775ms) How many Great Lakes are there? Foot Locker, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Foot Locker, Great Lakes Mall) -> Foot Locker, Great Lakes Mall (1775ms) How many Great Lakes are there? Kay Jewelers, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Kay Jewelers, Great Lakes Mall) -> Kay Jewelers, Great Lakes Mall (1747ms) How many Great Lakes are there? Trade Secret, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Trade Secret, Great Lakes Mall) -> Trade Secret, Great Lakes Mall (1747ms) How many Great Lakes are there? Lane Bryant, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Lane Bryant, Great Lakes Mall) -> Lane Bryant, Great Lakes Mall (1803ms) How many Great Lakes are there? Wilsons Leather, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Wilsons Leather, Great Lakes Mall) -> Wilsons Leather, Great Lakes Mall (1775ms) How many Great Lakes are there? Circuit City, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Circuit City, Great Lakes Mall) -> Circuit City, Great Lakes Mall (1803ms) How many Great Lakes are there? The Buckle, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, The Buckle, Great Lakes Mall) -> The Buckle, Great Lakes Mall (1634ms) How many Great Lakes are there? Journeys Shoes, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Journeys Shoes, Great Lakes Mall) -> Journeys Shoes, Great Lakes Mall (1522ms) How many Great Lakes are there? Piercing Pagoda, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Piercing Pagoda, Great Lakes Mall) -> Piercing Pagoda, Great Lakes Mall (1634ms) How many Great Lakes are there? Hollister Co., Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Hollister Co., Great Lakes Mall) -> Hollister Co., Great Lakes Mall (1747ms) How many Great Lakes are there? Regis Salons, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Regis Salons, Great Lakes Mall) -> Regis Salons, Great Lakes Mall (1522ms) How many Great Lakes are there? Charlotte Russe, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Charlotte Russe, Great Lakes Mall) -> Charlotte Russe, Great Lakes Mall (1457ms) How many Great Lakes are there? GameWorks -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, GameWorks) -> GameWorks (1747ms) How many Great Lakes are there? Steak Escape, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Steak Escape, Great Lakes Mall) -> Steak Escape, Great Lakes Mall (1634ms) How many Great Lakes are there? J.C. Penney, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, J.C. Penney, Great Lakes Mall) -> J.C. Penney, Great Lakes Mall (1522ms) How many Great Lakes are there? Whitehall Jewellers, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Whitehall Jewellers, Great Lakes Mall) -> Whitehall Jewellers, Great Lakes Mall (1634ms) How many Great Lakes are there? H&M, Great Lakes Crossing -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, H&M, Great Lakes Crossing) -> H&M, Great Lakes Crossing (1634ms) How many Great Lakes are there? Things Remembered, Great Lakes Mall -9.040847226378006 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Things Remembered, Great Lakes Mall) -> Things Remembered, Great Lakes Mall (1522ms) How many Great Lakes are there? Finish Line, Inc., Great Lakes Mall -9.118815687713804 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Finish Line, Inc., Great Lakes Mall) -> Finish Line, Inc., Great Lakes Mall (1855ms) How many Great Lakes are there? Icing by Claire's, Great Lakes Mall -9.118815687713804 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Icing by Claire's, Great Lakes Mall) -> Icing by Claire's, Great Lakes Mall (1828ms) How many Great Lakes are there? Yankee Candle Company, Great Lakes Mall -9.118815687713804 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Yankee Candle Company, Great Lakes Mall) -> Yankee Candle Company, Great Lakes Mall (1855ms) How many Great Lakes are there? Wilsons Leather, Great Lakes Crossing -9.118815687713804 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, Wilsons Leather, Great Lakes Crossing) -> Wilsons Leather, Great Lakes Crossing (1828ms) How many Great Lakes are there? The Children's Place, Great Lakes Mall -9.118815687713804 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, The Children's Place, Great Lakes Mall) -> The Children's Place, Great Lakes Mall (1855ms) How many Great Lakes are there? Abercrombie & Fitch, Great Lakes Mall -9.118815687713804 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Abercrombie & Fitch, Great Lakes Mall) -> Abercrombie & Fitch, Great Lakes Mall (1828ms) How many Great Lakes are there? Stride Rite Corporation, Great Lakes Mall -9.118815687713804 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Stride Rite Corporation, Great Lakes Mall) -> Stride Rite Corporation, Great Lakes Mall (1828ms) How many Great Lakes are there? Sunglass Hut International, Great Lakes Mall -9.118815687713804 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Sunglass Hut International, Great Lakes Mall) -> Sunglass Hut International, Great Lakes Mall (1828ms) How many Great Lakes are there? General Nutrition Centers, Great Lakes Mall -9.118815687713804 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, General Nutrition Centers, Great Lakes Mall) -> General Nutrition Centers, Great Lakes Mall (1828ms) How many Great Lakes are there? American Eagle Outfitters, Great Lakes Mall -9.118815687713804 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, American Eagle Outfitters, Great Lakes Mall) -> American Eagle Outfitters, Great Lakes Mall (1856ms) How many Great Lakes are there? Christopher & Banks, Great Lakes Mall -9.118815687713804 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Christopher & Banks, Great Lakes Mall) -> Christopher & Banks, Great Lakes Mall (1855ms) How many Great Lakes are there? Bass Pro Shops -9.183789405493636 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, Bass Pro Shops) -> Bass Pro Shops (1882ms) How many Great Lakes are there? Bath & Body Works, Great Lakes Mall -9.183789405493636 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Bath & Body Works, Great Lakes Mall) -> Bath & Body Works, Great Lakes Mall (1883ms) How many Great Lakes are there? Sears, Roebuck and Company, Great Lakes Mall -9.183789405493636 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Sears, Roebuck and Company, Great Lakes Mall) -> Sears, Roebuck and Company, Great Lakes Mall (1882ms) How many Great Lakes are there? Rocky Mountain Chocolate Factory, Great Lakes Mall -9.183789405493636 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Rocky Mountain Chocolate Factory, Great Lakes Mall) -> Rocky Mountain Chocolate Factory, Great Lakes Mall (1882ms) How many Great Lakes are there? New York & Company, Great Lakes Mall -9.183789405493636 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, New York & Company, Great Lakes Mall) -> New York & Company, Great Lakes Mall (1856ms) How many Great Lakes are there? Steve & Barry's -9.183789405493636 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, Steve & Barry's) -> Steve & Barry's (1882ms) How many Great Lakes are there? Lord & Taylor -9.183789405493636 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, Lord & Taylor) -> Lord & Taylor (1882ms) How many Great Lakes are there? Fye - For Your Entertainment, Great Lakes Mall -9.238767166691954 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Mall, Stores, Fye - For Your Entertainment, Great Lakes Mall) -> Fye - For Your Entertainment, Great Lakes Mall (1912ms) How many Great Lakes are there? Polo By Ralph Lauren, Great Lakes Crossing -9.238767166691954 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many store do great lake have ? -> $x: (great lake, store, $x) -> (Great Lakes Crossing Outlets, Stores, Polo By Ralph Lauren, Great Lakes Crossing) -> Polo By Ralph Lauren, Great Lakes Crossing (1911ms) How many Great Lakes are there? response -10.597308259300476 How many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be produce ? -> $x: ($x, instance of, baby) (great lake, be produce, $x) -> (response, Instance Of, newborn baby's characteristic) (Great Lakes Lighthouse Odyssey, was produced in, response) -> response (1912ms) How many Great Lakes are there? cooperation -10.964533058654688 How many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be produce ? -> $x: ($x, instance of, baby) (great lake, be produce, $x) -> (cooperation, Instance Of, baby's social skill) (low Great Lakes water levels, have been produced in, cooperation) -> cooperation (1911ms) How many Great Lakes are there? pain -11.794062169264166 How many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be have ? -> $x: ($x, instance of, baby) (great lake, be have, $x) -> (pain, Instance Of, baby's basic need) (Great Lakes, has been a lot of, pain) -> pain (2367ms) How many Great Lakes are there? salt -11.883960279561645 How many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be have ? -> $x: ($x, instance of, baby) (great lake, be have, $x) -> (salt, Instance Of, baby's blood chemical and mineral) (the Great Salt Lake, has been accumulating, salt) -> salt (2367ms) How many Great Lakes are there? leave -12.298350582322172 How many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be have ? -> $x: ($x, instance of, baby) (great lake, be have, $x) -> (leave, Instance Of, baby item) (Great Lakes, have both been here the past week on, leave) -> leave (2389ms) How many Great Lakes are there? Last year I -12.601962653660209 How many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be have ? -> $x: ($x, instance of, baby) (great lake, be have, $x) -> (Last year I, Instance Of, baby nurse) (the Great Lakes Basin, have been reduced in, the last 20 years) -> Last year I (2389ms) How many Great Lakes are there? gull -12.730196683288893 How many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be there today ? -> $x: ($x, instance of, great lake) ($x, be there, today) -> (gull, Instance Of, bird of great salt lake) (gulls, were there, today) -> gull (370ms) How many Great Lakes are there? Lake Huron -12.81811776200378 How many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be in the world ? -> $x: ($x, instance of, great lake) ($x, be in, the world) -> (Lake Huron, Instance Of, great lake) (Lake Huron, is the fifth largest lake in, the world) -> Lake Huron (12321ms) How many Great Lakes are there? Lake Winnipeg -12.81811776200378 How many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be in the world ? -> $x: ($x, instance of, great lake) ($x, be in, the world) -> (Lake Winnipeg, Instance Of, great lake) (Lake Winnipeg, is the 13th largest in, the world) -> Lake Winnipeg (12321ms) How many Great Lakes are there? Gull -12.819161334017133 How many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be there today ? -> $x: ($x, instance of, great lake) ($x, be there, today) -> (Gull, Instance Of, great lake) (gulls, were there, today) -> Gull (370ms) How many Great Lakes are there? mineral -13.043901154041436 How many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be produce ? -> $x: ($x, instance of, baby) (great lake, be produce, $x) -> $x: ($x, instance of, baby) (great lake, be source, $x) -> (mineral, Instance Of, baby building nutrient) (Great Salt Lake, is an important source of, minerals) -> mineral (2768ms) How many Great Lakes are there? mountain -13.052006522547622 How many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be on earth ? -> $x: ($x, instance of, great lake) ($x, be on, earth) -> (mountain, Instance Of, great lake) (such a mountain, were placed on, Earth) -> mountain (956ms) How many Great Lakes are there? light blue -13.177600817027225 How many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be produce ? -> $x: ($x, instance of, baby) (great lake, be produce, $x) -> $x: ($x, instance of, baby) (great lake, be be show, $x) -> (light blue, Instance Of, soft baby color) (The present Great Lakes, are shown in, light blue) -> light blue (2988ms) How many Great Lakes are there? job -13.28066228083943 How many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be produce ? -> $x: ($x, instance of, baby) (great lake, be produce, $x) -> $x: ($x, instance of, baby) (great lake, be be create, $x) -> (job, Instance Of, baby) (the Great Lakes, is creating, jobs) -> job (2737ms) How many Great Lakes are there? computer -13.447291949725129 How many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be in the world today ? -> $x: ($x, instance of, great lake) ($x, be in, the world today) -> (computer, Instance Of, Great Lakes.Maintains NPS property) (computers, are important in, the world today) -> computer (2579ms) How many Great Lakes are there? wildlife -13.470079509137976 How many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be there in britain ? -> $x: ($x, instance of, great lake) ($x, be there in, britain) -> (wildlife, Instance Of, great lake issue) (wildlife, there is in, Britain) -> wildlife (12321ms) How many Great Lakes are there? Tims -13.648383066863769 How many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be there world wide ? -> $x: ($x, instance of, great lake) ($x, be there, world wide) -> $x: ($x, instance of, great lake) ($x, be be work, world wide) -> (Tims, Instance Of, great lake) (Tim, was working on called, the World Wide Web.) -> Tims (984ms) How many Great Lakes are there? information -13.724729783686524 How many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be produce ? -> $x: ($x, instance of, baby) (great lake, be produce, $x) -> $x: ($x, instance of, baby) (great lake, be source, $x) -> (information, Instance Of, program for the baby boomers) (GreatLakesDestinations.com, is your source of, information) -> information (2768ms) How many Great Lakes are there? Swan -13.750714621473154 How many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be produce ? -> $x: ($x, instance of, baby) (great lake, be produce, $x) -> $x: ($x, instance of, baby) (great lake, be stage, $x) -> (Swan, Instance Of, seldom used baby name) (The Great Lakes, is the first major staging area for, swans) -> Swan (2830ms) How many Great Lakes are there? St. Marys -13.828247791880203 How many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be in england ? -> $x: ($x, instance of, great lake) ($x, be in, england) -> (St. Marys, Instance Of, great lake) (St . Mary 's, were born in, England) -> St. Marys (8371ms) How many Great Lakes are there? Cleveland -13.854517128173054 How many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be in the world ? -> $x: ($x, instance of, great lake) ($x, be in, the world) -> (Cleveland, Instance Of, great lake) (Cleveland, was in, the World Series) -> Cleveland (12792ms) How many Great Lakes are there? Webster -13.86014162643598 How many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be in england ? -> $x: ($x, instance of, great lake) ($x, be in, england) -> (Webster, Instance Of, great lake) (Webster, is available in, England) -> Webster (8371ms) How many Great Lakes are there? Time -13.922107487043641 How many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be there in californium ? -> $x: ($x, instance of, great lake) ($x, be there in, californium) -> (Time, Instance Of, pretty standard Great Lakes measure of distance) (Times, there are in, California) -> Time (12792ms) How many Great Lakes are there? Spirit -13.92443303282251 How many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be in this world ? -> $x: ($x, instance of, great lake) ($x, be in, this world) -> (Spirit, Instance Of, great lake) (spirit, is alone in, this world) -> Spirit (7702ms) How many Great Lakes are there? Douglas -14.05100221307862 How many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be in america ? -> $x: ($x, instance of, great lake) ($x, be in, america) -> (Douglas, Instance Of, great lake) (Douglas, was born in, America) -> Douglas (12882ms) How many Great Lakes are there? Ontario -14.075070296327667 How many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be in the world ? -> $x: ($x, instance of, great lake) ($x, be in, the world) -> (Ontario, Instance Of, great lake) (Ontario, is the first place in, the world) -> Ontario (12882ms) How many Great Lakes are there? Sheridan -14.082207046286271 How many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be in earth ? -> $x: ($x, instance of, great lake) ($x, be in, earth) -> (Sheridan, Instance Of, great lake) (Sheridan, is wanted in, EarthDome) -> Sheridan (8371ms) How many Great Lakes are there? Washington -14.093554465306886 How many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be on earth ? -> $x: ($x, instance of, great lake) ($x, be on, earth) -> (Washington, Instance Of, great lake) (Washington, is basically hell on, Earth) -> Washington (956ms) How many Great Lakes are there? Limestone -14.107651490773842 How many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be on earth ? -> $x: ($x, instance of, great lake) ($x, be on, earth) -> (Limestone, Instance Of, great lake) (Limestone, is found virtually everywhere on, earth) -> Limestone (984ms) How many Great Lakes are there? Communication 06-7 -14.178450627140919 How many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be in the world today ? -> $x: ($x, instance of, great lake) ($x, be in, the world today) -> (Communication 06-7, Instance Of, appeal of a decision of Great Lakes-Gulf Presbytery) (communications, are in, the world today) -> Communication 06-7 (2579ms) How many Great Lakes are there? Moab -14.203004540850031 How many Great Lakes are there? -> how many [ great lake be ] there ? -> how many baby do great lake be produce ? -> $x: ($x, instance of, baby) (great lake, be produce, $x) -> $x: ($x, instance of, baby) (great lake, provide service, $x) -> (Moab, Instance Of, baby boy name) (GREAT LAKES AIRLINES, provides daily service to, Moab) -> Moab (2828ms) How many Great Lakes are there? Stockton -14.254997207878997 How many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be in america ? -> $x: ($x, instance of, great lake) ($x, be in, america) -> (Stockton, Instance Of, great lake) (Stockton, would be the largest city in, America) -> Stockton (13191ms) How many Great Lakes are there? Pine -14.280648142127363 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many great lake have be release ? -> $x: ($x, instance of, great lake) ($x, have be, release) -> (Pine, Instance Of, great lake) (the Pine, has been set for, a February 22nd release date) -> Pine (13191ms) How many Great Lakes are there? Canada -14.318408825239013 How many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be there in france ? -> $x: ($x, instance of, great lake) ($x, be there in, france) -> (Canada, Instance Of, great lake state) (Canada, there was in, France) -> Canada (13191ms) How many Great Lakes are there? Agnes -14.367224335735333 How many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be in england ? -> $x: ($x, instance of, great lake) ($x, be in, england) -> (Agnes, Instance Of, great lake) (Agnes, was sent to boarding school in, England) -> Agnes (8646ms) How many Great Lakes are there? Marsh -14.453050505781167 How many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be in new zealand ? -> $x: ($x, instance of, great lake) ($x, be in, new zealand) -> (Marsh, Instance Of, great lake) (Marsh, was also a major figure in, New Zealand theatre) -> Marsh (8646ms) How many Great Lakes are there? Simcoe -14.456634812213391 How many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be in the world ? -> $x: ($x, instance of, great lake) ($x, be in, the world) -> (Simcoe, Instance Of, great lake) (Simcoe, is such a popular hop in, the craft brewing world) -> Simcoe (13371ms) How many Great Lakes are there? Gillis -14.569756723602179 How many Great Lakes are there? -> how many [ great lake ] be there ? -> how many great lake have be release ? -> $x: ($x, instance of, great lake) ($x, have be, release) -> (Gillis, Instance Of, great Lake trout lake) (Gillis, have been anxiously awaiting, her release) -> Gillis (13371ms) How many Great Lakes are there? America -14.906731339835147 How many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be there in canada ? -> $x: ($x, instance of, great lake) ($x, be there in, canada) -> (America, Instance Of, beautiful country of great forest and lakes, beauteous mountain and coast) (America, there is in, Canada) -> America (13459ms) How many Great Lakes are there? Lake Van -15.117680930590076 How many Great Lakes are there? -> how [ many great lake ] be there ? -> how many great lake be in the world ? -> $x: ($x, instance of, great lake) ($x, be in, the world) -> (Lake Van, Instance Of, great lake) (Lake Van, is the fourth largest terminal lake in, the world) -> Lake Van (13547ms) Who is Terrence Malick? film director -1.5344609693900577 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, film director) -> film director (2239ms) Who is Terrence Malick? notable director -1.56514815528018 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, notable director) -> notable director (2239ms) Who is Terrence Malick? influencing director -1.58673640355055 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, influencing director) -> influencing director (2239ms) Who is Terrence Malick? true artist -1.6018835207375839 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, true artist) -> true artist (2239ms) Who is Terrence Malick? acclaimed director -1.6166098204692427 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, acclaimed director) -> acclaimed director (2239ms) Who is Terrence Malick? extraordinary director -1.6281051310211265 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, extraordinary director) -> extraordinary director (2239ms) Who is Terrence Malick? great director -1.6407897614190756 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, great director) -> great director (2393ms) Who is Terrence Malick? established director -1.649636207671413 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, established director) -> established director (2392ms) Who is Terrence Malick? contemporary filmmaker -1.6610528001022729 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, contemporary filmmaker) -> contemporary filmmaker (2392ms) Who is Terrence Malick? esteemed filmmaker -1.674815180440155 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, esteemed filmmaker) -> esteemed filmmaker (2392ms) Who is Terrence Malick? cinematic mastermind -1.689612184530946 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, cinematic mastermind) -> cinematic mastermind (2411ms) Who is Terrence Malick? rarified director -1.689612184530946 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, rarified director) -> rarified director (2411ms) Who is Terrence Malick? overdue director -1.689612184530946 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, overdue director) -> overdue director (2392ms) Who is Terrence Malick? false idol -1.6981481145150845 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, false idol) -> false idol (2410ms) Who is Terrence Malick? massive influence -1.7057406797121752 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, massive influence) -> massive influence (2410ms) Who is Terrence Malick? exec producer -1.7074341715775059 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, exec producer) -> exec producer (2410ms) Who is Terrence Malick? interesting story -1.7132716455251007 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, interesting story) -> interesting story (2410ms) Who is Terrence Malick? rare creature -1.715812028568528 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, rare creature) -> rare creature (2428ms) Who is Terrence Malick? film auteur -1.7170306267067459 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, film auteur) -> film auteur (2427ms) Who is Terrence Malick? action director -1.7261701066148791 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, action director) -> action director (2427ms) Who is Terrence Malick? great letdown -1.7307398465689459 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, great letdown) -> great letdown (2427ms) Who is Terrence Malick? seductive director -1.7345061399660882 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, seductive director) -> seductive director (2463ms) Who is Terrence Malick? exacting filmmaker -1.7345061399660882 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, exacting filmmaker) -> exacting filmmaker (2446ms) Who is Terrence Malick? beloved filmmaker -1.7345061399660882 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, beloved filmmaker) -> beloved filmmaker (2446ms) Who is Terrence Malick? divisive director -1.7345061399660882 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, divisive director) -> divisive director (2464ms) Who is Terrence Malick? gentle loon -1.7345061399660882 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, gentle loon) -> gentle loon (2446ms) Who is Terrence Malick? uncontested visionary -1.7345061399660882 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, uncontested visionary) -> uncontested visionary (2427ms) Who is Terrence Malick? serious mystery -1.7345061399660882 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, serious mystery) -> serious mystery (2446ms) Who is Terrence Malick? unique filmmaker -1.7345061399660882 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, unique filmmaker) -> unique filmmaker (2446ms) Who is Terrence Malick? preeminent director -1.7345061399660882 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, preeminent director) -> preeminent director (2427ms) Who is Terrence Malick? slow mover -1.7408334728230304 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, slow mover) -> slow mover (2463ms) Who is Terrence Malick? mysterious sort -1.7509572050264282 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, mysterious sort) -> mysterious sort (2463ms) Who is Terrence Malick? inspiring filmmaker -1.7509572050264282 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, inspiring filmmaker) -> inspiring filmmaker (2463ms) Who is Terrence Malick? acquired taste -1.75222030097175 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, acquired taste) -> acquired taste (2464ms) Who is Terrence Malick? famous filmmaker -1.7546503011644066 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, famous filmmaker) -> famous filmmaker (2479ms) Who is Terrence Malick? enigmatic director -1.755069970985088 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, enigmatic director) -> enigmatic director (2479ms) Who is Terrence Malick? brilliant filmmaker -1.7565272496537543 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, brilliant filmmaker) -> brilliant filmmaker (2479ms) Who is Terrence Malick? visual poet -1.7602109287398382 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, visual poet) -> visual poet (2479ms) Who is Terrence Malick? film maker -1.7612819624225442 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, film maker) -> film maker (2479ms) Who is Terrence Malick? acclaimed filmmaker -1.762310756037257 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, acclaimed filmmaker) -> acclaimed filmmaker (2478ms) Who is Terrence Malick? unique artist -1.762507951530816 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, unique artist) -> unique artist (2536ms) Who is Terrence Malick? national treasure -1.7639468103822398 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, national treasure) -> national treasure (2536ms) Who is Terrence Malick? uncredited screenwriter -1.775633802004088 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, uncredited screenwriter) -> uncredited screenwriter (2536ms) Who is Terrence Malick? man -2.265264392100278 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, man) -> man (2536ms) Who is Terrence Malick? American filmmaker, screenwriter, and producer -2.3506611828976802 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, American filmmaker, screenwriter, and producer) -> American filmmaker, screenwriter, and producer (2646ms) Who is Terrence Malick? mystical guy -2.357981392849078 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, mystical guy) -> mystical guy (2646ms) Who is Terrence Malick? no-show -2.363019126553826 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, no-show) -> no-show (2646ms) Who is Terrence Malick? admirably crafty bastard -2.375712696869015 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, admirably crafty bastard) -> admirably crafty bastard (2646ms) Who is Terrence Malick? real cult figure -2.3921637619293548 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, real cult figure) -> real cult figure (2646ms) Who is Terrence Malick? auteurist-cum-obscurantist filmmaker -2.40287534828422 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, auteurist-cum-obscurantist filmmaker) -> auteurist-cum-obscurantist filmmaker (2646ms) Who is Terrence Malick? austin-based filmmaker -2.40287534828422 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, austin-based filmmaker) -> austin-based filmmaker (2667ms) Who is Terrence Malick? broad-shouldered young Texan -2.405628785887621 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, broad-shouldered young Texan) -> broad-shouldered young Texan (2667ms) Who is Terrence Malick? American film director, screenwriter, and producer -2.4189224320531464 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, American film director, screenwriter, and producer) -> American film director, screenwriter, and producer (2667ms) Who is Terrence Malick? incredibly guarded filmmaker -2.4206066523041567 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, incredibly guarded filmmaker) -> incredibly guarded filmmaker (2667ms) Who is Terrence Malick? somewhat polarising director -2.4206066523041567 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, somewhat polarising director) -> somewhat polarising director (2667ms) Who is Terrence Malick? visionary genius thats -2.4206066523041567 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, visionary genius thats) -> visionary genius thats (2667ms) Who is Terrence Malick? native of Austin -2.4296331039249885 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, native of Austin) -> native of Austin (2683ms) Who is Terrence Malick? world class director -2.435839119226279 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, world class director) -> world class director (2683ms) Who is Terrence Malick? American filmmaker , screenwriter , and producer -2.4375551070496835 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, American filmmaker , screenwriter , and producer) -> American filmmaker , screenwriter , and producer (2683ms) Who is Terrence Malick? Assyrian-American film director, screenwriter, and producer -2.4375551070496835 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, Assyrian-American film director, screenwriter, and producer) -> Assyrian-American film director, screenwriter, and producer (2683ms) Who is Terrence Malick? neighbor of Limp Bizkit frontman Fred Durst -2.4375551070496835 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, neighbor of Limp Bizkit frontman Fred Durst) -> neighbor of Limp Bizkit frontman Fred Durst (2683ms) Who is Terrence Malick? prolific film maker -2.441170483323157 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, prolific film maker) -> prolific film maker (2683ms) Who is Terrence Malick? bit of a quirky director -2.44461301655552 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, bit of a quirky director) -> bit of a quirky director (2699ms) Who is Terrence Malick? poet of the film medium -2.44461301655552 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, poet of the film medium) -> poet of the film medium (2699ms) Who is Terrence Malick? love-or-hate-him kind of director -2.4505227413227635 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, love-or-hate-him kind of director) -> love-or-hate-him kind of director (2699ms) Who is Terrence Malick? auteurist american director -2.4617343143421575 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, auteurist american director) -> auteurist american director (2699ms) Who is Terrence Malick? film director, producer and writer -2.471757719507524 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, film director, producer and writer) -> film director, producer and writer (2699ms) Who is Terrence Malick? good film director and film creator -2.477099875445436 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (TERRENCE MALICK, Instance Of, good film director and film creator) -> good film director and film creator (2699ms) Who is Terrence Malick? heavy-weight and very credible director -2.477099875445436 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, heavy-weight and very credible director) -> heavy-weight and very credible director (2717ms) Who is Terrence Malick? fan of this particular cartoon -2.4895069719906626 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, fan of this particular cartoon) -> fan of this particular cartoon (2716ms) Who is Terrence Malick? visionary director the like -2.4895069719906626 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, visionary director the like) -> visionary director the like (2717ms) Who is Terrence Malick? big fan of Cameron Diaz -2.4895069719906626 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, big fan of Cameron Diaz) -> big fan of Cameron Diaz (2717ms) Who is Terrence Malick? warm and humble man -2.4895069719906626 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, warm and humble man) -> warm and humble man (2716ms) Who is Terrence Malick? intense, visual, poetic director -2.4895069719906626 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, intense, visual, poetic director) -> intense, visual, poetic director (2717ms) Who is Terrence Malick? American screen writer, producer and director -2.504588756044595 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, American screen writer, producer and director) -> American screen writer, producer and director (2731ms) Who is Terrence Malick? reclusive, yet widely respected American director and writer -2.5077985964469436 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, reclusive, yet widely respected American director and writer) -> reclusive, yet widely respected American director and writer (2731ms) Who is Terrence Malick? director with arguably more vision -2.521993830880578 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, director with arguably more vision) -> director with arguably more vision (2731ms) Who is Terrence Malick? American screenwriter, filmmaker and producer -2.521993830880578 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, American screenwriter, filmmaker and producer) -> American screenwriter, filmmaker and producer (2731ms) Who is Terrence Malick? legendarily elusive and painstaking director -2.521993830880578 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, legendarily elusive and painstaking director) -> legendarily elusive and painstaking director (2731ms) Who is Terrence Malick? enigmatic American film director, screenwriter, and film producer -2.5730446091361605 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, enigmatic American film director, screenwriter, and film producer) -> enigmatic American film director, screenwriter, and film producer (2731ms) Who is Terrence Malick? enigmatic American film director , screenwriter , and film producer -2.593464920438393 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, enigmatic American film director , screenwriter , and film producer) -> enigmatic American film director , screenwriter , and film producer (2745ms) Who is Terrence Malick? filmmaker -2.8485478861255755 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, filmmaker) -> filmmaker (2762ms) Who is Terrence Malick? director -2.942671358964134 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, director) -> director (2792ms) Who is Terrence Malick? auteur -2.9685484679191747 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, auteur) -> auteur (2935ms) Who is Terrence Malick? producer -2.983990116453622 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, producer) -> producer (2947ms) Who is Terrence Malick? American director -3.0156143124758685 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, American director) -> American director (2960ms) Who is Terrence Malick? master -3.0288824466107718 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, master) -> master (2970ms) Who is Terrence Malick? artist -3.041069460032217 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, artist) -> artist (2970ms) Who is Terrence Malick? veteran -3.06153586088043 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, veteran) -> veteran (2970ms) Who is Terrence Malick? believer -3.1017450610131148 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, believer) -> believer (2970ms) Who is Terrence Malick? feminist -3.102471393580343 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, feminist) -> feminist (2970ms) Who is Terrence Malick? racist -3.106819041625638 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, racist) -> racist (2970ms) Who is Terrence Malick? step -3.114219152949013 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, step) -> step (2979ms) Who is Terrence Malick? painter -3.116824355902943 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, painter) -> painter (2979ms) Who is Terrence Malick? Catholic -3.7577617049779795 Who is Terrence Malick? -> $x: (Terrence Malick, instance of, $x) -> (Terrence Malick, Instance Of, Catholic) -> Catholic (3042ms) Who is Terrence Malick? Natalie Portman -8.031255642387386 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (Natalie Portman, is working with, Terrence MAlick) -> Natalie Portman (4304ms) Who is Terrence Malick? The Road -8.92738327961418 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (The Road, had been filmed by, Terrence Malick) -> The Road (4304ms) Who is Terrence Malick? official competition -9.011663634971896 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (official competition, were, American directors Terrence Malick) -> official competition (4304ms) Who is Terrence Malick? last year -9.032391971368831 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (last year, was, veteran U.S. film maker Terrence Malick) -> last year (4304ms) Who is Terrence Malick? each film -9.05303030864564 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (each film, is released by, Terrence Malick) -> each film (4370ms) Who is Terrence Malick? hard people -9.105327957391495 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (hard people, have been on, Terrence Malick) -> hard people (4370ms) Who is Terrence Malick? notable absentee -9.128377715580902 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (notable absentee, was, the director Terrence Malick) -> notable absentee (4370ms) Who is Terrence Malick? Art -9.198785635379881 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (Art, is having, a Terrence Malick retrospective) -> Art (4370ms) Who is Terrence Malick? time -9.266785210526272 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (time, were, Terrence Malick) -> time (4370ms) Who is Terrence Malick? Terry Malick -9.35939364415421 Who is Terrence Malick? -> who be [ terrence malick ] ? -> who be terrence malick know as ? -> $x: (terrence malick, know as, $x) -> (Terrence Malick, Also known as, Terry Malick) -> Terry Malick (4770ms) Who is Terrence Malick? David Whitney -9.407041037192753 Who is Terrence Malick? -> who be [ terrence malick ] ? -> who be terrence malick know as ? -> $x: (terrence malick, know as, $x) -> (Terrence Malick, Also known as, David Whitney) -> David Whitney (4770ms) Who is Terrence Malick? Terence Malic -9.407041037192753 Who is Terrence Malick? -> who be [ terrence malick ] ? -> who be terrence malick know as ? -> $x: (terrence malick, know as, $x) -> (Terrence Malick, Also known as, Terence Malic) -> Terence Malic (4770ms) Who is Terrence Malick? a vision -9.411301267132458 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (a vision, is equal to, Terrence Malick) -> a vision (4370ms) Who is Terrence Malick? Steven D. Greydanus -9.428349282183001 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (Steven D. Greydanus, Is, Terrence Malick?s) -> Steven D. Greydanus (4434ms) Who is Terrence Malick? far this year -9.445149034613015 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (far this year, is, Terrence Malick?s) -> far this year (4434ms) Who is Terrence Malick? Rooney Mara -9.456342954309951 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (Rooney Mara, were filming, the Terrence Malick film Lawless) -> Rooney Mara (4434ms) Who is Terrence Malick? The New World -9.480452344147983 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (The New World, was, Terrence Malick) -> The New World (4434ms) Who is Terrence Malick? The BFI -9.496184268385923 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (The BFI, are reissuing, Terrence Malick?s Days) -> The BFI (4434ms) Who is Terrence Malick? Pitt -9.574103952315753 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (Pitt, was directed by, Terrence Malick) -> Pitt (4434ms) Who is Terrence Malick? Few films -9.613718019971065 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (Few films, were as polarizing as, Terrence Malick) -> Few films (4434ms) Who is Terrence Malick? Portman?s next gig -9.732265094211815 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (Portman?s next gig, is, Terrence Malick?s film) -> Portman?s next gig (4620ms) Who is Terrence Malick? Life -9.74448788280197 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (Life, is, director Terrence Malick?s meditation) -> Life (4620ms) Who is Terrence Malick? a country mile -9.783349980508829 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (a country mile, was, Terrence Malick?s ambitious feast) -> a country mile (4620ms) Who is Terrence Malick? open-ended take -9.896988423095529 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (open-ended take, could be found in, Terrence Malick?s ?The Tree) -> open-ended take (4620ms) Who is Terrence Malick? 06 :04 -9.922331321178007 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (06 :04, AM Been watching, Terrence Malick?s) -> 06 :04 (4620ms) Who is Terrence Malick? Bale -9.965810507129323 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (Bale, is shooting, two Terrence Malick films) -> Bale (4686ms) Who is Terrence Malick? Cannes -10.031812028211217 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (Cannes, was, Terrence Malick?s Tree) -> Cannes (4686ms) Who is Terrence Malick? moment -10.230308028687316 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (moment, is from, Terrence Malick 's-The Tree) -> moment (4796ms) Who is Terrence Malick? 2009 will -10.379230697603075 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (2009 will, be, Terrence Malick) -> 2009 will (4796ms) Who is Terrence Malick? Terrence Frederick Malick -10.493651214384053 Who is Terrence Malick? -> who be [ terrence malick ] ? -> who be terrence malick know as ? -> $x: (terrence malick, know as, $x) -> (Terrence Malick, Also known as, Terrence Frederick Malick) -> Terrence Frederick Malick (4796ms) Who is Terrence Malick? town -10.529977724909138 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (town, was for, reclusive US director Terrence Malick) -> town (4820ms) Who is Terrence Malick? Anderson -10.85339899825603 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (Anderson, has been studying, Terrence Malick) -> Anderson (4820ms) Who is Terrence Malick? Hazanavicius -10.926722850061097 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (Hazanavicius, was up against, Terrence Malick) -> Hazanavicius (4844ms) Who is Terrence Malick? the year -10.934010224556058 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (the year, was, Terrence Malick?s) -> the year (4844ms) Who is Terrence Malick? the film -11.023177141052297 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (the film, are, Terrence Malick) -> the film (4844ms) Who is Terrence Malick? Tree of Life -11.19416078265997 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (Tree of Life, is directed by, Terrence Malick) -> Tree of Life (4845ms) Who is Terrence Malick? sparky -11.22878437746322 Who is Terrence Malick? -> who be [ terrence malick ] ? -> who be terrence malick know as ? -> $x: (terrence malick, know as, $x) -> (Terrence Malick, Also known as, sparky) -> sparky (4844ms) Who is Terrence Malick? Green -11.29505112333981 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (Green, has been often compared to, Terrence Malick) -> Green (4845ms) Who is Terrence Malick? the top prize -11.313375988344232 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (the top prize, is, Terrence Malick) -> the top prize (4872ms) Who is Terrence Malick? the reclusive genius -11.367362697175396 Who is Terrence Malick? -> who be [ terrence malick ] ? -> who be terrence malick call ? -> $x: (terrence malick, call, $x) -> (Terrence Malick, has been called, the reclusive genius) -> the reclusive genius (3180ms) Who is Terrence Malick? the holy hell -11.469785631793645 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (the holy hell, is going on in, Terrence Malick?s) -> the holy hell (4872ms) Who is Terrence Malick? the biggest boost -11.477782915506538 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (the biggest boost, is, Terrence Malick?s Tree) -> the biggest boost (4873ms) Who is Terrence Malick? The best comparison -11.551921532573086 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (The best comparison, would be, Terrence Malick ?) -> The best comparison (4898ms) Who is Terrence Malick? the movie -11.561944189186917 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (the movie, are brilliant in, a Terrence Malick-inspired way) -> the movie (4898ms) Who is Terrence Malick? The fifth Academy Award nominee -11.616075731296853 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (The fifth Academy Award nominee, is, Terrence Malick) -> The fifth Academy Award nominee (4898ms) Who is Terrence Malick? The more likely nominee -11.616467983089855 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (The more likely nominee, would be, Terrence Malick) -> The more likely nominee (4898ms) Who is Terrence Malick? The film -11.634842466625484 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (The film, was directed by, Terrence Malick) -> The film (4898ms) Who is Terrence Malick? The video screens -11.638116086708486 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (The video screens, were playing, Terrence Malick-y footage) -> The video screens (4898ms) Who is Terrence Malick? The same -11.696865378805992 Who is Terrence Malick? -> who [ be terrence malick ] ? -> who be be be terrence malick ? -> $x: ($x, be be be, terrence malick) -> (The same, is certainly true of, Terrence Malick?s) -> The same (4922ms) Who is Terrence Malick? Terry -11.87891206808708 Who is Terrence Malick? -> who be [ terrence malick ] ? -> who be terrence malick know as ? -> $x: (terrence malick, know as, $x) -> (Terrence Malick, Also known as, Terry) -> Terry (4922ms) Who is Terrence Malick? Clooney -14.489472620532942 Who is Terrence Malick? -> who be [ terrence malick ] ? -> who wa terrence malick ? -> $x: ($x, wa, terrence malick) -> $x: ($x, cameo, terrence malick) -> (Clooney, then made a cameo appearance in, Terrence Malick) -> Clooney (6472ms) When did the Big Dig begin? 1991 0.3806359733100466 When did the Big Dig begin? -> $x: (the Big Dig, did begin in, $x) -> $x: (big dig, begin in, $x) -> $x: (big dig, kick off in, $x) -> (The Big Dig, kicked off in, 1991) -> 1991 (3961ms) When did the Big Dig begin? the post-WWII Interstate Highway boom -4.014668918306778 When did the Big Dig begin? -> $x: (the Big Dig, did begin in, $x) -> $x: (big dig, begin in, $x) -> (the Big Dig, began in, the post-WWII Interstate Highway boom) -> the post-WWII Interstate Highway boom (3551ms) When did the Big Dig begin? the mid-1980s -5.10962948384541 When did the Big Dig begin? -> $x: (the Big Dig, did begin in, $x) -> $x: (big dig, begin in, $x) -> $x: (big dig, break ground in, $x) -> ('s Big Dig, broke ground in, the mid-1980s) -> the mid-1980s (3575ms) When did the Big Dig begin? Boston -5.815739146532735 When did the Big Dig begin? -> $x: (the Big Dig, did begin in, $x) -> $x: (big dig, begin in, $x) -> $x: (big dig, start in, $x) -> (?The Big Dig, was starting in, Boston) -> Boston (4127ms) When did the Big Dig begin? millions -10.96600571264074 When did the Big Dig begin? -> when do [ the big dig ] begin ? -> what be the beginning of the big dig ? -> $x: (the big dig, beginning, $x) -> (The big dig, begins today for, millions) -> millions (6164ms) When did the Big Dig begin? much success -11.028957780920456 When did the Big Dig begin? -> when do [ the big dig ] begin ? -> what be the beginning of the big dig ? -> $x: (the big dig, beginning, $x) -> (the big dig, began ? without, much success) -> much success (6164ms) When did the Big Dig begin? the 1970?s -11.362932193235801 When did the Big Dig begin? -> when do [ the big dig ] begin ? -> when be the big dig begin ? -> $x: (the big dig, be begin in, $x) -> $x: (the big dig, be conceive in, $x) -> (The ?Big Dig? tunnel system, was conceived in, the 1970?s) -> the 1970?s (6776ms) When did the Big Dig begin? Dawn -11.706038929224455 When did the Big Dig begin? -> when do [ the big dig ] begin ? -> what year do the big dig begin ? -> $x: ($x, instance of, year) (the big dig, begin, $x) -> (Dawn, Instance Of, eight-year mission) (The ?Big Dig?, began at, dawn) -> Dawn (5112ms) When did the Big Dig begin? dawn -11.847611638374595 When did the Big Dig begin? -> when do [ the big dig ] begin ? -> what be the beginning of the big dig ? -> $x: (the big dig, beginning, $x) -> (The ?Big Dig?, began at, dawn) -> dawn (6164ms) When did the Big Dig begin? Car -12.098646666317109 When did the Big Dig begin? -> when do [ the big dig ] begin ? -> what date do the big dig open ? -> $x: ($x, instance of, date) (the big dig, open, $x) -> (Car, Instance Of, 1986 production date car) (the Big Dig, finally opened to, cars) -> Car (5737ms) When did the Big Dig begin? car -12.106733419024408 When did the Big Dig begin? -> when do [ the big dig ] begin ? -> what date do the big dig open ? -> $x: ($x, instance of, date) (the big dig, open, $x) -> (car, Instance Of, private date location) (the Big Dig, finally opened to, cars) -> car (5737ms) When did the Big Dig begin? Millions -12.690234221359576 When did the Big Dig begin? -> when do [ the big dig ] begin ? -> what year do the big dig begin ? -> $x: ($x, instance of, year) (the big dig, begin, $x) -> (Millions, Instance Of, good 2-year-old) (The big dig, begins today for, millions) -> Millions (5456ms) When did the Big Dig begin? the Massachusetts Secretary -12.69861036350328 When did the Big Dig begin? -> when [ do the big dig ] begin ? -> who begin do the big dig ? -> $x: ($x, begin do, the big dig) -> $x: ($x, begin, big dig) -> (the Massachusetts Secretary, begins planning, the Big Dig) -> the Massachusetts Secretary (10394ms) When did the Big Dig begin? any construction -12.772757806162318 When did the Big Dig begin? -> when [ do the big dig ] begin ? -> who begin do the big dig ? -> $x: ($x, begin do, the big dig) -> $x: ($x, begin, big dig) -> (any construction, began on, the Big Dig) -> any construction (10394ms) When did the Big Dig begin? DAWN -12.832468072864728 When did the Big Dig begin? -> when do [ the big dig ] begin ? -> what day do the big dig begin ? -> $x: ($x, instance of, day) (the big dig, begin, $x) -> (DAWN, Instance Of, time of day description) (The ?Big Dig?, began at, dawn) -> DAWN (5455ms) When did the Big Dig begin? boston -14.612589056074349 When did the Big Dig begin? -> when do [ the big dig ] begin ? -> what date do the big dig begin ? -> $x: ($x, instance of, date) (the big dig, begin, $x) -> $x: ($x, instance of, date) (the big dig, be start, $x) -> (boston, Instance Of, country completely out-dated brace) (?The Big Dig, was starting in, Boston) -> boston (12581ms) Which authority runs the airport? MassPort -4.289739914477748 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> (MassPort, Instance Of, authority) (Massport, runs, the airport) -> MassPort (1943ms) Which authority runs the airport? BAA -4.47513862535946 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> (BAA, Instance Of, aviation authority) (BAA, runs, the airport) -> BAA (1943ms) Which authority runs the airport? MASSPORT -5.539268003189642 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> (MASSPORT, Instance Of, state legislated public authority) (Massport, runs, the airport) -> MASSPORT (3211ms) Which authority runs the airport? Massport -5.54558167688594 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> (Massport, Instance Of, independent authority) (Massport, runs, the airport) -> Massport (3211ms) Which authority runs the airport? coach -6.35969846130657 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> (coach, Instance Of, authority) (Coaches, run from, the airport) -> coach (3393ms) Which authority runs the airport? Taxi -6.615615766582636 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> (Taxi, Instance Of, authority) (Taxis, run from, the airport) -> Taxi (3393ms) Which authority runs the airport? government -6.829866341003447 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, run, airport) -> (government, Instance Of, authority) (Governments, now try to run, airports) -> government (3511ms) Which authority runs the airport? Service -7.198094043321386 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> (Service, Instance Of, authority) (Services, running from, the airport) -> Service (3511ms) Which authority runs the airport? bus -7.243221900080744 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, from run, the airport) -> (bus, Instance Of, port authority property) (Bush, ran from, the airport) -> bus (9459ms) Which authority runs the airport? Hurley -7.26222859327455 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> (Hurley, Instance Of, authority) (Hurley, runs through, the airport) -> Hurley (3562ms) Which authority runs the airport? Metro -7.26222859327455 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> (Metro, Instance Of, authority) (Metro, runs from, the airport) -> Metro (3562ms) Which authority runs the airport? Bush -7.280241696748786 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, from run, the airport) -> (Bush, Instance Of, authority) (Bush, ran from, the airport) -> Bush (9460ms) Which authority runs the airport? Sun -7.416965673868722 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, would run, the airport) -> (Sun, Instance Of, certification authority company) (Sun, would have run away from, the airport) -> Sun (4713ms) Which authority runs the airport? Mr. Wright -7.507250145832522 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, to be run, the airport) -> (Mr. Wright, Instance Of, recognized authority) (Mr. Wright, was asked to run, the local city airport) -> Mr. Wright (4115ms) Which authority runs the airport? Government -7.62416426240667 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, run, airport) -> (Government, Instance Of, authority) (Governments, now try to run, airports) -> Government (3589ms) Which authority runs the airport? McNeil -8.085352125720924 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, to rush, the airport) -> (McNeil, Instance Of, authority) (Neil, had to rush to, the airport) -> McNeil (7196ms) Which authority runs the airport? eVisitor -8.213091837388472 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, just drive, the airport) -> (eVisitor, Instance Of, authority) (visitors, is just a 20-minute drive from, the airport) -> eVisitor (4713ms) Which authority runs the airport? Doug -8.365648844714904 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, to rush, the airport) -> (Doug, Instance Of, authority) (Doug, rushed to, the airport) -> Doug (7196ms) Which authority runs the airport? taxi -8.369476554499798 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, be be run, the airport) -> (taxi, Instance Of, public authority) (Taxi, was running late to, the airport) -> taxi (8584ms) Which authority runs the airport? Zappos -8.490305574668554 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, be be run, the airport) -> (Zappos, Instance Of, authority site) (Zappos, would have been to run to, the airport) -> Zappos (8584ms) Which authority runs the airport? Jessica -8.538256058586636 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, be be run, the airport) -> (Jessica, Instance Of, authority) (Jessica, is running through, the Newark airport) -> Jessica (8584ms) Which authority runs the airport? BC Ferries -8.658047598055475 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, from run, the airport) -> (BC Ferries, Instance Of, transportation authority) (Ferries, run from, the airport) -> BC Ferries (9459ms) Which authority runs the airport? David -8.987477121456882 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, to rush, the airport) -> (David, Instance Of, authority) (David, was reportedly rushing to, the airport) -> David (7196ms) Which authority runs the airport? Andrew -9.024190001235262 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, to rush, the airport) -> (Andrew, Instance Of, authority) (Andrew, then rushed back to, the airport) -> Andrew (7196ms) Which authority runs the airport? Office -9.115193357820377 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, to rush, the airport) -> (Office, Instance Of, authority) (office, have to rush to, the airport) -> Office (7196ms) Which authority runs the airport? Andrews -9.222684746491243 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, to rush, the airport) -> (Andrews, Instance Of, authority) (Andrew, then rushed back to, the airport) -> Andrews (7196ms) Which authority runs the airport? Michigan -9.233060094549312 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, just drive, the airport) -> (Michigan, Instance Of, leading authority) (Michigan, is just a short drive from, the airport) -> Michigan (4713ms) Which authority runs the airport? authority -9.245621756275611 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, be one form of, authority) ($x, runs, the airport) -> (authority, is one form of, actual authority) (the Authority, ran, the airport) -> authority (8850ms) Which authority runs the airport? airport parking -9.262444320955282 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, run, airport) -> $x: ($x, instance of, authority) ($x, be be run, airport) -> (airport parking, Instance Of, authority) (Airport parking, is run by, Heathrow Airport) -> airport parking (14008ms) Which authority runs the airport? The device -9.30917208872807 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, be a by, authority) ($x, runs, the airport) -> (The device, was created by a..., French authorities) (the device, then run, the included AirPort configuration utility) -> The device (6119ms) Which authority runs the airport? Godfrey -9.327186283191061 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, scurry, the airport) -> (Godfrey, Instance Of, authority) (Godfrey, scurried back to, the airport) -> Godfrey (7991ms) Which authority runs the airport? Orange County -9.389985126118555 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, run, airport) -> $x: ($x, instance of, authority) ($x, have problem, airport) -> (Orange County, Instance Of, Aquatic Authority) (Orange County, has the same problems with, John Wayne Airport) -> Orange County (11610ms) Which authority runs the airport? the country -9.40626184186127 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, be a by, authority) ($x, runs, the airport) -> (the country, is a major argument used by, Iraqi authorities) (the country, are run distinctively to, the airport) -> the country (6119ms) Which authority runs the airport? experience -9.52223265592555 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, run, airport) -> $x: (authority, element, $x) ($x, run, airport) -> (Authority, is a many-faceted element in, experience) (This experience, is run out, both Bathurst Airport) -> experience (14008ms) Which authority runs the airport? training course -9.591659687359469 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, run, airport) -> $x: ($x, instance of, authority) ($x, be be run, airport) -> (training course, Instance Of, information for local authority) (Training courses, are run by, Robin Hood Airport) -> training course (14008ms) Which authority runs the airport? VIP -9.737098465803964 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, run, airport) -> $x: ($x, instance of, authority) ($x, lounge, airport) -> (VIP, Instance Of, program of Longview Housing Authority) (VIP, lounges worldwide at almost, 100 airports) -> VIP (14795ms) Which authority runs the airport? VIPs -9.810655731708291 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, run, airport) -> $x: ($x, instance of, authority) ($x, lounge, airport) -> (VIPs, Instance Of, position of authority) (VIP, lounges worldwide at almost, 100 airports) -> VIPs (14795ms) Which authority runs the airport? Mr. Mondale -10.065724059058095 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, run, airport) -> $x: ($x, instance of, authority) ($x, could walk, airport) -> (Mr. Mondale, Instance Of, international authority) (Mondale, could walk through, any airport) -> Mr. Mondale (13026ms) Which authority runs the airport? owner -10.18349790506334 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, drive it, the airport) -> (owner, Instance Of, authority) (Owners, can drive it to, the nearest small airport) -> owner (10467ms) Which authority runs the airport? the program -10.226248508670611 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, run, airport) -> $x: ($x, modelling, authority) ($x, run, airport) -> (the program, are modeled after, the New York Power Authority) (The program, has so far run through, airports) -> the program (12245ms) Which authority runs the airport? lawyer -10.357758070178791 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, run, airport) -> $x: ($x, instance of, authority) ($x, to rush, airport) -> (lawyer, Instance Of, authority) (lawyers, rushed to, KL International Airport) -> lawyer (14812ms) Which authority runs the airport? expert -10.425096339634218 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, run, airport) -> $x: ($x, instance of, authority) ($x, to rush, airport) -> (expert, Instance Of, authority) (experts, rushed to, a closed airport hangar) -> expert (14812ms) Which authority runs the airport? Owner -10.876610390142464 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, drive it, the airport) -> (Owner, Instance Of, public authority) (Owners, can drive it to, the nearest small airport) -> Owner (10467ms) Which authority runs the airport? Peter -10.9171669938159 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, run, airport) -> $x: ($x, instance of, authority) ($x, to rush, airport) -> (Peter, Instance Of, authority) (Peter, rushed to, Kennedy airport) -> Peter (16640ms) Which authority runs the airport? train -11.1186984848846 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, run, airport) -> $x: ($x, instance of, authority) ($x, from run, airport) -> (train, Instance Of, transportation authority communication system) (Trains, run from, the airport) -> train (11823ms) Which authority runs the airport? Berlin -11.118812570973049 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, run, airport) -> $x: ($x, instance of, authority) ($x, just drive, airport) -> (Berlin, Instance Of, local authority) (Berlin, is just a 10-minute drive from, Tegel Airport) -> Berlin (12717ms) Which authority runs the airport? Roosevelt -11.17306317466201 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, run, airport) -> $x: ($x, instance of, authority) ($x, be whisk, airport) -> (Roosevelt, Instance Of, authority) (Roosevelt, was whisked from, Midway Airport) -> Roosevelt (14426ms) Which authority runs the airport? Peters -11.309812710980246 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, run, airport) -> $x: ($x, instance of, authority) ($x, to rush, airport) -> (Peters, Instance Of, authority) (Peter, rushed to, Kennedy airport) -> Peters (16640ms) Which authority runs the airport? Reader -11.40992571244426 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, run, airport) -> $x: ($x, instance of, authority) ($x, have problem, airport) -> (Reader, Instance Of, authority) (Reader, has problem with, Win XP and AirPort) -> Reader (12103ms) Which authority runs the airport? the government -11.666325380296776 Which authority runs the airport? -> $x: ($x, instance of, authority) ($x, runs, the airport) -> $x: ($x, instance of, authority) ($x, run, airport) -> $x: ($x, instance of, authority) ($x, look to start, airport) -> (the government, Instance Of, intellectual authority) (the government, started looking forward to, another airport) -> the government (14441ms) Which authority runs the airport? Port Authority -15.397538726790732 Which authority runs the airport? -> which [ authority run the airport ] ? -> what bi authority run the airport ? -> $x: ($x, instance of, bi authority) ($x, run, the airport) -> (Port Authority, Instance Of, bi-state governmental authority of both New York and New Jersey) (the Port Authority, runs, the airport) -> Port Authority (16640ms) Which authority runs the airport? Tri-Rail -15.752944018820019 Which authority runs the airport? -> which [ authority run the airport ] ? -> what three authority run the airport ? -> $x: ($x, instance of, three authority) ($x, run, the airport) -> (Tri-Rail, Instance Of, three-county commuter rail authority) (The Tri-Rail, runs from, the airport) -> Tri-Rail (16640ms) Where is NATO headquartered? Brussels -3.2255775163884635 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> (NATO, is headquartered in, Brussels) -> Brussels (3268ms) Where is NATO headquartered? Norfolk -5.347786256627785 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be locate in, $x) -> (NATO, is located in, Norfolk) -> Norfolk (5308ms) Where is NATO headquartered? Greece -5.474822933243015 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be pressure, $x) -> (the EU and Nato, were applying pressure on, Greece) -> Greece (4238ms) Where is NATO headquartered? Afghanistan -5.66537854296988 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be base in, $x) -> (the US and Nato forces, are currently based in, Afghanistan) -> Afghanistan (5066ms) Where is NATO headquartered? Paris -5.741976642893679 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be base in, $x) -> (the NATO headquarters, was based in, Paris) -> Paris (5066ms) Where is NATO headquartered? Croatia -5.808356034339897 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be base in, $x) -> (NATO troops, are now based in, Croatia) -> Croatia (5066ms) Where is NATO headquartered? Europe -5.821420431069103 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be base in, $x) -> (NATO base, is the largest military base in, Europe) -> Europe (5066ms) Where is NATO headquartered? Malta -5.990410123373345 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: ($x, be the headquarters of, NATO) -> (Malta, was the headquarters of, Southern Nato Command) -> Malta (4210ms) Where is NATO headquartered? Eastern Europe -5.991152436515217 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be expand into, $x) -> (NATO, is expanding into, Eastern Europe) -> Eastern Europe (5122ms) Where is NATO headquartered? Germany -6.27392492946177 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be base in, $x) -> (NATO?s missile shield program, will be based here in, Germany) -> Germany (5066ms) Where is NATO headquartered? Izmir -6.350979437265401 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be locate in, $x) -> (Two NATO headquarters, are located in, Izmir) -> Izmir (5307ms) Where is NATO headquartered? Teveren -6.4509503376759705 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be locate in, $x) -> (NATO Air Base Geilenkirchen, is located in, Teveren) -> Teveren (5347ms) Where is NATO headquartered? Russia -6.457264956653473 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (Nato, expanded to, Russia) -> Russia (4455ms) Where is NATO headquartered? Berlin -6.4578267523337844 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, be meeting in, $x) -> (NATO, is meeting here in, Berlin) -> Berlin (5714ms) Where is NATO headquartered? Chicago -6.537110900146309 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, be meeting in, $x) -> (NATO, are meeting in, Chicago) -> Chicago (5714ms) Where is NATO headquartered? Capellen -6.568315514993356 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be locate in, $x) -> (The NATO Support Agency, will be located in, Capellen) -> Capellen (5348ms) Where is NATO headquartered? Ukraine -6.712210502411972 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand into, $x) -> (NATO, has already expanded into, Ukraine) -> Ukraine (4455ms) Where is NATO headquartered? Kyrgyzstan -6.730843248473731 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, base in, $x) -> (Nato, needs a base in, Kyrgyzstan) -> Kyrgyzstan (4521ms) Where is NATO headquartered? the Balkans -6.829320970706345 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, have be operate in, $x) -> (NATO, has been operating in, the Balkans) -> the Balkans (4168ms) Where is NATO headquartered? Libya -6.874529936744229 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, begin operation in, $x) -> (NATO forces, began military operations in, Libya) -> Libya (4589ms) Where is NATO headquartered? France -6.911363885569645 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, have its headquarters in, $x) -> (Nato, had had its headquarters in, France) -> France (5183ms) Where is NATO headquartered? America -7.1879439896934745 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, have turn against, $x) -> (NATO, would have turned against, America) -> America (4921ms) Where is NATO headquartered? Papa -7.194182142635917 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, base in, $x) -> (NATO, set up a base in, Papa) -> Papa (4589ms) Where is NATO headquartered? Central Europe -7.202206121159761 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, expanded to, Central Europe) -> Central Europe (4636ms) Where is NATO headquartered? Yugoslav territory -7.32365443697017 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be base in, $x) -> (NATO troops, must be based in, Yugoslav territory) -> Yugoslav territory (5097ms) Where is NATO headquartered? Polish troops -7.388359891480339 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: ($x, be know throughout, NATO) -> (Polish troops, are now known throughout, the NATO alliance) -> Polish troops (4871ms) Where is NATO headquartered? Georgia -7.406912428118235 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, have a presence in, $x) -> (the US and NATO, have a military presence in, Georgia) -> Georgia (4921ms) Where is NATO headquartered? Washington -7.411757496107012 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, be meeting in, $x) -> (NATO leaders, are meeting in, Washington) -> Washington (5755ms) Where is NATO headquartered? Tirana -7.415172742645605 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, set up in, $x) -> (a NATO cell, was set up in, Tirana) -> Tirana (5954ms) Where is NATO headquartered? Madrid -7.416555254484001 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, be meeting in, $x) -> (the Russia-NATO council, are to hold a meeting in, Madrid) -> Madrid (5769ms) Where is NATO headquartered? Belium -7.423744064738541 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: ($x, be home of, nato) -> (Belium, is the home of, NATO) -> Belium (5769ms) Where is NATO headquartered? the Mediterranean -7.437418043231252 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be base in, $x) -> (NATO Maritime Group 1, is usually based in, the Mediterranean) -> the Mediterranean (5097ms) Where is NATO headquartered? Victoria -7.4459534767514715 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, be meeting in, $x) -> (NATO Parliamentary Assembly, was going to meet in, Victoria) -> Victoria (5769ms) Where is NATO headquartered? Quebec City -7.454609340541662 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, be meeting in, $x) -> (the NATO parliamentary assembly, is meeting in, Quebec City) -> Quebec City (5769ms) Where is NATO headquartered? the Taliban -7.4889994020670265 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be turn against, $x) -> (Nato command, are turning the tide against, the Taliban) -> the Taliban (4956ms) Where is NATO headquartered? missile defense -7.4954200015441845 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, agreed to expand, missile defense) -> missile defense (4636ms) Where is NATO headquartered? Macedonia -7.5014971288972205 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, have a presence in, $x) -> (NATO, has had a presence in, Macedonia) -> Macedonia (4921ms) Where is NATO headquartered? the Mediterranean Sea -7.550568067349106 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, start operation in, $x) -> (NATO, started naval operations in, the Mediterranean Sea) -> the Mediterranean Sea (4666ms) Where is NATO headquartered? Keflavik -7.656867728259192 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, have a presence in, $x) -> (other NATO countries, have had a permanent presence in, Keflavik) -> Keflavik (4921ms) Where is NATO headquartered? Bosnia -7.689931633924389 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, operate in, $x) -> (Russian and NATO troops, are operating well together in, Bosnia) -> Bosnia (5586ms) Where is NATO headquartered? Central and Eastern Europe -7.71493645421655 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand into, $x) -> (NATO, could expand into, Central and Eastern Europe) -> Central and Eastern Europe (4667ms) Where is NATO headquartered? the East -7.745202335472653 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, was expanded to, the East) -> the East (4667ms) Where is NATO headquartered? Krakow -7.785485429063038 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, be meeting in, $x) -> (NATO defence ministers, are due to meet in, Krakow) -> Krakow (5848ms) Where is NATO headquartered? the UN. -7.7874967673050115 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, be charter by, $x) -> (NATO, is chartered by, the UN.) -> the UN. (5463ms) Where is NATO headquartered? U.S. influence -7.798980230137694 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO expansion, was to expand, U.S. influence) -> U.S. influence (4667ms) Where is NATO headquartered? Syria -7.8475995208029445 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, operate in, $x) -> (NATO forces, already operate covertly in, Syria) -> Syria (5612ms) Where is NATO headquartered? the West -7.858096993777819 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand into, $x) -> (NATO, has just expanded into, the West) -> the West (4666ms) Where is NATO headquartered? three Baltic states -7.867088493687673 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, will be expanded to include, three Baltic states) -> three Baltic states (4666ms) Where is NATO headquartered? Russian border -7.931609876775619 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, is expanding right to, Russian border) -> Russian border (4871ms) Where is NATO headquartered? Poland -7.938813155435989 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, to invest in, $x) -> (NATO, has decided to heavily invest in, Poland) -> Poland (5848ms) Where is NATO headquartered? troops -7.971817154900656 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be pressure, $x) -> (further NATO integration, be pressured for, troops) -> troops (4238ms) Where is NATO headquartered? The Bucharest Summit -7.983707482268262 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: ($x, be the biggest in, NATO) -> (The Bucharest Summit, will be the biggest in, NATO?s history) -> The Bucharest Summit (4210ms) Where is NATO headquartered? Tallinn -7.989093932850722 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, located in, $x) -> (the NATO Cyber Defence Centre, located in, Tallinn) -> Tallinn (5848ms) Where is NATO headquartered? new client-states -8.012822090455531 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, has been expanded to incorporate, new client-states) -> new client-states (4871ms) Where is NATO headquartered? Poland , Hungary -8.06056873583999 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, was expanded to include, Poland , Hungary) -> Poland , Hungary (4921ms) Where is NATO headquartered? Khaled -8.096211163442572 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: ($x, file a lawsuit against, nato) -> (Khaled, has filed a lawsuit against, NATO) -> Khaled (5860ms) Where is NATO headquartered? southern Afghanistan -8.112443792739274 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand into, $x) -> (NATO, expand into, southern Afghanistan) -> southern Afghanistan (4956ms) Where is NATO headquartered? Chicago ? -8.120750917902347 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, be meeting in, $x) -> (The NATO summit, will still be meeting in, Chicago ?) -> Chicago ? (5860ms) Where is NATO headquartered? India and China -8.341734246921133 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, expand up to, India and China) -> India and China (4956ms) Where is NATO headquartered? NATO missions -8.367624051414523 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, have a presence in, $x) -> (NATO ?, has always been a dynamic presence in, NATO missions) -> NATO missions (4956ms) Where is NATO headquartered? flight -8.37025442460519 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, control in, $x) -> (NATO, loses control in, flight) -> flight (4956ms) Where is NATO headquartered? Central -8.412590839017895 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, located in, $x) -> (the new NATO members, located in, Central) -> Central (5954ms) Where is NATO headquartered? the Baltics -8.434674336237268 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, expanded to include, the Baltics) -> the Baltics (4956ms) Where is NATO headquartered? the town -8.442806299003223 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, be locate in, $x) -> (NATO, is located in, the town) -> the town (5348ms) Where is NATO headquartered? East Europe -8.466485665243594 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand into, $x) -> (NATO expansion, continue to expand into, East Europe) -> East Europe (4996ms) Where is NATO headquartered? Tbilisi and branches -8.468963782030514 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, have office in, $x) -> (NATO, has its main office in, Tbilisi and branches) -> Tbilisi and branches (4239ms) Where is NATO headquartered? large areas -8.480488735644068 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (Today NATO, has expanded to, large areas) -> large areas (4996ms) Where is NATO headquartered? ten new members -8.523958519147001 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, has expanded to include, ten new members) -> ten new members (4995ms) Where is NATO headquartered? former adversaries -8.5521882847709 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, has already expanded to include, former adversaries) -> former adversaries (4995ms) Where is NATO headquartered? federal law -8.725323653883784 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, operate outside, $x) -> (NATO, freely operate outside, federal law) -> federal law (5348ms) Where is NATO headquartered? SHAPE -8.816396328713475 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, be charter by, $x) -> (the NATO air bridge, are commercially chartered by, SHAPE) -> SHAPE (5464ms) Where is NATO headquartered? three -8.822745476081215 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, instead has been expanded to include, three) -> three (5122ms) Where is NATO headquartered? eastwards -8.89413741274106 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, continues to expand, eastwards) -> eastwards (5122ms) Where is NATO headquartered? EAGLE GUARDIAN -8.914685064929383 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO?s Military Committee, agreed to expand, EAGLE GUARDIAN) -> EAGLE GUARDIAN (5122ms) Where is NATO headquartered? secularism -8.928744294631613 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: ($x, be the second largest in, nato) -> (secularism, is the second-largest force in, NATO) -> secularism (5490ms) Where is NATO headquartered? membership -9.003713328609448 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, wants to expand, membership) -> membership (5151ms) Where is NATO headquartered? the NATO base -9.218989410514462 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, base at, $x) -> (the NATO missile shield, will be based at, the NATO base) -> the NATO base (5627ms) Where is NATO headquartered? the city -9.243029702589272 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: ($x, be the headquarters of, NATO) -> (the city, was the headquarters of, NATO) -> the city (4210ms) Where is NATO headquartered? The capital -9.29791451271435 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: ($x, be the headquarters of, NATO) -> (The capital, is the headquarters of, NATO) -> The capital (4238ms) Where is NATO headquartered? each other -9.305666120565155 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, operate in, $x) -> (NATO members, operate in, each other) -> each other (5627ms) Where is NATO headquartered? progress -9.307509696493755 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, have operation in, $x) -> (NATO, has its own psychological operation in, progress) -> progress (5151ms) Where is NATO headquartered? three-quarters -9.313881603706829 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, operate in, $x) -> (Nato, is operating in, three-quarters) -> three-quarters (5627ms) Where is NATO headquartered? support -9.322441287901896 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, start operation in, $x) -> (NATO, may soon start another operation in, support) -> support (5151ms) Where is NATO headquartered? former Soviet territory -9.329147270517824 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, operate within, $x) -> (NATO, operate within, former Soviet territory) -> former Soviet territory (5627ms) Where is NATO headquartered? the west -9.339085566780675 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, expands to, the west) -> the west (5151ms) Where is NATO headquartered? the south -9.43274596932244 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand into, $x) -> (the NATO, expands into, the south) -> the south (5151ms) Where is NATO headquartered? Afghanistan every time -9.511115827576493 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (nato, headquarter in, $x) -> $x: (nato, do business in, $x) -> (the US and Nato, do business in, Afghanistan every time) -> Afghanistan every time (5490ms) Where is NATO headquartered? 10,000 troops -9.64483740724252 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, would expand to about, 10,000 troops) -> 10,000 troops (5151ms) Where is NATO headquartered? the empire -9.749761067856081 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (Nato, is being used to expand, the empire) -> the empire (5182ms) Where is NATO headquartered? the borders -9.755001723539994 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (The NATO, is provocatively expanding to, the borders) -> the borders (5183ms) Where is NATO headquartered? peacekeeping operations -9.763010315796906 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO members, to expand, peacekeeping operations) -> peacekeeping operations (5183ms) Where is NATO headquartered? the volume -9.84963589533664 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (Nato diplomats, are also seeking to expand, the volume) -> the volume (5253ms) Where is NATO headquartered? the southern sector -9.86990787794608 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (the Nato mission, is expanded to cover, the southern sector) -> the southern sector (5253ms) Where is NATO headquartered? the east -9.999170167251279 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, expands to, the east) -> the east (5253ms) Where is NATO headquartered? 28 member states -10.009598648788263 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO today, has expanded to, 28 member states) -> 28 member states (5254ms) Where is NATO headquartered? the very borders -10.042158034736978 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, expand up to, the very borders) -> the very borders (5254ms) Where is NATO headquartered? the transit -10.043990975666429 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, would like to expand, the transit) -> the transit (5254ms) Where is NATO headquartered? the plan -10.044974467115736 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, agreed to expand, the plan) -> the plan (5367ms) Where is NATO headquartered? the mission -10.066195204253528 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (NATO, has to expand, the mission) -> the mission (5368ms) Where is NATO headquartered? the desired ?regime change -10.195859513642676 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, have engineer, $x) -> (its NATO allies, have engineered, the desired ?regime change) -> the desired ?regime change (4168ms) Where is NATO headquartered? the benefit -10.265611911171588 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (the NATO bargain, has dramatically expanded to, the benefit) -> the benefit (5368ms) Where is NATO headquartered? the soil -10.265939594837334 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand to, $x) -> (the NATO alliance, have expanded adjacent to, the soil) -> the soil (5368ms) Where is NATO headquartered? the former Soviet expanse -10.338279936926803 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, expand into, $x) -> (the EU and NATO, expanded into, the former Soviet expanse) -> the former Soviet expanse (5490ms) Where is NATO headquartered? the broader Middle East -10.33833384867486 Where is NATO headquartered? -> $x: (NATO, is headquartered in, $x) -> $x: (NATO, to operate in, $x) -> (NATO, begins to operate in, the broader Middle East) -> the broader Middle East (5490ms) How long does the Madness last? 9780252023996 -10.174099797886553 How long does the Madness last? -> How does the Madness last? -> how do [ the madness last ] ? -> what be the translation of the madness last ? -> $x: (the madness last, translation, $x) -> $x: ($x, edition, the madness last) -> (9780252023996, Book Editions, From mission to madness : last son of the Mormon prophet) -> 9780252023996 (16295ms) How long does the Madness last? 9780915815357 -10.38255714243018 How long does the Madness last? -> How does the Madness last? -> how do [ the madness last ] ? -> what be the translation of the madness last ? -> $x: (the madness last, translation, $x) -> $x: ($x, edition, the madness last) -> (9780915815357, Book Editions, Last Days Madness: Obsession of the Modern Church) -> 9780915815357 (16295ms) How long does the Madness last? 9780915815319 -10.38255714243018 How long does the Madness last? -> How does the Madness last? -> how do [ the madness last ] ? -> what be the translation of the madness last ? -> $x: (the madness last, translation, $x) -> $x: ($x, edition, the madness last) -> (9780915815319, Book Editions, Last Days Madness: Obsession of the Modern Church) -> 9780915815319 (16295ms) How long does the Madness last? 9780252067013 -10.412336763079269 How long does the Madness last? -> How does the Madness last? -> how do [ the madness last ] ? -> what be the translation of the madness last ? -> $x: (the madness last, translation, $x) -> $x: ($x, edition, the madness last) -> (9780252067013, Book Editions, From mission to madness: last son of the Mormon prophet) -> 9780252067013 (16295ms) How long does the Madness last? Cris D'Amato -11.358302467704958 How long does the Madness last? -> How does the Madness last? -> how do [ the madness last ] ? -> what be the translation of the madness last ? -> $x: (the madness last, translation, $x) -> $x: ($x, film, the madness last) -> (Cris D'Amato, Films directed, The Last Madness) -> Cris D'Amato (16432ms) How long does the Madness last? 2007 -11.402446940525095 How long does the Madness last? -> How does the Madness last? -> how do [ the madness last ] ? -> what be the translation of the madness last ? -> $x: (the madness last, translation, $x) -> $x: (the madness last, release, $x) -> (The Last Madness, Initial release date, 2007) -> 2007 (16084ms) How long does the Madness last? 2 -11.464389373876292 How long does the Madness last? -> How does the Madness last? -> how do [ the madness last ] ? -> what be the translation of the madness last ? -> $x: (the madness last, translation, $x) -> $x: (the madness last, track, $x) -> (Overture: Last Stop: This Town / Beautiful Freak / Rags to Rags / Your Lucky Day in Hell / My Descent Into Madness / Novocaine for the Soul / Flower, Track #, 2) -> 2 (15862ms) How long does the Madness last? World cinema -11.478253946683108 How long does the Madness last? -> How does the Madness last? -> how do [ the madness last ] ? -> what be the translation of the madness last ? -> $x: (the madness last, translation, $x) -> $x: ($x, film, the madness last) -> (World cinema, Films of this genre, The Last Madness) -> World cinema (16432ms) How long does the Madness last? Last Days Madness -11.525377741995953 How long does the Madness last? -> How does the Madness last? -> how do [ the madness last ] ? -> what be the translation of the madness last ? -> $x: (the madness last, translation, $x) -> $x: ($x, edition, the madness last) -> (Last Days Madness, Editions, Last Days Madness: Obsession of the Modern Church) -> Last Days Madness (16295ms) How long does the Madness last? From mission to madness -11.601953909379326 How long does the Madness last? -> How does the Madness last? -> how do [ the madness last ] ? -> what be the translation of the madness last ? -> $x: (the madness last, translation, $x) -> $x: ($x, edition, the madness last) -> (From mission to madness, Editions, From mission to madness : last son of the Mormon prophet) -> From mission to madness (16321ms) How long does the Madness last? Overture: Last Stop: This Town / Beautiful Freak / Rags to Rags / Your Lucky Day in Hell / My Descent Into Madness / Novocaine for the Soul / Flower -11.842244641513359 How long does the Madness last? -> How does the Madness last? -> how do [ the madness last ] ? -> what be the translation of the madness last ? -> $x: (the madness last, translation, $x) -> $x: ($x, recording, the madness last) -> (Overture: Last Stop: This Town / Beautiful Freak / Rags to Rags / Your Lucky Day in Hell / My Descent Into Madness / Novocaine for the Soul / Flower, Recording, Overture: Last Stop: This Town / Beautiful Freak / Rags to Rags / Your Lucky Day in Hell / My Descent Into Madness / Novocaine for the Soul / Flower) -> Overture: Last Stop: This Town / Beautiful Freak / Rags to Rags / Your Lucky Day in Hell / My Descent Into Madness / Novocaine for the Soul / Flower (16383ms) How long does the Madness last? Eels -11.861324798903654 How long does the Madness last? -> How does the Madness last? -> how do [ the madness last ] ? -> what be the translation of the madness last ? -> $x: (the madness last, translation, $x) -> $x: ($x, recording, the madness last) -> (Eels, Tracks Recorded, Overture: Last Stop: This Town / Beautiful Freak / Rags to Rags / Your Lucky Day in Hell / My Descent Into Madness / Novocaine for the Soul / Flower) -> Eels (16383ms) How long does the Madness last? Oh What a Beautiful Morning -11.87809220994361 How long does the Madness last? -> How does the Madness last? -> how do [ the madness last ] ? -> what be the translation of the madness last ? -> $x: (the madness last, translation, $x) -> $x: (the madness last, release, $x) -> (Overture: Last Stop: This Town / Beautiful Freak / Rags to Rags / Your Lucky Day in Hell / My Descent Into Madness / Novocaine for the Soul / Flower, Release, Oh What a Beautiful Morning) -> Oh What a Beautiful Morning (16084ms) How long does the Madness last? An easy recipe -11.986869333917564 How long does the Madness last? -> how long [ do the madness ] last ? -> who long be do the madness ? -> $x: ($x, long be do, the madness) -> $x: ($x, long, madness) -> (An easy recipe, was even used long before, the madness) -> An easy recipe (12384ms) How long does the Madness last? Drama -12.224443642617222 How long does the Madness last? -> How does the Madness last? -> how do [ the madness last ] ? -> what be the translation of the madness last ? -> $x: (the madness last, translation, $x) -> $x: ($x, film, the madness last) -> (Drama, Films of this genre, The Last Madness) -> Drama (16432ms) How long does the Madness last? looks -12.397085644573053 How long does the Madness last? -> how long [ do the madness ] last ? -> who long be do the madness ? -> $x: ($x, long be do, the madness) -> $x: ($x, long, madness) -> (looks, made Willen long for, the anger or madness) -> looks (12385ms) How long does the Madness last? Urbana -12.462680607809938 How long does the Madness last? -> How does the Madness last? -> how do [ the madness last ] ? -> what be the translation of the madness last ? -> $x: (the madness last, translation, $x) -> $x: (the madness last, place, $x) -> (From mission to madness : last son of the Mormon prophet, Place of publication, Urbana) -> Urbana (16350ms) How long does the Madness last? Scott Kelly -12.533239146221094 How long does the Madness last? -> how long [ do the madness ] last ? -> who long be do the madness ? -> $x: ($x, long be do, the madness) -> $x: ($x, long, madness) -> (Scott Kelly, followed a long tradition with, Startup Madness) -> Scott Kelly (12385ms) How long does the Madness last? hand -12.559748403190287 How long does the Madness last? -> How does the Madness last? -> how do [ the madness last ] ? -> what be the translation of the madness last ? -> $x: (the madness last, translation, $x) -> $x: (the madness last, be, $x) -> (the last gay madness, is now at, hand) -> hand (15108ms) How long does the Madness last? Man -12.778567466152394 How long does the Madness last? -> how long [ do the madness ] last ? -> what influence do do the madness have ? -> $x: ($x, instance of, influence) ($x, do do, the madness) -> (Man, Instance Of, influence) (man, had always done before, the agro-industrial madness) -> Man (9219ms) How long does the Madness last? Sign -12.909463685811966 How long does the Madness last? -> How does the Madness last? -> how do [ the madness ] last ? -> what become of the madness ? -> $x: ($x, become of, the madness) -> (Sign, become part of, the madness) -> Sign (14192ms) How long does the Madness last? CBS -12.96631385171391 How long does the Madness last? -> how long [ do the madness ] last ? -> what influence do do the madness have ? -> $x: ($x, instance of, influence) ($x, do do, the madness) -> (CBS, Instance Of, influence) (CBS, does carry some of, the March Madness broadcasts) -> CBS (9219ms) How long does the Madness last? such madness -12.972475268695359 How long does the Madness last? -> How does the Madness last? -> how do [ the madness ] last ? -> what become of the madness ? -> $x: ($x, become of, the madness) -> (such madness, is to become part of, the madness) -> such madness (14192ms) How long does the Madness last? Stones -13.059232273350835 How long does the Madness last? -> how long [ do the madness ] last ? -> what influence do do the madness have ? -> $x: ($x, instance of, influence) ($x, do do, the madness) -> (Stones, Instance Of, influence) (stones, can do, the madness constructor) -> Stones (9219ms) How long does the Madness last? Millie Reynolds -13.20778915173374 How long does the Madness last? -> how long [ do the madness ] last ? -> who long be do the madness ? -> $x: ($x, long be do, the madness) -> $x: ($x, long, madness) -> (Millie Reynolds, longs to, escape the madness) -> Millie Reynolds (12385ms) How long does the Madness last? Twilight -13.20898632955193 How long does the Madness last? -> how long [ do the madness ] last ? -> what influence do do the madness have ? -> $x: ($x, instance of, influence) ($x, do do, the madness) -> (Twilight, Instance Of, influence) (twilight, so did, the madness) -> Twilight (9219ms) How long does the Madness last? Robespierre -13.25118361011829 How long does the Madness last? -> How does the Madness last? -> how do [ the madness ] last ? -> what become of the madness ? -> $x: ($x, become of, the madness) -> (Robespierre, was to become a victim of, the madness) -> Robespierre (14191ms) How long does the Madness last? a lesson -13.456840884536968 How long does the Madness last? -> how long [ do the madness ] last ? -> who long be do the madness ? -> $x: ($x, long be do, the madness) -> $x: ($x, long, madness) -> (a lesson, should last long past, March Madness) -> a lesson (12385ms) How long does the Madness last? schooling -13.476584082263619 How long does the Madness last? -> how long [ do the madness ] last ? -> what influence do do the madness have ? -> $x: ($x, instance of, influence) ($x, do do, the madness) -> (schooling, Instance Of, influence) (School, is now done for, a month?the madness) -> schooling (9725ms) How long does the Madness last? School -13.774765958560911 How long does the Madness last? -> how long [ do the madness ] last ? -> what influence do do the madness have ? -> $x: ($x, instance of, influence) ($x, do do, the madness) -> (School, Instance Of, influence) (School, is now done for, a month?the madness) -> School (9726ms) How long does the Madness last? the nations -13.897335250328464 How long does the Madness last? -> How does the Madness last? -> how do [ the madness ] last ? -> what become of the madness ? -> $x: ($x, become of, the madness) -> (the nations, become aware of, the frightful madness) -> the nations (14191ms) How long does the Madness last? Heart -14.04771414483593 How long does the Madness last? -> how long [ do the madness ] last ? -> what influence do do the madness have ? -> $x: ($x, instance of, influence) ($x, do do, the madness) -> (Heart, Instance Of, influence) (heart, are encouraged to do, the Maple Madness March ...a cross) -> Heart (9726ms) How long does the Madness last? The asylum -14.436984592044894 How long does the Madness last? -> How does the Madness last? -> how do [ the madness ] last ? -> what become of the madness ? -> $x: ($x, become of, the madness) -> (The asylum, has become a tangible manifestation of, the madness) -> The asylum (14191ms) How long does the Madness last? time -14.615772953918304 How long does the Madness last? -> how long [ do the madness ] last ? -> what influence do do the madness have ? -> $x: ($x, instance of, influence) ($x, do do, the madness) -> $x: ($x, instance of, influence) ($x, do do, madness) -> (time, Instance Of, influence) (time, does, Midnight Madness start) -> time (17293ms) How long does the Madness last? Levy -14.645732140209613 How long does the Madness last? -> how long [ do the madness ] last ? -> what influence do do the madness have ? -> $x: ($x, instance of, influence) ($x, do do, the madness) -> $x: ($x, instance of, influence) ($x, do do, madness) -> (Levy, Instance Of, influence) (Levy, does n?t do, pure madness) -> Levy (17293ms) How long does the Madness last? cloud -15.194741833829351 How long does the Madness last? -> how long [ do the madness ] last ? -> what influence do do the madness have ? -> $x: ($x, instance of, influence) ($x, do do, the madness) -> $x: ($x, instance of, influence) ($x, do do, madness) -> (cloud, Instance Of, influence) (Cloud, did n?t see, madness) -> cloud (17293ms) How long does the Madness last? David -15.239776105267282 How long does the Madness last? -> how long [ do the madness ] last ? -> what influence do do the madness have ? -> $x: ($x, instance of, influence) ($x, do do, the madness) -> $x: ($x, instance of, influence) ($x, do do, madness) -> (David, Instance Of, influence) (David, do, a Madness track) -> David (17293ms) How long does the Madness last? Christian -15.255197191952607 How long does the Madness last? -> how long [ do the madness ] last ? -> what influence do do the madness have ? -> $x: ($x, instance of, influence) ($x, do do, the madness) -> $x: ($x, instance of, influence) ($x, do do, madness) -> (Christian, Instance Of, influence) (Christians, do to stop, this madness) -> Christian (17320ms) How long does the Madness last? Chesterton -15.29815864798514 How long does the Madness last? -> how long [ do the madness ] last ? -> what influence do do the madness have ? -> $x: ($x, instance of, influence) ($x, do do, the madness) -> $x: ($x, instance of, influence) ($x, do do, madness) -> (Chesterton, Instance Of, influence) (Chesterton, does understand, madness) -> Chesterton (17320ms) How long does the Madness last? Trust -15.588703087245422 How long does the Madness last? -> how long [ do the madness ] last ? -> what influence do do the madness have ? -> $x: ($x, instance of, influence) ($x, do do, the madness) -> $x: ($x, instance of, influence) ($x, do do, madness) -> (Trust, Instance Of, influence) (trust, has nothing to do with, madness) -> Trust (17320ms) How long does the Madness last? Cloud -15.63434953868009 How long does the Madness last? -> how long [ do the madness ] last ? -> what influence do do the madness have ? -> $x: ($x, instance of, influence) ($x, do do, the madness) -> $x: ($x, instance of, influence) ($x, do do, madness) -> (Cloud, Instance Of, influence) (Cloud, did n?t see, madness) -> Cloud (17320ms) What university did Thomas Jefferson found? Great Falls -6.102732531710314 What university did Thomas Jefferson found? -> $x: ($x, instance of, university) (Thomas Jefferson, found, $x) -> $x: ($x, instance of, university) (Thomas Jefferson, to like, $x) -> (Great Falls, Instance Of, university location) (- Thomas Jefferson, like to do in, Great Falls) -> Great Falls (3087ms) What university did Thomas Jefferson found? English -6.884303462909167 What university did Thomas Jefferson found? -> $x: ($x, instance of, university) (Thomas Jefferson, found, $x) -> $x: ($x, instance of, university) (Thomas Jefferson, in reading, $x) -> (English, Instance Of, university department) (Thomas Jefferson, could read fluently in, English) -> English (5211ms) What university did Thomas Jefferson found? online -8.970945185169143 What university did Thomas Jefferson found? -> $x: ($x, instance of, university) (Thomas Jefferson, found, $x) -> $x: ($x, instance of, university) (Thomas Jefferson, easily find, $x) -> (online, Instance Of, university publication) (John Adams and Thomas Jefferson, can be easily found, online) -> online (3510ms) When did the Chernobyl nuclear accident occur? Friday -1.0777149940244959 When did the Chernobyl nuclear accident occur? -> $x: (the Chernobyl nuclear accident, did occur on, $x) -> $x: (chernobyl nuclear accident, occur on, $x) -> (the Chernobyl nuclear plant accident, occurred on, Friday) -> Friday (1482ms) When did the Chernobyl nuclear accident occur? Belarus -2.7636860658351674 When did the Chernobyl nuclear accident occur? -> $x: (the Chernobyl nuclear accident, did occur in, $x) -> $x: ($x, be affect by, the Chernobyl nuclear accident) -> (Belarus, was badly affected by, the Chernobyl nuclear accident) -> Belarus (1571ms) When did the Chernobyl nuclear accident occur? 18 years -7.191186456563631 When did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> what do the chernobyl nuclear accident occur ? -> $x: (the chernobyl nuclear accident, occur, $x) -> (the Chernobyl nuclear accident, occurred, 18 years) -> 18 years (3194ms) When did the Chernobyl nuclear accident occur? case -8.847091579199219 When did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> (accident at the Chernobyl nuclear power station, Instance Of, case) -> case (3533ms) When did the Chernobyl nuclear accident occur? serious occurrence -8.92146102777919 When did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> (accident at the Chernobyl nuclear power station, Instance Of, serious occurrence) -> serious occurrence (3533ms) When did the Chernobyl nuclear accident occur? event -10.352548668667131 When did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (Chernobyl nuclear accident, Instance Of, event) -> event (7942ms) When did the Chernobyl nuclear accident occur? tragedy -10.43851602991609 When did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (Chernobyl nuclear accident, Instance Of, tragedy) -> tragedy (7942ms) When did the Chernobyl nuclear accident occur? incident -10.484752212920021 When did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (Chernobyl nuclear accident, Instance Of, incident) -> incident (7942ms) When did the Chernobyl nuclear accident occur? topic -10.503957841040075 When did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (Chernobyl nuclear accident, Instance Of, topic) -> topic (7942ms) When did the Chernobyl nuclear accident occur? environmental disaster -10.505844156837222 When did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (Chernobyl nuclear accident, Instance Of, environmental disaster) -> environmental disaster (7942ms) When did the Chernobyl nuclear accident occur? catastrophic event -10.525564590456874 When did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (Chernobyl nuclear accident, Instance Of, catastrophic event) -> catastrophic event (7972ms) When did the Chernobyl nuclear accident occur? issue -10.555563047326967 When did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (Chernobyl nuclear accident, Instance Of, issue) -> issue (7972ms) When did the Chernobyl nuclear accident occur? environmental catastrophe -10.576808667436973 When did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (Chernobyl nuclear accident, Instance Of, environmental catastrophe) -> environmental catastrophe (7972ms) When did the Chernobyl nuclear accident occur? international incident -10.577028307946058 When did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (Chernobyl nuclear accident, Instance Of, international incident) -> international incident (7972ms) When did the Chernobyl nuclear accident occur? well-publicized event -10.58355650788044 When did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (Chernobyl nuclear accident, Instance Of, well-publicized event) -> well-publicized event (7972ms) When did the Chernobyl nuclear accident occur? large-scale disaster -10.585841377857474 When did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (Chernobyl nuclear accident, Instance Of, large-scale disaster) -> large-scale disaster (7972ms) When did the Chernobyl nuclear accident occur? human catastrophe -10.613747820778316 When did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (Chernobyl nuclear accident, Instance Of, human catastrophe) -> human catastrophe (8001ms) When did the Chernobyl nuclear accident occur? ethical matter -10.615444279756543 When did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (Chernobyl nuclear accident, Instance Of, ethical matter) -> ethical matter (8001ms) When did the Chernobyl nuclear accident occur? controversial event -10.620453417783116 When did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (Chernobyl nuclear accident, Instance Of, controversial event) -> controversial event (8001ms) When did the Chernobyl nuclear accident occur? earth-shattering event -10.70386578554622 When did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (nuclear accident at Chernobyl, Instance Of, earth-shattering event) -> earth-shattering event (8001ms) When did the Chernobyl nuclear accident occur? dramatic environmental disaster -10.707632078943362 When did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (Chernobyl nuclear accident, Instance Of, dramatic environmental disaster) -> dramatic environmental disaster (8001ms) When did the Chernobyl nuclear accident occur? large scale event -10.7311033925602 When did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (Chernobyl nuclear accident, Instance Of, large scale event) -> large scale event (8001ms) When did the Chernobyl nuclear accident occur? big disaster -10.737936671636932 When did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (nuclear accident at Chernobyl, Instance Of, big disaster) -> big disaster (8001ms) When did the Chernobyl nuclear accident occur? extreme and typical instance -10.790098720740842 When did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (nuclear accident in Chernobyl, Instance Of, extreme and typical instance) -> extreme and typical instance (8031ms) When did the Chernobyl nuclear accident occur? small and large-scale disaster -10.790098720740842 When did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (Chernobyl nuclear accident, Instance Of, small and large-scale disaster) -> small and large-scale disaster (8030ms) When did the Chernobyl nuclear accident occur? man-made disaster -10.816939931832529 When did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (Soviet nuclear accident at Chernobyl, Instance Of, man-made disaster) -> man-made disaster (8030ms) When did the Chernobyl nuclear accident occur? radiological incident -10.860784413710109 When did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (1986 nuclear reactor accident at Chernobyl, Instance Of, radiological incident) -> radiological incident (8030ms) When did the Chernobyl nuclear accident occur? man-made environmental disaster -10.86900994624028 When did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (Chernobyl Nuclear Power Plant accident, Instance Of, man-made environmental disaster) -> man-made environmental disaster (8030ms) When did the Chernobyl nuclear accident occur? important subject -10.886783372897606 When did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (West Environmental Issues Chernobyl Nuclear Accident, Instance Of, important subject) -> important subject (8030ms) When did the Chernobyl nuclear accident occur? disaster -10.913719693394317 When did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (nuclear plant accident at Chernobyl m Russia, Instance Of, disaster) -> disaster (8059ms) When did the Chernobyl nuclear accident occur? catastrophic radiological incident -10.922045347616807 When did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> 6 what be the chernobyl nuclear accident ? -> $x: (the chernobyl nuclear accident, instance of, $x) -> $x: (chernobyl nuclear accident, instance of, $x) -> (1986 nuclear reactor accident at Chernobyl, Instance Of, catastrophic radiological incident) -> catastrophic radiological incident (8059ms) When did the Chernobyl nuclear accident occur? Ukraine -11.10559846127845 When did the Chernobyl nuclear accident occur? -> when do [ the chernobyl nuclear accident ] occur ? -> what do the chernobyl nuclear accident occur ? -> $x: (the chernobyl nuclear accident, occur, $x) -> $x: (the chernobyl nuclear accident, take place, $x) -> (the Chernobyl nuclear accident, took place in, Ukraine) -> Ukraine (8145ms) Where is the LPGA headquartered? Daytona Beach -3.1250497756313234 Where is the LPGA headquartered? -> $x: (the LPGA, is headquartered in, $x) -> (The LPGA, is headquartered in, Daytona Beach) -> Daytona Beach (1544ms) Where is the LPGA headquartered? Las Vegas -5.907475218282434 Where is the LPGA headquartered? -> $x: (the LPGA, is headquartered in, $x) -> $x: (the LPGA, relocate to, $x) -> (the LPGA Takefuji Classic, relocated to, Las Vegas) -> Las Vegas (3216ms) Where is the LPGA headquartered? the Daytona Beach -6.778215903869885 Where is the LPGA headquartered? -> $x: (the LPGA, is headquartered in, $x) -> $x: (the LPGA, be locate in, $x) -> (the LPGA, is located in, the Daytona Beach) -> the Daytona Beach (3216ms) Where is the LPGA headquartered? Prospector -6.81461336506875 Where is the LPGA headquartered? -> $x: (the LPGA, is headquartered in, $x) -> $x: (lpga, headquarter in, $x) -> $x: ($x, be home of, lpga) -> (Prospector, was home of, the LPGA Safeway International) -> Prospector (3970ms) Where is the LPGA headquartered? Rivertowne -7.357366733945575 Where is the LPGA headquartered? -> $x: (the LPGA, is headquartered in, $x) -> $x: (lpga, headquarter in, $x) -> $x: ($x, be home of, lpga) -> (Rivertowne, is home of, the LPGA Ginn Tribute) -> Rivertowne (3970ms) Where is the LPGA headquartered? California -8.337916021490301 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, are in, California) -> California (7999ms) Where is the LPGA headquartered? Japan -8.43865002064543 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, was in, Japan) -> Japan (8000ms) Where is the LPGA headquartered? Thailand -8.443071005353207 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is in, Thailand) -> Thailand (7999ms) Where is the LPGA headquartered? Hawaii -8.456890514914186 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, was in, Hawaii) -> Hawaii (7999ms) Where is the LPGA headquartered? Rookie -8.503261039289455 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, was selected, Rookie) -> Rookie (7999ms) Where is the LPGA headquartered? Tseng -8.729716494697517 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Tseng, was, the LPGA) -> Tseng (7999ms) Where is the LPGA headquartered? Natalie Gulbis -8.946647592816907 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Natalie Gulbis, is, the LPGA) -> Natalie Gulbis (7999ms) Where is the LPGA headquartered? Lawless -8.948622673239257 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Lawless, is giving, the LPGA) -> Lawless (8095ms) Where is the LPGA headquartered? Rolex -8.94962850385427 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Rolex, has been a longtime supporter of, the LPGA) -> Rolex (8095ms) Where is the LPGA headquartered? Terry -9.015913899121513 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Terry, is one of, the LPGA) -> Terry (8095ms) Where is the LPGA headquartered? Duramed -9.082391688606277 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is losing, Duramed) -> Duramed (8095ms) Where is the LPGA headquartered? Delasin -9.105380798546264 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Delasin, was, the LPGA Rookie) -> Delasin (8095ms) Where is the LPGA headquartered? South Korea -9.219637187516453 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, was in, South Korea) -> South Korea (8095ms) Where is the LPGA headquartered? Smith -9.27282326299449 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Smith, was president of, the LPGA) -> Smith (8095ms) Where is the LPGA headquartered? Singapore -9.306159016289895 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, was last seen a month ago in, Singapore) -> Singapore (8165ms) Where is the LPGA headquartered? Whitworth -9.306815019647523 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Whitworth, was president of, the LPGA) -> Whitworth (8165ms) Where is the LPGA headquartered? South Florida -9.323650053284565 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (South Florida, was normal for, the LPGA) -> South Florida (8165ms) Where is the LPGA headquartered? Strudwick -9.335109300696383 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Strudwick, was, the 1993 LPGA Rookie) -> Strudwick (8165ms) Where is the LPGA headquartered? the PGA -9.358491393956355 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is the same as, the PGA) -> the PGA (8165ms) Where is the LPGA headquartered? Jamie Farr -9.410149739777586 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Jamie Farr, has been hosting, the LPGA) -> Jamie Farr (8165ms) Where is the LPGA headquartered? The River -9.49966049802886 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (The River, is currently host to, the LPGA) -> The River (8165ms) Where is the LPGA headquartered? Paula -9.555219148791025 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Paula, is the sexiest woman on, the lpga) -> Paula (8227ms) Where is the LPGA headquartered? TV -9.560762415313816 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is on, TV) -> TV (8227ms) Where is the LPGA headquartered? Arpin -9.576565102305496 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Arpin, is the official mover of, the LPGA) -> Arpin (8227ms) Where is the LPGA headquartered? way -9.5877814134546 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is, way) -> way (8227ms) Where is the LPGA headquartered? Patty Berg -9.621364376887168 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Patty Berg, was, the LPGA?s youngest) -> Patty Berg (8227ms) Where is the LPGA headquartered? Carolyn Bivens -9.794411420252754 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Carolyn Bivens, is running, the LPGA) -> Carolyn Bivens (8227ms) Where is the LPGA headquartered? Annika Sorenstam -9.857004067611381 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Annika Sorenstam, may still be, the LPGA) -> Annika Sorenstam (8334ms) Where is the LPGA headquartered? the natural -9.873667739765315 Where is the LPGA headquartered? -> $x: (the LPGA, is headquartered in, $x) -> $x: (lpga, headquarter in, $x) -> $x: ($x, be home of, lpga) -> (the natural, is the original home of, LPGA star Dawn Coe-Jones) -> the natural (3970ms) Where is the LPGA headquartered? ok -10.010800216299394 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, might be, ok) -> ok (8334ms) Where is the LPGA headquartered? Webb -10.014063664525688 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Webb, is the only player to win, the LPGA) -> Webb (8334ms) Where is the LPGA headquartered? Ochoa -10.023860512538675 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Ochoa, was named, the LPGA?s Player) -> Ochoa (8334ms) Where is the LPGA headquartered? the DFT -10.044391383796642 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (the DFT, is the developmental tour of, the LPGA.) -> the DFT (8334ms) Where is the LPGA headquartered? Zaharias -10.048782288942604 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Zaharias, was a co-founder of, the LPGA.) -> Zaharias (8334ms) Where is the LPGA headquartered? the Rockies -10.082749284574112 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (the Rockies, is, the evolving LPGA status) -> the Rockies (8409ms) Where is the LPGA headquartered? Lynn -10.089712444570596 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Lynn, has been a member of, the LPGA) -> Lynn (8408ms) Where is the LPGA headquartered? ?CME Group -10.116515234248569 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (?CME Group, has been a friend of, the LPGA) -> ?CME Group (8408ms) Where is the LPGA headquartered? Magnolia Grove -10.126641718182965 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Magnolia Grove, will be host to, the LPGA) -> Magnolia Grove (8409ms) Where is the LPGA headquartered? long-drive golf -10.12682999539738 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (long-drive golf, is suing, the LPGA) -> long-drive golf (8408ms) Where is the LPGA headquartered? decent shape -10.135309166459352 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is in, decent shape) -> decent shape (8408ms) Where is the LPGA headquartered? professional golf -10.156529903597145 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is to, professional golf) -> professional golf (8408ms) Where is the LPGA headquartered? need -10.15670995135479 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is in, need) -> need (8545ms) Where is the LPGA headquartered? a bit -10.165863860323089 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is in, a bit) -> a bit (8545ms) Where is the LPGA headquartered? five years -10.169728289593223 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (five years, is suing, the LPGA) -> five years (8545ms) Where is the LPGA headquartered? five majors -10.244010052351568 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, will be playing, five majors) -> five majors (8545ms) Where is the LPGA headquartered? The ADT -10.281137199093354 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (The ADT, is, the only LPGA tournament) -> The ADT (8545ms) Where is the LPGA headquartered? a great value -10.28915955023507 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is, a great value) -> a great value (8545ms) Where is the LPGA headquartered? a considerably bigger stage -10.322436607976442 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is, a considerably bigger stage) -> a considerably bigger stage (8545ms) Where is the LPGA headquartered? Morgan Pressel -10.32409923508299 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Morgan Pressel, wants to be a full-fledged member of, the LPGA) -> Morgan Pressel (8545ms) Where is the LPGA headquartered? three tour stops -10.347194196123212 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is cutting, three tour stops) -> three tour stops (8628ms) Where is the LPGA headquartered? a not-for-profit organization -10.349285016044062 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is, a not-for-profit organization) -> a not-for-profit organization (8628ms) Where is the LPGA headquartered? a buffet table -10.359016408407804 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is n?t, a buffet table) -> a buffet table (8628ms) Where is the LPGA headquartered? the Year -10.359895410964105 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (the Year, was recognized during, the LPGA) -> the Year (8628ms) Where is the LPGA headquartered? Navistar LPGA Classic Lexi Thompson -10.402406637211742 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Navistar LPGA Classic Lexi Thompson, is, the LPGA) -> Navistar LPGA Classic Lexi Thompson (8628ms) Where is the LPGA headquartered? last weekend -10.410230100126894 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, was off, last weekend) -> last weekend (8629ms) Where is the LPGA headquartered? a global tour -10.417368264867513 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is, a global tour) -> a global tour (8628ms) Where is the LPGA headquartered? any discussions -10.421958737064726 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, was privy to, any discussions) -> any discussions (8628ms) Where is the LPGA headquartered? upstaged three times zones -10.429360017343836 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, was, upstaged three times zones) -> upstaged three times zones (8703ms) Where is the LPGA headquartered? The Title Sponsorship -10.436890381175163 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (The Title Sponsorship, will be giving, the LPGA) -> The Title Sponsorship (8703ms) Where is the LPGA headquartered? the Swedish Match Play champion -10.48103571282798 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, was, the Swedish Match Play champion) -> the Swedish Match Play champion (8703ms) Where is the LPGA headquartered? the West Coast -10.487219886493156 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, was on, the West Coast) -> the West Coast (8702ms) Where is the LPGA headquartered? brighter times -10.487289638465207 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (brighter times, are ahead for, the LPGA) -> brighter times (8703ms) Where is the LPGA headquartered? a transgender woman -10.50055259258854 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (a transgender woman, is suing, the LPGA) -> a transgender woman (8702ms) Where is the LPGA headquartered? such a tough Tour -10.51463521768801 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is, such a tough Tour) -> such a tough Tour (8703ms) Where is the LPGA headquartered? the Symetra Tour -10.522657568829723 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is now called, the Symetra Tour) -> the Symetra Tour (8703ms) Where is the LPGA headquartered? strong financial condition -10.530615351844183 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is in, strong financial condition) -> strong financial condition (8799ms) Where is the LPGA headquartered? Leta Lindley -10.534152150150865 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Leta Lindley, is available through, the LPGA) -> Leta Lindley (8799ms) Where is the LPGA headquartered? WE TOO -10.540927831619593 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (WE TOO, are sooo excited for, the LPGA) -> WE TOO (8799ms) Where is the LPGA headquartered? Wie -10.541161125934677 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Wie, was expected to dominate, the LPGA) -> Wie (8799ms) Where is the LPGA headquartered? briefing energy policymakers -10.541225694061932 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, will be, briefing energy policymakers) -> briefing energy policymakers (8799ms) Where is the LPGA headquartered? the Sybase Match Play Championship -10.542994119566421 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is playing, the Sybase Match Play Championship) -> the Sybase Match Play Championship (8799ms) Where is the LPGA headquartered? the Board -10.5465309178731 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is the outgoing Chairman of, the Board) -> the Board (8799ms) Where is the LPGA headquartered? bankruptcy -10.56560811200754 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, could be close to, bankruptcy) -> bankruptcy (8799ms) Where is the LPGA headquartered? teaching teachers -10.57711538025795 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is very good at, teaching teachers) -> teaching teachers (8855ms) Where is the LPGA headquartered? crisis mode -10.579246236332034 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, has been in, crisis mode) -> crisis mode (8855ms) Where is the LPGA headquartered? American stars -10.587962989370912 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is starved for, American stars) -> American stars (8855ms) Where is the LPGA headquartered? The Handa Cup -10.603119585375412 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (The Handa Cup, was formed by, the LPGA) -> The Handa Cup (8855ms) Where is the LPGA headquartered? the LPG industry -10.625810832873059 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is the national body for, the LPG industry) -> the LPG industry (8855ms) Where is the LPGA headquartered? Torrey Pines South -10.632298105527664 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is playing, Torrey Pines South) -> Torrey Pines South (8855ms) Where is the LPGA headquartered? foreign players -10.66029457683648 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, has been dominated by, foreign players) -> foreign players (8855ms) Where is the LPGA headquartered? A war -10.667665983189886 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (A war, is raging on, the LPGA) -> A war (8916ms) Where is the LPGA headquartered? conjunction -10.678028652134559 Where is the LPGA headquartered? -> $x: (the LPGA, is headquartered in, $x) -> $x: (lpga, headquarter in, $x) -> $x: (lpga, set up in, $x) -> (LPGA association Member, set up in, conjunction) -> conjunction (3876ms) Where is the LPGA headquartered? only foreign players -10.688588857885339 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (only foreign players, were winning on, the LPGA) -> only foreign players (8916ms) Where is the LPGA headquartered? an upswing -10.690292715262572 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, appears to be on, an upswing) -> an upswing (8916ms) Where is the LPGA headquartered? beautiful Half Moon Bay -10.693009895295413 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is in, beautiful Half Moon Bay) -> beautiful Half Moon Bay (8916ms) Where is the LPGA headquartered? Kerr -10.710504244611673 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Kerr, is one of, the LPGA?s most dominating stars) -> Kerr (8916ms) Where is the LPGA headquartered? junior golf -10.730146198462123 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, has been committed to, junior golf) -> junior golf (8916ms) Where is the LPGA headquartered? Ten-year teacher -10.74252496618436 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Ten-year teacher, is involved nationally with, the LPGA) -> Ten-year teacher (8916ms) Where is the LPGA headquartered? Asian women -10.771703486336612 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Asian women, are starting to dominate, the LPGA) -> Asian women (8977ms) Where is the LPGA headquartered? Sheary and everyone -10.782751247643096 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Sheary and everyone, else is still waiting for, the LPGA) -> Sheary and everyone (8977ms) Where is the LPGA headquartered? ?We?re -10.784082254058848 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (?We?re, thrilled to be partnering with, the LPGA) -> ?We?re (8977ms) Where is the LPGA headquartered? Women?s Work -10.787857611057925 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Women?s Work, is a loving appreciation of, the LPGA) -> Women?s Work (8977ms) Where is the LPGA headquartered? Women?s Work -10.787857611057925 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Women?s Work, is a loving appreciation of, the LPGA) -> Women?s Work (8977ms) Where is the LPGA headquartered? 19 organisations -10.788557103081764 Where is the LPGA headquartered? -> $x: (the LPGA, is headquartered in, $x) -> $x: (lpga, headquarter in, $x) -> $x: (lpga, expand to, $x) -> (LPGA, has been expanded to, 19 organisations) -> 19 organisations (3748ms) Where is the LPGA headquartered? The Red course -10.819563526739083 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (The Red course, is also played host to, the LPGA) -> The Red course (8977ms) Where is the LPGA headquartered? trouble -10.844471734591778 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is in, trouble) -> trouble (8977ms) Where is the LPGA headquartered? a new identity -10.846214651362429 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is trying to forge, a new identity) -> a new identity (8977ms) Where is the LPGA headquartered? gay women -10.863014456494739 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, has always been associated with, gay women) -> gay women (9054ms) Where is the LPGA headquartered? the Phoenix area -10.868319627603613 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, has been a part of, the Phoenix area) -> the Phoenix area (9054ms) Where is the LPGA headquartered? ?My idea -10.875885158825069 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (?My idea, was first to play on, the LPGA) -> ?My idea (9054ms) Where is the LPGA headquartered? Futcher and Shin -10.910895341445988 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is a new feeling for, Futcher and Shin) -> Futcher and Shin (9054ms) Where is the LPGA headquartered? least one United States LPGA event -10.920293866299188 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is losing at, least one United States LPGA event) -> least one United States LPGA event (9054ms) Where is the LPGA headquartered? KINGSMILL -10.923776096384216 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the @lpga, is coming BACK TO, KINGSMILL) -> KINGSMILL (9054ms) Where is the LPGA headquartered? the forum -10.945219893204477 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, was, the forum) -> the forum (9054ms) Where is the LPGA headquartered? a resurging -10.945269297383335 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is, a resurging) -> a resurging (9054ms) Where is the LPGA headquartered? a business -10.965605848120031 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is, a business) -> a business (9159ms) Where is the LPGA headquartered? points -10.975295258638385 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (points, are doubled at, the LPGA) -> points (9159ms) Where is the LPGA headquartered? great players -10.981695770302279 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is a special organization comprised of, great players) -> great players (9159ms) Where is the LPGA headquartered? Wie?s success -10.987000941411154 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Wie?s success, is, the LPGA?s success) -> Wie?s success (9159ms) Where is the LPGA headquartered? a dream -11.002087250512846 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, has been, a dream) -> a dream (9159ms) Where is the LPGA headquartered? winner?s check -11.015732694251044 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (winner?s check, is huge for, the LPGA.) -> winner?s check (9159ms) Where is the LPGA headquartered? louder -11.025372068809773 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, are about to get, louder) -> louder (9159ms) Where is the LPGA headquartered? She?ll -11.046878197301911 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (She?ll, be missed on, the LPGA.) -> She?ll (9159ms) Where is the LPGA headquartered? Fellow teen phenom Morgan Pressel -11.093340932252008 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Fellow teen phenom Morgan Pressel, is still winless on, the LPGA) -> Fellow teen phenom Morgan Pressel (9278ms) Where is the LPGA headquartered? partner -11.094661951152975 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is proud to, partner) -> partner (9277ms) Where is the LPGA headquartered? dire straits -11.107577750289657 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is in, dire straits) -> dire straits (9277ms) Where is the LPGA headquartered? two -11.140563614570205 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (two, could be very interesting for, the LPGA?) -> two (9278ms) Where is the LPGA headquartered? ?This one -11.17488830183793 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (?This one, is the face of, the LPGA.) -> ?This one (9278ms) Where is the LPGA headquartered? action -11.18580411459076 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is finally back in, action) -> action (9278ms) Where is the LPGA headquartered? the wedding date -11.207314662957897 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is, the wedding date) -> the wedding date (9277ms) Where is the LPGA headquartered? The Legends Tour -11.211791409907333 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (The Legends Tour, is the official senior tour of, the LPGA.) -> The Legends Tour (9277ms) Where is the LPGA headquartered? TGF -11.233245342142434 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (?The LPGA, will be working with, TGF) -> TGF (9413ms) Where is the LPGA headquartered? a member -11.236171593066258 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (a member, may be key to, the LPGA) -> a member (9413ms) Where is the LPGA headquartered? women -11.237152546895437 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is far more dominant in, women) -> women (9413ms) Where is the LPGA headquartered? a great person and golfer -11.243557821917843 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA?s star, is, a great person and golfer) -> a great person and golfer (9413ms) Where is the LPGA headquartered? Teenager Lexi Thompson -11.276765127687165 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (Teenager Lexi Thompson, is the new face of, the LPGA.) -> Teenager Lexi Thompson (9413ms) Where is the LPGA headquartered? I-95 -11.27763495241998 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> which state be the lpga locate ? -> $x: ($x, instance of, state) (the lpga, locate, $x) -> (I-95, Instance Of, state's interstate roadway) (The Holiday Inn Daytona Bch Lpga Hotel, is located off of, I-95) -> I-95 (3628ms) Where is the LPGA headquartered? best -11.318433761228682 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, has been mediocre at, best) -> best (9412ms) Where is the LPGA headquartered? I95 -11.335225726692572 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> which state be the lpga locate ? -> $x: ($x, instance of, state) (the lpga, locate, $x) -> (I95, Instance Of, state highway) (The Holiday Inn Daytona Bch Lpga Hotel, is located off of, I-95) -> I95 (3628ms) Where is the LPGA headquartered? the Evian Masters -11.361856757176572 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (the Evian Masters, is currently sanctioned by, the LPGA) -> the Evian Masters (9413ms) Where is the LPGA headquartered? applications -11.373189487801545 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (applications, have been received by, the LPGA) -> applications (9474ms) Where is the LPGA headquartered? 13 -11.409788919182702 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is listing, 13) -> 13 (9473ms) Where is the LPGA headquartered? a schedule -11.413895325885353 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, will be treated to, a schedule) -> a schedule (9474ms) Where is the LPGA headquartered? a loss -11.466554943287978 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, has been reeling from, a loss) -> a loss (9474ms) Where is the LPGA headquartered? a defendent -11.594271670610032 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is also named as, a defendent) -> a defendent (9474ms) Where is the LPGA headquartered? back in action -11.73759388826903 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is, back in action) -> back in action (9474ms) Where is the LPGA headquartered? the transsexual -11.761687776830247 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (the transsexual, is suing, the LPGA) -> the transsexual (9474ms) Where is the LPGA headquartered? the guidance -11.802068414730316 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is under, the guidance) -> the guidance (9637ms) Where is the LPGA headquartered? the lawsuit -11.80307434181867 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (the lawsuit, is to force, the LPGA) -> the lawsuit (9637ms) Where is the LPGA headquartered? toils -11.818286504084995 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> who head the lpga ? -> $x: ($x, head, the lpga) -> (toils, is likely headed for, the LPGA Tour) -> toils (6853ms) Where is the LPGA headquartered? the air -11.88629512502875 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is off, the air) -> the air (9637ms) Where is the LPGA headquartered? conservative -11.895836602829714 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, was, conservative) -> conservative (9637ms) Where is the LPGA headquartered? a global tour -11.914020117424267 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is, a global tour) -> a global tour (9637ms) Where is the LPGA headquartered? the pack -11.916422399709354 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (the pack, is, the LPGA Tour) -> the pack (9637ms) Where is the LPGA headquartered? the field -12.028552582147077 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is also in, the field) -> the field (9637ms) Where is the LPGA headquartered? the verge -12.034020719421752 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is on, the verge) -> the verge (9746ms) Where is the LPGA headquartered? 32 players -12.065770552374392 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (32 players, was, the final LPGA event) -> 32 players (9746ms) Where is the LPGA headquartered? The company -12.139961544349504 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (The company, was to sponsor, the LPGA) -> The company (9746ms) Where is the LPGA headquartered? the best -12.167441443671612 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, will prove to be, the best) -> the best (9746ms) Where is the LPGA headquartered? 13 founders -12.25822780237897 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, was officially chartered with, 13 founders) -> 13 founders (9746ms) Where is the LPGA headquartered? March 18-20 -12.266184521830292 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (March 18-20, is, the LPGA) -> March 18-20 (9746ms) Where is the LPGA headquartered? the big news -12.278780548497398 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (the big news, was on, the LPGA) -> the big news (9746ms) Where is the LPGA headquartered? The tournament -12.292927741724125 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (The tournament, was, the Navistar LPGA Classic) -> The tournament (9796ms) Where is the LPGA headquartered? The media -12.333149063831318 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (The media, is working hard to promote, the LPGA.) -> The media (9796ms) Where is the LPGA headquartered? the South?s 18 holes -12.350422958938193 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, is playing all of, the South?s 18 holes) -> the South?s 18 holes (9796ms) Where is the LPGA headquartered? The 23-year-old Korean -12.380360449114862 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (The 23-year-old Korean, is ranked No. 4 in, the LPGA) -> The 23-year-old Korean (9796ms) Where is the LPGA headquartered? the first three events -12.453559096217955 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, were eligible for, the first three events) -> the first three events (9796ms) Where is the LPGA headquartered? The ever popular LPGA International -12.455427204537534 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (The ever popular LPGA International, is home to, the LPGA) -> The ever popular LPGA International (9796ms) Where is the LPGA headquartered? the finish -12.483040743189857 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, should be an exciting race to, the finish) -> the finish (9796ms) Where is the LPGA headquartered? The eight-stroke comeback -12.483984233340898 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (The eight-stroke comeback, was the largest on, the LPGA) -> The eight-stroke comeback (10025ms) Where is the LPGA headquartered? finally -12.61931036949485 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (the LPGA, is back in action, finally) -> finally (10025ms) Where is the LPGA headquartered? 1989 -12.627392058192648 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> where be the lpga s headquarters ? -> $x: (the lpga, headquarters, $x) -> (The LPGA, moved its headquarters here in, 1989) -> 1989 (3993ms) Where is the LPGA headquartered? the new tournament -12.837190291409796 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (the new tournament, would be a major milestone for, the LPGA.) -> the new tournament (10130ms) Where is the LPGA headquartered? 1950 -12.840312418903979 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: (the lpga, be, $x) -> (The LPGA, was established in, 1950) -> 1950 (10130ms) Where is the LPGA headquartered? the board -12.902394500635793 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (the board, had been working with, the LPGA.) -> the board (10130ms) Where is the LPGA headquartered? The same -12.945426784098508 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (The same, is true for, the LPGA.) -> The same (10201ms) Where is the LPGA headquartered? the 1990 Patty Berg Award -13.008693657200439 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (the 1990 Patty Berg Award, was instituted by, the LPGA) -> the 1990 Patty Berg Award (10201ms) Where is the LPGA headquartered? the future -13.080669541943585 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (the future, is definitely looking up for, the LPGA.) -> the future (10201ms) Where is the LPGA headquartered? the last few months -13.084273658544145 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (the last few months, have been very tough for, the LPGA.) -> the last few months (10201ms) Where is the LPGA headquartered? the June 16th EWGA Web Caf? Lorena Ochoa -13.09914520538408 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (the June 16th EWGA Web Caf? Lorena Ochoa, was, the LPGA) -> the June 16th EWGA Web Caf? Lorena Ochoa (10201ms) Where is the LPGA headquartered? 2009 -13.94992280617501 Where is the LPGA headquartered? -> where be [ the lpga ] headquarter ? -> what be the acronym for the lpga ? -> $x: ($x, be the acronym for, the lpga) -> $x: ($x, be, the lpga) -> (2009, is to be, the LPGA?s rookie) -> 2009 (10201ms) What plays did Shakespeare write? Titus Andronicus 0.7262661587464818 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (William Shakespeare, Play Lyrics Written, Titus Andronicus) -> Titus Andronicus (5144ms) What plays did Shakespeare write? Romeo and Juliet 0.5640218856631465 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (William Shakespeare, Play Lyrics Written, Romeo and Juliet) -> Romeo and Juliet (5144ms) What plays did Shakespeare write? Antony and Cleopatra 0.5640218856631465 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (William Shakespeare, Play Lyrics Written, Antony and Cleopatra) -> Antony and Cleopatra (5144ms) What plays did Shakespeare write? The Taming of the Shrew 0.49904816788331474 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (William Shakespeare, Play Lyrics Written, The Taming of the Shrew) -> The Taming of the Shrew (5350ms) What plays did Shakespeare write? A Midsummer Night's Dream 0.49904816788331474 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (William Shakespeare, Play Lyrics Written, A Midsummer Night's Dream) -> A Midsummer Night's Dream (5144ms) What plays did Shakespeare write? The Comedy of Errors 0.49904816788331474 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (William Shakespeare, Play Lyrics Written, The Comedy of Errors) -> The Comedy of Errors (5350ms) What plays did Shakespeare write? The Two Gentlemen of Verona 0.44407040668499564 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (William Shakespeare, Play Lyrics Written, The Two Gentlemen of Verona) -> The Two Gentlemen of Verona (5350ms) What plays did Shakespeare write? Macbeth 0.045566782109230375 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (William Shakespeare, Play Lyrics Written, Macbeth) -> Macbeth (5350ms) What plays did Shakespeare write? Lord Strange -1.6103690360076737 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare and Marlowe, wrote plays for, Lord Strange) -> Lord Strange (5821ms) What plays did Shakespeare write? a black and white union -1.778374167071881 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote a play about, a black and white union) -> a black and white union (5821ms) What plays did Shakespeare write? the Elizabethan age -1.7963559683453314 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote the play in, the Elizabethan age) -> the Elizabethan age (5821ms) What plays did Shakespeare write? 1599?decades -1.8522972142414702 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote the play in, 1599?decades) -> 1599?decades (5821ms) What plays did Shakespeare write? Elizabethan -1.894175468591165 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote his plays in, Elizabethan) -> Elizabethan (5821ms) What plays did Shakespeare write? England -1.9019346942114963 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (William Shakespeare, wrote his plays as, England) -> England (6573ms) What plays did Shakespeare write? a comedy -1.923294140725447 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote the play as, a comedy) -> a comedy (6573ms) What plays did Shakespeare write? unrhymed iambic pentameters -1.9315831149825065 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote his plays in, unrhymed iambic pentameters) -> unrhymed iambic pentameters (6573ms) What plays did Shakespeare write? Othello and Hamlet -1.9632360646315943 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, was writing plays such as, Othello and Hamlet) -> Othello and Hamlet (6573ms) What plays did Shakespeare write? a Jew -1.9632360646315943 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (William Shakespeare, wrote a very different play about, a Jew) -> a Jew (6573ms) What plays did Shakespeare write? the Queen?s pleasure -2.0445822675783782 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, is writing this play for, the Queen?s pleasure) -> the Queen?s pleasure (6573ms) What plays did Shakespeare write? a novelist famous -2.195968291410339 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (a lost Shakespeare, play written by, a novelist famous) -> a novelist famous (6603ms) What plays did Shakespeare write? two audiences -2.2333965643718594 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote a single play for, two audiences) -> two audiences (6603ms) What plays did Shakespeare write? five or six years -2.319841378815428 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (?Shakespeare, had been writing plays for, five or six years) -> five or six years (6602ms) What plays did Shakespeare write? historical figures -2.4119342589869133 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote many plays based on, historical figures) -> historical figures (6603ms) What plays did Shakespeare write? be performed -2.4235680762681318 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote his plays to, be performed) -> be performed (6603ms) What plays did Shakespeare write? ago -2.8791810128274795 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote his plays, ago) -> ago (6884ms) What plays did Shakespeare write? iambic pentameter -2.9579955357360594 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote his plays in, iambic pentameter) -> iambic pentameter (6884ms) What plays did Shakespeare write? King Lear -3.0792371108025054 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (King Lear, Instance Of, play) (Shakespeare, wrote, King Lear) -> King Lear (7142ms) What plays did Shakespeare write? Twelfth Night -3.098320832697277 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (Twelfth Night, Instance Of, play) (Shakespeare, writes, Twelfth Night) -> Twelfth Night (7142ms) What plays did Shakespeare write? 1597 -3.119880991731251 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote the play in, 1597) -> 1597 (7142ms) What plays did Shakespeare write? 1605 -3.1857038804421194 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote the play in, 1605) -> 1605 (7218ms) What plays did Shakespeare write? Shakespearean comedy -3.188247833258468 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, to write, $x) -> (Shakespearean comedy, Instance Of, play) (William Shakespeare, Series Written (or Contributed To), Shakespearean comedy) -> Shakespearean comedy (10080ms) What plays did Shakespeare write? enthusiasm -3.5176162545106724 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote plays with, enthusiasm) -> enthusiasm (7910ms) What plays did Shakespeare write? Hamlet -3.5252831276947885 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (Hamlet, Instance Of, play) (Shakespeare, wrote, Hamlet) -> Hamlet (7910ms) What plays did Shakespeare write? actors -3.5987787629641845 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote his plays for, actors) -> actors (7910ms) What plays did Shakespeare write? about 400 years ago -3.6751761580327873 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote his plays, about 400 years ago) -> about 400 years ago (8035ms) What plays did Shakespeare write? about 400 years -3.6955772768967385 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote his plays for, about 400 years) -> about 400 years (8036ms) What plays did Shakespeare write? Othello -3.7090259611283125 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (Othello, Instance Of, play) (Shakespeare, wrote, Othello) -> Othello (8036ms) What plays did Shakespeare write? the richest era -3.7198857681116486 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote his plays in, the richest era) -> the richest era (8454ms) What plays did Shakespeare write? the mass public -3.7763153789182633 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote plays for, the mass public) -> the mass public (8455ms) What plays did Shakespeare write? Twelfth-Night -3.783023319988106 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (Twelfth-Night, Instance Of, play) (Shakespeare, writes, Twelfth Night) -> Twelfth-Night (8454ms) What plays did Shakespeare write? good pm play -3.8999609832952165 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (good pm play, Instance Of, play) (Shakespeare, wrote, good plays) -> good pm play (8574ms) What plays did Shakespeare write? Romeo and Juliette -3.900069862268325 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (Romeo and Juliette, Instance Of, play) (Shakespeare, wrote, Romeo and Juliette) -> Romeo and Juliette (8574ms) What plays did Shakespeare write? The Tempest -3.9041782398355385 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (The Tempest, Instance Of, play) (Shakespeare, wrote, The Tempest) -> The Tempest (8574ms) What plays did Shakespeare write? good play -3.990595782917221 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (good play, Instance Of, play) (Shakespeare, wrote, good plays) -> good play (8574ms) What plays did Shakespeare write? Pericles -3.9938720847077223 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (Pericles, Instance Of, play) (Shakespeare, wrote, Pericles) -> Pericles (8575ms) What plays did Shakespeare write? Women -4.149260777943464 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (Women, Instance Of, play) (Shakespeare, wrote, women) -> Women (8645ms) What plays did Shakespeare write? Julius Caesar -4.182222456621341 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, in write, $x) -> (Julius Caesar, Instance Of, play) (Shakespeare, wrote in, Julius Caesar) -> Julius Caesar (9203ms) What plays did Shakespeare write? Poetry -4.192567187590093 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (Poetry, Instance Of, play) (Shakespeare, wrote, poetry) -> Poetry (9203ms) What plays did Shakespeare write? Dramatic poetry -4.21218005553021 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (Dramatic poetry, Instance Of, play) (Shakespeare, wrote, the dramatic part) -> Dramatic poetry (9203ms) What plays did Shakespeare write? verse -4.245729535583075 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote this play entirely in, verse) -> verse (9406ms) What plays did Shakespeare write? Henry VI -4.305083911556633 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, pen, $x) -> (Henry VI, Instance Of, play) (Shakespeare, penned, Henry VI) -> Henry VI (9648ms) What plays did Shakespeare write? performance -4.317612655532296 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote his plays for, performance) -> performance (9649ms) What plays did Shakespeare write? Henry VIII -4.401749625913214 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, in write, $x) -> (Henry VIII, Instance Of, play) (Shakespeare, writes in, Henry VIII) -> Henry VIII (10080ms) What plays did Shakespeare write? Troilus and Cressida -4.461242272890784 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, in write, $x) -> (Troilus and Cressida, Instance Of, play) (Shakespeare, wrote in, Troilus and Cressida) -> Troilus and Cressida (10130ms) What plays did Shakespeare write? rime -4.480106504031736 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, writes his plays sometimes in, rime) -> rime (10130ms) What plays did Shakespeare write? King John -4.564387923276039 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, in write, $x) -> (King John, Instance Of, play) (Shakespeare, wrote in, King John) -> King John (10213ms) What plays did Shakespeare write? Much Ado -4.601705018339971 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, in write, $x) -> (Much Ado, Instance Of, play) (Shakespeare, wrote in, Much Ado) -> Much Ado (11116ms) What plays did Shakespeare write? the time -4.605471079455384 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, wrote this play, the time) -> the time (11116ms) What plays did Shakespeare write? Henry V -4.610773975842333 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, use the term, $x) -> (Henry V, Instance Of, play) (William Shakespeare, used the term in, ? Henry V) -> Henry V (11116ms) What plays did Shakespeare write? a number -4.7308158691135525 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: (plays, element, $x) (Shakespeare, write, $x) -> (The play, contains elements from, a number) (Shakespeare, teaches fiction writing at, a number) -> a number (14416ms) What plays did Shakespeare write? A play -4.741547908367425 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, modelling, plays) (Shakespeare, write, $x) -> (A play, is modelled according to, a theatrical play) (Shakespeare, actually wrote, a play) -> A play (17819ms) What plays did Shakespeare write? Shylock -4.761883305956534 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, do thing, $x) -> (Shylock, Instance Of, award-winning play) (Shakespeare, does the same thing in making, Shylock) -> Shylock (12556ms) What plays did Shakespeare write? 1610 -4.853694433489597 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare 's younger contemporaries, to write a play in, 1610) -> 1610 (12556ms) What plays did Shakespeare write? Measure T -4.858356370727332 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, may write, $x) -> (Measure T, Instance Of, power play) (Shakespeare, may well have written, Measure) -> Measure T (12556ms) What plays did Shakespeare write? Cymbeline -4.877217541088678 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, in write, $x) -> (Cymbeline, Instance Of, play) (Shakespeare, wrote in, Cymbeline) -> Cymbeline (12556ms) What plays did Shakespeare write? The King and I -4.9322914945910865 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, to write, $x) -> (The King and I, Instance Of, play) (Scotland and Shakespeare, was writing to, the king) -> The King and I (14416ms) What plays did Shakespeare write? WORDS -4.93958587798673 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> (WORDS, Instance Of, play) (Shakespeares, written, words) -> WORDS (14473ms) What plays did Shakespeare write? King Henry VI -4.991371554383201 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, in write, $x) -> (King Henry VI, Instance Of, play) (Shakespeare, wrote in, King Henry VI) -> King Henry VI (15487ms) What plays did Shakespeare write? order -5.064481316311256 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, writes a play in, order) -> order (16373ms) What plays did Shakespeare write? ROMEO AND JULIET -5.12265759958359 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, to write, $x) -> (ROMEO AND JULIET, Instance Of, powerful play) (Shakespeare, was inspired to write, Romeo and Juliet) -> ROMEO AND JULIET (16373ms) What plays did Shakespeare write? Romeo -5.252547282913424 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, make fun, $x) -> (Romeo, Instance Of, play) (Shakespeare?s play Mercutio, makes fun of, Romeo) -> Romeo (17968ms) What plays did Shakespeare write? Santa -5.479327951701196 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, have to write, $x) -> (Santa, Instance Of, play) (Shakespeare, have written Letters to, Santa) -> Santa (18223ms) What plays did Shakespeare write? still -5.481527365226704 What plays did Shakespeare write? -> $x: (Shakespeare, write plays, $x) -> (Shakespeare, is writing plays, still) -> still (18223ms) What plays did Shakespeare write? Character -5.485226934232862 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: (plays, element, $x) (Shakespeare, write, $x) -> (every play, contains Spectacular elements as well as, Character) (Shakespeare, writes about, a character) -> Character (18222ms) What plays did Shakespeare write? The Story -5.557689176334936 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, write about in, $x) -> (The Story, Instance Of, play) (A city Shakespeare, wrote about in, the story) -> The Story (18266ms) What plays did Shakespeare write? Roses -5.585127442804333 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, say something, $x) -> (Roses, Instance Of, play) (Shakespeare, said something about, roses) -> Roses (18266ms) What plays did Shakespeare write? Worms -5.618124251202868 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, say something, $x) -> (Worms, Instance Of, play game) (Shakespeare, says something about, worms) -> Worms (18318ms) What plays did Shakespeare write? ENGLAND -5.945111790653822 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, in write, $x) -> (ENGLAND, Instance Of, play) (Shakespeare, was writing in, England) -> ENGLAND (18393ms) What plays did Shakespeare write? Merchant of Venice -5.978533310756854 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, instance of, plays) (Shakespeare, in write, $x) -> (Merchant of Venice, Instance Of, play) (Shakespeare, wrote in, Merchant of Venice) -> Merchant of Venice (18451ms) What plays did Shakespeare write? the top -6.394236130404073 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: ($x, be a way of, plays) (Shakespeare, write, $x) -> (the top, is a way of, life--plays) (Shakespeare, once wrote at, the top) -> the top (18934ms) What plays did Shakespeare write? farce -6.7572407431163715 What plays did Shakespeare write? -> $x: ($x, instance of, plays) (Shakespeare, write, $x) -> $x: (plays, element, $x) (Shakespeare, write, $x) -> (a romantic comedy play, has strong elements of, farce) (William Shakespeare, wrote in, his farce) -> farce (19163ms) The Orange Bowl is in what city? sunny Miami -9.589398708426053 The Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> (The 2009 Orange Bowl, will be held in, sunny Miami) -> sunny Miami (4689ms) The Orange Bowl is in what city? West Virginia -9.634948387255555 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (West Virginia, is in, the Orange Bowl) -> West Virginia (6523ms) The Orange Bowl is in what city? 1935 -9.700603750120075 The Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> (The Orange Bowl Committee, was created in, 1935) -> 1935 (4689ms) The Orange Bowl is in what city? Penn State -9.726904932420087 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Penn State, was in, the Orange Bowl) -> Penn State (6523ms) The Orange Bowl is in what city? diameter -9.75506716394776 The Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> (The orange bowl, is 3" in, diameter) -> diameter (4689ms) The Orange Bowl is in what city? UC -9.84908376765913 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (UC, was in, the Orange Bowl) -> UC (6523ms) The Orange Bowl is in what city? the City -9.85341498002527 The Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> (The Miami Orange Bowl, is a stadium in, the City) -> the City (4690ms) The Orange Bowl is in what city? Miami?s Little Havana -9.915175923569144 The Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> (the Orange Bowl, used to be in, Miami?s Little Havana) -> Miami?s Little Havana (4689ms) The Orange Bowl is in what city? KU -9.925883769521457 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (KU, is in, the Orange Bowl) -> KU (6523ms) The Orange Bowl is in what city? the Seminoles -9.970689319722137 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (the Seminoles, are cursed in, the orange Bowl) -> the Seminoles (6523ms) The Orange Bowl is in what city? Dolphin Stadium -10.003749350020904 The Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> (The annual Orange Bowl game, has been played in, Dolphin Stadium) -> Dolphin Stadium (4689ms) The Orange Bowl is in what city? play -10.042412559039773 The Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> (the Orange Bowl, is now in, play) -> play (4689ms) The Orange Bowl is in what city? the Tigers -10.086519213930048 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (the Tigers, were blasted in, the Orange Bowl) -> the Tigers (6523ms) The Orange Bowl is in what city? Iowa -10.239836325732613 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Iowa, was selected in, the 2003 Orange Bowl) -> Iowa (6523ms) The Orange Bowl is in what city? Virginia Tech -10.330793117181384 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Virginia Tech, is in, the Orange Bowl) -> Virginia Tech (6523ms) The Orange Bowl is in what city? Cincinnati -10.356788910891508 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Cincinnati, is in, the Orange Bowl) -> Cincinnati (6611ms) The Orange Bowl is in what city? jest -10.366483100002014 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> where be the orange bowl make ? -> $x: (the orange bowl, be make in, $x) -> (the 1984 Orange Bowl, is probably made in, jest) -> jest (4541ms) The Orange Bowl is in what city? The Hurricanes -10.36962240449209 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (The Hurricanes, are, the Orange Bowl) -> The Hurricanes (6611ms) The Orange Bowl is in what city? the Dons -10.372738171620503 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (the Dons, was, the Orange Bowl) -> the Dons (6611ms) The Orange Bowl is in what city? person -10.387939825076412 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (person, was in, the 2006 Orange Bowl) -> person (6611ms) The Orange Bowl is in what city? mid 1930 -10.392782302976203 The Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> (The Orange , Sugar , & Cotton Bowl, were all formed in, mid 1930) -> mid 1930 (4713ms) The Orange Bowl is in what city? the Miami Hurricanes -10.39948327203887 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (the Miami Hurricanes, are leaving, the historic Orange Bowl) -> the Miami Hurricanes (6611ms) The Orange Bowl is in what city? No. 1 -10.4682369313891 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (No. 1, could be playing in, the Orange Bowl) -> No. 1 (6611ms) The Orange Bowl is in what city? Paul Posluzny -10.54338836052853 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Paul Posluzny, was injured in, the Orange Bowl) -> Paul Posluzny (6611ms) The Orange Bowl is in what city? the Alliance showcase -10.625828438226918 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, was, the Alliance showcase) -> the Alliance showcase (7890ms) The Orange Bowl is in what city? Miami -10.694603190927431 The Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> (The Orange Bowl, is played in, Miami) -> Miami (4713ms) The Orange Bowl is in what city? a major bowl -10.717078875204477 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (a major bowl, was, the Orange Bowl) -> a major bowl (6611ms) The Orange Bowl is in what city? Step 3 -10.71806279712296 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Step 3, is, the orange bowl) -> Step 3 (6644ms) The Orange Bowl is in what city? The Fiesta Bowl -10.732869224856717 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (The Fiesta Bowl, is, the new Orange Bowl) -> The Fiesta Bowl (6644ms) The Orange Bowl is in what city? the Orange Bowl game -10.764746519192073 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (the Orange Bowl game, would be played at, the Orange Bowl) -> the Orange Bowl game (6644ms) The Orange Bowl is in what city? 1933 -10.7846397401607 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (1933, was precursor of, the Orange Bowl) -> 1933 (6644ms) The Orange Bowl is in what city? college officials -10.819251978454307 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (college officials, was advertised by, the Orange Bowl) -> college officials (6644ms) The Orange Bowl is in what city? the Bucknell Bison -10.854223308037103 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, were, the Bucknell Bison) -> the Bucknell Bison (7890ms) The Orange Bowl is in what city? The Orange Bowl -10.87930954548024 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (The Orange Bowl, is hosted by, the Orange Bowl Committee) -> The Orange Bowl (6643ms) The Orange Bowl is in what city? UConn -10.892317374507266 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, have, the orange bowl) -> (UConn, would have been selected to play in, the Orange Bowl) -> UConn (6643ms) The Orange Bowl is in what city? Authorities Concept Scheme -10.900384297036824 The Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (Orange Bowl, Miami, Fla. (Football game), In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (9020ms) The Orange Bowl is in what city? 10-1 -10.925352386189761 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (10-1, is now called, the Orange Bowl) -> 10-1 (6644ms) The Orange Bowl is in what city? the Wolverines -10.929856189877945 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (the Wolverines, were invited to, the 1976 Orange Bowl) -> the Wolverines (6676ms) The Orange Bowl is in what city? Topical Terms Concept Scheme -10.936119841815733 The Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (Orange Bowl, Miami, Fla. (Football game), In Scheme, Topical Terms Concept Scheme) -> Topical Terms Concept Scheme (9019ms) The Orange Bowl is in what city? Ohio State -10.957501631638989 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Ohio State, was going to, the Orange Bowl) -> Ohio State (6676ms) The Orange Bowl is in what city? Marlins Park -10.963626473723998 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Marlins Park, is nothing like, the Orange Bowl) -> Marlins Park (6676ms) The Orange Bowl is in what city? stadiums -10.973384494898768 The Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> (The Orange and Sugar Bowls, have n?t been played in, stadiums) -> stadiums (4714ms) The Orange Bowl is in what city? a game -10.995819227271221 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (a game, was in, the 1966 Orange Bowl) -> a game (6675ms) The Orange Bowl is in what city? the Hurricanes -11.017094175497084 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, is, the Hurricanes) -> the Hurricanes (7890ms) The Orange Bowl is in what city? ACC -11.037610978718906 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the orange bowl, is going to be, ACC) -> ACC (7890ms) The Orange Bowl is in what city? 1933 and 1934 -11.039637800984641 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (1933 and 1934, is the forerunner of, the Orange Bowl) -> 1933 and 1934 (6676ms) The Orange Bowl is in what city? the Board -11.082159019250234 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (the Board, is an active member of, the Orange Bowl Committee) -> the Board (6675ms) The Orange Bowl is in what city? Miami ! Jake -11.106836863406995 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Miami ! Jake, is headlining, the Discover Orange Bowl) -> Miami ! Jake (6676ms) The Orange Bowl is in what city? Several public health organizations -11.129890541474238 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Several public health organizations, are asking, the Orange Bowl) -> Several public health organizations (6675ms) The Orange Bowl is in what city? III -11.140530588269252 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (III, were both played at, the Orange Bowl) -> III (6705ms) The Orange Bowl is in what city? Missouri -11.142985480798187 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Missouri, were victories in, the 1961 Orange Bowl) -> Missouri (6705ms) The Orange Bowl is in what city? Tonight ESPNU -11.165258471838754 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Tonight ESPNU, will be airing, the 2006 Orange bowl) -> Tonight ESPNU (6705ms) The Orange Bowl is in what city? the Seminole -11.182701690781894 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The 2001 Orange Bowl, was, the Seminole) -> the Seminole (7890ms) The Orange Bowl is in what city? The 1963 team -11.182972062544838 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (The 1963 team, was headed to, the Orange Bowl) -> The 1963 team (6705ms) The Orange Bowl is in what city? line -11.208489372749543 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (line, is, the Orange Bowl) -> line (6705ms) The Orange Bowl is in what city? a live tiger -11.23068910875662 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (a live tiger, was at, the 1970 Orange Bowl) -> a live tiger (6705ms) The Orange Bowl is in what city? 1969 -11.235726304200556 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, was, 1969) -> 1969 (7890ms) The Orange Bowl is in what city? A holding area -11.23978149574362 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (A holding area, was set up at, the Orange Bowl) -> A holding area (6705ms) The Orange Bowl is in what city? The Florida Lottery -11.262127989021455 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (The Florida Lottery, is a sponsor of, the Orange Bowl) -> The Florida Lottery (6705ms) The Orange Bowl is in what city? a memorial service -11.264780600927038 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (a memorial service, was held at, the Orange Bowl) -> a memorial service (6739ms) The Orange Bowl is in what city? home -11.292351065434614 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (home, was, the Orange Bowl) -> home (6739ms) The Orange Bowl is in what city? Super Bowls II & III -11.296434731373186 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Super Bowls II & III, were played at, the Orange Bowl) -> Super Bowls II & III (6739ms) The Orange Bowl is in what city? The Mountaineers and Tigers -11.303193342287848 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (The Mountaineers and Tigers, are heading to, the Orange Bowl) -> The Mountaineers and Tigers (6739ms) The Orange Bowl is in what city? Mike Bellamy -11.345557603171425 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Mike Bellamy, will be suspended for, the Discover Orange Bowl) -> Mike Bellamy (6739ms) The Orange Bowl is in what city? Nebraska Cornhuskers -11.357934812831001 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, have, the orange bowl) -> (Nebraska Cornhuskers, have, the most Orange bowl victories) -> Nebraska Cornhuskers (6739ms) The Orange Bowl is in what city? Mr. Abess -11.382201919027747 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Mr. Abess, is a member of, the Orange Bowl Committee) -> Mr. Abess (6739ms) The Orange Bowl is in what city? Georgia -11.384417118732893 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Georgia, will be playing in, the Orange Bowl) -> Georgia (6768ms) The Orange Bowl is in what city? seven miles -11.43303995331155 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the orange bowl, is, seven miles) -> seven miles (8033ms) The Orange Bowl is in what city? eight national champions -11.433485415421183 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (eight national champions, were crowned on, the Orange Bowl field) -> eight national champions (6768ms) The Orange Bowl is in what city? The Jayhawks -11.450105641344447 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, have, the orange bowl) -> (The Jayhawks, have played in, the Orange Bowl) -> The Jayhawks (6768ms) The Orange Bowl is in what city? interesting -11.45582343698352 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (interesting, was, the burnt orange bowl) -> interesting (6768ms) The Orange Bowl is in what city? Mr. Trueba -11.472520512256049 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Mr. Trueba, is also a member of, the Orange Bowl Committee) -> Mr. Trueba (6768ms) The Orange Bowl is in what city? 26 -11.475878364453171 The Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (2006 Orange Bowl, was the winning score in, 26) -> 26 (9019ms) The Orange Bowl is in what city? a manufacturer consumer -11.477102900209404 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the orange bowl, was, a manufacturer consumer) -> a manufacturer consumer (8033ms) The Orange Bowl is in what city? Poms -11.499789851548842 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Poms, has been at, the Orange Bowl) -> Poms (6767ms) The Orange Bowl is in what city? the boys -11.512763738996375 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (the boys, are wearing in, the Orange Bowl game) -> the boys (6767ms) The Orange Bowl is in what city? Joe Robbie Stadium -11.518006797527926 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Joe Robbie Stadium, was a major upgrade from, the Orange Bowl) -> Joe Robbie Stadium (6768ms) The Orange Bowl is in what city? 19-14 -11.529270583003935 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the 1944 Orange Bowl, was won, 19-14) -> 19-14 (8033ms) The Orange Bowl is in what city? Football -11.536931034117922 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Football, is celebrated in, the Orange Bowl) -> Football (6798ms) The Orange Bowl is in what city? Records -11.540467832424604 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Records, were broken in, the Orange Bowl) -> Records (6798ms) The Orange Bowl is in what city? a huge money-maker -11.544301962631758 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, is, a huge money-maker) -> a huge money-maker (8033ms) The Orange Bowl is in what city? the Orange Bowl -11.5737985961754 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl game, would be played at, the Orange Bowl) -> the Orange Bowl (8069ms) The Orange Bowl is in what city? 50 different teams -11.58719599258573 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, have, the orange bowl) -> (50 different teams, have played in, the Orange Bowl) -> 50 different teams (6798ms) The Orange Bowl is in what city? a wild game -11.59293284711961 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, was, a wild game) -> a wild game (8069ms) The Orange Bowl is in what city? much controversy -11.599756176422344 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, is as, much controversy) -> much controversy (8069ms) The Orange Bowl is in what city? Internships -11.60299094808449 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Internships, are also available with, the Orange Bowl) -> Internships (6798ms) The Orange Bowl is in what city? a not-for-profit -11.66065238925325 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl Committee, is, a not-for-profit) -> a not-for-profit (8069ms) The Orange Bowl is in what city? 17 % -11.674279050066392 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, was up, 17 %) -> 17 % (8069ms) The Orange Bowl is in what city? a mediocre matchup -11.677220321923947 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, is still, a mediocre matchup) -> a mediocre matchup (8069ms) The Orange Bowl is in what city? the Orange Bowl Committee -11.688361622463567 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, is hosted by, the Orange Bowl Committee) -> the Orange Bowl Committee (8069ms) The Orange Bowl is in what city? the University -11.709337494916017 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl Hall, was inducted into, the University) -> the University (8142ms) The Orange Bowl is in what city? only Bowden -11.713397230136527 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, have, the orange bowl) -> (only Bowden, had stepped down after, the 2001 Orange Bowl) -> only Bowden (6798ms) The Orange Bowl is in what city? OU 13 -11.714952151539784 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the 2001 Orange Bowl, was, OU 13) -> OU 13 (8142ms) The Orange Bowl is in what city? You?ll -11.746700949800548 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, have, the orange bowl) -> (You?ll, have to play in, the Orange Bowl) -> You?ll (6798ms) The Orange Bowl is in what city? a legendary event -11.747602901871462 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, is, a legendary event) -> a legendary event (8142ms) The Orange Bowl is in what city? NU?s single-game bowl record -11.785057318429564 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the 1973 Orange Bowl, is, NU?s single-game bowl record) -> NU?s single-game bowl record (8142ms) The Orange Bowl is in what city? the Miami area -11.791593681532712 The Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (the Orange Bowl & various Super Bowls, played in, the Miami area) -> the Miami area (9020ms) The Orange Bowl is in what city? an enjoyable experience -11.798384840680152 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, has been, an enjoyable experience) -> an enjoyable experience (8142ms) The Orange Bowl is in what city? FOX -11.830522693931101 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, have, the orange bowl) -> (FOX, has, the ORANGE BOWL ? Georgia Tech and Iowa) -> FOX (6798ms) The Orange Bowl is in what city? 37,000-seat Marlins Park -11.8328987361393 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, was twice the size of, 37,000-seat Marlins Park) -> 37,000-seat Marlins Park (8142ms) The Orange Bowl is in what city? Key Biscayne -11.838880120754443 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the first Orange Bowl, was held here on, Key Biscayne) -> Key Biscayne (8142ms) The Orange Bowl is in what city? US Currency -11.839233431485473 The Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (All Orange Bowl ticket prices, are in, US Currency) -> US Currency (9020ms) The Orange Bowl is in what city? Moore Park -11.85222667627465 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl Committee, is helping restore, Moore Park) -> Moore Park (8253ms) The Orange Bowl is in what city? South Florida -11.854339652053511 The Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (The FedEx Orange Bowl, will take place in, South Florida) -> South Florida (9020ms) The Orange Bowl is in what city? the 18-and-under crop -11.86643843762863 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, are already the cream of, the 18-and-under crop) -> the 18-and-under crop (8253ms) The Orange Bowl is in what city? Complainant?s favor -11.873875006055835 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> where do the orange bowl find ? -> $x: (the orange bowl, do find in, $x) -> $x: (orange bowl, find in, $x) -> (ORANGE BOWL, find in, Complainant?s favor) -> Complainant?s favor (6798ms) The Orange Bowl is in what city? a special one -11.878817205350868 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl Committee, is truly, a special one) -> a special one (8252ms) The Orange Bowl is in what city? a football game -11.890562204243452 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, is much more than, a football game) -> a football game (8252ms) The Orange Bowl is in what city? the 1950s -11.904628630873477 The Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (the Orange Bowl, began in, the 1950s) -> the 1950s (9053ms) The Orange Bowl is in what city? the ACC champion -11.924825129808106 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, is home to, the ACC champion) -> the ACC champion (8253ms) The Orange Bowl is in what city? a special , special place -11.946930053346996 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, was, a special , special place) -> a special , special place (8253ms) The Orange Bowl is in what city? a Heisman winner -11.955669660067159 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, have, the orange bowl) -> (a Heisman winner, has played in, the Orange Bowl) -> a Heisman winner (6924ms) The Orange Bowl is in what city? Virginia -11.963100234691149 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, will be, Virginia) -> Virginia (8253ms) The Orange Bowl is in what city? the Rose Bowl -11.973741348119685 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl game, is clearly a ripoff of, the Rose Bowl) -> the Rose Bowl (8253ms) The Orange Bowl is in what city? thousands -11.987177273294623 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, is expected to draw, thousands) -> thousands (8352ms) The Orange Bowl is in what city? a unique twist -11.988457742048807 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, was a game with, a unique twist) -> a unique twist (8352ms) The Orange Bowl is in what city? 62 parades -11.999952270667652 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl Parade, has been cancelled after, 62 parades) -> 62 parades (8352ms) The Orange Bowl is in what city? attention -12.005620234852447 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl trophy, was the center of, attention) -> attention (8352ms) The Orange Bowl is in what city? Notre Dame -12.020780808714736 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, is free to choose, Notre Dame) -> Notre Dame (8352ms) The Orange Bowl is in what city? an ?at-large ? bowl game -12.028182036291552 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, was basically, an ?at-large ? bowl game) -> an ?at-large ? bowl game (8352ms) The Orange Bowl is in what city? an economic benefit -12.031214202023092 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, is more than just, an economic benefit) -> an economic benefit (8352ms) The Orange Bowl is in what city? half its allotment -12.048536574409775 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, is a little more than, half its allotment) -> half its allotment (8352ms) The Orange Bowl is in what city? The Seminoles -12.055561210246571 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, have, the orange bowl) -> (The Seminoles, still have to come into, the Orange Bowl) -> The Seminoles (6923ms) The Orange Bowl is in what city? white hankie-waving fans -12.068919705892199 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, was filled with, white hankie-waving fans) -> white hankie-waving fans (8389ms) The Orange Bowl is in what city? a barbecue place -12.070576982523704 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the '78 Orange Bowl, is the ultimate test for, a barbecue place) -> a barbecue place (8389ms) The Orange Bowl is in what city? 64 players -12.083066899118926 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl draw, was down to, 64 players) -> 64 players (8389ms) The Orange Bowl is in what city? Clemson -12.087836958783871 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Clemson, is going to, the Orange Bowl) -> Clemson (6924ms) The Orange Bowl is in what city? ACC champion Clemson -12.09190886853448 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, is stuck with, ACC champion Clemson) -> ACC champion Clemson (8389ms) The Orange Bowl is in what city? the Bowl Championship Series -12.10605600905891 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, is a member of, the Bowl Championship Series) -> the Bowl Championship Series (8389ms) The Orange Bowl is in what city? a long time partner and friend -12.120156621539907 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, has been, a long time partner and friend) -> a long time partner and friend (8389ms) The Orange Bowl is in what city? OU and Nebraska -12.125823359093209 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, always seemed to be, OU and Nebraska) -> OU and Nebraska (8389ms) The Orange Bowl is in what city? a disappointment -12.126222897898536 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, was, a disappointment) -> a disappointment (8425ms) The Orange Bowl is in what city? January 3rd 2012 -12.171801631675475 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The 2012 Orange Bowl, will be played on, January 3rd 2012) -> January 3rd 2012 (8425ms) The Orange Bowl is in what city? 1984 -12.193095538626553 The Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (the most interesting Orange Bowl, came in, 1984) -> 1984 (9053ms) The Orange Bowl is in what city? five BCS Bowl games -12.222200941667815 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Discover Orange Bowl, is one of, five BCS Bowl games) -> five BCS Bowl games (8425ms) The Orange Bowl is in what city? L football team -12.233511845838898 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, have, the orange bowl) -> (L football team, has won, the Orange Bowl) -> L football team (6924ms) The Orange Bowl is in what city? a state -12.241230124685835 The Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (the Orange Bowl, lingered semi-vacant in, a state) -> a state (9088ms) The Orange Bowl is in what city? Payton -12.280910184622178 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Payton, was named MVP of, the Orange Bowl) -> Payton (6924ms) The Orange Bowl is in what city? Discover -12.302523173552974 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Discover, is the new sponsor of, the Orange Bowl) -> Discover (6954ms) The Orange Bowl is in what city? The Rose Bowl -12.311115136078122 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, have, the orange bowl) -> (The Rose Bowl, would have, Oregon and Ohio State The Orange Bowl) -> The Rose Bowl (6954ms) The Orange Bowl is in what city? Simmons -12.320207112384084 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Simmons, was inducted into, the Orange Bowl Hall) -> Simmons (6954ms) The Orange Bowl is in what city? bowl games -12.324362519080873 The Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> what city be the first the orange bowl be ? -> $x: (the first the orange bowl, be city, $x) -> $x: (first orange bowl, city, $x) -> $x: ($x, be, first orange bowl) -> (bowl games, will be, the Orange?s first bowl) -> bowl games (9088ms) The Orange Bowl is in what city? The King Mango Strut -12.32451515966646 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, have, the orange bowl) -> (The King Mango Strut, now has outlived, the Orange Bowl parade) -> The King Mango Strut (6954ms) The Orange Bowl is in what city? The girls -12.343398792857622 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (The girls, were seen in, The Orange Bowl Restaurant) -> The girls (6954ms) The Orange Bowl is in what city? FSU and Oklahoma -12.350412063840029 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, have, the orange bowl) -> (FSU and Oklahoma, have played since, the 2001 Orange Bowl) -> FSU and Oklahoma (6954ms) The Orange Bowl is in what city? 2010 -12.38299615043778 The Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (Orange Bowl, expires in, 2010) -> 2010 (9088ms) The Orange Bowl is in what city? a victory -12.383445406763062 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, was more than, a victory) -> a victory (8425ms) The Orange Bowl is in what city? the western side -12.385154062792806 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (the western side, is, the Orange Bowl) -> the western side (6954ms) The Orange Bowl is in what city? hours -12.394330270236548 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The 2012 Orange Bowl, is just, hours) -> hours (8425ms) The Orange Bowl is in what city? a speech -12.403781957499758 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, was the site of, a speech) -> a speech (8425ms) The Orange Bowl is in what city? January -12.41943950306999 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, will be played on, January) -> January (8612ms) The Orange Bowl is in what city? The games -12.419767455658983 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (The games, are, the Orange Bowl) -> The games (6982ms) The Orange Bowl is in what city? The project -12.429558232305187 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (The project, will be centered in, the Orange Bowl) -> The project (6982ms) The Orange Bowl is in what city? a candidate -12.434699251281527 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl ?, is believed to be, a candidate) -> a candidate (8612ms) The Orange Bowl is in what city? Wednesday -12.446677413564915 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Discover Orange Bowl, will be played, Wednesday) -> Wednesday (8612ms) The Orange Bowl is in what city? the marching band -12.493361520222052 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (the marching band, was invited to play in, the 1947 Orange Bowl) -> the marching band (6982ms) The Orange Bowl is in what city? Argiz -12.494364447723822 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Argiz, is a member of, the Orange Bowl Committee) -> Argiz (6982ms) The Orange Bowl is in what city? VT -12.496491430872936 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, have, the orange bowl) -> (VT, has come a long way from, the 1996 Orange Bowl) -> VT (6982ms) The Orange Bowl is in what city? Echevarria -12.541286762780178 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Echevarria, is also a member of, the Orange Bowl Committee) -> Echevarria (6982ms) The Orange Bowl is in what city? Frazier -12.59989898541268 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (Frazier, was healthy enough to start, the 1995 Orange Bowl) -> Frazier (7012ms) The Orange Bowl is in what city? The title game -12.608232622429126 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (The title game, was, the Orange bowl) -> The title game (7012ms) The Orange Bowl is in what city? The previous best -12.616984757853052 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (The previous best, was 40 in, the 1942 Orange Bowl) -> The previous best (7012ms) The Orange Bowl is in what city? decades -12.625484633892086 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, was already there for, decades) -> decades (8612ms) The Orange Bowl is in what city? a field -12.633643721238414 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl Classic, was played on, a field) -> a field (8612ms) The Orange Bowl is in what city? the Little Havana section -12.640612699100163 The Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (the old Orange Bowl, once stood in, the Little Havana section) -> the Little Havana section (9088ms) The Orange Bowl is in what city? the audience -12.695618225356895 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (the audience, is nicer than, the Orange Bowl fans) -> the audience (7012ms) The Orange Bowl is in what city? the Big East -12.696252612074122 The Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (The Orange Bowl, has some historical interest in, the Big East) -> the Big East (9088ms) The Orange Bowl is in what city? the title -12.72840768221744 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (the title, was decided at, the Orange Bowl) -> the title (7012ms) The Orange Bowl is in what city? the Miami Field -12.735305050313624 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: (the orange bowl, place, $x) -> (the Orange Bowl, took place at, the Miami Field) -> the Miami Field (9976ms) The Orange Bowl is in what city? the rose bowl -12.746027052921296 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (the rose bowl, was followed by, the orange bowl) -> the rose bowl (7012ms) The Orange Bowl is in what city? The game -12.817254848258424 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (The game, was played at, the Orange Bowl) -> The game (7012ms) The Orange Bowl is in what city? now -12.820216131927362 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, is gone, now) -> now (8612ms) The Orange Bowl is in what city? plenty -12.895199880830292 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, was a great game with, plenty) -> plenty (8681ms) The Orange Bowl is in what city? Auburn -12.896397048456809 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl Nebraska, was playing, Auburn) -> Auburn (8681ms) The Orange Bowl is in what city? Jan -12.920142001908932 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, is on, Jan) -> Jan (8681ms) The Orange Bowl is in what city? the conference football champion -12.931177411997428 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (the conference football champion, was sent to, the Orange Bowl) -> the conference football champion (7041ms) The Orange Bowl is in what city? the other five -12.93285027300021 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (the other five, were played at, the Orange Bowl) -> the other five (7041ms) The Orange Bowl is in what city? Florida -12.933738492830422 The Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (The Orange Bowl, takes place in, Florida) -> Florida (9121ms) The Orange Bowl is in what city? Feist -12.956248709379423 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, have, the orange bowl) -> (Feist, already has his eyes on, the Orange Bowl) -> Feist (7041ms) The Orange Bowl is in what city? a great game -12.956318853131082 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: (the orange bowl, provide, $x) -> (the Orange Bowl, should provide, a great game) -> a great game (10133ms) The Orange Bowl is in what city? 2012 -12.981089661210122 The Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (Orange Bowl MVP Geno Smith, will graduate in, 2012) -> 2012 (9121ms) The Orange Bowl is in what city? look-away bad -13.010805704081536 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, was indeed, look-away bad) -> look-away bad (8681ms) The Orange Bowl is in what city? the second-lowest -13.01667662398705 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, were, the second-lowest) -> the second-lowest (8681ms) The Orange Bowl is in what city? Dolphins Stadium -13.034249581838978 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: (the orange bowl, place, $x) -> (the Fedex Orange Bowl, takes place at, Dolphins Stadium) -> Dolphins Stadium (9976ms) The Orange Bowl is in what city? The first Pryor-Arguello fight -13.05307155274322 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (The first Pryor-Arguello fight, was held at, the Orange Bowl) -> The first Pryor-Arguello fight (7041ms) The Orange Bowl is in what city? the three times Clemson -13.056668946597028 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (the three times Clemson, has been to, the Orange Bowl) -> the three times Clemson (7042ms) The Orange Bowl is in what city? wonderful condition -13.085174759488561 The Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (Vintage orange-red # 12 bowl, is in, wonderful condition) -> wonderful condition (9121ms) The Orange Bowl is in what city? the controversy -13.147141213503701 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, is juicing, the controversy) -> the controversy (8718ms) The Orange Bowl is in what city? the final reinforcement -13.147925664387412 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, was, the final reinforcement) -> the final reinforcement (8718ms) The Orange Bowl is in what city? The Bowl Alliance -13.150530135668134 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, include, the orange bowl) -> (The Bowl Alliance, only included, the Orange Bowl) -> The Bowl Alliance (9887ms) The Orange Bowl is in what city? Orlanda Calling -13.188099965614695 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, place, the orange bowl) -> (Orlanda Calling, takes place at, the Citrus Orange Bowl) -> Orlanda Calling (10049ms) The Orange Bowl is in what city? Sun Life Stadium -13.249235079398538 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: (the orange bowl, place, $x) -> (the 2012 Orange Bowl, takes place at, Sun Life Stadium) -> Sun Life Stadium (9976ms) The Orange Bowl is in what city? the second-oldest bowl game -13.264247545905711 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, is, the second-oldest bowl game) -> the second-oldest bowl game (8718ms) The Orange Bowl is in what city? Brigade 2506 -13.330631397402794 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, place, the orange bowl) -> (Brigade 2506, took place at, the Orange Bowl Stadium) -> Brigade 2506 (10049ms) The Orange Bowl is in what city? the last bowl game -13.429523027177765 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, was usually, the last bowl game) -> the last bowl game (8718ms) The Orange Bowl is in what city? Nebraska -13.46571346076868 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, place, the orange bowl) -> (Nebraska, reclaimed its rightful place in, the Orange Bowl) -> Nebraska (10049ms) The Orange Bowl is in what city? the least-watched BCS game -13.494626033132178 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, was, the least-watched BCS game) -> the least-watched BCS game (8718ms) The Orange Bowl is in what city? a statement -13.5018049434154 The Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (? Orange Bowl Committee CEO Eric Poms, said in, a statement) -> a statement (9204ms) The Orange Bowl is in what city? Music -13.530958373988469 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, have, the orange bowl) -> (Music, has recently performed at, the Discover Orange Bowl) -> Music (7069ms) The Orange Bowl is in what city? 1985 -13.54504740842409 The Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (the Orange Bowl, juniors tournament in, 1985) -> 1985 (9204ms) The Orange Bowl is in what city? the award -13.56072137854145 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, have, the orange bowl) -> (the award, has been sponsored by, the FedEx Orange Bowl) -> the award (7069ms) The Orange Bowl is in what city? a sense -13.608055711359231 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: (the orange bowl, provide, $x) -> (the Orange Bowl atmosphere, ought to provide, a sense) -> a sense (10133ms) The Orange Bowl is in what city? the brim -13.672742017744277 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, was packed to, the brim) -> the brim (8718ms) The Orange Bowl is in what city? the worst rated BCS bowl telecast -13.710196434302379 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, was, the worst rated BCS bowl telecast) -> the worst rated BCS bowl telecast (8755ms) The Orange Bowl is in what city? the county -13.713340980816056 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, has been designated by, the county) -> the county (8755ms) The Orange Bowl is in what city? the worst I?ve -13.719371602898839 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Discover Orange Bowl, was one of, the worst I?ve) -> the worst I?ve (8755ms) The Orange Bowl is in what city? the family-unfriendly start time -13.736692743376368 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, also was at, the family-unfriendly start time) -> the family-unfriendly start time (8755ms) The Orange Bowl is in what city? annually -13.82343067310329 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, has been played, annually) -> annually (8755ms) The Orange Bowl is in what city? Fanfare -13.825587228194255 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, include, the orange bowl) -> (Fanfare, will include, the Orange Bowl Trophy) -> Fanfare (9887ms) The Orange Bowl is in what city? Saturday -13.843581063494625 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: (the orange bowl, place, $x) -> (the Junior Orange Bowl Parade, takes place on, Saturday) -> Saturday (9976ms) The Orange Bowl is in what city? Site -13.84500796508014 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, contain, the orange bowl) -> (Site, contains latest information about, the orange bowl hall) -> Site (9887ms) The Orange Bowl is in what city? the most competitive events -13.912014334563617 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl Regatta, is one of, the most competitive events) -> the most competitive events (8755ms) The Orange Bowl is in what city? the other three BCS Bowls -13.942900579268638 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (the Orange Bowl, is now tied into, the other three BCS Bowls) -> the other three BCS Bowls (8755ms) The Orange Bowl is in what city? the fugitive -14.06239500110427 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, have, the orange bowl) -> (the fugitive, had walked away from, the Orange Bowl work detail) -> the fugitive (7069ms) The Orange Bowl is in what city? the attempt -14.065512053331057 The Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (the 1984 Orange Bowl, failed in, the attempt) -> the attempt (9204ms) The Orange Bowl is in what city? the mall -14.164127869845224 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, have, the orange bowl) -> (the mall, as have lunch at, The Orange Bowl Restaurant) -> the mall (7069ms) The Orange Bowl is in what city? The multiplatinum-selling singer -14.26414142406436 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be, the orange bowl) -> (The multiplatinum-selling singer, was booed at, the Orange Bowl) -> The multiplatinum-selling singer (7167ms) The Orange Bowl is in what city? a stadium -14.288269648730367 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, call, the orange bowl) -> (a stadium, called, the Orange Bowl) -> a stadium (9976ms) The Orange Bowl is in what city? the new years bass fishing -14.304533952578954 The Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (the Orange Bowl, rang in, the new years bass fishing) -> the new years bass fishing (9204ms) The Orange Bowl is in what city? The ballpark -14.409311791946541 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, be on, the orange bowl) -> (The ballpark, is built on, the former Orange Bowl site) -> The ballpark (10175ms) The Orange Bowl is in what city? the many decades -14.439738945028159 The Orange Bowl is in what city? -> [ the orange bowl be ] in what city ? -> where be the orange bowl be ? -> $x: (the orange bowl, be be in, $x) -> $x: (orange bowl, in, $x) -> (The Orange Bowl, has continued to develop in, the many decades) -> the many decades (9204ms) The Orange Bowl is in what city? the stadium -14.726579869600558 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the city of the orange bowl ? -> $x: (the orange bowl, city, $x) -> $x: ($x, call, the orange bowl) -> (the stadium, called, the Orange Bowl) -> the stadium (10049ms) The Orange Bowl is in what city? the controversy over last weeks -15.221163013362371 The Orange Bowl is in what city? -> [ the orange bowl ] be in what city ? -> what be the density of the orange bowl ? -> $x: (the orange bowl, density, $x) -> $x: (the orange bowl, be, $x) -> (The Orange Bowl, is juicing, the controversy over last weeks) -> the controversy over last weeks (8755ms) What is the chemical formula for sulphur dioxide? gas -8.289679493625881 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> (Sulphur dioxide, is a chemical that is a kind of, gas) -> gas (7684ms) What is the chemical formula for sulphur dioxide? Gases -8.981397844592681 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> (Sulphur dioxide, is a chemical that is a kind of, Gases) -> Gases (7684ms) What is the chemical formula for sulphur dioxide? CARBON -9.282382886548172 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> (Sulphur dioxide, is a chemical that is a kind of, CARBON) -> CARBON (7684ms) What is the chemical formula for sulphur dioxide? NITROGEN -9.282382886548172 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> (Sulphur dioxide, is a chemical that is a kind of, NITROGEN) -> NITROGEN (7683ms) What is the chemical formula for sulphur dioxide? A study of the effect of sulphur dioxide on plants -9.392536897455953 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, edition, sulphur dioxide) -> (A study of the effect of sulphur dioxide on plants, Editions, A study of the effect of sulphur dioxide on plants) -> A study of the effect of sulphur dioxide on plants (10328ms) What is the chemical formula for sulphur dioxide? Pergamon Press -9.67276364245327 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, edition, sulphur dioxide) -> (Pergamon Press, Book editions published, Chemie in flu?ssigem Distickstofftetroxid und Schwefeldioxid.: Chemistry in liquid dinitrogen tetroxide and sulphur dioxide) -> Pergamon Press (10328ms) What is the chemical formula for sulphur dioxide? Optical activity in solutions of liquid ammonia, sulphur dioxide, and methyl amine -9.71415680046612 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, edition, sulphur dioxide) -> (Optical activity in solutions of liquid ammonia, sulphur dioxide, and methyl amine, Editions, Optical activity in solutions of liquid ammonia, sulphur dioxide, and methyl amine) -> Optical activity in solutions of liquid ammonia, sulphur dioxide, and methyl amine (10328ms) What is the chemical formula for sulphur dioxide? Chemie in flu?ssigem Distickstofftetroxid und Schwefeldioxid.: Chemistry in liquid dinitrogen tetroxide and sulphur dioxide -9.80563456456988 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, also know as, sulphur dioxide) -> (Chemie in flu?ssigem Distickstofftetroxid und Schwefeldioxid.: Chemistry in liquid dinitrogen tetroxide and sulphur dioxide, Also known as, Chemistry in liquid dinitrogen tetroxide and sulphur dioxide.) -> Chemie in flu?ssigem Distickstofftetroxid und Schwefeldioxid.: Chemistry in liquid dinitrogen tetroxide and sulphur dioxide (10214ms) What is the chemical formula for sulphur dioxide? Sulfur dioxide -9.857656228388695 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, also know as, sulphur dioxide) -> (Sulfur dioxide, Also known as, sulphur dioxide) -> Sulfur dioxide (10214ms) What is the chemical formula for sulphur dioxide? dangerous gas -10.272674234939634 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, dangerous gas) -> dangerous gas (9840ms) What is the chemical formula for sulphur dioxide? Ithaca -10.277227190228853 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, place, $x) -> (The electrical conductance of solutions in methylamine and ethylamine the fluidity of ammonia, methylamine and sulphur dioxide and the fluidity of certain solutions in these solvents, Place of publication, Ithaca) -> Ithaca (10345ms) What is the chemical formula for sulphur dioxide? toxic gas -10.475398001911614 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, toxic gas) -> toxic gas (9840ms) What is the chemical formula for sulphur dioxide? acid gas -10.482104099921225 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, acid gas) -> acid gas (9880ms) What is the chemical formula for sulphur dioxide? air -10.49447329812078 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, air) -> air (9880ms) What is the chemical formula for sulphur dioxide? haze-causing pollutant -10.495580439332043 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, haze-causing pollutant) -> haze-causing pollutant (9880ms) What is the chemical formula for sulphur dioxide? corrosion-promoting substance -10.495580439332043 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, corrosion-promoting substance) -> corrosion-promoting substance (9880ms) What is the chemical formula for sulphur dioxide? water-soluble contaminant -10.501319183157275 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, water-soluble contaminant) -> water-soluble contaminant (10170ms) What is the chemical formula for sulphur dioxide? polluting gas -10.501493039206988 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, polluting gas) -> polluting gas (10170ms) What is the chemical formula for sulphur dioxide? waste gas -10.527754319645592 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, waste gas) -> waste gas (10170ms) What is the chemical formula for sulphur dioxide? condensable gas -10.571861363353205 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, condensable gas) -> condensable gas (10170ms) What is the chemical formula for sulphur dioxide? nasty gas -10.57401037675963 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur Dioxide, Instance Of, nasty gas) -> nasty gas (10170ms) What is the chemical formula for sulphur dioxide? life-threatening -10.607180549482349 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, be, life-threatening) -> life-threatening (10794ms) What is the chemical formula for sulphur dioxide? pollution gas -10.613420643637042 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, pollution gas) -> pollution gas (10170ms) What is the chemical formula for sulphur dioxide? secondary gas -10.61542687097879 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, secondary gas) -> secondary gas (10214ms) What is the chemical formula for sulphur dioxide? test gas -10.615643760557791 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, test gas) -> test gas (10215ms) What is the chemical formula for sulphur dioxide? inorganic gas -10.618405814941731 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, inorganic gas) -> inorganic gas (10215ms) What is the chemical formula for sulphur dioxide? ambient gas -10.61867098345864 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, ambient gas) -> ambient gas (10214ms) What is the chemical formula for sulphur dioxide? compressed gas -10.624573907939308 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, compressed gas) -> compressed gas (10237ms) What is the chemical formula for sulphur dioxide? shielding gas -10.62712986472494 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, shielding gas) -> shielding gas (10238ms) What is the chemical formula for sulphur dioxide? atmospheric gas -10.631476690325641 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, atmospheric gas) -> atmospheric gas (10237ms) What is the chemical formula for sulphur dioxide? pollutant from the air -10.65336905447403 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, pollutant from the air) -> pollutant from the air (10237ms) What is the chemical formula for sulphur dioxide? Corrosion of Al -10.68673192012146 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (Corrosion of Al, Instance Of, result of the combination of sulphur dioxide) -> Corrosion of Al (10328ms) What is the chemical formula for sulphur dioxide? chemical irritant -10.70718857075296 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, chemical irritant) -> chemical irritant (10345ms) What is the chemical formula for sulphur dioxide? product of combustion -10.722061697362745 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, product of combustion) -> product of combustion (10345ms) What is the chemical formula for sulphur dioxide? Coalcheck SDS -10.722467464900367 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (Coalcheck SDS, Instance Of, biodegradable compound of sulphur dioxide absorbing chemical) -> Coalcheck SDS (10345ms) What is the chemical formula for sulphur dioxide? component of acid deposition -10.750655279345976 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, component of acid deposition) -> component of acid deposition (10345ms) What is the chemical formula for sulphur dioxide? Burning of fossil fuels for power generation -10.75399882794058 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (Burning of fossil fuels for power generation, Instance Of, contributor of sulphur dioxide) -> Burning of fossil fuels for power generation (10345ms) What is the chemical formula for sulphur dioxide? Sodium Sulphite Heptahydrate -10.758816776024917 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (Sodium Sulphite Heptahydrate, Instance Of, convenient source of sulphur dioxide) -> Sodium Sulphite Heptahydrate (10793ms) What is the chemical formula for sulphur dioxide? 9780725904609 -10.76354605195815 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, edition, sulphur dioxide) -> (9780725904609, Book Editions, The contribution of industrial fossil fuel use to groundlevel sulphur dioxide concentrations in the Lower Hunter region) -> 9780725904609 (10793ms) What is the chemical formula for sulphur dioxide? severe respiratory irritant -10.767571850184758 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, severe respiratory irritant) -> severe respiratory irritant (10793ms) What is the chemical formula for sulphur dioxide? AQI -10.793605021369256 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (AQI, Instance Of, measure of carbon monoxide, fine particulate matter, sulphur dioxide, ozone, and nitrogen dioxide) -> AQI (10793ms) What is the chemical formula for sulphur dioxide? chemical agent -10.802579586093794 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, chemical agent) -> chemical agent (10856ms) What is the chemical formula for sulphur dioxide? irritating and corrosive gas -10.803753066709913 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur Dioxide, Instance Of, irritating and corrosive gas) -> irritating and corrosive gas (10856ms) What is the chemical formula for sulphur dioxide? gaseous sulphur compound -10.807585706116875 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, gaseous sulphur compound) -> gaseous sulphur compound (10856ms) What is the chemical formula for sulphur dioxide? elevated combustion pollutant -10.857408884211901 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, elevated combustion pollutant) -> elevated combustion pollutant (10856ms) What is the chemical formula for sulphur dioxide? fossil fuels -10.85815611884027 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, is the use of, fossil fuels) -> fossil fuels (10856ms) What is the chemical formula for sulphur dioxide? airborne particle and pollutant -10.860688673922665 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, airborne particle and pollutant) -> airborne particle and pollutant (10856ms) What is the chemical formula for sulphur dioxide? colourless, toxic gas -10.866529643059037 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, colourless, toxic gas) -> colourless, toxic gas (11170ms) What is the chemical formula for sulphur dioxide? Acid Gas A gas -10.866529643059037 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, Acid Gas A gas) -> Acid Gas A gas (11170ms) What is the chemical formula for sulphur dioxide? emissions -10.869030095595965 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> (Sulphur dioxide, is a chemical that is a kind of, emissions) -> emissions (7684ms) What is the chemical formula for sulphur dioxide? colourless, non-flammable gas -10.882980708119378 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, colourless, non-flammable gas) -> colourless, non-flammable gas (11169ms) What is the chemical formula for sulphur dioxide? Potassium Metabisulphite -10.888340466605182 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (Potassium Metabisulphite, Instance Of, stable source of sulphur dioxide) -> Potassium Metabisulphite (11169ms) What is the chemical formula for sulphur dioxide? sulphur compound -10.89212969793213 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, sulphur compound) -> sulphur compound (11169ms) What is the chemical formula for sulphur dioxide? conventional atmospheric contaminant -10.898181252768207 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, conventional atmospheric contaminant) -> conventional atmospheric contaminant (11169ms) What is the chemical formula for sulphur dioxide? fresh air air contaminant -10.907302011615345 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, fresh air air contaminant) -> fresh air air contaminant (11251ms) What is the chemical formula for sulphur dioxide? dangerous GHG gas -10.907302011615345 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, dangerous GHG gas) -> dangerous GHG gas (11251ms) What is the chemical formula for sulphur dioxide? harmful, colourless gas -10.907302011615345 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, harmful, colourless gas) -> harmful, colourless gas (11251ms) What is the chemical formula for sulphur dioxide? dangerous chemical -10.908752529147602 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, dangerous chemical) -> dangerous chemical (11252ms) What is the chemical formula for sulphur dioxide? preservative chemical -10.90918418998985 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, preservative chemical) -> preservative chemical (11252ms) What is the chemical formula for sulphur dioxide? chemical industry -10.910653576121566 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, chemical industry) -> chemical industry (11251ms) What is the chemical formula for sulphur dioxide? chemical additive -10.914196447422523 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, chemical additive) -> chemical additive (11274ms) What is the chemical formula for sulphur dioxide? gaseous emission -10.923415020876636 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, gaseous emission) -> gaseous emission (11275ms) What is the chemical formula for sulphur dioxide? hardcore toxic air pollutant -10.927722322917576 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, hardcore toxic air pollutant) -> hardcore toxic air pollutant (11274ms) What is the chemical formula for sulphur dioxide? group o acid gas -10.927722322917576 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, group o acid gas) -> group o acid gas (11275ms) What is the chemical formula for sulphur dioxide? injurious and harmful gas -10.927722322917576 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, injurious and harmful gas) -> injurious and harmful gas (11275ms) What is the chemical formula for sulphur dioxide? non-speci?c agent -10.930546983900333 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, non-speci?c agent) -> non-speci?c agent (11274ms) What is the chemical formula for sulphur dioxide? harmful by-products -10.9312316059019 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, harmful by-products) -> harmful by-products (11301ms) What is the chemical formula for sulphur dioxide? hot gas -10.939421652276637 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, hot gas) -> hot gas (11301ms) What is the chemical formula for sulphur dioxide? highly aggressive substance -10.94307520820335 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, highly aggressive substance) -> highly aggressive substance (11301ms) What is the chemical formula for sulphur dioxide? conventional monitoring parameter -10.94307520820335 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur Dioxide, Instance Of, conventional monitoring parameter) -> conventional monitoring parameter (11301ms) What is the chemical formula for sulphur dioxide? ClausMaster -10.94559009530703 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (ClausMaster, Instance Of, patented sulphur dioxide physical absorption process) -> ClausMaster (11301ms) What is the chemical formula for sulphur dioxide? air quality indicator -10.968647032110827 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, air quality indicator) -> air quality indicator (11430ms) What is the chemical formula for sulphur dioxide? colorless or transparent gas -10.972616278352719 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur Dioxide, Instance Of, colorless or transparent gas) -> colorless or transparent gas (11453ms) What is the chemical formula for sulphur dioxide? particulate and noxious gas -10.972616278352719 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, particulate and noxious gas) -> particulate and noxious gas (11430ms) What is the chemical formula for sulphur dioxide? toxic and poisonous gas -10.972616278352719 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, toxic and poisonous gas) -> toxic and poisonous gas (11430ms) What is the chemical formula for sulphur dioxide? corrosive and irritating gas -10.972616278352719 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, corrosive and irritating gas) -> corrosive and irritating gas (11430ms) What is the chemical formula for sulphur dioxide? colourless, non-flammable, non-explosive gas -10.972616278352719 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur Dioxide, Instance Of, colourless, non-flammable, non-explosive gas) -> colourless, non-flammable, non-explosive gas (11430ms) What is the chemical formula for sulphur dioxide? local and regional pollutant -10.972616278352719 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, local and regional pollutant) -> local and regional pollutant (11430ms) What is the chemical formula for sulphur dioxide? active reducing agent -10.974711871875211 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, active reducing agent) -> active reducing agent (11453ms) What is the chemical formula for sulphur dioxide? air pollutant from motor vehicle -11.002234811849759 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, air pollutant from motor vehicle) -> air pollutant from motor vehicle (11453ms) What is the chemical formula for sulphur dioxide? colourless, irritating and reactive gas -11.006935115802513 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, colourless, irritating and reactive gas) -> colourless, irritating and reactive gas (11452ms) What is the chemical formula for sulphur dioxide? Gaua volcano -11.007598433209713 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, was released from, Gaua volcano) -> Gaua volcano (11475ms) What is the chemical formula for sulphur dioxide? volatile organic compound -11.023681700185849 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (volatile organic compound, Instance Of, emission of sulphur dioxide and resultant toxic co-pollutants) -> volatile organic compound (11475ms) What is the chemical formula for sulphur dioxide? air quality -11.041759599493291 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, air quality) -> air quality (11475ms) What is the chemical formula for sulphur dioxide? fossil fuel -11.048500905788195 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, fossil fuel) -> fossil fuel (11475ms) What is the chemical formula for sulphur dioxide? Exhaust from a running car -11.048673397553879 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (Exhaust from a running car, Instance Of, toxic cocktail of carbon monoxide, sulphur dioxide, oxide of nitrogen, benzene, toluene and xylene) -> Exhaust from a running car (11475ms) What is the chemical formula for sulphur dioxide? throat irritation -11.053529298660946 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (throat irritation, Instance Of, acute effect of sulphur dioxide on the respiratory tract) -> throat irritation (11475ms) What is the chemical formula for sulphur dioxide? Tamil Nadu, India TCP Limited -11.072054315998376 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (Tamil Nadu, India TCP Limited, Instance Of, manufacturer, supplier and exporter of sodium hydrosulphite and liquid sulphur dioxide) -> Tamil Nadu, India TCP Limited (11500ms) What is the chemical formula for sulphur dioxide? gaseous precursor -11.08255420958902 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, gaseous precursor) -> gaseous precursor (11501ms) What is the chemical formula for sulphur dioxide? common preservative -11.110241732817796 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, common preservative) -> common preservative (11501ms) What is the chemical formula for sulphur dioxide? carbon dioxide -11.111167744394429 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (carbon dioxide, Instance Of, water and the emission of sulphur dioxide and greenhouse gas) -> carbon dioxide (11501ms) What is the chemical formula for sulphur dioxide? Sulphuric acid -11.13093283003177 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (Sulphuric acid, Instance Of, oxidation product of sulphur dioxide) -> Sulphuric acid (11500ms) What is the chemical formula for sulphur dioxide? bleaching agent -11.132539921663366 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, bleaching agent) -> bleaching agent (11526ms) What is the chemical formula for sulphur dioxide? inorganic substance -11.161186861340113 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, inorganic substance) -> inorganic substance (11526ms) What is the chemical formula for sulphur dioxide? precursor substance -11.17387538141786 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, precursor substance) -> precursor substance (11526ms) What is the chemical formula for sulphur dioxide? Coalcheck 24-7 -11.197757915884917 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (Coalcheck 24-7, Instance Of, biodegradable compound of flame inhibitor phophate esters, and sulphur dioxide absorbing chemical) -> Coalcheck 24-7 (11526ms) What is the chemical formula for sulphur dioxide? outdoor pollutant -11.202555936103005 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, outdoor pollutant) -> outdoor pollutant (11527ms) What is the chemical formula for sulphur dioxide? toxic compound -11.21145703930104 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, toxic compound) -> toxic compound (11551ms) What is the chemical formula for sulphur dioxide? industrial pollutant -11.250048510933754 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, industrial pollutant) -> industrial pollutant (11551ms) What is the chemical formula for sulphur dioxide? a big success--is -11.26320757902851 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, has been, a big success--is) -> a big success--is (11551ms) What is the chemical formula for sulphur dioxide? a toxin -11.282383255648778 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is, a toxin) -> a toxin (11551ms) What is the chemical formula for sulphur dioxide? noxious pollutant -11.285802985847912 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, noxious pollutant) -> noxious pollutant (11572ms) What is the chemical formula for sulphur dioxide? toxic emission -11.285802985847912 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, toxic emission) -> toxic emission (11572ms) What is the chemical formula for sulphur dioxide? undesirable constituent -11.285802985847912 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, undesirable constituent) -> undesirable constituent (11573ms) What is the chemical formula for sulphur dioxide? metallic pollutant -11.285802985847912 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, metallic pollutant) -> metallic pollutant (11572ms) What is the chemical formula for sulphur dioxide? acidifying substance -11.285802985847912 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, acidifying substance) -> acidifying substance (11572ms) What is the chemical formula for sulphur dioxide? trace material -11.289682954022522 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, trace material) -> trace material (11711ms) What is the chemical formula for sulphur dioxide? pollution factor -11.290249219689414 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, pollution factor) -> pollution factor (11711ms) What is the chemical formula for sulphur dioxide? volatile fluid -11.291678366401706 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, volatile fluid) -> volatile fluid (11712ms) What is the chemical formula for sulphur dioxide? synthetic additive -11.294312157578776 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, synthetic additive) -> synthetic additive (11712ms) What is the chemical formula for sulphur dioxide? active substance -11.295178739624854 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, active substance) -> active substance (11712ms) What is the chemical formula for sulphur dioxide? anthropogenic stressors -11.295890903101895 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, anthropogenic stressors) -> anthropogenic stressors (11712ms) What is the chemical formula for sulphur dioxide? sulphuric acid -11.298026021081707 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, was converted into, sulphuric acid) -> sulphuric acid (11733ms) What is the chemical formula for sulphur dioxide? particulate material -11.299861486040205 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, particulate material) -> particulate material (11733ms) What is the chemical formula for sulphur dioxide? dried fruits -11.302837478373478 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is usually added to, dried fruits) -> dried fruits (11733ms) What is the chemical formula for sulphur dioxide? copper smelter -11.309364883504335 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (copper smelter, Instance Of, source of sulphur dioxide) -> copper smelter (11733ms) What is the chemical formula for sulphur dioxide? power plant -11.309364883504335 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (power plant, Instance Of, sulphur dioxide emitter) -> power plant (11733ms) What is the chemical formula for sulphur dioxide? power station -11.309364883504335 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (power station, Instance Of, source of sulphur dioxide) -> power station (11733ms) What is the chemical formula for sulphur dioxide? E201 -11.3211915301748 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (E201, Instance Of, form of sulphur dioxide) -> E201 (11760ms) What is the chemical formula for sulphur dioxide? soft drinks -11.323796931884083 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is found in, soft drinks) -> soft drinks (11760ms) What is the chemical formula for sulphur dioxide? convenient reagent -11.326930647885913 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, convenient reagent) -> convenient reagent (11760ms) What is the chemical formula for sulphur dioxide? a bactericide -11.328486744607723 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is, a bactericide) -> a bactericide (11761ms) What is the chemical formula for sulphur dioxide? tree bark -11.329785194806568 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (tree bark, Instance Of, sulphur dioxide acidifies substrate) -> tree bark (11761ms) What is the chemical formula for sulphur dioxide? PTB -11.333491789367743 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, was associated with, PTB) -> PTB (11760ms) What is the chemical formula for sulphur dioxide? human health -11.340301465205936 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, were intended to protect, human health) -> human health (11785ms) What is the chemical formula for sulphur dioxide? fossil fuel combustion -11.348146258960288 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, are, fossil fuel combustion) -> fossil fuel combustion (11786ms) What is the chemical formula for sulphur dioxide? power plants -11.360441247740406 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is created by, power plants) -> power plants (11786ms) What is the chemical formula for sulphur dioxide? particulate matter -11.377432587845112 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (particulate matter, Instance Of, emission of sulphur dioxide and resultant toxic co-pollutants) -> particulate matter (11785ms) What is the chemical formula for sulphur dioxide? a good reducing agent -11.383458457944197 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is, a good reducing agent) -> a good reducing agent (11786ms) What is the chemical formula for sulphur dioxide? forest fire -11.383982479735128 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (forest fire, Instance Of, source of sulphur dioxide and oxide of nitrogen) -> forest fire (11786ms) What is the chemical formula for sulphur dioxide? The electrical conductance of solutions in methylamine and ethylamine -11.38967961695048 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, edition, $x) -> (The electrical conductance of solutions in methylamine and ethylamine the fluidity of ammonia, methylamine and sulphur dioxide and the fluidity of certain solutions in these solvents, Edition Of, The electrical conductance of solutions in methylamine and ethylamine) -> The electrical conductance of solutions in methylamine and ethylamine (11856ms) What is the chemical formula for sulphur dioxide? The contribution of industrial fossil fuel use to groundlevel sulphur dioxide concentrations in the Lower Hunter region -11.38967961695048 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, edition, sulphur dioxide) -> (The contribution of industrial fossil fuel use to groundlevel sulphur dioxide concentrations in the Lower Hunter region, Editions, The contribution of industrial fossil fuel use to groundlevel sulphur dioxide concentrations in the Lower Hunter region) -> The contribution of industrial fossil fuel use to groundlevel sulphur dioxide concentrations in the Lower Hunter region (11856ms) What is the chemical formula for sulphur dioxide? harmful greenhouse gas -11.412103771488068 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur Dioxide, Instance Of, harmful greenhouse gas) -> harmful greenhouse gas (11924ms) What is the chemical formula for sulphur dioxide? a well established phenomenon -11.417058015506523 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, is, a well established phenomenon) -> a well established phenomenon (11924ms) What is the chemical formula for sulphur dioxide? HYDRANAL Composite 5 K -11.436644828691271 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (HYDRANAL Composite 5 K, Instance Of, formulation consisting of imidazole, sulphur dioxide, and iodine) -> HYDRANAL Composite 5 K (11924ms) What is the chemical formula for sulphur dioxide? a very dense gas -11.474466301282673 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is, a very dense gas) -> a very dense gas (11944ms) What is the chemical formula for sulphur dioxide? a colourless gas -11.50664236949805 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is, a colourless gas) -> a colourless gas (11944ms) What is the chemical formula for sulphur dioxide? traditional air pollutant -11.519089848385502 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, traditional air pollutant) -> traditional air pollutant (11944ms) What is the chemical formula for sulphur dioxide? common household gas -11.545045292114333 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, common household gas) -> common household gas (11944ms) What is the chemical formula for sulphur dioxide? prominent examples -11.566484710197466 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, are, prominent examples) -> prominent examples (11944ms) What is the chemical formula for sulphur dioxide? severe leaf damage -11.583437235033452 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, should be avoided as, severe leaf damage) -> severe leaf damage (11964ms) What is the chemical formula for sulphur dioxide? a dense colourless gas -11.597926294839295 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is, a dense colourless gas) -> a dense colourless gas (11964ms) What is the chemical formula for sulphur dioxide? a result -11.601339905535532 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is emitted as, a result) -> a result (11964ms) What is the chemical formula for sulphur dioxide? criterion air contaminant -11.616985681001394 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, criterion air contaminant) -> criterion air contaminant (11964ms) What is the chemical formula for sulphur dioxide? a preservative -11.6385407768295 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur Dioxide, is added as, a preservative) -> a preservative (11965ms) What is the chemical formula for sulphur dioxide? Kalgoorlie -11.643914318017288 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (Kalgoorlie, Instance Of, sulphur dioxide problem area) -> Kalgoorlie (11984ms) What is the chemical formula for sulphur dioxide? Kwinana -11.643914318017288 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (Kwinana, Instance Of, sulphur dioxide problem area) -> Kwinana (11984ms) What is the chemical formula for sulphur dioxide? Tazzetti -11.643914318017288 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (Tazzetti, Instance Of, established supplier of sulphur dioxide) -> Tazzetti (11984ms) What is the chemical formula for sulphur dioxide? Collie -11.643914318017288 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (Collie, Instance Of, sulphur dioxide problem area) -> Collie (11984ms) What is the chemical formula for sulphur dioxide? Aromax -11.66433462931952 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (Aromax, Instance Of, oenological agent containing sulphur dioxide) -> Aromax (11984ms) What is the chemical formula for sulphur dioxide? 200 ppm -11.665726080138475 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, is, 200 ppm) -> 200 ppm (11984ms) What is the chemical formula for sulphur dioxide? serious questions -11.68254653820653 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, alone are enough to raise, serious questions) -> serious questions (12146ms) What is the chemical formula for sulphur dioxide? transboundary air pollutant -11.702652004992842 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, transboundary air pollutant) -> transboundary air pollutant (12147ms) What is the chemical formula for sulphur dioxide? major phytotoxicants -11.70997988138114 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, are, major phytotoxicants) -> major phytotoxicants (12146ms) What is the chemical formula for sulphur dioxide? dangerous air pollutant -11.710877537523013 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, dangerous air pollutant) -> dangerous air pollutant (12147ms) What is the chemical formula for sulphur dioxide? acceptable limits -11.712333040646893 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, was well below, acceptable limits) -> acceptable limits (12170ms) What is the chemical formula for sulphur dioxide? Biomass -11.724520809999785 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (Biomass, Instance Of, carbon dioxide neutral and sulphur free method of burning fuel) -> Biomass (12170ms) What is the chemical formula for sulphur dioxide? criterion air pollutant -11.732563032820988 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, criterion air pollutant) -> criterion air pollutant (12170ms) What is the chemical formula for sulphur dioxide? 15 ppm -11.75567936798824 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, is less than, 15 ppm) -> 15 ppm (12170ms) What is the chemical formula for sulphur dioxide? 56 percent -11.75862714519899 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (sulphur dioxide, has fallen, 56 percent) -> 56 percent (12341ms) What is the chemical formula for sulphur dioxide? 65 percent -11.772665860333088 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (acid rain-causing sulphur dioxide, have declined by, 65 percent) -> 65 percent (12341ms) What is the chemical formula for sulphur dioxide? acid rain -11.7831140353241 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (sulphur dioxide, may have created, acid rain) -> acid rain (12341ms) What is the chemical formula for sulphur dioxide? coal containing sulphur -11.784368271794982 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, release, sulphur dioxide) -> (coal containing sulphur, released, sulphur dioxide) -> coal containing sulphur (12341ms) What is the chemical formula for sulphur dioxide? lower worldwide -11.805173824914817 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, are expected to be, lower worldwide) -> lower worldwide (12341ms) What is the chemical formula for sulphur dioxide? a gas -11.823091333737949 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, is emitted as, a gas) -> a gas (12341ms) What is the chemical formula for sulphur dioxide? a known preservative -11.85948969155038 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is, a known preservative) -> a known preservative (12399ms) What is the chemical formula for sulphur dioxide? a natural substance -11.862267467130348 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is, a natural substance) -> a natural substance (12398ms) What is the chemical formula for sulphur dioxide? significant pollutant -11.903319780291614 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, is identified as, significant pollutant) -> significant pollutant (12398ms) What is the chemical formula for sulphur dioxide? various industries -11.911704982489207 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur Dioxide, is used in, various industries) -> various industries (12398ms) What is the chemical formula for sulphur dioxide? 4.2 percent -11.933403153509628 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, were up by, 4.2 percent) -> 4.2 percent (12398ms) What is the chemical formula for sulphur dioxide? a common preservative -11.936540073463771 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is, a common preservative) -> a common preservative (12421ms) What is the chemical formula for sulphur dioxide? a commercial preservative -11.938894822927015 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, is widely used as, a commercial preservative) -> a commercial preservative (12421ms) What is the chemical formula for sulphur dioxide? 500 km -11.94297184282808 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, was detected, 500 km) -> 500 km (12421ms) What is the chemical formula for sulphur dioxide? sulphur trioxide -11.973432738246741 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, has to be converted into, sulphur trioxide) -> sulphur trioxide (12421ms) What is the chemical formula for sulphur dioxide? recent years -11.988464065172266 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, have been falling over, recent years) -> recent years (12421ms) What is the chemical formula for sulphur dioxide? visibility problems -12.003662965931163 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is a major source of, visibility problems) -> visibility problems (12421ms) What is the chemical formula for sulphur dioxide? more than 99 -12.03263006348975 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is used by, more than 99) -> more than 99 (12442ms) What is the chemical formula for sulphur dioxide? to 17 times -12.036398898352466 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, was found at up, to 17 times) -> to 17 times (12443ms) What is the chemical formula for sulphur dioxide? an indicator pollutant -12.095528672528188 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, has been chosen as, an indicator pollutant) -> an indicator pollutant (12442ms) What is the chemical formula for sulphur dioxide? Smelting operations -12.118226854866096 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, release, sulphur dioxide) -> (Smelting operations, release, sulphur dioxide) -> Smelting operations (12443ms) What is the chemical formula for sulphur dioxide? Earth -12.118466908534396 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (sulphur dioxide, could have plunged, Earth) -> Earth (12443ms) What is the chemical formula for sulphur dioxide? Agra -12.142496541253678 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, release, sulphur dioxide) -> (Agra, released a large amount of, sulphur dioxides) -> Agra (12443ms) What is the chemical formula for sulphur dioxide? building materials -12.14386672477346 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (sulphur dioxide, have effects on, building materials) -> building materials (12443ms) What is the chemical formula for sulphur dioxide? a pungent odour -12.219185495830686 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is a colourless gas with, a pungent odour) -> a pungent odour (12464ms) What is the chemical formula for sulphur dioxide? Volcanoes -12.233408642974853 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, release, sulphur dioxide) -> (Volcanoes, can release massive quantities of, sulphur dioxide) -> Volcanoes (12464ms) What is the chemical formula for sulphur dioxide? 44 -12.336735479861307 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (Sulphur dioxide emissions, have been reduced by, 44) -> 44 (12464ms) What is the chemical formula for sulphur dioxide? global climatic cooling -12.351670121804304 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (sulphur dioxide, would have led to, global climatic cooling) -> global climatic cooling (12464ms) What is the chemical formula for sulphur dioxide? fresh pet meats -12.356993651216301 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur Dioxide, is added to, fresh pet meats) -> fresh pet meats (12464ms) What is the chemical formula for sulphur dioxide? such a universal additive -12.357070248786416 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (Sulphur dioxide, has become, such a universal additive) -> such a universal additive (12464ms) What is the chemical formula for sulphur dioxide? stacks and disperses -12.418003303426389 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is released from, stacks and disperses) -> stacks and disperses (12494ms) What is the chemical formula for sulphur dioxide? a colourless gas with a strong odour -12.419863065705963 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is, a colourless gas with a strong odour) -> a colourless gas with a strong odour (12494ms) What is the chemical formula for sulphur dioxide? Europe -12.421827491784102 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (sulphur dioxide, have declined significantly in, Europe) -> Europe (12494ms) What is the chemical formula for sulphur dioxide? similar effects -12.468039931804716 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (sulphur and carbon dioxide, would have had, similar effects) -> similar effects (12494ms) What is the chemical formula for sulphur dioxide? 300 -12.509042138467946 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (Sulphur dioxide emissions, have risen from, 300) -> 300 (12494ms) What is the chemical formula for sulphur dioxide? a high energy density -12.54556767436759 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (Lithium-sulphur dioxide cells, have, a high energy density) -> a high energy density (12494ms) What is the chemical formula for sulphur dioxide? rotten eggs -12.620121995480536 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (sulphur dioxide, has a smell like, rotten eggs) -> rotten eggs (12526ms) What is the chemical formula for sulphur dioxide? 4.6 m -12.662061477330377 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (sulphur dioxide and water, has a diameter of, 4.6 m) -> 4.6 m (12526ms) What is the chemical formula for sulphur dioxide? power stations -12.675375418588384 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, come, $x) -> (the UK sulphur dioxide, comes from, power stations) -> power stations (13373ms) What is the chemical formula for sulphur dioxide? more than 60 percent -12.69106225102799 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (sulphur dioxide, have declined by, more than 60 percent) -> more than 60 percent (12526ms) What is the chemical formula for sulphur dioxide? minor reactions -12.706365771670868 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (Sulphur dioxide, has had, minor reactions) -> minor reactions (12526ms) What is the chemical formula for sulphur dioxide? recent decades -12.718660149948043 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (sulphur dioxide, have fallen considerably in, recent decades) -> recent decades (12525ms) What is the chemical formula for sulphur dioxide? 89 -12.742470352388253 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (sulphur dioxide, had still fallen by, 89) -> 89 (12548ms) What is the chemical formula for sulphur dioxide? preserve the taste of wine -12.773657676973759 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, is used evident to, preserve the taste of wine) -> preserve the taste of wine (12548ms) What is the chemical formula for sulphur dioxide? urban areas -12.792154067324647 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, concentrate, $x) -> (sulphur dioxide, are more concentrated in, urban areas) -> urban areas (13436ms) What is the chemical formula for sulphur dioxide? the major causes -12.831889651337487 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, is one of, the major causes) -> the major causes (12548ms) What is the chemical formula for sulphur dioxide? a high level -12.840516326360211 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (Sulphur dioxide emissions, have remained at, a high level) -> a high level (12548ms) What is the chemical formula for sulphur dioxide? the air -12.884705268083518 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, are discarded into, the air) -> the air (12548ms) What is the chemical formula for sulphur dioxide? chemical -12.886301708923734 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, chemical) -> chemical (12548ms) What is the chemical formula for sulphur dioxide? the atmosphere ? -12.889854439848989 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, was present in, the atmosphere ?) -> the atmosphere ? (12548ms) What is the chemical formula for sulphur dioxide? the wine making process -12.952090415195704 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is used in, the wine making process) -> the wine making process (12548ms) What is the chemical formula for sulphur dioxide? the main causes -12.964454729848157 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, is one of, the main causes) -> the main causes (12569ms) What is the chemical formula for sulphur dioxide? a haze -12.974225771730946 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, form, $x) -> (sulphur dioxide, formed, a haze) -> a haze (13436ms) What is the chemical formula for sulphur dioxide? the winter months -12.999204155875676 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, tend to be higher in, the winter months) -> the winter months (12569ms) What is the chemical formula for sulphur dioxide? the southeast -13.022663388448922 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, are evident in, the southeast) -> the southeast (12569ms) What is the chemical formula for sulphur dioxide? a minimum -13.036392755224231 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, keep, $x) -> (sulphur dioxide, was kept to, a minimum) -> a minimum (13373ms) What is the chemical formula for sulphur dioxide? the most important factor -13.081183263526947 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, was identified as, the most important factor) -> the most important factor (12569ms) What is the chemical formula for sulphur dioxide? atmosphere -13.082777675694762 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, atmosphere) -> atmosphere (12569ms) What is the chemical formula for sulphur dioxide? the solution -13.118156731920136 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, was released by, the solution) -> the solution (12569ms) What is the chemical formula for sulphur dioxide? mold -13.1320703743051 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, is recommended for, mold) -> mold (12604ms) What is the chemical formula for sulphur dioxide? water -13.133167271809025 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, chemical, sulphur dioxide) -> (water, is a chemical that is a kind of, Sulphur dioxide) -> water (12604ms) What is the chemical formula for sulphur dioxide? volcanoes -13.158223159259068 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, are, volcanoes) -> volcanoes (12604ms) What is the chemical formula for sulphur dioxide? preservative -13.168238745992564 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, preservative) -> preservative (12604ms) What is the chemical formula for sulphur dioxide? a necessary 'disinfectant ' -13.177343341626653 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, use, $x) -> (Sulphur dioxide, is widely used as, a necessary 'disinfectant ') -> a necessary 'disinfectant ' (13373ms) What is the chemical formula for sulphur dioxide? 2007 -13.17960005830567 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, has clearly been falling since, 2007) -> 2007 (12604ms) What is the chemical formula for sulphur dioxide? the volcano -13.182874866759247 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, have been reported at, the volcano) -> the volcano (12604ms) What is the chemical formula for sulphur dioxide? the picture -13.20315076924652 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, are also part of, the picture) -> the picture (12604ms) What is the chemical formula for sulphur dioxide? species -13.24169544535864 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, species) -> species (12626ms) What is the chemical formula for sulphur dioxide? nose -13.247683105919215 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (nose, Instance Of, acute effect of sulphur dioxide on the respiratory tract) -> nose (12626ms) What is the chemical formula for sulphur dioxide? the atmosphere -13.25242958768587 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, was released into, the atmosphere) -> the atmosphere (12625ms) What is the chemical formula for sulphur dioxide? the color -13.261633025927702 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, is used to fix, the color) -> the color (12626ms) What is the chemical formula for sulphur dioxide? the burning -13.27023874289366 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is formed by, the burning) -> the burning (12626ms) What is the chemical formula for sulphur dioxide? the stratosphere -13.288742352700908 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, were injected into, the stratosphere) -> the stratosphere (12626ms) What is the chemical formula for sulphur dioxide? the combustion -13.332132581504844 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is produced by, the combustion) -> the combustion (12647ms) What is the chemical formula for sulphur dioxide? sulphuric acids -13.398415565107946 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, concentrate, $x) -> (Sulphur dioxide, concentrated, sulphuric acids) -> sulphuric acids (13436ms) What is the chemical formula for sulphur dioxide? zinc -13.422318347372698 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (zinc, Instance Of, sulphur dioxide-containing gas) -> zinc (12647ms) What is the chemical formula for sulphur dioxide? component -13.426124922574475 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, component) -> component (12647ms) What is the chemical formula for sulphur dioxide? humans -13.429499216681522 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, are damaging to, humans) -> humans (12647ms) What is the chemical formula for sulphur dioxide? refrigerant -13.441170496010221 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, refrigerant) -> refrigerant (12669ms) What is the chemical formula for sulphur dioxide? yeast -13.442035503604256 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, can be produced by, yeast) -> yeast (12669ms) What is the chemical formula for sulphur dioxide? fume -13.480495790764987 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (sulphur dioxide, Instance Of, fume) -> fume (12670ms) What is the chemical formula for sulphur dioxide? sterilant -13.486371171318781 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, instance of, $x) -> (Sulphur dioxide, Instance Of, sterilant) -> sterilant (12670ms) What is the chemical formula for sulphur dioxide? selenium -13.50707292488766 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (selenium, Instance Of, sulphur dioxide rare earth metal) -> selenium (12670ms) What is the chemical formula for sulphur dioxide? rhenium -13.50707292488766 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (rhenium, Instance Of, sulphur dioxide rare earth metal) -> rhenium (12669ms) What is the chemical formula for sulphur dioxide? boiler -13.53154656902057 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (boiler, Instance Of, localized source of sulphur dioxide) -> boiler (12691ms) What is the chemical formula for sulphur dioxide? rock -13.53154656902057 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (rock, Instance Of, sulphur dioxide acidifies substrate) -> rock (12691ms) What is the chemical formula for sulphur dioxide? limestone -13.53154656902057 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (limestone, Instance Of, sulphur dioxide absorbent material) -> limestone (12691ms) What is the chemical formula for sulphur dioxide? dolomite -13.53154656902057 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (dolomite, Instance Of, sulphur dioxide absorbent material) -> dolomite (12691ms) What is the chemical formula for sulphur dioxide? incinerator -13.53154656902057 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (incinerator, Instance Of, localized source of sulphur dioxide) -> incinerator (12691ms) What is the chemical formula for sulphur dioxide? high concentrations -13.543502765419506 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, lead, $x) -> (sulphur dioxide, leads to, high concentrations) -> high concentrations (13692ms) What is the chemical formula for sulphur dioxide? the interior -13.564143671894655 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: (sulphur dioxide, release, $x) -> (sulphur dioxide and nitrogen, were released from, the interior) -> the interior (12691ms) What is the chemical formula for sulphur dioxide? xylene -13.585600334232362 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (xylene, Instance Of, emission of sulphur dioxide and toxic aromatic substance) -> xylene (12691ms) What is the chemical formula for sulphur dioxide? benzene -13.585600334232362 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (benzene, Instance Of, emission of sulphur dioxide and toxic aromatic substance) -> benzene (12711ms) What is the chemical formula for sulphur dioxide? toluene -13.585600334232362 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (toluene, Instance Of, emission of sulphur dioxide and toxic aromatic substance) -> toluene (12691ms) What is the chemical formula for sulphur dioxide? volcano -13.590398483731256 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (volcano, Instance Of, source of sulphur dioxide and oxide of nitrogen) -> volcano (12711ms) What is the chemical formula for sulphur dioxide? ocean -13.590398483731256 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (ocean, Instance Of, source of sulphur dioxide and oxide of nitrogen) -> ocean (12711ms) What is the chemical formula for sulphur dioxide? the acid rain -13.611141026922464 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (sulphur dioxide, so has, the acid rain) -> the acid rain (12711ms) What is the chemical formula for sulphur dioxide? calcium -13.612153061003069 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (calcium, Instance Of, sulfonation using a solution of sulphur dioxide and alkaline oxide) -> calcium (12711ms) What is the chemical formula for sulphur dioxide? sodium -13.612153061003069 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (sodium, Instance Of, sulfonation using a solution of sulphur dioxide and alkaline oxide) -> sodium (12837ms) What is the chemical formula for sulphur dioxide? magnesium -13.612153061003069 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, instance of, sulphur dioxide) -> (magnesium, Instance Of, sulfonation using a solution of sulphur dioxide and alkaline oxide) -> magnesium (12711ms) What is the chemical formula for sulphur dioxide? girls -13.674630299082967 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, was most harmful for, girls) -> girls (12838ms) What is the chemical formula for sulphur dioxide? the same effecto -13.70212043461266 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (Sulphur dioxide, has, the same effecto) -> the same effecto (12838ms) What is the chemical formula for sulphur dioxide? the bean plant -13.841916628937186 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (the sulphur dioxide, have on, the bean plant) -> the bean plant (12837ms) What is the chemical formula for sulphur dioxide? nucleation and growth -13.873784171074313 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, lead, $x) -> (smoke and sulphur dioxide, led to, nucleation and growth) -> nucleation and growth (13743ms) What is the chemical formula for sulphur dioxide? the chemical formula -13.924270966075149 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (Sulfur dioxide or Sulphur dioxide, has, the chemical formula) -> the chemical formula (12837ms) What is the chemical formula for sulphur dioxide? wine -13.9268563957885 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is to, wine) -> wine (12837ms) What is the chemical formula for sulphur dioxide? areas -14.044817414636704 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, are recorded in, areas) -> areas (12903ms) What is the chemical formula for sulphur dioxide? plants -14.083394459642157 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur dioxide, is damaging to, plants) -> plants (12903ms) What is the chemical formula for sulphur dioxide? smelters -14.088143075313386 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (sulphur dioxide, is released by, smelters) -> smelters (12903ms) What is the chemical formula for sulphur dioxide? fireworks -14.098032538897575 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what chemical do sulphur dioxide have ? -> $x: (sulphur dioxide, chemical, $x) -> $x: ($x, release, sulphur dioxide) -> (fireworks, release large quantities of, sulphur dioxide) -> fireworks (12903ms) What is the chemical formula for sulphur dioxide? around 500 tonnes/day -14.111271600143105 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (Sulphur dioxide flux, has risen to, around 500 tonnes/day) -> around 500 tonnes/day (12903ms) What is the chemical formula for sulphur dioxide? the reduction -14.162512892417276 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (UK sulphur dioxide, have occurred largely through, the reduction) -> the reduction (12921ms) What is the chemical formula for sulphur dioxide? health -14.408573697833113 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (Sulphur dioxide, has a direct effect on, health) -> health (12921ms) What is the chemical formula for sulphur dioxide? the wine industry -14.443034459554967 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, use, $x) -> (Sulphur dioxide, is widely used today in, the wine industry) -> the wine industry (13743ms) What is the chemical formula for sulphur dioxide? effect -14.513876621992823 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (sulphur dioxide emissions, have been in, effect) -> effect (12921ms) What is the chemical formula for sulphur dioxide? bleaching -14.545837971431043 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, use, $x) -> (Sulphur dioxide, is used for, bleaching) -> bleaching (13804ms) What is the chemical formula for sulphur dioxide? applications -14.879683854561398 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, have, $x) -> (Sulphur dioxide, has a number of, applications) -> applications (12997ms) What is the chemical formula for sulphur dioxide? toxic -15.239808521602432 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, be, $x) -> (Sulphur Dioxide, is, toxic) -> toxic (12997ms) What is the chemical formula for sulphur dioxide? assemblage -15.258173848749047 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, use, $x) -> (sulphur dioxide, used just at, assemblage) -> assemblage (13962ms) What is the chemical formula for sulphur dioxide? reductions -15.75065307130792 What is the chemical formula for sulphur dioxide? -> what be the chemical formulum for [ sulphur dioxide ] ? -> what be sulphur dioxide s mass ? -> $x: (sulphur dioxide, mass, $x) -> $x: (sulphur dioxide, contribute, $x) -> (sulphur dioxide emissions, contribute to, reductions) -> reductions (13962ms) Where is Venezuela? Maracaibo -0.4804764322558752 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, Maracaibo) -> Maracaibo (3355ms) Where is Venezuela? Caracas -0.5308111214186638 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, Caracas) -> Caracas (3355ms) Where is Venezuela? Moscow -0.6184164865497651 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, would be signed in, Moscow) -> Moscow (3355ms) Where is Venezuela? Countries -1.0236735349725692 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (venezuela, is a country located in the geopolitical location, Countries) -> Countries (3355ms) Where is Venezuela? Miraflores -1.1246454666975618 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, Miraflores) -> Miraflores (3355ms) Where is Venezuela? Britain -1.1657108199639568 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, Britain) -> Britain (3355ms) Where is Venezuela? Bolivars -1.208087726112286 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, Bolivars) -> Bolivars (3518ms) Where is Venezuela? North America -1.2982974321837053 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, North America) -> North America (3517ms) Where is Venezuela? south America -1.7846310119335982 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, south America) -> south America (3517ms) Where is Venezuela? Pool A -1.8920757566462114 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, are in, Pool A) -> Pool A (3518ms) Where is Venezuela? STATES -2.1207353665002087 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (venezuela, is a country located in the geopolitical location, STATES) -> STATES (3518ms) Where is Venezuela? conformity -2.1360565681792814 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, conformity) -> conformity (3517ms) Where is Venezuela? solidarity -2.1425121314087674 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, solidarity) -> solidarity (3568ms) Where is Venezuela? South American Countries -2.1482242470993684 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (venezuela, is a country located in the geopolitical location, South American Countries) -> South American Countries (3567ms) Where is Venezuela? single digits -2.1944524786637505 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, single digits) -> single digits (3567ms) Where is Venezuela? good shape -2.2068312463859874 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, good shape) -> good shape (3567ms) Where is Venezuela? first place -2.2174416413060305 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, first place) -> first place (3567ms) Where is Venezuela? light -2.2231647621551986 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, light) -> light (3567ms) Where is Venezuela? desperate need -2.2510411461660604 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, desperate need) -> desperate need (3610ms) Where is Venezuela? slavery -2.2515236640336096 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, were in, slavery) -> slavery (3610ms) Where is Venezuela? a better situation -2.259141865635275 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, a better situation) -> a better situation (3610ms) Where is Venezuela? fourth place -2.3030836125839143 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, fourth place) -> fourth place (3610ms) Where is Venezuela? a strategic location -2.3311541118561143 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, a strategic location) -> a strategic location (3610ms) Where is Venezuela? recessions -2.3655851854393264 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, are in, recessions) -> recessions (3610ms) Where is Venezuela? need -2.3866807062004405 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, need) -> need (3695ms) Where is Venezuela? Northern South America -2.403650535964786 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, Northern South America) -> Northern South America (3695ms) Where is Venezuela? fact -2.412939631733078 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, fact) -> fact (3695ms) Where is Venezuela? the Perija mountains -2.4204580978173578 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the Perija mountains) -> the Perija mountains (3695ms) Where is Venezuela? second place -2.4463236541418825 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, second place) -> second place (3695ms) Where is Venezuela? a critical situation -2.4478036243378654 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, a critical situation) -> a critical situation (3695ms) Where is Venezuela? oil -2.4553046401343606 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, has been awash in, oil) -> oil (3759ms) Where is Venezuela? a state -2.4626827691572446 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, a state) -> a state (3760ms) Where is Venezuela? the US Congress -2.4906276813332857 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is being prepared in, the US Congress) -> the US Congress (3759ms) Where is Venezuela? the Yellow Fever zone -2.502122262654426 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the Yellow Fever zone) -> the Yellow Fever zone (3760ms) Where is Venezuela? a similar suitation -2.5158868731613158 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, a similar suitation) -> a similar suitation (3759ms) Where is Venezuela? South America -2.626171538495637 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is a country in, South America) -> South America (3760ms) Where is Venezuela? Recently -2.7960808413022695 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, has been in the news, Recently) -> Recently (3811ms) Where is Venezuela? contact -2.9456000211572464 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, contact) -> contact (3811ms) Where is Venezuela? danger -2.9587377589039017 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, danger) -> danger (3811ms) Where is Venezuela? Colombia -2.9603779483030808 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be all in, $x) -> (Venezuela, are all active in, Colombia) -> Colombia (4618ms) Where is Venezuela? shambles -2.9932820984144497 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, shambles) -> shambles (3842ms) Where is Venezuela? line -3.0066096733673344 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, were in, line) -> line (3842ms) Where is Venezuela? discussions -3.032351130730291 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, discussions) -> discussions (3842ms) Where is Venezuela? a mess -3.046134667664461 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, a mess) -> a mess (3842ms) Where is Venezuela? Tripoli -3.090829250267732 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be still in, $x) -> (Venezuela, is still in, Tripoli) -> Tripoli (3903ms) Where is Venezuela? control -3.0940806656968336 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, control) -> control (3903ms) Where is Venezuela? Italy -3.100276159903097 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, also be in, $x) -> (Brazil , Venezuela and Argentina, are also strong in, Italy) -> Italy (4307ms) Where is Venezuela? trouble -3.1016461969182902 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, trouble) -> trouble (3903ms) Where is Venezuela? turmoil -3.1144817845607857 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, turmoil) -> turmoil (3903ms) Where is Venezuela? Havana -3.1771846891585884 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, arrived in, Havana) -> Havana (4090ms) Where is Venezuela? Haiti -3.19758580802254 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, happened in, Haiti) -> Haiti (4090ms) Where is Venezuela? Baghdad -3.2179223060569413 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, gathered in, Baghdad) -> Baghdad (4090ms) Where is Venezuela? the Middle East -3.2294730490159838 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the Middle East) -> the Middle East (4090ms) Where is Venezuela? Barcelona -3.2381942886663815 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, works in, Barcelona) -> Barcelona (4091ms) Where is Venezuela? Quito -3.248869251713681 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, held in, Quito) -> Quito (4185ms) Where is Venezuela? point -3.2606164268515228 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is a case in, point) -> point (4185ms) Where is Venezuela? Latin America -3.2888700940730367 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is the only country in, Latin America) -> Latin America (4185ms) Where is Venezuela? July -3.3848929670412184 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was formally accepted in, July) -> July (4185ms) Where is Venezuela? Cuba -3.417412764873423 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, remains in, Cuba) -> Cuba (4237ms) Where is Venezuela? Puerto Rico -3.576509721635208 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, also be in, $x) -> (Venezuela, is also popular in, Puerto Rico) -> Puerto Rico (4308ms) Where is Venezuela? political turmoil -3.7678197674899803 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, political turmoil) -> political turmoil (4308ms) Where is Venezuela? fifth place -3.7795862926526693 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, fifth place) -> fifth place (4343ms) Where is Venezuela? the 60 meterband -3.7805421247317614 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, are in, the 60 meterband) -> the 60 meterband (4343ms) Where is Venezuela? English -3.788028786715161 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be now in, $x) -> (Venezuela, now am reading in, English) -> English (4539ms) Where is Venezuela? Saudi Arabia -3.820565545599858 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be then in, $x) -> (Venezuela, are larger then those in, Saudi Arabia) -> Saudi Arabia (4576ms) Where is Venezuela? northern South America -3.857463463907936 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is a country in, northern South America) -> northern South America (4343ms) Where is Venezuela? ruins -3.8631833862691956 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, ruins) -> ruins (4343ms) Where is Venezuela? Asuncion -3.8660203905983117 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, met in, Asuncion) -> Asuncion (4372ms) Where is Venezuela? Los Angeles -3.8942708228868765 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, raised in, Los Angeles) -> Los Angeles (4372ms) Where is Venezuela? February -3.920467472226517 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, warned in, February) -> February (4372ms) Where is Venezuela? a state of political turmoil -3.963369094372764 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, a state of political turmoil) -> a state of political turmoil (4428ms) Where is Venezuela? political and social hatred -3.963369094372764 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is boiling in, political and social hatred) -> political and social hatred (4428ms) Where is Venezuela? September -3.9744035805255375 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, starts in, September) -> September (4428ms) Where is Venezuela? the Americas -4.018689273528114 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, only be in, $x) -> (Venezuela, is the only state in, the Americas) -> the Americas (4428ms) Where is Venezuela? the government power -4.029874042294728 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, are in, the government power) -> the government power (4539ms) Where is Venezuela? the midst -4.042137231529782 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the midst) -> the midst (4540ms) Where is Venezuela? the thrall -4.050495075759802 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the thrall) -> the thrall (4539ms) Where is Venezuela? the wings -4.056749001397028 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the wings) -> the wings (4576ms) Where is Venezuela? more than 20 tax treaties -4.058398947976511 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, more than 20 tax treaties) -> more than 20 tax treaties (4576ms) Where is Venezuela? the process -4.0673339154577794 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the process) -> the process (4576ms) Where is Venezuela? the provision -4.07178038102485 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the provision) -> the provision (4576ms) Where is Venezuela? the semifinals -4.088580133454864 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the semifinals) -> the semifinals (4577ms) Where is Venezuela? the grip -4.127912228606901 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the grip) -> the grip (4618ms) Where is Venezuela? the southern state -4.135977780685986 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the southern state) -> the southern state (4618ms) Where is Venezuela? the middle -4.183189290524982 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the middle) -> the middle (4683ms) Where is Venezuela? the region -4.193407433652023 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, the region) -> the region (4682ms) Where is Venezuela? the energy sector -4.203176790406045 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, the energy sector) -> the energy sector (4682ms) Where is Venezuela? the crapper -4.207882257842201 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, the crapper) -> the crapper (4682ms) Where is Venezuela? the throes -4.228283376706152 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, the throes) -> the throes (4682ms) Where is Venezuela? the interests -4.285407179753926 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is being run in, the interests) -> the interests (4718ms) Where is Venezuela? talks -4.4756415966045 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is in, talks) -> talks (4745ms) Where is Venezuela? progress -4.560180215196898 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is a work in, progress) -> progress (4796ms) Where is Venezuela? an international pageant -4.57380689127649 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, joined in, an international pageant) -> an international pageant (4797ms) Where is Venezuela? political limbo -4.575914452883151 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, would be in, $x) -> (Venezuela, would be in, political limbo) -> political limbo (4797ms) Where is Venezuela? any danger -4.665810108969874 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be nt in, $x) -> (Venezuela, is n?t in, any danger) -> any danger (4910ms) Where is Venezuela? a news conference -4.670248989276057 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, highlighted in, a news conference) -> a news conference (4910ms) Where is Venezuela? editorials -4.717277986854089 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be often in, $x) -> (Venezuela, was often found in, editorials) -> editorials (4910ms) Where is Venezuela? critical condition -4.724334449173315 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be now in, $x) -> (Venezuela, is now in, critical condition) -> critical condition (4938ms) Where is Venezuela? the 2010 Great Place -4.724771499377173 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, has been included in, the 2010 Great Place) -> the 2010 Great Place (4937ms) Where is Venezuela? the Senate hearings -4.770592079549372 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be all in, $x) -> (Venezuela, is all reported in, the Senate hearings) -> the Senate hearings (4937ms) Where is Venezuela? second position -4.773143613026381 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, remained in, second position) -> second position (4937ms) Where is Venezuela? the Caribbean port city -4.796197291093622 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, established in, the Caribbean port city) -> the Caribbean port city (4970ms) Where is Venezuela? a very early morning -4.822723252042584 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, resulted in, a very early morning) -> a very early morning (4970ms) Where is Venezuela? Ch?vez -4.826516544364228 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have be since, $x) -> (Venezuela, have been shrinking fast since, Ch?vez) -> Ch?vez (5460ms) Where is Venezuela? tenth spot -4.831500653330884 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, falls in, tenth spot) -> tenth spot (5082ms) Where is Venezuela? the Report -4.835986206165917 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, contained in, the Report) -> the Report (5082ms) Where is Venezuela? a political crisis -4.842356196803459 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be currently in, $x) -> (Venezuela, is also currently embroiled in, a political crisis) -> a political crisis (5108ms) Where is Venezuela? Spanish hands -4.869701776026262 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be still in, $x) -> (Venezuela and Ecuador, are still securely in, Spanish hands) -> Spanish hands (5108ms) Where is Venezuela? June -4.88687007253915 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, joined in, June) -> June (5108ms) Where is Venezuela? Italy and Paris -4.902793016795268 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, lived in, Italy and Paris) -> Italy and Paris (5141ms) Where is Venezuela? force -4.911688630806282 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, would be in, $x) -> (Bolivia and Venezuela, would still be in, force) -> force (5141ms) Where is Venezuela? the Seminar -4.91910083461719 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, participated in, the Seminar) -> the Seminar (5164ms) Where is Venezuela? jail -4.922821566128298 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be now in, $x) -> (Venezuela, is now in, jail) -> jail (5164ms) Where is Venezuela? the U.S. -4.925033755683689 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, also be in, $x) -> (Venezuela, are also seen in, the U.S.) -> the U.S. (5165ms) Where is Venezuela? an unseemly tug-of-war -4.939538463782462 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be now in, $x) -> (Venezuela, are now engaged in, an unseemly tug-of-war) -> an unseemly tug-of-war (5165ms) Where is Venezuela? international forums -4.967932049879534 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, also be in, $x) -> (Venezuela, also was active in, international forums) -> international forums (5278ms) Where is Venezuela? low-A ball -4.973137968642491 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be all in, $x) -> (Venezuela, was a first-half all-star in, low-A ball) -> low-A ball (5278ms) Where is Venezuela? a more vulnerable position -4.974906341444684 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be now in, $x) -> (Venezuela, is now in, a more vulnerable position) -> a more vulnerable position (5279ms) Where is Venezuela? small rocks -4.980226499125298 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be often in, $x) -> (Venezuela?s Amazon jungle, is often found in, small rocks) -> small rocks (5279ms) Where is Venezuela? particular -5.004885103863593 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, headed in, particular) -> particular (5340ms) Where is Venezuela? a very good position -5.0402724102352945 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be now in, $x) -> (Venezuela, is now in, a very good position) -> a very good position (5341ms) Where is Venezuela? recession -5.04218825864289 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be still in, $x) -> (Venezuela, is still in, recession) -> recession (5341ms) Where is Venezuela? the United Nations -5.072479258594904 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, passed in, the United Nations) -> the United Nations (5340ms) Where is Venezuela? a painful economic crisis -5.108499729182701 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be now in, $x) -> (Venezuela, is now mired in, a painful economic crisis) -> a painful economic crisis (5388ms) Where is Venezuela? the north of South America -5.223305720427524 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is located in, the north of South America) -> the north of South America (5460ms) Where is Venezuela? Syria -5.2493902910764065 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, shipping, $x) -> (Venezuela, has shipped fuel to, Syria) -> Syria (5460ms) Where is Venezuela? 2004 -5.349139244691232 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, was in, 2004) -> 2004 (5484ms) Where is Venezuela? projects -5.378764241895472 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, also be in, $x) -> (Venezuela, is also investing in, projects) -> projects (5484ms) Where is Venezuela? a year -5.394553639759182 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, would be in, $x) -> (Venezuela, would be in, a year) -> a year (5485ms) Where is Venezuela? Iran -5.4203928666071155 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, shipping, $x) -> (Bolivia and Venezuela, is being shipped to, Iran) -> Iran (5506ms) Where is Venezuela? news -5.431049555805797 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, mentions in, news) -> news (5507ms) Where is Venezuela? possession -5.441969686090886 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be always in, $x) -> (Venezuela, has always been in, possession) -> possession (5571ms) Where is Venezuela? a report -5.4646239709291935 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be ever in, $x) -> (Venezuela, has ever been mentioned in, a report) -> a report (5571ms) Where is Venezuela? Russia -5.494438302694533 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, has recently bought from, Russia) -> Russia (5597ms) Where is Venezuela? power -5.503785156374572 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be still in, $x) -> (Venezuela, is still in, power) -> power (5597ms) Where is Venezuela? Libya -5.520080024540104 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, talk in, $x) -> (Venezuela, held talks in, Libya) -> Libya (5812ms) Where is Venezuela? a change -5.562604279750159 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, resulted in, a change) -> a change (5812ms) Where is Venezuela? Brazil -5.569469879052374 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, has regional support from, Brazil) -> Brazil (6080ms) Where is Venezuela? fifth -5.596394520902654 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, finished in, fifth) -> fifth (6081ms) Where is Venezuela? mid September -5.6242339918628 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, returned in, mid September) -> mid September (6081ms) Where is Venezuela? numbers -5.629109839361587 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, defended in, numbers) -> numbers (6081ms) Where is Venezuela? records -5.641488607083824 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, listed in, records) -> records (6299ms) Where is Venezuela? discounted heating oil -5.649846500950645 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, in providing, discounted heating oil) -> discounted heating oil (6299ms) Where is Venezuela? second -5.690054923444419 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, came in, second) -> second (6337ms) Where is Venezuela? the news -5.690164649018165 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, has been in, the news) -> the news (6337ms) Where is Venezuela? the tropics -5.749723890316345 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is entirely situated in, the tropics) -> the tropics (6389ms) Where is Venezuela? the global oil market -5.7629367424478755 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> (Venezuela, is an important player in, the global oil market) -> the global oil market (6391ms) Where is Venezuela? terms -5.784829727070369 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, also be in, $x) -> (Venezuela, is also a regional leader in, terms) -> terms (6391ms) Where is Venezuela? the United States -5.793182655096079 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be currently in, $x) -> (Venezuela, am currently living in, the United States) -> the United States (6391ms) Where is Venezuela? Friday -5.798742041219727 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have be since, $x) -> (Venezuela helicopters, have been waiting since, Friday) -> Friday (6722ms) Where is Venezuela? the Western Hemisphere -5.865766390624008 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, only be in, $x) -> (Venezuela, is the only net creditor in, the Western Hemisphere) -> the Western Hemisphere (6748ms) Where is Venezuela? chemical pollution -6.078506774121333 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, be there from, $x) -> (Venezuela, there are moderate impacts from, chemical pollution) -> chemical pollution (6879ms) Where is Venezuela? illiteracy -6.116325688438909 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have be from, $x) -> (Venezuela, has been freed from, illiteracy) -> illiteracy (6879ms) Where is Venezuela? different agencies -6.180189475102518 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have be from, $x) -> (Venezuela, has been receiving money from, different agencies) -> different agencies (6951ms) Where is Venezuela? a ton -6.268996393909639 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, shipping, $x) -> (Venezuela, shipped, a ton) -> a ton (6977ms) Where is Venezuela? a nuclear reactor -6.274071236448638 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, in purchasing, a nuclear reactor) -> a nuclear reactor (6977ms) Where is Venezuela? more than 30 countries -6.3914301309913775 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be now in, $x) -> (Venezuela campaign, is now active in, more than 30 countries) -> more than 30 countries (7052ms) Where is Venezuela? 50 countries -6.394082690194667 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be almost in, $x) -> (Venezuela ! ? campaign, is organized in almost, 50 countries) -> 50 countries (7052ms) Where is Venezuela? Dave Navarro -6.398908860514723 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, name of, $x) -> (Miss Venezuela, picks the name of, Dave Navarro) -> Dave Navarro (7078ms) Where is Venezuela? the aftermath -6.446221821619423 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, faced in, the aftermath) -> the aftermath (7107ms) Where is Venezuela? the market -6.450589743338666 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, might be in, $x) -> (Venezuela, might be in, the market) -> the market (7107ms) Where is Venezuela? Bolivia due -6.484120181460068 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, shipping, $x) -> (Venezuela, was being shipped to, Bolivia due) -> Bolivia due (7133ms) Where is Venezuela? tens -6.490546587865297 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, shipping, $x) -> (Venezuela, had been shipping, tens) -> tens (7133ms) Where is Venezuela? the lush valleys -6.514369585867835 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, flourished in, the lush valleys) -> the lush valleys (7273ms) Where is Venezuela? the post-War era -6.522327368882294 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, experienced in, the post-War era) -> the post-War era (7273ms) Where is Venezuela? the hands -6.537294180382859 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, 's in, the hands) -> the hands (7274ms) Where is Venezuela? Gran Colombia -6.564318446441131 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela and Ecuador, had seceded from, Gran Colombia) -> Gran Colombia (7372ms) Where is Venezuela? the cross-hairs -6.587211702810029 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, also be in, $x) -> (Iran and Venezuela, are also in, the cross-hairs) -> the cross-hairs (7442ms) Where is Venezuela? the park -6.627546920872456 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, installed in, the park) -> the park (7466ms) Where is Venezuela? the country -6.636569523415583 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be now in, $x) -> (Venezuela?s gold reserves, are now held in, the country) -> the country (7504ms) Where is Venezuela? financial institutions -6.650085634095693 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, have come from, financial institutions) -> financial institutions (7504ms) Where is Venezuela? the course -6.651420269915834 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, participated in, the course) -> the course (7504ms) Where is Venezuela? the fields -6.664863804464443 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be already in, $x) -> (Venezuela and Colombia, were already cash-buying in, the fields) -> the fields (7585ms) Where is Venezuela? the project -6.70280479203555 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, also be in, $x) -> (Venezuela, will also be involved in, the project) -> the project (7679ms) Where is Venezuela? the eyes -6.708209268192635 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be too in, $x) -> (Venezuela, was too boring in, the eyes) -> the eyes (7679ms) Where is Venezuela? the congress -6.721472222315969 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, also be in, $x) -> (Venezuela, were also present in, the congress) -> the congress (7679ms) Where is Venezuela? the fight -6.72500902062265 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be firmly in, $x) -> (Venezuela, is firmly committed in, the fight) -> the fight (7679ms) Where is Venezuela? the air -6.72846150045286 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be still in, $x) -> (Venezuela, is still very much up in, the air) -> the air (7679ms) Where is Venezuela? the movement -6.753283604024589 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be deeply in, $x) -> (Venezuela, has been very deeply embedded in, the movement) -> the movement (7716ms) Where is Venezuela? the worse position -6.758608578184974 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be certainly in, $x) -> (Venezuela, is certainly in, the worse position) -> the worse position (7716ms) Where is Venezuela? the top twenty -6.760111999383124 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, ranked in, the top twenty) -> the top twenty (7716ms) Where is Venezuela? the amber zone -6.767058295807527 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, also be in, $x) -> (Venezuela, is also in, the amber zone) -> the amber zone (7716ms) Where is Venezuela? the line -6.8010500524605595 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, also be in, $x) -> (Venezuela, is also found in, the line) -> the line (7716ms) Where is Venezuela? the second round -6.808908530426807 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be now in, $x) -> (Venezuela, is now 3-3 in, the second round) -> the second round (7779ms) Where is Venezuela? the side -6.847892761094707 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be now in, $x) -> (Venezuela, is now a major thorn in, the side) -> the side (7779ms) Where is Venezuela? the parliamentary front -6.862039954321432 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, also be in, $x) -> (Venezuela, has also been busy in, the parliamentary front) -> the parliamentary front (7864ms) Where is Venezuela? oil sales -6.87547256974697 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, make money from, $x) -> (Venezuela, makes enough money from, oil sales) -> oil sales (7864ms) Where is Venezuela? the group -6.885833748665814 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be currently in, $x) -> (Venezuela, is currently seeking membership in, the group) -> the group (7864ms) Where is Venezuela? 1991 and 1996 -6.904740241334908 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, issued in, 1991 and 1996) -> 1991 and 1996 (7910ms) Where is Venezuela? two million barrels -6.905474680753191 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, shipping, $x) -> (Venezuela, has begun to ship, two million barrels) -> two million barrels (7910ms) Where is Venezuela? any outside group -6.926820634267662 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, had received financing from, any outside group) -> any outside group (7910ms) Where is Venezuela? a previous marriage -6.9577675272221065 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, has a few children from, a previous marriage) -> a previous marriage (7910ms) Where is Venezuela? high prices -6.9913670847844305 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, has much to gain from, high prices) -> high prices (8105ms) Where is Venezuela? Ch?vez supporters -7.070944862226726 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, has received much criticism from, Ch?vez supporters) -> Ch?vez supporters (8105ms) Where is Venezuela? a financial windfall -7.08155525714677 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, has benefited from, a financial windfall) -> a financial windfall (8105ms) Where is Venezuela? a friendly America -7.121706970572648 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, has more to gain from, a friendly America) -> a friendly America (8135ms) Where is Venezuela? an average -7.127141277936033 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, shipping, $x) -> (Venezuela, shipped, an average) -> an average (8135ms) Where is Venezuela? December 1999 -7.140885635288056 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, suffered in, December 1999) -> December 1999 (8135ms) Where is Venezuela? April 2002 -7.143732180153906 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, failed in, April 2002) -> April 2002 (8135ms) Where is Venezuela? three percent -7.1637856464946505 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, has increased from just, three percent) -> three percent (8264ms) Where is Venezuela? the Portuguese word -7.1743959887124 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, may have derived from, the Portuguese word) -> the Portuguese word (8264ms) Where is Venezuela? Church influence -7.222142686799154 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, have benefited from, Church influence) -> Church influence (8294ms) Where is Venezuela? a chain -7.244396085681899 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, name of, $x) -> (Venezuela, is the new name of, a chain) -> a chain (8294ms) Where is Venezuela? 2010 -7.698167152067176 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, continued in, 2010) -> 2010 (11031ms) Where is Venezuela? 2008 -7.806229877461371 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, launched in, 2008) -> 2008 (12513ms) Where is Venezuela? 2005 -7.839894003150951 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, said in, 2005) -> 2005 (12711ms) Where is Venezuela? a lack -7.841280848280653 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, has suffered from, a lack) -> a lack (12711ms) Where is Venezuela? 1979 -7.906700761078008 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, won in, 1979) -> 1979 (13043ms) Where is Venezuela? more fuel -7.925750202326394 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, shipping, $x) -> (Venezuela, to ship, more fuel) -> more fuel (13043ms) Where is Venezuela? 1976 -7.98124798808864 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (Venezuela, be actually in, $x) -> (Venezuela, was actually nationalized in, 1976) -> 1976 (13239ms) Where is Venezuela? the list -7.984872683693514 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have be from, $x) -> (Libya and Venezuela, had been dropped from, the list) -> the list (13239ms) Where is Venezuela? the National Endowment -7.993491920637634 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, have received from, the National Endowment) -> the National Endowment (13239ms) Where is Venezuela? 364,000 barrels -8.003216932208899 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, shipping, $x) -> (Venezuela, is shipping, 364,000 barrels) -> 364,000 barrels (13239ms) Where is Venezuela? the mid-20th century -8.149439167279331 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, began in, the mid-20th century) -> the mid-20th century (13409ms) Where is Venezuela? 100,000 bbl/day -8.379224057402475 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, shipping, $x) -> (Michael Lynch Venezuela, will ship, 100,000 bbl/day) -> 100,000 bbl/day (13471ms) Where is Venezuela? domestic shortfalls -8.490162576349242 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, shipping, $x) -> (Venezuela, will ship oil to meet, domestic shortfalls) -> domestic shortfalls (13707ms) Where is Venezuela? 8 to 15 percent -8.538016866635779 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, has ranged from, 8 to 15 percent) -> 8 to 15 percent (13707ms) Where is Venezuela? August 2004 -8.592961015418108 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have be since, $x) -> (Venezuela, has been relatively calm since, August 2004) -> August 2004 (13707ms) Where is Venezuela? 8.4 % -8.611150104240107 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, has grown from just, 8.4 %) -> 8.4 % (13707ms) Where is Venezuela? 1.32 million barrels -8.63753894302177 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, shipping, $x) -> (Venezuela, shipped, 1.32 million barrels) -> 1.32 million barrels (13857ms) Where is Venezuela? 3.1 million barrels -8.640583806720358 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela?s oil exports, have declined from, 3.1 million barrels) -> 3.1 million barrels (13857ms) Where is Venezuela? 13 to 20 -8.649917710744006 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, has expanded from, 13 to 20) -> 13 to 20 (13857ms) Where is Venezuela? 800 -8.674183311580386 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, has increased from about, 800) -> 800 (13857ms) Where is Venezuela? 3-1 down -8.682960712868686 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, had come back from, 3-1 down) -> 3-1 down (13857ms) Where is Venezuela? the native word -8.69365892821756 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have from, $x) -> (Venezuela, may have evolved from, the native word) -> the native word (13857ms) Where is Venezuela? the heavy Trades -8.800219486529077 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, bash, $x) -> (Venezuela or Trinidad, then bash into, the heavy Trades) -> the heavy Trades (14174ms) Where is Venezuela? the late 1950s -8.851187927804233 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, arose in, the late 1950s) -> the late 1950s (14174ms) Where is Venezuela? the year 1937 -8.898721576055593 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> (Venezuela, decreed in, the year 1937) -> the year 1937 (14265ms) Where is Venezuela? Venezuela -8.907614450487545 Where is Venezuela? -> where be [ venezuelum ] ? -> what be venezuelum s location ? -> $x: (venezuelum, location, $x) -> (Venezuela men's national volleyball team, Sports Team Location, Venezuela) -> Venezuela (17459ms) Where is Venezuela? 2006 -9.16347744367923 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, have be since, $x) -> (Venezuela, has been included since, 2006) -> 2006 (19149ms) Where is Venezuela? October 12 Columbus Day -9.187510110907432 Where is Venezuela? -> $x: (Venezuela, is in, $x) -> $x: (venezuelum, in, $x) -> $x: (venezuelum, name of, $x) -> (Venezuela, have changed the name of, October 12 Columbus Day) -> October 12 Columbus Day (19149ms) Who developed potlatch? the Floss -11.909661141720475 Who developed potlatch? -> who develop [ potlatch ] ? -> what be potlatch create ? -> $x: (potlatch, create, $x) -> (The Potlatch dentist, created, the Floss) -> the Floss (5163ms) Who developed potlatch? the animals -14.324874586228214 Who developed potlatch? -> who develop [ potlatch ] ? -> who invite potlatch ? -> $x: ($x, invite, potlatch) -> (the animals, were invited to, Raven?s Potlatch) -> the animals (8990ms) Who developed potlatch? Canada -14.967938086510578 Who developed potlatch? -> who develop [ potlatch ] ? -> what state be potlatch make in ? -> $x: ($x, instance of, state) (potlatch, make in, $x) -> (Canada, Instance Of, state) (Potlatching, was made illegal in, Canada) -> Canada (9984ms) Who was the first Triple Crown Winner? Sir Barton -6.844627237613594 Who was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who become the first triple crown winner ? -> $x: ($x, become, the first triple crown winner) -> (Sir Barton, became, the first Triple Crown winner) -> Sir Barton (3175ms) Who was the first Triple Crown Winner? Big Country -6.926591170104114 Who was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who become the first triple crown winner ? -> $x: ($x, become, the first triple crown winner) -> (Big Country, would become, the first Triple Crown winner) -> Big Country (3175ms) Who was the first Triple Crown Winner? Smarty Jones -6.97260184790684 Who was the first Triple Crown Winner? -> who be [ the first triple crown ] winner ? -> who win the first triple crown ? -> $x: ($x, win, the first triple crown) -> (Smarty Jones, won, the first two Triple Crown races) -> Smarty Jones (4079ms) Who was the first Triple Crown Winner? Scott Frost -7.286184689729099 Who was the first Triple Crown Winner? -> who be [ the first triple crown ] winner ? -> who win the first triple crown ? -> $x: ($x, win, the first triple crown) -> (Scott Frost, won, the first Triple Crown) -> Scott Frost (4079ms) Who was the first Triple Crown Winner? he?ll -7.444887242196669 Who was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who become the first triple crown winner ? -> $x: ($x, become, the first triple crown winner) -> (he?ll, try to become, the first Triple Crown winner) -> he?ll (3175ms) Who was the first Triple Crown Winner? Big Brown -7.58869461365065 Who was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who become the first triple crown winner ? -> $x: ($x, become, the first triple crown winner) -> (Big Brown, attempts to become, the first Triple Crown winner) -> Big Brown (3175ms) Who was the first Triple Crown Winner? SWA -8.254610223249244 Who was the first Triple Crown Winner? -> who be [ the first triple crown ] winner ? -> who win the first triple crown ? -> $x: ($x, win, the first triple crown) -> (SWA, wins, the first Triple Crown) -> SWA (4079ms) Who was the first Triple Crown Winner? Secretariat -8.620988727073467 Who was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who become the first triple crown winner ? -> $x: ($x, become, the first triple crown winner) -> (Secretariat, became, the first Triple Crown winner) -> Secretariat (3175ms) Who was the first Triple Crown Winner? Mickey Mantle -8.80442921504045 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Mickey Mantle, won, the Triple Crown) -> Mickey Mantle (3908ms) Who was the first Triple Crown Winner? Steve Cauthen -8.852483374743791 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Steve Cauthen, won, the Triple Crown) -> Steve Cauthen (3908ms) Who was the first Triple Crown Winner? racing great -8.854363998427774 Who was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who be triple crown winner 2 ? -> $x: (triple crown winner, instance of, $x) -> (Triple Crown winners Gallant Fox, Instance Of, racing great) -> racing great (4777ms) Who was the first Triple Crown Winner? Rogers Hornsby -8.85970627695853 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Rogers Hornsby, wins, the Triple Crown) -> Rogers Hornsby (3908ms) Who was the first Triple Crown Winner? Albert Pujols -8.867299209801613 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Albert Pujols, winning, the Triple Crown) -> Albert Pujols (3908ms) Who was the first Triple Crown Winner? Chuck Klein -8.872884493607742 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Chuck Klein, won, the Triple Crown) -> Chuck Klein (3908ms) Who was the first Triple Crown Winner? legendary horse -8.89930468938326 Who was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who be triple crown winner 2 ? -> $x: (triple crown winner, instance of, $x) -> (Triple Crown winners Citation, Instance Of, legendary horse) -> legendary horse (4776ms) Who was the first Triple Crown Winner? renowned horse -8.917206197221 Who was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who be triple crown winner 2 ? -> $x: (triple crown winner, instance of, $x) -> (1973 Triple Crown winner Secretariat, Instance Of, renowned horse) -> renowned horse (4776ms) Who was the first Triple Crown Winner? Kemp -9.060485761079274 Who was the first Triple Crown Winner? -> who be [ the first triple crown ] winner ? -> who win the first triple crown ? -> $x: ($x, win, the first triple crown) -> (Kemp, came close to winning, the first Triple Crown) -> Kemp (4079ms) Who was the first Triple Crown Winner? each age group -9.204337511181354 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (each age group, wins, the Triple Crown Cup) -> each age group (3908ms) Who was the first Triple Crown Winner? a Hawaiian -9.240052473340846 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (a Hawaiian, won, the Hawaiian Triple Crown) -> a Hawaiian (3908ms) Who was the first Triple Crown Winner? 19-12 -9.247239131718265 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (19-12, win, the Triple Crown) -> 19-12 (3973ms) Who was the first Triple Crown Winner? Windsor Lad -9.268585365784396 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Windsor Lad, won, the Irish Triple Crown) -> Windsor Lad (3973ms) Who was the first Triple Crown Winner? Charismatic -9.321858810441368 Who was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who become the first triple crown winner ? -> $x: ($x, become, the first triple crown winner) -> (Charismatic, was poised to become, the first Triple Crown winner) -> Charismatic (3973ms) Who was the first Triple Crown Winner? Ted Williams -9.358241692238552 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Ted Williams, won, the Triple Crown) -> Ted Williams (3973ms) Who was the first Triple Crown Winner? Lou Gehrig -9.38781638406164 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Lou Gehrig, won, the Triple Crown) -> Lou Gehrig (3973ms) Who was the first Triple Crown Winner? Gannon Volk -9.40445944800269 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Gannon Volk, wins, Triple Crown) -> Gannon Volk (3972ms) Who was the first Triple Crown Winner? Sadie -9.41985580824585 Who was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who become the first triple crown winner ? -> $x: ($x, become, the first triple crown winner) -> (Sadie, became, the first Triple Crown winner) -> Sadie (4079ms) Who was the first Triple Crown Winner? Joe Medwick -9.433919873020585 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Joe Medwick, won, the Triple Crown) -> Joe Medwick (4079ms) Who was the first Triple Crown Winner? Super Saver -9.504332131320474 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Super Saver, wins, the Triple Crown) -> Super Saver (4079ms) Who was the first Triple Crown Winner? Pujols -9.523530880822982 Who was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who become the first triple crown winner ? -> $x: ($x, become, the first triple crown winner) -> (Pujols, could become, the first NL Triple Crown winner) -> Pujols (4102ms) Who was the first Triple Crown Winner? Twickenham see Wales -9.530646277796302 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Twickenham see Wales, win, Triple Crown |) -> Twickenham see Wales (4102ms) Who was the first Triple Crown Winner? Jake Cody -9.572559278027407 Who was the first Triple Crown Winner? -> who be [ the first triple crown ] winner ? -> who have win the first triple crown ? -> $x: ($x, have win, the first triple crown) -> $x: ($x, win, first triple crown) -> (Jake Cody, wins, his first poker Triple Crown) -> Jake Cody (4776ms) Who was the first Triple Crown Winner? state park system -9.575936108105992 Who was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who be triple crown winner 2 ? -> $x: (triple crown winner, instance of, $x) -> (popular prints of Triple Crown winner, Instance Of, state park system) -> state park system (4829ms) Who was the first Triple Crown Winner? Trevor -9.606317825608507 Who was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who become the first triple crown winner ? -> $x: ($x, become, the first triple crown winner) -> (Trevor, would become, the first multiple Triple Crown winner) -> Trevor (4102ms) Who was the first Triple Crown Winner? behold Hansel -9.65883264136595 Who was the first Triple Crown Winner? -> who be [ the first triple crown ] winner ? -> who have win the first triple crown ? -> $x: ($x, have win, the first triple crown) -> $x: ($x, win, first triple crown) -> (behold Hansel, wins, my first Triple Crown race) -> behold Hansel (4829ms) Who was the first Triple Crown Winner? Seattle Slew -9.72282560573535 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Seattle Slew, won, the Triple Crown) -> Seattle Slew (4102ms) Who was the first Triple Crown Winner? T-ara -9.728279294089031 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (T-ara, won, the ?triple crown ?) -> T-ara (4103ms) Who was the first Triple Crown Winner? Barbaro -9.74307548824676 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Barbaro, win, the Triple Crown) -> Barbaro (4102ms) Who was the first Triple Crown Winner? John John -9.747330512778293 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (John John, has won, Triple Crown?) -> John John (4102ms) Who was the first Triple Crown Winner? time and Wales -9.76173556941751 Who was the first Triple Crown Winner? -> who be [ the first triple crown ] winner ? -> who have win the first triple crown ? -> $x: ($x, have win, the first triple crown) -> $x: ($x, win, first triple crown) -> (time and Wales, had won, their first Triple Crown) -> time and Wales (4829ms) Who was the first Triple Crown Winner? Jewett and Barnes -9.775141805774687 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Jewett and Barnes, won, triple crowns) -> Jewett and Barnes (4102ms) Who was the first Triple Crown Winner? any horse -9.804556705058094 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (any horse, won, the Triple Crown) -> any horse (4128ms) Who was the first Triple Crown Winner? a horse -9.846060058248748 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (a horse, won, the Triple Crown) -> a horse (4128ms) Who was the first Triple Crown Winner? Shafter V. Shoemaker -9.854420183279448 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Shafter V. Shoemaker, won, 11 Triple Crown races) -> Shafter V. Shoemaker (4128ms) Who was the first Triple Crown Winner? champion -9.949284734210018 Who was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who be triple crown winner 2 ? -> $x: (triple crown winner, instance of, $x) -> (Eleventh winner of the Triple Crown Affirmed, Instance Of, champion) -> champion (4830ms) Who was the first Triple Crown Winner? Only Yastrzemski , Robinson , and Mantle -9.96609042910906 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Only Yastrzemski , Robinson , and Mantle, won, Triple Crowns) -> Only Yastrzemski , Robinson , and Mantle (4128ms) Who was the first Triple Crown Winner? a jockey -9.970583897029604 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (a jockey, won, the Triple Crown) -> a jockey (4128ms) Who was the first Triple Crown Winner? a racehorse -9.990985015893555 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (a racehorse, won, the Triple Crown) -> a racehorse (4128ms) Who was the first Triple Crown Winner? trainer -9.993652758710258 Who was the first Triple Crown Winner? -> who be [ the first triple crown ] winner ? -> who have win the first triple crown ? -> $x: ($x, have win, the first triple crown) -> $x: ($x, win, first triple crown) -> (trainer, won, his first Triple Crown race) -> trainer (4830ms) Who was the first Triple Crown Winner? Ty Cobb -9.993963847188374 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Ty Cobb, won, the Triple Crown) -> Ty Cobb (4128ms) Who was the first Triple Crown Winner? Yaz -10.018373397387636 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Yaz, won, the Triple Crown) -> Yaz (4188ms) Who was the first Triple Crown Winner? charset=UTF-8 120322 Big Bang -10.07060664207587 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (charset=UTF-8 120322 Big Bang, wins, triple crown) -> charset=UTF-8 120322 Big Bang (4188ms) Who was the first Triple Crown Winner? 1919 -10.106132885671437 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who be the first winner of triple crown ? -> $x: ($x, be the first winner of, triple crown) -> $x: ($x, first winner of, triple crown) -> (1919, became the first winner of, the American Triple Crown) -> 1919 (4188ms) Who was the first Triple Crown Winner? The 31-length victory -10.114110155193835 Who was the first Triple Crown Winner? -> who be [ the first triple crown ] winner ? -> who have win the first triple crown ? -> $x: ($x, have win, the first triple crown) -> $x: ($x, clinch, the first triple crown) -> (The 31-length victory, clinched, the first Triple Crown) -> The 31-length victory (7569ms) Who was the first Triple Crown Winner? category -10.119101098940844 Who was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who be triple crown winner 2 ? -> $x: (triple crown winner, instance of, $x) -> (Triple Crown winner, Instance Of, category) -> category (4830ms) Who was the first Triple Crown Winner? rarity -10.160262840027514 Who was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who be triple crown winner 2 ? -> $x: (triple crown winner, instance of, $x) -> (Triple Crown winner, Instance Of, rarity) -> rarity (4853ms) Who was the first Triple Crown Winner? gift -10.164992095010563 Who was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who be triple crown winner 2 ? -> $x: (triple crown winner, instance of, $x) -> (Triple Crown winner, Instance Of, gift) -> gift (4853ms) Who was the first Triple Crown Winner? Don -10.178217126991493 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Don, won, the Triple Crown award) -> Don (4188ms) Who was the first Triple Crown Winner? horse -10.190529994361203 Who was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who be triple crown winner 2 ? -> $x: (triple crown winner, instance of, $x) -> (Triple Crown winner Affirmed, Instance Of, horse) -> horse (4853ms) Who was the first Triple Crown Winner? player -10.192149737092674 Who was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who be triple crown winner 2 ? -> $x: (triple crown winner, instance of, $x) -> (batting triple crown winner, Instance Of, player) -> player (4853ms) Who was the first Triple Crown Winner? Carl Yastrzemski -10.200510890415803 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Carl Yastrzemski, wins, the Triple Crown) -> Carl Yastrzemski (4188ms) Who was the first Triple Crown Winner? sweetie -10.212129836831526 Who was the first Triple Crown Winner? -> who be the first [ triple crown winner ] ? -> who be triple crown winner 2 ? -> $x: (triple crown winner, instance of, $x) -> (Triple Crown winner Affirmed, Instance Of, sweetie) -> sweetie (4854ms) Who was the first Triple Crown Winner? Hank Aaron -10.251807876412947 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Hank Aaron, won, the Triple Crown) -> Hank Aaron (4188ms) Who was the first Triple Crown Winner? Ireland scoring -10.286936423127116 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Ireland scoring, won, 3 triple crowns) -> Ireland scoring (4188ms) Who was the first Triple Crown Winner? Wales -10.297091787855969 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Wales, win, Triple Crown) -> Wales (4276ms) Who was the first Triple Crown Winner? the horses -10.341645810006058 Who was the first Triple Crown Winner? -> who be [ the first triple crown ] winner ? -> who have win the first triple crown ? -> $x: ($x, have win, the first triple crown) -> (the horses, have won, the first two legs of the Triple Crown) -> the horses (4276ms) Who was the first Triple Crown Winner? hes -10.407872422231698 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (hes, winning, the Triple Crown) -> hes (4275ms) Who was the first Triple Crown Winner? any team -10.416690111150093 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (any team, wins, the triple crown) -> any team (4275ms) Who was the first Triple Crown Winner? Big Red -10.488509561734022 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Big Red, won, the Triple Crown) -> Big Red (4276ms) Who was the first Triple Crown Winner? Citation -10.509656078901624 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Citation, won, the Triple Crown) -> Citation (4275ms) Who was the first Triple Crown Winner? Big Bang -10.510318139935052 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Big Bang, win, a Triple Crown) -> Big Bang (4276ms) Who was the first Triple Crown Winner? A player -10.604253832410278 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (A player, wins, the Triple Crown) -> A player (4301ms) Who was the first Triple Crown Winner? Sande -10.613361925802476 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Sande, won, the 1930 Triple Crown) -> Sande (4301ms) Who was the first Triple Crown Winner? The Welsh team -10.642272748725274 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (The Welsh team, won, the Triple Crown) -> The Welsh team (4301ms) Who was the first Triple Crown Winner? 2005 Mark Long -10.698167568062269 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (2005 Mark Long, won, the Triple Butt Crown) -> 2005 Mark Long (4301ms) Who was the first Triple Crown Winner? a super horse -10.717359414995077 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (a super horse, won, the Triple Crown) -> a super horse (4301ms) Who was the first Triple Crown Winner? a famous racehorse -10.717359414995077 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (a famous racehorse, won, the Triple Crown) -> a famous racehorse (4301ms) Who was the first Triple Crown Winner? Fisk -10.72399368803998 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Fisk, won, the Triple Crown) -> Fisk (4301ms) Who was the first Triple Crown Winner? Bell -10.740749178358337 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Bell, won, the Triple Crown) -> Bell (4301ms) Who was the first Triple Crown Winner? Foxx -10.747745724216594 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Foxx, won, the triple crown) -> Foxx (4479ms) Who was the first Triple Crown Winner? Ruth -10.747745724216594 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Ruth, won, the triple crown) -> Ruth (4479ms) Who was the first Triple Crown Winner? Paul Hines -10.887768833254075 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Paul Hines, won, the Triple Crown) -> Paul Hines (4479ms) Who was the first Triple Crown Winner? Pletcher -10.939559321785868 Who was the first Triple Crown Winner? -> who be [ the first triple crown ] winner ? -> who have win the first triple crown ? -> $x: ($x, have win, the first triple crown) -> $x: ($x, win, first triple crown) -> (Pletcher, won, his first Triple Crown race) -> Pletcher (4877ms) Who was the first Triple Crown Winner? the favourite -11.004754997865662 Who was the first Triple Crown Winner? -> who be [ the first triple crown ] winner ? -> who win the first triple crown ? -> $x: ($x, win, the first triple crown) -> (the favourite, to win, the first ever Triple Crown) -> the favourite (4479ms) Who was the first Triple Crown Winner? Vader -11.089666851450975 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Vader, wins, Japanese Triple Crown title) -> Vader (4479ms) Who was the first Triple Crown Winner? Affirmed -11.136808398031027 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Affirmed, won, the Triple Crown) -> Affirmed (4478ms) Who was the first Triple Crown Winner? Beachley -11.158155016474696 Who was the first Triple Crown Winner? -> who be [ the first triple crown ] winner ? -> who have win the first triple crown ? -> $x: ($x, have win, the first triple crown) -> $x: ($x, win, first triple crown) -> (Beachley, won, that first Vans Triple Crown title) -> Beachley (4877ms) Who was the first Triple Crown Winner? Mantle -11.16688877602111 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Mantle, won, the Triple Crown) -> Mantle (4530ms) Who was the first Triple Crown Winner? Efland -11.175433986403242 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Efland, won, a Triple Crown championship) -> Efland (4530ms) Who was the first Triple Crown Winner? Assault -11.2177878300441 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Assault, won, the Triple Crown) -> Assault (4530ms) Who was the first Triple Crown Winner? Whirlaway -11.232262654234278 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Whirlaway, won, the Triple Crown) -> Whirlaway (4530ms) Who was the first Triple Crown Winner? Scotland -11.252663773098229 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Scotland, won, the Triple Crown) -> Scotland (4530ms) Who was the first Triple Crown Winner? Cody -11.349842081668791 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Cody, won pokers, Triple Crown) -> Cody (4555ms) Who was the first Triple Crown Winner? the horse -11.638558894040218 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (the horse, won, the 1973 Triple Crown) -> the horse (4555ms) Who was the first Triple Crown Winner? Williams -11.778979358201813 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Williams, won, the Triple Crown) -> Williams (4555ms) Who was the first Triple Crown Winner? Ireland -11.795909076583149 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Ireland, win, the Triple Crown) -> Ireland (4555ms) Who was the first Triple Crown Winner? Robinson -11.795909076583149 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Robinson, won, the Triple Crown) -> Robinson (4555ms) Who was the first Triple Crown Winner? Gehrig -11.80121032781419 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Gehrig, won, the Triple Crown) -> Gehrig (4555ms) Who was the first Triple Crown Winner? the legendary racehorse -11.83058529533946 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (the legendary racehorse, won, the Triple Crown) -> the legendary racehorse (4555ms) Who was the first Triple Crown Winner? Misawa -11.842012565542094 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Misawa, won, the Triple Crown) -> Misawa (4580ms) Who was the first Triple Crown Winner? Kawada -11.856487389732271 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Kawada, won, the Triple Crown) -> Kawada (4580ms) Who was the first Triple Crown Winner? Klein -11.856487389732271 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Klein, won, the Triple Crown) -> Klein (4580ms) Who was the first Triple Crown Winner? Hornsby -11.856487389732271 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Hornsby, wins, the Triple Crown) -> Hornsby (4580ms) Who was the first Triple Crown Winner? Smitty -11.86815015189239 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Smitty, won, the triple crown) -> Smitty (4580ms) Who was the first Triple Crown Winner? Lajoie -11.876888508596224 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Lajoie, won, the Triple Crown) -> Lajoie (4604ms) Who was the first Triple Crown Winner? Medwick -11.876888508596224 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Medwick, won, the Triple Crown) -> Medwick (4580ms) Who was the first Triple Crown Winner? Frankel -11.876888508596224 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Frankel, won, the Triple Crown) -> Frankel (4604ms) Who was the first Triple Crown Winner? Kershaw -12.011092331008019 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Kershaw, won, the pitching triple crown) -> Kershaw (4604ms) Who was the first Triple Crown Winner? Gainsborough -12.019830687711853 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Gainsborough, wins, the English Triple Crown) -> Gainsborough (4604ms) Who was the first Triple Crown Winner? Koufax -12.123996748933285 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (Koufax, won, the pitchers ' Triple Crown) -> Koufax (4604ms) Who was the first Triple Crown Winner? the guy -12.26961147218178 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (the guy, won, the Triple Crown) -> the guy (4604ms) Who was the first Triple Crown Winner? The team -12.295313842276771 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (The team, won, the Triple Crown) -> The team (4604ms) Who was the first Triple Crown Winner? the major reasons -12.437051729068276 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (the major reasons, winning, the Triple Crown) -> the major reasons (4629ms) Who was the first Triple Crown Winner? the great horse -12.454810030837455 Who was the first Triple Crown Winner? -> who be the first [ triple crown ] winner ? -> who win triple crown ? -> $x: ($x, win, triple crown) -> (the great horse, won, the Triple Crown) -> the great horse (4629ms) How far does a laser pointer shine? Author Topic -13.768836007560557 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, do, a laser pointer) -> (Author Topic, far does, a 10mw green laser pointer shoot) -> Author Topic (8190ms) How far does a laser pointer shine? a 405nm wave length -13.84554867094364 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (a pen-shaped laser pointer, has, a 405nm wave length) -> a 405nm wave length (8128ms) How far does a laser pointer shine? a 650nm wave length -13.84554867094364 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (a pen-shaped laser pointer, has, a 650nm wave length) -> a 650nm wave length (8128ms) How far does a laser pointer shine? a 532nm wave length -13.888180759419967 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (a pen-shaped laser pointer, has, a 532nm wave length) -> a 532nm wave length (8128ms) How far does a laser pointer shine? 5 miles -13.98145725873473 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A green laser pointer, can be seen as far as, 5 miles) -> 5 miles (8128ms) How far does a laser pointer shine? 1 mW -14.063708700253736 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (a typical laser pointer, has around, 1 mW) -> 1 mW (8128ms) How far does a laser pointer shine? The R800 Pro -14.13109384736592 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (The R800 Pro, has, a powerful brilliant green laser pointer) -> The R800 Pro (8128ms) How far does a laser pointer shine? 200mW -14.212440050312704 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (200mW, be less bright than, a 55mW Viper laser pointer) -> 200mW (8128ms) How far does a laser pointer shine? eBay -14.226746676268018 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (eBay, was, a Broken Laser Pointer) -> eBay (8128ms) How far does a laser pointer shine? 60 times brighter -14.236855501723943 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A green laser pointer, is about, 60 times brighter) -> 60 times brighter (8190ms) How far does a laser pointer shine? 1W or so -14.295490057934426 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (a laser pointer, has an output of, 1W or so) -> 1W or so (8190ms) How far does a laser pointer shine? a 19-year-old man -14.300673712480725 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (a 19-year-old man, was found with, a laser pointer) -> a 19-year-old man (8190ms) How far does a laser pointer shine? The FLIR P660 model -14.341532951346244 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (The FLIR P660 model, has, a more advanced Laser Pointer) -> The FLIR P660 model (8190ms) How far does a laser pointer shine? a drop -14.371252694033116 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> what do a laser pointer shine out ? -> what do a laser pointer shine ? -> $x: (a laser pointer, shine, $x) -> (a laser pointer, was shone through, a drop) -> a drop (5587ms) How far does a laser pointer shine? 60 seconds -14.375356021912312 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a 95mW Viper laser pointer, has been working for, 60 seconds) -> 60 seconds (8190ms) How far does a laser pointer shine? less than $ 15. -14.380259003169721 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a non-functional laser pointer, was sold for, less than $ 15.) -> less than $ 15. (8221ms) How far does a laser pointer shine? The S3 Krypton -14.437044573603089 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (The S3 Krypton, is too powerful to be used as, a laser pointer) -> The S3 Krypton (8221ms) How far does a laser pointer shine? sound -14.460753939528738 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (sound, has, a laser pointer) -> sound (8221ms) How far does a laser pointer shine? afterimage -14.50142704100213 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, are, afterimage) -> afterimage (8221ms) How far does a laser pointer shine? less than $ 40 -14.64958684774288 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A green laser pointer, can now be purchased for, less than $ 40) -> less than $ 40 (8221ms) How far does a laser pointer shine? a modification -14.663704317897182 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (a modification, would be to use, a laser pointer) -> a modification (8221ms) How far does a laser pointer shine? a pilot -14.737721189369813 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (a pilot, has been temporarily blinded by, a laser pointer) -> a pilot (8221ms) How far does a laser pointer shine? one example--shine -14.7510243314638 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, is, one example--shine) -> one example--shine (8258ms) How far does a laser pointer shine? a patentable process -14.751973085992152 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, was, a patentable process) -> a patentable process (8258ms) How far does a laser pointer shine? a prankster -14.778604858408263 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (a prankster, had shined, a LASER POINTER) -> a prankster (8258ms) How far does a laser pointer shine? a 3D mouse -14.797698033452708 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, need, $x) -> (A Laser pointer, need, a 3D mouse) -> a 3D mouse (9827ms) How far does a laser pointer shine? someone?s eyes -14.80212173835965 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> what do a laser pointer shine out ? -> what do a laser pointer shine ? -> $x: (a laser pointer, shine, $x) -> (a laser pointer, is shone directly into, someone?s eyes) -> someone?s eyes (5587ms) How far does a laser pointer shine? inertia and friction -14.803869430526627 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (a laser pointer, have to do with, inertia and friction) -> inertia and friction (8258ms) How far does a laser pointer shine? a cat -14.817766573965894 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, is to, a cat) -> a cat (8258ms) How far does a laser pointer shine? A HeNe laser -14.852944299340196 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (A HeNe laser, is far superior to, a cheap laser pointer) -> A HeNe laser (8258ms) How far does a laser pointer shine? built-in -14.876878296632995 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (built-in, is, a laser pointer) -> built-in (8294ms) How far does a laser pointer shine? a laser diode -14.891421199617735 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a do-it-yourself laser pointer, is, a laser diode) -> a laser diode (8294ms) How far does a laser pointer shine? Today?s invention -14.896097313951218 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (Today?s invention, is, a laser pointer) -> Today?s invention (8294ms) How far does a laser pointer shine? police -14.908098751986106 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, was aimed at, police) -> police (8294ms) How far does a laser pointer shine? presentations -14.914673054582249 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a red laser beam pointer, could be used in, presentations) -> presentations (8294ms) How far does a laser pointer shine? a flashlight -14.92416172793008 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a diode laser pointer, is about as exciting as, a flashlight) -> a flashlight (8294ms) How far does a laser pointer shine? Wal-Mart -14.933575544184656 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, get, a laser pointer) -> (Wal-Mart, get, a laser pointer) -> Wal-Mart (9739ms) How far does a laser pointer shine? miles -14.933920404349616 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a red laser pointer, can be seen in, miles) -> miles (8294ms) How far does a laser pointer shine? pilots -14.935638662094336 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a pointer or handheld laser, can be visible to, pilots) -> pilots (8294ms) How far does a laser pointer shine? a very basic model -14.954891773344457 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (a very basic model, also has, a laser pointer) -> a very basic model (8326ms) How far does a laser pointer shine? the Intelligent Remote -14.959312758052235 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (the Intelligent Remote, has, a handy laser pointer) -> the Intelligent Remote (8326ms) How far does a laser pointer shine? a similar way -14.962457357268207 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, was used in, a similar way) -> a similar way (8326ms) How far does a laser pointer shine? a great one -14.982748688006875 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, is, a great one) -> a great one (8326ms) How far does a laser pointer shine? SkyFOX helicopter -15.005291083336795 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (SkyFOX helicopter, was hit by, a laser pointer) -> SkyFOX helicopter (8326ms) How far does a laser pointer shine? Can -15.011470440941164 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (Can, has, a built-in laser pointer) -> Can (8326ms) How far does a laser pointer shine? a beam angle -15.015901425554544 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (a keychain laser pointer, might have, a beam angle) -> a beam angle (8326ms) How far does a laser pointer shine? BORING -15.0163482455692 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a Rav'n laser pointers, are, BORING) -> BORING (8326ms) How far does a laser pointer shine? LASER light -15.019438223861226 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (LASER light, is to take, a cheap LASER pointer) -> LASER light (8445ms) How far does a laser pointer shine? Justin Stouder -15.021827407243215 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (Justin Stouder, was aiming, a laser pointer) -> Justin Stouder (8445ms) How far does a laser pointer shine? a police officer -15.022582770374903 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, is directed at, a police officer) -> a police officer (8445ms) How far does a laser pointer shine? a miniature camera -15.024152388185346 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (a miniature camera, is actually, a laser pointer) -> a miniature camera (8445ms) How far does a laser pointer shine? pizza cutter knife -15.02592076098754 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (pizza cutter knife, has, a laser pointer) -> pizza cutter knife (8444ms) How far does a laser pointer shine? Tristan -15.030504171959409 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (Tristan, had, a laser pointer) -> Tristan (8445ms) How far does a laser pointer shine? A nice recent solution -15.037122162692338 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (A nice recent solution, is, a green laser pointer) -> A nice recent solution (8444ms) How far does a laser pointer shine? several laser wavelengths -15.039710206470666 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (a typical DPSS laser pointer, has, several laser wavelengths) -> several laser wavelengths (8473ms) How far does a laser pointer shine? a telescope -15.04265471453323 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A green laser pointer, can also be mounted on, a telescope) -> a telescope (8473ms) How far does a laser pointer shine? afterimage , flashblindness and glare -15.061331499702698 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, are, afterimage , flashblindness and glare) -> afterimage , flashblindness and glare (8473ms) How far does a laser pointer shine? an option -15.063648123641299 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, is available as, an option) -> an option (8473ms) How far does a laser pointer shine? a commercial success -15.065416496443492 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (a laser pointer ?, had become, a commercial success) -> a commercial success (8473ms) How far does a laser pointer shine? five millennia -15.066310767812821 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (a laser pointer, could have existed, five millennia) -> five millennia (8473ms) How far does a laser pointer shine? FuzeBox -15.079930460603928 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (FuzeBox, has even built, a touch-based laser pointer) -> FuzeBox (8473ms) How far does a laser pointer shine? Smart Dot -15.091942457392454 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (Smart Dot, is, a small laser pointer accessory) -> Smart Dot (8473ms) How far does a laser pointer shine? A company -15.092563267972249 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (A company, is selling, a gun-shaped laser pointer) -> A company (8577ms) How far does a laser pointer shine? The LED flashlight -15.113399446979844 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (The LED flashlight, may really be, a laser pointer) -> The LED flashlight (8577ms) How far does a laser pointer shine? astronomers -15.116949308277585 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (such a laser pointer, is a perfect tool for, astronomers) -> astronomers (8577ms) How far does a laser pointer shine? a bright laser end ?spot? -15.125713646574825 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (A 5mW green laser pointer, has, a bright laser end ?spot?) -> a bright laser end ?spot? (8577ms) How far does a laser pointer shine? presenters -15.130594517039404 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (presenters, will have, a laser pointer) -> presenters (8577ms) How far does a laser pointer shine? good use -15.130892300657091 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a 405 nm laser pointer, is already being put to, good use) -> good use (8577ms) How far does a laser pointer shine? a very visible BLUE beam & -15.14415530748272 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (a unique 1000mw laser pointer, has, a very visible BLUE beam &) -> a very visible BLUE beam & (8577ms) How far does a laser pointer shine? an adjustable stand -15.153138194292373 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (an adjustable stand, is operated by, a small laser pointer) -> an adjustable stand (8577ms) How far does a laser pointer shine? just about everyone -15.162286013626192 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (just about everyone, has, a red laser pointer) -> just about everyone (8605ms) How far does a laser pointer shine? there own right -15.174358931430165 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, are useful elements in, there own right) -> there own right (8605ms) How far does a laser pointer shine? Personal Edition -15.174409099189933 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (Personal Edition, is, a virtual and interactive laser pointer) -> Personal Edition (8605ms) How far does a laser pointer shine? one man -15.185839112383817 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (one man, was playing with, a cheap laser pointer) -> one man (8605ms) How far does a laser pointer shine? a few hundred nanometers -15.187279801520264 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (a laser pointer, has a wavelength of, a few hundred nanometers) -> a few hundred nanometers (8605ms) How far does a laser pointer shine? less coherent and less stable -15.190766484769473 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, tends to be, less coherent and less stable) -> less coherent and less stable (8605ms) How far does a laser pointer shine? front -15.193044911088231 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, take, a laser pointer) -> (front, took out, a laser pointer) -> front (8605ms) How far does a laser pointer shine? preclinical evaluation -15.195269376577276 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, is under, preclinical evaluation) -> preclinical evaluation (8605ms) How far does a laser pointer shine? a power source -15.195579721270253 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A laser pointer, is a small portable device with, a power source) -> a power source (8644ms) How far does a laser pointer shine? Tech Gadgets Mysteries -15.197847335387372 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (Tech Gadgets Mysteries, Is, A Laser Pointer) -> Tech Gadgets Mysteries (8645ms) How far does a laser pointer shine? A test -15.203472936157455 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (A test, is described by using, a pointer laser pen light) -> A test (8644ms) How far does a laser pointer shine? great use -15.213680546092547 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, can be put to, great use) -> great use (8644ms) How far does a laser pointer shine? StarPointer ? -15.220836498029652 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (StarPointer ?, is like, a laser pointer) -> StarPointer ? (8645ms) How far does a laser pointer shine? blind a pilot -15.223859601951624 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, had been used to, blind a pilot) -> blind a pilot (8644ms) How far does a laser pointer shine? a pet?s toy -15.22848175329854 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a 10mw Green Laser Pointer, can be used as, a pet?s toy) -> a pet?s toy (8644ms) How far does a laser pointer shine? an arrow -15.232766139494435 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (an arrow, has been generated by, a laser pointer) -> an arrow (8691ms) How far does a laser pointer shine? an event -15.238384046601714 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, will be escorted out of, an event) -> an event (8691ms) How far does a laser pointer shine? a beam diameter -15.240609239324167 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (A typical 5 mW green laser pointer, has, a beam diameter) -> a beam diameter (8691ms) How far does a laser pointer shine? a great trade show giveaway -15.249501323797196 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A Laser Pointer Pen, is, a great trade show giveaway) -> a great trade show giveaway (8691ms) How far does a laser pointer shine? a great tool -15.25317864049359 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (such a high power laser pointer pen, is really, a great tool) -> a great tool (8691ms) How far does a laser pointer shine? an LED flashlight -15.29044016003698 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (an LED flashlight, could also be used as, a laser pointer) -> an LED flashlight (8691ms) How far does a laser pointer shine? A Thurston County man -15.300014769674409 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (A Thurston County man, was fooling around with, a laser pointer) -> A Thurston County man (8691ms) How far does a laser pointer shine? Students -15.317516063514745 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (Students, will also be building, a laser pointer) -> Students (8734ms) How far does a laser pointer shine? four juveniles -15.319622685129694 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (four juveniles, were found with, a laser pointer) -> four juveniles (8734ms) How far does a laser pointer shine? string play -15.327057697867039 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (string play, is sometimes replaced with, a laser pointer) -> string play (8734ms) How far does a laser pointer shine? use -15.338633625436096 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A laser pointer, will be available for, use) -> use (8734ms) How far does a laser pointer shine? David Banach -15.346591408450555 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (David Banach, had recently purchased, a laser pointer) -> David Banach (8734ms) How far does a laser pointer shine? high quality material -15.36641657104534 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a 532NM green laser pointer, is made of, high quality material) -> high quality material (8734ms) How far does a laser pointer shine? VIP presenters -15.373780988329953 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (VIP presenters, were supposed to get, a laser pointer) -> VIP presenters (8734ms) How far does a laser pointer shine? pens -15.422233824528707 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (pens, are made into, a keychain or laser pointer) -> pens (8777ms) How far does a laser pointer shine? tools and methods -15.426606604981586 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (tools and methods, may be employed such as, a laser pointer) -> tools and methods (8777ms) How far does a laser pointer shine? green light -15.436156132197116 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A 55mW Viper laser pointer, will be 55mW of, green light) -> green light (8777ms) How far does a laser pointer shine? a laser line -15.446550956627576 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A laser pointer or diode, can easily be made into, a laser line) -> a laser line (8777ms) How far does a laser pointer shine? the order -15.450875005440695 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, is of, the order) -> the order (8777ms) How far does a laser pointer shine? a visible green or red light -15.475237489469437 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, is converted to, a visible green or red light) -> a visible green or red light (8777ms) How far does a laser pointer shine? Basic experiements -15.494046320315423 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (Basic experiements, can be performed with just, a laser pointer) -> Basic experiements (8777ms) How far does a laser pointer shine? metal material -15.499185438906007 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a pen-shaped red laser pointer pen, is made of, metal material) -> metal material (8777ms) How far does a laser pointer shine? presentation -15.571362403019792 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a pointer laser, is usually used for, presentation) -> presentation (8883ms) How far does a laser pointer shine? responsible persons -15.586941727967789 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (3a laser pointers, should be limited to, responsible persons) -> responsible persons (8883ms) How far does a laser pointer shine? Laser -15.626240626815969 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (Laser, is, a professional 2-Function laser pointer/ballpoint pen) -> Laser (8883ms) How far does a laser pointer shine? coordination -15.644659444438265 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A Laser Pointer Marker, is added to enhance, coordination) -> coordination (8883ms) How far does a laser pointer shine? the bottom -15.65227864320421 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, was pressed against, the bottom) -> the bottom (8883ms) How far does a laser pointer shine? the internet -15.656051693960489 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a 200mw green laser pointer pen, is, the internet) -> the internet (8883ms) How far does a laser pointer shine? the bill -15.666296700176423 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A laser pointer, is defined in, the bill) -> the bill (8883ms) How far does a laser pointer shine? applications -15.675883906000983 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (a green laser pointer, have so many kinds of, applications) -> applications (8883ms) How far does a laser pointer shine? a hot merchandise -15.693481881282727 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A green laser pointer, is, a hot merchandise) -> a hot merchandise (8925ms) How far does a laser pointer shine? equipment -15.698923183700737 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (A laser pointer, has become a must-have piece of, equipment) -> equipment (8925ms) How far does a laser pointer shine? night -15.69982177046932 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a 5 mW green laser pointer, is visible at, night) -> night (8925ms) How far does a laser pointer shine? pain -15.704618150579044 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, leave, $x) -> (a laser pointer incident, left her with, pain) -> pain (9797ms) How far does a laser pointer shine? a .5 MW laser -15.711816014292443 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, be, laser pointer) -> (a .5 MW laser, is like, your laser pointer) -> a .5 MW laser (10877ms) How far does a laser pointer shine? Each room -15.738624672368804 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (Each room, will have, a timer and slide advancer/laser pointer) -> Each room (8925ms) How far does a laser pointer shine? the JAC. -15.739669021304575 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (Class 3a laser pointers, are banned at, the JAC.) -> the JAC. (8925ms) How far does a laser pointer shine? low output power -15.74316466341285 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (A 5mW green laser pointer, has, low output power) -> low output power (8925ms) How far does a laser pointer shine? fun -15.778587478788465 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser-pointer, could be, fun) -> fun (8925ms) How far does a laser pointer shine? I?ve -15.792173328253478 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, get, a laser pointer) -> (I?ve, got, a laser pointer) -> I?ve (9739ms) How far does a laser pointer shine? 5milliwatts -15.797270423901516 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (laser pointer, is, 5milliwatts) -> 5milliwatts (10877ms) How far does a laser pointer shine? rel=shortlink September 15 -15.803525216941836 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (rel=shortlink September 15, is, a laser pointer) -> rel=shortlink September 15 (8925ms) How far does a laser pointer shine? a path -15.827250523333607 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> what do a laser pointer shine out ? -> what do a laser pointer shine ? -> $x: (a laser pointer, shine, $x) -> $x: (laser pointer, shine, $x) -> (The laser pointer, shines, a path) -> a path (9117ms) How far does a laser pointer shine? Pierre -15.858188804175025 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (Pierre, had bought, a laser pointer) -> Pierre (9117ms) How far does a laser pointer shine? excellent and efficiency -15.895073269083408 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, get, a laser pointer) -> (excellent and efficiency, get, a laser pointer) -> excellent and efficiency (9739ms) How far does a laser pointer shine? to 500 ft -15.89647951599643 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> what do a laser pointer shine out ? -> what do a laser pointer shine ? -> $x: (a laser pointer, shine, $x) -> $x: (laser pointer, shine, $x) -> (This laser pointer, will shine for up, to 500 ft) -> to 500 ft (9117ms) How far does a laser pointer shine? a good aiming device -15.936695125085153 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, make, $x) -> (a laser pointer, makes, a good aiming device) -> a good aiming device (9873ms) How far does a laser pointer shine? 10 times -15.96664142683592 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (Green laser pointers, have approximately, 10 times) -> 10 times (10876ms) How far does a laser pointer shine? the gelatin -15.976292832220018 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> what do a laser pointer shine out ? -> what do a laser pointer shine ? -> $x: (a laser pointer, shine, $x) -> (a laser pointer, was shined through, the gelatin) -> the gelatin (5587ms) How far does a laser pointer shine? More details -15.985332248719633 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (More details, are in, a LaserPointerSafety .com) -> More details (9117ms) How far does a laser pointer shine? a particularly nasty quote -15.987029814247942 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, illuminate, $x) -> (a laser pointer, illuminate, a particularly nasty quote) -> a particularly nasty quote (9798ms) How far does a laser pointer shine? the camera -15.989093941889436 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (the camera, is, a laser pointer) -> the camera (9117ms) How far does a laser pointer shine? the annoyance -15.989970318867977 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (the annoyance, was, a laser pointer) -> the annoyance (9117ms) How far does a laser pointer shine? the game -16.01208310453172 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (the game, is, a laser pointer) -> the game (9117ms) How far does a laser pointer shine? a better result -16.016471710221495 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, make, $x) -> (a green laser pointer, would make, a better result) -> a better result (9873ms) How far does a laser pointer shine? a wonderful present -16.01729138119763 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, make, $x) -> (a Green Laser Pointer, would make, a wonderful present) -> a wonderful present (9873ms) How far does a laser pointer shine? charset=UTF-8 -16.022606865540492 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, be, laser pointer) -> (charset=UTF-8, Are, Laser Pointers Safe) -> charset=UTF-8 (10888ms) How far does a laser pointer shine? Izwan -16.03929569490249 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, was used on, Izwan) -> Izwan (9243ms) How far does a laser pointer shine? officers -16.058131002921066 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, see, a laser pointer) -> (officers, saw, a laser pointer) -> officers (9686ms) How far does a laser pointer shine? Accept-Encoding -16.060681610001566 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, get, a laser pointer) -> (Accept-Encoding, want to get, a cheap laser pointer) -> Accept-Encoding (9740ms) How far does a laser pointer shine? the applications -16.07044014483622 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (the applications, is, a laser pointer) -> the applications (9243ms) How far does a laser pointer shine? the teams -16.136644188809804 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A laser pointer, was used to direct, the teams) -> the teams (9243ms) How far does a laser pointer shine? the site -16.148423540041463 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (the site, was, a broken laser pointer) -> the site (9243ms) How far does a laser pointer shine? 23 local stores -16.15235102644403 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, have, laser pointer) -> (23 local stores, had sold more than, 30,000 laser pointers) -> 23 local stores (10888ms) How far does a laser pointer shine? certain parts -16.18566437917012 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, draw, $x) -> (a laser pointer, wish to draw attention to, certain parts) -> certain parts (9798ms) How far does a laser pointer shine? 30ft -16.186342514530853 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, have, laser pointer) -> (30ft, has built in, laser pointer) -> 30ft (10888ms) How far does a laser pointer shine? the organizers -16.19306849996518 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A laser pointer, will be provided by, the organizers) -> the organizers (9243ms) How far does a laser pointer shine? the back -16.217890603536908 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (a laser pointer, had a little screen on, the back) -> the back (9243ms) How far does a laser pointer shine? 100 participants -16.252657337849815 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, be, laser pointer) -> (100 participants, are given, laser pointers) -> 100 participants (10888ms) How far does a laser pointer shine? much output power -16.273959410577305 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, need, a laser pointer) -> (much output power, need to buy, a burning laser pointer) -> much output power (9827ms) How far does a laser pointer shine? the group -16.275002041316334 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (the group, had been waving, a laser pointer) -> the group (9281ms) How far does a laser pointer shine? cat owners -16.28776392571314 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, be, laser pointer) -> (cat owners, is, the laser pointer) -> cat owners (10888ms) How far does a laser pointer shine? a beam -16.306699852223677 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (high power laser pointers, have, a beam) -> a beam (10888ms) How far does a laser pointer shine? a range -16.31459306711088 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (the laser pointer function, has, a range) -> a range (10900ms) How far does a laser pointer shine? the aircraft -16.314897242886907 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a simple laser pointer, was directed at, the aircraft) -> the aircraft (9281ms) How far does a laser pointer shine? the teen -16.322675095383428 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (the teen, was holding, a laser pointer) -> the teen (9281ms) How far does a laser pointer shine? a place -16.345349398566874 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (handheld laser pointers, have earned, a place) -> a place (10900ms) How far does a laser pointer shine? the sample -16.365315430055354 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (the sample, is illuminated by, a laser pointer) -> the sample (9281ms) How far does a laser pointer shine? the package -16.370620601164227 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (the package, is, a class IIIA laser pointer) -> the package (9281ms) How far does a laser pointer shine? a very good light beam -16.37204079782685 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, make, $x) -> (A small laser pointer pen, makes, a very good light beam) -> a very good light beam (9873ms) How far does a laser pointer shine? two years -16.399233483462694 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (Laser pointers, are so, two years) -> two years (10900ms) How far does a laser pointer shine? a while -16.40085988303634 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (laser pointers, have been around for quite, a while) -> a while (10900ms) How far does a laser pointer shine? a small button which -16.40303785854106 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, turn, a laser pointer) -> (a small button which, turned on, a powerful laser pointer) -> a small button which (9798ms) How far does a laser pointer shine? a step -16.40389705307212 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (green laser pointers, has gone, a step) -> a step (10900ms) How far does a laser pointer shine? the mirror -16.405988531528745 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A laser pointer, was pointed towards, the mirror) -> the mirror (9281ms) How far does a laser pointer shine? classrooms -16.41367564496937 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, have, laser pointer) -> (classrooms, have, laser pointers) -> classrooms (10900ms) How far does a laser pointer shine? CBC News -16.415609017179133 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, have, laser pointer) -> (CBC News, also has photos of, the laser pointer) -> CBC News (10900ms) How far does a laser pointer shine? continuous wave -16.422269502866634 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (laser pointer, is, continuous wave) -> continuous wave (10909ms) How far does a laser pointer shine? the researchers -16.42278828395876 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (the researchers, are working with, a laser pointer) -> the researchers (9310ms) How far does a laser pointer shine? very dangerous -16.437755555880486 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, is, very dangerous) -> very dangerous (9310ms) How far does a laser pointer shine? a forbidden activity -16.44605872531542 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (laser pointer, is, a forbidden activity) -> a forbidden activity (10909ms) How far does a laser pointer shine? the army -16.44866625825393 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (a laser pointer, has a wide application in, the army) -> the army (9310ms) How far does a laser pointer shine? a momentary switch -16.45488412379767 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (most laser pointers, have, a momentary switch) -> a momentary switch (10909ms) How far does a laser pointer shine? the lectern -16.459860018998214 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A laser pointer, will be on, the lectern) -> the lectern (9310ms) How far does a laser pointer shine? available -16.485849617831448 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, is, available) -> available (9310ms) How far does a laser pointer shine? hand -16.512732128544904 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, be, laser pointer) -> (hand, is, the laser pointer) -> hand (10909ms) How far does a laser pointer shine? Laser diode -16.517623677817397 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, be, laser pointer) -> (Laser diode, is from, laser pointer) -> Laser diode (10909ms) How far does a laser pointer shine? the podium -16.523823050988447 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A laser pointer, will be available from, the podium) -> the podium (9310ms) How far does a laser pointer shine? two categories -16.53111088282295 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (laser pointers, can be separated into, two categories) -> two categories (10918ms) How far does a laser pointer shine? great -16.531953106790393 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, is, great) -> great (9350ms) How far does a laser pointer shine? ideal -16.531953106790393 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, is, ideal) -> ideal (9350ms) How far does a laser pointer shine? the place -16.54288814088747 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, keep, $x) -> (a fancy laser pointer, kept going to, the place) -> the place (9797ms) How far does a laser pointer shine? the remote -16.54410948666767 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (the remote, can also be used as, a laser pointer) -> the remote (9350ms) How far does a laser pointer shine? necessary -16.546248701863448 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a Laser Pointer, is, necessary) -> necessary (9350ms) How far does a laser pointer shine? a dangerous object -16.552401022399074 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (Laser pointers, are considered, a dangerous object) -> a dangerous object (10918ms) How far does a laser pointer shine? a Cat Lady -16.555937820705758 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, be, laser pointer) -> (a Cat Lady, Are, Laser Pointers Bad) -> a Cat Lady (10918ms) How far does a laser pointer shine? a pinch -16.558830483645277 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (laser pointers, can be used in, a pinch) -> a pinch (10918ms) How far does a laser pointer shine? a prohibited item -16.570576948540573 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (Laser Pointers Laser pointers, are considered, a prohibited item) -> a prohibited item (10918ms) How far does a laser pointer shine? the view -16.580612885129895 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a small laser pointer, is often reflected away from, the view) -> the view (9350ms) How far does a laser pointer shine? a great two-in-one device -16.6054528915947 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (Laser Pointer, is, a great two-in-one device) -> a great two-in-one device (10927ms) How far does a laser pointer shine? a selection -16.60864637511108 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, have, laser pointer) -> (a selection, has been made with, the laser pointer) -> a selection (10927ms) How far does a laser pointer shine? InfraRed -16.615109071616054 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, have, laser pointer) -> (InfraRed, has built in, laser pointer) -> InfraRed (10927ms) How far does a laser pointer shine? laser -16.6232305098463 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, have, laser pointer) -> (laser, has, built-in laser pointer) -> laser (10927ms) How far does a laser pointer shine? the mouse -16.63871864373779 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A laser pointer, is also built in to, the mouse) -> the mouse (9350ms) How far does a laser pointer shine? a bright beam -16.6436076207293 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (The infrared laser pointer, has, a bright beam) -> a bright beam (10927ms) How far does a laser pointer shine? computer -16.66762580811971 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, be, laser pointer) -> (computer, is, the embedded laser pointer) -> computer (10936ms) How far does a laser pointer shine? a diffraction grating -16.694043454167755 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (This laser pointer pen, has, a diffraction grating) -> a diffraction grating (10936ms) How far does a laser pointer shine? 2008 -16.707427509786008 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (Laser Pointers, have been banned since, 2008) -> 2008 (10944ms) How far does a laser pointer shine? everyday life -16.7147986002507 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (laser pointers, may be hilarious in, everyday life) -> everyday life (10944ms) How far does a laser pointer shine? a dead giveaway -16.721356429822276 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (Laser pointers, also can be, a dead giveaway) -> a dead giveaway (10944ms) How far does a laser pointer shine? laser-scopes -16.729439376511117 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (laser pointers, has nothing to do with, laser-scopes) -> laser-scopes (10944ms) How far does a laser pointer shine? a ballpoint pen -16.73430718123355 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (Laser Pointer, is, a ballpoint pen) -> a ballpoint pen (10944ms) How far does a laser pointer shine? a green beam -16.746040321247087 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (This laser pointer, has, a green beam) -> a green beam (10953ms) How far does a laser pointer shine? a trip -16.750117991164558 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (The laser pointer, had been bought during, a trip) -> a trip (10952ms) How far does a laser pointer shine? Digit -16.7528292244632 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (Digit, is, a super laser-pointer chaser) -> Digit (9350ms) How far does a laser pointer shine? a parked car -16.7676983495244 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, turn, a laser pointer) -> (a parked car, turned, a laser-pointer) -> a parked car (9827ms) How far does a laser pointer shine? a high quality -16.781969910361525 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (The green laser pointer, has, a high quality) -> a high quality (10952ms) How far does a laser pointer shine? market -16.782442379672013 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (laser pointers, have flooded into, market) -> market (10961ms) How far does a laser pointer shine? One of the first items -16.78634324709988 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (One of the first items, is, a broken laser pointer) -> One of the first items (9350ms) How far does a laser pointer shine? penalties -16.79366696179274 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, be, laser pointer) -> (penalties, previously have been reserved for, laser pointers) -> penalties (10961ms) How far does a laser pointer shine? a very visible BLUE beam -16.795770001179353 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, have, $x) -> (a unique 1000mw laser pointer, has, a very visible BLUE beam) -> a very visible BLUE beam (9395ms) How far does a laser pointer shine? a recent development -16.799976429546106 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, be, laser pointer) -> (a recent development, is, the laser pointer) -> a recent development (10961ms) How far does a laser pointer shine? order -16.81768065407796 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (laser pointers, were on, order) -> order (10961ms) How far does a laser pointer shine? a real notebook Touchpad -16.81885439854528 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (One Wireless Laser Pointer, have, a real notebook Touchpad) -> a real notebook Touchpad (10961ms) How far does a laser pointer shine? computers -16.834182544065637 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (laser pointer, have fun talking about, computers) -> computers (10969ms) How far does a laser pointer shine? a sleek design -16.83970896998445 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (The viper laser pointer, has, a sleek design) -> a sleek design (10969ms) How far does a laser pointer shine? the wiimote motion sensor -16.855636204828674 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (the wiimote motion sensor, is, a laser pointer) -> the wiimote motion sensor (9395ms) How far does a laser pointer shine? children -16.88415453409262 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, be, laser pointer) -> (children, are playing with, laser pointers) -> children (10969ms) How far does a laser pointer shine? cheap Posts -16.890959885386923 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (laser pointers, are really, cheap Posts) -> cheap Posts (10977ms) How far does a laser pointer shine? The lines -16.894673676647113 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (The lines, are from, a laser pointer) -> The lines (9395ms) How far does a laser pointer shine? The remote -16.903894238355047 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (The remote, has, a laser pointer) -> The remote (9395ms) How far does a laser pointer shine? a wide range -16.93088051173248 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (Laser pointers, are now available in, a wide range) -> a wide range (10977ms) How far does a laser pointer shine? touchpad and keyboard device -16.93989282076116 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, have, laser pointer) -> (touchpad and keyboard device, has, laser pointer) -> touchpad and keyboard device (10977ms) How far does a laser pointer shine? FORBIDDEN -16.944051255280986 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (LASER POINTERS, ARE, FORBIDDEN) -> FORBIDDEN (10977ms) How far does a laser pointer shine? teachers -16.94735987907026 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (laser pointers, have been aimed at, teachers) -> teachers (10977ms) How far does a laser pointer shine? toys -16.956137280358558 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, be, laser pointer) -> (toys, are being introduced such as, laser pointers) -> toys (10977ms) How far does a laser pointer shine? day -16.95699043563351 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (laser pointers, are dropping, day) -> day (10977ms) How far does a laser pointer shine? engineers -16.957542954024944 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (Laser pointers, are ideal for, engineers) -> engineers (10985ms) How far does a laser pointer shine? ?F/?C switchable -16.968217981538327 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (laser pointer, are, ?F/?C switchable) -> ?F/?C switchable (10985ms) How far does a laser pointer shine? each team -16.978177847146164 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, have, laser pointer) -> (each team, has, one laser pointer) -> each team (10985ms) How far does a laser pointer shine? ?special equipment -16.984525746657955 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (laser pointers, is, ?special equipment) -> ?special equipment (10985ms) How far does a laser pointer shine? The boy -16.992134253316863 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (The boy, would have shined, a laser pointer) -> The boy (9395ms) How far does a laser pointer shine? a real notbook Touchpad -16.99752301871719 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (One Wireless Laser pointer, have, a real notbook Touchpad) -> a real notbook Touchpad (10985ms) How far does a laser pointer shine? A curious parrot -16.997537471786973 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, have, laser pointer) -> (A curious parrot, has some fun with, this laser pointer) -> A curious parrot (10985ms) How far does a laser pointer shine? effective tools -16.998290773059907 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (Laser pointers, are, effective tools) -> effective tools (10985ms) How far does a laser pointer shine? laser diodes -16.999567211254007 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, be, laser pointer) -> (laser diodes, are, inexpensive laser pointers) -> laser diodes (11024ms) How far does a laser pointer shine? refraction -17.000411695563592 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (laser pointers, are used to demonstrate, refraction) -> refraction (11024ms) How far does a laser pointer shine? walls -17.00153477992222 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> what do a laser pointer shine out ? -> what do a laser pointer shine ? -> $x: (a laser pointer, shine, $x) -> $x: (laser pointer, shine, $x) -> (laser pointers, shone on, walls) -> walls (9395ms) How far does a laser pointer shine? The device -17.009619384453927 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (The device, has, a built-in laser pointer) -> The device (9438ms) How far does a laser pointer shine? different output power -17.013863376208196 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (laser pointers, have, different output power) -> different output power (11024ms) How far does a laser pointer shine? the best light source -17.014299825105173 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A laser pointer, is, the best light source) -> the best light source (9438ms) How far does a laser pointer shine? business -17.018095687097 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (Laser pointers, are typically used in, business) -> business (11025ms) How far does a laser pointer shine? Infrared Laser Pointer Kit -17.01916854731707 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, be, laser pointer) -> (Infrared Laser Pointer Kit, are, specialist laser pointers) -> Infrared Laser Pointer Kit (11024ms) How far does a laser pointer shine? ABSOLUTELY -17.022744846322183 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (Laser Pointers, are, ABSOLUTELY) -> ABSOLUTELY (11024ms) How far does a laser pointer shine? The light -17.02774891662063 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (The light, is used is very similar to, a laser pointer) -> The light (9438ms) How far does a laser pointer shine? helpful tools -17.034115470642387 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (laser pointers, are, helpful tools) -> helpful tools (11024ms) How far does a laser pointer shine? nice pen-shaped presentation remote -17.03698045269148 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, have, laser pointer) -> (nice pen-shaped presentation remote, has, built-in laser pointer) -> nice pen-shaped presentation remote (11047ms) How far does a laser pointer shine? temporary blindness -17.04311649675364 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (laser pointers, have mentioned, temporary blindness) -> temporary blindness (11047ms) How far does a laser pointer shine? the sun -17.058509724885244 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, is brighter than, the sun) -> the sun (9438ms) How far does a laser pointer shine? Continue reading -17.0646899007613 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (green laser pointer, have ?, Continue reading) -> Continue reading (11047ms) How far does a laser pointer shine? available Material -17.066363936915128 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (laser pointer, is, available Material) -> available Material (11048ms) How far does a laser pointer shine? plugs-and-plays -17.066850624574275 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, have, laser pointer) -> (plugs-and-plays, has, an inbuilt laser pointer) -> plugs-and-plays (11048ms) How far does a laser pointer shine? discussion groups -17.071934846273354 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (Laser Pointer Forums, has a number of, discussion groups) -> discussion groups (11048ms) How far does a laser pointer shine? Safe -17.073574602993492 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, be, laser pointer) -> (Safe, is, your Laser Pointer) -> Safe (11069ms) How far does a laser pointer shine? night sky observation -17.07493804113007 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (laser pointer, is suitable for, night sky observation) -> night sky observation (11069ms) How far does a laser pointer shine? The remote controller -17.080679269253686 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (The remote controller, has, a built-in laser pointer) -> The remote controller (9438ms) How far does a laser pointer shine? The ranger -17.084815118363547 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (The ranger, had, a very powerful green laser pointer) -> The ranger (9438ms) How far does a laser pointer shine? a long beam range -17.08865994560788 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (These green laser pointers, have, a long beam range) -> a long beam range (11069ms) How far does a laser pointer shine? The first sale -17.089521238669242 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (The first sale, was, a broken laser pointer) -> The first sale (9438ms) How far does a laser pointer shine? the night sky -17.09766510637353 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, is projected directly at, the night sky) -> the night sky (9438ms) How far does a laser pointer shine? The laser -17.107205177500354 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (The laser, would be, a simple red laser pointer) -> The laser (9533ms) How far does a laser pointer shine? maximums -17.108636188494103 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, be, $x) -> (laser pointers, are, maximums) -> maximums (11069ms) How far does a laser pointer shine? a blast footprint -17.1098305676882 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: (laser pointer, have, $x) -> (The laser pointer, has been replaced with, a blast footprint) -> a blast footprint (11069ms) How far does a laser pointer shine? The presenters -17.114515026563314 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (The presenters, should be provided with, a laser pointer) -> The presenters (9533ms) How far does a laser pointer shine? PowerPoint presenter -17.115246677251843 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, have, laser pointer) -> (PowerPoint presenter, has, an integrated green laser pointer) -> PowerPoint presenter (11069ms) How far does a laser pointer shine? PowerPoint , MediaPlayer and -17.11532245236643 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, have, laser pointer) -> (PowerPoint , MediaPlayer and, also has a built in, laser pointer) -> PowerPoint , MediaPlayer and (11069ms) How far does a laser pointer shine? a few examples -17.1256709296671 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (laser pointer, shine to, $x) -> $x: ($x, be, laser pointer) -> (a few examples, are, laser pointers) -> a few examples (11069ms) How far does a laser pointer shine? the flashlight -17.126695509772862 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, turn, a laser pointer) -> (the flashlight, will turn into, a laser pointer) -> the flashlight (9827ms) How far does a laser pointer shine? The remote control -17.14522566706816 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (The remote control, also has, a laser pointer) -> The remote control (9533ms) How far does a laser pointer shine? The easiest way -17.165562217804858 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (The easiest way, was with, a laser pointer) -> The easiest way (9533ms) How far does a laser pointer shine? The laptops -17.20553727026928 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (The laptops, will have a remote control with, a laser pointer) -> The laptops (9533ms) How far does a laser pointer shine? The presentation friendly IR remote -17.216197780246794 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, have, a laser pointer) -> (The presentation friendly IR remote, has, a laser pointer) -> The presentation friendly IR remote (9533ms) How far does a laser pointer shine? The light source -17.272786395046808 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (The light source, is replaced by, a laser pointer) -> The light source (9533ms) How far does a laser pointer shine? the external video screen -17.374670315369425 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A laser pointer, can be shown on, the external video screen) -> the external video screen (9533ms) How far does a laser pointer shine? the microscopic contents -17.497603475320165 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a laser pointer, be used to examine, the microscopic contents) -> the microscopic contents (9633ms) How far does a laser pointer shine? the longarm machine -17.52261229246125 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (a stylus or laser pointer, is attached to, the longarm machine) -> the longarm machine (9633ms) How far does a laser pointer shine? wall -17.52757031178682 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> what process do a laser pointer shine ? -> $x: ($x, instance of, process) (a laser pointer, shine, $x) -> $x: ($x, instance of, process) (laser pointer, shine, $x) -> $x: ($x, instance of, process) (laser pointer, shone on, $x) -> (wall, Instance Of, processing environment) (laser pointers, shone on, walls) -> wall (6194ms) How far does a laser pointer shine? the robot torch -17.54004494959575 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A laser pointer, is also affixed to, the robot torch) -> the robot torch (9633ms) How far does a laser pointer shine? The upper half -17.6547381143499 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (The upper half, is, a laser-pointer) -> The upper half (9633ms) How far does a laser pointer shine? the drawing tool -17.671790462534872 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: (a laser pointer, be, $x) -> (A green 60 milliwatt laser pointer, is, the drawing tool) -> the drawing tool (9633ms) How far does a laser pointer shine? the best choice -17.711830606601485 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (the best choice, as was found out with, a laser pointer) -> the best choice (9633ms) How far does a laser pointer shine? The buyer -17.918348393534544 How far does a laser pointer shine? -> How does a laser pointer shine? -> how do [ a laser pointer shine ] ? -> who be a laser pointer shine to ? -> $x: (a laser pointer, shine to, $x) -> $x: ($x, be, a laser pointer) -> (The buyer, was, a collector of broken laser pointers) -> The buyer (9633ms) What does ACLU stand for? American Civil Liberties Union -3.0691838113034104 What does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (ACLU, stands for, American Civil Liberties Union) -> American Civil Liberties Union (6151ms) What does ACLU stand for? ?American? Civil Liberties Union -3.158441553780713 What does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (ACLU, stands for, ?American? Civil Liberties Union) -> ?American? Civil Liberties Union (6151ms) What does ACLU stand for? American -3.255027813933534 What does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (ACLU, stood for, American) -> American (6151ms) What does ACLU stand for? human rights -3.267944237106466 What does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (the ACLU, stand up for, human rights) -> human rights (6152ms) What does ACLU stand for? Sgt -3.414453867889174 What does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (The ACLU, stood up for, Sgt) -> Sgt (6152ms) What does ACLU stand for? Anti-Christian Lawyers -3.499285585380715 What does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (ACLU, stands for, Anti-Christian Lawyers) -> Anti-Christian Lawyers (7454ms) What does ACLU stand for? free speech -3.5781552009317603 What does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (The ACLU, took a controversial stand for, free speech) -> free speech (7454ms) What does ACLU stand for? Anti Christian Litigation Union -3.605891310987964 What does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (ACLU, stood for, Anti Christian Litigation Union) -> Anti Christian Litigation Union (7455ms) What does ACLU stand for? the 2nd Amendment -3.8985343908874146 What does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (the ACLU, stood up for, the 2nd Amendment) -> the 2nd Amendment (7454ms) What does ACLU stand for? the Anti-Christian Liberal Union -3.9176506853798774 What does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (The ACLU, might well stand for, the Anti-Christian Liberal Union) -> the Anti-Christian Liberal Union (7455ms) What does ACLU stand for? the Fourth Amendment -3.9768089317439808 What does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (The ACLU-NC, has been stood up for, the Fourth Amendment) -> the Fourth Amendment (7455ms) What does ACLU stand for? a basic public right -4.043428822732192 What does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (the ACLU, has stood up for, a basic public right) -> a basic public right (7477ms) What does ACLU stand for? principle -5.352793266296581 What does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (the ACLU, stands for, principle) -> principle (7521ms) What does ACLU stand for? the whole Bill -5.575919601672851 What does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (the ACLU, will now actually stand up for, the whole Bill) -> the whole Bill (7521ms) What does ACLU stand for? the civil rights and liberties -5.72181220243411 What does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (The ACLU, will stand up for, the civil rights and liberties) -> the civil rights and liberties (7521ms) What does ACLU stand for? the ACLU -6.131296075766042 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> (card-carrying ACLU members, stand behind, the ACLU) -> the ACLU (8130ms) What does ACLU stand for? the rights -6.279011047571592 What does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (the ACLU?s butt, stands for, the rights) -> the rights (7539ms) What does ACLU stand for? little chance -6.299494887997889 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> (the ACLU, stand, little chance) -> little chance (8140ms) What does ACLU stand for? the American Legion -6.4416569415244975 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> (The ACLU, stands with, the American Legion) -> the American Legion (8140ms) What does ACLU stand for? the United States Supreme Court -6.542835789070075 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> (ACLU attorneys, stand before, the United States Supreme Court) -> the United States Supreme Court (8140ms) What does ACLU stand for? the United States -6.60719560102023 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> (the ACLU, stands on in, the United States) -> the United States (8149ms) What does ACLU stand for? the Supreme Court -6.631560884671702 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> (ACLU attorneys, stand before, the Supreme Court) -> the Supreme Court (8149ms) What does ACLU stand for? expansion -6.6690765224068125 What does ACLU stand for? -> $x: (ACLU, stand for, $x) -> (The ACLU-MN, has always stood for, expansion) -> expansion (7540ms) What does ACLU stand for? a suit -6.997366860893534 What does ACLU stand for? -> $x: (ACLU, stand for, $x) -> $x: (ACLU, consider for, $x) -> (ACLU briefly, considered a request for, a suit) -> a suit (7594ms) What does ACLU stand for? a case -7.037966398846049 What does ACLU stand for? -> $x: (ACLU, stand for, $x) -> $x: (ACLU, have wait for, $x) -> (the ACLU, had been waiting for, a case) -> a case (7907ms) What does ACLU stand for? the very center -8.041731495676782 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> (ACLU, stands at, the very center) -> the very center (8161ms) What does ACLU stand for? prayer -8.407579358311775 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> (The ACLU, has certainly stood against, prayer) -> prayer (8160ms) What does ACLU stand for? the war -8.513489625863048 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> (the ACLU, is reluctant to take a stand on, the war) -> the war (8169ms) What does ACLU stand for? brainwashing -8.55982047868329 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> (the ACLU, took a formal stand against, brainwashing) -> brainwashing (8169ms) What does ACLU stand for? constitutional law -8.816656628653952 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu define ? -> $x: (aclu, define, $x) -> (the ACLU, has helped define, constitutional law) -> constitutional law (8522ms) What does ACLU stand for? conservatives -8.866459128712911 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> (The ACLU, has stood shoulder-to-shoulder with, conservatives) -> conservatives (8169ms) What does ACLU stand for? themselves -8.903492033696992 What does ACLU stand for? -> $x: (ACLU, stand for, $x) -> $x: (ACLU, be ashamed of, $x) -> (The ACLU, should be deeply ashamed of, themselves) -> themselves (8169ms) What does ACLU stand for? law -9.290946107298867 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu define ? -> $x: (aclu, define, $x) -> (The ACLU, is defined by, law) -> law (8522ms) What does ACLU stand for? same-sex couples -9.352019064188509 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU, is working with, same-sex couples) -> same-sex couples (9337ms) What does ACLU stand for? Montana -9.760355061129566 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (ACLU attorneys, were working in, Montana) -> Montana (9337ms) What does ACLU stand for? full force -9.814758852775565 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, would be there, $x) -> (the ACLU, would be there in, full force) -> full force (9138ms) What does ACLU stand for? weeks -9.831480246637955 What does ACLU stand for? -> $x: (ACLU, stand for, $x) -> $x: (ACLU, be silent for, $x) -> (The ACLU, has been silent for, weeks) -> weeks (7907ms) What does ACLU stand for? full page ad propaganda war -9.853162618869106 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be run, $x) -> (the ACLU, were running, full page ad propaganda war) -> full page ad propaganda war (9113ms) What does ACLU stand for? full-page advertisements today -9.895879035841286 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be run, $x) -> (the ACLU, is running, full-page advertisements today) -> full-page advertisements today (9113ms) What does ACLU stand for? Senator Jeanne Kohl-Welles -9.905251568414538 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU, is working with, Senator Jeanne Kohl-Welles) -> Senator Jeanne Kohl-Welles (9337ms) What does ACLU stand for? a lawsuit -9.920121131882315 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be consider, $x) -> (the ACLU, is considering bringing, a lawsuit) -> a lawsuit (8887ms) What does ACLU stand for? the Richard Fine case -9.928380059853048 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (the ACLU, should be working on is, the Richard Fine case) -> the Richard Fine case (9337ms) What does ACLU stand for? a nationwide class action suit -9.955854775330362 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be consider, $x) -> (The ACLU, is considering, a nationwide class action suit) -> a nationwide class action suit (8887ms) What does ACLU stand for? Ed Barocas -9.96496174867533 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (Ed Barocas, are, the ACLU) -> Ed Barocas (13061ms) What does ACLU stand for? the CIA -9.974071041886482 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be run, $x) -> (The ACLU, is running, the CIA) -> the CIA (9113ms) What does ACLU stand for? racial and ethnic profiling -9.99356386621351 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (ACLU, is also working to eliminate, racial and ethnic profiling) -> racial and ethnic profiling (9337ms) What does ACLU stand for? ?the border? -10.010129432904643 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (aclu, is, ?the border?) -> ?the border? (13061ms) What does ACLU stand for? the US Communist Party -10.037300713794531 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be consider, $x) -> (the ACLU, have been considering joining, the US Communist Party) -> the US Communist Party (8887ms) What does ACLU stand for? Apple -10.041731558026594 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be angry, $x) -> (the ACLU, is angry at, Apple) -> Apple (8622ms) What does ACLU stand for? a moratorium -10.063361173440283 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (the ACLU, is working towards, a moratorium) -> a moratorium (9359ms) What does ACLU stand for? FBI -10.064874253257528 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (FBI, Is Keeping Documents on, ACLU) -> FBI (13061ms) What does ACLU stand for? LGBT equality -10.094339916603452 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU, is also working for, LGBT equality) -> LGBT equality (9359ms) What does ACLU stand for? the City -10.112357771011665 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (?The ACLU, is pleased to work with, the City) -> the City (9359ms) What does ACLU stand for? various lawsuits -10.146015209724741 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be consider, $x) -> (ACLU, is considering, various lawsuits) -> various lawsuits (8887ms) What does ACLU stand for? County Counsel -10.146564465377622 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (ACLU, would be happy to work with, County Counsel) -> County Counsel (9359ms) What does ACLU stand for? the PGC. -10.159961167722061 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be consider, $x) -> (The ACLU, is considering a lawsuit against, the PGC.) -> the PGC. (8962ms) What does ACLU stand for? Keith and Food -10.16717806571178 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU, is working to have, Keith and Food) -> Keith and Food (9359ms) What does ACLU stand for? several states -10.175010088086015 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU, is currently working in, several states) -> several states (9359ms) What does ACLU stand for? Governor Romney -10.194371934159378 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be discuss, $x) -> (the ACLU?s letter, was discussed by, Governor Romney) -> Governor Romney (9392ms) What does ACLU stand for? state legislators -10.202912170044169 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (the Maryland ACLU, are working with, state legislators) -> state legislators (9392ms) What does ACLU stand for? Ibarra?s resignation -10.216614403351628 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, have yet, $x) -> (The ACLU, has n?t yet accepted, Ibarra?s resignation) -> Ibarra?s resignation (9415ms) What does ACLU stand for? Facebook -10.216783740021402 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be angry, $x) -> (The ACLU, is now very angry with, Facebook) -> Facebook (8621ms) What does ACLU stand for? sponsors Rep. Edith Ajello -10.232297251242692 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The RI ACLU, is working with, sponsors Rep. Edith Ajello) -> sponsors Rep. Edith Ajello (9392ms) What does ACLU stand for? free-speech -10.243277822383913 What does ACLU stand for? -> what do [ aclu stand ] for ? -> what subject do aclu stand ? -> $x: ($x, instance of, subject) (aclu, stand, $x) -> (free-speech, Instance Of, subject) (The ACLU, took a controversial stand for, free speech) -> free-speech (11166ms) What does ACLU stand for? the PATRIOT Act -10.245579466092469 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (the PATRIOT Act, are, the ACLU) -> the PATRIOT Act (13061ms) What does ACLU stand for? radio advertisements -10.24982638660167 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be run, $x) -> (the ACLU, is running, radio advertisements) -> radio advertisements (9113ms) What does ACLU stand for? Human rights -10.332278174376848 What does ACLU stand for? -> what do [ aclu stand ] for ? -> what subject do aclu stand ? -> $x: ($x, instance of, subject) (aclu, stand, $x) -> (Human rights, Instance Of, subject) (the ACLU, stand up for, human rights) -> Human rights (11165ms) What does ACLU stand for? road checks -10.345217674897924 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be run, $x) -> (ACLU ? Woman claims police, are running, road checks) -> road checks (9113ms) What does ACLU stand for? Senate passage -10.352854307612482 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (ACLU, have been working for, Senate passage) -> Senate passage (9392ms) What does ACLU stand for? religious freedom -10.382647690876599 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is to, religious freedom) -> religious freedom (13061ms) What does ACLU stand for? Free Speech -10.419097589204119 What does ACLU stand for? -> what do [ aclu stand ] for ? -> what subject do aclu stand ? -> $x: ($x, instance of, subject) (aclu, stand, $x) -> (Free Speech, Instance Of, subject) (The ACLU, took a controversial stand for, free speech) -> Free Speech (11166ms) What does ACLU stand for? local police -10.438632755783512 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (ACLU-NC, is working to keep, local police) -> local police (9392ms) What does ACLU stand for? Sacramento -10.469044852196994 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (the ACLU-NC, has been working hard on in, Sacramento) -> Sacramento (9392ms) What does ACLU stand for? the Lawyers ? Committee -10.495276207397207 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU-NC, will be working with, the Lawyers ? Committee) -> the Lawyers ? Committee (9415ms) What does ACLU stand for? police action -10.52387114971414 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, may be reluctant to object to, police action) -> police action (13061ms) What does ACLU stand for? a court challenge -10.534885358215917 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be consider, $x) -> (The ACLU, is considering, a court challenge) -> a court challenge (8962ms) What does ACLU stand for? PLEASE SHARE YOUR THOUGHTS -10.553051047371216 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (PLEASE SHARE YOUR THOUGHTS, Is, the ACLU) -> PLEASE SHARE YOUR THOUGHTS (13483ms) What does ACLU stand for? busy defending pornographers -10.560120787230215 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is, busy defending pornographers) -> busy defending pornographers (13483ms) What does ACLU stand for? a town -10.576256900974403 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (a town, was sued by, ACLU) -> a town (13483ms) What does ACLU stand for? Free speech -10.582301063737454 What does ACLU stand for? -> what do [ aclu stand ] for ? -> what animal do aclu stand ? -> $x: ($x, instance of, animal) (aclu, stand, $x) -> (Free speech, Instance Of, completely different animal) (The ACLU, took a controversial stand for, free speech) -> Free speech (11582ms) What does ACLU stand for? One example -10.612637266766331 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (One example, is, the ACLU) -> One example (13483ms) What does ACLU stand for? a host -10.612935953751682 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is representing, a host) -> a host (13483ms) What does ACLU stand for? a Canadian -10.619322788774815 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is, a Canadian) -> a Canadian (13484ms) What does ACLU stand for? a joke -10.638816269144613 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is, a joke) -> a joke (13564ms) What does ACLU stand for? Taser policies -10.675497604571413 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU-NC, has been working to reform, Taser policies) -> Taser policies (9415ms) What does ACLU stand for? a wide range -10.689962189383204 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU, was soon working on, a wide range) -> a wide range (9415ms) What does ACLU stand for? today?s lawsuit -10.691827022306043 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (today?s lawsuit, is, ACLU) -> today?s lawsuit (13564ms) What does ACLU stand for? community members -10.70085510018792 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (the ACLU-NJ, is working with, community members) -> community members (9415ms) What does ACLU stand for? the GOP -10.705974215532768 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is, the GOP) -> the GOP (13564ms) What does ACLU stand for? two years -10.744678404652873 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU-NC, has been working for, two years) -> two years (9415ms) What does ACLU stand for? CAPPS II -10.74961789080203 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (CAPPS II, is, the ACLU) -> CAPPS II (13564ms) What does ACLU stand for? legal counsel Steven Shapiro -10.75387500233434 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is, legal counsel Steven Shapiro) -> legal counsel Steven Shapiro (13564ms) What does ACLU stand for? a peer harassment case -10.754674851992672 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is involved in, a peer harassment case) -> a peer harassment case (13646ms) What does ACLU stand for? Today?s case -10.761678643931688 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (Today?s case, is, ACLU) -> Today?s case (13645ms) What does ACLU stand for? the Tax Commission -10.76528519421042 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, was also pleased by, the Tax Commission) -> the Tax Commission (13645ms) What does ACLU stand for? Media Matters -10.77496281270092 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (Media Matters, is a sort of, ACLU) -> Media Matters (13646ms) What does ACLU stand for? an equal opportunity employer -10.806991439657224 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is, an equal opportunity employer) -> an equal opportunity employer (13645ms) What does ACLU stand for? Muslims -10.817613109952099 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (Muslims, was, the ACLU) -> Muslims (13744ms) What does ACLU stand for? a tool -10.829380773450998 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is designed to serve as, a tool) -> a tool (13744ms) What does ACLU stand for? Revise Release -10.836777149315404 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, Was Forced to, Revise Release) -> Revise Release (13743ms) What does ACLU stand for? Metro -10.849091474910534 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (the ACLU, is committed to working with, Metro) -> Metro (9980ms) What does ACLU stand for? a professor -10.85775944394492 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (a professor, is counsel to, ACLU) -> a professor (13826ms) What does ACLU stand for? the Death Penalty -10.87871822543471 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (the Death Penalty, is, the ACLU) -> the Death Penalty (13826ms) What does ACLU stand for? Good ! Mom -10.879495673188453 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (Good ! Mom, is, the ACLU) -> Good ! Mom (13826ms) What does ACLU stand for? the Secretary -10.900206685616554 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU-NJ and LWVNJ, are working closely with, the Secretary) -> the Secretary (9980ms) What does ACLU stand for? August 5 -10.900597027995872 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (August 5, is, the ACLU) -> August 5 (13826ms) What does ACLU stand for? Aiding and abetting -10.91397936444958 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (Aiding and abetting, is, the ACLU) -> Aiding and abetting (13826ms) What does ACLU stand for? tough prosecutors -10.91990309042865 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, were, tough prosecutors) -> tough prosecutors (13826ms) What does ACLU stand for? Humanities -10.928421110722757 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (Humanities, was a leader in, ACLU) -> Humanities (13942ms) What does ACLU stand for? A good example -10.953768279521874 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (A good example, is, the ACLU) -> A good example (13942ms) What does ACLU stand for? Meetings -10.98854657653175 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (Meetings, will be coordinated by, ACLU) -> Meetings (13943ms) What does ACLU stand for? Rodd Monts -10.996098730727617 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (Rodd Monts, is the field director for, ACLU.) -> Rodd Monts (13943ms) What does ACLU stand for? a voluntary organization -11.013724330500576 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is, a voluntary organization) -> a voluntary organization (14110ms) What does ACLU stand for? the TSA -11.017624615803303 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, has been unable to get any answers from, the TSA) -> the TSA (14110ms) What does ACLU stand for? substantial efforts -11.021019619601317 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is putting, substantial efforts) -> substantial efforts (14110ms) What does ACLU stand for? CAIR -11.022459112858476 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (* The ACLU, is working with, CAIR) -> CAIR (9980ms) What does ACLU stand for? Prayer -11.024997385092732 What does ACLU stand for? -> what do [ aclu stand ] for ? -> what subject do aclu stand ? -> $x: ($x, instance of, subject) (aclu, stand, $x) -> (Prayer, Instance Of, subject) (The ACLU, has certainly stood against, prayer) -> Prayer (11166ms) What does ACLU stand for? just where -11.035986378399587 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (just where, is, the ACLU) -> just where (14111ms) What does ACLU stand for? FOR?s virtual office -11.038437755075767 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (FOR?s virtual office, is there as well as, ACLU) -> FOR?s virtual office (14111ms) What does ACLU stand for? help him -11.047231803753467 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (the ACLU, is working to, help him) -> help him (9980ms) What does ACLU stand for? Second question -11.060700509109672 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (Second question, is, the ACLU) -> Second question (14111ms) What does ACLU stand for? ACLJ? -11.067820400001672 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (ACLJ?, is curiously similar to, ACLU.) -> ACLJ? (14247ms) What does ACLU stand for? particular significance -11.078492473504724 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (particular significance, was, the ACLU) -> particular significance (14247ms) What does ACLU stand for? 280,000 -11.092660280693819 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is reported to be, 280,000) -> 280,000 (14247ms) What does ACLU stand for? professional organization -11.096902499415165 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU., is a, professional organization) -> professional organization (14247ms) What does ACLU stand for? the Matrix -11.097374651510163 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (the Matrix, is, the ACLU) -> the Matrix (14247ms) What does ACLU stand for? the New York case -11.126669427616564 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (the New York case, was run by, ACLU.) -> the New York case (14247ms) What does ACLU stand for? Principle -11.156751880966578 What does ACLU stand for? -> what do [ aclu stand ] for ? -> what subject do aclu stand ? -> $x: ($x, instance of, subject) (aclu, stand, $x) -> (Principle, Instance Of, subject) (the ACLU, stands for, principle) -> Principle (11582ms) What does ACLU stand for? original sources -11.167697154417755 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, are quoted with, original sources) -> original sources (14288ms) What does ACLU stand for? an excellent point -11.200321581606886 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (an excellent point, is, the ACLU) -> an excellent point (14288ms) What does ACLU stand for? oppose policies -11.229684503224394 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (the ACLU, has been working vigorously to, oppose policies) -> oppose policies (10222ms) What does ACLU stand for? Romero -11.244601100045974 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (Romero, is, the ACLU) -> Romero (14289ms) What does ACLU stand for? a long hair -11.244907548646921 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, called ? Being, a long hair) -> a long hair (14288ms) What does ACLU stand for? Lee Rowland -11.25680542020658 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (Lee Rowland, is, the ACLU) -> Lee Rowland (14329ms) What does ACLU stand for? Treme -11.25759707145528 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (Treme, is, the ACLU) -> Treme (14329ms) What does ACLU stand for? civilian privacy -11.259379578335587 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is expressing grave concern for, civilian privacy) -> civilian privacy (14329ms) What does ACLU stand for? Ann Beeson -11.319548277828732 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (Ann Beeson, were, ACLU attorneys) -> Ann Beeson (14329ms) What does ACLU stand for? New Policy -11.34424124514595 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is Hiring, New Policy) -> New Policy (14329ms) What does ACLU stand for? Caroline -11.348669430218715 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (Caroline, is, the ACLU) -> Caroline (14329ms) What does ACLU stand for? 01-05-06 @ 1:02 -11.354363025313772 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (01-05-06 @ 1:02, am Filed under, ACLU) -> 01-05-06 @ 1:02 (14370ms) What does ACLU stand for? America -11.371986223824448 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is destroying, America) -> America (14370ms) What does ACLU stand for? 2003 -11.39781342105327 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU, has been working since, 2003) -> 2003 (10222ms) What does ACLU stand for? THE DIFFERENCE ? 39 Drumm Street -11.480342189437149 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU AND ACLU FOUNDATION, IS, THE DIFFERENCE ? 39 Drumm Street) -> THE DIFFERENCE ? 39 Drumm Street (14370ms) What does ACLU stand for? Olivares -11.508435946440677 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (Olivares, was only released after, ACLU) -> Olivares (14370ms) What does ACLU stand for? Education -11.541186001820567 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (Education, are being sued by, ACLU) -> Education (14370ms) What does ACLU stand for? a corporation -11.582661448861185 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, a corporation) -> a corporation (14370ms) What does ACLU stand for? Shows -11.58280785782231 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (Shows, are produced by, ACLU) -> Shows (14411ms) What does ACLU stand for? church and state -11.58397338584625 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (church and state, is, the ACLU) -> church and state (14411ms) What does ACLU stand for? staff profession -11.589450095151282 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (staff profession, is to, ACLU.) -> staff profession (14411ms) What does ACLU stand for? the information -11.592793215822338 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be review, $x) -> (The ACLU, is currently reviewing, the information) -> the information (9139ms) What does ACLU stand for? Expansion -11.624630327764098 What does ACLU stand for? -> what do [ aclu stand ] for ? -> what subject do aclu stand ? -> $x: ($x, instance of, subject) (aclu, stand, $x) -> (Expansion, Instance Of, subject) (The ACLU-MN, has always stood for, expansion) -> Expansion (11581ms) What does ACLU stand for? legalization -11.665828358658821 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu define ? -> $x: (aclu, define, $x) -> (The ACLU, defines, legalization) -> legalization (8522ms) What does ACLU stand for? patriotism -11.703347191843072 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu define ? -> $x: (aclu, define, $x) -> (The ACLU, apparently defines, patriotism) -> patriotism (8522ms) What does ACLU stand for? Irina | Dec 30 , 2005 4:19:01 -11.733011566615907 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (Irina | Dec 30 , 2005 4:19:01, is, the ACLU) -> Irina | Dec 30 , 2005 4:19:01 (14411ms) What does ACLU stand for? the legislative front -11.748329218593954 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU, is also working on, the legislative front) -> the legislative front (10222ms) What does ACLU stand for? legislation -11.769430239797575 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU, is also working proactively on, legislation) -> legislation (10222ms) What does ACLU stand for? litigation -11.812020671645477 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be consider, $x) -> (The ACLU, is now considering, litigation) -> litigation (8962ms) What does ACLU stand for? the states -11.850011283531451 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU, is working in, the states) -> the states (10222ms) What does ACLU stand for? the use -11.868620779676899 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (ACLU, is working over, the use) -> the use (10223ms) What does ACLU stand for? the motions -11.945106824418291 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, have yet, $x) -> (The ACLU, has yet to publicly comment on, the motions) -> the motions (14451ms) What does ACLU stand for? The residents -11.984123634694722 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (The residents, are represented by, ACLU) -> The residents (14451ms) What does ACLU stand for? bad -11.990957731723118 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, bad) -> bad (14451ms) What does ACLU stand for? out -12.005432555913295 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, out) -> out (14451ms) What does ACLU stand for? the same script -12.049811139181756 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The NAACP and ACLU, are working from, the same script) -> the same script (14607ms) What does ACLU stand for? the case -12.06413125594241 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be review, $x) -> (the ACLU, is interested in reviewing, the case) -> the case (9139ms) What does ACLU stand for? legislators -12.064370513630246 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU-NJ, is currently working with, legislators) -> legislators (14607ms) What does ACLU stand for? the education system -12.094965996057926 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU-WA, is committed to working in, the education system) -> the education system (14607ms) What does ACLU stand for? the halls -12.096054314095076 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU, has been working within, the halls) -> the halls (14607ms) What does ACLU stand for? the constitutionality -12.110030026527976 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be consider, $x) -> (The ACLU, is considering challenging, the constitutionality) -> the constitutionality (8962ms) What does ACLU stand for? the textbook -12.117853017091964 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, have yet, $x) -> (the ACLU, has yet to weigh in on, the textbook) -> the textbook (14607ms) What does ACLU stand for? involved in -12.120268859129554 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, involved in) -> involved in (14607ms) What does ACLU stand for? the extent -12.125076340025242 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU, is working to uncover, the extent) -> the extent (14647ms) What does ACLU stand for? the wheel -12.137047922085031 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be asleep, $x) -> (the ACLU, is asleep at, the wheel) -> the wheel (8568ms) What does ACLU stand for? nowhere to be found -12.147515133304145 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, nowhere to be found) -> nowhere to be found (14647ms) What does ACLU stand for? the parents -12.147646428897762 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (the Louisiana ACLU, has been working with, the parents) -> the parents (14646ms) What does ACLU stand for? privacy -12.153664079199604 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU, has been working to protect, privacy) -> privacy (14646ms) What does ACLU stand for? documents -12.156787623444998 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, have yet, $x) -> (The ACLU, has released yet another set of, documents) -> documents (14647ms) What does ACLU stand for? right up there -12.167916252168098 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, right up there) -> right up there (14647ms) What does ACLU stand for? simply unable to handle -12.186499363972043 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, simply unable to handle) -> simply unable to handle (14688ms) What does ACLU stand for? the courts -12.190303600807745 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (the courts, was, ACLU) -> the courts (14688ms) What does ACLU stand for? a party -12.206886184359178 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, a party) -> a party (14688ms) What does ACLU stand for? a member -12.206886184359178 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, a member) -> a member (14688ms) What does ACLU stand for? opposed to them -12.208349241986046 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, opposed to them) -> opposed to them (14688ms) What does ACLU stand for? strategies -12.220446090128416 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be discuss, $x) -> (The ACLU-NCLF, is discussing, strategies) -> strategies (14688ms) What does ACLU stand for? the time -12.223569232354626 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (the time, was director of, ACLU) -> the time (14728ms) What does ACLU stand for? the county -12.245655314809557 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be review, $x) -> (The ACLU, is reviewing the action taken by, the county) -> the county (9139ms) What does ACLU stand for? full of crap -12.246142479258356 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, full of crap) -> full of crap (14729ms) What does ACLU stand for? part of an effort -12.285126709926256 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, part of an effort) -> part of an effort (14729ms) What does ACLU stand for? right at the top of the list -12.31761356881617 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, right at the top of the list) -> right at the top of the list (14728ms) What does ACLU stand for? reforms -12.331845526129445 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (the ACLU, are working towards, reforms) -> reforms (14768ms) What does ACLU stand for? the actual hill -12.340496693607951 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, has been doing a great job on, the actual hill) -> the actual hill (14768ms) What does ACLU stand for? The case -12.377098876305624 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (The case, is, ACLU) -> The case (14768ms) What does ACLU stand for? The issue -12.387080214450275 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (The issue, is, the ACLU) -> The issue (14769ms) What does ACLU stand for? out there -12.410308990468481 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, out there) -> out there (14769ms) What does ACLU stand for? the community -12.413300461148008 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (the ACLU-NJ, are working together to educate, the community) -> the community (14769ms) What does ACLU stand for? 2008 -12.437988841994152 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (2008, is filed under, ACLU) -> 2008 (14808ms) What does ACLU stand for? right there -12.442561832529275 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, right there) -> right there (14808ms) What does ACLU stand for? suit -12.44420319015793 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be consider, $x) -> (the ACLU, is considering filing, suit) -> suit (8962ms) What does ACLU stand for? 2007 -12.450633815435904 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (2007, is filed under, ACLU) -> 2007 (14809ms) What does ACLU stand for? The question -12.456314685091147 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (The question, is, the ACLU) -> The question (14808ms) What does ACLU stand for? the other two authors -12.463349397816954 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (the other two authors, are, ACLU lawyers) -> the other two authors (14808ms) What does ACLU stand for? 2005 -12.46756353381724 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (2005, is filed under, ACLU) -> 2005 (14808ms) What does ACLU stand for? protections -12.469924466702498 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (the ACLU, is working to bring, protections) -> protections (14854ms) What does ACLU stand for? worried about -12.477437775583404 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, worried about) -> worried about (14854ms) What does ACLU stand for? 2006 -12.478791079722056 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (2006, is filed under, ACLU) -> 2006 (14854ms) What does ACLU stand for? conjunction -12.49955058685627 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU, is working in, conjunction) -> conjunction (14854ms) What does ACLU stand for? discrimination -12.509902257432431 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (discrimination, is, the ACLU) -> discrimination (14854ms) What does ACLU stand for? coordination -12.521128408396937 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (the ACLU, is working in, coordination) -> coordination (14854ms) What does ACLU stand for? the most important church-state cases -12.521556764503835 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is one of, the most important church-state cases) -> the most important church-state cases (14894ms) What does ACLU stand for? members -12.52742813020942 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU and other groups, will be working with, members) -> members (14893ms) What does ACLU stand for? terrorist organization -12.535262883809711 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, terrorist organization) -> terrorist organization (14894ms) What does ACLU stand for? coalition -12.53792816082695 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU, is working in, coalition) -> coalition (14894ms) What does ACLU stand for? The real Thomas Jefferson -12.556994813786979 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (The real Thomas Jefferson, is, the ACLU) -> The real Thomas Jefferson (14894ms) What does ACLU stand for? companies -12.559515668898454 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: (aclu, be be work, $x) -> (The ACLU, is working with, companies) -> companies (14934ms) What does ACLU stand for? The brief -12.592432804163797 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (The brief, was written by, ACLU) -> The brief (14934ms) What does ACLU stand for? difficult -12.598410937270854 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what do aclu stand 4 ? -> $x: (aclu, stand, $x) -> $x: ($x, be people like, aclu) -> (difficult, are people like, the ACLU) -> difficult (8522ms) What does ACLU stand for? The common-sense -12.620756382950862 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (The common-sense, is with, ACLU) -> The common-sense (14935ms) What does ACLU stand for? the authorised director -12.646298799748223 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (the authorised director, is to, ACLU) -> the authorised director (14934ms) What does ACLU stand for? the right questions -12.668403775989407 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is asking, the right questions) -> the right questions (14973ms) What does ACLU stand for? a communist front -12.676928264845412 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, a communist front) -> a communist front (14973ms) What does ACLU stand for? The following statement -12.690722593011856 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (The following statement, can be attributed to, ACLU) -> The following statement (14973ms) What does ACLU stand for? a liberal organization -12.702939463276564 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, a liberal organization) -> a liberal organization (14973ms) What does ACLU stand for? The ruling -12.721997458987039 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (The ruling, was made public on, ACLU) -> The ruling (15013ms) What does ACLU stand for? the resolution -12.727194413441243 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (the resolution, was, the ACLU) -> the resolution (15013ms) What does ACLU stand for? The interactive forum -12.735453880839444 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (The interactive forum, will be moderated by, ACLU) -> The interactive forum (15013ms) What does ACLU stand for? the challenge -12.73727548710328 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (the challenge, are, the ACLU) -> the challenge (15013ms) What does ACLU stand for? the most dangerous groups -12.743411663853903 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is one of, the most dangerous groups) -> the most dangerous groups (15013ms) What does ACLU stand for? The newest one -12.750733417683204 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (The newest one, was, ACLU) -> The newest one (15012ms) What does ACLU stand for? The eight groups -12.750733417683204 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (The eight groups, were, the ACLU) -> The eight groups (15052ms) What does ACLU stand for? the hell -12.808340334851756 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (the hell, was, the ACLU) -> the hell (15052ms) What does ACLU stand for? nation -12.819297213287932 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is unique in, nation) -> nation (15052ms) What does ACLU stand for? the pro-choice movement -12.83102595755976 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, has been centrally involved in, the pro-choice movement) -> the pro-choice movement (15052ms) What does ACLU stand for? the workers -12.849404279359867 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (the workers, were, the ACLU) -> the workers (15052ms) What does ACLU stand for? the activities -12.875264710749807 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is talking about, the activities) -> the activities (15093ms) What does ACLU stand for? the report -12.882184165946057 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (the report, is, the ACLU) -> the report (15093ms) What does ACLU stand for? the laws -12.89662957071385 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (the laws, has been condemned by, ACLU) -> the laws (15092ms) What does ACLU stand for? the lawsuit -12.910632641114324 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (the lawsuit, is available via, ACLU) -> the lawsuit (15092ms) What does ACLU stand for? the window -12.941251903105316 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, was peek out, the window) -> the window (15092ms) What does ACLU stand for? the suit -12.998660188881468 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (the suit, were represented by, ACLU) -> the suit (15132ms) What does ACLU stand for? the school -13.020765112420357 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (the school, was represented by, ACLU) -> the school (15132ms) What does ACLU stand for? government -13.093198709129034 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (government, are, the ACLU) -> government (15132ms) What does ACLU stand for? the most -13.186302366885847 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (the most, is, the ACLU.) -> the most (15132ms) What does ACLU stand for? The other anomaly -13.216597005850888 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (The other anomaly, was, the ACLU.) -> The other anomaly (15132ms) What does ACLU stand for? groups -13.237798881308205 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (groups, are incompatible with, ACLU) -> groups (15178ms) What does ACLU stand for? liberals -13.310301009789399 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (liberals, are the ones in, ACLU) -> liberals (15178ms) What does ACLU stand for? persons -13.338470179866171 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (persons, were ever members of, ACLU) -> persons (15178ms) What does ACLU stand for? inmates -13.34802860531471 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, is investigating whether, inmates) -> inmates (15178ms) What does ACLU stand for? comment -13.38244772844858 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, was reached for, comment) -> comment (15178ms) What does ACLU stand for? behalf -13.433048623330883 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (ACLU, was acting on, behalf) -> behalf (15261ms) What does ACLU stand for? the scapegoat -13.638753429744693 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, the scapegoat) -> the scapegoat (15488ms) What does ACLU stand for? insane -14.015835484303466 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, insane) -> insane (15690ms) What does ACLU stand for? asleep -14.015835484303466 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, asleep) -> asleep (15690ms) What does ACLU stand for? upset -14.015835484303466 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, upset) -> upset (15690ms) What does ACLU stand for? terrorists -14.044109486356541 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, are, terrorists) -> terrorists (15690ms) What does ACLU stand for? fascists -14.064289868805785 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, are, fascists) -> fascists (15728ms) What does ACLU stand for? the nations foremost guardian of liberty -14.179104638397455 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, the nations foremost guardian of liberty) -> the nations foremost guardian of liberty (15728ms) What does ACLU stand for? the problem -14.249160361358921 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, the problem) -> the problem (15728ms) What does ACLU stand for? the heck -14.257060488062788 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: ($x, be, aclu) -> (the heck, is, the ACLU) -> the heck (15729ms) What does ACLU stand for? right -14.51940927967021 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, right) -> right (15769ms) What does ACLU stand for? wrong -14.532382041568273 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, wrong) -> wrong (15768ms) What does ACLU stand for? successful -14.54215106940705 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, successful) -> successful (15768ms) What does ACLU stand for? good -14.545879837970462 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, good) -> good (15768ms) What does ACLU stand for? correct -14.60518427674733 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, correct) -> correct (15768ms) What does ACLU stand for? great -14.608685015296576 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, great) -> great (15768ms) What does ACLU stand for? important -14.61375518687261 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, important) -> important (15805ms) What does ACLU stand for? genuine -14.61375518687261 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, was, genuine) -> genuine (15806ms) What does ACLU stand for? present -14.61880079917923 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, present) -> present (15808ms) What does ACLU stand for? therefore -14.619659100937508 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, was, therefore) -> therefore (15805ms) What does ACLU stand for? involved -14.619659100937508 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, involved) -> involved (15806ms) What does ACLU stand for? active -14.640060219801459 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, active) -> active (15843ms) What does ACLU stand for? beloved -14.640060219801459 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, beloved) -> beloved (15843ms) What does ACLU stand for? worried -14.640060219801459 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, worried) -> worried (15843ms) What does ACLU stand for? liberal -14.640060219801459 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, liberal) -> liberal (15843ms) What does ACLU stand for? controversial -14.640060219801459 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, controversial) -> controversial (15843ms) What does ACLU stand for? around -14.640060219801459 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, around) -> around (15806ms) What does ACLU stand for? still -14.67893891353899 What does ACLU stand for? -> what do [ aclu ] stand for ? -> what be the acronym for aclu ? -> $x: ($x, be the acronym for, aclu) -> $x: (aclu, be, $x) -> (the ACLU, is, still) -> still (15843ms) What is the highest dam in the U.S.? Bhakra village -11.782560888284621 What is the highest dam in the U.S.? -> what be [ the highest dam ] in the us ? -> what be the highest dam ever build ? -> what be the highest dam build ? -> $x: (the highest dam, build, $x) -> (the world?s highest gravity dam, was built at, Bhakra village) -> Bhakra village (7392ms) What is the highest dam in the U.S.? North America -11.802274292208711 What is the highest dam in the U.S.? -> what be [ the highest dam ] in the us ? -> what be the highest dam ever build ? -> what be the highest dam build ? -> $x: (the highest dam, build, $x) -> (the highest dam, built in, North America) -> North America (7392ms) What is the highest dam in the U.S.? a narrow gorge -11.84175301619404 What is the highest dam in the U.S.? -> what be [ the highest dam ] in the us ? -> what be the highest dam ever build ? -> what be the highest dam build ? -> $x: (the highest dam, build, $x) -> (the second highest dam, was built across, a narrow gorge) -> a narrow gorge (7392ms) What is the highest dam in the U.S.? Condit -12.349178006622235 What is the highest dam in the U.S.? -> what be [ the highest dam ] in the us ? -> what bring about the highest dam ? -> $x: ($x, bring about, the highest dam) -> $x: ($x, will, the highest dam) -> (Condit, will be, the second-highest dam) -> Condit (8021ms) What is the highest dam in the U.S.? The main dam -14.846909066273982 What is the highest dam in the U.S.? -> what be [ the highest dam ] in the us ? -> what bring about the highest dam ? -> $x: ($x, bring about, the highest dam) -> $x: ($x, bring about, highest dam) -> $x: ($x, will, highest dam) -> (The main dam, will be, highest rockfill dam) -> The main dam (11246ms) What is the highest dam in the U.S.? power -15.832647758002775 What is the highest dam in the U.S.? -> what [ be the highest dam ] in the us ? -> which one be be the highest dam ? -> $x: ($x, instance of, one) ($x, be be, the highest dam) -> (power, Instance Of, one's property) (power, was, the highest dam) -> power (10577ms) Where is the world's largest meteorite? Hoba meteorite -11.023010757106308 Where is the world's largest meteorite? -> where be the world s [ largest meteorite ] ? -> what be largest meteorite in the world ? -> $x: ($x, be largest meteorite in, the world) -> (Hoba meteorite, is the largest known meteorite in, the world) -> Hoba meteorite (5364ms) What is the largest variety of cactus? tip -14.918732874633445 What is the largest variety of cactus? -> what be the largest [ variety of cactus ] ? -> what water be variety of cactus ? -> $x: ($x, instance of, water) ($x, be variety of, cactus) -> $x: ($x, instance of, water) ($x, variety of, cactus) -> (tip, Instance Of, water cost) (Tip, here are several varieties of, the Hoodia Cactus) -> tip (3041ms) What is the largest variety of cactus? Nature -17.06470872471208 What is the largest variety of cactus? -> what be the largest [ variety of cactus ] ? -> what water be variety of cactus ? -> $x: ($x, instance of, water) ($x, be variety of, cactus) -> $x: ($x, instance of, water) ($x, be many species of, cactus) -> (Nature, Instance Of, water purification technology) (nature, there are many species of, cactus) -> Nature (6015ms) What is the largest variety of cactus? The garden -17.06967100151267 What is the largest variety of cactus? -> what be the largest [ variety of cactus ] ? -> what water be variety of cactus ? -> $x: ($x, instance of, water) ($x, be variety of, cactus) -> $x: ($x, be a by, water) ($x, be variety of, cactus) -> (The garden, is a joint effort by, water agencies) (the gardening, was varieties of, cactus) -> The garden (5115ms) What is the largest variety of cactus? the garden -17.341435670154752 What is the largest variety of cactus? -> what be the largest [ variety of cactus ] ? -> what water be variety of cactus ? -> $x: ($x, instance of, water) ($x, be variety of, cactus) -> $x: (water, element, $x) ($x, be variety of, cactus) -> (the water, is an essential element of, the garden) (the gardening, was varieties of, cactus) -> the garden (5315ms) What is the largest variety of cactus? nature -18.73680722729617 What is the largest variety of cactus? -> what be the largest [ variety of cactus ] ? -> what water be variety of cactus ? -> $x: ($x, instance of, water) ($x, be variety of, cactus) -> $x: ($x, instance of, water) ($x, be many species of, cactus) -> (nature, Instance Of, water related sector) (nature, there are many species of, cactus) -> nature (6015ms) What are coral reefs? gray-areas -4.1561581354428085 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, gray-areas) -> gray-areas (5670ms) What are coral reefs? species-rich community -4.211625741254346 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, species-rich community) -> species-rich community (5670ms) What are coral reefs? near-shore environment -4.260238965883286 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, near-shore environment) -> near-shore environment (5670ms) What are coral reefs? healthy coastal ecosystem -4.59756413059656 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, healthy coastal ecosystem) -> healthy coastal ecosystem (5670ms) What are coral reefs? sensitive benthic community -4.612346971500723 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, sensitive benthic community) -> sensitive benthic community (5670ms) What are coral reefs? critical coastal habitat -4.660970654933626 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, critical coastal habitat) -> critical coastal habitat (5670ms) What are coral reefs? world's ecosystem -4.677096316288021 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, world's ecosystem) -> world's ecosystem (5832ms) What are coral reefs? natural barrier -4.701911088775759 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, natural barrier) -> natural barrier (5831ms) What are coral reefs? coastal zone feature -4.748506120423492 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, coastal zone feature) -> coastal zone feature (5831ms) What are coral reefs? sensitive coastal ecosystem -4.7737575810439665 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, sensitive coastal ecosystem) -> sensitive coastal ecosystem (5832ms) What are coral reefs? coastal marine habitat -4.800189604456312 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, coastal marine habitat) -> coastal marine habitat (5832ms) What are coral reefs? shallow marine area -4.81472968701976 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, shallow marine area) -> shallow marine area (5831ms) What are coral reefs? marine organism -4.819811626569198 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, marine organism) -> marine organism (5855ms) What are coral reefs? great location for diving -4.820225591076687 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, great location for diving) -> great location for diving (5855ms) What are coral reefs? marine turtle habitat -4.8238691681535935 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, marine turtle habitat) -> marine turtle habitat (5856ms) What are coral reefs? key coastal habitat -4.8261353158439295 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, key coastal habitat) -> key coastal habitat (5855ms) What are coral reefs? natural and historical resource -4.83283611361275 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, natural and historical resource) -> natural and historical resource (5855ms) What are coral reefs? potential tourist attraction -4.8372230945341 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, potential tourist attraction) -> potential tourist attraction (5855ms) What are coral reefs? spectacular dive site -4.8427193457705435 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, spectacular dive site) -> spectacular dive site (5876ms) What are coral reefs? natural water area -4.843550427391042 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, natural water area) -> natural water area (5876ms) What are coral reefs? short, word -4.843590415777836 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, short, word) -> short, word (5876ms) What are coral reefs? importance source of food -4.846343853381237 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (Coral reef, Instance Of, importance source of food) -> importance source of food (5876ms) What are coral reefs? protected natural resource -4.851528368552905 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, protected natural resource) -> protected natural resource (5876ms) What are coral reefs? benthic community -4.876388434128503 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, benthic community) -> benthic community (5876ms) What are coral reefs? ecologically vital area -4.882117049969242 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, ecologically vital area) -> ecologically vital area (5894ms) What are coral reefs? active, living community -4.891237808816379 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, active, living community) -> active, living community (5894ms) What are coral reefs? Natural ecosystem s -4.891237808816379 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, Natural ecosystem s) -> Natural ecosystem s (5894ms) What are coral reefs? ancient historical site -4.893867811076828 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, ancient historical site) -> ancient historical site (5894ms) What are coral reefs? large, complex structure -4.894074199291191 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, large, complex structure) -> large, complex structure (5894ms) What are coral reefs? shallow coastal area -4.894455349070922 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, shallow coastal area) -> shallow coastal area (5894ms) What are coral reefs? underwater habitat -4.909316454215925 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, underwater habitat) -> underwater habitat (5941ms) What are coral reefs? tourist attraction -4.9098562235010785 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, tourist attraction) -> tourist attraction (5941ms) What are coral reefs? bit of a letdown -4.9125741641268945 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (Coral Reef, Instance Of, bit of a letdown) -> bit of a letdown (5942ms) What are coral reefs? marine management issue -4.923244712007243 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, marine management issue) -> marine management issue (5942ms) What are coral reefs? beautiful shallow water habitat -4.930222039484278 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, beautiful shallow water habitat) -> beautiful shallow water habitat (5962ms) What are coral reefs? intertidal and marine ecosystem -4.930222039484278 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, intertidal and marine ecosystem) -> intertidal and marine ecosystem (5962ms) What are coral reefs? stressed and marginal environment -4.930222039484278 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, stressed and marginal environment) -> stressed and marginal environment (5942ms) What are coral reefs? fragile and complicated substructure -4.930222039484278 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, fragile and complicated substructure) -> fragile and complicated substructure (5962ms) What are coral reefs? fragile and important ecosystem -4.930222039484278 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, fragile and important ecosystem) -> fragile and important ecosystem (5942ms) What are coral reefs? fish and invertebrate species -4.930222039484278 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, fish and invertebrate species) -> fish and invertebrate species (5962ms) What are coral reefs? Ecosystem A bio logical community -4.962708898374194 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, Ecosystem A bio logical community) -> Ecosystem A bio logical community (5962ms) What are coral reefs? key resource -4.97107275172417 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, key resource) -> key resource (5962ms) What are coral reefs? delicate and fragile ecosystem -4.971349701522278 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, delicate and fragile ecosystem) -> delicate and fragile ecosystem (5979ms) What are coral reefs? essential part of the maritime Eco system -4.990197778973354 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, essential part of the maritime Eco system) -> essential part of the maritime Eco system (5979ms) What are coral reefs? critical habitat -4.9926671694002 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, critical habitat) -> critical habitat (5979ms) What are coral reefs? iconic system -5.0018482877702155 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, iconic system) -> iconic system (5979ms) What are coral reefs? oligotrophic environment -5.018401363975568 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, oligotrophic environment) -> oligotrophic environment (5979ms) What are coral reefs? shore habitat -5.070856801684402 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, shore habitat) -> shore habitat (5979ms) What are coral reefs? coastal zone -5.077498535130999 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, coastal zone) -> coastal zone (6104ms) What are coral reefs? solid object -5.079152013065301 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, solid object) -> solid object (6104ms) What are coral reefs? water resource -5.079842677501047 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, water resource) -> water resource (6104ms) What are coral reefs? biogenic habitat -5.087005410121426 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, biogenic habitat) -> biogenic habitat (6104ms) What are coral reefs? benthic resource -5.10254094888953 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, benthic resource) -> benthic resource (6104ms) What are coral reefs? healthy environment -5.102773308485888 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, healthy environment) -> healthy environment (6104ms) What are coral reefs? ecosystem type -5.10939555882063 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, ecosystem type) -> ecosystem type (6148ms) What are coral reefs? land barrier -5.119931556733319 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, land barrier) -> land barrier (6148ms) What are coral reefs? marine component -5.12774767395412 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, marine component) -> marine component (6148ms) What are coral reefs? cal structure -5.136123132769108 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, cal structure) -> cal structure (6149ms) What are coral reefs? aquatic organism -5.140107642203326 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, aquatic organism) -> aquatic organism (6149ms) What are coral reefs? beautiful resource -5.165004857317525 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, beautiful resource) -> beautiful resource (6149ms) What are coral reefs? beautiful organism -5.183283818972342 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, beautiful organism) -> beautiful organism (6233ms) What are coral reefs? distinctive community -5.192880271650182 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, distinctive community) -> distinctive community (6234ms) What are coral reefs? critical ecosystem -5.2007593322316845 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, critical ecosystem) -> critical ecosystem (6234ms) What are coral reefs? marine structure -5.2007593322316845 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, marine structure) -> marine structure (6234ms) What are coral reefs? calcareous substrate -5.2007593322316845 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, calcareous substrate) -> calcareous substrate (6234ms) What are coral reefs? common ecosystem -5.2007593322316845 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, common ecosystem) -> common ecosystem (6271ms) What are coral reefs? offshore habitat -5.2007593322316845 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, offshore habitat) -> offshore habitat (6233ms) What are coral reefs? maritime resource -5.203501176510549 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, maritime resource) -> maritime resource (6271ms) What are coral reefs? closed ecosystem -5.206243020789414 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, closed ecosystem) -> closed ecosystem (6271ms) What are coral reefs? bottom area -5.206852319245673 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, bottom area) -> bottom area (6272ms) What are coral reefs? underwater site -5.208237089188721 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, underwater site) -> underwater site (6271ms) What are coral reefs? deepwater habitat -5.208237089188721 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, deepwater habitat) -> deepwater habitat (6271ms) What are coral reefs? sensitive system -5.208984864761854 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, sensitive system) -> sensitive system (6332ms) What are coral reefs? threatened area -5.208984864761854 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, threatened area) -> threatened area (6333ms) What are coral reefs? aquatic community -5.211726709347144 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, aquatic community) -> aquatic community (6333ms) What are coral reefs? prime candidate -5.2189149866437345 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, prime candidate) -> prime candidate (6333ms) What are coral reefs? aquatic species -5.224674503629908 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, aquatic species) -> aquatic species (6333ms) What are coral reefs? awesome place -5.227420740510586 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (Coral Reef, Instance Of, awesome place) -> awesome place (6332ms) What are coral reefs? biological system -5.230095146477658 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, biological system) -> biological system (6419ms) What are coral reefs? excellent spot -5.231327977442454 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (Coral Reef, Instance Of, excellent spot) -> excellent spot (6419ms) What are coral reefs? amazing place -5.232704761951023 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, amazing place) -> amazing place (6419ms) What are coral reefs? florida water -5.237317254315618 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, florida water) -> florida water (6419ms) What are coral reefs? limestone formation -5.237317254315618 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, limestone formation) -> limestone formation (6419ms) What are coral reefs? wonderful place -5.24052040022961 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (Coral Reef, Instance Of, wonderful place) -> wonderful place (6419ms) What are coral reefs? aquaculture facility -5.241886994269684 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (Reef Corals, Instance Of, aquaculture facility) -> aquaculture facility (6442ms) What are coral reefs? romantic restaurant -5.243213691779865 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (Coral Reef, Instance Of, romantic restaurant) -> romantic restaurant (6442ms) What are coral reefs? benthic habitat -5.259513136543912 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, benthic habitat) -> benthic habitat (6442ms) What are coral reefs? habitat and community -5.567778283874873 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, habitat and community) -> habitat and community (6459ms) What are coral reefs? National Monument -5.8105576834098525 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> $x: (coral reefs, np classification, $x) -> (Virgin Islands Coral Reef National Monument, NPS Classification, National Monument) -> National Monument (6482ms) What are coral reefs? topic -6.888010359967717 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, topic) -> topic (6765ms) What are coral reefs? community -6.9242392993413295 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, community) -> community (6765ms) What are coral reefs? structure -7.01954773751422 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, structure) -> structure (6775ms) What are coral reefs? species -7.0305891825185345 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, species) -> species (6776ms) What are coral reefs? system -7.073139118030009 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, system) -> system (6775ms) What are coral reefs? entity -7.242652086027924 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, entity) -> entity (6775ms) What are coral reefs? attraction -7.291217314593251 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, attraction) -> attraction (6775ms) What are coral reefs? location -7.330330692107864 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, location) -> location (6785ms) What are coral reefs? project -7.362272172754137 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (Coral Reef, Instance Of, project) -> project (6785ms) What are coral reefs? food -7.38026351474802 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (Coral Reef, Instance Of, food) -> food (6785ms) What are coral reefs? biomes -7.402721279695028 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (coral reef, Instance Of, biomes) -> biomes (6785ms) What are coral reefs? brand -7.424624158375828 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> (Coral Reef, Instance Of, brand) -> brand (6785ms) What are coral reefs? Daughters of a Coral Dawn -9.736262952096581 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Daughters of a coral dawn, Part of series, Daughters of a Coral Dawn) -> Daughters of a Coral Dawn (8637ms) What are coral reefs? Bowman-Biltmore Hotels -9.77524718276448 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral Gables Biltmore Hotel, Part of Brand, Bowman-Biltmore Hotels) -> Bowman-Biltmore Hotels (8637ms) What are coral reefs? habitat -9.890997514238514 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> $x: (coral reefs, be the type of, $x) -> (?Coral reef?, may be the type of, habitat) -> habitat (6812ms) What are coral reefs? pacific.noun.01 -10.021613778540596 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (coral sea.noun.01, part meronym, pacific.noun.01) -> pacific.noun.01 (8637ms) What are coral reefs? world war ii.noun.01 -10.128820412877317 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (coral sea.noun.02, part meronym, world war ii.noun.01) -> world war ii.noun.01 (8637ms) What are coral reefs? FDA OTC monograph part 333e -10.167804643545217 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral 0.003 soap, FDA OTC monograph part, FDA OTC monograph part 333e) -> FDA OTC monograph part 333e (8637ms) What are coral reefs? Uttara Kannada -10.236707701026663 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Uttara Kannada, is well known for, coral reefs) -> Uttara Kannada (7590ms) What are coral reefs? Sea Pictures -10.261983492045506 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Where Corals Lie, Part of, Sea Pictures) -> Sea Pictures (8637ms) What are coral reefs? South Florida -10.369401915791846 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (South Florida, are known for, their coral reefs) -> South Florida (7591ms) What are coral reefs? km -10.372331577294894 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (km, little is known about, the coral reef) -> km (7591ms) What are coral reefs? Hard corals -10.374953874543111 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Hard corals, are also known as, reef building corals) -> Hard corals (7590ms) What are coral reefs? Acroporids -10.386287361377503 What are coral reefs? -> what be coral [ reef ] ? -> what be reef of coral ? -> $x: ($x, be reef of, coral) -> (Acroporids, are reef-building types of, coral) -> Acroporids (7186ms) What are coral reefs? Grand Cayman -10.397855306238695 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Grand Cayman, is known for, its stunning coral reefs) -> Grand Cayman (7590ms) What are coral reefs? Palmyra Atoll -10.40181937180844 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Palmyra Atoll, is known for, its steep coral reef walls) -> Palmyra Atoll (7590ms) What are coral reefs? lobster.noun.01 -10.557646950224207 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (coral.noun.03, part meronym, lobster.noun.01) -> lobster.noun.01 (8656ms) What are coral reefs? African coral reefs -10.630111684226277 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> $x: ($x, know, coral reef) -> (African coral reefs, Also known as, The African Coral Reef) -> African coral reefs (11250ms) What are coral reefs? Mnemba Atoll -10.667303530726201 What are coral reefs? -> what be coral [ reef ] ? -> what be large reef call ? -> $x: (large reef, call, $x) -> (a large coral reef, called, Mnemba Atoll) -> Mnemba Atoll (6920ms) What are coral reefs? conservation -10.668457642232557 What are coral reefs? -> $x: (coral reefs, instance of, $x) -> $x: (coral reefs, modelling, $x) -> (coral reefs, create models for, conservation) -> conservation (6812ms) What are coral reefs? Coral Reef Alliance -10.752329852777901 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> $x: ($x, know, coral reef) -> (Coral Reef Alliance, Also known as, The Coral Reef Alliance) -> Coral Reef Alliance (11250ms) What are coral reefs? Coral Reef Place -10.7913140834458 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> $x: ($x, know, coral reef) -> (Coral Reef Place, Also known as, Coral Reef Place, Vancouver) -> Coral Reef Place (11250ms) What are coral reefs? AES Coral Reef LLC -10.7913140834458 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> $x: ($x, know, coral reef) -> (AES Coral Reef LLC, Also known as, AES Coral Reef, LLC) -> AES Coral Reef LLC (11250ms) What are coral reefs? Le R?cif de corail -10.823800942335716 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> $x: ($x, know, coral reef) -> (Le R?cif de corail, Also known as, Coral Reefs) -> Le R?cif de corail (11250ms) What are coral reefs? rain forests -10.838257836169221 What are coral reefs? -> what be coral [ reef ] ? -> what be large reef call ? -> $x: (large reef, call, $x) -> (large tropical reefs, called, rain forests) -> rain forests (6921ms) What are coral reefs? Environmental guidelines for reef coral harvesting operations -10.851289822934875 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> $x: ($x, know, coral reef) -> (Environmental guidelines for reef coral harvesting operations, Also known as, Reef coral harvesting operations) -> Environmental guidelines for reef coral harvesting operations (11250ms) What are coral reefs? Environmental issues with coral reefs -10.874851720591296 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> $x: ($x, know, coral reef) -> (Environmental issues with coral reefs, Also known as, Human impact on coral reefs) -> Environmental issues with coral reefs (11250ms) What are coral reefs? Pisces guide to watching fishes -10.874851720591296 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> $x: ($x, know, coral reef) -> (Pisces guide to watching fishes, Also known as, Coral reef fish behavior.) -> Pisces guide to watching fishes (11317ms) What are coral reefs? A guide to the coral reefs of the Caribbean -10.874851720591296 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> $x: ($x, know, coral reef) -> (A guide to the coral reefs of the Caribbean, Also known as, Coral reefs of the Caribbean) -> A guide to the coral reefs of the Caribbean (11250ms) What are coral reefs? Pulau Hantu -10.922200880947827 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Pulau Hantu, is known for, its rich coral reefs) -> Pulau Hantu (7612ms) What are coral reefs? The Yucatan Peninsula -10.935767394572768 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (The Yucatan Peninsula, might be known for, coral reefs) -> The Yucatan Peninsula (7612ms) What are coral reefs? Scholastic's the magic school bus takes a dive: a book about coral reefs -10.955458212573795 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> $x: ($x, know, coral reef) -> (Scholastic's the magic school bus takes a dive: a book about coral reefs, Also known as, Book about coral reefs.) -> Scholastic's the magic school bus takes a dive: a book about coral reefs (11317ms) What are coral reefs? Coral reefs & islands: the natural history of a threatened paradise -10.955458212573795 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> $x: ($x, know, coral reef) -> (Coral reefs & islands: the natural history of a threatened paradise, Also known as, Coral reefs and islands.) -> Coral reefs & islands: the natural history of a threatened paradise (11316ms) What are coral reefs? A field guide to the coral reef fishes of the Indian and West Pacific Oceans -10.976953277102462 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> $x: ($x, know, coral reef) -> (A field guide to the coral reef fishes of the Indian and West Pacific Oceans, Also known as, Coral reef fishes of the Indian and West Pacific Oceans.) -> A field guide to the coral reef fishes of the Indian and West Pacific Oceans (11316ms) What are coral reefs? Aqaba -10.980637589288152 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Aqaba, is also well known for, its coral reef) -> Aqaba (7612ms) What are coral reefs? recreational fishing -11.009336956448731 What are coral reefs? -> what be coral [ reef ] ? -> what be reef mean ? -> $x: (reef, mean, $x) -> (clean artificial reefs, were meant for, recreational fishing) -> recreational fishing (7186ms) What are coral reefs? Giftun Island -11.02208004173669 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Giftun Island, is known for, its vibrant coral reefs) -> Giftun Island (7612ms) What are coral reefs? Montserrat -11.05003672430184 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Montserrat, is known for, its coral reefs) -> Montserrat (7612ms) What are coral reefs? ?coral reef? -11.077503440712773 What are coral reefs? -> what be coral [ reef ] ? -> what be reef mean ? -> $x: (reef, mean, $x) -> (Reef fishing, does n?t have to mean, ?coral reef?) -> ?coral reef? (7186ms) What are coral reefs? HOH -11.079128712753553 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral, is part of, HOH) -> HOH (8657ms) What are coral reefs? Porto de Galinhas -11.100529294327837 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Porto de Galinhas, is known for, its coral reefs) -> Porto de Galinhas (7612ms) What are coral reefs? Garden -11.104882033728487 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Garden, is known as, the second largest coral reef) -> Garden (7626ms) What are coral reefs? The Bahamas -11.105997613311954 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (The Bahamas, is known to offer worldly, coral reefs) -> The Bahamas (7626ms) What are coral reefs? Anguilla -11.120837153158131 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Anguilla, is known for, its coral reef) -> Anguilla (7626ms) What are coral reefs? Barbados -11.165732629242878 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Barbados, is known for, its extensive coral reefs) -> Barbados (7626ms) What are coral reefs? Kayangel -11.182467813545637 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Kayangel, is known as, Palau?s true coral reef) -> Kayangel (7626ms) What are coral reefs? type of underwater environment -11.183224939442912 What are coral reefs? -> what be coral [ reef ] ? -> what be coral reef reef ? -> $x: (coral reef reef, instance of, $x) -> (Reefs Coral reef, Instance Of, type of underwater environment) -> type of underwater environment (10914ms) What are coral reefs? Lakshadweep -11.212595140928537 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Lakshadweep, is well known for, its coral reefs) -> Lakshadweep (7626ms) What are coral reefs? Florida -11.216131939235218 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Florida, is known for, its beautiful coral reefs) -> Florida (7683ms) What are coral reefs? the City -11.217764762984359 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (the City, is known for, its beautiful coral reef) -> the City (7683ms) What are coral reefs? Hurghada -11.223299971714725 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Hurghada, is known worldwide especially for, its coral reefs) -> Hurghada (7683ms) What are coral reefs? Sea Aquarium beachCura?ao -11.22660678510221 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Sea Aquarium beachCura?ao, is known for, its coral reefs) -> Sea Aquarium beachCura?ao (7683ms) What are coral reefs? Antigua -11.243636522451421 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Antigua, is best known for, its magnificent coral reef) -> Antigua (7683ms) What are coral reefs? relatively little -11.258365822340098 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (relatively little, is known about, coral reefs) -> relatively little (7683ms) What are coral reefs? The Cahuita National Park -11.306146446234155 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (The Cahuita National Park, may be best known for, its coral reef) -> The Cahuita National Park (7732ms) What are coral reefs? the Dry Tortugas National Park -11.339484667466998 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (the Dry Tortugas National Park, is known for, its coral reefs) -> the Dry Tortugas National Park (7732ms) What are coral reefs? the Great Barrier Reef -11.374594680627357 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (This tiny coral cay, is both part of, the Great Barrier Reef) -> the Great Barrier Reef (8657ms) What are coral reefs? the Great Mayan Reef -11.408512546653267 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (coral reefs, are part of, the Great Mayan Reef) -> the Great Mayan Reef (8657ms) What are coral reefs? Red algae -11.427615982605381 What are coral reefs? -> [ what be ] coral reef ? -> what be of coral reef ? -> $x: ($x, be of, coral reef) -> (Red algae, are important members of, coral reefs) -> Red algae (12656ms) What are coral reefs? a chain -11.505585161115878 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Cape Coral, is part of, a chain) -> a chain (8656ms) What are coral reefs? Live rocks -11.526416676144287 What are coral reefs? -> [ what be ] coral reef ? -> what be of coral reef ? -> $x: ($x, be of, coral reef) -> (Live rocks, are pieces of, coral reef) -> Live rocks (12656ms) What are coral reefs? a group -11.553907752786614 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Corals, are part of, a group) -> a group (8657ms) What are coral reefs? marine ecosystem -11.569501460073216 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral reefs, are the most fascinating part of, marine ecosystem) -> marine ecosystem (8674ms) What are coral reefs? The Great Barrier Reef -11.620007244395563 What are coral reefs? -> [ what be ] coral reef ? -> what be of coral reef ? -> $x: ($x, be of, coral reef) -> (The Great Barrier Reef, is the largest network of, coral reefs) -> The Great Barrier Reef (12656ms) What are coral reefs? The Keys -11.632259915806872 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (The Keys, are known for, their spectacular coral reefs) -> The Keys (7732ms) What are coral reefs? Guam -11.662113614358224 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (coral reefs, are an indispensible part of, Guam) -> Guam (8674ms) What are coral reefs? the IRIS peer-to-peer network project -11.675270546890179 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral, is part of, the IRIS peer-to-peer network project) -> the IRIS peer-to-peer network project (8674ms) What are coral reefs? Coral Reef -11.681552764124124 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> $x: ($x, know, coral reef) -> (Coral Reef, Also known as, "Coral Reef"@ja) -> Coral Reef (12154ms) What are coral reefs? Belize -11.68395554908317 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (colorful coral gardens, are just part of, Belize) -> Belize (8674ms) What are coral reefs? the REA teams -11.684837646011136 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (coral scientists, are part of, the REA teams) -> the REA teams (8674ms) What are coral reefs? Grace Bay -11.6941651514061 What are coral reefs? -> [ what be ] coral reef ? -> what be of coral reef ? -> $x: ($x, be of, coral reef) -> (Grace Bay, are a chain of, coral reefs) -> Grace Bay (12656ms) What are coral reefs? Cura?ao -11.714999129400482 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Cura?ao, is known for, its coral reefs) -> Cura?ao (7732ms) What are coral reefs? the Nephtheidae family -11.739813145229267 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (the Tree Coral, is part of, the Nephtheidae family) -> the Nephtheidae family (8691ms) What are coral reefs? New Caledonia -11.742111369140261 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (the Coral Sea, are also part of, New Caledonia) -> New Caledonia (8691ms) What are coral reefs? the Reef -11.745032020311498 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (an unspoilt coral cay, is actually part of, the Reef) -> the Reef (8691ms) What are coral reefs? Senunu Bay -11.809873456734014 What are coral reefs? -> [ what be ] coral reef ? -> what be of a coral reef ? -> $x: ($x, be of, a coral reef) -> (Senunu Bay, is part of, a coral reef triangle) -> Senunu Bay (13014ms) What are coral reefs? Cahuita -11.834167264520945 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Cahuita, is also known for, its coral reef) -> Cahuita (7732ms) What are coral reefs? cone snails -11.869270156634649 What are coral reefs? -> [ what be ] coral reef ? -> what be of coral reef ? -> $x: ($x, be of, coral reef) -> (cone snails, is the loss of, coral reefs) -> cone snails (13044ms) What are coral reefs? a biologically diverse Earth -11.873301330491067 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (coral reefs, are all part of, a biologically diverse Earth) -> a biologically diverse Earth (8691ms) What are coral reefs? Cancun -11.889339150587315 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Cancun, is well known to have, rich and virgin coral reefs) -> Cancun (7732ms) What are coral reefs? the Mesoamerican Barrier Reef System -11.89055790284134 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (its coral reef, is part of, the Mesoamerican Barrier Reef System) -> the Mesoamerican Barrier Reef System (8691ms) What are coral reefs? global warming -11.893302562373721 What are coral reefs? -> [ what be ] coral reef ? -> what be of coral reef ? -> $x: ($x, be of, coral reef) -> (global warming, is causing the destruction of, coral reefs) -> global warming (13074ms) What are coral reefs? the Miami-Dade School District -11.894551620286057 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral Gables, are part of, the Miami-Dade School District) -> the Miami-Dade School District (8706ms) What are coral reefs? Chalky Mount -11.910857427527706 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: ($x, be the part of, coral) -> (Chalky Mount, is the only part of, the coral capped island) -> Chalky Mount (13104ms) What are coral reefs? Roatan -11.922289201638753 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (Roatan, is known for having, the second largest coral reef) -> Roatan (7745ms) What are coral reefs? The Great Calusa Blueway -11.925199113302964 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Cape Coral, is an awesome part of, The Great Calusa Blueway) -> The Great Calusa Blueway (8706ms) What are coral reefs? an obvious heraldic display -11.925925780503563 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (the red coral, is part of, an obvious heraldic display) -> an obvious heraldic display (8706ms) What are coral reefs? a reef?s ecosystem -11.926874686951987 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Corals, are an important part of, a reef?s ecosystem) -> a reef?s ecosystem (8706ms) What are coral reefs? the National parks -11.927849562446138 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (The Coral Reef Preserve, is part of, the National parks) -> the National parks (8706ms) What are coral reefs? the Great Barrier Reef Marine Park -11.928578392409149 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (the coral reefs, are part of, the Great Barrier Reef Marine Park) -> the Great Barrier Reef Marine Park (8706ms) What are coral reefs? a general idea -11.936530756934806 What are coral reefs? -> what be coral [ reef ] ? -> what be reef mean ? -> $x: (reef, mean, $x) -> (a reef tank, is only meant to provide, a general idea) -> a general idea (7186ms) What are coral reefs? the Marietas ? marine life -11.937452664648523 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (coral reefs, are also part of, the Marietas ? marine life) -> the Marietas ? marine life (8723ms) What are coral reefs? Cahuita National Park -11.948680210553338 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (the coral reef, offshore are all part of, Cahuita National Park) -> Cahuita National Park (8723ms) What are coral reefs? Koh Samui -11.955630299586936 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral Cove, is a relatively quiet part of, Koh Samui) -> Koh Samui (8723ms) What are coral reefs? the Ongame network -11.996821330978987 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral, is part of, the Ongame network) -> the Ongame network (8723ms) What are coral reefs? the Isidella genus -12.001672762365734 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Bamboo corals, are part of, the Isidella genus) -> the Isidella genus (8723ms) What are coral reefs? Ongame network -12.019108037057482 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral Poker, is part of, Ongame network) -> Ongame network (8723ms) What are coral reefs? the Lee County School District -12.033733376272053 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Cape Coral, is part of, the Lee County School District) -> the Lee County School District (8739ms) What are coral reefs? 20,000 acres -12.046391641605851 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral Springs, was part of, 20,000 acres) -> 20,000 acres (8739ms) What are coral reefs? a consolidation trend -12.10145351586634 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral Springs, is part of, a consolidation trend) -> a consolidation trend (8739ms) What are coral reefs? a larger effort -12.108258749992265 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral Reef Watch, is part of, a larger effort) -> a larger effort (8739ms) What are coral reefs? BIMP-EAGA -12.124125673408047 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (coral reefs, make up a significant part of, BIMP-EAGA) -> BIMP-EAGA (8739ms) What are coral reefs? the Presbyterian Church -12.138533094598294 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral Ridge Presbyterian, is a part of, the Presbyterian Church) -> the Presbyterian Church (8739ms) What are coral reefs? expedition itineraries -12.159242451607788 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (huge Coral Gardens, are all a part of, expedition itineraries) -> expedition itineraries (8755ms) What are coral reefs? Mexico?s Marine National Park -12.16516157323502 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (coral coast, became part of, Mexico?s Marine National Park) -> Mexico?s Marine National Park (8755ms) What are coral reefs? prehistoric and now extinct worms -12.269870133962336 What are coral reefs? -> what be coral [ reef ] ? -> what be reef create by ? -> $x: (reef, create by, $x) -> (These reefs, were created by, prehistoric and now extinct worms) -> prehistoric and now extinct worms (7413ms) What are coral reefs? 2?5 % -12.307377300175116 What are coral reefs? -> what be coral [ reef ] ? -> what be reef mean ? -> $x: (reef, mean, $x) -> (other reefs, had mean values of, 2?5 %) -> 2?5 % (7186ms) What are coral reefs? tiny organisms -12.316079614499039 What are coral reefs? -> what be coral [ reef ] ? -> what be reef create by ? -> $x: (reef, create by, $x) -> (Coral reefs, are created by, tiny organisms) -> tiny organisms (7413ms) What are coral reefs? a gradual transition -12.318305602179585 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (The coral rubble, is part of, a gradual transition) -> a gradual transition (8754ms) What are coral reefs? a marine preserve -12.32964112680503 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral Island, is part of, a marine preserve) -> a marine preserve (8754ms) What are coral reefs? a bit -12.373968774003659 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (her coral lips, parted, a bit) -> a bit (8754ms) What are coral reefs? a reef -12.46322803820329 What are coral reefs? -> what be coral [ reef ] ? -> what be reef create by ? -> $x: (reef, create by, $x) -> (Reef breaks, are created by, a reef) -> a reef (7413ms) What are coral reefs? mass spawning -12.586663046722078 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (most corals, take part in, mass spawning) -> mass spawning (8754ms) What are coral reefs? the United States Army Corps -12.613679769605323 What are coral reefs? -> what be coral [ reef ] ? -> what be reef create by ? -> $x: (reef, create by, $x) -> (The reefs, were created by, the United States Army Corps) -> the United States Army Corps (7413ms) What are coral reefs? the Act -12.688648488022785 What are coral reefs? -> what be coral [ reef ] ? -> what be reef create by ? -> $x: (reef, create by, $x) -> (a Reef Maintenance Fund, created by, the Act) -> the Act (7413ms) What are coral reefs? The islands -12.808851269211871 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (The islands, are also known for, the coral reefs) -> The islands (7745ms) What are coral reefs? The hospital -12.834557559184699 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (The hospital, then was known as, Coral Reef Hospital) -> The hospital (7745ms) What are coral reefs? the red sea -12.83955952788626 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (the red sea, is known for, its coral reef) -> the red sea (7745ms) What are coral reefs? The refuge -12.84958893881252 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (The refuge, is known for, its coral reef) -> The refuge (7745ms) What are coral reefs? executive order -12.86215695659188 What are coral reefs? -> what be coral [ reef ] ? -> what be reef create by ? -> $x: (reef, create by, $x) -> (the Coral Reef Ecosystem Reserve, created by, executive order) -> executive order (7745ms) What are coral reefs? the same latitude -12.955389422094171 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (the same latitude, is known for, its coral reefs) -> the same latitude (7758ms) What are coral reefs? the least -13.06328478320393 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (the least, is generally known about, coral reef diversity) -> the least (7757ms) What are coral reefs? phylum copper cadmium granules -13.068572486064014 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Corals, are part of, phylum copper cadmium granules) -> phylum copper cadmium granules (8770ms) What are coral reefs? the northern tip -13.073415009069631 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (the northern tip, is well-known for, its beautiful coral reefs) -> the northern tip (7758ms) What are coral reefs? The underwater park -13.08137279208409 What are coral reefs? -> what [ be coral reef ] ? -> what be know be coral reef ? -> $x: ($x, be know be, coral reef) -> (The underwater park, is known for, its protected coral reef) -> The underwater park (7757ms) What are coral reefs? the program -13.192613013848652 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (the most common corals, is part of, the program) -> the program (8770ms) What are coral reefs? the 2011 Tour de Turtles marathon -13.223844336607765 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral, took part in, the 2011 Tour de Turtles marathon) -> the 2011 Tour de Turtles marathon (8770ms) What are coral reefs? the action -13.256210709837069 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral Lounge Sit, be part of, the action) -> the action (8939ms) What are coral reefs? the newer castle -13.263735472773181 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (The coral pieces, are part of, the newer castle) -> the newer castle (8939ms) What are coral reefs? phylum -13.321787816257599 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Corals, are part of, phylum) -> phylum (8939ms) What are coral reefs? function -13.35749313205551 What are coral reefs? -> what be coral [ reef ] ? -> what be reef mean ? -> $x: (reef, mean, $x) -> (coral reefs, were meant to, function) -> function (7186ms) What are coral reefs? the summertime experience -13.438122688821867 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (coral, are just part of, the summertime experience) -> the summertime experience (8939ms) What are coral reefs? awareness -13.495939463219697 What are coral reefs? -> what be coral [ reef ] ? -> what be reef mean ? -> $x: (reef, mean, $x) -> (The Reef, is meant to raise, awareness) -> awareness (7771ms) What are coral reefs? the same eco-system -13.528566043512205 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (coral reefs, are part of, the same eco-system) -> the same eco-system (8939ms) What are coral reefs? corals -13.593497661019907 What are coral reefs? -> what be coral [ reef ] ? -> what be reef create by ? -> $x: (reef, create by, $x) -> (Coral reefs, are created by, corals) -> corals (7771ms) What are coral reefs? the famous Great Barrier Reef -13.594732714166769 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (a coral lagoon, is part of, the famous Great Barrier Reef) -> the famous Great Barrier Reef (8939ms) What are coral reefs? the diving experience -13.63073745802694 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (coral gardens and wrecks, are all part of, the diving experience) -> the diving experience (8939ms) What are coral reefs? the only stretch -13.634307450551644 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (The coral reef, here is part of, the only stretch) -> the only stretch (8986ms) What are coral reefs? the interesting sightings -13.659586374043633 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (the coral bommies, were also part of, the interesting sightings) -> the interesting sightings (8986ms) What are coral reefs? the cobra family -13.660078308651727 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (a coral snake, is part of, the cobra family) -> the cobra family (8986ms) What are coral reefs? the reef ecosystem -13.669739797123349 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (live coral, is a normal part of, the reef ecosystem) -> the reef ecosystem (8986ms) What are coral reefs? the aquarium -13.674417378764812 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (This coral display, is part of, the aquarium) -> the aquarium (8986ms) What are coral reefs? the ship -13.678371248435923 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (the colored coral, becomes an integral part of, the ship) -> the ship (8986ms) What are coral reefs? the foundation -13.714898194597613 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral reefs, are part of, the foundation) -> the foundation (8986ms) What are coral reefs? the reef -13.731721605698167 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (a coral cay, is actually part of, the reef) -> the reef (8986ms) What are coral reefs? algae -13.73466344732296 What are coral reefs? -> what be coral [ reef ] ? -> what be reef mean ? -> $x: (reef, mean, $x) -> (healthy reefs, mean keeping, algae) -> algae (7770ms) What are coral reefs? the ocean environment -13.739591471451286 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (healthy coral, is a vital part of, the ocean environment) -> the ocean environment (9004ms) What are coral reefs? the larger Gala Coral group -13.754622798376813 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (close Coral Casino, is part of, the larger Gala Coral group) -> the larger Gala Coral group (9004ms) What are coral reefs? the story -13.816837749346645 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (coral reefs, is only part of, the story) -> the story (9004ms) What are coral reefs? the park?s vision -13.829937110311828 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (A coral regeneration plan, is a vital part of, the park?s vision) -> the park?s vision (9004ms) What are coral reefs? the discussion -13.89657463618693 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (coral, is n?t an important part of, the discussion) -> the discussion (9004ms) What are coral reefs? management -13.905313636230987 What are coral reefs? -> what be coral [ reef ] ? -> what be reef mean ? -> $x: (reef, mean, $x) -> (the reefs, will mean improved systems of, management) -> management (7770ms) What are coral reefs? the cycle -13.979624643808652 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (The coral reef, is an integral part of, the cycle) -> the cycle (9004ms) What are coral reefs? the ultimate -13.982926610305052 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral Beach Diving Hotel, will be taking part in, the ultimate) -> the ultimate (9004ms) What are coral reefs? the intricate food -14.02886367041691 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (corals, also play a part in, the intricate food) -> the intricate food (9022ms) What are coral reefs? the article -14.034936773899087 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (coral reef destruction, was only one part of, the article) -> the article (9022ms) What are coral reefs? the hobby -14.05697712931072 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (Coral propagation, really is an interesting part of, the hobby) -> the hobby (9022ms) What are coral reefs? the food -14.077209942473129 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (live corals, produce part of, the food) -> the food (9022ms) What are coral reefs? the new marine reserve -14.0984825739047 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (These coral reefs, now form part of, the new marine reserve) -> the new marine reserve (9022ms) What are coral reefs? the coral ecosystem -14.111978246165886 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (soft corals, form an important part of, the coral ecosystem) -> the coral ecosystem (9022ms) What are coral reefs? the answer -14.138611793773924 What are coral reefs? -> what be [ coral ] reef ? -> what be the part of coral ? -> $x: (coral, part, $x) -> (the corals, may provide part of, the answer) -> the answer (9022ms) What are coral reefs? trouble -14.269584249562005 What are coral reefs? -> what be coral [ reef ] ? -> what be reef mean ? -> $x: (reef, mean, $x) -> (SAVE A REEF, mean by, trouble) -> trouble (7770ms) What are coral reefs? the placing steel and concrete -14.337300536864767 What are coral reefs? -> what be coral [ reef ] ? -> what be reef create by ? -> $x: (reef, create by, $x) -> (Artificial reefs, are created by, the placing steel and concrete) -> the placing steel and concrete (7771ms) What are coral reefs? millions -14.340320057588745 What are coral reefs? -> what be coral [ reef ] ? -> what be reef mean ? -> $x: (reef, mean, $x) -> (reefs, could mean economic trouble for, millions) -> millions (7783ms) What are coral reefs? the structures -14.600884931577948 What are coral reefs? -> what be coral [ reef ] ? -> what be reef create by ? -> $x: (reef, create by, $x) -> (artificial reefs, are created by, the structures) -> the structures (7784ms) What are coral reefs? the river -14.656440455106846 What are coral reefs? -> what be coral [ reef ] ? -> what be reef create by ? -> $x: (reef, create by, $x) -> (a reef pass, has been created by, the river) -> the river (7783ms) What are coral reefs? mussels -16.197702864789843 What are coral reefs? -> what be coral [ reef ] ? -> what be reef create by ? -> $x: (reef, create by, $x) -> (the reefs, created by, mussels) -> mussels (7784ms) What companies manufacture golf clubs? Callaway Golf Company -5.089554218274531 What companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> (Callaway Golf Company, Instance Of, American sporting good company) (Callaway Company, has manufactured, the golf clubs) -> Callaway Golf Company (1784ms) What companies manufacture golf clubs? Nike Golf -5.9576372684302985 What companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> (Nike Golf, Instance Of, company) (Nike Golf, to manufacture, golf clubs) -> Nike Golf (2280ms) What companies manufacture golf clubs? the U.S. -7.422329864991506 What companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: (companies, drug, $x) ($x, manufacture, golf clubs) -> (the same companies, make the drugs in, the U.S.) (the U.S., are manufactured in, fewer than 10 golf club foundries) -> the U.S. (3625ms) What companies manufacture golf clubs? Callaway Company -7.710656374245925 What companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, have manufacture, golf clubs) -> (Callaway Company, Instance Of, American sporting good company) (Callaway Company, has manufactured, the golf clubs) -> Callaway Company (6829ms) What companies manufacture golf clubs? Callaway company -7.83982473762403 What companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, have manufacture, golf clubs) -> (Callaway company, Instance Of, leading golf company) (Callaway Company, has manufactured, the golf clubs) -> Callaway company (6829ms) What companies manufacture golf clubs? Golf -7.885810410181837 What companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, be manufacture, golf clubs) -> (Golf, Instance Of, company) (golf, is definitely the manufacturing of, golf clubs) -> Golf (4513ms) What companies manufacture golf clubs? Golfers Inc -8.014526182687597 What companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, like to buy, golf clubs) -> (Golfers Inc, Instance Of, private company) (golfers, would like to buy, good golf clubs) -> Golfers Inc (6882ms) What companies manufacture golf clubs? Callaway Golf Co. -8.318009647688235 What companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, market, golf clubs) -> (Callaway Golf Co., Instance Of, company) (CALLAWAY GOLF CO., will directly market, its golf clubs) -> Callaway Golf Co. (3443ms) What companies manufacture golf clubs? Cleveland golf -8.36009875824664 What companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, begin produce, golf clubs) -> (Cleveland golf, Instance Of, top company) (Cleveland Golf, began producing, golf clubs) -> Cleveland golf (6557ms) What companies manufacture golf clubs? Callaway -8.424495669633277 What companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, of selling, golf clubs) -> (Callaway, Instance Of, company) (Callaway, still sells a broad line of, premium golf clubs) -> Callaway (6023ms) What companies manufacture golf clubs? Instance IH -8.433703531899502 What companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, be market, golf clubs) -> (Instance IH, Instance Of, utilised truck primary company) (instance, may be in-market to purchase, golf clubs) -> Instance IH (5076ms) What companies manufacture golf clubs? Goodwill -8.471538248697687 What companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, be source, golf clubs) -> (Goodwill, Instance Of, company) (Goodwill, are great sources of, golf clubs) -> Goodwill (3968ms) What companies manufacture golf clubs? Titanium Metals -8.53092328307725 What companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, be familiar, golf clubs) -> (Titanium Metals, Instance Of, metal company) (Titanium metal, is familiar used in, golf club heads) -> Titanium Metals (4890ms) What companies manufacture golf clubs? Callaway Golf CO -8.55837536641778 What companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, market, golf clubs) -> (Callaway Golf CO, Instance Of, private company) (CALLAWAY GOLF CO., will directly market, its golf clubs) -> Callaway Golf CO (3506ms) What companies manufacture golf clubs? Titanium Metal -8.562632150892084 What companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, be familiar, golf clubs) -> (Titanium Metal, Instance Of, private company) (Titanium metal, is familiar used in, golf club heads) -> Titanium Metal (4890ms) What companies manufacture golf clubs? Callaway golf -8.713346852207945 What companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, be the manufacturer of, golf clubs) -> (Callaway golf, Instance Of, company) (Callaway Golf, is the leading manufacturer of, golf clubs) -> Callaway golf (3625ms) What companies manufacture golf clubs? Guest -8.860489299697925 What companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, can ship, golf clubs) -> (Guest, Instance Of, company property) (guests, can ship, their golf clubs) -> Guest (6557ms) What companies manufacture golf clubs? Etc -8.860685638687603 What companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, then head, golf clubs) -> (Etc, Instance Of, private company) (etc, then headed up to, the Golf Club) -> Etc (5076ms) What companies manufacture golf clubs? NikeGolf -8.864785041478232 What companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, to manufacture, golf clubs) -> (NikeGolf, Instance Of, golf company) (Nike Golf, to manufacture, golf clubs) -> NikeGolf (2531ms) What companies manufacture golf clubs? Cleveland Golf -8.907242076463591 What companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, begin produce, golf clubs) -> (Cleveland Golf, Instance Of, company) (Cleveland Golf, began producing, golf clubs) -> Cleveland Golf (6557ms) What companies manufacture golf clubs? NIKE Golf -8.945674406118815 What companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, to manufacture, golf clubs) -> (NIKE Golf, Instance Of, owned company) (Nike Golf, to manufacture, golf clubs) -> NIKE Golf (2531ms) What companies manufacture golf clubs? Guests -8.963331349923031 What companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, can ship, golf clubs) -> (Guests, Instance Of, company) (guests, can ship, their golf clubs) -> Guests (6557ms) What companies manufacture golf clubs? Callaway Golf -8.969104602971898 What companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, be the manufacturer of, golf clubs) -> (Callaway Golf, Instance Of, company) (Callaway Golf, is the leading manufacturer of, golf clubs) -> Callaway Golf (3625ms) What companies manufacture golf clubs? Com -9.130043200653432 What companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, be source, golf clubs) -> (Com, Instance Of, company) (com, is your source for, new and used golf clubs) -> Com (3968ms) What companies manufacture golf clubs? Country Club -9.21477226556282 What companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, be be sell, golf clubs) -> (Country Club, Instance Of, company) (Country Club, was sold to, the Club de Golf Lachute Canada) -> Country Club (5426ms) What companies manufacture golf clubs? 3Balls . com -9.215507255823407 What companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, be source, golf clubs) -> (3Balls . com, Instance Of, company) (3balls.com, is your source for, new and used golf clubs) -> 3Balls . com (3968ms) What companies manufacture golf clubs? GOLF -9.712135149041318 What companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, be the kind of, companies) ($x, manufacture, golf clubs) -> (GOLF, is a kind of equipment for the sport, COMPANIES) (golf, is definitely the manufacturing of, golf clubs) -> GOLF (5713ms) What companies manufacture golf clubs? Seth Raynor -10.528989948965203 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Seth Raynor, Golf Courses Designed, Chicago Golf Club Golf Course) -> Seth Raynor (16094ms) What companies manufacture golf clubs? John Harbottlem -10.528989948965203 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (John Harbottlem, Golf Courses Designed, Country Club Golf Course) -> John Harbottlem (16094ms) What companies manufacture golf clubs? Jack Nicklaus -10.528989948965203 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Jack Nicklaus, Golf Courses Designed, Bear's Club Golf Course) -> Jack Nicklaus (16094ms) What companies manufacture golf clubs? guests -10.690456793510112 What companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, can ship, golf clubs) -> (guests, Instance Of, international company) (guests, can ship, their golf clubs) -> guests (7137ms) What companies manufacture golf clubs? executive -10.702295006221823 What companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, be be sell, golf clubs) -> (executive, Instance Of, company) (Executives, now are selling, golf clubs) -> executive (5426ms) What companies manufacture golf clubs? Arnold Palmer -10.772331795006792 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Arnold Palmer, Golf Courses Designed, Tournament Club Golf Course) -> Arnold Palmer (16094ms) What companies manufacture golf clubs? William Powell -10.772331795006792 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (William Powell, Golf Courses Designed, Clearview Golf Club) -> William Powell (16094ms) What companies manufacture golf clubs? guest -10.773508161992236 What companies manufacture golf clubs? -> $x: ($x, instance of, companies) ($x, manufacture, golf clubs) -> $x: ($x, instance of, companies) ($x, can ship, golf clubs) -> (guest, Instance Of, company function) (guests, can ship, their golf clubs) -> guest (7137ms) What companies manufacture golf clubs? Harold B. Lamb -10.889094465644247 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Harold B. Lamb, Golf Courses Designed, Country Club Golf Course) -> Harold B. Lamb (16094ms) What companies manufacture golf clubs? Charles B. Macdonald -10.889094465644247 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Charles B. Macdonald, Golf Courses Designed, Chicago Golf Club Golf Course) -> Charles B. Macdonald (16094ms) What companies manufacture golf clubs? A. W. Tillinghast -10.916583346243407 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (A. W. Tillinghast, Golf Courses Designed, San Francisco Golf Club) -> A. W. Tillinghast (16419ms) What companies manufacture golf clubs? Chattanooga -11.156060542255357 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who manufacture golf club ? -> $x: ($x, manufacture, golf club) -> (Chattanooga, manufactured, the first left-handed golf club) -> Chattanooga (9351ms) What companies manufacture golf clubs? kennel area -11.420978307795925 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who manufacture golf club ? -> $x: ($x, manufacture, golf club) -> (kennel area, manufactured from, golf club pages) -> kennel area (9351ms) What companies manufacture golf clubs? Eye contact -11.64426645707995 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what country be golf club make ? -> $x: ($x, instance of, country) (golf club, make, $x) -> (Eye contact, Instance Of, part of country dancing) (your golf club, made, contact) -> Eye contact (9121ms) What companies manufacture golf clubs? New York City -11.919853338264895 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> when be golf club create ? -> $x: (golf club, be create in, $x) -> (the first golfing club, was created in, New York City) -> New York City (9235ms) What companies manufacture golf clubs? key contact -11.963492601464361 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what country be golf club make ? -> $x: ($x, instance of, country) (golf club, make, $x) -> (key contact, Instance Of, country information) (your golf club, made, contact) -> key contact (9121ms) What companies manufacture golf clubs? The corporation -12.178362171463714 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who manufacture golf club ? -> $x: ($x, manufacture, golf club) -> (The corporation, manufactures, golf club components) -> The corporation (9351ms) What companies manufacture golf clubs? Phoenix -12.266588483495834 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what country be golf club make ? -> $x: ($x, instance of, country) (golf club, make, $x) -> (Phoenix, Instance Of, country) (golf clubs, are made in, Phoenix) -> Phoenix (9121ms) What companies manufacture golf clubs? Gary Player -12.336381601946877 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Gary Player, designed, Shanghai Links Golf & Country Club) -> Gary Player (16419ms) What companies manufacture golf clubs? Greg Norman -12.422525467514314 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Greg Norman, designed, the El Camaleon Golf Club) -> Greg Norman (16419ms) What companies manufacture golf clubs? Colin Montgomerie -12.6316120291615 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Colin Montgomerie, designed, the beautiful Montgomerie Golf Club) -> Colin Montgomerie (16419ms) What companies manufacture golf clubs? The Jack Nicklaus -12.643796092691499 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (The Jack Nicklaus, designed, Golf Club) -> The Jack Nicklaus (16419ms) What companies manufacture golf clubs? Nike -12.653206583940452 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what country be golf club make ? -> $x: ($x, instance of, country) (golf club, make, $x) -> (Nike, Instance Of, home country) (fitted Golf Clubs, made by, Nike) -> Nike (9121ms) What companies manufacture golf clubs? Wood -12.722325474959025 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what country be golf club make ? -> $x: ($x, instance of, country) (golf club, make, $x) -> (Wood, Instance Of, country) (golf clubs, were made entirely of, wood) -> Wood (9236ms) What companies manufacture golf clubs? Landmark Golf Company -12.7371535918179 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Landmark Golf Company, designed, Falcon Golf Club) -> Landmark Golf Company (16419ms) What companies manufacture golf clubs? Golf players -12.750996997047173 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Golf players, usually are designed to utilize, golf clubs) -> Golf players (16653ms) What companies manufacture golf clubs? the Greg Norman -12.857946373242772 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the Greg Norman, designed, Tibur?n Golf Club) -> the Greg Norman (16652ms) What companies manufacture golf clubs? golf -12.89613150251028 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who manufacture golf club ? -> $x: ($x, manufacture, golf club) -> (golf, is definitely the manufacturing of, golf clubs) -> golf (9351ms) What companies manufacture golf clubs? the Jack Nicklaus -12.941065975645598 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the Jack Nicklaus, designed, Ritz Carlton Golf Club) -> the Jack Nicklaus (16653ms) What companies manufacture golf clubs? the Fred Couples -12.965624551475956 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the Fred Couples, designed, Westfields Golf Club) -> the Fred Couples (16653ms) What companies manufacture golf clubs? the Rees Jones -12.981739077118991 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the Rees Jones, designed, Currituck Club Golf Course) -> the Rees Jones (16683ms) What companies manufacture golf clubs? the top brand Golf Wedges -12.994383287766855 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who manufacture golf club ? -> $x: ($x, manufacture, golf club) -> (the top brand Golf Wedges, also manufactures, Golf Club Clones) -> the top brand Golf Wedges (9440ms) What companies manufacture golf clubs? the Gary Player -12.998111410365873 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the Gary Player, designed, River Run Golf Club) -> the Gary Player (16683ms) What companies manufacture golf clubs? Gary Panks -13.025757925443532 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Gary Panks, designed, the Whirlwind Golf Club) -> Gary Panks (16683ms) What companies manufacture golf clubs? step -13.080886264237327 What companies manufacture golf clubs? -> what company [ manufacture golf club ] ? -> what be the company manufacture golf club ? -> $x: (the company manufacture golf club, instance of, $x) -> (Golf clubs manufactured by the company, Instance Of, step) -> step (9441ms) What companies manufacture golf clubs? The Robert Cupp -13.095125265740622 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (The Robert Cupp, designed, Silverstone Golf Club) -> The Robert Cupp (16714ms) What companies manufacture golf clubs? The Rick Jacobson -13.09860141579788 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (The Rick Jacobson, designed, Augustine Golf Club) -> The Rick Jacobson (16714ms) What companies manufacture golf clubs? sandy soils -13.10820548827812 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> when be golf club create ? -> $x: (golf club, be create on, $x) -> (Sand Golf Club, was created on, sandy soils) -> sandy soils (9441ms) What companies manufacture golf clubs? Scotland James Braid -13.15073710234774 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Scotland James Braid, designed, Blairmore and Strone Golf Club) -> Scotland James Braid (16744ms) What companies manufacture golf clubs? Bill Amick -13.167001081927996 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Bill Amick, originally designed, Hidden Lakes Golf Club) -> Bill Amick (16744ms) What companies manufacture golf clubs? a 250-acre spread -13.167234716212826 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> when be golf club create ? -> $x: (golf club, be create on, $x) -> (the Nantucket Golf Club, was created on, a 250-acre spread) -> a 250-acre spread (9441ms) What companies manufacture golf clubs? Jack Frei -13.184388353801658 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Jack Frei, designed, Golf Club) -> Jack Frei (16744ms) What companies manufacture golf clubs? The Henry Cotton -13.18848454722308 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (The Henry Cotton, designed, Golf Club Bologna) -> The Henry Cotton (16744ms) What companies manufacture golf clubs? Tom Weiskopf -13.200463525594866 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Tom Weiskopf, designed, Hassayampa Golf Club) -> Tom Weiskopf (16744ms) What companies manufacture golf clubs? Chris King Gene Hamm -13.206245067422316 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Chris King Gene Hamm, designed, Beachwood Golf Club) -> Chris King Gene Hamm (16744ms) What companies manufacture golf clubs? The Robert Trent Jones Jr -13.228242541902324 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (The Robert Trent Jones Jr, designed, Penha Longa Golf Club) -> The Robert Trent Jones Jr (16744ms) What companies manufacture golf clubs? Tom Fazio -13.241608380857961 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Tom Fazio, designed, Bull?s Bridge Golf Club) -> Tom Fazio (16773ms) What companies manufacture golf clubs? the Ron Kirby -13.257627057433446 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the Ron Kirby, designed, Barbados Golf Club) -> the Ron Kirby (16773ms) What companies manufacture golf clubs? Internet Software -13.268950045165207 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Internet Software, is designed for, golf clubs and associations) -> Internet Software (16773ms) What companies manufacture golf clubs? Robert Mendralla -13.269099771485124 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Robert Mendralla, has been designing, golf clubs) -> Robert Mendralla (16773ms) What companies manufacture golf clubs? Hall-of-Famer Johnny Miller -13.277079369066751 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Hall-of-Famer Johnny Miller, designed, Badlands Golf Club) -> Hall-of-Famer Johnny Miller (16773ms) What companies manufacture golf clubs? the Crenshaw-Coore -13.296707361031356 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the Crenshaw-Coore, designed, Colorado Golf Club) -> the Crenshaw-Coore (16773ms) What companies manufacture golf clubs? the Tom Watson -13.305236633352903 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the Tom Watson, designed, Conservatory Golf Club) -> the Tom Watson (16773ms) What companies manufacture golf clubs? the Donald Ross -13.320660264773727 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the Donald Ross, designed, Detroit Golf Club) -> the Donald Ross (16773ms) What companies manufacture golf clubs? the Joe Lee -13.322428637575921 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the Joe Lee, designed, International Golf Club) -> the Joe Lee (16804ms) What companies manufacture golf clubs? the Tom Fazio -13.324335321742808 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the Tom Fazio, designed, Camp Creek Golf Club) -> the Tom Fazio (16804ms) What companies manufacture golf clubs? a young Greg Nash -13.349610325356963 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (a young Greg Nash, designed, Hillcrest Golf Club) -> a young Greg Nash (16804ms) What companies manufacture golf clubs? Arthur Hills -13.352884239188025 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Arthur Hills, designed, the spectacular Bay Harbor Golf Club) -> Arthur Hills (16804ms) What companies manufacture golf clubs? the Nick Fold -13.372599435296948 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the Nick Fold, designed, Ocean Dunes Golf Club) -> the Nick Fold (16804ms) What companies manufacture golf clubs? Nicklaus -13.378348169726888 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Nicklaus, later co-designed, Concession Golf Club) -> Nicklaus (16804ms) What companies manufacture golf clubs? the Jack Nicklaus Signature -13.380636004262803 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the Jack Nicklaus Signature, designed, Ritz Carlton Golf Club) -> the Jack Nicklaus Signature (16834ms) What companies manufacture golf clubs? an Arnold Palmer -13.392136189077608 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (an Arnold Palmer, designed, Golf Club) -> an Arnold Palmer (16834ms) What companies manufacture golf clubs? Master Designer Gray Player -13.422685226745385 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Master Designer Gray Player, designed, Ria Bintan Golf Club) -> Master Designer Gray Player (16834ms) What companies manufacture golf clubs? PGA Member Jim Hardy -13.424534452655921 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (PGA Member Jim Hardy, have designed, Twin Rivers Golf Club) -> PGA Member Jim Hardy (16834ms) What companies manufacture golf clubs? Well-known Meade & Garfield -13.431527248863235 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Well-known Meade & Garfield, designed, the Euclid Golf Club) -> Well-known Meade & Garfield (16834ms) What companies manufacture golf clubs? The Greg Norman -13.452177265441538 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (The Greg Norman, designed, Ritz-Carlton Golf Club Orlando) -> The Greg Norman (16834ms) What companies manufacture golf clubs? Robert Cupp Jr. -13.457561169799515 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Robert Cupp Jr., designed, the 7,100-yard Rookery Golf Club) -> Robert Cupp Jr. (16834ms) What companies manufacture golf clubs? The Arnold Palmer -13.46856092567958 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (The Arnold Palmer, designed, Tralee Golf Club?s 18-hole course) -> The Arnold Palmer (16897ms) What companies manufacture golf clubs? the Old Tom Morris -13.468912449744298 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the Old Tom Morris, designed, Machrihanish Golf Club) -> the Old Tom Morris (16897ms) What companies manufacture golf clubs? TaylorMade -13.535218247856937 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what company make golf club ? -> $x: ($x, instance of, company) ($x, make, golf club) -> (TaylorMade, Instance Of, company) (Taylormade, Makes, Golf Clubs) -> TaylorMade (18777ms) What companies manufacture golf clubs? 1995 -13.552835543423765 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> when be golf club create ? -> $x: (golf club, be create in, $x) -> (the Pebble Creek Golf Club, was created in, 1995) -> 1995 (9235ms) What companies manufacture golf clubs? 1603 -13.554460614849601 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> when be golf club create ? -> $x: (golf club, be create in, $x) -> (The first golf club, was created in, 1603) -> 1603 (9235ms) What companies manufacture golf clubs? the Arnold Palmer -13.5848143983809 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the Arnold Palmer, designed, Mill Cove Golf Club) -> the Arnold Palmer (16897ms) What companies manufacture golf clubs? the Colin Montgomerie -13.586582771183092 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the Colin Montgomerie, designed, Royal Golf Club course) -> the Colin Montgomerie (16897ms) What companies manufacture golf clubs? the companies -13.586633894054794 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who manufacture golf club ? -> $x: ($x, manufacture, golf club) -> (the companies, manufacturing, golf clubs) -> the companies (9440ms) What companies manufacture golf clubs? a most enjoyable 27-hole Arthur Hills -13.602021888087997 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (a most enjoyable 27-hole Arthur Hills, designed, golf club) -> a most enjoyable 27-hole Arthur Hills (16897ms) What companies manufacture golf clubs? 1923 -13.603234800713809 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> when be golf club create ? -> $x: (golf club, be create in, $x) -> (The Royal Waterloo Golf Club, was created in, 1923) -> 1923 (9235ms) What companies manufacture golf clubs? the 27 hole Arthur Hills -13.6503059189164 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the 27 hole Arthur Hills, designed, Hill Country Golf Club) -> the 27 hole Arthur Hills (16960ms) What companies manufacture golf clubs? the last collaboration -13.669625578555802 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> when be golf club create ? -> $x: (golf club, be create in, $x) -> (Elkhorn Golf Club, was created in, the last collaboration) -> the last collaboration (9235ms) What companies manufacture golf clubs? golf bag # 101 -13.693304183511994 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (golf bag # 101, are designed to carry, your golf clubs) -> golf bag # 101 (16960ms) What companies manufacture golf clubs? CA, Cleveland Golf -13.70107712825677 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what company produce golf club ? -> $x: ($x, instance of, company) ($x, produce, golf club) -> (CA, Cleveland Golf, Instance Of, company) (Cleveland Golf, began producing, golf clubs) -> CA, Cleveland Golf (16960ms) What companies manufacture golf clubs? the 1923 -13.762139498392091 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> when be golf club create ? -> $x: (golf club, be create in, $x) -> $x: (golf club, create in, $x) -> (the Marrakech Royal Golf Club, created in, the 1923) -> the 1923 (9440ms) What companies manufacture golf clubs? the 27-hole , Jack Nicklaus -13.840392474763599 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the 27-hole , Jack Nicklaus, designed, Breckenridge Golf Club) -> the 27-hole , Jack Nicklaus (16960ms) What companies manufacture golf clubs? Gil Hanse -13.859564204146988 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Gil Hanse, designed, Applebrook Golf Club) -> Gil Hanse (16960ms) What companies manufacture golf clubs? Ping -13.90442204163323 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what company make golf club ? -> $x: ($x, instance of, company) ($x, make, golf club) -> (Ping, Instance Of, company) (Ping, make, golf clubs) -> Ping (18777ms) What companies manufacture golf clubs? Ted Robinson -13.9115829820715 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Ted Robinson, designed, the Tustin Ranch Golf Club) -> Ted Robinson (16960ms) What companies manufacture golf clubs? the vicinity -13.984876092679336 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> when be golf club create ? -> $x: (golf club, be create in, $x) -> (the European Center Golf Club, is created in, the vicinity) -> the vicinity (9235ms) What companies manufacture golf clubs? the early 19th century -14.058188848739734 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> when be golf club create ? -> $x: (golf club, be create in, $x) -> (so many golf clubs, were created in, the early 19th century) -> the early 19th century (9235ms) What companies manufacture golf clubs? Bridgestone APM -14.06870963087181 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what company make golf club ? -> $x: ($x, instance of, company) ($x, make, golf club) -> (Bridgestone APM, Instance Of, company) (Bridgestone, started making, golf clubs) -> Bridgestone APM (18777ms) What companies manufacture golf clubs? 1950 Stanley Thomson -14.092983118693256 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (1950 Stanley Thomson, designed, North Oaks Golf Club) -> 1950 Stanley Thomson (17081ms) What companies manufacture golf clubs? Bridgestone -14.113014477866574 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what company make golf club ? -> $x: ($x, instance of, company) ($x, make, golf club) -> (Bridgestone, Instance Of, company) (Bridgestone, started making, golf clubs) -> Bridgestone (18777ms) What companies manufacture golf clubs? Par -14.139368809219691 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what company make golf club ? -> $x: ($x, instance of, company) ($x, make, golf club) -> (Par, Instance Of, company) (par, made, Discount Golf Clubs) -> Par (18778ms) What companies manufacture golf clubs? Taylor's -14.140697025400854 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what company make golf club ? -> $x: ($x, instance of, company) ($x, make, golf club) -> (Taylor's, Instance Of, company) (taylor, made, golf club clone) -> Taylor's (18777ms) What companies manufacture golf clubs? George Cobb -14.203155055921153 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (George Cobb, designed, South Carolina National Golf Club) -> George Cobb (17081ms) What companies manufacture golf clubs? Norman -14.205868188268624 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Norman, designed, the Mayakoba Resort?s El Camaleon Golf Club) -> Norman (17081ms) What companies manufacture golf clubs? Taylor -14.212700551837045 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what company make golf club ? -> $x: ($x, instance of, company) ($x, make, golf club) -> (Taylor, Instance Of, company) (taylor, made, golf club clone) -> Taylor (18848ms) What companies manufacture golf clubs? contact -14.250592313774654 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what country be golf club make ? -> $x: ($x, instance of, country) (golf club, make, $x) -> (contact, Instance Of, category of country) (your golf club, made, contact) -> contact (9255ms) What companies manufacture golf clubs? What type of degree -14.320941633843683 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (What type of degree, to design, golf clubs) -> What type of degree (17081ms) What companies manufacture golf clubs? metal -14.38814752911765 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what country be golf club make ? -> $x: ($x, instance of, country) (golf club, make, $x) -> (metal, Instance Of, country's major export) (Golf clubs, made from, metal) -> metal (9256ms) What companies manufacture golf clubs? Tillinghast -14.417252249345044 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (Tillinghast, designed, BaltusrolGolf Club) -> Tillinghast (17110ms) What companies manufacture golf clubs? the Palmer -14.437476202622207 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the Palmer, designed, Four Seasons Golf Club) -> the Palmer (17110ms) What companies manufacture golf clubs? celebration -14.491324569345448 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> when be golf club create ? -> $x: (golf club, be create in, $x) -> (The Revere Golf Club, was created in, celebration) -> celebration (9256ms) What companies manufacture golf clubs? wood -14.520983420947875 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what country be golf club make ? -> $x: ($x, instance of, country) (golf club, make, $x) -> (wood, Instance Of, country product) (golf clubs, were made entirely of, wood) -> wood (9256ms) What companies manufacture golf clubs? money -14.594393570808801 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what country be golf club make ? -> $x: ($x, instance of, country) (golf club, make, $x) -> (money, Instance Of, host country) (golf club, has n?t been designed to make, money) -> money (9680ms) What companies manufacture golf clubs? hardwood -14.616217923535189 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what country be golf club make ? -> $x: ($x, instance of, country) (golf club, make, $x) -> (hardwood, Instance Of, country product) (Golfing clubs, were hand made from, hardwoods) -> hardwood (9820ms) What companies manufacture golf clubs? golfing -14.94775886237193 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> when be golf club create ? -> $x: (golf club, be create in, $x) -> $x: (golf club, create in, $x) -> (smaller sized golf club, create their knowledge in, golfing) -> golfing (9820ms) What companies manufacture golf clubs? China -14.972706060093994 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what country be golf club make ? -> $x: ($x, instance of, country) (golf club, make, $x) -> $x: ($x, top the list of, country) (golf club, make, $x) -> (China, tops the list of, carbon dioxide-emitting countries) (All Golf Clubs, made in, China) -> China (15378ms) What companies manufacture golf clubs? Iron -15.041884715799991 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what country be golf club make ? -> $x: ($x, instance of, country) (golf club, make, $x) -> $x: ($x, instance of, country) (golf club, actually make, $x) -> (Iron, Instance Of, country artist) (the original iron golf clubs, were actually made from cast, iron) -> Iron (11155ms) What companies manufacture golf clubs? the renowned Jack Nicklaus -15.152273369591637 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the renowned Jack Nicklaus, designed, Breckenridge Golf Club) -> the renowned Jack Nicklaus (17159ms) What companies manufacture golf clubs? the classic Ted Robinson -15.214638193244927 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the classic Ted Robinson, designed, Tustin Ranch Golf Club) -> the classic Ted Robinson (17159ms) What companies manufacture golf clubs? the nearby Nick Faldo -15.229669520170454 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the nearby Nick Faldo, designed, Ocean Dunes Golf Club) -> the nearby Nick Faldo (17159ms) What companies manufacture golf clubs? research -15.239961380961041 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (research, has gone into designing, golf clubs) -> research (17159ms) What companies manufacture golf clubs? the importance -15.303230916339004 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the importance, have designed, golf club components) -> the importance (17159ms) What companies manufacture golf clubs? the par 72 6,795 yard Greg Norman -15.650412889312014 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> who design golf club ? -> $x: ($x, design, golf club) -> (the par 72 6,795 yard Greg Norman, designed, Old Field Golf Club) -> the par 72 6,795 yard Greg Norman (17159ms) What companies manufacture golf clubs? iron -16.775134553740703 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what country be golf club make ? -> $x: ($x, instance of, country) (golf club, make, $x) -> $x: ($x, instance of, country) (golf club, actually make, $x) -> (iron, Instance Of, country commodity) (the original iron golf clubs, were actually made from cast, iron) -> iron (11206ms) What companies manufacture golf clubs? quality -16.825928313116762 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what country be golf club make ? -> $x: ($x, instance of, country) (golf club, make, $x) -> $x: ($x, instance of, country) (golf club, with make, $x) -> (quality, Instance Of, country study) (the Alpha golf clubs, are made with, quality) -> quality (13364ms) What companies manufacture golf clubs? animal -16.829417456272925 What companies manufacture golf clubs? -> what company manufacture [ golf club ] ? -> what country be golf club make ? -> $x: ($x, instance of, country) (golf club, make, $x) -> $x: ($x, instance of, country) (golf club, look to make, $x) -> (animal, Instance Of, country motif) (Some golf club covers, are made to look like, animals) -> animal (15424ms) What operas has Caruso sung? La Boheme -3.295638499905553 What operas has Caruso sung? -> $x: ($x, instance of, operas) (Caruso, sung, $x) -> (La Boheme, Instance Of, opera) (Enrico Caruso, sang in, ?La Boheme?) -> La Boheme (1644ms) What operas has Caruso sung? Italian -7.494563450948262 What operas has Caruso sung? -> $x: ($x, instance of, operas) (Caruso, sung, $x) -> $x: ($x, instance of, operas) (Caruso, say something, $x) -> (Italian, Instance Of, opera language) (Caruso, said something in, Italian) -> Italian (3185ms) What is the phobia for number 13? ? Triskaidekaphobia -7.612715389179968 What is the phobia for number 13? -> what be the phobia for [ number 13 ] ? -> what be the fear of number 13 ? -> $x: ($x, be the fear of, number 13) -> (? Triskaidekaphobia, is the fear of, the number 13) -> ? Triskaidekaphobia (1423ms) What is the phobia for number 13? ? Triskaidekaphobia -7.833811384789662 What is the phobia for number 13? -> what be the phobia for [ number 13 ] ? -> what be fear of number 13 ? -> $x: ($x, be fear of, number 13) -> (? Triskaidekaphobia, is an irrational fear of, the number 13) -> ? Triskaidekaphobia (1348ms) What is the phobia for number 13? Triskaidekaphobia -8.045619443797355 What is the phobia for number 13? -> what be the phobia for [ number 13 ] ? -> what be the fear of number 13 ? -> $x: ($x, be the fear of, number 13) -> (Triskaidekaphobia, is the fear of, the number 13) -> Triskaidekaphobia (1424ms) What is the phobia for number 13? An example -8.317498805692743 What is the phobia for number 13? -> what be the phobia for [ number 13 ] ? -> what be fear of number 13 ? -> $x: ($x, be fear of, number 13) -> (An example, might be fear of, the number 13) -> An example (1348ms) What is the phobia for number 13? Triskadekaphobia -8.869014285137357 What is the phobia for number 13? -> what be the phobia for [ number 13 ] ? -> what be fear of number 13 ? -> $x: ($x, be fear of, number 13) -> (Triskadekaphobia, is fear of, the number 13) -> Triskadekaphobia (1348ms) What is the phobia for number 13? triskaidekaphobia -9.988700536485387 What is the phobia for number 13? -> what be the phobia for [ number 13 ] ? -> what be the fear of number 13 ? -> $x: ($x, be the fear of, number 13) -> (triskaidekaphobia, is the fear of, the number 13 Search) -> triskaidekaphobia (1424ms) What is the phobia for number 13? widespread phobia -10.322694431815064 What is the phobia for number 13? -> what be the phobia for [ number 13 ] ? -> what be the fear number 13 ? -> $x: (the fear number 13, instance of, $x) -> (Fear of the number 13, Instance Of, widespread phobia) -> widespread phobia (3874ms) What is the phobia for number 13? A NSN Number -10.33369877858137 What is the phobia for number 13? -> what be the phobia for [ number 13 ] ? -> what represent number 13 ? -> $x: ($x, represent, number 13) -> (A NSN Number, is represented by, a 13 digit number) -> A NSN Number (1914ms) What is the phobia for number 13? learned, culture-specific social behavior -10.510717097701061 What is the phobia for number 13? -> what be the phobia for [ number 13 ] ? -> what be the fear number 13 ? -> $x: (the fear number 13, instance of, $x) -> (fear of the number 13, Instance Of, learned, culture-specific social behavior) -> learned, culture-specific social behavior (3873ms) What is the phobia for number 13? friggatriskaidekaphobia -10.542217786513508 What is the phobia for number 13? -> what be the phobia for [ number 13 ] ? -> what be fear of number 13 ? -> $x: ($x, be fear of, number 13) -> (friggatriskaidekaphobia, is fear of, the number 13) -> friggatriskaidekaphobia (1672ms) What is the phobia for number 13? the unknown -10.721873415882524 What is the phobia for number 13? -> what be the phobia for [ number 13 ] ? -> what be a fear of number 13 ? -> $x: (number 13, fear, $x) -> (Number 13, reflects man?s fear of, the unknown) -> the unknown (1672ms) What is the phobia for number 13? Friggatriskaidekaphobia -10.858538586092347 What is the phobia for number 13? -> what be the phobia for [ number 13 ] ? -> what phobia be fear of number 13 ? -> $x: ($x, instance of, phobia) ($x, be fear of, number 13) -> (Friggatriskaidekaphobia, Instance Of, phobia) (friggatriskaidekaphobia, is fear of, the number 13) -> Friggatriskaidekaphobia (1672ms) What is the phobia for number 13? the cards -11.961709948341808 What is the phobia for number 13? -> what be the phobia for [ number 13 ] ? -> what represent number 13 ? -> $x: ($x, represent, number 13) -> (the cards, will be represented as, a number 1..13) -> the cards (1914ms) What is the phobia for number 13? the hexadecimal letter D -12.01303091281164 What is the phobia for number 13? -> what be the phobia for [ number 13 ] ? -> what represent number 13 ? -> $x: ($x, represent, number 13) -> (the hexadecimal letter D, represents, the decimal number 13) -> the hexadecimal letter D (1913ms) What is the phobia for number 13? phobia -12.474256751753238 What is the phobia for number 13? -> what be the phobia for [ number 13 ] ? -> what be the fear number 13 ? -> $x: (the fear number 13, instance of, $x) -> (fear of the number 13, Instance Of, phobia) -> phobia (3873ms) What is the phobia for number 13? championship -14.757029615056869 What is the phobia for number 13? -> what be the phobia for [ number 13 ] ? -> what be the aspect of number 13 ? -> $x: (number 13, aspect, $x) -> $x: ($x, will join, number 13) -> (championship, will be joined by, number 13 seed Jason Greenslade) -> championship (4304ms) Where is South Bend? Indiana 0.21936564364635291 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, are planned in, Indiana) -> Indiana (3437ms) Where is South Bend? Belfast -0.1950353907830663 Where is South Bend? -> $x: (South Bend, is in, $x) -> (the South Bend Tribune Jackson, was born in, Belfast) -> Belfast (3437ms) Where is South Bend? Louisiana -0.21010178588094697 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Toledo Bend State Park, was the best park in, Louisiana) -> Louisiana (3437ms) Where is South Bend? South Bend -0.4778131435380718 Where is South Bend? -> $x: (South Bend, is in, $x) -> (the South Bend Division, is held in, South Bend) -> South Bend (3437ms) Where is South Bend? Northern Indiana -0.5726385562980835 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, is located in, Northern Indiana) -> Northern Indiana (3732ms) Where is South Bend? northern Indiana -1.031526874010083 Where is South Bend? -> $x: (South Bend, is in, $x) -> (Indiana South Bend, is located in, northern Indiana) -> northern Indiana (3732ms) Where is South Bend? Bethel Cemetery -1.2370444586613751 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, was buried in, Bethel Cemetery) -> Bethel Cemetery (3732ms) Where is South Bend? bed -1.4364705361121983 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, was found dead in, bed) -> bed (3822ms) Where is South Bend? Authorities Concept Scheme -1.4715315599046548 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend Reservoir (Tex.), In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (3822ms) Where is South Bend? the St Joseph County -1.4919764071169892 Where is South Bend? -> $x: (South Bend, is in, $x) -> (the South Bend, is in, the St Joseph County) -> the St Joseph County (3822ms) Where is South Bend? Geographic Names Concept Scheme -1.5040184187945707 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend Reservoir (Tex.), In Scheme, Geographic Names Concept Scheme) -> Geographic Names Concept Scheme (3822ms) Where is South Bend? St -1.5222822192060481 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, is located in, St) -> St (3822ms) Where is South Bend? tradition and rich -1.5831221596001697 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, is rich in, tradition and rich) -> tradition and rich (3840ms) Where is South Bend? extreme danger -1.6224454818620129 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, is believed to be in, extreme danger) -> extreme danger (3840ms) Where is South Bend? snow -1.677237690858239 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, is blanketed in, snow) -> snow (3840ms) Where is South Bend? a pleasant setting -1.7218678754329109 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, is a pleasant town in, a pleasant setting) -> a pleasant setting (3840ms) Where is South Bend? Rice Cemetery -1.750360766578194 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, was buried in, Rice Cemetery) -> Rice Cemetery (3840ms) Where is South Bend? a successful career -1.8294421241840233 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, was the latest stop in, a successful career) -> a successful career (3871ms) Where is South Bend? the Eastern Standard Time Zone -1.8377316099598382 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, is in, the Eastern Standard Time Zone) -> the Eastern Standard Time Zone (3870ms) Where is South Bend? culture , heritage , history and fun -1.868504319353424 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, is rich in, culture , heritage , history and fun) -> culture , heritage , history and fun (3870ms) Where is South Bend? diverse and thriving neighborhoods -1.8766969341781643 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, is seen in, diverse and thriving neighborhoods) -> diverse and thriving neighborhoods (3870ms) Where is South Bend? the Quaker Room -1.8807255678751642 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend Friends, have been worshiping in, the Quaker Room) -> the Quaker Room (3870ms) Where is South Bend? the Ivy Tech network -1.896798653104579 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, are the only ones available in, the Ivy Tech network) -> the Ivy Tech network (3895ms) Where is South Bend? the U.S. District Court -1.902765975989092 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend lawsuit, was filed in, the U.S. District Court) -> the U.S. District Court (3895ms) Where is South Bend? a three way tie -1.95276441783298 Where is South Bend? -> $x: (South Bend, is in, $x) -> (The IU South Bend Titans, are now in, a three way tie) -> a three way tie (3895ms) Where is South Bend? charge -2.0022113237250556 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, will be in, charge) -> charge (3894ms) Where is South Bend? touch -2.051234460005909 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, will be in, touch) -> touch (3914ms) Where is South Bend? New York -2.0996569297002394 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, is now back in, New York) -> New York (3914ms) Where is South Bend? ZEST -2.1393790689727457 Where is South Bend? -> $x: (South Bend, is in, $x) -> (the Raymond-South Bend area, are detailed in, ZEST) -> ZEST (3914ms) Where is South Bend? Joplin -2.139751767217941 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend resident, stopped in, Joplin) -> Joplin (3914ms) Where is South Bend? Oakland -2.224699283896367 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, now lives in, Oakland) -> Oakland (3914ms) Where is South Bend? a series -2.284680494933484 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, is displayed in, a series) -> a series (3914ms) Where is South Bend? history -2.539356792280051 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend/Mishawaka, is a community rich in, history) -> history (3936ms) Where is South Bend? products -2.6309509068749897 Where is South Bend? -> $x: (South Bend, is in, $x) -> (The more south central bent, is also evident in, products) -> products (3936ms) Where is South Bend? Uniontown -2.7592375034155774 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, lived in, Uniontown) -> Uniontown (3936ms) Where is South Bend? Bloomington -2.860273633989606 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, will open a sixth in, Bloomington) -> Bloomington (3936ms) Where is South Bend? Williamston -2.8662899963351878 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, raised in, Williamston) -> Williamston (3953ms) Where is South Bend? the nation -2.8795985865078535 Where is South Bend? -> $x: (South Bend, is in, $x) -> (January 21 , 2010 South Bend, is the best city in, the nation) -> the nation (3953ms) Where is South Bend? Detroit -3.0042300506290767 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, later filed a related suit in, Detroit) -> Detroit (3953ms) Where is South Bend? the north -3.157479084582973 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, is in, the north) -> the north (3990ms) Where is South Bend? auto insurance -3.18483963859911 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, provides services in, auto insurance) -> auto insurance (3990ms) Where is South Bend? ghost hunting -3.245700385939175 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (Indiana University South Bend, offers classes in, ghost hunting) -> ghost hunting (3990ms) Where is South Bend? the air -3.3261126380682793 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend Applause, was in, the air) -> the air (4017ms) Where is South Bend? the release -3.343573894701958 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, was n?t included in, the release) -> the release (4017ms) Where is South Bend? the heart -3.3684201230769926 Where is South Bend? -> $x: (South Bend, is in, $x) -> (Hilton South Bend hotel, is in, the heart) -> the heart (4017ms) Where is South Bend? 1957. -3.4136851283401173 Where is South Bend? -> $x: (South Bend, is in, $x) -> (The South Bend Civic Theatre, was founded in, 1957.) -> 1957. (4017ms) Where is South Bend? the movie -3.4605752783379478 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, was featured in, the movie) -> the movie (4050ms) Where is South Bend? the invasion -3.4658804494468223 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, was involved in, the invasion) -> the invasion (4050ms) Where is South Bend? the process -3.513130674994815 Where is South Bend? -> $x: (South Bend, is in, $x) -> (non-wing sprints South Bend Motor Speedway, is in, the process) -> the process (4050ms) Where is South Bend? Studebaker -3.5466125587476953 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> $x: (south bend, have be from, $x) -> (South Bend, had been acquired from, Studebaker) -> Studebaker (5266ms) Where is South Bend? the left hand menu -3.574015110828225 Where is South Bend? -> $x: (South Bend, is in, $x) -> (south bend, will be posted in, the left hand menu) -> the left hand menu (4131ms) Where is South Bend? less than quarter -3.6383496697641147 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, responded in, less than quarter) -> less than quarter (4131ms) Where is South Bend? the two following games -3.6696336706761175 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, were a rumor in, the two following games) -> the two following games (4163ms) Where is South Bend? the same way -3.713052335128335 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend Cash Advance loans, are repaid in, the same way) -> the same way (4163ms) Where is South Bend? the country -3.732569214888895 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, is rising faster than anywhere else in, the country) -> the country (4163ms) Where is South Bend? ?very critical condition -3.7514426153236746 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (A South Bend man, remained in, ?very critical condition) -> ?very critical condition (4179ms) Where is South Bend? a hotel cause -3.802875016587132 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, slept in, a hotel cause) -> a hotel cause (4179ms) Where is South Bend? the top five -3.819220641646848 Where is South Bend? -> $x: (South Bend, is in, $x) -> (1937 South Bend Medical Laboratory, was rated in, the top five) -> the top five (4179ms) Where is South Bend? simple and powerful ways -3.8289385014198754 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (Mark Vanderheyden South Bend, saves in, simple and powerful ways) -> simple and powerful ways (4211ms) Where is South Bend? the U.S. Army -3.8312690858556726 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, served in, the U.S. Army) -> the U.S. Army (4211ms) Where is South Bend? third place -3.8392263856986624 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, came in, third place) -> third place (4211ms) Where is South Bend? CONJUNCTION -3.9055214586684084 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (SOUTH BEND, WILL GIVE A TALK IN, CONJUNCTION) -> CONJUNCTION (4211ms) Where is South Bend? an article -3.914283926087264 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend Tribune, Included in, an article) -> an article (4231ms) Where is South Bend? several finance roles -3.9213575227006263 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, served in, several finance roles) -> several finance roles (4232ms) Where is South Bend? a Gift suitable -3.9351919661310486 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, has Flowers in, a Gift suitable) -> a Gift suitable (4232ms) Where is South Bend? the United States Army -3.9400052026318297 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, served in, the United States Army) -> the United States Army (4232ms) Where is South Bend? HCAHPS scores -3.944853553820445 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, saw an increase in, HCAHPS scores) -> HCAHPS scores (4231ms) Where is South Bend? the College Junior Women -4.007054486031973 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, took first place in, the College Junior Women) -> the College Junior Women (4231ms) Where is South Bend? assets -4.158190711649436 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, has approximately $ 1.4 billion in, assets) -> assets (4380ms) Where is South Bend? zoology -4.1654927151295205 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, earned a bachelor?s degree in, zoology) -> zoology (4380ms) Where is South Bend? fifth -4.489894911391543 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> ('s South Bend team, came in, fifth) -> fifth (4583ms) Where is South Bend? excess -4.510012752583871 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, stood in, excess) -> excess (4583ms) Where is South Bend? 1979 -4.624539686046826 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, was founded in, 1979) -> 1979 (4884ms) Where is South Bend? 1877 -4.695911470556429 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, was the founding in, 1877) -> 1877 (4884ms) Where is South Bend? 1933 -4.718702023102288 Where is South Bend? -> $x: (South Bend, is in, $x) -> (the South Bend Symphony, was founded in, 1933) -> 1933 (4884ms) Where is South Bend? 2008 -4.750667144426996 Where is South Bend? -> $x: (South Bend, is in, $x) -> (IU South Bend, was formed in, 2008) -> 2008 (5013ms) Where is South Bend? 1903 -4.751615898955348 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend Railroad, was started in, 1903) -> 1903 (5013ms) Where is South Bend? early September -4.828152329935964 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend?s playoffs, ended in, early September) -> early September (5013ms) Where is South Bend? the mid-30 -4.846986656104891 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, are expected to be in, the mid-30) -> the mid-30 (5012ms) Where is South Bend? music -4.886095033202119 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, has many notable offerings in, music) -> music (5013ms) Where is South Bend? the bottom -5.131214478181456 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, added four runs in, the bottom) -> the bottom (5170ms) Where is South Bend? the top -5.177113248767022 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, bounced back in, the top) -> the top (5170ms) Where is South Bend? 83 -5.372201211284459 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (second and South Bend, came in at, 83) -> 83 (5307ms) Where is South Bend? the Sept. 11 attacks -5.509494420805543 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (two South Bend natives, lost in, the Sept. 11 attacks) -> the Sept. 11 attacks (5327ms) Where is South Bend? the wrong location -5.5228951861602384 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, could result in, the wrong location) -> the wrong location (5347ms) Where is South Bend? the economic world -5.610430799319288 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, stands out in, the economic world) -> the economic world (5363ms) Where is South Bend? the towns -5.648116604562396 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, grew up in, the towns) -> the towns (5383ms) Where is South Bend? the rankings -5.73045321866596 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, had done so well in, the rankings) -> the rankings (5408ms) Where is South Bend? the tenth -5.741311823504236 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, won in, the tenth) -> the tenth (5408ms) Where is South Bend? the school orchestra -5.77096258061766 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, played flute in, the school orchestra) -> the school orchestra (5428ms) Where is South Bend? the finals -5.783654045433905 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, took the lead in, the finals) -> the finals (5428ms) Where is South Bend? Danny Graber -5.817240769807382 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> $x: (south bend, have from, $x) -> (South Bend, has comments from, Danny Graber) -> Danny Graber (5457ms) Where is South Bend? the second inning -5.849164184348471 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, opened the scoring in, the second inning) -> the second inning (5543ms) Where is South Bend? the seventh -5.909139923837546 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, tacked on three more runs in, the seventh) -> the seventh (5543ms) Where is South Bend? 1865 -6.145154193799628 Where is South Bend? -> $x: (South Bend, is in, $x) -> (South Bend, was incorporated as a city in, 1865) -> 1865 (5723ms) Where is South Bend? the 1940 ?s -6.190084337053852 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (the South Bend area, occurred in, the 1940 ?s) -> the 1940 ?s (5811ms) Where is South Bend? May 1903 -6.204910945606 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, probably occurred in, May 1903) -> May 1903 (5811ms) Where is South Bend? 1824 -6.779146147255182 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, returned in, 1824) -> 1824 (5993ms) Where is South Bend? 1970 -6.803027253018821 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, unionized in, 1970) -> 1970 (5993ms) Where is South Bend? 1954 -7.012835564361076 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend, finished second in, 1954) -> 1954 (6013ms) Where is South Bend? 1991 -7.086124679245189 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (South Bend Chocolate Factory, opened in, 1991) -> 1991 (6048ms) Where is South Bend? the suit -7.168931764289206 Where is South Bend? -> $x: (South Bend, is in, $x) -> $x: (south bend, in, $x) -> (a South Bend attorney, involved in, the suit) -> the suit (6078ms) Where is South Bend? Hounslow -12.568844099602648 Where is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Bend It Like Beckham, Notable filming locations, Hounslow) -> Hounslow (6896ms) Where is South Bend? London -12.568844099602648 Where is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Bend It Like Beckham, Notable filming locations, London) -> London (6895ms) Where is South Bend? Dadeville -12.568844099602648 Where is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Battle of Horseshoe Bend, Location(s), Dadeville) -> Dadeville (6895ms) Where is South Bend? Southall -12.568844099602648 Where is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Bend It Like Beckham, Notable filming locations, Southall) -> Southall (6896ms) Where is South Bend? Kentucky -12.568844099602648 Where is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Battle of Lucas Bend, Location(s), Kentucky) -> Kentucky (6896ms) Where is South Bend? Wiota -12.568844099602648 Where is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Battle of Horseshoe Bend, Location(s), Wiota) -> Wiota (6895ms) Where is South Bend? Macedonia -12.568844099602648 Where is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Battle of the Cerna Bend, Location(s), Macedonia) -> Macedonia (6906ms) Where is South Bend? Soho -13.00664052426518 Where is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Bend It Like Beckham, Notable filming locations, Soho) -> Soho (6906ms) Where is South Bend? Bend -13.00664052426518 Where is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (BendFilm Festival, Location, Bend) -> Bend (6906ms) Where is South Bend? Crna -13.00664052426518 Where is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Battle of the Cerna Bend, Location(s), Crna) -> Crna (6906ms) Where is South Bend? Gunnersbury Park -13.07705278256507 Where is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Bend It Like Beckham, Notable filming locations, Gunnersbury Park) -> Gunnersbury Park (6906ms) Where is South Bend? Taylor County -13.120102764323553 Where is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Battle of Tebbs Bend, Location(s), Taylor County) -> Taylor County (7046ms) Where is South Bend? Madison Parish -13.120102764323553 Where is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Battle of Milliken's Bend, Location(s), Madison Parish) -> Madison Parish (7492ms) Where is South Bend? Volga Bulgaria -13.120102764323553 Where is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Battle of Samara Bend, Location(s), Volga Bulgaria) -> Volga Bulgaria (7046ms) Where is South Bend? Piccadilly Circus -13.120102764323553 Where is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Bend It Like Beckham, Notable filming locations, Piccadilly Circus) -> Piccadilly Circus (7046ms) Where is South Bend? Mississippi River -13.120102764323553 Where is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Battle of Lucas Bend, Location(s), Mississippi River) -> Mississippi River (7046ms) Where is South Bend? Sabine River -13.120102764323553 Where is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Toledo Bend Reservoir, Outflow location, Sabine River) -> Sabine River (7046ms) Where is South Bend? Central London -13.120102764323553 Where is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Bend It Like Beckham, Notable filming locations, Central London) -> Central London (7046ms) Where is South Bend? Woodford, Wisconsin -13.633419072240372 Where is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Battle of Horseshoe Bend, Location(s), Woodford, Wisconsin) -> Woodford, Wisconsin (7492ms) Where is South Bend? St. Mary Parish -13.633419072240372 Where is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Battle of Irish Bend, Location(s), St. Mary Parish) -> St. Mary Parish (7492ms) Where is South Bend? Fort Pillow State Park -13.633419072240372 Where is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Battle of Plum Point Bend, Location(s), Fort Pillow State Park) -> Fort Pillow State Park (7492ms) Where is South Bend? Bent Creek Vineyard -13.633419072240372 Where is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Bent Creek Vineyard, Organization locations, Bent Creek Vineyard) -> Bent Creek Vineyard (7492ms) Where is South Bend? Kansas -14.131938677272435 Where is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Great bend, is a location located within, Kansas) -> Kansas (7492ms) Where is South Bend? Lompoc -14.181537956452654 Where is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (Bent, was in, Lompoc) -> Lompoc (10173ms) Where is South Bend? Greece -14.334473117564222 Where is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (Bent, had all been in, Greece) -> Greece (10172ms) Where is South Bend? Ghana -14.389194107216127 Where is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (Bend, is now a missionary in, Ghana) -> Ghana (10173ms) Where is South Bend? Hoover -14.790529493386869 Where is South Bend? -> where [ be south bend ] ? -> what get be south bend ? -> what get be bend ? -> $x: ($x, get be, bend) -> (Hoover, is getting a bit old for, all the bending) -> Hoover (7632ms) Where is South Bend? Time -14.857801379081156 Where is South Bend? -> where [ be south bend ] ? -> what get be south bend ? -> what get be bend ? -> $x: ($x, get be, bend) -> (Time, should be taken to get, the right pre-bend settings) -> Time (7632ms) Where is South Bend? Central Oregon -14.858887859445879 Where is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (Bend, is in, Central Oregon) -> Central Oregon (10173ms) Where is South Bend? Ssion -14.877102134193427 Where is South Bend? -> where [ be south bend ] ? -> what get be south bend ? -> what get be bend ? -> $x: ($x, get be, bend) -> (Ssion, is getting ready to officially release, ?Bent ?) -> Ssion (7632ms) Where is South Bend? Deschutes County -14.955358935188174 Where is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (Bend, is a city in, Deschutes County) -> Deschutes County (10199ms) Where is South Bend? Divers -15.038254574151523 Where is South Bend? -> where [ be south bend ] ? -> what get be south bend ? -> what get be bend ? -> $x: ($x, get be, bend) -> (Divers, have been known to get, the Bends) -> Divers (7633ms) Where is South Bend? Northwest Texas -15.419513215795075 Where is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (Bent, is being used in, Northwest Texas) -> Northwest Texas (10198ms) Where is South Bend? furniture making -15.423006616189655 Where is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (South Bend, was an excellent location for, furniture making) -> furniture making (7633ms) Where is South Bend? guitar solo -15.431271904521958 Where is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (Bending, is another style in, guitar solo) -> guitar solo (10198ms) Where is South Bend? a lot -15.435216978992571 Where is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (?Bend, is a beautiful location with, a lot) -> a lot (7633ms) Where is South Bend? central Oregon -15.495013670634332 Where is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (Bend, is a beautiful town in, central Oregon) -> central Oregon (10198ms) Where is South Bend? central oregon -15.513974047659541 Where is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (Bend, is the largest town in, central oregon) -> central oregon (10234ms) Where is South Bend? family reunions -15.5864242770641 Where is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Whistlers Bend, makes a great location for, family reunions) -> family reunions (7698ms) Where is South Bend? an ongoing station -15.60948346820398 Where is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (the Bent, is the location of, an ongoing station) -> an ongoing station (7697ms) Where is South Bend? superlative form -15.713485618051436 Where is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (Bent, is in, superlative form) -> superlative form (10234ms) Where is South Bend? ETS. -15.74348928855339 Where is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Bend road, are a good location for, ETS.) -> ETS. (7697ms) Where is South Bend? men?s -15.758877915773674 Where is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (Bend, was awarded the gold medal in, men?s) -> men?s (10234ms) Where is South Bend? downtown Bend -15.765758004316265 Where is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Bend travelers, is a perfect central location in, downtown Bend) -> downtown Bend (7698ms) Where is South Bend? communication -15.839943041473527 Where is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (Bent, is apparently in, communication) -> communication (10234ms) Where is South Bend? ?Country driving? -15.843780667376356 Where is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (bends, is described in, ?Country driving?) -> ?Country driving? (10234ms) Where is South Bend? an off road race -15.849835552417733 Where is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Bend, is the ideal location for, an off road race) -> an off road race (7698ms) Where is South Bend? summer -15.885921314055793 Where is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (bent, is usually in, summer) -> summer (10234ms) Where is South Bend? beer -15.939857369652518 Where is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (Bend, is awash in, beer) -> beer (10288ms) Where is South Bend? acres -15.949048389923707 Where is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (Bent, is in, acres) -> acres (10288ms) Where is South Bend? thirty five countries -15.953172994156063 Where is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (Bent, has been performed in over, thirty five countries) -> thirty five countries (10287ms) Where is South Bend? romantic comedies -15.954206138129475 Where is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (Bent, is the latest in, romantic comedies) -> romantic comedies (10287ms) Where is South Bend? an England squad -15.969237465055002 Where is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (Bent, is back in, an England squad) -> an England squad (10287ms) Where is South Bend? a quiet location -15.972317496143718 Where is South Bend? -> where [ be south bend ] ? -> when be south bend be ? -> when be bend be ? -> $x: (bend, be be in, $x) -> (Bend, is nestled in, a quiet location) -> a quiet location (10287ms) Where is South Bend? a little troublesome -15.98081024236907 Where is South Bend? -> where [ be south bend ] ? -> what get be south bend ? -> what get be bend ? -> $x: ($x, get be, bend) -> (a little troublesome, was getting, clean blow bends) -> a little troublesome (7697ms) Where is South Bend? John Brock -16.09118523914819 Where is South Bend? -> where [ be south bend ] ? -> what get be south bend ? -> what get be bend ? -> $x: ($x, get be, bend) -> (John Brock, are getting ready for, a back bend warmup) -> John Brock (7737ms) Where is South Bend? each guide -16.149639360352005 Where is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (The rod?s bend, determines the location of, each guide) -> each guide (7737ms) Where is South Bend? access -16.353091977808404 Where is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Bending Branch, is the prime location for, access) -> access (7737ms) Where is South Bend? the United States -16.45494141693412 Where is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Big Bend, is the only location in, the United States) -> the United States (7737ms) Where is South Bend? the Second Chance -16.480338754447118 Where is South Bend? -> where [ be south bend ] ? -> what get be south bend ? -> what get be bend ? -> $x: ($x, get be, bend) -> (the Second Chance, is to get, the bends) -> the Second Chance (7737ms) Where is South Bend? adventures -16.482989563246342 Where is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Bend, is an ideal location for, adventures) -> adventures (7737ms) Where is South Bend? a squeak -16.51559072920771 Where is South Bend? -> where [ be south bend ] ? -> what get be south bend ? -> what get be bend ? -> $x: ($x, get be, bend) -> (a squeak, is getting, bend) -> a squeak (7764ms) Where is South Bend? physio -16.53276161464175 Where is South Bend? -> where [ be south bend ] ? -> what get be south bend ? -> what get be bend ? -> $x: ($x, get be, bend) -> (physio, is getting, a knee bend) -> physio (7764ms) Where is South Bend? space -16.63157802040787 Where is South Bend? -> where [ be south bend ] ? -> what get be south bend ? -> what get be bend ? -> $x: ($x, get be, bend) -> (space, is going to get, a little bent) -> space (7764ms) Where is South Bend? action -16.68233577096718 Where is South Bend? -> where [ be south bend ] ? -> what get be south bend ? -> what get be bend ? -> $x: ($x, get be, bend) -> (action, is used to get, flat , angular or bent areas) -> action (7764ms) Where is South Bend? home -16.765976092550282 Where is South Bend? -> where [ be south bend ] ? -> what get be south bend ? -> what get be bend ? -> $x: ($x, get be, bend) -> (home, is learning to get, the correct bend) -> home (7764ms) Where is South Bend? 18 employees -16.95809724859261 Where is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (South Bend, was the only location with, 18 employees) -> 18 employees (7790ms) Where is South Bend? You guys -17.08701620756748 Where is South Bend? -> where [ be south bend ] ? -> what get be south bend ? -> what get be bend ? -> $x: ($x, get be, bend) -> (You guys, are getting, all bent) -> You guys (7791ms) Where is South Bend? the customer end -17.49816182905997 Where is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (The B-end, is the location of, the customer end) -> the customer end (7790ms) Where is South Bend? 22 counties -17.662689637343327 Where is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Goodwill Big Bend, has locations throughout, 22 counties) -> 22 counties (7791ms) Where is South Bend? the underwire -17.668814364562472 Where is South Bend? -> where [ be south bend ] ? -> what get be south bend ? -> what get be bend ? -> $x: ($x, get be, bend) -> (the underwire, was getting, all bent) -> the underwire (7790ms) Where is South Bend? the whole problem -17.716666475974396 Where is South Bend? -> where [ be south bend ] ? -> what get be south bend ? -> what get be bend ? -> $x: ($x, get be, bend) -> (the whole problem, is to get, Whistle Bend) -> the whole problem (7791ms) Where is South Bend? The scoring -17.90174149827007 Where is South Bend? -> where [ be south bend ] ? -> what get be south bend ? -> what get be bend ? -> $x: ($x, get be, bend) -> (The scoring, is important to get, a nice crisp bend) -> The scoring (7823ms) Where is South Bend? the scrutiny Judge Adams -17.925928313155055 Where is South Bend? -> where [ be south bend ] ? -> what get be south bend ? -> what get be bend ? -> $x: ($x, get be, bend) -> (the scrutiny Judge Adams, is getting in, the Coastal Bend) -> the scrutiny Judge Adams (7822ms) Where is South Bend? the main Kiowa camp -17.95086166274794 Where is South Bend? -> where be [ south bend ] ? -> what be south bend s location ? -> what be bend s location ? -> $x: (bend, location, $x) -> (Bent, gave the location of, the main Kiowa camp) -> the main Kiowa camp (7820ms) Who is Alberto Tomba? italian star -1.665290881034979 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, italian star) -> italian star (2283ms) Who is Alberto Tomba? famous skier -1.665290881034979 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, famous skier) -> famous skier (2283ms) Who is Alberto Tomba? charismatic sportsman -1.7345061399660882 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, charismatic sportsman) -> charismatic sportsman (2283ms) Who is Alberto Tomba? mixed drink -1.7678751612196053 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, mixed drink) -> mixed drink (2283ms) Who is Alberto Tomba? alpine skiier -1.775633802004088 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, alpine skiier) -> alpine skiier (2283ms) Who is Alberto Tomba? ski champion -2.13078071345731 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, ski champion) -> ski champion (2283ms) Who is Alberto Tomba? big mane -2.216447037448759 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, big mane) -> big mane (2373ms) Who is Alberto Tomba? ace skier -2.216447037448759 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, ace skier) -> ace skier (2374ms) Who is Alberto Tomba? big star -2.3542232836235963 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Sex symbol skier Alberto Tomba, Instance Of, big star) -> big star (2373ms) Who is Alberto Tomba? popular former champion -2.4311479925972534 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Olympic champions Alberto Tomba, Instance Of, popular former champion) -> popular former champion (2374ms) Who is Alberto Tomba? friend of mine -2.4334426133569664 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, friend of mine) -> friend of mine (2373ms) Who is Alberto Tomba? Italian retired alpine ski racer -2.4363275068891292 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, Italian retired alpine ski racer) -> Italian retired alpine ski racer (2374ms) Who is Alberto Tomba? retired professional alpine skier of Italian nationality -2.4375551070496835 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, retired professional alpine skier of Italian nationality) -> retired professional alpine skier of Italian nationality (2534ms) Who is Alberto Tomba? famous Italian Alpine skier -2.44461301655552 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, famous Italian Alpine skier) -> famous Italian Alpine skier (2534ms) Who is Alberto Tomba? Italian Olympic alpine skier -2.44461301655552 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, Italian Olympic alpine skier) -> Italian Olympic alpine skier (2534ms) Who is Alberto Tomba? Italian retired skier -2.4505227413227635 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, Italian retired skier) -> Italian retired skier (2534ms) Who is Alberto Tomba? flamboyant Italian skier -2.4505227413227635 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, flamboyant Italian skier) -> flamboyant Italian skier (2534ms) Who is Alberto Tomba? big money player -2.4740242635379346 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, big money player) -> big money player (2565ms) Who is Alberto Tomba? retired Italian alpine skier -2.4895069719906626 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, retired Italian alpine skier) -> retired Italian alpine skier (2565ms) Who is Alberto Tomba? world Alpine Ski champion -2.4895069719906626 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, world Alpine Ski champion) -> world Alpine Ski champion (2565ms) Who is Alberto Tomba? skier, Olympic gold medal winner -2.521993830880578 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, skier, Olympic gold medal winner) -> skier, Olympic gold medal winner (2565ms) Who is Alberto Tomba? champion -2.884959184551226 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, champion) -> champion (2565ms) Who is Alberto Tomba? 44 year old Italian Celebrity -2.8959251217059245 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, 44 year old Italian Celebrity) -> 44 year old Italian Celebrity (2580ms) Who is Alberto Tomba? Italian skier -2.966153592776112 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, Italian skier) -> Italian skier (2580ms) Who is Alberto Tomba? Italian gent -3.0110475482112538 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, Italian gent) -> Italian gent (2594ms) Who is Alberto Tomba? star -3.0598125482538743 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, star) -> star (2594ms) Who is Alberto Tomba? athlete -3.10008542910595 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Tomba Alberto, Instance Of, athlete) -> athlete (2595ms) Who is Alberto Tomba? artist -3.1267357840236656 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, artist) -> artist (2595ms) Who is Alberto Tomba? Italian -3.764041141775003 Who is Alberto Tomba? -> $x: (Alberto Tomba, instance of, $x) -> (Alberto Tomba, Instance Of, Italian) -> Italian (2635ms) Who is Alberto Tomba? young my favourite athlete -9.588341913446182 Who is Alberto Tomba? -> who be [ alberto tomba ] ? -> who be be alberto tomba ? -> $x: ($x, be be, alberto tomba) -> (young my favourite athlete, was, Alberto Tomba) -> young my favourite athlete (4097ms) Who is Alberto Tomba? the Albertville Games -9.973891005574322 Who is Alberto Tomba? -> who be [ alberto tomba ] ? -> who be be alberto tomba ? -> $x: ($x, be be, alberto tomba) -> (the Albertville Games, was, Alberto Tomba) -> the Albertville Games (4098ms) Who is Alberto Tomba? Italy -10.41648068275037 Who is Alberto Tomba? -> who be [ alberto tomba ] ? -> who be be alberto tomba ? -> $x: ($x, be be, alberto tomba) -> (Italy, is still suffering from, the Alberto Tomba Race Trauma) -> Italy (4097ms) Who is Alberto Tomba? 1996 Gustavo Thoeni -10.75930359069563 Who is Alberto Tomba? -> who be [ alberto tomba ] ? -> who be be alberto tomba ? -> $x: ($x, be be, alberto tomba) -> (1996 Gustavo Thoeni, was, Alberto Tomba) -> 1996 Gustavo Thoeni (4098ms) Who is Alberto Tomba? the hell -10.806657800660606 Who is Alberto Tomba? -> who be [ alberto tomba ] ? -> who be be alberto tomba ? -> $x: ($x, be be, alberto tomba) -> (the hell, is, Alberto Tomba) -> the hell (4097ms) Who is Alberto Tomba? retirement -11.399586909523983 Who is Alberto Tomba? -> who be [ alberto tomba ] ? -> what be alberto tomba s story ? -> $x: (alberto tomba, story, $x) -> $x: (alberto tomba, be, $x) -> (Alberto Tomba, were going to come out of, retirement) -> retirement (5266ms) Who is Alberto Tomba? 50 ski wins -12.626709218452993 Who is Alberto Tomba? -> who be [ alberto tomba ] ? -> what be alberto tomba s story ? -> $x: (alberto tomba, story, $x) -> $x: (alberto tomba, have, $x) -> (Alberto Tomba, has, 50 ski wins) -> 50 ski wins (5266ms) Who is Alberto Tomba? the most flamboyant skier -13.204975628400069 Who is Alberto Tomba? -> who be [ alberto tomba ] ? -> what be alberto tomba s story ? -> $x: (alberto tomba, story, $x) -> $x: (alberto tomba, be, $x) -> (Biography Alberto Tomba, is arguably, the most flamboyant skier) -> the most flamboyant skier (5266ms) Where is it? Akron -12.742922272407274 Where is it? -> [ where be it ] ? -> be where be it sport ? -> $x: (it sport, be in, $x) -> (participant sports?it, is here in, Akron) -> Akron (7021ms) Where is it? Odessa -13.07029416654097 Where is it? -> [ where be it ] ? -> be where be it sport ? -> $x: (it sport, be in, $x) -> (B. It?s obvious sports, is Important in, Odessa) -> Odessa (7021ms) Where is it? San Francisco -13.620346464366907 Where is it? -> [ where be it ] ? -> be where be it sport ? -> $x: (it sport, be in, $x) -> (long sleeve sports shirt?it, was cold in, San Francisco) -> San Francisco (7021ms) Where is it? college football -13.729022363548166 Where is it? -> [ where be it ] ? -> be where be it sport ? -> $x: (it sport, be in, $x) -> (Sport It?s not fair, is in, college football) -> college football (7021ms) Where is it? Dover Mall -13.80907172591846 Where is it? -> [ where be it ] ? -> be where be it sport ? -> $x: (it sport, be in, $x) -> $x: (it sport, in, $x) -> (Play It Again Sports, Dover Mall, In shopping center, Dover Mall) -> Dover Mall (8155ms) Where is it? Nottingham -13.970563075927458 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (Nottingham, is currently recruiting for, an IT Technician) -> Nottingham (8155ms) Where is it? Indian River Mall -14.365438015593762 Where is it? -> [ where be it ] ? -> be where be it sport ? -> $x: (it sport, be in, $x) -> $x: (it sport, in, $x) -> (Play It Again Sports, Indian River Mall, In shopping center, Indian River Mall) -> Indian River Mall (8155ms) Where is it? Black -14.490786371851831 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (Black, are highly, skilled IT technicians) -> Black (8155ms) Where is it? Ashford -14.679875531052296 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (Ashford, is looking for, a IT Helpdesk Support Technician) -> Ashford (8155ms) Where is it? Craig -14.740020747210504 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (Craig, was, an IT technician and administrator) -> Craig (8155ms) Where is it? James -14.888912980461841 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (James, has been employed as, a senior IT technician) -> James (8226ms) Where is it? Sam Morales -14.893792492602675 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (Sam Morales, is, an Executive IT Field Technician) -> Sam Morales (8226ms) Where is it? Moira -14.929139756302527 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (Moira, had been working as, an IT technician) -> Moira (8226ms) Where is it? Ryan -15.219056445154946 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (Ryan, was, an IT computer technician) -> Ryan (8226ms) Where is it? Michael Wolf -15.323679169652236 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (Michael Wolf, is, an IT and video technician) -> Michael Wolf (8226ms) Where is it? migrated sites -15.331925886350087 Where is it? -> [ where be it ] ? -> where be it its use ? -> $x: (it its use, be in, $x) -> (It?s main use, would be in, migrated sites) -> migrated sites (7021ms) Where is it? Jonathan Brown -15.33605548352 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (Jonathan Brown, is, an IT technician) -> Jonathan Brown (8226ms) Where is it? Darrell Hoberer -15.362015219958149 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (Darrell Hoberer, is, a senior IT technician) -> Darrell Hoberer (8226ms) Where is it? monetary terms -15.391796169831078 Where is it? -> [ where be it ] ? -> where be it its use ? -> $x: (it its use, be in, $x) -> (It?s use, must be justified in, monetary terms) -> monetary terms (7021ms) Where is it? UC Berkeley -15.39344289718463 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (UC Berkeley, was then working as, an IT Technician) -> UC Berkeley (8225ms) Where is it? Maneet Puri -15.405596861906108 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (Maneet Puri, is, an eminent IT technician and director) -> Maneet Puri (8392ms) Where is it? Austria and Germany -15.432269042470494 Where is it? -> [ where be it ] ? -> where be it its use ? -> $x: (it its use, be in, $x) -> (It?s use, is restricted in, Austria and Germany) -> Austria and Germany (7036ms) Where is it? government health facilities -15.451864068171766 Where is it? -> [ where be it ] ? -> where be it its use ? -> $x: (it its use, be in, $x) -> (It?s use, is now mandatory in, government health facilities) -> government health facilities (7036ms) Where is it? the ITER Center -15.524863409330516 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (the ITER Center, is, an IT-Technician) -> the ITER Center (8392ms) Where is it? cooking -15.5580789284068 Where is it? -> [ where be it ] ? -> where be it its use ? -> $x: (it its use, be in, $x) -> (It?s first use, was in, cooking) -> cooking (7035ms) Where is it? THE GUY -15.605432970816146 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (THE GUY, WAS, AN IT TECHNICIAN.) -> THE GUY (8391ms) Where is it? Armco IT -15.64622504631652 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (Armco IT, is seeking, an experienced IT Support Technician) -> Armco IT (8391ms) Where is it? Active@ Data Studio -15.64887760551981 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (Active@ Data Studio, is, a complete IT Technician) -> Active@ Data Studio (8436ms) Where is it? The Service Desk -15.670177897356599 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (The Service Desk, is staffed by, three IT Technicians) -> The Service Desk (8436ms) Where is it? Joe -15.679829676111137 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (Joe, is, an IT technician) -> Joe (8436ms) Where is it? Kingston Adult Education -15.68520927698442 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (Kingston Adult Education, is seeking, a skilled IT technician) -> Kingston Adult Education (8436ms) Where is it? Roy -15.696897581372586 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (Roy, is, a laid-back IT technician) -> Roy (8436ms) Where is it? the Biozentrum , Basel , -15.717570919497657 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (the Biozentrum , Basel ,, is looking for, an IT technician) -> the Biozentrum , Basel , (8436ms) Where is it? Jeremy LaCroix -15.71844594947383 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (Jeremy LaCroix, is, an IT technician) -> Jeremy LaCroix (8436ms) Where is it? BREVCO SERVICES -15.726374313065905 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (BREVCO SERVICES, is looking for, a General IT Technician) -> BREVCO SERVICES (8436ms) Where is it? an appointment -15.77009222553559 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (an appointment, will be scheduled for, a DoIT technician) -> an appointment (8463ms) Where is it? QC ? BREVCO SERVICES -15.783205506041302 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (QC ? BREVCO SERVICES, is looking for, a General IT Technician) -> QC ? BREVCO SERVICES (8463ms) Where is it? The IT guys -15.795529229007782 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (The IT guys, are more than, fix-it technicians) -> The IT guys (8463ms) Where is it? The IT Surgery -15.867373744860508 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (The IT Surgery, is based in, the IT Technician) -> The IT Surgery (8463ms) Where is it? knowledge -15.881538019679075 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (knowledge, are universal for, any IT technician) -> knowledge (8464ms) Where is it? critical issues -15.929267583471693 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (critical issues, are submitted by, IT technicians) -> critical issues (8464ms) Where is it? Printer drivers -15.949440313735217 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (Printer drivers, are available from, the IT technician) -> Printer drivers (8464ms) Where is it? GoCertify -15.968892625368522 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (GoCertify, are the major differences between, the IT Technician) -> GoCertify (8464ms) Where is it? the NFL -15.987242264192295 Where is it? -> [ where be it ] ? -> be where be it sport ? -> $x: (it sport, be in, $x) -> $x: (it sport, in, $x) -> (Doc?s Sports It?s, can change in, the NFL) -> the NFL (8484ms) Where is it? DORADO Personnel -15.988489112530372 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (DORADO Personnel, is currently recruiting for, a IT Technician) -> DORADO Personnel (8484ms) Where is it? recently Helen -15.992845529110893 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (recently Helen, was employed as, a part-time IT technician) -> recently Helen (8484ms) Where is it? an Apprentice -16.022088617390402 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (an Apprentice, is now employed here as, an IT Technician) -> an Apprentice (8484ms) Where is it? business -16.064959658571517 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (business, may be read by, IT support technicians) -> business (8484ms) Where is it? Wells based company -16.07225941511143 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (Wells based company, is looking for, a I.T. Support Technician) -> Wells based company (8484ms) Where is it? automobiles -16.087694506834676 Where is it? -> [ where be it ] ? -> where be it its use ? -> $x: (it its use, be in, $x) -> (It?s main use, is in, automobiles) -> automobiles (7036ms) Where is it? repairs -16.141392889500136 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (repairs, will be assessed by, an IT technician) -> repairs (8484ms) Where is it? conversations -16.24095896845266 Where is it? -> [ where be it ] ? -> where be it its use ? -> $x: (it its use, be in, $x) -> (It?s highest and best use, is in stimulating, conversations) -> conversations (7035ms) Where is it? a number -16.263265354789795 Where is it? -> [ where be it ] ? -> where be it its use ? -> $x: (it its use, be in, $x) -> (It?s Used Your driving record, is used in, a number) -> a number (7035ms) Where is it? Polokwane -16.273241439984268 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, need, it technician) -> (Polokwane, needs, a Senior IT Desktop Technician) -> Polokwane (10152ms) Where is it? Grove City -16.45511157927478 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, have, it technician) -> (Grove City, has an immediate need for, a IT Support Technician) -> Grove City (8510ms) Where is it? a file -16.470641158091126 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (a file, can be supplied to, the IT technician) -> a file (8510ms) Where is it? Comspan Communications -16.518006177161865 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, have, it technician) -> (Comspan Communications, has, an IT/IP Technician position) -> Comspan Communications (8510ms) Where is it? components -16.65686132740358 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (components, are installed by, a qualified IT technician) -> components (8510ms) Where is it? a recent report -16.815735732179437 Where is it? -> [ where be it ] ? -> be where be it sport ? -> $x: (it sport, be in, $x) -> $x: (it sport, in, $x) -> (the U-Can-IT sports, echoed this sentiment in, a recent report) -> a recent report (8510ms) Where is it? An opportunity -16.89015301912936 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, have, it technician) -> (An opportunity, has arisen for, a Junior IT Support Technician) -> An opportunity (8510ms) Where is it? artificial fireplaces -16.901280829516793 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: (it technician, have, $x) -> (do-it-yourself technicians, have created, artificial fireplaces) -> artificial fireplaces (8510ms) Where is it? high demand -16.938591546230597 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: (it technician, be in, $x) -> (2011 Healthcare IT technicians, are in, high demand) -> high demand (10450ms) Where is it? noise rejection issues -16.948143288500155 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, have, it technician) -> (noise rejection issues, would have required, an IT technician?) -> noise rejection issues (8510ms) Where is it? the IT Industry -16.95262884133519 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: (it technician, have, $x) -> (Each IT Support Technician, has worked in, the IT Industry) -> the IT Industry (8663ms) Where is it? Seren Group ?We -16.953120828645577 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, have, it technician) -> (Seren Group ?We, have reduced workloads on, IT technicians) -> Seren Group ?We (8663ms) Where is it? common -16.972590327275316 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: (it technician, have, $x) -> (an IT Technician Senior and robots, have in, common) -> common (8663ms) Where is it? Britain -17.008289625839296 Where is it? -> [ where be it ] ? -> be where be it sport ? -> $x: (it sport, be in, $x) -> $x: (it sport, in, $x) -> (it the largest multi-sports event, held in, Britain) -> Britain (8663ms) Where is it? PC systems -17.00968852169738 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: (it technician, be in, $x) -> (The IT staff /technicians, may also be skilled in, PC systems) -> PC systems (10449ms) Where is it? work -17.17810688033378 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: (it technician, have, $x) -> (an IT technician, has been out of, work) -> work (8691ms) Where is it? the definition -17.236743438057946 Where is it? -> [ where be it ] ? -> where be it its use ? -> $x: (it its use, be in, $x) -> (It?s most familiar modern uses, are in, the definition) -> the definition (7051ms) Where is it? the customer service range -17.276303893561224 Where is it? -> [ where be it ] ? -> where be it its use ? -> $x: (it its use, be in, $x) -> (It?s best use, far is in, the customer service range) -> the customer service range (7051ms) Where is it? a heart attack -17.31372637020117 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: (it technician, have, $x) -> (the technician who was supposed to do it, had, a heart attack) -> a heart attack (8691ms) Where is it? CNS -17.41032064615322 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, get, it technician) -> (CNS, wants to get an explicit list of, IFAS IT Technicians) -> CNS (10086ms) Where is it? the can -17.455961626580237 Where is it? -> [ where be it ] ? -> where be it episode ? -> $x: (it episode, be in, $x) -> (It?s rough and spotty but episode 2, is in, the can) -> the can (7051ms) Where is it? commerce -17.50324756159194 Where is it? -> [ where be it ] ? -> be where be it sport ? -> $x: (it sport, be in, $x) -> $x: (it sport, in, $x) -> (this sport.It, ends in, commerce) -> commerce (8691ms) Where is it? The same company -17.67902280038551 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (The same company, is looking to hire, a IT technician) -> The same company (8691ms) Where is it? departments -17.72276336459087 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, have, it technician) -> (departments, have, their own IT technician) -> departments (8691ms) Where is it? a look -17.737176588743097 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: (it technician, have, $x) -> (our IT technicians, Just had, a look) -> a look (8691ms) Where is it? case -17.84756398008375 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: (it technician, be in, $x) -> (The CompTIA IT Technician assessment, is trapped in, case) -> case (10449ms) Where is it? The applicant -17.871941804274186 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (The applicant, must be qualified as, an IT Technician) -> The applicant (8749ms) Where is it? 2011 Box .net -18.030781754877655 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (2011 Box .net, is looking for, an IT Technician) -> 2011 Box .net (8749ms) Where is it? IT skills -18.034545381651213 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, get, it technician) -> (IT skills, now got a great job as, an IT technician) -> IT skills (10086ms) Where is it? Each production -18.301754716772027 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, have, it technician) -> (Each production, will have, a technician assigned to it) -> Each production (8749ms) Where is it? situations -18.328906239773193 Where is it? -> [ where be it ] ? -> where be it its use ? -> $x: (it its use, be in, $x) -> $x: (it its use, in, $x) -> (It?s correct use, occurs in, situations) -> situations (8749ms) Where is it? 1598 -18.40540202728914 Where is it? -> [ where be it ] ? -> where be it its use ? -> $x: (it its use, be in, $x) -> (It?s first use, was in, 1598) -> 1598 (7051ms) Where is it? the summer -18.532239336966548 Where is it? -> [ where be it ] ? -> be where be it sport ? -> $x: (it sport, be in, $x) -> $x: (it sport, in, $x) -> (It?s Sports ?, started in, the summer) -> the summer (8749ms) Where is it? Sedo -18.723028006305025 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, offer, it technician) -> (Sedo, offers, it technicians) -> Sedo (10502ms) Where is it? the device -19.017429761997896 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, be, it technician) -> (the device, was intact, when the bomb technician removed it) -> the device (8820ms) Where is it? the 1890?s -19.03196851030928 Where is it? -> [ where be it ] ? -> where be it its use ? -> $x: (it its use, be in, $x) -> $x: (it its use, in, $x) -> (It?s first use, happened way back in, the 1890?s) -> the 1890?s (8820ms) Where is it? applicants -19.1940670031243 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: (it technician, be for, $x) -> (The IT Technician exam, is for, applicants) -> applicants (10151ms) Where is it? the hundreds and there?s -19.51505923219317 Where is it? -> [ where be it ] ? -> where be it episode ? -> $x: (it episode, be in, $x) -> $x: (it episode, in, $x) -> (It?s true those episodes, run in, the hundreds and there?s) -> the hundreds and there?s (8820ms) Where is it? the latest skills -20.60345740339165 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, need, it technician) -> (the latest skills, needed by, IT technicians) -> the latest skills (10151ms) Where is it? 1995 -20.746592656533902 Where is it? -> [ where be it ] ? -> where be it its use ? -> $x: (it its use, be in, $x) -> $x: (it its use, in, $x) -> (It?s first use, came in, 1995) -> 1995 (8820ms) Where is it? The certificate -21.22048674727283 Where is it? -> [ where be it ] ? -> where be it technician earn ? -> $x: (it technician, be earn in, $x) -> $x: ($x, give, it technician) -> (The certificate, gives, IT technicians) -> The certificate (10449ms) What is the gestation period for humans? matter of common knowledge -9.538350662590812 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human gestation ? -> $x: (human gestation, instance of, $x) -> (Period of human gestation, Instance Of, matter of common knowledge) -> matter of common knowledge (3049ms) What is the gestation period for humans? approximate length of time -10.057027927613195 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human gestation ? -> $x: (human gestation, instance of, $x) -> (Human gestation, Instance Of, approximate length of time) -> approximate length of time (3050ms) What is the gestation period for humans? random variable -10.076852101040513 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human gestation ? -> $x: (human gestation, instance of, $x) -> (gestation period in humans, Instance Of, random variable) -> random variable (3049ms) What is the gestation period for humans? haphazard process -10.358265073093081 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human gestation ? -> $x: (human gestation, instance of, $x) -> (Human gestation, Instance Of, haphazard process) -> haphazard process (3050ms) What is the gestation period for humans? good analogy -10.385313092746973 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human gestation ? -> $x: (human gestation, instance of, $x) -> (Armstrong's analogy of human gestation, Instance Of, good analogy) -> good analogy (3050ms) What is the gestation period for humans? low budget, sad excuse -12.065683307603658 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (MATING HABITS OF THE EARTHBOUND HUMAN, Instance Of, low budget, sad excuse) -> low budget, sad excuse (3567ms) What is the gestation period for humans? silly little flick -12.06705814767502 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (Mating Habits of the Earthbound Human, Instance Of, silly little flick) -> silly little flick (3568ms) What is the gestation period for humans? week -12.070659803869807 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human gestation ? -> $x: (human gestation, instance of, $x) -> (normal gestation period for a human female, Instance Of, week) -> week (3106ms) What is the gestation period for humans? pair of yin -12.082784778265612 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (Habits of the human body, Instance Of, pair of yin) -> pair of yin (3568ms) What is the gestation period for humans? element of these social structure -12.371613934539763 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (importance of habit androutinisation of human behavior, Instance Of, element of these social structure) -> element of these social structure (3567ms) What is the gestation period for humans? structural repair or change -12.389089447799105 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (alteration of human habit, Instance Of, structural repair or change) -> structural repair or change (3567ms) What is the gestation period for humans? non-viral factor -12.401427746900785 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (human living habit, Instance Of, non-viral factor) -> non-viral factor (3568ms) What is the gestation period for humans? fun film -12.415218523397758 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (Mating Habits of the Earthbound Human, Instance Of, fun film) -> fun film (3664ms) What is the gestation period for humans? non-profit group of volunteer -12.426237012403764 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (HABIT or Human-Animal Bond in Tennessee, Instance Of, non-profit group of volunteer) -> non-profit group of volunteer (3664ms) What is the gestation period for humans? awesome film -12.475996141309437 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (Mating Habits of the Earthbound Human, Instance Of, awesome film) -> awesome film (3664ms) What is the gestation period for humans? separate film -12.480937837040695 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (Mating Habits of the Earthbound Human, Instance Of, separate film) -> separate film (3664ms) What is the gestation period for humans? topic -12.6320357762995 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human gestation ? -> $x: (human gestation, instance of, $x) -> (human gestation, Instance Of, topic) -> topic (3107ms) What is the gestation period for humans? crucial element -12.70588393215573 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (realistic human habit, Instance Of, crucial element) -> crucial element (3664ms) What is the gestation period for humans? funny movie -12.733956140258822 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (DVD Mating Habits of Earthbound Humans, Instance Of, funny movie) -> funny movie (3665ms) What is the gestation period for humans? affective venture -12.746258364252954 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (Human habit-taking, Instance Of, affective venture) -> affective venture (3678ms) What is the gestation period for humans? contradictory topic -12.746258364252954 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (human bad habit, Instance Of, contradictory topic) -> contradictory topic (3678ms) What is the gestation period for humans? life style -12.751426237763408 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (elementary human habit, Instance Of, life style) -> life style (3678ms) What is the gestation period for humans? helpful information -12.7631312514629 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (human habit, Instance Of, helpful information) -> helpful information (3678ms) What is the gestation period for humans? local factor -12.766499059119516 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (human habit, Instance Of, local factor) -> local factor (3678ms) What is the gestation period for humans? film -14.25714770935138 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (Mating Habits of the Earthbound Human, Instance Of, film) -> film (3678ms) What is the gestation period for humans? a decade -14.618484183373498 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be in, $x) -> (human-bear contacts, were the highest in, a decade) -> a decade (5916ms) What is the gestation period for humans? mockumentary -14.620617391809198 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (MATING HABITS OF THE EARTHBOUND HUMAN, Instance Of, mockumentary) -> mockumentary (3694ms) What is the gestation period for humans? contributor -14.960319683208173 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (Human food habit, Instance Of, contributor) -> contributor (3694ms) What is the gestation period for humans? factor -14.968440049769189 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (plain old human defiance play roles in persistent bad habit, Instance Of, factor) -> factor (3694ms) What is the gestation period for humans? element -15.003300907072749 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (human-habits, Instance Of, element) -> element (3694ms) What is the gestation period for humans? subject -15.007289787871166 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (human eating habit, Instance Of, subject) -> subject (3711ms) What is the gestation period for humans? concern -15.01469537807284 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> what be human habit ? -> $x: (human habit, instance of, $x) -> (Habit Capture Errors Human error, Instance Of, concern) -> concern (3711ms) What is the gestation period for humans? Florida -15.312209269994622 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be in, $x) -> (Both human and bear populations, are growing in, Florida) -> Florida (5916ms) What is the gestation period for humans? gene tests -15.603836777340199 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be on, $x) -> (human born mutants, are sent there based on, gene tests) -> gene tests (5917ms) What is the gestation period for humans? the survival level -16.595293098788684 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be on, $x) -> (human and bear, is on, the survival level) -> the survival level (5916ms) What is the gestation period for humans? the news -16.656200784538402 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be in, $x) -> (human food-borne illness, is currently in, the news) -> the news (5916ms) What is the gestation period for humans? the train tracks -16.72629049257722 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be on, $x) -> (Pre-born human beings, are being destroyed on, the train tracks) -> the train tracks (5916ms) What is the gestation period for humans? the rise -16.74671637321678 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be on, $x) -> (Human-bear conflicts, are on, the rise) -> the rise (5917ms) What is the gestation period for humans? the land-fast ice -16.802624209220586 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be on, $x) -> (both humans and bears, are found on, the land-fast ice) -> the land-fast ice (6094ms) What is the gestation period for humans? the increase -16.851733725267582 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be on, $x) -> (human and bear interaction, is on, the increase) -> the increase (6094ms) What is the gestation period for humans? a glacial lake -16.944079328134848 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be in, $x) -> $x: (human bear, in, $x) -> (the ?human polar bear?, recently swam in, a glacial lake) -> a glacial lake (6938ms) What is the gestation period for humans? Europe -17.06981139713664 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be in, $x) -> $x: (human bear, in, $x) -> (Tick-borne human pathogenic microorganisms, found in, Europe) -> Europe (6938ms) What is the gestation period for humans? the Kodiak Archipelago -17.0718883753762 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be on, $x) -> $x: (human bear, on, $x) -> (Bears and humans, have coexisted on, the Kodiak Archipelago) -> the Kodiak Archipelago (6938ms) What is the gestation period for humans? human injuries -17.116332328384722 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be in, $x) -> $x: (human bear, in, $x) -> (bear-human conflicts, Decrease in, human injuries) -> human injuries (6938ms) What is the gestation period for humans? unintentional harassment -17.197286279538503 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be in, $x) -> $x: (human bear, in, $x) -> (human-bear encounters, could result in, unintentional harassment) -> unintentional harassment (6938ms) What is the gestation period for humans? several ways -17.22148725954533 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be in, $x) -> $x: (human bear, in, $x) -> (Human borne viruses, can spread in, several ways) -> several ways (6963ms) What is the gestation period for humans? close proximity -17.24414879122416 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be in, $x) -> $x: (human bear, in, $x) -> (Brown Bears and humans, have lived in, close proximity) -> close proximity (6963ms) What is the gestation period for humans? two French caves -17.308797685430388 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be in, $x) -> $x: (human bear, in, $x) -> (both humans and cave bears, lived in, two French caves) -> two French caves (6963ms) What is the gestation period for humans? damaged property -17.366168042942043 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be in, $x) -> $x: (human bear, in, $x) -> (bears and humans, result in, damaged property) -> damaged property (6963ms) What is the gestation period for humans? number -17.5220626018171 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be in, $x) -> (humans and bears, are rising in, number) -> number (6094ms) What is the gestation period for humans? the same habitat -18.34106458110011 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be in, $x) -> $x: (human bear, in, $x) -> (bears and humans, can successfully coexist in, the same habitat) -> the same habitat (7087ms) What is the gestation period for humans? bear mortality -18.702810683320457 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be in, $x) -> $x: (human bear, in, $x) -> (human-bear conflicts, result in, bear mortality) -> bear mortality (7087ms) What is the gestation period for humans? the bear -18.7483708699003 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be on, $x) -> $x: (human bear, on, $x) -> (Human/bear close encounters, rely entirely on, the bear) -> the bear (7087ms) What is the gestation period for humans? the form -18.750515262216705 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be in, $x) -> $x: (human bear, in, $x) -> (Another bear?human interaction, occurs in, the form) -> the form (7110ms) What is the gestation period for humans? the park -18.778809595967857 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be in, $x) -> $x: (human bear, in, $x) -> (bear-human encounters, have occurred in, the park) -> the park (7110ms) What is the gestation period for humans? food -18.883171041806502 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be on, $x) -> $x: (human bear, on, $x) -> (human-borne illnesses, passed on through, food) -> food (7111ms) What is the gestation period for humans? the planet -18.904257220602087 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be on, $x) -> $x: (human bear, on, $x) -> (Eric Only four natural born humans, remain on, the planet) -> the planet (7111ms) What is the gestation period for humans? the spot -18.93146434195552 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be on, $x) -> $x: (human bear, on, $x) -> (a human bear fight, originated on, the spot) -> the spot (7111ms) What is the gestation period for humans? cities -19.494007606804484 What is the gestation period for humans? -> what be the gestation period for [ human ] ? -> when be human bear ? -> $x: (human bear, be in, $x) -> $x: (human bear, in, $x) -> (human-bear encounters, have become more common in, cities) -> cities (7111ms) Where is it based? Doctorate -6.8930291307462985 Where is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> (Architectural Styles and the Design of Network-based Software Architectures, Degree, Doctorate) -> Doctorate (9480ms) Where is it based? Science -8.851339559381197 Where is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> (Citizen Base Strategy Leveraging, advanced degrees in, Science) -> Science (9480ms) Where is it based? Cronote -9.543535480629773 Where is it based? -> where be it [ base ] ? -> what be base in 2010 ? -> $x: ($x, be base in, 2010) -> (Cronote, is a web-based company established in, December 2010) -> Cronote (12002ms) Where is it based? California -9.918778297341609 Where is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> $x: ($x, be eligible for, base) -> (California, are eligible for, need-based financial aid) -> California (17121ms) Where is it based? Qatar -10.02406236475673 Where is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> $x: ($x, be eligible for, base) -> (Qatar, are eligible for, merit-based partial scholarships) -> Qatar (17121ms) Where is it based? Students -10.090084294033197 Where is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> $x: ($x, be eligible for, base) -> (Students, are eligible for, need-based aid) -> Students (17121ms) Where is it based? customer behaviour -10.135276413804867 Where is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> (your data-base, measure some degree of, customer behaviour) -> customer behaviour (9480ms) Where is it based? home plate -10.16179148945677 Where is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> (Second base, is 90 degrees from, home plate) -> home plate (9480ms) Where is it based? American -10.18883880555039 Where is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: ($x, be the degree of, base) -> $x: (base, be, $x) -> (base, is, American) -> American (9480ms) Where is it based? sports equipment -10.206916297322117 Where is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: ($x, be the degree of, base) -> $x: (base, be, $x) -> (Base, is, sports equipment) -> sports equipment (9480ms) Where is it based? Acupuncture -10.246010983927638 Where is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> $x: ($x, be offer at, base) -> (Acupuncture, was offered at, McGuire Air Force Base) -> Acupuncture (14083ms) Where is it based? geometric shape -10.283492464705489 Where is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: ($x, be the degree of, base) -> $x: (base, be, $x) -> (Base, is a, geometric shape) -> geometric shape (12002ms) Where is it based? Google -10.295716954194422 Where is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: ($x, be the degree of, base) -> $x: ($x, have, base) -> (Google, has, Base) -> Google (12002ms) Where is it based? continuity -10.317330720685934 Where is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> (a base level campaign, will provide a degree of, continuity) -> continuity (12002ms) Where is it based? Arafat -10.32312710154448 Where is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: ($x, be the degree of, base) -> $x: ($x, have, base) -> (Arafat, moved has, base) -> Arafat (12002ms) Where is it based? Oregon -10.339825939778072 Where is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> $x: ($x, study, base) -> (Oregon, is studying, mileage-based fees) -> Oregon (12002ms) Where is it based? NEW -10.343051706003669 Where is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: ($x, be the degree of, base) -> $x: (base, be, $x) -> (Base, is a proxy for, NEW) -> NEW (13012ms) Where is it based? South American person -10.343051706003669 Where is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: ($x, be the degree of, base) -> $x: (base, be, $x) -> (Base, is a, South American person) -> South American person (13012ms) Where is it based? nursing -10.379232368719675 Where is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> (hospital-based programs, hold an associate degree in, nursing) -> nursing (13013ms) Where is it based? the Milky Way -10.419699898507835 Where is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: ($x, be the degree of, base) -> $x: ($x, have, base) -> (the Milky Way, have touched, base) -> the Milky Way (13013ms) Where is it based? business -10.421976045801715 Where is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> (the Chicago-based institution, offers degrees in, business) -> business (13013ms) Where is it based? USC. -10.459677250971225 Where is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> (these broadly based scholars, finish their degrees at, USC.) -> USC. (13013ms) Where is it based? automation -10.526893394985422 Where is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> (these model based approaches, offer a high degree of, automation) -> automation (14083ms) Where is it based? granularity -10.541924774613243 Where is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> (usage-based linguistics, 's the right degree of, granularity) -> granularity (14083ms) Where is it based? Researchers -10.561094095520511 Where is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> $x: ($x, study, base) -> (Researchers, are studying, an ELISA -based system) -> Researchers (14083ms) Where is it based? Barbara J. Stapleton -10.605069149946157 Where is it based? -> where be it [ base ] ? -> what be base in 2010 ? -> $x: ($x, be base in, 2010) -> (Barbara J. Stapleton, was based in, Afghanistan 2002-2010) -> Barbara J. Stapleton (14083ms) Where is it based? Next -10.699872974284201 Where is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: ($x, be the degree of, base) -> $x: (base, be, $x) -> (Base, is, Next) -> Next (15918ms) Where is it based? interconnectivity -10.714343336323463 Where is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> (Hub based networks, have a high degree of, interconnectivity) -> interconnectivity (15918ms) Where is it based? porosity -10.736448259862353 Where is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> (PINE WOOD based Charcoals, have a high degree of, porosity) -> porosity (15918ms) Where is it based? Mumbengegwi -10.74745855985494 Where is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: ($x, be the degree of, base) -> $x: ($x, have, base) -> (Mumbengegwi, has touched, base) -> Mumbengegwi (15918ms) Where is it based? Cambridge -10.778633918634394 Where is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> $x: (base, teach, $x) -> (mindfulness-based stress reduction, taught in, Cambridge) -> Cambridge (15918ms) Where is it based? Christ -10.789207737406025 Where is it based? -> where be it [ base ] ? -> what be the degree of base ? -> $x: (base, degree, $x) -> $x: ($x, to teach, base) -> (Christ, used to teach at, White Sands Missile Base) -> Christ (15918ms) Where is it based? IT equipment provider and specialises -11.1300621631637 Where is it based? -> where be it [ base ] ? -> what be base territory ? -> $x: (base territory, instance of, $x) -> (Darwin-based Territory Technology Solutions, Instance Of, IT equipment provider and specialises) -> IT equipment provider and specialises (7042ms) Where is it based? interesting concept -11.374646700115596 Where is it based? -> where be it [ base ] ? -> what be base territory ? -> $x: (base territory, instance of, $x) -> (Dose fractionation based on arterial territory, Instance Of, interesting concept) -> interesting concept (7042ms) Where is it based? socio-political concept -11.436366832697193 Where is it based? -> where be it [ base ] ? -> what be base territory ? -> $x: (base territory, instance of, $x) -> (Territory-based development, Instance Of, socio-political concept) -> socio-political concept (7042ms) Where is it based? management system -11.454487558340814 Where is it based? -> where be it [ base ] ? -> what be base territory ? -> $x: (base territory, instance of, $x) -> (culture-based territory, Instance Of, management system) -> management system (7042ms) Where is it based? substantive issue -11.460046395168774 Where is it based? -> where be it [ base ] ? -> what be base territory ? -> $x: (base territory, instance of, $x) -> (sovereignty-based assertions over territory, Instance Of, substantive issue) -> substantive issue (7041ms) Where is it based? local agency -11.469096700510523 Where is it based? -> where be it [ base ] ? -> what be base territory ? -> $x: (base territory, instance of, $x) -> (Territory & Client Base CCAD, Instance Of, local agency) -> local agency (7042ms) Where is it based? programme -12.231454367342854 Where is it based? -> where be it [ base ] ? -> what be base territory ? -> $x: (base territory, instance of, $x) -> (licence-based territory-wide management framework, Instance Of, programme) -> programme (7121ms) Where is it based? issue -12.313485172314625 Where is it based? -> where be it [ base ] ? -> what be base territory ? -> $x: (base territory, instance of, $x) -> (disposition of nuclear weapons based on Ukrainian territory, Instance Of, issue) -> issue (7122ms) ================================================ FILE: oqa-data/predictions/oqa-webquestions.txt ================================================ [File too large to display: 23.4 MB] ================================================ FILE: oqa-data/predictions/oqa-wikianswers.txt ================================================ [File too large to display: 46.0 MB] ================================================ FILE: oqa-data/predictions/paralex-trec.txt ================================================ What does SIDS stand for? Simulated Interaction Device 0.111111111111 What does SIDS stand for? -> $x: (sids, stand for, $x) -> (SID, stands for, Simulated Interaction Device) -> Simulated Interaction Device (3584ms) What does SIDS stand for? Sudden Infant Death Syndrome 0.111111111111 What does SIDS stand for? -> $x: (sids, stand for, $x) -> (SIDS SIDS, stands for, Sudden Infant Death Syndrome) -> Sudden Infant Death Syndrome (3671ms) What does SIDS stand for? ?security identifier ? 0.111111111111 What does SIDS stand for? -> $x: (sids, stand for, $x) -> (?sid ?, stands for, ?security identifier ?) -> ?security identifier ? (3585ms) What does SIDS stand for? Sound Interface Device 0.111111111111 What does SIDS stand for? -> $x: (sids, stand for, $x) -> (SID, stands for, Sound Interface Device) -> Sound Interface Device (3584ms) What does SIDS stand for? civil rights 0.111111111111 What does SIDS stand for? -> $x: (sids, stand for, $x) -> (Sid McMath, stood for, civil rights) -> civil rights (3584ms) What does SIDS stand for? System 0.111111111111 What does SIDS stand for? -> $x: (sids, stand for, $x) -> (SID SID, stands for, System) -> System (3671ms) What does SIDS stand for? Speed Indicator Device 0.111111111111 What does SIDS stand for? -> $x: (sids, stand for, $x) -> (SID, stands for, Speed Indicator Device) -> Speed Indicator Device (3584ms) What does SIDS stand for? Multi-resolution Seamless Image Database 0.111111111111 What does SIDS stand for? -> $x: (sids, stand for, $x) -> (MrSID, stands for, Multi-resolution Seamless Image Database) -> Multi-resolution Seamless Image Database (3670ms) What does SIDS stand for? MrSID Generation 3 0.111111111111 What does SIDS stand for? -> $x: (sids, stand for, $x) -> (MrSID Generation 2, stands for, MrSID Generation 3) -> MrSID Generation 3 (3584ms) What does SIDS stand for? Sketching 0.111111111111 What does SIDS stand for? -> $x: (sids, stand for, $x) -> (SID, stands for, Sketching) -> Sketching (3670ms) What does SIDS stand for? line -0.0 What does SIDS stand for? -> $x: (sids, stand in, $x) -> (his friend Sid, stood in, line) -> line (3670ms) What does SIDS stand for? the doorway -0.0 What does SIDS stand for? -> $x: (sids, stand in, $x) -> (Sid, stands in, the doorway) -> the doorway (3671ms) What does SIDS stand for? front -0.0 What does SIDS stand for? -> $x: (sids, stand in, $x) -> (Sid, stands in, front) -> front (3670ms) What does SIDS stand for? countless elections -0.0 What does SIDS stand for? -> $x: (sids, stand in, $x) -> (Sid, stood in, countless elections) -> countless elections (3670ms) What does SIDS stand for? the hall -0.0 What does SIDS stand for? -> $x: (sids, stand in, $x) -> (Nana , Sue and Sid, were all standing in, the hall) -> the hall (3670ms) What does SIDS stand for? a hot head -0.222222222222 What does SIDS stand for? -> $x: (sids, be know for, $x) -> (Sid, is also known for having, a hot head) -> a hot head (3697ms) What does SIDS stand for? specific types -0.222222222222 What does SIDS stand for? -> $x: (sids, be know for, $x) -> (Will , Clint or Sid, are known for making, specific types) -> specific types (3697ms) What does SIDS stand for? bow ties -0.222222222222 What does SIDS stand for? -> $x: (sids, be know for, $x) -> (Sid, was well-known for wearing, bow ties) -> bow ties (3697ms) What does SIDS stand for? Hoon -0.333333333332 What does SIDS stand for? -> $x: ($x, stand, sids) -> (Hoon, was standing next to, Sid) -> Hoon (3699ms) What does SIDS stand for? The lion -0.333333333332 What does SIDS stand for? -> $x: ($x, stand, sids) -> (The lion, stood outside, Sid?s office building) -> The lion (3699ms) What does SIDS stand for? Mickey -0.333333333332 What does SIDS stand for? -> $x: ($x, stand, sids) -> (Mickey, stands across from, Yen Sid?s desk) -> Mickey (3697ms) What does SIDS stand for? MG2 -0.333333333332 What does SIDS stand for? -> $x: ($x, stand, sids) -> (MG2, stands for, MrSID Generation 2) -> MG2 (3699ms) What does SIDS stand for? Nana -0.333333333332 What does SIDS stand for? -> $x: ($x, stand, sids) -> (Nana, stood next to, Sid) -> Nana (3699ms) What does SIDS stand for? ?SB7 ,? -0.333333333332 What does SIDS stand for? -> $x: ($x, stand, sids) -> (?SB7 ,?, stood for, ?Sid Beckerman tune # 7.?) -> ?SB7 ,? (3697ms) What does SIDS stand for? Kong Li -0.333333333332 What does SIDS stand for? -> $x: ($x, stand, sids) -> (Kong Li, was already standing too close to, Sid) -> Kong Li (3697ms) What does SIDS stand for? The old woman -0.333333333332 What does SIDS stand for? -> $x: ($x, stand, sids) -> (The old woman, stood beside, Sid) -> The old woman (3697ms) What does SIDS stand for? Kurt Lauderdale -0.333333333332 What does SIDS stand for? -> $x: ($x, stand, sids) -> (Kurt Lauderdale, stood toe to toe with, Sid Vicious) -> Kurt Lauderdale (3699ms) What does SIDS stand for? MrSID Generation 2 -0.333333333332 What does SIDS stand for? -> $x: ($x, stand, sids) -> (MrSID Generation 2, stands for, MrSID Generation 3) -> MrSID Generation 2 (3697ms) What does SIDS stand for? green eyes -0.333333333332 What does SIDS stand for? -> $x: ($x, stand, sids) -> (green eyes, stood, Sid) -> green eyes (3699ms) What does SIDS stand for? land -0.333333333332 What does SIDS stand for? -> $x: ($x, stand, sids) -> (land, stood, SidMar) -> land (3704ms) What does SIDS stand for? MG4 -0.333333333332 What does SIDS stand for? -> $x: ($x, stand, sids) -> (MG4, stands for, MrSID Generation 4) -> MG4 (3697ms) What does SIDS stand for? second base -0.444444444442 What does SIDS stand for? -> $x: (sids, stand on, $x) -> (Sid Bream, stood on, second base) -> second base (3704ms) What does SIDS stand for? a grey reflective plain -0.444444444442 What does SIDS stand for? -> $x: (sids, stand on, $x) -> (? Sid, stands on, a grey reflective plain) -> a grey reflective plain (3704ms) What does SIDS stand for? too ? chatting -0.555555555553 What does SIDS stand for? -> $x: (sids, be stand, $x) -> (Sid Vicious, would have been standing there, too ? chatting) -> too ? chatting (3704ms) What does SIDS stand for? the whole interview -0.555555555553 What does SIDS stand for? -> $x: (sids, be stand, $x) -> (LOL Sid, was standing so far back during, the whole interview) -> the whole interview (3704ms) What does SIDS stand for? so far back during the whole interview -0.555555555553 What does SIDS stand for? -> $x: (sids, be stand, $x) -> (LOL Sid, was standing, so far back during the whole interview) -> so far back during the whole interview (3704ms) What does SIDS stand for? Lowe -0.555555555553 What does SIDS stand for? -> $x: (sids, be stand, $x) -> (Sid, was standing behind, Lowe) -> Lowe (3704ms) How many times has he married? Manuel 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Manuel, married, three times) -> Manuel (3006ms) How many times has he married? The King 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (The King, married, six times) -> The King (2992ms) How many times has he married? Colette 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Colette, married, three times) -> Colette (2993ms) How many times has he married? Newt Gingrich 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Newt Gingrich, married, three times) -> Newt Gingrich (2976ms) How many times has he married? The daughter of Aristotle 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (The daughter of Aristotle, married, three times) -> The daughter of Aristotle (2992ms) How many times has he married? A hyperactive heterosexual , Philby 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (A hyperactive heterosexual , Philby, married, four times) -> A hyperactive heterosexual , Philby (2828ms) How many times has he married? Thomas 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Thomas, married, three times) -> Thomas (3006ms) How many times has he married? Barbara Hutton 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Barbara Hutton, married, seven times) -> Barbara Hutton (3006ms) How many times has he married? Zsa Zsa Gabor 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Zsa Zsa Gabor, married, nine times) -> Zsa Zsa Gabor (2702ms) How many times has he married? The story 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (The story, marries, three times) -> The story (2976ms) How many times has he married? Grandfather 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Grandfather, married, four times) -> Grandfather (2702ms) How many times has he married? Couple 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Couple, married, shortest time) -> Couple (2992ms) How many times has he married? Aaron 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Aaron, married, againthis time) -> Aaron (2993ms) How many times has he married? A glamourous Austrian actress 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (A glamourous Austrian actress, married, six times) -> A glamourous Austrian actress (3006ms) How many times has he married? women 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (women, married, multiple times) -> women (3016ms) How many times has he married? Margaret 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Margaret, married, three times) -> Margaret (3006ms) How many times has he married? Eli C. Hale 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Eli C. Hale, married, second time) -> Eli C. Hale (2702ms) How many times has he married? Dick 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Dick, married, five times) -> Dick (2993ms) How many times has he married? a Elijah Throckmorton 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (a Elijah Throckmorton, married, 3 times) -> a Elijah Throckmorton (2641ms) How many times has he married? Betty Lou Beets 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Betty Lou Beets, married, five times) -> Betty Lou Beets (3016ms) How many times has he married? Salim 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Salim, marries, time) -> Salim (3016ms) How many times has he married? Sam 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Sam, married, 3 times) -> Sam (2642ms) How many times has he married? Bertrand Russell 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Bertrand Russell, married, four times) -> Bertrand Russell (2977ms) How many times has he married? Personal Life Stokowski 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Personal Life Stokowski, married, three times) -> Personal Life Stokowski (2977ms) How many times has he married? Gazzara 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Gazzara, married, three times) -> Gazzara (3006ms) How many times has he married? Mary 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Mary, married, three times) -> Mary (3016ms) How many times has he married? Kerouac 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Kerouac, married, three times) -> Kerouac (2702ms) How many times has he married? Sagan 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Sagan, married, three times) -> Sagan (2641ms) How many times has he married? Davy 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Davy, married, three times) -> Davy (3016ms) How many times has he married? The girl 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (The girl, married, several times) -> The girl (2829ms) How many times has he married? Zoroaster 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Zoroaster, married, three times) -> Zoroaster (2976ms) How many times has he married? Newt 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Newt, married, three times) -> Newt (2829ms) How many times has he married? Northern California 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Northern California, married, three times) -> Northern California (3006ms) How many times has he married? Elizabeth Taylor 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Elizabeth Taylor, married, eight times) -> Elizabeth Taylor (2992ms) How many times has he married? Robert Hanson 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Robert Hanson, married, four times) -> Robert Hanson (2641ms) How many times has he married? a story of 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (a story of, married, 23 times) -> a story of (3006ms) How many times has he married? Aristotle 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Aristotle, married, three times) -> Aristotle (2977ms) How many times has he married? So-called experts 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (So-called experts, married, several times) -> So-called experts (3006ms) How many times has he married? Tom 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Tom, married, five times) -> Tom (2829ms) How many times has he married? A former drug addict 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (A former drug addict, married, five times) -> A former drug addict (2992ms) How many times has he married? Kishore Kumar 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Kishore Kumar, married, four times) -> Kishore Kumar (2828ms) How many times has he married? Curtis 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Curtis, married, six times) -> Curtis (2976ms) How many times has he married? Ira 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Ira, married, four times) -> Ira (2830ms) How many times has he married? John 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (John, married, four times) -> John (3016ms) How many times has he married? Charles 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Charles, married, three times) -> Charles (3006ms) How many times has he married? Beisner 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Beisner, married, three times) -> Beisner (3016ms) How many times has he married? a father 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (a father, married, four times) -> a father (2992ms) How many times has he married? Scarlett 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Scarlett, married, three times) -> Scarlett (3006ms) How many times has he married? Williams 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Williams, married, four times) -> Williams (2992ms) How many times has he married? Davis 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Davis, married, three times) -> Davis (2977ms) How many times has he married? a man 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (a man, married, multiple times) -> a man (2976ms) How many times has he married? Cora 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Cora, married, four times) -> Cora (2829ms) How many times has he married? Muhammad 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Muhammad, married, eleven times) -> Muhammad (3006ms) How many times has he married? David 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (David, married, eight times) -> David (2702ms) How many times has he married? Delphine 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Delphine, married, eight times) -> Delphine (3016ms) How many times has he married? a Solar Empire 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (a Solar Empire, married, real time) -> a Solar Empire (3016ms) How many times has he married? William 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (William, married, four times) -> William (2992ms) How many times has he married? Andrew 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Andrew, married, three times) -> Andrew (2992ms) How many times has he married? Hemingway 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Hemingway, married, four times) -> Hemingway (2992ms) How many times has he married? Maud 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Maud, married, 3 times) -> Maud (3016ms) How many times has he married? Archibald 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Archibald, married, 3 times) -> Archibald (2641ms) How many times has he married? Newley 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Newley, married, three times) -> Newley (2702ms) How many times has he married? James 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (James, married, three times) -> James (2993ms) How many times has he married? one man 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (one man, married, eight times) -> one man (3006ms) How many times has he married? Charles Howe Sr 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Charles Howe Sr, married, four times) -> Charles Howe Sr (2976ms) How many times has he married? a woman 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (a woman, marrying, seven times) -> a woman (3006ms) How many times has he married? a person 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (a person, married, three times) -> a person (2976ms) How many times has he married? Henry 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Henry, married, six times) -> Henry (2976ms) How many times has he married? Woody 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Woody, married, 3 times) -> Woody (2992ms) How many times has he married? A woman 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (A woman, married, three times) -> A woman (2641ms) How many times has he married? Hemmings 0.444444444443 How many times has he married? -> $x: ($x, marry, time) -> (Hemmings, married, four times) -> Hemmings (3006ms) How many times has he married? the Colonial themes 0.222222222222 How many times has he married? -> $x: ($x, marry, victorian) -> (the Colonial themes, would be married to, Victorian fussiness) -> the Colonial themes (3016ms) How many times has he married? the Tyrannosaurus Rex 0.222222222222 How many times has he married? -> $x: ($x, marry, stegosaurus) -> (the Tyrannosaurus Rex, married to, the Stegosaurus) -> the Tyrannosaurus Rex (3016ms) How many times has he married? 4.5 % Muslims 0.222222222222 How many times has he married? -> $x: ($x, marry, sikh) -> (4.5 % Muslims, marry, Hindu , Jain or Sikh) -> 4.5 % Muslims (3016ms) How many times has he married? the same caste 0.222222222222 How many times has he married? -> $x: ($x, marry, sikh) -> (the same caste, marry, a Sikh) -> the same caste (3024ms) How many times has he married? a bride 0.222222222222 How many times has he married? -> $x: ($x, marry, victorian) -> (a bride, was married, prior to the Victorian era) -> a bride (3024ms) How many times has he married? Mahendra Pratap 0.222222222222 How many times has he married? -> $x: ($x, marry, sikh) -> (Mahendra Pratap, married a lady from, a Jat Sikh family) -> Mahendra Pratap (3016ms) How many times has he married? Sunday Sweepstakes 0.222222222222 How many times has he married? -> $x: ($x, marry, time square) -> (Sunday Sweepstakes, Get Married in, Times Square) -> Sunday Sweepstakes (3016ms) How many times has he married? Omar Abdullah 0.222222222222 How many times has he married? -> $x: ($x, marry, sikh) -> (Omar Abdullah, is married to, a Sikh) -> Omar Abdullah (3016ms) How many times has he married? The trouble 0.222222222221 How many times has he married? -> $x: ($x, be marry of, time) -> (The trouble, is you?re married all of, the time) -> The trouble (3024ms) How many times has he married? A man 0.222222222221 How many times has he married? -> $x: ($x, be marry of, time) -> (A man, of being married to two women at, the same time) -> A man (3024ms) How many times has he married? the tobaccos 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, to marry, the tobaccos) -> the tobaccos (3038ms) How many times has he married? a daughter 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (the time, marries, a daughter) -> a daughter (3031ms) How many times has he married? Ciel 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, then marry, Ciel) -> Ciel (3048ms) How many times has he married? a hockey player 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, even marry, a hockey player) -> a hockey player (3038ms) How many times has he married? Olive Nathan 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time Grandpa Estes, married, Olive Nathan) -> Olive Nathan (3038ms) How many times has he married? deacons 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, married, deacons) -> deacons (3043ms) How many times has he married? Jones 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (Three-times, married, Jones) -> Jones (3048ms) How many times has he married? Bernadette 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (The many times, married, Bernadette) -> Bernadette (3038ms) How many times has he married? Wynette 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (the same time Jones, married, Wynette) -> Wynette (3043ms) How many times has he married? a second wife 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (this time, married, a second wife) -> a second wife (3038ms) How many times has he married? the Temple 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, get married at, the Temple) -> the Temple (3037ms) How many times has he married? a secret agent 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (the time, married, a secret agent) -> a secret agent (3037ms) How many times has he married? Torch Lake 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, were married on, Torch Lake) -> Torch Lake (3048ms) How many times has he married? the handsome avacado-farmer 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (her time, marry, the handsome avacado-farmer) -> the handsome avacado-farmer (3048ms) How many times has he married? the pleasures 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (Time, marries, the pleasures) -> the pleasures (3024ms) How many times has he married? the first time 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, got married for, the first time) -> the first time (3031ms) How many times has he married? actress Talisa Soto 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (one-time beau Benjamin Bratt, married, actress Talisa Soto) -> actress Talisa Soto (3038ms) How many times has he married? chain 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (the first time, marry, chain) -> chain (3052ms) How many times has he married? the Roman Catholic Church 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, were married in, the Roman Catholic Church) -> the Roman Catholic Church (3043ms) How many times has he married? a sculptor 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, would marry, a sculptor) -> a sculptor (3048ms) How many times has he married? a cutlass blade 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (times, married to, a cutlass blade) -> a cutlass blade (3031ms) How many times has he married? a Frenchman 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, eventually marries, a Frenchman) -> a Frenchman (3048ms) How many times has he married? 18 years 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, have been married for, 18 years) -> 18 years (3052ms) How many times has he married? a Midianite priest 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, married the daughter of, a Midianite priest) -> a Midianite priest (3024ms) How many times has he married? technological components 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (timeRAZOR, marries, technological components) -> technological components (3048ms) How many times has he married? bananas 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (most of the time, marry, bananas) -> bananas (3038ms) How many times has he married? awareness metrics 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (peak usage time, marry, awareness metrics) -> awareness metrics (3052ms) How many times has he married? four times 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (three times, married, four times) -> four times (3025ms) How many times has he married? two years later 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (the time, married, two years later) -> two years later (3052ms) How many times has he married? Ayaka 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, marry, Ayaka) -> Ayaka (3048ms) How many times has he married? each year 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, are married, each year) -> each year (3024ms) How many times has he married? now 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (a long time, married, now) -> now (3048ms) How many times has he married? a wife 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (times, is being married to, a wife) -> a wife (3048ms) How many times has he married? again 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (the time, to marry, again) -> again (3052ms) How many times has he married? a Tasmanian 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (times, is actually married to, a Tasmanian) -> a Tasmanian (3048ms) How many times has he married? the lead guitarist 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (a Time, married, the lead guitarist) -> the lead guitarist (3038ms) How many times has he married? actor Dijimon Hounsou 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, only get married to, actor Dijimon Hounsou) -> actor Dijimon Hounsou (3043ms) How many times has he married? a Jeffery 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (My own x times granny Sarah Broadway, married, a Jeffery) -> a Jeffery (3031ms) How many times has he married? the suspense 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (The timed challenges, marry, the suspense) -> the suspense (3038ms) How many times has he married? the love 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (the Sunday Times fashion journalist, married, the love) -> the love (3031ms) How many times has he married? the next day 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, were married, the next day) -> the next day (3031ms) How many times has he married? Louis 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (good time, marry, Louis) -> Louis (3043ms) How many times has he married? later 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (the time, married, later) -> later (3038ms) How many times has he married? a fellow international student 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, marry, a fellow international student) -> a fellow international student (3052ms) How many times has he married? a non-Jewish woman 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (the time, married, a non-Jewish woman) -> a non-Jewish woman (3031ms) How many times has he married? July 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, was married in, July) -> July (3031ms) How many times has he married? the niece 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, is married to, the niece) -> the niece (3031ms) How many times has he married? Hadassah 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, finally marry, Hadassah) -> Hadassah (3031ms) How many times has he married? each other 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, are married to, each other) -> each other (3031ms) How many times has he married? fellow student Yuana Parisia 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, marry, fellow student Yuana Parisia) -> fellow student Yuana Parisia (3043ms) How many times has he married? Helen 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (the time, to marry, Helen) -> Helen (3043ms) How many times has he married? a rock star 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (A Time , Vallerie Bertinelli, married, a rock star) -> a rock star (3024ms) How many times has he married? the couple 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (the time, married, the couple) -> the couple (3043ms) How many times has he married? a fellow parishioner 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (two and sometimes three times, married, a fellow parishioner) -> a fellow parishioner (3052ms) How many times has he married? a child 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (a time, marry, a child) -> a child (3024ms) How many times has he married? the heir 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (A short time, married, the heir) -> the heir (3024ms) How many times has he married? Agnese 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time Alfredo, married, Agnese) -> Agnese (3043ms) How many times has he married? reports 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (my time, marry, reports) -> reports (3043ms) How many times has he married? the parties 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (the time, married, the parties) -> the parties (3031ms) How many times has he married? a Dutch woman 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, married, a Dutch woman) -> a Dutch woman (3038ms) How many times has he married? an Iraqi staffer 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (a Times reporter, married, an Iraqi staffer) -> an Iraqi staffer (3024ms) How many times has he married? pop singer 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (a one-time radio DJ, married, pop singer) -> pop singer (3043ms) How many times has he married? the person 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (first time cohabitors, marry, the person) -> the person (3031ms) How many times has he married? a Welsh gentleman 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (Time, married, a Welsh gentleman) -> a Welsh gentleman (3031ms) How many times has he married? priests 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (the time, to marry, priests) -> priests (3024ms) How many times has he married? the flavors 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, to marry, the flavors) -> the flavors (3037ms) How many times has he married? fellow activist Chris Hatch 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, marry, fellow activist Chris Hatch) -> fellow activist Chris Hatch (3048ms) How many times has he married? the next woman 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (time, marry, the next woman) -> the next woman (3048ms) How many times has he married? Carl 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (a full-time student, marries, Carl) -> Carl (3031ms) How many times has he married? Allene Wyman 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (the time, marry, Allene Wyman) -> Allene Wyman (3024ms) How many times has he married? Paul McCartney 10 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (a time-machine and travel, marry, Paul McCartney 10) -> Paul McCartney 10 (3043ms) How many times has he married? the wrong reasons 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (times people, marry for, the wrong reasons) -> the wrong reasons (3037ms) How many times has he married? geometric architecture 0.11111111111 How many times has he married? -> $x: (time, marry, $x) -> (The Two Timing Collection, marries, geometric architecture) -> geometric architecture (3048ms) How many times has he married? a nice Jewish man -0.111111111111 How many times has he married? -> $x: (sikh, marry, $x) -> (a Sikh, eventually decided to marry, a nice Jewish man) -> a nice Jewish man (3052ms) How many times has he married? Hindus -0.111111111111 How many times has he married? -> $x: (sikh, marry, $x) -> (Sikhs, marry with, Hindus) -> Hindus (3052ms) How many times has he married? the children -0.111111111111 How many times has he married? -> $x: (sikh, marry, $x) -> (the Hmong or Punjabi Sikhs, marry, the children) -> the children (3052ms) How many times has he married? Barbara Irving -0.111111111111 How many times has he married? -> $x: (victorian, marry, $x) -> (the Victorian Railways, married, Barbara Irving) -> Barbara Irving (3052ms) How many times has he married? wigs and bustles -0.111111111111 How many times has he married? -> $x: (victorian, marry, $x) -> (The Victorian wedding, get married in, wigs and bustles) -> wigs and bustles (3055ms) How many times has he married? the gruff master -0.111111111111 How many times has he married? -> $x: (victorian, marry, $x) -> (a Victorian gothic, marries, the gruff master) -> the gruff master (3055ms) How many times has he married? 20 years -0.111111111111 How many times has he married? -> $x: (the new york times, marry, $x) -> (The New York Times Dr. Bernard Perez, was married for, 20 years) -> 20 years (3052ms) How many times has he married? local Chinese women -0.111111111111 How many times has he married? -> $x: (sikh, marry, $x) -> (the Sikhs, married, local Chinese women) -> local Chinese women (3055ms) How many times has he married? Mexican women -0.111111111111 How many times has he married? -> $x: (sikh, marry, $x) -> (Sikh men, married, Mexican women) -> Mexican women (3055ms) How many times has he married? Carolyn Hoef -0.111111111111 How many times has he married? -> $x: (the new york times, marry, $x) -> (The New York Times Brian Frederick, plans to marry, Carolyn Hoef) -> Carolyn Hoef (3052ms) How many times has he married? a long magazine feature -0.111111111111 How many times has he married? -> $x: (the new york times, marry, $x) -> (The New York Times, recently married, a long magazine feature) -> a long magazine feature (3055ms) How many times has he married? a Sikh -0.111111111111 How many times has he married? -> $x: (sikh, marry, $x) -> (all Sikh girls, is to marry, a Sikh) -> a Sikh (3052ms) How many times has he married? a Methodist church -0.111111111111 How many times has he married? -> $x: (victorian, marry, $x) -> (Victorians, will be married in, a Methodist church) -> a Methodist church (3052ms) How many times has he married? three -0.111111111112 How many times has he married? -> $x: (time, be marry of, $x) -> (the time, was a married father of, three) -> three (3055ms) How many times has he married? two children -0.111111111112 How many times has he married? -> $x: (time, be marry of, $x) -> (the time, was a married father of, two children) -> two children (3055ms) How many times has he married? three whose wife -0.111111111112 How many times has he married? -> $x: (time, be marry of, $x) -> (the time, was a married father of, three whose wife) -> three whose wife (3055ms) Where is the capital of the Mormon Church? Salt Lake City 2.77777777777 Where is the capital of the Mormon Church? -> $x: ($x, be capital of, mormon) -> (Salt Lake City, is the historic capital of, the Mormon church) -> Salt Lake City (3034ms) What was Sinatra's first recording? Disc 2 0.666666666665 What was Sinatra's first recording? -> $x: ($x, be recording of, sinatra) -> (Disc 2, is a recording of, Mr Sinatra) -> Disc 2 (500ms) When was Limbaugh born? Missouri 0.33333333333 When was Limbaugh born? -> $x: (limbaugh, be bear in, $x) -> (Rush Limbaugh, was born in, Missouri) -> Missouri (2138ms) When was Limbaugh born? Cape Girardeau 0.33333333333 When was Limbaugh born? -> $x: (rush limbaugh, be bear in, $x) -> (Rush Hudson Limbaugh III, was born in, Cape Girardeau) -> Cape Girardeau (2139ms) When was Limbaugh born? 1951 0.33333333333 When was Limbaugh born? -> $x: (limbaugh, be bear in, $x) -> (Rush Limbaugh, was born in, 1951) -> 1951 (2138ms) When was Limbaugh born? Bakersfield -0.0 When was Limbaugh born? -> $x: (limbaugh, live in, $x) -> (Limbaugh, live in, Bakersfield) -> Bakersfield (2211ms) When was Limbaugh born? Jan . 12 -0.0 When was Limbaugh born? -> $x: (limbaugh, be bear on, $x) -> (Limbaugh and Stern, were both born on, Jan . 12) -> Jan . 12 (2138ms) When was Limbaugh born? kidney failure -0.111111111111 When was Limbaugh born? -> $x: (rush limbaugh, die of, $x) -> (Rush Limbaugh, will die of, kidney failure) -> kidney failure (3380ms) When was Limbaugh born? a heart attack -0.111111111111 When was Limbaugh born? -> $x: (limbaugh, die of, $x) -> (Limbaugh, dying of, a heart attack) -> a heart attack (3342ms) When was Limbaugh born? cancer -0.111111111111 When was Limbaugh born? -> $x: (limbaugh, die of, $x) -> (Limbaugh, dies of, cancer) -> cancer (3415ms) When was Limbaugh born? care -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does nt, care) -> care (3711ms) When was Limbaugh born? right-wing talkmeister Rush Limbaugh use -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, does, right-wing talkmeister Rush Limbaugh use) -> right-wing talkmeister Rush Limbaugh use (3733ms) When was Limbaugh born? significant moral character -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, does n?t have, significant moral character) -> significant moral character (3733ms) When was Limbaugh born? Heaton -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, so did, Heaton) -> Heaton (3711ms) When was Limbaugh born? the matter -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (? Limbaugh, did n?t shy away from, the matter) -> the matter (3687ms) When was Limbaugh born? the reputation -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, does threaten, the reputation) -> the reputation (3746ms) When was Limbaugh born? Republicans -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, does the dirty work for, Republicans) -> Republicans (3718ms) When was Limbaugh born? the subject -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (some research Rush Limbaugh, did on, the subject) -> the subject (3739ms) When was Limbaugh born? the Democrat -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does n?t like, the Democrat) -> the Democrat (3687ms) When was Limbaugh born? the Republican Party -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does n?t run, the Republican Party) -> the Republican Party (3746ms) When was Limbaugh born? callers -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does take, callers) -> callers (3740ms) When was Limbaugh born? n?t -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did, n?t) -> n?t (3746ms) When was Limbaugh born? a broad need classroom seats -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, does, a broad need classroom seats) -> a broad need classroom seats (3711ms) When was Limbaugh born? the Chevy Volt -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (2011 Rush Limbaugh, does n?t like, the Chevy Volt) -> the Chevy Volt (3733ms) When was Limbaugh born? the memo -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, clearly did n?t get, the memo) -> the memo (3746ms) When was Limbaugh born? a living -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, do for, a living) -> a living (3696ms) When was Limbaugh born? an effective job -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, really does, an effective job) -> an effective job (3732ms) When was Limbaugh born? whine -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did n?t, whine) -> whine (3719ms) When was Limbaugh born? the same -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did, the same) -> the same (3733ms) When was Limbaugh born? funders -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, has done, funders) -> funders (3696ms) When was Limbaugh born? spew -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, do are, spew) -> spew (3696ms) When was Limbaugh born? the pill -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did any research on, the pill) -> the pill (3719ms) When was Limbaugh born? a cup -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did n?t even throw, a cup) -> a cup (3726ms) When was Limbaugh born? the Little Timmy moniker -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did borrow, the Little Timmy moniker) -> the Little Timmy moniker (3711ms) When was Limbaugh born? an apology -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did offer, an apology) -> an apology (3719ms) When was Limbaugh born? women -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does n?t give a damn about, women) -> women (3746ms) When was Limbaugh born? ?EIB.? -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, does n?t actually work for, ?EIB.?) -> ?EIB.? (3719ms) When was Limbaugh born? decency -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does n?t care about, decency) -> decency (3746ms) When was Limbaugh born? a good job -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Rush Limbaugh, did, a good job) -> a good job (3732ms) When was Limbaugh born? the United States -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did, the United States) -> the United States (3726ms) When was Limbaugh born? Monday Night Football -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did get fired from, Monday Night Football) -> Monday Night Football (3726ms) When was Limbaugh born? the commercial time -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does hold back some of, the commercial time) -> the commercial time (3719ms) When was Limbaugh born? a radio program -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Rush Limbaugh, did, a radio program) -> a radio program (3732ms) When was Limbaugh born? still -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Rush Limbaugh, does, still) -> still (3740ms) When was Limbaugh born? girly men -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (the Rush Limbaugh Quilt, do, girly men) -> girly men (3740ms) When was Limbaugh born? the political right -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does for, the political right) -> the political right (3687ms) When was Limbaugh born? Wednesday -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did n?t complain until, Wednesday) -> Wednesday (3740ms) When was Limbaugh born? taxes -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (my BFF Rush Limbaugh, does n?t like, taxes) -> taxes (3593ms) When was Limbaugh born? insult -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did more than, insult) -> insult (3696ms) When was Limbaugh born? Saddam -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Rush Limbaugh, did, Saddam) -> Saddam (3726ms) When was Limbaugh born? call George Zimmerman -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did n?t, call George Zimmerman) -> call George Zimmerman (3704ms) When was Limbaugh born? a pay-podcast -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, just do, a pay-podcast) -> a pay-podcast (3696ms) When was Limbaugh born? liberal searchlight -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, does, liberal searchlight) -> liberal searchlight (3711ms) When was Limbaugh born? Clinton -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did this to, Clinton) -> Clinton (3740ms) When was Limbaugh born? a nice job one day -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Rush Limbaugh, did, a nice job one day) -> a nice job one day (3704ms) When was Limbaugh born? liberal breton -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Rush Limbaugh, does, liberal breton) -> liberal breton (3732ms) When was Limbaugh born? the doubt -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does n?t get the benefit of, the doubt) -> the doubt (3726ms) When was Limbaugh born? henchman cameo -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, is doing today?s, henchman cameo) -> henchman cameo (3719ms) When was Limbaugh born? Wilson -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Racist Rush Limbaugh, naturally does n?t think, Wilson) -> Wilson (3704ms) When was Limbaugh born? air -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does on, air) -> air (3726ms) When was Limbaugh born? the time -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, were doing at, the time) -> the time (3740ms) When was Limbaugh born? a cable TV station -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (@Lady D Rush Limbaugh, does n?t work for, a cable TV station) -> a cable TV station (3696ms) When was Limbaugh born? alienate two-thirds -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, does his best to, alienate two-thirds) -> alienate two-thirds (3711ms) When was Limbaugh born? three solid days -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did for, three solid days) -> three solid days (3696ms) When was Limbaugh born? Romney -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (( Limbaugh, does n?t even like, Romney) -> Romney (3696ms) When was Limbaugh born? Howard?s forays -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, do a lot more damage than, Howard?s forays) -> Howard?s forays (3696ms) When was Limbaugh born? an ?ideology -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did n?t inject, an ?ideology) -> an ?ideology (3719ms) When was Limbaugh born? the lesser-known FM station -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did move to, the lesser-known FM station) -> the lesser-known FM station (3704ms) When was Limbaugh born? Fluke?s life -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did some research into, Fluke?s life) -> Fluke?s life (3726ms) When was Limbaugh born? heart Hillary -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, really does, heart Hillary) -> heart Hillary (3733ms) When was Limbaugh born? the attacks -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did n?t stop with, the attacks) -> the attacks (3711ms) When was Limbaugh born? President Obama -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (--radio talk-show host Rush Limbaugh, does, President Obama) -> President Obama (3719ms) When was Limbaugh born? an impression of her -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, mocked Sawyer doing, an impression of her) -> an impression of her (3711ms) When was Limbaugh born? YouTube or Facebook -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, apparently does n?t offend, YouTube or Facebook) -> YouTube or Facebook (3704ms) When was Limbaugh born? men -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (( Limbaugh, pointedly does n?t suggest this to, men) -> men (3732ms) When was Limbaugh born? the problem -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, has nothing to do with, the problem) -> the problem (3740ms) When was Limbaugh born? Hillary Clinton -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did for, Hillary Clinton) -> Hillary Clinton (3746ms) When was Limbaugh born? the brand -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (" Rush Limbaugh, may have done more damage to, the brand) -> the brand (3732ms) When was Limbaugh born? the cause -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, has done great harm to, the cause) -> the cause (3696ms) When was Limbaugh born? Stoltenberg -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does have the advantage on, Stoltenberg) -> Stoltenberg (3594ms) When was Limbaugh born? just call people names -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does nt, just call people names) -> just call people names (3687ms) When was Limbaugh born? voters -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, has done a fine service to, voters) -> voters (3687ms) When was Limbaugh born? Jesse Jackson imitation -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Rush Limbaugh, does, Jesse Jackson imitation) -> Jesse Jackson imitation (3746ms) When was Limbaugh born? Republican water -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (? Limbaugh, does n?t carry, Republican water) -> Republican water (3696ms) When was Limbaugh born? Bush -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did the right thing by, Bush) -> Bush (3711ms) When was Limbaugh born? a radio talk show -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Rush Limbaugh, does, a radio talk show) -> a radio talk show (3740ms) When was Limbaugh born? the conservatives -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did, the conservatives) -> the conservatives (3704ms) When was Limbaugh born? ?Machine Gun Preacher ? -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did n?t see, ?Machine Gun Preacher ?) -> ?Machine Gun Preacher ? (3513ms) When was Limbaugh born? a live show -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Rush Limbaugh, does, a live show) -> a live show (3711ms) When was Limbaugh born? torture -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, has done nothing but cheerlead for, torture) -> torture (3704ms) When was Limbaugh born? 2000 -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did in, 2000) -> 2000 (3726ms) When was Limbaugh born? the law student -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did issue an apology to, the law student) -> the law student (3687ms) When was Limbaugh born? Fluke -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did, Fluke) -> Fluke (3726ms) When was Limbaugh born? the defense -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh?s comments, has anything to do with, the defense) -> the defense (3704ms) When was Limbaugh born? radio segments -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did, radio segments) -> radio segments (3733ms) When was Limbaugh born? so -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did, so) -> so (3719ms) When was Limbaugh born? years -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, has been doing for, years) -> years (3719ms) When was Limbaugh born? big bucks -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, does the same thing for really, big bucks) -> big bucks (3740ms) When was Limbaugh born? advertisers -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, has to do with, advertisers) -> advertisers (3719ms) When was Limbaugh born? decades -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (All Rush Limbaugh, has done is work hard for, decades) -> decades (3740ms) When was Limbaugh born? private behavior -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does n?t share my opinion about, private behavior) -> private behavior (3733ms) When was Limbaugh born? last week -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Rush Limbaugh, did, last week) -> last week (3726ms) When was Limbaugh born? ratings -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (1:39 pm Rush Limbaugh, is doing this for, ratings) -> ratings (3687ms) When was Limbaugh born? the meaning -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does n?t regret, the meaning) -> the meaning (3726ms) When was Limbaugh born? a daily basis -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, does on, a daily basis) -> a daily basis (3711ms) When was Limbaugh born? Ms. Fluke -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did to, Ms. Fluke) -> Ms. Fluke (3696ms) When was Limbaugh born? Honolulu Council -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, Did, Honolulu Council) -> Honolulu Council (3740ms) When was Limbaugh born? drugs -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, doing, drugs) -> drugs (3712ms) When was Limbaugh born? Thursday -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did his part on, Thursday) -> Thursday (3712ms) When was Limbaugh born? the NYTimes -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, has been doing a good job on, the NYTimes) -> the NYTimes (3704ms) When was Limbaugh born? the obvious , -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did, the obvious ,) -> the obvious , (3740ms) When was Limbaugh born? an excellent , good or fair job -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, is doing, an excellent , good or fair job) -> an excellent , good or fair job (3687ms) When was Limbaugh born? Obama -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did, Obama) -> Obama (3593ms) When was Limbaugh born? an article -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did a riff on, an article) -> an article (3704ms) When was Limbaugh born? n?t pay -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Rush Limbaugh, did, n?t pay) -> n?t pay (3746ms) When was Limbaugh born? Fine -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, Is Doing Just, Fine) -> Fine (3704ms) When was Limbaugh born? a montage -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, is going to do, a montage) -> a montage (3593ms) When was Limbaugh born? the word -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did use, the word) -> the word (3719ms) When was Limbaugh born? the work nobody -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, did, the work nobody) -> the work nobody (3726ms) When was Limbaugh born? the Democrats -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, so did, the Democrats) -> the Democrats (3719ms) When was Limbaugh born? parodies -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, does tired, parodies) -> parodies (3593ms) When was Limbaugh born? people names -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (?Limbaugh, does n?t just call, people names) -> people names (3746ms) When was Limbaugh born? Democrats -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (RUSH LIMBAUGH, do, Democrats) -> Democrats (3704ms) When was Limbaugh born? a sit-down interview -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Rush Limbaugh, has done, a sit-down interview) -> a sit-down interview (3704ms) When was Limbaugh born? Sandra Fluke -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did to, Sandra Fluke) -> Sandra Fluke (3732ms) When was Limbaugh born? Entergy v. Riverkeeper -0.222222222222 When was Limbaugh born? -> $x: (limbaugh, do, $x) -> (Limbaugh, did n?t include, Entergy v. Riverkeeper) -> Entergy v. Riverkeeper (3726ms) When was Limbaugh born? any loss -0.222222222222 When was Limbaugh born? -> $x: (rush limbaugh, do, $x) -> (Stories Rush Limbaugh, does n?t seem to have suffered, any loss) -> any loss (3593ms) When was Limbaugh born? an opening -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (an opening, did, Mr Limbaugh) -> an opening (3772ms) When was Limbaugh born? Comments Frameshop -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Comments Frameshop, Did, Limbaugh) -> Comments Frameshop (3772ms) When was Limbaugh born? Link -0.333333333333 When was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (Link, do, RUSH Limbaugh) -> Link (3781ms) When was Limbaugh born? a preview -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (a preview, did, Rush Limbaugh) -> a preview (3752ms) When was Limbaugh born? the heck -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (the heck, does, Limbaugh) -> the heck (3762ms) When was Limbaugh born? Dean -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Dean, even did an impersonation of, Limbaugh snorting coke) -> Dean (3767ms) When was Limbaugh born? reply -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (reply, did, LImbaugh attack) -> reply (3781ms) When was Limbaugh born? Oralmann -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Oralmann, does, a Limbaugh impression) -> Oralmann (3762ms) When was Limbaugh born? cults -0.333333333333 When was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (cults, do tend to develop, ( Rush Limbaugh anyone) -> cults (3757ms) When was Limbaugh born? the Republican party -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (the Republican party, is doing the same right now with, Limbaugh) -> the Republican party (3767ms) When was Limbaugh born? occasion -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (occasion, does, Rush Limbaugh) -> occasion (3781ms) When was Limbaugh born? UPDATE -0.333333333333 When was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (UPDATE, Did n?t, the Advertisers Drop Rush Limbaugh) -> UPDATE (3776ms) When was Limbaugh born? Even the NFL -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Even the NFL, did n?t want, Limbaugh) -> Even the NFL (3752ms) When was Limbaugh born? the sisterhood -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (the sisterhood, is doing battle with, Rush Limbaugh) -> the sisterhood (3757ms) When was Limbaugh born? politicsathome -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (politicsathome, Does, Mr. Limbaugh) -> politicsathome (3762ms) When was Limbaugh born? a really disgusting image -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (a really disgusting image, so does, Limbaugh) -> a really disgusting image (3757ms) When was Limbaugh born? Beck and -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Beck and, could do the same to, Limbaugh) -> Beck and (3752ms) When was Limbaugh born? Franken -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Franken, does, a good Rush Limbaugh imitation) -> Franken (3772ms) When was Limbaugh born? Olbermann -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Olbermann, Did, Limbaugh) -> Olbermann (3772ms) When was Limbaugh born? Just another Hot site news -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Just another Hot site news, Does, Rush Limbaugh) -> Just another Hot site news (3777ms) When was Limbaugh born? The liberals -0.333333333333 When was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (The liberals, did this with, Rush Limbaugh) -> The liberals (3777ms) When was Limbaugh born? 06/13/2011 -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (06/13/2011, Did, Limbaugh) -> 06/13/2011 (3781ms) When was Limbaugh born? The Republican board members -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (The Republican board members, wont do anything to, Limbaugh) -> The Republican board members (3757ms) When was Limbaugh born? the Classes -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (the Classes, Does, Rush Limbaugh) -> the Classes (3767ms) When was Limbaugh born? VIAGRA -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (VIAGRA, does sound like, Limbaugh) -> VIAGRA (3767ms) When was Limbaugh born? a regular basis -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (a regular basis, does, Limbaugh) -> a regular basis (3757ms) When was Limbaugh born? home -0.333333333333 When was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (home, so did, Rush Limbaugh) -> home (3777ms) When was Limbaugh born? wodiej -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (wodiej, Did, Levin or Limbaugh endorse anyone) -> wodiej (3772ms) When was Limbaugh born? Here?s one -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Here?s one, obviously does n?t listen to, Limbaugh) -> Here?s one (3762ms) When was Limbaugh born? Barack ? Obama -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Barack ? Obama, did n?t take, Limbaugh?s bait) -> Barack ? Obama (3776ms) When was Limbaugh born? Rush Limbaugh -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Rush Limbaugh, does, right-wing talkmeister Rush Limbaugh use) -> Rush Limbaugh (3746ms) When was Limbaugh born? 12 August 2010 12:55 -0.333333333333 When was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (12 August 2010 12:55, Do, Rush Limbaugh) -> 12 August 2010 12:55 (3781ms) When was Limbaugh born? board -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (board, did, Limbaugh) -> board (3762ms) When was Limbaugh born? BuzzFlash -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (BuzzFlash, does, Rush Limbaugh play) -> BuzzFlash (3772ms) When was Limbaugh born? terrorists -0.333333333333 When was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (terrorists, does, Rush Limbaugh) -> terrorists (3772ms) When was Limbaugh born? Just -0.333333333333 When was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (Just, do famed, women-bashers Rush Limbaugh) -> Just (3772ms) When was Limbaugh born? more ] -0.333333333333 When was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (more ], Did, some Rush Limbaugh dittohead call) -> more ] (3781ms) When was Limbaugh born? much influence -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (much influence, did, Rush Limbaugh) -> much influence (3762ms) When was Limbaugh born? the destruction -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (the destruction, done to, Limbaugh) -> the destruction (3752ms) When was Limbaugh born? the answer -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (the answer, has to do with, Rush Limbaugh) -> the answer (3772ms) When was Limbaugh born? KPUA -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (KPUA, does have three marvelous hours of, Rush Limbaugh) -> KPUA (3777ms) When was Limbaugh born? Chafets -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Chafets, did ask, Limbaugh) -> Chafets (3777ms) When was Limbaugh born? audience -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (audience, would do serious damage to, Limbaugh) -> audience (3757ms) When was Limbaugh born? 127 other followers -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (127 other followers, do, Limbaugh) -> 127 other followers (3762ms) When was Limbaugh born? the public protest -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (the public protest, did to, Limbaugh) -> the public protest (3767ms) When was Limbaugh born? anyone else -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (anyone else, does n?t fit the mold of, Mr. Limbaugh?s version) -> anyone else (3746ms) When was Limbaugh born? President Reagan -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (President Reagan, did send, Limbaugh) -> President Reagan (3762ms) When was Limbaugh born? fans -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (fans, do listen to, Limbaugh ? fans) -> fans (3777ms) When was Limbaugh born? Rush -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Rush, did n?t go from, Rush Limbaugh) -> Rush (3762ms) When was Limbaugh born? Bush Country -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Bush Country, makes do with, Rush Limbaugh) -> Bush Country (3777ms) When was Limbaugh born? racist -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (racist, does, n?t Limbaugh) -> racist (3762ms) When was Limbaugh born? the firm -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (the firm, does n?t want to continue, Limbaugh?s advertising) -> the firm (3772ms) When was Limbaugh born? The better question -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (The better question, does, Rush Limbaugh) -> The better question (3781ms) When was Limbaugh born? a *huge* following -0.333333333333 When was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (a *huge* following, does, Rush Limbaugh) -> a *huge* following (3772ms) When was Limbaugh born? Insurance -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Insurance, did tape, Limbaugh) -> Insurance (3767ms) When was Limbaugh born? the the health care bill -0.333333333333 When was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (the the health care bill, did, Rush Limbaugh) -> the the health care bill (3757ms) When was Limbaugh born? spinnerator -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (spinnerator, does, Hannity , Limbaugh , Curic , Walters) -> spinnerator (3757ms) When was Limbaugh born? Procedure -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Procedure, Does, Limbaugh) -> Procedure (3762ms) When was Limbaugh born? no time -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (no time, did, Rush Limbaugh) -> no time (3772ms) When was Limbaugh born? the Columbia accident -0.333333333333 When was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (the Columbia accident, is largely the doing of, Rush Limbaugh) -> the Columbia accident (3777ms) When was Limbaugh born? Bill Maher -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Bill Maher, have to do with, Rush Limbaugh) -> Bill Maher (3772ms) When was Limbaugh born? Zell Miller -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Zell Miller, does to, Rush Limbaugh?s medicine cabinet) -> Zell Miller (3776ms) When was Limbaugh born? Answer -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Answer, does rush, limbaugh need viagra) -> Answer (3762ms) When was Limbaugh born? 2002 * -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (2002 *, do, Rush Limbaugh) -> 2002 * (3772ms) When was Limbaugh born? gumdrops -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (gumdrops, did, the decidedly nonfictional Rush Limbaugh) -> gumdrops (3762ms) When was Limbaugh born? Questions -0.333333333333 When was Limbaugh born? -> $x: ($x, do, limbaugh) -> (Questions, Does, Rush Limbaugh) -> Questions (3757ms) When was Limbaugh born? compassion -0.333333333333 When was Limbaugh born? -> $x: ($x, do, rush limbaugh) -> (compassion, does, Rush Limbaugh) -> compassion (3772ms) When was Limbaugh born? a hardscrabble existence -1.9999999999940001 When was Limbaugh born? -> $x: ($x, invent, limbaugh) -> (a hardscrabble existence, was totally invented by, Limbaugh) -> a hardscrabble existence (3789ms) When was Limbaugh born? the talk-radio format -1.9999999999940001 When was Limbaugh born? -> $x: (limbaugh, invent, $x) -> (Limbaugh more or less, invented, the talk-radio format) -> the talk-radio format (3789ms) When was Limbaugh born? the reprehensible slur ?feminazi -1.9999999999940001 When was Limbaugh born? -> $x: (limbaugh, invent, $x) -> (Limbaugh, invented, the reprehensible slur ?feminazi) -> the reprehensible slur ?feminazi (3789ms) When was Limbaugh born? a couple weeks -1.9999999999940001 When was Limbaugh born? -> $x: (rush limbaugh, die, $x) -> (Rush Limbaugh, died, a couple weeks) -> a couple weeks (3789ms) When was Limbaugh born? a piece -2.111111111103 When was Limbaugh born? -> $x: (limbaugh, look like, $x) -> (Rush Limbaugh, looks like, a piece) -> a piece (3795ms) When was Limbaugh born? a new Kingfish -2.111111111103 When was Limbaugh born? -> $x: (limbaugh, look like, $x) -> (Rush Limbaugh, is starting to look like, a new Kingfish) -> a new Kingfish (3795ms) When was Limbaugh born? a flaming liberal -2.111111111103 When was Limbaugh born? -> $x: (rush limbaugh, look like, $x) -> (Rush Limbaugh, look like, a flaming liberal) -> a flaming liberal (3792ms) When was Limbaugh born? bushfailure -2.111111111103 When was Limbaugh born? -> $x: ($x, look like, rush limbaugh) -> (bushfailure, Looks like, Rush Limbaugh) -> bushfailure (3795ms) When was Limbaugh born? the Teletubbies -2.111111111103 When was Limbaugh born? -> $x: ($x, look like, rush limbaugh) -> (the Teletubbies, looks a lot like, Rush Limbaugh) -> the Teletubbies (3796ms) When was Limbaugh born? a hulking man -2.111111111103 When was Limbaugh born? -> $x: ($x, look like, limbaugh) -> (a hulking man, looked a bit like, Rush Limbaugh) -> a hulking man (3795ms) When was Limbaugh born? Bill Clinton -2.111111111103 When was Limbaugh born? -> $x: ($x, look like, limbaugh) -> (Bill Clinton, look like, Rush Limbaugh) -> Bill Clinton (3795ms) When was Limbaugh born? the political landscape -2.111111111103 When was Limbaugh born? -> $x: ($x, look like, limbaugh) -> (the political landscape, would look like without, Limbaugh) -> the political landscape (3789ms) When was Limbaugh born? an independent thinker -2.111111111103 When was Limbaugh born? -> $x: (limbaugh, look like, $x) -> (Rush Limbaugh, look like, an independent thinker) -> an independent thinker (3792ms) When was Limbaugh born? Ted Kennedy -2.111111111103 When was Limbaugh born? -> $x: (limbaugh, look like, $x) -> (Rush Limbaugh, looks like, Ted Kennedy) -> Ted Kennedy (3795ms) When was Limbaugh born? a mob -2.111111111103 When was Limbaugh born? -> $x: (limbaugh, look like, $x) -> (This anti-Limbaugh movement, is starting to look like, a mob) -> a mob (3792ms) When was Limbaugh born? Susan B. Anthony -2.111111111103 When was Limbaugh born? -> $x: (limbaugh, look like, $x) -> (Rush Limbaugh, look like, Susan B. Anthony) -> Susan B. Anthony (3795ms) When was Limbaugh born? a nice guy -2.111111111103 When was Limbaugh born? -> $x: (rush limbaugh, look like, $x) -> (Rush Limbaugh, looks like, a nice guy) -> a nice guy (3795ms) When was Limbaugh born? the Minnesota State Fair -2.111111111103 When was Limbaugh born? -> $x: ($x, look like, limbaugh) -> (the Minnesota State Fair, looked a whole lot like, Limbaugh) -> the Minnesota State Fair (3789ms) When was Limbaugh born? a fool -2.111111111103 When was Limbaugh born? -> $x: (limbaugh, look like, $x) -> (Limbaugh, was made to look like, a fool) -> a fool (3792ms) When was Limbaugh born? sugar and honey -2.111111111103 When was Limbaugh born? -> $x: (limbaugh, look like, $x) -> (Rush Limbaugh, look like, sugar and honey) -> sugar and honey (3792ms) When was Limbaugh born? a beached whale -2.111111111103 When was Limbaugh born? -> $x: (limbaugh, look like, $x) -> (Limbaugh, looks like, a beached whale) -> a beached whale (3795ms) When was Limbaugh born? Guy -2.111111111103 When was Limbaugh born? -> $x: ($x, look like, limbaugh) -> (Guy, looks like, a rush limbaugh listener) -> Guy (3792ms) When was Limbaugh born? types -2.111111111103 When was Limbaugh born? -> $x: ($x, look like, rush limbaugh) -> (types, look like, Rush Limbaugh) -> types (3792ms) When was Limbaugh born? Michelle Sixta -2.111111111104 When was Limbaugh born? -> $x: (limbaugh, marry, $x) -> (Limbaugh, married, Michelle Sixta) -> Michelle Sixta (3801ms) When was Limbaugh born? the same person -2.111111111104 When was Limbaugh born? -> $x: (rush limbaugh, marry, $x) -> (Rush Limbaugh, were ever married to, the same person) -> the same person (3798ms) When was Limbaugh born? two years -2.111111111104 When was Limbaugh born? -> $x: (limbaugh, marry, $x) -> (61-year-old Limbaugh, has been married less than, two years) -> two years (3801ms) When was Limbaugh born? 4 times -2.111111111104 When was Limbaugh born? -> $x: (limbaugh, marry, $x) -> (presumably Rush Limbaugh, has been married, 4 times) -> 4 times (3798ms) When was Limbaugh born? four times -2.111111111104 When was Limbaugh born? -> $x: (limbaugh, marry, $x) -> (Mr. Limbaugh, has been married, four times) -> four times (3801ms) When was Limbaugh born? any woman -2.111111111104 When was Limbaugh born? -> $x: ($x, marry, limbaugh) -> (any woman, have married, Rush Limbaugh) -> any woman (3801ms) When was Limbaugh born? Jane Fonda -2.111111111104 When was Limbaugh born? -> $x: ($x, marry, limbaugh) -> (Jane Fonda, marries, Rush Limbaugh) -> Jane Fonda (3801ms) When was Limbaugh born? the very first time -2.111111111104 When was Limbaugh born? -> $x: (rush limbaugh, marry, $x) -> (Rush Limbaugh, was married for, the very first time) -> the very first time (3801ms) When was Limbaugh born? David Limbaugh -2.111111111104 When was Limbaugh born? -> $x: ($x, marry, limbaugh) -> (David Limbaugh, has been married to, Lisa Limbaugh) -> David Limbaugh (3798ms) When was Limbaugh born? Lisa Limbaugh -2.111111111104 When was Limbaugh born? -> $x: (limbaugh, marry, $x) -> (David Limbaugh, has been married to, Lisa Limbaugh) -> Lisa Limbaugh (3803ms) When was Limbaugh born? a blonde bombshell -2.111111111104 When was Limbaugh born? -> $x: (rush limbaugh, marry, $x) -> (?Rush Limbaugh, married, a blonde bombshell) -> a blonde bombshell (3803ms) When was Limbaugh born? the fourth time -2.111111111104 When was Limbaugh born? -> $x: (rush limbaugh, marry, $x) -> (Rush Limbaugh, gets married for, the fourth time) -> the fourth time (3803ms) When was Limbaugh born? Kathryn Rogers -2.111111111104 When was Limbaugh born? -> $x: (limbaugh, marry, $x) -> (Limbaugh, married, Kathryn Rogers) -> Kathryn Rogers (3798ms) When was Limbaugh born? Marta Fitzgerald -2.111111111104 When was Limbaugh born? -> $x: (limbaugh, marry, $x) -> (Limbaugh, married, Marta Fitzgerald) -> Marta Fitzgerald (3801ms) When was Limbaugh born? June 5 , 2010 -2.111111111104 When was Limbaugh born? -> $x: (limbaugh, marry, $x) -> (Rush Limbaugh, were married on, June 5 , 2010) -> June 5 , 2010 (3798ms) Who was the first person to set foot on the moon? Neil Armstrong 0.66666666668 Who was the first person to set foot on the moon? -> $x: ($x, be first person to set foot on, moon) -> (Neil Armstrong, was the first person to set foot on, the moon) -> Neil Armstrong (629ms) Who was the first person to set foot on the moon? Buzz Lightyear 0.66666666668 Who was the first person to set foot on the moon? -> $x: ($x, be first person to set foot on, moon) -> (Buzz Lightyear, was the first person to set foot on, the moon) -> Buzz Lightyear (627ms) Who was the first person to set foot on the moon? The Commander 0.66666666668 Who was the first person to set foot on the moon? -> $x: ($x, be first person to set foot on, moon) -> (The Commander, was the first person to set foot on, the Moon) -> The Commander (629ms) Who was the first person to set foot on the moon? the moon -1.8888888888909998 Who was the first person to set foot on the moon? -> $x: (neil armstrong, be first person to set foot on, $x) -> (Neil Armstrong, was the first person to set foot on, the moon) -> the moon (727ms) What does laser stand for? ALICE ALICE 0.7777777777789999 What does laser stand for? -> $x: ($x, be stand for, laser) -> (ALICE ALICE, is an acronym standing for, Accelerators and Lasers) -> ALICE ALICE (1544ms) What does laser stand for? Laser light 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (Laser, stands for, Laser light) -> Laser light (1543ms) What does laser stand for? a word 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (laser, actually stands for, a word) -> a word (1913ms) What does laser stand for? ?Radiation ? 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (LASER, stands for, ?Radiation ?) -> ?Radiation ? (1940ms) What does laser stand for? light amplification 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (laser ?, stands for, light amplification) -> light amplification (1847ms) What does laser stand for? freedom 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (Laser direct structuring, stands for, freedom) -> freedom (1940ms) What does laser stand for? Love 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (LASERS, stands for, Love) -> Love (1733ms) What does laser stand for? Laser 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (Laser eye surgery, stands for, Laser) -> Laser (1940ms) What does laser stand for? Intense Pulsed Light 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (| Laser Hair Removal IPL, stands for, Intense Pulsed Light) -> Intense Pulsed Light (1733ms) What does laser stand for? light amphlication 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (The laser, stands for, light amphlication) -> light amphlication (1847ms) What does laser stand for? ?microwave amplification 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (a ?laser, stands for, ?microwave amplification) -> ?microwave amplification (1544ms) What does laser stand for? Light Amplified 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (Laser, stands for, Light Amplified) -> Light Amplified (1914ms) What does laser stand for? more information 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (the Laser Engineer, stand for, more information) -> more information (1846ms) What does laser stand for? unprecedented measuring speed 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (VERTILAS laser diodes, stand for, unprecedented measuring speed) -> unprecedented measuring speed (1940ms) What does laser stand for? ?light amplification 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (Laser, stands for, ?light amplification) -> ?light amplification (1913ms) What does laser stand for? Light Amplification 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (laser, stands for, Light Amplification) -> Light Amplification (1846ms) What does laser stand for? quality 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (Trotec?s laser engravers and cutters, stand for, quality) -> quality (1544ms) What does laser stand for? Light wave Amplification 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (the word laser, stands for, Light wave Amplification) -> Light wave Amplification (1940ms) What does laser stand for? love and compassion 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (Lasers, stand for, love and compassion) -> love and compassion (1733ms) What does laser stand for? Light Amplification 0.666666666669 What does laser stand for? -> $x: (laser, be stand for, $x) -> (LASER, is an acronym standing for, Light Amplification) -> Light Amplification (1913ms) What does laser stand for? the use 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (Laser, stands for, the use) -> the use (1913ms) What does laser stand for? ?Light Amplification 0.666666666669 What does laser stand for? -> $x: (laser, stand for, $x) -> (The word ?laser ?, stands for, ?Light Amplification) -> ?Light Amplification (1940ms) What does laser stand for? the path 0.555555555558 What does laser stand for? -> $x: (laser, stand in, $x) -> (the lasers, unfortunately stood in, the path) -> the path (1940ms) What does laser stand for? LISA 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (LISA, stands for, Laser Interferometer Space Antenna) -> LISA (2588ms) What does laser stand for? MOLA 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (MOLA, stands for, Mars Orbiter Laser Altimeter) -> MOLA (2621ms) What does laser stand for? LASIK LASIK 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (LASIK LASIK, stands for, Laser Assisted In-Situ Keratomileusis) -> LASIK LASIK (2631ms) What does laser stand for? LANAP 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (LANAP, stands for, Laser Assisted New Attachment Procedure) -> LANAP (2588ms) What does laser stand for? The word LASIK 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (The word LASIK, stands for, Laser Assisted) -> The word LASIK (2621ms) What does laser stand for? Epithelial and Lasik 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (Epithelial and Lasik, stands for, Laser) -> Epithelial and Lasik (2311ms) What does laser stand for? Lasik Eye Surgery LASIK 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (Lasik Eye Surgery LASIK, stands for, Laser-Assisted) -> Lasik Eye Surgery LASIK (2621ms) What does laser stand for? SLS 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (SLS, stands for, selective laser sintering) -> SLS (2391ms) What does laser stand for? LDS 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (LDS, stands for, Laser Direct Structuring) -> LDS (2249ms) What does laser stand for? the surgery 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (the surgery, stands for, Laser Assisted) -> the surgery (2249ms) What does laser stand for? The acronym 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (The acronym, stands for, laser-assisted) -> The acronym (1975ms) What does laser stand for? CML 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (CML, stands for, Chirp Managed Laser) -> CML (2631ms) What does laser stand for? LASIK Surgery LASIK 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (LASIK Surgery LASIK, stands for, Laser-Assisted) -> LASIK Surgery LASIK (2588ms) What does laser stand for? text/html LASEK 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (text/html LASEK, stands for, laser epithelial keratomileusis) -> text/html LASEK (2391ms) What does laser stand for? clear Lasik 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (clear Lasik, stands for, Laser-Assisted) -> clear Lasik (2310ms) What does laser stand for? AVLIS 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (AVLIS, stands for, Atomic Vapor Laser Isotope Separation) -> AVLIS (2392ms) What does laser stand for? MILES 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (MILES, stands for, Multiple Integrated Laser Engagement System) -> MILES (1975ms) What does laser stand for? LANAP? 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (LANAP?, stands for, Laser Assisted New Attachment Procedure) -> LANAP? (2621ms) What does laser stand for? EVLT 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (EVLT, stands for, Endovenous Laser Treatment) -> EVLT (2621ms) What does laser stand for? LASIK surgery 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (LASIK surgery, stands for, Laser Assisted In-Situ Keratomileusis) -> LASIK surgery (2417ms) What does laser stand for? Lasik 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (Lasik, stands for, Laser in-situ Keratomileusis) -> Lasik (2621ms) What does laser stand for? whish 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (whish, stands for, airborne laser optical link) -> whish (2631ms) What does laser stand for? SLT 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (SLT, stands for, Selective Laser Trabeculoplasty) -> SLT (2621ms) What does laser stand for? MALDI 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (MALDI, stands for, Matrix Assisted Laser Desorption) -> MALDI (2620ms) What does laser stand for? CTLM 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (CTLM, stands for, Computed Tomography Laser Mammography) -> CTLM (2250ms) What does laser stand for? a medical term 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (a medical term, stands for, Laser Assisted) -> a medical term (2587ms) What does laser stand for? LLLT 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (LLLT, stands for, Low Level Laser Therapy) -> LLLT (2248ms) What does laser stand for? the LASIK procedure 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (the LASIK procedure, stands for, Laser-Assisted) -> the LASIK procedure (2249ms) What does laser stand for? SlimLipo 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (SlimLipo, stands for, Selective Laser Induced Melting) -> SlimLipo (2588ms) What does laser stand for? The term LASIK 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (The term LASIK, stands for, Laser Assisted) -> The term LASIK (2621ms) What does laser stand for? LADAR 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (LADAR, stands for, Laser Detection) -> LADAR (1975ms) What does laser stand for? HELEX 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (HELEX, stands for, High Energy Laser Experimental) -> HELEX (2311ms) What does laser stand for? LD 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (LD, stands for, LaserDisc) -> LD (2391ms) What does laser stand for? LASEK 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (LASEK, stands for, Laser Assisted Sub-Epithelial Keratomileus) -> LASEK (2587ms) What does laser stand for? Laser eye surgery 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (Laser eye surgery, stands for, Laser) -> Laser eye surgery (2311ms) What does laser stand for? NALA 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (NALA, stands for, Non Ablative Laser Ablation) -> NALA (2311ms) What does laser stand for? an acronym 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (an acronym, stands for, Laser-assisted) -> an acronym (1975ms) What does laser stand for? the most common 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (the most common, stands for, laser) -> the most common (2311ms) What does laser stand for? The word lasik 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (The word lasik, stands for, laser) -> The word lasik (2588ms) What does laser stand for? Lasik eye surgery 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (Lasik eye surgery, stands for, a laser) -> Lasik eye surgery (2621ms) What does laser stand for? VCSEL 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (VCSEL, stands for, Vertical-Cavity Surface-Emitting Laser) -> VCSEL (2588ms) What does laser stand for? LASIK 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (LASIK, stands for, laser-assisted) -> LASIK (2631ms) What does laser stand for? The SDL 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (The SDL, stands for, Semiconductor Diode Laser) -> The SDL (2588ms) What does laser stand for? deviantART ALR 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (deviantART ALR, stands for, Automatic Laser Rifle) -> deviantART ALR (2621ms) What does laser stand for? lasik surgery ?LASIK 0.33333333334399995 What does laser stand for? -> $x: ($x, stand for, laser) -> (lasik surgery ?LASIK, stands for, Laser-Assisted) -> lasik surgery ?LASIK (2249ms) What does laser stand for? laser adjustment 0.33333333333599996 What does laser stand for? -> $x: (laser, be know for, $x) -> (green laser beam tips, are so well known for, laser adjustment) -> laser adjustment (2632ms) What does laser stand for? the sophistication 0.33333333333599996 What does laser stand for? -> $x: (laser, be know for, $x) -> (Laser treatments, are known for, the sophistication) -> the sophistication (2632ms) What does laser stand for? laser hair removal 0.33333333333599996 What does laser stand for? -> $x: (laser, be know for, $x) -> (Laser Cosmetica, is well known for, laser hair removal) -> laser hair removal (2631ms) What does laser stand for? the highest level 0.33333333333599996 What does laser stand for? -> $x: (laser, be know for, $x) -> (Leica Rugby laser levels, are known for, the highest level) -> the highest level (2632ms) What does laser stand for? laser-cutting 0.33333333333599996 What does laser stand for? -> $x: (laser, be know for, $x) -> (Laser Excel, is well known industry-wide for, laser-cutting) -> laser-cutting (2632ms) What does laser stand for? getting rid of unwanted hair 0.33333333333599996 What does laser stand for? -> $x: (laser, be know for, $x) -> (Laser Hair Removal, is known for, getting rid of unwanted hair) -> getting rid of unwanted hair (2631ms) What does laser stand for? scar sufferers 0.33333333333599996 What does laser stand for? -> $x: (laser, be know for, $x) -> (laser treatment, is a well-known solution for, scar sufferers) -> scar sufferers (2631ms) What does laser stand for? unusual behavior 0.33333333333599996 What does laser stand for? -> $x: (laser, be know for, $x) -> (lasers, are known for, unusual behavior) -> unusual behavior (2631ms) What does laser stand for? long lasting ends 0.33333333333599996 What does laser stand for? -> $x: (laser, be know for, $x) -> (The laser treatment Greater, is known for, long lasting ends) -> long lasting ends (2631ms) What does laser stand for? High-field magnets 0.22222222222599997 What does laser stand for? -> $x: ($x, stand, laser) -> (High-field magnets, now stand beside, lasers and microscopes) -> High-field magnets (2662ms) What does laser stand for? Harken 0.22222222222599997 What does laser stand for? -> $x: ($x, stand, laser) -> (Harken, have a long standing relationship with, the Laser fleet) -> Harken (2642ms) What does laser stand for? contrast 0.22222222222599997 What does laser stand for? -> $x: ($x, stand, laser) -> (contrast, just stands there with, his laser-eyes) -> contrast (2672ms) What does laser stand for? the baseline EO payload DCoMPASS 0.22222222222599997 What does laser stand for? -> $x: ($x, stand, laser) -> (the baseline EO payload DCoMPASS, Stand off, EO/IR/Laser system) -> the baseline EO payload DCoMPASS (2662ms) What does laser stand for? high-field magnets 0.22222222222599997 What does laser stand for? -> $x: ($x, stand, laser) -> (high-field magnets, stand beside, lasers and microscopes) -> high-field magnets (2642ms) What does laser stand for? Han and Luke 0.22222222222599997 What does laser stand for? -> $x: ($x, stand, laser) -> (Han and Luke, stand fast with, their laser pistols) -> Han and Luke (2672ms) What does laser stand for? threshold 0.22222222222599997 What does laser stand for? -> $x: ($x, stand, laser) -> (threshold, has been a long-standing question in, laser theory) -> threshold (2652ms) What does laser stand for? Ventana Research 0.22222222222599997 What does laser stand for? -> $x: ($x, stand, laser) -> (Ventana Research, stands out in, its laser-sharp focus) -> Ventana Research (2662ms) What does laser stand for? the ImageREt 3600 0.22222222222599997 What does laser stand for? -> $x: ($x, stand, laser) -> (the ImageREt 3600, stand out against, other laser printers) -> the ImageREt 3600 (2682ms) What does laser stand for? Sandblasting cuts 0.22222222222599997 What does laser stand for? -> $x: ($x, stand, laser) -> (Sandblasting cuts, stands out more than, laser engraving) -> Sandblasting cuts (2652ms) What does laser stand for? the Laser double-looping coaster 0.22222222222599997 What does laser stand for? -> $x: ($x, stand, laser) -> (the Laser double-looping coaster, stands, Little Laser) -> the Laser double-looping coaster (2632ms) What does laser stand for? the face of the sign 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (laser cut numbers, stand 1/2 inch off, the face of the sign) -> the face of the sign (2701ms) What does laser stand for? a good buy 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (the LaserJet CP2025dn, stands as, a good buy) -> a good buy (2702ms) What does laser stand for? magnets 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (The laser, features a free-standing base with, magnets) -> magnets (2724ms) What does laser stand for? the leading finest solution 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (Laser Hair Removal, stands out as, the leading finest solution) -> the leading finest solution (2717ms) What does laser stand for? 12 % electrical power 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (a green DPSS laser, stands at about, 12 % electrical power) -> 12 % electrical power (2724ms) What does laser stand for? the competition 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (professional line laser, stands out from, the competition) -> the competition (2702ms) What does laser stand for? pencil markups 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (the long run laser, stands up to, pencil markups) -> pencil markups (2709ms) What does laser stand for? the brightest 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (the laser dot, just might stand out as, the brightest) -> the brightest (2709ms) What does laser stand for? one more example 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (laser multifunctional printer, stands as, one more example) -> one more example (2702ms) What does laser stand for? taller 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (the HP Color LaserJet 3800dn, will stand even, taller) -> taller (2692ms) What does laser stand for? Little Laser 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (the Laser double-looping coaster, stands, Little Laser) -> Little Laser (2709ms) What does laser stand for? time 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (this green laser pointer, stand the test of, time) -> time (2709ms) What does laser stand for? success 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (laser, have been the long-standing measure of, success) -> success (2724ms) What does laser stand for? the most utilized 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (the laser printer, stands out as being, the most utilized) -> the most utilized (2724ms) What does laser stand for? the rest 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (this laser, really does stand out above, the rest) -> the rest (2709ms) What does laser stand for? waves 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (laser, standing, waves) -> waves (2709ms) What does laser stand for? stimulated emission of radiation 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (Laser, stands by, stimulated emission of radiation) -> stimulated emission of radiation (2724ms) What does laser stand for? alone sources 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (deep UV lasers, stand, alone sources) -> alone sources (2709ms) What does laser stand for? the ring 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (the Celtic laser, stand out from, the ring) -> the ring (2717ms) What does laser stand for? little Artoo 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (his long laser rifle slung, stands before, little Artoo) -> little Artoo (2692ms) What does laser stand for? shoes 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (laser cut pumps, are all stand out, shoes) -> shoes (2717ms) What does laser stand for? vibratory energy 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (lasers, stands, vibratory energy) -> vibratory energy (2709ms) What does laser stand for? a high position 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (blue laser pen, is usually standing, a high position) -> a high position (2717ms) What does laser stand for? the proof 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (?The new airborne laser scanning system, stood, the proof) -> the proof (2724ms) What does laser stand for? the forefront 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (green laser pointer, has been standing at, the forefront) -> the forefront (2717ms) What does laser stand for? a heavier model 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (the HP LaserJet 4050n, stands out as, a heavier model) -> a heavier model (2724ms) What does laser stand for? a building 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (the Blue Laser Commander, is standing next to, a building) -> a building (2724ms) What does laser stand for? corrosion 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (These pipe lasers, stand up to, corrosion) -> corrosion (2709ms) What does laser stand for? 1/2 inch 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (laser cut numbers, stand, 1/2 inch) -> 1/2 inch (2692ms) What does laser stand for? manual height adjustment 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (a high-precision laser, stand with, manual height adjustment) -> manual height adjustment (2702ms) What does laser stand for? the top jammer 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (The actual Laser Interceptor, stands out as, the top jammer) -> the top jammer (2692ms) What does laser stand for? few seconds 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (Laser PSU, can stand, few seconds) -> few seconds (2692ms) What does laser stand for? a bit 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (the lasers, stand out, a bit) -> a bit (2702ms) What does laser stand for? UV rays 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (the printed laser technology, stands up to, UV rays) -> UV rays (2709ms) What does laser stand for? the best possible solution 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (Laser treatment, stands out as, the best possible solution) -> the best possible solution (2709ms) What does laser stand for? the leading jammer 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (The actual Laser Interceptor, stands out as, the leading jammer) -> the leading jammer (2717ms) What does laser stand for? one metre high 0.11111111111599997 What does laser stand for? -> $x: (laser, stand, $x) -> (The patented in-line laser equipment, stands, one metre high) -> one metre high (2702ms) What does laser stand for? the end 0.11111111111499994 What does laser stand for? -> $x: ($x, symbolize, laser) -> (the end, has been symbolized as, LASER LIGHT POWER) -> the end (2730ms) What does laser stand for? Microwave Amplification 0.111111111111 What does laser stand for? -> $x: (maser, stand for, $x) -> (Maser, stands for, Microwave Amplification) -> Microwave Amplification (2746ms) What does laser stand for? ?means 0.111111111111 What does laser stand for? -> $x: (maser, stand for, $x) -> (maser, stood for, ?means) -> ?means (2745ms) What does laser stand for? the few times 4.999944902550624E-12 What does laser stand for? -> $x: (laser, symbolize, $x) -> (Our laser-etched logo, symbolizes, the few times) -> the few times (2754ms) What does laser stand for? unique -0.444444444442 What does laser stand for? -> $x: (maser, stand, $x) -> (Chris Maser, stands out as, unique) -> unique (2812ms) Where is John Wayne airport? an unincorporated area 0.555555555555 Where is John Wayne airport? -> $x: (john wayne, be airport in, $x) -> (John Wayne Airport, is an airport in, an unincorporated area) -> an unincorporated area (2885ms) Where is John Wayne airport? ORANGE COUNTY 0.555555555555 Where is John Wayne airport? -> $x: (john wayne, be airport in, $x) -> (john wayne airport, is an airport in the city, ORANGE COUNTY) -> ORANGE COUNTY (2886ms) Where is John Wayne airport? Santa Ana 0.111111111109 Where is John Wayne airport? -> $x: (john wayne airport, be locate in, $x) -> (John Wayne Airport, is located in, Santa Ana) -> Santa Ana (2886ms) Where is John Wayne airport? Irvine 0.111111111109 Where is John Wayne airport? -> $x: (john wayne airport, be locate in, $x) -> (John Wayne Airport, is located in, Irvine) -> Irvine (2885ms) Where is John Wayne airport? Orange County 0.111111111109 Where is John Wayne airport? -> $x: (john wayne airport, be locate in, $x) -> (John Wayne Airport, is located in, Orange County) -> Orange County (2886ms) Where is John Wayne airport? a classroom -0.0 Where is John Wayne airport? -> $x: (john wayne airport, have use of, $x) -> (the John Wayne Airport, has donated the use of, a classroom) -> a classroom (3124ms) Where is John Wayne airport? United States of America -0.0 Where is John Wayne airport? -> $x: ($x, contain, john wayne airport) -> (United States of America, Contains, John Wayne Airport) -> United States of America (2980ms) Where is John Wayne airport? children -0.0 Where is John Wayne airport? -> $x: (john wayne airport, do, $x) -> (John Wayne Airport, did have a lot of, children) -> children (2905ms) Where is John Wayne airport? the communities -0.0 Where is John Wayne airport? -> $x: ($x, surround, john wayne airport) -> (the communities, surrounding, John Wayne Airport) -> the communities (3076ms) Where is John Wayne airport? a 5 percent bump -0.0 Where is John Wayne airport? -> $x: ($x, found, john wayne airport) -> (a 5 percent bump, was found near, John Wayne Airport) -> a 5 percent bump (3123ms) Where is John Wayne airport? UC Irvine shuttle service -0.0 Where is John Wayne airport? -> $x: ($x, go, john wayne airport) -> (UC Irvine shuttle service, goes only to, John Wayne Airport) -> UC Irvine shuttle service (2886ms) Where is John Wayne airport? Orange -0.0 Where is John Wayne airport? -> $x: ($x, contain, john wayne airport) -> (Orange, Contains, John Wayne Airport) -> Orange (2981ms) Where is John Wayne airport? early spring -0.111111111112 Where is John Wayne airport? -> $x: (john wayne airport, be in in, $x) -> (John Wayne Airport, were performed in, early spring) -> early spring (3687ms) Where is John Wayne airport? LA -0.111111111112 Where is John Wayne airport? -> $x: (john wayne airport, be in in, $x) -> (John Wayne Airport ?, is the closest in, LA) -> LA (3200ms) Where is John Wayne airport? distance -0.111111111112 Where is John Wayne airport? -> $x: (john wayne airport, be in in, $x) -> (the John Wayne Airport, is in walking, distance) -> distance (3200ms) Where is John Wayne airport? engine problems -0.222222222222 Where is John Wayne airport? -> $x: (john wayne airport, be for, $x) -> (John Wayne Airport, was being examined for, engine problems) -> engine problems (3688ms) Where is John Wayne airport? a fee -0.222222222222 Where is John Wayne airport? -> $x: (john wayne airport, be for, $x) -> (John Wayne Airports, are available for, a fee) -> a fee (3687ms) Where is John Wayne airport? groups -0.222222222222 Where is John Wayne airport? -> $x: (john wayne airport, be for, $x) -> (Our John Wayne Airport limousines, are perfect for, groups) -> groups (3687ms) Where is John Wayne airport? Rental cars -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Rental cars, are available near, John Wayne Airport) -> Rental cars (3728ms) Where is John Wayne airport? direct access -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (direct access, is only 20 minutes from, John Wayne Airport) -> direct access (3712ms) Where is John Wayne airport? the plane -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (the plane, was from, John Wayne Airport) -> the plane (3728ms) Where is John Wayne airport? Orange County Airport -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Orange County Airport, was renamed, John Wayne Airport) -> Orange County Airport (3728ms) Where is John Wayne airport? Anaheim -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Anaheim, is equidistant from, both John Wayne Airport) -> Anaheim (3725ms) Where is John Wayne airport? the immediate answer -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (the immediate answer, is, John Wayne Airport) -> the immediate answer (3726ms) Where is John Wayne airport? The event -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (The event, will be held at, John Wayne Orange County Airport) -> The event (3725ms) Where is John Wayne airport? Allied Rent -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Allied Rent, is, just 5 minuets away from John Wayne airport) -> Allied Rent (3712ms) Where is John Wayne airport? a third Terminal C -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (a third Terminal C, is opening at, John Wayne Airport) -> a third Terminal C (3725ms) Where is John Wayne airport? UCI. UCI -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (UCI. UCI, is located close to, John Wayne Airport) -> UCI. UCI (3723ms) Where is John Wayne airport? the city -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (the city, is closely located to, John Wayne airport offering) -> the city (3728ms) Where is John Wayne airport? Options -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Options, be the first to comment, John Wayne Airport Rate) -> Options (3725ms) Where is John Wayne airport? Huntington Beach -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Huntington Beach, is close to, John Wayne Airport) -> Huntington Beach (3712ms) Where is John Wayne airport? The nearest airport -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (The nearest airport, is, John Wayne Airport) -> The nearest airport (3723ms) Where is John Wayne airport? Air- Orange County?s only major airport -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Air- Orange County?s only major airport, is, John Wayne Airport) -> Air- Orange County?s only major airport (3712ms) Where is John Wayne airport? The hotel -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (The hotel, is 20 minutes from, John Wayne Airport) -> The hotel (3730ms) Where is John Wayne airport? air cargo -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (air cargo, were moved through, John Wayne Airport) -> air cargo (3730ms) Where is John Wayne airport? The Hotel -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (The Hotel, Is 20 Minutes From, John Wayne Airport) -> The Hotel (3723ms) Where is John Wayne airport? Fuddy -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Fuddy, will be based out of, John Wayne Airport) -> Fuddy (3728ms) Where is John Wayne airport? Office -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Office, is located near, John Wayne Airport) -> Office (3723ms) Where is John Wayne airport? The sleeping-hours ban -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (The sleeping-hours ban, is among, John Wayne Airport) -> The sleeping-hours ban (3712ms) Where is John Wayne airport? The closest airport -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (The closest airport, is, John Wayne Airport) -> The closest airport (3728ms) Where is John Wayne airport? the 405 Freeway -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (the 405 Freeway, is, John Wayne Airport) -> the 405 Freeway (3687ms) Where is John Wayne airport? rapper Snoop Dogg -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (rapper Snoop Dogg, was again arrested at, John Wayne Airport) -> rapper Snoop Dogg (3723ms) Where is John Wayne airport? a Car -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (a Car, is just 10 minutes from, the John Wayne Airport) -> a Car (3725ms) Where is John Wayne airport? A Car -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (A Car, is just 10 minutes from, the John Wayne Airport) -> A Car (3728ms) Where is John Wayne airport? The project -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (The project, is located only minutes from, John Wayne Airport) -> The project (3687ms) Where is John Wayne airport? Improvements -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Improvements, are underway at, John Wayne Airport) -> Improvements (3730ms) Where is John Wayne airport? JetSuite?s move -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (JetSuite?s move, is good news for, John Wayne Airport) -> JetSuite?s move (3728ms) Where is John Wayne airport? The Santa Ana hotel -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (The Santa Ana hotel, is near, John Wayne Airport) -> The Santa Ana hotel (3712ms) Where is John Wayne airport? The news -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (The news, was even better at, John Wayne Orange County Airport) -> The news (3730ms) Where is John Wayne airport? Snoop Dogg -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Snoop Dogg, was detained at, John Wayne Airport) -> Snoop Dogg (3725ms) Where is John Wayne airport? the east -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (the east, is, John Wayne Airport and Irvine) -> the east (3728ms) Where is John Wayne airport? An unused runway -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (An unused runway, is now, John Wayne Airport) -> An unused runway (3730ms) Where is John Wayne airport? a Santa Ana man -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (a Santa Ana man, was near, the John Wayne Airport) -> a Santa Ana man (3723ms) Where is John Wayne airport? the hotel -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (the hotel, is 16 miles from, John Wayne Airport-Orange County) -> the hotel (3730ms) Where is John Wayne airport? Lake Forest -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Lake Forest, is also accessible via, the John Wayne Airport) -> Lake Forest (3723ms) Where is John Wayne airport? The Econolodge North -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (The Econolodge North, is located near, the John Wayne Airport) -> The Econolodge North (3728ms) Where is John Wayne airport? The closest commercial airports -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (The closest commercial airports, are, John Wayne Airport) -> The closest commercial airports (3723ms) Where is John Wayne airport? California -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (California, is just minutes away from, John Wayne Airport) -> California (3728ms) Where is John Wayne airport? hotel -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (hotel, is 2 miles from, the orange county-john wayne airport) -> hotel (3725ms) Where is John Wayne airport? the Buddhist lecture -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (the Buddhist lecture, was near, John Wayne Airport) -> the Buddhist lecture (3728ms) Where is John Wayne airport? 1200 ? Time Zone -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (1200 ? Time Zone, is -8 Directions From, John Wayne Intl Airport) -> 1200 ? Time Zone (3723ms) Where is John Wayne airport? Disneyland -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Disneyland, are, John Wayne Airport) -> Disneyland (3723ms) Where is John Wayne airport? Inn -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Inn, is located 16 miles from, Orange County/John Wayne Airport) -> Inn (3687ms) Where is John Wayne airport? the new location -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (the new location, is close to, John Wayne Airport) -> the new location (3728ms) Where is John Wayne airport? the venue -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (the venue, is, John Wayne Airport) -> the venue (3723ms) Where is John Wayne airport? The airplanes -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (The airplanes, were approaching, John Wayne Airport) -> The airplanes (3723ms) Where is John Wayne airport? visiting Disneyland -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (visiting Disneyland, is, John Wayne Airport) -> visiting Disneyland (3730ms) Where is John Wayne airport? ? Time Zone -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (? Time Zone, is GMT-8 Directions From, John Wayne Airport-SNA) -> ? Time Zone (3712ms) Where is John Wayne airport? The next closest airport -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (The next closest airport, is, John Wayne Airport) -> The next closest airport (3725ms) Where is John Wayne airport? SNA Auto Rental -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (SNA Auto Rental, is located close to, John Wayne Airport) -> SNA Auto Rental (3725ms) Where is John Wayne airport? a brand new terminal -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (a brand new terminal, is opening up at, John Wayne Airport) -> a brand new terminal (3725ms) Where is John Wayne airport? an aircraft -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (an aircraft, is just about to land at, John Wayne airport) -> an aircraft (3723ms) Where is John Wayne airport? The Econolodge -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (The Econolodge, Is Located Near, The John Wayne Airport) -> The Econolodge (3723ms) Where is John Wayne airport? Campus Dr. -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Campus Dr., is close to, the John Wayne Airport) -> Campus Dr. (3725ms) Where is John Wayne airport? Oasis -0.333333333333 Where is John Wayne airport? -> $x: ($x, be be, john wayne airport) -> (Oasis, is sure to be a hit with, John Wayne Airport travelers) -> Oasis (3712ms) When was the U.S. capitol built? the capital -0.0 When was the U.S. capitol built? -> $x: (u.s. capitol, be locate in, $x) -> (The U.S. Capitol, is located in, the capital) -> the capital (1709ms) When was the U.S. capitol built? central Washington -0.0 When was the U.S. capitol built? -> $x: (u.s. capitol, be locate in, $x) -> (Marriott U.S. Capitol, is located in, central Washington) -> central Washington (1709ms) When was the U.S. capitol built? 1793 -0.0 When was the U.S. capitol built? -> $x: (u.s. capitol, start in, $x) -> (The U.S Capitol Building, started construction in, 1793) -> 1793 (1640ms) When was the U.S. capitol built? black slaves -0.111111111111 When was the U.S. capitol built? -> $x: (u.s. capitol, be build by, $x) -> (the U.S. Capitol, was built by, black slaves) -> black slaves (1709ms) When was the U.S. capitol built? a full day -1.444444444438 When was the U.S. capitol built? -> $x: (u.s. capitol, be part of, $x) -> (the U.S. Capitol Visitor Center, is part of, a full day) -> a full day (1917ms) When was the U.S. capitol built? Benjamin Latrobe -1.4444444444400002 When was the U.S. capitol built? -> $x: ($x, design, u.s. capitol) -> (Benjamin Latrobe, also helped design, the U.S. Capitol) -> Benjamin Latrobe (1956ms) When was the U.S. capitol built? the same man -1.4444444444400002 When was the U.S. capitol built? -> $x: ($x, design, u.s. capitol) -> (the same man, designed, the U.S. Capitol) -> the same man (2006ms) When was the U.S. capitol built? Benjamin Henry Latrobe -1.4444444444400002 When was the U.S. capitol built? -> $x: (u.s. capitol, design, $x) -> (the U.S. Capitol, was designed by, Benjamin Henry Latrobe) -> Benjamin Henry Latrobe (1917ms) When was the U.S. capitol built? an amateur architect -1.4444444444400002 When was the U.S. capitol built? -> $x: ($x, design, u.s. capitol) -> (an amateur architect, designed, the U.S. Capitol) -> an amateur architect (1918ms) When was the U.S. capitol built? slave labor -1.5555555555490002 When was the U.S. capitol built? -> $x: (u.s. capitol, be build, $x) -> (the U.S. Capitol, were built with, slave labor) -> slave labor (1918ms) When was the U.S. capitol built? a beehive -1.66666666666 When was the U.S. capitol built? -> $x: (u.s. capitol, look like, $x) -> (the U.S. Capitol, looks like, a beehive) -> a beehive (2007ms) What was Bing Crosby's nickname? the Live Search API -0.8888888888920001 What was Bing Crosby's nickname? -> $x: ($x, be know as, bing) -> (the Live Search API, is now known as, the Bing API) -> the Live Search API (711ms) What is the name of the airport in Amsterdam? Europe 0.111111111112 What is the name of the airport in Amsterdam? -> $x: (amsterdam, be largest airport in, $x) -> (?Amsterdam Schiphol, is the fifth largest airport in, Europe) -> Europe (950ms) What is the name of the airport in Amsterdam? the Netherlands 0.111111111112 What is the name of the airport in Amsterdam? -> $x: (amsterdam, be largest airport in, $x) -> (Amsterdam, is the largest airport in, the Netherlands) -> the Netherlands (950ms) Who invented basketball? a pursuit 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (Basketball, was invented in, a pursuit) -> a pursuit (2678ms) Who invented basketball? the USA 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (Basketball, was invented in, the USA) -> the USA (6860ms) Who invented basketball? Canada 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (basketball, was invented in, Canada) -> Canada (6786ms) Who invented basketball? December 1891 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (Basketball, was invented in, December 1891) -> December 1891 (6660ms) Who invented basketball? 1946 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (Wheelchair basketball, was invented in, 1946) -> 1946 (6660ms) Who invented basketball? the 18th century 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (basketball, had n?t been invented in, the 18th century) -> the 18th century (6785ms) Who invented basketball? the United States 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (Basketball, was invented in, the United States) -> the United States (6193ms) Who invented basketball? a pursuit for an indoor game 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (Basketball, was invented in, a pursuit for an indoor game) -> a pursuit for an indoor game (6860ms) Who invented basketball? Almonte 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (basketball Basketball, was actually invented in, Almonte) -> Almonte (6193ms) Who invented basketball? 1892 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (Basketball, was invented in, 1892) -> 1892 (6785ms) Who invented basketball? james 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (basketball, was invented in naismith by, james) -> james (2678ms) Who invented basketball? North America 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (Basketball, was invented in, North America) -> North America (6785ms) Who invented basketball? springfield 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (Basketball, is invented in, springfield) -> springfield (6193ms) Who invented basketball? 1861 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (The basketball, was invented in, 1861) -> 1861 (6193ms) Who invented basketball? Massachusetts 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (Basketball, was invented in, Massachusetts) -> Massachusetts (6785ms) Who invented basketball? America 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (O.K. basketball, was invented in, America) -> America (6660ms) Who invented basketball? 1891 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (Basketball By 1936 Basketball, was invented in, 1891) -> 1891 (6860ms) Who invented basketball? a YMCA gymnasium 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (Content Filter Basketball, was invented in, a YMCA gymnasium) -> a YMCA gymnasium (4694ms) Who invented basketball? December 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (Basketball, was invented in, December) -> December (2678ms) Who invented basketball? the 1800?s 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (basketball, was invented in, the 1800?s) -> the 1800?s (6660ms) Who invented basketball? Springfield 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (basketball game, was invented in, Springfield) -> Springfield (6660ms) Who invented basketball? a religious context 2.1111111111080003 Who invented basketball? -> $x: (basketball, be invent in, $x) -> (basketball, had been invented in, a religious context) -> a religious context (6660ms) Who invented basketball? Oxy 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Oxy, develop into, competitive basketball players) -> Oxy (7677ms) Who invented basketball? ImaginEngine 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (ImaginEngine, Games Developed, Nicktoons Basketball) -> ImaginEngine (7578ms) Who invented basketball? Billy Packer 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Billy Packer, developed his love of, college basketball) -> Billy Packer (7753ms) Who invented basketball? Nova Scotia Basketball 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Nova Scotia Basketball, develops the game of, basketball) -> Nova Scotia Basketball (6860ms) Who invented basketball? the players 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (the players, develop, high basketball IQ?s) -> the players (7753ms) Who invented basketball? EC-NET Co.,Ltd. 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (EC-NET Co.,Ltd., Games Developed, Action Basketball) -> EC-NET Co.,Ltd. (7399ms) Who invented basketball? High Voltage Software 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (High Voltage Software, Games Developed, World League Basketball) -> High Voltage Software (7736ms) Who invented basketball? Traction mats 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Traction mats, developed for, Pro Basketball) -> Traction mats (7735ms) Who invented basketball? coaching program 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (coaching program, has been developed by, Canada Basketball) -> coaching program (7718ms) Who invented basketball? young men 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (young men, develop as, basketball players) -> young men (7718ms) Who invented basketball? HAL Laboratory 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (HAL Laboratory, Game Versions Developed, NCAA Basketball) -> HAL Laboratory (7735ms) Who invented basketball? the respected coach 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (the respected coach, had developed, the basketball program) -> the respected coach (7718ms) Who invented basketball? the Simmenthal Club 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (the Simmenthal Club, is credited with developing, basketball) -> the Simmenthal Club (6860ms) Who invented basketball? The Newark , Ohio native 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (The Newark , Ohio native, developed a talent for, basketball) -> The Newark , Ohio native (7578ms) Who invented basketball? Data Design Interactive 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Data Design Interactive, Games Developed, Kidz Sports Basketball) -> Data Design Interactive (6980ms) Who invented basketball? Policies and procedures 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Policies and procedures, were developed so, basketball fans) -> Policies and procedures (7677ms) Who invented basketball? study 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (study, need to be highly developed in, basketball) -> study (7735ms) Who invented basketball? Tony Hinkle 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Tony Hinkle, developed, the modern day orange basketball) -> Tony Hinkle (7399ms) Who invented basketball? Smartphones 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Smartphones, developed, College Basketball Bracket Challenge) -> Smartphones (7578ms) Who invented basketball? kids 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (kids, develop, fundamental basketball skills) -> kids (7736ms) Who invented basketball? The District 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (The District, develop, a new playfield and basketball courts) -> The District (7174ms) Who invented basketball? Game Time Hoops participants 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Game Time Hoops participants, develop, their basketball skills) -> Game Time Hoops participants (7677ms) Who invented basketball? young players 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (young players, develop, their basketball skills) -> young players (7718ms) Who invented basketball? Epyx 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Epyx, Games Developed, Street Sports Basketball) -> Epyx (7753ms) Who invented basketball? 18 years 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (18 years, develop, basketball skills) -> 18 years (7677ms) Who invented basketball? James Naismith 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (James Naismith, developed, basketball) -> James Naismith (7718ms) Who invented basketball? Jeremy 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Jeremy, developed into, a basketball star) -> Jeremy (7736ms) Who invented basketball? Europe 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Europe, is developing, great basketball) -> Europe (7735ms) Who invented basketball? NBA Canada 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (NBA Canada, develop, amateur basketball) -> NBA Canada (7174ms) Who invented basketball? the chance 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (the chance, develop, a successful basketball program) -> the chance (7718ms) Who invented basketball? Christian 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Christian, developed, the Christian Laettner Basketball Academy) -> Christian (6979ms) Who invented basketball? turn 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (turn, developed, ideal Basketball new soccer cleats) -> turn (7735ms) Who invented basketball? Konami 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Konami, Games Developed, Disney Sports Basketball) -> Konami (7578ms) Who invented basketball? Naismith 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Naismith, developed, basketball) -> Naismith (6980ms) Who invented basketball? Skyworks Interactive, Inc. 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Skyworks Interactive, Inc., Games Developed, Arcade Hoops Basketball) -> Skyworks Interactive, Inc. (7718ms) Who invented basketball? Humongous Entertainment 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Humongous Entertainment, Games Developed, Backyard Basketball 2007) -> Humongous Entertainment (7718ms) Who invented basketball? basketball 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (basketball, develop through, his summer basketball) -> basketball (7677ms) Who invented basketball? Electronic Arts 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Electronic Arts, Games Developed, Team USA Basketball) -> Electronic Arts (7174ms) Who invented basketball? Content Filter Netball 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Content Filter Netball, developed out of, basketball) -> Content Filter Netball (6980ms) Who invented basketball? Air Max2 Uptempo system 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Air Max2 Uptempo system, was developed for, basketball models) -> Air Max2 Uptempo system (7735ms) Who invented basketball? NR 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (NR, Develop, rock solid basketball fundamentals) -> NR (7753ms) Who invented basketball? Participants 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Participants, develop, their basketball skills) -> Participants (6980ms) Who invented basketball? the Rec Program 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (the Rec Program, develops, the Intramural Basketball League) -> the Rec Program (6979ms) Who invented basketball? equipment 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (equipment, develop, community basketball courts) -> equipment (7718ms) Who invented basketball? shoes 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (shoes, was developed for, basketball) -> shoes (7174ms) Who invented basketball? John 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (John, quickly developed a fondness for, wheelchair basketball) -> John (7677ms) Who invented basketball? various positions 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (various positions, have been developed in, basketball) -> various positions (7753ms) Who invented basketball? ?Clint 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (?Clint, developed a love for, basketball) -> ?Clint (7736ms) Who invented basketball? Basketball Clinics 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Basketball Clinics, develops, basketball skills) -> Basketball Clinics (7718ms) Who invented basketball? young athletes 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (young athletes, develop, basketball skills) -> young athletes (6980ms) Who invented basketball? the partnership 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (the partnership, develop, the basketball strategy) -> the partnership (7718ms) Who invented basketball? young people 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (young people, develop, leadership , social and basketball skills) -> young people (7718ms) Who invented basketball? a sudden 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (a sudden, develop, a higher basketball IQ or coaching knowledge) -> a sudden (7735ms) Who invented basketball? Nets owner Mikhail Prokhorov 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Nets owner Mikhail Prokhorov, wants to help develop, basketball) -> Nets owner Mikhail Prokhorov (7399ms) Who invented basketball? Nike 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Nike, has developed, Nike basketball shoes) -> Nike (7736ms) Who invented basketball? Aicom 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Aicom, Games Developed, Ultimate Basketball) -> Aicom (7718ms) Who invented basketball? Dan 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Dan, had developed a full-blown obsession with, basketball) -> Dan (7718ms) Who invented basketball? Taito Corporation 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Taito Corporation, Game Versions Developed, Ultimate Basketball) -> Taito Corporation (7735ms) Who invented basketball? Atari 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Atari, Game Versions Developed, Basketball) -> Atari (7677ms) Who invented basketball? Backbone Entertainment 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Backbone Entertainment, Games Developed, Nicktoons Basketball) -> Backbone Entertainment (6980ms) Who invented basketball? Richmond 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Richmond, developed, a basketball program) -> Richmond (6860ms) Who invented basketball? Freeverse 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Freeverse, Games Developed, Flick NBA Basketball) -> Freeverse (7735ms) Who invented basketball? Kids 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Kids, need to develop, basketball skills) -> Kids (7578ms) Who invented basketball? shoe brands 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (shoe brands, were busy focusing on developing, basketball shoes) -> shoe brands (7718ms) Who invented basketball? Tecmo 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Tecmo, Games Developed, Tecmo NBA Basketball) -> Tecmo (7677ms) Who invented basketball? Hamza 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Hamza, developed interest in, basketball) -> Hamza (7400ms) Who invented basketball? Sculptured Software 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Sculptured Software, Games Developed, NCAA Basketball) -> Sculptured Software (7578ms) Who invented basketball? Children 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Children, will develop, basketball skills) -> Children (7718ms) Who invented basketball? S6 pupils 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (S6 pupils, has been developing their skills in, basketball) -> S6 pupils (6860ms) Who invented basketball? Hudson Soft 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (Hudson Soft, Games Developed, Bill Laimbeer's Combat Basketball) -> Hudson Soft (7735ms) Who invented basketball? The mission 1.444444444444 Who invented basketball? -> $x: ($x, develop, basketball) -> (The mission, is to develop, basketball skills) -> The mission (7677ms) Who invented basketball? alumni 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (alumni, can be found, playing basketball) -> alumni (7770ms) Who invented basketball? the Panthers 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (the Panthers, are finding rare success in, basketball) -> the Panthers (7786ms) Who invented basketball? SFGS 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (SFGS, find most rewarding about, coaching basketball) -> SFGS (7786ms) Who invented basketball? close 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (close, find, the Pistons-Pacers basketball brawl) -> close (7802ms) Who invented basketball? scott 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (scott, Find, the Best Basketball Camps) -> scott (7802ms) Who invented basketball? play-for-pay 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (play-for-pay, found its way into, basketball) -> play-for-pay (7835ms) Who invented basketball? Danny Ainge 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Danny Ainge, continues to find, basketball talent) -> Danny Ainge (7802ms) Who invented basketball? the students 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (the students, found, the new NCAA Basketball Brackets) -> the students (7786ms) Who invented basketball? The amazon online marketplace 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (The amazon online marketplace, found, the actual basketball) -> The amazon online marketplace (7770ms) Who invented basketball? Sports enthusiasts 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Sports enthusiasts, will find, professional basketball) -> Sports enthusiasts (7819ms) Who invented basketball? a player 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (a player, find, the best basketball camp) -> a player (7770ms) Who invented basketball? idea 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (idea, found on, Basketball mmorpgs) -> idea (7770ms) Who invented basketball? Marbury 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Marbury, finds, basketball redemption) -> Marbury (7770ms) Who invented basketball? family members 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (family members, found his passion in, basketball) -> family members (7770ms) Who invented basketball? Basketball Fundraisers Can't 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Basketball Fundraisers Can't, find, the Basketball Shorts) -> Basketball Fundraisers Can't (7770ms) Who invented basketball? 11 Ways 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (11 Ways, to find, your Basketball) -> 11 Ways (7786ms) Who invented basketball? Day 23 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Day 23, Find, six baseball , football or basketball scores) -> Day 23 (7786ms) Who invented basketball? Tosh APPS 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Tosh APPS, Find, pick-up basketball games) -> Tosh APPS (7786ms) Who invented basketball? Rose 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Rose, can be found, playing basketball) -> Rose (7770ms) Who invented basketball? Disease Control 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Disease Control, also found, basketball) -> Disease Control (7786ms) Who invented basketball? Bo 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Bo, found, a basketball court) -> Bo (7786ms) Who invented basketball? the eight oblong panels 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (the eight oblong panels, found on, traditional basketballs) -> the eight oblong panels (7802ms) Who invented basketball? the shorter end 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (the shorter end, did n?t find much substance in, Basketball) -> the shorter end (7802ms) Who invented basketball? so many talents 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (so many talents, found in, basketball game) -> so many talents (7835ms) Who invented basketball? Manning 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Manning, found, Division I basketball role models) -> Manning (7818ms) Who invented basketball? the best example 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (the best example, is found in, ?Basketball ?) -> the best example (7802ms) Who invented basketball? NCAA Games 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (NCAA Games, Find, college basketball game tickets) -> NCAA Games (7819ms) Who invented basketball? Kobe Dream Season 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Kobe Dream Season, find, an Tony Parker Shoes basketball shoe) -> Kobe Dream Season (7786ms) Who invented basketball? Basketball directory 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Basketball directory, to find, basketball links) -> Basketball directory (7802ms) Who invented basketball? bumpy leather 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (bumpy leather, found on, a basketball) -> bumpy leather (7770ms) Who invented basketball? A FREE 3 RING BINDER 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (A FREE 3 RING BINDER, Find, baseball basketball cards) -> A FREE 3 RING BINDER (7818ms) Who invented basketball? the 28th , everyone 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (the 28th , everyone, found, the basketball-only arena) -> the 28th , everyone (7802ms) Who invented basketball? users 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (users, find, pick-up basketball games) -> users (7786ms) Who invented basketball? Said Rageah 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Said Rageah, can sometimes be found, playing basketball) -> Said Rageah (7753ms) Who invented basketball? the eight panels 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (the eight panels, found on, traditional basketballs) -> the eight panels (7786ms) Who invented basketball? 3 inches 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (3 inches, found, basketball) -> 3 inches (7786ms) Who invented basketball? Tribunal 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Tribunal, finds, Basketball player) -> Tribunal (7753ms) Who invented basketball? N?diaye 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (N?diaye, did n?t find, basketball) -> N?diaye (7786ms) Who invented basketball? Can't 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Can't, find, the basketball referee uniforms) -> Can't (7770ms) Who invented basketball? different neighbourhoods 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (different neighbourhoods, find, a vacant basketball court) -> different neighbourhoods (7818ms) Who invented basketball? Greg 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Greg, can be found, playing basketball) -> Greg (7818ms) Who invented basketball? tennis partners 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (tennis partners, find, a regular pickup basketball game) -> tennis partners (7753ms) Who invented basketball? Milford 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Milford, found, their basketballs) -> Milford (7802ms) Who invented basketball? No 2011-2012 events 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (No 2011-2012 events, were found for, Basketball) -> No 2011-2012 events (7818ms) Who invented basketball? videos 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (videos, find, basketball equipment) -> videos (7770ms) Who invented basketball? businessmen 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (businessmen, found the new game of, basketball) -> businessmen (7818ms) Who invented basketball? can i 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (can i, find, vintage NBA basketball jersey) -> can i (7770ms) Who invented basketball? Grade 5 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Grade 5, can find information about, Upward Basketball) -> Grade 5 (7753ms) Who invented basketball? football 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (football, find the open man in, basketball) -> football (7786ms) Who invented basketball? Davis 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Davis, found solace in, basketball) -> Davis (7786ms) Who invented basketball? No results 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (No results, were found for, Basketball Shop) -> No results (7802ms) Who invented basketball? the offseason 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (the offseason, find, free basketball predictions) -> the offseason (7770ms) Who invented basketball? Brown 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Brown, found solace in, basketball) -> Brown (7770ms) Who invented basketball? Araragi 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Araragi, finds, Kanbaru?s basketball uniform) -> Araragi (7818ms) Who invented basketball? Mike 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Mike, found, a basketball-sized rock) -> Mike (7802ms) Who invented basketball? USC 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (USC, find, a basketball version) -> USC (7802ms) Who invented basketball? Garcia 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Garcia, found his love for, basketball) -> Garcia (7802ms) Who invented basketball? Basketball coaches 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Basketball coaches, can find, basketball equipment) -> Basketball coaches (7818ms) Who invented basketball? You?ll 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (You?ll, find a variety of, basketball sneakers) -> You?ll (7753ms) Who invented basketball? Sam Young Official Website 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Sam Young Official Website, Find, Sam Young basketball speaker) -> Sam Young Official Website (7835ms) Who invented basketball? APPS 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (APPS, Find, pick-up basketball games) -> APPS (7835ms) Who invented basketball? professional hoops 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (professional hoops, are found throughout, Basketball Forum) -> professional hoops (7819ms) Who invented basketball? Kenny 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Kenny, can be found, playing basketball) -> Kenny (7753ms) Who invented basketball? Search ebay 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Search ebay, directly to find, used Basketball) -> Search ebay (7818ms) Who invented basketball? students 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (students, find, basketball scholarships) -> students (7753ms) Who invented basketball? NFL Gear 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (NFL Gear, Find, youth and teen college basketball shorts) -> NFL Gear (7802ms) Who invented basketball? Champions 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Champions, finds, Canadian-style basketball) -> Champions (7835ms) Who invented basketball? writing 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (writing, found, a minute rotating metal basketball) -> writing (7835ms) Who invented basketball? Sports fans 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Sports fans, will find tickets to, National Basketball) -> Sports fans (7818ms) Who invented basketball? Lackner 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Lackner, found, two other former Harvard basketball players) -> Lackner (7835ms) Who invented basketball? Jeff 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Jeff, finds, a basketball backboard) -> Jeff (7818ms) Who invented basketball? a friend 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (a friend, find, this the best basketball song) -> a friend (7802ms) Who invented basketball? friends 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (friends, find common ground through, basketball) -> friends (7818ms) Who invented basketball? Narron 1.444444444442 Who invented basketball? -> $x: ($x, found, basketball) -> (Narron, has found his calling coaching, girls ' basketball) -> Narron (7786ms) Who invented basketball? innovators 1.333333333332 Who invented basketball? -> $x: ($x, have invent, basketball) -> (innovators, have invented the game of, basketball and volleyball) -> innovators (7835ms) Who invented basketball? Biddy Ball 1.333333333332 Who invented basketball? -> $x: ($x, exactly be, basketball) -> (Biddy Ball, is exactly like, basketball) -> Biddy Ball (7835ms) Who invented basketball? the rule 1.333333333332 Who invented basketball? -> $x: ($x, exactly be, basketball) -> (the rule, can?t be exactly the same as, basketball) -> the rule (7835ms) Who invented basketball? Oklahoma 1.333333333332 Who invented basketball? -> $x: ($x, exactly be, basketball) -> (Oklahoma, is n?t exactly playing, its best basketball) -> Oklahoma (7835ms) Who invented basketball? BFF Brackets 1.333333333332 Who invented basketball? -> $x: ($x, exactly be, basketball) -> (BFF Brackets, is exactly like, the college basketball tourney) -> BFF Brackets (7835ms) Who invented basketball? Colorado 1.333333333331 Who invented basketball? -> $x: (basketball, be make in, $x) -> (our Basketball Bags, are made in, Colorado) -> Colorado (7851ms) Who invented basketball? the off-season 1.333333333331 Who invented basketball? -> $x: (basketball, be make in, $x) -> (the next level Basketball players, are made in, the off-season) -> the off-season (7851ms) Who invented basketball? the Bahamas 1.333333333331 Who invented basketball? -> $x: (basketball, be make in, $x) -> (PHIL SMITH BASKETBALL CLASSIC History, was made in, the Bahamas) -> the Bahamas (7851ms) Who invented basketball? the winter 1.333333333331 Who invented basketball? -> $x: (basketball, be make in, $x) -> (basketball teams, are made in, the winter) -> the winter (7851ms) Who invented basketball? the summer 1.333333333331 Who invented basketball? -> $x: (basketball, be make in, $x) -> (A basketball player, is made in, the summer) -> the summer (7851ms) Who invented basketball? excellence 1.222222222221 Who invented basketball? -> $x: (basketball, have history of, $x) -> ('s basketball programs, have a storied history of, excellence) -> excellence (8004ms) Who invented basketball? Apple 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Apple, has now introduced, ESPN iScore Basketball Scorekeeper) -> Apple (8026ms) Who invented basketball? Hanno Mottola 1.222222222221 Who invented basketball? -> $x: ($x, invent of, basketball) -> (Hanno Mottola, invent game of, basketball) -> Hanno Mottola (7942ms) Who invented basketball? James naismith 1.222222222221 Who invented basketball? -> $x: ($x, invent of, basketball) -> (James naismith, invented the game of, basketball) -> James naismith (8015ms) Who invented basketball? Canadian drillmaster 1.222222222221 Who invented basketball? -> $x: (basketball, be invent by, $x) -> (Basketball, was originally invented by, Canadian drillmaster) -> Canadian drillmaster (7851ms) Who invented basketball? Canadian Dr. James Naismith 1.222222222221 Who invented basketball? -> $x: (basketball, be invent by, $x) -> (Basketball, was invented by, Canadian Dr. James Naismith) -> Canadian Dr. James Naismith (7897ms) Who invented basketball? Huffman 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Huffman, introduced, the basketball) -> Huffman (7968ms) Who invented basketball? a rugby coach 1.222222222221 Who invented basketball? -> $x: (basketball, be invent by, $x) -> (Basketball, was invented by, a rugby coach) -> a rugby coach (7981ms) Who invented basketball? three-point shooting 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (three-point shooting, was introduced to, college basketball) -> three-point shooting (7992ms) Who invented basketball? Boys Basketball Students 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Boys Basketball Students, will be introduced to, basketball) -> Boys Basketball Students (8015ms) Who invented basketball? MacKinnon 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (MacKinnon, was quickly introduced to, basketball) -> MacKinnon (8015ms) Who invented basketball? Johnson 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Johnson, introduced a fast-paced style of, basketball) -> Johnson (8015ms) Who invented basketball? a canadian 1.222222222221 Who invented basketball? -> $x: (basketball, be invent by, $x) -> (Basketball, was invented by, a canadian) -> a canadian (7992ms) Who invented basketball? Nike Tn Requin Pas Cher 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Nike Tn Requin Pas Cher, was introduced as, a basketball shoes) -> Nike Tn Requin Pas Cher (8026ms) Who invented basketball? Quick Draw 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Quick Draw, will be introduced to, basketball skills) -> Quick Draw (7913ms) Who invented basketball? an individual 1.222222222221 Who invented basketball? -> $x: (basketball, be invent by, $x) -> (only basketball, was invented by, an individual) -> an individual (7981ms) Who invented basketball? the Nike Dunk 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (the Nike Dunk, was introduced as, a technical basketball sneaker) -> the Nike Dunk (7882ms) Who invented basketball? Phog Allen 1.222222222221 Who invented basketball? -> $x: ($x, be inventor of, basketball) -> (Phog Allen, was the inventor of, basketball) -> Phog Allen (7956ms) Who invented basketball? active students 1.222222222221 Who invented basketball? -> $x: (basketball, be invent by, $x) -> (the Science Guy Basketball, was invented by, active students) -> active students (8026ms) Who invented basketball? The company 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (The company, also introduced, new basketball teasers) -> The company (7956ms) Who invented basketball? Haruko 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Haruko, introduced him to, the Shohoku basketball team) -> Haruko (7927ms) Who invented basketball? dribbling 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (dribbling, was introduced in, basketball) -> dribbling (7956ms) Who invented basketball? physician 1.222222222221 Who invented basketball? -> $x: ($x, invent of, basketball) -> (physician, invented the game of, basketball) -> physician (7851ms) Who invented basketball? a Canadian , Dr. James A. Naismith 1.222222222221 Who invented basketball? -> $x: (basketball, be invent by, $x) -> (basketball, was invented by, a Canadian , Dr. James A. Naismith) -> a Canadian , Dr. James A. Naismith (7912ms) Who invented basketball? YMCA instructors 1.222222222221 Who invented basketball? -> $x: (basketball, be invent by, $x) -> (basketball and volleyball, were invented by, YMCA instructors) -> YMCA instructors (8015ms) Who invented basketball? 1917 Converse 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (1917 Converse, introduced, the All-Star basketball shoe) -> 1917 Converse (7882ms) Who invented basketball? a physical education teacher 1.222222222221 Who invented basketball? -> $x: (basketball, be invent by, $x) -> (basketball, was invented by, a physical education teacher) -> a physical education teacher (7956ms) Who invented basketball? 1891 Dr. Naismith 1.222222222221 Who invented basketball? -> $x: ($x, invent of, basketball) -> (1891 Dr. Naismith, invented the game of, Basketball) -> 1891 Dr. Naismith (8004ms) Who invented basketball? uncle Jed 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (uncle Jed, introduced her to, basketball) -> uncle Jed (8015ms) Who invented basketball? superstar players 1.222222222221 Who invented basketball? -> $x: (basketball, have history of, $x) -> (Basketball, has a rich history of, superstar players) -> superstar players (8004ms) Who invented basketball? and excellence 1.222222222221 Who invented basketball? -> $x: (basketball, have history of, $x) -> ('s basketball, has a grand history of winning, and excellence) -> and excellence (7968ms) Who invented basketball? Philip Bryant 1.222222222221 Who invented basketball? -> $x: (basketball, be invent by, $x) -> (basketball, was invented by, Philip Bryant) -> Philip Bryant (7968ms) Who invented basketball? Hope Mills 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Hope Mills, introduced, the new ABA professional basketball team) -> Hope Mills (7897ms) Who invented basketball? Baden 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Baden, introduces, the Perfection basketball series) -> Baden (7942ms) Who invented basketball? success 1.222222222221 Who invented basketball? -> $x: (basketball, have history of, $x) -> (Cincinnati basketball, has a rich history of, success) -> success (7897ms) Who invented basketball? Stein 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Stein, was introduced as, ICC?s third womens basketball coach) -> Stein (8004ms) Who invented basketball? Sports 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Sports, introduced include, soccer , basketball) -> Sports (7992ms) Who invented basketball? The project 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (The project, will introduce, a Midnight Basketball program) -> The project (7969ms) Who invented basketball? short 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (short, introduce about, the kobe 5 basketball shoes) -> short (7942ms) Who invented basketball? rock 1.222222222221 Who invented basketball? -> $x: ($x, be inventor of, basketball) -> (rock, only is the inventor of, basketball) -> rock (7913ms) Who invented basketball? Romney 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Romney, is introducing, basketball) -> Romney (7981ms) Who invented basketball? 1st grade 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (1st grade, are also introduced to, basketball) -> 1st grade (7897ms) Who invented basketball? Nike Tn Requin 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Nike Tn Requin, was introduced as, a basketball shoes) -> Nike Tn Requin (7866ms) Who invented basketball? Hinson 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Hinson, formally introduced as, men???s basketball coach) -> Hinson (7866ms) Who invented basketball? physical education 1.222222222221 Who invented basketball? -> $x: ($x, invent of, basketball) -> (physical education, invented the game of, basketball) -> physical education (7981ms) Who invented basketball? the security technology 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (the security technology, is introduced to, the basketball shoes) -> the security technology (8004ms) Who invented basketball? Canadian James Naismith 1.222222222221 Who invented basketball? -> $x: ($x, invent of, basketball) -> (Canadian James Naismith, invented the game of, basketball) -> Canadian James Naismith (7867ms) Who invented basketball? men 1.222222222221 Who invented basketball? -> $x: (basketball, be invent by, $x) -> (Both basketball and volleyball, were invented by, men) -> men (7942ms) Who invented basketball? tightness 1.222222222221 Who invented basketball? -> $x: (basketball, have history of, $x) -> (A women varsity basketball player, had a history of, tightness) -> tightness (7942ms) Who invented basketball? the league 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (the league, helped to introduce, basketball) -> the league (7981ms) Who invented basketball? james naismith 1.222222222221 Who invented basketball? -> $x: (basketball, be invent by, $x) -> (Basketball, was invented by, james naismith) -> james naismith (7956ms) Who invented basketball? the new defense McGuire 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (the new defense McGuire, introduced to, college basketball) -> the new defense McGuire (7981ms) Who invented basketball? Taylor 1.222222222221 Who invented basketball? -> $x: ($x, be invent, basketball) -> (Taylor, is also credited with inventing, a basketball) -> Taylor (8026ms) Who invented basketball? speakers Bill Walton Bill Walton 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (speakers Bill Walton Bill Walton, was introduced to, basketball) -> speakers Bill Walton Bill Walton (7897ms) Who invented basketball? Converse 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Converse, introduced, the All-Star basketball shoe) -> Converse (7927ms) Who invented basketball? Trent Johnson 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Trent Johnson, has been introduced as, the new basketball coach) -> Trent Johnson (7866ms) Who invented basketball? Taylor Allan 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Taylor Allan, recently introduced, Basketball game Credit) -> Taylor Allan (7992ms) Who invented basketball? leather-based upper 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (leather-based upper, was introduced on, basketball shoes) -> leather-based upper (7882ms) Who invented basketball? exactly what 1.222222222221 Who invented basketball? -> $x: ($x, be origin of, basketball) -> (exactly what, is the origin of, basketball) -> exactly what (8015ms) Who invented basketball? a winter team sport 1.222222222221 Who invented basketball? -> $x: ($x, invent of, basketball) -> (a winter team sport, invented the game of, basketball) -> a winter team sport (7942ms) Who invented basketball? Larson 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Larson, was introduced as, the 8th head men?s basketball coach) -> Larson (8004ms) Who invented basketball? SLAM DUNK 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (SLAM DUNK, has been credited with introducing, basketball) -> SLAM DUNK (7942ms) Who invented basketball? None 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (None, Introduce, backyard basketball) -> None (8026ms) Who invented basketball? Tim Miles 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Tim Miles, introduced as, the new NU basketball coach) -> Tim Miles (7968ms) Who invented basketball? a man 1.222222222221 Who invented basketball? -> $x: (basketball, be invent by, $x) -> (Basketball, was a game invented by, a man) -> a man (8004ms) Who invented basketball? offense 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (offense, will be introduced to, young basketball players) -> offense (7867ms) Who invented basketball? a Canadian 1.222222222221 Who invented basketball? -> $x: (basketball, be invent by, $x) -> (Basketball, was invented by, a Canadian) -> a Canadian (7897ms) Who invented basketball? Agau 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Agau, was introduced to, basketball) -> Agau (7927ms) Who invented basketball? leagues 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (leagues, are introduced to, new basketball ideas) -> leagues (7897ms) Who invented basketball? 1869 1.222222222221 Who invented basketball? -> $x: (basketball, be invent by, $x) -> (basketball, was invented by, 1869) -> 1869 (7992ms) Who invented basketball? rallying 1.222222222221 Who invented basketball? -> $x: (basketball, have history of, $x) -> (the Hudson girls basketball team, has had a history of, rallying) -> rallying (7882ms) Who invented basketball? the YMCA 1.222222222221 Who invented basketball? -> $x: (basketball, be invent by, $x) -> (Basketball, was a game invented by, the YMCA) -> the YMCA (7866ms) Who invented basketball? the 3-point line 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (the 3-point line, was being introduced to, college basketball) -> the 3-point line (8015ms) Who invented basketball? Stewart 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Stewart, introduced, former basketball star Kareem Abdul-Jabbar) -> Stewart (7866ms) Who invented basketball? We?ll 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (We?ll, introduce, the OWLS basketball teams) -> We?ll (8004ms) Who invented basketball? a Scottish American 1.222222222221 Who invented basketball? -> $x: (basketball, be invent by, $x) -> (Basketball, was invented by, a Scottish American) -> a Scottish American (7956ms) Who invented basketball? a native 1.222222222221 Who invented basketball? -> $x: (basketball, be invent by, $x) -> (basketball, was invented by, a native) -> a native (8015ms) Who invented basketball? OH Ohio 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (OH Ohio, will introduce, its new head basketball coach) -> OH Ohio (8026ms) Who invented basketball? Cascade 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Cascade, was introduced as, the 18th men?s basketball coach) -> Cascade (7942ms) Who invented basketball? seven years 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (seven years, was soon introduced to, wheelchair basketball) -> seven years (8004ms) Who invented basketball? inventor 1.222222222221 Who invented basketball? -> $x: ($x, invent of, basketball) -> (inventor, invented the game of, basketball) -> inventor (7981ms) Who invented basketball? a Y.M.C.A. official 1.222222222221 Who invented basketball? -> $x: (basketball, be invent by, $x) -> (Basketball, was invented by, a Y.M.C.A. official) -> a Y.M.C.A. official (7968ms) Who invented basketball? popularity 1.222222222221 Who invented basketball? -> $x: (basketball, have history of, $x) -> (Basketball, has enjoyed a long history of, popularity) -> popularity (8026ms) Who invented basketball? The YMCA 1.222222222221 Who invented basketball? -> $x: ($x, be invent, basketball) -> (The YMCA, is credited with inventing, Basketball) -> The YMCA (7897ms) Who invented basketball? a Canadian baseball football 1.222222222221 Who invented basketball? -> $x: (basketball, be invent by, $x) -> (basketball, was invented by, a Canadian baseball football) -> a Canadian baseball football (7912ms) Who invented basketball? Judi W. My son Flynn 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Judi W. My son Flynn, was introduced to, basketball) -> Judi W. My son Flynn (7927ms) Who invented basketball? Dr. James Naismith 1.222222222221 Who invented basketball? -> $x: ($x, invent of, basketball) -> (Dr. James Naismith, invented the game of, basketball) -> Dr. James Naismith (8026ms) Who invented basketball? the NBA 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (the NBA, introduced, a new basketball) -> the NBA (8004ms) Who invented basketball? Ujiri 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Ujiri, was introduced to, basketball) -> Ujiri (7992ms) Who invented basketball? Ms Galley 1.222222222221 Who invented basketball? -> $x: ($x, introduce, basketball) -> (Ms Galley, is introducing, basketball) -> Ms Galley (7927ms) Who invented basketball? Tex 1.2222222222180001 Who invented basketball? -> $x: ($x, discover, basketball) -> (Tex, was discovered by, the basketball ambassadors) -> Tex (8026ms) Who invented basketball? Connor 1.2222222222180001 Who invented basketball? -> $x: ($x, discover, basketball) -> (Connor, has discovered, basketball) -> Connor (8026ms) Who invented basketball? summer 1.2222222222180001 Who invented basketball? -> $x: ($x, discover, basketball) -> (summer, discovered, Duke Basketball) -> summer (8026ms) Who invented basketball? Shanghai 1.2222222222180001 Who invented basketball? -> $x: ($x, discover, basketball) -> (Shanghai, was discovered too late for, basketball) -> Shanghai (8026ms) Who invented basketball? Wolfgang Amadeus Naismith 1.2222222222180001 Who invented basketball? -> $x: ($x, discover, basketball) -> (Wolfgang Amadeus Naismith, discovered, basketball) -> Wolfgang Amadeus Naismith (8026ms) Who invented basketball? Buddhist statuary 1.2222222222180001 Who invented basketball? -> $x: ($x, discover, basketball) -> (Buddhist statuary, was discovered beneath, a basketball court) -> Buddhist statuary (8026ms) Who invented basketball? DIY Gino 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (DIY Gino, creates, a patio and basketball court) -> DIY Gino (8141ms) Who invented basketball? Antonio and Marco 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Antonio and Marco, are doing, basketball) -> Antonio and Marco (8224ms) Who invented basketball? the RPI 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (the RPI, originally was created for, basketball) -> the RPI (8231ms) Who invented basketball? The Butler Way 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (The Butler Way, created the hullabaloo in, college basketball) -> The Butler Way (8204ms) Who invented basketball? first 1.11111111111 Who invented basketball? -> $x: (basketball, be invent, $x) -> (basketball, was invented, first) -> first (8112ms) Who invented basketball? the Harlem Globetrotters 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (the Harlem Globetrotters, do in, basketball) -> the Harlem Globetrotters (8080ms) Who invented basketball? Color 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Color, is especially designed for, basketball players) -> Color (8217ms) Who invented basketball? Alan Miller 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Alan Miller, Games Designed, Basketball) -> Alan Miller (8141ms) Who invented basketball? expertise 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (expertise, goes into designing, basketballs shoes) -> expertise (8178ms) Who invented basketball? The biggest misconception 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (The biggest misconception, has nothing to do with, basketball) -> The biggest misconception (8070ms) Who invented basketball? Middlebury and MIT 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (Middlebury and MIT, have made an impact in, basketball) -> Middlebury and MIT (8141ms) Who invented basketball? Missouri 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Missouri, to create, an enduring basketball rivalry with Auburn) -> Missouri (8244ms) Who invented basketball? Air Jordan 9 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Air Jordan 9, is designed according to, basketball players) -> Air Jordan 9 (8101ms) Who invented basketball? fun 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (fun, has created, an online NCAA basketball tournament bracket) -> fun (8244ms) Who invented basketball? San Ignacio 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> (the ATLIB Basketball Nationals, took place in, San Ignacio) -> San Ignacio (8237ms) Who invented basketball? Marquette 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Marquette, does playing, basketball) -> Marquette (8170ms) Who invented basketball? the downtown arena 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (the downtown arena, had been designed for, basketball) -> the downtown arena (8231ms) Who invented basketball? Nike and Adidas 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (Nike and Adidas, have been making, great basketball shoes) -> Nike and Adidas (8112ms) Who invented basketball? the coaches 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (the coaches, have helped make, Five-Star Basketball one) -> the coaches (8244ms) Who invented basketball? CCTV 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (CCTV, jointly created, the first ';entertainment basketball ') -> CCTV (8080ms) Who invented basketball? Chicopee 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (Chicopee, has been making headlines on, the basketball court) -> Chicopee (8238ms) Who invented basketball? Castro 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Castro, created, a youth basketball league) -> Castro (8037ms) Who invented basketball? a rich tradition 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (a rich tradition, has made his mark in, college basketball) -> a rich tradition (8217ms) Who invented basketball? Bishop Ryan 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (Bishop Ryan, has made their name in, Midget Girls Basketball) -> Bishop Ryan (8224ms) Who invented basketball? The idea 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (The idea, is to create, basketball team) -> The idea (8122ms) Who invented basketball? Broback 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Broback, is done with, basketball) -> Broback (8048ms) Who invented basketball? light 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (light, was created on, the basketball court) -> light (8231ms) Who invented basketball? the shoe 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (the shoe, is created for, basketball) -> the shoe (8161ms) Who invented basketball? Adidas and Nike 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (Adidas and Nike, have been making, good basketball shoes) -> Adidas and Nike (8244ms) Who invented basketball? Dean 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Dean, did with, basketball) -> Dean (8131ms) Who invented basketball? sport 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (sport, do activities such as, Basketball) -> sport (8131ms) Who invented basketball? the canadian cation instructor 1.11111111111 Who invented basketball? -> $x: ($x, invent in, basketball) -> (the canadian cation instructor, invented in, basketball) -> the canadian cation instructor (8250ms) Who invented basketball? the opportunity 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (the opportunity, design, their own basketball jerseys) -> the opportunity (8150ms) Who invented basketball? Tallaght students 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Tallaght students, create, a Wonderland P3 Basketball) -> Tallaght students (8150ms) Who invented basketball? Adrian Hayes 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (Adrian Hayes, has made, basketball) -> Adrian Hayes (8170ms) Who invented basketball? The Kobe Dunks shoes 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (The Kobe Dunks shoes, is designed for, basketball athletes) -> The Kobe Dunks shoes (8059ms) Who invented basketball? Progress 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (Progress, has been made on, the basketball court relocation) -> Progress (8238ms) Who invented basketball? fun activities 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (fun activities, are designed around, basketball drills) -> fun activities (8203ms) Who invented basketball? 1922 Mr. Angel Cabrera 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (1922 Mr. Angel Cabrera, created, the first basketball team) -> 1922 Mr. Angel Cabrera (8070ms) Who invented basketball? the city 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (the city, creates, a community basketball court) -> the city (8204ms) Who invented basketball? The Nike Hyperdrunk Shoes 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (The Nike Hyperdrunk Shoes, are designed for, basketball players) -> The Nike Hyperdrunk Shoes (8231ms) Who invented basketball? March Madness 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (March Madness, has made, college basketball) -> March Madness (8178ms) Who invented basketball? a YMCA 1.11111111111 Who invented basketball? -> $x: (basketball, be invent, $x) -> (Basketball, was invented at, a YMCA) -> a YMCA (8121ms) Who invented basketball? Mano 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Mano, created, the Excalibur Basketball Club) -> Mano (8203ms) Who invented basketball? Radio Philippines Network 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Radio Philippines Network, TV programs Created, The Basketball Show) -> Radio Philippines Network (8080ms) Who invented basketball? The case 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (The case, is designed to hold, one full size basketball) -> The case (8187ms) Who invented basketball? Tennis 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Tennis, so does, basketball) -> Tennis (8178ms) Who invented basketball? Mike Hummel 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Mike Hummel, created, Advantage Basketball Camps) -> Mike Hummel (8059ms) Who invented basketball? the rules book 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (the rules book, will be created for, collegiate basketball) -> the rules book (8048ms) Who invented basketball? The French 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (The French, have made inroads in, women?s basketball) -> The French (8244ms) Who invented basketball? The Lady Tigers 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (The Lady Tigers, have made, basketball look) -> The Lady Tigers (8150ms) Who invented basketball? David Trubridge 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (David Trubridge, created, these Basketball Lights) -> David Trubridge (8224ms) Who invented basketball? the NBL 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (the NBL, has created, a basketball sneaker) -> the NBL (8210ms) Who invented basketball? a couple 1.11111111111 Who invented basketball? -> $x: (basketball, be invent, $x) -> (Basketball, was invented, a couple) -> a couple (8161ms) Who invented basketball? TRP 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (TRP, created, the Resurrection Basketball League) -> TRP (8224ms) Who invented basketball? He Ruiji 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (He Ruiji, Films production designed, Woman Basketball Player No. 5) -> He Ruiji (8187ms) Who invented basketball? Halifax 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> (the men?s basketball championship, is taking place in, Halifax) -> Halifax (8112ms) Who invented basketball? a lot 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (a lot, to do with, basketball) -> a lot (8132ms) Who invented basketball? a new AD 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (a new AD, has made commitment to, men 's and women 's basketball) -> a new AD (8195ms) Who invented basketball? Torgerson 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Torgerson, created, the Ole Miss basketball network) -> Torgerson (8224ms) Who invented basketball? God 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (God, created, bingo , basketball and beer) -> God (8178ms) Who invented basketball? kobe 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (kobe, is done with, basketball) -> kobe (8037ms) Who invented basketball? Licensed Highest Quality 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Licensed Highest Quality, do, basketball) -> Licensed Highest Quality (8244ms) Who invented basketball? n21 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (n21, Create, a basketball cake) -> n21 (8187ms) Who invented basketball? Boise st 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Boise st, did nothing in, basketball) -> Boise st (8037ms) Who invented basketball? the end 1.11111111111 Who invented basketball? -> $x: (basketball, be invent, $x) -> (America Basketball, was invented at, the end) -> the end (8070ms) Who invented basketball? the centre 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (the centre, was originally designed for, basketball games) -> the centre (8121ms) Who invented basketball? Small ball hoops 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Small ball hoops, were created with, basketball game players) -> Small ball hoops (8059ms) Who invented basketball? a floor 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (a floor, is somewhat uniquely designed for, basketball) -> a floor (8069ms) Who invented basketball? the Tunit sports balls 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (the Tunit sports balls, were created for, basketball quests) -> the Tunit sports balls (8070ms) Who invented basketball? Dena Roth 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Dena Roth, Film sets designed, Love & Basketball) -> Dena Roth (8141ms) Who invented basketball? Legends Showcase 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Legends Showcase, creates, a truly unique basketball experience) -> Legends Showcase (8101ms) Who invented basketball? the deeper question 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (the deeper question, does, basketball) -> the deeper question (8112ms) Who invented basketball? a Freshman 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (a Freshman, has decided to make, basketball) -> a Freshman (8231ms) Who invented basketball? the contributions Pat 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (the contributions Pat, has made to, women?s basketball) -> the contributions Pat (8187ms) Who invented basketball? the gym 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> (a basketball game, taking place in, the gym) -> the gym (8091ms) Who invented basketball? Michael Jordan 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Michael Jordan, did for, basketball) -> Michael Jordan (8237ms) Who invented basketball? The Discovery Channel 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (The Discovery Channel, have to do with, basketball) -> The Discovery Channel (8187ms) Who invented basketball? NBA Live 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (NBA Live, did for, basketball) -> NBA Live (8091ms) Who invented basketball? The program 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (The program, is designed to improve, the basketball skills) -> The program (8178ms) Who invented basketball? Upward 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Upward, was designed to teach, basketball skills) -> Upward (8048ms) Who invented basketball? Dez 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Dez, created, custom Wholesale Nike Basketball Shoes) -> Dez (8161ms) Who invented basketball? UF 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (UF, is doing very well in, Basketball) -> UF (8170ms) Who invented basketball? compromises 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (compromises, had to be made to, his basketball philosophy) -> compromises (8238ms) Who invented basketball? The diagrams 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (The diagrams, were created with, Basketball Playbook 010) -> The diagrams (8037ms) Who invented basketball? Ayman Idais Academy 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Ayman Idais Academy, is to create, a lifetime basketball program) -> Ayman Idais Academy (8244ms) Who invented basketball? Ruth E. Carter 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Ruth E. Carter, Costume Design for Film, Love & Basketball) -> Ruth E. Carter (8141ms) Who invented basketball? Christopher Nowak 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Christopher Nowak, Films production designed, The Basketball Diaries) -> Christopher Nowak (8195ms) Who invented basketball? Beaver Falls 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> (a college basketball team, took place in, Beaver Falls) -> Beaver Falls (8187ms) Who invented basketball? a year 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (a year, ago has made, her college basketball choice) -> a year (8237ms) Who invented basketball? two years 1.11111111111 Who invented basketball? -> $x: (basketball, be invent, $x) -> (basketball, had been invented, two years) -> two years (8170ms) Who invented basketball? athletes 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (athletes, created, a competitive basketball team) -> athletes (8131ms) Who invented basketball? Nike shoes 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Nike shoes, are meticulously designed to make, your basketball) -> Nike shoes (8178ms) Who invented basketball? play 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (play, do for, basketball) -> play (8131ms) Who invented basketball? Bill Clinton 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Bill Clinton, created, midnight basketball) -> Bill Clinton (8101ms) Who invented basketball? Dan Gilbert 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Dan Gilbert, create, a basketball team) -> Dan Gilbert (8131ms) Who invented basketball? Jordan shoes 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Jordan shoes, have been designed for, basketball players) -> Jordan shoes (8112ms) Who invented basketball? sale 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (sale, was n?t created, f?r basketball) -> sale (8238ms) Who invented basketball? Luck 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Luck, does play a part in, basketball) -> Luck (8091ms) Who invented basketball? Players 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Players, can create, their own basketball player) -> Players (8048ms) Who invented basketball? Football teams 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Football teams, as do, Basketball) -> Football teams (8238ms) Who invented basketball? ten miles 1.11111111111 Who invented basketball? -> $x: (basketball, be invent, $x) -> (basketball, had just been invented only, ten miles) -> ten miles (8150ms) Who invented basketball? does sport 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (does sport, does, basketball) -> does sport (8231ms) Who invented basketball? super lightweight shoes 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (super lightweight shoes, designed for, basketball) -> super lightweight shoes (8091ms) Who invented basketball? Madison Square Garden 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> ('s basketball game, took place in, Madison Square Garden) -> Madison Square Garden (8217ms) Who invented basketball? the team?s student managers 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (the team?s student managers, created, a basketball half-court) -> the team?s student managers (8244ms) Who invented basketball? the Internet 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (the Internet, has made, college basketball merchandise) -> the Internet (8224ms) Who invented basketball? Lucas Oil 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Lucas Oil, was designed to host, basketball) -> Lucas Oil (8141ms) Who invented basketball? the secret basketball players 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (the secret basketball players, create, a new basketball player) -> the secret basketball players (8048ms) Who invented basketball? Harriet Zucker 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Harriet Zucker, Film sets designed, The Basketball Diaries) -> Harriet Zucker (8244ms) Who invented basketball? Richard 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (Richard, had many attributes to make, a fine basketball coach) -> Richard (8121ms) Who invented basketball? the arena 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (the arena, was custom-designed as, a basketball venue) -> the arena (8238ms) Who invented basketball? a $ 100,000 project 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (a $ 100,000 project, created, a hometown basketball camp) -> a $ 100,000 project (8187ms) Who invented basketball? June 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> (his own basketball camp, will take place in, June) -> June (8238ms) Who invented basketball? a street 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (a street, can also be used to create, basketball courts) -> a street (8048ms) Who invented basketball? Yao Ming 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Yao Ming, created with, a basketball) -> Yao Ming (8224ms) Who invented basketball? The congressional version 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (The congressional version, has nothing to do with, basketball) -> The congressional version (8080ms) Who invented basketball? the foot or ankle 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (the foot or ankle, does occur in, basketball) -> the foot or ankle (8178ms) Who invented basketball? Nike Blazer 1.11111111111 Who invented basketball? -> $x: ($x, first make, basketball) -> (Nike Blazer, was first made as, the basketball sneaker) -> Nike Blazer (8161ms) Who invented basketball? The shootAndstar 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (The shootAndstar, is designed for, your basketball player) -> The shootAndstar (8080ms) Who invented basketball? young 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (young, does to play, basketball) -> young (8224ms) Who invented basketball? Mitchell 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (Mitchell, has made, the U.S. U-19 basketball squad) -> Mitchell (8224ms) Who invented basketball? ?The investment 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (?The investment, has been made to, basketball) -> ?The investment (8091ms) Who invented basketball? hist?ria 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (hist?ria, do, basketball) -> hist?ria (8178ms) Who invented basketball? Stephen Schramm 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Stephen Schramm, create, the perfect ACC basketball player) -> Stephen Schramm (8101ms) Who invented basketball? Williams ? boot camp workouts 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Williams ? boot camp workouts, did n?t require, basketballs) -> Williams ? boot camp workouts (8112ms) Who invented basketball? Lyons 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Lyons, decided to create, the DONS Basketball League) -> Lyons (8141ms) Who invented basketball? a strong training club 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (a strong training club, created, a Division 1 basketball team) -> a strong training club (8210ms) Who invented basketball? LeBron 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (LeBron, is doing the same for, basketball) -> LeBron (8195ms) Who invented basketball? Nike Company 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Nike Company, has designed, many basketball shoes) -> Nike Company (8141ms) Who invented basketball? youth 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (youth, have made, their school basketball team) -> youth (8210ms) Who invented basketball? the Air Force One shoes 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (the Air Force One shoes, were designed for, basketball players) -> the Air Force One shoes (8132ms) Who invented basketball? Rome 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (Rome, has made tremendous strides as, a basketball player) -> Rome (8091ms) Who invented basketball? The Blazers center 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (The Blazers center, may be done with, basketball) -> The Blazers center (8091ms) Who invented basketball? Britain 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Britain, does in, basketball) -> Britain (8161ms) Who invented basketball? the conference 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (the conference, did revolve around, basketball) -> the conference (8178ms) Who invented basketball? a diversion 1.11111111111 Who invented basketball? -> $x: (basketball, be invent, $x) -> (basketball, was invented as, a diversion) -> a diversion (8250ms) Who invented basketball? The entire area 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (The entire area, has a design around, the basketball game look) -> The entire area (8178ms) Who invented basketball? Air Jordan 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Air Jordan, has unveiled a new design of, their basketball kicks) -> Air Jordan (8048ms) Who invented basketball? further north 1.11111111111 Who invented basketball? -> $x: (basketball, be invent, $x) -> (basketball, was invented, further north) -> further north (8132ms) Who invented basketball? Wang Yuebai 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Wang Yuebai, Films production designed, Woman Basketball Player No. 5) -> Wang Yuebai (8080ms) Who invented basketball? Michael Snaer 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Michael Snaer, created, a basketball culture) -> Michael Snaer (8037ms) Who invented basketball? a Frank Gehry 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (a Frank Gehry, designed, basketball arena) -> a Frank Gehry (8150ms) Who invented basketball? Calipari 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (Calipari, has made, major-college basketball) -> Calipari (8210ms) Who invented basketball? Basketball Jones 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Basketball Jones, does stunts with, basketballs) -> Basketball Jones (8195ms) Who invented basketball? originally 1.11111111111 Who invented basketball? -> $x: (basketball, be invent, $x) -> (Basketball, was invented, originally) -> originally (8161ms) Who invented basketball? yup 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (yup, i do especially, basketball) -> yup (8231ms) Who invented basketball? technical college 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (technical college, creates the need for, college basketball) -> technical college (8121ms) Who invented basketball? Tom 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Tom, helped design, the nike basketball shoes) -> Tom (8231ms) Who invented basketball? CBS Sports 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (CBS Sports, TV programs Created, College Basketball on CBS) -> CBS Sports (8217ms) Who invented basketball? 100 years 1.11111111111 Who invented basketball? -> $x: (basketball, be invent, $x) -> (Basketball, was invented more than, 100 years) -> 100 years (8112ms) Who invented basketball? office supplies 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (office supplies, have to do with, basketball) -> office supplies (8059ms) Who invented basketball? 1968 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> (The first basketball skills competition, took place in, 1968) -> 1968 (8170ms) Who invented basketball? ?Tone ? 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (?Tone ?, has made quite a splash in, the basketball world) -> ?Tone ? (8141ms) Who invented basketball? schools 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (schools, doing well in, basketball) -> schools (8187ms) Who invented basketball? hes 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (hes, done with, basketball) -> hes (8244ms) Who invented basketball? a non-contact sport 1.11111111111 Who invented basketball? -> $x: (basketball, be invent, $x) -> (Basketball, was invented as, a non-contact sport) -> a non-contact sport (8132ms) Who invented basketball? so many Asians 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (so many Asians, do love, basketball) -> so many Asians (8195ms) Who invented basketball? a center 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (a center, does in, basketball) -> a center (8059ms) Who invented basketball? Production I.G 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Production I.G, TV programs Created, Kuroko's Basketball) -> Production I.G (8059ms) Who invented basketball? Kobe 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Kobe, is done with, basketball) -> Kobe (8187ms) Who invented basketball? man 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (man, did, basketball) -> man (8141ms) Who invented basketball? a hall 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (a hall, designed for, basketball) -> a hall (8161ms) Who invented basketball? two venues 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> (the Basketball competition, will take place in, two venues) -> two venues (8224ms) Who invented basketball? Loyola 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Loyola, are doing pretty well playing, basketball) -> Loyola (8150ms) Who invented basketball? Mr. Onitsuka 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Mr. Onitsuka, created the first pair of, basketball shoes) -> Mr. Onitsuka (8217ms) Who invented basketball? Nike company 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Nike company, design the shoes for, the NBA basketball players) -> Nike company (8170ms) Who invented basketball? cheap 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (cheap, designed exclusively shoe for, the NBA basketball player) -> cheap (8161ms) Who invented basketball? the company 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (the company, has created a standardized line for, basketball) -> the company (8204ms) Who invented basketball? Infront 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Infront, has created tremendous momentum for, Chinese basketball) -> Infront (8048ms) Who invented basketball? Illinois 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (Illinois, has made a great choice for, its basketball coach) -> Illinois (8161ms) Who invented basketball? A Pose 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (A Pose, Has nothing to do with, basketball) -> A Pose (8170ms) Who invented basketball? David C. Robinson 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (David C. Robinson, Costume Design for Film, The Basketball Diaries) -> David C. Robinson (8037ms) Who invented basketball? everybody 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (everybody, was doing, basketball) -> everybody (8048ms) Who invented basketball? n20 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (n20, Create, a basketball cake) -> n20 (8048ms) Who invented basketball? the EBAL 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> (the Spartans basketball team, took over first place in, the EBAL) -> the EBAL (8210ms) Who invented basketball? Imma 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Imma, do, basketball) -> Imma (8131ms) Who invented basketball? flat black 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (flat black, are designed for, the ProStar Basketball ceiling fan) -> flat black (8203ms) Who invented basketball? Michael Jordans 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Michael Jordans, did with, basketball) -> Michael Jordans (8080ms) Who invented basketball? Harlem?s dancehalls 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> (basketball games, took place in, Harlem?s dancehalls) -> Harlem?s dancehalls (8238ms) Who invented basketball? The original Nike Dunk 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (The original Nike Dunk, was created as, a basketball shoe) -> The original Nike Dunk (8080ms) Who invented basketball? The cable 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (The cable, could have been made around, a basketball) -> The cable (8203ms) Who invented basketball? customers 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (customers, to create, their own basketball shoe) -> customers (8121ms) Who invented basketball? Gampel Pavilion 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> (men?s basketball, also took place in, Gampel Pavilion) -> Gampel Pavilion (8231ms) Who invented basketball? football strategy 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (football strategy, have to do with, basketball) -> football strategy (8112ms) Who invented basketball? Tadatoshi Fujimaki 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Tadatoshi Fujimaki, Fictional universes created, Kuroko's Basketball) -> Tadatoshi Fujimaki (8231ms) Who invented basketball? Gonzaga 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Gonzaga, has done in, basketball) -> Gonzaga (8217ms) Who invented basketball? Grant Township 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> (Basketball registration, to take place in, Grant Township) -> Grant Township (8203ms) Who invented basketball? Calgary 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> ('s Basketball Championship, set to take place in, Calgary) -> Calgary (8170ms) Who invented basketball? Cisco 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Cisco, created, The Wiz Kids basketball team) -> Cisco (8112ms) Who invented basketball? girls 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (girls, was very first created with, basketball gamers) -> girls (8178ms) Who invented basketball? more than 120 years ago 1.11111111111 Who invented basketball? -> $x: (basketball, be invent, $x) -> (Basketball Shoes, was invented, more than 120 years ago) -> more than 120 years ago (8244ms) Who invented basketball? The Jordans 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (The Jordans, are being created for, basketball players) -> The Jordans (8210ms) Who invented basketball? the record 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (the record, did particularly well in, basketball) -> the record (8059ms) Who invented basketball? NIKE DUNK shoes 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (NIKE DUNK shoes, is designed for, professional basketball player) -> NIKE DUNK shoes (8150ms) Who invented basketball? etc 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (etc, might have made an impact on, basketball) -> etc (8217ms) Who invented basketball? consumers 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (consumers, compete to create, college basketball videos) -> consumers (8210ms) Who invented basketball? Diamonds 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Diamonds, are created from, a basketball-sized piece) -> Diamonds (8141ms) Who invented basketball? Pro-Keds 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Pro-Keds, were specifically designed for, basketball) -> Pro-Keds (8231ms) Who invented basketball? Bethany 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (Bethany, has also made an impact on, the basketball court) -> Bethany (8161ms) Who invented basketball? the first anime sport 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (the first anime sport, i did try to play, basketball) -> the first anime sport (8231ms) Who invented basketball? great fabrics 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (great fabrics, design, your own basketball socks) -> great fabrics (8210ms) Who invented basketball? Adidas Crazy 8 shoes 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Adidas Crazy 8 shoes, are designed for, large basketball fans) -> Adidas Crazy 8 shoes (8131ms) Who invented basketball? a decade 1.11111111111 Who invented basketball? -> $x: (basketball, be invent, $x) -> (basketball, had been invented only about, a decade) -> a decade (8224ms) Who invented basketball? he?s 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (he?s, does n?t play, basketball) -> he?s (8070ms) Who invented basketball? South Africa 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (South Africa, did like, basketball) -> South Africa (8070ms) Who invented basketball? a zone defense 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (a zone defense, does in, basketball) -> a zone defense (8121ms) Who invented basketball? Berlin 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> (the Euroleague Basketball Final Four, took place in, Berlin) -> Berlin (8132ms) Who invented basketball? even more coaches 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (even more coaches, have made, Five-Star Basketball camps) -> even more coaches (8070ms) Who invented basketball? the University 1.11111111111 Who invented basketball? -> $x: (basketball, be invent, $x) -> (basketball, was invented at, the University) -> the University (8161ms) Who invented basketball? Columbia 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> (Basketball competition, will take place in, Columbia) -> Columbia (8195ms) Who invented basketball? the awarded team 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (the awarded team, creates for, Euroleague Basketball) -> the awarded team (8224ms) Who invented basketball? September 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> (5-12 Basketball, will take place in, September) -> September (8037ms) Who invented basketball? Even every year brands 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Even every year brands, create, basketball sneakers) -> Even every year brands (8187ms) Who invented basketball? A new award 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (A new award, was created in, basketball) -> A new award (8070ms) Who invented basketball? Lost Boys 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Lost Boys, created, a 'quantum basketball) -> Lost Boys (8204ms) Who invented basketball? a shoe 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (a shoe, designed for, basketball) -> a shoe (8080ms) Who invented basketball? Malaysia 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> (the Asian Basketball Championship, took place in, Malaysia) -> Malaysia (8161ms) Who invented basketball? n26 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (n26, Create, a basketball cake) -> n26 (8122ms) Who invented basketball? n19 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (n19, Create, a basketball cake) -> n19 (8195ms) Who invented basketball? winner 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (winner, has designed, the most comprehensive basketball) -> winner (8244ms) Who invented basketball? the school gym 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> (A basketball game, was taking place in, the school gym) -> the school gym (8204ms) Who invented basketball? Adidas 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Adidas, has created, a new basketball sneaker) -> Adidas (8210ms) Who invented basketball? ability 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (ability, goes into designing, basketballs shoes) -> ability (8037ms) Who invented basketball? St . Louis 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> ('s Basketball Championship, takes place in, St . Louis) -> St . Louis (8231ms) Who invented basketball? Custom 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Custom, design, your kids basketball uniform) -> Custom (8101ms) Who invented basketball? Dude Perfect 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (Dude Perfect, has made, trick-shot basketball videos) -> Dude Perfect (8091ms) Who invented basketball? power programs 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (power programs, sometimes do in, basketball) -> power programs (8132ms) Who invented basketball? Wittenberg 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Wittenberg, are doing so in, basketball) -> Wittenberg (8244ms) Who invented basketball? aficionados 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (aficionados, can create, their own AF25 Nike basketball shoe) -> aficionados (8132ms) Who invented basketball? Smart 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Smart, has done so in, basketball) -> Smart (8112ms) Who invented basketball? Leonard Hamilton 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (Leonard Hamilton, has made the game of, basketball boring) -> Leonard Hamilton (8204ms) Who invented basketball? Tennessee 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Tennessee, did in, basketball) -> Tennessee (8224ms) Who invented basketball? Local students 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Local students, create, basketball-playing robots) -> Local students (8210ms) Who invented basketball? michael jordan 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (michael jordan, did with, basketball) -> michael jordan (8195ms) Who invented basketball? no decision 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (no decision, has been made on, basketball player Xavier Blount) -> no decision (8170ms) Who invented basketball? KU 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (KU, usually does better at, basketball) -> KU (8238ms) Who invented basketball? the rules 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (the rules, created, basketball) -> the rules (8203ms) Who invented basketball? a recreational sport 1.11111111111 Who invented basketball? -> $x: (basketball, be invent, $x) -> (Basketball, was invented as, a recreational sport) -> a recreational sport (8069ms) Who invented basketball? n17 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (n17, Create, a basketball cake) -> n17 (8080ms) Who invented basketball? 64 :00 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (64 :00, do, basketball) -> 64 :00 (8170ms) Who invented basketball? Scott and Kidd 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Scott and Kidd, created, a basketball symphony) -> Scott and Kidd (8187ms) Who invented basketball? NBC Sports 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (NBC Sports, TV programs Created, College Basketball on NBC) -> NBC Sports (8101ms) Who invented basketball? Colin 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Colin, has also done videos for, basketball) -> Colin (8037ms) Who invented basketball? The shoe 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (The shoe, is designed for, basketball) -> The shoe (8069ms) Who invented basketball? BHC BLOG Ethan Anderson 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (BHC BLOG Ethan Anderson, has created, the Select Basketball Blog) -> BHC BLOG Ethan Anderson (8217ms) Who invented basketball? the Hornets 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> (All home basketball games, take place in, the Hornets) -> the Hornets (8132ms) Who invented basketball? the lakers 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (the lakers, did in, basketball) -> the lakers (8141ms) Who invented basketball? books 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (books, still do well at, basketball) -> books (8112ms) Who invented basketball? retro Jordan Shoes 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (retro Jordan Shoes, was designed for, basketball player.To) -> retro Jordan Shoes (8037ms) Who invented basketball? March or April 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> (Basketball events, take place in, March or April) -> March or April (8048ms) Who invented basketball? The Masonites 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (The Masonites, are doing more than, basketball) -> The Masonites (8080ms) Who invented basketball? I?ll 1.11111111111 Who invented basketball? -> $x: ($x, first make, basketball) -> (I?ll, make the first substitution in, pickup basketball history) -> I?ll (8080ms) Who invented basketball? Beth 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Beth, is done playing, basketball) -> Beth (8244ms) Who invented basketball? Three players 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (Three players, have made the cut for, Miss Basketball) -> Three players (8231ms) Who invented basketball? n24 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (n24, Create, a basketball cake) -> n24 (8217ms) Who invented basketball? Kyle 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Kyle, decided to do something with, basketball) -> Kyle (8187ms) Who invented basketball? Jordan 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Jordan, eventually did return to, basketball) -> Jordan (8141ms) Who invented basketball? Travis 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Travis, did, basketball) -> Travis (8238ms) Who invented basketball? Sneakers 1.11111111111 Who invented basketball? -> $x: ($x, design, basketball) -> (Sneakers, were designed for, basketball or tennis) -> Sneakers (8170ms) Who invented basketball? Saturday?s 1.11111111111 Who invented basketball? -> $x: (basketball, take place in, $x) -> (boys and girls basketball, will take place in, Saturday?s) -> Saturday?s (8250ms) Who invented basketball? Finally Spalding 1.11111111111 Who invented basketball? -> $x: ($x, create, basketball) -> (Finally Spalding, has created, a new basketball) -> Finally Spalding (8131ms) Who invented basketball? Trevor 1.11111111111 Who invented basketball? -> $x: ($x, have make, basketball) -> (Trevor, has made the transition to, basketball) -> Trevor (8217ms) Who invented basketball? Adam Smith 1.11111111111 Who invented basketball? -> $x: ($x, do, basketball) -> (Adam Smith, have to do with, basketball) -> Adam Smith (8059ms) Who invented basketball? Basketball 0.999999999999 Who invented basketball? -> $x: (basketball, invent, $x) -> (Basketball Canadian Dr James Naismith, invented, Basketball) -> Basketball (8250ms) Who invented basketball? december th 0.999999999999 Who invented basketball? -> $x: (basketball, invent, $x) -> (basketball, invented, december th) -> december th (8266ms) Who invented basketball? period 0.999999999999 Who invented basketball? -> $x: (basketball, invent, $x) -> (the best basketball, ever invented, period) -> period (8280ms) Who invented basketball? Sheex 0.999999999999 Who invented basketball? -> $x: (basketball, invent, $x) -> ('s basketball coaches, invented, Sheex) -> Sheex (8250ms) Who invented basketball? rap fashion 0.999999999999 Who invented basketball? -> $x: (basketball, invent, $x) -> (a basketball player, invent, rap fashion) -> rap fashion (8280ms) Who invented basketball? a few miles 0.999999999999 Who invented basketball? -> $x: (basketball, invent, $x) -> (Basketball, invented, a few miles) -> a few miles (8256ms) Who invented basketball? American 0.999999999998 Who invented basketball? -> $x: (regulation, be invent in, $x) -> (Regulations & Subsidies Solar panels, were invented in, American) -> American (8285ms) Who invented basketball? the 1600 0.999999999998 Who invented basketball? -> $x: (rule, be invent in, $x) -> (The Slide Rule, had been invented in, the 1600) -> the 1600 (8284ms) Who invented basketball? the Mid 19th century 0.999999999998 Who invented basketball? -> $x: (rule, be invent in, $x) -> (Australian Rules football, was invented in, the Mid 19th century) -> the Mid 19th century (8284ms) Who invented basketball? the 1620s 0.999999999998 Who invented basketball? -> $x: (rule, be invent in, $x) -> (the slide rule, was invented in, the 1620s) -> the 1620s (8288ms) Who invented basketball? the first place 0.999999999998 Who invented basketball? -> $x: (guard, be invent in, $x) -> (a rash guard, has been invented in, the first place) -> the first place (8288ms) Who invented basketball? 1622 0.999999999998 Who invented basketball? -> $x: (rule, be invent in, $x) -> (The slide rule, was invented in, 1622) -> 1622 (8285ms) Who invented basketball? 1815 0.999999999998 Who invented basketball? -> $x: (rule, be invent in, $x) -> (Log-log Slide Rules Log-log rules, were invented in, 1815) -> 1815 (8284ms) Who invented basketball? 1858 0.999999999998 Who invented basketball? -> $x: (rule, be invent in, $x) -> (Australian rules football, was invented in, 1858) -> 1858 (8288ms) Who invented basketball? the beginning 0.999999999998 Who invented basketball? -> $x: (child, be invent in, $x) -> (child development, was invented in, the beginning) -> the beginning (8284ms) Who invented basketball? 1870 0.999999999998 Who invented basketball? -> $x: (rim, be invent in, $x) -> (rim, was invented in, 1870) -> 1870 (8288ms) Who invented basketball? 1632 0.999999999998 Who invented basketball? -> $x: (rule, be invent in, $x) -> (the slide rule, was invented in, 1632) -> 1632 (8288ms) Who invented basketball? 1884 0.888888888887 Who invented basketball? -> $x: (baseball, be invent in, $x) -> (baseball bat, was invented in, 1884) -> 1884 (8288ms) Who invented basketball? 1964 0.888888888887 Who invented basketball? -> $x: (baseball, be invent in, $x) -> (Beep Baseball, was invented in, 1964) -> 1964 (8296ms) Who invented basketball? England 0.888888888887 Who invented basketball? -> $x: (baseball, be invent in, $x) -> (Baseball, was invented in, England) -> England (8296ms) Who invented basketball? 1883 0.888888888887 Who invented basketball? -> $x: (baseball, be invent in, $x) -> (The baseball glove, was invented in, 1883) -> 1883 (8303ms) Who invented basketball? Cooperstown 0.888888888887 Who invented basketball? -> $x: (baseball, be invent in, $x) -> (baseball, was invented in, Cooperstown) -> Cooperstown (8302ms) Who invented basketball? 1839 ~ Contrary 0.888888888887 Who invented basketball? -> $x: (baseball, be invent in, $x) -> (~ Baseball, was Invented in, 1839 ~ Contrary) -> 1839 ~ Contrary (8299ms) Who invented basketball? 1834 Tilton 0.888888888887 Who invented basketball? -> $x: (baseball, be invent in, $x) -> (Baseball, was invented in, 1834 Tilton) -> 1834 Tilton (8303ms) Who invented basketball? a quaint rural town 0.888888888887 Who invented basketball? -> $x: (baseball, be invent in, $x) -> (baseball, was invented in, a quaint rural town) -> a quaint rural town (8303ms) Who invented basketball? the 1920s 0.888888888887 Who invented basketball? -> $x: (baseball, be invent in, $x) -> (Metal baseball bats, were invented in, the 1920s) -> the 1920s (8292ms) Who invented basketball? 1839 0.888888888887 Who invented basketball? -> $x: (baseball, be invent in, $x) -> (Baseball, was invented in, 1839) -> 1839 (8302ms) Who invented basketball? Dan Biasone 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (Dan Biasone, invented, basketball) -> Dan Biasone (8313ms) Who invented basketball? the moment James Naismith 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (the moment James Naismith, invented, basketball) -> the moment James Naismith (8305ms) Who invented basketball? a sports stringer 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (a sports stringer, invented, a college basketball team &) -> a sports stringer (8315ms) Who invented basketball? United States educator 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (United States educator, invented, the game of basketball) -> United States educator (8305ms) Who invented basketball? A Canadian doctor 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (A Canadian doctor, invented, Basketball) -> A Canadian doctor (8315ms) Who invented basketball? Ont. 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (Ont., invented, basketball) -> Ont. (8313ms) Who invented basketball? Canadians 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (Canadians, invented, Basketball) -> Canadians (8315ms) Who invented basketball? Al Gore 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (Al Gore, invented, Basketball-Reference) -> Al Gore (8315ms) Who invented basketball? the white man 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (the white man, invented, basketball) -> the white man (8305ms) Who invented basketball? white man 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (white man, invented, basketball) -> white man (8308ms) Who invented basketball? roller James Naismith 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (roller James Naismith, invented, the modern basketball) -> roller James Naismith (8308ms) Who invented basketball? a creative advertising agent 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (a creative advertising agent, invented, a basketball) -> a creative advertising agent (8313ms) Who invented basketball? Basketball Canadian Dr James Naismith 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (Basketball Canadian Dr James Naismith, invented, Basketball) -> Basketball Canadian Dr James Naismith (8313ms) Who invented basketball? 1891 James Naismith 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (1891 James Naismith, invented, basketball) -> 1891 James Naismith (8313ms) Who invented basketball? The guy 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (The guy, invented, basketball) -> The guy (8310ms) Who invented basketball? the same year James B. Naismith 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (the same year James B. Naismith, invented, basketball) -> the same year James B. Naismith (8308ms) Who invented basketball? the jews 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (the jews, invented, basketball) -> the jews (8316ms) Who invented basketball? the first try 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (the first try, invented, basketball) -> the first try (8305ms) Who invented basketball? a KU Coach 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (a KU Coach, invented, basketball) -> a KU Coach (8303ms) Who invented basketball? the who 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (the who, invented, the game basketball) -> the who (8308ms) Who invented basketball? 1891 - James Naismith 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (1891 - James Naismith, invents, basketball) -> 1891 - James Naismith (8311ms) Who invented basketball? Canuck 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (Canuck, invented, basketball) -> Canuck (8308ms) Who invented basketball? Dr. Naismith 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (Dr. Naismith, began inventing, basketball) -> Dr. Naismith (8313ms) Who invented basketball? Mars 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (Mars, invent, time travel or play basketball) -> Mars (8305ms) Who invented basketball? the movement 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (the movement, invented, basketball and volleyball) -> the movement (8305ms) Who invented basketball? Program Director James Naismith 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (Program Director James Naismith, invented, Basketball) -> Program Director James Naismith (8315ms) Who invented basketball? history ?? 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (history ??, invented, basketball) -> history ?? (8311ms) Who invented basketball? The Globetrotters 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (The Globetrotters, invented, show basketball) -> The Globetrotters (8305ms) Who invented basketball? the Canadian physical education instructor 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (the Canadian physical education instructor, invented, basketball) -> the Canadian physical education instructor (8315ms) Who invented basketball? YMCA instructor James Naismith 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (YMCA instructor James Naismith, invented, basketball) -> YMCA instructor James Naismith (8313ms) Who invented basketball? the person 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (the person, invented, basketball) -> the person (8313ms) Who invented basketball? Any other interesting facts James Naismith 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (Any other interesting facts James Naismith, invented, basketball) -> Any other interesting facts James Naismith (8315ms) Who invented basketball? college students 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (college students, invented, basketball and volleyball) -> college students (8305ms) Who invented basketball? YMCA members 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (YMCA members, invented, basketball) -> YMCA members (8315ms) Who invented basketball? Company History 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (Company History, invented, basketball) -> Company History (8313ms) Who invented basketball? Basketball Dr. James Naismith 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (Basketball Dr. James Naismith, invented, basketball) -> Basketball Dr. James Naismith (8308ms) Who invented basketball? the short time limit Dr. Naismith 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (the short time limit Dr. Naismith, invented, basketball) -> the short time limit Dr. Naismith (8311ms) Who invented basketball? The Canadian 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (The Canadian, invented, the game of basketball) -> The Canadian (8311ms) Who invented basketball? The Canadians 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (The Canadians, invented, basketball) -> The Canadians (8311ms) Who invented basketball? the country 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (the country, invented, basketball) -> the country (8313ms) Who invented basketball? A Canadian 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (A Canadian, invented, basketball) -> A Canadian (8303ms) Who invented basketball? Europeans 0.6666666666630001 Who invented basketball? -> $x: ($x, invent, basketball) -> (Europeans, invented, baseball , football and basketball) -> Europeans (8311ms) What is it called by the Indians? church 0.888888888885 What is it called by the Indians? -> $x: ($x, be fear of, indian) -> (church, was fear of, Indian attack) -> church (1255ms) What is it called by the Indians? Kashmiris 0.888888888885 What is it called by the Indians? -> $x: ($x, be fear of, indian) -> (Kashmiris, are losing their fear of, Indian criminal police) -> Kashmiris (1256ms) What is it called by the Indians? the River 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (the River, called by, the Indians Ouragon) -> the River (3084ms) What is it called by the Indians? the State 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (the State, were called by, the Indians and Gonzalez) -> the State (1255ms) What is it called by the Indians? Penn Yan 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (Penn Yan, was called by, the Indians O-go-ya-ga) -> Penn Yan (1373ms) What is it called by the Indians? Kevin Costner?s character 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (Kevin Costner?s character, is called by, the Indians) -> Kevin Costner?s character (3084ms) What is it called by the Indians? a large creek 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (a large creek, was called by, the Indians Catawba) -> a large creek (2245ms) What is it called by the Indians? Pamlico Sound 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (Pamlico Sound, called by, the Indians Roanoke Island) -> Pamlico Sound (3084ms) What is it called by the Indians? Barrington 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (Barrington, was then called by, its Indian names) -> Barrington (1373ms) What is it called by the Indians? the Chief 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (the Chief, is called by, the Indians) -> the Chief (3084ms) What is it called by the Indians? Alaska?s largest river 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (Alaska?s largest river, was called by, the Indians Throndink) -> Alaska?s largest river (3084ms) What is it called by the Indians? the place 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (the place, was called by, the Indians) -> the place (3084ms) What is it called by the Indians? an election 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (an election, shall be called by, the present Indian council) -> an election (3084ms) What is it called by the Indians? The river 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (The river, was called by, the Indians Quinnehtuck) -> The river (2245ms) What is it called by the Indians? the bay 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (the bay, called by, the indians) -> the bay (1255ms) What is it called by the Indians? Sam Houston 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (Sam Houston, once was called by, the Indians) -> Sam Houston (3084ms) What is it called by the Indians? Mark Gurath 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (Mark Gurath, was called by, Indian Landing Lutheran congregation) -> Mark Gurath (1255ms) What is it called by the Indians? The creek 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (The creek, was also called by, the Indians) -> The creek (2245ms) What is it called by the Indians? the schools 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (the schools, is called by, the Indian Association) -> the schools (2245ms) What is it called by the Indians? The bridges 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (The bridges, are called by, their Hopi Indian names) -> The bridges (3084ms) What is it called by the Indians? Mind 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (Mind, was called by, Indian psychologists) -> Mind (1373ms) What is it called by the Indians? the province 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (the province, called Apalachen by, the Indians) -> the province (2245ms) What is it called by the Indians? Kim 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (Kim, was called by, the Indians) -> Kim (1373ms) What is it called by the Indians? The whites 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (The whites, are called from their swords by, the Indians) -> The whites (1373ms) What is it called by the Indians? Westbrook parish 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (Westbrook parish, was called by, its Indian name Pochaug) -> Westbrook parish (3084ms) What is it called by the Indians? the east , contrary 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (the east , contrary, is called by, the Indians Teotl Lixco) -> the east , contrary (1373ms) What is it called by the Indians? height 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (height, is called by, the Indians 'Kolana ') -> height (3084ms) What is it called by the Indians? the first congregation 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (the first congregation, still is called by, its Indian name) -> the first congregation (2245ms) What is it called by the Indians? Mount Graham 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (Mount Graham, called by, the ancient Hopi Indians) -> Mount Graham (2245ms) What is it called by the Indians? Mr. Hridayesh Tripathi 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (Mr. Hridayesh Tripathi, were called by, Indian establishment) -> Mr. Hridayesh Tripathi (2245ms) What is it called by the Indians? King Bowlegs 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (King Bowlegs, was called by, the Indians) -> King Bowlegs (1373ms) What is it called by the Indians? the country 0.444444444443 What is it called by the Indians? -> $x: ($x, call by, indian) -> (the country, was called by, the Indians) -> the country (3084ms) What is it called by the Indians? Disease Control -0.222222222222 What is it called by the Indians? -> $x: ($x, call by, cleveland) -> (Disease Control, was called in by, Cleveland doctors) -> Disease Control (3266ms) What is it called by the Indians? federal troops -0.222222222222 What is it called by the Indians? -> $x: ($x, call by, cleveland) -> (federal troops, called out by, President Grover Cleveland) -> federal troops (3275ms) What is it called by the Indians? Fai -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (the Indian press, referred to, Fai) -> Fai (3403ms) What is it called by the Indians? the movie -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (the movie, does n?t sound, Indian) -> the movie (3342ms) What is it called by the Indians? Slate -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Slate, refers to, the American Indian Movement) -> Slate (3367ms) What is it called by the Indians? the local newspapers -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (the local newspapers, continued to refer to, the Indians) -> the local newspapers (3399ms) What is it called by the Indians? Kalamkari -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Kalamkari, refers to, the Indian craft) -> Kalamkari (3318ms) What is it called by the Indians? the narration -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (the narration, sounds very, Indian- English) -> the narration (3371ms) What is it called by the Indians? Hindu gods -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (Indian clothes, even worshipped, Hindu gods) -> Hindu gods (3386ms) What is it called by the Indians? Plains Indian Sign Language Glossed Text -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Plains Indian Sign Language Glossed Text, Refers To, Plains Indian Sign Language) -> Plains Indian Sign Language Glossed Text (3390ms) What is it called by the Indians? 182/2 -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (Mumbai Indians, raced to, 182/2) -> 182/2 (3395ms) What is it called by the Indians? Etienne Lucier -0.666666666668 What is it called by the Indians? -> $x: ($x, wife, indians) -> (Etienne Lucier, mentions his wife as, being a Spokane indian) -> Etienne Lucier (3342ms) What is it called by the Indians? White poppy seeds -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (White poppy seeds, are often referred to as, ' Indian') -> White poppy seeds (3299ms) What is it called by the Indians? a god -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (the sun. Indians, worshiped the sun as, a god) -> a god (3291ms) What is it called by the Indians? Iracema -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Iracema, refers to, an Indian female) -> Iracema (3352ms) What is it called by the Indians? the indigenous population -0.666666666668 What is it called by the Indians? -> $x: ($x, use to be call, indians) -> (the indigenous population, (used to be called, Indians) -> the indigenous population (3358ms) What is it called by the Indians? a Maryland farmer -0.666666666668 What is it called by the Indians? -> $x: ($x, race, indians) -> (a Maryland farmer, raced, Indians) -> a Maryland farmer (3305ms) What is it called by the Indians? Geologist -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Geologist, refer to, the earliest Indians) -> Geologist (3383ms) What is it called by the Indians? the Platte River -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (the Indian word, refers to, the Platte River) -> the Platte River (3383ms) What is it called by the Indians? a group -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indians, refer to, a group) -> a group (3362ms) What is it called by the Indians? sweet potatoes -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (The Indians, referred to, sweet potatoes) -> sweet potatoes (3380ms) What is it called by the Indians? a common term -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (a common term, refered to, indians) -> a common term (3330ms) What is it called by the Indians? B1-256 -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (B1-256, Sounds of, Indian America) -> B1-256 (3352ms) What is it called by the Indians? The Muslims -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (The Muslims, referred to, the Indian people) -> The Muslims (3324ms) What is it called by the Indians? Americans -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Americans, refer to, American Indians) -> Americans (3312ms) What is it called by the Indians? the spirit -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (the Indians, worshiped, the spirit) -> the spirit (3275ms) What is it called by the Indians? demons -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (Indians, worship, demons) -> demons (3399ms) What is it called by the Indians? a warm , friendly officer -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (a warm , friendly officer, refers to, the Indian Army) -> a warm , friendly officer (3291ms) What is it called by the Indians? horses -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (The Indians, have always raced, horses) -> horses (3403ms) What is it called by the Indians? Canada -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Canada, have been referred to as, Indians) -> Canada (3318ms) What is it called by the Indians? North India -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (North India, refer to, South Indians) -> North India (3401ms) What is it called by the Indians? Redskin Indians -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Redskin Indians, refers to, literally skinning American Indians) -> Redskin Indians (3371ms) What is it called by the Indians? HRT -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (The Indian driver, raced for, HRT) -> HRT (3325ms) What is it called by the Indians? the vernacular Indian languages -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indians, often refer to, the vernacular Indian languages) -> the vernacular Indian languages (3399ms) What is it called by the Indians? The word REDSKINS -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (The word REDSKINS, refers to, a DEAD Indian) -> The word REDSKINS (3342ms) What is it called by the Indians? host -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (Indian auto industry, is progressively racing ahead with, host) -> host (3389ms) What is it called by the Indians? contact -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (contact, has referred to, Indians) -> contact (3318ms) What is it called by the Indians? the Enemy -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (Indians, are still Racing, the Enemy) -> the Enemy (3393ms) What is it called by the Indians? tsunamis -0.666666666668 What is it called by the Indians? -> $x: ($x, race, indians) -> (tsunamis, racing across, the Indian Ocean) -> tsunamis (3318ms) What is it called by the Indians? zibethinus -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (zibethinus, refers to, the Indian civet) -> zibethinus (3318ms) What is it called by the Indians? mamak -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (mamak, refers to, the Indian Muslims community) -> mamak (3291ms) What is it called by the Indians? saints -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (Indian villagers, can worship, saints) -> saints (3362ms) What is it called by the Indians? Redskins -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Redskins, refer to, a DEAD Indian) -> Redskins (3389ms) What is it called by the Indians? Tulsi -0.666666666668 What is it called by the Indians? -> $x: ($x, worship, indians) -> (Tulsi, is worshipped in, Indian homes) -> Tulsi (3390ms) What is it called by the Indians? the ?merciless Indian Savages -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indians, are referred to as, the ?merciless Indian Savages) -> the ?merciless Indian Savages (3305ms) What is it called by the Indians? gold -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (the Indians, worshipped, gold) -> gold (3362ms) What is it called by the Indians? DC 20013 -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (DC 20013, Sounds of, Indian Summer) -> DC 20013 (3383ms) What is it called by the Indians? three times -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (Indian Charlie, only raced, three times) -> three times (3318ms) What is it called by the Indians? outfielder/DH Johnny Damon -0.666666666668 What is it called by the Indians? -> $x: (indians, will call, $x) -> (The Indians, will likely call up, outfielder/DH Johnny Damon) -> outfielder/DH Johnny Damon (3324ms) What is it called by the Indians? the Vedas -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian?s Corporate Headquarters ?, refers to, the Vedas) -> the Vedas (3352ms) What is it called by the Indians? Anasuya -0.666666666668 What is it called by the Indians? -> $x: ($x, sound like, indians) -> (Anasuya, sounds like, an Indian name) -> Anasuya (3318ms) What is it called by the Indians? redskins -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indians, referred to as, redskins) -> redskins (3357ms) What is it called by the Indians? a sacred plant -0.666666666668 What is it called by the Indians? -> $x: ($x, worship, indians) -> (a sacred plant, worshipped in, many Indian homes) -> a sacred plant (3342ms) What is it called by the Indians? Hindus -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Hindus, referred to, all Indians) -> Hindus (3376ms) What is it called by the Indians? Nokia -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (Indians, have worshiped, Nokia) -> Nokia (3380ms) What is it called by the Indians? Charles Nagy -0.666666666668 What is it called by the Indians? -> $x: ($x, young, indians) -> (Charles Nagy, was a young pitcher for, the Indians) -> Charles Nagy (3283ms) What is it called by the Indians? a huge tidal wave -0.666666666668 What is it called by the Indians? -> $x: ($x, race, indians) -> (a huge tidal wave, would race northward across, the Indian Ocean) -> a huge tidal wave (3389ms) What is it called by the Indians? nearly every instance -0.666666666668 What is it called by the Indians? -> $x: ($x, wife, indians) -> (nearly every instance, becomes the wife of, a blanket Indian) -> nearly every instance (3352ms) What is it called by the Indians? Thayaparan -0.666666666668 What is it called by the Indians? -> $x: (indians, will call, $x) -> (poor Indians, will soon be calling for, Thayaparan) -> Thayaparan (3336ms) What is it called by the Indians? The child -0.666666666668 What is it called by the Indians? -> $x: ($x, will call, indians) -> (The child, will legally still be called, an Indian) -> The child (3403ms) What is it called by the Indians? the culture -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (South Indian culture, refers to, the culture) -> the culture (3383ms) What is it called by the Indians? Hello Sunil? -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (Hello Sunil?, sounds, an Indian name) -> Hello Sunil? (3401ms) What is it called by the Indians? occasions Lewis and Clark -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (occasions Lewis and Clark, refer to, the Indians) -> occasions Lewis and Clark (3330ms) What is it called by the Indians? a screen -0.666666666668 What is it called by the Indians? -> $x: (indians, sound like, $x) -> (The Indian government?s proposal, sounds more like, a screen) -> a screen (3395ms) What is it called by the Indians? Progressive Field -0.666666666668 What is it called by the Indians? -> $x: (indians, will call, $x) -> (the Indians, will now be called, Progressive Field) -> Progressive Field (3395ms) What is it called by the Indians? hundreds -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (American Indian creationism ?, refers to, hundreds) -> hundreds (3325ms) What is it called by the Indians? Time periods -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Time periods, refer to, the Indian fiscal year) -> Time periods (3395ms) What is it called by the Indians? Chie -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (the Indians, worshipped, Chie) -> Chie (3312ms) What is it called by the Indians? a contract extension -0.666666666668 What is it called by the Indians? -> $x: (indians, young, $x) -> (the Indians, signed a key young player to, a contract extension) -> a contract extension (3371ms) What is it called by the Indians? the guy -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (the guy, sounded, indian) -> the guy (3403ms) What is it called by the Indians? Makula -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indians, are referred to as, Makula) -> Makula (3275ms) What is it called by the Indians? the devil -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (the Indians, worship, the devil) -> the devil (3379ms) What is it called by the Indians? the workers -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (the workers, referred to as, ?Indians) -> the workers (3311ms) What is it called by the Indians? the sun -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (The Indians, worshipped, the sun) -> the sun (3401ms) What is it called by the Indians? the customer service agent -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (the customer service agent, sounded, Indian) -> the customer service agent (3330ms) What is it called by the Indians? players -0.666666666668 What is it called by the Indians? -> $x: (indians, young, $x) -> (the Cleveland Indians, have a very good young crop of, players) -> players (3390ms) What is it called by the Indians? American terms -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (an Indian programmer, sounds ridiculously low in, American terms) -> American terms (3318ms) What is it called by the Indians? SKINNER -0.666666666668 What is it called by the Indians? -> $x: (indians, use to be call, $x) -> (the Indian Army, used to be called, SKINNER) -> SKINNER (3367ms) What is it called by the Indians? the Antiquarian Society -0.666666666668 What is it called by the Indians? -> $x: ($x, race, indians) -> (the Antiquarian Society, Have our present race of, Indians) -> the Antiquarian Society (3386ms) What is it called by the Indians? McMurry University athletes -0.666666666668 What is it called by the Indians? -> $x: ($x, will call, indians) -> (McMurry University athletes, will still be called, " Indians) -> McMurry University athletes (3337ms) What is it called by the Indians? Rafael Nadal -0.666666666668 What is it called by the Indians? -> $x: ($x, race, indians) -> (Rafael Nadal, raced into, the Indian Wells quarter-finals) -> Rafael Nadal (3386ms) What is it called by the Indians? a 14-4 lead -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (The Indian, raced to, a 14-4 lead) -> a 14-4 lead (3399ms) What is it called by the Indians? Harry -0.666666666668 What is it called by the Indians? -> $x: ($x, wife, indians) -> (Harry, has a wife of, Malaysian Indian extraction) -> Harry (3283ms) What is it called by the Indians? ?man meat -0.666666666668 What is it called by the Indians? -> $x: (indians, sound like, $x) -> (That Indian guy?s name, sounded like, ?man meat) -> ?man meat (3330ms) What is it called by the Indians? the other matter -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian enrollment, referred to, the other matter) -> the other matter (3347ms) What is it called by the Indians? the black giant -0.666666666668 What is it called by the Indians? -> $x: ($x, worship, indians) -> (the black giant, had been worshipped by, the Indians) -> the black giant (3379ms) What is it called by the Indians? Native Americans -0.666666666668 What is it called by the Indians? -> $x: ($x, use to be call, indians) -> (Native Americans, used to be called, Indians) -> Native Americans (3357ms) What is it called by the Indians? Samba -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (African Sounds Indian, Sounds, Samba) -> Samba (3330ms) What is it called by the Indians? several countries -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (several countries, refer to, the Indian experience) -> several countries (3330ms) What is it called by the Indians? the seventh day -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (The Indian women, worship on, the seventh day) -> the seventh day (3347ms) What is it called by the Indians? Ganesha -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (The ancient indians, worshipped, Ganesha) -> Ganesha (3403ms) What is it called by the Indians? the elvish tunes -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (the elvish tunes, do sound sort of, Indian) -> the elvish tunes (3371ms) What is it called by the Indians? the students -0.666666666668 What is it called by the Indians? -> $x: ($x, race, indians) -> (the students, raced to, an Indian restaurant) -> the students (3342ms) What is it called by the Indians? The guy -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (The guy, sounded, Indian) -> The guy (3324ms) What is it called by the Indians? first sight -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (an Indian, sounds at, first sight) -> first sight (3275ms) What is it called by the Indians? di Resta -0.666666666668 What is it called by the Indians? -> $x: ($x, race, indians) -> (di Resta, would be racing for, the Indian-owned franchise) -> di Resta (3347ms) What is it called by the Indians? God -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (the Inca Indians, worshipped the Sun as, God) -> God (3401ms) What is it called by the Indians? a 20-6 lead -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (the Indians, raced out to, a 20-6 lead) -> a 20-6 lead (3403ms) What is it called by the Indians? The song -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (The song, refers to, Mardi Gras Indian groups) -> The song (3386ms) What is it called by the Indians? Super Azarbayjan -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (Super Azarbayjan, sounds like, an Indian super hero) -> Super Azarbayjan (3367ms) What is it called by the Indians? line -0.666666666668 What is it called by the Indians? -> $x: ($x, race, indians) -> (line, are included other races such as, Indian) -> line (3352ms) What is it called by the Indians? persons -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian, refers to, persons) -> persons (3362ms) What is it called by the Indians? EPIC -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (EPIC, refer to, the Hopi Indians) -> EPIC (3305ms) What is it called by the Indians? the bass drum -0.666666666668 What is it called by the Indians? -> $x: ($x, sound like, indians) -> (the bass drum, is made to sound like, Indian drums) -> the bass drum (3362ms) What is it called by the Indians? Ogopogo -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indians, referred to, Ogopogo) -> Ogopogo (3299ms) What is it called by the Indians? a Great Spirit -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (The Indians, worshipped, a Great Spirit) -> a Great Spirit (3386ms) What is it called by the Indians? the Creator -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (many American Indians, referred to, the Creator) -> the Creator (3352ms) What is it called by the Indians? private e-mails -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (private e-mails, referred to, the Indians) -> private e-mails (3376ms) What is it called by the Indians? the wind -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (The Indian, prefers the soft sound of, the wind) -> the wind (3399ms) What is it called by the Indians? the walled city -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Ancient American Indian legends, refer to, the walled city) -> the walled city (3401ms) What is it called by the Indians? the caste Chamar -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (the way Indians, referred to, the caste Chamar) -> the caste Chamar (3336ms) What is it called by the Indians? the Sun -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (the Indian no more, worshiped, the Sun) -> the Sun (3401ms) What is it called by the Indians? odds -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (pokernews global new york indian casinos, greyhound racing, odds) -> odds (3383ms) What is it called by the Indians? The Kundalini force -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (The Kundalini force, refers to, the ancient Indian idea) -> The Kundalini force (3336ms) What is it called by the Indians? Rock & Roll -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (indigenous Native Indian, sounds with, Rock & Roll) -> Rock & Roll (3380ms) What is it called by the Indians? Naxalism -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian leaders, have referred to, Naxalism) -> Naxalism (3403ms) What is it called by the Indians? Hindu religion -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian, is referring to, Hindu religion) -> Hindu religion (3305ms) What is it called by the Indians? The author -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (The author, refers to, the Indian) -> The author (3275ms) What is it called by the Indians? ?amakulas -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (?amakulas, was used to refer to, Indians) -> ?amakulas (3399ms) What is it called by the Indians? Ulips -0.666666666668 What is it called by the Indians? -> $x: ($x, young, indians) -> (Ulips, are young products in, the Indian market) -> Ulips (3347ms) What is it called by the Indians? First Nations -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Status Indian, refers to, First Nations) -> First Nations (3390ms) What is it called by the Indians? a company -0.666666666668 What is it called by the Indians? -> $x: ($x, will call, indians) -> (a company, will be called, an Indian company) -> a company (3299ms) What is it called by the Indians? American actor Brian White -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (American actor Brian White, sounds upbeat about, Indian films) -> American actor Brian White (3379ms) What is it called by the Indians? animals -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indians, referred to, animals) -> animals (3362ms) What is it called by the Indians? Red Indians -0.666666666668 What is it called by the Indians? -> $x: (indians, use to be call, $x) -> (Some U.S Indians, (used to be called, Red Indians) -> Red Indians (3330ms) What is it called by the Indians? Mamak -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Mamak, refers to, the Indian Muslims) -> Mamak (3399ms) What is it called by the Indians? the Reservation -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian constitution, refers to, the Reservation) -> the Reservation (3336ms) What is it called by the Indians? front -0.666666666668 What is it called by the Indians? -> $x: (indians, young, $x) -> (Indian troops, kill young children right in, front) -> front (3357ms) What is it called by the Indians? Oklahoma -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (Indian, Sounds in, Oklahoma) -> Oklahoma (3371ms) What is it called by the Indians? the tsunami -0.666666666668 What is it called by the Indians? -> $x: ($x, race, indians) -> (the tsunami, raced across, the Indian Ocean) -> the tsunami (3312ms) What is it called by the Indians? Aani -0.666666666668 What is it called by the Indians? -> $x: ($x, young, indians) -> (Aani, [is] a young girl in, a large Indian family) -> Aani (3371ms) What is it called by the Indians? Agni -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (the Indian Brahmin priests, were worshiping, Agni) -> Agni (3305ms) What is it called by the Indians? the Delta Force -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian television, referred to, the Delta Force) -> the Delta Force (3358ms) What is it called by the Indians? a reptilian race -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian texts, refer to, a reptilian race) -> a reptilian race (3342ms) What is it called by the Indians? Kamaljit -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (Kamaljit, sounds though like, an Indian name) -> Kamaljit (3367ms) What is it called by the Indians? drives -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (Ounce ? sample and Indian sitar, sounds, drives) -> drives (3395ms) What is it called by the Indians? the ornamental corn -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (?Indian Corn ?, refers to, the ornamental corn) -> the ornamental corn (3383ms) What is it called by the Indians? disabilities -0.666666666668 What is it called by the Indians? -> $x: (indians, young, $x) -> (Indian parents, have children/young adults with, disabilities) -> disabilities (3376ms) What is it called by the Indians? The word -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (The word, refers to, Indians) -> The word (3392ms) What is it called by the Indians? Neal -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Neal, refers to, the Indian city) -> Neal (3376ms) What is it called by the Indians? The caller -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (The caller, sounded, Indian) -> The caller (3376ms) What is it called by the Indians? Kerala -0.666666666668 What is it called by the Indians? -> $x: ($x, young, indians) -> (Kerala, is a very young addition to, the Indian peninsula) -> Kerala (3312ms) What is it called by the Indians? a contending position -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (INDIAN BROOM, raced to, a contending position) -> a contending position (3357ms) What is it called by the Indians? The store manager -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (The store manager, sounds, East Indian) -> The store manager (3390ms) What is it called by the Indians? goalkeeper Sam Walker -0.666666666668 What is it called by the Indians? -> $x: (indians, young, $x) -> (the Indian team, YOUNG, goalkeeper Sam Walker) -> goalkeeper Sam Walker (3299ms) What is it called by the Indians? the location -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (The Chippewa Indians, referred to, the location) -> the location (3390ms) What is it called by the Indians? the Great Spirit -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (Indians, Worshiped, the Great Spirit) -> the Great Spirit (3395ms) What is it called by the Indians? The agency -0.666666666668 What is it called by the Indians? -> $x: ($x, will call, indians) -> (The agency, will reportedly be called, the Indian Agency) -> The agency (3376ms) What is it called by the Indians? down -0.666666666668 What is it called by the Indians? -> $x: (indians, young, $x) -> (the Indians, would send half a dozen of their young Lads, down) -> down (3347ms) What is it called by the Indians? the Mission Church -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (The Wyandot Indians, worshipped at, the Mission Church) -> the Mission Church (3386ms) What is it called by the Indians? rats -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (Indians, always worshipped, rats) -> rats (3336ms) What is it called by the Indians? the indigenous people -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (the indigenous people, are sometimes referred to as, Indians) -> the indigenous people (3283ms) What is it called by the Indians? The Swami -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (The Swami, referred to, the Indian scientist) -> The Swami (3371ms) What is it called by the Indians? Neem -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Ancient Indian texts, refer to, Neem) -> Neem (3367ms) What is it called by the Indians? Uganda -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (Indian and Chinese companies, have joined the race for, Uganda) -> Uganda (3357ms) What is it called by the Indians? the way drums -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (the way drums, can sound in, Indian classical music) -> the way drums (3371ms) What is it called by the Indians? a quaver -0.666666666668 What is it called by the Indians? -> $x: ($x, sound like, indians) -> (a quaver, sounded a little like, American Indian song) -> a quaver (3399ms) What is it called by the Indians? no monsoon -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (no monsoon, must sound quite incredible to, the indian mind) -> no monsoon (3386ms) What is it called by the Indians? town -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (town, sounds different from, the Indian food) -> town (3305ms) What is it called by the Indians? the same kind -0.666666666668 What is it called by the Indians? -> $x: ($x, worship, indians) -> (the same kind, are still worshipped in, Indian villages today) -> the same kind (3386ms) What is it called by the Indians? the Caribbean fuse -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (classical Indian music, here sounds from, the Caribbean fuse) -> the Caribbean fuse (3393ms) What is it called by the Indians? The name sepoy -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (The name sepoy, refers to, the Indian soldiers) -> The name sepoy (3357ms) What is it called by the Indians? a fanged dwarf villain -0.666666666668 What is it called by the Indians? -> $x: ($x, worship, indians) -> (a fanged dwarf villain, worshipped by, Inca Indians) -> a fanged dwarf villain (3367ms) What is it called by the Indians? Hanson -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Hanson, referred to, American Indian resistance) -> Hanson (3291ms) What is it called by the Indians? the pale skin -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (Indian society, generally worships, the pale skin) -> the pale skin (3283ms) What is it called by the Indians? MARRIAGE -0.666666666668 What is it called by the Indians? -> $x: ($x, sound like, indians) -> (MARRIAGE, 're just sounding like, a traditional Indian housewife) -> MARRIAGE (3392ms) What is it called by the Indians? The latter -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (The latter, refer to, the Indian Army) -> The latter (3362ms) What is it called by the Indians? asleep -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (the Indians, were sound, asleep) -> asleep (3383ms) What is it called by the Indians? Fort Miami -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (Fleeing Indians, raced toward, Fort Miami) -> Fort Miami (3371ms) What is it called by the Indians? a French man -0.666666666668 What is it called by the Indians? -> $x: ($x, sound like, indians) -> (a French man, sounds astonishingly like, an Indian) -> a French man (3401ms) What is it called by the Indians? the beat -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (the beat, sounds, a little West Indian) -> the beat (3330ms) What is it called by the Indians? Vancouver -0.666666666668 What is it called by the Indians? -> $x: ($x, sound like, indians) -> (Vancouver, sounds like, Indian pop) -> Vancouver (3395ms) What is it called by the Indians? the altar -0.666666666668 What is it called by the Indians? -> $x: ($x, worship, indians) -> (the altar, is worshiped in, most Indian people) -> the altar (3403ms) What is it called by the Indians? Jamaica -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (?British West Indian colonies ?, refers to, Jamaica) -> Jamaica (3318ms) What is it called by the Indians? either sex -0.666666666668 What is it called by the Indians? -> $x: ($x, young, indians) -> (either sex, have been taken prisoners young by, Indians) -> either sex (3299ms) What is it called by the Indians? IUP -0.666666666668 What is it called by the Indians? -> $x: ($x, will call, indians) -> (IUP, still will be called, the Indians) -> IUP (3376ms) What is it called by the Indians? side -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (the old Church white men and Indians, worshiped, side) -> side (3367ms) What is it called by the Indians? Herb -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (?The Indians, won the race for, Herb) -> Herb (3393ms) What is it called by the Indians? the fusion -0.666666666668 What is it called by the Indians? -> $x: ($x, sound like, indians) -> (the fusion, sounds like, traditional Indian music) -> the fusion (3389ms) What is it called by the Indians? earlier -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (the Old Indian Lane, referred to, earlier) -> earlier (3401ms) What is it called by the Indians? the bird -0.666666666668 What is it called by the Indians? -> $x: ($x, worship, indians) -> (the bird, was once worshipped by, the Mayan and Aztec Indians) -> the bird (3275ms) What is it called by the Indians? Telugu and Kannada -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (two Indians translators, recorded sounds in, Telugu and Kannada) -> Telugu and Kannada (3399ms) What is it called by the Indians? Kali -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (an ancient Indian religious organization, worshiped, Kali) -> Kali (3371ms) What is it called by the Indians? the developments -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (the Indian official, referred to, the developments) -> the developments (3305ms) What is it called by the Indians? the goddess -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (an Indian cult, worshiped, the goddess) -> the goddess (3312ms) What is it called by the Indians? the staple crops -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Early Indians, referred to, the staple crops) -> the staple crops (3352ms) What is it called by the Indians? Jewish Standard Time -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (Jewish Standard Time, sounds a lot like, Indian Standard Time) -> Jewish Standard Time (3362ms) What is it called by the Indians? the variegated variety -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian corn, refers to, the variegated variety) -> the variegated variety (3352ms) What is it called by the Indians? dentistry -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (dentistry, refer to, the Indian Dental Association) -> dentistry (3311ms) What is it called by the Indians? control ? -0.666666666668 What is it called by the Indians? -> $x: (indians, young, $x) -> (The Indians, have several young players under, control ?) -> control ? (3283ms) What is it called by the Indians? the caller -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (the caller, sounds, Indian) -> the caller (3395ms) What is it called by the Indians? a blast -0.666666666668 What is it called by the Indians? -> $x: ($x, sound like, indians) -> (a blast, sounded like, an Indian snake charmer) -> a blast (3383ms) What is it called by the Indians? suicidal -0.666666666668 What is it called by the Indians? -> $x: (indians, will call, $x) -> (the Indian highways, will normally be called, suicidal) -> suicidal (3305ms) What is it called by the Indians? soulful hip hop -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (subtle South-Asian and West Indian, sounds with, soulful hip hop) -> soulful hip hop (3371ms) What is it called by the Indians? Indians -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (the Indian Navy, will sound naive to, Indians) -> Indians (3312ms) What is it called by the Indians? the terms -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (the terms, refer generally to, Indians) -> the terms (3393ms) What is it called by the Indians? indigenous peoples -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian government, refers to, indigenous peoples) -> indigenous peoples (3299ms) What is it called by the Indians? Australia -0.666666666668 What is it called by the Indians? -> $x: (indians, wife, $x) -> (an Indian, killed his wife in, Australia) -> Australia (3324ms) What is it called by the Indians? the goddess of death -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (an Indian cult, worshiped, the goddess of death) -> the goddess of death (3312ms) What is it called by the Indians? Suneet and Raja Tulli -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indians, referred to as, Suneet and Raja Tulli) -> Suneet and Raja Tulli (3347ms) What is it called by the Indians? reelection -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (reelection, referred to, an Indian employee) -> reelection (3324ms) What is it called by the Indians? the goddess Huitzilopochotli -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (Zapotec Indians, worshipped, the goddess Huitzilopochotli) -> the goddess Huitzilopochotli (3379ms) What is it called by the Indians? Eskimos -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (" Indians, refers to, Eskimos) -> Eskimos (3305ms) What is it called by the Indians? Mango shake -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (Mango shake, sounds perfect for, the Indian summer) -> Mango shake (3399ms) What is it called by the Indians? PNC Park -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (PNC Park, sounds exceedingly similar to, the Indians) -> PNC Park (3367ms) What is it called by the Indians? a place -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (an Indian term, referred to, a place) -> a place (3383ms) What is it called by the Indians? Wen -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (Wen, sounded unhappy with, the Indian media) -> Wen (3311ms) What is it called by the Indians? Maguire -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Maguire, refers to, the Indians) -> Maguire (3376ms) What is it called by the Indians? The Stallions -0.666666666668 What is it called by the Indians? -> $x: ($x, use to be call, indians) -> (The Stallions, used to be called, the Indians) -> The Stallions (3299ms) What is it called by the Indians? I?ve -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (I?ve, always enjoyed the sound of, Indian music) -> I?ve (3318ms) What is it called by the Indians? usually -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (an Indian, is referred to, usually) -> usually (3399ms) What is it called by the Indians? British Sahibs -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indians, were referred to by, British Sahibs) -> British Sahibs (3399ms) What is it called by the Indians? the band -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indians, referred both to, the band) -> the band (3275ms) What is it called by the Indians? Taylor -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (Native-Indian-like tom-tom, sounds from, Taylor) -> Taylor (3379ms) What is it called by the Indians? terms -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (terms, refers to, Indians) -> terms (3283ms) What is it called by the Indians? the treaty -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (the treaty, refers to, ?Indian Kings and Queens?) -> the treaty (3352ms) What is it called by the Indians? a younger version -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (Ten Little Indians, sounds much like, a younger version) -> a younger version (3403ms) What is it called by the Indians? term ?tribal? -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (term ?tribal?, refers to, an Indian tribe) -> term ?tribal? (3362ms) What is it called by the Indians? The victim -0.666666666668 What is it called by the Indians? -> $x: ($x, wife, indians) -> (The victim, was the ex-wife of, former Indian Ambassador) -> The victim (3403ms) What is it called by the Indians? the saloon -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (Indians, then had raced for, the saloon) -> the saloon (3283ms) What is it called by the Indians? the phone -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (the phone, sounded, Indian) -> the phone (3347ms) What is it called by the Indians? The Marietta Times THUD! -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (The Marietta Times THUD!, 's the sound of, my Cleveland Indians) -> The Marietta Times THUD! (3383ms) What is it called by the Indians? the alarm bells -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (the alarm bells, have sounded on, the tiny Indian Ocean island) -> the alarm bells (3318ms) What is it called by the Indians? Tituba -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (John Indian, playfully refers to, Tituba) -> Tituba (3352ms) What is it called by the Indians? The voice -0.666666666668 What is it called by the Indians? -> $x: ($x, sound like, indians) -> (The voice, sounds like, old Indian) -> The voice (3392ms) What is it called by the Indians? Kun Faya Kun -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (Kun Faya Kun, sound like, an Indian melody) -> Kun Faya Kun (3383ms) What is it called by the Indians? the mountains and valleys -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (The Indians, referred to, the mountains and valleys) -> the mountains and valleys (3401ms) What is it called by the Indians? Switzerland -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (Switzerland, sounds to, Indians) -> Switzerland (3312ms) What is it called by the Indians? the Venezuelan goddess -0.666666666668 What is it called by the Indians? -> $x: ($x, worship, indians) -> (the Venezuelan goddess, was worshipped by, the native Indians) -> the Venezuelan goddess (3362ms) What is it called by the Indians? pictures -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (the Indian grammarian, refers to, pictures) -> pictures (3275ms) What is it called by the Indians? ?Jefferson -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (?Jefferson, was referring only to, Indians) -> ?Jefferson (3389ms) What is it called by the Indians? Mr. Abramoff -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Mr. Abramoff, referred to, these Indians) -> Mr. Abramoff (3357ms) What is it called by the Indians? a deity -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (Indian toddler Lakshmi Tatma, worshipped as, a deity) -> a deity (3389ms) What is it called by the Indians? a date -0.666666666668 What is it called by the Indians? -> $x: (indians, young, $x) -> (Indian policewomen, attacked a young woman on, a date) -> a date (3386ms) What is it called by the Indians? First Nations peoples -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (First Nations peoples, refers to, the Indian people) -> First Nations peoples (3386ms) What is it called by the Indians? a little trumpet -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (The Indians, sounded, a little trumpet) -> a little trumpet (3352ms) What is it called by the Indians? the other doctors -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (the other doctors, refer to, an Indian doctor) -> the other doctors (3337ms) What is it called by the Indians? water -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (these Indians, worship, water) -> water (3392ms) What is it called by the Indians? Eastern -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (Eastern, sounds, Indian tabla player) -> Eastern (3336ms) What is it called by the Indians? the Lo-Shu -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (The ancient Indian seers, referred to, the Lo-Shu) -> the Lo-Shu (3383ms) What is it called by the Indians? The last validation -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (The last validation, refers to, my Indian heritage) -> The last validation (3324ms) What is it called by the Indians? South Asia -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (South Asia, refers to, the Indian subcontinent) -> South Asia (3362ms) What is it called by the Indians? March -0.666666666668 What is it called by the Indians? -> $x: (indians, will call, $x) -> (An Indians Rep, will call you in, March) -> March (3376ms) What is it called by the Indians? Gandhi&emdash ;he -0.666666666668 What is it called by the Indians? -> $x: (indians, young, $x) -> (An old Indian man, had been a young aide to, Gandhi&emdash ;he) -> Gandhi&emdash ;he (3371ms) What is it called by the Indians? Indica -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Indica, refers to, its Indian origin) -> Indica (3342ms) What is it called by the Indians? the ballots -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (the ballots, referred to, Indians) -> the ballots (3386ms) What is it called by the Indians? 1 Cylan -0.666666666668 What is it called by the Indians? -> $x: ($x, young, indians) -> (1 Cylan, is a young girl in, a small east Indian village) -> 1 Cylan (3399ms) What is it called by the Indians? a tea -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (a tea, sounded, Indian i .e) -> a tea (3403ms) What is it called by the Indians? a contract -0.666666666668 What is it called by the Indians? -> $x: (indians, young, $x) -> (the Indians, have signed a young player to, a contract) -> a contract (3392ms) What is it called by the Indians? the Hindu demigods -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (the Indian cricketers, are worshipped like, the Hindu demigods) -> the Hindu demigods (3324ms) What is it called by the Indians? snakes -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (Indians, worship, snakes) -> snakes (3403ms) What is it called by the Indians? the same legendary spot -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (the Indians, refer to, the same legendary spot) -> the same legendary spot (3362ms) What is it called by the Indians? lanes -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (Indian cab-drivers, raced across, lanes) -> lanes (3330ms) What is it called by the Indians? bad today -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (Indian people, does n?t sound so, bad today) -> bad today (3291ms) What is it called by the Indians? the island -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (the Indians, referred to, the island) -> the island (3299ms) What is it called by the Indians? historical figures -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Old Indian Days, refers to, historical figures) -> historical figures (3371ms) What is it called by the Indians? a cow horn -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (an Indian, sounded, a cow horn) -> a cow horn (3403ms) What is it called by the Indians? names -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (names, referring to, Indians) -> names (3376ms) What is it called by the Indians? the term -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (the term, often refers to, Indians) -> the term (3336ms) What is it called by the Indians? the withdrawal -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian leaders, refers to, the withdrawal) -> the withdrawal (3291ms) What is it called by the Indians? participation -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (Indian economy, will be sounded with, participation) -> participation (3380ms) What is it called by the Indians? the earth -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (American Indian traditions, refer to, the earth) -> the earth (3299ms) What is it called by the Indians? Rahul -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Rahul, refers to, a prominent Indian actor) -> Rahul (3376ms) What is it called by the Indians? Junglee .com -0.666666666668 What is it called by the Indians? -> $x: (indians, will call, $x) -> (their Indian branch, will be called, Junglee .com) -> Junglee .com (3393ms) What is it called by the Indians? Mound builders -0.666666666668 What is it called by the Indians? -> $x: ($x, race, indians) -> (Mound builders, were a different race than, Indians) -> Mound builders (3395ms) What is it called by the Indians? Abramoff -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Abramoff, referred to, his Indian clients) -> Abramoff (3392ms) What is it called by the Indians? a 6th grade teacher -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (a 6th grade teacher, referred to, American Indians) -> a 6th grade teacher (3386ms) What is it called by the Indians? Dev? -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (the Indian context, is worship of, Dev?) -> Dev? (3352ms) What is it called by the Indians? The Hot Stone -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (The Hot Stone, refers to, the Oneida Indians) -> The Hot Stone (3283ms) What is it called by the Indians? the Mexican cactus -0.666666666668 What is it called by the Indians? -> $x: ($x, worship, indians) -> (the Mexican cactus, was once worshiped by, Indian tribes) -> the Mexican cactus (3312ms) What is it called by the Indians? the gods -0.666666666668 What is it called by the Indians? -> $x: ($x, worship, indians) -> (the gods, worshipped by, the Indians) -> the gods (3380ms) What is it called by the Indians? Even the East India Company -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Even the East India Company, referred to, Indian Muslims) -> Even the East India Company (3379ms) What is it called by the Indians? the new King -0.666666666668 What is it called by the Indians? -> $x: (indians, sound like, $x) -> (Indian oligarch Tata, is sounding like, the new King) -> the new King (3347ms) What is it called by the Indians? The original phrasing -0.666666666668 What is it called by the Indians? -> $x: ($x, sound like, indians) -> (The original phrasing, sounds like, the Indian band) -> The original phrasing (3390ms) What is it called by the Indians? the music players -0.666666666668 What is it called by the Indians? -> $x: ($x, sound like, indians) -> (the music players, sounded like, Indian words) -> the music players (3357ms) What is it called by the Indians? risk -0.666666666668 What is it called by the Indians? -> $x: (indians, young, $x) -> (Indian sensibilities, puts young lives at, risk) -> risk (3403ms) What is it called by the Indians? April 9 , 2010 -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (Indian Express Eco, Sounds, April 9 , 2010) -> April 9 , 2010 (3275ms) What is it called by the Indians? trees -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Native American Indians, refer to, trees) -> trees (3358ms) What is it called by the Indians? Bengalis -0.666666666668 What is it called by the Indians? -> $x: ($x, race, indians) -> (Bengalis, are the same race as, Indians) -> Bengalis (3367ms) What is it called by the Indians? a defiant note -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (an Indian official, sounded, a defiant note) -> a defiant note (3395ms) What is it called by the Indians? rivers -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (Indians, have worshipped, rivers) -> rivers (3401ms) What is it called by the Indians? One Maori site -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (One Maori site, referred to, Indian ambition) -> One Maori site (3367ms) What is it called by the Indians? Snack -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (Snack, enjoy the sounds of, live Indian music) -> Snack (3393ms) What is it called by the Indians? Dalits -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Bigoted Indians, refer to, Dalits) -> Dalits (3362ms) What is it called by the Indians? Atul -0.666666666668 What is it called by the Indians? -> $x: ($x, young, indians) -> (Atul, is a young student of, Indian origin) -> Atul (3352ms) What is it called by the Indians? the Formula 1 -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (Indian GP, was the smooth race in, the Formula 1) -> the Formula 1 (3342ms) What is it called by the Indians? spiced tea -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indians, normally refer to, spiced tea) -> spiced tea (3383ms) What is it called by the Indians? Ankytrixx -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (Ankytrixx, truly represents the sound of, Indian EDM.) -> Ankytrixx (3352ms) What is it called by the Indians? Buddh International Circuit -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (2011 Indian Grand Prix, Race Track, Buddh International Circuit) -> Buddh International Circuit (3367ms) What is it called by the Indians? a song sequence -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian movies, refers to, a song sequence) -> a song sequence (3324ms) What is it called by the Indians? cricket -0.666666666668 What is it called by the Indians? -> $x: ($x, worship, indians) -> (cricket, is worshiped in, India and Indians) -> cricket (3330ms) What is it called by the Indians? Radha Krishna Portraits -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (Indian love, worship, Radha Krishna Portraits) -> Radha Krishna Portraits (3367ms) What is it called by the Indians? The Buddha -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (The Buddha, refers to, an Indian sage) -> The Buddha (3357ms) What is it called by the Indians? Fools Crow -0.666666666668 What is it called by the Indians? -> $x: ($x, young, indians) -> (Fools Crow, is a young warrior in, the Blackfeet Indian tribe) -> Fools Crow (3275ms) What is it called by the Indians? garlic -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Egyptian and Indian cultures, referred to, garlic) -> garlic (3383ms) What is it called by the Indians? one group -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (The Indians, worshiped, one group) -> one group (3401ms) What is it called by the Indians? corn and corn meal -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (?Indian?, was used to refer to, corn and corn meal) -> corn and corn meal (3342ms) What is it called by the Indians? the work -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (the work, refers to, Indian) -> the work (3386ms) What is it called by the Indians? Monkey God -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (an Indian Hindu, worships, Monkey God) -> Monkey God (3401ms) What is it called by the Indians? one Supreme Being -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (The Indians, worship, one Supreme Being) -> one Supreme Being (3386ms) What is it called by the Indians? protesters -0.666666666668 What is it called by the Indians? -> $x: ($x, sound like, indians) -> (protesters, sounds like, a Mardi Gras Indians song) -> protesters (3389ms) What is it called by the Indians? a 5-1 lead -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (the Indian, raced to, a 5-1 lead) -> a 5-1 lead (3347ms) What is it called by the Indians? The helicopters -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (The helicopters, make the sound of, American Indian war drums) -> The helicopters (3342ms) What is it called by the Indians? a body -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian people, refers to, a body) -> a body (3299ms) What is it called by the Indians? Basil -0.666666666668 What is it called by the Indians? -> $x: ($x, worship, indians) -> (Basil, is worshipped in, Indian culture) -> Basil (3380ms) What is it called by the Indians? the poem -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (the poem, refer to, Indian people) -> the poem (3337ms) What is it called by the Indians? the bombers -0.666666666668 What is it called by the Indians? -> $x: ($x, young, indians) -> (the bombers, was a young man of, West Indian descent) -> the bombers (3336ms) What is it called by the Indians? The Spanish -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (The Spanish, referred to, Indians) -> The Spanish (3324ms) What is it called by the Indians? Coalinga -0.666666666668 What is it called by the Indians? -> $x: ($x, sound like, indians) -> (Coalinga, sounds like, an Indian name) -> Coalinga (3376ms) What is it called by the Indians? the melodies -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (Indian, sounds round out, the melodies) -> the melodies (3312ms) What is it called by the Indians? a human -0.666666666668 What is it called by the Indians? -> $x: ($x, sound like, indians) -> (a human, sounded like, an Indian accent) -> a human (3299ms) What is it called by the Indians? Payuta -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (Payuta, blends the sound of, the Indian sitar) -> Payuta (3379ms) What is it called by the Indians? ?Hindus ? -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indians, were referred to as, ?Hindus ?) -> ?Hindus ? (3275ms) What is it called by the Indians? different churches -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (West Indians, worshipped in, different churches) -> different churches (3390ms) What is it called by the Indians? the shore -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (The Indians, raced to, the shore) -> the shore (3389ms) What is it called by the Indians? White Sage -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (The Cahuilla Indians, referred to, White Sage) -> White Sage (3291ms) What is it called by the Indians? Ecuador -0.666666666668 What is it called by the Indians? -> $x: ($x, race, indians) -> (Ecuador, are a mixed race of, the original Ameri-Indians) -> Ecuador (3318ms) What is it called by the Indians? a road accident -0.666666666668 What is it called by the Indians? -> $x: (indians, young, $x) -> (a West Indian family, had lost a young child in, a road accident) -> a road accident (3376ms) What is it called by the Indians? Kurds -0.666666666668 What is it called by the Indians? -> $x: ($x, race, indians) -> (Kurds, are a mixed race of, Indians) -> Kurds (3337ms) What is it called by the Indians? the accordian -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (the accordian, sounds from, the Indian Ocean) -> the accordian (3291ms) What is it called by the Indians? Six Sigma and -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (The Indian?s, also referred to, Six Sigma and) -> Six Sigma and (3342ms) What is it called by the Indians? the cavarlymen -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indians, referred to, the cavarlymen) -> the cavarlymen (3336ms) What is it called by the Indians? two particular local issues -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian Affairs, refers to, two particular local issues) -> two particular local issues (3358ms) What is it called by the Indians? the ' Mother -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (the ancient Indians, worshiped, the ' Mother) -> the ' Mother (3376ms) What is it called by the Indians? Soundtrack -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (Soundtrack, is deeply relaxing sound of, Indian Creek Canyon) -> Soundtrack (3401ms) What is it called by the Indians? the Lenape -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Other Indians, referred to, the Lenape) -> the Lenape (3367ms) What is it called by the Indians? 2 percussion -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (2 percussion, Sounds for, Indian music) -> 2 percussion (3318ms) What is it called by the Indians? LMC -0.666666666668 What is it called by the Indians? -> $x: ($x, will call, indians) -> (LMC, will continue to be called, a Indians) -> LMC (3312ms) What is it called by the Indians? the general policy and laws -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (The Indian Office, refers to, the general policy and laws) -> the general policy and laws (3283ms) What is it called by the Indians? Rs -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Rs, refers to, the Indian currency) -> Rs (3275ms) What is it called by the Indians? India -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (Indians, worship, India) -> India (3401ms) What is it called by the Indians? in -0.666666666668 What is it called by the Indians? -> $x: (indians, wife, $x) -> (an Indian, may bring only one wife, in) -> in (3305ms) What is it called by the Indians? The ancient Greeks -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (The ancient Greeks, referred to, the Indians) -> The ancient Greeks (3395ms) What is it called by the Indians? literally skinning American Indians -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Redskin Indians, refers to, literally skinning American Indians) -> literally skinning American Indians (3330ms) What is it called by the Indians? the coconut -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (The Indians, refer to, the coconut) -> the coconut (3347ms) What is it called by the Indians? a member -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian, refers to, a member) -> a member (3386ms) What is it called by the Indians? Japan -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (Thursday Indian driver Narain Karthikeyan, now raced in, Japan) -> Japan (3291ms) What is it called by the Indians? often -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (Indians, worship India, often) -> often (3325ms) What is it called by the Indians? the Spanish and Columbus -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (the native AmerIndians, worshiped, the Spanish and Columbus) -> the Spanish and Columbus (3383ms) What is it called by the Indians? the beginning -0.666666666668 What is it called by the Indians? -> $x: ($x, sound like, indians) -> (the beginning, sounded like, an indian telemarketer) -> the beginning (3396ms) What is it called by the Indians? Hawthorne briefly -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Hawthorne briefly, refers to, Indians) -> Hawthorne briefly (3358ms) What is it called by the Indians? depicts -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (depicts, refers to, an American Indian tribe) -> depicts (3393ms) What is it called by the Indians? a Laloo Prasad Yadav -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (Indians, have been worshipping, a Laloo Prasad Yadav) -> a Laloo Prasad Yadav (3399ms) What is it called by the Indians? a woman -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (a woman, refers to, Indians) -> a woman (3305ms) What is it called by the Indians? cow -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (the Indians, worship, cow) -> cow (3367ms) What is it called by the Indians? a guy -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (a guy, sound like, an Indian) -> a guy (3399ms) What is it called by the Indians? An alert -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (An alert, was sounded in, the Indian capital) -> An alert (3283ms) What is it called by the Indians? Kannada -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (Indian English, sounds the same as, Kannada) -> Kannada (3376ms) What is it called by the Indians? weird -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (weird, sounds like, an Indian snake-charmer) -> weird (3336ms) What is it called by the Indians? a single season -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (33-year-old Indian Karthikeyan, raced, a single season) -> a single season (3393ms) What is it called by the Indians? Thome -0.666666666668 What is it called by the Indians? -> $x: ($x, young, indians) -> (Thome, was a young player with, the Cleveland Indians) -> Thome (3275ms) What is it called by the Indians? the Indian Spice Enspicopedia -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (Indian spices, refer to, the Indian Spice Enspicopedia) -> the Indian Spice Enspicopedia (3401ms) What is it called by the Indians? Den Paradera -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Den Paradera, refers to, Paraguiri Indians) -> Den Paradera (3312ms) What is it called by the Indians? Ashwagandha -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Ashwagandha, is referred to as, Indian Ginseng) -> Ashwagandha (3395ms) What is it called by the Indians? a Greek word -0.666666666668 What is it called by the Indians? -> $x: (indians, sound like, $x) -> (Shawnee Indian Monocacy, sounds like, a Greek word) -> a Greek word (3362ms) What is it called by the Indians? the sky -0.666666666668 What is it called by the Indians? -> $x: ($x, wife, indians) -> (the sky, became the wife of, that same Alabama Indian) -> the sky (3347ms) What is it called by the Indians? words -0.666666666668 What is it called by the Indians? -> $x: ($x, sound like, indians) -> (words, sounded like, an Indian language) -> words (3386ms) What is it called by the Indians? a great game -0.666666666668 What is it called by the Indians? -> $x: (indians, sound like, $x) -> (New MOT Grunfeld Indian, Sounds like, a great game) -> a great game (3403ms) What is it called by the Indians? Flat racing -0.666666666668 What is it called by the Indians? -> $x: ($x, race, indians) -> (Flat racing, Horse races, McDowell's Indian Derby) -> Flat racing (3352ms) What is it called by the Indians? Kissinger -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Kissinger, referred to, the Indians) -> Kissinger (3392ms) What is it called by the Indians? Quanna Pakka -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (a Cherokee Indian, sounds like, Quanna Pakka) -> Quanna Pakka (3379ms) What is it called by the Indians? the Indian Navy -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (the Indian Navy, will sound naive to, Indians) -> the Indian Navy (3352ms) What is it called by the Indians? Christine Herdman -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (Christine Herdman, referred to, Indian mascots) -> Christine Herdman (3283ms) What is it called by the Indians? devils -0.666666666668 What is it called by the Indians? -> $x: (indians, worship, $x) -> (the Indians, worshipped, devils) -> devils (3283ms) What is it called by the Indians? Tamil names -0.666666666668 What is it called by the Indians? -> $x: (indians, sound like, $x) -> (the Indian names, mostly sounded like, Tamil names) -> Tamil names (3404ms) What is it called by the Indians? an hour -0.666666666668 What is it called by the Indians? -> $x: (indians, sound, $x) -> (these Indians, sounded the alarm about, an hour) -> an hour (3275ms) What is it called by the Indians? the native people -0.666666666668 What is it called by the Indians? -> $x: ($x, refer to, indians) -> (the native people, are still ignorantly referred to as, Indians) -> the native people (3403ms) What is it called by the Indians? the surge -0.666666666668 What is it called by the Indians? -> $x: (indians, young, $x) -> (Indian, will be young as well as, the surge) -> the surge (3291ms) What is it called by the Indians? the role -0.666666666668 What is it called by the Indians? -> $x: (indians, refer to, $x) -> (The ancient Indian texts, referred to, the role) -> the role (3324ms) What is it called by the Indians? Ohio -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (Ohio, is the sound of, an indian yawning) -> Ohio (3347ms) What is it called by the Indians? a newspaper reporter -0.666666666668 What is it called by the Indians? -> $x: (indians, wife, $x) -> (The Indian chief, introduced his wife to, a newspaper reporter) -> a newspaper reporter (3380ms) What is it called by the Indians? the pack -0.666666666668 What is it called by the Indians? -> $x: (indians, race, $x) -> (Indian companies, could eventually race ahead of, the pack) -> the pack (3305ms) What is it called by the Indians? a snake god -0.666666666668 What is it called by the Indians? -> $x: ($x, worship, indians) -> (a snake god, worshiped in, West Indian) -> a snake god (3342ms) What is it called by the Indians? tibetan -0.666666666668 What is it called by the Indians? -> $x: ($x, sound, indians) -> (tibetan, sounds, half chinese half indian) -> tibetan (3401ms) What are pathogens? Specific diseases 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Specific diseases, caused by, invasive pathogens) -> Specific diseases (7929ms) What are pathogens? Diseases 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Diseases, caused by, plant pathogens) -> Diseases (9629ms) What are pathogens? ?An illness 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (?An illness, can be caused by, pathogens) -> ?An illness (5630ms) What are pathogens? an infectious disease 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (an infectious disease, caused by, a pathogen) -> an infectious disease (5630ms) What are pathogens? the condition 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (the condition, is caused by, pathogens) -> the condition (6500ms) What are pathogens? the root 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (the root, causes of, pathogens) -> the root (8502ms) What are pathogens? Human illnesses 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Human illnesses, caused by, foodborne pathogens) -> Human illnesses (6500ms) What are pathogens? humans 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (humans, are caused by, pathogens) -> humans (3023ms) What are pathogens? campylobacter 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (campylobacter, is a bacteria that causes, Pathogens) -> campylobacter (8574ms) What are pathogens? The most diseases 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (The most diseases, are caused due to, pathogens) -> The most diseases (9629ms) What are pathogens? a bacterial infection 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (a bacterial infection, caused by, a pathogen) -> a bacterial infection (6672ms) What are pathogens? a fungal infection 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (a fungal infection, caused by, the pathogen) -> a fungal infection (9629ms) What are pathogens? listeria 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (listeria, is a bacteria that causes, Pathogens) -> listeria (9229ms) What are pathogens? Inflammation 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Inflammation, caused by, a pathogen) -> Inflammation (9629ms) What are pathogens? the new diseases 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (the new diseases, have been caused by, pathogens) -> the new diseases (6500ms) What are pathogens? more than 650 different disease 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (more than 650 different disease, causing, pathogens) -> more than 650 different disease (7062ms) What are pathogens? chronic diseases 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (chronic diseases, are caused by, pathogens) -> chronic diseases (3640ms) What are pathogens? rots 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (rots, occur caused by, pathogens) -> rots (6672ms) What are pathogens? humanity 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (humanity, are caused by, pathogens) -> humanity (9229ms) What are pathogens? the yield losses 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (the yield losses, caused by, the pathogen) -> the yield losses (9629ms) What are pathogens? the mortality 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (the mortality, caused by, the pathogen) -> the mortality (7928ms) What are pathogens? Malaria 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Malaria, is caused by, pathogens) -> Malaria (8573ms) What are pathogens? infection 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (infection, caused by, various pathogens) -> infection (3023ms) What are pathogens? illnesses 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (illnesses, caused by, waterborne pathogens) -> illnesses (7928ms) What are pathogens? Disease outbreaks 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Disease outbreaks, caused by, waterborne pathogens) -> Disease outbreaks (5630ms) What are pathogens? shigella 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (shigella, is a bacteria that causes, Pathogens) -> shigella (8573ms) What are pathogens? infection and damage 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (infection and damage, is caused by, pathogens) -> infection and damage (7928ms) What are pathogens? disease 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (disease, could be caused by, pathogens) -> disease (7062ms) What are pathogens? plants 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (plants, are caused by, pathogens) -> plants (8574ms) What are pathogens? Mastitis 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Mastitis, caused by, environmental pathogens) -> Mastitis (9629ms) What are pathogens? illness 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (illness, can be caused by, pathogens) -> illness (7928ms) What are pathogens? the Intercept Blood System 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (the Intercept Blood System, causes, pathogens) -> the Intercept Blood System (9228ms) What are pathogens? Illnesses 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Illnesses, caused by, pathogens) -> Illnesses (3640ms) What are pathogens? bed bugs 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (bed bugs, cause, harm or spread pathogens) -> bed bugs (9229ms) What are pathogens? viral meningitis 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (viral meningitis, is usually caused by, pathogens) -> viral meningitis (6500ms) What are pathogens? the lower respiratory tract 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (the lower respiratory tract, caused by, microbial pathogens) -> the lower respiratory tract (7928ms) What are pathogens? mastitis 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (mastitis, causing, pathogens) -> mastitis (8502ms) What are pathogens? Zoonotic diseases 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Zoonotic diseases, are caused by, pathogens) -> Zoonotic diseases (7928ms) What are pathogens? IL-10 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (IL-10, could be caused by, pathogens) -> IL-10 (3023ms) What are pathogens? The diseases 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (The diseases, cause, these pathogens) -> The diseases (6672ms) What are pathogens? diseases 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (diseases, caused by, enteric pathogens) -> diseases (8502ms) What are pathogens? Thinkable drugs 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Thinkable drugs, cause, pathogen like symptoms) -> Thinkable drugs (7062ms) What are pathogens? seedlings 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (seedlings, caused, soil borne pathogens) -> seedlings (7062ms) What are pathogens? diarrhea 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (diarrhea, is caused by, pathogens) -> diarrhea (6672ms) What are pathogens? Upper Respiratory Tract Disease 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Upper Respiratory Tract Disease, caused by, the pathogen) -> Upper Respiratory Tract Disease (9629ms) What are pathogens? Do bed bugs 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Do bed bugs, cause, harm or spread pathogens) -> Do bed bugs (8573ms) What are pathogens? the infection 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (the infection, caused, pathogens) -> the infection (9228ms) What are pathogens? Infection 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Infection, is caused by, pathogens) -> Infection (6673ms) What are pathogens? human cancer cases 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (human cancer cases, were caused by, pathogens) -> human cancer cases (9629ms) What are pathogens? Powdery mildew 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Powdery mildew, caused by, the pathogen) -> Powdery mildew (9228ms) What are pathogens? Plant diseases 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Plant diseases, are caused by, pathogens) -> Plant diseases (8502ms) What are pathogens? 19th century cities 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (19th century cities, were caused by, pathogens) -> 19th century cities (7062ms) What are pathogens? Staphylococcus 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Staphylococcus, is a bacteria that causes, Pathogens) -> Staphylococcus (7062ms) What are pathogens? a disease 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (a disease, caused by, some pathogen) -> a disease (3640ms) What are pathogens? immunosuppression 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (immunosuppression, is also frequently caused by, pathogens) -> immunosuppression (3640ms) What are pathogens? Disease symptoms 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Disease symptoms, can indeed be caused by, pathogens) -> Disease symptoms (3640ms) What are pathogens? sensitivity response 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (sensitivity response, can cause a shift in, pathogen) -> sensitivity response (3639ms) What are pathogens? Disease 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Disease, caused by, a pathogen) -> Disease (8574ms) What are pathogens? a continuum of disease 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (a continuum of disease, caused by, specific pathogens) -> a continuum of disease (9229ms) What are pathogens? Human diseases 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Human diseases, caused by, bacterial pathogens) -> Human diseases (3024ms) What are pathogens? The disease 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (The disease, is caused by, pathogens) -> The disease (8502ms) What are pathogens? infections 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (infections, caused by, intracellular pathogens) -> infections (6500ms) What are pathogens? a condition 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (a condition, caused by, the pathogen) -> a condition (3640ms) What are pathogens? Immunology & An infectious disease 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Immunology & An infectious disease, is caused by, pathogens) -> Immunology & An infectious disease (8502ms) What are pathogens? an infection 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (an infection, caused by, pathogens) -> an infection (9629ms) What are pathogens? water related disease 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (water related disease, is caused by, pathogens) -> water related disease (3023ms) What are pathogens? A technology 1.4444444444409998 What are pathogens? -> $x: ($x, invent, pathogen) -> (A technology, invented to detect, airborne terrorist pathogens) -> A technology (5630ms) What are pathogens? hospital infections 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (hospital infections, are currently caused by, pathogens) -> hospital infections (6672ms) What are pathogens? brain diseases 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (brain diseases, actually ARE caused by, pathogens) -> brain diseases (9229ms) What are pathogens? The illnesses 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (The illnesses, caused by, pathogens) -> The illnesses (5630ms) What are pathogens? the harm 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (the harm, caused by, pathogens) -> the harm (8573ms) What are pathogens? the inflammation 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (the inflammation, was caused by, pathogens) -> the inflammation (8502ms) What are pathogens? infectious diseases 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (infectious diseases, are caused by, pathogens) -> infectious diseases (9629ms) What are pathogens? Sudden Oak Death 1.4444444444409998 What are pathogens? -> $x: ($x, cause, pathogen) -> (Sudden Oak Death, caused by, the pathogen) -> Sudden Oak Death (9629ms) What are pathogens? the problem 1.44444444444 What are pathogens? -> $x: ($x, re, pathogen) -> (the problem, were re-introduced as, the pathogen) -> the problem (9629ms) What are pathogens? several others 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (several others, is most interested in, human pathogens) -> several others (9766ms) What are pathogens? The sand layer 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (The sand layer, is extremely effective in removing, pathogens) -> The sand layer (9796ms) What are pathogens? plasmatoctyes 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (plasmatoctyes, play a significant role in, pathogen defence) -> plasmatoctyes (9899ms) What are pathogens? viruses 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (viruses, are included in, the pathogens) -> viruses (9766ms) What are pathogens? the control 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (the control, showed a natural decline in, the pathogen) -> the control (9825ms) What are pathogens? no means 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (no means, is a magic bullet in, pathogen control) -> no means (9853ms) What are pathogens? putative orthologs 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (putative orthologs, found in, plant pathogens) -> putative orthologs (9796ms) What are pathogens? the leaves 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (the leaves, were effective in controlling, bacterial pathogens) -> the leaves (9825ms) What are pathogens? milk 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (milk, can target multiple early steps in, pathogen replication) -> milk (9766ms) What are pathogens? mechanisms 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (mechanisms, involved in, pathogen recognition) -> mechanisms (9795ms) What are pathogens? genome evolution 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (genome evolution, are well documented in, human pathogens) -> genome evolution (9853ms) What are pathogens? DNA 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (DNA, found only in, certain pathogens) -> DNA (9796ms) What are pathogens? Kyolic 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (Kyolic, is also effective in killing, pathogens) -> Kyolic (9853ms) What are pathogens? a T-cell 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (a T-cell, will be in attacking, pathogens) -> a T-cell (9853ms) What are pathogens? acid motif 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (acid motif, also occurs quite frequently in, pathogens) -> acid motif (9876ms) What are pathogens? research 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (research, reported in, Foodborne Pathogens) -> research (9853ms) What are pathogens? the molecular mechanisms 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (the molecular mechanisms, involved in, pathogen) -> the molecular mechanisms (9825ms) What are pathogens? the avrLm1 virulence 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (the avrLm1 virulence, has diffused in, pathogen populations) -> the avrLm1 virulence (9877ms) What are pathogens? proteins 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (proteins, involved in, host-pathogen interactions) -> proteins (9796ms) What are pathogens? ozone 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (ozone, is very efficient in killing, pathogens) -> ozone (9795ms) What are pathogens? thermal processes 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (thermal processes, are effective in lowering, pathogen levels) -> thermal processes (9825ms) What are pathogens? government data 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (government data, show a decline in, pathogen prevalence) -> government data (9825ms) What are pathogens? genes 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (genes, involved in, host-pathogen interactions) -> genes (9876ms) What are pathogens? active surveillance 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (active surveillance, occurs in, equine pathogens) -> active surveillance (9766ms) What are pathogens? low-grade beef trimmings 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (low-grade beef trimmings, are notoriously high in, pathogens) -> low-grade beef trimmings (9825ms) What are pathogens? a spinal tap 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (a spinal tap, showed a remarkable reduction in, pathogens) -> a spinal tap (9825ms) What are pathogens? The program 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (The program, includes training in, microbial pathogens) -> The program (9853ms) What are pathogens? Broad patterns of resistance 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (Broad patterns of resistance, exist in, these pathogens) -> Broad patterns of resistance (9853ms) What are pathogens? sex 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (sex, played an important role in, the pathogen) -> sex (9877ms) What are pathogens? The center 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (The center, also offers expertise in, pathogen biology) -> The center (9877ms) What are pathogens? the intestines 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (the intestines, may be important in countering, pathogens) -> the intestines (9766ms) What are pathogens? host genes 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (host genes, involved in, pathogen defense) -> host genes (9853ms) What are pathogens? antibiotic resistance genes 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (antibiotic resistance genes, present in, human pathogens) -> antibiotic resistance genes (9766ms) What are pathogens? Stx2 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (Stx2, are found in, this pathogen) -> Stx2 (9825ms) What are pathogens? virulence 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (virulence, is maintained in, pathogens) -> virulence (9766ms) What are pathogens? science teachers 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (science teachers, need to be trained in, Bloodborne Pathogens) -> science teachers (9877ms) What are pathogens? OMV 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (OMV, has been extensively studied only in, pathogens) -> OMV (9796ms) What are pathogens? Vermicast 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (Vermicast, is low in, pathogens) -> Vermicast (9825ms) What are pathogens? an enzyme 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (an enzyme, may apply in, pathogen destruction) -> an enzyme (9876ms) What are pathogens? the program 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (the program, may have their roots in, the pathogen) -> the program (9796ms) What are pathogens? Diversity 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (Diversity, was particularly high in, the pathogens) -> Diversity (9876ms) What are pathogens? hosts 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (hosts, show an increase in, pathogens) -> hosts (9766ms) What are pathogens? timing surveillance 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (timing surveillance, can result in, new pathogens) -> timing surveillance (9825ms) What are pathogens? Medicine researchers 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (Medicine researchers, published in, PLoS Pathogens) -> Medicine researchers (9853ms) What are pathogens? microorganisms 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (microorganisms, involved in, specific pathogen suppression) -> microorganisms (9766ms) What are pathogens? Teacher 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (Teacher, tends to get aggresive in, lethal pathogens) -> Teacher (9853ms) What are pathogens? climate change 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (climate change, is a rise in, microbial pathogens) -> climate change (9876ms) What are pathogens? Continual use 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (Continual use, may result in, pathogen resistance) -> Continual use (9766ms) What are pathogens? IRFs 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (IRFs, play an important role in, pathogen defense) -> IRFs (9853ms) What are pathogens? the colon 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (the colon, may be important in countering, pathogens) -> the colon (9877ms) What are pathogens? clinicians 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (clinicians, have interests in, the pathogens) -> clinicians (9853ms) What are pathogens? Enrofloxacin 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (Enrofloxacin, was tested in, various pathogens) -> Enrofloxacin (9795ms) What are pathogens? Wasmuth 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (Wasmuth, undertook a PhD in, pathogen genomics) -> Wasmuth (9825ms) What are pathogens? the two 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (the two, were stationed in, pathogen) -> the two (9900ms) What are pathogens? cellular interactions 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (cellular interactions, are effective in, pathogen control) -> cellular interactions (9766ms) What are pathogens? resistance 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (resistance, did develop first in, a pathogen) -> resistance (9825ms) What are pathogens? more than 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (more than, are found in, the pathogen?s relatives) -> more than (9877ms) What are pathogens? key S. Typhimurium genes 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (key S. Typhimurium genes, involved in, the pathogen 's ability) -> key S. Typhimurium genes (9825ms) What are pathogens? articles 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (articles, published in, Gut Pathogens) -> articles (9795ms) What are pathogens? LAgP 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (LAgP, would involve a reduction in, these pathogens) -> LAgP (9766ms) What are pathogens? White blood cells 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (White blood cells, are involved in fighting, pathogens) -> White blood cells (9853ms) What are pathogens? a micro-organism 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (a micro-organism, leaves a hole in, a pathogen?s dungeon surface) -> a micro-organism (9877ms) What are pathogens? The End Game 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (The End Game, is Really Achievable in, Pathogen Reduction) -> The End Game (9825ms) What are pathogens? Each center 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (Each center, specializes in, certain pathogens) -> Each center (9877ms) What are pathogens? a domain 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (a domain, is involved in, pathogen entry) -> a domain (9796ms) What are pathogens? phagocytosis 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (phagocytosis, play an active role in destroying, pathogens) -> phagocytosis (9766ms) What are pathogens? a pathogen 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (a pathogen, leaves a hole in, the pathogen?s cell membrane) -> a pathogen (9796ms) What are pathogens? a study 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (a study, published in, PLoS Pathogens) -> a study (9877ms) What are pathogens? the system 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (the system, punches massive holes in, the pathogen) -> the system (9766ms) What are pathogens? such features 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (such features, are frequently observed in, pathogens) -> such features (9853ms) What are pathogens? a new study 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (a new study, published in, Foodborne Pathogens and Disease) -> a new study (9795ms) What are pathogens? Chlorine 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (Chlorine, is effective in killing, harmful pathogens) -> Chlorine (9899ms) What are pathogens? The findings 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (The findings, were published yesterday in, Foodborne Pathogens) -> The findings (9766ms) What are pathogens? carbapenems 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (carbapenems, has developed in, this pathogen) -> carbapenems (9853ms) What are pathogens? amends 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (amends, are primarily only interested in, pathogen contamination) -> amends (9853ms) What are pathogens? Drug resistance 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (Drug resistance, occurs in, several classes of pathogens) -> Drug resistance (9877ms) What are pathogens? significant strides 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (significant strides, have been made in reducing, pathogens) -> significant strides (9877ms) What are pathogens? the role 1.33333333333 What are pathogens? -> $x: ($x, in, pathogen) -> (the role, play in, plant-pathogen interactions) -> the role (9796ms) What are pathogens? Publication type 1.222222222219 What are pathogens? -> $x: ($x, describe, pathogen) -> (Publication type, Describes, the bacterial pathogen) -> Publication type (9922ms) What are pathogens? a snap 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (our pathogen enemies, can be done in, a snap) -> a snap (9945ms) What are pathogens? great caution 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (a pathogen, should be done with, great caution) -> great caution (9900ms) What are pathogens? a class setting 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (Bloodborne Pathogens, is done in, a class setting) -> a class setting (9968ms) What are pathogens? subunit vaccines 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (pathogen biology, do, subunit vaccines) -> subunit vaccines (9945ms) What are pathogens? you sick 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (The pathogens, do make, you sick) -> you sick (9968ms) What are pathogens? C. concisus 1.222222222219 What are pathogens? -> $x: ($x, describe, pathogen) -> (C. concisus, has been described as, an emergent pathogen) -> C. concisus (9899ms) What are pathogens? the host 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (Most pathogens, do better by letting, the host) -> the host (9945ms) What are pathogens? decline 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (outside pathogens, often does lead to, decline) -> decline (9967ms) What are pathogens? the initiation 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (pathogens, is to be done prior to, the initiation) -> the initiation (9945ms) What are pathogens? the New World 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (Those pathogens, did n?t cross the ocean to, the New World) -> the New World (9922ms) What are pathogens? the Rps genes 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (This pathogen, does adapt to, the Rps genes) -> the Rps genes (9967ms) What are pathogens? irrigation water 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (pathogens, can be done with, irrigation water) -> irrigation water (9922ms) What are pathogens? a very different manner 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (pathogens, do so in, a very different manner) -> a very different manner (9899ms) What are pathogens? student Ardelle Grieger 1.222222222219 What are pathogens? -> $x: ($x, describe, pathogen) -> (student Ardelle Grieger, described, the pathogen race profile) -> student Ardelle Grieger (9899ms) What are pathogens? the United States 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (dangerous pathogens, as is being done in, the United States) -> the United States (9945ms) What are pathogens? the MPs 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (nosocomial pathogen colonization, do, the MPs) -> the MPs (9900ms) What are pathogens? the jump 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (a pathogen, does make, the jump) -> the jump (9945ms) What are pathogens? selective enrichment 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (the pathogen, was done using, selective enrichment) -> selective enrichment (9945ms) What are pathogens? a new means 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (potential pathogens, was done using, a new means) -> a new means (9899ms) What are pathogens? us harm 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (Pollution , chemicals , noise and pathogens, can do, us harm) -> us harm (9922ms) What are pathogens? academic centers 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (these pathogens, could be done in, academic centers) -> academic centers (9968ms) What are pathogens? the job 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (updated pathogen definitions, will do, the job) -> the job (9967ms) What are pathogens? warm , moist conditions 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (Bacterial pathogens, do well in, warm , moist conditions) -> warm , moist conditions (9945ms) What are pathogens? a great job 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (fungal pathogens, can do, a great job) -> a great job (9968ms) What are pathogens? the disease 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (the pathogen, little can be done to control, the disease) -> the disease (9899ms) What are pathogens? parrots 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (other food-borne pathogens, do affect, parrots) -> parrots (9899ms) What are pathogens? the body 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (the pathogens, directly do damage to, the body) -> the body (9945ms) What are pathogens? human breast milk 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (pathogens, so does, human breast milk) -> human breast milk (9945ms) What are pathogens? the meat industry 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (these pathogens, is to do away with, the meat industry) -> the meat industry (9968ms) What are pathogens? cultivation 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (Pathogen detection, is done by, cultivation) -> cultivation (9945ms) What are pathogens? nourishment 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (a pathogen, did n?t put, nourishment) -> nourishment (9922ms) What are pathogens? Dictyostelium 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (pathogens, could be done in, Dictyostelium) -> Dictyostelium (9945ms) What are pathogens? damage 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (Intraphagocytic pathogens, do, damage) -> damage (9945ms) What are pathogens? S. dimidiatum 1.222222222219 What are pathogens? -> $x: ($x, describe, pathogen) -> (S. dimidiatum, was originally described as, a plant pathogen) -> S. dimidiatum (9945ms) What are pathogens? state-certified labs 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (pathogens, should be done at, state-certified labs) -> state-certified labs (9968ms) What are pathogens? dried blood 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (Bloodborne pathogens, do live in, dried blood) -> dried blood (9922ms) What are pathogens? a very long time 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (the pathogen, have been doing this for, a very long time) -> a very long time (9968ms) What are pathogens? the trick 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (the pathogen--genes, do, the trick) -> the trick (9922ms) What are pathogens? paper logs 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (pathogens, is done on, paper logs) -> paper logs (9968ms) What are pathogens? fish farms 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (pathogens, do sometimes become established in, fish farms) -> fish farms (9923ms) What are pathogens? USDA-style HACCP 1.222222222219 What are pathogens? -> $x: ($x, describe, pathogen) -> (USDA-style HACCP, was originally described as, a pathogen chase) -> USDA-style HACCP (9922ms) What are pathogens? cell growth 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (pathogen cells, does inhibit, cell growth) -> cell growth (9922ms) What are pathogens? so 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (The majority of pathogens, do, so) -> so (9922ms) What are pathogens? bacteria 1.222222222219 What are pathogens? -> $x: ($x, describe, pathogen) -> (bacteria, were first described as, pathogens) -> bacteria (9922ms) What are pathogens? the HSE 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (this pathogen, do, the HSE) -> the HSE (9945ms) What are pathogens? Employees 1.222222222219 What are pathogens? -> $x: ($x, describe, pathogen) -> (Employees, Describes the types of, bloodborne pathogens) -> Employees (9923ms) What are pathogens? The virus 1.222222222219 What are pathogens? -> $x: ($x, describe, pathogen) -> (The virus, is described, inPLoS Pathogens today) -> The virus (9923ms) What are pathogens? the incidence 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (pathogens, does seem to increase, the incidence) -> the incidence (9900ms) What are pathogens? a ?Doctrine 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (these pathogens, do indeed have, a ?Doctrine) -> a ?Doctrine (9900ms) What are pathogens? rectal swabs 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (enteric pathogens, do, rectal swabs) -> rectal swabs (9899ms) What are pathogens? a reverse 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (a mildew or pathogen ?, need to do, a reverse) -> a reverse (9900ms) What are pathogens? the likelihood 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (a pathogen, does increase, the likelihood) -> the likelihood (9945ms) What are pathogens? nurses 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (pathogens, did, nurses) -> nurses (9922ms) What are pathogens? methylmercury 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (bar pathogens, does a terrible job of keeping, methylmercury) -> methylmercury (9922ms) What are pathogens? academic settings 1.222222222219 What are pathogens? -> $x: (pathogen, do, $x) -> (highly virulent pathogens, will be done in, academic settings) -> academic settings (9900ms) What are pathogens? health care workers 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (bloodborne pathogens, is real for, health care workers) -> health care workers (10054ms) What are pathogens? severe infections 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (a pathogen, is responsible for, severe infections) -> severe infections (10199ms) What are pathogens? cholera and dysentery 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (cholera and dysentery, must be done, one pathogen) -> cholera and dysentery (9968ms) What are pathogens? the management 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (fungal pathogens, is essential for, the management) -> the management (10012ms) What are pathogens? the Irish potato famine 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (These pathogens, were responsible for, the Irish potato famine) -> the Irish potato famine (10158ms) What are pathogens? the response 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (dying pathogens, have been blamed for, the response) -> the response (10199ms) What are pathogens? the damage 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (the damage, done by, the pathogen) -> the damage (10117ms) What are pathogens? tests 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (tests, are done for, pathogens) -> tests (10158ms) What are pathogens? toxins 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (toxins, are produced by, bacterial pathogens) -> toxins (10138ms) What are pathogens? Copper compounds 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (Copper compounds, do reduce, the pathogen) -> Copper compounds (10158ms) What are pathogens? public-health protection 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, is essential for, public-health protection) -> public-health protection (10199ms) What are pathogens? cutaneous mycosis 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (The pathogens, are responsible for, cutaneous mycosis) -> cutaneous mycosis (10199ms) What are pathogens? the diseases 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (the diseases, produced by, these pathogens) -> the diseases (10075ms) What are pathogens? Globalisation 1.222222222218 What are pathogens? -> $x: ($x, define, pathogen) -> (Globalisation, defines the world of, pathogens) -> Globalisation (10033ms) What are pathogens? the recognition event 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (the pathogen, are required for, the recognition event) -> the recognition event (10096ms) What are pathogens? calcification 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (Many pathogens, have been blamed for, calcification) -> calcification (10096ms) What are pathogens? Toxins 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (Toxins, produced by, the pathogens) -> Toxins (10158ms) What are pathogens? each species 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, are different for, each species) -> each species (10178ms) What are pathogens? use 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogen, is safe for, use) -> use (10199ms) What are pathogens? a substance 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (a substance, produced by, pathogens) -> a substance (10178ms) What are pathogens? ?People 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (?People, do get sick from, pathogens) -> ?People (10178ms) What are pathogens? scientists 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (scientists, can do little medically to fight, the pathogen) -> scientists (9968ms) What are pathogens? Amanda Rose 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (Amanda Rose, Does, Raw Milk Kill Pathogens) -> Amanda Rose (9990ms) What are pathogens? The B cell 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (The B cell, also produce antibodies against, the pathogen) -> The B cell (10012ms) What are pathogens? The decay process 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (The decay process, can produce, harmful pathogens) -> The decay process (9990ms) What are pathogens? creationists 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (creationists, do, dangerous pathogens) -> creationists (10158ms) What are pathogens? a sort procedure 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (a pathogen, is approved for, a sort procedure) -> a sort procedure (10138ms) What are pathogens? various places 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (the pathogen, were recorded for, various places) -> various places (10054ms) What are pathogens? a shelf-stable dried product 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (all pathogens, is necessary for, a shelf-stable dried product) -> a shelf-stable dried product (9990ms) What are pathogens? the distinct set 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (other pathogens, are responsible for, the distinct set) -> the distinct set (10012ms) What are pathogens? proper identification 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (the pathogen, is important for, proper identification) -> proper identification (10075ms) What are pathogens? biosolids 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (biosolids, was done to eliminate, pathogens) -> biosolids (10096ms) What are pathogens? Akonni 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (Akonni, has done focuses on identifying, other pathogens?those) -> Akonni (10138ms) What are pathogens? a very clean environment 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (a very clean environment, does reduce, total pathogen exposure) -> a very clean environment (10117ms) What are pathogens? account growers 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (account growers, do require, pathogen testing) -> account growers (9990ms) What are pathogens? the survival 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, is essential for, the survival) -> the survival (9990ms) What are pathogens? Bedbugs 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (Bedbugs, do carry, a staggering 18 human pathogens) -> Bedbugs (10096ms) What are pathogens? a biologist 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (detecting pathogens, was a job for, a biologist) -> a biologist (10199ms) What are pathogens? destruction 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, are collected for, destruction) -> destruction (10054ms) What are pathogens? young beef and dairy cattle 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (the pathogen, is consistent for, young beef and dairy cattle) -> young beef and dairy cattle (10158ms) What are pathogens? farmer ] 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (farmer ], did opened the door to, the pathogens) -> farmer ] (10075ms) What are pathogens? entry 1.222222222218 What are pathogens? -> $x: (pathogen, have point of, $x) -> (disease pathogens, have little point of, entry) -> entry (10012ms) What are pathogens? Marine mammals 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (Marine mammals, neither do, pathogens and parasites) -> Marine mammals (10033ms) What are pathogens? the organism 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, is intended to be harmless for, the organism) -> the organism (10199ms) What are pathogens? fumaric acid 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (fumaric acid, is produced by, the pathogens) -> fumaric acid (10054ms) What are pathogens? SSC 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (SSC, have nothing to do with, pathogens or cleanliness) -> SSC (10033ms) What are pathogens? laboratory tests 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (laboratory tests, must be done to confirm, pathogen identity) -> laboratory tests (10012ms) What are pathogens? germination 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, are harmful for, germination) -> germination (10054ms) What are pathogens? any circumstances 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (any circumstances, does little to reduce, pathogens) -> any circumstances (9990ms) What are pathogens? longer missions 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, will be important for, longer missions) -> longer missions (10033ms) What are pathogens? the wound 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (the wound, should be done to identify, the pathogen) -> the wound (10012ms) What are pathogens? interurban transport 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (interurban transport, did for, biological pathogens) -> interurban transport (9968ms) What are pathogens? the health 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, were bad for, the health) -> the health (10096ms) What are pathogens? heal whatever tissue damage 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (heal whatever tissue damage, was done by, the pathogens) -> heal whatever tissue damage (10199ms) What are pathogens? the first time 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, will be imported for, the first time) -> the first time (10138ms) What are pathogens? colostrum 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, is the primary reason for giving, colostrum) -> colostrum (10199ms) What are pathogens? The big question 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (The big question, does exposure to, virulent pathogens) -> The big question (10138ms) What are pathogens? monetary loss 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (monetary loss, do, bacterial pathogens) -> monetary loss (10033ms) What are pathogens? animals 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (animals, did, other recent emerging pathogens) -> animals (10096ms) What are pathogens? The procedure 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (The procedure, produces, specific pathogen) -> The procedure (10138ms) What are pathogens? effective bio-defense 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (this pathogen, are needed for, effective bio-defense) -> effective bio-defense (10117ms) What are pathogens? nature 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (nature, was doing nothing to combat, the pathogen) -> nature (10158ms) What are pathogens? biohazardous blood 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (Bloodborne pathogen, is a synonym for, biohazardous blood) -> biohazardous blood (10199ms) What are pathogens? society 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, is a huge challenge for, society) -> society (10117ms) What are pathogens? the meat eater 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (these pathogens, be any worse for, the meat eater) -> the meat eater (10117ms) What are pathogens? better management 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (such pathogens, is needed for, better management) -> better management (10199ms) What are pathogens? artificial selection 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (artificial selection, can produce, pathogens) -> artificial selection (10012ms) What are pathogens? John Hawks 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (John Hawks, did leprosy come from as, a human pathogen) -> John Hawks (10012ms) What are pathogens? significance 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (Candidate pathogens, were screened for, significance) -> significance (10117ms) What are pathogens? the antigens 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (the antigens, produced by, pathogens) -> the antigens (10178ms) What are pathogens? the loss 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (This pathogen, is responsible for, the loss) -> the loss (10033ms) What are pathogens? veterinarians 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (infectious pathogens, are indispensable for, veterinarians) -> veterinarians (10075ms) What are pathogens? slaughter 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (foreign pathogens, are fair game for, slaughter) -> slaughter (10117ms) What are pathogens? Stressed animals 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (Stressed animals, are known to produce, pathogens) -> Stressed animals (10012ms) What are pathogens? biological control 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, are promising candidates for, biological control) -> biological control (10096ms) What are pathogens? the toxins 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (the toxins, produced by, the pathogen) -> the toxins (10138ms) What are pathogens? the milk 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (the milk, has zero to do with, pathogens) -> the milk (10033ms) What are pathogens? the pathogen 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (the pathogen, produces a quality of, Heat or fire pathogen) -> the pathogen (10158ms) What are pathogens? additional direction 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, may be referenced for, additional direction) -> additional direction (10054ms) What are pathogens? antibacterial and anti-fungal chemicals 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (antibacterial and anti-fungal chemicals, produced by, pathogens) -> antibacterial and anti-fungal chemicals (9990ms) What are pathogens? The blight 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (The blight, was produced by, a fungal pathogen Bipolaris) -> The blight (10117ms) What are pathogens? EMS personnel 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, is a significant risk for, EMS personnel) -> EMS personnel (9990ms) What are pathogens? Tyson 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (Tyson, does n?t allow, pathogen testing) -> Tyson (9990ms) What are pathogens? more than 90 percent 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, are responsible for, more than 90 percent) -> more than 90 percent (10199ms) What are pathogens? The ability 1.222222222218 What are pathogens? -> $x: ($x, characterize, pathogen) -> (The ability, characterize, the relevant pathogen) -> The ability (10178ms) What are pathogens? a majority 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, are responsible for, a majority) -> a majority (10178ms) What are pathogens? individuals 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, is indicated for, individuals) -> individuals (10138ms) What are pathogens? The disproportion 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (The disproportion, did, pathogen) -> The disproportion (10199ms) What are pathogens? Plants 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (Plants, should be produced from, pathogen-free stock) -> Plants (10117ms) What are pathogens? implementation 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (respiratory pathogens, are needed for, implementation) -> implementation (9990ms) What are pathogens? metabolites 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (metabolites, produced by, a coral pathogen) -> metabolites (10033ms) What are pathogens? ?Marine mammals 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (?Marine mammals, neither do, pathogens and parasites) -> ?Marine mammals (10054ms) What are pathogens? Meyer 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (Meyer, did find, the same pathogen) -> Meyer (10075ms) What are pathogens? gastroenteritis 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (Both pathogens, are responsible for, gastroenteritis) -> gastroenteritis (10054ms) What are pathogens? weak points 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (the pathogen, is looking for, weak points) -> weak points (10054ms) What are pathogens? new vectors 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (Pathogens, are always looking for, new vectors) -> new vectors (10096ms) What are pathogens? several species 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (other pathogens, are available for, several species) -> several species (10138ms) What are pathogens? bark 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (bark, was done against, pathogens) -> bark (10117ms) What are pathogens? The water 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (The water, does n?t usually have time to gather, pathogens) -> The water (9990ms) What are pathogens? pathogenicity 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (this pathogen, were tested for, pathogenicity) -> pathogenicity (10158ms) What are pathogens? centuries 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (The pathogens, have been around for, centuries) -> centuries (9990ms) What are pathogens? A metabolite 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (A metabolite, produced by, a pathogen) -> A metabolite (10075ms) What are pathogens? summer 2000 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogen indicators, was planned for, summer 2000) -> summer 2000 (10033ms) What are pathogens? Emily Hagins 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (Emily Hagins, Films Produced, Pathogen) -> Emily Hagins (10158ms) What are pathogens? HGE 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (HGE, does n?t seem related to, pathogens) -> HGE (10096ms) What are pathogens? organic decomposition 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (organic decomposition, do to, the dormant pathogens) -> organic decomposition (10054ms) What are pathogens? Class A biosolids 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (Class A biosolids, don?t produce, the pathogens) -> Class A biosolids (10075ms) What are pathogens? Neuraminidase 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (Neuraminidase, is produced by, intestinal pathogens) -> Neuraminidase (10033ms) What are pathogens? the positive selection 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogen, was responsible for, the positive selection) -> the positive selection (10138ms) What are pathogens? over 30 prosthesis 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (a pathogen, has been joining for, over 30 prosthesis) -> over 30 prosthesis (10096ms) What are pathogens? broilers 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (broilers, produces a wide variety of, pathogens) -> broilers (10075ms) What are pathogens? every gardener 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (plant pathogens, are a challenge for, every gardener) -> every gardener (10012ms) What are pathogens? water-borne diseases 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (These pathogens, are responsible for, water-borne diseases) -> water-borne diseases (10178ms) What are pathogens? tick control 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, has been examined for, tick control) -> tick control (10178ms) What are pathogens? mass dissemination 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (emerging pathogens, could be engineered for, mass dissemination) -> mass dissemination (10012ms) What are pathogens? The ammonia 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (The ammonia, does n?t always kill, the pathogens) -> The ammonia (10012ms) What are pathogens? Personnel 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (Personnel, do have access to, the pathogens) -> Personnel (10138ms) What are pathogens? STT 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, is very important for, STT) -> STT (10033ms) What are pathogens? patient safety 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (other pathogens, is essential for, patient safety) -> patient safety (10096ms) What are pathogens? Raw milk 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (Raw milk, does kill, pathogens) -> Raw milk (10054ms) What are pathogens? antibiotics 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (antibiotics, do kill, some pathogens) -> antibiotics (10138ms) What are pathogens? DON 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (DON, is the mycotoxin produced by, the FHB-causing pathogen) -> DON (10138ms) What are pathogens? the clock 1.222222222218 What are pathogens? -> $x: ($x, characterize, pathogen) -> (the clock, characterize, the pathogen) -> the clock (10033ms) What are pathogens? the only national program testing 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (the only national program testing, produce for, pathogens) -> the only national program testing (9968ms) What are pathogens? a molecule 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (a molecule, produced by, a pathogen) -> a molecule (10075ms) What are pathogens? motor vehicle accidents 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (motor vehicle accidents, does research on, bloodborne pathogens) -> motor vehicle accidents (10199ms) What are pathogens? the greatest number 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, is probably responsible for, the greatest number) -> the greatest number (10117ms) What are pathogens? Very few studies 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (Very few studies, have been done on, pathogens) -> Very few studies (10096ms) What are pathogens? OSHA 1.222222222218 What are pathogens? -> $x: ($x, define, pathogen) -> (OSHA, defines, bloodborne pathogens) -> OSHA (10033ms) What are pathogens? the work 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (the work, has been done with, a fungal pathogen) -> the work (10054ms) What are pathogens? the development 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (some pathogens, may be essential for, the development) -> the development (10138ms) What are pathogens? 10 actinomycete isolates 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (these pathogens, were documented for, 10 actinomycete isolates) -> 10 actinomycete isolates (10054ms) What are pathogens? the animals 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (the animals, did test positive for, the pathogen) -> the animals (10138ms) What are pathogens? cultures and tests 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (cultures and tests, must be done to detect, the pathogens) -> cultures and tests (10096ms) What are pathogens? leishmaniasis 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (the pathogen, is responsible for, leishmaniasis) -> leishmaniasis (10054ms) What are pathogens? mortality and morbidity 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (These pathogens, are responsible for, mortality and morbidity) -> mortality and morbidity (10096ms) What are pathogens? Chemicals 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (Chemicals, produced by, pathogens) -> Chemicals (10075ms) What are pathogens? contact infections 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, is the prerequisite for, contact infections) -> contact infections (10012ms) What are pathogens? vegetable production 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, was a more serious problem for, vegetable production) -> vegetable production (9990ms) What are pathogens? a great many diseases 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (other pathogens, are responsible for, a great many diseases) -> a great many diseases (10117ms) What are pathogens? Sharma 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (Sharma, have both done work on, the pathogens) -> Sharma (10158ms) What are pathogens? bioterrorist attacks 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (potential pathogens, can be misused for, bioterrorist attacks) -> bioterrorist attacks (10178ms) What are pathogens? a protein 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (a protein, produced by, the pathogen) -> a protein (10012ms) What are pathogens? two severe outbreaks 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (the pathogen, was responsible for, two severe outbreaks) -> two severe outbreaks (10158ms) What are pathogens? no safe level 1.222222222218 What are pathogens? -> $x: ($x, define, pathogen) -> (no safe level, defined for, a bloodborne pathogen) -> no safe level (10178ms) What are pathogens? agricultural crops 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (fungal pathogens, have been developed for, agricultural crops) -> agricultural crops (10033ms) What are pathogens? molecular networks 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (molecular networks, produce immune responses to, pathogens) -> molecular networks (10054ms) What are pathogens? a UV air purifier 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, is a great place for, a UV air purifier) -> a UV air purifier (10178ms) What are pathogens? The USDA 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (The USDA, did, the pest and pathogen screening) -> The USDA (10117ms) What are pathogens? detection 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (a pathogen, have been modified for, detection) -> detection (10075ms) What are pathogens? tuberculosis and 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (tuberculosis and, does, the pathogen cause symtoms) -> tuberculosis and (10178ms) What are pathogens? protective antigens 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogen genomes, can be searched for, protective antigens) -> protective antigens (10158ms) What are pathogens? Antibodies 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (Antibodies, are produced specifically to, the invading pathogens) -> Antibodies (10096ms) What are pathogens? the maturation 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (microbial pathogens, are crucial for, the maturation) -> the maturation (10117ms) What are pathogens? HPV 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (HPV, does work for, other difficult pathogens) -> HPV (10054ms) What are pathogens? secretion 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, were analyzed for, secretion) -> secretion (10178ms) What are pathogens? High-level containment laboratories 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (High-level containment laboratories, do research on, pathogens) -> High-level containment laboratories (10178ms) What are pathogens? long-distance dispersal 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (The pathogen, is well adapted for, long-distance dispersal) -> long-distance dispersal (9990ms) What are pathogens? female homosexuality 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (a pathogen, also be responsible for, female homosexuality) -> female homosexuality (10075ms) What are pathogens? A UV Water filter 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (A UV Water filter, will do the function of, pathogen killing) -> A UV Water filter (10012ms) What are pathogens? an indefinite period 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (these pathogens, may be carried for, an indefinite period) -> an indefinite period (9990ms) What are pathogens? the most part indiscriminate 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (new pathogens, are for, the most part indiscriminate) -> the most part indiscriminate (10158ms) What are pathogens? The toxins 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (The toxins, produce, these pathogens) -> The toxins (10178ms) What are pathogens? the lab 1.222222222218 What are pathogens? -> $x: ($x, produce, pathogen) -> (the lab, would produce, airborne pathogens) -> the lab (10178ms) What are pathogens? Air filters 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (Air filters, do help eliminate, pollutants and pathogens) -> Air filters (10096ms) What are pathogens? plaque 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (oral pathogens, be useful for controlling, plaque) -> plaque (10158ms) What are pathogens? less than 10 1.222222222218 What are pathogens? -> $x: (pathogen, be for, $x) -> (pathogens, have been identified for, less than 10) -> less than 10 (10075ms) What are pathogens? More research 1.222222222218 What are pathogens? -> $x: ($x, do, pathogen) -> (More research, should also be done into, pathogen survival) -> More research (10075ms) What are pathogens? the laboratory 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (the laboratory, will sometimes find, a second pathogen) -> the laboratory (10298ms) What are pathogens? mprF 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (mprF, is found in, many bacterial pathogens) -> mprF (10335ms) What are pathogens? patients 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (patients, were found to be positive for, pathogens) -> patients (10297ms) What are pathogens? CWD and 1.1111111111079999 What are pathogens? -> $x: ($x, deal with, pathogen) -> (CWD and, easily deal with, other pathogens) -> CWD and (10239ms) What are pathogens? Wind evils 1.1111111111079999 What are pathogens? -> $x: ($x, refer, pathogen) -> (Wind evils, refer to, invisible pathogens) -> Wind evils (10259ms) What are pathogens? factory farming 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (factory farming, create, dangerous food pathogens) -> factory farming (10259ms) What are pathogens? 2002 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (2002, found very low incidence of, potential pathogens) -> 2002 (10354ms) What are pathogens? 10 chickens 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (10 chickens, were found to contain, pathogens) -> 10 chickens (10336ms) What are pathogens? a professor 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (a professor, said finding, pathogens) -> a professor (10220ms) What are pathogens? the processes 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (the processes, has been found to kill, pathogens) -> the processes (10335ms) What are pathogens? the common and 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (the common and, recently found, pathogens) -> the common and (10298ms) What are pathogens? the smallest genomes 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (the smallest genomes, are found among, obligatory pathogens) -> the smallest genomes (10298ms) What are pathogens? San Diego county 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (San Diego county, was found to be infected with, the pathogen) -> San Diego county (10239ms) What are pathogens? reportable foods 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (reportable foods, likely be those found to contain, pathogens) -> reportable foods (10298ms) What are pathogens? the US population 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (the US population, were found to have, active XMRV pathogen) -> the US population (10220ms) What are pathogens? a HACCP plan 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (a HACCP plan, has been found to contain, pathogens) -> a HACCP plan (10317ms) What are pathogens? The PezAT system 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (The PezAT system, is found in, the major human pathogen) -> The PezAT system (10335ms) What are pathogens? Heat 1.1111111111079999 What are pathogens? -> $x: ($x, refer, pathogen) -> (Heat, refers to, bacterial or viral pathogens) -> Heat (10354ms) What are pathogens? Each chapter 1.1111111111079999 What are pathogens? -> $x: ($x, deal with, pathogen) -> (Each chapter, deals with, a different pathogen) -> Each chapter (10279ms) What are pathogens? the amoebas 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (the amoebas, find, a pathogen) -> the amoebas (10317ms) What are pathogens? Filters 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (Filters, only create a breeding ground for, pathogens) -> Filters (10317ms) What are pathogens? genetic engineering 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (genetic engineering, contributed to creating, the new pathogens) -> genetic engineering (10354ms) What are pathogens? the study 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (the study, found, the food-borne disease pathogen salmonella) -> the study (10317ms) What are pathogens? Idaho 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (Idaho, must be found free of, five bacterial pathogens) -> Idaho (10279ms) What are pathogens? the magazine 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (the magazine, found, these pathogens) -> the magazine (10219ms) What are pathogens? two elk 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (two elk, were found with, the pathogen) -> two elk (10279ms) What are pathogens? a national law 1.1111111111079999 What are pathogens? -> $x: ($x, deal with, pathogen) -> (a national law, deals with, pathogens as a genetic resource) -> a national law (10335ms) What are pathogens? The human immune system 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (The human immune system, creates antibodies to, pathogens) -> The human immune system (10335ms) What are pathogens? God 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (God, created, parasites , pathogens , and predators) -> God (10239ms) What are pathogens? FDA 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (FDA, found any sign of, pathogens) -> FDA (10317ms) What are pathogens? researchers 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (researchers, find ways to combat, agricultural pathogens) -> researchers (10279ms) What are pathogens? Entomologists 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (Entomologists, have found, all the blood-born pathogens) -> Entomologists (10317ms) What are pathogens? the kids 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (the kids, was found to have, a pathogen) -> the kids (10335ms) What are pathogens? The National Consumers League 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (The National Consumers League, found, dangerous pathogens) -> The National Consumers League (10219ms) What are pathogens? The infecting organism 1.1111111111079999 What are pathogens? -> $x: ($x, refer, pathogen) -> (The infecting organism, is referred to as, a pathogen) -> The infecting organism (10317ms) What are pathogens? addition 1.1111111111079999 What are pathogens? -> $x: ($x, happen to, pathogen) -> (addition, happens to, pathogens) -> addition (10219ms) What are pathogens? Bangladesh sunflower seed oil 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (Bangladesh sunflower seed oil, was found to reduce, pathogens) -> Bangladesh sunflower seed oil (10219ms) What are pathogens? Gene therapy experiments 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (Gene therapy experiments, may create, dangerous pathogens) -> Gene therapy experiments (10354ms) What are pathogens? the single mitochondrion 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (the single mitochondrion, found in, the blood borne pathogen) -> the single mitochondrion (10239ms) What are pathogens? even individuals 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (even individuals, could create immensely, dangerous pathogens) -> even individuals (10354ms) What are pathogens? tilmicosin 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (tilmicosin, were found among, veterinary pathogens) -> tilmicosin (10279ms) What are pathogens? the GFP 1.1111111111079999 What are pathogens? -> $x: ($x, deal with, pathogen) -> (the GFP, are dealing with, pathogens) -> the GFP (10259ms) What are pathogens? the feces 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (the feces, create, more disease resistant pathogens) -> the feces (10335ms) What are pathogens? Mark 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (Mark, found, that considerable pathogen reductions) -> Mark (10219ms) What are pathogens? The driver concept 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (The driver concept, consists of finding, the correct pathogens) -> The driver concept (10298ms) What are pathogens? a rare sugar 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (a rare sugar, only found in, some human pathogens) -> a rare sugar (10219ms) What are pathogens? Giardia 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (Giardia, was found to be, the most prevalent pathogen) -> Giardia (10317ms) What are pathogens? farms 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (farms, found, several pathogens) -> farms (10335ms) What are pathogens? turn 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (turn, find, an invading pathogen) -> turn (10219ms) What are pathogens? pathogenic toxins 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (pathogenic toxins, creates a hostile environment for, pathogens) -> pathogenic toxins (10317ms) What are pathogens? tenderized steaks 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (tenderized steaks, found to contain, these pathogens) -> tenderized steaks (10298ms) What are pathogens? an animal?s pH 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (an animal?s pH, creates a hostile environment for, pathogens) -> an animal?s pH (10239ms) What are pathogens? immune selection 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (immune selection, create, more virulent pathogens) -> immune selection (10259ms) What are pathogens? America 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (America, has created, some really horrible pathogens) -> America (10335ms) What are pathogens? one independent agency 1.1111111111079999 What are pathogens? -> $x: ($x, deal with, pathogen) -> (one independent agency, deals with, food-borne pathogens) -> one independent agency (10297ms) What are pathogens? the papers 1.1111111111079999 What are pathogens? -> $x: ($x, happen to, pathogen) -> (the papers, happens to, pathogens) -> the papers (10220ms) What are pathogens? public health agencies 1.1111111111079999 What are pathogens? -> $x: ($x, deal with, pathogen) -> (public health agencies, must be prepared to deal with, pathogens) -> public health agencies (10335ms) What are pathogens? new areas 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (new areas, created a new category of, pathogens) -> new areas (10335ms) What are pathogens? places 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (places, create, pathogens) -> places (10278ms) What are pathogens? Acidifying toxins 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (Acidifying toxins, are created by, microforms and pathogens) -> Acidifying toxins (10239ms) What are pathogens? bacterial pathogen 1.1111111111079999 What are pathogens? -> $x: ($x, refer, pathogen) -> (bacterial pathogen, is referred to as, an endogenous pathogen) -> bacterial pathogen (10259ms) What are pathogens? a model 1.1111111111079999 What are pathogens? -> $x: ($x, happen to, pathogen) -> (a model, will happen to, the pathogens) -> a model (10239ms) What are pathogens? Wanzhou 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (Wanzhou, found, the epidemic hemorrhagic fever pathogen) -> Wanzhou (10317ms) What are pathogens? starlings 1.1111111111079999 What are pathogens? -> $x: ($x, deal with, pathogen) -> (starlings, lack the ability to deal with, pathogens) -> starlings (10279ms) What are pathogens? begonias 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (begonias, have been found susceptible to, this pathogen) -> begonias (10335ms) What are pathogens? ?T-39? 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (?T-39?, were found to be more resistant to, this pathogen) -> ?T-39? (10259ms) What are pathogens? the Asian soybean aphid 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (the Asian soybean aphid, found little evidence of, pathogens) -> the Asian soybean aphid (10279ms) What are pathogens? The researchers 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (The researchers, found, several potentially dangerous pathogens) -> The researchers (10259ms) What are pathogens? Farman 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (Farman, found, the annual ryegrass pathogen) -> Farman (10335ms) What are pathogens? a department study 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (a department study, found, the pathogens) -> a department study (10279ms) What are pathogens? Gunner 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (Gunner, find, your ?pathogen?) -> Gunner (10239ms) What are pathogens? continued best efforts 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (continued best efforts, find, these pathogens) -> continued best efforts (10317ms) What are pathogens? the refereeing process 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (the refereeing process, can be found in, 'About Gut Pathogens ') -> the refereeing process (10354ms) What are pathogens? microorganisms microbes 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (microorganisms microbes, found, pathogens) -> microorganisms microbes (10239ms) What are pathogens? a parasitic relationship 1.1111111111079999 What are pathogens? -> $x: ($x, refer, pathogen) -> (a parasitic relationship, are referred to as, pathogens) -> a parasitic relationship (10317ms) What are pathogens? The structures 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (The structures, found on, these pathogens) -> The structures (10279ms) What are pathogens? foreign proteins 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (foreign proteins, found on, infectious disease pathogens) -> foreign proteins (10278ms) What are pathogens? SA 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (SA, found to be, the causative pathogen) -> SA (10239ms) What are pathogens? either state 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (either state, have been found with, the pathogen) -> either state (10279ms) What are pathogens? The study 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (The study, found, these pathogens) -> The study (10279ms) What are pathogens? nine patients 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (nine patients, were found to have, the pathogens) -> nine patients (10298ms) What are pathogens? future rule 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (future rule, finds common ground between, pathogen management) -> future rule (10219ms) What are pathogens? the source 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (the source, create a new rapid test for, pathogens) -> the source (10259ms) What are pathogens? gardeners 1.1111111111079999 What are pathogens? -> $x: ($x, deal with, pathogen) -> (gardeners, deal organically with, pathogen and pest problems) -> gardeners (10317ms) What are pathogens? taffeta 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (taffeta, creates, a reliable barrier to blood borne pathogens) -> taffeta (10354ms) What are pathogens? dendritic cells 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (dendritic cells, find, pathogens) -> dendritic cells (10239ms) What are pathogens? Investigators 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (Investigators, are better at finding, foodborne pathogens) -> Investigators (10239ms) What are pathogens? the lining 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (the lining, create a physical barrier to, pathogens) -> the lining (10354ms) What are pathogens? similar structures 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (similar structures, are found in, several human pathogens) -> similar structures (10239ms) What are pathogens? Smart 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (Smart, found, the pathogen) -> Smart (10279ms) What are pathogens? last year 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (last year, found, pathogens) -> last year (10317ms) What are pathogens? projects 1.1111111111079999 What are pathogens? -> $x: ($x, deal with, pathogen) -> (projects, deal with, host-pathogen interactions) -> projects (10219ms) What are pathogens? raw , non-intact beef products 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (raw , non-intact beef products, found to have, these pathogens) -> raw , non-intact beef products (10259ms) What are pathogens? the first viroid 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (the first viroid, spent many years trying to find, the pathogen) -> the first viroid (10335ms) What are pathogens? P. ramorum 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (P. ramorum, has found, the pathogen) -> P. ramorum (10298ms) What are pathogens? Dr. Clark 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (Dr. Clark, found that, it would kill various pathogens) -> Dr. Clark (10298ms) What are pathogens? An ?attenuated ? vaccine 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (An ?attenuated ? vaccine, is created from, a pathogen) -> An ?attenuated ? vaccine (10259ms) What are pathogens? genetic material 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (genetic material, create, new pathogens) -> genetic material (10219ms) What are pathogens? aquariums 1.1111111111079999 What are pathogens? -> $x: ($x, create, pathogen) -> (aquariums, can create the area for, pathogens) -> aquariums (10259ms) What are pathogens? Lactococcus garvieae 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (Lactococcus garvieae, was found to be, an opportunistic pathogen) -> Lactococcus garvieae (10278ms) What are pathogens? virulent hasnt 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (virulent hasnt, then found, lungs pathogens) -> virulent hasnt (10335ms) What are pathogens? products 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (products, found to have, these pathogens) -> products (10317ms) What are pathogens? sick babies 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (sick babies, also found, dangerous waterborne pathogens) -> sick babies (10219ms) What are pathogens? One study 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (One study, found, common pathogens) -> One study (10259ms) What are pathogens? protection 1.1111111111079999 What are pathogens? -> $x: ($x, found, pathogen) -> (protection, is found from, foreign pathogens) -> protection (10239ms) What are pathogens? Sanitizers 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Sanitizers, hence can destroy, pathogens) -> Sanitizers (10443ms) What are pathogens? An excellent comprehensive chapter 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (An excellent comprehensive chapter, is devoted to, pathogens) -> An excellent comprehensive chapter (10626ms) What are pathogens? thin skin 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (thin skin, is more vulnerable to, pathogens) -> thin skin (10702ms) What are pathogens? crop yield 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (crop yield, is lost to, pathogens) -> crop yield (10702ms) What are pathogens? keratinocytes 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (keratinocytes, can kill, pathogens) -> keratinocytes (10626ms) What are pathogens? Puccinia striiformis 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (Puccinia striiformis, is conserved in, diverse fungal pathogens) -> Puccinia striiformis (10641ms) What are pathogens? Disinfestants 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (Disinfestants, are used to eliminate, pathogens) -> Disinfestants (10529ms) What are pathogens? The proper treatment 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (The proper treatment, often is to eliminate, pathogens) -> The proper treatment (10657ms) What are pathogens? Molecular tools 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (Molecular tools, are used to detect, pathogens) -> Molecular tools (10426ms) What are pathogens? Scientists 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (Scientists, are interested in, plant-pathogen interactions) -> Scientists (10390ms) What are pathogens? Monoclonal antibodies 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Monoclonal antibodies, can also cling to, pathogens) -> Monoclonal antibodies (10443ms) What are pathogens? Better techniques 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (Better techniques, are needed to detect, pathogens) -> Better techniques (10719ms) What are pathogens? Source protection 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (Source protection, is essential to keep, pathogens) -> Source protection (10656ms) What are pathogens? immune defense 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (immune defense, can transmit, pathogens) -> immune defense (10496ms) What are pathogens? an udder infection 1.111111111107 What are pathogens? -> $x: ($x, influence, pathogen) -> (an udder infection, is influenced by, the pathogen species) -> an udder infection (10562ms) What are pathogens? Alopecia hair loss 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (Alopecia hair loss, is thought to be, pathogen) -> Alopecia hair loss (10610ms) What are pathogens? LFTB 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (LFTB, is treated to kill, pathogens) -> LFTB (10372ms) What are pathogens? Mysis Supreme 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (Mysis Supreme, is, pathogen) -> Mysis Supreme (10748ms) What are pathogens? Wind 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Wind, can spread, pathogens) -> Wind (10748ms) What are pathogens? diversity 1.111111111107 What are pathogens? -> $x: ($x, influence, pathogen) -> (diversity, can influence, pathogen protection) -> diversity (10759ms) What are pathogens? Gadjeva 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (Gadjeva, is interested in, host-pathogen interactions) -> Gadjeva (10719ms) What are pathogens? Hepatitis C 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (Hepatitis C, appear to be, pathogens) -> Hepatitis C (10479ms) What are pathogens? swimmers 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (swimmers, may be exposed to, pathogens) -> swimmers (10760ms) What are pathogens? NeoLibs 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (NeoLibs, are, Pathogens) -> NeoLibs (10372ms) What are pathogens? A special method 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (A special method, is established to identify, pathogens) -> A special method (10687ms) What are pathogens? even browsing consumers 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (even browsing consumers, can transfer, pathogens) -> even browsing consumers (10496ms) What are pathogens? monoclonal populations 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (monoclonal populations, are more vulnerable to, pathogens) -> monoclonal populations (10641ms) What are pathogens? a monoculture 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (a monoculture, are very sensitive to, pathogens) -> a monoculture (10372ms) What are pathogens? University 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (University, was published in, Foodborne Pathogens and Disease) -> University (10672ms) What are pathogens? lipoxygenase gene 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (lipoxygenase gene, can be induced by, pathogens) -> lipoxygenase gene (10672ms) What are pathogens? the eggs 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (the eggs, will be housed in, Specific Pathogen Free conditions) -> the eggs (10495ms) What are pathogens? ppGpp 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (ppGpp, is required in, many bacterial pathogens) -> ppGpp (10443ms) What are pathogens? the material 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (the material, can be verified to be, pathogen) -> the material (10626ms) What are pathogens? the immune system 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (the immune system, is more responsive to, pathogens) -> the immune system (10734ms) What are pathogens? garden soil 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (garden soil, can contain, pathogens) -> garden soil (10546ms) What are pathogens? COAA... 1.111111111107 What are pathogens? -> $x: (pathogen, be about, $x) -> (Emerging Pathogens Institute People, are talking about, COAA...) -> COAA... (10461ms) What are pathogens? sprouts 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (sprouts, being contaminated with, pathogens) -> sprouts (10390ms) What are pathogens? Cows 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Cows, stressed can slough, pathogens) -> Cows (10443ms) What are pathogens? Roche 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (Roche, are aiding in, these pathogen detection) -> Roche (10478ms) What are pathogens? fungi 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (fungi, can push back, pathogens) -> fungi (10610ms) What are pathogens? pets 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (pets, may be exposed to, pathogens) -> pets (10426ms) What are pathogens? human health and disease 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (human health and disease, is the control of, pathogens) -> human health and disease (10479ms) What are pathogens? trade and travel 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (trade and travel, are, pathogens) -> trade and travel (10733ms) What are pathogens? Lactose and starch 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Lactose and starch, can feed, pathogens) -> Lactose and starch (10594ms) What are pathogens? suspended sediment 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (suspended sediment, can transport, pathogens) -> suspended sediment (10408ms) What are pathogens? microbes 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (microbes, is, pathogen) -> microbes (10610ms) What are pathogens? Nature 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (Nature, have been published in, the journal PLoS Pathogens) -> Nature (10760ms) What are pathogens? Secondary constructive tests 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (Secondary constructive tests, are for, pathogens) -> Secondary constructive tests (10610ms) What are pathogens? Ballast water 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Ballast water, also can transfer, pathogens) -> Ballast water (10626ms) What are pathogens? certain people 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (certain people, are carriers of, pathogens) -> certain people (10610ms) What are pathogens? a colony 1.111111111107 What are pathogens? -> $x: ($x, influence, pathogen) -> (a colony, influences its susceptibility to, microbial pathogens) -> a colony (10748ms) What are pathogens? Humans 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (Humans, may be exposed to, pathogens) -> Humans (10546ms) What are pathogens? Stormwater and rain runoff 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Stormwater and rain runoff, can carry, pathogens) -> Stormwater and rain runoff (10760ms) What are pathogens? David G Bourne 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (David G Bourne, was published in, PLoS Pathogens) -> David G Bourne (10562ms) What are pathogens? molecules 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (molecules, are broadly shared by, pathogens) -> molecules (10461ms) What are pathogens? the naked eye 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (the naked eye, can carry, pathogens) -> the naked eye (10626ms) What are pathogens? study 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (study, was/is, pathogens) -> study (10687ms) What are pathogens? The work 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (The work, was published in, PLoS Pathogens online) -> The work (10672ms) What are pathogens? Bacteria 1.111111111107 What are pathogens? -> $x: ($x, classify as, pathogen) -> (Bacteria, are classified as, primary pathogens) -> Bacteria (10701ms) What are pathogens? Basic meat safety Meat 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (Basic meat safety Meat, is highly susceptible to, pathogens) -> Basic meat safety Meat (10426ms) What are pathogens? the newborn calf 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (the newborn calf, is exposed to, pathogens) -> the newborn calf (10719ms) What are pathogens? least two-thirds 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (least two-thirds, are, pathogens) -> least two-thirds (10408ms) What are pathogens? Strep uberis 1.111111111107 What are pathogens? -> $x: ($x, classify as, pathogen) -> (Strep uberis, is classified as, an environmental pathogen) -> Strep uberis (10372ms) What are pathogens? pigs 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (pigs, are housed in, pathogen-free units) -> pigs (10426ms) What are pathogens? Titanium dioxide 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Titanium dioxide, can also destroy, pathogens) -> Titanium dioxide (10512ms) What are pathogens? Fungus Gnats 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Fungus Gnats, can vector, pathogens) -> Fungus Gnats (10426ms) What are pathogens? Streptococcus 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (Streptococcus, are, pathogens) -> Streptococcus (10771ms) What are pathogens? a weakened immune system 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (a weakened immune system, can be overpowered by, pathogens) -> a weakened immune system (10443ms) What are pathogens? enough chemical 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (enough chemical, is added to kill, pathogens) -> enough chemical (10426ms) What are pathogens? the skin cells 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (the skin cells, as being, pathogens) -> the skin cells (10657ms) What are pathogens? workers 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (workers, be exposed to, pathogens) -> workers (10390ms) What are pathogens? 60 percent 1.111111111107 What are pathogens? -> $x: (pathogen, be about, $x) -> (Gram-negative pathogens, were found in about, 60 percent) -> 60 percent (10496ms) What are pathogens? human illness 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (human illness, are, pathogens) -> human illness (10687ms) What are pathogens? 30 percent worldwide 1.111111111107 What are pathogens? -> $x: (pathogen, be about, $x) -> (pathogens, are estimated to be about, 30 percent worldwide) -> 30 percent worldwide (10760ms) What are pathogens? the important pH factor 1.111111111107 What are pathogens? -> $x: ($x, influence, pathogen) -> (the important pH factor, influences the survival of, pathogens) -> the important pH factor (10496ms) What are pathogens? an important component 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (an important component, are exposed to, pathogens) -> an important component (10610ms) What are pathogens? the vegetable 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (the vegetable, has been exposed to, pathogens) -> the vegetable (10443ms) What are pathogens? The research 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (The research, is published in, PLoS Pathogens) -> The research (10390ms) What are pathogens? the human microbiota 1.111111111107 What are pathogens? -> $x: ($x, influence, pathogen) -> (the human microbiota, influences, host-pathogen interactions) -> the human microbiota (10461ms) What are pathogens? Voice frequencies 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Voice frequencies, can identify, pathogens) -> Voice frequencies (10443ms) What are pathogens? Irradiation 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (Irradiation, is used to control, pathogens) -> Irradiation (10594ms) What are pathogens? DCs 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (DCs, can incorporate, pathogens) -> DCs (10562ms) What are pathogens? groups D , F , H , and K 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (groups D , F , H , and K, also can be, pathogens) -> groups D , F , H , and K (10461ms) What are pathogens? plants or animals 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (plants or animals, are, pathogens) -> plants or animals (10408ms) What are pathogens? Sexual recombination 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (Sexual recombination, is important in, the pathogen life cycle) -> Sexual recombination (10408ms) What are pathogens? cultivation methods 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (cultivation methods, can filter, pathogens) -> cultivation methods (10408ms) What are pathogens? depressed resistance 1.111111111107 What are pathogens? -> $x: ($x, classify as, pathogen) -> (depressed resistance, are classified as, opportunistic pathogens) -> depressed resistance (10354ms) What are pathogens? the soil 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (the soil, are most vulnerable to, pathogens) -> the soil (10719ms) What are pathogens? B cells 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (B cells, are exposed to, pathogens) -> B cells (10702ms) What are pathogens? natural selection 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (natural selection, is, pathogens) -> natural selection (10408ms) What are pathogens? Regular soil 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Regular soil, can contain, pathogens) -> Regular soil (10702ms) What are pathogens? 20 % 1.111111111107 What are pathogens? -> $x: (pathogen, be about, $x) -> (the pathogen and toxin information, is only about, 20 %) -> 20 % (10443ms) What are pathogens? the calf 1.111111111107 What are pathogens? -> $x: ($x, influence, pathogen) -> (the calf, may influence, pathogen numbers) -> the calf (10529ms) What are pathogens? The products 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (The products, can actually transport, pathogens) -> The products (10496ms) What are pathogens? Complement proteins 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Complement proteins, can kill, pathogens) -> Complement proteins (10760ms) What are pathogens? Treatments 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Treatments, can kill, pathogens) -> Treatments (10771ms) What are pathogens? Live food 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Live food, can also introduce, pathogens) -> Live food (10594ms) What are pathogens? an abstact 1.111111111107 What are pathogens? -> $x: (pathogen, be about, $x) -> (a pathogen, is just throwing about, an abstact) -> an abstact (10672ms) What are pathogens? Animals 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (Animals, were housed in, specific pathogen?free facilities) -> Animals (10760ms) What are pathogens? Such temperature abuse 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Such temperature abuse, can enable, pathogens) -> Such temperature abuse (10529ms) What are pathogens? Manure 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Manure, can contain, pathogens) -> Manure (10578ms) What are pathogens? likely 1.111111111107 What are pathogens? -> $x: ($x, influence, pathogen) -> (likely, reflect the influence of, pathogens) -> likely (10479ms) What are pathogens? The role of luxS 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (The role of luxS, has been investigated in, the plant pathogen) -> The role of luxS (10656ms) What are pathogens? proof 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (proof, is in, our pathogen tests and flavor) -> proof (10408ms) What are pathogens? roofs 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (roofs, can have, pathogens) -> roofs (10760ms) What are pathogens? Preservatives 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (Preservatives, must be toxic to, pathogens) -> Preservatives (10479ms) What are pathogens? smart federal laws 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (smart federal laws, can control access to, pathogens) -> smart federal laws (10672ms) What are pathogens? the water 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (the water, may be contaminated with, pathogens) -> the water (10657ms) What are pathogens? Pam 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (Pam, is interested in, host/pathogen interactions) -> Pam (10513ms) What are pathogens? pathologists 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (pathologists, are required to test, pathogens) -> pathologists (10461ms) What are pathogens? the circadian clock 1.111111111107 What are pathogens? -> $x: ($x, influence, pathogen) -> (the circadian clock, influences our susceptibility to, pathogens) -> the circadian clock (10748ms) What are pathogens? the epithelium 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (the epithelium, is a barrier to, pathogens) -> the epithelium (10461ms) What are pathogens? text/html Select agents 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (text/html Select agents, are, pathogens) -> text/html Select agents (10479ms) What are pathogens? meristem tip culture 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (meristem tip culture, is to eliminate, pathogens) -> meristem tip culture (10496ms) What are pathogens? Antibiotic susceptibilities 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (Antibiotic susceptibilities, will be performed on, pathogens) -> Antibiotic susceptibilities (10719ms) What are pathogens? the surface area 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (the surface area, is potentially exposed to, pathogens) -> the surface area (10496ms) What are pathogens? Milk 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Milk, can be contaminated with, pathogens) -> Milk (10610ms) What are pathogens? environmental factors 1.111111111107 What are pathogens? -> $x: ($x, influence, pathogen) -> (environmental factors, influence the growth of, pathogens) -> environmental factors (10719ms) What are pathogens? interventions 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (interventions, can prevent, pathogens) -> interventions (10610ms) What are pathogens? Ixodes ricinus tick 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Ixodes ricinus tick, can transmit, pathogens) -> Ixodes ricinus tick (10771ms) What are pathogens? Eggs and chicks 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Eggs and chicks, can carry, pathogens) -> Eggs and chicks (10562ms) What are pathogens? 25 % 1.111111111107 What are pathogens? -> $x: (pathogen, be about, $x) -> (the pathogen, has been found in about, 25 %) -> 25 % (10529ms) What are pathogens? the human body 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (the human body, is able to resist, pathogens) -> the human body (10529ms) What are pathogens? two exibits 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (two exibits, are, pathogens) -> two exibits (10733ms) What are pathogens? The influenza virus 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (The influenza virus, is grown in, ?specific pathogen-free?) -> The influenza virus (10513ms) What are pathogens? the breeding flock 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (the breeding flock, is, pathogen) -> the breeding flock (10734ms) What are pathogens? magnetoresistive biochip 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (magnetoresistive biochip, can identify, pathogens) -> magnetoresistive biochip (10733ms) What are pathogens? T cells 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (T cells, can kill, pathogens) -> T cells (10702ms) What are pathogens? shellfish 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (shellfish, are, pathogen) -> shellfish (10578ms) What are pathogens? principle sterile 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (principle sterile, can contain, pathogens) -> principle sterile (10562ms) What are pathogens? bacteria and viruses 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (bacteria and viruses, were discovered to be, pathogens) -> bacteria and viruses (10657ms) What are pathogens? Producers 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Producers, can reduce, pathogens) -> Producers (10443ms) What are pathogens? The bad bacteria 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (The bad bacteria, are known as, pathogens) -> The bad bacteria (10672ms) What are pathogens? broccoli 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (broccoli, is much lower in, pathogen feeding carbs) -> broccoli (10687ms) What are pathogens? Livup supplements 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (Livup supplements, are useful to eliminate, pathogens) -> Livup supplements (10479ms) What are pathogens? A low dose 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (A low dose, can effectively reduce, pathogens) -> A low dose (10578ms) What are pathogens? the egg 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (the egg, is more vulnerable to, pathogens) -> the egg (10672ms) What are pathogens? The most common drinking water contaminants 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (The most common drinking water contaminants, are, pathogens) -> The most common drinking water contaminants (10610ms) What are pathogens? The team?s method 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (The team?s method, is detailed in, the journal PLoS Pathogens) -> The team?s method (10733ms) What are pathogens? Sensors 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Sensors, can analyse, pathogens) -> Sensors (10771ms) What are pathogens? Nystatin Cream 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (Nystatin Cream, are, pathogen) -> Nystatin Cream (10771ms) What are pathogens? Even clear brooks and lakes 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Even clear brooks and lakes, can be loaded with, pathogens) -> Even clear brooks and lakes (10461ms) What are pathogens? an organism 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (an organism, can transmit, pathogens) -> an organism (10426ms) What are pathogens? Focus 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (Focus, is on, pathogens) -> Focus (10578ms) What are pathogens? The questions 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (The questions, Are, pathogens) -> The questions (10734ms) What are pathogens? The foliar application formula 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (The foliar application formula, can suppress, pathogens) -> The foliar application formula (10461ms) What are pathogens? Raw sewage 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (Raw sewage, is likely to contain, pathogens) -> Raw sewage (10594ms) What are pathogens? natural agents 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (natural agents, can attack, pathogens) -> natural agents (10672ms) What are pathogens? inadequate air exchange 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (inadequate air exchange, can allow, pathogens) -> inadequate air exchange (10594ms) What are pathogens? microbial activity 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (microbial activity, can destroy, pathogens) -> microbial activity (10783ms) What are pathogens? Fish 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (Fish, are continually exposed to, pathogens) -> Fish (10546ms) What are pathogens? steamers 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (steamers, now can help kill, pathogens) -> steamers (10626ms) What are pathogens? water 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (water, is mainly due to, pathogens) -> water (10701ms) What are pathogens? heat 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (heat, can destroy, pathogens) -> heat (10513ms) What are pathogens? the cells 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (the cells, are in, direct contact with the pathogen) -> the cells (10626ms) What are pathogens? raw fish 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (raw fish, are limited to, pathogens) -> raw fish (10641ms) What are pathogens? Gingivitis 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (Gingivitis, is the result of, pathogens) -> Gingivitis (10719ms) What are pathogens? European populations 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (European populations, are exposed to, pathogens) -> European populations (10479ms) What are pathogens? 2 log10 1.111111111107 What are pathogens? -> $x: (pathogen, be about, $x) -> (The pathogen, was reduced by about, 2 log10) -> 2 log10 (10771ms) What are pathogens? The researchers findings 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (The researchers findings, are published in, PLoS Pathogens) -> The researchers findings (10426ms) What are pathogens? An AdsA homologue 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (An AdsA homologue, was identified in, the anthrax pathogen) -> An AdsA homologue (10578ms) What are pathogens? natural products 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (natural products, are fungicidal to invading, pathogens) -> natural products (10657ms) What are pathogens? Select Agents Select agents 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (Select Agents Select agents, are, pathogens) -> Select Agents Select agents (10760ms) What are pathogens? the mission briefing 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (the mission briefing, is to mark, pathogens) -> the mission briefing (10529ms) What are pathogens? no clinical symptoms 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (no clinical symptoms, can discharge, pathogens) -> no clinical symptoms (10529ms) What are pathogens? the elderly , 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (the elderly ,, are uniquely susceptible to, pathogens) -> the elderly , (10426ms) What are pathogens? An effective contact 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (An effective contact, is an exposure to, pathogens) -> An effective contact (10479ms) What are pathogens? herd animals 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (herd animals, are more susceptible to, pathogens) -> herd animals (10390ms) What are pathogens? glandular fever 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (glandular fever, is linked to, pathogens) -> glandular fever (10594ms) What are pathogens? little attention 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (little attention, is given to, pathogens) -> little attention (10461ms) What are pathogens? fields 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (fields, can carry, pathogens) -> fields (10354ms) What are pathogens? the size 1.111111111107 What are pathogens? -> $x: (pathogen, be about, $x) -> (The pathogen, is about, the size) -> the size (10562ms) What are pathogens? specimens 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (specimens, are likely to contain, pathogens) -> specimens (10496ms) What are pathogens? uncomposted plants 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (uncomposted plants, were being attacked by, pathogens) -> uncomposted plants (10657ms) What are pathogens? ?Our No. 1 goal 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (?Our No. 1 goal, is to eliminate, pathogens) -> ?Our No. 1 goal (10771ms) What are pathogens? Anaerobic bacteria 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (Anaerobic bacteria, are, pathogens) -> Anaerobic bacteria (10687ms) What are pathogens? an animal 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (an animal, is exposed to, pathogens) -> an animal (10657ms) What are pathogens? antibodies 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (antibodies, was solely to recognize, pathogens) -> antibodies (10610ms) What are pathogens? ?beans 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (?beans, are notoriously susceptible to, pathogens) -> ?beans (10771ms) What are pathogens? alternative septic systems 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (alternative septic systems, are designed to reduce, pathogens) -> alternative septic systems (10408ms) What are pathogens? Students 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (Students, are also trained in, blood borne pathogens) -> Students (10529ms) What are pathogens? Caliper Life Sciences 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (Caliper Life Sciences, are confirmed to be, pathogen) -> Caliper Life Sciences (10657ms) What are pathogens? compost teas 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (compost teas, can be sources of, pathogens) -> compost teas (10372ms) What are pathogens? poliovirus 1.111111111107 What are pathogens? -> $x: ($x, classify as, pathogen) -> (poliovirus, is classified as, a BSL 2 pathogen) -> poliovirus (10641ms) What are pathogens? pastured cows 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (pastured cows, can still have, pathogens) -> pastured cows (10496ms) What are pathogens? e-coli 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (e-coli, are, pathogens) -> e-coli (10771ms) What are pathogens? a few 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (a few, can be, pathogens) -> a few (10408ms) What are pathogens? the Wellcome Trust 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (the Wellcome Trust, was published in, the journal PLoS Pathogens) -> the Wellcome Trust (10760ms) What are pathogens? ground meat 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (ground meat, can have, pathogens) -> ground meat (10529ms) What are pathogens? Adequate normal flora 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (Adequate normal flora, is required to keep, pathogens) -> Adequate normal flora (10426ms) What are pathogens? sewage sludge 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (sewage sludge, is rich in, dangerous human pathogens) -> sewage sludge (10702ms) What are pathogens? puppy food 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (puppy food, is, pathogen) -> puppy food (10733ms) What are pathogens? The lactic bacteria 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (The lactic bacteria, can combat, pathogens) -> The lactic bacteria (10390ms) What are pathogens? individual stalls 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (individual stalls, are often exposed to, pathogens) -> individual stalls (10546ms) What are pathogens? beneficial stomach bacteria 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (beneficial stomach bacteria, are deadly to, pathogens) -> beneficial stomach bacteria (10687ms) What are pathogens? MELAfol 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (MELAfol, is impervious to, pathogens) -> MELAfol (10479ms) What are pathogens? supermarket food 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (supermarket food, can be contaminated with, pathogens) -> supermarket food (10390ms) What are pathogens? LPS 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (LPS, can be modified by, pathogens) -> LPS (10372ms) What are pathogens? the genus 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (the genus, are, pathogens) -> the genus (10372ms) What are pathogens? Not all germs 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (Not all germs, are, pathogens) -> Not all germs (10626ms) What are pathogens? fresh animal manure 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (fresh animal manure, can contain, pathogens) -> fresh animal manure (10610ms) What are pathogens? apoptosis 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (apoptosis, may be beneficial to, pathogens) -> apoptosis (10771ms) What are pathogens? animal byproducts 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (animal byproducts, can contain, pathogens) -> animal byproducts (10578ms) What are pathogens? small peptide antimicrobials 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (small peptide antimicrobials, can control, pathogens) -> small peptide antimicrobials (10641ms) What are pathogens? such effects 1.111111111107 What are pathogens? -> $x: ($x, influence, pathogen) -> (such effects, are likely to be influenced by, pathogen effects) -> such effects (10771ms) What are pathogens? non-pathogens 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (non-pathogens, can be converted into, pathogens) -> non-pathogens (10578ms) What are pathogens? mushroom 1.111111111107 What are pathogens? -> $x: (pathogen, be about, $x) -> (dangerous pathogens, is about to, mushroom) -> mushroom (10594ms) What are pathogens? fresh waters 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (fresh waters, are impaired due to, pathogens) -> fresh waters (10719ms) What are pathogens? glands 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (glands, is very susceptible to, pathogens) -> glands (10546ms) What are pathogens? autopsy 1.111111111107 What are pathogens? -> $x: ($x, classify as, pathogen) -> (autopsy, were classified as, non-pathogens) -> autopsy (10702ms) What are pathogens? a category 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (a category, are more susceptible to, pathogens) -> a category (10478ms) What are pathogens? The breed 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (The breed, is less susceptible to, pathogens) -> The breed (10626ms) What are pathogens? spatial transmission Disease vectors 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (spatial transmission Disease vectors, can transmit, pathogens) -> spatial transmission Disease vectors (10408ms) What are pathogens? the following criteria 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (the following criteria, were used to identify, pathogens) -> the following criteria (10626ms) What are pathogens? Southern California 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (Southern California, Are, pathogens) -> Southern California (10610ms) What are pathogens? HIV-infection 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (HIV-infection, is seen in almost, all infectious pathogens) -> HIV-infection (10512ms) What are pathogens? Microsporidia 1.111111111107 What are pathogens? -> $x: ($x, classify as, pathogen) -> (Microsporidia, are classified as, priority pathogens) -> Microsporidia (10562ms) What are pathogens? doctors 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (doctors, are, pathogens) -> doctors (10594ms) What are pathogens? home solution 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (home solution, can still help reduce, pathogens) -> home solution (10702ms) What are pathogens? radiation 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (radiation, can kill, pathogens) -> radiation (10641ms) What are pathogens? Rhapis 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (Rhapis, are very resistant to, pathogens) -> Rhapis (10372ms) What are pathogens? Not all viruses 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (Not all viruses, are, pathogens) -> Not all viruses (10443ms) What are pathogens? mucosal surfaces 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (mucosal surfaces, are exposed to, pathogens) -> mucosal surfaces (10771ms) What are pathogens? certain peptides 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (certain peptides, can kill, pathogens) -> certain peptides (10594ms) What are pathogens? the preserved cells 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (the preserved cells, can be tested for, pathogens) -> the preserved cells (10426ms) What are pathogens? the goal 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (the goal, is to keep, pathogens) -> the goal (10479ms) What are pathogens? raw meat 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (raw meat, can still contain, pathogens) -> raw meat (10748ms) What are pathogens? healthy bodies 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (healthy bodies, are, pathogens) -> healthy bodies (10687ms) What are pathogens? a huge surface area 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (a huge surface area, is exposed to, pathogens) -> a huge surface area (10594ms) What are pathogens? hiv and hep C 1.111111111107 What are pathogens? -> $x: (pathogen, be about, $x) -> (the bloodborne pathogens, was all about, hiv and hep C) -> hiv and hep C (10719ms) What are pathogens? Migrants 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (Migrants, can be exposed to, pathogens) -> Migrants (10748ms) What are pathogens? food 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (food, are, pathogens) -> food (10578ms) What are pathogens? acinetobacter 1.111111111107 What are pathogens? -> $x: ($x, classify as, pathogen) -> (acinetobacter, is classified as, an opportunistic pathogen) -> acinetobacter (10687ms) What are pathogens? indoors 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (indoors, are known to be, pathogens) -> indoors (10496ms) What are pathogens? angular cheilitis 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (angular cheilitis, are, pathogens) -> angular cheilitis (10687ms) What are pathogens? sediment 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (sediment, can transport, pathogens) -> sediment (10372ms) What are pathogens? Pollutants 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (Pollutants, addressed were, pathogens) -> Pollutants (10657ms) What are pathogens? organic matter 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (organic matter, can also contain, pathogens) -> organic matter (10354ms) What are pathogens? system 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (system, is a subpart of the body within, Pathogens) -> system (10461ms) What are pathogens? B. hominis 1.111111111107 What are pathogens? -> $x: ($x, be to, pathogen) -> (B. hominis, may be considered to be, pathogens) -> B. hominis (10610ms) What are pathogens? 09:37 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (09:37, AM in, Pathogens , Physiology & Genetics) -> 09:37 (10372ms) What are pathogens? Any bodily substance 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Any bodily substance, can carry, pathogens) -> Any bodily substance (10672ms) What are pathogens? OPIM 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (OPIM, are enrolled in, the Bloodborne Pathogens Program) -> OPIM (10771ms) What are pathogens? bendamustine 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (bendamustine, is, pathogen) -> bendamustine (10687ms) What are pathogens? organisms 1.111111111107 What are pathogens? -> $x: ($x, be be, pathogen) -> (organisms, are, pathogens) -> organisms (10719ms) What are pathogens? downer cows 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (downer cows, can pass on, pathogens) -> downer cows (10461ms) What are pathogens? West Nile virus 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (West Nile virus, are important in, amplifying the pathogen) -> West Nile virus (10702ms) What are pathogens? Even treated sewage 1.111111111107 What are pathogens? -> $x: ($x, can, pathogen) -> (Even treated sewage, can contain, pathogens) -> Even treated sewage (10512ms) What are pathogens? the past decade 1.111111111107 What are pathogens? -> $x: ($x, be in, pathogen) -> (the past decade, are listed in, Table 2. Overseas pathogens) -> the past decade (10594ms) What are pathogens? Eiken Chemical 0.999999999997 What are pathogens? -> $x: ($x, develop, pathogen) -> (Eiken Chemical, developed, the foodborne pathogen kits) -> Eiken Chemical (10794ms) What are pathogens? UC Davis 0.999999999997 What are pathogens? -> $x: ($x, develop, pathogen) -> (UC Davis, develop methods to detect, pathogens) -> UC Davis (10806ms) What are pathogens? the immune response 0.999999999997 What are pathogens? -> $x: ($x, induce, pathogen) -> (the immune response, were induced by, a pathogen) -> the immune response (10783ms) What are pathogens? Pharmacists 0.999999999997 What are pathogens? -> $x: ($x, develop, pathogen) -> (Pharmacists, develop drugs against, particular pathogens) -> Pharmacists (10783ms) What are pathogens? the late 1960 0.999999999997 What are pathogens? -> $x: ($x, develop, pathogen) -> (the late 1960, 's to develop, disabling pathogens) -> the late 1960 (10805ms) What are pathogens? the Weizmann Institute 0.999999999997 What are pathogens? -> $x: ($x, develop, pathogen) -> (the Weizmann Institute, are developing, a host-specific pathogen) -> the Weizmann Institute (10806ms) What are pathogens? a technique 0.999999999997 What are pathogens? -> $x: ($x, develop, pathogen) -> (a technique, developed to, track pathogens in sewage) -> a technique (10794ms) What are pathogens? The team 0.999999999997 What are pathogens? -> $x: ($x, develop, pathogen) -> (The team, aims to develop, a plant-pathogen methodology) -> The team (10783ms) What are pathogens? the risk assessment models 0.999999999997 What are pathogens? -> $x: ($x, develop, pathogen) -> (the risk assessment models, developed world-wide for, pathogens) -> the risk assessment models (10794ms) What are pathogens? the vaccine composition 0.999999999997 What are pathogens? -> $x: ($x, comprise, pathogen) -> (the vaccine composition, can comprise, an attenuated pathogen) -> the vaccine composition (10794ms) What are pathogens? The latter two cases 0.999999999997 What are pathogens? -> $x: ($x, represent, pathogen) -> (The latter two cases, represent, pathogens) -> The latter two cases (10794ms) What are pathogens? Incontri 0.999999999997 What are pathogens? -> $x: ($x, di, pathogen) -> (Incontri, di, Fisica and related pathogens) -> Incontri (10806ms) What are pathogens? the water environment 0.999999999997 What are pathogens? -> $x: ($x, represent, pathogen) -> (the water environment, represent, actual pathogens) -> the water environment (10794ms) What are pathogens? M genitalium 0.999999999997 What are pathogens? -> $x: ($x, represent, pathogen) -> (M genitalium, may represent, an important new pathogen) -> M genitalium (10794ms) What are pathogens? fungicides 0.999999999997 What are pathogens? -> $x: ($x, develop, pathogen) -> (fungicides, has developed in, the pathogen population) -> fungicides (10783ms) What are pathogens? Neutrophil microbicides 0.999999999997 What are pathogens? -> $x: ($x, induce, pathogen) -> (Neutrophil microbicides, induce, a pathogen survival response) -> Neutrophil microbicides (10794ms) What are pathogens? Pti5 0.999999999997 What are pathogens? -> $x: ($x, induce, pathogen) -> (Pti5, are induced by, pathogens) -> Pti5 (10806ms) What are pathogens? Microbial insecticides 0.999999999997 What are pathogens? -> $x: ($x, develop, pathogen) -> (Microbial insecticides, are developed from, insect pathogens) -> Microbial insecticides (10806ms) What are pathogens? equilibrium 0.999999999997 What are pathogens? -> $x: ($x, develop, pathogen) -> (equilibrium, develop protective responses against, pathogens) -> equilibrium (10794ms) What are pathogens? the government 0.999999999997 What are pathogens? -> $x: ($x, develop, pathogen) -> (the government, secretly developed, these ?mystery pathogens) -> the government (10783ms) What are pathogens? fish don???t 0.999999999997 What are pathogens? -> $x: ($x, develop, pathogen) -> (fish don???t, necessarily develop immunity to, pathogens) -> fish don???t (10806ms) What are pathogens? coli 0.999999999997 What are pathogens? -> $x: ($x, represent, pathogen) -> (coli, represent a group of, pathogens) -> coli (10783ms) What are pathogens? Brucella 0.999999999997 What are pathogens? -> $x: ($x, comprise, pathogen) -> (Brucella, is comprised mostly of, mammalian pathogens) -> Brucella (10794ms) What are pathogens? The first three characters 0.999999999997 What are pathogens? -> $x: ($x, represent, pathogen) -> (The first three characters, represent, the bacterial pathogen) -> The first three characters (10783ms) What are pathogens? ?modern ? children 0.999999999997 What are pathogens? -> $x: ($x, develop, pathogen) -> (?modern ? children, develop resistance to, pathogens) -> ?modern ? children (10783ms) What are pathogens? the person 0.999999999997 What are pathogens? -> $x: ($x, develop, pathogen) -> (the person, develops, resistance to the pathogen) -> the person (10783ms) What are pathogens? Prion 0.999999999997 What are pathogens? -> $x: ($x, represent, pathogen) -> (Prion, represents a unique class of, pathogens) -> Prion (10806ms) What are pathogens? 1?-OHase expression 0.999999999997 What are pathogens? -> $x: ($x, induce, pathogen) -> (1?-OHase expression, is induced by, pathogens) -> 1?-OHase expression (10783ms) What are pathogens? corynebacteria 0.999999999997 What are pathogens? -> $x: ($x, represent, pathogen) -> (corynebacteria, may represent, pathogens) -> corynebacteria (10794ms) What are pathogens? 8 Infrastructure 0.999999999997 What are pathogens? -> $x: ($x, develop, pathogen) -> (8 Infrastructure, develop, pathogens) -> 8 Infrastructure (10794ms) What are pathogens? the adenovirus 0.999999999997 What are pathogens? -> $x: ($x, develop, pathogen) -> (the adenovirus, will develop immunity to, the other pathogen) -> the adenovirus (10806ms) What are pathogens? Stanley Prusiner 0.9999999999959999 What are pathogens? -> $x: ($x, discover, pathogen) -> (Stanley Prusiner, discovered, an entirely new class of pathogens) -> Stanley Prusiner (10878ms) What are pathogens? transgene phenotypes 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (transgene phenotypes, can be modified by, pathogen invasion) -> transgene phenotypes (10869ms) What are pathogens? The approach 0.9999999999959999 What are pathogens? -> $x: ($x, could be, pathogen) -> (The approach, could be extended to, other pathogens) -> The approach (10859ms) What are pathogens? ? Phage therapy 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (? Phage therapy, can be used to kill, specific pathogens) -> ? Phage therapy (10878ms) What are pathogens? pleural fluid culture 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (pleural fluid culture, can be used to identify, the pathogen) -> pleural fluid culture (10817ms) What are pathogens? intestinal disease 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (intestinal disease, can be colonized by, a pathogen) -> intestinal disease (10816ms) What are pathogens? mechanism 0.9999999999959999 What are pathogens? -> $x: ($x, could be, pathogen) -> (mechanism, could be putrescent by, pathogen or spyware) -> mechanism (10848ms) What are pathogens? Stolons and roots 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (Stolons and roots, can be killed by, the pathogen) -> Stolons and roots (10816ms) What are pathogens? Designated host ranges 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (Designated host ranges, can be inconsistent among, pathogens) -> Designated host ranges (10868ms) What are pathogens? Retroviruses 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (Retroviruses, can be particularly, insidious pathogens) -> Retroviruses (10806ms) What are pathogens? Ticks 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (Ticks, can also be analyzed for, the pathogens) -> Ticks (10838ms) What are pathogens? an outbreak 0.9999999999959999 What are pathogens? -> $x: ($x, could be, pathogen) -> (an outbreak, could be traced to, a single pathogen) -> an outbreak (10828ms) What are pathogens? the fruit 0.9999999999959999 What are pathogens? -> $x: ($x, could be, pathogen) -> (the fruit, could be inoculated with, decay-causing pathogens) -> the fruit (10828ms) What are pathogens? immune-mediated damage 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (immune-mediated damage, can be more lethal than, the pathogen) -> immune-mediated damage (10868ms) What are pathogens? Fecal material 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (Fecal material, can be a source of, pathogens) -> Fecal material (10848ms) What are pathogens? raw milk 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (raw milk, can be contaminated with, a pathogen) -> raw milk (10869ms) What are pathogens? mice 0.9999999999959999 What are pathogens? -> $x: ($x, could be, pathogen) -> (mice, could be designed to combat, deadlier toxins and pathogens) -> mice (10806ms) What are pathogens? Micropredators 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (Micropredators, can be important vectors for, pathogens) -> Micropredators (10848ms) What are pathogens? the product 0.9999999999959999 What are pathogens? -> $x: ($x, could be, pathogen) -> (the product, could be susceptible to, pathogen growth) -> the product (10838ms) What are pathogens? Acute bronchitis 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (Acute bronchitis, can be caused by, contagious pathogens) -> Acute bronchitis (10858ms) What are pathogens? CMI dysfunction 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (CMI dysfunction, can be attributed to, the pathogen) -> CMI dysfunction (10838ms) What are pathogens? ground beef 0.9999999999959999 What are pathogens? -> $x: ($x, could be, pathogen) -> (ground beef, could be tested only once for, pathogens) -> ground beef (10816ms) What are pathogens? Local crops 0.9999999999959999 What are pathogens? -> $x: ($x, could be, pathogen) -> (Local crops, could be affected by, dangerous pathogens) -> Local crops (10828ms) What are pathogens? Produce 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (Produce, can also be contaminated with, pathogens) -> Produce (10827ms) What are pathogens? raw seafood 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (raw seafood, can also be the vector for, various pathogens) -> raw seafood (10858ms) What are pathogens? cats 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (cats, can be due to, different pathogens) -> cats (10828ms) What are pathogens? the transgenic seeds 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (the transgenic seeds, can be transferred to, human pathogens) -> the transgenic seeds (10878ms) What are pathogens? a small or organic farm 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (a small or organic farm, can be a source of, pathogens) -> a small or organic farm (10828ms) What are pathogens? human disease 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (human disease, can be attributed to, pathogens) -> human disease (10869ms) What are pathogens? The immune response 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (The immune response, can be against, a pathogen) -> The immune response (10828ms) What are pathogens? Consumers 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (Consumers, can be exposed to, pathogens) -> Consumers (10869ms) What are pathogens? no significant change 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (no significant change, can be seen for, six pathogens) -> no significant change (10827ms) What are pathogens? Released non-pathogens 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (Released non-pathogens, can be readily converted into, pathogens) -> Released non-pathogens (10869ms) What are pathogens? The technique 0.9999999999959999 What are pathogens? -> $x: ($x, could be, pathogen) -> (The technique, could eventually be used to track down, pathogens) -> The technique (10848ms) What are pathogens? the gut 0.9999999999959999 What are pathogens? -> $x: ($x, constitute, pathogen) -> (the gut, constitute a reservoir of, potential pathogens) -> the gut (10848ms) What are pathogens? crops 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (crops, can potentially be affected by, pathogens) -> crops (10828ms) What are pathogens? lime 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (lime, can be added to control, pathogens) -> lime (10838ms) What are pathogens? synthetic viruses 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (synthetic viruses, can be used to make, pathogens) -> synthetic viruses (10838ms) What are pathogens? the milk and calves 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (the milk and calves, can be exposed to, this pathogen) -> the milk and calves (10817ms) What are pathogens? Items 0.9999999999959999 What are pathogens? -> $x: ($x, could be, pathogen) -> (Items, could be exposed to, blood-borne pathogens and chemicals) -> Items (10817ms) What are pathogens? newer techniques 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (newer techniques, can be used to directly detect, pathogens) -> newer techniques (10848ms) What are pathogens? longleaf pine 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (longleaf pine, can be infected with, these pathogens) -> longleaf pine (10828ms) What are pathogens? STEC 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (STEC, can be distinguished from, other pathogens) -> STEC (10816ms) What are pathogens? wastewater 0.9999999999959999 What are pathogens? -> $x: ($x, could be, pathogen) -> (wastewater, could be mechanisms of, pathogen transfer) -> wastewater (10878ms) What are pathogens? The brains 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (The brains, can be kept completely isolated from, pathogens) -> The brains (10816ms) What are pathogens? Cattle 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (Cattle, can be sub-clinically infected with, these pathogens) -> Cattle (10848ms) What are pathogens? Davis 0.9999999999959999 What are pathogens? -> $x: ($x, discover, pathogen) -> (Davis, even discovered, a pathogen) -> Davis (10848ms) What are pathogens? helical microbes 0.9999999999959999 What are pathogens? -> $x: ($x, discover, pathogen) -> (helical microbes, originally discovered as, plant pathogens) -> helical microbes (10848ms) What are pathogens? the mature bird 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (the mature bird, can be resilient to, pathogen colonization) -> the mature bird (10868ms) What are pathogens? ? ??Imported fish 0.9999999999959999 What are pathogens? -> $x: ($x, could be, pathogen) -> (? ??Imported fish, could be more susceptible to, local pathogens) -> ? ??Imported fish (10838ms) What are pathogens? one machine 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (one machine, can be used to test for, multiple pathogens) -> one machine (10858ms) What are pathogens? Such resistance 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (Such resistance, can then be passed on to, human pathogens) -> Such resistance (10858ms) What are pathogens? Co-infection Dogs 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (Co-infection Dogs, can be co-infected with, other pathogens) -> Co-infection Dogs (10878ms) What are pathogens? one TcR 0.9999999999959999 What are pathogens? -> $x: ($x, could be, pathogen) -> (one TcR, could be directed against, the pathogen) -> one TcR (10869ms) What are pathogens? young shoots 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (young shoots, can be killed by, this pathogen) -> young shoots (10868ms) What are pathogens? PCR 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (PCR, can be used to detect, pathogens) -> PCR (10848ms) What are pathogens? Family members 0.9999999999959999 What are pathogens? -> $x: ($x, could be, pathogen) -> (Family members, could just be passing, each other pathogens) -> Family members (10859ms) What are pathogens? the symptom 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (the symptom, can be expected to last until, the pathogens) -> the symptom (10859ms) What are pathogens? antibiotic resistance 0.9999999999959999 What are pathogens? -> $x: ($x, could be, pathogen) -> (antibiotic resistance, could be passed on to, pathogens) -> antibiotic resistance (10838ms) What are pathogens? amygdala activity 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (amygdala activity, can also be achieved by, pathogens) -> amygdala activity (10869ms) What are pathogens? livestock production 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (livestock production, can be transferred to, other pathogens) -> livestock production (10817ms) What are pathogens? catheter usage 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (catheter usage, can be caused by, various pathogens) -> catheter usage (10878ms) What are pathogens? Similar symptoms 0.9999999999959999 What are pathogens? -> $x: ($x, can be, pathogen) -> (Similar symptoms, can also be caused by, bacterial pathogens) -> Similar symptoms (10869ms) What are pathogens? long 0.8888888888859999 What are pathogens? -> $x: ($x, leave, pathogen) -> (long, could have left a legacy of, pathogens) -> long (10888ms) What are pathogens? retinal damage 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, is critical in minimizing, retinal damage) -> retinal damage (10878ms) What are pathogens? locker rooms 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, can lurk in, locker rooms) -> locker rooms (10916ms) What are pathogens? sludge 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, exist in, sludge) -> sludge (10943ms) What are pathogens? the intestine 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, persisting in, the intestine) -> the intestine (10925ms) What are pathogens? Authorities Concept Scheme 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (10934ms) What are pathogens? crop residue or in the soil 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, survive in, crop residue or in the soil) -> crop residue or in the soil (10952ms) What are pathogens? the mosquitos 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (the mosquitos, get rid of, these pathogens) -> the mosquitos (10943ms) What are pathogens? 80 proof alcohol 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, thrive in, 80 proof alcohol) -> 80 proof alcohol (10934ms) What are pathogens? surface water 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, found in, surface water) -> surface water (10925ms) What are pathogens? worm composting 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (worm composting, gets rid of, pathogens) -> worm composting (10878ms) What are pathogens? future containment efforts 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, will be important in, future containment efforts) -> future containment efforts (10898ms) What are pathogens? the January issue 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, appeared in, the January issue) -> the January issue (10934ms) What are pathogens? wildlife 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, commonly found in, wildlife) -> wildlife (10925ms) What are pathogens? surface 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, may be found in, surface) -> surface (10925ms) What are pathogens? certain your P.C. 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (certain your P.C., has got, pathogen attack) -> certain your P.C. (10888ms) What are pathogens? 39 % 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, were identified in, 39 %) -> 39 % (10916ms) What are pathogens? Smokers ' mouths 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (Smokers ' mouths, getting, colonized by pathogens) -> Smokers ' mouths (10907ms) What are pathogens? the doctor 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (the doctor, get tested for, the pathogen) -> the doctor (10888ms) What are pathogens? number 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, may increase in, number) -> number (10943ms) What are pathogens? high-oxygen environments 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, die in, high-oxygen environments) -> high-oxygen environments (10898ms) What are pathogens? any 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, can happen in, any) -> any (10952ms) What are pathogens? Compost 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (Compost, must get hot enough to kill, pathogens) -> Compost (10925ms) What are pathogens? the lungs 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, found in, the lungs) -> the lungs (10934ms) What are pathogens? kids 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (kids, get exposed to, bad pathogens) -> kids (10907ms) What are pathogens? a radical change 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, has resulted in, a radical change) -> a radical change (10907ms) What are pathogens? HDL 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (HDL, gets converted to, pathogen-fighting particles) -> HDL (10888ms) What are pathogens? body fluids 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, contained in, body fluids) -> body fluids (10943ms) What are pathogens? Fast-moving species 0.8888888888859999 What are pathogens? -> $x: ($x, leave, pathogen) -> (Fast-moving species, leave, pathogens) -> Fast-moving species (10916ms) What are pathogens? hospitals 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, were created in, hospitals) -> hospitals (10925ms) What are pathogens? The objective 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (The objective, is to get rid of, the pathogen) -> The objective (10878ms) What are pathogens? skills assessments 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, participate in, skills assessments) -> skills assessments (10916ms) What are pathogens? Surprise Gift 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (Surprise Gift, get, enteric pathogen) -> Surprise Gift (10934ms) What are pathogens? the Evil Milk 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogen, is in, the Evil Milk) -> the Evil Milk (10898ms) What are pathogens? the patient 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (the patient, can get treatment for, the pathogen) -> the patient (10916ms) What are pathogens? drinking water 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, found in, drinking water) -> drinking water (10907ms) What are pathogens? spliced genes 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (spliced genes, may get transferred to, human pathogens) -> spliced genes (10888ms) What are pathogens? You?ve 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (You?ve, got, pathogen checking software) -> You?ve (10916ms) What are pathogens? a field 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, occur in, a field) -> a field (10878ms) What are pathogens? such an oxygen rich environment 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, cannot live in, such an oxygen rich environment) -> such an oxygen rich environment (10897ms) What are pathogens? the compost 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, still remain in, the compost) -> the compost (10907ms) What are pathogens? nutrients 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (nutrients, get rid of, pathogens and parasites) -> nutrients (10888ms) What are pathogens? Detrick lab 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (Detrick lab, got, its pathogens) -> Detrick lab (10943ms) What are pathogens? The material 0.8888888888859999 What are pathogens? -> $x: ($x, leave, pathogen) -> (The material, left over from, the pathogens) -> The material (10952ms) What are pathogens? a host 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (a host, gets infected by, a pathogen) -> a host (10943ms) What are pathogens? constant movement 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, are in, constant movement) -> constant movement (10888ms) What are pathogens? the granuloma 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, have been found in, the granuloma) -> the granuloma (10916ms) What are pathogens? congee 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, may be present in, congee) -> congee (10907ms) What are pathogens? an overwhelming fashion 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, activate in, an overwhelming fashion) -> an overwhelming fashion (10934ms) What are pathogens? livestock and poultry 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, cause viral infections in, livestock and poultry) -> livestock and poultry (10934ms) What are pathogens? China 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, was observed in, China) -> China (10888ms) What are pathogens? recreational water users 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, can cause illness in, recreational water users) -> recreational water users (10925ms) What are pathogens? General Subdivisions Concept Scheme 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, In Scheme, General Subdivisions Concept Scheme) -> General Subdivisions Concept Scheme (10925ms) What are pathogens? manure 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, found in, manure) -> manure (10907ms) What are pathogens? Table 1 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, is shown in, Table 1) -> Table 1 (10897ms) What are pathogens? the Bio-sand Filter 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, occurs in, the Bio-sand Filter) -> the Bio-sand Filter (10934ms) What are pathogens? the environment 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, found in, the environment) -> the environment (10952ms) What are pathogens? such small amounts 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, are typically present in, such small amounts) -> such small amounts (10943ms) What are pathogens? foodborne illness 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, can result in, foodborne illness) -> foodborne illness (10943ms) What are pathogens? contact with the UV rays 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, come in, contact with the UV rays) -> contact with the UV rays (10888ms) What are pathogens? the re-circulated air 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, found in, the re-circulated air) -> the re-circulated air (10934ms) What are pathogens? loss 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, can result in, loss) -> loss (10907ms) What are pathogens? Pasteurized Milk 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, Can Multiply in, Pasteurized Milk) -> Pasteurized Milk (10934ms) What are pathogens? a dormant stage 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, are in, a dormant stage) -> a dormant stage (10925ms) What are pathogens? the digestive tract 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, occur in, the digestive tract) -> the digestive tract (10907ms) What are pathogens? untreated and land-disposed wastes 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, can survive in, untreated and land-disposed wastes) -> untreated and land-disposed wastes (10934ms) What are pathogens? the population 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, occur in, the population) -> the population (10943ms) What are pathogens? 500k who?ve 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (500k who?ve, got, the pathogen) -> 500k who?ve (10916ms) What are pathogens? greater numbers 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, are be present in, greater numbers) -> greater numbers (10943ms) What are pathogens? power electrical generators 0.8888888888859999 What are pathogens? -> $x: ($x, leave, pathogen) -> (power electrical generators, leave, pathogen-free compost) -> power electrical generators (10888ms) What are pathogens? human pathogens 0.8888888888859999 What are pathogens? -> $x: ($x, leave, pathogen) -> (human pathogens, leave about, 2 to 3 % human pathogens) -> human pathogens (10878ms) What are pathogens? smokers 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (smokers, getting, colonized by pathogens-bacteria) -> smokers (10888ms) What are pathogens? Dr. Beam 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (Dr. Beam, get a short course on, pathogens) -> Dr. Beam (10888ms) What are pathogens? the food chain 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, become established in, the food chain) -> the food chain (10925ms) What are pathogens? soil 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogen, survives in, soil) -> soil (10943ms) What are pathogens? vermicomposting process 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogen, die off in, vermicomposting process) -> vermicomposting process (10907ms) What are pathogens? fecal material and mucus 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, found in, fecal material and mucus) -> fecal material and mucus (10898ms) What are pathogens? pasteurized milk 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, live in, pasteurized milk) -> pasteurized milk (10907ms) What are pathogens? the Fort Detrick lab 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (the Fort Detrick lab, got, its pathogens) -> the Fort Detrick lab (10934ms) What are pathogens? Iraq 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (Iraq, also got samples of, other deadly pathogens) -> Iraq (10898ms) What are pathogens? the food chain and cause disease 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, survive in, the food chain and cause disease) -> the food chain and cause disease (10943ms) What are pathogens? infectivity 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, also vary in, infectivity) -> infectivity (10916ms) What are pathogens? a person 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (a person, gets really sick with, a food-borne pathogen) -> a person (10878ms) What are pathogens? dirt 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (Pathogens, are in, dirt) -> dirt (10916ms) What are pathogens? wild fish populations 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, exist in, wild fish populations) -> wild fish populations (10907ms) What are pathogens? diagnostic data reports 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, may be skewed in, diagnostic data reports) -> diagnostic data reports (10897ms) What are pathogens? sewage 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, found in, sewage) -> sewage (10916ms) What are pathogens? friends 0.8888888888859999 What are pathogens? -> $x: ($x, get, pathogen) -> (friends, may have gotten, the pathogen) -> friends (10925ms) What are pathogens? the water column 0.8888888888859999 What are pathogens? -> $x: (pathogen, in in, $x) -> (pathogens, occurs both in, the water column) -> the water column (10916ms) What are pathogens? work 0.888888888885 What are pathogens? -> $x: ($x, involve, pathogen) -> (work, involving, dangerous pathogens) -> work (10961ms) What are pathogens? Diabetic foot infections 0.888888888885 What are pathogens? -> $x: ($x, involve, pathogen) -> (Diabetic foot infections, involve, multiple potential pathogens) -> Diabetic foot infections (10969ms) What are pathogens? BpaA 0.888888888885 What are pathogens? -> $x: ($x, involve, pathogen) -> (BpaA, is involved in, a critical early pathogen-host interaction) -> BpaA (10952ms) What are pathogens? Resistance responses 0.888888888885 What are pathogens? -> $x: ($x, involve, pathogen) -> (Resistance responses, involve recognition of, pathogen) -> Resistance responses (10952ms) What are pathogens? Plant pathology 0.888888888885 What are pathogens? -> $x: ($x, involve, pathogen) -> (Plant pathology, involves the study of, plants and pathogens) -> Plant pathology (10969ms) What are pathogens? bronchitis cases 0.888888888885 What are pathogens? -> $x: ($x, involve, pathogen) -> (bronchitis cases, involve, a viral pathogen) -> bronchitis cases (10969ms) What are pathogens? a disaster 0.888888888885 What are pathogens? -> $x: ($x, involve, pathogen) -> (a disaster, involving, resistant pathogens) -> a disaster (10961ms) What are pathogens? Infectious disease emergencies 0.888888888885 What are pathogens? -> $x: ($x, involve, pathogen) -> (Infectious disease emergencies, involve, biological pathogens) -> Infectious disease emergencies (10960ms) What are pathogens? The latter 0.888888888885 What are pathogens? -> $x: ($x, involve, pathogen) -> (The latter, clearly involves, pathogen load) -> The latter (10952ms) What are pathogens? infancy 0.888888888885 What are pathogens? -> $x: ($x, involve, pathogen) -> (infancy, may be involved as, the triggering pathogen) -> infancy (10961ms) What are pathogens? 3. Future threats 0.888888888885 What are pathogens? -> $x: ($x, involve, pathogen) -> (3. Future threats, may involve, novel pathogens) -> 3. Future threats (10969ms) What are pathogens? HIV 0.888888888885 What are pathogens? -> $x: ($x, involve, pathogen) -> (HIV, occasionally involve work on, other pathogens) -> HIV (10961ms) What are pathogens? The treatment 0.888888888885 What are pathogens? -> $x: ($x, involve, pathogen) -> (The treatment, involving, exposure of plant to the pathogen) -> The treatment (10961ms) What are pathogens? Additional projects 0.888888888885 What are pathogens? -> $x: ($x, involve, pathogen) -> (Additional projects, involve detecting, priority pathogens) -> Additional projects (10961ms) What are pathogens? squash 0.888888888885 What are pathogens? -> $x: ($x, involve, pathogen) -> (squash, can involve, numerous pathogens) -> squash (10961ms) What are pathogens? the selected genes 0.888888888885 What are pathogens? -> $x: ($x, involve, pathogen) -> (the selected genes, are involved with, pathogen defense) -> the selected genes (10952ms) What are pathogens? CCD 0.888888888885 What are pathogens? -> $x: ($x, involve, pathogen) -> (CCD, involves an interaction between, pathogens) -> CCD (10952ms) What are pathogens? the Philippines 0.7777777777739999 What are pathogens? -> $x: ($x, be use as, pathogen) -> (the Philippines, was used as, the pathogen) -> the Philippines (10969ms) What are pathogens? The chip 0.7777777777739999 What are pathogens? -> $x: ($x, be use as, pathogen) -> (The chip, will be used as, a portable pathogen detection system) -> The chip (10969ms) What are pathogens? any population of insects 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (any population of insects, contains, pathogens) -> any population of insects (11004ms) What are pathogens? Water supplies 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Water supplies, may contain, pathogens) -> Water supplies (11004ms) What are pathogens? polluted resources 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (polluted resources, contains, pathogens) -> polluted resources (10991ms) What are pathogens? Soil 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Soil, naturally contains, pathogens) -> Soil (11004ms) What are pathogens? foods 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (foods, may contain, pathogens) -> foods (10998ms) What are pathogens? atheromas 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (atheromas, contain greater proportions of, pathogens) -> atheromas (10991ms) What are pathogens? Hospital environments 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Hospital environments, can contain many types of, pathogens) -> Hospital environments (10998ms) What are pathogens? conventional dairies 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (conventional dairies, contains, pathogens) -> conventional dairies (10991ms) What are pathogens? animal wastes 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (animal wastes, may also contain, pathogens) -> animal wastes (10985ms) What are pathogens? Wastewater 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Wastewater, contains, pathogens) -> Wastewater (11010ms) What are pathogens? the latter 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (the latter, may still contain some traces of, pathogens) -> the latter (10977ms) What are pathogens? Greywater 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Greywater, contains, less pathogens) -> Greywater (10977ms) What are pathogens? a food 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (a food, contains, pathogens) -> a food (10991ms) What are pathogens? The droppings 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (The droppings, contain, pathogens) -> The droppings (11004ms) What are pathogens? The former 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (The former, may contain large numbers of, pathogens) -> The former (10991ms) What are pathogens? time 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (time, contain, vegetative pathogens) -> time (10998ms) What are pathogens? food and water 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (food and water, often contain, pathogens) -> food and water (10998ms) What are pathogens? Discoloured wood 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Discoloured wood, contained, the pathogen) -> Discoloured wood (10977ms) What are pathogens? the group 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (the group, contains, pathogens) -> the group (10998ms) What are pathogens? FRESH WATER Sewage 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (FRESH WATER Sewage, contains, pathogens) -> FRESH WATER Sewage (10998ms) What are pathogens? a sample 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (a sample, containing, a pathogen) -> a sample (10969ms) What are pathogens? Manure tea 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Manure tea, may contain high levels of, pathogens) -> Manure tea (10985ms) What are pathogens? feces 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (feces, contains, dangerous pathogens) -> feces (10969ms) What are pathogens? Suicide belts 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Suicide belts, may contain, pathogens--) -> Suicide belts (10991ms) What are pathogens? the foods 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (the foods, to contain, pathogens) -> the foods (10991ms) What are pathogens? clay particles 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (clay particles, contain, fewer pathogens) -> clay particles (10998ms) What are pathogens? ?may 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (?may, contain, pathogens?) -> ?may (10985ms) What are pathogens? the packages or envelopes 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (the packages or envelopes, contains, lethal pathogens) -> the packages or envelopes (11004ms) What are pathogens? Sewage 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Sewage, contains high levels of, pathogens) -> Sewage (10991ms) What are pathogens? insects 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (insects, contains, pathogens) -> insects (10977ms) What are pathogens? Organic wastes 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Organic wastes, may contain, pathogens) -> Organic wastes (10985ms) What are pathogens? the blood 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (the blood, containing, the pathogens) -> the blood (10991ms) What are pathogens? substances 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (substances, are reasonably expected to contain, pathogens) -> substances (11004ms) What are pathogens? the sewage 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (the sewage, contains, pathogens) -> the sewage (11004ms) What are pathogens? Untreated sewage 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Untreated sewage, often contains, pathogens) -> Untreated sewage (10998ms) What are pathogens? under-treated sewage 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (under-treated sewage, contains, pathogens) -> under-treated sewage (10985ms) What are pathogens? the samples 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (the samples, contained, the pathogen) -> the samples (11004ms) What are pathogens? raw foods 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (raw foods, containing, pathogens) -> raw foods (11010ms) What are pathogens? Standing water 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Standing water, can contain any number of, pathogens) -> Standing water (10977ms) What are pathogens? Class B biosolids 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Class B biosolids, still contain detectible levels of, pathogens) -> Class B biosolids (10977ms) What are pathogens? Pathogens Sewage biosolids 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Pathogens Sewage biosolids, contain a variety of, pathogens) -> Pathogens Sewage biosolids (11004ms) What are pathogens? heavy rains 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (heavy rains, may contain, pathogens) -> heavy rains (11010ms) What are pathogens? Human excreta and wastewater 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Human excreta and wastewater, also contain, pathogens) -> Human excreta and wastewater (11010ms) What are pathogens? raw animal foods 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (raw animal foods, may contain, pathogens) -> raw animal foods (10991ms) What are pathogens? recycled water 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (recycled water, can potentially contain, pathogens) -> recycled water (10985ms) What are pathogens? the irrigation 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (the irrigation, thus contains, pathogens) -> the irrigation (11010ms) What are pathogens? Even treated water 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Even treated water, can still contain, pathogens) -> Even treated water (10977ms) What are pathogens? bars and restaurants 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (bars and restaurants, contain, some pathogens) -> bars and restaurants (11004ms) What are pathogens? post-consumer materials 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (post-consumer materials, are more likely to contain, pathogens) -> post-consumer materials (10977ms) What are pathogens? Horse manure 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Horse manure, contains, pathogens) -> Horse manure (11004ms) What are pathogens? cat and dog poop 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (cat and dog poop, contains, pathogens) -> cat and dog poop (10977ms) What are pathogens? the genus Aegyptianella 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (the genus Aegyptianella, contains, blood pathogens) -> the genus Aegyptianella (10998ms) What are pathogens? However raw milk 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (However raw milk, may contain, pathogens) -> However raw milk (10985ms) What are pathogens? a specimen 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (a specimen, containing, the pathogen) -> a specimen (11010ms) What are pathogens? Improperly-processed organic fertilizers 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Improperly-processed organic fertilizers, may contain, pathogens) -> Improperly-processed organic fertilizers (10998ms) What are pathogens? Unpasteurized milk 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Unpasteurized milk, may contain, pathogens) -> Unpasteurized milk (10991ms) What are pathogens? ammonia-ridden slime 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (ammonia-ridden slime, may contain, pathogens) -> ammonia-ridden slime (10977ms) What are pathogens? the poop Pet waste 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (the poop Pet waste, contains, pathogen microbes) -> the poop Pet waste (10991ms) What are pathogens? The scrap meats 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (The scrap meats, are more likely to contain, pathogens) -> The scrap meats (11004ms) What are pathogens? real time 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (real time, contain the least amount of, pathogens) -> real time (10998ms) What are pathogens? Human excreta 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Human excreta, contain a full spectrum of, pathogens) -> Human excreta (10969ms) What are pathogens? CAFOs 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (CAFOs, contains pollutants such as, pathogens) -> CAFOs (10985ms) What are pathogens? Gray water 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Gray water, may contain, pathogens) -> Gray water (10998ms) What are pathogens? Such foreign proteins 0.6666666666629999 What are pathogens? -> $x: ($x, contain, pathogen) -> (Such foreign proteins, are contained by, pathogens) -> Such foreign proteins (10977ms) What are pathogens? cattle 0.5555555555539999 What are pathogens? -> $x: ($x, demonstrate, pathogen) -> (cattle, demonstrate its utility for, other foodborne pathogens) -> cattle (11010ms) What are pathogens? emergence 0.555555555553 What are pathogens? -> $x: ($x, concerned, pathogen) -> (emergence, is a particular concern to, the pathogen) -> emergence (11010ms) What are pathogens? farmers 0.555555555553 What are pathogens? -> $x: ($x, concerned, pathogen) -> (farmers, often express concern about, pathogens and insects) -> farmers (11010ms) What are pathogens? Pregnancy 0.555555555553 What are pathogens? -> $x: ($x, implement, pathogen) -> (Pregnancy, implement, the OSHA Bloodborne Pathogen Standards) -> Pregnancy (11010ms) What are pathogens? Roundup Ready wheat varieties 0.555555555553 What are pathogens? -> $x: ($x, concerned, pathogen) -> (Roundup Ready wheat varieties, were concerned about, pathogens) -> Roundup Ready wheat varieties (11010ms) What are pathogens? The Microbiologist 0.555555555553 What are pathogens? -> $x: ($x, implement, pathogen) -> (The Microbiologist, implements, pathogen testing procedures) -> The Microbiologist (11010ms) What are pathogens? pathogens or data 0.555555555553 What are pathogens? -> $x: ($x, concerned, pathogen) -> (pathogens or data, concerning, pathogens) -> pathogens or data (11010ms) What are pathogens? Brown rot control 0.555555555553 What are pathogens? -> $x: ($x, concerned, pathogen) -> (Brown rot control, becomes a minimal concern as, this pathogen) -> Brown rot control (11010ms) What is Head Start? Palin 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (head, start on, Palin) -> Palin (6337ms) What is Head Start? a treadmill 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (head, start your run on, a treadmill) -> a treadmill (2914ms) What is Head Start? 1964 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (Project Head, Start in, 1964) -> 1964 (2915ms) What is Head Start? Nixon 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (Head Start, was started by, Nixon) -> Nixon (6069ms) What is Head Start? role once 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (Heads, are starting to, role once) -> role once (4005ms) What is Head Start? higher education 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, higher education) -> higher education (6396ms) What is Head Start? WikiLeaks affair 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (Heads, start rolling in, WikiLeaks affair) -> WikiLeaks affair (6406ms) What is Head Start? the future 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, the future) -> the future (3689ms) What is Head Start? the Office 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (Head Start, had originally been started by, the Office) -> the Office (6367ms) What is Head Start? place 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (Luther Head, started in, place) -> place (6203ms) What is Head Start? the 1729 other lemon cocktails 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (head, start on, the 1729 other lemon cocktails) -> the 1729 other lemon cocktails (4054ms) What is Head Start? the surroundings 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (heads, started to take an interest in, the surroundings) -> the surroundings (6367ms) What is Head Start? the sizing procedure 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (your head, is the starting point for, the sizing procedure) -> the sizing procedure (4055ms) What is Head Start? 400 Partials 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (Heads, are starting at, 400 Partials) -> 400 Partials (6406ms) What is Head Start? Capitol Hill 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (heads, start rolling on, Capitol Hill) -> Capitol Hill (6367ms) What is Head Start? the little routine 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (Head, get started on, the little routine) -> the little routine (6386ms) What is Head Start? training 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, training) -> training (6414ms) What is Head Start? the day 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (head, started on, the day) -> the day (6377ms) What is Head Start? the adjustment 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the adjustment) -> the adjustment (6397ms) What is Head Start? the picture 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (my head, is starting to catch up with, the picture) -> the picture (6397ms) What is Head Start? the weeds 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the weeds) -> the weeds (6405ms) What is Head Start? the?North American hemp industry 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (head, start in, the?North American hemp industry) -> the?North American hemp industry (6396ms) What is Head Start? starting your day of fishing on the river 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (the head, start in, starting your day of fishing on the river) -> starting your day of fishing on the river (3097ms) What is Head Start? the 90 day AthLEAN-X Training Program 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (head, get started on, the 90 day AthLEAN-X Training Program) -> the 90 day AthLEAN-X Training Program (6377ms) What is Head Start? form 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (a head, was starting to, form) -> form (3690ms) What is Head Start? a little clearer 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (My head, is starting to get, a little clearer) -> a little clearer (6367ms) What is Head Start? the long journey 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (Head, started on, the long journey) -> the long journey (6414ms) What is Head Start? a headache 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (my head, is starting to develop, a headache) -> a headache (6337ms) What is Head Start? PA test reactor 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (head, start on, PA test reactor) -> PA test reactor (6357ms) What is Head Start? fishing 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, fishing) -> fishing (6203ms) What is Head Start? round four 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (the head-to-head competition, starts in, round four) -> round four (2914ms) What is Head Start? the guy 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the guy) -> the guy (6396ms) What is Head Start? 1993 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (Head, started in, 1993) -> 1993 (4005ms) What is Head Start? the competition 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, the competition) -> the competition (6386ms) What is Head Start? shopping 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, shopping) -> shopping (6347ms) What is Head Start? PR career 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (head, start on, PR career) -> PR career (6397ms) What is Head Start? studying 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (head, start on, studying) -> studying (6367ms) What is Head Start? about 4:30 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (head level, was made starting at, about 4:30) -> about 4:30 (6367ms) What is Head Start? traffic 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (head, starts on, traffic) -> traffic (4608ms) What is Head Start? talking 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, talking) -> talking (6203ms) What is Head Start? 1992 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (Red Head, started in, 1992) -> 1992 (4005ms) What is Head Start? the other candidates 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (' head, start on, the other candidates) -> the other candidates (4176ms) What is Head Start? Staten Island 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (Head, Start sites on, Staten Island) -> Staten Island (4355ms) What is Head Start? the coding world 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (A head, start in, the coding world) -> the coding world (4607ms) What is Head Start? two weeks 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (My head, is started spinning, two weeks) -> two weeks (6337ms) What is Head Start? world?s best 50 restaurants 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (head, start in, world?s best 50 restaurants) -> world?s best 50 restaurants (4176ms) What is Head Start? the Google SERPs 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (no head, start in, the Google SERPs) -> the Google SERPs (6347ms) What is Head Start? the entire process 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (the head coach, is starting, the entire process) -> the entire process (6405ms) What is Head Start? bigger 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> ('s head, is starting to get, bigger) -> bigger (6414ms) What is Head Start? the same time 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (Head Start, were started around, the same time) -> the same time (6386ms) What is Head Start? Christmas Shopping 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, Christmas Shopping) -> Christmas Shopping (6406ms) What is Head Start? hairs 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (my head, is slowly starting to generate, hairs) -> hairs (6358ms) What is Head Start? economic development 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, economic development) -> economic development (6377ms) What is Head Start? the kids 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the kids) -> the kids (4176ms) What is Head Start? a growing generation gap 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (my head, are starting to show, a growing generation gap) -> a growing generation gap (6367ms) What is Head Start? foreign languages 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (This head, start in, foreign languages) -> foreign languages (2915ms) What is Head Start? the rat race 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (Head, start in, the rat race) -> the rat race (6377ms) What is Head Start? a subject 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, a subject) -> a subject (4355ms) What is Head Start? the theatrical profession 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, the theatrical profession) -> the theatrical profession (6397ms) What is Head Start? Bantry 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (Head walk, starts in, Bantry) -> Bantry (6348ms) What is Head Start? 1975 0.555555555555 What is Head Start? -> $x: (head, be start in, $x) -> (The High Hopes Head Injury Program, was started in, 1975) -> 1975 (6414ms) What is Head Start? Science 2010 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (Head, Start on, Science 2010) -> Science 2010 (4176ms) What is Head Start? striking ad and marketing deals 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (the head, start in, striking ad and marketing deals) -> striking ad and marketing deals (6377ms) What is Head Start? the fall semester 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the fall semester) -> the fall semester (6386ms) What is Head Start? Yeah 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (my head, was starting up again*, Yeah) -> Yeah (6405ms) What is Head Start? a little 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (My head, is starting to get, a little) -> a little (6406ms) What is Head Start? prevail 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (Cooler heads, are starting to, prevail) -> prevail (6348ms) What is Head Start? road races 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (your head, start in, road races) -> road races (6405ms) What is Head Start? Kibum 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (his head, is starting to sound like, Kibum) -> Kibum (6396ms) What is Head Start? larger 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (her head, was starting to get, larger) -> larger (6203ms) What is Head Start? thin or dry 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (their head, is starting to, thin or dry) -> thin or dry (6358ms) What is Head Start? 1455 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> ('s Head, starts in, 1455) -> 1455 (6203ms) What is Head Start? a creative mode 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (my head, is starting back into, a creative mode) -> a creative mode (6367ms) What is Head Start? IBM 0.555555555555 What is Head Start? -> $x: (head, be start in, $x) -> (thin-film head structures, was started in, IBM) -> IBM (6347ms) What is Head Start? Spring 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (Head, Start on, Spring) -> Spring (4355ms) What is Head Start? refinancing your loan 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, refinancing your loan) -> refinancing your loan (3690ms) What is Head Start? the drinking 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the drinking) -> the drinking (6203ms) What is Head Start? an amazing transformation 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (his head, was the start of, an amazing transformation) -> an amazing transformation (6396ms) What is Head Start? the fall 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (their head, start in, the fall) -> the fall (6203ms) What is Head Start? points 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (the head, start in, points) -> points (4054ms) What is Head Start? PC-based agency automation 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (Our head, start in, PC-based agency automation) -> PC-based agency automation (6337ms) What is Head Start? a deficit 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (his head, is starting at, a deficit) -> a deficit (6377ms) What is Head Start? sense 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (your head, is going to start making, sense) -> sense (6414ms) What is Head Start? a fire one dark and wintry night 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (head, was trying to start, a fire one dark and wintry night) -> a fire one dark and wintry night (6203ms) What is Head Start? life 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (your head, start in, life) -> life (6405ms) What is Head Start? the 2011 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (Project Head, Start is now accepting applications for, the 2011) -> the 2011 (6387ms) What is Head Start? one piece 0.555555555555 What is Head Start? -> $x: (head, be start in, $x) -> (my head, is starting to feel back in, one piece) -> one piece (6377ms) What is Head Start? a little cloudy 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (Her head, was already starting to get, a little cloudy) -> a little cloudy (4608ms) What is Head Start? James Ray 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (Head On, was started by, James Ray) -> James Ray (6069ms) What is Head Start? next year 's recruiting 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, next year 's recruiting) -> next year 's recruiting (6406ms) What is Head Start? the same issue 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (Sankaku Head, is starting in, the same issue) -> the same issue (6387ms) What is Head Start? the early 1990s 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (their head, start in, the early 1990s) -> the early 1990s (6367ms) What is Head Start? education 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, education) -> education (6358ms) What is Head Start? always 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (the head, was a good start, always) -> always (2915ms) What is Head Start? running away 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, running away) -> running away (4355ms) What is Head Start? school 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, school) -> school (6367ms) What is Head Start? painful ? 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (my head, is starting to feel, painful ?) -> painful ? (6387ms) What is Head Start? lighter than before 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (my head, is starting to feel, lighter than before) -> lighter than before (3690ms) What is Head Start? the Manipur police department 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (Heads, started rolling in, the Manipur police department) -> the Manipur police department (6405ms) What is Head Start? the race 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, the race) -> the race (6348ms) What is Head Start? Muslim feminism 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (head, start on, Muslim feminism) -> Muslim feminism (6357ms) What is Head Start? XD 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (my head, is starting to hurt, XD) -> XD (6069ms) What is Head Start? the speakers 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (my head, is starting to come out of, the speakers) -> the speakers (3491ms) What is Head Start? America 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (' head, start on, America) -> America (6377ms) What is Head Start? a high stepping career 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (head showgirl, be the start of, a high stepping career) -> a high stepping career (6414ms) What is Head Start? family strengths 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (Head, Start build on, family strengths) -> family strengths (6367ms) What is Head Start? what to do 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, what to do) -> what to do (6377ms) What is Head Start? the next school year 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the next school year) -> the next school year (6406ms) What is Head Start? creating the success 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, creating the success) -> creating the success (6348ms) What is Head Start? Dib 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (his head, were actually starting to give, Dib) -> Dib (6069ms) What is Head Start? math 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (Head, start on, math) -> math (6367ms) What is Head Start? the field 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (our head, start in, the field) -> the field (6337ms) What is Head Start? Tax Season 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (Head, Start on, Tax Season) -> Tax Season (4054ms) What is Head Start? the first one tonight 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (three heads, am about to start, the first one tonight) -> the first one tonight (4177ms) What is Head Start? 1998 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (Head Porter, started in, 1998) -> 1998 (6337ms) What is Head Start? terms of record releases and chart success 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (the head, start in, terms of record releases and chart success) -> terms of record releases and chart success (6414ms) What is Head Start? crown 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> ('s head, was starting to, crown) -> crown (6348ms) What is Head Start? as much 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (her head, is starting to grow just, as much) -> as much (6069ms) What is Head Start? a weekend day 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (my head, is a wonderful start to, a weekend day) -> a weekend day (6387ms) What is Head Start? 2011 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (House Head House Head, started out late in, 2011) -> 2011 (6357ms) What is Head Start? Round Four 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (head competition, starts in, Round Four) -> Round Four (6347ms) What is Head Start? the rebound 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the rebound) -> the rebound (6386ms) What is Head Start? the questions 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (head, start voting on, the questions) -> the questions (4355ms) What is Head Start? Finance 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (Head, Start In, Finance) -> Finance (3689ms) What is Head Start? Science 2011 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (Head, Start on, Science 2011) -> Science 2011 (6405ms) What is Head Start? Chicago 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (eight Head, Start sites in, Chicago) -> Chicago (6203ms) What is Head Start? Christmas 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (head, start on, Christmas) -> Christmas (6377ms) What is Head Start? a little annoying 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (your head, is starting to get, a little annoying) -> a little annoying (4607ms) What is Head Start? a large , additional income 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (heads, was really starting to earn, a large , additional income) -> a large , additional income (3096ms) What is Head Start? the assignment 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the assignment) -> the assignment (6377ms) What is Head Start? law school 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, law school) -> law school (6414ms) What is Head Start? the media 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (head scarves, started in, the media) -> the media (6357ms) What is Head Start? 2 fade 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (head, Are starting, 2 fade) -> 2 fade (6357ms) What is Head Start? the market 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (this head, start in, the market) -> the market (6358ms) What is Head Start? meeting people 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, meeting people) -> meeting people (6203ms) What is Head Start? the winter season 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (head, get a jump-start on, the winter season) -> the winter season (6337ms) What is Head Start? football 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, football) -> football (6387ms) What is Head Start? discoveries 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (( head, start on, discoveries) -> discoveries (3491ms) What is Head Start? a painful numbness 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> ('s head, is starting to turn into, a painful numbness) -> a painful numbness (6337ms) What is Head Start? 1974 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (Heads, Up started in, 1974) -> 1974 (4005ms) What is Head Start? Literacy 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (Head, Start on, Literacy) -> Literacy (6405ms) What is Head Start? Next Year 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (Head, Start on, Next Year) -> Next Year (6396ms) What is Head Start? the size 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> ('s head, is starting to catch up with, the size) -> the size (6348ms) What is Head Start? ring 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (My head, is starting to, ring) -> ring (4356ms) What is Head Start? areas 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (Head, Start programs in, areas) -> areas (6414ms) What is Head Start? Enoch 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (my head, is starting to hurt, Enoch) -> Enoch (2914ms) What is Head Start? the Universal mail room 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (the head, started in, the Universal mail room) -> the Universal mail room (4355ms) What is Head Start? the college experience 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the college experience) -> the college experience (6414ms) What is Head Start? charge 0.555555555555 What is Head Start? -> $x: (head, be start in, $x) -> (Head coach Chris Pruitt, is starting her third year in, charge) -> charge (6069ms) What is Head Start? NFL 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (Head, get started on, NFL) -> NFL (6337ms) What is Head Start? Science 2009 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (Head, Start on, Science 2009) -> Science 2009 (6367ms) What is Head Start? clear and 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (My head, is starting to, clear and) -> clear and (4177ms) What is Head Start? the following year 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the following year) -> the following year (4055ms) What is Head Start? Kelly 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (her head, were starting to take its toll on, Kelly) -> Kelly (6337ms) What is Head Start? the school year 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (Head, is excited to start, the school year) -> the school year (4608ms) What is Head Start? reading 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, reading) -> reading (6386ms) What is Head Start? the garden 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, the garden) -> the garden (6203ms) What is Head Start? material 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (head, start on, material) -> material (6386ms) What is Head Start? the ATS race 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (the head, start in, the ATS race) -> the ATS race (2915ms) What is Head Start? offense 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (Head, start on, offense) -> offense (3491ms) What is Head Start? coursework 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, coursework) -> coursework (6397ms) What is Head Start? a whole new experience 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (your head, would have been the start of, a whole new experience) -> a whole new experience (4607ms) What is Head Start? a bruised melon 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (Her head, was starting to look like, a bruised melon) -> a bruised melon (6337ms) What is Head Start? a path 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (Head, Start on, a path) -> a path (3492ms) What is Head Start? the 2008 Ramadan Olympics 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (your head, start in, the 2008 Ramadan Olympics) -> the 2008 Ramadan Olympics (6396ms) What is Head Start? the public 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the public) -> the public (6414ms) What is Head Start? the 60?s 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (head, started the company in, the 60?s) -> the 60?s (6358ms) What is Head Start? an organized clap 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (Your Head ?, was started with, an organized clap) -> an organized clap (6414ms) What is Head Start? Blago 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (Democrat heads, are starting to play, Blago) -> Blago (6203ms) What is Head Start? September 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (the new head, starts in, September) -> September (3491ms) What is Head Start? 1869 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (South Head, started in, 1869) -> 1869 (3097ms) What is Head Start? a bit 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (My head, is starting to spin, a bit) -> a bit (6377ms) What is Head Start? preparing your paperwork 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, preparing your paperwork) -> preparing your paperwork (6397ms) What is Head Start? Malaysia 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (their head, start in, Malaysia) -> Malaysia (6358ms) What is Head Start? the entire sizing procedure 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (the head, is a starting point for, the entire sizing procedure) -> the entire sizing procedure (6414ms) What is Head Start? university 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, university) -> university (3689ms) What is Head Start? the Day 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (Head, Starts on, the Day) -> the Day (6377ms) What is Head Start? spring 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, spring) -> spring (6406ms) What is Head Start? shape 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (my head, are starting to take, shape) -> shape (6347ms) What is Head Start? college 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, college) -> college (6377ms) What is Head Start? logistics 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (Head, start on, logistics) -> logistics (3690ms) What is Head Start? 2003 0.555555555555 What is Head Start? -> $x: (head, be start in, $x) -> (The Western Heads East program, was started in, 2003) -> 2003 (6069ms) What is Head Start? January 0.555555555555 What is Head Start? -> $x: (head, be start in, $x) -> (private HeadLines newsletter, was started in, January) -> January (3690ms) What is Head Start? the fog 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (My head, is just starting to come out of, the fog) -> the fog (6069ms) What is Head Start? a bit grim 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (the head-to-head polls, are starting to look, a bit grim) -> a bit grim (6348ms) What is Head Start? a hedge fund 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (head, is starting, a hedge fund) -> a hedge fund (6348ms) What is Head Start? clear 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (My head, is starting to, clear) -> clear (6387ms) What is Head Start? 1905 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (head coach, started in, 1905) -> 1905 (6414ms) What is Head Start? the Linux interface 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (head, start on, the Linux interface) -> the Linux interface (6348ms) What is Head Start? 25 years 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (The Hilton Head Symphony Orchestra, was started, 25 years) -> 25 years (6377ms) What is Head Start? Wyoming 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (head, start here in, Wyoming) -> Wyoming (6414ms) What is Head Start? the job market 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, the job market) -> the job market (6337ms) What is Head Start? Life 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (Head, Start In, Life) -> Life (6337ms) What is Head Start? an industry of their choice 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a career head, start in, an industry of their choice) -> an industry of their choice (3491ms) What is Head Start? a toll 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (my head, is just starting to take, a toll) -> a toll (6348ms) What is Head Start? Salt Lake City 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (Project Head, Start in, Salt Lake City) -> Salt Lake City (6367ms) What is Head Start? gray as well 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (my head, was starting to get frosted with, gray as well) -> gray as well (6357ms) What is Head Start? training your dog 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, training your dog) -> training your dog (6358ms) What is Head Start? the process 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, the process) -> the process (4355ms) What is Head Start? popularity 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (his head, start in, popularity) -> popularity (3096ms) What is Head Start? lifestyle 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start out in, lifestyle) -> lifestyle (4608ms) What is Head Start? the Garden 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (this head, started in, the Garden) -> the Garden (6396ms) What is Head Start? a different ?ism 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (heads and pundits, are starting to recognize, a different ?ism) -> a different ?ism (6396ms) What is Head Start? buzz 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (his head, was starting to, buzz) -> buzz (4005ms) What is Head Start? the branches 0.555555555555 What is Head Start? -> $x: (head, be start, $x) -> (The head, is usually started with, the branches) -> the branches (6387ms) What is Head Start? international competition 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, international competition) -> international competition (3096ms) What is Head Start? 1965 0.555555555555 What is Head Start? -> $x: (head, be start in, $x) -> (Kedren Head Start, was started in, 1965) -> 1965 (6357ms) What is Head Start? the debate 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (a head, start on, the debate) -> the debate (6414ms) What is Head Start? the 1960s 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (Head Start, started in, the 1960s) -> the 1960s (6377ms) What is Head Start? the competitive job market 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (a head, start in, the competitive job market) -> the competitive job market (4176ms) What is Head Start? banking 0.555555555555 What is Head Start? -> $x: (head, start in, $x) -> (Head, started her career in, banking) -> banking (3491ms) What is Head Start? science 0.555555555555 What is Head Start? -> $x: (head, start on, $x) -> (Head, start on, science) -> science (4055ms) What is Head Start? Choose 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Choose, start turning, heads) -> Choose (6449ms) What is Head Start? Liz 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Liz, started as, head) -> Liz (6432ms) What is Head Start? the giant cannibalistic monster 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the giant cannibalistic monster, started ripping, heads) -> the giant cannibalistic monster (6449ms) What is Head Start? The list 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (The list, starts from, head) -> The list (6423ms) What is Head Start? funny t-shirts 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (funny t-shirts, start turning, heads) -> funny t-shirts (6459ms) What is Head Start? Griffin 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Griffin, started calling, heads) -> Griffin (6459ms) What is Head Start? the coaches 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the coaches, start banging, heads) -> the coaches (6449ms) What is Head Start? Early 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Early, Start, Head) -> Early (6441ms) What is Head Start? the excitement 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the excitement, starts, head) -> the excitement (6459ms) What is Head Start? the cops 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the cops, started bashing, heads) -> the cops (6459ms) What is Head Start? a couple days 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (a couple days, start, head) -> a couple days (6423ms) What is Head Start? the wind 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the wind, start chopping, heads) -> the wind (6423ms) What is Head Start? breeze 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (breeze, start, butting heads) -> breeze (6432ms) What is Head Start? Parr 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Parr, started turning, heads) -> Parr (6459ms) What is Head Start? the Nokia Lumia 800 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the Nokia Lumia 800, started turning, heads) -> the Nokia Lumia 800 (6441ms) What is Head Start? Van Wieringen 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Van Wieringen, started, heads) -> Van Wieringen (6441ms) What is Head Start? the most obvious ones 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the most obvious ones, start, a heading) -> the most obvious ones (6459ms) What is Head Start? Black ice 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Black ice, started, head) -> Black ice (6432ms) What is Head Start? the coin 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the coin, starts with, Heads) -> the coin (6441ms) What is Head Start? more damage Mother Bear and Napalm 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (more damage Mother Bear and Napalm, start killing, heads) -> more damage Mother Bear and Napalm (6432ms) What is Head Start? The Black Seeds 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (The Black Seeds, started turning, heads) -> The Black Seeds (6423ms) What is Head Start? the urge 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the urge, start knocking, heads) -> the urge (6459ms) What is Head Start? Larry Benders 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Larry Benders, started as, head) -> Larry Benders (6441ms) What is Head Start? the list 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the list, starts with, heads) -> the list (6449ms) What is Head Start? Marcus Strickland 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Marcus Strickland, has started to turn, heads) -> Marcus Strickland (6432ms) What is Head Start? more comfortable 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (more comfortable, start turning, heads) -> more comfortable (6441ms) What is Head Start? Seiar 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Seiar, started, heads) -> Seiar (6423ms) What is Head Start? Line 3 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Line 3, starts, the head) -> Line 3 (6459ms) What is Head Start? each of your body parts 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (each of your body parts, starting from, head) -> each of your body parts (6432ms) What is Head Start? Thor 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Thor, started cracking, heads) -> Thor (6441ms) What is Head Start? the chunker regexp 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the chunker regexp, start from, head) -> the chunker regexp (6432ms) What is Head Start? she and Kyle 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (she and Kyle, start, butting heads) -> she and Kyle (6449ms) What is Head Start? the ring 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the ring, started turning, heads) -> the ring (6432ms) What is Head Start? Isslyer 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Isslyer, start cutting off, heads) -> Isslyer (6441ms) What is Head Start? the band 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the band, started turning, heads) -> the band (6449ms) What is Head Start? 14.2 mile North Rim trail 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (14.2 mile North Rim trail, starts at, head) -> 14.2 mile North Rim trail (6449ms) What is Head Start? Phil Fish 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Phil Fish, started turning, heads) -> Phil Fish (6459ms) What is Head Start? resis?tance 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (resis?tance, start, head?ing) -> resis?tance (6459ms) What is Head Start? the army 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the army, started bashing, heads) -> the army (6459ms) What is Head Start? the two 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the two, started playing, heads) -> the two (6432ms) What is Head Start? the Danish police 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the Danish police, started beating, heads) -> the Danish police (6449ms) What is Head Start? The competition 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (The competition, starts, head-to-head) -> The competition (6423ms) What is Head Start? retro Marquette Warriors tees 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (retro Marquette Warriors tees, start turning, heads) -> retro Marquette Warriors tees (6432ms) What is Head Start? the police 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the police, started banging, heads) -> the police (6449ms) What is Head Start? Callihan 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Callihan, then starts, head) -> Callihan (6441ms) What is Head Start? Bertrand Faivre Bertrand 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Bertrand Faivre Bertrand, started as, Head) -> Bertrand Faivre Bertrand (6423ms) What is Head Start? Dario 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Dario, started playing, heads) -> Dario (6459ms) What is Head Start? use 1 to 2 feet 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (use 1 to 2 feet, start at, head) -> use 1 to 2 feet (6423ms) What is Head Start? Such a pretty boy 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Such a pretty boy, starts turning, heads) -> Such a pretty boy (6459ms) What is Head Start? the game 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the game, started, the head) -> the game (6449ms) What is Head Start? retro Brewers tees 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (retro Brewers tees, start turning, heads) -> retro Brewers tees (6432ms) What is Head Start? Jak 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Jak, start ripping, heads) -> Jak (6441ms) What is Head Start? Mold your body 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Mold your body, start turning, heads) -> Mold your body (6449ms) What is Head Start? B?ttger 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (B?ttger, started as, Head) -> B?ttger (6441ms) What is Head Start? the plants 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the plants, start to, head) -> the plants (6441ms) What is Head Start? a suprise visit 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (a suprise visit, starts knocking, heads) -> a suprise visit (6450ms) What is Head Start? Lets 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Lets, get started, Head) -> Lets (6423ms) What is Head Start? coworking 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (coworking, starts turning, heads) -> coworking (6449ms) What is Head Start? O?Brien 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (O?Brien, starts knocking, heads) -> O?Brien (6432ms) What is Head Start? an image 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (an image, start swapping, heads) -> an image (6449ms) What is Head Start? Scalp Energizer 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Scalp Energizer, start, a head) -> Scalp Energizer (6459ms) What is Head Start? Dedede 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Dedede, starts, head) -> Dedede (6441ms) What is Head Start? The tape 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (The tape, starts with, Head) -> The tape (6423ms) What is Head Start? the only case people 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the only case people, start, balding head) -> the only case people (6432ms) What is Head Start? linear search 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (linear search, starting from, head) -> linear search (6449ms) What is Head Start? Jouhkimainen 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (Jouhkimainen, started, heads) -> Jouhkimainen (6449ms) What is Head Start? the state troopers 0.11111111111299998 What is Head Start? -> $x: ($x, start, head) -> (the state troopers, start bashing, heads) -> the state troopers (6423ms) What is Head Start? 2009 to 52.7 % 0.111111111111 What is Head Start? -> $x: ($x, cause, head start) -> (2009 to 52.7 %, caused concerns with, the Head start Program) -> 2009 to 52.7 % (6467ms) What is Head Start? displaced kids 0.11111111111 What is Head Start? -> $x: ($x, re, head start) -> (displaced kids, re-enroll in, Head Start programs) -> displaced kids (6467ms) What is Head Start? the Canadian system -0.0 What is Head Start? -> $x: ($x, be head, nhs) -> (the Canadian system, is heading the way of, the NHS.) -> the Canadian system (6566ms) What is Head Start? Sue Sylvester -0.0 What is Head Start? -> $x: ($x, be head, cheerleading) -> (Sue Sylvester, [is] head coach of, the cheerleading squad) -> Sue Sylvester (6577ms) What is Head Start? The Emperor -0.0 What is Head Start? -> $x: ($x, be head, shinto) -> (The Emperor, was head of, the Shinto faith) -> The Emperor (6518ms) What is Head Start? Apple -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Apple, is headed in, his first conference call) -> Apple (6556ms) What is Head Start? LCDS -0.0 What is Head Start? -> $x: ($x, be head, mime) -> (LCDS, is headed by, master mime performer Samuel Avital) -> LCDS (6512ms) What is Head Start? A seminarian -0.0 What is Head Start? -> $x: ($x, be head, first) -> (A seminarian, is heading off to, his first ever interview) -> A seminarian (6566ms) What is Head Start? The Canadian on Tour -0.0 What is Head Start? -> $x: ($x, be head, terminal) -> (The Canadian on Tour, is heading into, the terminal) -> The Canadian on Tour (6547ms) What is Head Start? The German expedition to Punta Arenas -0.0 What is Head Start? -> $x: ($x, be head, first) -> (The German expedition to Punta Arenas, was headed, first) -> The German expedition to Punta Arenas (6597ms) What is Head Start? more Team USA -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (more Team USA, is headed to, Rome) -> more Team USA (6484ms) What is Head Start? different aspects -0.0 What is Head Start? -> $x: (muslim, start on, $x) -> (Muslims, started to focus on, different aspects) -> different aspects (6499ms) What is Head Start? Wisconsin -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (Wisconsin, are heading to, Rome) -> Wisconsin (6556ms) What is Head Start? Moria Kelly -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Moria Kelly, is the Head of, the Children First Foundation) -> Moria Kelly (6467ms) What is Head Start? Navid Majd -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Navid Majd, [is] head of, the federation) -> Navid Majd (6590ms) What is Head Start? DP -0.0 What is Head Start? -> $x: ($x, be head, first) -> (DP, was headed down, the first path) -> DP (6573ms) What is Head Start? Parents -0.0 What is Head Start? -> $x: ($x, in, head start) -> (Parents, involved in, Head Start) -> Parents (6566ms) What is Head Start? Tom and crew -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Tom and crew, are heading for, rock festivals) -> Tom and crew (6601ms) What is Head Start? Miami -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Miami, was headed to, its first port) -> Miami (6524ms) What is Head Start? Stacey and Brie -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (Stacey and Brie, are heading to, Rome today) -> Stacey and Brie (6580ms) What is Head Start? future commissars -0.0 What is Head Start? -> $x: ($x, be head, first) -> (future commissars, are heading to, their first meeting) -> future commissars (6476ms) What is Head Start? the USA -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (the USA, is headed the way of, Rome) -> the USA (6594ms) What is Head Start? The bus -0.0 What is Head Start? -> $x: ($x, be head, terminal) -> (The bus, was heading for, Dunoon Ferry Terminal) -> The bus (6468ms) What is Head Start? the first beast -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (the first beast, is the imperial head at, Rome) -> the first beast (6557ms) What is Head Start? 400 -0.0 What is Head Start? -> $x: ($x, in, head start) -> (400, enrolled in, Head Start) -> 400 (6491ms) What is Head Start? Emily -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Emily, was head of, her gang) -> Emily (6535ms) What is Head Start? Corzine -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Corzine, was head of, the Goldman Sachs gang) -> Corzine (6506ms) What is Head Start? Cash -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Cash, is heading into, her first year) -> Cash (6561ms) What is Head Start? ?TOP -0.0 What is Head Start? -> $x: ($x, be head, rap) -> (?TOP, is the head of, rap) -> ?TOP (6540ms) What is Head Start? operators -0.0 What is Head Start? -> $x: ($x, be head, first) -> (operators, are scratching their heads about, Cloud First) -> operators (6557ms) What is Head Start? Team URC -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Team URC, is heading to, the Strawberry Festival) -> Team URC (6556ms) What is Head Start? Kristen Stewart -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Kristen Stewart, are headed to, the Cannes Film Festival) -> Kristen Stewart (6597ms) What is Head Start? Didier Grumbach -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Didier Grumbach, [is] head of, the federation) -> Didier Grumbach (6506ms) What is Head Start? every dollar -0.0 What is Head Start? -> $x: ($x, in, head start) -> (every dollar, invested in, Head Start) -> every dollar (6573ms) What is Head Start? the first Beast -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (the first Beast, was the political head of, a federation) -> the first Beast (6518ms) What is Head Start? The Assassins Creed?s II hero -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (The Assassins Creed?s II hero, will be heading to, Rome) -> The Assassins Creed?s II hero (6499ms) What is Head Start? Osaka -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Osaka, am heading off to, my first round) -> Osaka (6484ms) What is Head Start? Gerard -0.0 What is Head Start? -> $x: ($x, in, head start) -> (Gerard, enrolled in, Head Start) -> Gerard (6506ms) What is Head Start? Carter -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Carter, was the former head of, the 5,000-strong Slauson gang) -> Carter (6566ms) What is Head Start? Brad Keselowski -0.0 What is Head Start? -> $x: ($x, be head, nascar) -> (Brad Keselowski, was headed for, a NASCAR Nationwide Series) -> Brad Keselowski (6467ms) What is Head Start? stock cars -0.0 What is Head Start? -> $x: ($x, be head, nascar) -> (stock cars, will be heading up to, the NASCAR Nationwide Series) -> stock cars (6524ms) What is Head Start? The carrier -0.0 What is Head Start? -> $x: ($x, be head, terminal) -> (The carrier, was headed for, the Costa Azul energy terminal) -> The carrier (6584ms) What is Head Start? Angleton -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (Angleton, was head of, the Rome station) -> Angleton (6476ms) What is Head Start? Suggestion -0.0 What is Head Start? -> $x: ($x, be head, terminal) -> (Suggestion, is to head straight to, the ferry terminal) -> Suggestion (6535ms) What is Head Start? Grant -0.0 What is Head Start? -> $x: ($x, be head, motown) -> (Grant, are headed to, Motown) -> Grant (6492ms) What is Head Start? Reuters dollar -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Reuters dollar, was headed for, its first yearly gain) -> Reuters dollar (6535ms) What is Head Start? Juniors -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Juniors, are heading to, their first Prom) -> Juniors (6552ms) What is Head Start? the plan -0.0 What is Head Start? -> $x: ($x, be head, first) -> (the plan, was to heading into, DPRK first week) -> the plan (6598ms) What is Head Start? the nearly one million children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (the nearly one million children, enrolled in, Head Start) -> the nearly one million children (6600ms) What is Head Start? Blake Griffin -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Blake Griffin, is the head of, the Lob City gang) -> Blake Griffin (6535ms) What is Head Start? a quiet , polite four-year-old girl -0.0 What is Head Start? -> $x: ($x, in, head start) -> (a quiet , polite four-year-old girl, enrolled in, Head Start) -> a quiet , polite four-year-old girl (6580ms) What is Head Start? A dollar -0.0 What is Head Start? -> $x: ($x, in, head start) -> (A dollar, invested in, Head Start) -> A dollar (6592ms) What is Head Start? The chipped cross -0.0 What is Head Start? -> $x: ($x, be head, murray) -> (The chipped cross, is headed clear by, Dan Murray) -> The chipped cross (6570ms) What is Head Start? Jones -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Jones, was the head of, a separate gang) -> Jones (6492ms) What is Head Start? England -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (England, is head of, the biggest drug gang) -> England (6592ms) What is Head Start? a team -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (a team, is headed by, festival director Paula Chaurand) -> a team (6561ms) What is Head Start? Sears -0.0 What is Head Start? -> $x: ($x, be head, pornography) -> (Sears, is now heading, some other pornography commission) -> Sears (6583ms) What is Head Start? Russ Archer -0.0 What is Head Start? -> $x: ($x, be head, murray) -> (Russ Archer, was head of, the Murray Hill computer center) -> Russ Archer (6552ms) What is Head Start? boys and girls -0.0 What is Head Start? -> $x: ($x, in, head start) -> (boys and girls, enrolled in, Head Start) -> boys and girls (6573ms) What is Head Start? the child -0.0 What is Head Start? -> $x: ($x, in, head start) -> (the child, is in, Head Start) -> the child (6583ms) What is Head Start? six firefighters -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (six firefighters, were headed to, the Tribeca Film Festival) -> six firefighters (6566ms) What is Head Start? Violet -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Violet, is heading for, the Festival Bumper) -> Violet (6577ms) What is Head Start? The curriculum model -0.0 What is Head Start? -> $x: ($x, in, head start) -> (The curriculum model, used in, Head Start) -> The curriculum model (6546ms) What is Head Start? 2005 -0.0 What is Head Start? -> $x: ($x, be head, first) -> (2005, is heading into, his first spring training) -> 2005 (6583ms) What is Head Start? The children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (The children, had been in, Head Start) -> The children (6570ms) What is Head Start? New Arrivals New Arrivals -0.0 What is Head Start? -> $x: ($x, be head, first) -> (New Arrivals New Arrivals, are headed by, the first) -> New Arrivals New Arrivals (6598ms) What is Head Start? Serena -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Serena, is the head of, an all-female gang) -> Serena (6577ms) What is Head Start? parental sick days and days children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (parental sick days and days children, miss in, Head Start) -> parental sick days and days children (6552ms) What is Head Start? the last Adam -0.0 What is Head Start? -> $x: ($x, be head, first) -> (the last Adam, [is] the head of, the first Adam) -> the last Adam (6524ms) What is Head Start? Mickey -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Mickey, was heading for, an outdoor heavy metal festival) -> Mickey (6570ms) What is Head Start? 2,433 children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (2,433 children, enrolled in, Head Start) -> 2,433 children (6597ms) What is Head Start? NAIA Championship Saint Xavier -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (NAIA Championship Saint Xavier, will be heading to, Rome) -> NAIA Championship Saint Xavier (6552ms) What is Head Start? woman -0.0 What is Head Start? -> $x: ($x, be head, first) -> (woman, was her head from, the first moment) -> woman (6524ms) What is Head Start? Vivi Dot -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Vivi Dot, is headed to, the Treasure Island Music Festival) -> Vivi Dot (6587ms) What is Head Start? She?ll -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (She?ll, soon be heading to, Norway and Rome) -> She?ll (6561ms) What is Head Start? about 1,700 children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (about 1,700 children, enrolled in, Head Start) -> about 1,700 children (6547ms) What is Head Start? PSG -0.0 What is Head Start? -> $x: ($x, be head, first) -> (PSG, were also heading to, their first loss) -> PSG (6583ms) What is Head Start? tmills -0.0 What is Head Start? -> $x: ($x, be head, mount rushmore) -> (tmills, is the fourth head in, the Mount Rushmore) -> tmills (6546ms) What is Head Start? Laura Sexton -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Laura Sexton, was headed for, a music festival) -> Laura Sexton (6506ms) What is Head Start? The ball -0.0 What is Head Start? -> $x: ($x, be head, fencing) -> (The ball, was heading over, the fence) -> The ball (6518ms) What is Head Start? Mr Mockett -0.0 What is Head Start? -> $x: ($x, be head, wellington) -> (Mr Mockett, was heading to, Wellington) -> Mr Mockett (6587ms) What is Head Start? Bulger -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Bulger, was the head of, a South Boston Irish gang) -> Bulger (6476ms) What is Head Start? Sleigh Bells -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Sleigh Bells, are heading out on, their first headlining tour) -> Sleigh Bells (6570ms) What is Head Start? the authorised boo boy -0.0 What is Head Start? -> $x: ($x, be head, clone) -> (the authorised boo boy, will be heading to, Clones or Killarney) -> the authorised boo boy (6518ms) What is Head Start? The company -0.0 What is Head Start? -> $x: ($x, be head, warren buffett) -> (The company, is headed by, Warren Buffett) -> The company (6601ms) What is Head Start? Heartical -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Heartical, is now heading for, the Riddim House Festival) -> Heartical (6561ms) What is Head Start? Captain Jack -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Captain Jack, [is] the head of, a rival gang) -> Captain Jack (6476ms) What is Head Start? the Octo -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (the Octo, is heading up, a puzzle festival) -> the Octo (6590ms) What is Head Start? President -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (President, is also heading, the Armenian Chess Federation) -> President (6499ms) What is Head Start? Rogers -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Rogers, was headed home from, the Kerrville Folk Festival) -> Rogers (6597ms) What is Head Start? Brunei Darussalam -0.0 What is Head Start? -> $x: ($x, be head, islamic faith) -> (Brunei Darussalam, is the head of, the Islamic faith) -> Brunei Darussalam (6518ms) What is Head Start? children and families -0.0 What is Head Start? -> $x: ($x, in, head start) -> (children and families, enrolled in, Head Start) -> children and families (6592ms) What is Head Start? grandpa -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (grandpa, is the head of, a yakuza gang) -> grandpa (6557ms) What is Head Start? Joe Mulligan -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Joe Mulligan, [is] head of, first aid education) -> Joe Mulligan (6570ms) What is Head Start? Jason Pamment -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Jason Pamment, will be heading over to, the festival) -> Jason Pamment (6484ms) What is Head Start? Ariel -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Ariel, is headed back to Australia for, the Fuse Festival) -> Ariel (6491ms) What is Head Start? Paradox -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Paradox, is heading to, Sundance Film Festival) -> Paradox (6540ms) What is Head Start? Health Education -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Health Education, is headed by, First Lady) -> Health Education (6518ms) What is Head Start? Gloria Feldt -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Gloria Feldt, was named head of, Planned Parenthood Federation) -> Gloria Feldt (6580ms) What is Head Start? Berkshire Hathaway -0.0 What is Head Start? -> $x: ($x, be head, warren buffett) -> (Berkshire Hathaway, is headed by, local investor Warren Buffett) -> Berkshire Hathaway (6570ms) What is Head Start? the churches -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (the churches, were heading to, Rome) -> the churches (6566ms) What is Head Start? toddlers -0.0 What is Head Start? -> $x: ($x, in, head start) -> (toddlers, participate in, Head Start) -> toddlers (6476ms) What is Head Start? the Commerce & Finance -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (the Commerce & Finance, is headed by, partner Liu Gang) -> the Commerce & Finance (6499ms) What is Head Start? Peter -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (Peter, was crucified with his head downwards at, Rome) -> Peter (6506ms) What is Head Start? the trucks -0.0 What is Head Start? -> $x: ($x, be head, terminal) -> (the trucks, are headed for, a J.B. Hunt terminal) -> the trucks (6598ms) What is Head Start? The Chargers -0.0 What is Head Start? -> $x: ($x, be head, first) -> (The Chargers, are headed to, their first national appearance) -> The Chargers (6476ms) What is Head Start? tail lights -0.0 What is Head Start? -> $x: ($x, be head, first) -> (tail lights, were referred as head-lamps, first) -> tail lights (6512ms) What is Head Start? Friday -0.0 What is Head Start? -> $x: (muslim, start on, $x) -> (The four-day Muslim conference, started on, Friday) -> Friday (6518ms) What is Head Start? a film -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (a film, is now headed to, the Sundance Film Festival) -> a film (6561ms) What is Head Start? Mikhail Margelov -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Mikhail Margelov, is head of, the Federation Council) -> Mikhail Margelov (6600ms) What is Head Start? Ring -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Ring, headed was, the first research and development team) -> Ring (6587ms) What is Head Start? rabbi -0.0 What is Head Start? -> $x: ($x, be head, judaism) -> (rabbi, is the head of, a Hasidic Judaism dynasty) -> rabbi (6587ms) What is Head Start? FA chairman David Bernstein -0.0 What is Head Start? -> $x: ($x, be head, hunting) -> (FA chairman David Bernstein, is heading, the hunt) -> FA chairman David Bernstein (6518ms) What is Head Start? 3 and 4 year olds -0.0 What is Head Start? -> $x: ($x, in, head start) -> (3 and 4 year olds, enrolled in, Head Start) -> 3 and 4 year olds (6583ms) What is Head Start? managing director -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (managing director, is head of, the Federation) -> managing director (6598ms) What is Head Start? Shimizu -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Shimizu, was the 25th head honcho of, SMR jo-swinging gang) -> Shimizu (6512ms) What is Head Start? Zubari -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Zubari, was the head of, a gang) -> Zubari (6552ms) What is Head Start? only -0.0 What is Head Start? -> $x: ($x, be head, wellington) -> (only, was heading to, Wellington) -> only (6586ms) What is Head Start? the 32-year-old Moussa -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (the 32-year-old Moussa, was named to head, Rome) -> the 32-year-old Moussa (6556ms) What is Head Start? the team -0.0 What is Head Start? -> $x: ($x, be head, wellington) -> (the team, were heading back to, Wellington) -> the team (6512ms) What is Head Start? The Dutchman -0.0 What is Head Start? -> $x: ($x, be head, first) -> (The Dutchman, is heading towards, a first) -> The Dutchman (6484ms) What is Head Start? time -0.0 What is Head Start? -> $x: (owl, start on, $x) -> (the Owl, started on, time) -> time (6492ms) What is Head Start? the gains children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (the gains children, make in, Head Start) -> the gains children (6524ms) What is Head Start? MVP Kobe Bryant -0.0 What is Head Start? -> $x: ($x, be head, first) -> (MVP Kobe Bryant, will be heading to, his first Olympics) -> MVP Kobe Bryant (6499ms) What is Head Start? the listing -0.0 What is Head Start? -> $x: ($x, be head, first) -> (the listing, was headed for, a strong first day) -> the listing (6600ms) What is Head Start? The weapons -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (The weapons, were headed for, Los Angeles street gangs) -> The weapons (6600ms) What is Head Start? August -0.0 What is Head Start? -> $x: (muslim, start on, $x) -> (the Muslim holiday, will start on, August) -> August (6594ms) What is Head Start? full members -0.0 What is Head Start? -> $x: ($x, be head, murray) -> (full members, is headed by, Phil Murray) -> full members (6476ms) What is Head Start? open-wheel drivers -0.0 What is Head Start? -> $x: ($x, be head, nascar) -> (open-wheel drivers, are heading to, Nascar) -> open-wheel drivers (6601ms) What is Head Start? the direction -0.0 What is Head Start? -> $x: ($x, be head, first) -> (the direction, was headed in, the first place) -> the direction (6530ms) What is Head Start? Jimmy Lyons -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Jimmy Lyons, was the head of, the Festival) -> Jimmy Lyons (6506ms) What is Head Start? RSPCA Burwood East -0.0 What is Head Start? -> $x: ($x, be head, rspca) -> (RSPCA Burwood East, is the head office of, RSPCA Victoria) -> RSPCA Burwood East (6570ms) What is Head Start? Rei Ginsei -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Rei Ginsei, is the head of, his own little gang) -> Rei Ginsei (6590ms) What is Head Start? Tackes -0.0 What is Head Start? -> $x: ($x, be head, cheerleading) -> (Tackes, was head coach of, the girls varsity cheerleading team) -> Tackes (6552ms) What is Head Start? Select staff -0.0 What is Head Start? -> $x: ($x, in, head start) -> (Select staff, believe in, Head Start) -> Select staff (6587ms) What is Head Start? Haruna -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Haruna, was the head of, a gang) -> Haruna (6557ms) What is Head Start? a year -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (a year, was the head of, the Brigade?s Women?s Federation) -> a year (6518ms) What is Head Start? the smug and sanctimonious proprietor -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (the smug and sanctimonious proprietor, is head of, the gang) -> the smug and sanctimonious proprietor (6476ms) What is Head Start? SB? Selma -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (SB? Selma, is headed to, the 68th annual Venice Film Festival) -> SB? Selma (6566ms) What is Head Start? The IPCC Miraculous -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (The IPCC Miraculous, was heading back for, Federation HQ) -> The IPCC Miraculous (6540ms) What is Head Start? Ms. Fuentes -0.0 What is Head Start? -> $x: ($x, in, head start) -> (Ms. Fuentes, worked in, Head Start) -> Ms. Fuentes (6601ms) What is Head Start? Dan and Darlene -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (Dan and Darlene, were heading on to, Rome Northern Germany) -> Dan and Darlene (6484ms) What is Head Start? the school district -0.0 What is Head Start? -> $x: ($x, be head, im) -> (the school district, would be heading back to, school ?I?m) -> the school district (6530ms) What is Head Start? the High Priest -0.0 What is Head Start? -> $x: ($x, be head, judaism) -> (the High Priest, was the head of, Judaism) -> the High Priest (6573ms) What is Head Start? Nearly 900,000 children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (Nearly 900,000 children, are in, Head Start) -> Nearly 900,000 children (6512ms) What is Head Start? Peking Tom -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Peking Tom, was the Australian head of, a rival gang) -> Peking Tom (6598ms) What is Head Start? the professor -0.0 What is Head Start? -> $x: ($x, be head, terminal) -> (the professor, was heading to, the NFTA Terminal) -> the professor (6589ms) What is Head Start? Jenny -0.0 What is Head Start? -> $x: ($x, in, head start) -> (Jenny, was in, Head Start) -> Jenny (6601ms) What is Head Start? Players -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Players, are thrown head, first) -> Players (6600ms) What is Head Start? We?ve -0.0 What is Head Start? -> $x: ($x, be head, first) -> (We?ve, are heading fast to, our first day) -> We?ve (6600ms) What is Head Start? Gunnar -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Gunnar, is soon elected head of, the European federation) -> Gunnar (6592ms) What is Head Start? The precious metal -0.0 What is Head Start? -> $x: ($x, be head, first) -> (The precious metal, is heading for, the first weekly gain) -> The precious metal (6600ms) What is Head Start? Manny Schellscheidt -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Manny Schellscheidt, is the head of, the U.S. Soccer Federation) -> Manny Schellscheidt (6506ms) What is Head Start? top secret documents -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (top secret documents, is heading back to, Federation-held space) -> top secret documents (6512ms) What is Head Start? 18.9 % -0.0 What is Head Start? -> $x: ($x, in, head start) -> (18.9 %, worked in, Head Start) -> 18.9 % (6594ms) What is Head Start? Train -0.0 What is Head Start? -> $x: ($x, be head, nascar) -> (Train, is heading to, the premiere NASCAR event) -> Train (6584ms) What is Head Start? serious problems -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (serious problems, are headed straight for, gang membership) -> serious problems (6492ms) What is Head Start? the film -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (the film, is headed to, the Sundance Film Festival) -> the film (6535ms) What is Head Start? You?ve -0.0 What is Head Start? -> $x: ($x, be head, karate) -> (You?ve, are headed to, Karate?and) -> You?ve (6484ms) What is Head Start? The Solar Bus -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (The Solar Bus, is heading to, Bonnaroo music festival) -> The Solar Bus (6556ms) What is Head Start? The Slaughter Rule -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (The Slaughter Rule, is headed for, another film festival) -> The Slaughter Rule (6586ms) What is Head Start? Specifying plan -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Specifying plan, heads is, a mandatory first step) -> Specifying plan (6598ms) What is Head Start? Singapore -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Singapore, are heading to, the Sydney Film Festival) -> Singapore (6499ms) What is Head Start? Tour -0.0 What is Head Start? -> $x: ($x, be head, terminal) -> (Tour, is heading into, the terminal) -> Tour (6598ms) What is Head Start? front man -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (front man, was heading, a festival) -> front man (6499ms) What is Head Start? half -0.0 What is Head Start? -> $x: ($x, be head, fencing) -> (half, was heading under, the fence) -> half (6530ms) What is Head Start? Gallani -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Gallani, was head of, federation and Berlusconi) -> Gallani (6556ms) What is Head Start? Alex -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Alex, [is] the head of, the gang) -> Alex (6506ms) What is Head Start? Morrissey -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Morrissey, was heading for, First Class) -> Morrissey (6587ms) What is Head Start? Pebble Beach -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Pebble Beach, was headed for, its first sellout ?) -> Pebble Beach (6597ms) What is Head Start? The Society -0.0 What is Head Start? -> $x: ($x, be head, murray) -> (The Society, was now headed by, Nicholas Murray Butler) -> The Society (6570ms) What is Head Start? Linda and I -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Linda and I, will be heading south, first to Tennesee) -> Linda and I (6589ms) What is Head Start? a 17 year old step child -0.0 What is Head Start? -> $x: ($x, in, head start) -> (a 17 year old step child, was in, Head Start) -> a 17 year old step child (6506ms) What is Head Start? DLL preschoolers -0.0 What is Head Start? -> $x: ($x, in, head start) -> (DLL preschoolers, enrolled in, Head Start) -> DLL preschoolers (6580ms) What is Head Start? Charlie Angus -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (Charlie Angus, will be heading to, Rome) -> Charlie Angus (6587ms) What is Head Start? Jackie Hollywood -0.0 What is Head Start? -> $x: ($x, be head, mardi gras) -> (Jackie Hollywood, is heading to, Mardi Gras) -> Jackie Hollywood (6580ms) What is Head Start? Carpenter -0.0 What is Head Start? -> $x: ($x, be head, terminal) -> (Carpenter, was headed for, his terminal) -> Carpenter (6594ms) What is Head Start? Wilson -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Wilson, is the head of, the Police Federation) -> Wilson (6484ms) What is Head Start? Crown Point -0.0 What is Head Start? -> $x: ($x, be head, murray) -> (Crown Point, is headed by, Murray McCartney) -> Crown Point (6530ms) What is Head Start? the Soke -0.0 What is Head Start? -> $x: ($x, be head, karate) -> (the Soke, are also the Heads of, Kam Lung Kempo Karate) -> the Soke (6589ms) What is Head Start? Chinese -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Chinese, are heading home for, the Spring Festival gathering) -> Chinese (6594ms) What is Head Start? Gaspard Ulliel -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Gaspard Ulliel, is heading to, the Cannes Film Festival) -> Gaspard Ulliel (6592ms) What is Head Start? the time -0.0 What is Head Start? -> $x: ($x, be head, motown) -> (the time, was head of, Motown music and president) -> the time (6592ms) What is Head Start? the industry -0.0 What is Head Start? -> $x: ($x, be head, first) -> (the industry, is headed, first hand) -> the industry (6598ms) What is Head Start? next season -0.0 What is Head Start? -> $x: (owl, start on, $x) -> (the Owls, have started to focus on, next season) -> next season (6592ms) What is Head Start? high-risk children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (high-risk children, enrolled in, Head Start) -> high-risk children (6597ms) What is Head Start? Sylvia -0.0 What is Head Start? -> $x: ($x, be head, rspca) -> (Sylvia, was head of, an RSPCA shelter) -> Sylvia (6589ms) What is Head Start? 10 -0.0 What is Head Start? -> $x: ($x, be head, nascar) -> (10, are heading back to, NASCAR?s) -> 10 (6467ms) What is Head Start? Xerez -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Xerez, were heading towards, their first) -> Xerez (6594ms) What is Head Start? a spree -0.0 What is Head Start? -> $x: (muslim, start on, $x) -> (the Sunni Muslims, started on, a spree) -> a spree (6594ms) What is Head Start? Prime Minister -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Prime Minister, was a head of, the Stern Gang) -> Prime Minister (6524ms) What is Head Start? The United States -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (The United States, is headed the way of, Rome) -> The United States (6524ms) What is Head Start? The storm -0.0 What is Head Start? -> $x: ($x, be head, wellington) -> (The storm, was heading inexorably for, Wellington) -> The storm (6547ms) What is Head Start? Shagmon -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Shagmon, may be the real head of, the gang) -> Shagmon (6506ms) What is Head Start? 594 children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (594 children, enrolled in, Head Start) -> 594 children (6506ms) What is Head Start? Excellence -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Excellence, is headed by, Dr. Gang Bao) -> Excellence (6599ms) What is Head Start? a Murray brothers -0.0 What is Head Start? -> $x: ($x, be head, murray) -> (a Murray brothers, was heading for, the Murray Bros. booth) -> a Murray brothers (6484ms) What is Head Start? the early gains -0.0 What is Head Start? -> $x: ($x, in, head start) -> (the early gains, made in, Head Start) -> the early gains (6580ms) What is Head Start? Elektra Records -0.0 What is Head Start? -> $x: ($x, be head, motown) -> (Elektra Records, is the head of, Universal Motown) -> Elektra Records (6577ms) What is Head Start? Stalin -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Stalin, was then the head of, a train and bank robbing gang) -> Stalin (6499ms) What is Head Start? the meeting -0.0 What is Head Start? -> $x: ($x, be head, im) -> (the meeting, will be the heads of, Ex-Im Bank) -> the meeting (6552ms) What is Head Start? Ayo -0.0 What is Head Start? -> $x: ($x, be head, im) -> (Ayo, is heading out east at, the beginning of October and Im) -> Ayo (6512ms) What is Head Start? Sydney Medical School -0.0 What is Head Start? -> $x: ($x, be head, menopause) -> (Sydney Medical School, is Head of, the Menopause clinic) -> Sydney Medical School (6602ms) What is Head Start? hand luggage -0.0 What is Head Start? -> $x: ($x, be head, terminal) -> (hand luggage, so will be heading straight for, terminal 1) -> hand luggage (6561ms) What is Head Start? the President -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (the President, was head of, the National Wildlife Federation) -> the President (6484ms) What is Head Start? the common currency -0.0 What is Head Start? -> $x: ($x, be head, first) -> (the common currency, is headed for, its first weekly gain) -> the common currency (6598ms) What is Head Start? Volker Boehning -0.0 What is Head Start? -> $x: ($x, be head, hunting) -> (Volker Boehning, [is] head of, the state hunting association) -> Volker Boehning (6597ms) What is Head Start? Gay people -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Gay people, should be thrown head, first) -> Gay people (6512ms) What is Head Start? The tribes -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (The tribes, were heading for, Rome) -> The tribes (6600ms) What is Head Start? more then 4000 people -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (more then 4000 people, were heading for, Rome) -> more then 4000 people (6540ms) What is Head Start? Next weekend -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Next weekend, be heading to, the National Book Festival) -> Next weekend (6484ms) What is Head Start? the greatest route -0.0 What is Head Start? -> $x: ($x, be head, hunting) -> (the greatest route, is headed for, hunt) -> the greatest route (6577ms) What is Head Start? Steve -0.0 What is Head Start? -> $x: ($x, be head, fencing) -> (Steve, is head coach at, the Cobra Fencing Club) -> Steve (6557ms) What is Head Start? one another -0.0 What is Head Start? -> $x: (muslim, start on, $x) -> (Muslims, should start spying on, one another) -> one another (6530ms) What is Head Start? work and Becky -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (work and Becky, are heading down to, the Young LDS Film Festival) -> work and Becky (6535ms) What is Head Start? Kalmykia -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Kalmykia, is the head of, the International Chess Federation) -> Kalmykia (6570ms) What is Head Start? The kids -0.0 What is Head Start? -> $x: ($x, in, head start) -> (The kids, were in, Head Start) -> The kids (6566ms) What is Head Start? Australia -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Australia, was heading towards, federation) -> Australia (6552ms) What is Head Start? Each section -0.0 What is Head Start? -> $x: ($x, be head, roman numeral) -> (Each section, is headed by, a roman numeral) -> Each section (6592ms) What is Head Start? the politician -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (the politician, is the head of, the biggest gang) -> the politician (6476ms) What is Head Start? the networks -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (the networks, are headed by, gangs) -> the networks (6547ms) What is Head Start? Fuel -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Fuel, is turning heads at, that festival) -> Fuel (6547ms) What is Head Start? 5 years -0.0 What is Head Start? -> $x: ($x, in, head start) -> (5 years, enrolled in, Head Start) -> 5 years (6561ms) What is Head Start? Sacred Power -0.0 What is Head Start? -> $x: ($x, be head, nascar) -> (Sacred Power, is heading to, NASCAR) -> Sacred Power (6573ms) What is Head Start? Food Fest -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Food Fest, is heading to, the Festival) -> Food Fest (6590ms) What is Head Start? Sundance and Tribecca -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Sundance and Tribecca, am heading to, the Toronto film festival) -> Sundance and Tribecca (6535ms) What is Head Start? Gambino -0.0 What is Head Start? -> $x: ($x, be head, hiphop) -> (Gambino, is really turning heads in, this hiphop game) -> Gambino (6573ms) What is Head Start? The New Orleans Saints -0.0 What is Head Start? -> $x: ($x, be head, first) -> (The New Orleans Saints, are headed to, their first Super Bowl) -> The New Orleans Saints (6484ms) What is Head Start? New Hampshire -0.0 What is Head Start? -> $x: ($x, be head, terminal) -> (New Hampshire, was headed for, the terminal moraines) -> New Hampshire (6577ms) What is Head Start? the items -0.0 What is Head Start? -> $x: ($x, in, head start) -> (the items, included in, Head Start) -> the items (6540ms) What is Head Start? Philippe Chatrier -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Philippe Chatrier, was head of, the French Tennis Federation) -> Philippe Chatrier (6535ms) What is Head Start? a course -0.0 What is Head Start? -> $x: (muslim, start on, $x) -> (the Muslim Ummah, started on, a course) -> a course (6524ms) What is Head Start? beatification -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (beatification, is headed to, Rome) -> beatification (6577ms) What is Head Start? The big ones -0.0 What is Head Start? -> $x: ($x, be head, terminal) -> (The big ones, are headed to, the terminal) -> The big ones (6529ms) What is Head Start? Simon -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Simon, was the head of, the Rotterdam Film Festival) -> Simon (6535ms) What is Head Start? families -0.0 What is Head Start? -> $x: ($x, in, head start) -> (families, remain in, Head Start) -> families (6594ms) What is Head Start? the 11,000 children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (the 11,000 children, enrolled in, Head Start) -> the 11,000 children (6573ms) What is Head Start? DSTW -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (DSTW, is heading to, a festival) -> DSTW (6583ms) What is Head Start? inclusion -0.0 What is Head Start? -> $x: ($x, in, head start) -> (inclusion, mean in, Head Start) -> inclusion (6594ms) What is Head Start? The truck -0.0 What is Head Start? -> $x: ($x, be head, first) -> (The truck, was headed south on, First Avenue) -> The truck (6547ms) What is Head Start? Carbondale -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Carbondale, is headed to, the Cannes Film Festival) -> Carbondale (6524ms) What is Head Start? the Lyttelton Band -0.0 What is Head Start? -> $x: ($x, be head, first) -> (the Lyttelton Band, was headed for, the first time) -> the Lyttelton Band (6484ms) What is Head Start? children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (children, enrolled in, Head Start) -> children (6556ms) What is Head Start? Joe -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Joe, is heading to, creativ festival) -> Joe (6506ms) What is Head Start? a bumpy personal connection -0.0 What is Head Start? -> $x: ($x, be head, nascar) -> (a bumpy personal connection, are headed to, the NASCAR Hall) -> a bumpy personal connection (6565ms) What is Head Start? Cosker -0.0 What is Head Start? -> $x: ($x, be head, desert storm) -> (Cosker, is heading to, the Desert Storm Poker Run) -> Cosker (6492ms) What is Head Start? Read More Team USA -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (Read More Team USA, is headed to, Rome) -> Read More Team USA (6506ms) What is Head Start? low-income children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (low-income children, enrolled in, Head Start) -> low-income children (6589ms) What is Head Start? A group of people -0.0 What is Head Start? -> $x: ($x, be head, fencing) -> (A group of people, were heading for, an inner fence) -> A group of people (6467ms) What is Head Start? a large scale -0.0 What is Head Start? -> $x: (muslim, start on, $x) -> (Hindu-Muslim riots, started on, a large scale) -> a large scale (6467ms) What is Head Start? the Jewish people -0.0 What is Head Start? -> $x: ($x, be head, first) -> (the Jewish people, were headed off into, the first exile) -> the Jewish people (6573ms) What is Head Start? 4.5 -0.0 What is Head Start? -> $x: ($x, be head, im) -> (4.5, is really heading in, directions Im really happy with) -> 4.5 (6552ms) What is Head Start? Hermanos Inglesos -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Hermanos Inglesos, are turning heads with, their first release) -> Hermanos Inglesos (6570ms) What is Head Start? Law -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (Law, was headed for, Rome) -> Law (6565ms) What is Head Start? Illinois -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (Illinois, is headed to, Rome later) -> Illinois (6597ms) What is Head Start? Krux -0.0 What is Head Start? -> $x: ($x, be head, nh) -> (Krux, is the red headed step child of, NHS truck brands) -> Krux (6583ms) What is Head Start? Danica Patrick -0.0 What is Head Start? -> $x: ($x, be head, nascar) -> (Danica Patrick, is officially headed to, NASCAR) -> Danica Patrick (6524ms) What is Head Start? Concert master -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Concert master, is the head of, first violin) -> Concert master (6540ms) What is Head Start? seeding -0.0 What is Head Start? -> $x: ($x, be head, first) -> (seeding, will be determined to Head, first) -> seeding (6598ms) What is Head Start? every child -0.0 What is Head Start? -> $x: ($x, in, head start) -> (every child, enrolled in, Head Start) -> every child (6518ms) What is Head Start? the committee -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (the committee, was headed by, the Federation) -> the committee (6512ms) What is Head Start? everybody -0.0 What is Head Start? -> $x: ($x, be head, fencing) -> (everybody, else is heading through, the fence) -> everybody (6566ms) What is Head Start? the bus -0.0 What is Head Start? -> $x: ($x, be head, murray) -> (the bus, had been headed from, Fort McMurray) -> the bus (6540ms) What is Head Start? the previous 11 drivers -0.0 What is Head Start? -> $x: ($x, be head, nascar) -> (the previous 11 drivers, are headed to, the NASCAR Hall) -> the previous 11 drivers (6512ms) What is Head Start? Ute -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Ute, was the head of, the notorious Perkins gang) -> Ute (6600ms) What is Head Start? NEDFEST -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (NEDFEST, we?ll be heading to, Copper Country Festival) -> NEDFEST (6592ms) What is Head Start? action -0.0 What is Head Start? -> $x: ($x, be head, hunting) -> (action, must be headed by, a meticulous hunt) -> action (6587ms) What is Head Start? 15:34 Prince Fielder -0.0 What is Head Start? -> $x: ($x, be head, motown) -> (15:34 Prince Fielder, is headed for, Motown) -> 15:34 Prince Fielder (6600ms) What is Head Start? industrial agribusiness -0.0 What is Head Start? -> $x: ($x, be head, waterloo) -> (industrial agribusiness, is headed toward, its Waterloo) -> industrial agribusiness (6600ms) What is Head Start? young children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (young children, enrolled in, Head Start) -> young children (6524ms) What is Head Start? coach -0.0 What is Head Start? -> $x: ($x, be head, first) -> (coach, were headed to, first class) -> coach (6566ms) What is Head Start? Ali -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Ali, is also head of, the West Asian Football Federation) -> Ali (6597ms) What is Head Start? INTRODUCTION Many children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (INTRODUCTION Many children, enrolled in, Head Start) -> INTRODUCTION Many children (6467ms) What is Head Start? Latitude -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Latitude, are heading down to, his SWN Festival) -> Latitude (6547ms) What is Head Start? pregnant women -0.0 What is Head Start? -> $x: ($x, in, head start) -> (pregnant women, enrolled in, Head Start) -> pregnant women (6492ms) What is Head Start? Directors Billy -0.0 What is Head Start? -> $x: ($x, be head, karate) -> (Directors Billy, is the head of, the Hames Shihan-Ryu Karate) -> Directors Billy (6535ms) What is Head Start? quarterback -0.0 What is Head Start? -> $x: ($x, be head, murray) -> (quarterback, has been the head coach at, Murray State) -> quarterback (6580ms) What is Head Start? The 49ers -0.0 What is Head Start? -> $x: ($x, be head, motown) -> (The 49ers, are headed to, Motown) -> The 49ers (6570ms) What is Head Start? the Drool -0.0 What is Head Start? -> $x: ($x, be head, hunting) -> (the Drool, will be heading, another hunt) -> the Drool (6499ms) What is Head Start? the recruits -0.0 What is Head Start? -> $x: ($x, be head, first) -> (the recruits, are thrown head, first) -> the recruits (6601ms) What is Head Start? a baby -0.0 What is Head Start? -> $x: ($x, be head, first) -> (a baby, to be born head, first) -> a baby (6524ms) What is Head Start? Chances -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (Chances, are he?ll head to, Rome) -> Chances (6583ms) What is Head Start? Comstock -0.0 What is Head Start? -> $x: ($x, be head, kkk) -> (Comstock, was the head of, the kkk) -> Comstock (6561ms) What is Head Start? companies -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (companies, are heading to, festivals) -> companies (6467ms) What is Head Start? preschoolers -0.0 What is Head Start? -> $x: ($x, in, head start) -> (preschoolers, enrolled in, Head Start) -> preschoolers (6587ms) What is Head Start? Deb Curtis -0.0 What is Head Start? -> $x: ($x, in, head start) -> (Deb Curtis, worked in, Head Start) -> Deb Curtis (6589ms) What is Head Start? the new station -0.0 What is Head Start? -> $x: ($x, be head, first) -> (the new station, was headed off to, my first) -> the new station (6596ms) What is Head Start? young people -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (young people, might be headed for, involvement in gangs) -> young people (6580ms) What is Head Start? the helicopter -0.0 What is Head Start? -> $x: ($x, be head, wellington) -> (the helicopter, was heading to, Wellington) -> the helicopter (6540ms) What is Head Start? 607 children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (607 children, enrolled in, head start) -> 607 children (6484ms) What is Head Start? The ten stanzas -0.0 What is Head Start? -> $x: ($x, be head, roman numeral) -> (The ten stanzas, are headed by, Roman numerals) -> The ten stanzas (6561ms) What is Head Start? 3-4 year olds -0.0 What is Head Start? -> $x: ($x, in, head start) -> (3-4 year olds, enrolled in, Head Start) -> 3-4 year olds (6599ms) What is Head Start? the effort -0.0 What is Head Start? -> $x: ($x, be head, nhs) -> (the effort, is headed up by, the NH Office) -> the effort (6600ms) What is Head Start? Cisco -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Cisco, are actually heading around, the first corner) -> Cisco (6577ms) What is Head Start? Tuesday -0.0 What is Head Start? -> $x: (muslim, start on, $x) -> (the Muslim holiday, starts on, Tuesday) -> Tuesday (6561ms) What is Head Start? Al Capone -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Al Capone, was now head of, Chicago?s biggest gang) -> Al Capone (6547ms) What is Head Start? The Power -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (The Power, will be heading to, the Cannes Film Festival) -> The Power (6492ms) What is Head Start? the trend -0.0 What is Head Start? -> $x: ($x, be head, im) -> (the trend, is heading, this way and I?m) -> the trend (6506ms) What is Head Start? the Capitol and Obama -0.0 What is Head Start? -> $x: ($x, be head, first) -> (the Capitol and Obama, was headed to, the first) -> the Capitol and Obama (6573ms) What is Head Start? the outer perimeter fence -0.0 What is Head Start? -> $x: ($x, be head, fencing) -> (the outer perimeter fence, were heading for, an inner fence) -> the outer perimeter fence (6530ms) What is Head Start? the train -0.0 What is Head Start? -> $x: ($x, be head, terminal) -> (the train, was headed for, Lambert Airport-Main Terminal) -> the train (6499ms) What is Head Start? Edgar Chandler -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Edgar Chandler, was the head of, the Church Federation) -> Edgar Chandler (6573ms) What is Head Start? nearly 900,000 children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (nearly 900,000 children, are in, Head Start) -> nearly 900,000 children (6468ms) What is Head Start? consumers -0.0 What is Head Start? -> $x: ($x, be head, first) -> (consumers, are heading, first) -> consumers (6506ms) What is Head Start? the Saints -0.0 What is Head Start? -> $x: ($x, be head, first) -> (the Saints, are going head-to-head in, the first NFL game) -> the Saints (6529ms) What is Head Start? Brown -0.0 What is Head Start? -> $x: ($x, in, head start) -> (Brown, began in, Head Start) -> Brown (6594ms) What is Head Start? Ill -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Ill, be headed, first) -> Ill (6577ms) What is Head Start? The second option -0.0 What is Head Start? -> $x: ($x, be head, terminal) -> (The second option, is to head to, the Carcelen bus terminal) -> The second option (6499ms) What is Head Start? the animation -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (the animation, will be heading to, a few movie festivals) -> the animation (6512ms) What is Head Start? each family -0.0 What is Head Start? -> $x: ($x, in, head start) -> (each family, enrolled in, Head Start) -> each family (6589ms) What is Head Start? two friends -0.0 What is Head Start? -> $x: ($x, be head, first) -> (two friends, are heading to, Barbados first two weeks) -> two friends (6556ms) What is Head Start? the JACKSON car -0.0 What is Head Start? -> $x: ($x, be head, terminal) -> (the JACKSON car, is headed for, the DL&W Hoboken Terminal) -> the JACKSON car (6594ms) What is Head Start? a band contest -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (a band contest, will be heading to, the acclaimed music festival) -> a band contest (6600ms) What is Head Start? Carl Jensen -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Carl Jensen, was headed for, his first big meeting) -> Carl Jensen (6573ms) What is Head Start? an older woman -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (an older woman, is head of, the whole gang) -> an older woman (6552ms) What is Head Start? 2nd one -0.0 What is Head Start? -> $x: ($x, be head, first) -> (2nd one, is Head, first Servlets) -> 2nd one (6540ms) What is Head Start? An International Wine & Food Fest -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (An International Wine & Food Fest, is heading to, the Festival) -> An International Wine & Food Fest (6499ms) What is Head Start? different days -0.0 What is Head Start? -> $x: (muslim, start on, $x) -> (the Muslim and Chinese months, start on, different days) -> different days (6561ms) What is Head Start? holiday shopping -0.0 What is Head Start? -> $x: (owl, start on, $x) -> (night owls, can get a head start on, holiday shopping) -> holiday shopping (6556ms) What is Head Start? Classics -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Classics, was heading for, a First) -> Classics (6598ms) What is Head Start? Sat 12 Feb I?ll -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Sat 12 Feb I?ll, be heading to, the SXSW Interactive Festival) -> Sat 12 Feb I?ll (6518ms) What is Head Start? a rock star -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (a rock star, is heading to, the Cannes Film Festival) -> a rock star (6592ms) What is Head Start? the woods -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (the woods, are heading up to, the festival) -> the woods (6547ms) What is Head Start? Brentwood -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Brentwood, are heading out to, the Kiwanis Festival) -> Brentwood (6556ms) What is Head Start? The sultans and governors -0.0 What is Head Start? -> $x: ($x, be head, islamic faith) -> (The sultans and governors, are the heads of, the Islamic faith) -> The sultans and governors (6535ms) What is Head Start? home prices -0.0 What is Head Start? -> $x: ($x, be head, first) -> (home prices, are headed northward for, the first time) -> home prices (6597ms) What is Head Start? Andrew -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Andrew, was the Head of, FIRST) -> Andrew (6589ms) What is Head Start? the new paper -0.0 What is Head Start? -> $x: ($x, be head, first) -> (the new paper, was headed, ?The ?Safety First ? Communists) -> the new paper (6540ms) What is Head Start? Woodside -0.0 What is Head Start? -> $x: ($x, be head, terminal) -> (Woodside, is heading, the China-Australia Terminal Consortium) -> Woodside (6592ms) What is Head Start? the work -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (the work, was headed for, either Rome or London) -> the work (6597ms) What is Head Start? the University -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (the University, is headed to, the Sundance Film Festival) -> the University (6597ms) What is Head Start? Cronin -0.0 What is Head Start? -> $x: ($x, be head, murray) -> (Cronin, was the head coach at, Murray State) -> Cronin (6598ms) What is Head Start? the Knicks -0.0 What is Head Start? -> $x: ($x, be head, first) -> (the Knicks, might be headed to, their first losing streak) -> the Knicks (6535ms) What is Head Start? Mike Vening -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Mike Vening, is head of, the Stockton Borough First Federation) -> Mike Vening (6535ms) What is Head Start? true Bill France -0.0 What is Head Start? -> $x: ($x, be head, nascar) -> (true Bill France, was still the head of, NASCAR) -> true Bill France (6597ms) What is Head Start? Mr. Obama -0.0 What is Head Start? -> $x: ($x, be head, mount rushmore) -> (Mr. Obama, is headed for, Mount Rushmore) -> Mr. Obama (6565ms) What is Head Start? Basil -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Basil, is the head of, town ?s gang) -> Basil (6580ms) What is Head Start? Aleeta -0.0 What is Head Start? -> $x: ($x, be head, karate) -> (Aleeta, is the head instructor at, the Feminist Karate Union) -> Aleeta (6580ms) What is Head Start? The ABA -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (The ABA, is heading to, the Rio Grande Valley Bird Festival) -> The ABA (6587ms) What is Head Start? compared teachers and children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (compared teachers and children, enrolled in, Head Start) -> compared teachers and children (6540ms) What is Head Start? a child -0.0 What is Head Start? -> $x: ($x, in, head start) -> (a child, participating in, Head Start) -> a child (6592ms) What is Head Start? Legislators -0.0 What is Head Start? -> $x: ($x, in, head start) -> (Legislators, continue investing in, Head Start) -> Legislators (6476ms) What is Head Start? motoring history -0.0 What is Head Start? -> $x: ($x, be head, first) -> (motoring history, is headed Stateside for, the very first time) -> motoring history (6476ms) What is Head Start? a rough and tough biker -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (a rough and tough biker, is the head of, the Del Fuego gang) -> a rough and tough biker (6546ms) What is Head Start? market forces -0.0 What is Head Start? -> $x: ($x, be head, nhs) -> (market forces, were heading for, 'an NHS-style crash) -> market forces (6573ms) What is Head Start? Rademacher -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Rademacher, will also be heading out to, the festival) -> Rademacher (6530ms) What is Head Start? Janes -0.0 What is Head Start? -> $x: ($x, be head, hunting) -> (Janes, has been head professional at, Toronto Hunt) -> Janes (6484ms) What is Head Start? Paul -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (Paul, is headed to, Rome) -> Paul (6580ms) What is Head Start? Seth Cohn -0.0 What is Head Start? -> $x: ($x, be head, nhs) -> (Seth Cohn, is the new head of, NH Info) -> Seth Cohn (6589ms) What is Head Start? Hettinga -0.0 What is Head Start? -> $x: ($x, be head, murray) -> (Hettinga, was head coach at, MacMurray College) -> Hettinga (6512ms) What is Head Start? Maryland -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Maryland, are going head-to-head in, the first) -> Maryland (6484ms) What is Head Start? Aikido -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Aikido, is now the head of, the Ki Aikido Federation) -> Aikido (6600ms) What is Head Start? Teixeira -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Teixeira, had been head of, the Brazilian federation) -> Teixeira (6580ms) What is Head Start? Asaph -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Asaph, [is] head of, the first division) -> Asaph (6561ms) What is Head Start? parents -0.0 What is Head Start? -> $x: ($x, in, head start) -> (parents, involved in, Head Start) -> parents (6573ms) What is Head Start? last year -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (last year, was the head of, the Greek trade-union federation) -> last year (6584ms) What is Head Start? Haiti -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Haiti, was heading for, its first win) -> Haiti (6540ms) What is Head Start? India -0.0 What is Head Start? -> $x: ($x, be head, first) -> (India, is the head of, state and first citizen) -> India (6580ms) What is Head Start? The last few -0.0 What is Head Start? -> $x: ($x, be head, im) -> (The last few, are headed out, ASAP. I?m) -> The last few (6476ms) What is Head Start? students -0.0 What is Head Start? -> $x: ($x, in, head start) -> (students, had been in, Head Start) -> students (6600ms) What is Head Start? the foundation -0.0 What is Head Start? -> $x: ($x, in, head start) -> (the foundation, laid in, Head Start) -> the foundation (6552ms) What is Head Start? homeless children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (homeless children, enroll in, Head Start) -> homeless children (6492ms) What is Head Start? Steinbeck -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Steinbeck, is headed on, the first page) -> Steinbeck (6467ms) What is Head Start? 11 % -0.0 What is Head Start? -> $x: ($x, in, head start) -> (11 %, participate in, Head Start) -> 11 % (6570ms) What is Head Start? Bollinger -0.0 What is Head Start? -> $x: ($x, be head, murray) -> (Bollinger, is the head coach at, Hill Murray High School) -> Bollinger (6518ms) What is Head Start? Surkis -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Surkis, is also head of, the Ukrainian football federation) -> Surkis (6577ms) What is Head Start? Dunmoyer -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Dunmoyer, was head of, the Personal Insurance Federation) -> Dunmoyer (6491ms) What is Head Start? December 1st -0.0 What is Head Start? -> $x: (owl, start on, $x) -> (Great Horned and Screech Owls, started on, December 1st) -> December 1st (6566ms) What is Head Start? February 28 , 2002 -0.0 What is Head Start? -> $x: (muslim, start on, $x) -> (an anti-Muslim carnage, started on, February 28 , 2002) -> February 28 , 2002 (6552ms) What is Head Start? Kristov -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (Kristov, [is] the head of, the Russian gang) -> Kristov (6601ms) What is Head Start? Pierric Chalvin -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Pierric Chalvin, [is] head of, the regional textile federation) -> Pierric Chalvin (6540ms) What is Head Start? weekend -0.0 What is Head Start? -> $x: ($x, be head, hunting) -> (weekend, be heading down to, Hunt Valley) -> weekend (6499ms) What is Head Start? Nick -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Nick, will be heading to, the Ozone Film Festival) -> Nick (6540ms) What is Head Start? underwear -0.0 What is Head Start? -> $x: ($x, be head, fencing) -> (underwear, was headed for, the fence) -> underwear (6512ms) What is Head Start? Mugawer -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Mugawer, is the head of, the official federation) -> Mugawer (6518ms) What is Head Start? problems -0.0 What is Head Start? -> $x: ($x, be head, menopause) -> (problems, is head of, the Menopause and PMS centre) -> problems (6589ms) What is Head Start? a fat ?Italian? guy -0.0 What is Head Start? -> $x: ($x, be head, modeling agency) -> (a fat ?Italian? guy, is head of, the modeling agency) -> a fat ?Italian? guy (6586ms) What is Head Start? preschool children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (preschool children, enrolled in, Head Start) -> preschool children (6570ms) What is Head Start? the stochastics -0.0 What is Head Start? -> $x: ($x, be head, first) -> (the stochastics, was a subject heading of, first order) -> the stochastics (6518ms) What is Head Start? George W. Bush -0.0 What is Head Start? -> $x: ($x, be head, cheerleading) -> (George W. Bush, was also the head of, the cheerleading team) -> George W. Bush (6561ms) What is Head Start? a long one -0.0 What is Head Start? -> $x: ($x, be head, fencing) -> (a long one, was headed for, the fences) -> a long one (6573ms) What is Head Start? even soft drugs -0.0 What is Head Start? -> $x: ($x, be head, drug addiction) -> (even soft drugs, was headed for, drug addiction) -> even soft drugs (6552ms) What is Head Start? Tony Daley -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Tony Daley, [is] head of, first team performance) -> Tony Daley (6467ms) What is Head Start? The London team -0.0 What is Head Start? -> $x: ($x, be head, murray) -> (The London team, will be headed by, Simon Murray) -> The London team (6577ms) What is Head Start? outward respectability -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (outward respectability, are heads of, the Mildew gang) -> outward respectability (6592ms) What is Head Start? the draft -0.0 What is Head Start? -> $x: ($x, be head, first) -> (the draft, was headed to, his first Pro Bowl) -> the draft (6601ms) What is Head Start? Ms. Sagheb -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Ms. Sagheb, is the head of, the Afghan Basketball Federation) -> Ms. Sagheb (6592ms) What is Head Start? poverty -0.0 What is Head Start? -> $x: ($x, in, head start) -> (poverty, are in, Head Start) -> poverty (6589ms) What is Head Start? Design -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Design, is the heading of, the first chapter) -> Design (6601ms) What is Head Start? the Rubicon -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (the Rubicon, is heading toward, Rome) -> the Rubicon (6594ms) What is Head Start? the parents and families -0.0 What is Head Start? -> $x: ($x, in, head start) -> (the parents and families, enrolled in, Head Start) -> the parents and families (6598ms) What is Head Start? Shannon -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Shannon, was head of, the festival) -> Shannon (6540ms) What is Head Start? Grant and Wesley -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Grant and Wesley, are heading to, the SXSW Interactive festival) -> Grant and Wesley (6535ms) What is Head Start? emeralds -0.0 What is Head Start? -> $x: ($x, be head, first) -> (emeralds, was headed at, first) -> emeralds (6524ms) What is Head Start? 1985 Scotland -0.0 What is Head Start? -> $x: ($x, be head, first) -> (1985 Scotland, was heading for, its first Vuelta win) -> 1985 Scotland (6584ms) What is Head Start? Every child -0.0 What is Head Start? -> $x: ($x, in, head start) -> (Every child, receiving services in, Head Start) -> Every child (6598ms) What is Head Start? the 12th August -0.0 What is Head Start? -> $x: (muslim, start on, $x) -> (Muslim mischief, started on, the 12th August) -> the 12th August (6552ms) What is Head Start? Masters champ Charl Schwartzel -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Masters champ Charl Schwartzel, is heading for, the first tee) -> Masters champ Charl Schwartzel (6577ms) What is Head Start? The officer -0.0 What is Head Start? -> $x: ($x, be head, first) -> (The officer, was heading south on, First Colonial) -> The officer (6586ms) What is Head Start? Monday -0.0 What is Head Start? -> $x: (muslim, start on, $x) -> (Muslims ismaelitas, started on, Monday) -> Monday (6587ms) What is Head Start? Ash -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Ash, is heading your way for, the Queenscliff Music Festival) -> Ash (6587ms) What is Head Start? I?ll -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (I?ll, be headed to, Rome) -> I?ll (6592ms) What is Head Start? Slope -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Slope, is only the head of, first impuls) -> Slope (6583ms) What is Head Start? Grand Prince ?rp?d -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Grand Prince ?rp?d, was the head of, the tribal federation) -> Grand Prince ?rp?d (6561ms) What is Head Start? Children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (Children, enrolled in, Head Start) -> Children (6594ms) What is Head Start? Stacy -0.0 What is Head Start? -> $x: ($x, be head, nhs) -> (Stacy, is heading to, NH next) -> Stacy (6594ms) What is Head Start? the hour -0.0 What is Head Start? -> $x: (owl, start on, $x) -> (Owl Hollow Tours, start on, the hour) -> the hour (6570ms) What is Head Start? Adam -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Adam, was the head of, the first race) -> Adam (6601ms) What is Head Start? the school -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (the school, was head up, a literary festival) -> the school (6484ms) What is Head Start? fine-tune predictions -0.0 What is Head Start? -> $x: ($x, be head, first) -> (fine-tune predictions, is headed for, that first , or second) -> fine-tune predictions (6530ms) What is Head Start? a disability -0.0 What is Head Start? -> $x: ($x, in, head start) -> (a disability, enrolled in, Head Start) -> a disability (6512ms) What is Head Start? Robert De Niro -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Robert De Niro, will be heading up, the festival?s) -> Robert De Niro (6594ms) What is Head Start? Mister Saturday Night -0.0 What is Head Start? -> $x: ($x, be head, first) -> (Mister Saturday Night, is headed to, First Avenue) -> Mister Saturday Night (6577ms) What is Head Start? a friend -0.0 What is Head Start? -> $x: ($x, be head, gang) -> (a friend, was the head of, a biker gang) -> a friend (6570ms) What is Head Start? a large muscled dwarf -0.0 What is Head Start? -> $x: ($x, be head, hunting) -> (a large muscled dwarf, was the head of, the hunting squadron) -> a large muscled dwarf (6530ms) What is Head Start? the rows -0.0 What is Head Start? -> $x: ($x, be head, first) -> (the rows, are headed by, the first sample) -> the rows (6597ms) What is Head Start? David Dalglish -0.0 What is Head Start? -> $x: ($x, be head, nhs) -> (David Dalglish, is Head Pharmacist at, NHS Borders) -> David Dalglish (6561ms) What is Head Start? Criss Oliva -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (Criss Oliva, was headed to, the rock festival) -> Criss Oliva (6561ms) What is Head Start? the pack -0.0 What is Head Start? -> $x: ($x, be head, hunting) -> (the pack, were heading off on, the hunt) -> the pack (6547ms) What is Head Start? A woman -0.0 What is Head Start? -> $x: ($x, be head, first) -> (A woman, is thrown head, first) -> A woman (6546ms) What is Head Start? The firm -0.0 What is Head Start? -> $x: ($x, be head, hunting) -> (The firm, is headed by, brokers Hunt Barnett) -> The firm (6589ms) What is Head Start? hunters -0.0 What is Head Start? -> $x: ($x, be head, first) -> (hunters, are heading out for, the first) -> hunters (6530ms) What is Head Start? The film -0.0 What is Head Start? -> $x: ($x, be head, festival) -> (The film, is heading into, its second festival phase) -> The film (6552ms) What is Head Start? hair transplantation -0.0 What is Head Start? -> $x: ($x, be head, clone) -> (hair transplantation, is headed toward, hair cloning) -> hair transplantation (6592ms) What is Head Start? Mr Ramsay -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Mr Ramsay, is a former head of, the Victorian Farmers Federation) -> Mr Ramsay (6499ms) What is Head Start? international diplomacy -0.0 What is Head Start? -> $x: ($x, be head, rome) -> (international diplomacy, is head of, the Rome office) -> international diplomacy (6600ms) What is Head Start? Shintani Sensei -0.0 What is Head Start? -> $x: ($x, be head, federation) -> (Shintani Sensei, was head of, the Shintani Wado-Kai Federation) -> Shintani Sensei (6529ms) What is Head Start? 4-year-old children -0.0 What is Head Start? -> $x: ($x, in, head start) -> (4-year-old children, enrolled in, Head Start) -> 4-year-old children (6491ms) Who is the governor of Alaska? Palin 1.777777777777 Who is the governor of Alaska? -> $x: ($x, be govenor of, alaska) -> (Palin, is Govenor of, Alaska) -> Palin (1759ms) Who is the governor of Alaska? The rising Republican star 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (The rising Republican star, was elected governor of, Alaska) -> The rising Republican star (2638ms) Who is the governor of Alaska? a beauty queen 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (a beauty queen, can be elected governor of, Alaska) -> a beauty queen (2170ms) Who is the governor of Alaska? Frank Murkowki 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Frank Murkowki, is the governor of, Alaska) -> Frank Murkowki (1874ms) Who is the governor of Alaska? Also Summary Sarah Palin 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Also Summary Sarah Palin, is a former Governor of, Alaska) -> Also Summary Sarah Palin (2882ms) Who is the governor of Alaska? The vice presidential choice 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (The vice presidential choice, is the governor of, Alaska) -> The vice presidential choice (2111ms) Who is the governor of Alaska? the fading carnival attraction 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (the fading carnival attraction, was once the governor of, Alaska) -> the fading carnival attraction (2014ms) Who is the governor of Alaska? A contrasting example 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (A contrasting example, is the Governor of, Alaska) -> A contrasting example (2013ms) Who is the governor of Alaska? the Alaska Daily Empire 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (the Alaska Daily Empire, was appointed Governor of, Alaska) -> the Alaska Daily Empire (2638ms) Who is the governor of Alaska? the years Palin 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (the years Palin, was Governor of, Alaska) -> the years Palin (2638ms) Who is the governor of Alaska? a Finn 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (a Finn, was Governor of, Alaska) -> a Finn (2819ms) Who is the governor of Alaska? Sarah Palin 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Sarah Palin, has only been Governor of, Alaska) -> Sarah Palin (2882ms) Who is the governor of Alaska? Ms. Palin 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Ms. Palin, has been governor of, Alaska) -> Ms. Palin (2882ms) Who is the governor of Alaska? Frank Murkowski 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Frank Murkowski, was elected governor of, Alaska) -> Frank Murkowski (2865ms) Who is the governor of Alaska? McCain 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (McCain, is the Governor of, Alaska) -> McCain (2013ms) Who is the governor of Alaska? The late Jay Hammond 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (The late Jay Hammond, was governor of, Alaska) -> The late Jay Hammond (2170ms) Who is the governor of Alaska? Sean Parnell 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Sean Parnell, has been governor of, Alaska) -> Sean Parnell (2865ms) Who is the governor of Alaska? president 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (president, was governor of, Alaska) -> president (3063ms) Who is the governor of Alaska? gubernatorial chutzpah 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (gubernatorial chutzpah, was elected governor of, Alaska) -> gubernatorial chutzpah (2014ms) Who is the governor of Alaska? now and 2012 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (now and 2012, is governor of, Alaska) -> now and 2012 (2111ms) Who is the governor of Alaska? Mr. Parnell 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Mr. Parnell, is governor of, Alaska) -> Mr. Parnell (2818ms) Who is the governor of Alaska? Sarah 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Sarah, is the governor of, Alaska) -> Sarah (2014ms) Who is the governor of Alaska? John Brady 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (John Brady, was later territorial governor of, Alaska) -> John Brady (2818ms) Who is the governor of Alaska? whose mother 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (whose mother, is governor of, Alaska) -> whose mother (2865ms) Who is the governor of Alaska? four 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (four, was governor of, Alaska) -> four (2638ms) Who is the governor of Alaska? the brow 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (the brow, is the governor of, Alaska) -> the brow (2882ms) Who is the governor of Alaska? William A. Egan 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (William A. Egan, was again elected Governor of, Alaska) -> William A. Egan (2112ms) Who is the governor of Alaska? Pages Governor Sarah Palin 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Pages Governor Sarah Palin, is the current Governor of, Alaska) -> Pages Governor Sarah Palin (2638ms) Who is the governor of Alaska? a 44 year old mother 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (a 44 year old mother, has been the governor of, Alaska) -> a 44 year old mother (2792ms) Who is the governor of Alaska? 2010 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (2010, has been the former governor of, Alaska) -> 2010 (2112ms) Who is the governor of Alaska? Sep 5 , 2008 4:40 PM EDT Ms. Palin 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Sep 5 , 2008 4:40 PM EDT Ms. Palin, has been Governor of, Alaska) -> Sep 5 , 2008 4:40 PM EDT Ms. Palin (2013ms) Who is the governor of Alaska? Rick Perry 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Rick Perry, had been governor of, Alaska) -> Rick Perry (2818ms) Who is the governor of Alaska? Summary Sarah Palin 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Summary Sarah Palin, is a former Governor of, Alaska) -> Summary Sarah Palin (2882ms) Who is the governor of Alaska? The writer 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (The writer, is governor of, Alaska) -> The writer (1759ms) Who is the governor of Alaska? 1 Sarah Louise Heath Palin 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (1 Sarah Louise Heath Palin, is the current Governor of, Alaska) -> 1 Sarah Louise Heath Palin (2112ms) Who is the governor of Alaska? she?s 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (she?s, been the governor of, Alaska) -> she?s (2865ms) Who is the governor of Alaska? a small town 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (a small town, has been governor of, Alaska) -> a small town (2791ms) Who is the governor of Alaska? Sara Palin 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Sara Palin, was the Governor of, Alaska) -> Sara Palin (2792ms) Who is the governor of Alaska? Democrat Tony Knowles 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Democrat Tony Knowles, was elected governor of, Alaska) -> Democrat Tony Knowles (2791ms) Who is the governor of Alaska? a woman 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (a woman, would be either the Governor of, Alaska) -> a woman (2014ms) Who is the governor of Alaska? Murkowski 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Murkowski, was elected governor of, Alaska) -> Murkowski (2866ms) Who is the governor of Alaska? mayor 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (mayor, is Governor of, Alaska) -> mayor (1759ms) Who is the governor of Alaska? Swineford 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Swineford, was governor of, Alaska) -> Swineford (1873ms) Who is the governor of Alaska? VP 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (VP, is the Governor of, Alaska) -> VP (2818ms) Who is the governor of Alaska? todd palin 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (todd palin, actually is the governor of, alaska) -> todd palin (1759ms) Who is the governor of Alaska? Trig?s mum 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Trig?s mum, is the Governor of, Alaska) -> Trig?s mum (2170ms) Who is the governor of Alaska? the Interior 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (the Interior, was elected Governor of, Alaska) -> the Interior (2170ms) Who is the governor of Alaska? Sarah Palin Sarah Palin 1.333333333332 Who is the governor of Alaska? -> $x: ($x, be governor of, alaska) -> (Sarah Palin Sarah Palin, is the former governor of, Alaska) -> Sarah Palin Sarah Palin (1759ms) Who is the governor of Alaska? Jews 1.11111111111 Who is the governor of Alaska? -> $x: ($x, be governor in, alaska) -> (Jews, have been governors in, Alaska , Idaho and Utah) -> Jews (3063ms) Who is the governor of Alaska? ?Sarah Palin 0.8888888888870001 Who is the governor of Alaska? -> $x: ($x, be first governor of, alaska) -> (?Sarah Palin, is a conservative first-term governor of, Alaska) -> ?Sarah Palin (3063ms) Who is the governor of Alaska? Shawn Parnell 0.777777777776 Who is the governor of Alaska? -> $x: ($x, be appoint governor of, alaska) -> (Shawn Parnell, would be appointed the next governor of, Alaska) -> Shawn Parnell (3074ms) Who is the governor of Alaska? John F. A. 0.777777777776 Who is the governor of Alaska? -> $x: ($x, appoint governor of, alaska) -> (John F. A., was appointed the 8th governor of, Alaska) -> John F. A. (3074ms) Who is the governor of Alaska? William Ayer 0.666666666666 Who is the governor of Alaska? -> $x: ($x, be name of, alaska) -> (William Ayer, was named CEO of, Alaska Airlines) -> William Ayer (3074ms) Who is the governor of Alaska? Chugach 0.666666666666 Who is the governor of Alaska? -> $x: ($x, be name of, alaska) -> (Chugach, is the name of, a Native Alaska culture and people) -> Chugach (3075ms) Who is the governor of Alaska? Green 0.666666666666 Who is the governor of Alaska? -> $x: ($x, be name of, alaska) -> (Green, was named the MVP of, the Great Alaska Shootout) -> Green (3074ms) Who is the governor of Alaska? the company 0.666666666666 Who is the governor of Alaska? -> $x: ($x, be name of, alaska) -> (the company, was named one of, Alaska Business Monthly?s top) -> the company (3074ms) Who is the governor of Alaska? Vern 0.666666666666 Who is the governor of Alaska? -> $x: ($x, be name of, alaska) -> (Vern, was named one of, Alaska?s top) -> Vern (3074ms) Who is the governor of Alaska? the State 0.555555555553 Who is the governor of Alaska? -> $x: (governor, be state, $x) -> (Governor Freudenthal, will be delivering the State of, the State) -> the State (3078ms) Who is the governor of Alaska? the wrong direction 0.555555555553 Who is the governor of Alaska? -> $x: (governor, be state, $x) -> (Governor Walker, is taking the state in, the wrong direction) -> the wrong direction (3078ms) Who is the governor of Alaska? a good principle 0.555555555553 Who is the governor of Alaska? -> $x: (governor, be state, $x) -> (the governor, may have been stating, a good principle) -> a good principle (3078ms) Who is the governor of Alaska? Bakersfield 0.555555555553 Who is the governor of Alaska? -> $x: (governor, be state, $x) -> (the governor, was diner-storming the state in, Bakersfield) -> Bakersfield (3074ms) Who is the governor of Alaska? the conscious mind 0.555555555553 Who is the governor of Alaska? -> $x: (governor, be state, $x) -> (The only governor, is the state of, the conscious mind) -> the conscious mind (3078ms) Who is the governor of Alaska? Montana 0.555555555553 Who is the governor of Alaska? -> $x: (governor, be state, $x) -> (the first Governor, is now the state of, Montana) -> Montana (3075ms) Who is the governor of Alaska? education 0.555555555553 Who is the governor of Alaska? -> $x: (governor, be state, $x) -> (the governor, also is the state board of, education) -> education (3078ms) Who is the governor of Alaska? Arizona 0.555555555553 Who is the governor of Alaska? -> $x: (governor, be state, $x) -> (The Governor, is suing the State of, Arizona) -> Arizona (3074ms) Who is the governor of Alaska? time of war 0.555555555553 Who is the governor of Alaska? -> $x: (governor, be state, $x) -> (the Governor, shall be out of the State in, time of war) -> time of war (3075ms) Who is the governor of Alaska? business leaders 0.555555555553 Who is the governor of Alaska? -> $x: (governor, be state, $x) -> (The governor, is touring the state to talk to, business leaders) -> business leaders (3078ms) Who is the governor of Alaska? any time 0.555555555553 Who is the governor of Alaska? -> $x: (governor, be state, $x) -> (the governor, was out of the state, any time) -> any time (3074ms) Who is the governor of Alaska? the economy 0.555555555553 Who is the governor of Alaska? -> $x: (governor, be state, $x) -> (The Governor, is hosting a state-wide summit on, the economy) -> the economy (3078ms) Who is the governor of Alaska? Lytton 0.555555555553 Who is the governor of Alaska? -> $x: (governor, be state, $x) -> (the Governor, am stated to, Lytton) -> Lytton (3078ms) Who is the governor of Alaska? the cuts 0.555555555553 Who is the governor of Alaska? -> $x: (governor, be state, $x) -> (the Governor, is reducing state spending beyond, the cuts) -> the cuts (3078ms) Who is the governor of Alaska? the track 0.555555555553 Who is the governor of Alaska? -> $x: (governor, be state, $x) -> (?Governor Christie, is putting our state on, the track) -> the track (3078ms) Who is the governor of Alaska? the state speech 0.555555555553 Who is the governor of Alaska? -> $x: (governor, be state, $x) -> (the Governor, will be giving his state of, the state speech) -> the state speech (3078ms) Who is the governor of Alaska? 20 days 0.555555555553 Who is the governor of Alaska? -> $x: (governor, be state, $x) -> (the governor, is out of the state for, 20 days) -> 20 days (3074ms) Who is the governor of Alaska? the great-uncle 0.44444444444500003 Who is the governor of Alaska? -> $x: ($x, be govenor of, arizona) -> (the great-uncle, was also the first govenor of, Arizona) -> the great-uncle (3078ms) Who is the governor of Alaska? The C.ROOK Rick SCOTT 0.11111111111100003 Who is the governor of Alaska? -> $x: ($x, be govenor of, florida) -> (The C.ROOK Rick SCOTT, is the Govenor of, Florida) -> The C.ROOK Rick SCOTT (3078ms) Who is the governor of Alaska? Mitt Romney?s father 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Mitt Romney?s father, was elected governor of, Michigan) -> Mitt Romney?s father (3087ms) Who is the governor of Alaska? Mr. Osborn 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Mr. Osborn, was formerly Governor of, Michigan) -> Mr. Osborn (3080ms) Who is the governor of Alaska? Mitt Romney 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Mitt Romney, was governor of, Michigan) -> Mitt Romney (3080ms) Who is the governor of Alaska? The Mormon businessman 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (The Mormon businessman, was once governor of, Michigan) -> The Mormon businessman (3083ms) Who is the governor of Alaska? Mitt 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Mitt, had been the Governor of, Michigan) -> Mitt (3088ms) Who is the governor of Alaska? Hull 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Hull, was Governor of, the Michigan territories) -> Hull (3085ms) Who is the governor of Alaska? Mabus 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (Mabus, [is] the former governor of, Mississippi) -> Mabus (3085ms) Who is the governor of Alaska? George 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (George, [is] the governor of, Michigan) -> George (3087ms) Who is the governor of Alaska? Engler 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Engler, is a former Republican governor of, Michigan) -> Engler (3083ms) Who is the governor of Alaska? Russell A. Alger 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Russell A. Alger, was a former Governor of, Michigan) -> Russell A. Alger (3090ms) Who is the governor of Alaska? 1848?Democrat 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (1848?Democrat, was longtime territorial Governor of, Michigan) -> 1848?Democrat (3080ms) Who is the governor of Alaska? The stand-in 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (The stand-in, is the governor of, Michigan) -> The stand-in (3080ms) Who is the governor of Alaska? ? George Romney 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (? George Romney, was a three-term governor of, Michigan) -> ? George Romney (3087ms) Who is the governor of Alaska? course Jennifer Granholm 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (course Jennifer Granholm, is the governor of, Michigan) -> course Jennifer Granholm (3085ms) Who is the governor of Alaska? Republican Rick Snyder 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Republican Rick Snyder, has been elected governor of, Michigan) -> Republican Rick Snyder (3087ms) Who is the governor of Alaska? fifteen years 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (fifteen years, ago is now the governor of, Mississippi) -> fifteen years (3090ms) Who is the governor of Alaska? Tate Reeves 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (Tate Reeves, is the Lieutenant Governor of, Mississippi) -> Tate Reeves (3087ms) Who is the governor of Alaska? William G. Milliken 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (William G. Milliken, was governor of, Michigan) -> William G. Milliken (3083ms) Who is the governor of Alaska? the character 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (the character, is the Governor of, Mississippi) -> the character (3083ms) Who is the governor of Alaska? Austin Blair 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Austin Blair, was governor of, Michigan) -> Austin Blair (3087ms) Who is the governor of Alaska? The principal executive officer 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (The principal executive officer, is the governor of, Mississippi) -> The principal executive officer (3089ms) Who is the governor of Alaska? Mitt?s father George 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Mitt?s father George, was Governor of, Michigan) -> Mitt?s father George (3088ms) Who is the governor of Alaska? Mitt Romney Mitt?s father 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Mitt Romney Mitt?s father, was the former Governor of, Michigan) -> Mitt Romney Mitt?s father (3088ms) Who is the governor of Alaska? the senior Romney 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (the senior Romney, was elected governor of, Michigan) -> the senior Romney (3090ms) Who is the governor of Alaska? Romney 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Romney, was once governor of, Michigan) -> Romney (3088ms) Who is the governor of Alaska? Jennifer Granholm 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Jennifer Granholm, was the two-term governor of, Michigan) -> Jennifer Granholm (3088ms) Who is the governor of Alaska? George W. Romney 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (George W. Romney, was elected governor of, Michigan) -> George W. Romney (3080ms) Who is the governor of Alaska? Quitman 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (Quitman, was elected governor of, Mississippi) -> Quitman (3088ms) Who is the governor of Alaska? Paul Johnson 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (Paul Johnson, was the Governor of, Mississippi) -> Paul Johnson (3085ms) Who is the governor of Alaska? Romney?s Mitt?s father 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Romney?s Mitt?s father, was the governor of, Michigan) -> Romney?s Mitt?s father (3085ms) Who is the governor of Alaska? Colonel Stone 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (Colonel Stone, was governor of, Mississippi) -> Colonel Stone (3085ms) Who is the governor of Alaska? The 1:1 Classroom ? 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (The 1:1 Classroom ?, was the first governor of, Michigan ?) -> The 1:1 Classroom ? (3083ms) Who is the governor of Alaska? the Navy 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (the Navy, [is] a former governor of, Mississippi) -> the Navy (3088ms) Who is the governor of Alaska? 1813 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (1813, was appointed Governor of, Michigan Territory) -> 1813 (3083ms) Who is the governor of Alaska? John Engler 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (John Engler, is the former Governor of, Michigan) -> John Engler (3089ms) Who is the governor of Alaska? CEO 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (CEO, later was thrice-elected Governor of, Michigan) -> CEO (3088ms) Who is the governor of Alaska? Murphy 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Murphy, was elected Governor of, Michigan) -> Murphy (3087ms) Who is the governor of Alaska? rel=shortlink ? 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (rel=shortlink ?, was the first governor of, Michigan ?) -> rel=shortlink ? (3088ms) Who is the governor of Alaska? ?My primary focus 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (?My primary focus, is being governor of, Michigan) -> ?My primary focus (3080ms) Who is the governor of Alaska? Michigan Rick Snyder 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Michigan Rick Snyder, was elected governor of, Michigan) -> Michigan Rick Snyder (3080ms) Who is the governor of Alaska? George Romney 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (George Romney, was governor of, Michigan) -> George Romney (3085ms) Who is the governor of Alaska? Mitt?s dad 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Mitt?s dad, was governor of, Michigan) -> Mitt?s dad (3085ms) Who is the governor of Alaska? whose father George 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (whose father George, was governor of, Michigan) -> whose father George (3087ms) Who is the governor of Alaska? Mr Romney 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Mr Romney, was a hugely popular three-term governor of, Michigan) -> Mr Romney (3087ms) Who is the governor of Alaska? Mr Romney?s father 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Mr Romney?s father, was governor of, Michigan) -> Mr Romney?s father (3085ms) Who is the governor of Alaska? Andrew Houston Longino 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (Andrew Houston Longino, was elected governor of, Mississippi) -> Andrew Houston Longino (3088ms) Who is the governor of Alaska? Romney?s father 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Romney?s father, is a former governor of, Michigan) -> Romney?s father (3089ms) Who is the governor of Alaska? Mitt Romney?s dad 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Mitt Romney?s dad, was governor of, Michigan) -> Mitt Romney?s dad (3087ms) Who is the governor of Alaska? Barbour 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (Barbour, is actually the Governor of, Mississippi) -> Barbour (3088ms) Who is the governor of Alaska? Rick Snyder 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Rick Snyder, was elected governor of, Michigan) -> Rick Snyder (3090ms) Who is the governor of Alaska? Haley Barbour 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (Haley Barbour, was governor of, Mississippi) -> Haley Barbour (3090ms) Who is the governor of Alaska? Hazen Pingree 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Hazen Pingree, was elected Governor of, Michigan) -> Hazen Pingree (3078ms) Who is the governor of Alaska? Romney?s father 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Romney?s father, was a popular three-term governor of, Michigan) -> Romney?s father (3087ms) Who is the governor of Alaska? Detroit 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Detroit, [is] governor of, Michigan) -> Detroit (3089ms) Who is the governor of Alaska? Gen . Charles Clark 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (Gen . Charles Clark, was elected Governor of, Mississippi) -> Gen . Charles Clark (3087ms) Who is the governor of Alaska? Hiram Runnels 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (Hiram Runnels, was Governor of, Mississippi and Andrew Jackson) -> Hiram Runnels (3090ms) Who is the governor of Alaska? whose father 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (whose father, was governor of, Michigan) -> whose father (3085ms) Who is the governor of Alaska? Lowry 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, mississippi) -> (Lowry, was governor of, Mississippi) -> Lowry (3083ms) Who is the governor of Alaska? Stevens T. Mason 0.111111111111 Who is the governor of Alaska? -> $x: ($x, be governor of, michigan) -> (Stevens T. Mason, was the first governor of, Michigan) -> Stevens T. Mason (3083ms) Who is the governor of Alaska? the first woman -0.0 Who is the governor of Alaska? -> $x: ($x, elect, governor of alaska) -> (the first woman, elected, governor of Alaska) -> the first woman (3090ms) What is Jerry's last name? Patty 0.111111111107 What is Jerry's last name? -> $x: (jerry 's, be name, $x) -> (Jerry?s, was named, Patty) -> Patty (911ms) What is Jerry's last name? the 2010 REALTOR? -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Payne, was named, the 2010 REALTOR?) -> the 2010 REALTOR? (1752ms) What is Jerry's last name? long -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (Eggs, have been given a bad name for too, long) -> long (1843ms) What is Jerry's last name? ?a mermaid?s purse? -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (?a shark?s egg ?, is another name for, ?a mermaid?s purse?) -> ?a mermaid?s purse? (1851ms) What is Jerry's last name? a National Peer Professional -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was named, a National Peer Professional) -> a National Peer Professional (1776ms) What is Jerry's last name? Certified Humane -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (Phil?s Fresh Eggs, has been named, Certified Humane) -> Certified Humane (1378ms) What is Jerry's last name? head coach -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Sloan, was named, head coach) -> head coach (1843ms) What is Jerry's last name? a plumber -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, is a nice name for, a plumber) -> a plumber (1851ms) What is Jerry's last name? Jerry Reid -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Reed, was named, Jerry Reid) -> Jerry Reid (1522ms) What is Jerry's last name? Volunteer -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (33 photos Jerry Ausley, was named, Volunteer) -> Volunteer (1843ms) What is Jerry's last name? a musical -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Zaks, was named outstanding director of, a musical) -> a musical (1849ms) What is Jerry's last name? regular patrons -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (Eggs Benedict, were named for, regular patrons) -> regular patrons (1821ms) What is Jerry's last name? Red Sox nation -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Remy, was named the first President of, Red Sox nation) -> Red Sox nation (1821ms) What is Jerry's last name? Oviraptor -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (the supposed Protoceratops eggs, was named, Oviraptor) -> Oviraptor (1427ms) What is Jerry's last name? Utah ?s Bench Leader -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Sloan, was named as, Utah ?s Bench Leader) -> Utah ?s Bench Leader (1843ms) What is Jerry's last name? a U. politician -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Lewis, is also the name of, a U. politician) -> a U. politician (1730ms) What is Jerry's last name? branch manager -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Ladd, was named, branch manager) -> branch manager (1752ms) What is Jerry's last name? the Bay Area sports Hall -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Coleman, are named to, the Bay Area sports Hall) -> the Bay Area sports Hall (1730ms) What is Jerry's last name? the first ever list -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was named in, the first ever list) -> the first ever list (1843ms) What is Jerry's last name? the exterminator -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was the name of, the exterminator) -> the exterminator (1427ms) What is Jerry's last name? Democrat -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was named, Democrat) -> Democrat (1776ms) What is Jerry's last name? BEST GUITARIST 2010 -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (our very own Jerry Battista, was named, BEST GUITARIST 2010) -> BEST GUITARIST 2010 (1522ms) What is Jerry's last name? Tinley Park -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Weber, was named vice president of, Tinley Park) -> Tinley Park (1853ms) What is Jerry's last name? senior vice president -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (9/15/11 Jerry Bosken, was named, senior vice president) -> senior vice president (1729ms) What is Jerry's last name? a junior high dean -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (?Jerry Donaldson, was also named, a junior high dean) -> a junior high dean (1846ms) What is Jerry's last name? hidden features -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (Easter eggs, are the playful name for, hidden features) -> hidden features (1843ms) What is Jerry's last name? President -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Deitchle, has been named, President) -> President (1378ms) What is Jerry's last name? a couple -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry and Sara Park, were named as, a couple) -> a couple (1729ms) What is Jerry's last name? the Zoo?s Executive Director -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (-Jerry Borin, is named, the Zoo?s Executive Director) -> the Zoo?s Executive Director (1849ms) What is Jerry's last name? Volunteer of the Year -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Ausley, was named, Volunteer of the Year) -> Volunteer of the Year (1846ms) What is Jerry's last name? The guy -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, is name [of], The guy) -> The guy (1821ms) What is Jerry's last name? PDN magazine -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (2011 Jerry, was named by, PDN magazine) -> PDN magazine (1851ms) What is Jerry's last name? 18 -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Franklin, was named one of, 18) -> 18 (1849ms) What is Jerry's last name? the ?Top Forty -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Vail and Jerry, were both named to, the ?Top Forty) -> the ?Top Forty (1843ms) What is Jerry's last name? a defendant -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Attorney General Jerry Brown, was named as, a defendant) -> a defendant (1821ms) What is Jerry's last name? the Spirit -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (MobilityWorks client Jerry Baylor, was named, the Spirit) -> the Spirit (1752ms) What is Jerry's last name? Jerry -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry McGuire, was the name of, Jerry) -> Jerry (1729ms) What is Jerry's last name? Catherine -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (This egg, was named for, Catherine) -> Catherine (1843ms) What is Jerry's last name? president -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry M. Hiegel, was named, president) -> president (1378ms) What is Jerry's last name? the Ernst & Young Emerging Entrepreneur -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was named, the Ernst & Young Emerging Entrepreneur) -> the Ernst & Young Emerging Entrepreneur (1843ms) What is Jerry's last name? Associate Office Director -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Phillips, has been named as, Associate Office Director) -> Associate Office Director (1843ms) What is Jerry's last name? a band -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (eggs, is a very interesting name for, a band) -> a band (1849ms) What is Jerry's last name? regular customers & customers -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (egg dishes, are named after, regular customers & customers) -> regular customers & customers (1851ms) What is Jerry's last name? Tangata Manu -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (an egg unbroken, was named, Tangata Manu) -> Tangata Manu (1843ms) What is Jerry's last name? the roles -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (a ham-and-eggs dinner, is used to name, the roles) -> the roles (1846ms) What is Jerry's last name? members -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (# 2 Eggs Benedict, was named for, members) -> members (1776ms) What is Jerry's last name? co-director -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Development Jerry Schultz, has been named, co-director) -> co-director (1846ms) What is Jerry's last name? the bind -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (Chicken and egg, is her name for, the bind) -> the bind (1851ms) What is Jerry's last name? the Town -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, has been named by, the Town) -> the Town (1776ms) What is Jerry's last name? NBA Executive -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (General Manager Jerry West, was named, NBA Executive) -> NBA Executive (1849ms) What is Jerry's last name? Store Operations -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was named Vice President of, Store Operations) -> Store Operations (1849ms) What is Jerry's last name? a national panel -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Rep. Jerry Lewis, was named to, a national panel) -> a national panel (1378ms) What is Jerry's last name? a cage -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (industrial egg production, is to put a fancy name on, a cage) -> a cage (1851ms) What is Jerry's last name? HairLoss.com ?s 2011 ?Person -0.0 What is Jerry's last name? -> $x: (seinfeld, be name, $x) -> (Seinfeld fame, has been named, HairLoss.com ?s 2011 ?Person) -> HairLoss.com ?s 2011 ?Person (1843ms) What is Jerry's last name? the All-Rookie Team -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Augustine, is named to, the All-Rookie Team) -> the All-Rookie Team (1378ms) What is Jerry's last name? honor -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (the 6th annual FBI Jerry Dove Memorial, was named in, honor) -> honor (1849ms) What is Jerry's last name? the list -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Hanson, is the only name on, the list) -> the list (1851ms) What is Jerry's last name? APCUG founder Jerry Schneider -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (The Jerry Awards, are named for, APCUG founder Jerry Schneider) -> APCUG founder Jerry Schneider (1821ms) What is Jerry's last name? Super Bowl MVP -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was named, Super Bowl MVP) -> Super Bowl MVP (1729ms) What is Jerry's last name? College Honorary Fellows -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Monkarsh, were named, College Honorary Fellows) -> College Honorary Fellows (1752ms) What is Jerry's last name? the Gophers -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Kill, was named, the Gophers) -> the Gophers (1843ms) What is Jerry's last name? egg -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (2010 Egg white, is popular named as, egg) -> egg (1851ms) What is Jerry's last name? a required resource -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (Eggs, are only named as, a required resource) -> a required resource (1378ms) What is Jerry's last name? the inaugural class -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was named to, the inaugural class) -> the inaugural class (1849ms) What is Jerry's last name? the stronghold -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Pournelle, is named after, the stronghold) -> the stronghold (1846ms) What is Jerry's last name? the 2007 Rookie -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (NC native Jerry Hollis, has been named, the 2007 Rookie) -> the 2007 Rookie (1853ms) What is Jerry's last name? a godfather -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, is named, a godfather) -> a godfather (1821ms) What is Jerry's last name? the new CEO -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Yang, was named, the new CEO) -> the new CEO (1846ms) What is Jerry's last name? an NSF EAPSI fellow -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (04/2006 Jerry Lii, is named, an NSF EAPSI fellow) -> an NSF EAPSI fellow (1729ms) What is Jerry's last name? Shatash -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (the egg, is named, Shatash) -> Shatash (1853ms) What is Jerry's last name? state rock -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (The Thunder-egg, was named, state rock) -> state rock (1849ms) What is Jerry's last name? the band -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> ('s egg sandwich, was named for, the band) -> the band (1752ms) What is Jerry's last name? the 2009 Executive -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Tan, was named, the 2009 Executive) -> the 2009 Executive (1851ms) What is Jerry's last name? the company -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Jones, is the name of, the company) -> the company (1851ms) What is Jerry's last name? third base coach -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Royster, has been named, third base coach) -> third base coach (1843ms) What is Jerry's last name? the interim director -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Liechty, has been named as, the interim director) -> the interim director (1427ms) What is Jerry's last name? the first album -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (the Egg, is the name of, the first album) -> the first album (1522ms) What is Jerry's last name? the payment gateway -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Lee, was the name of, the payment gateway) -> the payment gateway (1522ms) What is Jerry's last name? the Maria Callas Award winner -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Hadley, was named as, the Maria Callas Award winner) -> the Maria Callas Award winner (1821ms) What is Jerry's last name? Mets manager -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (the Milwaukee Brewers and Jerry Manuel, was named, Mets manager) -> Mets manager (1522ms) What is Jerry's last name? Outstanding TAs -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Sun, were named, Outstanding TAs) -> Outstanding TAs (1853ms) What is Jerry's last name? Information Technology executive -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was named, Information Technology executive) -> Information Technology executive (1851ms) What is Jerry's last name? Ernst & Young?s Entrepreneur -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was recently named, Ernst & Young?s Entrepreneur) -> Ernst & Young?s Entrepreneur (1752ms) What is Jerry's last name? a regular guest -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (Eggs Benedict, was allegedly named after, a regular guest) -> a regular guest (1752ms) What is Jerry's last name? the Egg group -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (Egg, is a trading name of, the Egg group) -> the Egg group (1849ms) What is Jerry's last name? BUTTERFLIES -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (Great Egg Fly, are all names of, BUTTERFLIES) -> BUTTERFLIES (1851ms) What is Jerry's last name? the Super Bowl MVP -0.0 What is Jerry's last name? -> $x: (jerry rice, be name, $x) -> (49ers wide receiver Jerry Rice, was named, the Super Bowl MVP) -> the Super Bowl MVP (1846ms) What is Jerry's last name? local benefactor Gerald Uht -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Uht park, was named for, local benefactor Gerald Uht) -> local benefactor Gerald Uht (1427ms) What is Jerry's last name? the MVP -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Noah, was named, the MVP) -> the MVP (1846ms) What is Jerry's last name? a few -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (caramelized egg yolk, are just to name, a few) -> a few (1776ms) What is Jerry's last name? the game -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (eggs, are the name of, the game) -> the game (1849ms) What is Jerry's last name? the Century Outstanding Citizen -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Fischer, was named, the Century Outstanding Citizen) -> the Century Outstanding Citizen (1851ms) What is Jerry's last name? Luetkemeyer -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Dowell, is named, Luetkemeyer) -> Luetkemeyer (1378ms) What is Jerry's last name? the academy -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Melillo, was named to, the academy) -> the academy (1846ms) What is Jerry's last name? the huge amounts -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (the Rotten Egg Nebula, is so-named for, the huge amounts) -> the huge amounts (1851ms) What is Jerry's last name? Instructor -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Overdrive Staff Jerry Gambrell, was named, Instructor) -> Instructor (1821ms) What is Jerry's last name? the new technique -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (his 1st egg, will be the name of, the new technique) -> the new technique (1843ms) What is Jerry's last name? a starting guard -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Kramer, was named, a starting guard) -> a starting guard (1846ms) What is Jerry's last name? Jasper and Jinx -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Tom and Jerry, were originally named, Jasper and Jinx) -> Jasper and Jinx (1522ms) What is Jerry's last name? the Jack S. Josey Professor -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Brand, has been named, the Jack S. Josey Professor) -> the Jack S. Josey Professor (1821ms) What is Jerry's last name? the new company -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Wilke, was named President of, the new company) -> the new company (1851ms) What is Jerry's last name? the 1965 Legislature -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (The Thunder-egg, was named state rock by, the 1965 Legislature) -> the 1965 Legislature (1776ms) What is Jerry's last name? Yorkshire Building Society -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (N&P and Egg, are trading names of, Yorkshire Building Society) -> Yorkshire Building Society (1427ms) What is Jerry's last name? ?Communicator -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was named, ?Communicator) -> ?Communicator (1846ms) What is Jerry's last name? assistant head coach -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (coach Jerry Gray, is has been named, assistant head coach) -> assistant head coach (1427ms) What is Jerry's last name? Musician -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Douglas, was named, Musician) -> Musician (1846ms) What is Jerry's last name? the 1960 -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (an All-Pro , Jerry, was named to, the 1960) -> the 1960 (1846ms) What is Jerry's last name? EB ! ? EB -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (This egg, is named after, EB ! ? EB) -> EB ! ? EB (1849ms) What is Jerry's last name? the conference?s -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was named, the conference?s) -> the conference?s (1821ms) What is Jerry's last name? Scarpa -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (05 Mar 2012 0 Jerry and Lois Horton, were named, Scarpa) -> Scarpa (1729ms) What is Jerry's last name? state librarian -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Krois, was named acting, state librarian) -> state librarian (1752ms) What is Jerry's last name? the luscious summer tomatoes -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (the classic egg dish, is named for, the luscious summer tomatoes) -> the luscious summer tomatoes (1843ms) What is Jerry's last name? the Songwriter -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry, was named, the Songwriter) -> the Songwriter (1522ms) What is Jerry's last name? American Football -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Rice, is the biggest name in, American Football) -> American Football (1849ms) What is Jerry's last name? the Blue Demons -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Chicago-area native Jerry Wainwright, was named, the Blue Demons) -> the Blue Demons (1776ms) What is Jerry's last name? Media Economic Research -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Duvall, was named Director of, Media Economic Research) -> Media Economic Research (1522ms) What is Jerry's last name? Robert Morrison -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Shurson, was named to replace, Robert Morrison) -> Robert Morrison (1846ms) What is Jerry's last name? sample -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (our egg, is named, sample) -> sample (1849ms) What is Jerry's last name? an entomologist -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (eggs, was named by, an entomologist) -> an entomologist (1428ms) What is Jerry's last name? Thought -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (That first egg, was named, Thought) -> Thought (1849ms) What is Jerry's last name? Record Executive -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Moss, was named, Record Executive) -> Record Executive (1849ms) What is Jerry's last name? the likely culprit -0.0 What is Jerry's last name? -> $x: (egg, be name, $x) -> (Raw egg, has been named, the likely culprit) -> the likely culprit (1851ms) What is Jerry's last name? MVP -0.0 What is Jerry's last name? -> $x: (jerry, be name, $x) -> (Jerry Rice, was named, MVP) -> MVP (1846ms) What is Jerry's last name? A similar bill -0.888888888886 What is Jerry's last name? -> $x: ($x, be last, jerry) -> (A similar bill, was vetoed last year by, Gov. Jerry Brown) -> A similar bill (1853ms) What is Jerry's last name? The testing procedure -0.888888888886 What is Jerry's last name? -> $x: ($x, be last, egg) -> (The testing procedure, was last completed with, eggs) -> The testing procedure (1853ms) What is Jerry's last name? Starsky -0.888888888886 What is Jerry's last name? -> $x: ($x, be last, egg) -> (Starsky, was just finishing the last of, his fried eggs) -> Starsky (1853ms) What is Jerry's last name? Reach -0.888888888886 What is Jerry's last name? -> $x: ($x, be last, egg) -> (Reach, was released last month on, Universal Egg) -> Reach (1853ms) What is Jerry's last name? the poor duckling -0.888888888886 What is Jerry's last name? -> $x: ($x, be last, egg) -> (the poor duckling, had been the last one out of, his egg) -> the poor duckling (1853ms) What is Jerry's last name? Bourbon -0.888888888886 What is Jerry's last name? -> $x: ($x, be last, egg) -> (Bourbon, is added last to avoid, curdling eggs) -> Bourbon (1853ms) What is Jerry's last name? the Senator -0.888888888886 What is Jerry's last name? -> $x: ($x, be last, jerry) -> (the Senator, was vetoed last year by, Governor Jerry Brown) -> the Senator (1853ms) What is Jerry's last name? ?This testing procedure -0.888888888886 What is Jerry's last name? -> $x: ($x, be last, egg) -> (?This testing procedure, was last completed with, eggs) -> ?This testing procedure (1853ms) What is Jerry's last name? The female -0.888888888886 What is Jerry's last name? -> $x: ($x, be last, egg) -> (The female, was last seen sitting on, the egg) -> The female (1853ms) What is Jerry's last name? 11:50 -0.888888888886 What is Jerry's last name? -> $x: ($x, be last, jerry) -> (11:50, am Last Tuesday at, the LUG/IP Hardware SIG Jerry) -> 11:50 (1853ms) What is Jerry's last name? The shots -0.888888888886 What is Jerry's last name? -> $x: ($x, be last, egg) -> (The shots, were made last week at, the Great Easter Egg Hunt) -> The shots (1853ms) What is Jerry's last name? Ford -0.888888888886 What is Jerry's last name? -> $x: ($x, be last, egg) -> (Ford, was hit last week with, eggs and tomatoes) -> Ford (1853ms) What is Jerry's last name? Jack -1.111111111107 What is Jerry's last name? -> $x: ($x, last, egg) -> (Jack, swallowed the last of, his egg-nog) -> Jack (1857ms) What is Jerry's last name? the poor Duckling -1.111111111107 What is Jerry's last name? -> $x: ($x, last, egg) -> (the poor Duckling, had crept last out of, the egg) -> the poor Duckling (1856ms) What is Jerry's last name? Cecil -1.111111111107 What is Jerry's last name? -> $x: ($x, last, egg) -> (Cecil, scooped the last of, his poached egg) -> Cecil (1856ms) What is Jerry's last name? The egg stage -1.111111111107 What is Jerry's last name? -> $x: ($x, last, egg) -> (The egg stage, lasts a few weeks in, most butterflies but eggs) -> The egg stage (1857ms) What is Jerry's last name? The Reds -1.111111111107 What is Jerry's last name? -> $x: ($x, last, jerry) -> (The Reds, won so much last year with, Jerry Hairston Jr.) -> The Reds (1856ms) What is Jerry's last name? 1 10+7 5 8 | 25 Sebastien -1.111111111107 What is Jerry's last name? -> $x: ($x, last, egg) -> (1 10+7 5 8 | 25 Sebastien, gives a last sad look into, the egg) -> 1 10+7 5 8 | 25 Sebastien (1855ms) What is Jerry's last name? Chris -1.111111111107 What is Jerry's last name? -> $x: ($x, last, egg) -> (Chris, swallowed the last of, his eggs) -> Chris (1855ms) What is Jerry's last name? sperm -1.111111111107 What is Jerry's last name? -> $x: ($x, last, egg) -> (sperm, lasts longer than, the egg) -> sperm (1856ms) What is Jerry's last name? Siobhan -1.111111111107 What is Jerry's last name? -> $x: ($x, last, jerry) -> (Siobhan, recounted her last meeting with, Jerry) -> Siobhan (1855ms) What is Jerry's last name? A law -1.111111111107 What is Jerry's last name? -> $x: ($x, last, jerry) -> (A law, signed last year by, Gov. Jerry Brown) -> A law (1857ms) What is Jerry's last name? The drop -1.111111111107 What is Jerry's last name? -> $x: ($x, last, egg) -> (The drop, lasts for, more then 3 eggs) -> The drop (1856ms) What is Jerry's last name? ice tea today -1.111111111107 What is Jerry's last name? -> $x: ($x, last, egg) -> (ice tea today, i have eat the last cake with, milk and eggs) -> ice tea today (1857ms) What is Jerry's last name? Egg Protein -1.111111111107 What is Jerry's last name? -> $x: ($x, last, egg) -> (Egg Protein, Provides Lasting, Energy Protein-rich eggs) -> Egg Protein (1857ms) What is Jerry's last name? I?ve -1.111111111107 What is Jerry's last name? -> $x: ($x, last, egg) -> (I?ve, got the last of, the Cadbury Cream Eggs) -> I?ve (1855ms) What is Jerry's last name? Tanto -1.111111111107 What is Jerry's last name? -> $x: ($x, last, egg) -> (Tanto, eat the last half of, the first egg) -> Tanto (1855ms) What is Jerry's last name? the amount of time -1.111111111107 What is Jerry's last name? -> $x: ($x, last, egg) -> (the amount of time, to last, your nest egg) -> the amount of time (1857ms) What is Jerry's last name? Atchison -1.111111111107 What is Jerry's last name? -> $x: ($x, last, jerry) -> (Atchison, spent last week with, Jerry) -> Atchison (1856ms) What is Jerry's last name? Viola -1.111111111107 What is Jerry's last name? -> $x: ($x, last, egg) -> (Viola, scrambled the last of, the eggs) -> Viola (1855ms) What is Jerry's last name? Gale -1.111111111107 What is Jerry's last name? -> $x: ($x, last, egg) -> (Gale, scraped the last of, the egg and meat) -> Gale (1855ms) What is Jerry's last name? the ants -1.111111111107 What is Jerry's last name? -> $x: ($x, last, egg) -> (the ants, carry the last of, their eggs) -> the ants (1857ms) What is Jerry's last name? The Grateful Dead -1.111111111107 What is Jerry's last name? -> $x: ($x, last, jerry) -> (The Grateful Dead, played their last concert with, Jerry Garcia) -> The Grateful Dead (1856ms) What is Jerry's last name? We?ll -1.111111111107 What is Jerry's last name? -> $x: ($x, last, egg) -> (We?ll, add the last of, the egg) -> We?ll (1855ms) What is Jerry's last name? Soul -1.111111111107 What is Jerry's last name? -> $x: ($x, last, egg) -> (Soul, swallowed the last of, the Eggs , full and happy) -> Soul (1855ms) What is Jerry's last name? HSUS -1.111111111107 What is Jerry's last name? -> $x: ($x, last, egg) -> (HSUS, conducted last year at, large egg factory farms) -> HSUS (1855ms) What is Jerry's last name? the earliest -1.111111111107 What is Jerry's last name? -> $x: ($x, last, jerry) -> (the earliest, follows a decision last week by, Gov. Jerry Brown) -> the earliest (1855ms) What is Jerry's last name? redevelopment agencies -1.111111111107 What is Jerry's last name? -> $x: ($x, last, jerry) -> (redevelopment agencies, came last year from, Gov. Jerry Brown) -> redevelopment agencies (1857ms) What is Jerry's last name? I?ll -1.111111111107 What is Jerry's last name? -> $x: ($x, last, egg) -> (I?ll, have the last of, my egg rolls) -> I?ll (1856ms) What is Jerry's last name? Executive Director -1.111111111108 What is Jerry's last name? -> $x: ($x, leader, jerry) -> (Executive Director, Leaders, Jerry DeWitt) -> Executive Director (1857ms) What is Jerry's last name? the females -1.111111111108 What is Jerry's last name? -> $x: ($x, leader, egg) -> (the females, lay in the terminal leaders, eggs) -> the females (1857ms) What is Jerry's last name? ?96 and ?99 -1.111111111108 What is Jerry's last name? -> $x: ($x, leader, jerry) -> (?96 and ?99, included such distinguished leaders as, Jerry Yang) -> ?96 and ?99 (1857ms) What is Jerry's last name? The United States -1.111111111108 What is Jerry's last name? -> $x: ($x, leader, egg) -> (The United States, is the world leader in, egg production) -> The United States (1857ms) What is Jerry's last name? Jerry DeWitt -1.111111111108 What is Jerry's last name? -> $x: ($x, leader, jerry) -> (Jerry DeWitt, Leader of, Jerry DeWitt) -> Jerry DeWitt (1857ms) What is Jerry's last name? Stock Eggtimus Prime -1.111111111108 What is Jerry's last name? -> $x: ($x, leader, egg) -> (Stock Eggtimus Prime, is the heroic leader of, the Auto-Eggs) -> Stock Eggtimus Prime (1857ms) What is Hong Kong's population? hongkongs population 1.333333333335 What is Hong Kong's population? -> $x: ($x, be population of, hong kong) -> (hongkongs population, was the population of, hong kong) -> hongkongs population (1544ms) What is Hong Kong's population? six million 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a population of approximately, six million) -> six million (2113ms) What is Hong Kong's population? 600,000 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, had a population of about, 600,000) -> 600,000 (2114ms) What is Hong Kong's population? 5,674,114 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, had a population of, 5,674,114) -> 5,674,114 (1945ms) What is Hong Kong's population? 324.200 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, had a large foreign population of about, 324.200) -> 324.200 (2114ms) What is Hong Kong's population? migrant workers 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a huge population of, migrant workers) -> migrant workers (1545ms) What is Hong Kong's population? 517 560 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, had a large foreign population of about, 517 560) -> 517 560 (2416ms) What is Hong Kong's population? 6.9 million 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a population of, 6.9 million) -> 6.9 million (2113ms) What is Hong Kong's population? 247,501 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a population density of, 247,501) -> 247,501 (2113ms) What is Hong Kong's population? 524 200 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, had a large foreign population of about, 524 200) -> 524 200 (2417ms) What is Hong Kong's population? bisexuals 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has the world 's largest population of, bisexuals) -> bisexuals (2113ms) What is Hong Kong's population? 6,600,000 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a population of, 6,600,000) -> 6,600,000 (1544ms) What is Hong Kong's population? 5.6 million 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a population of, 5.6 million) -> 5.6 million (1945ms) What is Hong Kong's population? Buddhists and Taoists 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a huge population of, Buddhists and Taoists) -> Buddhists and Taoists (2113ms) What is Hong Kong's population? more than 7.2 million 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has an population of, more than 7.2 million) -> more than 7.2 million (2417ms) What is Hong Kong's population? 6,708,389 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a population of, 6,708,389) -> 6,708,389 (2114ms) What is Hong Kong's population? 6.7 million 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a population of, 6.7 million) -> 6.7 million (2416ms) What is Hong Kong's population? 6,571 people 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a massive population density of, 6,571 people) -> 6,571 people (2113ms) What is Hong Kong's population? 6,855,125 people 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a population of, 6,855,125 people) -> 6,855,125 people (1545ms) What is Hong Kong's population? 4.2 million 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, had a population of, 4.2 million) -> 4.2 million (2113ms) What is Hong Kong's population? seven million 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a population of, seven million) -> seven million (1545ms) What is Hong Kong's population? 6,970,000 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a population of about, 6,970,000) -> 6,970,000 (1945ms) What is Hong Kong's population? 6 million people 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a population of, 6 million people) -> 6 million people (2114ms) What is Hong Kong's population? five 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, had a population of, five) -> five (1945ms) What is Hong Kong's population? 7 million people 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a total population of just over, 7 million people) -> 7 million people (2113ms) What is Hong Kong's population? 6.78 million 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a total population of, 6.78 million) -> 6.78 million (1945ms) What is Hong Kong's population? 4.3 million 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has an online population of, 4.3 million) -> 4.3 million (2113ms) What is Hong Kong's population? 7.3 million 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a population of, 7.3 million) -> 7.3 million (2416ms) What is Hong Kong's population? 6.80 million 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a total population of, 6.80 million) -> 6.80 million (2113ms) What is Hong Kong's population? 16,470 persons 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a population density of, 16,470 persons) -> 16,470 persons (1544ms) What is Hong Kong's population? 7 million 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (densely populated Hong Kong, has a population of, 7 million) -> 7 million (2417ms) What is Hong Kong's population? 6,900,000 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a population of, 6,900,000) -> 6,900,000 (2416ms) What is Hong Kong's population? 10 million 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a population of over, 10 million) -> 10 million (1945ms) What is Hong Kong's population? 6.9 million people 0.222222222222 What is Hong Kong's population? -> $x: (hong kong, have population of, $x) -> (Hong Kong, has a population of, 6.9 million people) -> 6.9 million people (1945ms) What is Hong Kong's population? The original movie -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (The original movie, was relatively popular in, Hong Kong) -> The original movie (2426ms) What is Hong Kong's population? Trusts -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Trusts, are another popular option in, Hong Kong) -> Trusts (2434ms) What is Hong Kong's population? future more food -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (future more food, could be imported into, Hong Kong) -> future more food (2440ms) What is Hong Kong's population? Radio -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Radio, is an incredibly popular medium in, Hong Kong) -> Radio (2453ms) What is Hong Kong's population? Watsons Water -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Watsons Water, is popular in, Hong Kong) -> Watsons Water (2450ms) What is Hong Kong's population? Facebook -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Facebook, is extremely popular in, Hong Kong) -> Facebook (2440ms) What is Hong Kong's population? fabric -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (fabric, imported from, Hong Kong) -> fabric (2450ms) What is Hong Kong's population? gay magazines -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (gay magazines, imported from, Hong Kong) -> gay magazines (2430ms) What is Hong Kong's population? alternative health care -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (alternative health care, is getting more popular in, Hong Kong) -> alternative health care (2434ms) What is Hong Kong's population? fins -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (fins, imported to, Hong Kong) -> fins (2453ms) What is Hong Kong's population? Xeloda -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (Xeloda, imported into, Hong Kong) -> Xeloda (2426ms) What is Hong Kong's population? the Korean noodle -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (the Korean noodle, is very popular in, Hong Kong) -> the Korean noodle (2450ms) What is Hong Kong's population? 2007 -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (2007, is very popular in, Hong Kong) -> 2007 (2447ms) What is Hong Kong's population? Latte art -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Latte art, is hugely popular in, Hong Kong) -> Latte art (2440ms) What is Hong Kong's population? a Cantonese noodle dish -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (a Cantonese noodle dish, is popular in, Hong Kong) -> a Cantonese noodle dish (2450ms) What is Hong Kong's population? Football -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Football, is a popular sport in, Hong Kong) -> Football (2434ms) What is Hong Kong's population? the formula -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (the formula, had been imported into, Hong Kong) -> the formula (2453ms) What is Hong Kong's population? Sanrio characters -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Sanrio characters, are very popular in, Hong Kong) -> Sanrio characters (2437ms) What is Hong Kong's population? km Go! Category -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (km Go! Category, imported in, Hong Kong) -> km Go! Category (2430ms) What is Hong Kong's population? the brands -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (the brands, are popular in, Hong Kong) -> the brands (2453ms) What is Hong Kong's population? Lantau -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, size, hong kong) -> (Lantau, is twice the size of, Hong Kong island) -> Lantau (2450ms) What is Hong Kong's population? Thailand -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Thailand, is popular in, Hong Kong) -> Thailand (2422ms) What is Hong Kong's population? Causeway Bay -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Causeway Bay, is a popular shopping areas in, Hong Kong) -> Causeway Bay (2430ms) What is Hong Kong's population? Mumbai -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, size be, hong kong) -> (Mumbai, is 4 times the size of, Hong Kong) -> Mumbai (2453ms) What is Hong Kong's population? One KOLOR -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (One KOLOR, is a popular rock band in, Hong Kong) -> One KOLOR (2453ms) What is Hong Kong's population? shark fins -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (shark fins, were imported into, Hong Kong) -> shark fins (2447ms) What is Hong Kong's population? 1.5mn people -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, size be, hong kong) -> (1.5mn people, is twice the size of, Hong Kong Island) -> 1.5mn people (2448ms) What is Hong Kong's population? music CD?s -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (music CD?s, have been imported from, Hong Kong) -> music CD?s (2434ms) What is Hong Kong's population? Foshan -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Foshan, is very popular in, Hong Kong) -> Foshan (2430ms) What is Hong Kong's population? every single container -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (every single container, imported into, Hong Kong) -> every single container (2447ms) What is Hong Kong's population? Vietnam?s gold -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (Vietnam?s gold, is imported from, Hong Kong) -> Vietnam?s gold (2422ms) What is Hong Kong's population? rows -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (rows, is a popular bread in, Hong Kong) -> rows (2448ms) What is Hong Kong's population? 22,965 boxes -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (22,965 boxes, had been imported into, Hong Kong) -> 22,965 boxes (2453ms) What is Hong Kong's population? Two replica trams -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (Two replica trams, imported from, Hong Kong) -> Two replica trams (2426ms) What is Hong Kong's population? food chelonians -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (food chelonians, was imported to, Hong Kong) -> food chelonians (2430ms) What is Hong Kong's population? Hiking and camping -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Hiking and camping, are popular outdoor activities in, Hong Kong) -> Hiking and camping (2422ms) What is Hong Kong's population? Snake Snake meat soup -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Snake Snake meat soup, is a popular dish in, Hong Kong) -> Snake Snake meat soup (2430ms) What is Hong Kong's population? sale -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, effect, hong kong) -> (sale, is effected in, Hong Kong) -> sale (2426ms) What is Hong Kong's population? the cook -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (the cook, imported from, Hong Kong) -> the cook (2450ms) What is Hong Kong's population? the major items -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (the major items, imported into, Hong Kong) -> the major items (2453ms) What is Hong Kong's population? Air-conditioning -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Air-conditioning, is very popular in, Hong Kong) -> Air-conditioning (2430ms) What is Hong Kong's population? Smaller amount -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (Smaller amount, were imported from, Hong Kong and Thailand) -> Smaller amount (2453ms) What is Hong Kong's population? Hiking -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Hiking, is a very popular sport in, Hong Kong) -> Hiking (2453ms) What is Hong Kong's population? The show -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (The show, was very popular in, Hong Kong) -> The show (2422ms) What is Hong Kong's population? Board lot -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, size, hong kong) -> (Board lot, sizes for, Hong Kong exchanges) -> Board lot (2437ms) What is Hong Kong's population? the West -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (the West, suddenly began importing, Hong Kong films) -> the West (2434ms) What is Hong Kong's population? fortune cookies -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (fortune cookies, were reportedly imported into, Hong Kong) -> fortune cookies (2430ms) What is Hong Kong's population? The project -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, size, hong kong) -> (The project, is twice the size of, Hong Kong Island) -> The project (2448ms) What is Hong Kong's population? Gas application -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Gas application, is very popular in, Hong Kong) -> Gas application (2450ms) What is Hong Kong's population? Ginseng -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (Ginseng, was imported into, Hong Kong ,most) -> Ginseng (2453ms) What is Hong Kong's population? the EU -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, effect, hong kong) -> (the EU, have an effect on, Hong Kong) -> the EU (2450ms) What is Hong Kong's population? The DTA -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, effect, hong kong) -> (The DTA, will have effect in, Hong Kong) -> The DTA (2426ms) What is Hong Kong's population? wantan use -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (wantan use, is very popular in, Hong Kong) -> wantan use (2437ms) What is Hong Kong's population? Kanban -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Kanban, is quite popular here in, Hong Kong) -> Kanban (2422ms) What is Hong Kong's population? The in-store bakery -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (The in-store bakery, is a popular service in, the Hong Kong) -> The in-store bakery (2430ms) What is Hong Kong's population? China -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (China, imported from, Hong Kong) -> China (2437ms) What is Hong Kong's population? The new proposals -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (The new proposals, are likely to be popular in, Hong Kong) -> The new proposals (2447ms) What is Hong Kong's population? one hundred tons -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (one hundred tons, were imported into, Hong Kong) -> one hundred tons (2434ms) What is Hong Kong's population? The goods -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (The goods, were imported from, Hong Kong) -> The goods (2450ms) What is Hong Kong's population? Desserts -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Desserts, are very popular in, Hong Kong) -> Desserts (2450ms) What is Hong Kong's population? the goods concerend -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (the goods concerend, will be imported into, Hong Kong) -> the goods concerend (2437ms) What is Hong Kong's population? cheesecake -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (cheesecake, is popular in, Hong Kong) -> cheesecake (2440ms) What is Hong Kong's population? Lantau Island -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, size be, hong kong) -> (Lantau Island, is a lamost twice the size of, Hong Kong island) -> Lantau Island (2450ms) What is Hong Kong's population? purchase -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, effect, hong kong) -> (purchase, is effected in, Hong Kong) -> purchase (2422ms) What is Hong Kong's population? the project -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, size, hong kong) -> (the project, is almost twice the size of, Hong Kong Island) -> the project (2437ms) What is Hong Kong's population? One Korean TV series -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (One Korean TV series, has been so popular in, Hong Kong) -> One Korean TV series (2453ms) What is Hong Kong's population? music CD -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (music CD, have been imported from, Hong Kong) -> music CD (2437ms) What is Hong Kong's population? Live music bands -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Live music bands, are also very popular in, Hong Kong) -> Live music bands (2437ms) What is Hong Kong's population? egg noodles -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (egg noodles, imported from, Hong Kong) -> egg noodles (2448ms) What is Hong Kong's population? a national award -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (a national award, is now popular in, Hong Kong) -> a national award (2426ms) What is Hong Kong's population? Foxy -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Foxy, is popular in, Hong Kong) -> Foxy (2426ms) What is Hong Kong's population? Service -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, effect, hong kong) -> (Service, can be effected in, Hong Kong) -> Service (2434ms) What is Hong Kong's population? snake meat -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (snake meat, is a popular delicacy in, Hong Kong) -> snake meat (2426ms) What is Hong Kong's population? The Peak -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (The Peak, is the most popular tourist attraction in, Hong Kong) -> The Peak (2437ms) What is Hong Kong's population? Chaozhou -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Chaozhou, were popular in, Hong Kong) -> Chaozhou (2437ms) What is Hong Kong's population? Mandarin -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Mandarin, is becoming more popular in, Hong Kong) -> Mandarin (2422ms) What is Hong Kong's population? Snake soup -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Snake soup, is quite popular here in, Hong Kong) -> Snake soup (2440ms) What is Hong Kong's population? apparel sourcing -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, effect, hong kong) -> (apparel sourcing, has had a knock-on effect on, Hong Kong) -> apparel sourcing (2448ms) What is Hong Kong's population? The noodles -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (The noodles, were imported from, Hong Kong) -> The noodles (2440ms) What is Hong Kong's population? The 2008 elections -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (The 2008 elections, are very popular in, Hong Kong) -> The 2008 elections (2444ms) What is Hong Kong's population? Chiu Chow cuisine -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Chiu Chow cuisine, is very popular in, Hong Kong) -> Chiu Chow cuisine (2440ms) What is Hong Kong's population? a city -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, size, hong kong) -> (a city, will be twice the size of, Hong Kong) -> a city (2440ms) What is Hong Kong's population? force -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, effect, hong kong) -> (force, will have effect in, Hong Kong) -> force (2426ms) What is Hong Kong's population? Dim Sum Dim Sum -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Dim Sum Dim Sum, is perhaps the most popular dish in, Hong Kong) -> Dim Sum Dim Sum (2457ms) What is Hong Kong's population? a fish -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (a fish, was imported from, Hong Kong) -> a fish (2430ms) What is Hong Kong's population? Waterfront -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, size, hong kong) -> (Waterfront, covers an area twice the size of, Hong Kong) -> Waterfront (2440ms) What is Hong Kong's population? Chrysanthemum flowers -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Chrysanthemum flowers, is very popular in, Hong Kong) -> Chrysanthemum flowers (2434ms) What is Hong Kong's population? Mr. Zhang -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Mr. Zhang, is particularly popular in, Hong Kong) -> Mr. Zhang (2448ms) What is Hong Kong's population? Baby doll clothes -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Baby doll clothes, are very popular now in, Hong Kong) -> Baby doll clothes (2440ms) What is Hong Kong's population? the nutritional supplements -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (the nutritional supplements, are very popular in, Hong Kong) -> the nutritional supplements (2450ms) What is Hong Kong's population? tea -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (tea, is a popular beverage in, Hong Kong) -> tea (2440ms) What is Hong Kong's population? A popular export San Miguel -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (A popular export San Miguel, is popular in, Hong Kong) -> A popular export San Miguel (2422ms) What is Hong Kong's population? Gambling -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Gambling, is a hugely popular activity in, Hong Kong) -> Gambling (2440ms) What is Hong Kong's population? the contracts of purchase and sale -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, effect, hong kong) -> (the contracts of purchase and sale, are effected in, Hong Kong) -> the contracts of purchase and sale (2437ms) What is Hong Kong's population? red bean ice cream -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (red bean ice cream, is especially popular in, Hong Kong) -> red bean ice cream (2447ms) What is Hong Kong's population? purchase and sale -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, effect, hong kong) -> (purchase and sale, are effected in, Hong Kong) -> purchase and sale (2447ms) What is Hong Kong's population? men?s tennis -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (men?s tennis, is a popular event in, Hong Kong) -> men?s tennis (2430ms) What is Hong Kong's population? alternative therapies -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (alternative therapies, are becoming more popular in, Hong Kong) -> alternative therapies (2430ms) What is Hong Kong's population? tips -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (tips, are the most popular Sports in, Hong Kong) -> tips (2437ms) What is Hong Kong's population? TDEC -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, effect, hong kong) -> (TDEC, would have positive effects on, Hong Kong) -> TDEC (2426ms) What is Hong Kong's population? The crackers -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (The crackers, were imported from, Hong Kong) -> The crackers (2434ms) What is Hong Kong's population? The product -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (The product, was imported from, Hong Kong) -> The product (2440ms) What is Hong Kong's population? the original furnishings -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (the original furnishings, were imported from, Hong Kong) -> the original furnishings (2453ms) What is Hong Kong's population? acrylics -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (acrylics, are also popular in, Hong Kong) -> acrylics (2440ms) What is Hong Kong's population? an offense -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (an offense, to import, copies of the Hong Kong-based magazine) -> an offense (2434ms) What is Hong Kong's population? Mahjong -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Mahjong, is extremely popular in, Hong Kong) -> Mahjong (2434ms) What is Hong Kong's population? Dragonball and Slam Dunk -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Dragonball and Slam Dunk, are especially popular in, Hong Kong) -> Dragonball and Slam Dunk (2434ms) What is Hong Kong's population? Tarm Sarm Choy Lee Fut -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Tarm Sarm Choy Lee Fut, is especially popular in, Hong Kong) -> Tarm Sarm Choy Lee Fut (2448ms) What is Hong Kong's population? experience -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (experience, are imported from, Hong Kong) -> experience (2448ms) What is Hong Kong's population? the seeds -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (the seeds, are imported from, Hong Kong) -> the seeds (2440ms) What is Hong Kong's population? Silicon Valley -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (Silicon Valley, was recently imported to, Hong Kong) -> Silicon Valley (2453ms) What is Hong Kong's population? one import licence -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (one import licence, may be imported into, Hong Kong) -> one import licence (2453ms) What is Hong Kong's population? live music -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (live music, IS popular in, Hong Kong) -> live music (2430ms) What is Hong Kong's population? The following goods -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (The following goods, may be imported into, Hong Kong) -> The following goods (2450ms) What is Hong Kong's population? Japanese culture -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (Japanese culture, is popular in, Hong Kong) -> Japanese culture (2447ms) What is Hong Kong's population? the wine -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (the wine, imported into, Hong Kong) -> the wine (2422ms) What is Hong Kong's population? a covered warrant -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (a covered warrant, are very popular in, Hong Kong) -> a covered warrant (2437ms) What is Hong Kong's population? radius -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, size, hong kong) -> (radius, is roughly the size of, Hong Kong Island) -> radius (2427ms) What is Hong Kong's population? Smaller amounts -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (Smaller amounts, were also imported from, Hong Kong) -> Smaller amounts (2453ms) What is Hong Kong's population? products -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (products, have previously been imported into, Hong Kong) -> products (2426ms) What is Hong Kong's population? an offence -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (an offence, import into, Hong Kong consumer goods) -> an offence (2448ms) What is Hong Kong's population? small North Korean submarines -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, import, hong kong) -> (small North Korean submarines, was imported through, Hong Kong) -> small North Korean submarines (2450ms) What is Hong Kong's population? hot pot -1.1111111111229999 What is Hong Kong's population? -> $x: ($x, be popular in, hong kong) -> (hot pot, is popular in, Hong Kong) -> hot pot (2450ms) What is Hong Kong's population? the fins -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, alone imported, the fins) -> the fins (2459ms) What is Hong Kong's population? 30,656.6 t -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (the Hong Kong SAR, imported, 30,656.6 t) -> 30,656.6 t (2457ms) What is Hong Kong's population? 10,414.7 t -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (the Hong Kong SAR, imported, 10,414.7 t) -> 10,414.7 t (2459ms) What is Hong Kong's population? clearance process -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong customs import declarations, import, clearance process) -> clearance process (2465ms) What is Hong Kong's population? U.S. beef -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, banned imports of, U.S. beef) -> U.S. beef (2459ms) What is Hong Kong's population? the U.S. -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, were imported to, the U.S.) -> the U.S. (2465ms) What is Hong Kong's population? Canada -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (the Hong Kong SAR, was increasing imports from, Canada) -> Canada (2464ms) What is Hong Kong's population? the one-child policy -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, effect, $x) -> (Hong Kong, examines the effects of, the one-child policy) -> the one-child policy (2462ms) What is Hong Kong's population? firearms -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, bans imports of, firearms) -> firearms (2462ms) What is Hong Kong's population? Learner -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, effect, $x) -> (the Hong Kong Native English Scheme, have an Effect on, Learner) -> Learner (2457ms) What is Hong Kong's population? 2.5m and China -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, imported, 2.5m and China) -> 2.5m and China (2464ms) What is Hong Kong's population? 1996 -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, banned beef imports in, 1996) -> 1996 (2459ms) What is Hong Kong's population? 10,502.1 t -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (the Hong Kong SAR, imported, 10,502.1 t) -> 10,502.1 t (2465ms) What is Hong Kong's population? March 1 -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, effect, $x) -> (Hong Kong, will take effect on, March 1) -> March 1 (2464ms) What is Hong Kong's population? 17,933,550 thousand cigarettes -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (the Hong Kong SAR, imported, 17,933,550 thousand cigarettes) -> 17,933,550 thousand cigarettes (2464ms) What is Hong Kong's population? 172,669.5 t -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (the Hong Kong SAR, imported, 172,669.5 t) -> 172,669.5 t (2463ms) What is Hong Kong's population? fever -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, effect, $x) -> (Hong Kong, did have a cooling effect on, fever) -> fever (2465ms) What is Hong Kong's population? 3,561.5 t -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (the Hong Kong SAR, imported, 3,561.5 t) -> 3,561.5 t (2465ms) What is Hong Kong's population? 1.2 million packs -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, imported over, 1.2 million packs) -> 1.2 million packs (2463ms) What is Hong Kong's population? poultry -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, have banned imports of, poultry) -> poultry (2463ms) What is Hong Kong's population? 1,907,519 thousand -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (the Hong Kong SAR, imported, 1,907,519 thousand) -> 1,907,519 thousand (2457ms) What is Hong Kong's population? safety net -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, size, $x) -> (Hong Kong, sized, safety net) -> safety net (2464ms) What is Hong Kong's population? weight loss -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, effect, $x) -> (louis vuitton hong kong, can achieve the effect of, weight loss) -> weight loss (2462ms) What is Hong Kong's population? Russia -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, be popular in, $x) -> (Hong Kong Ping-pong, is very popular in, Russia) -> Russia (2463ms) What is Hong Kong's population? 28,000 tonnes -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, imported about, 28,000 tonnes) -> 28,000 tonnes (2463ms) What is Hong Kong's population? a large portion -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (The Hong Kong SAR, will continue to import, a large portion) -> a large portion (2464ms) What is Hong Kong's population? acupuncture -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, effect, $x) -> (Hong Kong, was researching the effects of, acupuncture) -> acupuncture (2459ms) What is Hong Kong's population? poultry meat -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, stopped imports of, poultry meat) -> poultry meat (2460ms) What is Hong Kong's population? HK$ 163,000,000 worth -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, imported, HK$ 163,000,000 worth) -> HK$ 163,000,000 worth (2463ms) What is Hong Kong's population? 981,811.6 t -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (the Hong Kong SAR, imported, 981,811.6 t) -> 981,811.6 t (2461ms) What is Hong Kong's population? 198,433.7 t -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (the Hong Kong SAR, imported, 198,433.7 t) -> 198,433.7 t (2464ms) What is Hong Kong's population? Britain -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, banned beef imports from, Britain) -> Britain (2464ms) What is Hong Kong's population? Diocese -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, size, $x) -> (Anglican Diocese of Hong Kong Island, Size or Type, Diocese) -> Diocese (2457ms) What is Hong Kong's population? mainland China -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, can be imported into, mainland China) -> mainland China (2457ms) What is Hong Kong's population? equipment and technology -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, facilitates the import of, equipment and technology) -> equipment and technology (2459ms) What is Hong Kong's population? EGCG -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, effect, $x) -> (Hong Kong, examined the effect of, EGCG) -> EGCG (2457ms) What is Hong Kong's population? distribution -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong companies, can be imported for, distribution) -> distribution (2457ms) What is Hong Kong's population? April 1998 -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, effect, $x) -> (Hong Kong, also take retrospective effect to, April 1998) -> April 1998 (2457ms) What is Hong Kong's population? Australia -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, is importing from, Australia) -> Australia (2459ms) What is Hong Kong's population? 11,662 tons -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, imported, 11,662 tons) -> 11,662 tons (2464ms) What is Hong Kong's population? 3.8 % -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, imports, 3.8 %) -> 3.8 % (2465ms) What is Hong Kong's population? a family -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, size, $x) -> (The Hong Kong Disneyland, is just the right size for, a family) -> a family (2460ms) What is Hong Kong's population? water -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, imports a lot of, water) -> water (2464ms) What is Hong Kong's population? shark fin -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, should ban the import of, shark fin) -> shark fin (2459ms) What is Hong Kong's population? 90 % -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, imports, 90 %) -> 90 % (2464ms) What is Hong Kong's population? US$ 17 million worth -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, imported over, US$ 17 million worth) -> US$ 17 million worth (2459ms) What is Hong Kong's population? musical training -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, effect, $x) -> (Hong Kong, analyzed the effect of, musical training) -> musical training (2464ms) What is Hong Kong's population? progressive relaxation -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, effect, $x) -> (Hong Kong, compared the effects of, progressive relaxation) -> progressive relaxation (2457ms) What is Hong Kong's population? 90 percent -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, now imports up to, 90 percent) -> 90 percent (2457ms) What is Hong Kong's population? the smog -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, imports, the smog) -> the smog (2459ms) What is Hong Kong's population? pieces -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong/Korean, imported, pieces) -> pieces (2462ms) What is Hong Kong's population? 80 % -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, has to import, 80 %) -> 80 % (2463ms) What is Hong Kong's population? Asia -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, be popular in, $x) -> (Hong Kong films, has been popular in, Asia) -> Asia (2459ms) What is Hong Kong's population? US$ 333 million worth -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, imported, US$ 333 million worth) -> US$ 333 million worth (2459ms) What is Hong Kong's population? internet users -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, effect, $x) -> (Hong Kong, may still have an effect on, internet users) -> internet users (2464ms) What is Hong Kong's population? last year -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, blocked imports of turbot, last year) -> last year (2463ms) What is Hong Kong's population? heat and stress -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, effect, $x) -> (Hong Kong, monitored the effects of, heat and stress) -> heat and stress (2465ms) What is Hong Kong's population? 2,216.5 t -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (the Hong Kong SAR, imported, 2,216.5 t) -> 2,216.5 t (2464ms) What is Hong Kong's population? 687.8 t -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (the Hong Kong SAR, imported, 687.8 t) -> 687.8 t (2457ms) What is Hong Kong's population? 1.6 million 40-pound boxes -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, imported, 1.6 million 40-pound boxes) -> 1.6 million 40-pound boxes (2465ms) What is Hong Kong's population? 269.2 t -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (the Hong Kong SAR, imported, 269.2 t) -> 269.2 t (2463ms) What is Hong Kong's population? the Golden Triangle region -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, were imported into, the Golden Triangle region) -> the Golden Triangle region (2462ms) What is Hong Kong's population? turbot -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, blocked imports of, turbot) -> turbot (2462ms) What is Hong Kong's population? 95 % -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, import, $x) -> (Hong Kong, imports, 95 %) -> 95 % (2457ms) What is Hong Kong's population? Korea -2.444444444454 What is Hong Kong's population? -> $x: (hong kong, be popular in, $x) -> (addition Hong Kong movies, are popular in, Korea) -> Korea (2464ms) Who is the Greek God of the Sea? Pomona Poseidon Poseidon 1.333333333332 Who is the Greek God of the Sea? -> $x: ($x, be greek god of, sea) -> (Pomona Poseidon Poseidon, was the Greek god of, the sea) -> Pomona Poseidon Poseidon (2223ms) Who is the Greek God of the Sea? Okeanos 1.333333333332 Who is the Greek God of the Sea? -> $x: ($x, be greek god of, sea) -> (Okeanos, [is] a Greek god of, sea and water) -> Okeanos (2400ms) Who is the Greek God of the Sea? Neptune 1.333333333332 Who is the Greek God of the Sea? -> $x: ($x, be greek god of, sea) -> (Neptune, [is] the Greek god of, the sea) -> Neptune (2223ms) Who is the Greek God of the Sea? Poseidon 1.333333333332 Who is the Greek God of the Sea? -> $x: ($x, be greek god of, sea) -> (Poseidon, [is] the Greek god of, the sea and storms) -> Poseidon (2400ms) Who is the Greek God of the Sea? Proteus 1.333333333332 Who is the Greek God of the Sea? -> $x: ($x, be greek god of, sea) -> (Proteus, [is] a Greek god of, the sea) -> Proteus (2400ms) Who is the Greek God of the Sea? treatments?thalassa 1.22222222222 Who is the Greek God of the Sea? -> $x: ($x, be greek word for, sea) -> (treatments?thalassa, is the Greek word for, sea?that) -> treatments?thalassa (2400ms) Who is the Greek God of the Sea? Thalassa 1.22222222222 Who is the Greek God of the Sea? -> $x: ($x, be greek word for, sea) -> (Thalassa, is the ancient Greek word for, sea) -> Thalassa (2400ms) Who is the Greek God of the Sea? Llyr 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Llyr, is God of, the Sea) -> Llyr (3329ms) Who is the Greek God of the Sea? Pontus kingdom Poseidon Poseidon 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Pontus kingdom Poseidon Poseidon, was the god of, the Sea) -> Pontus kingdom Poseidon Poseidon (2554ms) Who is the Greek God of the Sea? Roman mythology Neptune 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Roman mythology Neptune, was the god of, the sea) -> Roman mythology Neptune (3499ms) Who is the Greek God of the Sea? a magician 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (a magician, is called god of, the sea) -> a magician (3329ms) Who is the Greek God of the Sea? worshiped Poseidon 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (worshiped Poseidon, [is] god of, the sea) -> worshiped Poseidon (2574ms) Who is the Greek God of the Sea? Poseidon Poseidon Poseidon 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Poseidon Poseidon Poseidon, was the god of, the sea) -> Poseidon Poseidon Poseidon (2626ms) Who is the Greek God of the Sea? The god Poseidon 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (The god Poseidon, [is] god of, the sea) -> The god Poseidon (3514ms) Who is the Greek God of the Sea? Tyr 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Tyr, is god of, the sea) -> Tyr (2626ms) Who is the Greek God of the Sea? Athena and Poseidon 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Athena and Poseidon, [is] the god of, the sea) -> Athena and Poseidon (3173ms) Who is the Greek God of the Sea? Njord 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Njord, [is] god of, the sea) -> Njord (3498ms) Who is the Greek God of the Sea? Poseidon Poseidon 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Poseidon Poseidon, was the god of, the sea) -> Poseidon Poseidon (3498ms) Who is the Greek God of the Sea? Varuna 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Varuna, [is] the god of, the sea) -> Varuna (3172ms) Who is the Greek God of the Sea? Greek and Roman mythology 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Greek and Roman mythology, is the god of, the sea) -> Greek and Roman mythology (2575ms) Who is the Greek God of the Sea? Manannan mac Lir 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Manannan mac Lir, [is] the god of, the sea) -> Manannan mac Lir (3498ms) Who is the Greek God of the Sea? the Greek god Poseidon 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (the Greek god Poseidon, [is] the god of, the sea) -> the Greek god Poseidon (3351ms) Who is the Greek God of the Sea? Olokun 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Olokun, [is] god of, the sea) -> Olokun (2574ms) Who is the Greek God of the Sea? ?Nereus 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (?Nereus, was a god of, the sea) -> ?Nereus (3173ms) Who is the Greek God of the Sea? Triton 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Triton, [is] the god of, the sea) -> Triton (3514ms) Who is the Greek God of the Sea? Dylan 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Dylan, was the God of, the Sea) -> Dylan (3514ms) Who is the Greek God of the Sea? Pisces 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Pisces, is the god of, sea) -> Pisces (3514ms) Who is the Greek God of the Sea? Hea 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Hea, was the god of, the sea) -> Hea (2554ms) Who is the Greek God of the Sea? Tangaroa 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Tangaroa, is the god of, the sea) -> Tangaroa (3351ms) Who is the Greek God of the Sea? Manannan 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Manannan, [is] god of, the sea) -> Manannan (3173ms) Who is the Greek God of the Sea? Kanaloa 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Kanaloa, was the god of, the sea) -> Kanaloa (3514ms) Who is the Greek God of the Sea? Nereus 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Nereus, is the God of, Sea) -> Nereus (3351ms) Who is the Greek God of the Sea? Aegir Aegir 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Aegir Aegir, is the god of, the sea) -> Aegir Aegir (3514ms) Who is the Greek God of the Sea? ? Tangaroa? 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (? Tangaroa?, is the God of, the sea) -> ? Tangaroa? (3248ms) Who is the Greek God of the Sea? Mananan 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Mananan, [is] the god of, the sea) -> Mananan (2440ms) Who is the Greek God of the Sea? Neptune Neptune 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Neptune Neptune, is the God of, the Seas) -> Neptune Neptune (2626ms) Who is the Greek God of the Sea? Glaucus 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Glaucus, [is] god of, the sea) -> Glaucus (2574ms) Who is the Greek God of the Sea? Agwe 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Agwe, [is] god of, the sea) -> Agwe (3172ms) Who is the Greek God of the Sea? Brahadair 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Brahadair, [is] god of, the sea) -> Brahadair (2574ms) Who is the Greek God of the Sea? Basque 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Basque, [is] god of, the sea) -> Basque (3498ms) Who is the Greek God of the Sea? Liranan 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Liranan, [is] the god of, the sea) -> Liranan (3498ms) Who is the Greek God of the Sea? King Neptune 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (King Neptune, [is] god of, the sea) -> King Neptune (3248ms) Who is the Greek God of the Sea? Yamm 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Yamm, [is] the god of, the sea) -> Yamm (3329ms) Who is the Greek God of the Sea? Ea or Hea 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Ea or Hea, was the god of, the sea) -> Ea or Hea (3514ms) Who is the Greek God of the Sea? Mannan mac Lyr 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Mannan mac Lyr, was a God of, the sea) -> Mannan mac Lyr (3329ms) Who is the Greek God of the Sea? Dewa Baruna 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Dewa Baruna, [is] god of, the seas) -> Dewa Baruna (3515ms) Who is the Greek God of the Sea? Njordur 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Njordur, is the god of, the sea) -> Njordur (3498ms) Who is the Greek God of the Sea? NEPTUNE Neptune 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (NEPTUNE Neptune, is the god of, the sea) -> NEPTUNE Neptune (2440ms) Who is the Greek God of the Sea? ?gir 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (?gir, [is] the god of, the sea) -> ?gir (3499ms) Who is the Greek God of the Sea? Aegir 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Aegir, [is] god of, the sea) -> Aegir (3173ms) Who is the Greek God of the Sea? the most feared Gods 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (the most feared Gods, was the God of, the sea) -> the most feared Gods (3498ms) Who is the Greek God of the Sea? Posiedon 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Posiedon, [is] god of, the sea) -> Posiedon (2625ms) Who is the Greek God of the Sea? the Greek Poseidon 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (the Greek Poseidon, [is] the god of, the sea) -> the Greek Poseidon (3514ms) Who is the Greek God of the Sea? the behemothic squid 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (the behemothic squid, is god of, the sea) -> the behemothic squid (3248ms) Who is the Greek God of the Sea? Greek mythology 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Greek mythology, [is] god of, the sea) -> Greek mythology (3514ms) Who is the Greek God of the Sea? Neptunus 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Neptunus, [is] god of, the sea) -> Neptunus (3514ms) Who is the Greek God of the Sea? Posideon 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Posideon, [is] god of, the sea) -> Posideon (2574ms) Who is the Greek God of the Sea? AEGIR Aegir 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (AEGIR Aegir, is the god of, the sea) -> AEGIR Aegir (3351ms) Who is the Greek God of the Sea? Varunan 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Varunan, is god of, sea land) -> Varunan (2626ms) Who is the Greek God of the Sea? Size Poseidon 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Size Poseidon, is the god of, the sea) -> Size Poseidon (2625ms) Who is the Greek God of the Sea? Lyr 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Lyr, was the god of, the sea) -> Lyr (3351ms) Who is the Greek God of the Sea? Vesta 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Vesta, was the god of, the sea) -> Vesta (3498ms) Who is the Greek God of the Sea? Zeus 1.0 Who is the Greek God of the Sea? -> $x: ($x, be god of, sea) -> (Zeus, is the god of, the sea) -> Zeus (3514ms) Who is the Greek God of the Sea? erythra thalassa 0.8888888888879999 Who is the Greek God of the Sea? -> $x: ($x, be greek for, sea) -> (erythra thalassa, is Greek for, ? Sea?) -> erythra thalassa (3520ms) Who is the Greek God of the Sea? Asphaltitis 0.8888888888879999 Who is the Greek God of the Sea? -> $x: ($x, be greek for, sea) -> (Asphaltitis, is the Greek name for, Dead Sea) -> Asphaltitis (3514ms) Who is the Greek God of the Sea? ?Thalassa? 0.8888888888879999 Who is the Greek God of the Sea? -> $x: ($x, be greek for, sea) -> (?Thalassa?, is Greek for, " sea) -> ?Thalassa? (3520ms) Who is the Greek God of the Sea? Alcyone 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Alcyone, is the goddess of, the sea) -> Alcyone (3546ms) Who is the Greek God of the Sea? Taiwanese 14 May 07 Matzu 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Taiwanese 14 May 07 Matzu, is the goddess of, the sea and she?s) -> Taiwanese 14 May 07 Matzu (3534ms) Who is the Greek God of the Sea? Brizo 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Brizo, is a goddess of, the sea) -> Brizo (3534ms) Who is the Greek God of the Sea? Tinker 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Tinker, effected, a sea change) -> Tinker (3545ms) Who is the Greek God of the Sea? global temperature 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (global temperature, have far-reaching effects on, sea level) -> global temperature (3534ms) Who is the Greek God of the Sea? personality 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (personality, is required to effect, sea changes) -> personality (3520ms) Who is the Greek God of the Sea? The bottom image 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (The bottom image, shows the effect on, sea level) -> The bottom image (3525ms) Who is the Greek God of the Sea? rel=shortlink Matzu 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (rel=shortlink Matzu, is the goddess of, the sea and she?s) -> rel=shortlink Matzu (3525ms) Who is the Greek God of the Sea? Nsambakalunga 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Nsambakalunga, is an African Goddess of, the seas) -> Nsambakalunga (3525ms) Who is the Greek God of the Sea? charged ions 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (charged ions, effects the physical properties of, sea water) -> charged ions (3525ms) Who is the Greek God of the Sea? land mass form 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (land mass form, will have more significant effects on, sea level) -> land mass form (3549ms) Who is the Greek God of the Sea? Yemaya 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Yemaya, is the Goddess of, the sea) -> Yemaya (3545ms) Who is the Greek God of the Sea? 2007 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (2007, addressed the effect on, sea level rise) -> 2007 (3549ms) Who is the Greek God of the Sea? The report 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (The report, said the effects of, sea level rise) -> The report (3545ms) Who is the Greek God of the Sea? prow 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (prow, has a similar effect on, seas) -> prow (3525ms) Who is the Greek God of the Sea? 90 minutes 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (90 minutes, Experience the rejuvenating effects of, the sea) -> 90 minutes (3542ms) Who is the Greek God of the Sea? order 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (order, replicate the effect of, the long sea voyages) -> order (3542ms) Who is the Greek God of the Sea? Baveras 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Baveras, is the Santharian Goddess of, the Sea) -> Baveras (3549ms) Who is the Greek God of the Sea? the deep oceans 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (the deep oceans, would have disastrous effects on, sea life) -> the deep oceans (3529ms) Who is the Greek God of the Sea? coastal fog 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (coastal fog, are all effects of, land and sea breezes) -> coastal fog (3542ms) Who is the Greek God of the Sea? Dr. J. Arndt 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Dr. J. Arndt, studied the effect of, Dead Sea salt baths) -> Dr. J. Arndt (3530ms) Who is the Greek God of the Sea? Matsu 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Matsu, is the Goddess of, the Sea) -> Matsu (3545ms) Who is the Greek God of the Sea? penguins 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (penguins, identify effects on, global sea levels) -> penguins (3549ms) Who is the Greek God of the Sea? sea ice 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (sea ice, has a zero effect on, sea level) -> sea ice (3520ms) Who is the Greek God of the Sea? HpOtxE or HpOtxL 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (HpOtxE or HpOtxL, caused similar morphological effects on, sea) -> HpOtxE or HpOtxL (3542ms) Who is the Greek God of the Sea? rainfall 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (rainfall, as were the moderating effects of, sea temperature) -> rainfall (3530ms) Who is the Greek God of the Sea? global warming 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (global warming, has a much more dramatic effect on, sea levels) -> global warming (3545ms) Who is the Greek God of the Sea? the form 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (the form, illustrated the effect of, post glacial sea level rise) -> the form (3549ms) Who is the Greek God of the Sea? the coast People 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (the coast People, control the effects of, the sea) -> the coast People (3549ms) Who is the Greek God of the Sea? the shelves 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (the shelves, may effect, the air/sea fluxes) -> the shelves (3525ms) Who is the Greek God of the Sea? The statute 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (The statute, effects, a sea-change) -> The statute (3538ms) Who is the Greek God of the Sea? Amphitrite 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Amphitrite, was a goddess of, the sea) -> Amphitrite (3545ms) Who is the Greek God of the Sea? Namakaokahai 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Namakaokahai, is the Goddess of, the Sea) -> Namakaokahai (3549ms) Who is the Greek God of the Sea? the crisis 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (the crisis, has had a deleterious effect on, sea turtles) -> the crisis (3538ms) Who is the Greek God of the Sea? climate 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (climate, change effects on, sea ice) -> climate (3538ms) Who is the Greek God of the Sea? Isabel?s impacts 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Isabel?s impacts, illustrate effects of, sea level rise) -> Isabel?s impacts (3538ms) Who is the Greek God of the Sea? ?the AO 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (?the AO, has a strong effect on, Arctic sea ice motion) -> ?the AO (3525ms) Who is the Greek God of the Sea? Xar?tenga 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Xar?tenga, was the goddess of, the sea) -> Xar?tenga (3520ms) Who is the Greek God of the Sea? such an increase 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (such an increase, would have profound effects on, sea levels) -> such an increase (3538ms) Who is the Greek God of the Sea? the 1998 El Ni?o 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (the 1998 El Ni?o, had a big effect on, the sea level trend) -> the 1998 El Ni?o (3538ms) Who is the Greek God of the Sea? Ocean pH 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Ocean pH, is already having an adverse effect on, sea life) -> Ocean pH (3530ms) Who is the Greek God of the Sea? The cyber age 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (The cyber age, has effected, a sea change) -> The cyber age (3525ms) Who is the Greek God of the Sea? Ayodhya 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Ayodhya, effected, a sea change) -> Ayodhya (3538ms) Who is the Greek God of the Sea? A hotter atmosphere 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (A hotter atmosphere, has several effects on, the sea) -> A hotter atmosphere (3530ms) Who is the Greek God of the Sea? Asherah 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Asherah, was goddess of, the sea) -> Asherah (3530ms) Who is the Greek God of the Sea? examination 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (examination, are the effects of, sea level) -> examination (3520ms) Who is the Greek God of the Sea? the ice 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (the ice, already effects, the sea level) -> the ice (3525ms) Who is the Greek God of the Sea? Icebreakers 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Icebreakers, have a negligible effect on, the sea ice) -> Icebreakers (3545ms) Who is the Greek God of the Sea? Sedna 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Sedna, is the Inuit Goddess of, the Sea) -> Sedna (3542ms) Who is the Greek God of the Sea? Thetis 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Thetis, was a Goddess of, the sea) -> Thetis (3538ms) Who is the Greek God of the Sea? ice ages 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (ice ages, had much less effect on, sea level) -> ice ages (3542ms) Who is the Greek God of the Sea? The decisions 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (The decisions, have effected, a sea change) -> The decisions (3534ms) Who is the Greek God of the Sea? Kiel 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Kiel, have now quantified the effect of, sea currents) -> Kiel (3520ms) Who is the Greek God of the Sea? even domestic transfers 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (even domestic transfers, are being popularly effected by, sea) -> even domestic transfers (3549ms) Who is the Greek God of the Sea? Mazu 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Mazu, is the Goddess of, the Sea) -> Mazu (3549ms) Who is the Greek God of the Sea? the province 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (the province, is effected by, the Black Sea Climate) -> the province (3525ms) Who is the Greek God of the Sea? CALEA 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (CALEA, effected, a sea-change) -> CALEA (3542ms) Who is the Greek God of the Sea? Halcyone 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Halcyone, is the Goddess of, the Sea) -> Halcyone (3549ms) Who is the Greek God of the Sea? Yemaja 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Yemaja, is the Goddess of, the Sea) -> Yemaja (3542ms) Who is the Greek God of the Sea? Iris 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Iris, was a goddess of, sea and sky--her father Thaumas) -> Iris (3545ms) Who is the Greek God of the Sea? The moon 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (The moon, has an effect on, the sea) -> The moon (3538ms) Who is the Greek God of the Sea? Ma-cho 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Ma-cho, is the goddess of, the sea) -> Ma-cho (3525ms) Who is the Greek God of the Sea? tidal variations 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (tidal variations, also have their effect on, sea level) -> tidal variations (3520ms) Who is the Greek God of the Sea? glaciers 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (glaciers, is having a much smaller effect on, sea levels) -> glaciers (3530ms) Who is the Greek God of the Sea? The Naval blockade 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (The Naval blockade, effected via, the Channel and North Sea) -> The Naval blockade (3549ms) Who is the Greek God of the Sea? the Romans 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (the Romans, recognised the therapeutic effects of, sea water) -> the Romans (3534ms) Who is the Greek God of the Sea? Vellamo 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Vellamo, is the goddess of, the sea) -> Vellamo (3549ms) Who is the Greek God of the Sea? Partanen et al 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Partanen et al, studied the effects of, artificial sea spray) -> Partanen et al (3545ms) Who is the Greek God of the Sea? wife 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (wife, is the goddess of, the sea) -> wife (3545ms) Who is the Greek God of the Sea? Storms Storms 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Storms Storms, can have a dramatic effect on, sea travel) -> Storms Storms (3530ms) Who is the Greek God of the Sea? J.R. Jongkind 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (J.R. Jongkind, depicted fleeting effects of, sea and sky) -> J.R. Jongkind (3529ms) Who is the Greek God of the Sea? volcanoes 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (volcanoes, have a bigger effect on, sea level) -> volcanoes (3530ms) Who is the Greek God of the Sea? considerable interest 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (considerable interest, is the effects of, sea breeze) -> considerable interest (3545ms) Who is the Greek God of the Sea? Hippocrates 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Hippocrates, discovered the healing effects of, sea water) -> Hippocrates (3525ms) Who is the Greek God of the Sea? red tides 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (red tides, can have harmful effects on, the surrounding sea life) -> red tides (3534ms) Who is the Greek God of the Sea? the early 1970s 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (the early 1970s, had its effect on, the Sea King world) -> the early 1970s (3542ms) Who is the Greek God of the Sea? Norfolk 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Norfolk, is seeing the effects of, sea level) -> Norfolk (3534ms) Who is the Greek God of the Sea? thalassotherapy 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (thalassotherapy, combines the effects of, sea water) -> thalassotherapy (3545ms) Who is the Greek God of the Sea? The tide 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (The tide, has a nonlinear effect on, mean sea level) -> The tide (3534ms) Who is the Greek God of the Sea? a long-term solution 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (a long-term solution, mitigate the effects of, sea-level rise) -> a long-term solution (3534ms) Who is the Greek God of the Sea? 14 May 07 Matzu 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (14 May 07 Matzu, is the goddess of, the sea and she?s) -> 14 May 07 Matzu (3529ms) Who is the Greek God of the Sea? Haven?t 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Haven?t, had the full effect of, sea salt) -> Haven?t (3542ms) Who is the Greek God of the Sea? low season 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (low season, can effect, the sea temperature) -> low season (3538ms) Who is the Greek God of the Sea? three strikes laws 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (three strikes laws, effected, a sea change) -> three strikes laws (3549ms) Who is the Greek God of the Sea? the spill 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (the spill, would have little effect on, sea life) -> the spill (3530ms) Who is the Greek God of the Sea? 2003 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (2003, examined the effects of, Dead Sea climatotherapy) -> 2003 (3525ms) Who is the Greek God of the Sea? coral reefs 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (coral reefs, could have a major effect on, sea life) -> coral reefs (3545ms) Who is the Greek God of the Sea? the possible reasons 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (the possible reasons, are the unfavourable effect of, sea water) -> the possible reasons (3534ms) Who is the Greek God of the Sea? Melanie 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Melanie, is goddess of, the sea and water) -> Melanie (3538ms) Who is the Greek God of the Sea? The Persian Goddess Atargatis 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (The Persian Goddess Atargatis, was a mermaid Goddess of, the Sea) -> The Persian Goddess Atargatis (3525ms) Who is the Greek God of the Sea? ocean currents 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (ocean currents, would have drastic effects on, sea life) -> ocean currents (3538ms) Who is the Greek God of the Sea? the whole fiasco 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (the whole fiasco, will effect, a sea change) -> the whole fiasco (3549ms) Who is the Greek God of the Sea? radiation 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (radiation, will have an effect on, the sea water) -> radiation (3525ms) Who is the Greek God of the Sea? example 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (example, is the effect of, reduced Arctic sea ice) -> example (3520ms) Who is the Greek God of the Sea? The city ?s poor 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (The city ?s poor, are unable to effect, a sea change) -> The city ?s poor (3520ms) Who is the Greek God of the Sea? natural climate variations 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (natural climate variations, have a major effect on, air-sea) -> natural climate variations (3542ms) Who is the Greek God of the Sea? AMPHITRITE 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (AMPHITRITE, was the goddess queen of, the sea) -> AMPHITRITE (3549ms) Who is the Greek God of the Sea? Others concerns 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Others concerns, included effects on, sea life) -> Others concerns (3545ms) Who is the Greek God of the Sea? Eastern Sedna 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Eastern Sedna, is the mythical Inuit Goddess of, the sea) -> Eastern Sedna (3530ms) Who is the Greek God of the Sea? Yemay? 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Yemay?, is the Goddess of, the Sea and Nature) -> Yemay? (3538ms) Who is the Greek God of the Sea? Finnish mythology Vellamo 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Finnish mythology Vellamo, is the goddess of, the sea) -> Finnish mythology Vellamo (3542ms) Who is the Greek God of the Sea? Freud 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (Freud, effected, a sea change) -> Freud (3545ms) Who is the Greek God of the Sea? CO2 greenhouse heating 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, effect, sea) -> (CO2 greenhouse heating, could have a large effect on, the seas) -> CO2 greenhouse heating (3534ms) Who is the Greek God of the Sea? Arnemetia 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Arnemetia, is a Celtic goddess of, the sea) -> Arnemetia (3549ms) Who is the Greek God of the Sea? Tiamat 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Tiamat, is a Babylonian Goddess of, the sea) -> Tiamat (3538ms) Who is the Greek God of the Sea? Iemanj ? 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Iemanj ?, is the vain goddess of, the sea) -> Iemanj ? (3534ms) Who is the Greek God of the Sea? Iemanj? 0.777777777778 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, sea) -> (Iemanj?, is the vain goddess of, the sea) -> Iemanj? (3534ms) Who is the Greek God of the Sea? Lindsay 0.555555555556 Who is the Greek God of the Sea? -> $x: ($x, be effect of, sea) -> (Lindsay, is determining the effects of, sea grass beds) -> Lindsay (3552ms) Who is the Greek God of the Sea? superlights 0.33333333333500004 Who is the Greek God of the Sea? -> $x: ($x, effect, turtle) -> (superlights, have adverse effects on, turtle populations) -> superlights (3553ms) Who is the Greek God of the Sea? the illumination 0.33333333333500004 Who is the Greek God of the Sea? -> $x: ($x, effect, turtle) -> (the illumination, adversely effects, turtle nests) -> the illumination (3556ms) Who is the Greek God of the Sea? Spotila 0.33333333333500004 Who is the Greek God of the Sea? -> $x: ($x, effect, turtle) -> (Spotila, reported this effect on, green turtles) -> Spotila (3555ms) Who is the Greek God of the Sea? trouble 0.33333333333500004 Who is the Greek God of the Sea? -> $x: ($x, effect, turtle) -> (trouble, seems to have the same effect on, turtle tails) -> trouble (3555ms) Who is the Greek God of the Sea? temperatures 0.33333333333500004 Who is the Greek God of the Sea? -> $x: ($x, effect, turtle) -> (temperatures, also have an effect on, the turtles) -> temperatures (3553ms) Who is the Greek God of the Sea? Naida 0.333333333331 Who is the Greek God of the Sea? -> $x: ($x, be greek word for, water) -> (Naida, is a Greek word for, a water nymph) -> Naida (3555ms) Who is the Greek God of the Sea? Hydra 0.333333333331 Who is the Greek God of the Sea? -> $x: ($x, be greek word for, water) -> (Hydra, is the Greek word for, water) -> Hydra (3555ms) Who is the Greek God of the Sea? GFL Golden Forum Land Inc. Nerou 0.333333333331 Who is the Greek God of the Sea? -> $x: ($x, be greek word for, water) -> (GFL Golden Forum Land Inc. Nerou, is a Greek word for, water) -> GFL Golden Forum Land Inc. Nerou (3555ms) Who is the Greek God of the Sea? Nerou 0.333333333331 Who is the Greek God of the Sea? -> $x: ($x, be greek word for, water) -> (Nerou, is a Greek word for, ?water?) -> Nerou (3555ms) Who is the Greek God of the Sea? Set 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Set, is a god of, the waters) -> Set (3558ms) Who is the Greek God of the Sea? Ahto 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Ahto, is the important God of, Seas and Waters) -> Ahto (3562ms) Who is the Greek God of the Sea? the Churner 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (the Churner, is the god of, the elemental Water) -> the Churner (3560ms) Who is the Greek God of the Sea? Uta 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Uta, is the god of, sweet waters) -> Uta (3556ms) Who is the Greek God of the Sea? Enki 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Enki, [is] the god of, the sweet waters) -> Enki (3563ms) Who is the Greek God of the Sea? The crocodile 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (The crocodile, was a God of, Water) -> The crocodile (3558ms) Who is the Greek God of the Sea? Nis'acon 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Nis'acon, is the god of, water and mana) -> Nis'acon (3560ms) Who is the Greek God of the Sea? Wisnu 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Wisnu, [is] god of, water) -> Wisnu (3563ms) Who is the Greek God of the Sea? Sothis and Hapy 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Sothis and Hapy, were gods of, flood waters Frogs) -> Sothis and Hapy (3558ms) Who is the Greek God of the Sea? Enki/Ea 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Enki/Ea, is the god of, the sweet waters) -> Enki/Ea (3560ms) Who is the Greek God of the Sea? Volturnus 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Volturnus, [is] god of, the waters) -> Volturnus (3563ms) Who is the Greek God of the Sea? Kakaraa 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Kakaraa, is the god of, water) -> Kakaraa (3565ms) Who is the Greek God of the Sea? Egyptian mythology Nu 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Egyptian mythology Nu, was the god of, waters) -> Egyptian mythology Nu (3562ms) Who is the Greek God of the Sea? Unktahee 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Unktahee, [is] the god of, water) -> Unktahee (3562ms) Who is the Greek God of the Sea? Suijin 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Suijin, [is] the god of, water) -> Suijin (3560ms) Who is the Greek God of the Sea? the god Nu 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (the god Nu, was the god of, waters) -> the god Nu (3563ms) Who is the Greek God of the Sea? Ea 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Ea, was the Sumerian god of, water and wisdom) -> Ea (3560ms) Who is the Greek God of the Sea? Nefertem 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Nefertem, was The god of, the blue water lily) -> Nefertem (3555ms) Who is the Greek God of the Sea? Narfas 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Narfas, [is] the god of, spring water) -> Narfas (3562ms) Who is the Greek God of the Sea? Sobek 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Sobek, was understandably a god of, the water) -> Sobek (3565ms) Who is the Greek God of the Sea? Varun 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Varun, [is] the god of, water) -> Varun (3563ms) Who is the Greek God of the Sea? NO 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (NO, was the god of, waters) -> NO (3560ms) Who is the Greek God of the Sea? Chac 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Chac, is the ancient Mayan god of, water) -> Chac (3560ms) Who is the Greek God of the Sea? Kamapuaa 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Kamapuaa, [is] god of, water) -> Kamapuaa (3562ms) Who is the Greek God of the Sea? Apsu 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Apsu, [is] the god of, the fresh waters) -> Apsu (3563ms) Who is the Greek God of the Sea? Nu 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Nu, was the god of, waters) -> Nu (3565ms) Who is the Greek God of the Sea? Shiva 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, snake) -> (Shiva, is the patron god of, snakes) -> Shiva (3558ms) Who is the Greek God of the Sea? 1762 and features Neptune 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (1762 and features Neptune, [is] the Roman god of, water and sea) -> 1762 and features Neptune (3562ms) Who is the Greek God of the Sea? a deity 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (a deity, was god of, waters) -> a deity (3555ms) Who is the Greek God of the Sea? Remus 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Remus, is the god of, water melons) -> Remus (3565ms) Who is the Greek God of the Sea? Pariacaca 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Pariacaca, was a god of, water) -> Pariacaca (3562ms) Who is the Greek God of the Sea? Inthiran 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Inthiran, is the god of, water land) -> Inthiran (3563ms) Who is the Greek God of the Sea? the dragon 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (the dragon, is the god of, the water world) -> the dragon (3556ms) Who is the Greek God of the Sea? black dragon 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (black dragon, was considered God of, Water) -> black dragon (3558ms) Who is the Greek God of the Sea? Draco 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Draco, is the God of, Water) -> Draco (3558ms) Who is the Greek God of the Sea? Odin 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Odin, is the god of, the waters) -> Odin (3555ms) Who is the Greek God of the Sea? Page 110 Ea 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Page 110 Ea, was god of, the waters) -> Page 110 Ea (3563ms) Who is the Greek God of the Sea? Coincidentally Neptune 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Coincidentally Neptune, is the god of, water) -> Coincidentally Neptune (3558ms) Who is the Greek God of the Sea? Tonenili 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Tonenili, [is] the god of, water) -> Tonenili (3563ms) Who is the Greek God of the Sea? Tlaloc 0.222222222222 Who is the Greek God of the Sea? -> $x: ($x, be god of, water) -> (Tlaloc, [is] god of, water) -> Tlaloc (3555ms) Who is the Greek God of the Sea? Sulis -0.0 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Sulis, was the local goddess of, water) -> Sulis (3566ms) Who is the Greek God of the Sea? Danu -0.0 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Danu, is the primordial goddess of, waters) -> Danu (3566ms) Who is the Greek God of the Sea? Mehet-Weret -0.0 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Mehet-Weret, was a goddess of, the waters) -> Mehet-Weret (3565ms) Who is the Greek God of the Sea? Blues -0.0 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Blues, is a goddess of, the water) -> Blues (3566ms) Who is the Greek God of the Sea? the negative side -0.0 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (the negative side, is the goddess of, water) -> the negative side (3566ms) Who is the Greek God of the Sea? Ardvi Sura -0.0 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Ardvi Sura, is the goddess of, the waters) -> Ardvi Sura (3565ms) Who is the Greek God of the Sea? Tanora Tanora -0.0 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Tanora Tanora, is the Goddess of, water) -> Tanora Tanora (3566ms) Who is the Greek God of the Sea? Nanshe -0.0 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Nanshe, was also the Goddess of, water and fertility) -> Nanshe (3566ms) Who is the Greek God of the Sea? Chalchiuhtlicue -0.0 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Chalchiuhtlicue, was the goddess of, water) -> Chalchiuhtlicue (3566ms) Who is the Greek God of the Sea? Ochun -0.0 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Ochun, is the goddess of, Sweet Waters) -> Ochun (3565ms) Who is the Greek God of the Sea? Eudora -0.0 Who is the Greek God of the Sea? -> $x: ($x, be greek goddess of, wave) -> (Eudora, was a minor Greek goddess of, the waves) -> Eudora (3566ms) Who is the Greek God of the Sea? Oc?ane -0.0 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Oc?ane, is the Goddess of, water) -> Oc?ane (3565ms) Who is the Greek God of the Sea? Tefnut -0.0 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Tefnut, is a goddess of, water and fertility) -> Tefnut (3565ms) Who is the Greek God of the Sea? Purva Ashadha?s deity -0.0 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Purva Ashadha?s deity, is the goddess of, waters) -> Purva Ashadha?s deity (3565ms) Who is the Greek God of the Sea? Weda Krizhtawn -0.0 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Weda Krizhtawn, is the chief goddess of, water) -> Weda Krizhtawn (3566ms) Who is the Greek God of the Sea? Mami Wata -0.0 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Mami Wata, are goddesses of, waters) -> Mami Wata (3566ms) Who is the Greek God of the Sea? Leviathan -0.0 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Leviathan, is the Goddess of, Water) -> Leviathan (3565ms) Who is the Greek God of the Sea? M?Lady -0.0 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (M?Lady, is a goddess of, water) -> M?Lady (3565ms) Who is the Greek God of the Sea? Flulia -0.0 Who is the Greek God of the Sea? -> $x: ($x, be goddess of, water) -> (Flulia, is the Goddess of, Water) -> Flulia (3565ms) Who developed the Macintosh computer? Apple 1.66666666666 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh computer) -> (Apple, developed, Macintosh computers) -> Apple (1304ms) Who developed the Macintosh computer? Company 1.66666666666 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh computer) -> (Company, develops software for, OPENSTEP and Macintosh computers) -> Company (1303ms) Who developed the Macintosh computer? the unit 1.66666666666 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh computer) -> (the unit, developed, the Macintosh computer) -> the unit (1303ms) Who developed the Macintosh computer? Animal stack 1.66666666666 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh computer) -> (Animal stack, was developed on, Macintosh computers) -> Animal stack (917ms) Who developed the Macintosh computer? a network protocol 1.66666666666 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh computer) -> (a network protocol, was developed for, Macintosh computers) -> a network protocol (917ms) Who developed the Macintosh computer? 1984 1.66666666666 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh computer) -> (1984, developed to run on, the Macintosh computer) -> 1984 (917ms) Who developed the Macintosh computer? The program 1.66666666666 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh computer) -> (The program, was developed for, the Macintosh computer) -> The program (917ms) Who developed the Macintosh computer? Later versions 1.66666666666 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh computer) -> (Later versions, were developed for, Macintosh computers) -> Later versions (1303ms) Who developed the Macintosh computer? Jobs 1.66666666666 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh computer) -> (Jobs, develop, the Macintosh computer) -> Jobs (917ms) Who developed the Macintosh computer? a new program Aldus 1.66666666666 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh computer) -> (a new program Aldus, developed for, Apple Macintosh computers) -> a new program Aldus (917ms) Who developed the Macintosh computer? PageMaker 1.66666666666 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh computer) -> (PageMaker, was developed for, Macintosh computers) -> PageMaker (1303ms) Who developed the Macintosh computer? image 1.66666666666 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh computer) -> (image, was developed on, Macintosh computer) -> image (917ms) Who developed the Macintosh computer? Stephen Jobs 1.44444444444 Who developed the Macintosh computer? -> $x: ($x, invent, macintosh computer) -> (Stephen Jobs, invented, the Macintosh computer) -> Stephen Jobs (1303ms) Who developed the Macintosh computer? Steve 1.44444444444 Who developed the Macintosh computer? -> $x: ($x, invent, macintosh computer) -> (Steve, invented, the Macintosh computer) -> Steve (1303ms) Who developed the Macintosh computer? Pages 0.444444444444 Who developed the Macintosh computer? -> $x: ($x, be host, macintosh) -> (Pages, were hosted on, a Macintosh? server) -> Pages (1369ms) Who developed the Macintosh computer? The site 0.444444444444 Who developed the Macintosh computer? -> $x: ($x, be host, macintosh) -> (The site, is hosted on, Macintosh servers) -> The site (1369ms) Who developed the Macintosh computer? The Apple //e and IIGS 0.444444444443 Who developed the Macintosh computer? -> $x: ($x, be network, macintosh) -> (The Apple //e and IIGS, can be networked to, a Macintosh) -> The Apple //e and IIGS (1369ms) Who developed the Macintosh computer? The Plus 0.444444444443 Who developed the Macintosh computer? -> $x: ($x, be network, macintosh) -> (The Plus, can be networked with, newer Macintoshes) -> The Plus (1386ms) Who developed the Macintosh computer? the format -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (the format, was originally developed for, the Macintosh platform) -> the format (1390ms) Who developed the Macintosh computer? Bookends -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Bookends, was developed specifically for, Apple Macintosh) -> Bookends (1390ms) Who developed the Macintosh computer? Professional People -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Professional People, developed, a new Macintosh application) -> Professional People (1390ms) Who developed the Macintosh computer? the first operating system GUI -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (the first operating system GUI, developed for, the Macintosh) -> the first operating system GUI (1386ms) Who developed the Macintosh computer? David Richardson -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (David Richardson, developed, another Macintosh-friendly format) -> David Richardson (1388ms) Who developed the Macintosh computer? the early Apple team -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (the early Apple team, developed for, the Macintosh) -> the early Apple team (1391ms) Who developed the Macintosh computer? the team -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (the team, developing, the Macintosh) -> the team (1388ms) Who developed the Macintosh computer? FileMaker -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (FileMaker, was originally developed for, the Apple Macintosh) -> FileMaker (1391ms) Who developed the Macintosh computer? Halo -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Halo, is being developed for, Macintosh and Windows) -> Halo (1386ms) Who developed the Macintosh computer? The apothecaries -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (The apothecaries, developed, Macintosh cosmetic makeup products) -> The apothecaries (1388ms) Who developed the Macintosh computer? the original team -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (the original team, developed, the Macintosh) -> the original team (1388ms) Who developed the Macintosh computer? Jobs and Apple -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Jobs and Apple, are developing, the Macintosh) -> Jobs and Apple (1390ms) Who developed the Macintosh computer? Mathematica -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Mathematica, was developed on, the Macintosh) -> Mathematica (1388ms) Who developed the Macintosh computer? File forks -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (File forks, were originally developed for, the Macintosh) -> File forks (1390ms) Who developed the Macintosh computer? Palm -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Palm, continues to develop, its Macintosh sync client) -> Palm (1386ms) Who developed the Macintosh computer? an e-book pioneer -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (an e-book pioneer, previously developed, the Macintosh mouse) -> an e-book pioneer (1388ms) Who developed the Macintosh computer? TOPS -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (TOPS, developed, the first IBM-Macintosh local-area network) -> TOPS (1391ms) Who developed the Macintosh computer? creative types -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (creative types, have developed software for, Macintosh) -> creative types (1390ms) Who developed the Macintosh computer? MOTU -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (MOTU, developed one of, the Macintosh) -> MOTU (1388ms) Who developed the Macintosh computer? Spin3 -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Spin3, is developed specifically for, the Macintosh Apples) -> Spin3 (1391ms) Who developed the Macintosh computer? developers -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (developers, have primarily developed for, Macintosh) -> developers (1386ms) Who developed the Macintosh computer? Studion -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Studion, has developed, a Macintosh Photoshop plugin claims) -> Studion (1388ms) Who developed the Macintosh computer? new applications -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (new applications, are being developed for, Macintosh) -> new applications (1386ms) Who developed the Macintosh computer? Lynch -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Lynch, developed early, Macintosh applications) -> Lynch (1386ms) Who developed the Macintosh computer? the company -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (the company, developed, the first Macintosh memory products) -> the company (1388ms) Who developed the Macintosh computer? vector graphics -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (vector graphics, was first developed for, the Apple Macintosh) -> vector graphics (1386ms) Who developed the Macintosh computer? a uuencoded file -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (a uuencoded file, was developed originally for, the Macintosh) -> a uuencoded file (1388ms) Who developed the Macintosh computer? The learning materials -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (The learning materials, are developed on, the Macintosh) -> The learning materials (1391ms) Who developed the Macintosh computer? Excel -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Excel, was originally developed for, the Macintosh) -> Excel (1386ms) Who developed the Macintosh computer? QuickTime -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (QuickTime, was initially developed just for, the Macintosh) -> QuickTime (1391ms) Who developed the Macintosh computer? 1986 -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (1986, developed, the first Macintosh design lab) -> 1986 (1388ms) Who developed the Macintosh computer? Microsoft -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Microsoft, is developed by, the Macintosh Business Unit) -> Microsoft (1390ms) Who developed the Macintosh computer? Silicon Valley -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Silicon Valley, developed early, Macintosh upgrades) -> Silicon Valley (1386ms) Who developed the Macintosh computer? Panergy -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Panergy, has been developing software for, the Macintosh) -> Panergy (1386ms) Who developed the Macintosh computer? Empire -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Empire, was developed from, Red Delicious and Macintosh) -> Empire (1391ms) Who developed the Macintosh computer? Forks -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Forks, were originally developed for, the Macintosh) -> Forks (1386ms) Who developed the Macintosh computer? the CD-ROM -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (the CD-ROM, were developed on, a Macintosh IIci) -> the CD-ROM (1390ms) Who developed the Macintosh computer? HyperGlot -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (HyperGlot, developed software mainly for, the Macintosh) -> HyperGlot (1388ms) Who developed the Macintosh computer? personal computer software--to -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (personal computer software--to, develop, Macintosh products) -> personal computer software--to (1390ms) Who developed the Macintosh computer? the handheld device -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (the handheld device, are developed on, the Macintosh) -> the handheld device (1390ms) Who developed the Macintosh computer? Mirra -0.11111111111600003 Who developed the Macintosh computer? -> $x: ($x, develop, macintosh) -> (Mirra, was developed for, Macintosh) -> Mirra (1391ms) Who developed the Macintosh computer? Apple employee Jef Raskin -0.444444444444 Who developed the Macintosh computer? -> $x: ($x, invent, macintosh) -> (Apple employee Jef Raskin, invented, the Macintosh) -> Apple employee Jef Raskin (1392ms) Who developed the Macintosh computer? Steve Jobs -0.444444444444 Who developed the Macintosh computer? -> $x: ($x, invent, macintosh) -> (Steve Jobs, invented, Macintosh) -> Steve Jobs (1392ms) Who developed the Macintosh computer? Jef Raskin -0.444444444444 Who developed the Macintosh computer? -> $x: ($x, invent, macintosh) -> (Jef Raskin, invented, the Macintosh) -> Jef Raskin (1392ms) Who developed the Macintosh computer? Jef -0.444444444444 Who developed the Macintosh computer? -> $x: ($x, invent, macintosh) -> (Jef, invented, the Macintosh) -> Jef (1392ms) Who invented television? 1939 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (television, was first invented in, 1939) -> 1939 (1129ms) Who invented television? the 1890s 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (television, was actually invented in, the 1890s) -> the 1890s (1129ms) Who invented television? 1855 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (television, has n?t been invented yet in, 1855) -> 1855 (1128ms) Who invented television? the United States 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (Breakfast television, was invented in, the United States) -> the United States (1217ms) Who invented television? the United States versus Russia 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (the television, was invented in, the United States versus Russia) -> the United States versus Russia (1217ms) Who invented television? the early decades 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (the first television set, was invented in, the early decades) -> the early decades (1072ms) Who invented television? France 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (Television, was invented in, France) -> France (1128ms) Who invented television? the 1930 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (The television, had been invented in, the 1930) -> the 1930 (1129ms) Who invented television? America 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (television, was invented in, America) -> America (1260ms) Who invented television? around 1935 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (television, was invented in, around 1935) -> around 1935 (1072ms) Who invented television? the act 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (the united states television, was invented in, the act) -> the act (1217ms) Who invented television? 1926 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (Television, was invented in, 1926) -> 1926 (1260ms) Who invented television? the early 19th century 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (TELEVISION Television, was invented in, the early 19th century) -> the early 19th century (1072ms) Who invented television? the late 1950s 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (not only color television, was invented in, the late 1950s) -> the late 1950s (1217ms) Who invented television? the 1930s 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (the television, was invented in, the 1930s) -> the 1930s (1129ms) Who invented television? the 1920s 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (televisions, were invented in, the 1920s) -> the 1920s (1218ms) Who invented television? the 1950s 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (The color television, was invented in, the 1950s) -> the 1950s (1218ms) Who invented television? Scotland 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (' Telephone and television, were invented in, Scotland) -> Scotland (1260ms) Who invented television? the 1950?s 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (The color television, was invented in, the 1950?s) -> the 1950?s (1072ms) Who invented television? the 1960s 1.222222222217 Who invented television? -> $x: (television, be invent in, $x) -> (The plasma flat screen television, was invented in, the 1960s) -> the 1960s (1218ms) Who invented television? the U.S. 0.999999999998 Who invented television? -> $x: (lcd, be invent in, $x) -> (LCDs, were nominally invented in, the U.S.) -> the U.S. (1260ms) Who invented television? case 0.999999999998 Who invented television? -> $x: (satellite, be invent in, $x) -> (Satellite phones, are invented in, case) -> case (1260ms) Who invented television? the 1940 0.888888888887 Who invented television? -> $x: (color tv, be invent in, $x) -> (color TV, was invented in, the 1940) -> the 1940 (1261ms) Who invented television? an online tutorial 0.888888888884 Who invented television? -> $x: ($x, found, watch television) -> (an online tutorial, found at, www.TelevisionWatch) -> an online tutorial (1331ms) Who invented television? the Security guard 0.888888888884 Who invented television? -> $x: ($x, found, watch television) -> (the Security guard, can generally be found, watching television) -> the Security guard (1331ms) Who invented television? 1:30 0.888888888884 Who invented television? -> $x: ($x, found, watch television) -> (1:30, found, Barbara watching television) -> 1:30 (1331ms) Who invented television? Mr. Bartlett 0.888888888884 Who invented television? -> $x: ($x, found, watch television) -> (Mr. Bartlett, found, her watching television) -> Mr. Bartlett (1261ms) Who invented television? Rembrandt 0.888888888884 Who invented television? -> $x: ($x, found, watch television) -> (Rembrandt, found Wade, watching a television) -> Rembrandt (1331ms) Who invented television? PC 0.888888888884 Who invented television? -> $x: ($x, found, watch television) -> (PC, find Ways to, Watch Free Live Streaming Television series) -> PC (1331ms) Who invented television? Thin Heel Taro 0.888888888884 Who invented television? -> $x: ($x, found, watch television) -> (Thin Heel Taro, found, Avilynn watching television) -> Thin Heel Taro (1331ms) Who invented television? five children 0.666666666663 Who invented television? -> $x: ($x, be in, watch television) -> (five children, were in, the next room watching television) -> five children (3216ms) Who invented television? pop culture 0.666666666663 Who invented television? -> $x: ($x, be in, watch television) -> (pop culture, are documented in, my Watching television category) -> pop culture (3217ms) Who invented television? Jones 0.666666666663 Who invented television? -> $x: ($x, be in, watch television) -> (Jones, is engaged in, watching a baseball game on television) -> Jones (3217ms) Who invented television? Dad 0.666666666663 Who invented television? -> $x: ($x, be in, watch television) -> (Dad, is in, the house watching television) -> Dad (2050ms) Who invented television? The iPad 0.666666666663 Who invented television? -> $x: ($x, introduce, watch television) -> (The iPad, has introduced, a new way of watching television) -> The iPad (2049ms) Who invented television? A TV camera 0.666666666663 Who invented television? -> $x: ($x, be in, watch television) -> (A TV camera, is sitting in, an easy chair watching television) -> A TV camera (2050ms) Who invented television? The girls 0.666666666663 Who invented television? -> $x: ($x, be in, watch television) -> (The girls, are in, my bedroom watching television) -> The girls (2049ms) Who invented television? the neighbor 0.666666666663 Who invented television? -> $x: ($x, be in, watch television) -> (the neighbor, was lying in, the floor watching television) -> the neighbor (2050ms) Who invented television? the two 0.666666666663 Who invented television? -> $x: ($x, be in, watch television) -> (the two, were in, the same room watching television) -> the two (2050ms) Who invented television? the philosopher 0.666666666663 Who invented television? -> $x: ($x, be in, watch television) -> (the philosopher, was in, Cairo watching television images) -> the philosopher (1836ms) Who invented television? snacks 0.666666666663 Who invented television? -> $x: ($x, be in, watch television) -> (snacks, can be settled in, the evening watching television) -> snacks (2050ms) Who invented television? George 0.66666666666 Who invented television? -> $x: ($x, discover, watch television) -> (George, had discovered, more watching television) -> George (3217ms) Who invented television? engineers 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (engineers, develop, the television) -> engineers (5249ms) Who invented television? Chopra Media 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Chopra Media, develops, television programming) -> Chopra Media (5234ms) Who invented television? five-year Ready To Learn grant 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (five-year Ready To Learn grant, develop, new television) -> five-year Ready To Learn grant (3347ms) Who invented television? the ad campaign 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (the ad campaign, developed, the Can TELEVISION commercial) -> the ad campaign (5249ms) Who invented television? Princess 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Princess, has developed an affinity for, television) -> Princess (5242ms) Who invented television? Smallville 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Smallville, was developed for, television) -> Smallville (3679ms) Who invented television? Ms. Covell 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Ms. Covell, developed, both television movies) -> Ms. Covell (5249ms) Who invented television? Joe Davola 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Joe Davola, was developed for, television) -> Joe Davola (4304ms) Who invented television? Only last week 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Only last week, develop, penicillin , television) -> Only last week (5242ms) Who invented television? Stephano 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Stephano, develop, the seminal television series) -> Stephano (5226ms) Who invented television? a subsidiary 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (a subsidiary, develops, Digital Television systems) -> a subsidiary (3679ms) Who invented television? broadcasters 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (broadcasters, develop, a new television service) -> broadcasters (5226ms) Who invented television? Nit Boy 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Nit Boy, is currently being developed for, television) -> Nit Boy (5242ms) Who invented television? an American teen drama 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (an American teen drama, developed for, television) -> an American teen drama (5242ms) Who invented television? Sharp 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Sharp, has developed, television) -> Sharp (5226ms) Who invented television? Master Lock 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Master Lock, developed, a television commercial) -> Master Lock (4304ms) Who invented television? The concept 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (The concept, was developed for, television) -> The concept (5249ms) Who invented television? RIZZOLI & ISLES 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (RIZZOLI & ISLES, was developed for, television) -> RIZZOLI & ISLES (3217ms) Who invented television? The series 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (The series, was developed for, television) -> The series (5234ms) Who invented television? COMAP 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (COMAP, developed, two PBS television series) -> COMAP (5234ms) Who invented television? Reiner 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Reiner, developed, a television pilot) -> Reiner (4304ms) Who invented television? copyright Hasbro 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (copyright Hasbro, was developed for, television) -> copyright Hasbro (5234ms) Who invented television? SMALLVILE 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (SMALLVILE, was developed for, television) -> SMALLVILE (5234ms) Who invented television? time 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (time, develop, her own television shows) -> time (5234ms) Who invented television? Paul Weiss clients 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Paul Weiss clients, developed, television) -> Paul Weiss clients (5249ms) Who invented television? Nitboy 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Nitboy, is currently being developed for, television) -> Nitboy (3679ms) Who invented television? Magic 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Magic, was developed for, television) -> Magic (3679ms) Who invented television? Relativity Media 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Relativity Media, develop a series for, television) -> Relativity Media (4303ms) Who invented television? Laurenn McCubbin 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Laurenn McCubbin, is currently being developed for, television) -> Laurenn McCubbin (5249ms) Who invented television? The production company 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (The production company, develops, television shows) -> The production company (5242ms) Who invented television? Macintosh 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Macintosh, developed a whole new breed of, televisions) -> Macintosh (5234ms) Who invented television? SMALLVILLE 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (SMALLVILLE, was developed for, television) -> SMALLVILLE (5242ms) Who invented television? Re-Animator 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Re-Animator, is being developed for, television) -> Re-Animator (5249ms) Who invented television? the production 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (the production, developed, television) -> the production (5234ms) Who invented television? The show 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (The show, was developed for, television) -> The show (5249ms) Who invented television? Rosing 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Rosing, develops theory of, television) -> Rosing (3679ms) Who invented television? Justice Interrupted 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Justice Interrupted, is being developed for, television) -> Justice Interrupted (5226ms) Who invented television? Danny Thomas 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Danny Thomas, developed, breakthrough television production) -> Danny Thomas (5249ms) Who invented television? The project 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (The project, is developed for, television) -> The project (5242ms) Who invented television? The material 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (The material, is being developed for, television) -> The material (3347ms) Who invented television? Pita 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Pita, developed, three television spots) -> Pita (3347ms) Who invented television? Iron Man 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Iron Man, is being developed for, television) -> Iron Man (5249ms) Who invented television? A miltary robot 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (A miltary robot, develops, a television set) -> A miltary robot (5226ms) Who invented television? vsa 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (vsa, developed, a new television campaign) -> vsa (5234ms) Who invented television? Lizz 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Lizz, is developing shows for, television) -> Lizz (4304ms) Who invented television? A system 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (A system, developed for, television) -> A system (5227ms) Who invented television? Brian Michael Bendis 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Brian Michael Bendis, has long been developing for, television) -> Brian Michael Bendis (4304ms) Who invented television? direct mail pieces 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (direct mail pieces, develop, radio or television spots) -> direct mail pieces (5226ms) Who invented television? director Vic Cook 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (director Vic Cook, developed the series for, television) -> director Vic Cook (5242ms) Who invented television? Baird 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Baird, developed, a color television) -> Baird (3347ms) Who invented television? Miller 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Miller, developed, the television hit) -> Miller (5234ms) Who invented television? 1975-1976 Ellery Queen series 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (1975-1976 Ellery Queen series, was developed for, television) -> 1975-1976 Ellery Queen series (5234ms) Who invented television? such a theory man 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (such a theory man, develop, television) -> such a theory man (5242ms) Who invented television? an art and design studio 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (an art and design studio, develops, television and film projects) -> an art and design studio (5249ms) Who invented television? the way engineers 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (the way engineers, develop, television) -> the way engineers (3679ms) Who invented television? Radios 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Radios, developed into, televisions) -> Radios (5249ms) Who invented television? Scottish inventor 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Scottish inventor, developed, television) -> Scottish inventor (4304ms) Who invented television? the late Star Trek creator 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (the late Star Trek creator, developed for, television) -> the late Star Trek creator (5227ms) Who invented television? Deadman 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Deadman, is being developed for, television) -> Deadman (5242ms) Who invented television? Kida 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Kida, developed a great love of, television) -> Kida (4304ms) Who invented television? can?t 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (can?t, be developed on, television) -> can?t (3347ms) Who invented television? Farnsworth 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Farnsworth, developed, a television system) -> Farnsworth (4303ms) Who invented television? The organization 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (The organization, develops, digital television standards) -> The organization (5226ms) Who invented television? HBO 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (HBO, develops, a television series) -> HBO (3679ms) Who invented television? David 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (David, developed, enhanced television programs) -> David (4304ms) Who invented television? The studio 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (The studio, develops, television) -> The studio (5226ms) Who invented television? executive 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (executive, developed this show for, television) -> executive (5249ms) Who invented television? more than 300,000 users 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (more than 300,000 users, is being developed for, television) -> more than 300,000 users (5242ms) Who invented television? the same name 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (the same name, was developed for, television) -> the same name (5226ms) Who invented television? a single season 1927? Philo Farnsworth 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (a single season 1927? Philo Farnsworth, develops, television) -> a single season 1927? Philo Farnsworth (5242ms) Who invented television? Zuiker 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Zuiker, develop, a blockbuster television series) -> Zuiker (5242ms) Who invented television? the series 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (the series, developed for, television) -> the series (3347ms) Who invented television? a discipline 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (a discipline, has really developed with, television) -> a discipline (5242ms) Who invented television? the person 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (the person, developed the show for, television) -> the person (5234ms) Who invented television? Punchcut 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Punchcut, developed, an innovative television) -> Punchcut (5234ms) Who invented television? Reiser 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Reiser, developed, film , television) -> Reiser (5226ms) Who invented television? Night & Weekends 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Night & Weekends, develops, advertising , books , television) -> Night & Weekends (5234ms) Who invented television? Neil Postman 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Neil Postman, cannot be developed on, television) -> Neil Postman (4304ms) Who invented television? relationships 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (relationships, develop on, television) -> relationships (3347ms) Who invented television? scripts Weichert 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (scripts Weichert, developed for, television) -> scripts Weichert (3679ms) Who invented television? Independent films 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Independent films, develop, television) -> Independent films (5242ms) Who invented television? The Walking Dead 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (The Walking Dead, was developed for, television) -> The Walking Dead (5249ms) Who invented television? commissions 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (commissions, develops original programming for, television) -> commissions (5242ms) Who invented television? ?Gossip Girl? 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (?Gossip Girl?, was developed for, television) -> ?Gossip Girl? (5226ms) Who invented television? Panasonic 0.5555555555530001 Who invented television? -> $x: ($x, develop, television) -> (Panasonic, has been developing 3D standards for, television) -> Panasonic (5249ms) Who invented television? the energy 0.555555555552 Who invented television? -> $x: ($x, do, watch television) -> (the energy, do something other than, watch television) -> the energy (5256ms) Who invented television? 0.0 0.555555555552 Who invented television? -> $x: ($x, do, watch television) -> (0.0, Do, Prices Vary Watch television) -> 0.0 (5256ms) Who invented television? a day 0.555555555552 Who invented television? -> $x: ($x, do, watch television) -> (a day, does, the child watch television) -> a day (5256ms) Who invented television? two screens 0.555555555552 Who invented television? -> $x: ($x, create, watch television) -> (two screens, create, television-watching heaven) -> two screens (5256ms) Who invented television? Piper 0.555555555552 Who invented television? -> $x: ($x, do, watch television) -> (Piper, Does, n?t Watch Television) -> Piper (5256ms) Who invented television? children 0.555555555552 Who invented television? -> $x: ($x, do, watch television) -> (children, do, watch television) -> children (5256ms) Who invented television? news 0.555555555552 Who invented television? -> $x: ($x, do, watch television) -> (news, does n?t count as, television watching) -> news (5256ms) Who invented television? the evenings 0.555555555552 Who invented television? -> $x: (watch television, take place in, $x) -> (television watching, took place in, the evenings) -> the evenings (5256ms) Who invented television? the 1930s and 1940s 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (the 1930s and 1940s, found its way to, television) -> the 1930s and 1940s (5275ms) Who invented television? a collective American society 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (a collective American society, cannot be found on, television) -> a collective American society (5285ms) Who invented television? juggling 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (juggling, found, television) -> juggling (5263ms) Who invented television? Lauren Conrad 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Lauren Conrad, has found success on, television) -> Lauren Conrad (5269ms) Who invented television? images 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (images, found on, television) -> images (5285ms) Who invented television? detail 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (detail, cannot be found on, television) -> detail (5269ms) Who invented television? Cathode ray tubes 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Cathode ray tubes, are found in, televisions) -> Cathode ray tubes (5263ms) Who invented television? chaos demands stability 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (chaos demands stability, can be found in, television) -> chaos demands stability (5285ms) Who invented television? the average person 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (the average person, finds time to watch, television) -> the average person (5263ms) Who invented television? UPA 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (UPA, found great success on, television) -> UPA (5269ms) Who invented television? Non-standard English 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Non-standard English, can be found on, television) -> Non-standard English (5285ms) Who invented television? PBDEs 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (PBDEs, are found in, televisions) -> PBDEs (5285ms) Who invented television? content 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (content, found nowhere else on, television) -> content (5280ms) Who invented television? little sets 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (little sets, find, televisions) -> little sets (5275ms) Who invented television? regimens 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (regimens, can be found on, television) -> regimens (5280ms) Who invented television? Gaming News 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Gaming News, Find Inspiration in, Television) -> Gaming News (5280ms) Who invented television? the best dramatic writing 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (the best dramatic writing, is found on, television) -> the best dramatic writing (5280ms) Who invented television? the sale 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (the sale, find bargains on, Televisions) -> the sale (5263ms) Who invented television? adverts 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (adverts, can be found on, television) -> adverts (5269ms) Who invented television? multiples 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (multiples, can be found on, television) -> multiples (5280ms) Who invented television? Guests 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Guests, will find, television) -> Guests (5263ms) Who invented television? the DS 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (the DS, found on, televisions) -> the DS (5263ms) Who invented television? DigiCart recorders 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (DigiCart recorders, are found throughout, television) -> DigiCart recorders (5275ms) Who invented television? Imagery 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Imagery, is found on, television) -> Imagery (5275ms) Who invented television? teachers 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (teachers, tried to find, televisions) -> teachers (5269ms) Who invented television? August Bose 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (August Bose, found work in, television) -> August Bose (5285ms) Who invented television? youll 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (youll, find on, television) -> youll (5280ms) Who invented television? tournament action 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (tournament action, can be found on, television) -> tournament action (5263ms) Who invented television? the cosmetic voices 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (the cosmetic voices, found on, television) -> the cosmetic voices (5280ms) Who invented television? automotive reviews 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (automotive reviews, cannot be found on, television) -> automotive reviews (5285ms) Who invented television? any William Castle films 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (any William Castle films, did find work in, television) -> any William Castle films (5275ms) Who invented television? the sex 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (the sex, found on, television) -> the sex (5269ms) Who invented television? marilyn and 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (marilyn and, i find out on, television) -> marilyn and (5269ms) Who invented television? the strongest narrative stories 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (the strongest narrative stories, can be found on, television) -> the strongest narrative stories (5269ms) Who invented television? the speakers 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (the speakers, found in, televisions) -> the speakers (5285ms) Who invented television? individuals 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (individuals, can find, televisions) -> individuals (5275ms) Who invented television? Marx 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Marx, find, television) -> Marx (5256ms) Who invented television? I?ve 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (I?ve, found, television) -> I?ve (5280ms) Who invented television? Groucho Marx 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Groucho Marx, find, television) -> Groucho Marx (5285ms) Who invented television? Tennessee employees 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Tennessee employees, have reported finding, televisions) -> Tennessee employees (5275ms) Who invented television? Open and shut cases 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Open and shut cases, are only found on, television) -> Open and shut cases (5256ms) Who invented television? you?ll 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (you?ll, find my article on, television) -> you?ll (5263ms) Who invented television? critical information 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (critical information, found nowhere else on, television) -> critical information (5280ms) Who invented television? Computer imagery 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Computer imagery, is found on, television) -> Computer imagery (5269ms) Who invented television? lead , mercury and cadmium 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (lead , mercury and cadmium, can be found in, televisions) -> lead , mercury and cadmium (5269ms) Who invented television? founder 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (founder, has found, television) -> founder (5280ms) Who invented television? Story lines 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Story lines, can be found on, television) -> Story lines (5280ms) Who invented television? nowadays such subtitled movies 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (nowadays such subtitled movies, can be found on, television) -> nowadays such subtitled movies (5285ms) Who invented television? The researchers 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (The researchers, found the content of, television) -> The researchers (5256ms) Who invented television? the basic English approach 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (the basic English approach, found on, television) -> the basic English approach (5275ms) Who invented television? the anime crap 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (the anime crap, found on, television) -> the anime crap (5280ms) Who invented television? a fire retardant 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (a fire retardant, found in, televisions) -> a fire retardant (5269ms) Who invented television? Such a menace to the Christian 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Such a menace to the Christian, to be found in, television) -> Such a menace to the Christian (5275ms) Who invented television? 33 records 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (33 records, found for, Television) -> 33 records (5263ms) Who invented television? the humorous stunts 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (the humorous stunts, found on, television) -> the humorous stunts (5280ms) Who invented television? Benjamin 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Benjamin, finds, television) -> Benjamin (5280ms) Who invented television? Current modes 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Current modes, are also found on, television) -> Current modes (5263ms) Who invented television? Alums 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Alums, have found careers in, television) -> Alums (5275ms) Who invented television? the comedians 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (the comedians, found their niche in, television) -> the comedians (5269ms) Who invented television? a handsome , privileged man 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (a handsome , privileged man, finds fame on, television) -> a handsome , privileged man (5263ms) Who invented television? the stereotypes 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (the stereotypes, found on, television) -> the stereotypes (5275ms) Who invented television? Ailes 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Ailes, found his calling in, television) -> Ailes (5256ms) Who invented television? competition 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (competition, finds an outlet in, television) -> competition (5263ms) Who invented television? Ice-T 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Ice-T, can be found on, television) -> Ice-T (5269ms) Who invented television? sexual images 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (sexual images, found on, television) -> sexual images (5275ms) Who invented television? bull sharks 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (bull sharks, can be found on, television) -> bull sharks (5280ms) Who invented television? Paul 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Paul, finds unexpected fame on, television) -> Paul (5269ms) Who invented television? Day 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Day, found success in, television) -> Day (5263ms) Who invented television? viewers 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (viewers, can find elsewhere on, television) -> viewers (5275ms) Who invented television? Liquid-crystal displays 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Liquid-crystal displays, found in, televisions) -> Liquid-crystal displays (5285ms) Who invented television? society today 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (society today, is found on, television) -> society today (5256ms) Who invented television? Castellari 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Castellari, found work in, television) -> Castellari (5275ms) Who invented television? magnetism 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (magnetism, is often found in, televisions) -> magnetism (5285ms) Who invented television? Business Children 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Business Children, often find, television) -> Business Children (5269ms) Who invented television? Don Kent 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Don Kent, found fame on, television) -> Don Kent (5256ms) Who invented television? the success Kaling 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (the success Kaling, has found in, television) -> the success Kaling (5275ms) Who invented television? the plastics hardener 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (the plastics hardener, is found in, televisions) -> the plastics hardener (5256ms) Who invented television? Children 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Children, often find, television) -> Children (5275ms) Who invented television? Pearce 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (Pearce, found other work in, television) -> Pearce (5263ms) Who invented television? the sharpest comic writing 0.555555555551 Who invented television? -> $x: ($x, found, television) -> (the sharpest comic writing, ever found on, television) -> the sharpest comic writing (5280ms) Who invented television? 1964 0.44444444444200004 Who invented television? -> $x: (tv, be invent in, $x) -> (Plasma TVs, were actually invented back in, 1964) -> 1964 (5285ms) Who invented television? the USA other countries 0.44444444444200004 Who invented television? -> $x: (tv, be invent in, $x) -> (TV, was invented in, the USA other countries) -> the USA other countries (5285ms) Who invented television? Aurecea 0.44444444444200004 Who invented television? -> $x: (tv, be invent in, $x) -> (TV and movies, have n?t been invented yet in, Aurecea) -> Aurecea (5285ms) Who invented television? 1920 0.44444444444200004 Who invented television? -> $x: (tv, be invent in, $x) -> (TV EV, was invented in, 1920) -> 1920 (5290ms) Who invented television? the same university 0.44444444444200004 Who invented television? -> $x: (tv, be invent in, $x) -> (flat screen TVs, were invented in, the same university) -> the same university (5290ms) Who invented television? 1945 0.44444444444200004 Who invented television? -> $x: (tv, be invent in, $x) -> (The frozen TV dinner, was invented in, 1945) -> 1945 (5290ms) Who invented television? Rigby 0.44444444444200004 Who invented television? -> $x: (tv, be invent in, $x) -> (TV, was invented in, Rigby) -> Rigby (5290ms) Who invented television? frantic carrying out work 0.444444444441 Who invented television? -> $x: ($x, exactly be, television) -> (frantic carrying out work, exactly is, Satellite television) -> frantic carrying out work (5290ms) Who invented television? The same 0.444444444441 Who invented television? -> $x: ($x, exactly be, television) -> (The same, can be said exactly on, the television side) -> The same (5290ms) Who invented television? a seat 0.444444444441 Who invented television? -> $x: ($x, exactly be, television) -> (a seat, exactly is on, television) -> a seat (5290ms) Who invented television? Papua New Guinea 0.444444444441 Who invented television? -> $x: ($x, have invent, television) -> (Papua New Guinea, had invented, the television) -> Papua New Guinea (5295ms) Who invented television? the cave-men 0.444444444441 Who invented television? -> $x: ($x, have invent, television) -> (the cave-men, had invented, television many thousand years) -> the cave-men (5290ms) Who invented television? the fad 0.444444444441 Who invented television? -> $x: (television, be create on, $x) -> (A cartoon television show, was created based on, the fad) -> the fad (5295ms) Who invented television? the body 0.444444444441 Who invented television? -> $x: ($x, exactly be, television) -> (the body, is replicated exactly on, the television screen) -> the body (5290ms) Who invented television? Web-captions 0.444444444441 Who invented television? -> $x: ($x, exactly be, television) -> (Web-captions, are exactly like, television and film captions) -> Web-captions (5290ms) Who invented television? the concept 0.444444444441 Who invented television? -> $x: (television, be create on, $x) -> (television programs, have been created based on, the concept) -> the concept (5290ms) Who invented television? Life 0.444444444441 Who invented television? -> $x: ($x, exactly be, television) -> (Life, was exactly like, the television show Happy Days) -> Life (5290ms) Who invented television? nobody 0.444444444441 Who invented television? -> $x: ($x, have invent, television) -> (nobody, had invented, television) -> nobody (5290ms) Who invented television? Canada 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (American films and television shows, are made in, Canada) -> Canada (5299ms) Who invented television? 1996 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (A television movie, was made in, 1996) -> 1996 (5299ms) Who invented television? England 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (The first public television Broadcast, were made in, England) -> England (5304ms) Who invented television? recent years 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (Commercial television, has been making gains in, recent years) -> recent years (5299ms) Who invented television? Kiev 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (RT? Television, will be made in, Kiev) -> Kiev (5299ms) Who invented television? Russian 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (television, were always first made in, Russian) -> Russian (5299ms) Who invented television? 1984 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (His first film and television appearances, were made in, 1984) -> 1984 (5299ms) Who invented television? the language 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (television and radio broadcasts, are made in, the language) -> the language (5295ms) Who invented television? the Vancouver area 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (television and radio, were made in, the Vancouver area) -> the Vancouver area (5295ms) Who invented television? cooperation 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (the television programme, had been made in, cooperation) -> cooperation (5295ms) Who invented television? the region 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (television programs, will soon be made available in, the region) -> the region (5295ms) Who invented television? China 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (Your television, may be made in, China) -> China (5299ms) Who invented television? reality TV shows 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (television, are making waves in, reality TV shows) -> reality TV shows (5295ms) Who invented television? Texas 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (43 feature films and television shows, were made in, Texas) -> Texas (5299ms) Who invented television? part 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (the television, is made in, part) -> part (5299ms) Who invented television? a chair 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (an anti-Israeli television show, was made to sit in, a chair) -> a chair (5295ms) Who invented television? consultation 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (press and/or television, will always be made in, consultation) -> consultation (5304ms) Who invented television? London and Dakar 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (Television, was made in, London and Dakar) -> London and Dakar (5304ms) Who invented television? flat screen form 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (LCD televisions, are both made in, flat screen form) -> flat screen form (5295ms) Who invented television? Kaliningrad 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (one in three televisions in Russia, are made in, Kaliningrad) -> Kaliningrad (5304ms) Who invented television? anime 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (television, is a huge step in making, anime) -> anime (5299ms) Who invented television? partnership 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (the television special, was made in, partnership) -> partnership (5299ms) Who invented television? Television Production Tour 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (television, is made in, Television Production Tour) -> Television Production Tour (5299ms) Who invented television? Asia 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (Television sets and computers, are made in, Asia) -> Asia (5295ms) Who invented television? the 16x9 screen aspect ratio 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (Plasma televisions, are made in, the 16x9 screen aspect ratio) -> the 16x9 screen aspect ratio (5299ms) Who invented television? the early 1960s 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (television programs, were made back in, the early 1960s) -> the early 1960s (5295ms) Who invented television? Egypt 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (television serials, were made in, Egypt) -> Egypt (5299ms) Who invented television? 1936 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (the first television transmissions, were made in, 1936) -> 1936 (5304ms) Who invented television? 1957 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (extremely rare television appearances, was made in, 1957) -> 1957 (5299ms) Who invented television? 1950 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (No, television history, was being made in, 1950) -> 1950 (5304ms) Who invented television? Detroit 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (a television, was actually made in, Detroit) -> Detroit (5299ms) Who invented television? Milan 0.44444444444 Who invented television? -> $x: (television, be make in, $x) -> (television channels, are making plans to be in, Milan) -> Milan (5295ms) Who invented television? a mark 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (a mark, had developed on, my LCD) -> a mark (5329ms) Who invented television? a running program 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (a running program, developed, new satellite cells) -> a running program (5312ms) Who invented television? work 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (work, take to develop, an in-house LCD system) -> work (5331ms) Who invented television? MPA 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (MPA, develops, full satellite communications system) -> MPA (5320ms) Who invented television? the Air Force 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (the Air Force, was developing two different types of, satellites) -> the Air Force (5331ms) Who invented television? a screen cleaner 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (a screen cleaner, developed for, use specifically on LCD screens) -> a screen cleaner (5323ms) Who invented television? a main base 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (a main base, is developing, satellite Centres) -> a main base (5329ms) Who invented television? DOME 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (DOME, develop, the first medical imaging LCD display) -> DOME (5312ms) Who invented television? Celestron 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (Celestron, has developed, the first digital LCD microscope) -> Celestron (5326ms) Who invented television? Dynacon 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Dynacon, develops, satellite control systems products) -> Dynacon (5323ms) Who invented television? scientists 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (scientists, developed from, satellite imaging) -> scientists (5312ms) Who invented television? Qatar 0.333333333334 Who invented television? -> $x: ($x, develop, satellite television) -> (Qatar, took the lead in developing, satellite television) -> Qatar (5316ms) Who invented television? thin-film transistor 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (thin-film transistor, has developed, the first 70-inch LCD panel) -> thin-film transistor (5323ms) Who invented television? IER 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (IER, developed, satellite-mounted magnetic recorders) -> IER (5323ms) Who invented television? software tools 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (software tools, were developed originally for, satellite) -> software tools (5323ms) Who invented television? Sylvania 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Sylvania, developed, the idea for use in satellites) -> Sylvania (5326ms) Who invented television? ESA 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (ESA, has developed, the satellites) -> ESA (5335ms) Who invented television? young African adults 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (young African adults, developed, a satellite package) -> young African adults (5308ms) Who invented television? Innolux 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (Innolux, is currently developing, a 26? wide LCD monitor panel) -> Innolux (5308ms) Who invented television? JPL 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (JPL, developed, the first American orbital satellite) -> JPL (5308ms) Who invented television? The move 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (The move, is to develop, satellites) -> The move (5331ms) Who invented television? BAS 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (BAS, have developed, innovative satellite) -> BAS (5326ms) Who invented television? The company 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (The company, has developed, LCD panels) -> The company (5331ms) Who invented television? Dr. Hofman 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Dr. Hofman, develops, satellite systems) -> Dr. Hofman (5316ms) Who invented television? Conclusion Aerospace 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Conclusion Aerospace, has been working to develop, satellites) -> Conclusion Aerospace (5329ms) Who invented television? ACSER 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (ACSER, will develop technologies for, satellite navigation) -> ACSER (5308ms) Who invented television? Vietnam 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Vietnam, developed, a spy satellite) -> Vietnam (5320ms) Who invented television? SSC 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (SSC, develops, state-of-the-art satellites) -> SSC (5331ms) Who invented television? growth capital 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (growth capital, develop, satellite facilities) -> growth capital (5304ms) Who invented television? smartphones 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (smartphones, could feasibly develop apps for, satellites) -> smartphones (5320ms) Who invented television? a high gloss 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (a high gloss, specifically developed for, LCD screens) -> a high gloss (5316ms) Who invented television? Norsat 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Norsat, develops, ground-based satellite equipment) -> Norsat (5320ms) Who invented television? the group 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (the group, developed, the Copernicus satellite) -> the group (5323ms) Who invented television? Bristol Motor Speedway 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Bristol Motor Speedway, developed, satellite parking lots) -> Bristol Motor Speedway (5312ms) Who invented television? June 8 , 2010 Sharp 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (June 8 , 2010 Sharp, has developed, a touch screen LCD) -> June 8 , 2010 Sharp (5335ms) Who invented television? SSF 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (SSF, originally developed software for, satellites) -> SSF (5323ms) Who invented television? Melbourne 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Melbourne, developed, the satellite?s L-band reflector) -> Melbourne (5326ms) Who invented television? Defense 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Defense, developed, this satellite system) -> Defense (5331ms) Who invented television? the first LCD producer 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (the first LCD producer, has developed, a 2.2? LCD) -> the first LCD producer (5320ms) Who invented television? CU students 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (CU students, developed, the DINO satellite mission) -> CU students (5323ms) Who invented television? an aerospace division 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (an aerospace division, developed, satellite tracking systems) -> an aerospace division (5326ms) Who invented television? UK, 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (UK,, has developed, a low-cost LCD multimedia projector) -> UK, (5312ms) Who invented television? Medicare contractors 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (Medicare contractors, develop, LCDs) -> Medicare contractors (5320ms) Who invented television? Orbit Logic 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Orbit Logic, developed, the Sibyl imaging satellite tasking app) -> Orbit Logic (5323ms) Who invented television? Samsung 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (Samsung, has developed a new technology for, LCD panels) -> Samsung (5331ms) Who invented television? the British government 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (the British government, developed, the Skynet 2 satellites) -> the British government (5329ms) Who invented television? Pro Tech 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Pro Tech, developed, the first satellite tracking system) -> Pro Tech (5323ms) Who invented television? adults 0.333333333334 Who invented television? -> $x: ($x, develop, radio and television) -> (adults, helped develop, Christian radio and television) -> adults (5331ms) Who invented television? the Government 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (the Government, had also planned to develop, satellites) -> the Government (5308ms) Who invented television? INPE 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (INPE, develops, satellites) -> INPE (5308ms) Who invented television? The Swiss Space Center 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (The Swiss Space Center, is developing, a satellite) -> The Swiss Space Center (5312ms) Who invented television? Epson 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (Epson, develops, the LCD D5/D5+ panels) -> Epson (5316ms) Who invented television? Technology 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Technology, developed, the first U.S. satellite) -> Technology (5312ms) Who invented television? Team Xecuter 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (Team Xecuter, has developed, a Parallel LCD interface) -> Team Xecuter (5316ms) Who invented television? Singer 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Singer, developed, satellites) -> Singer (5320ms) Who invented television? LG Display 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (LG Display, developed, a 14.1 inch LCD panel) -> LG Display (5326ms) Who invented television? instrumentation 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (instrumentation, has been developed using, satellite instruments) -> instrumentation (5335ms) Who invented television? the U.S. Navy 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (the U.S. Navy, developed, the Timation satellite) -> the U.S. Navy (5323ms) Who invented television? NASA 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (NASA, develop, the satellite and instrument) -> NASA (5331ms) Who invented television? Apr May Sony 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (Apr May Sony, develops, new 4K SXRD high-resolution LCD panel) -> Apr May Sony (5312ms) Who invented television? multiplexing schemes 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (multiplexing schemes, will be developed for, satellites) -> multiplexing schemes (5304ms) Who invented television? techniques 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (techniques, developed from, satellite imaging) -> techniques (5316ms) Who invented television? Microsoft and Samsung 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (Microsoft and Samsung, worked closely to develop, the LCD panel) -> Microsoft and Samsung (5308ms) Who invented television? a few species 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (a few species, have been developed as, satellite systems) -> a few species (5312ms) Who invented television? The UK 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (The UK, is developing, " satellite accounts) -> The UK (5308ms) Who invented television? 2 patients 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (2 patients, developed, satellite nodules) -> 2 patients (5329ms) Who invented television? Dr. Steven 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (Dr. Steven, develop, the first medical imaging LCD display) -> Dr. Steven (5323ms) Who invented television? The INPE 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (The INPE, develops, satellites and conducts space) -> The INPE (5320ms) Who invented television? The Canadian Space Agency 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (The Canadian Space Agency, develops, rockets and satellites) -> The Canadian Space Agency (5320ms) Who invented television? Thales Alenia Space 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Thales Alenia Space, developed, these satellites) -> Thales Alenia Space (5333ms) Who invented television? the Indian space programme 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (the Indian space programme, is to develop, satellites) -> the Indian space programme (5304ms) Who invented television? an active part 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (an active part, develop, mini-satellite technologies) -> an active part (5335ms) Who invented television? enhanced seismic data evaluation 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (enhanced seismic data evaluation, then develop, satellites) -> enhanced seismic data evaluation (5312ms) Who invented television? The association 0.333333333334 Who invented television? -> $x: ($x, develop, radio and television) -> (The association, seeks to develop, television and radio business) -> The association (5331ms) Who invented television? Switzerland 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Switzerland, are developing a new generation of, satellites) -> Switzerland (5329ms) Who invented television? a convergence 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (a convergence, develop, satellite monitoring) -> a convergence (5312ms) Who invented television? NDRC 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (NDRC, developed, GPS satellite positioning technology) -> NDRC (5316ms) Who invented television? Mr. Gale 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Mr. Gale, developed, satellite Internet communications systems) -> Mr. Gale (5329ms) Who invented television? Orbital 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Orbital, is a leader in developing, satellites) -> Orbital (5329ms) Who invented television? Kevin 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Kevin, developed, the trade name ?Satellite Marketing) -> Kevin (5316ms) Who invented television? Bell Labs 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Bell Labs, developed, the first communications satellites) -> Bell Labs (5323ms) Who invented television? surprisingly after 6 months 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (surprisingly after 6 months, developed, a LCD problem) -> surprisingly after 6 months (5326ms) Who invented television? companies 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (companies, have already developed, UltraThin LCD models) -> companies (5326ms) Who invented television? Special versions 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (Special versions, have been developed for, LCD manufacturing) -> Special versions (5316ms) Who invented television? JAXA 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (JAXA, developed, the satellite) -> JAXA (5329ms) Who invented television? CDC 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (CDC, will continue to develop, satellite courses) -> CDC (5320ms) Who invented television? we?ve 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (we?ve, developed, satellite offices) -> we?ve (5329ms) Who invented television? CMO 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (CMO, developed, this LCD) -> CMO (5331ms) Who invented television? consumers 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (consumers, have developed criteria for, LCD visual tests) -> consumers (5323ms) Who invented television? Pixel Qi 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (Pixel Qi, developed, a hybrid LCD screen) -> Pixel Qi (5316ms) Who invented television? Students 0.333333333334 Who invented television? -> $x: ($x, develop, movie and television) -> (Students, develop their passion for, movies and television) -> Students (5335ms) Who invented television? the white-smocked scientist 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (the white-smocked scientist, develops, his satellite colony) -> the white-smocked scientist (5329ms) Who invented television? 8.117 Selected minor ports 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (8.117 Selected minor ports, would be developed as, satellites) -> 8.117 Selected minor ports (5316ms) Who invented television? The church 0.333333333334 Who invented television? -> $x: ($x, develop, radio and television) -> (The church, also developed, radio and television spots) -> The church (5326ms) Who invented television? Axiomtek 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (Axiomtek, develops, various LCD wiring kits) -> Axiomtek (5316ms) Who invented television? Clone High 0.333333333334 Who invented television? -> $x: ($x, develop, television producer) -> (Clone High, was developed by, television producer Bill Lawrence) -> Clone High (5308ms) Who invented television? the college 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (the college, developed, a satellite campus) -> the college (5304ms) Who invented television? 1977 NASA 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (1977 NASA, developed, the Satellite Arts Project) -> 1977 NASA (5304ms) Who invented television? NHK 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (NHK, developed, a HD satellite broadcast system) -> NHK (5308ms) Who invented television? Pakistan 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Pakistan, developed, the Badr-B satellite) -> Pakistan (5331ms) Who invented television? SaTReC 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (SaTReC, continues to develop, satellites) -> SaTReC (5308ms) Who invented television? EUMETSAT 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (EUMETSAT, develops, space based satellite systems) -> EUMETSAT (5329ms) Who invented television? Mother Angelica 0.333333333334 Who invented television? -> $x: ($x, develop, satellite television) -> (Mother Angelica, has developed, a satellite television network) -> Mother Angelica (5329ms) Who invented television? The military 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (The military, is also developing, stealth satellites) -> The military (5323ms) Who invented television? ET LG Display Co Ltd. 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (ET LG Display Co Ltd., has developed, an LCD panel) -> ET LG Display Co Ltd. (5331ms) Who invented television? the NASA 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (the NASA, developed, LCD light system) -> the NASA (5308ms) Who invented television? India 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (India, developed, high-resolution remote sensing satellite) -> India (5326ms) Who invented television? BSkyB 0.333333333334 Who invented television? -> $x: ($x, develop, satellite television) -> (BSkyB, have very successfully developed, satellite television) -> BSkyB (5316ms) Who invented television? Hyundai 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (Hyundai, is developing this type of, Lcd monitor) -> Hyundai (5326ms) Who invented television? Suparco 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Suparco, developed most of, the satellite?s) -> Suparco (5312ms) Who invented television? Boeing Co. 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Boeing Co., develop, the prototype satellites) -> Boeing Co. (5316ms) Who invented television? the National Reconnaissance Office 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (the National Reconnaissance Office, develops, satellites) -> the National Reconnaissance Office (5304ms) Who invented television? Allied Signal 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Allied Signal, developing, satellite systems) -> Allied Signal (5331ms) Who invented television? chb LG Philips 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (chb LG Philips, develops, dirt-resistant LCD Smudges) -> chb LG Philips (5308ms) Who invented television? a custom 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (a custom, developed, satellite network) -> a custom (5331ms) Who invented television? the JV 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (the JV, will develop, satellite technologies) -> the JV (5308ms) Who invented television? the state government 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (the state government, develop, new satellite townships) -> the state government (5329ms) Who invented television? products 0.333333333334 Who invented television? -> $x: ($x, develop, lcd) -> (products, have been developed to serve, LCD display) -> products (5312ms) Who invented television? the Chinese ?will 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (the Chinese ?will, develop, new satellites) -> the Chinese ?will (5326ms) Who invented television? Hamilton 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Hamilton, could develop, satellite lots) -> Hamilton (5320ms) Who invented television? high performance solar cells 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (high performance solar cells, developed to, power satellites) -> high performance solar cells (5312ms) Who invented television? the Courier program 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (the Courier program, was to develop, a satellite) -> the Courier program (5326ms) Who invented television? Mwalimu 0.333333333334 Who invented television? -> $x: ($x, develop, satellite) -> (Mwalimu, plans to develop, satellite campuses) -> Mwalimu (5312ms) Who invented television? Youll 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (Youll, find, the satellites) -> Youll (5345ms) Who invented television? the very worst 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (the very worst, find, a good satellite monitor) -> the very worst (5337ms) Who invented television? the picture tube 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (the picture tube, found in, modern television sets) -> the picture tube (5337ms) Who invented television? The planet Jupiter 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (The planet Jupiter, was found to have, satellites) -> The planet Jupiter (5343ms) Who invented television? goods anyone 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (goods anyone, found in, TELEVISION SET) -> goods anyone (5337ms) Who invented television? Leanna 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (Leanna, may be found working, film and television sets) -> Leanna (5345ms) Who invented television? Hana 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (Hana, finds, the satellite) -> Hana (5341ms) Who invented television? the content 0.333333333332 Who invented television? -> $x: ($x, found, television and movie) -> (the content, found in, both television shows and movies) -> the content (5343ms) Who invented television? I?ve 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (I?ve, found, a satellite image) -> I?ve (5335ms) Who invented television? the classroom 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (the classroom, could find items such as, a television set) -> the classroom (5341ms) Who invented television? Knowledge Networks 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (Knowledge Networks, found, that satellite penetration) -> Knowledge Networks (5345ms) Who invented television? seven different campuses 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (seven different campuses, find, a satellite location) -> seven different campuses (5339ms) Who invented television? You?ll 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (You?ll, find, digital satellite television) -> You?ll (5345ms) Who invented television? a garmin 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (a garmin, would only find, satellites) -> a garmin (5335ms) Who invented television? the MotoSat 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (the MotoSat, found, the satellite) -> the MotoSat (5343ms) Who invented television? new HD channels 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (new HD channels, find a place on, satellite) -> new HD channels (5345ms) Who invented television? a great GPS 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (a great GPS, finds, satellites) -> a great GPS (5341ms) Who invented television? Several asteroids 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (Several asteroids, have already been found to have, satellites) -> Several asteroids (5345ms) Who invented television? Free software downloads 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (Free software downloads, Find, satellite tv) -> Free software downloads (5345ms) Who invented television? tv-set 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (tv-set, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Television%20set) -> tv-set (5337ms) Who invented television? kids 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (kids, find, the satellite) -> kids (5343ms) Who invented television? any perspective 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (any perspective, find, satellites) -> any perspective (5337ms) Who invented television? the initial start-up 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (the initial start-up, took a while to find, satellites) -> the initial start-up (5345ms) Who invented television? special cans 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (special cans, will be found by, satellites) -> special cans (5345ms) Who invented television? wires 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (wires, found on, NTSC television sets) -> wires (5343ms) Who invented television? one or two channels 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (one or two channels, find, a satellite) -> one or two channels (5341ms) Who invented television? the dish 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (the dish, find, the satellite) -> the dish (5341ms) Who invented television? Gus II 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (Gus II, found, a satellite) -> Gus II (5344ms) Who invented television? four times larger than 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (four times larger than, found on, other television sets) -> four times larger than (5344ms) Who invented television? UK, US 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (UK, US, find, satellite phone codes) -> UK, US (5345ms) Who invented television? The GPS radio 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (The GPS radio, typically finds, satellites) -> The GPS radio (5337ms) Who invented television? The eTrex 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (The eTrex, finds, available satellites) -> The eTrex (5344ms) Who invented television? Nvi 3790LMT 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (Nvi 3790LMT, will finds, satellites) -> Nvi 3790LMT (5341ms) Who invented television? Chloe 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (Chloe, found, a satellite feed) -> Chloe (5341ms) Who invented television? the district manager 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (the district manager, found, several Satellite violations) -> the district manager (5337ms) Who invented television? The Voyager team 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (The Voyager team, found, 10 more Uranian satellites) -> The Voyager team (5339ms) Who invented television? The products 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (The products, have found its way into, satellites) -> The products (5335ms) Who invented television? the cast 0.333333333332 Who invented television? -> $x: ($x, found, television and movie) -> (the cast, found new work in, movies and television) -> the cast (5335ms) Who invented television? Bruce Bastian 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (Bruce Bastian, found, Satellite Software International) -> Bruce Bastian (5337ms) Who invented television? Cathode Ray Tubes 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (Cathode Ray Tubes, were found in, all electronic television sets) -> Cathode Ray Tubes (5339ms) Who invented television? the national investigation 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (the national investigation, found, the satellite TV provider) -> the national investigation (5345ms) Who invented television? the violence 0.333333333332 Who invented television? -> $x: ($x, found, television and movie) -> (the violence, found in, video games , movies , and television) -> the violence (5339ms) Who invented television? One common engine design 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (One common engine design, found on, satellites) -> One common engine design (5339ms) Who invented television? NM ? 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (NM ?, Find, Satellite TV Deals) -> NM ? (5344ms) Who invented television? SatHunter 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (SatHunter, Find, TV satellites) -> SatHunter (5335ms) Who invented television? The iNetVu mobile satellite system 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (The iNetVu mobile satellite system, finds, the right satellite) -> The iNetVu mobile satellite system (5337ms) Who invented television? technology 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (technology, found in, flat screen television sets) -> technology (5344ms) Who invented television? a small compass 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (a small compass, find, the satellite direction) -> a small compass (5339ms) Who invented television? Producers 0.333333333332 Who invented television? -> $x: ($x, found, television and movie) -> (Producers, find new music for, movies and television) -> Producers (5344ms) Who invented television? loan 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (loan, could be able to find, a television or television set) -> loan (5344ms) Who invented television? The unit 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (The unit, found, its satellite connection) -> The unit (5343ms) Who invented television? GPS 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (GPS, finds, the satellite) -> GPS (5343ms) Who invented television? The Voyagers 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (The Voyagers, found, 22 new satellites) -> The Voyagers (5341ms) Who invented television? The FTA 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (The FTA, are found through, satellite) -> The FTA (5345ms) Who invented television? the familiar TV tube 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (the familiar TV tube, found in, most 'regular ' television sets) -> the familiar TV tube (5344ms) Who invented television? the receivers 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (the receivers, find, the satellites) -> the receivers (5344ms) Who invented television? the double motor system 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (the double motor system, finds, the satellites) -> the double motor system (5344ms) Who invented television? equipment 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (equipment, previously found mainly on, television and movie sets) -> equipment (5337ms) Who invented television? N?vi 3790LMT 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (N?vi 3790LMT, will finds, satellites) -> N?vi 3790LMT (5341ms) Who invented television? Assemble antennas 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (Assemble antennas, find, satellite) -> Assemble antennas (5344ms) Who invented television? the Holux 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (the Holux, found loads of, satellites) -> the Holux (5339ms) Who invented television? SIDIP technology 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (SIDIP technology, will also find wide application in, satellite) -> SIDIP technology (5344ms) Who invented television? the battery pack 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (the battery pack, found in, most portable television sets) -> the battery pack (5337ms) Who invented television? March 15/16 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (March 15/16, found, 7 satellites) -> March 15/16 (5337ms) Who invented television? Luis Mariano Paz 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (Luis Mariano Paz, found, the satellite photo) -> Luis Mariano Paz (5345ms) Who invented television? a Time 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (a Time, can be found on, television sets) -> a Time (5339ms) Who invented television? Time 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (Time, find, those satellites) -> Time (5343ms) Who invented television? Internet 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (Internet, finds, the satellite) -> Internet (5341ms) Who invented television? AGPS information 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (AGPS information, may also help in finding, satellites) -> AGPS information (5343ms) Who invented television? an author 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (an author, Find, Satellite TV Providers) -> an author (5335ms) Who invented television? reentry 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (reentry, soon found applications on, satellites) -> reentry (5339ms) Who invented television? The MV-3500 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (The MV-3500, finds, the satellite) -> The MV-3500 (5345ms) Who invented television? sharpness 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (sharpness, is found in, most modern television sets) -> sharpness (5335ms) Who invented television? text/html S A T E L L 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (text/html S A T E L L, Find, a satellite) -> text/html S A T E L L (5335ms) Who invented television? visitors 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (visitors, find, the Satellite Internet) -> visitors (5345ms) Who invented television? Adapting technology 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (Adapting technology, found in, flat screen television sets) -> Adapting technology (5341ms) Who invented television? a device 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (a device, is usually found on, a regular television set) -> a device (5344ms) Who invented television? You?ll 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (You?ll, find two simple types of, television sets) -> You?ll (5343ms) Who invented television? Mr. Moto 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (Mr. Moto, found, his satellite) -> Mr. Moto (5344ms) Who invented television? internet tv 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (internet tv, will find its way to, your television set) -> internet tv (5345ms) Who invented television? The tournaments 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (The tournaments, can be found as, satellites) -> The tournaments (5345ms) Who invented television? particle accelerators 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (particle accelerators, are those found in, television sets) -> particle accelerators (5339ms) Who invented television? the system 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (the system, finds, the satellite) -> the system (5341ms) Who invented television? Maryland 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (Maryland, found, the satellite) -> Maryland (5343ms) Who invented television? Survey crews 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (Survey crews, found, satellite infestation) -> Survey crews (5341ms) Who invented television? Lenny Cacchio 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (Lenny Cacchio, find, myself yelling at the television set) -> Lenny Cacchio (5339ms) Who invented television? accident 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (accident, found, a satellite image) -> accident (5343ms) Who invented television? Step 3 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (Step 3, Find, the desired satellite) -> Step 3 (5339ms) Who invented television? the app 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (the app, finds, GPS satellites) -> the app (5344ms) Who invented television? the Garmin 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (the Garmin, found, the satellites) -> the Garmin (5339ms) Who invented television? david-nevins 0.333333333332 Who invented television? -> $x: ($x, found, television producer) -> (david-nevins, can be found on Wikipedia at, http://en.wikipedia.org/wiki/David%20Nevins%20(television%20producer)) -> david-nevins (5343ms) Who invented television? a RCA connector 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (a RCA connector, can be found on, most television sets) -> a RCA connector (5337ms) Who invented television? the same technology 0.333333333332 Who invented television? -> $x: ($x, found, television set) -> (the same technology, found with, Sony ?s Bravia television sets) -> the same technology (5343ms) Who invented television? the Lick Observatory 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (the Lick Observatory, found, a fifth satellite) -> the Lick Observatory (5343ms) Who invented television? true free-to-air content 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (true free-to-air content, found on, satellites) -> true free-to-air content (5344ms) Who invented television? others and mine 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (others and mine, finds, the satellites) -> others and mine (5345ms) Who invented television? more remote areas 0.333333333332 Who invented television? -> $x: ($x, found, satellite) -> (more remote areas, find, the satellites) -> more remote areas (5337ms) What are enzymes? Antibiotics 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Antibiotics, cause an imbalance of, enzymes) -> Antibiotics (7278ms) What are enzymes? The fermentation 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (The fermentation, is caused by, enzymes) -> The fermentation (8921ms) What are enzymes? trauma and surgery 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (trauma and surgery, then cause a release of, enzymes) -> trauma and surgery (6415ms) What are enzymes? a gradual chemical change 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (a gradual chemical change, caused by, the enzymes) -> a gradual chemical change (7801ms) What are enzymes? the secretion 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (the secretion, caused by, enzyme deficiencies) -> the secretion (7278ms) What are enzymes? protein synthesis 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (protein synthesis, could have caused the evolution of, enzymes) -> protein synthesis (8921ms) What are enzymes? the tissue damage 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (the tissue damage, caused by, destructive enzymes) -> the tissue damage (3008ms) What are enzymes? the gene 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (the gene, can cause problems with, the enzyme) -> the gene (7277ms) What are enzymes? the production of cPLA2 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (the production of cPLA2, causes, the production of the enzyme) -> the production of cPLA2 (4297ms) What are enzymes? Acute exposure 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Acute exposure, causes the elevation of, liver enzymes) -> Acute exposure (7278ms) What are enzymes? rat trachea 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (rat trachea, caused increased, enzyme activity) -> rat trachea (4424ms) What are enzymes? PSC 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (PSC, causes, the blood liver enzyme) -> PSC (6971ms) What are enzymes? beta carotene 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (beta carotene, cause a reduction of, these enzymes) -> beta carotene (6970ms) What are enzymes? muscle soreness 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (muscle soreness, causes an increase in, enzymes) -> muscle soreness (4298ms) What are enzymes? The nitric oxide 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (The nitric oxide, causes, an enzyme) -> The nitric oxide (6971ms) What are enzymes? injury affecting either organ 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (injury affecting either organ, may cause release of, this enzyme) -> injury affecting either organ (10392ms) What are enzymes? Fetal abnormalities 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Fetal abnormalities, probably caused by, enzyme changes) -> Fetal abnormalities (6415ms) What are enzymes? Earlier statins 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Earlier statins, caused some elevations in, liver enzymes) -> Earlier statins (4424ms) What are enzymes? the excess weight 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (the excess weight, caused, the high-enzyme reading) -> the excess weight (10555ms) What are enzymes? researchers 1.111111111105 What are enzymes? -> $x: ($x, invent, enzyme) -> (researchers, invent, numerous DNA enzymes) -> researchers (4297ms) What are enzymes? Asthma 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Asthma, caused by, enzymes) -> Asthma (7801ms) What are enzymes? The increase 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (The increase, causes, the lipase enzyme) -> The increase (7801ms) What are enzymes? The clumps 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (The clumps, are sometimes caused by, two enzymes) -> The clumps (4424ms) What are enzymes? A substance 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (A substance, causes, a decrease in levels of an enzyme) -> A substance (8921ms) What are enzymes? Clinical gmp 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Clinical gmp, caused, enzyme label) -> Clinical gmp (6971ms) What are enzymes? The brouhaha 1.111111111105 What are enzymes? -> $x: ($x, invent, enzyme) -> (The brouhaha, invented, an enzyme assay) -> The brouhaha (6970ms) What are enzymes? The mutations 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (The mutations, cause, the production of an enzyme) -> The mutations (3009ms) What are enzymes? Ethylene 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Ethylene, causes increased levels of, certain enzymes) -> Ethylene (7801ms) What are enzymes? XALATAN 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (XALATAN, caused, macular enzyme) -> XALATAN (8844ms) What are enzymes? collagen and elastin 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (collagen and elastin, caused by, destructive enzymes) -> collagen and elastin (6415ms) What are enzymes? Total oxidative stress 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Total oxidative stress, causes failure of, protective enzymes) -> Total oxidative stress (4298ms) What are enzymes? temperature 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (temperature, causes a rise in, enzyme) -> temperature (4298ms) What are enzymes? The fungi 1.111111111105 What are enzymes? -> $x: ($x, invent, enzyme) -> (The fungi, invented, enzymes) -> The fungi (10392ms) What are enzymes? Genes 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Genes, cause the production of, enzymes) -> Genes (7277ms) What are enzymes? Lactic acid 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Lactic acid, can cause, enzymes) -> Lactic acid (3008ms) What are enzymes? alcohol 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (alcohol, causes, the body to overproduce an enzyme) -> alcohol (4297ms) What are enzymes? Prilosec? 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Prilosec?, may cause increased, liver enzymes) -> Prilosec? (10392ms) What are enzymes? oxidation which 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (oxidation which, causes deficiencies of, antioxidant enzymes) -> oxidation which (8844ms) What are enzymes? Streptomycin 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Streptomycin, causes malfunctioning of, enzyme synthesis) -> Streptomycin (4424ms) What are enzymes? A high carbohydrate diet 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (A high carbohydrate diet, causes an imbalance of, enzymes) -> A high carbohydrate diet (10392ms) What are enzymes? just a few degrees 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (just a few degrees, high can cause, certain enzymes) -> just a few degrees (8922ms) What are enzymes? Such organ damages 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Such organ damages, cause the release of, enzymes) -> Such organ damages (10555ms) What are enzymes? turn 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (turn, causes, more aromatase enzyme formation) -> turn (3008ms) What are enzymes? The fruit 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (The fruit, causes, greater saliva and starch breaking enzyme) -> The fruit (10392ms) What are enzymes? Simvastatin therapy 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Simvastatin therapy, can cause elevated, hepatic enzymes) -> Simvastatin therapy (8921ms) What are enzymes? acidity 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (acidity, causes, stomach enzymes) -> acidity (6415ms) What are enzymes? Germination 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Germination, causes, the natural enzymes) -> Germination (7277ms) What are enzymes? A heart attack 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (A heart attack, causes the release of, certain enzymes) -> A heart attack (8921ms) What are enzymes? sulphydryl groups 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (sulphydryl groups, causes the inactivation of, enzymes) -> sulphydryl groups (7801ms) What are enzymes? certain chemical reactions 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (certain chemical reactions, caused by, enzymes) -> certain chemical reactions (10555ms) What are enzymes? sulfur 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (sulfur, causes widespread dysfunction of, enzymes) -> sulfur (10555ms) What are enzymes? damage 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (damage, caused by, enzymes) -> damage (8921ms) What are enzymes? NO-Xplode 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (NO-Xplode, causes, abnormal liver enzyme tests) -> NO-Xplode (8844ms) What are enzymes? The nitric purchase tadalafil oxide 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (The nitric purchase tadalafil oxide, causes, an enzyme) -> The nitric purchase tadalafil oxide (7277ms) What are enzymes? Weight reduction 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Weight reduction, causes, liver enzymes) -> Weight reduction (10392ms) What are enzymes? toxic metals 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (toxic metals, cause, enzyme disruption) -> toxic metals (7801ms) What are enzymes? Certain medical conditions 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Certain medical conditions, can cause this lack of, enzymes) -> Certain medical conditions (6415ms) What are enzymes? fewer than 10,000 people 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (fewer than 10,000 people, are caused by, enzyme deficiencies) -> fewer than 10,000 people (4424ms) What are enzymes? information 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (information, causes, liver enzymes to elevate , how liver works) -> information (4424ms) What are enzymes? Calorie restriction 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Calorie restriction, causes an increase in, protective enzymes) -> Calorie restriction (6970ms) What are enzymes? Vanadium 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Vanadium, causes the inhibition of, certain enzymes) -> Vanadium (7278ms) What are enzymes? the eating habits or lack 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (the eating habits or lack, may cause imbalance in, mouth enzymes) -> the eating habits or lack (10392ms) What are enzymes? the joint lining 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (the joint lining, causes a release of, enzymes) -> the joint lining (8844ms) What are enzymes? the drug 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (the drug, causes a decrease in, enzyme activity) -> the drug (7801ms) What are enzymes? a disease 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (a disease, caused by, enzyme) -> a disease (4424ms) What are enzymes? monosodium glutamate 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (monosodium glutamate, may be caused by, enzyme deficiencies) -> monosodium glutamate (8844ms) What are enzymes? Topic 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Topic, Cause Elevated, Liver Enzymes) -> Topic (10555ms) What are enzymes? the GALC gene 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (the GALC gene, causes, a deficiency of an enzyme) -> the GALC gene (6415ms) What are enzymes? Bluegreens 1.111111111105 What are enzymes? -> $x: ($x, invent, enzyme) -> (Bluegreens, invented, enzymes) -> Bluegreens (4424ms) What are enzymes? Amiodarone Amiodarone 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Amiodarone Amiodarone, causes, elevated liver enzymes) -> Amiodarone Amiodarone (6971ms) What are enzymes? cytochrome P450 induction 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (cytochrome P450 induction, caused, the enzyme deficiency) -> cytochrome P450 induction (6415ms) What are enzymes? glyphosate 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (glyphosate, caused changes in, enzyme activity) -> glyphosate (8844ms) What are enzymes? the GI tract 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (the GI tract, causes, both pancreatic enzyme deficiency) -> the GI tract (7801ms) What are enzymes? The reaction 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (The reaction, is caused by, an enzyme) -> The reaction (3008ms) What are enzymes? Statin drugs 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Statin drugs, can cause elevations in, liver enzymes) -> Statin drugs (4298ms) What are enzymes? Statins 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Statins, cause elevations in, liver enzymes) -> Statins (6970ms) What are enzymes? Rifabutin 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Rifabutin, causes, less enzyme symptoms) -> Rifabutin (6415ms) What are enzymes? Acetaminophen 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Acetaminophen, may cause elevations of, liver enzymes) -> Acetaminophen (3008ms) What are enzymes? hundred 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (hundred, are caused by, defective enzymes) -> hundred (3008ms) What are enzymes? the prostate 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (the prostate, may be caused by, an enzyme) -> the prostate (8921ms) What are enzymes? the inflammation 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (the inflammation, caused by, the enzyme) -> the inflammation (10555ms) What are enzymes? cell membrane 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (cell membrane, causes, enzyme inhibition) -> cell membrane (10392ms) What are enzymes? Gaucher syndromes 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Gaucher syndromes, are caused by, enzyme deficiencies) -> Gaucher syndromes (4297ms) What are enzymes? Releases nitric oxide 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Releases nitric oxide, causes, an enzyme) -> Releases nitric oxide (8844ms) What are enzymes? Autoimmune hepatitis 1.111111111105 What are enzymes? -> $x: ($x, cause, enzyme) -> (Autoimmune hepatitis, causes, the blood liver enzyme) -> Autoimmune hepatitis (8844ms) What are enzymes? Scientists 1.111111111104 What are enzymes? -> $x: ($x, re, enzyme) -> (Scientists, have re-engineered, a human enzyme) -> Scientists (10555ms) What are enzymes? cows 1.111111111104 What are enzymes? -> $x: ($x, re, enzyme) -> (cows, were re-treated with, enzymes) -> cows (10555ms) What are enzymes? the researchers 1.111111111104 What are enzymes? -> $x: ($x, re, enzyme) -> (the researchers, re-inserted, the missing enzyme) -> the researchers (10555ms) What are enzymes? NA 0.888888888883 What are enzymes? -> $x: ($x, describe, enzyme) -> (NA, is described as, a receptor-destroying enzyme) -> NA (10651ms) What are enzymes? Jon Backstrom 0.888888888883 What are enzymes? -> $x: ($x, describe, enzyme) -> (Jon Backstrom, has described a class of, enzymes) -> Jon Backstrom (10651ms) What are enzymes? Gallo 0.888888888883 What are enzymes? -> $x: ($x, describe, enzyme) -> (Gallo, has described, the enzyme reverse transcriptase) -> Gallo (10555ms) What are enzymes? South San Francisco 0.888888888883 What are enzymes? -> $x: ($x, describe, enzyme) -> (South San Francisco, have described, the genes and enzymes) -> South San Francisco (10651ms) What are enzymes? tTG 0.888888888883 What are enzymes? -> $x: ($x, describe, enzyme) -> (tTG, is described as, an ubiquitous enzyme) -> tTG (10652ms) What are enzymes? 3. Briefly 0.888888888883 What are enzymes? -> $x: ($x, describe, enzyme) -> (3. Briefly, describe, a generalized enzyme-substrate reaction) -> 3. Briefly (10651ms) What are enzymes? Kent W. Wilcox 0.888888888883 What are enzymes? -> $x: ($x, describe, enzyme) -> (Kent W. Wilcox, describe the action of, restriction enzymes) -> Kent W. Wilcox (10651ms) What are enzymes? The data sheets 0.888888888883 What are enzymes? -> $x: ($x, describe, enzyme) -> (The data sheets, describe industrial uses of, the enzymes) -> The data sheets (10651ms) What are enzymes? UPRTs 0.888888888883 What are enzymes? -> $x: ($x, describe, enzyme) -> (UPRTs, are described as, non-essential , energy-saving enzymes) -> UPRTs (10651ms) What are enzymes? Chapter 8 further 0.888888888883 What are enzymes? -> $x: ($x, describe, enzyme) -> (Chapter 8 further, describes the role of, hormones and enzymes) -> Chapter 8 further (10651ms) What are enzymes? Dr. Wu 0.888888888883 What are enzymes? -> $x: ($x, describe, enzyme) -> (Dr. Wu, describes the use of, restriction enzymes) -> Dr. Wu (10651ms) What are enzymes? the enzymes 0.888888888883 What are enzymes? -> $x: ($x, describe, enzyme) -> (the enzymes, are described on, the individual enzyme pages) -> the enzymes (10555ms) What are enzymes? online 0.888888888883 What are enzymes? -> $x: ($x, describe, enzyme) -> (online, describes, the newly-identified enzyme) -> online (10651ms) What are enzymes? Plant Physiology 0.888888888883 What are enzymes? -> $x: ($x, describe, enzyme) -> (Plant Physiology, describes the role of, an enzyme) -> Plant Physiology (10651ms) What are enzymes? SOD 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (SOD, was defined as, the enzyme amount) -> SOD (10891ms) What are enzymes? the same characteristics 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (the same characteristics, do, the oxygen metabolising enzyme) -> the same characteristics (10891ms) What are enzymes? A much smaller 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (A much smaller, does of, pancreatic enzymes) -> A much smaller (10891ms) What are enzymes? Unit Definition 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (Unit Definition, is defined as, the amount of enzyme) -> Unit Definition (10687ms) What are enzymes? place 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (place, does, a special enzyme halt) -> place (10790ms) What are enzymes? the cellular level 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (the cellular level, has to do with, enzyme control) -> the cellular level (10756ms) What are enzymes? clinical studies 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (clinical studies, have been done on, proteolytic enzymes) -> clinical studies (10722ms) What are enzymes? increase 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (increase, have to do with, liver enzymes) -> increase (10687ms) What are enzymes? instance 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (instance, do, the enzymes) -> instance (10857ms) What are enzymes? the sample 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (the sample, was done by, enzyme digestion) -> the sample (10651ms) What are enzymes? 6.2 0.888888888882 What are enzymes? -> $x: (enzyme, have point of, $x) -> (The final purified enzyme, had an isoelectric point of, 6.2) -> 6.2 (10722ms) What are enzymes? free lab animals 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (free lab animals, DO get, enzymes) -> free lab animals (10790ms) What are enzymes? skin tissue 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (skin tissue, do, the enzymes) -> skin tissue (10790ms) What are enzymes? high 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (high, does of, natural enzymes) -> high (10857ms) What are enzymes? One activity unit 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (One activity unit, is defined as, the amount of enzyme) -> One activity unit (10756ms) What are enzymes? Nutrients 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (Nutrients, so do, enzymes) -> Nutrients (10722ms) What are enzymes? Strains 0.888888888882 What are enzymes? -> $x: ($x, characterize, enzyme) -> (Strains, may be further characterized by, enzyme immunoassay) -> Strains (10891ms) What are enzymes? The phages 0.888888888882 What are enzymes? -> $x: ($x, characterize, enzyme) -> (The phages, were characterized by, restriction enzyme analysis) -> The phages (10823ms) What are enzymes? Further work 0.888888888882 What are enzymes? -> $x: ($x, characterize, enzyme) -> (Further work, biochemically characterize, the active enzyme) -> Further work (10790ms) What are enzymes? acne conditions 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (acne conditions, will do better with, Pumpkin Enzyme) -> acne conditions (10687ms) What are enzymes? Heat 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (Heat, does destroy, enzymes) -> Heat (10890ms) What are enzymes? alpha-amylase and lipase 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (alpha-amylase and lipase, were defined as, enzyme activity) -> alpha-amylase and lipase (10823ms) What are enzymes? a rare disorder of 0.888888888882 What are enzymes? -> $x: ($x, characterize, enzyme) -> (a rare disorder of, characterized by, deficiency of an enzyme) -> a rare disorder of (10756ms) What are enzymes? Unit Definition One unit 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (Unit Definition One unit, is defined as, the amount of enzyme) -> Unit Definition One unit (10891ms) What are enzymes? The body 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (The body, does produce, enzymes) -> The body (10917ms) What are enzymes? the pancreatic enzymes 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (the pancreatic enzymes, was defined as, enzyme activity) -> the pancreatic enzymes (10722ms) What are enzymes? Researchers 0.888888888882 What are enzymes? -> $x: ($x, characterize, enzyme) -> (Researchers, here are characterizing, both enzymes) -> Researchers (10857ms) What are enzymes? The cutting 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (The cutting, is done with, restriction enzymes) -> The cutting (10756ms) What are enzymes? the same action 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (the same action, do, the enzymes) -> the same action (10756ms) What are enzymes? the big question 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (the big question, Does, digestive enzyme supplementation) -> the big question (10891ms) What are enzymes? One enzyme unit 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (One enzyme unit, was defined as, the amount of enzyme) -> One enzyme unit (10756ms) What are enzymes? figs 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (figs, *do* have tenderizing, enzymes) -> figs (10823ms) What are enzymes? One unit of SOD 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (One unit of SOD, was defined as, the amount of enzyme) -> One unit of SOD (10857ms) What are enzymes? A sustained response 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (A sustained response, is defined as, liver enzymes) -> A sustained response (10857ms) What are enzymes? Subject 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (Subject, do, mash enzymes work and chemistry) -> Subject (10756ms) What are enzymes? colleagues 0.888888888882 What are enzymes? -> $x: ($x, characterize, enzyme) -> (colleagues, characterize, the enzyme) -> colleagues (10687ms) What are enzymes? E. So 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (E. So, do, enzymes lower activation energy requirements) -> E. So (10790ms) What are enzymes? body 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (body, does n?t create, enough enzymes) -> body (10823ms) What are enzymes? the digestive organs 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (the digestive organs, does supplementing with, digestive enzymes) -> the digestive organs (10687ms) What are enzymes? age 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (age, does our production of, digestive enzymes) -> age (10891ms) What are enzymes? One unit 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (One unit, is defined as, the amount of enzyme) -> One unit (10790ms) What are enzymes? One enzyme 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (One enzyme, cannot do, another enzyme) -> One enzyme (10756ms) What are enzymes? yeast 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (yeast, do a poor job of producing, enzymes) -> yeast (10722ms) What are enzymes? HDN 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (HDN, do, the enzymes) -> HDN (10722ms) What are enzymes? reaction 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (reaction, does, this enzyme catalyze) -> reaction (10823ms) What are enzymes? The cells 0.888888888882 What are enzymes? -> $x: ($x, characterize, enzyme) -> (The cells, are characterized by, the enzyme P-type H+K+-ATPase) -> The cells (10823ms) What are enzymes? biofuels 0.888888888882 What are enzymes? -> $x: ($x, characterize, enzyme) -> (biofuels, characterize, enzymes) -> biofuels (10756ms) What are enzymes? Silver 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (Silver, does n?t destroy, beneficial enzymes) -> Silver (10857ms) What are enzymes? the Healthy Juicer 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (the Healthy Juicer, does n?t destroy, certain enzymes) -> the Healthy Juicer (10790ms) What are enzymes? Vitamins and hormones 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (Vitamins and hormones, cannot do their work without, enzymes) -> Vitamins and hormones (10790ms) What are enzymes? an antioxidant 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (an antioxidant, is clinically defined as, ???an enzyme) -> an antioxidant (10917ms) What are enzymes? The attribute name 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (The attribute name, defines the name of, the enzyme) -> The attribute name (10651ms) What are enzymes? hormones 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (hormones, can do any work without, enzymes) -> hormones (10756ms) What are enzymes? ThDP 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (ThDP, did, the enzyme) -> ThDP (10722ms) What are enzymes? extensive research 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (extensive research, was done to identify, enzymes) -> extensive research (10823ms) What are enzymes? the liver 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (the liver, does n?t have, the enzymes) -> the liver (10857ms) What are enzymes? any cell 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (any cell, is being done by, enzymes) -> any cell (10722ms) What are enzymes? the specific research 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (the specific research, has been done on, such enzymes) -> the specific research (10722ms) What are enzymes? implications 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (implications, does block, certain enzymes) -> implications (10722ms) What are enzymes? The searchis 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (The searchis, done for, enzymes) -> The searchis (10823ms) What are enzymes? H2O2 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (H2O2, does, the enzyme catalase) -> H2O2 (10687ms) What are enzymes? much phytic acid 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (much phytic acid, do contain high levels of, enzyme inhibitors) -> much phytic acid (10756ms) What are enzymes? Unknown Author 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (Unknown Author, Does, Your Pet Need Enzymes) -> Unknown Author (10891ms) What are enzymes? the roaches 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (the roaches, did take up, the enzyme) -> the roaches (10823ms) What are enzymes? One unit of activity 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (One unit of activity, is defined as, the amount of enzyme) -> One unit of activity (10651ms) What are enzymes? one SOD unit 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (one SOD unit, is defined as, the amount of enzyme) -> one SOD unit (10790ms) What are enzymes? An E. coli strain 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (An E. coli strain, is defined as, the amount of enzyme) -> An E. coli strain (10756ms) What are enzymes? raw foods 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (raw foods, do contain, enzymes) -> raw foods (10857ms) What are enzymes? obesity 0.888888888882 What are enzymes? -> $x: ($x, characterize, enzyme) -> (obesity, is characterized by, elevated liver enzymes) -> obesity (10891ms) What are enzymes? the unfolding process 0.888888888882 What are enzymes? -> $x: ($x, characterize, enzyme) -> (the unfolding process, characterizes, an enzyme) -> the unfolding process (10687ms) What are enzymes? the plant material 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (the plant material, is currently done by, microbial enzymes) -> the plant material (10722ms) What are enzymes? Objectives Identify 0.888888888882 What are enzymes? -> $x: ($x, characterize, enzyme) -> (Objectives Identify, characterize, enzymes) -> Objectives Identify (10857ms) What are enzymes? Enzymes 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (Enzymes, defined, Digestive enzymes) -> Enzymes (10891ms) What are enzymes? stagnant food damage 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (stagnant food damage, as do, bacterial enzymes) -> stagnant food damage (10891ms) What are enzymes? Debridement 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (Debridement, can be done with, enzymes) -> Debridement (10891ms) What are enzymes? extra-cellular POD 0.888888888882 What are enzymes? -> $x: ($x, characterize, enzyme) -> (extra-cellular POD, characterize, the enzyme) -> extra-cellular POD (10823ms) What are enzymes? Axelrod 0.888888888882 What are enzymes? -> $x: ($x, characterize, enzyme) -> (Axelrod, characterized, the enzyme catechol-O-methyl transferase) -> Axelrod (10687ms) What are enzymes? The catalysis of all biochemical reactions 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (The catalysis of all biochemical reactions, is done by, enzymes) -> The catalysis of all biochemical reactions (10687ms) What are enzymes? Generic Viagra 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (Generic Viagra, does inhibit, this enzyme) -> Generic Viagra (10891ms) What are enzymes? The liver 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (The liver, cannot do its job of regulating, enzymes) -> The liver (10857ms) What are enzymes? Question 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (Question, do, enzymes) -> Question (10790ms) What are enzymes? Sinead 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (Sinead, did, an enzyme peel facial) -> Sinead (10790ms) What are enzymes? the viability 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (the viability, did, the enzyme) -> the viability (10756ms) What are enzymes? Lindmark and M?ller 0.888888888882 What are enzymes? -> $x: ($x, characterize, enzyme) -> (Lindmark and M?ller, were characterizing, the enzymes) -> Lindmark and M?ller (10790ms) What are enzymes? Foods 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (Foods, do contain, enzymes) -> Foods (10721ms) What are enzymes? lactase 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (lactase, is defined as, a digestive enzyme) -> lactase (10687ms) What are enzymes? Manganese 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (Manganese, does function in, enzyme reactions) -> Manganese (10756ms) What are enzymes? A blood test 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (A blood test, will be done routinely to check for, enzymes) -> A blood test (10790ms) What are enzymes? Cellular biologist 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (Cellular biologist, have defined a system of, special enzymes) -> Cellular biologist (10857ms) What are enzymes? students 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (students, do, an indicator enzyme test) -> students (10823ms) What are enzymes? No vitamins or hormones 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (No vitamins or hormones, can do their work without, enzymes) -> No vitamins or hormones (10651ms) What are enzymes? the starch digestion 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (the starch digestion, is done by, these enzymes) -> the starch digestion (10687ms) What are enzymes? The mutation 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (The mutation, was done to keep, the enzyme) -> The mutation (10857ms) What are enzymes? older bicycle racers 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (older bicycle racers, did have a rise in, another enzyme) -> older bicycle racers (10790ms) What are enzymes? brands 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (brands, DO, use enzymes) -> brands (10823ms) What are enzymes? cells 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (cells, DO contain, enzymes) -> cells (10687ms) What are enzymes? doctors 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (doctors, do, a blood test of liver enzymes) -> doctors (10823ms) What are enzymes? Tay-Sachs testing 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (Tay-Sachs testing, is done with, enzyme levels) -> Tay-Sachs testing (10891ms) What are enzymes? Germany 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (Germany, have done extensive research on, enzymes) -> Germany (10756ms) What are enzymes? the cardiologist 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (the cardiologist, did, the cardiac blood enzyme test) -> the cardiologist (10891ms) What are enzymes? activity unit 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (activity unit, is defined as, the needed enzyme) -> activity unit (10687ms) What are enzymes? purified and 0.888888888882 What are enzymes? -> $x: ($x, characterize, enzyme) -> (purified and, characterized, the enzyme) -> purified and (10687ms) What are enzymes? therapeutic advantages 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (therapeutic advantages, do, individual enzymes) -> therapeutic advantages (10722ms) What are enzymes? One unit of enzyme activity 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (One unit of enzyme activity, is defined as, the amount of enzyme) -> One unit of enzyme activity (10823ms) What are enzymes? Junk food 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (Junk food, just does n?t have, enzymes) -> Junk food (10824ms) What are enzymes? 1,25D 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (1,25D, are all also done by, enzymes) -> 1,25D (10722ms) What are enzymes? vitamins and minerals 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (vitamins and minerals, cannot do their jobs without, enzymes) -> vitamins and minerals (10857ms) What are enzymes? a change 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (a change, do to, the enzyme) -> a change (10722ms) What are enzymes? One International Unit 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (One International Unit, is defined as, the amount of enzyme) -> One International Unit (10857ms) What are enzymes? the steam pasteurization process 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (the steam pasteurization process, does n?t hurt, the enzymes) -> the steam pasteurization process (10857ms) What are enzymes? the lab 0.888888888882 What are enzymes? -> $x: ($x, characterize, enzyme) -> (the lab, is characterizing, bacterial enzymes) -> the lab (10790ms) What are enzymes? The hatching enzyme 0.888888888882 What are enzymes? -> $x: ($x, define, enzyme) -> (The hatching enzyme, is defined as, the enzyme) -> The hatching enzyme (10917ms) What are enzymes? the sequences 0.888888888882 What are enzymes? -> $x: ($x, do, enzyme) -> (the sequences, is easily done using, restriction enzymes) -> the sequences (10722ms) What are enzymes? the laboratory 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (the laboratory, have created, a new enzyme model) -> the laboratory (11017ms) What are enzymes? the hurdles 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (the hurdles, are created by, enzymes) -> the hurdles (10968ms) What are enzymes? waste biomass 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (waste biomass, is to find, enzymes) -> waste biomass (10917ms) What are enzymes? Japanese scientists 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Japanese scientists, found another one of, the enzymes) -> Japanese scientists (10968ms) What are enzymes? lead authors Pavel Nikitin 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (lead authors Pavel Nikitin, found, two enzymes) -> lead authors Pavel Nikitin (10942ms) What are enzymes? the literature 0.7777777777720001 What are enzymes? -> $x: ($x, refer, enzyme) -> (the literature, refers to, these enzymes) -> the literature (11018ms) What are enzymes? a scientist 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (a scientist, finds, an unknown enzyme) -> a scientist (11181ms) What are enzymes? Russian researchers 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (Russian researchers, have created a product from, enzymes) -> Russian researchers (11113ms) What are enzymes? codon 102 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (codon 102, creates an additional site for, restriction enzyme) -> codon 102 (11136ms) What are enzymes? the uncommon variants 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (the uncommon variants, were found to affect, the enzyme) -> the uncommon variants (11042ms) What are enzymes? the intestine 0.7777777777720001 What are enzymes? -> $x: ($x, refer, enzyme) -> (the intestine, is sometimes referred to as, the ?super enzyme) -> the intestine (11181ms) What are enzymes? Special formula 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (Special formula, creates, an enzyme barrier) -> Special formula (10993ms) What are enzymes? specific respiratory activities 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (specific respiratory activities, were found solely in, enzymes) -> specific respiratory activities (10917ms) What are enzymes? Curcumin 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Curcumin, is also found to increase, detoxifying enzymes) -> Curcumin (11113ms) What are enzymes? DNA 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (DNA, helps create, enzymes) -> DNA (11066ms) What are enzymes? MSU researchers 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (MSU researchers, found, a moonlighting enzyme) -> MSU researchers (11136ms) What are enzymes? use 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (use, can be found for, this enzyme) -> use (11066ms) What are enzymes? N-glycosylation 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (N-glycosylation, are found in, this enzyme) -> N-glycosylation (11113ms) What are enzymes? EC numbers 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (EC numbers, may be found in, ENZYME) -> EC numbers (11090ms) What are enzymes? the reaction products 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (the reaction products, was found to inhibit, enzyme function) -> the reaction products (11018ms) What are enzymes? 50 residues 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (50 residues, found attached to, various enzymes) -> 50 residues (11018ms) What are enzymes? the Fraunhofer Institute 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (the Fraunhofer Institute, found, the enzyme) -> the Fraunhofer Institute (10968ms) What are enzymes? Zinc 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Zinc, is also found in, antioxidant enzymes and enzymes) -> Zinc (11136ms) What are enzymes? Zn 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Zn, is found in almost, 100 enzymes) -> Zn (11017ms) What are enzymes? hands-on discovery 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (hands-on discovery, create, their own solution enzyme solution) -> hands-on discovery (11018ms) What are enzymes? lignin 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (lignin, was found to be, an enzyme) -> lignin (11018ms) What are enzymes? Clutch 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (Clutch, created of, special enzyme washed leather) -> Clutch (10942ms) What are enzymes? the fragments 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (the fragments, created by, the restriction enzyme) -> the fragments (11158ms) What are enzymes? Molybdenum 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Molybdenum, may be found in, some enzymes) -> Molybdenum (11042ms) What are enzymes? the same 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (the same, create lots of, enzymes) -> the same (10993ms) What are enzymes? Vitamin C 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Vitamin C, find, CoEnzyme Q10) -> Vitamin C (11136ms) What are enzymes? a chemical 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (a chemical, found, both decreased enzyme activity) -> a chemical (11113ms) What are enzymes? 150 residues 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (150 residues, found in, bacterial enzymes) -> 150 residues (11158ms) What are enzymes? Iron 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Iron, is also found in, enzymes) -> Iron (11158ms) What are enzymes? fluoride 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (fluoride, has been found to inhibit, bacterial enzymes) -> fluoride (10968ms) What are enzymes? Free form AAs 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (Free form AAs, can be used to create, enzymes) -> Free form AAs (11158ms) What are enzymes? Similar effects 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Similar effects, were found for, other enzymes) -> Similar effects (11042ms) What are enzymes? the code 0.7777777777720001 What are enzymes? -> $x: ($x, deal with, enzyme) -> (the code, deals with, the restriction enzymes) -> the code (11136ms) What are enzymes? enzymes 0.7777777777720001 What are enzymes? -> $x: ($x, refer, enzyme) -> (enzymes, is referred to as, proteolytic enzymes) -> enzymes (11090ms) What are enzymes? NCBI Entrez 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (NCBI Entrez, finds, restriction enzyme cleavage sites) -> NCBI Entrez (11158ms) What are enzymes? Pantothenic acid 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Pantothenic acid, is found in, two enzymes) -> Pantothenic acid (11066ms) What are enzymes? The greatest care 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (The greatest care, went into creating, Pro Enzymes) -> The greatest care (11113ms) What are enzymes? BCR-ABL 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (BCR-ABL, creates, an abnormal enzyme or protein) -> BCR-ABL (10993ms) What are enzymes? polypeptides 0.7777777777720001 What are enzymes? -> $x: ($x, refer, enzyme) -> (polypeptides, referred to as, enzymes) -> polypeptides (11066ms) What are enzymes? Proteolytic enzyme 0.7777777777720001 What are enzymes? -> $x: ($x, refer, enzyme) -> (Proteolytic enzyme, refers to, all enzymes) -> Proteolytic enzyme (11113ms) What are enzymes? 60 residues 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (60 residues, found in, bacterial enzymes) -> 60 residues (11090ms) What are enzymes? Kornberg 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Kornberg, found, the enzyme DNA ligase) -> Kornberg (10968ms) What are enzymes? Two cases 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Two cases, were found with, normal enzymes) -> Two cases (10917ms) What are enzymes? Codexis scientists 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (Codexis scientists, create, super enzymes) -> Codexis scientists (11158ms) What are enzymes? the values 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (the values, found for, other enzymes) -> the values (10993ms) What are enzymes? even nails 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (even nails, were found to, the enzyme) -> even nails (11066ms) What are enzymes? Novozymes ? researchers 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (Novozymes ? researchers, create multiple variants of, an enzyme) -> Novozymes ? researchers (10942ms) What are enzymes? Research associate Jennifer Seffernick 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Research associate Jennifer Seffernick, found, the enzyme) -> Research associate Jennifer Seffernick (11136ms) What are enzymes? Binuclear iron centers 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Binuclear iron centers, are found in, essential enzymes) -> Binuclear iron centers (11042ms) What are enzymes? Netherlands 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Netherlands, found, that GST enzyme levels) -> Netherlands (11113ms) What are enzymes? tissue 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (tissue, create, antibodies , hormones and enzymes) -> tissue (11018ms) What are enzymes? 2,000 fibrinolytic units 0.7777777777720001 What are enzymes? -> $x: ($x, refer, enzyme) -> (2,000 fibrinolytic units, refers to, the enzyme activity level) -> 2,000 fibrinolytic units (11018ms) What are enzymes? nature 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (nature, created, the enzymes) -> nature (11090ms) What are enzymes? Protease 0.7777777777720001 What are enzymes? -> $x: ($x, refer, enzyme) -> (Protease, refers to, a group of enzymes) -> Protease (11181ms) What are enzymes? the dogma 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (the dogma, found, an enzyme) -> the dogma (10968ms) What are enzymes? mice 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (mice, have found, an enzyme) -> mice (11158ms) What are enzymes? the actives 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (the actives, create, a kinetic enzyme reaction) -> the actives (10917ms) What are enzymes? Green tea 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Green tea, has been found to react with, enzymes) -> Green tea (10942ms) What are enzymes? The active ingredients 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (The active ingredients, are created from, plant enzymes) -> The active ingredients (11090ms) What are enzymes? the pancreas 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (the pancreas, must create, all the enzymes) -> the pancreas (11136ms) What are enzymes? B2 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (B2, is used to create, enzymes) -> B2 (11136ms) What are enzymes? acids 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (acids, creates advanced, glycolytic enzymes) -> acids (11113ms) What are enzymes? NIH 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (NIH, have now found, an enzyme) -> NIH (10968ms) What are enzymes? Peppermint help wounds 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Peppermint help wounds, found, the enzymes) -> Peppermint help wounds (10917ms) What are enzymes? N=1 Japanese researchers 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (N=1 Japanese researchers, found, the enzyme) -> N=1 Japanese researchers (11090ms) What are enzymes? The germination process 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (The germination process, creates a number of, enzymes) -> The germination process (11136ms) What are enzymes? the stomach 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (the stomach, create, less enzymes) -> the stomach (11066ms) What are enzymes? Nellie 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Nellie, found large differences between, enzyme levels) -> Nellie (11113ms) What are enzymes? the journal Science 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (the journal Science, found, an enzyme) -> the journal Science (10993ms) What are enzymes? Amazing 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Amazing, would be to find, enzymes) -> Amazing (11066ms) What are enzymes? the body 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (the body, to create, the enzymes needed) -> the body (11181ms) What are enzymes? Diversa 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (Diversa, created, an enzyme) -> Diversa (11042ms) What are enzymes? a mold 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (a mold, creates, enzymes) -> a mold (10917ms) What are enzymes? diabetic subjects 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (diabetic subjects, found significantly reduced, enzyme secretion) -> diabetic subjects (11158ms) What are enzymes? Telomerase 0.7777777777720001 What are enzymes? -> $x: ($x, refer, enzyme) -> (Telomerase, is often referred to as, ?the immortalizing enzyme?) -> Telomerase (10942ms) What are enzymes? a normal artery system 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (a normal artery system, creates an abnormal balance of, enzymes) -> a normal artery system (11042ms) What are enzymes? 340 pounds 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (340 pounds, found, a lipase enzyme deficiency) -> 340 pounds (10993ms) What are enzymes? Lincoln 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (Lincoln, created, their RNA enzyme) -> Lincoln (10942ms) What are enzymes? the authors 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (the authors, found, the enzymes) -> the authors (11181ms) What are enzymes? the human body 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (the human body, creates, enzymes) -> the human body (11181ms) What are enzymes? Proteolytic enzymes 0.7777777777720001 What are enzymes? -> $x: ($x, refer, enzyme) -> (Proteolytic enzymes, refer to, the various enzymes) -> Proteolytic enzymes (10993ms) What are enzymes? No match 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (No match, found for, enzyme %s) -> No match (10942ms) What are enzymes? the 1 ppm 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (the 1 ppm, found to inhibit, many enzymes) -> the 1 ppm (11113ms) What are enzymes? the lowest dilution 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (the lowest dilution, found in, enzyme blends) -> the lowest dilution (10942ms) What are enzymes? Mouse study 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Mouse study, finds, enzyme injection has lasting effects) -> Mouse study (10942ms) What are enzymes? the bacteria 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (the bacteria, create, enzymes) -> the bacteria (11090ms) What are enzymes? Chromium 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Chromium, has been found in, some enzymes) -> Chromium (11066ms) What are enzymes? investigates 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (investigates, found in, pumpkin enzymes) -> investigates (11158ms) What are enzymes? Chang 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Chang, found, two new enzyme versions) -> Chang (11136ms) What are enzymes? the project 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (the project, successfully created, two functional enzymes) -> the project (11113ms) What are enzymes? 56 Two studies 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (56 Two studies, failed to find, proteolytic enzymes) -> 56 Two studies (11181ms) What are enzymes? the microbes 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (the microbes, create, enzymes) -> the microbes (11136ms) What are enzymes? Chicago 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Chicago, found, enzymes) -> Chicago (10968ms) What are enzymes? The microorganisms 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (The microorganisms, create, their own enzymes) -> The microorganisms (11090ms) What are enzymes? Sprouting 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (Sprouting, creates, enzymes) -> Sprouting (10917ms) What are enzymes? Hard working liver 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (Hard working liver, also creates, digestive enzymes and proteins) -> Hard working liver (10917ms) What are enzymes? United States scientists 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (United States scientists, found, an enzyme) -> United States scientists (11181ms) What are enzymes? carbon and nitrogen 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (carbon and nitrogen, create, enzymes) -> carbon and nitrogen (10968ms) What are enzymes? the proteolytic enzyme 0.7777777777720001 What are enzymes? -> $x: ($x, refer, enzyme) -> (the proteolytic enzyme, referred to as, the ?miracle enzyme?) -> the proteolytic enzyme (11066ms) What are enzymes? An added plus 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (An added plus, was found from, the enzymes) -> An added plus (11158ms) What are enzymes? the term 0.7777777777720001 What are enzymes? -> $x: ($x, refer, enzyme) -> (the term, refers to, an enzyme) -> the term (11113ms) What are enzymes? the biochemists 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (the biochemists, were able to create, an enzyme) -> the biochemists (10993ms) What are enzymes? The researchers 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (The researchers, found, enzymes) -> The researchers (11090ms) What are enzymes? the target protein 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (the target protein, was found to be, the enzyme) -> the target protein (11066ms) What are enzymes? Queensland 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Queensland, have found, two enzymes) -> Queensland (10942ms) What are enzymes? The Scripps Research Institute 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (The Scripps Research Institute, have found, an enzyme) -> The Scripps Research Institute (11181ms) What are enzymes? alcoholism 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (alcoholism, creates an interference in, the enzymes) -> alcoholism (11066ms) What are enzymes? New copies 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (New copies, are created by, enzymes) -> New copies (11090ms) What are enzymes? G6PDH 0.7777777777720001 What are enzymes? -> $x: ($x, happen to, enzyme) -> (G6PDH, happens to be, the first enzyme) -> G6PDH (11158ms) What are enzymes? Protein 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (Protein, creates, digestive enzymes) -> Protein (10968ms) What are enzymes? absorption 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (absorption, creates, its own enzymes) -> absorption (11182ms) What are enzymes? Double-stranded RNA molecules 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Double-stranded RNA molecules, are found by, an enzyme) -> Double-stranded RNA molecules (11158ms) What are enzymes? norepinephrine 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (norepinephrine, is created by, enzymes) -> norepinephrine (11113ms) What are enzymes? primary structure 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (primary structure, was found to be identical with, enzymes) -> primary structure (11136ms) What are enzymes? Cellulosic ethanol 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (Cellulosic ethanol, is created by using, enzymes) -> Cellulosic ethanol (11042ms) What are enzymes? the two axes and briefly 0.7777777777720001 What are enzymes? -> $x: ($x, happen to, enzyme) -> (the two axes and briefly, is happening to, the enzymes) -> the two axes and briefly (11158ms) What are enzymes? a molecule 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (a molecule, created by, an enzyme) -> a molecule (10993ms) What are enzymes? The study 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (The study, found, a group of ancient enzymes) -> The study (10968ms) What are enzymes? The activities 0.7777777777720001 What are enzymes? -> $x: ($x, refer, enzyme) -> (The activities, referred to as, ecto-enzymes) -> The activities (10942ms) What are enzymes? The non-protein portion 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (The non-protein portion, found in, some enzymes) -> The non-protein portion (11042ms) What are enzymes? new prescription drugs 0.7777777777720001 What are enzymes? -> $x: ($x, refer, enzyme) -> (new prescription drugs, referred to as, enzymes) -> new prescription drugs (10942ms) What are enzymes? The group 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (The group, has found, these enzymes) -> The group (11136ms) What are enzymes? thyroid med 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (thyroid med, recently found out, my enzymes) -> thyroid med (11018ms) What are enzymes? Cellulase 0.7777777777720001 What are enzymes? -> $x: ($x, refer, enzyme) -> (Cellulase, refers to, a family of enzymes) -> Cellulase (10993ms) What are enzymes? The packages 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (The packages, create, classes for restriction enzymes) -> The packages (11113ms) What are enzymes? a high carbohydrate 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (a high carbohydrate, have been found to develop, enzymes) -> a high carbohydrate (11090ms) What are enzymes? Professor Gasser?s group 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (Professor Gasser?s group, only found, the enzymes) -> Professor Gasser?s group (11018ms) What are enzymes? the scientists 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (the scientists, found, the new enzyme) -> the scientists (11136ms) What are enzymes? Redwood City 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (Redwood City, has created a range of, enzymes) -> Redwood City (10993ms) What are enzymes? restover 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (restover, Find, restriction enzymes producing specific overhang) -> restover (10993ms) What are enzymes? active dressings 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (active dressings, create a synthetic version of, the enzymes) -> active dressings (11090ms) What are enzymes? PM MSU researchers 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (PM MSU researchers, found, a moonlighting enzyme) -> PM MSU researchers (11158ms) What are enzymes? the theory 0.7777777777720001 What are enzymes? -> $x: ($x, deal with, enzyme) -> (the theory, dealt with, respiratory enzymes) -> the theory (11181ms) What are enzymes? substrates 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (substrates, have been found for, this enzyme) -> substrates (11090ms) What are enzymes? an enzyme potential 0.7777777777720001 What are enzymes? -> $x: ($x, refer, enzyme) -> (an enzyme potential, referred to as, enzyme reserves) -> an enzyme potential (11042ms) What are enzymes? the germination 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (the germination, creates, enzymes) -> the germination (10942ms) What are enzymes? blood test 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (blood test, found, liver enzymes) -> blood test (11042ms) What are enzymes? L-Carnitine 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (L-Carnitine, is found in, enzyme complexes) -> L-Carnitine (10968ms) What are enzymes? studies 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (studies, have found, the enzyme) -> studies (10942ms) What are enzymes? heat-treated diet 0.7777777777720001 What are enzymes? -> $x: ($x, found, enzyme) -> (heat-treated diet, have been found to develop, enzymes) -> heat-treated diet (11042ms) What are enzymes? The pancreas 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (The pancreas, will create, the necessary enzymes) -> The pancreas (11113ms) What are enzymes? The first step 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (The first step, is to create, RNA enzymes) -> The first step (10942ms) What are enzymes? Exercise 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (Exercise, creates, enzymes) -> Exercise (11090ms) What are enzymes? probiotics 0.7777777777720001 What are enzymes? -> $x: ($x, create, enzyme) -> (probiotics, create, more enzymes) -> probiotics (10968ms) What are enzymes? Dutch Greens ? 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Dutch Greens ?, is rich in, enzymes) -> Dutch Greens ? (11289ms) What are enzymes? digestion 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (digestion, is to supplement with, enzymes) -> digestion (11627ms) What are enzymes? 31 Wheat grass juice 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (31 Wheat grass juice, is high in, enzymes) -> 31 Wheat grass juice (11447ms) What are enzymes? The leukocytes 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (The leukocytes, are rich in, enzymes) -> The leukocytes (11611ms) What are enzymes? food companies 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (food companies, are starting to use, enzymes) -> food companies (11556ms) What are enzymes? 20 minutes 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (enzymes, is only about, 20 minutes) -> 20 minutes (11247ms) What are enzymes? Fresh Pineapple ? Fresh pineapple fruit 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Fresh Pineapple ? Fresh pineapple fruit, is rich in, enzymes) -> Fresh Pineapple ? Fresh pineapple fruit (11502ms) What are enzymes? Melatonin 0.777777777771 What are enzymes? -> $x: ($x, influence, enzyme) -> (Melatonin, also influences, both antioxidant enzyme activity) -> Melatonin (11556ms) What are enzymes? Organic Barley Barley 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Organic Barley Barley, is rich in, enzymes) -> Organic Barley Barley (11349ms) What are enzymes? Sulphoraphane 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (Sulphoraphane, is believed to stimulate, enzymes) -> Sulphoraphane (11225ms) What are enzymes? papaya , kiwi and pineapple 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (papaya , kiwi and pineapple, are naturally high in, enzymes) -> papaya , kiwi and pineapple (11408ms) What are enzymes? no inflammatory response 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (no inflammatory response, can be mounted without, enzymes) -> no inflammatory response (11408ms) What are enzymes? saliva 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (saliva, consists of, enzymes) -> saliva (11484ms) What are enzymes? Nitric oxide 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Nitric oxide, can activate, enzymes) -> Nitric oxide (11556ms) What are enzymes? 5-8 percent protein 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (enzymes, is only about, 5-8 percent protein) -> 5-8 percent protein (11644ms) What are enzymes? Bio Term Methyl transferase 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Bio Term Methyl transferase, is, Enzymes) -> Bio Term Methyl transferase (11573ms) What are enzymes? Sulphur 0.777777777771 What are enzymes? -> $x: ($x, influence, enzyme) -> (Sulphur, influences, the enzyme metabolism) -> Sulphur (11627ms) What are enzymes? EcoRV and HindIII 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (EcoRV and HindIII, are, enzymes) -> EcoRV and HindIII (11289ms) What are enzymes? Directed evolution 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (Directed evolution, has been used to produce, enzymes) -> Directed evolution (11268ms) What are enzymes? foods 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (foods, is known to destroy, enzymes) -> foods (11466ms) What are enzymes? soaked nuts 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (soaked nuts, are rich in, enzymes) -> soaked nuts (11309ms) What are enzymes? animal or vegetable sources 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (animal or vegetable sources, can replace, enzymes) -> animal or vegetable sources (11691ms) What are enzymes? erythromycin 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (erythromycin, can actually impair, enzymes) -> erythromycin (11427ms) What are enzymes? the technique 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (the technique, is limited to, enzymes) -> the technique (11247ms) What are enzymes? chronic fatigue 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (chronic fatigue, can improve with, enzymes) -> chronic fatigue (11289ms) What are enzymes? Toxins 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Toxins, can bind to, enzymes) -> Toxins (11247ms) What are enzymes? RNA 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (RNA, can also act as, enzymes) -> RNA (11644ms) What are enzymes? Even a cold 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Even a cold, can be obtained by, Enzymes) -> Even a cold (11349ms) What are enzymes? The research alliance 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (The research alliance, is expected to use, enzymes) -> The research alliance (11691ms) What are enzymes? remodeling 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (remodeling, is to use, enzymes) -> remodeling (11767ms) What are enzymes? Substrates 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (Substrates, are bound to, enzymes) -> Substrates (11268ms) What are enzymes? living organisms 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (living organisms, can produce, enzymes) -> living organisms (11736ms) What are enzymes? Alpha-glocosidases 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Alpha-glocosidases, are, enzymes) -> Alpha-glocosidases (11225ms) What are enzymes? Raw apple cider vinegar 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Raw apple cider vinegar, is rich in, enzymes) -> Raw apple cider vinegar (11484ms) What are enzymes? Phen375 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (Phen375, is consists of, 5 enzyme enhancers) -> Phen375 (11753ms) What are enzymes? The idea 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (The idea, is to use, enzymes) -> The idea (11225ms) What are enzymes? CaBP-HA complex 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (CaBP-HA complex, is subjected to, enzymes) -> CaBP-HA complex (11676ms) What are enzymes? every function 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (Enzymes, are also necessary for just about, every function) -> every function (11556ms) What are enzymes? cadmium and lead 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (cadmium and lead, are highly toxic to, enzymes) -> cadmium and lead (11389ms) What are enzymes? Shiitake 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Shiitake, is also rich in, enzymes) -> Shiitake (11675ms) What are enzymes? B-complex and K vitamins 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (B-complex and K vitamins, are important catalysts to, enzymes) -> B-complex and K vitamins (11247ms) What are enzymes? interest 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (interest, is, enzymes) -> interest (11660ms) What are enzymes? 1996 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (the HCV N53 protease enzyme, was first written about in, 1996) -> 1996 (11204ms) What are enzymes? mangoes 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (mangoes, are all high in, enzymes) -> mangoes (11767ms) What are enzymes? Beta-lactamases 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Beta-lactamases, are, enzymes) -> Beta-lactamases (11289ms) What are enzymes? lipoprotein-specific enzymes 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (lipoprotein-specific enzymes, be, enzymes) -> lipoprotein-specific enzymes (11627ms) What are enzymes? Tobacco smoke 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (Tobacco smoke, is known to induce, enzymes) -> Tobacco smoke (11408ms) What are enzymes? The probe 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (The probe, consists of, an enzyme electrode) -> The probe (11484ms) What are enzymes? a 100 % Food vegan supplement 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (a 100 % Food vegan supplement, is intended to supply, enzymes) -> a 100 % Food vegan supplement (11330ms) What are enzymes? Not a single cellular reaction 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Not a single cellular reaction, can occur without, enzymes) -> Not a single cellular reaction (11573ms) What are enzymes? Food irradiation 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Food irradiation, can damage, enzymes) -> Food irradiation (11767ms) What are enzymes? aloe vera juice 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (aloe vera juice, are rich in, enzymes) -> aloe vera juice (11447ms) What are enzymes? observational new drugs 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (observational new drugs, can examine with, enzymes) -> observational new drugs (11736ms) What are enzymes? oligonucleotides of RNA 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (oligonucleotides of RNA, can act like, enzymes) -> oligonucleotides of RNA (11753ms) What are enzymes? Exonucleases 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Exonucleases, are, enzymes) -> Exonucleases (11752ms) What are enzymes? The sensor 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (The sensor, consists of, a DNA enzyme strand) -> The sensor (11329ms) What are enzymes? the rhythms 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (the rhythms, can induce, enzymes) -> the rhythms (11408ms) What are enzymes? Examples of proteins 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Examples of proteins, are, enzymes) -> Examples of proteins (11573ms) What are enzymes? proteins 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (proteins, are, enzymes) -> proteins (11447ms) What are enzymes? wool carpets 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (wool carpets, can be damaged by, enzymes) -> wool carpets (11706ms) What are enzymes? sprouts 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (sprouts, are rich in, enzymes) -> sprouts (11767ms) What are enzymes? pH 0.777777777771 What are enzymes? -> $x: ($x, influence, enzyme) -> (pH, would influence the activity of, the salivary enzyme amylase) -> pH (11736ms) What are enzymes? colloidal silver particles 0.777777777771 What are enzymes? -> $x: ($x, influence, enzyme) -> (colloidal silver particles, influence, the enzymes) -> colloidal silver particles (11181ms) What are enzymes? Raw vegetables 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Raw vegetables, are rich in, enzymes) -> Raw vegetables (11753ms) What are enzymes? target tissue specificity 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (target tissue specificity, is, enzyme) -> target tissue specificity (11594ms) What are enzymes? Viruses 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Viruses, can also contain, enzymes) -> Viruses (11502ms) What are enzymes? Raw goat milk 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Raw goat milk, is rich in, enzymes) -> Raw goat milk (11427ms) What are enzymes? familiar and relevant catalysts 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (familiar and relevant catalysts, are, enzymes) -> familiar and relevant catalysts (11289ms) What are enzymes? vitamins 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (vitamins, may be tightly bound to, enzymes) -> vitamins (11721ms) What are enzymes? the latter 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (the latter, consists of, an enzyme papain) -> the latter (11611ms) What are enzymes? Adrenergic receptors 0.777777777771 What are enzymes? -> $x: ($x, classify as, enzyme) -> (Adrenergic receptors, are classified as, enzymes) -> Adrenergic receptors (11676ms) What are enzymes? genes 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (genes, are involved in determining, enzymes) -> genes (11484ms) What are enzymes? Klibanov 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Klibanov, are, enzymes) -> Klibanov (11722ms) What are enzymes? Vegetable juices 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Vegetable juices, are rich in, enzymes) -> Vegetable juices (11408ms) What are enzymes? The carbohydrates 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (The carbohydrates, consist of, enzymes) -> The carbohydrates (11706ms) What are enzymes? the excess phenylalanine 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (the excess phenylalanine, can inhibit, enzymes) -> the excess phenylalanine (11226ms) What are enzymes? biological systems 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (biological systems, are, enzymes) -> biological systems (11427ms) What are enzymes? the space 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (the space, are, enzymes) -> the space (11643ms) What are enzymes? Happy 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Happy, are, enzymes) -> Happy (11676ms) What are enzymes? Plasminogen activators 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Plasminogen activators, are, enzymes) -> Plasminogen activators (11484ms) What are enzymes? the ingredients 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (the ingredients, are, enzymes) -> the ingredients (11466ms) What are enzymes? 3.Ozone 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (3.Ozone, can decompose, enzyme) -> 3.Ozone (11520ms) What are enzymes? water days 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (water days, are, enzymes) -> water days (11767ms) What are enzymes? glutathione 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (glutathione, are, enzymes) -> glutathione (11502ms) What are enzymes? Bakery workers 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Bakery workers, can become sensitised to, enzymes) -> Bakery workers (11752ms) What are enzymes? 70 and 80 nM 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (the fully reduced enzyme, are about, 70 and 80 nM) -> 70 and 80 nM (11538ms) What are enzymes? Karbo Combo 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (Karbo Combo, consists of, encapsulated enzymes) -> Karbo Combo (11389ms) What are enzymes? The Nano-Lipobelle material 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (The Nano-Lipobelle material, consists of, CoEnzyme Q10) -> The Nano-Lipobelle material (11502ms) What are enzymes? Textile Textile industry 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Textile Textile industry, can benefit from, enzymes) -> Textile Textile industry (11389ms) What are enzymes? large molecules 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (large molecules, to be broken down by, enzymes) -> large molecules (11427ms) What are enzymes? modern drugs 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (modern drugs, are designed to target, enzymes) -> modern drugs (11691ms) What are enzymes? the same time 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (all these needed enzymes, are made about, the same time) -> the same time (11427ms) What are enzymes? the group 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (the group, consisting of, enzymes) -> the group (11484ms) What are enzymes? blood inhibitors 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (blood inhibitors, consist of, certain digestive enzymes) -> blood inhibitors (11736ms) What are enzymes? disease 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (disease, are, enzymes) -> disease (11594ms) What are enzymes? The prothrombinase complex 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (The prothrombinase complex, consists of, the enzyme factor Xa) -> The prothrombinase complex (11349ms) What are enzymes? Pollen 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Pollen, is also rich in, enzymes) -> Pollen (11691ms) What are enzymes? a legendary aroma 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (a legendary aroma, is due to, enzymes) -> a legendary aroma (11538ms) What are enzymes? Potatoes 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (Potatoes, consist of, a skin-lightening enzyme catecholase) -> Potatoes (11408ms) What are enzymes? the cancer patients 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (the cancer patients, were, enzymes) -> the cancer patients (11427ms) What are enzymes? the topical application 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (the topical application, is limited to, enzymes) -> the topical application (11706ms) What are enzymes? plants 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (plants, are, enzymes) -> plants (11447ms) What are enzymes? Pet digestion 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Pet digestion, can be improved by, enzymes) -> Pet digestion (11329ms) What are enzymes? transport proteins 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (transport proteins, are similar to, enzymes) -> transport proteins (11502ms) What are enzymes? the complex 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (the complex, are tightly bound to, enzymes) -> the complex (11676ms) What are enzymes? Kinases 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Kinases, are, enzymes) -> Kinases (11502ms) What are enzymes? particular interest 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (particular interest, is, enzymes) -> particular interest (11349ms) What are enzymes? nutritional deficiencies 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (nutritional deficiencies, is rich in, enzymes) -> nutritional deficiencies (11268ms) What are enzymes? Bromelain 0.777777777771 What are enzymes? -> $x: ($x, classify as, enzyme) -> (Bromelain, is classified as, a proteolytic enzyme) -> Bromelain (11330ms) What are enzymes? the assays 0.777777777771 What are enzymes? -> $x: ($x, influence, enzyme) -> (the assays, was greatly influenced by, the enzyme system) -> the assays (11204ms) What are enzymes? breakfast 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (breakfast, is supposed to provide, enzymes) -> breakfast (11309ms) What are enzymes? microinjection 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (microinjection, can be cleaved with, enzymes) -> microinjection (11309ms) What are enzymes? a strong foundation 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (a strong foundation, is abundant in, enzymes) -> a strong foundation (11369ms) What are enzymes? The stuff 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (The stuff, consisted of, an enzyme) -> The stuff (11247ms) What are enzymes? an additional _base_ 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (an additional _base_, can be helped with, enzymes) -> an additional _base_ (11247ms) What are enzymes? venom 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (venom, are, enzymes) -> venom (11484ms) What are enzymes? the temperature 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (the temperature, to be destroyed, enzymes) -> the temperature (11556ms) What are enzymes? Raw fruits and vegetables 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Raw fruits and vegetables, are rich source in, enzymes) -> Raw fruits and vegetables (11573ms) What are enzymes? Each one 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (Each one, consists of, three enzymes) -> Each one (11330ms) What are enzymes? The vast majority of proteins 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (The vast majority of proteins, are, enzymes) -> The vast majority of proteins (11520ms) What are enzymes? the hydroxyl radical 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (the hydroxyl radical, can inactivate, enzymes) -> the hydroxyl radical (11447ms) What are enzymes? hydrophobic side chains 0.777777777771 What are enzymes? -> $x: ($x, influence, enzyme) -> (hydrophobic side chains, can influence, enzyme catalysis) -> hydrophobic side chains (11573ms) What are enzymes? Cooking foods 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (Cooking foods, is known to destroy, enzymes) -> Cooking foods (11369ms) What are enzymes? 100,000 times 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (Enzyme performance, has been improved by about, 100,000 times) -> 100,000 times (11289ms) What are enzymes? Biotin 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (Biotin, is attached to, enzymes) -> Biotin (11573ms) What are enzymes? the actual motions 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (various enzymes, much is known about, the actual motions) -> the actual motions (11722ms) What are enzymes? The smooth ER 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (The smooth ER, is rich in, enzymes) -> The smooth ER (11753ms) What are enzymes? the produce 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (the produce, are bonded to, enzymes) -> the produce (11349ms) What are enzymes? a higher calorie content 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (a higher calorie content, are richer in, enzymes) -> a higher calorie content (11369ms) What are enzymes? Papaya 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Papaya, is also rich in, enzymes) -> Papaya (11628ms) What are enzymes? The average American diet 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (The average American diet, is lacking in, enzymes) -> The average American diet (11627ms) What are enzymes? PCBs 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (PCBs, were used to induce, enzymes) -> PCBs (11573ms) What are enzymes? half 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (enzymes, is about, half) -> half (11706ms) What are enzymes? The actual affected 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (The actual affected, consists of, a lot more enzymes) -> The actual affected (11753ms) What are enzymes? chondrocytes 0.777777777771 What are enzymes? -> $x: ($x, withstand, enzyme) -> (chondrocytes, withstand, CYP enzymes) -> chondrocytes (11466ms) What are enzymes? the most 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (the most, were, enzymes) -> the most (11502ms) What are enzymes? feed formulation 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (feed formulation, is to use, enzymes) -> feed formulation (11611ms) What are enzymes? 20 % 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (this important enzyme, was about, 20 %) -> 20 % (11247ms) What are enzymes? the food 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (the food, to be digested by, enzymes) -> the food (11627ms) What are enzymes? fresh juices 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (fresh juices, are high in, enzymes) -> fresh juices (11466ms) What are enzymes? any extreme temperature 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (any extreme temperature, can destroy, enzymes) -> any extreme temperature (11330ms) What are enzymes? a raw food diet 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (a raw food diet, consisting of, enzyme-rich raw foods) -> a raw food diet (11247ms) What are enzymes? high doses 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (high doses, can damage, enzymes) -> high doses (11520ms) What are enzymes? genetic information 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (genetic information, can also function as, enzymes) -> genetic information (11484ms) What are enzymes? FRUITS 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (FRUITS, is an agricultural product that contains, ENZYMES) -> FRUITS (11691ms) What are enzymes? a sea germ 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (a sea germ, can furnish, enzymes) -> a sea germ (11691ms) What are enzymes? Raw foods 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Raw foods, can attract, enzymes) -> Raw foods (11722ms) What are enzymes? Green barley leaves 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Green barley leaves, are rich in, enzymes) -> Green barley leaves (11556ms) What are enzymes? Greens 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Greens, are rich in, enzymes) -> Greens (11676ms) What are enzymes? 1 mistake 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (other repair enzymes, is about, 1 mistake) -> 1 mistake (11706ms) What are enzymes? PGH2 synthase 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (PGH2 synthase, actually consists of, two enzyme components) -> PGH2 synthase (11427ms) What are enzymes? a third 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (enzyme activity level, was about, a third) -> a third (11408ms) What are enzymes? cooking 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (cooking, is so damaging to, enzymes) -> cooking (11573ms) What are enzymes? A different strategy 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (A different strategy, is to concentrate on, enzymes) -> A different strategy (11644ms) What are enzymes? Recombinases 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Recombinases, are, enzymes) -> Recombinases (11204ms) What are enzymes? A freshly caught mouse 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (A freshly caught mouse, is rich in, enzymes) -> A freshly caught mouse (11721ms) What are enzymes? life 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (life, can be linked to, enzymes) -> life (11767ms) What are enzymes? diagram 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (diagram, are, enzymes) -> diagram (11389ms) What are enzymes? pancreas 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (pancreas, can pour out, enzymes) -> pancreas (11691ms) What are enzymes? old the grass 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (old the grass, is much higher in, enzymes) -> old the grass (11706ms) What are enzymes? Dead Sea Mud 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (Dead Sea Mud, is known to activate, enzymes) -> Dead Sea Mud (11447ms) What are enzymes? The latter 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (The latter, can be digested by, enzymes) -> The latter (11660ms) What are enzymes? Not all proteins 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Not all proteins, are, enzymes) -> Not all proteins (11502ms) What are enzymes? Fresh juices and smoothies 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Fresh juices and smoothies, are also abundant in, enzymes) -> Fresh juices and smoothies (11330ms) What are enzymes? each mutation 0.777777777771 What are enzymes? -> $x: ($x, influence, enzyme) -> (each mutation, has a particular influence on, enzyme activity) -> each mutation (11408ms) What are enzymes? the cyst 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (the cyst, consists of, high powered digestive enzymes) -> the cyst (11594ms) What are enzymes? Carboxylesterases 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Carboxylesterases, are, enzymes) -> Carboxylesterases (11644ms) What are enzymes? Lipases Lipases 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Lipases Lipases, are, enzymes) -> Lipases Lipases (11538ms) What are enzymes? Proteinases 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Proteinases, are, enzymes) -> Proteinases (11289ms) What are enzymes? the basic code 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (the basic code, is present in, enzyme) -> the basic code (11594ms) What are enzymes? Wheatgrass juice 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Wheatgrass juice, is high in, enzymes) -> Wheatgrass juice (11466ms) What are enzymes? miso soup 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (miso soup, is recommended to provide, enzymes) -> miso soup (11427ms) What are enzymes? Nation 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Nation, can exhaust, enzymes) -> Nation (11736ms) What are enzymes? Genetic manipulation 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (Genetic manipulation, has been used to transfer, enzymes) -> Genetic manipulation (11660ms) What are enzymes? AB Enzymes AB Enzymes 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (AB Enzymes AB Enzymes, is working to develop, enzymes) -> AB Enzymes AB Enzymes (11538ms) What are enzymes? agency 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (agency, can swell, enzyme) -> agency (11611ms) What are enzymes? A great deal 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (A great deal, can be learned about, enzymes) -> A great deal (11389ms) What are enzymes? high a temperature 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (high a temperature, can kill, enzymes) -> high a temperature (11676ms) What are enzymes? Pemetrexed 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (Pemetrexed, is designed to block, enzymes) -> Pemetrexed (11538ms) What are enzymes? commercial diets 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (commercial diets, can be missing, enzymes) -> commercial diets (11753ms) What are enzymes? The answer 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (The answer, is, enzymes) -> The answer (11627ms) What are enzymes? the final week 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (the final week, should consist of, digestive enzymes) -> the final week (11691ms) What are enzymes? Fresh fruit and vegetable juices 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Fresh fruit and vegetable juices, also are rich in, enzymes) -> Fresh fruit and vegetable juices (11753ms) What are enzymes? cleaning goal 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (cleaning goal, are, enzymes) -> cleaning goal (11627ms) What are enzymes? uncharacterized mammalian proteins 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (uncharacterized mammalian proteins, are, enzymes) -> uncharacterized mammalian proteins (11556ms) What are enzymes? the plant 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (the plant, is rich in, enzymes) -> the plant (11706ms) What are enzymes? Free p24 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Free p24, can be measured with, enzyme) -> Free p24 (11660ms) What are enzymes? The necessary factors 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (The necessary factors, are, enzymes) -> The necessary factors (11538ms) What are enzymes? nuts 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (nuts, are all rich in, enzymes) -> nuts (11330ms) What are enzymes? Pineapples 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Pineapples, are rich in, enzymes) -> Pineapples (11594ms) What are enzymes? headaches 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (headaches, can be alleviated by, enzymes) -> headaches (11369ms) What are enzymes? The ripening process 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (The ripening process, is due to living, enzymes) -> The ripening process (11330ms) What are enzymes? The third ingredient 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (The third ingredient, is, enzymes) -> The third ingredient (11556ms) What are enzymes? 50 % 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (the co-enzyme, is reduced to about, 50 %) -> 50 % (11691ms) What are enzymes? a lot better 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (a lot better, is, enzymes) -> a lot better (11736ms) What are enzymes? Drilling 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Drilling, can exhaust, enzymes) -> Drilling (11556ms) What are enzymes? bacterial cells 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (bacterial cells, can change patterns of, enzymes) -> bacterial cells (11594ms) What are enzymes? nutrition 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (nutrition, will be deficient in, enzymes) -> nutrition (11594ms) What are enzymes? Consumers 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Consumers, can be exposed to, enzymes) -> Consumers (11627ms) What are enzymes? The majority of these proteins 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (The majority of these proteins, are, enzymes) -> The majority of these proteins (11644ms) What are enzymes? overall health 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (overall health, are, enzymes) -> overall health (11676ms) What are enzymes? the plant matter 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (the plant matter, will be exposed to, enzymes) -> the plant matter (11538ms) What are enzymes? chemical compounds 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (chemical compounds, are used to control, enzymes) -> chemical compounds (11349ms) What are enzymes? About 4,000 reactions 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (About 4,000 reactions, to be catalyzed by, enzymes) -> About 4,000 reactions (11181ms) What are enzymes? Adjuncts 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Adjuncts, usually are lacking in, enzymes) -> Adjuncts (11484ms) What are enzymes? a hundred times greater 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (these enzymes, is about, a hundred times greater) -> a hundred times greater (11389ms) What are enzymes? Drought 0.777777777771 What are enzymes? -> $x: ($x, influence, enzyme) -> (Drought, influences the activity of, enzymes) -> Drought (11706ms) What are enzymes? Proteases 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Proteases, are, enzymes) -> Proteases (11736ms) What are enzymes? such genes 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (such genes, are, enzymes) -> such genes (11309ms) What are enzymes? the adiponutrin gene 0.777777777771 What are enzymes? -> $x: ($x, influence, enzyme) -> (the adiponutrin gene, influences, liver enzyme levels) -> the adiponutrin gene (11706ms) What are enzymes? one-third 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (Abnormal liver enzyme levels, are also found in about, one-third) -> one-third (11573ms) What are enzymes? Multiple changes 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Multiple changes, were noted in, enzymes) -> Multiple changes (11369ms) What are enzymes? Fresh vegetable juices 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Fresh vegetable juices, are also rich in, enzymes) -> Fresh vegetable juices (11447ms) What are enzymes? Yogurt 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Yogurt, is rich in living, enzymes) -> Yogurt (11349ms) What are enzymes? Organic foods 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Organic foods, are rich in, enzymes) -> Organic foods (11556ms) What are enzymes? globular proteins 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (globular proteins, can act as, : - Enzymes) -> globular proteins (11676ms) What are enzymes? Co-factors 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Co-factors, are, enzymes) -> Co-factors (11247ms) What are enzymes? living foods 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (living foods, are rich in, enzymes) -> living foods (11289ms) What are enzymes? The goal 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (The goal, was to end up with, enzymes) -> The goal (11538ms) What are enzymes? a 100 % Food supplement 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (a 100 % Food supplement, is intended to supply, enzymes) -> a 100 % Food supplement (11389ms) What are enzymes? malt 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (malt, can be replaced by, enzymes) -> malt (11466ms) What are enzymes? one-half 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (Abnormal liver enzyme levels, are also found in about, one-half) -> one-half (11644ms) What are enzymes? type 2 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (type 2, consisted of, three enzymes) -> type 2 (11611ms) What are enzymes? papaya 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (papaya, consists of, enzymes) -> papaya (11289ms) What are enzymes? the catalyst 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (the catalyst, is, enzymes) -> the catalyst (11736ms) What are enzymes? Dietary supplements 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (Dietary supplements, should consists of, enzymes) -> Dietary supplements (11722ms) What are enzymes? the germ tube 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (the germ tube, can release, enzymes) -> the germ tube (11594ms) What are enzymes? water 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (water, is needed to successfully use, enzymes) -> water (11573ms) What are enzymes? A number of 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (A number of, consisting of, herbs , enzyme and tea) -> A number of (11247ms) What are enzymes? Cofactors 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Cofactors, are, enzymes) -> Cofactors (11408ms) What are enzymes? The pathway 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (The pathway, consists of, three enzymes/enzyme complexes) -> The pathway (11722ms) What are enzymes? investigators 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (investigators, can restore activity of, enzymes) -> investigators (11660ms) What are enzymes? heat 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (heat, can destroy, enzymes) -> heat (11408ms) What are enzymes? Barley Grass 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Barley Grass, is high in, enzymes) -> Barley Grass (11389ms) What are enzymes? even 100 % 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (even 100 %, is lacking in, enzymes) -> even 100 % (11706ms) What are enzymes? the size difference 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (the size difference, is due to, enzymes) -> the size difference (11753ms) What are enzymes? fried and boiled eggs 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (fried and boiled eggs, can be converted by, enzymes) -> fried and boiled eggs (11466ms) What are enzymes? rennet 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (rennet, consists of, enzymes) -> rennet (11611ms) What are enzymes? not all proteins 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (not all proteins, are, enzymes) -> not all proteins (11611ms) What are enzymes? A raw foods diet 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (A raw foods diet, is high in, enzymes) -> A raw foods diet (11611ms) What are enzymes? Two-row malt 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Two-row malt, is also lower in, enzymes) -> Two-row malt (11721ms) What are enzymes? inflammation 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (inflammation, can be blocked by, enzymes) -> inflammation (11573ms) What are enzymes? Proteins 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Proteins, can act as, enzymes) -> Proteins (11556ms) What are enzymes? Fresh fruit and vegetables 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Fresh fruit and vegetables, are rich in, enzymes) -> Fresh fruit and vegetables (11447ms) What are enzymes? drug receptors 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (drug receptors, are, enzymes) -> drug receptors (11226ms) What are enzymes? Vitamins 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (Vitamins, are similar to, enzymes) -> Vitamins (11502ms) What are enzymes? spliceosomes and ribosomes 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (spliceosomes and ribosomes, is similar to, enzymes) -> spliceosomes and ribosomes (11466ms) What are enzymes? bananas , pineapple and papaya 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (bananas , pineapple and papaya, are high in, enzymes) -> bananas , pineapple and papaya (11349ms) What are enzymes? Oxygen toxicity 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Oxygen toxicity, can deactivate, enzymes) -> Oxygen toxicity (11226ms) What are enzymes? A micro-organism 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (A micro-organism, consists of, cells and enzymes) -> A micro-organism (11466ms) What are enzymes? the marine bacteria 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (the marine bacteria, can produce, enzymes) -> the marine bacteria (11753ms) What are enzymes? Grapefruit Apple Juice - 2 apples 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (Grapefruit Apple Juice - 2 apples, consists of, an enzyme) -> Grapefruit Apple Juice - 2 apples (11721ms) What are enzymes? Breast milk 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Breast milk, is a beverage that contains, enzyme) -> Breast milk (11556ms) What are enzymes? ProStar 0.777777777771 What are enzymes? -> $x: ($x, classify as, enzyme) -> (ProStar, are classified as, enzyme inhibitors) -> ProStar (11204ms) What are enzymes? Phytochemicals 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Phytochemicals, can also help boost, enzymes) -> Phytochemicals (11722ms) What are enzymes? a frozen entree 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (a frozen entree, is low in, enzymes) -> a frozen entree (11520ms) What are enzymes? The bodies most powerful anti-oxidants 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (The bodies most powerful anti-oxidants, are, enzymes) -> The bodies most powerful anti-oxidants (11226ms) What are enzymes? chewable tablets 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (chewable tablets, can make taking, enzymes) -> chewable tablets (11676ms) What are enzymes? Pit viper venom 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (Pit viper venom, consists of, many enzymes) -> Pit viper venom (11753ms) What are enzymes? results 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (results, is less likely to, enzymes) -> results (11268ms) What are enzymes? Treatment 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (Treatment, consists of, pancreatic enzyme replacement) -> Treatment (11520ms) What are enzymes? The raw juice 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (The raw juice, is rich in, enzymes) -> The raw juice (11268ms) What are enzymes? medaka embryo 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (medaka embryo, consists of, two enzymes) -> medaka embryo (11447ms) What are enzymes? The first four 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (The first four, are, enzymes) -> The first four (11484ms) What are enzymes? 90 percent 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (this enzyme, is active in about, 90 percent) -> 90 percent (11225ms) What are enzymes? 8 grams 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (8 grams, is rich in, enzymes) -> 8 grams (11466ms) What are enzymes? Lipases 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Lipases, are, enzymes) -> Lipases (11691ms) What are enzymes? Sprouts 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Sprouts, are rich in, enzymes) -> Sprouts (11676ms) What are enzymes? Biological catalysts 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Biological catalysts, are, enzymes) -> Biological catalysts (11309ms) What are enzymes? 5 % 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (His beta-enolase enzyme residual activity, was about, 5 %) -> 5 % (11722ms) What are enzymes? White blood cells 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (White blood cells, are especially rich in, enzymes) -> White blood cells (11736ms) What are enzymes? heating 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (heating, are high in, enzymes) -> heating (11644ms) What are enzymes? Copper and zinc 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Copper and zinc, are involved in, enzymes) -> Copper and zinc (11594ms) What are enzymes? etc 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (etc, are, enzymes) -> etc (11427ms) What are enzymes? Antioxidants 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Antioxidants, are, enzymes) -> Antioxidants (11644ms) What are enzymes? The old formula 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (The old formula, consisted of, 12,500 protease enzymes) -> The old formula (11204ms) What are enzymes? pineapples Pineapples 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (pineapples Pineapples, are rich in, enzymes) -> pineapples Pineapples (11289ms) What are enzymes? pressure 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (pressure, can inactivate, enzymes) -> pressure (11226ms) What are enzymes? too high a temp 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (too high a temp, can denature, enzyme) -> too high a temp (11660ms) What are enzymes? Certain flavonoids 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Certain flavonoids, can inhibit, enzymes) -> Certain flavonoids (11611ms) What are enzymes? protein 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (protein, is used to make, enzymes) -> protein (11349ms) What are enzymes? Kuhn 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Kuhn, was interested both in, enzymes) -> Kuhn (11643ms) What are enzymes? 24 hours 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (alert enzymes, is about, 24 hours) -> 24 hours (11484ms) What are enzymes? the healthy shake 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (the healthy shake, consists of, enzymes) -> the healthy shake (11502ms) What are enzymes? the invention 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (the invention, is directed to, enzymes) -> the invention (11767ms) What are enzymes? raw greens and fruits 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (raw greens and fruits, are rich in, enzymes) -> raw greens and fruits (11736ms) What are enzymes? Aloe Vera.This gel 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Aloe Vera.This gel, is rich in, enzymes) -> Aloe Vera.This gel (11268ms) What are enzymes? a gene 0.777777777771 What are enzymes? -> $x: ($x, influence, enzyme) -> (a gene, influences, the activity of an enzyme) -> a gene (11204ms) What are enzymes? Amylases Amylases 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Amylases Amylases, are, enzymes) -> Amylases Amylases (11660ms) What are enzymes? apples 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (apples, can inhibit, enzymes) -> apples (11520ms) What are enzymes? arabinose 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (arabinose, can disable, enzymes) -> arabinose (11408ms) What are enzymes? food and medicine 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (food and medicine, is rich in, enzymes) -> food and medicine (11466ms) What are enzymes? The protease charge ladder 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (The protease charge ladder, consists of, a parent enzyme) -> The protease charge ladder (11520ms) What are enzymes? The reaction mixture 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (The reaction mixture, consisted of, 300 mg enzyme) -> The reaction mixture (11289ms) What are enzymes? dietary fats 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (dietary fats, can be digested by, enzymes) -> dietary fats (11389ms) What are enzymes? deduced genes 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (deduced genes, can be classified as, enzymes) -> deduced genes (11309ms) What are enzymes? 6-phosphate.The glucose PTS 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (6-phosphate.The glucose PTS, consists of, 4 enzymes) -> 6-phosphate.The glucose PTS (11309ms) What are enzymes? iron deficiency 0.777777777771 What are enzymes? -> $x: ($x, influence, enzyme) -> (iron deficiency, can influence, certain enzymes) -> iron deficiency (11736ms) What are enzymes? 31 Wheatgrass juice 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (31 Wheatgrass juice, is high in, enzymes) -> 31 Wheatgrass juice (11484ms) What are enzymes? 1,620 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (The enzyme, is about, 1,620) -> 1,620 (11538ms) What are enzymes? aspirin 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (aspirin, was known to affect, enzymes) -> aspirin (11408ms) What are enzymes? genetic studies 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (genetic studies, are, enzymes) -> genetic studies (11369ms) What are enzymes? Amazon.co.uk 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (Amazon.co.uk, is pleased to have, Enzymes) -> Amazon.co.uk (11627ms) What are enzymes? tea leaves 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (liver enzymes, were just about like reading, tea leaves) -> tea leaves (11204ms) What are enzymes? the soaking wheat seeds 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (the soaking wheat seeds, is rich in, enzymes) -> the soaking wheat seeds (11447ms) What are enzymes? lacto-fermented foods 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (lacto-fermented foods, are also rich in, enzymes) -> lacto-fermented foods (11611ms) What are enzymes? Pretreatments 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (Pretreatments, consisted of, enzyme digestion) -> Pretreatments (11706ms) What are enzymes? The system 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (The system, consists of, two individual enzyme components) -> The system (11349ms) What are enzymes? The transcriptional oscillators 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (The transcriptional oscillators, consist of, two enzymes) -> The transcriptional oscillators (11268ms) What are enzymes? Activity 1 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Activity 1, are, Enzymes) -> Activity 1 (11611ms) What are enzymes? The supplemental enzymes 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (The supplemental enzymes, are, enzymes) -> The supplemental enzymes (11225ms) What are enzymes? digestive enzymes 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (digestive enzymes, are, enzymes) -> digestive enzymes (11247ms) What are enzymes? Cellulases Cellulases 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Cellulases Cellulases, are, enzymes) -> Cellulases Cellulases (11660ms) What are enzymes? preservatives 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (preservatives, can also kills, enzymes) -> preservatives (11643ms) What are enzymes? situations 0.777777777771 What are enzymes? -> $x: (enzyme, be about, $x) -> (enzymes, is all about finding, situations) -> situations (11611ms) What are enzymes? free radical scavengers 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (free radical scavengers, consist primarily of, four enzymes) -> free radical scavengers (11520ms) What are enzymes? commonly minimum 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (commonly minimum, can improve, enzymes) -> commonly minimum (11466ms) What are enzymes? PTSs 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (PTSs, consist of, enzyme) -> PTSs (11767ms) What are enzymes? The DNAzyme 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (The DNAzyme, consists of, an enzyme) -> The DNAzyme (11268ms) What are enzymes? each day 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (each day, is meant to supply, enzymes) -> each day (11691ms) What are enzymes? Barley 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Barley, is rich in, enzymes) -> Barley (11502ms) What are enzymes? even ice chips 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (even ice chips, can stimulate, enzymes) -> even ice chips (11204ms) What are enzymes? Cashew yogurt fresh 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Cashew yogurt fresh, is rich in living, enzymes) -> Cashew yogurt fresh (11660ms) What are enzymes? The rest 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (The rest, consists of, enzymes) -> The rest (11247ms) What are enzymes? The first category 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (The first category, consists of, metabolic enzymes) -> The first category (11309ms) What are enzymes? the protein 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (the protein, is also used to make, enzymes) -> the protein (11736ms) What are enzymes? raw veggies 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (raw veggies, are rich in, enzymes) -> raw veggies (11722ms) What are enzymes? fabrics 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (fabrics, can be treated with, enzymes) -> fabrics (11644ms) What are enzymes? Prosthetic groups 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (Prosthetic groups, are tightly bound to, enzymes) -> Prosthetic groups (11389ms) What are enzymes? Biomarkers 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Biomarkers, can be, enzymes) -> Biomarkers (11330ms) What are enzymes? Pelleting 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (Pelleting, can also be stressful to, enzymes) -> Pelleting (11182ms) What are enzymes? Sulfur 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (Sulfur, is essential in, enzymes) -> Sulfur (11330ms) What are enzymes? Hfq and PABP II 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (Hfq and PABP II, are linked to, enzymes) -> Hfq and PABP II (11247ms) What are enzymes? Oligonucleotides 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Oligonucleotides, can act as, enzymes) -> Oligonucleotides (11556ms) What are enzymes? bile 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (bile, is to activate, enzymes) -> bile (11204ms) What are enzymes? Each replisome 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (Each replisome, consists of, multiple enzymes) -> Each replisome (11556ms) What are enzymes? example 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (example, are rich in, enzymes) -> example (11594ms) What are enzymes? way 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (way, consists of, a lot more digestive enzymes) -> way (11329ms) What are enzymes? Saponins 0.777777777771 What are enzymes? -> $x: ($x, influence, enzyme) -> (Saponins, also influence the function of, enzymes) -> Saponins (11502ms) What are enzymes? Acid Reflux remedies 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (Acid Reflux remedies, can include, enzymes) -> Acid Reflux remedies (11289ms) What are enzymes? The hydroperoxides 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (The hydroperoxides, can be converted by, enzymes) -> The hydroperoxides (11369ms) What are enzymes? 3 months 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (3 months, are, enzymes) -> 3 months (11628ms) What are enzymes? The latter structures 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (The latter structures, can encapsulate, enzymes) -> The latter structures (11644ms) What are enzymes? a Greek word 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (a Greek word, is required to produce, enzymes) -> a Greek word (11204ms) What are enzymes? the biggest difference 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (the biggest difference, is adding in, enzymes) -> the biggest difference (11706ms) What are enzymes? bioflavonoids 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (bioflavonoids, has been shown to produce, enzymes) -> bioflavonoids (11573ms) What are enzymes? OPCs 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (OPCs, can be converted by, enzymes) -> OPCs (11691ms) What are enzymes? food 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (food, to be broken down by, enzymes) -> food (11204ms) What are enzymes? chronic alcohol intake 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (chronic alcohol intake, can induce, enzymes) -> chronic alcohol intake (11330ms) What are enzymes? hyperactivity and asthma 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (hyperactivity and asthma, Can affect, enzymes) -> hyperactivity and asthma (11329ms) What are enzymes? metals 0.777777777771 What are enzymes? -> $x: ($x, influence, enzyme) -> (metals, are influenced by, metal-acting co-enzymes or catalysts) -> metals (11289ms) What are enzymes? milk Papaya and Pineapple-Both 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (milk Papaya and Pineapple-Both, are rich in, enzymes) -> milk Papaya and Pineapple-Both (11502ms) What are enzymes? system 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (system, is a subpart of the body within, ENZYMES) -> system (11676ms) What are enzymes? Every shake 0.777777777771 What are enzymes? -> $x: ($x, consist of, enzyme) -> (Every shake, consists of, digestive enzymes and prebiotics) -> Every shake (11627ms) What are enzymes? Amylases 0.777777777771 What are enzymes? -> $x: ($x, be be, enzyme) -> (Amylases, are, enzymes) -> Amylases (11204ms) What are enzymes? green barley juice 0.777777777771 What are enzymes? -> $x: ($x, be in, enzyme) -> (green barley juice, is abundant in, enzymes) -> green barley juice (11349ms) What are enzymes? The walls 0.777777777771 What are enzymes? -> $x: ($x, can, enzyme) -> (The walls, can be removed with, enzymes) -> The walls (11736ms) What are enzymes? 2. Digestion 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (2. Digestion, is required to activate, enzymes) -> 2. Digestion (11502ms) What are enzymes? QSAR methods 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (QSAR methods, are applied to, enzymes) -> QSAR methods (11538ms) What are enzymes? Lactic acid bacteria 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (Lactic acid bacteria, is also known to produce, enzymes) -> Lactic acid bacteria (11538ms) What are enzymes? drug candidates 0.777777777771 What are enzymes? -> $x: ($x, be to, enzyme) -> (drug candidates, are exposed to, enzymes) -> drug candidates (11389ms) What are enzymes? the two recombinant enzymes 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (the two recombinant enzymes, developed, an enzyme assay) -> the two recombinant enzymes (11824ms) What are enzymes? patients 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (patients, will develop asymptomatic increases in, liver enzymes) -> patients (11824ms) What are enzymes? current protease 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (current protease, induce, this enzyme system) -> current protease (11879ms) What are enzymes? The enzyme component 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (The enzyme component, comprises at, least one protease enzyme) -> The enzyme component (11847ms) What are enzymes? mammalian liver 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (mammalian liver, comprises, several enzyme families) -> mammalian liver (11928ms) What are enzymes? Sony 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (Sony, developed retaining, the activity of the enzymes) -> Sony (11796ms) What are enzymes? Fibrozym 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (Fibrozym, is comprised of, plant-based enzymes) -> Fibrozym (11824ms) What are enzymes? I3C 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (I3C, induces the production of, such enzymes) -> I3C (11928ms) What are enzymes? the first disorder 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (the first disorder, was developed, an enzyme therapy) -> the first disorder (11908ms) What are enzymes? the root 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (the root, is developed by, a special enzyme) -> the root (11868ms) What are enzymes? the guidelines 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (the guidelines, developed for, enzymes) -> the guidelines (11908ms) What are enzymes? the human liver 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (the human liver, has developed, enzymes) -> the human liver (11909ms) What are enzymes? scientists 0.6666666666609999 What are enzymes? -> $x: ($x, be use of, enzyme) -> (scientists, have been studying the use of, a sister enzyme) -> scientists (11824ms) What are enzymes? rifabutin 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (rifabutin, induce, hepatic microsomal enzymes) -> rifabutin (11928ms) What are enzymes? certain metabolizing enzymes 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (certain metabolizing enzymes, can induce, those enzymes) -> certain metabolizing enzymes (11782ms) What are enzymes? isozymes 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (isozymes, represent a group of, enzymes) -> isozymes (11899ms) What are enzymes? L-dopa 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (L-dopa, induces, the enzymes MAT and COMT.) -> L-dopa (11928ms) What are enzymes? The need 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (The need, has developed, an enzyme pulp) -> The need (11928ms) What are enzymes? Mefloquine 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Mefloquine, induce, the cytochrome P450 enzyme system) -> Mefloquine (11835ms) What are enzymes? the tetramer 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (the tetramer, represents the physiological state of, the enzyme) -> the tetramer (11824ms) What are enzymes? A BIO TECHNOLOGY COMPANY 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (A BIO TECHNOLOGY COMPANY, HAVE DEVELOPED, NEW ENZYME CALLED) -> A BIO TECHNOLOGY COMPANY (11868ms) What are enzymes? the dark green region 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (the dark green region, represents the active site of, an enzyme) -> the dark green region (11835ms) What are enzymes? Butalbital 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Butalbital, induces, hepatic enzymes) -> Butalbital (11918ms) What are enzymes? A throat lozenge 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (A throat lozenge, may comprise just, a lysin enzyme) -> A throat lozenge (11782ms) What are enzymes? Mild enzyme elevation 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (Mild enzyme elevation, often represents, enzyme induction) -> Mild enzyme elevation (11782ms) What are enzymes? the drugs 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (the drugs, induce, the methylase enzyme) -> the drugs (11908ms) What are enzymes? The ball 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (The ball, represents, the enzyme) -> The ball (11918ms) What are enzymes? Eirzyme 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (Eirzyme, has developed, a proprietary enzyme technology) -> Eirzyme (11858ms) What are enzymes? much more freedom 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (much more freedom, develop the next generation of, enzymes) -> much more freedom (11835ms) What are enzymes? Efavirenz 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Efavirenz, to induce, P450 enzymes) -> Efavirenz (11858ms) What are enzymes? Genencor 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (Genencor, develops, enzymes) -> Genencor (11796ms) What are enzymes? GR8CF-77? 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (GR8CF-77?, represent the cutting edge in, enzyme formulation) -> GR8CF-77? (11889ms) What are enzymes? The money 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (The money, will be used to develop, enzymes) -> The money (11868ms) What are enzymes? the end 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (the end, helps develop, oxidative enzymes and mitochondria) -> the end (11847ms) What are enzymes? Phenylbutazone 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Phenylbutazone, also induces, hepatic microsomal enzyme activity) -> Phenylbutazone (11782ms) What are enzymes? Resveratrol 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Resveratrol, induces, an enzyme called quinone reductase) -> Resveratrol (11858ms) What are enzymes? tobacco smoking 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (tobacco smoking, can induce, liver enzyme activities) -> tobacco smoking (11810ms) What are enzymes? the NCI 0.6666666666609999 What are enzymes? -> $x: ($x, be use of, enzyme) -> (the NCI, is underway to evaluate the use of, pancreatic enzymes) -> the NCI (11810ms) What are enzymes? The former reactions 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (The former reactions, are represented by, enzymes) -> The former reactions (11810ms) What are enzymes? A test arc 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (A test arc, to represent, enzyme activity) -> A test arc (11889ms) What are enzymes? Codexis 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (Codexis, develops, custom enzymes and catalysts) -> Codexis (11858ms) What are enzymes? Digest Gold 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (Digest Gold, represents, the most potent digestive enzyme) -> Digest Gold (11824ms) What are enzymes? lecithin 0.6666666666609999 What are enzymes? -> $x: ($x, be use of, enzyme) -> (lecithin, are used function of, enzyme systems) -> lecithin (11847ms) What are enzymes? the missing link 0.6666666666609999 What are enzymes? -> $x: ($x, be use of, enzyme) -> (the missing link, is the use of, the enzyme protocol) -> the missing link (11889ms) What are enzymes? One long-considered solution 0.6666666666609999 What are enzymes? -> $x: ($x, be use of, enzyme) -> (One long-considered solution, is the use of, lytic enzymes) -> One long-considered solution (11899ms) What are enzymes? Rifampin/rifampicin 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Rifampin/rifampicin, induces, hepatic enzymes) -> Rifampin/rifampicin (11858ms) What are enzymes? a test 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (a test, was developed to detect, elevated liver enzymes) -> a test (11908ms) What are enzymes? Hypericum-containing products 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Hypericum-containing products, appear to induce, hepatic enzymes) -> Hypericum-containing products (11796ms) What are enzymes? the U.S. Department 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (the U.S. Department, is developing, enzymes) -> the U.S. Department (11858ms) What are enzymes? a color 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (a color, develops in, the presence of the bound enzyme) -> a color (11767ms) What are enzymes? DIM 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (DIM, induces, certain P-450 enzymes) -> DIM (11782ms) What are enzymes? Citrate cycle map 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (Citrate cycle map, representing, enzymes present in L.) -> Citrate cycle map (11847ms) What are enzymes? bioluminescence 0.6666666666609999 What are enzymes? -> $x: ($x, be use of, enzyme) -> (bioluminescence, is the use of, the AK enzyme) -> bioluminescence (11927ms) What are enzymes? FH 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (FH, represents, one mitochondrial enzyme) -> FH (11796ms) What are enzymes? One remedy 0.6666666666609999 What are enzymes? -> $x: ($x, be use of, enzyme) -> (One remedy, is the use of, digestive enzymes or probiotics) -> One remedy (11879ms) What are enzymes? The SmartZYME process 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (The SmartZYME process, is comprised of, multiple enzyme strains) -> The SmartZYME process (11847ms) What are enzymes? Ozone 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Ozone, Induces, specific Enzymes) -> Ozone (11810ms) What are enzymes? ChemGen 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (ChemGen, is to develop, innovative feed enzyme products) -> ChemGen (11918ms) What are enzymes? One study limitation 0.6666666666609999 What are enzymes? -> $x: ($x, be use of, enzyme) -> (One study limitation, was the use of, various enzyme) -> One study limitation (11908ms) What are enzymes? bioprocesses 0.6666666666609999 What are enzymes? -> $x: ($x, be use of, enzyme) -> (bioprocesses, are the use of, microbial and enzyme biocatalysts) -> bioprocesses (11899ms) What are enzymes? GalNAc residues 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (GalNAc residues, represent the products of, this enzyme) -> GalNAc residues (11782ms) What are enzymes? a regular basis 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (a regular basis, develop, more fat burning enzymes) -> a regular basis (11899ms) What are enzymes? Drugs and alcohol ingestion 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Drugs and alcohol ingestion, induce, microsomal enzymes) -> Drugs and alcohol ingestion (11899ms) What are enzymes? SBC-102 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (SBC-102, is being developed as, an enzyme replacement therapy) -> SBC-102 (11889ms) What are enzymes? distilled water 0.6666666666609999 What are enzymes? -> $x: ($x, be use of, enzyme) -> (distilled water, is used instead of, enzyme solution) -> distilled water (11810ms) What are enzymes? ALA 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (ALA, induces, liver phase II detoxification enzymes) -> ALA (11918ms) What are enzymes? long-chain isothiocyanates 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (long-chain isothiocyanates, induces, the Phase II enzymes) -> long-chain isothiocyanates (11878ms) What are enzymes? biotechnology 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (biotechnology, have developed, enzymes) -> biotechnology (11824ms) What are enzymes? certain carbohydrates 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (certain carbohydrates, can induce, the presence of the enzymes) -> certain carbohydrates (11879ms) What are enzymes? Drugs 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Drugs, induce, hepatic microsomal enzymes) -> Drugs (11908ms) What are enzymes? Dyadic 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (Dyadic, develop, more efficient enzyme products and solutions) -> Dyadic (11858ms) What are enzymes? curcumin 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (curcumin, induces, an enzyme) -> curcumin (11879ms) What are enzymes? a cornerstone 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (a cornerstone, induces, the enzyme cytochrome P450) -> a cornerstone (11835ms) What are enzymes? Carbamazepine 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Carbamazepine, induces, hepatic microsomal enzymes) -> Carbamazepine (11918ms) What are enzymes? pentobarbital 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (pentobarbital, induce, hepatic chromosomal enzymes) -> pentobarbital (11858ms) What are enzymes? The enzymatic cleaning composition 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (The enzymatic cleaning composition, comprises, an enzyme) -> The enzymatic cleaning composition (11899ms) What are enzymes? the skin gel 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (the skin gel, is developed from, arctic marine enzymes) -> the skin gel (11835ms) What are enzymes? Newborns 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (Newborns, also have to develop, healthy enzymes) -> Newborns (11810ms) What are enzymes? Sertraline 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Sertraline, was shown to induce, hepatic enzymes) -> Sertraline (11835ms) What are enzymes? the program 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (the program, is to develop, new enzyme systems) -> the program (11810ms) What are enzymes? IGFBP2 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (IGFBP2, induces, the repair enzyme) -> IGFBP2 (11847ms) What are enzymes? PAH 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (PAH, induced, enzymes) -> PAH (11835ms) What are enzymes? linoleic acid 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (linoleic acid, induces, peroxisome-specific enzyme accumulation) -> linoleic acid (11782ms) What are enzymes? the color determination 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (the color determination, develop, new enzymes) -> the color determination (11908ms) What are enzymes? hydrocarbons 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (hydrocarbons, induce, hepatic CYP450 microsomal enzymes) -> hydrocarbons (11928ms) What are enzymes? brain compound 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (brain compound, induce, hepatic enzymes) -> brain compound (11847ms) What are enzymes? Dr. Nussbaum?s lab 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (Dr. Nussbaum?s lab, developed, a clinically useful enzyme test) -> Dr. Nussbaum?s lab (11918ms) What are enzymes? Katzir 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (Katzir, developed a method for, binding enzymes) -> Katzir (11908ms) What are enzymes? the multi-enzyme composition 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (the multi-enzyme composition, comprises, the enzyme) -> the multi-enzyme composition (11918ms) What are enzymes? metabolism map 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (metabolism map, representing, enzymes present in L.) -> metabolism map (11847ms) What are enzymes? MprF 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (MprF, represents a new class of, lipid-biosynthetic enzymes) -> MprF (11847ms) What are enzymes? ZOLOFT 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (ZOLOFT, was shown to induce, hepatic enzymes) -> ZOLOFT (11918ms) What are enzymes? Cancer cells 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (Cancer cells, typically develop, an active telomerase enzyme) -> Cancer cells (11889ms) What are enzymes? The drugs 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (The drugs, were developed against, group-2 enzymes) -> The drugs (11908ms) What are enzymes? the enzyme system 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (the enzyme system, comprising, the cytochrome P450 enzymes) -> the enzyme system (11810ms) What are enzymes? An example 0.6666666666609999 What are enzymes? -> $x: ($x, be use of, enzyme) -> (An example, would be the use of, pancreatic enzyme) -> An example (11810ms) What are enzymes? No participant 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (No participant, developed, liver enzyme elevations) -> No participant (11858ms) What are enzymes? K1 Kcat K2 Here E 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (K1 Kcat K2 Here E, represents, Enzyme) -> K1 Kcat K2 Here E (11918ms) What are enzymes? Ethanol 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Ethanol, can induce, hepatic oxidative enzymes) -> Ethanol (11796ms) What are enzymes? troglitazone 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (troglitazone, may also induce, hepatic enzymes) -> troglitazone (11928ms) What are enzymes? Ritonavir 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Ritonavir, to induce, metabolic enzymes) -> Ritonavir (11899ms) What are enzymes? Genzyme 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (Genzyme, previously developed, enzyme replacement therapies) -> Genzyme (11908ms) What are enzymes? Enzymatic debridement 0.6666666666609999 What are enzymes? -> $x: ($x, be use of, enzyme) -> (Enzymatic debridement, is the use of, chemical enzymes) -> Enzymatic debridement (11868ms) What are enzymes? Current research project 0.6666666666609999 What are enzymes? -> $x: ($x, be use of, enzyme) -> (Current research project, is exploring the use of, enzymes) -> Current research project (11879ms) What are enzymes? Dr Kukol 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (Dr Kukol, developed a 3D model of, the kinase IKK-? enzyme) -> Dr Kukol (11918ms) What are enzymes? the combination 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (the combination, comprises, the enzyme) -> the combination (11879ms) What are enzymes? Soy 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Soy, induces, Phase II enzymes) -> Soy (11868ms) What are enzymes? Albendazole 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Albendazole, induces, cytochrome P450 1A enzymes) -> Albendazole (11858ms) What are enzymes? the agent 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (the agent, comprises, a thrombin-like enzyme) -> the agent (11782ms) What are enzymes? rifampin 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (rifampin, induces, hepatic microsomal enzymes) -> rifampin (11868ms) What are enzymes? The second step 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (The second step, is to develop, an enzyme mixture) -> The second step (11868ms) What are enzymes? a test arc 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (a test arc, can be used to represent, enzyme activity) -> a test arc (11908ms) What are enzymes? n-3 PUFAs 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (n-3 PUFAs, can induce, phase II detoxifying enzymes) -> n-3 PUFAs (11928ms) What are enzymes? medications 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (medications, induce, liver enzymes) -> medications (11928ms) What are enzymes? the company 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (the company, has developed, an enzyme catalysed process) -> the company (11928ms) What are enzymes? The known pathway 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (The known pathway, comprises, five enzymes) -> The known pathway (11889ms) What are enzymes? a specialty formula 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (a specialty formula, comprised of, key therapeutic enzymes) -> a specialty formula (11868ms) What are enzymes? The acid protease 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (The acid protease, comprises, one or more proteolytic enzymes) -> The acid protease (11847ms) What are enzymes? Mat?s 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (Mat?s, develops, innovative enzymes) -> Mat?s (11899ms) What are enzymes? the CLA 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (the CLA, induces the activity of, another enzyme) -> the CLA (11868ms) What are enzymes? Omega-zyme 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (Omega-zyme, is comprised of over, 20 different enzymes) -> Omega-zyme (11918ms) What are enzymes? Tegretol 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Tegretol, induces, enzymes) -> Tegretol (11796ms) What are enzymes? the African grasshopper 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (the African grasshopper, has developed, a specific enzyme) -> the African grasshopper (11835ms) What are enzymes? Fibrozym? 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (Fibrozym?, is comprised of, plant-based enzymes) -> Fibrozym? (11782ms) What are enzymes? Alcohol 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Alcohol, may induce, liver enzymes) -> Alcohol (11796ms) What are enzymes? Compositions 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (Compositions, comprise, an enzyme) -> Compositions (11908ms) What are enzymes? the Action 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (the Action, is to develop, novel enzymes) -> the Action (11824ms) What are enzymes? Diamond shapes 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (Diamond shapes, represent, enzymes) -> Diamond shapes (11824ms) What are enzymes? antibodies 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (antibodies, comprise, the enzyme and hormonal systems) -> antibodies (11782ms) What are enzymes? raw meals 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (raw meals, comprise, enzymes) -> raw meals (11879ms) What are enzymes? smoking 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (smoking, induce, liver enzymes) -> smoking (11782ms) What are enzymes? A lock-and-key model 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (A lock-and-key model, is useful in representing, enzyme activity) -> A lock-and-key model (11928ms) What are enzymes? archaea 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (archaea, represent an important source of, enzymes) -> archaea (11937ms) What are enzymes? poliovirus 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (poliovirus, induced, extensive cytopathology and enzyme release) -> poliovirus (11858ms) What are enzymes? the pigment epithelium 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (the pigment epithelium, induce, lysosomal enzyme) -> the pigment epithelium (11767ms) What are enzymes? ABCB1 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (ABCB1, induce, numerous CYP enzymes) -> ABCB1 (11796ms) What are enzymes? RSG 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (RSG, induced the transcription of, antioxidant enzymes) -> RSG (11868ms) What are enzymes? ERT 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (ERT, develop immune responses to, the infused enzyme) -> ERT (11928ms) What are enzymes? NF-kappaB 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (NF-kappaB, induces, phase 2 detoxifying enzyme activity) -> NF-kappaB (11879ms) What are enzymes? Fermentation 0.6666666666609999 What are enzymes? -> $x: ($x, be use of, enzyme) -> (Fermentation, is a major use of, genes and enzymes) -> Fermentation (11918ms) What are enzymes? 11 percent 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (11 percent, developed, high liver enzymes) -> 11 percent (11899ms) What are enzymes? the work 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (the work, has developed into, Enzyme Nutrition Therapy) -> the work (11928ms) What are enzymes? biocatalysis research 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (biocatalysis research, develop, new enzymes) -> biocatalysis research (11879ms) What are enzymes? Tacrine 0.6666666666609999 What are enzymes? -> $x: ($x, side, enzyme) -> (Tacrine, has side effects on, liver enzymes) -> Tacrine (11847ms) What are enzymes? Duke 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (Duke, developed, the recombinant porcine uricase enzyme) -> Duke (11889ms) What are enzymes? Walker 0.6666666666609999 What are enzymes? -> $x: ($x, be use of, enzyme) -> (Walker, are studying the use of, enzymes) -> Walker (11868ms) What are enzymes? drugs 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (drugs, induce, these enzymes) -> drugs (11937ms) What are enzymes? Ethanol Research 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (Ethanol Research, is also working to develop, enzymes) -> Ethanol Research (11899ms) What are enzymes? The composition 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (The composition, comprises, a selected enzyme) -> The composition (11928ms) What are enzymes? the potential 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (the potential, has developed a class of, enzymes) -> the potential (11858ms) What are enzymes? earth 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (earth, has developed some form of, the enzyme catalase) -> earth (11796ms) What are enzymes? PP2A 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (PP2A, is comprised of, a core enzyme) -> PP2A (11858ms) What are enzymes? Sulforaphane 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Sulforaphane, induces, enzymes) -> Sulforaphane (11824ms) What are enzymes? Iogen and Novozymes 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (Iogen and Novozymes, have been developing, enzymes) -> Iogen and Novozymes (11899ms) What are enzymes? a phytochemical agent 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (a phytochemical agent, of inducing, an enzyme activity) -> a phytochemical agent (11847ms) What are enzymes? Butanoate metabolic map 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (Butanoate metabolic map, representing, enzymes present in L.) -> Butanoate metabolic map (11879ms) What are enzymes? sertraline hydrochloride 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (sertraline hydrochloride, was shown to induce, hepatic enzymes) -> sertraline hydrochloride (11796ms) What are enzymes? CAH 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (CAH, represent, enzyme deficiencies) -> CAH (11767ms) What are enzymes? LH 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (LH, also induces, enzymes) -> LH (11810ms) What are enzymes? Such anticonvulsants 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Such anticonvulsants, induce, hepatic P450 microsomal enzymes) -> Such anticonvulsants (11824ms) What are enzymes? Symptoms 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (Symptoms, may develop such as, elevated liver enzymes) -> Symptoms (11908ms) What are enzymes? Sulfinpyrazone 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Sulfinpyrazone, can induce, hepatic oxidative microsomal enzymes) -> Sulfinpyrazone (11889ms) What are enzymes? Preparations 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Preparations, inducing, liver enzymes) -> Preparations (11782ms) What are enzymes? Antiretrovirals 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Antiretrovirals, induce, the CYP enzymes) -> Antiretrovirals (11899ms) What are enzymes? the edges 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (the edges, represent, the enzymes) -> the edges (11918ms) What are enzymes? treatment 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (treatment, will usually develop, abnormal liver enzyme levels) -> treatment (11835ms) What are enzymes? Solvent 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Solvent, induced change of, enzyme enantioselectivity) -> Solvent (11824ms) What are enzymes? lipids 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (lipids, induces, the same enzymes) -> lipids (11824ms) What are enzymes? the DNA strands 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (the DNA strands, induce synthesis of, repair enzymes) -> the DNA strands (11899ms) What are enzymes? Duke University 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (Duke University, developed, the recombinant uricase enzyme) -> Duke University (11889ms) What are enzymes? a fever 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (a fever, induces, faster enzyme action) -> a fever (11782ms) What are enzymes? hydrolase family 22 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (hydrolase family 22, comprises, enzymes) -> hydrolase family 22 (11878ms) What are enzymes? epigallocatechingallate 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (epigallocatechingallate, induces, enzyme activity) -> epigallocatechingallate (11824ms) What are enzymes? The parameter p 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (The parameter p, represents the percentage of, other enzymes) -> The parameter p (11810ms) What are enzymes? the rainbow 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (the rainbow, represented, the respiratory enzymes) -> the rainbow (11835ms) What are enzymes? each of these categories 0.6666666666609999 What are enzymes? -> $x: ($x, represent, enzyme) -> (each of these categories, is represented by, multiple enzymes) -> each of these categories (11889ms) What are enzymes? low.Rimonabant 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (low.Rimonabant, induce, other CYP enzymes) -> low.Rimonabant (11835ms) What are enzymes? products 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (products, appear to induce, hepatic enzymes) -> products (11868ms) What are enzymes? the regular basis 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (the regular basis, will develop more of, fat burning enzymes) -> the regular basis (11810ms) What are enzymes? Carbohydrates 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Carbohydrates, induce, enzymes) -> Carbohydrates (11824ms) What are enzymes? METABONEX 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (METABONEX, induces, thermogenic enzymes) -> METABONEX (11868ms) What are enzymes? isolated enzymes 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (isolated enzymes, will be developed for, enzymes) -> isolated enzymes (11847ms) What are enzymes? honey ? honey 0.6666666666609999 What are enzymes? -> $x: ($x, comprise, enzyme) -> (honey ? honey, comprises of, enzymes) -> honey ? honey (11918ms) What are enzymes? Avicel and xylan 0.6666666666609999 What are enzymes? -> $x: ($x, induce, enzyme) -> (Avicel and xylan, broadly induced, enzymes) -> Avicel and xylan (11868ms) What are enzymes? AFA 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (AFA, has developed, wide and versatile enzyme systems) -> AFA (11835ms) What are enzymes? Genzyme Corp. 0.6666666666609999 What are enzymes? -> $x: ($x, develop, enzyme) -> (Genzyme Corp., has developed, enzyme replacement therapies) -> Genzyme Corp. (11868ms) What are enzymes? Industrial workers 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (Industrial workers, can be exposed to, various enzymes) -> Industrial workers (11997ms) What are enzymes? Molecular biologists 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (Molecular biologists, have discovered, many enzymes) -> Molecular biologists (11937ms) What are enzymes? prescription 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (prescription, can be removed as, a enzyme) -> prescription (11937ms) What are enzymes? list 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (list, can be used to switch between, enzymes) -> list (11997ms) What are enzymes? Wine 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (Wine, could be fermented with, enzymes or concentrates) -> Wine (11946ms) What are enzymes? degradation 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (degradation, could be counteracted by, de-ubiquitinating enzymes) -> degradation (11964ms) What are enzymes? smaller particles 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (smaller particles, can be acted by, various enzymes) -> smaller particles (11989ms) What are enzymes? YadB 0.6666666666600001 What are enzymes? -> $x: ($x, constitute, enzyme) -> (YadB, constitutes, the first enzyme) -> YadB (11946ms) What are enzymes? Blackburn 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (Blackburn, co-discovered, the telomerase enzyme) -> Blackburn (11964ms) What are enzymes? Any residual stain 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (Any residual stain, could be treated with, an enzyme cleaner) -> Any residual stain (11981ms) What are enzymes? starch 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (starch, can be digested by, vertebrate enzymes) -> starch (11937ms) What are enzymes? LysoSENS 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (LysoSENS, has focused on discovering, microbial enzymes) -> LysoSENS (11981ms) What are enzymes? 5-alpha reductase 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (5-alpha reductase, can be, an enzyme) -> 5-alpha reductase (11946ms) What are enzymes? UCLA scientists 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (UCLA scientists, first discovered, this repair enzyme) -> UCLA scientists (11997ms) What are enzymes? synthesis 0.6666666666600001 What are enzymes? -> $x: ($x, constitute, enzyme) -> (synthesis, constitutes, the enzymes) -> synthesis (11937ms) What are enzymes? The major proteins 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (The major proteins, could be digested by, proteolytic enzymes) -> The major proteins (11955ms) What are enzymes? a starch thickener 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (a starch thickener, can be broken down by, enzymes) -> a starch thickener (11964ms) What are enzymes? Dr. Hiroyuki Sumi 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (Dr. Hiroyuki Sumi, discovered, this enzyme) -> Dr. Hiroyuki Sumi (11955ms) What are enzymes? the PI enzyme 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (the PI enzyme, could be converted into, the PII enzyme) -> the PI enzyme (11981ms) What are enzymes? PKU 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (PKU, can be detected by, enzyme) -> PKU (11946ms) What are enzymes? The same coenzyme 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (The same coenzyme, can be associated with, many enzymes) -> The same coenzyme (11955ms) What are enzymes? Inactive macrophages 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (Inactive macrophages, could be, withholding vital enzymes) -> Inactive macrophages (11997ms) What are enzymes? lysogenic B. subtilis cells 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (lysogenic B. subtilis cells, can be cut by, these enzymes) -> lysogenic B. subtilis cells (11946ms) What are enzymes? The scientists 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (The scientists, discovered a way of using, enzymes) -> The scientists (11981ms) What are enzymes? Greider 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (Greider, discovered, the enzyme telomerase) -> Greider (11972ms) What are enzymes? more oVOCs 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (more oVOCs, can be metabolized by, the enzymes) -> more oVOCs (11989ms) What are enzymes? peeled and cut 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (peeled and cut, can be prevented from, enzyme browning) -> peeled and cut (11989ms) What are enzymes? Dr. Fridovich 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (Dr. Fridovich, discovered, the enzyme Cu,Zn-superoxide dismutase) -> Dr. Fridovich (11997ms) What are enzymes? Doctors 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (Doctors, have discovered, a miraculous enzyme) -> Doctors (11989ms) What are enzymes? Aloe 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (Aloe, can also be used to, heighten enzymes) -> Aloe (11972ms) What are enzymes? The new research 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (The new research, has discovered, specific enzymes) -> The new research (11955ms) What are enzymes? histamine intolerance benefits 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (histamine intolerance benefits, can be tamed by, the enzyme) -> histamine intolerance benefits (11955ms) What are enzymes? the expanded PVA 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (the expanded PVA, could be used for, enzyme immobilisation) -> the expanded PVA (11955ms) What are enzymes? the double helix 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (the double helix, can be easily separated by, enzymes) -> the double helix (11972ms) What are enzymes? Vascular Science 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (Vascular Science, have discovered the role of, an enzyme) -> Vascular Science (11981ms) What are enzymes? mRNA 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (mRNA, could be a memory for, an enzyme) -> mRNA (11989ms) What are enzymes? An XNA alternative 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (An XNA alternative, could be impervious to, those enzymes) -> An XNA alternative (11989ms) What are enzymes? The project 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (The project, aims to discover, enzymes) -> The project (11997ms) What are enzymes? the junction 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (the junction, can be used for, the enzyme) -> the junction (11964ms) What are enzymes? PhD 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (PhD, co-discovered, the telomerase enzyme) -> PhD (11955ms) What are enzymes? The DNA 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (The DNA, could also be isolated using, restriction enzymes) -> The DNA (11964ms) What are enzymes? the list 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (the list, can be alleviated by, enzyme pills) -> the list (11997ms) What are enzymes? Hot soup 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (Hot soup, can be low in, live enzymes) -> Hot soup (11981ms) What are enzymes? ? View PHEN375 0.6666666666600001 What are enzymes? -> $x: ($x, constitute, enzyme) -> (? View PHEN375, is constituted of, cyclic AMP enzyme boosters) -> ? View PHEN375 (11997ms) What are enzymes? control 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (control, can be distributed over, the enzymes) -> control (11964ms) What are enzymes? Milk 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (Milk, can be treated with, the enzyme) -> Milk (11972ms) What are enzymes? pee 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (pee, could be taken away by using, enzyme cleaning soap) -> pee (11964ms) What are enzymes? Amoxicillin 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (Amoxicillin, can be inactivated by, an enzyme) -> Amoxicillin (11997ms) What are enzymes? disinfections 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (disinfections, can be removed by, catalase enzyme) -> disinfections (11972ms) What are enzymes? a material 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (a material, can be broken down by, enzymes) -> a material (11964ms) What are enzymes? New research 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (New research, has discovered, enzymes) -> New research (11955ms) What are enzymes? more tumor cells 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (more tumor cells, could be removed by, the enzymes) -> more tumor cells (11937ms) What are enzymes? Schoenberg 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (Schoenberg, first discovered, the PMR1 enzyme) -> Schoenberg (11989ms) What are enzymes? Cambridge 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (Cambridge, discovered the presence of, the enzyme) -> Cambridge (11955ms) What are enzymes? The antibody 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (The antibody, can be directly labeled with, the enzyme) -> The antibody (11937ms) What are enzymes? fructose 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (fructose, can be metabolized by, an enzyme) -> fructose (11946ms) What are enzymes? ion 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (ion, can be transported by, several enzymes) -> ion (11989ms) What are enzymes? Immune system regulation 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (Immune system regulation, can also be accomplished with, enzymes) -> Immune system regulation (11946ms) What are enzymes? Folkers 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (Folkers, had also discovered, an easily measurable enzyme) -> Folkers (11964ms) What are enzymes? osteoarthritis 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (osteoarthritis, could be helped with, enzyme therapy) -> osteoarthritis (11981ms) What are enzymes? Li 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (Li, also discovered, another enzyme) -> Li (11946ms) What are enzymes? a propeptide 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (a propeptide, can be cleaved extracellularly by, enzymes) -> a propeptide (11981ms) What are enzymes? effectively isoflavones 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (effectively isoflavones, can be processed by, these enzymes) -> effectively isoflavones (11937ms) What are enzymes? plant cell walls 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (plant cell walls, can be broken down by, enzymes) -> plant cell walls (11997ms) What are enzymes? late-onset Pompe disease 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (late-onset Pompe disease, can be treated with, enzyme therapy) -> late-onset Pompe disease (11997ms) What are enzymes? ABS 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (ABS, also has discovered, a novel enzyme) -> ABS (11972ms) What are enzymes? noradrenaline 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (noradrenaline, could be neutralized by, an enzyme) -> noradrenaline (11946ms) What are enzymes? certain tissues 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (certain tissues, could be replaced by, other PLC enzymes) -> certain tissues (11955ms) What are enzymes? The affected protein 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (The affected protein, could be, an enzyme) -> The affected protein (11937ms) What are enzymes? diagnostic work-up 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (diagnostic work-up, could be to draw, cardiac enzymes) -> diagnostic work-up (11955ms) What are enzymes? the plasmid 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (the plasmid, can be opened using, restriction enzymes) -> the plasmid (11937ms) What are enzymes? the original researchers 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (the original researchers, first discovered, co-enzyme Q10) -> the original researchers (11981ms) What are enzymes? Temin and Baltimore 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (Temin and Baltimore, discovered, this enzyme) -> Temin and Baltimore (11972ms) What are enzymes? NEI investigators 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (NEI investigators, have discovered, a naturally occurring enzyme) -> NEI investigators (11989ms) What are enzymes? 3000 bp 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (3000 bp, can be achieved with, this enzyme) -> 3000 bp (11972ms) What are enzymes? the fat 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (the fat, can be digested by, the enzymes) -> the fat (11946ms) What are enzymes? a living organisms 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (a living organisms, can be is dependent on, the enzymes) -> a living organisms (11946ms) What are enzymes? The reason 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (The reason, could be a deficiency of, digestive enzymes) -> The reason (11955ms) What are enzymes? FOS 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (FOS, can also be synthesized by, enzymes) -> FOS (11989ms) What are enzymes? Life 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (Life, can be hell without, these enzymes) -> Life (11972ms) What are enzymes? an additional substrate 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (an additional substrate, can be helped with, digestive enzymes) -> an additional substrate (11997ms) What are enzymes? detection 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (detection, can be destroyed by, pancreatic enzymes) -> detection (11972ms) What are enzymes? Km 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (Km, can be used to compare, enzymes) -> Km (11981ms) What are enzymes? Scotland 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (Scotland, have discovered, a natural fluorinase enzyme) -> Scotland (11972ms) What are enzymes? plant cells 0.6666666666600001 What are enzymes? -> $x: ($x, can be, enzyme) -> (plant cells, can be extracted with, enzymes) -> plant cells (11972ms) What are enzymes? Bass 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (Bass, discovered an entire new class of, enzymes) -> Bass (11937ms) What are enzymes? Ph. D. 0.6666666666600001 What are enzymes? -> $x: ($x, discover, enzyme) -> (Ph. D., co-discovered, the telomerase enzyme) -> Ph. D. (11989ms) What are enzymes? cancer 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (cancer, could be determined by, these enzymes) -> cancer (11997ms) What are enzymes? important proteins 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (important proteins, could be, enzymes) -> important proteins (11972ms) What are enzymes? The azide component 0.6666666666600001 What are enzymes? -> $x: ($x, could be, enzyme) -> (The azide component, could be tethered to, the enzyme surface) -> The azide component (11946ms) Who is the conductor of the Boston Pops? Mr. Lockhart 0.222222222222 Who is the conductor of the Boston Pops? -> $x: ($x, be conductor of, pops) -> (Mr. Lockhart, has been Conductor of, the Boston Pops Orchestra) -> Mr. Lockhart (700ms) Who is the conductor of the Boston Pops? Casella 0.222222222222 Who is the conductor of the Boston Pops? -> $x: ($x, be conductor of, pops) -> (Casella, was the principal conductor of, the Boston Pops) -> Casella (699ms) Who is the conductor of the Boston Pops? Nakahara 0.222222222222 Who is the conductor of the Boston Pops? -> $x: ($x, be conductor of, pops) -> (Nakahara, is primary conductor of, the SuperPops series) -> Nakahara (699ms) Who is the conductor of the Boston Pops? Williams 0.222222222222 Who is the conductor of the Boston Pops? -> $x: ($x, be conductor of, pops) -> (Williams, was the conductor of, the Boston Pops) -> Williams (699ms) In what year was Warren Moon born? Felicia Moon -1.22222222222 In what year was Warren Moon born? -> $x: ($x, marry, warren moon) -> (Felicia Moon, was married to, Warren Moon) -> Felicia Moon (754ms) When was the Red Cross founded? Libya 1.666666666658 When was the Red Cross founded? -> $x: (red cross, be found in, $x) -> (the Red Cross, have been found in, Libya) -> Libya (1829ms) When was the Red Cross founded? an HIV infection case 1.666666666658 When was the Red Cross founded? -> $x: (red cross, be found in, $x) -> (Swiss Red Cross, has been found guilty in, an HIV infection case) -> an HIV infection case (1829ms) When was the Red Cross founded? Geneva 1.666666666658 When was the Red Cross founded? -> $x: (red cross, be found in, $x) -> (The Red Cross Museum, is found in, Geneva) -> Geneva (1829ms) When was the Red Cross founded? the town 1.666666666658 When was the Red Cross founded? -> $x: (red cross, be found in, $x) -> (the Red Cross, had been found in, the town) -> the town (1829ms) When was the Red Cross founded? the ?About 1.666666666658 When was the Red Cross founded? -> $x: (red cross, be found in, $x) -> (Additional Red Cross history, can be found in, the ?About) -> the ?About (1829ms) When was the Red Cross founded? Australian Red Cross 1.444444444442 When was the Red Cross founded? -> $x: ($x, found, australian red cross) -> (Australian Red Cross, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Australian%20Red%20Cross) -> Australian Red Cross (1829ms) When was the Red Cross founded? http://en.wikipedia.org/wiki/Uganda%20Red%20Cross%20Society 1.222222222216 When was the Red Cross founded? -> $x: (red cross, be found on, $x) -> (Uganda Red Cross Society, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Uganda%20Red%20Cross%20Society) -> http://en.wikipedia.org/wiki/Uganda%20Red%20Cross%20Society (2605ms) When was the Red Cross founded? www.redcross .org 1.222222222216 When was the Red Cross founded? -> $x: (red cross, be found on, $x) -> (Open Red Cross shelters, can be found on, www.redcross .org) -> www.redcross .org (2605ms) When was the Red Cross founded? http://en.wikipedia.org/wiki/Crossing%20the%20Red%20Sea%20with%20The%20Adverts 1.222222222216 When was the Red Cross founded? -> $x: (red cross, be found on, $x) -> (Crossing The Red Sea With The Adverts, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Crossing%20the%20Red%20Sea%20with%20The%20Adverts) -> http://en.wikipedia.org/wiki/Crossing%20the%20Red%20Sea%20with%20The%20Adverts (1829ms) When was the Red Cross founded? http://en.wikipedia.org/wiki/Japanese%20Red%20Cross%20College%20of%20Nursing 1.222222222216 When was the Red Cross founded? -> $x: (red cross, be found on, $x) -> (Japanese Red Cross College of Nursing, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Japanese%20Red%20Cross%20College%20of%20Nursing) -> http://en.wikipedia.org/wiki/Japanese%20Red%20Cross%20College%20of%20Nursing (2604ms) When was the Red Cross founded? www.redcross 1.222222222216 When was the Red Cross founded? -> $x: (red cross, be found on, $x) -> (Open Red Cross shelters, can be found on, www.redcross) -> www.redcross (2605ms) When was the Red Cross founded? http://en.wikipedia.org/wiki/Australian%20Red%20Cross 1.222222222216 When was the Red Cross founded? -> $x: (red cross, be found on, $x) -> (Australian Red Cross, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Australian%20Red%20Cross) -> http://en.wikipedia.org/wiki/Australian%20Red%20Cross (1829ms) When was the Red Cross founded? The lesson plan 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (The lesson plan, can be found on, the Red Cross education site) -> The lesson plan (3568ms) When was the Red Cross founded? a compatible donor 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (a compatible donor, was found by, the American Red Cross) -> a compatible donor (2961ms) When was the Red Cross founded? a listing 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (a listing, can be found on, the American Red Cross website) -> a listing (3568ms) When was the Red Cross founded? A Spotted Gloucester Sow 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (A Spotted Gloucester Sow, found in, my local Red Cross shop) -> A Spotted Gloucester Sow (3523ms) When was the Red Cross founded? Crossing The Red Sea With The Adverts 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (Crossing The Red Sea With The Adverts, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Crossing%20the%20Red%20Sea%20with%20The%20Adverts) -> Crossing The Red Sea With The Adverts (3568ms) When was the Red Cross founded? cardigan 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (cardigan, found at, my local Red Cross op shop) -> cardigan (2819ms) When was the Red Cross founded? disaster supplies 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (disaster supplies, can be found on, the Red Cross website) -> disaster supplies (3523ms) When was the Red Cross founded? retirees 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (retirees, find opportunities with, the Red Cross) -> retirees (3091ms) When was the Red Cross founded? Humanity 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (Humanity, Find, your nearest solicitor Red Cross) -> Humanity (2605ms) When was the Red Cross founded? women 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (women, found, the American Red Cross) -> women (2961ms) When was the Red Cross founded? the end 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (the end, finds a closed door with, a giant red cross) -> the end (2819ms) When was the Red Cross founded? Similar statements 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (Similar statements, are found in, the Red Cross report) -> Similar statements (3568ms) When was the Red Cross founded? a user 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (a user, then find, the nearest American Red Cross chapter) -> a user (3651ms) When was the Red Cross founded? Adolphus Solomons 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (Adolphus Solomons, found, the American National Red Cross) -> Adolphus Solomons (3091ms) When was the Red Cross founded? ? People 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (? People, can find, open Red Cross shelters) -> ? People (3523ms) When was the Red Cross founded? the crowds 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (the crowds, will also find, high-quality Red Cross products) -> the crowds (2819ms) When was the Red Cross founded? the support 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (the support, found, their Red Cross officer) -> the support (3651ms) When was the Red Cross founded? a committed volunteer 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (a committed volunteer, find some time for, American Red Cross) -> a committed volunteer (3651ms) When was the Red Cross founded? More information 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (More information, can be found through, the American Red Cross) -> More information (3523ms) When was the Red Cross founded? a little 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (a little, found a great WWII pattern from, the Red Cross) -> a little (3523ms) When was the Red Cross founded? CPR Certification 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (CPR Certification, Find, a red cross CPR instructor) -> CPR Certification (3091ms) When was the Red Cross founded? community resources 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (community resources, can be found at, the American Red Cross) -> community resources (2819ms) When was the Red Cross founded? the donation page 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (the donation page, can be found at, Donate Red Cross) -> the donation page (3523ms) When was the Red Cross founded? evacuees 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (evacuees, could find, the American Red Cross) -> evacuees (3091ms) When was the Red Cross founded? Uganda Red Cross Society 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (Uganda Red Cross Society, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Uganda%20Red%20Cross%20Society) -> Uganda Red Cross Society (2961ms) When was the Red Cross founded? Clara Barton 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (Clara Barton, helped found, the American Red Cross) -> Clara Barton (3651ms) When was the Red Cross founded? Clara 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (Clara, found out about, The Red Cross) -> Clara (3091ms) When was the Red Cross founded? Japanese Red Cross College of Nursing 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (Japanese Red Cross College of Nursing, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Japanese%20Red%20Cross%20College%20of%20Nursing) -> Japanese Red Cross College of Nursing (3651ms) When was the Red Cross founded? military families 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (military families, Find, your local Red Cross) -> military families (3651ms) When was the Red Cross founded? the Samouni family 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (the Samouni family, were finally found by, the Red Cross) -> the Samouni family (2819ms) When was the Red Cross founded? general 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (general, will find a link to, the Red Cross) -> general (3568ms) When was the Red Cross founded? damage estimates 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (damage estimates, can be found in, Red Cross records) -> damage estimates (3091ms) When was the Red Cross founded? more information 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (more information, can be found at, the American Red Cross) -> more information (3091ms) When was the Red Cross founded? John 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (John, has also found, Red Cross support invaluable) -> John (3651ms) When was the Red Cross founded? the middle 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (the middle, you?ll find, a Red Cross emergency aid station) -> the middle (3651ms) When was the Red Cross founded? reporters 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (reporters, found, the Red Cross tweets) -> reporters (3568ms) When was the Red Cross founded? Related Sites American Red Cross 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (Related Sites American Red Cross, Find out about, the Red Cross) -> Related Sites American Red Cross (3674ms) When was the Red Cross founded? broadcasting stations 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (broadcasting stations, had been found under, Red Cross control) -> broadcasting stations (3523ms) When was the Red Cross founded? Dunant 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (Dunant, found, the American Red Cross) -> Dunant (2819ms) When was the Red Cross founded? the had 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (the had, found, the Red-Cross or) -> the had (3523ms) When was the Red Cross founded? Help someone 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (Help someone, find, a Red Cross representative) -> Help someone (2819ms) When was the Red Cross founded? food 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (food, are relieved to find, the Red Cross volunteers) -> food (3568ms) When was the Red Cross founded? Maycie 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (Maycie, found employment at, the Red Cross) -> Maycie (2961ms) When was the Red Cross founded? a national guardsman 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (a national guardsman, found our way to, the Red Cross shelter) -> a national guardsman (3674ms) When was the Red Cross founded? Further advice 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (Further advice, may be found on, the Red Cross website) -> Further advice (2961ms) When was the Red Cross founded? Five potential donors 1.1111111111079999 When was the Red Cross founded? -> $x: ($x, found, red cross) -> (Five potential donors, were found in, the Red Cross) -> Five potential donors (3568ms) When was the Red Cross founded? Potter 0.999999999995 When was the Red Cross founded? -> $x: ($x, create, red cross) -> (Potter, created, the American Red Cross Youth Corps) -> Potter (3907ms) When was the Red Cross founded? He?s 0.999999999995 When was the Red Cross founded? -> $x: ($x, create, red cross) -> (He?s, created, the Red Cross Online Disaster Portal) -> He?s (3917ms) When was the Red Cross founded? W????rtenberg 0.999999999995 When was the Red Cross founded? -> $x: ($x, create, red cross) -> (W????rtenberg, created, the International Red Cross Movement) -> W????rtenberg (3912ms) When was the Red Cross founded? 1864 0.999999999995 When was the Red Cross founded? -> $x: (red cross, start in, $x) -> (The Red Cross, was started in, 1864) -> 1864 (3912ms) When was the Red Cross founded? Congress 0.999999999995 When was the Red Cross founded? -> $x: ($x, create, red cross) -> (Congress, created, the Red Cross) -> Congress (3917ms) When was the Red Cross founded? Flat 0.999999999995 When was the Red Cross founded? -> $x: ($x, create, red cross) -> (Flat, created for, the American Red Cross) -> Flat (3912ms) When was the Red Cross founded? the Civil War nurse 0.999999999995 When was the Red Cross founded? -> $x: ($x, create, red cross) -> (the Civil War nurse, created, the American Red Cross) -> the Civil War nurse (3778ms) When was the Red Cross founded? New China News .VIETNAMISTAN ??Bush 0.999999999995 When was the Red Cross founded? -> $x: ($x, create, red cross) -> (New China News .VIETNAMISTAN ??Bush, creates, Red Cross fund) -> New China News .VIETNAMISTAN ??Bush (3701ms) When was the Red Cross founded? Darfur 0.999999999995 When was the Red Cross founded? -> $x: (red cross, found in, $x) -> (The Red Cross, found his family in, Darfur) -> Darfur (3917ms) When was the Red Cross founded? eggs 0.999999999995 When was the Red Cross founded? -> $x: ($x, create, red cross) -> (eggs, were created to honor, the Red Cross) -> eggs (3902ms) When was the Red Cross founded? 1863 0.999999999995 When was the Red Cross founded? -> $x: (red cross, start in, $x) -> (the Red Cross, was started in, 1863) -> 1863 (3907ms) When was the Red Cross founded? a volunteer 0.999999999995 When was the Red Cross founded? -> $x: ($x, create, red cross) -> (a volunteer, create an album of, your summer Red Cross trip) -> a volunteer (3912ms) When was the Red Cross founded? The EHL course 0.999999999995 When was the Red Cross founded? -> $x: ($x, create, red cross) -> (The EHL course, was created by, the Red Cross program) -> The EHL course (3902ms) When was the Red Cross founded? the government 0.999999999995 When was the Red Cross founded? -> $x: ($x, create, red cross) -> (the government, creates, its own Filipino Red Cross society) -> the government (3917ms) When was the Red Cross founded? Pakistan 0.999999999995 When was the Red Cross founded? -> $x: (red cross, found in, $x) -> (the kidnapped British Red Cross worker, found dead in, Pakistan) -> Pakistan (3907ms) When was the Red Cross founded? Pringle 0.999999999995 When was the Red Cross founded? -> $x: ($x, invent, red cross) -> (Pringle, also co-invented, the Red Cross concept) -> Pringle (3902ms) When was the Red Cross founded? temporary housing 0.999999999995 When was the Red Cross founded? -> $x: (red cross, found in, $x) -> (The American Red Cross, assisted in finding, temporary housing) -> temporary housing (3912ms) When was the Red Cross founded? The ADGP 0.999999999995 When was the Red Cross founded? -> $x: ($x, create, red cross) -> (The ADGP, was created by, the American Red Cross) -> The ADGP (3777ms) When was the Red Cross founded? the country 0.999999999995 When was the Red Cross founded? -> $x: ($x, create, red cross) -> (the country, create significant difficulties for, Red Cross) -> the country (3701ms) When was the Red Cross founded? the early 1900s 0.999999999995 When was the Red Cross founded? -> $x: (red cross, start in, $x) -> (the American National Red Cross, started in, the early 1900s) -> the early 1900s (3902ms) When was the Red Cross founded? work 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, did, work) -> work (3961ms) When was the Red Cross founded? the actual role playing 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the American Red Cross, did, the actual role playing) -> the actual role playing (3952ms) When was the Red Cross founded? marks 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be protect, $x) -> (the American Red Cross name, are federally protected, marks) -> marks (3964ms) When was the Red Cross founded? a fantastic job 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, did, a fantastic job) -> a fantastic job (3959ms) When was the Red Cross founded? disasters 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, does respond to, disasters) -> disasters (3966ms) When was the Red Cross founded? Missouri 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the American Red Cross, opened shelters in, Missouri) -> Missouri (3949ms) When was the Red Cross founded? Wyatt 0.888888888884 When was the Red Cross founded? -> $x: ($x, discover, red cross) -> (Wyatt, claimed to have discovered, the Red Sea crossing) -> Wyatt (3959ms) When was the Red Cross founded? excellent work 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, did, excellent work) -> excellent work (3927ms) When was the Red Cross founded? Muslims 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (glad the red cross, really do, Muslims) -> Muslims (3961ms) When was the Red Cross founded? North Korea 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (The Red Cross, was established in, North Korea) -> North Korea (3941ms) When was the Red Cross founded? Red Cross volunteers 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross Emblem, did, Red Cross volunteers) -> Red Cross volunteers (3922ms) When was the Red Cross founded? Hidalgo 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The American Red Cross, has opened shelters in, Hidalgo) -> Hidalgo (3936ms) When was the Red Cross founded? a damn good job 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, did, a damn good job) -> a damn good job (3927ms) When was the Red Cross founded? the Heinleins 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, so did, the Heinleins) -> the Heinleins (3964ms) When was the Red Cross founded? offer assistance 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The American Red Cross, did, offer assistance) -> offer assistance (3961ms) When was the Red Cross founded? light 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be make in, $x) -> (the American Red Cross, will be made in, light) -> light (3959ms) When was the Red Cross founded? Cutchogue-New Suffolk 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross as, did, Cutchogue-New Suffolk) -> Cutchogue-New Suffolk (3966ms) When was the Red Cross founded? the Iowa School 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The American Red Cross, will open a shelter in, the Iowa School) -> the Iowa School (3964ms) When was the Red Cross founded? a wonderful job 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, do, a wonderful job) -> a wonderful job (3927ms) When was the Red Cross founded? mobile food distribution 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (Red Cross, was doing, mobile food distribution) -> mobile food distribution (3936ms) When was the Red Cross founded? a lot of work 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, is doing, a lot of work) -> a lot of work (3941ms) When was the Red Cross founded? nearby villages 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (Three Red Cross care centers, were opened in, nearby villages) -> nearby villages (3961ms) When was the Red Cross founded? the purchase 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be make in, $x) -> (the Japan Red Cross, has been made in, the purchase) -> the purchase (3945ms) When was the Red Cross founded? Center Point 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (3 Alabama Red Cross shelters, remain open in, Center Point) -> Center Point (3927ms) When was the Red Cross founded? Milverton 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (-Tue Apr 29 , Red Cross, is opening a shelter in, Milverton) -> Milverton (3917ms) When was the Red Cross founded? the same 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, did, the same) -> the same (3931ms) When was the Red Cross founded? a local level 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, does on, a local level) -> a local level (3949ms) When was the Red Cross founded? the ground 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be make on, $x) -> (the difference Red Cross, is making on, the ground) -> the ground (3964ms) When was the Red Cross founded? much more than respond to disasters 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, does, much more than respond to disasters) -> much more than respond to disasters (3927ms) When was the Red Cross founded? an excellent job 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, did, an excellent job) -> an excellent job (3959ms) When was the Red Cross founded? a lot of good work 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, does, a lot of good work) -> a lot of good work (3941ms) When was the Red Cross founded? the Hempfield Twp 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The Red Cross, quickly opened a shelter in, the Hempfield Twp) -> the Hempfield Twp (3964ms) When was the Red Cross founded? medical workers 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be protect, $x) -> (the Red Cross, is supposed to protect, medical workers) -> medical workers (3959ms) When was the Red Cross founded? Hood River and Newport 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the Red Cross, had opened shelters in, Hood River and Newport) -> Hood River and Newport (3959ms) When was the Red Cross founded? 1917 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (The American Red Cross, was established in, 1917) -> 1917 (3952ms) When was the Red Cross founded? training course 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (Red Cross, do first aid, training course) -> training course (3956ms) When was the Red Cross founded? a lot 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, has done, a lot) -> a lot (3961ms) When was the Red Cross founded? 2004 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (the Red Cross, was established in, 2004) -> 2004 (3956ms) When was the Red Cross founded? a good job 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, is doing, a good job) -> a good job (3964ms) When was the Red Cross founded? important work 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, is doing, important work) -> important work (3952ms) When was the Red Cross founded? Charleston County 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The Red Cross, will open shelters in, Charleston County) -> Charleston County (3927ms) When was the Red Cross founded? the state 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the Red Cross, has opened shelters in, the state) -> the state (3936ms) When was the Red Cross founded? a tremendous job 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, does, a tremendous job) -> a tremendous job (3961ms) When was the Red Cross founded? great work 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, does, great work) -> great work (3945ms) When was the Red Cross founded? a rather special story 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (a Red Cross cat, does with, a rather special story) -> a rather special story (3941ms) When was the Red Cross founded? Wichita Falls 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The Red Cross, has opened shelters in, Wichita Falls) -> Wichita Falls (3964ms) When was the Red Cross founded? Icard 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The American Red Cross, opened a shelter in, Icard) -> Icard (3922ms) When was the Red Cross founded? class scheduling 0.888888888884 When was the Red Cross founded? -> $x: (red cross, found on, $x) -> (a local Red Cross, find information on, class scheduling) -> class scheduling (3952ms) When was the Red Cross founded? an online course 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, do, an online course) -> an online course (3959ms) When was the Red Cross founded? case work 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (Red Cross, will continue to do, case work) -> case work (3936ms) When was the Red Cross founded? Oklahoma 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the Red Cross, has opened shelters in, Oklahoma) -> Oklahoma (3941ms) When was the Red Cross founded? 1954 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (The Fiji Red Cross, was established in, 1954) -> 1954 (3959ms) When was the Red Cross founded? May 21 , 1881 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be establish on, $x) -> (The American Red Cross, was established on, May 21 , 1881) -> May 21 , 1881 (3956ms) When was the Red Cross founded? North Carolina 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (Red Cross shelters, to open in, North Carolina) -> North Carolina (3949ms) When was the Red Cross founded? New York 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (The first Red Cross blood center, was established in, New York) -> New York (3927ms) When was the Red Cross founded? the Privacy 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be protect, $x) -> (Australian Red Cross, is protected by, the Privacy) -> the Privacy (3945ms) When was the Red Cross founded? finpecia work 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (View Red Cross photos, does, finpecia work) -> finpecia work (3917ms) When was the Red Cross founded? Marietta 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The Red Cross, has opened a shelter in, Marietta) -> Marietta (3936ms) When was the Red Cross founded? the Town 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the Red Cross, has opened an office in, the Town) -> the Town (3922ms) When was the Red Cross founded? everyday 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, do, everyday) -> everyday (3945ms) When was the Red Cross founded? the leg work 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The American Red Cross, does, the leg work) -> the leg work (3956ms) When was the Red Cross founded? 1967 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (The District Red Cross Society, was established in, 1967) -> 1967 (3956ms) When was the Red Cross founded? Newburgh 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The American Red Cross, has opened a shelter in, Newburgh) -> Newburgh (3952ms) When was the Red Cross founded? communities 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the American Red Cross, opened shelters in, communities) -> communities (3922ms) When was the Red Cross founded? the Great Chicago Blizzard 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Chicago Red Cross, did during, the Great Chicago Blizzard) -> the Great Chicago Blizzard (3931ms) When was the Red Cross founded? Oak Grove 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (Stranded Motorists Red Cross, opens shelter in, Oak Grove) -> Oak Grove (3945ms) When was the Red Cross founded? international law 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be protect, $x) -> (the Red Cross emblem, is protected by, international law) -> international law (3922ms) When was the Red Cross founded? a great job 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, does, a great job) -> a great job (3952ms) When was the Red Cross founded? Utah 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be make in, $x) -> (the American Red Cross, were made in, Utah) -> Utah (3961ms) When was the Red Cross founded? Anjar 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the red cross, opened some schools in, Anjar) -> Anjar (3949ms) When was the Red Cross founded? several 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be discover in, $x) -> (Red Cross parcels, was discovered in, several) -> several (3922ms) When was the Red Cross founded? a regional disaster training 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, had done, a regional disaster training) -> a regional disaster training (3931ms) When was the Red Cross founded? 29 May 1904 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be establish on, $x) -> (the Red Cross, is established on, 29 May 1904) -> 29 May 1904 (3927ms) When was the Red Cross founded? sewing 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (Red Cross POW, did, sewing) -> sewing (3941ms) When was the Red Cross founded? the region 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (another 12 non-Red Cross shelters, opened in, the region) -> the region (3949ms) When was the Red Cross founded? Massachusetts 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (Red Cross shelters, are also open in, Massachusetts) -> Massachusetts (3961ms) When was the Red Cross founded? victims 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, do for, victims) -> victims (3961ms) When was the Red Cross founded? Rockport 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (Red Cross, opens shelter in, Rockport) -> Rockport (3952ms) When was the Red Cross founded? China 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (Red Cross, is well established in, China) -> China (3941ms) When was the Red Cross founded? Arizona 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (Red Cross shelters, are open in, Arizona) -> Arizona (3949ms) When was the Red Cross founded? Minneapolis 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The Red Cross, also opened a shelter in, Minneapolis) -> Minneapolis (3959ms) When was the Red Cross founded? the most good 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, to do, the most good) -> the most good (3961ms) When was the Red Cross founded? central Missouri 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (Eight Red Cross shelters, remain open in, central Missouri) -> central Missouri (3966ms) When was the Red Cross founded? a fine job 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, does, a fine job) -> a fine job (3936ms) When was the Red Cross founded? Australia 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (the Red Cross, was an established practice in, Australia) -> Australia (3949ms) When was the Red Cross founded? relief use 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, do, relief use) -> relief use (3956ms) When was the Red Cross founded? Congressmen 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, so do, Congressmen) -> Congressmen (3952ms) When was the Red Cross founded? the website 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be make on, $x) -> (the American Red Cross events, can be made on, the website) -> the website (3927ms) When was the Red Cross founded? matter 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, actually do, matter) -> matter (3931ms) When was the Red Cross founded? the community 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (an additional Red Cross shelter, was opened in, the community) -> the community (3964ms) When was the Red Cross founded? Charlestown 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The American Red Cross, opened a shelter in, Charlestown) -> Charlestown (3941ms) When was the Red Cross founded? Delaware 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The Red Cross, has additional shelters open in, Delaware) -> Delaware (3964ms) When was the Red Cross founded? nearby Dansville 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the first Red Cross chapter, opens in, nearby Dansville) -> nearby Dansville (3941ms) When was the Red Cross founded? the joints 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the red cross, Do, the joints) -> the joints (3956ms) When was the Red Cross founded? Illinois 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (Red Cross shelters, were open overnight in, Illinois) -> Illinois (3964ms) When was the Red Cross founded? Chester County 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the Red Cross, was opening a shelter in, Chester County) -> Chester County (3931ms) When was the Red Cross founded? 1881 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (The Red Cross, was established in, 1881) -> 1881 (3945ms) When was the Red Cross founded? Washington 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (The American Red Cross, was established in, Washington) -> Washington (3956ms) When was the Red Cross founded? Lowe?s stores 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be make in, $x) -> (the Red Cross, can be made in, Lowe?s stores) -> Lowe?s stores (3964ms) When was the Red Cross founded? Sierra Leone 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The Red Cross, has opened a new 60-bed hospital in, Sierra Leone) -> Sierra Leone (3964ms) When was the Red Cross founded? The Geneva Convention 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be protect, $x) -> (The Red Cross, are protected by, The Geneva Convention) -> The Geneva Convention (3931ms) When was the Red Cross founded? good work 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The American Red Cross, does, good work) -> good work (3936ms) When was the Red Cross founded? American servicemen 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, does for, American servicemen) -> American servicemen (3922ms) When was the Red Cross founded? a thorough vetting 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, did, a thorough vetting) -> a thorough vetting (3945ms) When was the Red Cross founded? Columbus 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The American Red Cross, opened a shelter in, Columbus) -> Columbus (3922ms) When was the Red Cross founded? so 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, to do, so) -> so (3949ms) When was the Red Cross founded? Alabama 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (Red Cross shelters, are open in, Alabama) -> Alabama (3961ms) When was the Red Cross founded? a blood drive 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, did, a blood drive) -> a blood drive (3936ms) When was the Red Cross founded? Canton 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The Red Cross, opened a shelter in, Canton) -> Canton (3952ms) When was the Red Cross founded? Dora and Parrish 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The American Red Cross, opened shelters in, Dora and Parrish) -> Dora and Parrish (3931ms) When was the Red Cross founded? 1953 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the American Red Cross, opened in, 1953) -> 1953 (3949ms) When was the Red Cross founded? Reno 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (Two more Red Cross shelters, were also recently opened in, Reno) -> Reno (3945ms) When was the Red Cross founded? Double Duty 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (Red Cross Volunteer, Does, Double Duty) -> Double Duty (3945ms) When was the Red Cross founded? the other abductees 0.888888888884 When was the Red Cross founded? -> $x: ($x, discover, red cross) -> (the other abductees, are discovered by, the Red Cross) -> the other abductees (3941ms) When was the Red Cross founded? a decade 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Canadian Red Cross, did, a decade) -> a decade (3959ms) When was the Red Cross founded? 1932 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (The Malawi Red Cross, was formally established in, 1932) -> 1932 (3956ms) When was the Red Cross founded? Nebraska and Iowa due 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (Four Red Cross shelters, are open in, Nebraska and Iowa due) -> Nebraska and Iowa due (3952ms) When was the Red Cross founded? May 1881 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be establish on, $x) -> (the American Red Cross, was established on, May 1881) -> May 1881 (3958ms) When was the Red Cross founded? Virginia 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (No Red Cross shelters, are open in, Virginia) -> Virginia (3952ms) When was the Red Cross founded? 9/11 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the American Red Cross, did on, 9/11) -> 9/11 (3961ms) When was the Red Cross founded? 1952as 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (The Fiji Red Cross Society, was established in, 1952as) -> 1952as (3956ms) When was the Red Cross founded? a good deed 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (Red Cross, do, a good deed) -> a good deed (3948ms) When was the Red Cross founded? the billions 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (Red Cross, do exactly with, the billions) -> the billions (3941ms) When was the Red Cross founded? various areas 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (American Red Cross shelters, remain open in, various areas) -> various areas (3931ms) When was the Red Cross founded? Haiti 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (The Red Cross, is already well-established in, Haiti) -> Haiti (3956ms) When was the Red Cross founded? forward 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, does put, forward) -> forward (3952ms) When was the Red Cross founded? several places 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the Red Cross, has shelters open in, several places) -> several places (3961ms) When was the Red Cross founded? different Allied countries 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be make in, $x) -> (Red Cross parcels, were made up in, different Allied countries) -> different Allied countries (3961ms) When was the Red Cross founded? the damaged areas 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (Red Cross workers, opened shelters in, the damaged areas) -> the damaged areas (3927ms) When was the Red Cross founded? the old Aoy School 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the Red Cross, opened a hospital in, the old Aoy School) -> the old Aoy School (3964ms) When was the Red Cross founded? yen 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be make in, $x) -> (the Japanese Red Cross Society, must be made in, yen) -> yen (3959ms) When was the Red Cross founded? 1950 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (The Hong Kong Red Cross, was established in, 1950) -> 1950 (3956ms) When was the Red Cross founded? amazing work 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The American Red Cross, does, amazing work) -> amazing work (3945ms) When was the Red Cross founded? the affected areas 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (The Red Cross, has opened shelters in, the affected areas) -> the affected areas (3941ms) When was the Red Cross founded? such a request 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, did put forward, such a request) -> such a request (3949ms) When was the Red Cross founded? Vietnamese foundations 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Vietnamese Red Cross, as do, Vietnamese foundations) -> Vietnamese foundations (3952ms) When was the Red Cross founded? 1870 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be establish in, $x) -> (the British Red Cross, was established in, 1870) -> 1870 (3922ms) When was the Red Cross founded? urban areas 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (American Red Cross shelters, were only opened in, urban areas) -> urban areas (3927ms) When was the Red Cross founded? Devine 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (One American Red Cross shelter, was open overnight in, Devine) -> Devine (3945ms) When was the Red Cross founded? Monday 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open on, $x) -> (The Lebanese Red Cross, opened on, Monday) -> Monday (3945ms) When was the Red Cross founded? the Canine Blood Bank 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (the Red Cross, too does, the Canine Blood Bank) -> the Canine Blood Bank (3959ms) When was the Red Cross founded? protection 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross symbol, did provide, protection) -> protection (3931ms) When was the Red Cross founded? an amazing job 0.888888888884 When was the Red Cross founded? -> $x: (red cross, do, $x) -> (The Red Cross, does, an amazing job) -> an amazing job (3936ms) When was the Red Cross founded? Norman 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the American Red Cross, also opened a shelter in, Norman) -> Norman (3961ms) When was the Red Cross founded? 1948 0.888888888884 When was the Red Cross founded? -> $x: (red cross, open in, $x) -> (the first Red Cross shop, opened in, 1948) -> 1948 (3927ms) When was the Red Cross founded? symbols 0.888888888884 When was the Red Cross founded? -> $x: (red cross, be protect, $x) -> (Red Cross and Red Crescent emblems, are protected, symbols) -> symbols (3941ms) When was the Red Cross founded? 1914 0.777777777773 When was the Red Cross founded? -> $x: (red cross, be form in, $x) -> (The Australian Red Cross, was formed in, 1914) -> 1914 (3966ms) When was the Red Cross founded? Europe 0.777777777773 When was the Red Cross founded? -> $x: (red cross, be form in, $x) -> (the Red Cross Movement, was being formed in, Europe) -> Europe (3966ms) When was the Red Cross founded? May 1905 0.777777777773 When was the Red Cross founded? -> $x: (red cross, be form in, $x) -> (the Red Cross, was first formed in, May 1905) -> May 1905 (3968ms) When was the Red Cross founded? Switzerland 0.777777777773 When was the Red Cross founded? -> $x: (red cross, be form in, $x) -> (The Red Cross, was formed in, Switzerland) -> Switzerland (3968ms) When was the Red Cross founded? response 0.777777777773 When was the Red Cross founded? -> $x: (red cross, be form in, $x) -> (the Red Cross, was formed in, response) -> response (3966ms) When was the Red Cross founded? September 0.777777777773 When was the Red Cross founded? -> $x: (red cross, be create in, $x) -> (the American Red Cross, was created in, September) -> September (3966ms) When was the Red Cross founded? 1876 0.777777777773 When was the Red Cross founded? -> $x: (red cross, be create in, $x) -> (The Yugoslav Red Cross Society, was created in, 1876) -> 1876 (3966ms) When was the Red Cross founded? 1923 0.777777777773 When was the Red Cross founded? -> $x: (red cross, be form in, $x) -> (the Belgian Red Cross, is later formed in, 1923) -> 1923 (3966ms) When was the Red Cross founded? 1779 0.777777777773 When was the Red Cross founded? -> $x: (red cross, be form in, $x) -> (Red Cross Sullivan County, was formed in, 1779) -> 1779 (3966ms) When was the Red Cross founded? antisemitism 0.44444444443799996 When was the Red Cross founded? -> $x: (red cross, have history of, $x) -> (The Red Cross, has a history of, antisemitism) -> antisemitism (3968ms) When was the Red Cross founded? training nurses 0.44444444443799996 When was the Red Cross founded? -> $x: (red cross, have history of, $x) -> (The Red Cross, has a long history of, training nurses) -> training nurses (3970ms) When was the Red Cross founded? fraud 0.44444444443799996 When was the Red Cross founded? -> $x: (red cross, have history of, $x) -> (The Red Cross, has a well documented history of, fraud) -> fraud (3968ms) When was the Red Cross founded? partnering 0.44444444443799996 When was the Red Cross founded? -> $x: (red cross, have history of, $x) -> (The American Red Cross, has a long history of, partnering) -> partnering (3968ms) When was the Red Cross founded? the herd 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the herd, is being crossed to, Swedish Red and Montbeliard sires) -> the herd (3970ms) When was the Red Cross founded? Ecclestone 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (Ecclestone, is also crossing his fingers for, Red Bull) -> Ecclestone (3973ms) When was the Red Cross founded? The sound 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (The sound, is a cross between, Otis Redding) -> The sound (3975ms) When was the Red Cross founded? each wing 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (each wing, is crossed by, a bright red band) -> each wing (3970ms) When was the Red Cross founded? a coherent picture 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (a coherent picture, is the crossing of, the Red Sea) -> a coherent picture (3973ms) When was the Red Cross founded? plant 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (plant, is a cross between, a red raspberry) -> plant (3970ms) When was the Red Cross founded? scary phrases 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (scary phrases, were crossed out in, red pen) -> scary phrases (3972ms) When was the Red Cross founded? Red sex-links 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (Red sex-links, are a cross between, a Rhode Island Red) -> Red sex-links (3977ms) When was the Red Cross founded? a driver 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (a driver, be allowed to cross, red traffic lights) -> a driver (3972ms) When was the Red Cross founded? Israel 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (Israel, were crossing, the Red Sea) -> Israel (3977ms) When was the Red Cross founded? Mario Lanza 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (Mario Lanza, is a cross of, a huge dark red) -> Mario Lanza (3970ms) When was the Red Cross founded? the words 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the words, are crossed out in, red) -> the words (3975ms) When was the Red Cross founded? A white-eyed female fruit fly 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (A white-eyed female fruit fly, is crossed with, a red-eyed male) -> A white-eyed female fruit fly (3977ms) When was the Red Cross founded? L33VG4 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (L33VG4, is crossed by, red mark) -> L33VG4 (3977ms) When was the Red Cross founded? the praying women 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the praying women, are cross-hatched patterns in, red) -> the praying women (3972ms) When was the Red Cross founded? the Canadian Pacific 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the Canadian Pacific, was to cross, the Red River) -> the Canadian Pacific (3977ms) When was the Red Cross founded? The orders 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (The orders, have been crossed through in, red) -> The orders (3974ms) When was the Red Cross founded? Fingers 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (Fingers, are crossed, that Red Lights) -> Fingers (3977ms) When was the Red Cross founded? the second half 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the second half, were unable to cross, the secure Reds line) -> the second half (3973ms) When was the Red Cross founded? The 7th 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (The 7th, is the crossing of, the Red Sea) -> The 7th (3972ms) When was the Red Cross founded? The rose color 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (The rose color, is a cross between, red and pink) -> The rose color (3974ms) When was the Red Cross founded? the Jews 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the Jews, were crossing, the Red Sea) -> the Jews (3973ms) When was the Red Cross founded? Fuji apples 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (Fuji apples, are a cross between, Red Delicious) -> Fuji apples (3975ms) When was the Red Cross founded? Foxander 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (Foxander, is a cross between, a British Red Fox) -> Foxander (3977ms) When was the Red Cross founded? WorldCom and Williams 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (WorldCom and Williams, are now crossing, the Red River) -> WorldCom and Williams (3975ms) When was the Red Cross founded? the Bible 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the Bible, are the crossing of, the Red Sea) -> the Bible (3977ms) When was the Red Cross founded? the Sooners 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the Sooners, have been crossing, the Red River) -> the Sooners (3972ms) When was the Red Cross founded? The marionberry 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (The marionberry, is a cross between, a red raspberry) -> The marionberry (3977ms) When was the Red Cross founded? the marriage 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the marriage, are crossing, each other?s red lights) -> the marriage (3970ms) When was the Red Cross founded? PB 111 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (PB 111, is a cross between, the Cameroon Red Dwarf) -> PB 111 (3972ms) When was the Red Cross founded? Fordo 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (Fordo, is the crossing of, a red line) -> Fordo (3970ms) When was the Red Cross founded? Fuji Fuji apples 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (Fuji Fuji apples, are a cross between, the Red Delicious apple) -> Fuji Fuji apples (3972ms) When was the Red Cross founded? the flight 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the flight, was crossing, the red rock cliffs west) -> the flight (3975ms) When was the Red Cross founded? The Johnson cattle 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (The Johnson cattle, are a cross of, Red Angus and Simmental) -> The Johnson cattle (3972ms) When was the Red Cross founded? The river 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (The river, is crossed by, a picturesque arched red bridge) -> The river (3977ms) When was the Red Cross founded? Blacks 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (Blacks, are a cross between, a Rhode Island Red) -> Blacks (3970ms) When was the Red Cross founded? Syria 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (Syria, is crossing, previous red lines) -> Syria (3973ms) When was the Red Cross founded? the index 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the index, are all crossed in, red crayon) -> the index (3975ms) When was the Red Cross founded? the most successful 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the most successful, is the cross between, red and white) -> the most successful (3973ms) When was the Red Cross founded? 23ft , 2gal This variety 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (23ft , 2gal This variety, is a cross between, Red Maple) -> 23ft , 2gal This variety (3972ms) When was the Red Cross founded? the Hebrews and their God 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the Hebrews and their God, is the crossing of, the Red Sea) -> the Hebrews and their God (3970ms) When was the Red Cross founded? the sync icon 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the sync icon, will be crossed by, red line) -> the sync icon (3973ms) When was the Red Cross founded? the original elongated track 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the original elongated track, is crossed by, this red coloration) -> the original elongated track (3970ms) When was the Red Cross founded? The second event 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (The second event, is the crossing of, the Red Sea) -> The second event (3972ms) When was the Red Cross founded? the loganberry 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the loganberry, is a cross between, a red raspberry) -> the loganberry (3973ms) When was the Red Cross founded? the mountains 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the mountains, was crossed by, a red pencil) -> the mountains (3975ms) When was the Red Cross founded? the army 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the army, is crossing, the Red Sea) -> the army (3977ms) When was the Red Cross founded? Marquis 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (Marquis, is a cross between, Red Fife and Hard Red Calcutta) -> Marquis (3975ms) When was the Red Cross founded? the highpoint 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the highpoint, is the crossing of, the Red Sea) -> the highpoint (3973ms) When was the Red Cross founded? Sunvalley 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (Sunvalley, is a cross between, Red Sunset) -> Sunvalley (3977ms) When was the Red Cross founded? Fuji 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (Fuji, is a cross between, a Red Delicious) -> Fuji (3972ms) When was the Red Cross founded? the address 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the address, was crossed out with, a red crayon) -> the address (3974ms) When was the Red Cross founded? a French breed 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (a French breed, is a cross between, Rhode Island Red) -> a French breed (3970ms) When was the Red Cross founded? The Fuji apple 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (The Fuji apple, is a cross between, a Red Delicious) -> The Fuji apple (3972ms) When was the Red Cross founded? truth and error 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (truth and error, is the crossing of, the Red Sea) -> truth and error (3973ms) When was the Red Cross founded? international terrorism 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (international terrorism, was crossing, red lines) -> international terrorism (3970ms) When was the Red Cross founded? the word ?commissioner ? 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the word ?commissioner ?, was crossed out with, a big red ?x ?) -> the word ?commissioner ? (3976ms) When was the Red Cross founded? CA 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (CA, was crossed out with, a red X) -> CA (3973ms) When was the Red Cross founded? Arlet 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (Arlet, is a cross of, Golden Delicious and Ida Red) -> Arlet (3972ms) When was the Red Cross founded? Bnai Yisrael 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (Bnai Yisrael, were crossing, the Red Sea) -> Bnai Yisrael (3970ms) When was the Red Cross founded? the pedestrian 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the pedestrian, was crossing against, a red light) -> the pedestrian (3975ms) When was the Red Cross founded? Yorkshire terriers 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (Yorkshire terriers, were crossed to produce, a small , red) -> Yorkshire terriers (3973ms) When was the Red Cross founded? a Muppet , I?d 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (a Muppet , I?d, probably be a cross between, Red Fraggle) -> a Muppet , I?d (3970ms) When was the Red Cross founded? rectangle 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (rectangle, is tan cross with, red) -> rectangle (3973ms) When was the Red Cross founded? Dine For', 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (Dine For',, is a cross between, red and pink) -> Dine For', (3975ms) When was the Red Cross founded? fingers 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (fingers, crossed I?ll be, bright red) -> fingers (3970ms) When was the Red Cross founded? the Fuji 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the Fuji, is a cross between, a Red Delicious) -> the Fuji (3970ms) When was the Red Cross founded? refusal 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (refusal, is crossing, red lines) -> refusal (3972ms) When was the Red Cross founded? the Israelites 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the Israelites, were crossing, the Red Sea) -> the Israelites (3977ms) When was the Red Cross founded? ?Grove Farm ? 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (?Grove Farm ?, was crossed with, ?Kohala Red?) -> ?Grove Farm ? (3975ms) When was the Red Cross founded? the Swiss flag 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the Swiss flag, is a white cross on, red) -> the Swiss flag (3977ms) When was the Red Cross founded? the Jordan River 0.33333333332900006 When was the Red Cross founded? -> $x: ($x, be cross, red) -> (the Jordan River, is like crossing, the Red Sea) -> the Jordan River (3972ms) When was the Red Cross founded? any RBC branch -0.0 When was the Red Cross founded? -> $x: (canadian red cross, do, $x) -> (the Canadian Red Cross, can do so by visiting, any RBC branch) -> any RBC branch (3977ms) Who is the president of Stanford University? The author 1.5555555555500002 Who is the president of Stanford University? -> $x: ($x, be first president of, stanford university) -> (The author, was the first president of, Stanford University) -> The author (1114ms) Who is the president of Stanford University? Jordan 1.5555555555500002 Who is the president of Stanford University? -> $x: ($x, be first president of, stanford university) -> (Jordan, was the first President of, Stanford University) -> Jordan (1114ms) Who is the president of Stanford University? Ira 1.444444444441 Who is the president of Stanford University? -> $x: ($x, leader, stanford university) -> (Ira, is also an active leader at, Stanford University) -> Ira (1114ms) Who is the president of Stanford University? The Watson Papers 1.444444444439 Who is the president of Stanford University? -> $x: ($x, found, stanford university) -> (The Watson Papers, may be found at, Stanford University) -> The Watson Papers (1114ms) Who is the president of Stanford University? Google 1.444444444439 Who is the president of Stanford University? -> $x: ($x, found, stanford university) -> (Google, found at, Stanford University) -> Google (1179ms) Who is the president of Stanford University? 18:48 1.444444444439 Who is the president of Stanford University? -> $x: ($x, found, stanford university) -> (18:48, Find, a Faculty Member ? Stanford University) -> 18:48 (1114ms) Who is the president of Stanford University? Linn 1.444444444439 Who is the president of Stanford University? -> $x: ($x, found, stanford university) -> (Linn, found a study by, Stanford University) -> Linn (1227ms) Who is the president of Stanford University? Ngai?s work 1.444444444439 Who is the president of Stanford University? -> $x: ($x, found, stanford university) -> (Ngai?s work, can be found on, her Stanford University web page) -> Ngai?s work (1179ms) Who is the president of Stanford University? different teacher resources 1.444444444439 Who is the president of Stanford University? -> $x: ($x, found, stanford university) -> (different teacher resources, found at, Stanford University) -> different teacher resources (1114ms) Who is the president of Stanford University? Romney 1.444444444439 Who is the president of Stanford University? -> $x: ($x, found, stanford university) -> (Romney, found, stanford university) -> Romney (1179ms) Who is the president of Stanford University? Hakeem 1.444444444439 Who is the president of Stanford University? -> $x: ($x, first start, stanford university) -> (Hakeem, first started graduate school at, Stanford University) -> Hakeem (1227ms) Who is the president of Stanford University? help 1.444444444439 Who is the president of Stanford University? -> $x: ($x, found, stanford university) -> (help, found, Stanford University) -> help (1179ms) Who is the president of Stanford University? the Leland surname 1.444444444439 Who is the president of Stanford University? -> $x: ($x, found, stanford university) -> (the Leland surname, would found, Stanford University) -> the Leland surname (1114ms) Who is the president of Stanford University? URL 1.444444444439 Who is the president of Stanford University? -> $x: ($x, found, stanford university) -> (URL, Find, a Faculty Member ? Stanford University) -> URL (1179ms) Who is the president of Stanford University? information 1.444444444439 Who is the president of Stanford University? -> $x: ($x, found, stanford university) -> (information, can be found at, Stanford University) -> information (1227ms) Who is the president of Stanford University? results 1.444444444439 Who is the president of Stanford University? -> $x: ($x, found, stanford university) -> (results, find information about, the stanford university website) -> results (1179ms) Who is the president of Stanford University? the Matiases 1.444444444439 Who is the president of Stanford University? -> $x: ($x, found, stanford university) -> (the Matiases, found a short-stay home near, Stanford University) -> the Matiases (1179ms) Who is the president of Stanford University? 18:47 1.444444444439 Who is the president of Stanford University? -> $x: ($x, found, stanford university) -> (18:47, Find, a Faculty Member ? Stanford University) -> 18:47 (1114ms) Who is the president of Stanford University? Gerhard Casper 1.4444444444380002 Who is the president of Stanford University? -> $x: ($x, be president of, stanford university) -> (Gerhard Casper, is president emeritus of, Stanford University) -> Gerhard Casper (1227ms) Who is the president of Stanford University? Casper 1.4444444444380002 Who is the president of Stanford University? -> $x: ($x, be president of, stanford university) -> (Casper, was the president of, Stanford University) -> Casper (1245ms) Who is the president of Stanford University? Hennessy 1.4444444444380002 Who is the president of Stanford University? -> $x: ($x, be president of, stanford university) -> (Hennessy, is President of, Stanford University) -> Hennessy (1245ms) Who is the president of Stanford University? Donald Kennedy 1.4444444444380002 Who is the president of Stanford University? -> $x: ($x, be president of, stanford university) -> (Donald Kennedy, is the former president of, Stanford University) -> Donald Kennedy (1301ms) Who is the president of Stanford University? Greg 1.4444444444380002 Who is the president of Stanford University? -> $x: ($x, be president of, stanford university) -> (Greg, is President of, Stanford University DAPER Investment Fund) -> Greg (1245ms) Who is the president of Stanford University? John Hennessy 1.4444444444380002 Who is the president of Stanford University? -> $x: ($x, be president of, stanford university) -> (John Hennessy, is now President of, Stanford University) -> John Hennessy (1301ms) Who is the president of Stanford University? David Starr Jordan 1.4444444444380002 Who is the president of Stanford University? -> $x: ($x, be president of, stanford university) -> (David Starr Jordan, was then President of, Stanford University) -> David Starr Jordan (1301ms) Who is the president of Stanford University? Kennedy 1.4444444444380002 Who is the president of Stanford University? -> $x: ($x, be president of, stanford university) -> (Kennedy, is former President of, Stanford University President) -> Kennedy (1245ms) Who is the president of Stanford University? Richard W. Lyman 1.4444444444380002 Who is the president of Stanford University? -> $x: ($x, be president of, stanford university) -> (Richard W. Lyman, was president of, Stanford University) -> Richard W. Lyman (1245ms) Who is the president of Stanford University? the founder 1.4444444444380002 Who is the president of Stanford University? -> $x: ($x, be president of, stanford university) -> (the founder, is the 10th President of, Stanford University) -> the founder (1245ms) Who is the president of Stanford University? 1925 Oliphant 0.5555555555540002 Who is the president of Stanford University? -> $x: ($x, appoint, stanford university) -> (1925 Oliphant, was appointed a lecturer at, Stanford university) -> 1925 Oliphant (1301ms) Who is the president of Stanford University? Bergman 0.5555555555540002 Who is the president of Stanford University? -> $x: ($x, appoint, stanford university) -> (Bergman, was appointed to, Stanford University) -> Bergman (1301ms) Who is the president of Stanford University? The Chair 0.5555555555540002 Who is the president of Stanford University? -> $x: ($x, appoint, stanford university) -> (The Chair, is formally appointed to, Stanford University) -> The Chair (1301ms) Who is the president of Stanford University? the University 0.5555555555540002 Who is the president of Stanford University? -> $x: ($x, appoint, stanford university) -> (the University, is formally appointed to, Stanford University) -> the University (1301ms) Who is the president of Stanford University? Joe Edelheit Ross -0.7777777777789999 Who is the president of Stanford University? -> $x: ($x, be president of, stanford) -> (Joe Edelheit Ross, was president of, the Stanford Law Review) -> Joe Edelheit Ross (1301ms) Who is the president of Stanford University? a graduate -0.7777777777789999 Who is the president of Stanford University? -> $x: ($x, be president of, stanford) -> (a graduate, was a former President of, Stanford Law Review) -> a graduate (1302ms) Who is the president of Stanford University? Order -0.7777777777789999 Who is the president of Stanford University? -> $x: ($x, be president of, stanford) -> (Order, was President of, the Stanford Law Review) -> Order (1301ms) Who is the president of Stanford University? Banks -0.7777777777789999 Who is the president of Stanford University? -> $x: ($x, be president of, stanford) -> (Banks, was a vice president of, Stanford Consulting Group Inc.) -> Banks (1302ms) Who is the president of Stanford University? 1999 Mr. Stanford -0.7777777777789999 Who is the president of Stanford University? -> $x: ($x, be president of, stanford) -> (1999 Mr. Stanford, is President of, Stanford Resource Management) -> 1999 Mr. Stanford (1303ms) Who is the president of Stanford University? Mr. Wilkins -0.7777777777789999 Who is the president of Stanford University? -> $x: ($x, be president of, stanford) -> (Mr. Wilkins, was President of, the Stanford Golf Club) -> Mr. Wilkins (1302ms) How long is human gestation? 260 days 2.444444444438 How long is human gestation? -> $x: ($x, be length of, gestation) -> (260 days, is also the length of, human gestation) -> 260 days (841ms) How long is human gestation? Black women 2.444444444438 How long is human gestation? -> $x: ($x, be length of, gestation) -> (Black women, were length of, gestation) -> Black women (841ms) How long is human gestation? a baby 2.444444444438 How long is human gestation? -> $x: ($x, be length of, gestation) -> (a baby, is its own normal length of, gestation) -> a baby (841ms) How long is human gestation? abortion 2.444444444438 How long is human gestation? -> $x: ($x, be length of, gestation) -> (abortion, are the length of, gestation) -> abortion (841ms) How long is human gestation? example 2.444444444438 How long is human gestation? -> $x: ($x, be length of, gestation) -> (example, only is the length of, gestation) -> example (841ms) How long is human gestation? Inversely CYTOTEC 2.444444444438 How long is human gestation? -> $x: ($x, be length of, gestation) -> (Inversely CYTOTEC, is just an average length of, gestation) -> Inversely CYTOTEC (842ms) How long is human gestation? The Tiree Master Plan 1.777777777771 How long is human gestation? -> $x: ($x, long be, gestation) -> (The Tiree Master Plan, has been a long time in, gestation) -> The Tiree Master Plan (1018ms) How long is human gestation? the whole project 1.777777777771 How long is human gestation? -> $x: ($x, long be, gestation) -> (the whole project, has been a long time in, gestation) -> the whole project (1018ms) How long is human gestation? 4.1.1 1.777777777771 How long is human gestation? -> $x: ($x, long be, gestation) -> (4.1.1, has been a long while in, the gestation) -> 4.1.1 (1018ms) How long is human gestation? MD 1.777777777771 How long is human gestation? -> $x: ($x, long be, gestation) -> (MD, long was, the gestation) -> MD (1018ms) How long is human gestation? A problem 1.777777777771 How long is human gestation? -> $x: ($x, long be, gestation) -> (A problem, has been long in, gestation) -> A problem (1018ms) How long is human gestation? A Darker Music 1.777777777771 How long is human gestation? -> $x: ($x, long be, gestation) -> (A Darker Music, has been a long time in, gestation) -> A Darker Music (1018ms) How long is human gestation? the Su-27IB 1.777777777771 How long is human gestation? -> $x: ($x, long be, gestation) -> (the Su-27IB, has been long in, the gestation) -> the Su-27IB (1018ms) How long is human gestation? OBI 1.777777777771 How long is human gestation? -> $x: ($x, long be, gestation) -> (OBI, has been a long time in, gestation) -> OBI (1018ms) How long is human gestation? The Dark Mountain Project 1.777777777771 How long is human gestation? -> $x: ($x, long be, gestation) -> (The Dark Mountain Project, has been a long time in, gestation) -> The Dark Mountain Project (1018ms) How long is human gestation? a problem 1.777777777771 How long is human gestation? -> $x: ($x, long be, gestation) -> (a problem, has been very long in, gestation) -> a problem (1018ms) How long is human gestation? The Carousel 1.777777777771 How long is human gestation? -> $x: ($x, long be, gestation) -> (The Carousel, long was, the gestation period) -> The Carousel (1018ms) How long is human gestation? ?The Finkler Question? 1.777777777771 How long is human gestation? -> $x: ($x, long be, gestation) -> (?The Finkler Question?, was a long time in, gestation) -> ?The Finkler Question? (1018ms) How long is human gestation? Wenders 1.777777777771 How long is human gestation? -> $x: ($x, long be, gestation) -> (Wenders, had been long in, the gestation) -> Wenders (841ms) How long is human gestation? Chants 1.777777777771 How long is human gestation? -> $x: ($x, long be, gestation) -> (Chants, was a long time in, the gestation) -> Chants (1018ms) How long is human gestation? ?This huge book 1.777777777771 How long is human gestation? -> $x: ($x, long be, gestation) -> (?This huge book, has been a long time in, gestation) -> ?This huge book (841ms) How long is human gestation? onset 1.777777777771 How long is human gestation? -> $x: ($x, long be, gestation) -> (onset, was relatively long compared to, gestation time) -> onset (1018ms) How many types of human blood are there? plasmacytes 0.8888888888870001 How many types of human blood are there? -> $x: ($x, be different type of, blood) -> (plasmacytes, are different types of, white blood cells) -> plasmacytes (2551ms) How many types of human blood are there? the disease 0.8888888888870001 How many types of human blood are there? -> $x: ($x, be different type of, blood) -> (the disease, is done using different types of, blood tests) -> the disease (2551ms) How many types of human blood are there? Blood and lymph tissue 0.8888888888870001 How many types of human blood are there? -> $x: ($x, be different type of, blood) -> (Blood and lymph tissue, There are many different types of, blood) -> Blood and lymph tissue (2551ms) How many types of human blood are there? Hairy cell leukemia 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (Hairy cell leukemia, is a type of, blood cancer) -> Hairy cell leukemia (6770ms) How many types of human blood are there? the platelet 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (the platelet, is The third type of, blood cell) -> the platelet (2551ms) How many types of human blood are there? Pheresis 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (Pheresis, is a type of, blood donation) -> Pheresis (3358ms) How many types of human blood are there? Multiple Myeloma Multiple myeloma 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (Multiple Myeloma Multiple myeloma, is a type of, blood cancer) -> Multiple Myeloma Multiple myeloma (3358ms) How many types of human blood are there? A venous thrombosis 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (A venous thrombosis, is a type of, blood clot) -> A venous thrombosis (3864ms) How many types of human blood are there? The laver 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (The laver, was a type of, the Blood) -> The laver (6080ms) How many types of human blood are there? arteries 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (arteries, are a type of, blood vessel) -> arteries (5879ms) How many types of human blood are there? the plasma 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (the plasma, are three types of, blood cells) -> the plasma (6080ms) How many types of human blood are there? Lymphoma Lymphoma 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (Lymphoma Lymphoma, is a type of, blood cancer) -> Lymphoma Lymphoma (6770ms) How many types of human blood are there? blood type O 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (blood type O, is the most common type of, blood) -> blood type O (3358ms) How many types of human blood are there? Triglyceride 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (Triglyceride, is another type of, blood fat) -> Triglyceride (3864ms) How many types of human blood are there? every Circle 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (every Circle, is a type of, blood magic) -> every Circle (3864ms) How many types of human blood are there? Leukemia 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (Leukemia, is a type of, blood cancer) -> Leukemia (5879ms) How many types of human blood are there? A platelet 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (A platelet, is a type of, blood cell) -> A platelet (5879ms) How many types of human blood are there? the Passover lamb 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (the Passover lamb, is a type of, the blood) -> the Passover lamb (6807ms) How many types of human blood are there? A PSA 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (A PSA, is type of, blood test) -> A PSA (6807ms) How many types of human blood are there? Triglycerides 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (Triglycerides, are a type of, blood fat) -> Triglycerides (6807ms) How many types of human blood are there? Systolic and diastolic 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (Systolic and diastolic, are two types of, blood pressures) -> Systolic and diastolic (2551ms) How many types of human blood are there? the Science Guy 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (the Science Guy, There are four main types of, blood) -> the Science Guy (3864ms) How many types of human blood are there? Lymphoma 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (Lymphoma, is a type of, blood cancer) -> Lymphoma (6079ms) How many types of human blood are there? death 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (death, was some type of, blood disorder) -> death (6771ms) How many types of human blood are there? Meningococcal septicaemia 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (Meningococcal septicaemia, is a type of, blood poisoning) -> Meningococcal septicaemia (6771ms) How many types of human blood are there? Platelets 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (Platelets, are a specialized type of, blood cell) -> Platelets (6770ms) How many types of human blood are there? platelets 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (platelets, is a type of, blood cell) -> platelets (5879ms) How many types of human blood are there? Exodus 12 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (Exodus 12, is a type of, the blood) -> Exodus 12 (6807ms) How many types of human blood are there? the unblemished lamb 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (the unblemished lamb, is a type of, the blood) -> the unblemished lamb (6807ms) How many types of human blood are there? cholesterol and triglycerides 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (cholesterol and triglycerides, are types of, blood lipids) -> cholesterol and triglycerides (5879ms) How many types of human blood are there? Arteries 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (Arteries, are a type of, blood vessel) -> Arteries (6807ms) How many types of human blood are there? Polycythaemia vera 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (Polycythaemia vera, is a type of, blood disorder) -> Polycythaemia vera (6079ms) How many types of human blood are there? Acute leukemia 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (Acute leukemia, is a type of, blood cancer) -> Acute leukemia (6079ms) How many types of human blood are there? PSA tests 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (PSA tests, are a type of, blood test) -> PSA tests (3864ms) How many types of human blood are there? Multiple myeloma 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (Multiple myeloma, is a type of, blood cancer) -> Multiple myeloma (6080ms) How many types of human blood are there? Veins Veins 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (Veins Veins, are the type of, blood vessel) -> Veins Veins (6807ms) How many types of human blood are there? the type AB 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (the type AB, is the very rare type of, blood) -> the type AB (6807ms) How many types of human blood are there? Lamb 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (Lamb, is a type of, the Blood) -> Lamb (6771ms) How many types of human blood are there? A full blood count 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (A full blood count, is a type of, blood test) -> A full blood count (3358ms) How many types of human blood are there? G8 Countries Leukemia 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (G8 Countries Leukemia, is the type of, blood cancer) -> G8 Countries Leukemia (5879ms) How many types of human blood are there? a recipient 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (a recipient, is given the wrong type of, blood) -> a recipient (5879ms) How many types of human blood are there? A glucose test 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (A glucose test, is a type of, blood test) -> A glucose test (6079ms) How many types of human blood are there? the possibilities 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (the possibilities, are new types of, blood pressure) -> the possibilities (3358ms) How many types of human blood are there? subchorionic hematoma 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (subchorionic hematoma, is a type of, blood clot) -> subchorionic hematoma (3358ms) How many types of human blood are there? A leukocyte 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (A leukocyte, is a type of, blood cell) -> A leukocyte (2551ms) How many types of human blood are there? Stem cells 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (Stem cells, are a special type of, blood cell) -> Stem cells (7551ms) How many types of human blood are there? Monocytes 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (Monocytes, are type of, blood cells) -> Monocytes (2551ms) How many types of human blood are there? Thalessemia intermedia 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (Thalessemia intermedia, is another type of, blood disorder) -> Thalessemia intermedia (3358ms) How many types of human blood are there? the abnormal cells 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (the abnormal cells, are a type of, blood cell) -> the abnormal cells (6771ms) How many types of human blood are there? bleeding Platelets 0.5555555555459999 How many types of human blood are there? -> $x: ($x, be type of, blood) -> (bleeding Platelets, are a type of, blood cell) -> bleeding Platelets (3864ms) How many types of human blood are there? an Austrian , 0.22222222222 How many types of human blood are there? -> $x: ($x, type, human blood) -> (an Austrian ,, discovered different types of, human blood) -> an Austrian , (7551ms) How many types of human blood are there? certain markers 0.111111111111 How many types of human blood are there? -> $x: (human blood, be type, $x) -> (Human blood, is typed by, certain markers) -> certain markers (7551ms) How many types of human blood are there? biological cell 0.111111111111 How many types of human blood are there? -> $x: (human blood, be type, $x) -> (human red blood cells, is a type of, biological cell) -> biological cell (7551ms) How many types of human blood are there? low blood pressure 0.11111111111099997 How many types of human blood are there? -> $x: ($x, be two type of, blood) -> (low blood pressure, are two types of, blood pressure problems) -> low blood pressure (7610ms) How many types of human blood are there? shingles 0.11111111111099997 How many types of human blood are there? -> $x: ($x, be two type of, blood) -> (shingles, are two types of, white blood cells) -> shingles (7611ms) How many types of human blood are there? neutrophils and lymphocytes 0.11111111111099997 How many types of human blood are there? -> $x: ($x, be two type of, blood) -> (neutrophils and lymphocytes, are two types of, white blood cells) -> neutrophils and lymphocytes (7610ms) How many types of human blood are there? Thick Artificial Blood -1.0000056338554941E-12 How many types of human blood are there? -> $x: ($x, look like, human blood) -> (Thick Artificial Blood, to look like, human blood) -> Thick Artificial Blood (7930ms) How many types of human blood are there? Liquid Artificial Blood -1.0000056338554941E-12 How many types of human blood are there? -> $x: ($x, look like, human blood) -> (Liquid Artificial Blood, was designed to look like, human blood) -> Liquid Artificial Blood (7930ms) How many types of human blood are there? Sirolimus -1.0000056338554941E-12 How many types of human blood are there? -> $x: ($x, major in, human blood) -> (Sirolimus, is the major component in, human whole blood) -> Sirolimus (7930ms) How many types of human blood are there? Blood Energy Potion 48 -1.0000056338554941E-12 How many types of human blood are there? -> $x: ($x, look like, human blood) -> (Blood Energy Potion 48, looks like, human blood) -> Blood Energy Potion 48 (7611ms) How many types of human blood are there? zeaxanthin -1.0000056338554941E-12 How many types of human blood are there? -> $x: ($x, major in, human blood) -> (zeaxanthin, are major carotenoids in, human blood and tissues) -> zeaxanthin (7930ms) How many types of human blood are there? only a few -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (only a few, have the same type of, blood) -> only a few (7978ms) How many types of human blood are there? a Gujarati -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (a Gujarati, had a similar type of, blood) -> a Gujarati (7978ms) How many types of human blood are there? B rh+ -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (B rh+, Type, Blood Bank) -> B rh+ (7978ms) How many types of human blood are there? O -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (O, Type, Blood Type) -> O (8052ms) How many types of human blood are there? Gang -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (Gang, Criminal organizations of this type, Bloods) -> Gang (8081ms) How many types of human blood are there? the gentleman -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (the gentleman, had a rare type of, blood) -> the gentleman (7930ms) How many types of human blood are there? The children -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (The children, have two types of, blood) -> The children (8052ms) How many types of human blood are there? A -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (A, Type, Blood Type) -> A (8062ms) How many types of human blood are there? Schema staging -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (Schema staging, Types, Blood type) -> Schema staging (7930ms) How many types of human blood are there? AB -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (AB, Type, Blood Type) -> AB (8072ms) How many types of human blood are there? B -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (B, Type, Blood type) -> B (8072ms) How many types of human blood are there? Lapointe -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (Lapointe, has Type, A blood) -> Lapointe (8081ms) How many types of human blood are there? Blood -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (Blood, Types, Blood Type) -> Blood (8052ms) How many types of human blood are there? I?ve -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (I?ve, got a rare type of, blood) -> I?ve (8072ms) How many types of human blood are there? O- blood -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (O- blood, can only receive this type of, blood) -> O- blood (8072ms) How many types of human blood are there? the class -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (the class, Type, A Blood) -> the class (8052ms) How many types of human blood are there? Sickle Cell patients -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (Sickle Cell patients, need this special type of, blood) -> Sickle Cell patients (8052ms) How many types of human blood are there? HOSPITAL INFORMATION SYSTEM -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (HOSPITAL INFORMATION SYSTEM, Types, Blood Bank) -> HOSPITAL INFORMATION SYSTEM (8072ms) How many types of human blood are there? Kerry Keck -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (Kerry Keck, has Type, A blood) -> Kerry Keck (8052ms) How many types of human blood are there? ?the mother and baby -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (?the mother and baby, have a different type of, blood) -> ?the mother and baby (8072ms) How many types of human blood are there? a horse -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (a horse, typed, blood) -> a horse (8062ms) How many types of human blood are there? An 18-year-old man -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (An 18-year-old man, received the wrong type of, blood) -> An 18-year-old man (8072ms) How many types of human blood are there? every 1,000 -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (every 1,000, will have this specific type of, blood) -> every 1,000 (8062ms) How many types of human blood are there? each parent -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (each parent, influences the type of, blood) -> each parent (8062ms) How many types of human blood are there? local residents -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (local residents, need specific types of, blood) -> local residents (8052ms) How many types of human blood are there? The baby -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (The baby, may have the type of, blood) -> The baby (8052ms) How many types of human blood are there? people with -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (people with, type, A blood) -> people with (7978ms) How many types of human blood are there? every thousand -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (every thousand, will have this specific type of, blood) -> every thousand (8062ms) How many types of human blood are there? the test -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (the test, actually picks up different TYPES of, blood) -> the test (8072ms) How many types of human blood are there? A Vulcan/Human -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (A Vulcan/Human, would actually have both types of, blood) -> A Vulcan/Human (8072ms) How many types of human blood are there? antibodies against -2.000039023286604E-12 How many types of human blood are there? -> $x: ($x, type, blood) -> (antibodies against, type, A blood) -> antibodies against (8052ms) How many types of human blood are there? heart disease -0.11111111111100003 How many types of human blood are there? -> $x: (blood, have type of, $x) -> (high blood pressure, have some type of, heart disease) -> heart disease (8132ms) How many types of human blood are there? connective tissue -0.11111111111100003 How many types of human blood are there? -> $x: (blood, be type, $x) -> (Blood, is considered a type of, connective tissue) -> connective tissue (8132ms) How many types of human blood are there? sinusoids -0.11111111111100003 How many types of human blood are there? -> $x: ($x, be various type of, blood) -> (sinusoids, are various types of, immature blood cells) -> sinusoids (8116ms) How many types of human blood are there? the outward , physical ceremony -0.11111111111100003 How many types of human blood are there? -> $x: (blood, be type, $x) -> (blood, is indeed a type from, the outward , physical ceremony) -> the outward , physical ceremony (8081ms) How many types of human blood are there? lymphocytes -0.11111111111100003 How many types of human blood are there? -> $x: (blood, have type of, $x) -> (The blood, has three types of, lymphocytes) -> lymphocytes (8090ms) How many types of human blood are there? donor program -0.11111111111100003 How many types of human blood are there? -> $x: (blood, have type of, $x) -> (Most blood banks, have some type of, donor program) -> donor program (8098ms) How many types of human blood are there? rank or leadership position -0.11111111111100003 How many types of human blood are there? -> $x: (blood, have type of, $x) -> (Bloods, have held some type of, rank or leadership position) -> rank or leadership position (8090ms) How many types of human blood are there? SHRIMP -0.11111111111100003 How many types of human blood are there? -> $x: (blood, be type, $x) -> (blood_worms, is a type of, SHRIMP) -> SHRIMP (8107ms) How many types of human blood are there? the suffering aeon -0.11111111111100003 How many types of human blood are there? -> $x: (blood, be type, $x) -> (blood, was a type of, the suffering aeon) -> the suffering aeon (8098ms) How many types of human blood are there? DNA specific -0.11111111111100003 How many types of human blood are there? -> $x: (blood, be type, $x) -> (Blood, is often typed due to, DNA specific) -> DNA specific (8081ms) How many types of human blood are there? fuel -0.11111111111100003 How many types of human blood are there? -> $x: (blood, be type, $x) -> (Blood, is a type of, fuel) -> fuel (8116ms) How many types of human blood are there? cells -0.11111111111100003 How many types of human blood are there? -> $x: (blood, have type of, $x) -> (Blood, has several different types of, cells) -> cells (8140ms) How many types of human blood are there? cancer -0.11111111111100003 How many types of human blood are there? -> $x: (blood, have type of, $x) -> (Two or more blood relatives, have the same type of, cancer) -> cancer (8124ms) How many types of human blood are there? toxic chemicals -0.11111111111100003 How many types of human blood are there? -> $x: (blood, have type of, $x) -> (Blood tests, have detected several types of, toxic chemicals) -> toxic chemicals (8132ms) How many types of human blood are there? Venules and arterioles -0.22222222222200003 How many types of human blood are there? -> $x: ($x, be other type of, blood) -> (Venules and arterioles, are other types of, small blood vessels) -> Venules and arterioles (8140ms) How many types of human blood are there? fearless warriors -0.22222222222300003 How many types of human blood are there? -> $x: ($x, practice, blood) -> (fearless warriors, practiced, blood feuds) -> fearless warriors (8171ms) How many types of human blood are there? a little salt -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (a little salt, is a cure for, the blood and milk stains) -> a little salt (8215ms) How many types of human blood are there? African forests -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (African forests, is used to cure, high blood pressure) -> African forests (8156ms) How many types of human blood are there? Whey -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (Whey, has a major role in, red blood cell production) -> Whey (8203ms) How many types of human blood are there? a newborn sibling -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (a newborn sibling, can be used to cure, blood disease) -> a newborn sibling (8185ms) How many types of human blood are there? subtle energy centers -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (subtle energy centers, cure, High Blood Pressure) -> subtle energy centers (8148ms) How many types of human blood are there? the chief ones -0.22222222222300003 How many types of human blood are there? -> $x: ($x, practice, blood) -> (the chief ones, was the practice of, blood feuds) -> the chief ones (8140ms) How many types of human blood are there? Albumin -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (Albumin, is the major protein in, the blood) -> Albumin (8178ms) How many types of human blood are there? strawberries -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (strawberries, may play a major role in lowering, blood pressure) -> strawberries (8148ms) How many types of human blood are there? a drug -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (a drug, to cure, high blood pressure) -> a drug (8171ms) How many types of human blood are there? the best -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (the best, finally cure, high blood pressure) -> the best (8156ms) How many types of human blood are there? transplantation -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (transplantation, cure, blood cancers) -> transplantation (8140ms) How many types of human blood are there? stress -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (stress, are a major factor in, high blood pressure) -> stress (8163ms) How many types of human blood are there? Magnesium deficiency -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (Magnesium deficiency, is a major factor in, high blood pressure) -> Magnesium deficiency (8198ms) How many types of human blood are there? Surgical treatment -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Surgical treatment, 'can cure, high blood pressure) -> Surgical treatment (8192ms) How many types of human blood are there? Theodism -0.22222222222300003 How many types of human blood are there? -> $x: ($x, practice, blood) -> (Theodism, regularly practices, blood sacrifice) -> Theodism (8209ms) How many types of human blood are there? a medicine -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (a medicine, to cure, high blood pressure) -> a medicine (8210ms) How many types of human blood are there? Stress -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (Stress, is a major factor in, high blood pressure) -> Stress (8164ms) How many types of human blood are there? money -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (money, eventually cure, blood cancers) -> money (8220ms) How many types of human blood are there? Journalism -0.22222222222300003 How many types of human blood are there? -> $x: ($x, practice, blood) -> (Journalism, is practiced by, flesh-and-blood people) -> Journalism (8192ms) How many types of human blood are there? psychiatrists -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (psychiatrists, cure, blood drinking) -> psychiatrists (8163ms) How many types of human blood are there? Mingle -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Mingle, cure, your blood thirsty cravings) -> Mingle (8220ms) How many types of human blood are there? Vitamin C -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (Vitamin C, is a major antioxidant in, the blood and) -> Vitamin C (8148ms) How many types of human blood are there? caffeine -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (caffeine, causes major swings in, blood sugar) -> caffeine (8140ms) How many types of human blood are there? dietary sugar -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (dietary sugar, plays a major role in, blood cholesterol levels) -> dietary sugar (8171ms) How many types of human blood are there? the sodium ion -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (the sodium ion, plays a major role in, blood pressure regulation) -> the sodium ion (8198ms) How many types of human blood are there? a poison -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (a poison, can only be cured by, the blood) -> a poison (8198ms) How many types of human blood are there? Weight -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (Weight, plays a major role in developing, high blood pressure) -> Weight (8140ms) How many types of human blood are there? Dr Karsch -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Dr Karsch, cured, his own chronic blood disease) -> Dr Karsch (8148ms) How many types of human blood are there? Israel -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (Israel, had the major hand in, that blood libel) -> Israel (8203ms) How many types of human blood are there? Dr Karsach -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Dr Karsach, cured, his own chronic blood disease) -> Dr Karsach (8178ms) How many types of human blood are there? Lisinopril -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Lisinopril, is best used for curing, high blood pressure) -> Lisinopril (8209ms) How many types of human blood are there? Hemoglobin -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (Hemoglobin, is the major substance in, a red blood cells) -> Hemoglobin (8178ms) How many types of human blood are there? the Leukemia and Lymphoma Society -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (the Leukemia and Lymphoma Society, find cures for, blood cancers) -> the Leukemia and Lymphoma Society (8171ms) How many types of human blood are there? the herb -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (the herb, is an effective herbal cure for, high blood pressure) -> the herb (8178ms) How many types of human blood are there? Fosamprenavir -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (Fosamprenavir, causes major increases in, blood levels) -> Fosamprenavir (8140ms) How many types of human blood are there? the mainstream medical doctors -0.22222222222300003 How many types of human blood are there? -> $x: ($x, practice, blood) -> (the mainstream medical doctors, practiced, blood letting) -> the mainstream medical doctors (8163ms) How many types of human blood are there? no consensus -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (no consensus, is helpful for curing, high blood pressure) -> no consensus (8140ms) How many types of human blood are there? Human beings -0.22222222222300003 How many types of human blood are there? -> $x: ($x, practice, blood) -> (Human beings, have practiced, blood-drinking) -> Human beings (8185ms) How many types of human blood are there? researchers -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (researchers, are trying to cure, high blood pressure) -> researchers (8192ms) How many types of human blood are there? Barbers -0.22222222222300003 How many types of human blood are there? -> $x: ($x, practice, blood) -> (Barbers, also practiced, dentistry and blood-letting) -> Barbers (8178ms) How many types of human blood are there? Calcium carbonicum 6X -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (Calcium carbonicum 6X, plays a major role in, blood coagulation) -> Calcium carbonicum 6X (8164ms) How many types of human blood are there? Bloodstone -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Bloodstone, to cure, blood poisoning) -> Bloodstone (8203ms) How many types of human blood are there? A six-year-old boy -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (A six-year-old boy, has been cured of, a rare blood disorder) -> A six-year-old boy (8198ms) How many types of human blood are there? phlebotomy -0.22222222222300003 How many types of human blood are there? -> $x: ($x, practice, blood) -> (phlebotomy, was the practice of, ?blood-letting?) -> phlebotomy (8163ms) How many types of human blood are there? vitamin B12 -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (vitamin B12, plays a major role in, red blood cell activity) -> vitamin B12 (8178ms) How many types of human blood are there? leukemia patient -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (leukemia patient, cured with, cord blood stem cells) -> leukemia patient (8203ms) How many types of human blood are there? BMT -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (BMT, can cure, both cancerous and non-cancerous blood disorders) -> BMT (8171ms) How many types of human blood are there? Rev. Walker -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Rev. Walker, cured, his blood sugar) -> Rev. Walker (8220ms) How many types of human blood are there? symptoms -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (symptoms, cure, diet treatment and high blood) -> symptoms (8156ms) How many types of human blood are there? cold cereal -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (cold cereal, can cause a major drop in, your blood sugar levels) -> cold cereal (8148ms) How many types of human blood are there? society -0.22222222222300003 How many types of human blood are there? -> $x: ($x, practice, blood) -> (society, was the practice of giving, blood) -> society (8171ms) How many types of human blood are there? The Leukemia & Lymphoma Society -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (The Leukemia & Lymphoma Society, find cures for, blood cancers) -> The Leukemia & Lymphoma Society (8215ms) How many types of human blood are there? breakfast bars -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (breakfast bars, cause major rises in, my blood sugars hours) -> breakfast bars (8192ms) How many types of human blood are there? A bone marrow transplant -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (A bone marrow transplant, can cure, the blood count problems) -> A bone marrow transplant (8185ms) How many types of human blood are there? Sarah -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (Sarah, is a major player in, ANGELS' BLOOD) -> Sarah (8215ms) How many types of human blood are there? Water -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Water, helps to cure, high blood pressure) -> Water (8203ms) How many types of human blood are there? Christians -0.22222222222300003 How many types of human blood are there? -> $x: ($x, practice, blood) -> (Christians, once practiced, the same blood-letting ritual) -> Christians (8192ms) How many types of human blood are there? Mona Vie -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Mona Vie, cured, their high blood pressure) -> Mona Vie (8185ms) How many types of human blood are there? Salt -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (Salt, is a major factor in, high blood pressure) -> Salt (8215ms) How many types of human blood are there? Natural remedies -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Natural remedies, always cure, high blood pressure) -> Natural remedies (8208ms) How many types of human blood are there? Pastor Archer -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Pastor Archer, was cured of extremely, high blood pressure) -> Pastor Archer (8198ms) How many types of human blood are there? Ervil LeBaron -0.22222222222300003 How many types of human blood are there? -> $x: ($x, practice, blood) -> (Ervil LeBaron, may have ended the practice of, blood atonement) -> Ervil LeBaron (8156ms) How many types of human blood are there? Khady -0.22222222222300003 How many types of human blood are there? -> $x: ($x, practice, blood) -> (Khady, has been practicing taking, my blood) -> Khady (8209ms) How many types of human blood are there? ACE secretion -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (ACE secretion, plays a major role in regulating, blood pressure) -> ACE secretion (8220ms) How many types of human blood are there? ginger extract -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (ginger extract, to cure, any blood clot and digestive problems) -> ginger extract (8198ms) How many types of human blood are there? a Doktor -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (a Doktor, discovered a cure for, High Blood Pressure) -> a Doktor (8178ms) How many types of human blood are there? No medicine -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (No medicine, can cure, high blood pressure) -> No medicine (8148ms) How many types of human blood are there? the globe -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (the globe, could cure the artificial disease in, his blood) -> the globe (8185ms) How many types of human blood are there? America -0.22222222222300003 How many types of human blood are there? -> $x: ($x, practice, blood) -> (America, is practiced as, blood sport) -> America (8185ms) How many types of human blood are there? the blood -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (the blood, plays a major role in forming, blood clots) -> the blood (8185ms) How many types of human blood are there? the Arab world -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (the Arab world, be cured of, its blood-lust) -> the Arab world (8185ms) How many types of human blood are there? rejuvenation -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (rejuvenation, cured, red blood) -> rejuvenation (8220ms) How many types of human blood are there? Vitamin K -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (Vitamin K, plays a major role in, blood clotting) -> Vitamin K (8148ms) How many types of human blood are there? the liver -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (the liver, plays a major role in, blood coagulation) -> the liver (8164ms) How many types of human blood are there? traditional Chinese doctors -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (traditional Chinese doctors, cure, all blood related problems) -> traditional Chinese doctors (8215ms) How many types of human blood are there? jellyfish -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (jellyfish, can cure, high blood pressure) -> jellyfish (8215ms) How many types of human blood are there? the acai berry -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (the acai berry, has the power to cure, the blood diseases) -> the acai berry (8215ms) How many types of human blood are there? Diet -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (Diet, is a major factor in controlling, blood sugar levels) -> Diet (8192ms) How many types of human blood are there? the Maya -0.22222222222300003 How many types of human blood are there? -> $x: ($x, practice, blood) -> (the Maya, practiced, blood sacrifice) -> the Maya (8156ms) How many types of human blood are there? Lucy Lucy -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Lucy Lucy, was cured with, Porter?s silver-laden blood) -> Lucy Lucy (8209ms) How many types of human blood are there? vitamin B 12 -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (vitamin B 12, plays a major role in, red blood cell activity) -> vitamin B 12 (8198ms) How many types of human blood are there? The kidneys -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (The kidneys, play a major role in filtering, the blood) -> The kidneys (8178ms) How many types of human blood are there? honey -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (honey, can cure, blood vomiting) -> honey (8171ms) How many types of human blood are there? obesity -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (obesity, can cure, high blood pressure) -> obesity (8203ms) How many types of human blood are there? diet -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (diet, plays a major role in lowering, high blood cholesterol) -> diet (8215ms) How many types of human blood are there? Magnesium -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (Magnesium, also plays a major role in regulating, blood pressure) -> Magnesium (8140ms) How many types of human blood are there? risk -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (risk, are being cured for, high blood pressure) -> risk (8164ms) How many types of human blood are there? Goldenseal -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Goldenseal, was used to cure, high blood pressure) -> Goldenseal (8215ms) How many types of human blood are there? Students -0.22222222222300003 How many types of human blood are there? -> $x: ($x, practice, blood) -> (Students, will practice, extracting blood) -> Students (8163ms) How many types of human blood are there? pressure -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (pressure, causes major variations in, blood pressure) -> pressure (8148ms) How many types of human blood are there? Enchantment -0.22222222222300003 How many types of human blood are there? -> $x: ($x, type of, blood) -> (Enchantment, Card of this type, Exquisite Blood) -> Enchantment (8203ms) How many types of human blood are there? a letter -0.22222222222300003 How many types of human blood are there? -> $x: ($x, practice, blood) -> (a letter, criticized the practice of, blood libels) -> a letter (8192ms) How many types of human blood are there? Pakistan -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Pakistan, cured, my high blood pressure) -> Pakistan (8156ms) How many types of human blood are there? just a woman -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (just a woman, majored in, Blood) -> just a woman (8178ms) How many types of human blood are there? The sweets -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (The sweets, are causing major fluctuations in, blood sugar) -> The sweets (8178ms) How many types of human blood are there? diabetes -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (diabetes, will be cured of, the blood sugar disease) -> diabetes (8185ms) How many types of human blood are there? hemoglobin -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (hemoglobin, is the major protein in, red blood cells) -> hemoglobin (8185ms) How many types of human blood are there? They?re goal -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (They?re goal, is to find a cure for, blood cancer) -> They?re goal (8210ms) How many types of human blood are there? a visitor -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (a visitor, was cured of, a blood infection) -> a visitor (8209ms) How many types of human blood are there? Aloe vera -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Aloe vera, cured, my high blood pressure) -> Aloe vera (8163ms) How many types of human blood are there? Earth -0.22222222222300003 How many types of human blood are there? -> $x: ($x, practice, blood) -> (Earth, practiced, the darker blood-fueled arts) -> Earth (8209ms) How many types of human blood are there? Alpha-1 antitrypsin -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (Alpha-1 antitrypsin, is a major protein in, the blood) -> Alpha-1 antitrypsin (8148ms) How many types of human blood are there? the LLS -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (the LLS, is to find a cure for, all blood cancers) -> the LLS (8203ms) How many types of human blood are there? decisive therapies -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (decisive therapies, cure, serious blood diseases) -> decisive therapies (8178ms) How many types of human blood are there? Sodium -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (Sodium, is the major electrolyte in, the blood) -> Sodium (8192ms) How many types of human blood are there? genetic diseases and cancers -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (genetic diseases and cancers, are cured through, cord blood) -> genetic diseases and cancers (8185ms) How many types of human blood are there? the narrowed artery -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (the narrowed artery, even cure, the high blood pressure) -> the narrowed artery (8163ms) How many types of human blood are there? carbohydrate -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (carbohydrate, plays a major role in, blood-glucose level) -> carbohydrate (8156ms) How many types of human blood are there? ruby -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (ruby, was thought to cure, blood diseases) -> ruby (8140ms) How many types of human blood are there? doctors -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (doctors, cure by, letting blood) -> doctors (8215ms) How many types of human blood are there? Patients -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Patients, are therefore cured of, the blood problem) -> Patients (8192ms) How many types of human blood are there? Lozide -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Lozide, cannot cure, high blood pressure) -> Lozide (8192ms) How many types of human blood are there? celery -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (celery, can cure, high blood pressure) -> celery (8215ms) How many types of human blood are there? various articles -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (various articles, also helps to cure, low blood pressure) -> various articles (8209ms) How many types of human blood are there? Turmeric -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Turmeric, is helpful in curing, high blood pressure) -> Turmeric (8198ms) How many types of human blood are there? Functions and indications -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Functions and indications, cure, the high blood pressure) -> Functions and indications (8198ms) How many types of human blood are there? more strain -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (more strain, is a major issue in, high blood pressure) -> more strain (8185ms) How many types of human blood are there? Stresses -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (Stresses, plays a major factor in, blood pressure) -> Stresses (8171ms) How many types of human blood are there? Baltar -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Baltar, find a cure in, the blood) -> Baltar (8148ms) How many types of human blood are there? every arrow-shot deer -0.22222222222300003 How many types of human blood are there? -> $x: ($x, practice, blood) -> (every arrow-shot deer, practiced, blood-trailing skills) -> every arrow-shot deer (8209ms) How many types of human blood are there? iron -0.22222222222300003 How many types of human blood are there? -> $x: ($x, major in, blood) -> (iron, is a major mineral in, blood) -> iron (8178ms) How many types of human blood are there? Relaxed environment -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (Relaxed environment, cures, blood pressure) -> Relaxed environment (8198ms) How many types of human blood are there? Phlebotomy -0.22222222222300003 How many types of human blood are there? -> $x: ($x, practice, blood) -> (Phlebotomy, is the practice of, drawing blood) -> Phlebotomy (8203ms) How many types of human blood are there? an arrow -0.22222222222300003 How many types of human blood are there? -> $x: ($x, cure, blood) -> (an arrow, can only be cured by, the blood) -> an arrow (8185ms) How many types of human blood are there? Diabetes -0.333333333333 How many types of human blood are there? -> $x: ($x, be example of, blood) -> (Diabetes, is a good example of, a disease restricting blood flow) -> Diabetes (8224ms) How many types of human blood are there? Cowboy Bebop -0.333333333333 How many types of human blood are there? -> $x: ($x, be example of, blood) -> (Cowboy Bebop, are excellent examples of, Space Cowboys and Blood) -> Cowboy Bebop (8220ms) How many types of human blood are there? ovarian cysts -0.333333333333 How many types of human blood are there? -> $x: ($x, be example of, blood) -> (ovarian cysts, are all examples of, Blood Stasis) -> ovarian cysts (8224ms) How many types of human blood are there? women -0.333333333333 How many types of human blood are there? -> $x: ($x, be example of, blood) -> (women, is another example of, a blood rule) -> women (8220ms) How many types of human blood are there? Mammals and birds -0.333333333333 How many types of human blood are there? -> $x: ($x, be example of, blood) -> (Mammals and birds, are good examples of, warm-blooded animals) -> Mammals and birds (8220ms) How many types of human blood are there? 2012 -0.333333333333 How many types of human blood are there? -> $x: ($x, be example of, blood) -> (2012, Here are a few examples of, high blood pressure diets) -> 2012 (8220ms) How many types of human blood are there? The latter -0.333333333333 How many types of human blood are there? -> $x: ($x, be example of, blood) -> (The latter, was the first example of, HIV-positive blood samples) -> The latter (8220ms) How many types of human blood are there? tea -0.333333333333 How many types of human blood are there? -> $x: ($x, be example of, blood) -> (tea, are examples of, good non-prescription blood thinners) -> tea (8220ms) How many types of human blood are there? a coconut -0.44444444445 How many types of human blood are there? -> $x: ($x, can substitute, human blood) -> (a coconut, can be substituted for, human blood) -> a coconut (8224ms) How many types of human blood are there? the movie -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (the movie, ?There will be, blood) -> the movie (8241ms) How many types of human blood are there? a line -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (a line, There Will Be, Blood) -> a line (8245ms) How many types of human blood are there? inadvertent honesty -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (inadvertent honesty, ?There is power in, blood) -> inadvertent honesty (8241ms) How many types of human blood are there? dear God -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (dear God, is there, blood) -> dear God (8229ms) How many types of human blood are there? lab -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (lab, was there to bring, blood) -> lab (8229ms) How many types of human blood are there? knowledge regarding oil production -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (knowledge regarding oil production, were There Will Be, Blood) -> knowledge regarding oil production (8229ms) How many types of human blood are there? immersive atmospheric gameplay -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (immersive atmospheric gameplay, let there be, blood) -> immersive atmospheric gameplay (8241ms) How many types of human blood are there? Daniel Day-Lewis em -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Daniel Day-Lewis em, ?There Will Be, Blood?) -> Daniel Day-Lewis em (8229ms) How many types of human blood are there? Dr. Rizoli -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Dr. Rizoli, there?ll be, blood) -> Dr. Rizoli (8241ms) How many types of human blood are there? the pillow -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (the pillow, is there, blood) -> the pillow (8233ms) How many types of human blood are there? Old Men, -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Old Men,, There Will Be, Blood) -> Old Men, (8237ms) How many types of human blood are there? muckraker -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (muckraker, There Will Be, Blood) -> muckraker (8241ms) How many types of human blood are there? the Muslim world -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (the Muslim world, there are howling for, blood) -> the Muslim world (8224ms) How many types of human blood are there? phrases -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (phrases, ?There will be, blood) -> phrases (8237ms) How many types of human blood are there? the ground -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (the ground, there is, blood) -> the ground (8245ms) How many types of human blood are there? Old Men -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Old Men, There Will Be, Blood &) -> Old Men (8245ms) How many types of human blood are there? the actors -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (the actors, THERE WAS, BLOOD) -> the actors (8233ms) How many types of human blood are there? Michael Clayton -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Michael Clayton, There Will Be, Blood) -> Michael Clayton (8237ms) How many types of human blood are there? the words -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (the words, there was, blood) -> the words (8241ms) How many types of human blood are there? Paul Thomas Andersons new movie -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Paul Thomas Andersons new movie, There Will Be, Blood ,) -> Paul Thomas Andersons new movie (8229ms) How many types of human blood are there? Just caught Paul Thomas Anderson?s -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Just caught Paul Thomas Anderson?s, There Will Be, Blood) -> Just caught Paul Thomas Anderson?s (8241ms) How many types of human blood are there? The moose -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (The moose, there are out for, blood) -> The moose (8237ms) How many types of human blood are there? theaters -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (theaters, was There Will Be, Blood) -> theaters (8245ms) How many types of human blood are there? Jed Clampett -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Jed Clampett, There Will Be, Blood) -> Jed Clampett (8237ms) How many types of human blood are there? Film Fight 2008 -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Film Fight 2008, is ? There Will Be, Blood) -> Film Fight 2008 (8233ms) How many types of human blood are there? Hotel Rwanda, -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Hotel Rwanda,, There will be, blood) -> Hotel Rwanda, (8233ms) How many types of human blood are there? Evidence -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Evidence, There Will Be, Blood) -> Evidence (8241ms) How many types of human blood are there? colostrum -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (colostrum, there are in, blood) -> colostrum (8245ms) How many types of human blood are there? Vicky Cristina Barcelona -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Vicky Cristina Barcelona, There Will Be, Blood) -> Vicky Cristina Barcelona (8237ms) How many types of human blood are there? Number two -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Number two, was ?There will be, blood) -> Number two (8224ms) How many types of human blood are there? the kid -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (the kid, There Will Be, Blood) -> the kid (8224ms) How many types of human blood are there? the film -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (the film, ?There will be, blood?) -> the film (8229ms) How many types of human blood are there? early years -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (early years, is there trace, blood) -> early years (8237ms) How many types of human blood are there? the 2008 films -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (the 2008 films, ?There Will be, Blood?) -> the 2008 films (8237ms) How many types of human blood are there? razor sharp teeth -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (razor sharp teeth, are floating there in, blood) -> razor sharp teeth (8229ms) How many types of human blood are there? one time -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (one time, there was, blood) -> one time (8229ms) How many types of human blood are there? brush -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (brush, is there, blood) -> brush (8229ms) How many types of human blood are there? FUN -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (FUN, is there is, blood) -> FUN (8233ms) How many types of human blood are there? Atonement -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Atonement, There Will Be, Blood) -> Atonement (8224ms) How many types of human blood are there? viewing -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (viewing, There Will Be, Blood) -> viewing (8233ms) How many types of human blood are there? Trailer -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Trailer, There Will Be, Blood) -> Trailer (8237ms) How many types of human blood are there? Paul Thomas Anderson -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Paul Thomas Anderson, There Will Be, Blood) -> Paul Thomas Anderson (8237ms) How many types of human blood are there? art and download -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (art and download, There Wishes Be, Blood) -> art and download (8229ms) How many types of human blood are there? Sanji...and -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Sanji...and, there appeared to be, blood) -> Sanji...and (8233ms) How many types of human blood are there? Wherefore -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Wherefore, is there, blood) -> Wherefore (8241ms) How many types of human blood are there? wounds -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (wounds, ?There was, blood) -> wounds (8229ms) How many types of human blood are there? any revolution -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (any revolution, there promises to be, blood) -> any revolution (8237ms) How many types of human blood are there? a bowel movement -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (a bowel movement, there was, blood) -> a bowel movement (8233ms) How many types of human blood are there? Sallie Rios -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Sallie Rios, There was, blood) -> Sallie Rios (8233ms) How many types of human blood are there? no-holds-barred hilarity -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (no-holds-barred hilarity, ?There has to be, blood) -> no-holds-barred hilarity (8241ms) How many types of human blood are there? Depression Era -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Depression Era, There Will Be, Blood) -> Depression Era (8241ms) How many types of human blood are there? the experimental drug -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (the experimental drug, was there to get, blood) -> the experimental drug (8241ms) How many types of human blood are there? no -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (no, There Will Be, Blood) -> no (8245ms) How many types of human blood are there? Juno Atonement -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Juno Atonement, There Will Be, Blood) -> Juno Atonement (8241ms) How many types of human blood are there? an entire toe -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (an entire toe, are there streaks of, blood) -> an entire toe (8245ms) How many types of human blood are there? Daniel Day-Lewis ? performance -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Daniel Day-Lewis ? performance, dominates There Will Be, Blood) -> Daniel Day-Lewis ? performance (8229ms) How many types of human blood are there? terms -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (terms, is There Will be, Blood) -> terms (8224ms) How many types of human blood are there? WHYTHEFUCK -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (WHYTHEFUCK, is there, BLOOD) -> WHYTHEFUCK (8233ms) How many types of human blood are there? Sure -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Sure, there was, blood) -> Sure (8233ms) How many types of human blood are there? A parishioner -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (A parishioner, ?There was, blood) -> A parishioner (8224ms) How many types of human blood are there? January 22 , 2008 Go -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (January 22 , 2008 Go, see There Will Be, Blood) -> January 22 , 2008 Go (8245ms) How many types of human blood are there? the head -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (the head, ?there was, blood) -> the head (8229ms) How many types of human blood are there? oh so fair , -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (oh so fair ,, is there, blood) -> oh so fair , (8237ms) How many types of human blood are there? Niall Ferguson -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Niall Ferguson, :?There will be, blood) -> Niall Ferguson (8233ms) How many types of human blood are there? 18-Jan-08 kirk and i -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (18-Jan-08 kirk and i, saw ?there will be, blood ?) -> 18-Jan-08 kirk and i (8241ms) How many types of human blood are there? Nina -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Nina, was laying there with, blood) -> Nina (8237ms) How many types of human blood are there? Anderson?s belongings -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Anderson?s belongings, there appeared to be, blood) -> Anderson?s belongings (8233ms) How many types of human blood are there? bad news -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (bad news, There Will Be, Blood) -> bad news (8245ms) How many types of human blood are there? 22-Jan-08 jonny greenwood?s score -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (22-Jan-08 jonny greenwood?s score, ?there will be, blood?) -> 22-Jan-08 jonny greenwood?s score (8233ms) How many types of human blood are there? Super -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Super, There Will Be, Blood) -> Super (8229ms) How many types of human blood are there? Race -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Race, ?There Will be, Blood) -> Race (8245ms) How many types of human blood are there? Paul Thomas Anderson?s Oscar?-nominated -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Paul Thomas Anderson?s Oscar?-nominated, ?There Will Be, Blood ?) -> Paul Thomas Anderson?s Oscar?-nominated (8241ms) How many types of human blood are there? Souichi -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Souichi, could react there was, blood) -> Souichi (8229ms) How many types of human blood are there? the ground ad -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (the ground ad, there was, blood) -> the ground ad (8245ms) How many types of human blood are there? last year -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (last year, were There Will Be, Blood) -> last year (8229ms) How many types of human blood are there? The sleeping room -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (The sleeping room, there are spots of, blood) -> The sleeping room (8224ms) How many types of human blood are there? James -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (James, was there, blood) -> James (8241ms) How many types of human blood are there? Atonement Juno -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Atonement Juno, There Will Be, Blood) -> Atonement Juno (8233ms) How many types of human blood are there? a cinematic masterpiece and download -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (a cinematic masterpiece and download, There Wishes Be, Blood) -> a cinematic masterpiece and download (8237ms) How many types of human blood are there? force and download -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (force and download, There Wishes Be, Blood) -> force and download (8224ms) How many types of human blood are there? Daniel Day-Lewis -0.5555555555630001 How many types of human blood are there? -> $x: ($x, be there, blood) -> (Daniel Day-Lewis, There Will Be, Blood) -> Daniel Day-Lewis (8237ms) How many types of human blood are there? blood group -0.66666666667 How many types of human blood are there? -> $x: ($x, can be find on, human blood) -> (blood group, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Human%20blood%20group%20systems) -> blood group (8245ms) How many types of human blood are there? mammary tissue -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (mammary tissue, consists only of, blood) -> mammary tissue (8257ms) How many types of human blood are there? Any orange -0.666666666672 How many types of human blood are there? -> $x: ($x, can be substitute for, blood) -> (Any orange, can be substituted for, the blood orange) -> Any orange (8262ms) How many types of human blood are there? Health checks -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (Health checks, consist of, blood pressure) -> Health checks (8249ms) How many types of human blood are there? the technique -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (the technique, consisted of, blood test) -> the technique (8257ms) How many types of human blood are there? the condition -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (the condition, consists of removing, blood) -> the condition (8255ms) How many types of human blood are there? health problems -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (health problems, consist of, poor blood flow) -> health problems (8252ms) How many types of human blood are there? Chum -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (Chum, consists of, fish parts and blood) -> Chum (8257ms) How many types of human blood are there? Screening -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (Screening, consists of, a simple blood test) -> Screening (8257ms) How many types of human blood are there? The root canal -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (The root canal, consists of, blood vessels) -> The root canal (8262ms) How many types of human blood are there? hemochromatosis -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (hemochromatosis, consists of removing, blood) -> hemochromatosis (8252ms) How many types of human blood are there? The menses or period -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (The menses or period, consists of, blood) -> The menses or period (8252ms) How many types of human blood are there? tissues -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (tissues, consists of, blood/ red blood cells) -> tissues (8259ms) How many types of human blood are there? The meal -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (The meal, consisted of, coagulated blood) -> The meal (8259ms) How many types of human blood are there? HES solutions -0.666666666672 How many types of human blood are there? -> $x: ($x, can substitute, blood) -> (HES solutions, can substitute, deficient blood volume) -> HES solutions (8245ms) How many types of human blood are there? The Horde -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (The Horde, consists of, Blood Elves) -> The Horde (8255ms) How many types of human blood are there? The menstrual flow -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (The menstrual flow, consists of, this blood) -> The menstrual flow (8259ms) How many types of human blood are there? The cardiovascular system -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (The cardiovascular system, consists of, the heart and blood) -> The cardiovascular system (8259ms) How many types of human blood are there? a benign growth -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (a benign growth, consists of, small blood vessels) -> a benign growth (8255ms) How many types of human blood are there? Such sacrifices -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (Such sacrifices, consist of, the blood) -> Such sacrifices (8254ms) How many types of human blood are there? the paint -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (the paint, consisted of, animal blood) -> the paint (8249ms) How many types of human blood are there? Serous fluid -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (Serous fluid, consists of, blood plasma) -> Serous fluid (8257ms) How many types of human blood are there? Stygmata -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (Stygmata, consists of, liquid blood) -> Stygmata (8259ms) How many types of human blood are there? The pus -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (The pus, consists of, white blood cells) -> The pus (8259ms) How many types of human blood are there? God -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (God, consists of, blood) -> God (8259ms) How many types of human blood are there? the extracellular space -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (the extracellular space, consists of, the blood vessels) -> the extracellular space (8252ms) How many types of human blood are there? the English throne -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (the English throne, consisted of, Vere blood) -> the English throne (8259ms) How many types of human blood are there? the group -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (the group, consisting of, blood) -> the group (8257ms) How many types of human blood are there? The screening -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (The screening, consists of, blood pressure) -> The screening (8262ms) How many types of human blood are there? the percentage of -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (the percentage of, consists of, red blood cells) -> the percentage of (8255ms) How many types of human blood are there? Regular surveillance -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (Regular surveillance, consists of, blood tests) -> Regular surveillance (8249ms) How many types of human blood are there? bed bugs -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (bed bugs, consists of, blood) -> bed bugs (8252ms) How many types of human blood are there? Food -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (Food, consists of, digested blood) -> Food (8254ms) How many types of human blood are there? Vitals signs -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (Vitals signs, consist of, blood pressure) -> Vitals signs (8249ms) How many types of human blood are there? the tooth -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (the tooth, consists of, blood vessels) -> the tooth (8257ms) How many types of human blood are there? the time -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (the time, consisted of, blood letting) -> the time (8257ms) How many types of human blood are there? Orthodox treatment -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (Orthodox treatment, consists of, blood transfusions) -> Orthodox treatment (8255ms) How many types of human blood are there? Metabolic Syndrome -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (Metabolic Syndrome, consists of, high blood pressure) -> Metabolic Syndrome (8257ms) How many types of human blood are there? the office -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (the office, consisted of, blood tests) -> the office (8249ms) How many types of human blood are there? The vertebrate circulatory system -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (The vertebrate circulatory system, consists of, the blood) -> The vertebrate circulatory system (8262ms) How many types of human blood are there? the ECF -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (the ECF, consists of, blood plasma) -> the ECF (8249ms) How many types of human blood are there? East Africa -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (East Africa, consists largely of, blood) -> East Africa (8259ms) How many types of human blood are there? the ear -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (the ear, may consist of, blood) -> the ear (8252ms) How many types of human blood are there? The B side -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (The B side, consisted of, Bloods) -> The B side (8249ms) How many types of human blood are there? The other component -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (The other component, consists of, special white blood cells) -> The other component (8259ms) How many types of human blood are there? The proportion of -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (The proportion of, consists of, packed red blood cells) -> The proportion of (8249ms) How many types of human blood are there? The accumulated fluid -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (The accumulated fluid, consists of, blood) -> The accumulated fluid (8254ms) How many types of human blood are there? A positive control -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (A positive control, consists of, the blood) -> A positive control (8249ms) How many types of human blood are there? Defective blood cells -0.666666666672 How many types of human blood are there? -> $x: ($x, can substitute, blood) -> (Defective blood cells, can?t substitute for, normal blood cells) -> Defective blood cells (8252ms) How many types of human blood are there? Vital signs -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (Vital signs, consist of, blood pressure) -> Vital signs (8252ms) How many types of human blood are there? The standard test performed -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (The standard test performed, consists of, blood work) -> The standard test performed (8262ms) How many types of human blood are there? Biological monitoring -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (Biological monitoring, usually consists of, blood) -> Biological monitoring (8252ms) How many types of human blood are there? Treatment -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (Treatment, consists of, blood glucose) -> Treatment (8255ms) How many types of human blood are there? The exam -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (The exam, typically consists of, blood) -> The exam (8259ms) How many types of human blood are there? vascular lesions -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (vascular lesions, consist of, blood vessels) -> vascular lesions (8255ms) How many types of human blood are there? The pulp -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (The pulp, consists of, nerves and blood vessels) -> The pulp (8255ms) How many types of human blood are there? The red pulp -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (The red pulp, consists of, blood vessels) -> The red pulp (8255ms) How many types of human blood are there? the roots -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (the roots, consist of, blood bile) -> the roots (8257ms) How many types of human blood are there? aspirin -0.666666666672 How many types of human blood are there? -> $x: ($x, can substitute, blood) -> (aspirin, can be substituted for, your blood thinners) -> aspirin (8249ms) How many types of human blood are there? the endocrine system -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (the endocrine system, consists of, the blood) -> the endocrine system (8257ms) How many types of human blood are there? the spermatic cord -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (the spermatic cord, consists of, blood vessels) -> the spermatic cord (8255ms) How many types of human blood are there? A control group -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (A control group, consisted of, blood donors) -> A control group (8255ms) How many types of human blood are there? a negative control -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (a negative control, consists of, the blood) -> a negative control (8252ms) How many types of human blood are there? stools -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (stools, consist of, pure blood) -> stools (8249ms) How many types of human blood are there? Incomplete blood cells -0.666666666672 How many types of human blood are there? -> $x: ($x, can substitute, blood) -> (Incomplete blood cells, can?t substitute for, normal blood cells) -> Incomplete blood cells (8257ms) How many types of human blood are there? the skin -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (the skin, consisting of, masses of blood vessels) -> the skin (8257ms) How many types of human blood are there? The discharge -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (The discharge, consists of, blood and cells) -> The discharge (8257ms) How many types of human blood are there? gluten sensitivity/celiac sprue -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (gluten sensitivity/celiac sprue, consisted of, blood tests) -> gluten sensitivity/celiac sprue (8245ms) How many types of human blood are there? Symptoms -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (Symptoms, consist of, blood) -> Symptoms (8252ms) How many types of human blood are there? plasma -0.666666666672 How many types of human blood are there? -> $x: ($x, can substitute, blood) -> (plasma, can be substituted for, whole blood transfusions) -> plasma (8259ms) How many types of human blood are there? a benign tumor -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (a benign tumor, consisting of, blood vessels) -> a benign tumor (8259ms) How many types of human blood are there? the circulatory system -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (the circulatory system, consists of, the blood) -> the circulatory system (8259ms) How many types of human blood are there? lean meats -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (lean meats, consist of, Blood potassium) -> lean meats (8262ms) How many types of human blood are there? One dish -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (One dish, consists of, blood sausage) -> One dish (8255ms) How many types of human blood are there? The blood -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (The blood, consists of, red blood cells) -> The blood (8257ms) How many types of human blood are there? PRRSV -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (PRRSV, consists of, blood) -> PRRSV (8257ms) How many types of human blood are there? noninfectious pustules -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (noninfectious pustules, consist of, white blood cells) -> noninfectious pustules (8249ms) How many types of human blood are there? noninfectious pus -0.666666666672 How many types of human blood are there? -> $x: ($x, consist of, blood) -> (noninfectious pus, consisting of, white blood cells) -> noninfectious pus (8259ms) How many types of human blood are there? Type O negative -0.88888888888 How many types of human blood are there? -> $x: ($x, be type for, blood) -> (Type O negative, is the universal type for, red blood cells) -> Type O negative (8262ms) How many types of human blood are there? Blood and Gold -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood and Gold, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20and%20Gold) -> Blood and Gold (8264ms) How many types of human blood are there? Peripheral smear -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Peripheral smear, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20film) -> Peripheral smear (8268ms) How many types of human blood are there? CLL -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (CLL, can be found on, routine blood-tests) -> CLL (8267ms) How many types of human blood are there? Blood Thirst -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood Thirst, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20Thirst) -> Blood Thirst (8267ms) How many types of human blood are there? United Blood Nation -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (United Blood Nation, can be found on Wikipedia at, http://en.wikipedia.org/wiki/United%20Blood%20Nation) -> United Blood Nation (8264ms) How many types of human blood are there? the blood spilt -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (the blood spilt, can be found on Wikipedia at, http://en.wikipedia.org/wiki/The%20Blood%20Spilt) -> the blood spilt (8268ms) How many types of human blood are there? International Society of Blood Transfusion -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (International Society of Blood Transfusion, can be found on Wikipedia at, http://en.wikipedia.org/wiki/International%20Society%20of%20Blood%20Transfusion) -> International Society of Blood Transfusion (8264ms) How many types of human blood are there? Back to Blood -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Back to Blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Back%20to%20Blood) -> Back to Blood (8267ms) How many types of human blood are there? dark blood -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (dark blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Dark%20Blood) -> dark blood (8268ms) How many types of human blood are there? a particular marker -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (a particular marker, can be found on, their white blood cells) -> a particular marker (8267ms) How many types of human blood are there? Wire in the Blood -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Wire in the Blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Wire%20in%20the%20Blood) -> Wire in the Blood (8265ms) How many types of human blood are there? Blood and Honor -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood and Honor, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20and%20Honour) -> Blood and Honor (8265ms) How many types of human blood are there? Blood Storm -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood Storm, can be found on Wikipedia at, http://en.wikipedia.org/wiki/BloodStorm) -> Blood Storm (8267ms) How many types of human blood are there? Blood Theatre -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood Theatre, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20Theatre) -> Blood Theatre (8269ms) How many types of human blood are there? Hemophobia -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Hemophobia, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20phobia) -> Hemophobia (8269ms) How many types of human blood are there? Blood is thicker than water -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood is thicker than water, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20is%20thicker%20than%20water) -> Blood is thicker than water (8269ms) How many types of human blood are there? blood of amber -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (blood of amber, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20of%20Amber) -> blood of amber (8265ms) How many types of human blood are there? Fangoria Blood Drive -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Fangoria Blood Drive, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Fangoria%20Blood%20Drive) -> Fangoria Blood Drive (8267ms) How many types of human blood are there? Dragons Blood -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Dragons Blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Dragon's%20blood) -> Dragons Blood (8264ms) How many types of human blood are there? life in cold blood -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (life in cold blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Life%20in%20Cold%20Blood) -> life in cold blood (8270ms) How many types of human blood are there? Get Yr Blood Sucked Out -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Get Yr Blood Sucked Out, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Get%20Yr%20Blood%20Sucked%20Out) -> Get Yr Blood Sucked Out (8265ms) How many types of human blood are there? Rise: Blood Hunter -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Rise: Blood Hunter, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Rise%3A%20Blood%20Hunter) -> Rise: Blood Hunter (8268ms) How many types of human blood are there? baptized in blood -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (baptized in blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Baptized%20in%20Blood) -> baptized in blood (8265ms) How many types of human blood are there? blood in my eye -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (blood in my eye, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20in%20My%20Eye) -> blood in my eye (8269ms) How many types of human blood are there? Trauma Center: New Blood -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Trauma Center: New Blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Trauma%20Center%3A%20New%20Blood) -> Trauma Center: New Blood (8268ms) How many types of human blood are there? Blood Diner -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood Diner, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20Diner) -> Blood Diner (8265ms) How many types of human blood are there? Blood Red Rivers -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood Red Rivers, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20Red%20Rivers) -> Blood Red Rivers (8268ms) How many types of human blood are there? caleb blood smith -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (caleb blood smith, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Caleb%20Blood%20Smith) -> caleb blood smith (8270ms) How many types of human blood are there? Sword Stained With Royal Blood -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Sword Stained With Royal Blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sword%20Stained%20with%20Royal%20Blood) -> Sword Stained With Royal Blood (8262ms) How many types of human blood are there? BLL -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (BLL, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20lead%20level) -> BLL (8268ms) How many types of human blood are there? Blood Inside -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood Inside, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20Inside) -> Blood Inside (8268ms) How many types of human blood are there? In Your Blood -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (In Your Blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/In%20Your%20Blood) -> In Your Blood (8268ms) How many types of human blood are there? Blood oxygen level -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood oxygen level, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20oxygen%20level) -> Blood oxygen level (8267ms) How many types of human blood are there? blood noir -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (blood noir, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20Noir) -> blood noir (8262ms) How many types of human blood are there? Corridors of Blood -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Corridors of Blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Corridors%20of%20Blood) -> Corridors of Blood (8262ms) How many types of human blood are there? Blood Wake -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood Wake, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20Wake) -> Blood Wake (8265ms) How many types of human blood are there? Blood Fire Death -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood Fire Death, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20Fire%20Death) -> Blood Fire Death (8262ms) How many types of human blood are there? America?s Blood Centers -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (America?s Blood Centers, can be found on Wikipedia at, http://en.wikipedia.org/wiki/America's%20Blood%20Centers) -> America?s Blood Centers (8267ms) How many types of human blood are there? BloodRayne: Betrayal -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (BloodRayne: Betrayal, can be found on Wikipedia at, http://en.wikipedia.org/wiki/BloodRayne%3A%20Betrayal) -> BloodRayne: Betrayal (8265ms) How many types of human blood are there? trinity Blood -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (trinity Blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Trinity%20Blood) -> trinity Blood (8262ms) How many types of human blood are there? melty blood -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (melty blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Melty%20Blood) -> melty blood (8267ms) How many types of human blood are there? a dying empire -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (a dying empire, can be found on, the blood-soaked landscapes) -> a dying empire (8270ms) How many types of human blood are there? National Blood Service -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (National Blood Service, can be found on Wikipedia at, http://en.wikipedia.org/wiki/National%20Blood%20Service) -> National Blood Service (8265ms) How many types of human blood are there? marrow registry -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (marrow registry, can be found on, the BloodSource website) -> marrow registry (8265ms) How many types of human blood are there? The F.B.I -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (The F.B.I, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Full%20Blooded%20Italians) -> The F.B.I (8269ms) How many types of human blood are there? Blood Secret -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood Secret, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20Secret) -> Blood Secret (8269ms) How many types of human blood are there? blood canticle -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (blood canticle, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20Canticle) -> blood canticle (8264ms) How many types of human blood are there? Blood on the Sun -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood on the Sun, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20on%20the%20Sun) -> Blood on the Sun (8269ms) How many types of human blood are there? Blood 2 -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood 2, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20II%3A%20The%20Chosen) -> Blood 2 (8270ms) How many types of human blood are there? Atoxoplasma -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Atoxoplasma, can be found on, blood smears) -> Atoxoplasma (8267ms) How many types of human blood are there? blood promise -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (blood promise, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20Promise%20(novel)) -> blood promise (8264ms) How many types of human blood are there? D.K. -0.888888888892 How many types of human blood are there? -> $x: ($x, sing with, blood) -> (D.K., sing with, his band ?Blood Cake? ?) -> D.K. (8270ms) How many types of human blood are there? The Crown -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (The Crown, can be found on, his 2003 effort Blood) -> The Crown (8262ms) How many types of human blood are there? Flesh 'n' Blood -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Flesh 'n' Blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Flesh%20'n'%20Blood%20(TV%20series)) -> Flesh 'n' Blood (8268ms) How many types of human blood are there? World Painted Blood -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (World Painted Blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/World%20Painted%20Blood) -> World Painted Blood (8268ms) How many types of human blood are there? The Blood Divine -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (The Blood Divine, can be found on Wikipedia at, http://en.wikipedia.org/wiki/The%20Blood%20Divine) -> The Blood Divine (8267ms) How many types of human blood are there? arterial-blood -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (arterial-blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Arterial%20blood) -> arterial-blood (8265ms) How many types of human blood are there? Bounty Hunter Bloods -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Bounty Hunter Bloods, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Bounty%20Hunter%20Bloods) -> Bounty Hunter Bloods (8269ms) How many types of human blood are there? Blood cockle -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood cockle, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20cockle) -> Blood cockle (8265ms) How many types of human blood are there? Red Blooded Woman -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Red Blooded Woman, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Red%20Blooded%20Woman) -> Red Blooded Woman (8270ms) How many types of human blood are there? the blood doctor -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (the blood doctor, can be found on Wikipedia at, http://en.wikipedia.org/wiki/The%20Blood%20Doctor) -> the blood doctor (8270ms) How many types of human blood are there? Drawing Blood -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Drawing Blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Drawing%20Blood) -> Drawing Blood (8269ms) How many types of human blood are there? Blood Red Throne -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood Red Throne, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20Red%20Throne) -> Blood Red Throne (8270ms) How many types of human blood are there? Surfer Blood -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Surfer Blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Surfer%20Blood) -> Surfer Blood (8264ms) How many types of human blood are there? Tunnels of Blood -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Tunnels of Blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Tunnels%20of%20Blood) -> Tunnels of Blood (8269ms) How many types of human blood are there? Blood Has Been Shed -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood Has Been Shed, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20Has%20Been%20Shed) -> Blood Has Been Shed (8270ms) How many types of human blood are there? Reign In Blood -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Reign In Blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Reign%20in%20Blood) -> Reign In Blood (8269ms) How many types of human blood are there? Blood on the Arrow -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood on the Arrow, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20on%20the%20Arrow) -> Blood on the Arrow (8268ms) How many types of human blood are there? Blood In Blood Out -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood In Blood Out, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20In%20Blood%20Out) -> Blood In Blood Out (8264ms) How many types of human blood are there? Blood On the Tracks -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood On the Tracks, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20on%20the%20Tracks) -> Blood On the Tracks (8264ms) How many types of human blood are there? Blood-spotted abalone -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood-spotted abalone, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%2Dspotted%20abalone) -> Blood-spotted abalone (8264ms) How many types of human blood are there? Too Much Blood -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Too Much Blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Too%20Much%20Blood) -> Too Much Blood (8262ms) How many types of human blood are there? winter in the blood -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (winter in the blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Winter%20in%20the%20Blood) -> winter in the blood (8265ms) How many types of human blood are there? Let The Blood Run Free -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Let The Blood Run Free, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Let%20The%20Blood%20Run%20Free) -> Let The Blood Run Free (8267ms) How many types of human blood are there? Blood Upon The Risers -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood Upon The Risers, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20on%20the%20Risers) -> Blood Upon The Risers (8269ms) How many types of human blood are there? willi one blood -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (willi one blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Willi%20One%20Blood) -> willi one blood (8265ms) How many types of human blood are there? Raining Blood -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Raining Blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Raining%20Blood) -> Raining Blood (8269ms) How many types of human blood are there? Aretas Blood -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Aretas Blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Aretas%20Blood) -> Aretas Blood (8268ms) How many types of human blood are there? Tekken Hybrid -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Tekken Hybrid, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Tekken%3A%20Blood%20Vengeance) -> Tekken Hybrid (8268ms) How many types of human blood are there? Rivers of Blood Speech -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Rivers of Blood Speech, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Rivers%20of%20Blood%20speech) -> Rivers of Blood Speech (8264ms) How many types of human blood are there? Thomas Blood -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Thomas Blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Thomas%20Blood) -> Thomas Blood (8270ms) How many types of human blood are there? half the blood of brooklyn -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (half the blood of brooklyn, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Half%20the%20Blood%20of%20Brooklyn) -> half the blood of brooklyn (8267ms) How many types of human blood are there? Blood Magick Necromance -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood Magick Necromance, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20Magick%20Necromance) -> Blood Magick Necromance (8268ms) How many types of human blood are there? battle of blood river -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (battle of blood river, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Battle%20of%20Blood%20River) -> battle of blood river (8270ms) How many types of human blood are there? Blood of the Fold -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood of the Fold, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20of%20the%20Fold) -> Blood of the Fold (8262ms) How many types of human blood are there? blood red -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (blood red, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20Red) -> blood red (8264ms) How many types of human blood are there? ShellShock 2: Blood Trails -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (ShellShock 2: Blood Trails, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Shellshock%202%3A%20Blood%20Trails) -> ShellShock 2: Blood Trails (8265ms) How many types of human blood are there? Personal Darkness -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Personal Darkness, can be found on Wikipedia at, http://en.wikipedia.org/wiki/The%20Blood%20Opera%20Sequence) -> Personal Darkness (8269ms) How many types of human blood are there? It's Okay -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (It's Okay, can be found on Wikipedia at, http://en.wikipedia.org/wiki/It's%20Okay%20(One%20Blood)) -> It's Okay (8264ms) How many types of human blood are there? Blood Hunt -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood Hunt, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20Hunt) -> Blood Hunt (8264ms) How many types of human blood are there? blood -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (blood, can be found on, the National Blood Service website) -> blood (8264ms) How many types of human blood are there? Impressions in Blood -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Impressions in Blood, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Impressions%20in%20Blood) -> Impressions in Blood (8269ms) How many types of human blood are there? Fecal occult blood test -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Fecal occult blood test, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Fecal%20occult%20blood) -> Fecal occult blood test (8267ms) How many types of human blood are there? Blood volume -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood volume, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20volume) -> Blood volume (8268ms) How many types of human blood are there? The Blood Arm -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (The Blood Arm, can be found on Wikipedia at, http://en.wikipedia.org/wiki/The%20Blood%20Arm) -> The Blood Arm (8267ms) How many types of human blood are there? Nicotine -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Nicotine, can be found on, the umbilical cord blood) -> Nicotine (8267ms) How many types of human blood are there? Blood's Bird of Paradise -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood's Bird of Paradise, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood's%20Bird%20of%20Paradise) -> Blood's Bird of Paradise (8265ms) How many types of human blood are there? Blood of Elves -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood of Elves, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20of%20Elves) -> Blood of Elves (8264ms) How many types of human blood are there? Blood Visions -0.888888888892 How many types of human blood are there? -> $x: ($x, can be find on, blood) -> (Blood Visions, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blood%20Visions) -> Blood Visions (8262ms) How many types of human blood are there? Lymphocytes -0.99999999999 How many types of human blood are there? -> $x: ($x, be specific type of, blood) -> (Lymphocytes, are a specific type of, white blood cell) -> Lymphocytes (8270ms) How many types of human blood are there? T-cells -1.555555555553 How many types of human blood are there? -> $x: ($x, be one type of, blood) -> (T-cells, are one type of, white blood cell) -> T-cells (8271ms) How many types of human blood are there? Macrophages -1.555555555553 How many types of human blood are there? -> $x: ($x, be one type of, blood) -> (Macrophages, are one type of, white blood cell) -> Macrophages (8271ms) What color are UPS trucks? Captured 0.333333333329 What color are UPS trucks? -> $x: ($x, be color of, ups) -> (Captured, is all the color of, the build up , qualifying) -> Captured (1113ms) What color are UPS trucks? the school 0.333333333329 What color are UPS trucks? -> $x: ($x, be color of, ups) -> (the school, is comprised of 23 % students of color, up from 12 %) -> the school (1113ms) What color are UPS trucks? brown 0.333333333329 What color are UPS trucks? -> $x: ($x, be color of, ups) -> (brown, is the color of, UPS) -> brown (1113ms) What color are UPS trucks? 21 year 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (21 year, were driving in, their pick up truck) -> 21 year (1516ms) What color are UPS trucks? midnight and 3:00 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (midnight and 3:00, am in, a pick-up truck) -> midnight and 3:00 (1514ms) What color are UPS trucks? The two 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (The two, were driving along in, their humble pick-up truck) -> The two (1219ms) What color are UPS trucks? counseling 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (counseling, is the ride in, the pick-up truck) -> counseling (1516ms) What color are UPS trucks? The department 0.111111111111 What color are UPS trucks? -> $x: ($x, do, ups truck) -> (The department, does have, a back-up truck) -> The department (1516ms) What color are UPS trucks? n?t 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (n?t, is n?t delivered in, brown UPS trucks) -> n?t (1514ms) What color are UPS trucks? Blackburn 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Blackburn, was found dead in, a pick-up truck) -> Blackburn (1413ms) What color are UPS trucks? Garbage 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Garbage, must be brought in, pick-up trucks or cars) -> Garbage (1413ms) What color are UPS trucks? Jones 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Jones, was the passenger in, the pick-up truck) -> Jones (1516ms) What color are UPS trucks? the corpses 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (the corpses, were taken away in, a pick-up truck) -> the corpses (1514ms) What color are UPS trucks? the stripey shirt 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (the stripey shirt, was in, the pick up truck) -> the stripey shirt (1113ms) What color are UPS trucks? guns 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (guns, were prominently displayed in, pick-up truck gun racks) -> guns (1220ms) What color are UPS trucks? Elick 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Elick, is killed in, a pick-up truck) -> Elick (1518ms) What color are UPS trucks? The pair 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (The pair, was traveling in, a white 1995 pick-up truck) -> The pair (1516ms) What color are UPS trucks? The crystal 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (The crystal, is cold still from being in, the UPS truck) -> The crystal (1413ms) What color are UPS trucks? even vans , service 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (even vans , service, is provided in, pick-up trucks) -> even vans , service (1219ms) What color are UPS trucks? Juan Sin Miedo 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Juan Sin Miedo, was seen riding around in, pick-up trucks) -> Juan Sin Miedo (1518ms) What color are UPS trucks? each die 0.111111111111 What color are UPS trucks? -> $x: ($x, size be, ups truck) -> (each die, is roughly the size of, a one ton pick-up truck) -> each die (1516ms) What color are UPS trucks? the tail 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (the tail, was up in, the bed of a pick-up truck) -> the tail (1516ms) What color are UPS trucks? The shotguns 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (The shotguns, were discovered in, the pick up truck) -> The shotguns (1516ms) What color are UPS trucks? Inspections 0.111111111111 What color are UPS trucks? -> $x: ($x, do, ups truck) -> (Inspections, can be done from, a pick-up truck) -> Inspections (1113ms) What color are UPS trucks? Two men 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Two men, were killed in, a parked pick-up truck) -> Two men (1413ms) What color are UPS trucks? the driver 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (the driver, was trapped in, the pick up truck) -> the driver (1219ms) What color are UPS trucks? Hamda 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Hamda, was travelling in, a pick-up truck) -> Hamda (1514ms) What color are UPS trucks? A 4-year-old boy 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (A 4-year-old boy, was in, a pick-up truck) -> A 4-year-old boy (1516ms) What color are UPS trucks? Not every client 0.111111111111 What color are UPS trucks? -> $x: ($x, do, ups truck) -> (Not every client, can make do with, an old pick-up truck) -> Not every client (1514ms) What color are UPS trucks? the products 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (the products, are picked up in, a pick-up truck) -> the products (1516ms) What color are UPS trucks? Ice chunks 0.111111111111 What color are UPS trucks? -> $x: ($x, size be, ups truck) -> (Ice chunks, were the size of, pick-up trucks) -> Ice chunks (1413ms) What color are UPS trucks? Counterbalance P.S. 0.111111111111 What color are UPS trucks? -> $x: ($x, do, ups truck) -> (Counterbalance P.S., Always did enjoy, a pick-up truck) -> Counterbalance P.S. (1220ms) What color are UPS trucks? The soldiers 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (The soldiers, were in, a pick-up truck) -> The soldiers (1413ms) What color are UPS trucks? The Federales 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (The Federales, are patrolling in, pick-up trucks) -> The Federales (1514ms) What color are UPS trucks? Middle Eastern John 0.111111111111 What color are UPS trucks? -> $x: ($x, do, ups truck) -> (Middle Eastern John, Does in, a brown pick-up truck) -> Middle Eastern John (1219ms) What color are UPS trucks? Dan Larkin 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Dan Larkin, is sitting in, his middle-of-the-range pick-up truck) -> Dan Larkin (1113ms) What color are UPS trucks? the victim 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (the victim, was trapped in, a small pick-up truck) -> the victim (1113ms) What color are UPS trucks? America 0.111111111111 What color are UPS trucks? -> $x: ($x, do, ups truck) -> (America, does make, some Japanese pick-up trucks) -> America (1516ms) What color are UPS trucks? men 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (men, are indulging in, pick-up trucks and gaming) -> men (1518ms) What color are UPS trucks? Azza 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Azza, was stuck in, the pick up truck) -> Azza (1413ms) What color are UPS trucks? the parking lot 0.111111111111 What color are UPS trucks? -> $x: ($x, do, ups truck) -> (the parking lot, did contain as, many beat-up pickup trucks) -> the parking lot (1514ms) What color are UPS trucks? The coffin 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (The coffin, was found in, an abandoned pick-up truck) -> The coffin (1514ms) What color are UPS trucks? Police officers 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Police officers, are now riding high in, pick-up trucks) -> Police officers (1518ms) What color are UPS trucks? Suspect 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Suspect, was last seen in, a dark blue Ford pick-up truck) -> Suspect (1413ms) What color are UPS trucks? an Uchiha 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (an Uchiha, would n?t be caught fucking in, a pick-up truck) -> an Uchiha (1518ms) What color are UPS trucks? a man 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (a man, are driving in, their pick-up truck) -> a man (1514ms) What color are UPS trucks? three 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (three, was in, the pick-up truck) -> three (1516ms) What color are UPS trucks? friend Joe Salaz 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (friend Joe Salaz, were driving in, a pick-up truck) -> friend Joe Salaz (1516ms) What color are UPS trucks? the criminal 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (the criminal, is raping the girl in, his pick-up truck) -> the criminal (1516ms) What color are UPS trucks? Littlehales 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Littlehales, had been in, a white pick-up truck) -> Littlehales (1514ms) What color are UPS trucks? CargoCatch 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (CargoCatch, can be used in, any pick-up truck) -> CargoCatch (1514ms) What color are UPS trucks? A Snover man 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (A Snover man, was a passenger in, a 1995 Ford pick-up truck) -> A Snover man (1514ms) What color are UPS trucks? trick-or-treating 0.111111111111 What color are UPS trucks? -> $x: ($x, do, ups truck) -> (trick-or-treating, is done by, pick-up truck) -> trick-or-treating (1514ms) What color are UPS trucks? seat belts 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (seat belts, be worn in, pick-up trucks) -> seat belts (1514ms) What color are UPS trucks? Osman 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Osman, was in, a pick up truck) -> Osman (1514ms) What color are UPS trucks? The 20-year-old 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (The 20-year-old, was a passenger in, a pick-up truck) -> The 20-year-old (1516ms) What color are UPS trucks? 7-year-old daughter 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (7-year-old daughter, was a passenger in, the pick-up truck) -> 7-year-old daughter (1518ms) What color are UPS trucks? Brian 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Brian, was in, the pick-up truck) -> Brian (1516ms) What color are UPS trucks? Malia Staggs 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Malia Staggs, were sitting in, a pick-up truck) -> Malia Staggs (1219ms) What color are UPS trucks? Jackson 0.111111111111 What color are UPS trucks? -> $x: ($x, be in, ups truck) -> (Jackson, was off-duty in, his personal GMC pick-up truck) -> Jackson (1514ms) What color are UPS trucks? The army -0.5555555555439999 What color are UPS trucks? -> $x: ($x, like, ups truck) -> (The army, is like, a 4X4 pick-up truck) -> The army (1519ms) What color are UPS trucks? a ute -0.5555555555439999 What color are UPS trucks? -> $x: ($x, like, ups truck) -> (a ute, is like, a pick-up truck) -> a ute (1518ms) What color are UPS trucks? The CNG trucks -0.5555555555439999 What color are UPS trucks? -> $x: ($x, like, ups truck) -> (The CNG trucks, look just like, the signature-brown UPS trucks) -> The CNG trucks (1518ms) What color are UPS trucks? Anthony Hamilton -0.5555555555439999 What color are UPS trucks? -> $x: ($x, like, ups truck) -> (Anthony Hamilton, stands out like, a road tested pick-up truck) -> Anthony Hamilton (1519ms) What color are UPS trucks? younger kids -0.5555555555439999 What color are UPS trucks? -> $x: ($x, like, ups truck) -> (younger kids, will like, the Marvel/monster truck link-up) -> younger kids (1518ms) What color are UPS trucks? Jason Clarke -0.5555555555439999 What color are UPS trucks? -> $x: ($x, like, ups truck) -> (Jason Clarke, looks like, a pick-up truck) -> Jason Clarke (1518ms) What color are UPS trucks? the market -0.5555555555439999 What color are UPS trucks? -> $x: ($x, like, ups truck) -> (the market, are one like, pick-up trucks) -> the market (1518ms) What color are UPS trucks? a medium -0.5555555555439999 What color are UPS trucks? -> $x: ($x, size, ups truck) -> (a medium, sized, pick-up truck) -> a medium (1518ms) What color are UPS trucks? The interior -0.5555555555439999 What color are UPS trucks? -> $x: ($x, like, ups truck) -> (The interior, looks like, a basic GMC Seirra pick-up truck) -> The interior (1518ms) What color are UPS trucks? Command Vehicle Lt . Fick -0.5555555555439999 What color are UPS trucks? -> $x: ($x, like, ups truck) -> (Command Vehicle Lt . Fick, configured like, a pick-up truck) -> Command Vehicle Lt . Fick (1518ms) What color are UPS trucks? the Police -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (the Police, do is come in after, the fact and document/mop-up) -> the Police (1522ms) What color are UPS trucks? Jesus -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (Jesus, came after, John was delivered up) -> Jesus (1519ms) What color are UPS trucks? The harnesses -0.7777777777770001 What color are UPS trucks? -> $x: ($x, color for, ups) -> (The harnesses, are all color coded for, easy hook-up) -> The harnesses (1521ms) What color are UPS trucks? the device -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (the device, comes up after, power-up) -> the device (1522ms) What color are UPS trucks? The decision -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (The decision, came after, China stepped up a campaign) -> The decision (1519ms) What color are UPS trucks? the SMRT depot -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (the SMRT depot, comes after so, many wake-up calls) -> the SMRT depot (1522ms) What color are UPS trucks? The move -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (The move, comes only a few days after, a similar tie-up) -> The move (1522ms) What color are UPS trucks? Transactions -0.7777777777770001 What color are UPS trucks? -> $x: ($x, color for, ups) -> (Transactions, are color-coded for, easy look-up) -> Transactions (1521ms) What color are UPS trucks? The first big rapid -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (The first big rapid, comes after, a few nice warm-up rapids) -> The first big rapid (1521ms) What color are UPS trucks? Kuwait -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (Kuwait, came days after, a goof-up) -> Kuwait (1519ms) What color are UPS trucks? Read More -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (Read More, Comes After, ?Start-Up?) -> Read More (1519ms) What color are UPS trucks? a cream -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (a cream, comes after, the cover up) -> a cream (1519ms) What color are UPS trucks? the hairstylist -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (the hairstylist, came in after, the make-up artists) -> the hairstylist (1521ms) What color are UPS trucks? a Win-Win feature -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (a Win-Win feature, will come after, you spin up your free games) -> a Win-Win feature (1519ms) What color are UPS trucks? New Zealand -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (New Zealand, to come from behind after, Australia went 2-0 up) -> New Zealand (1519ms) What color are UPS trucks? The revelation -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (The revelation, comes just days after, a huge shake-up) -> The revelation (1521ms) What color are UPS trucks? aid -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (aid, comes after, the initial clean-up) -> aid (1522ms) What color are UPS trucks? ?The assistants -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (?The assistants, came in after, warm ups) -> ?The assistants (1519ms) What color are UPS trucks? Black -0.7777777777770001 What color are UPS trucks? -> $x: ($x, color for, ups) -> (Black, is the appropriate color for, this particular write-up) -> Black (1521ms) What color are UPS trucks? The shows -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (The shows, come after, Disturbed wraps up) -> The shows (1519ms) What color are UPS trucks? the band -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (the band, comes out after, the house lights have come up) -> the band (1519ms) What color are UPS trucks? The Final Cut Pro v10.0.3 update -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (The Final Cut Pro v10.0.3 update, came after, a flare-up) -> The Final Cut Pro v10.0.3 update (1521ms) What color are UPS trucks? The real test -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (The real test, will come after, spring break-up) -> The real test (1522ms) What color are UPS trucks? The diagnosis -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (The diagnosis, came after, a pre-conception check-up) -> The diagnosis (1521ms) What color are UPS trucks? The purchase -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (The purchase, comes just two years after, the start-up) -> The purchase (1521ms) What color are UPS trucks? The three year extension -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (The three year extension, comes after, an up) -> The three year extension (1522ms) What color are UPS trucks? The big surprise -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (The big surprise, came after, setting up the system) -> The big surprise (1520ms) What color are UPS trucks? Poles -0.7777777777770001 What color are UPS trucks? -> $x: ($x, color for, ups) -> (Poles, are color coded for, easy set-up) -> Poles (1521ms) What color are UPS trucks? The protest -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (The protest, came after, the setting-up) -> The protest (1521ms) What color are UPS trucks? the game -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (the game, came after, a heads-up play) -> the game (1521ms) What color are UPS trucks? The announcement -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (The announcement, comes after, a radical shake-up) -> The announcement (1522ms) What color are UPS trucks? Elias Howe -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (Elias Howe, came up after, waking up) -> Elias Howe (1522ms) What color are UPS trucks? The process -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (The process, comes after, a break up) -> The process (1519ms) What color are UPS trucks? the responses -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (the responses, came after, we had written up our findings) -> the responses (1521ms) What color are UPS trucks? The divorce petition -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (The divorce petition, came after, a long and emotional build-up) -> The divorce petition (1521ms) What color are UPS trucks? Gyans 67th-minute equalizer -0.7777777777770001 What color are UPS trucks? -> $x: ($x, come after, ups) -> (Gyans 67th-minute equalizer, came after, a mix-up) -> Gyans 67th-minute equalizer (1521ms) What color are UPS trucks? the color -0.888888888886 What color are UPS trucks? -> $x: ($x, color in, ups) -> (the color, choose a new color in, the pop-up menu) -> the color (1522ms) What color are UPS trucks? the 7th century BC -0.8888888888869999 What color are UPS trucks? -> $x: ($x, be history of, ups) -> (the 7th century BC, is an amazing history of, ups and downs) -> the 7th century BC (1522ms) What color are UPS trucks? Brazil -0.8888888888869999 What color are UPS trucks? -> $x: ($x, be history of, ups) -> (Brazil, is a history of, the ups and downs) -> Brazil (1522ms) What color are UPS trucks? BC -0.8888888888869999 What color are UPS trucks? -> $x: ($x, be history of, ups) -> (BC, is an amazing history of, ups and downs) -> BC (1522ms) What color are UPS trucks? The reality -0.8888888888869999 What color are UPS trucks? -> $x: ($x, be history of, ups) -> (The reality, is a history of, accidents and cover-ups) -> The reality (1522ms) What color are UPS trucks? A faster history -0.8888888888869999 What color are UPS trucks? -> $x: ($x, be history of, ups) -> (A faster history, would be a history of, throw ups) -> A faster history (1522ms) What color are UPS trucks? the castle -0.8888888888869999 What color are UPS trucks? -> $x: ($x, be history of, ups) -> (the castle, is a history of, ups and downs) -> the castle (1522ms) What was the name of Ayn Rand's husband? Paul 0.44444444443799996 What was the name of Ayn Rand's husband? -> $x: ($x, marry, ayn rand) -> (Paul, is married to, Ayn Rand) -> Paul (523ms) What was the name of Ayn Rand's husband? Hegel -0.555555555555 What was the name of Ayn Rand's husband? -> $x: (ayn rand, marry, $x) -> (New Mexico Ayn Rand and Kant, get married with, Hegel) -> Hegel (523ms) What is Africa's largest country? the South African Champions 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (the South African Champions, represented, Africa) -> the South African Champions (4832ms) What is Africa's largest country? 2009 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (2009, is double the average growth rate of, Africa) -> 2009 (4866ms) What is Africa's largest country? Cape Town 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (Cape Town, is the top-ranked university in, Africa) -> Cape Town (4902ms) What is Africa's largest country? any better nor 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (any better nor, fairly represent, Africa) -> any better nor (3562ms) What is Africa's largest country? Botswana 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (Botswana, is rated, the least corrupt country in Africa) -> Botswana (4902ms) What is Africa's largest country? malnutrition 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (malnutrition, nearly double the rate of, sub-Saharan Africa) -> malnutrition (4882ms) What is Africa's largest country? the North section 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (the North section, will represent, Africa) -> the North section (4841ms) What is Africa's largest country? Maples 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (Maples, sailed again for, Africa) -> Maples (4866ms) What is Africa's largest country? Transparency International 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (Transparency International, rated, South Africa) -> Transparency International (3902ms) What is Africa's largest country? the Reliance 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (the Reliance, sailed for, South Africa) -> the Reliance (3562ms) What is Africa's largest country? Facebook 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (Facebook, is the top-ranked site in, Africa) -> Facebook (4813ms) What is Africa's largest country? Kardouche 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (Kardouche, also rates, South Africa) -> Kardouche (4642ms) What is Africa's largest country? the Turks 1.666666666653 What is Africa's largest country? -> $x: ($x, rule on, africa) -> (the Turks, imposed their rule on, North Africa) -> the Turks (4823ms) What is Africa's largest country? HKI 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (HKI, worked closely with, South Africa) -> HKI (4832ms) What is Africa's largest country? The game viewing 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (The game viewing, is rated the best in, Africa) -> The game viewing (4794ms) What is Africa's largest country? a charity 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (a charity, works with, poor families in Africa) -> a charity (4804ms) What is Africa's largest country? 2 million people 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (2 million people, surrounded by, South Africa) -> 2 million people (4841ms) What is Africa's largest country? the selection 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (the selection, will represent, Africa) -> the selection (4858ms) What is Africa's largest country? organizations and individuals 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (organizations and individuals, working with, radio in Africa) -> organizations and individuals (4804ms) What is Africa's largest country? the taboo 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (the taboo, surrounds, the disease in Africa) -> the taboo (4841ms) What is Africa's largest country? Okonjo-Iweala 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Okonjo-Iweala, will represent, Africa) -> Okonjo-Iweala (4823ms) What is Africa's largest country? the countries 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (the countries, surrounding, South Africa) -> the countries (4875ms) What is Africa's largest country? The Kingdom 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (The Kingdom, surrounded by, South Africa) -> The Kingdom (4895ms) What is Africa's largest country? Morocco 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Morocco, represented, Africa) -> Morocco (4849ms) What is Africa's largest country? The Super Eagles 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (The Super Eagles, are currently ranked 9th in, Africa) -> The Super Eagles (4804ms) What is Africa's largest country? Dr. Samuel 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Dr. Samuel, worked with, South Africa) -> Dr. Samuel (4774ms) What is Africa's largest country? a peace broker 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (a peace broker, say sources in, South Africa) -> a peace broker (4858ms) What is Africa's largest country? Senegal and Cameroon 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Senegal and Cameroon, will represent, Africa) -> Senegal and Cameroon (4718ms) What is Africa's largest country? the different Ecosystems 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (the different Ecosystems, represented across, Africa) -> the different Ecosystems (4882ms) What is Africa's largest country? FFV 100 % 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (FFV 100 %, sustainably sourced from, Africa) -> FFV 100 % (4866ms) What is Africa's largest country? Libya 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (Libya, is ranked fourth in, Africa) -> Libya (4849ms) What is Africa's largest country? Eric 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (Eric, sailed for, South Africa) -> Eric (4882ms) What is Africa's largest country? gold 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (gold, sourced from, Africa) -> gold (4858ms) What is Africa's largest country? the lion 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (the lion, represents, Africa) -> the lion (4375ms) What is Africa's largest country? a land-locked country 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (a land-locked country, surrounded by, South Africa) -> a land-locked country (3562ms) What is Africa's largest country? England 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (England, are the current top-ranked team ahead of, South Africa) -> England (4858ms) What is Africa's largest country? a team 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (a team, representing, South Africa) -> a team (4375ms) What is Africa's largest country? The countries 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (The countries, likely represent, Africa) -> The countries (4858ms) What is Africa's largest country? energy imports 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (energy imports, sourced from, West Asia and Africa) -> energy imports (3459ms) What is Africa's largest country? Johannesburg 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (Johannesburg, is the source of, South Africa) -> Johannesburg (4875ms) What is Africa's largest country? The lion 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (The lion, represents, Africa) -> The lion (4718ms) What is Africa's largest country? Burkina Faso 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (Burkina Faso, are currently the fourth-ranked team in, Africa) -> Burkina Faso (4823ms) What is Africa's largest country? Derek 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (Derek, sailed for, Africa) -> Derek (4857ms) What is Africa's largest country? an independent nation 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (an independent nation, surrounded by, South Africa) -> an independent nation (4784ms) What is Africa's largest country? The course 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (The course, is rated, one of the top 5 in South Africa) -> The course (4643ms) What is Africa's largest country? Ms. Sabiiti 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Ms. Sabiiti, has worked with, the All Africa Conference) -> Ms. Sabiiti (4889ms) What is Africa's largest country? A Progressio expert 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (A Progressio expert, works with, Environment Africa) -> A Progressio expert (4794ms) What is Africa's largest country? CineCentre 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (CineCentre, is rated amongst, South Africa) -> CineCentre (3333ms) What is Africa's largest country? Edinburgh Slessor 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (Edinburgh Slessor, set sail for, Africa) -> Edinburgh Slessor (4889ms) What is Africa's largest country? very little advice or expertise 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (very little advice or expertise, to be sourced in, South Africa) -> very little advice or expertise (4823ms) What is Africa's largest country? The Pacific 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (The Pacific, has been ranked alongside, sub-Saharan Africa) -> The Pacific (4902ms) What is Africa's largest country? Purpose 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Purpose, works with in, Africa) -> Purpose (4784ms) What is Africa's largest country? SCI-EA?s travel 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (SCI-EA?s travel, worked with, Africa Heart) -> SCI-EA?s travel (4774ms) What is Africa's largest country? Prepaid Calling Cards 1.666666666653 What is Africa's largest country? -> $x: ($x, use to be call, africa) -> (Prepaid Calling Cards, can be used to call, SOUTH AFRICA) -> Prepaid Calling Cards (3517ms) What is Africa's largest country? Israel 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Israel, worked with, South Africa) -> Israel (4832ms) What is Africa's largest country? Trade and Industry 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (Trade and Industry, has rated, South Africa) -> Trade and Industry (4858ms) What is Africa's largest country? five two-legged play-offs 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (five two-legged play-offs, represents, Africa) -> five two-legged play-offs (4718ms) What is Africa's largest country? a small mountainous country 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (a small mountainous country, surrounded by, South Africa) -> a small mountainous country (4902ms) What is Africa's largest country? impunity 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (impunity, surrounding, rape in South Africa) -> impunity (4751ms) What is Africa's largest country? Rice 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (Rice, is the most rapidly growing food source in, Africa) -> Rice (4774ms) What is Africa's largest country? Tunisia 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Tunisia, will represent, Africa) -> Tunisia (4858ms) What is Africa's largest country? MSU faculty 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (MSU faculty, will work with, OER Africa) -> MSU faculty (4762ms) What is Africa's largest country? gloomy Chicago 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (gloomy Chicago, has a higher rate than, sunny South Africa) -> gloomy Chicago (4375ms) What is Africa's largest country? The UN/IMF 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (The UN/IMF, had surrounded, South Africa) -> The UN/IMF (4762ms) What is Africa's largest country? the finest quality diamonds 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (the finest quality diamonds, were sourced from, South Africa) -> the finest quality diamonds (4813ms) What is Africa's largest country? 23 St John Ambulance Brigade members 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (23 St John Ambulance Brigade members, sailed for, South Africa) -> 23 St John Ambulance Brigade members (4741ms) What is Africa's largest country? a landlocked country 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (a landlocked country, surrounded to the south by, South Africa) -> a landlocked country (4882ms) What is Africa's largest country? HMS Hermes 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (HMS Hermes, sailed for, West Africa) -> HMS Hermes (4730ms) What is Africa's largest country? Howard University 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Howard University, has been working with, South Africa) -> Howard University (3333ms) What is Africa's largest country? Peter 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Peter, was working with, OneWorld Africa) -> Peter (3901ms) What is Africa's largest country? Lesotho 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (Lesotho, is surrounded by, South Africa) -> Lesotho (4902ms) What is Africa's largest country? 1997-2001 Mr. Cleave 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (1997-2001 Mr. Cleave, worked with, Bata South Africa) -> 1997-2001 Mr. Cleave (4762ms) What is Africa's largest country? India?s crude oil imports 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (India?s crude oil imports, are sourced from, Africa) -> India?s crude oil imports (3333ms) What is Africa's largest country? CRB 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (CRB, is now working with, South Africa) -> CRB (3901ms) What is Africa's largest country? the United States 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (the United States, had rates akin to, Africa ?s) -> the United States (4849ms) What is Africa's largest country? a freighter 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (a freighter, sailed for, Africa) -> a freighter (4866ms) What is Africa's largest country? the end 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (the end, would be able to work with, the WFP West Africa) -> the end (4832ms) What is Africa's largest country? 4 other growers associations 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (4 other growers associations, are working with, PAN Africa) -> 4 other growers associations (4882ms) What is Africa's largest country? 2007 Many exotic essential oils 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (2007 Many exotic essential oils, are sourced from, Africa) -> 2007 Many exotic essential oils (4875ms) What is Africa's largest country? Miss Malulu 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Miss Malulu, represented, Africa) -> Miss Malulu (4882ms) What is Africa's largest country? Seychelles 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (Seychelles, is ranked 8th in, Africa) -> Seychelles (4762ms) What is Africa's largest country? the team 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (the team, to represent, Africa) -> the team (4751ms) What is Africa's largest country? the Second World War 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (the Second World War, was sourced from, Africa) -> the Second World War (4841ms) What is Africa's largest country? Beyond 1.666666666653 What is Africa's largest country? -> $x: ($x, use to be call, africa) -> (Beyond, used to be called, CC Africa) -> Beyond (4875ms) What is Africa's largest country? Borlaug 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Borlaug, began working with, the Sasakawa Africa Association) -> Borlaug (4533ms) What is Africa's largest country? Bombay 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (Bombay, sailed for, East Africa) -> Bombay (4762ms) What is Africa's largest country? Captain Nathaniel Gordon 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (Captain Nathaniel Gordon, set sail for, Africa) -> Captain Nathaniel Gordon (4774ms) What is Africa's largest country? The rhetoric 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (The rhetoric, surrounding, Africa) -> The rhetoric (4896ms) What is Africa's largest country? Progressio 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Progressio, works with, Environment Africa) -> Progressio (4882ms) What is Africa's largest country? Innovative Finance 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Innovative Finance, works with, Africa ?s financial institutions) -> Innovative Finance (4794ms) What is Africa's largest country? the Elswick Battery 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (the Elswick Battery, sailed for, South Africa) -> the Elswick Battery (4774ms) What is Africa's largest country? the metropolis 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (the metropolis, set sail for, North Africa) -> the metropolis (4730ms) What is Africa's largest country? Uganda?s Luke Orombi 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Uganda?s Luke Orombi, will represent, Africa) -> Uganda?s Luke Orombi (4875ms) What is Africa's largest country? a UK-based registered charity 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (a UK-based registered charity, works with, communities in Africa) -> a UK-based registered charity (3901ms) What is Africa's largest country? major events 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (major events, also represent, Africa) -> major events (4813ms) What is Africa's largest country? illegal rhino horn 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (illegal rhino horn, sourced from, Southern Africa) -> illegal rhino horn (3333ms) What is Africa's largest country? UoN 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (UoN, is ranked 2nd in, East Africa) -> UoN (3517ms) What is Africa's largest country? Bahrain 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (Bahrain, is top ranked in, North Africa) -> Bahrain (4751ms) What is Africa's largest country? Wednesday 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (Wednesday, downgraded the long-term rating of, South Africa) -> Wednesday (4784ms) What is Africa's largest country? Scipio 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (Scipio, set sail for, Africa) -> Scipio (4896ms) What is Africa's largest country? Lesotho today 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (Lesotho today, has the highest literacy rate in, Africa) -> Lesotho today (3459ms) What is Africa's largest country? a tiny mountainous kingdom 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (a tiny mountainous kingdom, surrounded by, South Africa) -> a tiny mountainous kingdom (4813ms) What is Africa's largest country? Horst K?hler 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Horst K?hler, see cultural work with, Africa) -> Horst K?hler (4823ms) What is Africa's largest country? a tiny Mountain kingdom 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (a tiny Mountain kingdom, surrounded by, South Africa) -> a tiny Mountain kingdom (4730ms) What is Africa's largest country? 8000 horses 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (8000 horses, had sailed for, Africa) -> 8000 horses (3562ms) What is Africa's largest country? the new system 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (the new system, worked with, South Africa) -> the new system (4832ms) What is Africa's largest country? the black stripe 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (the black stripe, represents, Africa) -> the black stripe (4882ms) What is Africa's largest country? the future biofuel feedstocks 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (the future biofuel feedstocks, may well be sourced from, Africa) -> the future biofuel feedstocks (4774ms) What is Africa's largest country? Minister Trevor Manuel 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Minister Trevor Manuel, is representing, Africa) -> Minister Trevor Manuel (4679ms) What is Africa's largest country? HPIC 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (HPIC, has been working with, HEAL Africa) -> HPIC (3334ms) What is Africa's largest country? 2006 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (2006, was ranked, Africa) -> 2006 (4679ms) What is Africa's largest country? a new Roman army 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (a new Roman army, sailed for, Africa) -> a new Roman army (4784ms) What is Africa's largest country? Josephine Baker 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Josephine Baker, represents, Africa) -> Josephine Baker (4741ms) What is Africa's largest country? Cliff Maunze 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Cliff Maunze, works with, Environment Africa) -> Cliff Maunze (4679ms) What is Africa's largest country? a project 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (a project, are sourced from, South Africa) -> a project (3487ms) What is Africa's largest country? mountainous country 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (mountainous country, surrounded by, South Africa) -> mountainous country (4823ms) What is Africa's largest country? the typical image 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (the typical image, represented of, Africa) -> the typical image (4784ms) What is Africa's largest country? Prime Minister Meles 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Prime Minister Meles, is representing, Africa) -> Prime Minister Meles (3517ms) What is Africa's largest country? forty thousand men 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (forty thousand men, sailed for, Africa) -> forty thousand men (4858ms) What is Africa's largest country? Business 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (Business, rated top in, Africa) -> Business (4784ms) What is Africa's largest country? Egypt and Kenya 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Egypt and Kenya, represented, Africa) -> Egypt and Kenya (4849ms) What is Africa's largest country? Vegetables 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (Vegetables, sourced from, Africa travel) -> Vegetables (4902ms) What is Africa's largest country? Pemba/Ibo Ibo Island 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (Pemba/Ibo Ibo Island, has special rates for, South Africa) -> Pemba/Ibo Ibo Island (4850ms) What is Africa's largest country? The three other girls 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (The three other girls, represented, Africa) -> The three other girls (4902ms) What is Africa's largest country? a small country 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (a small country, entirely surrounded by, South Africa) -> a small country (4875ms) What is Africa's largest country? Arabs 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (Arabs, found new sources in, east Africa) -> Arabs (4866ms) What is Africa's largest country? The successful candidate 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (The successful candidate, will work with, the WCS Africa) -> The successful candidate (4841ms) What is Africa's largest country? Smuts 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Smuts, represented, South Africa) -> Smuts (3517ms) What is Africa's largest country? News 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (News, sourced from, South Africa) -> News (4896ms) What is Africa's largest country? IBM 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (IBM, is also working with, Africa) -> IBM (4902ms) What is Africa's largest country? The reserve 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (The reserve, is rated as, Africa) -> The reserve (4730ms) What is Africa's largest country? ridges 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (ridges, surrounding, Africa and Antarctica) -> ridges (4718ms) What is Africa's largest country? the easiest and fastest place 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (the easiest and fastest place, to source in, South Africa) -> the easiest and fastest place (4814ms) What is Africa's largest country? Wittstock 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Wittstock, represented, South Africa) -> Wittstock (4823ms) What is Africa's largest country? The five interlocking rings 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (The five interlocking rings, represent, Africa) -> The five interlocking rings (4841ms) What is Africa's largest country? the oceans 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (the oceans, surrounding, Africa) -> the oceans (4804ms) What is Africa's largest country? Members 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Members, represent, Africa) -> Members (4889ms) What is Africa's largest country? Ashlea Surles 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Ashlea Surles, worked with, Operation Crossroads Africa) -> Ashlea Surles (3901ms) What is Africa's largest country? Mercy Ships Southern Africa 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Mercy Ships Southern Africa, is working with, South Africa) -> Mercy Ships Southern Africa (4889ms) What is Africa's largest country? 1963 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (1963, is rated as, Africa) -> 1963 (4804ms) What is Africa's largest country? Namibia 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (Namibia, was again rated the best in, Africa) -> Namibia (4882ms) What is Africa's largest country? 1400 officers and sailors 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (1400 officers and sailors, sailed for, East Africa) -> 1400 officers and sailors (4762ms) What is Africa's largest country? Alex 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Alex, represented, South Africa) -> Alex (4730ms) What is Africa's largest country? Sub-Saharan 1.666666666653 What is Africa's largest country? -> $x: ($x, use to be call, africa) -> (Sub-Saharan, used to be called, black Africa) -> Sub-Saharan (4902ms) What is Africa's largest country? the teams 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (the teams, representing, Africa) -> the teams (4903ms) What is Africa's largest country? an enclave 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (an enclave, entirely surrounded by, South Africa) -> an enclave (4643ms) What is Africa's largest country? a mountainous kingdom 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (a mountainous kingdom, surrounded by, South Africa) -> a mountainous kingdom (4882ms) What is Africa's largest country? the shirts 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (the shirts, are sourced locally from, Africa) -> the shirts (4889ms) What is Africa's largest country? Ghana 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (Ghana, has been ranked first in, Africa) -> Ghana (4902ms) What is Africa's largest country? The works 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (The works, have been sourced from, South Africa) -> The works (4375ms) What is Africa's largest country? a cut 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (a cut, set sail for, Africa) -> a cut (4866ms) What is Africa's largest country? Sudan 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Sudan, to represent, Africa) -> Sudan (4832ms) What is Africa's largest country? Airbus 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Airbus, has been working with, South Africa) -> Airbus (4463ms) What is Africa's largest country? The colour 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (The colour, represents, the Africa) -> The colour (4850ms) What is Africa's largest country? Lyn 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Lyn, are working with, the Tunbridge Wells charity Build Africa) -> Lyn (4896ms) What is Africa's largest country? bidorbuy.co.za 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (bidorbuy.co.za, is currently ranked among, South Africa) -> bidorbuy.co.za (4784ms) What is Africa's largest country? CareerJunction 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (CareerJunction, is ranked, South Africa) -> CareerJunction (4804ms) What is Africa's largest country? IUCN 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (IUCN, has been working with, partners PhytoTrade Africa) -> IUCN (4533ms) What is Africa's largest country? the wooden frames 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (the wooden frames, are sourced in, Africa) -> the wooden frames (4902ms) What is Africa's largest country? Meles 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Meles, represents, Africa) -> Meles (4679ms) What is Africa's largest country? The United States 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (The United States, is also committed to working with, Africa) -> The United States (4813ms) What is Africa's largest country? Churchward 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (Churchward, then sailed for, South Africa) -> Churchward (4642ms) What is Africa's largest country? Denis Jones 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (Denis Jones, was sailing for, South Africa) -> Denis Jones (4718ms) What is Africa's largest country? extensive background 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (extensive background, now works with, TransAfrica Forum) -> extensive background (4889ms) What is Africa's largest country? the small landlocked country 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (the small landlocked country, surrounded by, South Africa) -> the small landlocked country (4718ms) What is Africa's largest country? soaps 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (soaps, are sourced from, Africa) -> soaps (4858ms) What is Africa's largest country? Afrodolla 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Afrodolla, represents, Africa) -> Afrodolla (4896ms) What is Africa's largest country? the new undersea cables 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (the new undersea cables, surrounding, Africa) -> the new undersea cables (4866ms) What is Africa's largest country? an Lieutenant 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (an Lieutenant, sailed for, South Africa) -> an Lieutenant (4784ms) What is Africa's largest country? school 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (school, hope to work with, World Vision Africa one day) -> school (4858ms) What is Africa's largest country? Burton 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (Burton, was the ranking Republican on, the Africa subcommittee) -> Burton (4679ms) What is Africa's largest country? David Livingstone 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (David Livingstone, set sail for, southern Africa) -> David Livingstone (4896ms) What is Africa's largest country? China 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (China, will work together with, Africa) -> China (4762ms) What is Africa's largest country? Rwanda 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (Rwanda, has been ranked fourth in, Africa) -> Rwanda (4813ms) What is Africa's largest country? Meles Zenawi 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Meles Zenawi, representing, Africa) -> Meles Zenawi (4740ms) What is Africa's largest country? the youngest king 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (the youngest king, represents, Africa) -> the youngest king (4533ms) What is Africa's largest country? Swaziland 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (Swaziland, is surrounded by, South Africa) -> Swaziland (4841ms) What is Africa's largest country? Malawi 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Malawi, is working with, Africa Bags) -> Malawi (4794ms) What is Africa's largest country? Libyans 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (Libyans, have the highest literacy rate in, Africa) -> Libyans (4774ms) What is Africa's largest country? the former competitive swimmer 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (the former competitive swimmer, represented, South Africa) -> the former competitive swimmer (3517ms) What is Africa's largest country? Africa as well as 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Africa as well as, represent, Africa) -> Africa as well as (4784ms) What is Africa's largest country? a small landlocked country 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (a small landlocked country, surrounded by, South Africa) -> a small landlocked country (4823ms) What is Africa's largest country? Dan Crawford 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (Dan Crawford, sailed for, Africa) -> Dan Crawford (3901ms) What is Africa's largest country? The NMMU Business School 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (The NMMU Business School, was rated second in, South Africa) -> The NMMU Business School (4841ms) What is Africa's largest country? Algeria 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (Algeria, is ranked third worst in, Africa) -> Algeria (4896ms) What is Africa's largest country? Guinea 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (Guinea, was ranked, Africa) -> Guinea (4718ms) What is Africa's largest country? part 1.666666666653 What is Africa's largest country? -> $x: ($x, use to be call, africa) -> (part, used to be called, Africa) -> part (4866ms) What is Africa's largest country? America 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (America, has good reason to work with, Africa) -> America (3488ms) What is Africa's largest country? Australia 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Australia, looks forward to working closely with, South Africa) -> Australia (4832ms) What is Africa's largest country? GM-free maize 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (GM-free maize, could even be sourced in, South Africa) -> GM-free maize (4804ms) What is Africa's largest country? The best drums 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (The best drums, sourced from, West Africa) -> The best drums (4730ms) What is Africa's largest country? the Moffats 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (the Moffats, sailed again for, South Africa) -> the Moffats (4762ms) What is Africa's largest country? materials 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (materials, are sourced from, Africa) -> materials (4832ms) What is Africa's largest country? Esperance 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Esperance, will represent, Africa) -> Esperance (4841ms) What is Africa's largest country? the same way South Africa 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (the same way South Africa, represented, Africa) -> the same way South Africa (4642ms) What is Africa's largest country? AWAKE 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (AWAKE, worked with, WSPA Africa) -> AWAKE (4730ms) What is Africa's largest country? the Kingdom 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (the Kingdom, is completely surrounded by, South Africa) -> the Kingdom (4741ms) What is Africa's largest country? Hanneke Cost Budde 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Hanneke Cost Budde, has worked with, the Africa Inland Church) -> Hanneke Cost Budde (4784ms) What is Africa's largest country? IGD 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (IGD, is working with, TransFarm Africa) -> IGD (4679ms) What is Africa's largest country? local schools 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (local schools, work with, Media Monitoring Africa) -> local schools (4896ms) What is Africa's largest country? the Vandals 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (the Vandals, to sail for, North Africa) -> the Vandals (4875ms) What is Africa's largest country? 533 Balisarius 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (533 Balisarius, sailed for, Africa b) -> 533 Balisarius (4841ms) What is Africa's largest country? Muhammad Yunus 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Muhammad Yunus, pledged to work together with, Africa) -> Muhammad Yunus (4774ms) What is Africa's largest country? The Bank 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (The Bank, is ranked 14th in, Africa) -> The Bank (4882ms) What is Africa's largest country? also many different religions 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (also many different religions, represented in, Africa) -> also many different religions (4784ms) What is Africa's largest country? The East Africa ?s largest economy 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (The East Africa ?s largest economy, is now ranked among, Africa) -> The East Africa ?s largest economy (4794ms) What is Africa's largest country? Simons 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Simons, represented, South Africa) -> Simons (3334ms) What is Africa's largest country? Agriculture 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Agriculture, represents, Africa) -> Agriculture (4832ms) What is Africa's largest country? Fifa and Match Hospitality 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Fifa and Match Hospitality, were working with, South Africa) -> Fifa and Match Hospitality (4642ms) What is Africa's largest country? Livingstone 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (Livingstone, sailed for, Africa) -> Livingstone (4642ms) What is Africa's largest country? Ivory Coast 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (Ivory Coast, is the top-ranked team in, Africa) -> Ivory Coast (4866ms) What is Africa's largest country? 100 % pure cotton 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (100 % pure cotton, is sourced from, South Africa) -> 100 % pure cotton (4794ms) What is Africa's largest country? NLNG 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (NLNG, is representing, Africa) -> NLNG (4889ms) What is Africa's largest country? the Diaspora 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (the Diaspora, influence the rate of, Africa) -> the Diaspora (4889ms) What is Africa's largest country? third place Nigeria 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (third place Nigeria, will represent, Africa) -> third place Nigeria (4462ms) What is Africa's largest country? Computer Science 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (Computer Science, rated top in, Middle-East and Africa) -> Computer Science (4730ms) What is Africa's largest country? Africa Pads 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Africa Pads, is working with, Africa Bags) -> Africa Pads (4462ms) What is Africa's largest country? the UK, 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (the UK,, sourced from, South Africa) -> the UK, (4896ms) What is Africa's largest country? a tree 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (a tree, represents, Africa) -> a tree (3517ms) What is Africa's largest country? Turner 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Turner, represented, South Africa) -> Turner (4850ms) What is Africa's largest country? the nuclear nation 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (the nuclear nation, worked with, South Africa) -> the nuclear nation (4889ms) What is Africa's largest country? GL 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (GL, has worked with in, South Africa) -> GL (4774ms) What is Africa's largest country? Kofi Annan 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Kofi Annan, represents, Africa) -> Kofi Annan (4794ms) What is Africa's largest country? seven thousand ventures 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (seven thousand ventures, sailed for, Africa) -> seven thousand ventures (4875ms) What is Africa's largest country? Shubrick 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (Shubrick, sailed for, North Africa) -> Shubrick (4866ms) What is Africa's largest country? Kenya 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Kenya, represents, Africa) -> Kenya (4794ms) What is Africa's largest country? the CAF region 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (the CAF region, will represent, Africa) -> the CAF region (4850ms) What is Africa's largest country? Titilayo Akinsanmi 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Titilayo Akinsanmi, currently works with, SchoolNet Africa) -> Titilayo Akinsanmi (3459ms) What is Africa's largest country? a separate country 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (a separate country, surrounded by, South Africa) -> a separate country (4823ms) What is Africa's largest country? trade 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (trade, is the source of, Africa) -> trade (4841ms) What is Africa's largest country? ?This pavilion 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (?This pavilion, represents, Africa) -> ?This pavilion (4762ms) What is Africa's largest country? medicine 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (medicine, sailed for, southern Africa) -> medicine (4841ms) What is Africa's largest country? the G8 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (the G8, worked with, Africa) -> the G8 (4882ms) What is Africa's largest country? The farmers 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (The farmers, worked with, FARM-Africa) -> The farmers (4375ms) What is Africa's largest country? Sierra Leone 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Sierra Leone, are representing, Africa) -> Sierra Leone (4875ms) What is Africa's largest country? GCB 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (GCB, was once rated 10th in, Africa) -> GCB (4794ms) What is Africa's largest country? a country 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (a country, surrounded by, South Africa and Mozambique) -> a country (4866ms) What is Africa's largest country? Togo and Angola 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Togo and Angola, represented, Africa) -> Togo and Angola (4882ms) What is Africa's largest country? a willing tool 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (a willing tool, worked with, apartheid South Africa) -> a willing tool (4832ms) What is Africa's largest country? SATH 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (SATH, will work with, PhytoTrade Africa) -> SATH (4875ms) What is Africa's largest country? Ethiopian Prime Minister Meles Zenawi 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Ethiopian Prime Minister Meles Zenawi, will represent, Africa) -> Ethiopian Prime Minister Meles Zenawi (4718ms) What is Africa's largest country? Mr. Pharasi 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Mr. Pharasi, previously worked with, Viral Genetics South Africa) -> Mr. Pharasi (4866ms) What is Africa's largest country? the deer family 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (the deer family, is represented in, Africa) -> the deer family (4751ms) What is Africa's largest country? February JWW 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (February JWW, worked with, Moriah Africa) -> February JWW (4740ms) What is Africa's largest country? The Game Reserve 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (The Game Reserve, is rated as, South Africa) -> The Game Reserve (4718ms) What is Africa's largest country? Ibrahima 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (Ibrahima, sailed for, Africa) -> Ibrahima (4814ms) What is Africa's largest country? the fairly traded items 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (the fairly traded items, are sourced from, Africa) -> the fairly traded items (4832ms) What is Africa's largest country? The Kenyan womens national team 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (The Kenyan womens national team, will represent, Africa) -> The Kenyan womens national team (3901ms) What is Africa's largest country? the five countries 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (the five countries, representing, Africa) -> the five countries (4849ms) What is Africa's largest country? Miss Togo 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Miss Togo, has also worked with, the Miss South Africa team) -> Miss Togo (3458ms) What is Africa's largest country? chair 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (chair, represents, Africa) -> chair (4463ms) What is Africa's largest country? Wood 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (Wood, is the main energy source in, rural Africa) -> Wood (4823ms) What is Africa's largest country? guests 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (guests, surrounded by, the rich textures of Africa) -> guests (4533ms) What is Africa's largest country? Eritrea 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (Eritrea, has been ranked as, Africa) -> Eritrea (4902ms) What is Africa's largest country? the Nile 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (the Nile, are sourced from, central Africa) -> the Nile (4841ms) What is Africa's largest country? the UK 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (the UK, would continue to work with, South Africa) -> the UK (4902ms) What is Africa's largest country? the size 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (the size, is surrounded by, South Africa) -> the size (4858ms) What is Africa's largest country? Moremi 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (Moremi, is rated as, Africa) -> Moremi (3488ms) What is Africa's largest country? Cameroon 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (Cameroon, already had the highest tax rates in, Central Africa) -> Cameroon (4741ms) What is Africa's largest country? haste 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (haste, then set sail for, Africa) -> haste (4762ms) What is Africa's largest country? the Battalion 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (the Battalion, sailed for, East Africa) -> the Battalion (4896ms) What is Africa's largest country? the armies 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (the armies, were to sail for, africa) -> the armies (4823ms) What is Africa's largest country? a man 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (a man, worked closely with, Apartheid South Africa) -> a man (4751ms) What is Africa's largest country? ships 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (ships, set sail for, Africa) -> ships (4774ms) What is Africa's largest country? Zimbabwe 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (Zimbabwe, has the highest literacy rate in, Africa) -> Zimbabwe (3487ms) What is Africa's largest country? achievers and trend setters 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (achievers and trend setters, positively represent, Africa) -> achievers and trend setters (4751ms) What is Africa's largest country? The 2nd battalion 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (The 2nd battalion, sailed for, South Africa) -> The 2nd battalion (4762ms) What is Africa's largest country? David 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (David, representing, South Africa) -> David (4794ms) What is Africa's largest country? consulates 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (consulates, representing, South Africa) -> consulates (4741ms) What is Africa's largest country? NOC 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (NOC, works closely with, GOOS-Africa) -> NOC (4741ms) What is Africa's largest country? the Rock 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (the Rock, sets sail for, Africa) -> the Rock (4794ms) What is Africa's largest country? years 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (years, afterwards sailed for, Africa) -> years (3901ms) What is Africa's largest country? Five teams 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Five teams, will represent, Africa) -> Five teams (4875ms) What is Africa's largest country? Gandhi 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (Gandhi, had sailed for, South Africa) -> Gandhi (4902ms) What is Africa's largest country? Diamonds 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (Diamonds, are another important source of, South Africa) -> Diamonds (4741ms) What is Africa's largest country? Skills Development 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (Skills Development, is ranking high on, South Africa) -> Skills Development (4804ms) What is Africa's largest country? the fleets 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (the fleets, sailed for, Africa and Arabia) -> the fleets (4882ms) What is Africa's largest country? a naturally derived ingredient 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (a naturally derived ingredient, sourced from, Africa) -> a naturally derived ingredient (4823ms) What is Africa's largest country? the world?s 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (the world?s, can be sourced from, Africa) -> the world?s (3562ms) What is Africa's largest country? catalytic converters 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (catalytic converters, sourced from, South Africa) -> catalytic converters (4762ms) What is Africa's largest country? The Indian girls 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (The Indian girls, are ranked just behind, South Africa) -> The Indian girls (4741ms) What is Africa's largest country? Hayward 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Hayward, represented, South Africa) -> Hayward (4895ms) What is Africa's largest country? the Heritage logo 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (the Heritage logo, represents, Africa) -> the Heritage logo (4875ms) What is Africa's largest country? gold ? 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (gold ?, sourced from, South Africa) -> gold ? (4850ms) What is Africa's largest country? HRF 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (HRF, has been working with, the Africa Bureau) -> HRF (4730ms) What is Africa's largest country? the waters 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (the waters, surrounding, Africa) -> the waters (4889ms) What is Africa's largest country? Yellowwood 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Yellowwood, works closely with, Open Africa) -> Yellowwood (4751ms) What is Africa's largest country? the 82nd Airborne Division 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (the 82nd Airborne Division, set sail for, North Africa) -> the 82nd Airborne Division (4832ms) What is Africa's largest country? South Africa 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (South Africa, was ranked 10th in, Africa) -> South Africa (4875ms) What is Africa's largest country? corn 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (corn, is still a primary food source in, Africa) -> corn (4814ms) What is Africa's largest country? Christian media 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (Christian media, sourced in, South Africa REAL LIFE EXPERIENCES) -> Christian media (4751ms) What is Africa's largest country? the issues 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (the issues, surrounding, Africa) -> the issues (4679ms) What is Africa's largest country? the Indian team 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (the Indian team, set sail for, East Africa) -> the Indian team (4794ms) What is Africa's largest country? a Cow 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (a Cow, works with in, Africa) -> a Cow (4804ms) What is Africa's largest country? The Second Contingent 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (The Second Contingent, sailed for, South Africa) -> The Second Contingent (4896ms) What is Africa's largest country? the pieces 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (the pieces, are sourced from, Africa) -> the pieces (4718ms) What is Africa's largest country? Tanzania 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (Tanzania, was ranked 11th in, Sub-Saharan Africa) -> Tanzania (4882ms) What is Africa's largest country? a few examples 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (a few examples, sourced from, Africa) -> a few examples (4804ms) What is Africa's largest country? Today Ghana 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Today Ghana, represents, Africa) -> Today Ghana (4533ms) What is Africa's largest country? the African Children?s Choir 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (the African Children?s Choir, has been working with, Africa) -> the African Children?s Choir (4804ms) What is Africa's largest country? the islands 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (the islands, surrounding, Africa) -> the islands (4866ms) What is Africa's largest country? Lotersztain 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Lotersztain, works with, the InAfrica Foundation) -> Lotersztain (4875ms) What is Africa's largest country? The tender green leaves 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (The tender green leaves, are an important food source in, Africa) -> The tender green leaves (4875ms) What is Africa's largest country? Winning entries 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Winning entries, will represent, Africa) -> Winning entries (4375ms) What is Africa's largest country? the Society 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (the Society, sailed for, Africa) -> the Society (4751ms) What is Africa's largest country? 10,000 Australian soldiers 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (10,000 Australian soldiers, sailed for, South Africa) -> 10,000 Australian soldiers (4889ms) What is Africa's largest country? Middle Jurassic strata 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Middle Jurassic strata, represented in, Africa) -> Middle Jurassic strata (3562ms) What is Africa's largest country? an Anglican missionary 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (an Anglican missionary, sailed for, Africa) -> an Anglican missionary (4866ms) What is Africa's largest country? Roberts 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (Roberts, then set sail for, West Africa) -> Roberts (4832ms) What is Africa's largest country? beautiful butterflies 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (beautiful butterflies, sourced from, africa and indonesia) -> beautiful butterflies (4679ms) What is Africa's largest country? Major perennial rivers 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (Major perennial rivers, have their sources in, South Africa) -> Major perennial rivers (4866ms) What is Africa's largest country? The black colours of the flag 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (The black colours of the flag, represent, Africa) -> The black colours of the flag (4751ms) What is Africa's largest country? Hershey?s cocoa 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (Hershey?s cocoa, is sourced from, West Africa) -> Hershey?s cocoa (4804ms) What is Africa's largest country? African 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (African, was the top-ranked junior in, Morocco & Africa) -> African (4718ms) What is Africa's largest country? themes 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (themes, surrounding, the World Cup and South Africa) -> themes (4896ms) What is Africa's largest country? The Beast 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (The Beast, was rated highly in, South Africa) -> The Beast (4804ms) What is Africa's largest country? a mammalogist I?d 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (a mammalogist I?d, worked with in, Africa) -> a mammalogist I?d (4730ms) What is Africa's largest country? AIM 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (AIM, offers opportunities to work with, Africa) -> AIM (4902ms) What is Africa's largest country? the ministry 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (the ministry, will work closely with, South Africa) -> the ministry (4866ms) What is Africa's largest country? a figure 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (a figure, representing, Africa) -> a figure (4679ms) What is Africa's largest country? India 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (India, is still ranked above, South Africa) -> India (4463ms) What is Africa's largest country? the kinara 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (the kinara, represents, Africa) -> the kinara (4740ms) What is Africa's largest country? films and events 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (films and events, represent, Africa) -> films and events (3333ms) What is Africa's largest country? a landlocked nation 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (a landlocked nation, surrounded by, South Africa) -> a landlocked nation (4774ms) What is Africa's largest country? Jakobsen 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Jakobsen, worked with, Africa-related trade) -> Jakobsen (4889ms) What is Africa's largest country? Eight South African?s 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Eight South African?s, will represent, Africa) -> Eight South African?s (4814ms) What is Africa's largest country? Johnson Cook 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Johnson Cook, worked with, Operation Crossroads Africa) -> Johnson Cook (4814ms) What is Africa's largest country? the women WOMANKIND 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (the women WOMANKIND, works with in, Africa) -> the women WOMANKIND (4832ms) What is Africa's largest country? Egypt 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (Egypt, are ranked 2nd in, Africa) -> Egypt (4889ms) What is Africa's largest country? The diamonds 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (The diamonds, are sourced from, South Africa) -> The diamonds (4533ms) What is Africa's largest country? Baltimore 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (Baltimore, sailed for, Africa) -> Baltimore (4896ms) What is Africa's largest country? a UK based charity 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (a UK based charity, works with, communities across Africa) -> a UK based charity (4823ms) What is Africa's largest country? Western Australia 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Western Australia, represented in, Africa) -> Western Australia (4889ms) What is Africa's largest country? Chillies 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (Chillies, are sourced from, Africa Invest) -> Chillies (4813ms) What is Africa's largest country? an independent country 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (an independent country, surrounded by, South Africa) -> an independent country (4741ms) What is Africa's largest country? The basin 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (The basin, is believed to be the source of, Africa ?s) -> The basin (4858ms) What is Africa's largest country? Zambia 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (Zambia, is ranked 11th in, Africa) -> Zambia (4751ms) What is Africa's largest country? the Zambezi River 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (the Zambezi River, surrounded by, Africa ?s incredible wild life) -> the Zambezi River (3333ms) What is Africa's largest country? Colin 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Colin, worked extensively with, Highway Africa) -> Colin (3488ms) What is Africa's largest country? a very small country 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (a very small country, is completely surrounded by, South Africa) -> a very small country (4794ms) What is Africa's largest country? the former US Coast Guard cutter CHASE 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (the former US Coast Guard cutter CHASE, has sailed for, Africa) -> the former US Coast Guard cutter CHASE (4841ms) What is Africa's largest country? Nnenna Nwakanma 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Nnenna Nwakanma, represented, Africa) -> Nnenna Nwakanma (4832ms) What is Africa's largest country? Natural resources 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Natural resources, represent, Africa) -> Natural resources (4730ms) What is Africa's largest country? books 1.666666666653 What is Africa's largest country? -> $x: ($x, source, africa) -> (books, will be sourced by, Biblionef South Africa) -> books (4533ms) What is Africa's largest country? the flag 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (the flag, represent, Africa) -> the flag (4813ms) What is Africa's largest country? The rings 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (The rings, represent, Africa) -> The rings (4730ms) What is Africa's largest country? Jack Morton 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (Jack Morton, is working with, SOS Africa) -> Jack Morton (4882ms) What is Africa's largest country? rich mine owner 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (rich mine owner, had set sail for, Africa) -> rich mine owner (4679ms) What is Africa's largest country? The country 1.666666666653 What is Africa's largest country? -> $x: ($x, rank be, africa) -> (The country, was also ranked first in, Africa) -> The country (4774ms) What is Africa's largest country? the 1st Batalion 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (the 1st Batalion, sailed for, South Africa) -> the 1st Batalion (4730ms) What is Africa's largest country? Nigeria 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Nigeria, will represent, Africa) -> Nigeria (4751ms) What is Africa's largest country? New 1.666666666653 What is Africa's largest country? -> $x: ($x, rate, africa) -> (New, reduced rates for, South Africa) -> New (4784ms) What is Africa's largest country? The NYSA 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (The NYSA, works very closely with, Lead Africa Schools League) -> The NYSA (4841ms) What is Africa's largest country? ITC 1.666666666653 What is Africa's largest country? -> $x: ($x, work with, africa) -> (ITC, works with, Africa) -> ITC (4850ms) What is Africa's largest country? the country 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (the country, is entirely surrounded by, South Africa) -> the country (4832ms) What is Africa's largest country? 2010 Uncertainty 1.666666666653 What is Africa's largest country? -> $x: ($x, surround, africa) -> (2010 Uncertainty, surrounds the future of, Africa) -> 2010 Uncertainty (4762ms) What is Africa's largest country? Balthazar 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Balthazar, represented, Africa) -> Balthazar (4784ms) What is Africa's largest country? Smith 1.666666666653 What is Africa's largest country? -> $x: ($x, sail for, africa) -> (Smith, sailed for, South Africa) -> Smith (4889ms) What is Africa's largest country? Committee members 1.666666666653 What is Africa's largest country? -> $x: ($x, represent, africa) -> (Committee members, represent, Africa) -> Committee members (4463ms) What is Africa's largest country? wildlife 1.1111111110979999 What is Africa's largest country? -> $x: ($x, be tallest mountain in, africa) -> (wildlife, is the tallest mountain in, Africa) -> wildlife (4909ms) What is Africa's largest country? Mount Kenya 1.1111111110979999 What is Africa's largest country? -> $x: ($x, be tallest mountain in, africa) -> (Mount Kenya, is the second tallest mountain in, Africa) -> Mount Kenya (4915ms) What is Africa's largest country? Mt Kilimanjaro 1.1111111110979999 What is Africa's largest country? -> $x: ($x, be tallest mountain in, africa) -> (Mt Kilimanjaro, is the tallest mountain in, Africa) -> Mt Kilimanjaro (4915ms) What is Africa's largest country? 1920 1.1111111110979999 What is Africa's largest country? -> $x: ($x, have largest population in, africa) -> (1920, had the largest urban population in, Africa) -> 1920 (4909ms) What is Africa's largest country? Multiple Choice 1.1111111110979999 What is Africa's largest country? -> $x: ($x, have largest population in, africa) -> (Multiple Choice, has the largest population in, Africa) -> Multiple Choice (4915ms) What is Africa's largest country? KJ 1.1111111110979999 What is Africa's largest country? -> $x: ($x, be tallest mountain in, africa) -> (KJ, is the tallest mountain in, Africa) -> KJ (4915ms) What is Africa's largest country? Rand 1.1111111110979999 What is Africa's largest country? -> $x: ($x, be unit of, africa) -> (Rand, is the monetary unit of, South Africa) -> Rand (4915ms) What is Africa's largest country? Kili 1.1111111110979999 What is Africa's largest country? -> $x: ($x, be tallest mountain in, africa) -> (Kili, is the tallest mountain in, Africa) -> Kili (4909ms) What is Africa's largest country? Bloemfontein 1.1111111110979999 What is Africa's largest country? -> $x: ($x, be sixth largest city in, africa) -> (Bloemfontein, is the sixth largest city in, South Africa) -> Bloemfontein (4915ms) What is Africa's largest country? The Rand 1.1111111110979999 What is Africa's largest country? -> $x: ($x, be unit of, africa) -> (The Rand, is the monetary unit of, South Africa) -> The Rand (4909ms) What is Africa's largest country? Country Context DRC 1.1111111110979999 What is Africa's largest country? -> $x: ($x, have largest population in, africa) -> (Country Context DRC, has the third largest population in, Africa) -> Country Context DRC (4915ms) What is Africa's largest country? Kilimanjaro 1.1111111110979999 What is Africa's largest country? -> $x: ($x, be tallest mountain in, africa) -> (Kilimanjaro, is the tallest mountain in, Africa) -> Kilimanjaro (4909ms) What is Africa's largest country? the equator 1.1111111110979999 What is Africa's largest country? -> $x: ($x, be tallest mountain in, africa) -> (the equator, is the tallest mountain in, Africa) -> the equator (4915ms) What is Africa's largest country? the Rand 1.1111111110979999 What is Africa's largest country? -> $x: ($x, be unit of, africa) -> (the Rand, is the official monetary unit of, South Africa) -> the Rand (4909ms) What is Africa's largest country? The mighty Okavango 1.1111111110979999 What is Africa's largest country? -> $x: ($x, be third largest river in, africa) -> (The mighty Okavango, is the third largest river in, Africa) -> The mighty Okavango (4915ms) What is Africa's largest country? game 1.1111111110979999 What is Africa's largest country? -> $x: ($x, be tallest mountain in, africa) -> (game, is the tallest mountain in, Africa) -> game (4909ms) What is Africa's largest country? Mount Kilamanjaro 1.1111111110979999 What is Africa's largest country? -> $x: ($x, be tallest mountain in, africa) -> (Mount Kilamanjaro, is the tallest mountain in, Africa) -> Mount Kilamanjaro (4909ms) What is Africa's largest country? the ?rand? 1.1111111110979999 What is Africa's largest country? -> $x: ($x, be unit of, africa) -> (the ?rand?, is the official monetary unit of, South Africa) -> the ?rand? (4915ms) What is Africa's largest country? Mount Kilimanjaro 1.1111111110979999 What is Africa's largest country? -> $x: ($x, be tallest mountain in, africa) -> (Mount Kilimanjaro, is the tallest mountain in, Africa) -> Mount Kilimanjaro (4915ms) What is Africa's largest country? 1 . Algeria 0.5555555555289999 What is Africa's largest country? -> $x: ($x, be second largest country in, africa) -> (1 . Algeria, is the second largest country in, Africa) -> 1 . Algeria (4920ms) What is Africa's largest country? The Congo 0.5555555555289999 What is Africa's largest country? -> $x: ($x, be second largest country in, africa) -> (The Congo, is the second largest country in, the Africa) -> The Congo (4920ms) What is Africa's largest country? Za?re 0.5555555555289999 What is Africa's largest country? -> $x: ($x, be second largest country in, africa) -> (Za?re, is the second largest country in, Africa) -> Za?re (4915ms) What is Africa's largest country? Overview Algeria 0.5555555555289999 What is Africa's largest country? -> $x: ($x, be second largest country in, africa) -> (Overview Algeria, is the second largest country in, Africa) -> Overview Algeria (4920ms) What is Africa's largest country? Congo 0.5555555555289999 What is Africa's largest country? -> $x: ($x, be second largest country in, africa) -> (Congo, is the second largest country in, Sub-Saharan Africa) -> Congo (4920ms) What is Africa's largest country? French StampAlgeria 0.5555555555289999 What is Africa's largest country? -> $x: ($x, be second largest country in, africa) -> (French StampAlgeria, is the second largest country in, Africa) -> French StampAlgeria (4920ms) What is Africa's largest country? Ethiopia 0.5555555555289999 What is Africa's largest country? -> $x: ($x, be second largest country in, africa) -> (Ethiopia, is the second largest country in, Africa) -> Ethiopia (4920ms) What is Africa's largest country? Algeria Algeria 0.5555555555289999 What is Africa's largest country? -> $x: ($x, be second largest country in, africa) -> (Algeria Algeria, is the second largest country in, Africa) -> Algeria Algeria (4920ms) What is Africa's largest country? Dr Tlou 0.444444444445 What is Africa's largest country? -> $x: ($x, represent, eastern africa) -> (Dr Tlou, also represented, Eastern and Southern Africa) -> Dr Tlou (4920ms) What is Africa's largest country? the capital Maputo 0.333333333334 What is Africa's largest country? -> $x: ($x, represent, southern africa) -> (the capital Maputo, represents the gateway to, Southern Africa) -> the capital Maputo (4926ms) What is Africa's largest country? only one species 0.333333333334 What is Africa's largest country? -> $x: ($x, represent, southern africa) -> (only one species, represented in, southern Africa) -> only one species (4926ms) What is Africa's largest country? The body 0.333333333334 What is Africa's largest country? -> $x: ($x, represent, west africa) -> (The body, representing nations in, West Africa) -> The body (4926ms) What is Africa's largest country? SWAPO 0.333333333334 What is Africa's largest country? -> $x: ($x, represent, west africa) -> (SWAPO, represented radical elements in, South West Africa) -> SWAPO (4931ms) What is Africa's largest country? the regional body 0.333333333334 What is Africa's largest country? -> $x: ($x, represent, west africa) -> (the regional body, representing, states in West Africa) -> the regional body (4926ms) What is Africa's largest country? the regional bloc 0.333333333334 What is Africa's largest country? -> $x: ($x, represent, west africa) -> (the regional bloc, representing nations in, West Africa) -> the regional bloc (4920ms) What is Africa's largest country? The regional body 0.333333333334 What is Africa's largest country? -> $x: ($x, represent, west africa) -> (The regional body, representing 15 nations in, West Africa) -> The regional body (4926ms) What is Africa's largest country? Mungoshi 0.333333333334 What is Africa's largest country? -> $x: ($x, represent, southern africa) -> (Mungoshi, was representing, Southern Africa) -> Mungoshi (4926ms) What is Africa's largest country? the collection 0.333333333334 What is Africa's largest country? -> $x: ($x, represent, west africa) -> (the collection, represent the range of, West Africa) -> the collection (4926ms) What is Africa's largest country? the Medicines Control Council 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (the Medicines Control Council, represented, South Africa) -> the Medicines Control Council (4955ms) What is Africa's largest country? Khumalo 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Khumalo, represented, South Africa 50 times) -> Khumalo (4945ms) What is Africa's largest country? South African franchise 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (South African franchise, represent, South Africa) -> South African franchise (4961ms) What is Africa's largest country? The teams 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (The teams, to represent, South Africa) -> The teams (4948ms) What is Africa's largest country? ?The finalists 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (?The finalists, represent, the best South Africa) -> ?The finalists (4964ms) What is Africa's largest country? Twalu?s population 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Twalu?s population, represents one third of, South Africa) -> Twalu?s population (4964ms) What is Africa's largest country? Ryk 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Ryk, will represent, South Africa) -> Ryk (4948ms) What is Africa's largest country? Barry 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Barry, has represented, South Africa) -> Barry (4931ms) What is Africa's largest country? players 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (players, to represent, South Africa) -> players (4955ms) What is Africa's largest country? Hip-hop 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Hip-hop, represents, South Africa) -> Hip-hop (4968ms) What is Africa's largest country? Solomons 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Solomons, has been representing, South Africa) -> Solomons (4958ms) What is Africa's largest country? the first black African cricketer 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (the first black African cricketer, to represent, South Africa) -> the first black African cricketer (4945ms) What is Africa's largest country? Simona 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Simona, has been represented in, South Africa) -> Simona (4964ms) What is Africa's largest country? The team 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (The team, selected to represent, South Africa) -> The team (4931ms) What is Africa's largest country? ASISA 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (ASISA, represents the majority of, South Africa) -> ASISA (4958ms) What is Africa's largest country? A team of 41 athletes 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (A team of 41 athletes, to represent, South Africa) -> A team of 41 athletes (4952ms) What is Africa's largest country? Karl Stegen 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Karl Stegen, represented, South Africa) -> Karl Stegen (4936ms) What is Africa's largest country? the Western Cape 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (the Western Cape, represents the essence of, South Africa) -> the Western Cape (4970ms) What is Africa's largest country? ?This clinical trial 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (?This clinical trial, represents a milestone for, South Africa) -> ?This clinical trial (4964ms) What is Africa's largest country? Canada and Johnston 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Canada and Johnston, represented, South Africa) -> Canada and Johnston (4971ms) What is Africa's largest country? PFF 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (PFF, represents most of, South Africa) -> PFF (4952ms) What is Africa's largest country? The plant 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (The plant, represents, South Africa) -> The plant (4968ms) What is Africa's largest country? croquet 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (croquet, has represented, South Africa) -> croquet (4948ms) What is Africa's largest country? Gail Anthony 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Gail Anthony, was selected to represent, South Africa) -> Gail Anthony (4966ms) What is Africa's largest country? The transaction 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (The transaction, represents, South Africa) -> The transaction (4968ms) What is Africa's largest country? a political system 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (a political system, represented everyone in, South Africa) -> a political system (4940ms) What is Africa's largest country? Thomas Cook 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Thomas Cook, is represented in, South Africa) -> Thomas Cook (4961ms) What is Africa's largest country? fists 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (fists, has represented, South Africa) -> fists (4964ms) What is Africa's largest country? social justice 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (social justice, is perhaps represented by, South Africa) -> social justice (4964ms) What is Africa's largest country? Skoonheid 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Skoonheid, represent, South Africa) -> Skoonheid (4955ms) What is Africa's largest country? the squad 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (the squad, will represent, South Africa) -> the squad (4970ms) What is Africa's largest country? a sport 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (a sport, would represent, South Africa) -> a sport (4958ms) What is Africa's largest country? Britain 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Britain, was represented in, South Africa) -> Britain (4955ms) What is Africa's largest country? Kronk 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Kronk, represent the spirit of, South Africa) -> Kronk (4970ms) What is Africa's largest country? Bokang Montjane 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Bokang Montjane, will represent, South Africa) -> Bokang Montjane (4961ms) What is Africa's largest country? the Amy Biehl Club 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (the Amy Biehl Club, proudly represented, South Africa) -> the Amy Biehl Club (4936ms) What is Africa's largest country? a translation 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (a translation, represent, South Africa) -> a translation (4945ms) What is Africa's largest country? the single institution 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (the single institution, represents, South Africa) -> the single institution (4966ms) What is Africa's largest country? Just Music 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Just Music, also represents some of, South Africa) -> Just Music (4952ms) What is Africa's largest country? Tinker Makhane 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Tinker Makhane, represented, South Africa) -> Tinker Makhane (4945ms) What is Africa's largest country? LEARN 2 SURF 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (LEARN 2 SURF, represent, South Africa) -> LEARN 2 SURF (4971ms) What is Africa's largest country? BP Microsystems 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (BP Microsystems, is now represented in, South Africa) -> BP Microsystems (4970ms) What is Africa's largest country? Tough Love 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Tough Love, represented throughout, South Africa) -> Tough Love (4955ms) What is Africa's largest country? Julian 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Julian, represented, his native South Africa) -> Julian (4945ms) What is Africa's largest country? a National team 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (a National team, to represent, South Africa) -> a National team (4964ms) What is Africa's largest country? iVeri 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (iVeri, is represented in, South Africa) -> iVeri (4955ms) What is Africa's largest country? Schabort 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Schabort, will likely represent, South Africa) -> Schabort (4966ms) What is Africa's largest country? diverse sources 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (diverse sources, represent, South Africa) -> diverse sources (4948ms) What is Africa's largest country? the major vehicle makers 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (the major vehicle makers, are represented in, South Africa) -> the major vehicle makers (4931ms) What is Africa's largest country? David Letterman Die Antwoord 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (David Letterman Die Antwoord, will be representing, South Africa) -> David Letterman Die Antwoord (4970ms) What is Africa's largest country? Khanyisa Masebeni 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Khanyisa Masebeni, was selected to represent, South Africa) -> Khanyisa Masebeni (4964ms) What is Africa's largest country? Nexus 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Nexus, represents, South Africa) -> Nexus (4935ms) What is Africa's largest country? Vickerman 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Vickerman, represented, South Africa) -> Vickerman (4931ms) What is Africa's largest country? Matapa 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Matapa, will represent, South Africa) -> Matapa (4961ms) What is Africa's largest country? Zoe 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Zoe, has represented, South Africa) -> Zoe (4931ms) What is Africa's largest country? Today Lufthansa Group 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Today Lufthansa Group, is strongly represented in, South Africa) -> Today Lufthansa Group (4966ms) What is Africa's largest country? cricket 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (cricket, represented, South Africa) -> cricket (4945ms) What is Africa's largest country? Africa 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Africa, will be represented by, South Africa) -> Africa (4970ms) What is Africa's largest country? Geoff 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Geoff, has represented, South Africa) -> Geoff (4958ms) What is Africa's largest country? KZN 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (KZN, is now representing, South Africa) -> KZN (4966ms) What is Africa's largest country? the national squad 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (the national squad, to represent, South Africa) -> the national squad (4971ms) What is Africa's largest country? The Y shape 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (The Y shape, represents the convergence of, South Africa) -> The Y shape (4945ms) What is Africa's largest country? every art form 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (every art form, is represented all over, South Africa) -> every art form (4955ms) What is Africa's largest country? Proteaceae 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Proteaceae, is best represented in, South Africa) -> Proteaceae (4961ms) What is Africa's largest country? Hitachi Ltd 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Hitachi Ltd, is represented in, South Africa) -> Hitachi Ltd (4968ms) What is Africa's largest country? the National Council 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (the National Council, has represented, South Africa) -> the National Council (4971ms) What is Africa's largest country? Catherine HIGGINS 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Catherine HIGGINS, represented, South Africa) -> Catherine HIGGINS (4955ms) What is Africa's largest country? Venda--are 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Venda--are, represented in, South Africa) -> Venda--are (4970ms) What is Africa's largest country? Shaun Pollock 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Shaun Pollock, represented, South Africa) -> Shaun Pollock (4949ms) What is Africa's largest country? the athletes 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (the athletes, to represent, South Africa) -> the athletes (4952ms) What is Africa's largest country? Beth 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Beth, has subsequently represented, South Africa) -> Beth (4971ms) What is Africa's largest country? CAF 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (CAF, has been represented in, South Africa) -> CAF (4948ms) What is Africa's largest country? Rasool 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (Rasool, has represented, South Africa) -> Rasool (4952ms) What is Africa's largest country? a Verwoerd 0.33333333333299997 What is Africa's largest country? -> $x: ($x, represent, south africa) -> (a Verwoerd, representing, the new South Africa) -> a Verwoerd (4972ms) What is Africa's largest country? The frozen seas 0.222222222223 What is Africa's largest country? -> $x: ($x, surround, south pole) -> (The frozen seas, surrounding, the South Pole) -> The frozen seas (4972ms) What is Africa's largest country? the bottom 0.222222222223 What is Africa's largest country? -> $x: ($x, represent, south pole) -> (the bottom, represents, the South Pole) -> the bottom (4972ms) What is Africa's largest country? the circumference 0.222222222223 What is Africa's largest country? -> $x: ($x, represent, south pole) -> (the circumference, represents, the South Pole) -> the circumference (4973ms) What is Africa's largest country? field sites 0.222222222223 What is Africa's largest country? -> $x: ($x, surround, south pole) -> (field sites, surrounding, the North and South Poles) -> field sites (4972ms) What is Africa's largest country? a large region 0.222222222223 What is Africa's largest country? -> $x: ($x, surround, south pole) -> (a large region, surrounding, the planet 's south pole) -> a large region (4972ms) What is Africa's largest country? the frozen continent 0.222222222223 What is Africa's largest country? -> $x: ($x, surround, south pole) -> (the frozen continent, surrounding, the Earth 's South Pole) -> the frozen continent (4972ms) What is Africa's largest country? 27 men 0.222222222223 What is Africa's largest country? -> $x: ($x, sail for, south pole) -> (27 men, set sail for, the South Pole) -> 27 men (4972ms) What is Africa's largest country? The city 0.222222222223 What is Africa's largest country? -> $x: ($x, surround, savanna) -> (The city, is surrounded by, a vast savanna) -> The city (4973ms) What is Africa's largest country? The continent of Antarctica 0.222222222223 What is Africa's largest country? -> $x: ($x, surround, south pole) -> (The continent of Antarctica, surrounds, the south pole) -> The continent of Antarctica (4973ms) What is Africa's largest country? the yellow 0.222222222223 What is Africa's largest country? -> $x: ($x, represent, savanna) -> (the yellow, represents, the savannas) -> the yellow (4972ms) What is Africa's largest country? Antarctica 0.222222222223 What is Africa's largest country? -> $x: ($x, surround, south pole) -> (Antarctica, surrounds, the south pole) -> Antarctica (4973ms) What is Africa's largest country? Natural History Antarctica 0.222222222223 What is Africa's largest country? -> $x: ($x, surround, south pole) -> (Natural History Antarctica, surrounds, the South Pole) -> Natural History Antarctica (4972ms) What is Africa's largest country? a continent 0.222222222223 What is Africa's largest country? -> $x: ($x, surround, south pole) -> (a continent, surrounding, the South Pole) -> a continent (4973ms) What is Africa's largest country? the positive and negative 0.222222222223 What is Africa's largest country? -> $x: ($x, represent, south pole) -> (the positive and negative, represent, our North and South Poles) -> the positive and negative (4972ms) What is Dr. Ruth's last name? Acting Director -0.0 What is Dr. Ruth's last name? -> $x: (dr. ruth, be name, $x) -> (Dr. Ruth L. Kirschstein, is named, Acting Director) -> Acting Director (497ms) Who is the manager of the Boston Pops? Boogie 0.33333333333299997 Who is the manager of the Boston Pops? -> $x: ($x, be manager of, pops) -> (Boogie, is also manager of, Pop/Rock singer Chai$ e) -> Boogie (529ms) What is Curveball's real name? the Iraqi defector -0.333333333334 What is Curveball's real name? -> $x: (curveball, be name, $x) -> (Curveball, was the code name of, the Iraqi defector) -> the Iraqi defector (911ms) What is Curveball's real name? the White House -0.6666666666650001 What is Curveball's real name? -> $x: ($x, be real, curveball) -> (the White House, was the real victim of, Curveball?s) -> the White House (911ms) What is Curveball's real name? a better idea -0.777777777774 What is Curveball's real name? -> $x: ($x, happen to, curveball) -> (a better idea, happens to, high curveballs) -> a better idea (911ms) What is Curveball's real name? Life -0.8888888888850001 What is Curveball's real name? -> $x: ($x, number, curveball) -> (Life, will definitely throw a number of, common curveballs) -> Life (950ms) In what year was Padre Pio born? the village 1.33333333333 In what year was Padre Pio born? -> $x: (padre pio, be bear in, $x) -> (Padre Pio, was born in, the village) -> the village (721ms) In what year was Padre Pio born? Pietrelcina 1.33333333333 In what year was Padre Pio born? -> $x: (padre pio, be bear in, $x) -> (. Padre Pio 1887-1968 Padre Pio, was born in, Pietrelcina) -> Pietrelcina (721ms) In what year was Padre Pio born? Italy 1.33333333333 In what year was Padre Pio born? -> $x: (padre pio, be bear in, $x) -> (Padre Pio, was born in, Italy) -> Italy (721ms) In what year was Padre Pio born? Southern Italy 1.33333333333 In what year was Padre Pio born? -> $x: (padre pio, be bear in, $x) -> (Padre Pio, was born in, Southern Italy) -> Southern Italy (721ms) In what year was Padre Pio born? 1887 1.33333333333 In what year was Padre Pio born? -> $x: (padre pio, be bear in, $x) -> (Padre Pio, was born in, 1887) -> 1887 (721ms) In what year was Padre Pio born? Pietralcina 1.33333333333 In what year was Padre Pio born? -> $x: (padre pio, be bear in, $x) -> (Padre Pio, was born in, Pietralcina) -> Pietralcina (721ms) In what year was Padre Pio born? The same -1.5555555555529998 In what year was Padre Pio born? -> $x: ($x, happen to, padre pio) -> (The same, happened to, Padre Pio) -> The same (805ms) What is schizophrenia? no particular 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (no particular, causes for, schizophrenia) -> no particular (6748ms) What is schizophrenia? bromine 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (bromine, can cause, schizophrenia) -> bromine (5644ms) What is schizophrenia? Scientists 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Scientists, causes, schizophrenia) -> Scientists (5475ms) What is schizophrenia? toxoplasmosis 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (toxoplasmosis, causes, schizophrenia) -> toxoplasmosis (4353ms) What is schizophrenia? the search 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the search, cause, Schizophrenia) -> the search (6677ms) What is schizophrenia? the root 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the root, causes of, schizophrenia) -> the root (2928ms) What is schizophrenia? Schizophrenia Information > 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Schizophrenia Information >, Causes, Schizophrenia) -> Schizophrenia Information > (4353ms) What is schizophrenia? Nobody 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Nobody, causes, schizophrenia) -> Nobody (6520ms) What is schizophrenia? scientists 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (scientists, causes, schizophrenia) -> scientists (6831ms) What is schizophrenia? biology 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (biology, causes, schizophrenia) -> biology (2689ms) What is schizophrenia? Google 0.33333333333299997 What is schizophrenia? -> $x: ($x, invent, schizophrenia) -> (Google, invented, a new form of schizophrenia) -> Google (5644ms) What is schizophrenia? a chemical imbalance 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (a chemical imbalance, caused, schizophrenia) -> a chemical imbalance (6748ms) What is schizophrenia? schizoph 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (schizoph, causes, schizophrenia) -> schizoph (2689ms) What is schizophrenia? Stress 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Stress, can cause, schizophrenia) -> Stress (6520ms) What is schizophrenia? ? Marijuana 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (? Marijuana, causes, Schizophrenia) -> ? Marijuana (5475ms) What is schizophrenia? no closer 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (no closer, causes, schizophrenia) -> no closer (7138ms) What is schizophrenia? higher levels 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (higher levels, may cause, schizophrenia) -> higher levels (6677ms) What is schizophrenia? the question 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the question, causes, schizophrenia) -> the question (2688ms) What is schizophrenia? substance abuse 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (substance abuse, causes, schizophrenia) -> substance abuse (6678ms) What is schizophrenia? order 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (order, causes, schizophrenia) -> order (4179ms) What is schizophrenia? Dopamine 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Dopamine, causes, Schizophrenia) -> Dopamine (5475ms) What is schizophrenia? smoking cannabis 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (smoking cannabis, causes, schizophrenia) -> smoking cannabis (5475ms) What is schizophrenia? the biochemical imbalances 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the biochemical imbalances, cause, schizophrenia) -> the biochemical imbalances (6831ms) What is schizophrenia? Psychosis 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Psychosis, Causes, Schizophrenia) -> Psychosis (6520ms) What is schizophrenia? housecats 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (housecats, can cause, schizophrenia) -> housecats (7138ms) What is schizophrenia? cannabis 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (cannabis, did cause, schizophrenia) -> cannabis (6521ms) What is schizophrenia? tobacco 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (tobacco, causes, schizophrenia) -> tobacco (6520ms) What is schizophrenia? Researchers 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Researchers, causes, schizophrenia) -> Researchers (2928ms) What is schizophrenia? paranoid delusions 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (paranoid delusions, caused by, schizophrenia) -> paranoid delusions (6831ms) What is schizophrenia? brain synaptic transfer 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (brain synaptic transfer, cause, schizophrenia) -> brain synaptic transfer (6748ms) What is schizophrenia? Psychiatrists 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Psychiatrists, causes, schizophrenia) -> Psychiatrists (7138ms) What is schizophrenia? UndoJan 19 , 2012 ? 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (UndoJan 19 , 2012 ?, causes, schizophrenia) -> UndoJan 19 , 2012 ? (2928ms) What is schizophrenia? Doctors 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Doctors, causes, schizophrenia) -> Doctors (6748ms) What is schizophrenia? the Sun 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the Sun, causes, schizophrenia) -> the Sun (4353ms) What is schizophrenia? Experts 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Experts, causes, schizophrenia) -> Experts (2928ms) What is schizophrenia? Feline parasite 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Feline parasite, ?can cause, schizophrenia) -> Feline parasite (6677ms) What is schizophrenia? sun 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (sun, can cause, schizophrenia) -> sun (5475ms) What is schizophrenia? a gene or genes 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (a gene or genes, cause, schizophrenia) -> a gene or genes (2689ms) What is schizophrenia? pot 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (pot, causes, schizophrenia) -> pot (6520ms) What is schizophrenia? clinical psychopharmacologists 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (clinical psychopharmacologists, causes, schizophrenia) -> clinical psychopharmacologists (5644ms) What is schizophrenia? certain 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (certain, causes, schizophrenia) -> certain (6748ms) What is schizophrenia? the categories 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the categories, actually seem to cause, Schizophrenia) -> the categories (6831ms) What is schizophrenia? Jan 17 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Jan 17, causes, schizophrenia) -> Jan 17 (2928ms) What is schizophrenia? reference 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (reference, Causes, Schizophrenia ?) -> reference (5644ms) What is schizophrenia? cats 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (cats, cause, schizophrenia) -> cats (7138ms) What is schizophrenia? Cause Experts 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Cause Experts, causes, schizophrenia) -> Cause Experts (7138ms) What is schizophrenia? extra bodeads 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (extra bodeads, will cause, schizophrenia) -> extra bodeads (5475ms) What is schizophrenia? brain volumes 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (brain volumes, caused by, schizophrenia) -> brain volumes (4179ms) What is schizophrenia? high dopamine levels 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (high dopamine levels, cause, schizophrenia) -> high dopamine levels (6748ms) What is schizophrenia? dopamine 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (dopamine, may cause, schizophrenia) -> dopamine (5475ms) What is schizophrenia? the suffering 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the suffering, caused by, schizophrenia) -> the suffering (6831ms) What is schizophrenia? the genetic code 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the genetic code, causes most cases of, schizophrenia) -> the genetic code (6749ms) What is schizophrenia? the field 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the field, causes, schizophrenia) -> the field (5644ms) What is schizophrenia? May 12 , 2011 Proof 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (May 12 , 2011 Proof, cause, schizophrenia) -> May 12 , 2011 Proof (7138ms) What is schizophrenia? a clue 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (a clue, causes, schizophrenia) -> a clue (6677ms) What is schizophrenia? medical science 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (medical science, causes, schizophrenia) -> medical science (5475ms) What is schizophrenia? drug abuse 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (drug abuse, will cause, schizophrenia) -> drug abuse (7138ms) What is schizophrenia? Brain abnormalities 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Brain abnormalities, are the cause of, schizophrenia) -> Brain abnormalities (6831ms) What is schizophrenia? information 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (information, causes, schizophrenia) -> information (6831ms) What is schizophrenia? Environmental factor 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Environmental factor, Diseases or conditions caused, Schizophrenia) -> Environmental factor (7138ms) What is schizophrenia? marijuana 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (marijuana, to causing, Schizophrenia) -> marijuana (7138ms) What is schizophrenia? herpes 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (herpes, causes, schizophrenia) -> herpes (4179ms) What is schizophrenia? hallucinations 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (hallucinations, caused by, schizophrenia) -> hallucinations (4353ms) What is schizophrenia? experts 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (experts, causes, schizophrenia) -> experts (6831ms) What is schizophrenia? the behavior 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the behavior, caused by, schizophrenia) -> the behavior (4179ms) What is schizophrenia? too much dopamine 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (too much dopamine, must cause, schizophrenia) -> too much dopamine (4353ms) What is schizophrenia? a gene 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (a gene, causes, schizophrenia) -> a gene (2689ms) What is schizophrenia? the mystery 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the mystery, causes, schizophrenia) -> the mystery (5644ms) What is schizophrenia? the stress 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the stress, can cause, schizophrenia) -> the stress (4353ms) What is schizophrenia? drugs 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (drugs, cause, schizophrenia) -> drugs (4179ms) What is schizophrenia? child abuse 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (child abuse, can cause, schizophrenia) -> child abuse (5644ms) What is schizophrenia? the brain 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the brain, can cause, schizophrenia) -> the brain (6521ms) What is schizophrenia? brain atrophy 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (brain atrophy, causes, Schizophrenia) -> brain atrophy (2689ms) What is schizophrenia? multiple genes 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (multiple genes, cause, schizophrenia) -> multiple genes (4179ms) What is schizophrenia? Marijuana 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Marijuana, causes, schizophrenia) -> Marijuana (4179ms) What is schizophrenia? the factors 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the factors, causes, Schizophrenia) -> the factors (4353ms) What is schizophrenia? the most important kinds of impairment 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (the most important kinds of impairment, caused by, schizophrenia) -> the most important kinds of impairment (6677ms) What is schizophrenia? Cannabis 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (Cannabis, causes, schizophrenia) -> Cannabis (6520ms) What is schizophrenia? auditory hallucinations 0.33333333333299997 What is schizophrenia? -> $x: ($x, cause, schizophrenia) -> (auditory hallucinations, caused by, schizophrenia) -> auditory hallucinations (6677ms) What is schizophrenia? anomalies 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (anomalies, develop prenatally in, schizophrenia) -> anomalies (7991ms) What is schizophrenia? Melville C 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Melville C, Relapse in, schizophrenia) -> Melville C (8026ms) What is schizophrenia? the brain changes 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the brain changes, seen in, schizophrenia) -> the brain changes (7991ms) What is schizophrenia? a doctor 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (a doctor, specialized in, schizophrenia) -> a doctor (8043ms) What is schizophrenia? insufficient motivation 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (insufficient motivation, observed in, schizophrenia) -> insufficient motivation (8026ms) What is schizophrenia? the gene 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the gene, was first implicated in, schizophrenia) -> the gene (8026ms) What is schizophrenia? the neural deficits 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the neural deficits, observed in, schizophrenia) -> the neural deficits (8008ms) What is schizophrenia? the brain regions 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the brain regions, involved in, schizophrenia) -> the brain regions (7974ms) What is schizophrenia? sentence 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (sentence, boundaries in, schizophrenia) -> sentence (8008ms) What is schizophrenia? Neurolinguistics 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Neurolinguistics, Language in, Schizophrenia) -> Neurolinguistics (7955ms) What is schizophrenia? Somatic hallucinations 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Somatic hallucinations, occur in, schizophrenia) -> Somatic hallucinations (7991ms) What is schizophrenia? hearing voices 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (hearing voices, experience in, schizophrenia) -> hearing voices (8026ms) What is schizophrenia? the deficits 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the deficits, observed in, schizophrenia) -> the deficits (8008ms) What is schizophrenia? the psychotic symptoms 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the psychotic symptoms, found in, schizophrenia) -> the psychotic symptoms (8026ms) What is schizophrenia? Two gene variants 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Two gene variants, implicated in, schizophrenia) -> Two gene variants (8026ms) What is schizophrenia? a syndrome 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (a syndrome, seen in, schizophrenia) -> a syndrome (7974ms) What is schizophrenia? cognitive deficit 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (cognitive deficit, observed in, schizophrenia) -> cognitive deficit (7138ms) What is schizophrenia? yet psychoanalytic theorists 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (yet psychoanalytic theorists, found in, schizophrenia) -> yet psychoanalytic theorists (7974ms) What is schizophrenia? genes 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (genes, play in, schizophrenia) -> genes (7974ms) What is schizophrenia? Alcohol and cannabis 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Alcohol and cannabis, use in, schizophrenia) -> Alcohol and cannabis (7991ms) What is schizophrenia? the cognitive/attentional abnormalities 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the cognitive/attentional abnormalities, found in, schizophrenia) -> the cognitive/attentional abnormalities (8026ms) What is schizophrenia? the central self 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the central self, happens in, schizophrenia) -> the central self (7991ms) What is schizophrenia? the breakthroughs 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the breakthroughs, in treating, schizophrenia) -> the breakthroughs (7955ms) What is schizophrenia? information-processing deficits 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (information-processing deficits, occur in, schizophrenia) -> information-processing deficits (7991ms) What is schizophrenia? brain regions 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (brain regions, described in, schizophrenia) -> brain regions (7956ms) What is schizophrenia? antipsychotic drugs 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (antipsychotic drugs, in treating, schizophrenia) -> antipsychotic drugs (8008ms) What is schizophrenia? the hallucinations 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the hallucinations, occur in, schizophrenia) -> the hallucinations (8008ms) What is schizophrenia? the symptoms 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the symptoms, occurring in, schizophrenia) -> the symptoms (8026ms) What is schizophrenia? the cognitive deficits 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the cognitive deficits, observed in, schizophrenia) -> the cognitive deficits (7973ms) What is schizophrenia? basal ganglia 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (basal ganglia, function in, schizophrenia) -> basal ganglia (7956ms) What is schizophrenia? A gene 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (A gene, implicated in, schizophrenia) -> A gene (7956ms) What is schizophrenia? White matter 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (White matter, changes in, schizophrenia) -> White matter (8008ms) What is schizophrenia? Flat 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Flat, affect in, schizophrenia) -> Flat (7973ms) What is schizophrenia? Prodromal symptoms 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Prodromal symptoms, relapse prevention in, schizophrenia) -> Prodromal symptoms (8008ms) What is schizophrenia? cognitive/attentional abnormalities 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (cognitive/attentional abnormalities, found in, schizophrenia) -> cognitive/attentional abnormalities (7956ms) What is schizophrenia? Zyprexa ? 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Zyprexa ?, used in, schizophrenia) -> Zyprexa ? (8043ms) What is schizophrenia? depression 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (depression, observed in, schizophrenia) -> depression (7138ms) What is schizophrenia? likely 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (likely, occurs in, schizophrenia) -> likely (7973ms) What is schizophrenia? Dopamine D4 receptors 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Dopamine D4 receptors, elevated in, schizophrenia) -> Dopamine D4 receptors (8008ms) What is schizophrenia? R.C. Flat 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (R.C. Flat, affect in, schizophrenia) -> R.C. Flat (7991ms) What is schizophrenia? an inhibitory deficit 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (an inhibitory deficit, found in, schizophrenia) -> an inhibitory deficit (8044ms) What is schizophrenia? the genes 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the genes, involved in, schizophrenia) -> the genes (7955ms) What is schizophrenia? brain abnormalities 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (brain abnormalities, occur in, schizophrenia) -> brain abnormalities (8026ms) What is schizophrenia? the body 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the body, occurs in, schizophrenia) -> the body (8026ms) What is schizophrenia? Anarchy 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Anarchy, works in, schizophrenia) -> Anarchy (8026ms) What is schizophrenia? negative symptoms 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (negative symptoms, commonly observed in, schizophrenia) -> negative symptoms (7991ms) What is schizophrenia? an area 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (an area, may be involved in, schizophrenia) -> an area (7991ms) What is schizophrenia? the problem 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the problem, lie in, schizophrenia) -> the problem (7991ms) What is schizophrenia? a brain chemical 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (a brain chemical, involved in, schizophrenia) -> a brain chemical (7991ms) What is schizophrenia? metabolites 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (metabolites, significantly altered in, schizophrenia) -> metabolites (7973ms) What is schizophrenia? Toxiplasmosis 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Toxiplasmosis, plays a part in, schizophrenia) -> Toxiplasmosis (7991ms) What is schizophrenia? circadian rhythm disturbances 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (circadian rhythm disturbances, observed in, schizophrenia) -> circadian rhythm disturbances (8043ms) What is schizophrenia? psychodynamic psychotherapy 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (psychodynamic psychotherapy, in treating, schizophrenia) -> psychodynamic psychotherapy (7991ms) What is schizophrenia? the fundamental defects 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the fundamental defects, found in, schizophrenia) -> the fundamental defects (7955ms) What is schizophrenia? the auditory hallucinations 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the auditory hallucinations, observed in, schizophrenia) -> the auditory hallucinations (7956ms) What is schizophrenia? Susan J. Out-of-body 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Susan J. Out-of-body, experiences in, schizophrenia) -> Susan J. Out-of-body (7974ms) What is schizophrenia? active psychosis 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (active psychosis, seen in, schizophrenia) -> active psychosis (8008ms) What is schizophrenia? Mitochondrial 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Mitochondrial, variants in, schizophrenia) -> Mitochondrial (7956ms) What is schizophrenia? The Double Bind 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (The Double Bind, in promoting, schizophrenia) -> The Double Bind (8008ms) What is schizophrenia? the cognitive impairments 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the cognitive impairments, seen in, schizophrenia) -> the cognitive impairments (8008ms) What is schizophrenia? Suicide 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (Suicide, attempts in, schizophrenia) -> Suicide (7956ms) What is schizophrenia? the ability 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the ability, demonstrated in, schizophrenia) -> the ability (8026ms) What is schizophrenia? the response patterns 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the response patterns, observed in, schizophrenia) -> the response patterns (8043ms) What is schizophrenia? a phenomenon 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (a phenomenon, implicated in, schizophrenia) -> a phenomenon (7955ms) What is schizophrenia? the defect state 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the defect state, noted in, schizophrenia) -> the defect state (7973ms) What is schizophrenia? reality distortion and symptoms 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (reality distortion and symptoms, occur in, schizophrenia) -> reality distortion and symptoms (7991ms) What is schizophrenia? the cognitive functions 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the cognitive functions, affected in, schizophrenia) -> the cognitive functions (7973ms) What is schizophrenia? a circuit 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (a circuit, implicated in, schizophrenia) -> a circuit (8008ms) What is schizophrenia? disruption during early life 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (disruption during early life, may result in, schizophrenia) -> disruption during early life (8026ms) What is schizophrenia? a psychiatrist 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (a psychiatrist, specializes in, schizophrenia) -> a psychiatrist (8043ms) What is schizophrenia? the thought disorder 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the thought disorder, seen in, schizophrenia) -> the thought disorder (8026ms) What is schizophrenia? the voices 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the voices, heard in, schizophrenia) -> the voices (8008ms) What is schizophrenia? frontal cortex brain 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (frontal cortex brain, proteins in, schizophrenia) -> frontal cortex brain (8043ms) What is schizophrenia? the abnormalities 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the abnormalities, seen in, schizophrenia) -> the abnormalities (8043ms) What is schizophrenia? a person 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (a person, has in, schizophrenia) -> a person (8043ms) What is schizophrenia? the delusions 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the delusions, seen in, schizophrenia) -> the delusions (7974ms) What is schizophrenia? hallucination 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (hallucination, found in, schizophrenia) -> hallucination (8026ms) What is schizophrenia? The genes 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (The genes, are implicated in, schizophrenia) -> The genes (7956ms) What is schizophrenia? the OFC sulcogyral pattern 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (the OFC sulcogyral pattern, differed in, schizophrenia) -> the OFC sulcogyral pattern (7991ms) What is schizophrenia? a complex cognitive function 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (a complex cognitive function, is impaired in, schizophrenia) -> a complex cognitive function (8008ms) What is schizophrenia? mental disorders 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (mental disorders, found in, schizophrenia) -> mental disorders (7956ms) What is schizophrenia? a schizophrenic individual 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (a schizophrenic individual, happens in, schizophrenia) -> a schizophrenic individual (7956ms) What is schizophrenia? candidate genes 0.222222222222 What is schizophrenia? -> $x: ($x, in, schizophrenia) -> (candidate genes, involved in, schizophrenia) -> candidate genes (8043ms) What is schizophrenia? older medications 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia patients, did as well on, older medications) -> older medications (8077ms) What is schizophrenia? babies 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (developing schizophrenia, did, babies) -> babies (8060ms) What is schizophrenia? vast improvements 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, do make, vast improvements) -> vast improvements (8093ms) What is schizophrenia? view recovery 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, do, view recovery) -> view recovery (8093ms) What is schizophrenia? an individual 0.111111111111 What is schizophrenia? -> $x: ($x, r, schizophrenia) -> (an individual, met DSM-III-R criteria for, schizophrenia) -> an individual (8077ms) What is schizophrenia? tribal societies 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia/psychosis, did fair better in, tribal societies) -> tribal societies (8060ms) What is schizophrenia? women 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, do, women) -> women (8060ms) What is schizophrenia? every level 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, do perform at, every level) -> every level (8060ms) What is schizophrenia? researchers 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia prevalence, have been done by, researchers) -> researchers (8077ms) What is schizophrenia? the progress 0.111111111111 What is schizophrenia? -> $x: ($x, describe, schizophrenia) -> (the progress, described the market for, schizophrenia drugs) -> the progress (8061ms) What is schizophrenia? paranoia 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (Schizophrenia, has more to do with, paranoia) -> paranoia (8077ms) What is schizophrenia? a *very slight* hint 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (Moral schizophrenia, does have, a *very slight* hint) -> a *very slight* hint (8093ms) What is schizophrenia? the disorder 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (label schizophrenia, does have, the disorder) -> the disorder (8060ms) What is schizophrenia? the other leg 0.111111111111 What is schizophrenia? -> $x: ($x, describe, schizophrenia) -> (the other leg, be described as, schizophrenia) -> the other leg (8061ms) What is schizophrenia? the other people 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (SCHIZOPHRENIA, do the activities like, the other people) -> the other people (8093ms) What is schizophrenia? a combination 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, do best with, a combination) -> a combination (8093ms) What is schizophrenia? aerobic exercise 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, did 30 minutes of, aerobic exercise) -> aerobic exercise (8043ms) What is schizophrenia? IGT performance 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (both schizophrenia groups, did worse on, IGT performance) -> IGT performance (8093ms) What is schizophrenia? run in families 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (Schizophrenia, does tend to, run in families) -> run in families (8093ms) What is schizophrenia? best 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, do, best) -> best (8061ms) What is schizophrenia? low-level jobs 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia cannot, do anything except, low-level jobs) -> low-level jobs (8077ms) What is schizophrenia? Colby Cosh 0.111111111111 What is schizophrenia? -> $x: ($x, describe, schizophrenia) -> (Colby Cosh, has done a good job of describing, the schizophrenia) -> Colby Cosh (8077ms) What is schizophrenia? olfactory dysfunction 0.111111111111 What is schizophrenia? -> $x: ($x, describe, schizophrenia) -> (olfactory dysfunction, is well described in, schizophrenia) -> olfactory dysfunction (8093ms) What is schizophrenia? split personalities 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (Schizophrenia, has nothing to do with, split personalities) -> split personalities (8077ms) What is schizophrenia? families 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, do worse in, families) -> families (8093ms) What is schizophrenia? mental tasks 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, do poorly on, mental tasks) -> mental tasks (8060ms) What is schizophrenia? Laing 0.111111111111 What is schizophrenia? -> $x: ($x, describe, schizophrenia) -> (Laing, described, Schizophrenia) -> Laing (8077ms) What is schizophrenia? psychologists 0.111111111111 What is schizophrenia? -> $x: ($x, describe, schizophrenia) -> (psychologists, have described, schizophrenia) -> psychologists (8061ms) What is schizophrenia? a secret 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (Schizophrenia, does n?t have to remain, a secret) -> a secret (8093ms) What is schizophrenia? everyone else 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, so did, everyone else) -> everyone else (8060ms) What is schizophrenia? smoking 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, can do to reduce, smoking) -> smoking (8077ms) What is schizophrenia? the pseudonyms influence 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, far do, the pseudonyms influence) -> the pseudonyms influence (8077ms) What is schizophrenia? psychotic inpatients 0.111111111111 What is schizophrenia? -> $x: ($x, r, schizophrenia) -> (psychotic inpatients, met DSM-III-R criteria for, schizophrenia) -> psychotic inpatients (8077ms) What is schizophrenia? risks 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, does have, risks) -> risks (8093ms) What is schizophrenia? cause split personalities 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, does n \'t, cause split personalities) -> cause split personalities (8077ms) What is schizophrenia? associations 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, as do, associations) -> associations (8061ms) What is schizophrenia? violent ? 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, do become, violent ?) -> violent ? (8060ms) What is schizophrenia? aggression 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, does n?t mention, aggression) -> aggression (8077ms) What is schizophrenia? exist 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (Schizophrenia, does nt, exist) -> exist (8093ms) What is schizophrenia? grieving 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia ?We carers, do a lot of, grieving) -> grieving (8077ms) What is schizophrenia? daemons 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (Schizophrenia, has nothing to do with, daemons) -> daemons (8043ms) What is schizophrenia? a level 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (chronic/intermittent schizophrenia, do so at, a level) -> a level (8077ms) What is schizophrenia? SHANK3 0.111111111111 What is schizophrenia? -> $x: ($x, describe, schizophrenia) -> (SHANK3, have been described in, atypical schizophrenia) -> SHANK3 (8043ms) What is schizophrenia? physicians 0.111111111111 What is schizophrenia? -> $x: ($x, describe, schizophrenia) -> (physicians, describe, schizophrenia) -> physicians (8061ms) What is schizophrenia? multiple personality 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (Schizophrenia, has nothing to do with, multiple personality) -> multiple personality (8043ms) What is schizophrenia? the oppressive structure 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, did, the oppressive structure) -> the oppressive structure (8093ms) What is schizophrenia? cognitive impairment limit improvement 0.111111111111 What is schizophrenia? -> $x: (schizophrenia, do, $x) -> (schizophrenia, Does, cognitive impairment limit improvement) -> cognitive impairment limit improvement (8093ms) What is schizophrenia? forms 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (Schizophrenia, is just a catch-all term for, forms) -> forms (8125ms) What is schizophrenia? Chemical imbalances 0.11111111111 What is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (Chemical imbalances, can produce, schizophrenia and depression) -> Chemical imbalances (8218ms) What is schizophrenia? WHAS 0.11111111111 What is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (WHAS, Produces, A Disaster Called Schizophrenia) -> WHAS (8218ms) What is schizophrenia? long 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, has been untouched for so, long) -> long (8125ms) What is schizophrenia? patients 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is looking for, patients) -> patients (8125ms) What is schizophrenia? such beautiful voices 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (Schizophrenia, is an awful name for, such beautiful voices) -> such beautiful voices (8218ms) What is schizophrenia? political rather 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, has been used for, political rather) -> political rather (8157ms) What is schizophrenia? King Scar 0.11111111111 What is schizophrenia? -> $x: ($x, define, schizophrenia) -> (King Scar, defines, the escalating schizophrenia) -> King Scar (8141ms) What is schizophrenia? a schizo-obsessive subtype 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is there evidence for, a schizo-obsessive subtype) -> a schizo-obsessive subtype (8125ms) What is schizophrenia? the worst 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (paranoid schizophrenia, is to prepare for, the worst) -> the worst (8203ms) What is schizophrenia? a group 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (Schizophrenia, is the word for, a group) -> a group (8093ms) What is schizophrenia? a heterogeneous group 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (Schizophrenia, is the collective term for, a heterogeneous group) -> a heterogeneous group (8156ms) What is schizophrenia? psychiatric treatment 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, has been admitted for, psychiatric treatment) -> psychiatric treatment (8187ms) What is schizophrenia? the onset 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (Schizophrenia, are basic for, the onset) -> the onset (8172ms) What is schizophrenia? disturbances 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (Schizophrenia, is noted for, disturbances) -> disturbances (8187ms) What is schizophrenia? distress 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is important for alleviating, distress) -> distress (8172ms) What is schizophrenia? normal and abnormal behavior 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (normal and abnormal behavior, do, schizophrenia) -> normal and abnormal behavior (8172ms) What is schizophrenia? heart disease 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, are at increased risk for, heart disease) -> heart disease (8141ms) What is schizophrenia? a mental illness but society 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (a mental illness but society, does see, schizophrenia) -> a mental illness but society (8125ms) What is schizophrenia? OC symptoms 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (chronic schizophrenia, were assessed for, OC symptoms) -> OC symptoms (8141ms) What is schizophrenia? a living 0.11111111111 What is schizophrenia? -> $x: ($x, define, schizophrenia) -> (a living, is actually defined as, Schizophrenia) -> a living (8141ms) What is schizophrenia? genetic counselling 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, be considered for, genetic counselling) -> genetic counselling (8187ms) What is schizophrenia? bipolar disorder 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, are effective for, bipolar disorder) -> bipolar disorder (8187ms) What is schizophrenia? transient residents 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia rates, are only increased for, transient residents) -> transient residents (8172ms) What is schizophrenia? The role Toxoplasm gondii 0.11111111111 What is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (The role Toxoplasm gondii, may play in producing, schizophrenia) -> The role Toxoplasm gondii (8125ms) What is schizophrenia? the impairments 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, are important for characterizing, the impairments) -> the impairments (8172ms) What is schizophrenia? political science 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is also taken for granted in, political science) -> political science (8157ms) What is schizophrenia? the European initiative 0.11111111111 What is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (the European initiative, has produced, the usual schizophrenia) -> the European initiative (8141ms) What is schizophrenia? Alfred Lion 0.11111111111 What is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (Alfred Lion, Releases produced, Schizophrenia) -> Alfred Lion (8109ms) What is schizophrenia? clinical reasons 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is changed for, clinical reasons) -> clinical reasons (8157ms) What is schizophrenia? concern 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is a cause for, concern) -> concern (8203ms) What is schizophrenia? Mary Jeffries 0.11111111111 What is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (Mary Jeffries, Produces, A Disaster Called Schizophrenia) -> Mary Jeffries (8187ms) What is schizophrenia? Left theory 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is deeply problematic for, Left theory) -> Left theory (8172ms) What is schizophrenia? pathological TDP-43 , 18 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, was negative for, pathological TDP-43 , 18) -> pathological TDP-43 , 18 (8218ms) What is schizophrenia? the philosophy 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (Schizophrenia, is an ideal case study for, the philosophy) -> the philosophy (8203ms) What is schizophrenia? Hallucinogenics 0.11111111111 What is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (Hallucinogenics, can produce, schizophrenia) -> Hallucinogenics (8218ms) What is schizophrenia? mediumistic forces 0.11111111111 What is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (mediumistic forces, produces symptoms of, schizophrenia) -> mediumistic forces (8141ms) What is schizophrenia? the study 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, were recruited for, the study) -> the study (8125ms) What is schizophrenia? reasons 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (chronic schizophrenia, are discussed for, reasons) -> reasons (8203ms) What is schizophrenia? unnatural causes 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is accounted for by, unnatural causes) -> unnatural causes (8109ms) What is schizophrenia? the psychiatrist 0.11111111111 What is schizophrenia? -> $x: ($x, define, schizophrenia) -> (the psychiatrist, defines, schizophrenia) -> the psychiatrist (8109ms) What is schizophrenia? Aired 6-11-2010 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (Aired 6-11-2010, did the definition of, schizophrenia change) -> Aired 6-11-2010 (8109ms) What is schizophrenia? the thalamus ? 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (the thalamus ?, do people with, schizophrenia) -> the thalamus ? (8218ms) What is schizophrenia? the first time 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (Schizophrenia, is usually diagnosed for, the first time) -> the first time (8172ms) What is schizophrenia? ?silkyegg? ? ? 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (?silkyegg? ? ?, Do, your research?SCHIZOPHRENIA) -> ?silkyegg? ? ? (8172ms) What is schizophrenia? MPD 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (MPD, is nothing to do with, schizophrenia) -> MPD (8157ms) What is schizophrenia? family members 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, can be especially difficult for, family members) -> family members (8172ms) What is schizophrenia? Tom Middleton 0.11111111111 What is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (Tom Middleton, Tracks produced, Entrance to Exit (feat. Schizophrenia)) -> Tom Middleton (8109ms) What is schizophrenia? abnormality 0.11111111111 What is schizophrenia? -> $x: ($x, characterize, schizophrenia) -> (abnormality, characterized, schizophrenia patients) -> abnormality (8172ms) What is schizophrenia? violent behavior 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, were assessed for, violent behavior) -> violent behavior (8203ms) What is schizophrenia? a long time 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, may have been ill for, a long time) -> a long time (8218ms) What is schizophrenia? one hundred years 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, has been recognized for over, one hundred years) -> one hundred years (8157ms) What is schizophrenia? the major and minor alleles 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, are homozygous for, the major and minor alleles) -> the major and minor alleles (8218ms) What is schizophrenia? 6 weeks 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, were treated for, 6 weeks) -> 6 weeks (8125ms) What is schizophrenia? exercise 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (exercise, is doing good in, the treatment of schizophrenia) -> exercise (8157ms) What is schizophrenia? caregivers 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is a challenging task for, caregivers) -> caregivers (8157ms) What is schizophrenia? a Section Chief 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (a Section Chief, has done research on, schizophrenia) -> a Section Chief (8172ms) What is schizophrenia? a revolution 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, are ripe for, a revolution) -> a revolution (8202ms) What is schizophrenia? Parasurama 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (Parasurama, does, the schizophrenia) -> Parasurama (8125ms) What is schizophrenia? publication 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, was accepted for, publication) -> publication (8187ms) What is schizophrenia? a few weeks 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, only need to be tested for, a few weeks) -> a few weeks (8218ms) What is schizophrenia? each person 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (Schizophrenia, is different for, each person) -> each person (8125ms) What is schizophrenia? treatments 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (treatments, do help a person with, schizophrenia) -> treatments (8125ms) What is schizophrenia? large deletions 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, were also found for, large deletions) -> large deletions (8218ms) What is schizophrenia? long time 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, has been an issue for, long time) -> long time (8203ms) What is schizophrenia? a formal diagnosis 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is too young for, a formal diagnosis) -> a formal diagnosis (8232ms) What is schizophrenia? men and women 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is the same for, men and women) -> men and women (8187ms) What is schizophrenia? Psychiatry 0.11111111111 What is schizophrenia? -> $x: ($x, characterize, schizophrenia) -> (Psychiatry, characterizes, schizophrenia) -> Psychiatry (8218ms) What is schizophrenia? A remarkable study 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (A remarkable study, was done on, schizophrenia) -> A remarkable study (8109ms) What is schizophrenia? upper-class families 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (upper-class families, do patients with, schizophrenia) -> upper-class families (8203ms) What is schizophrenia? Read 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (Read, exactly does, schizophrenia work) -> Read (8109ms) What is schizophrenia? any parent 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is a life-changing moment for, any parent) -> any parent (8218ms) What is schizophrenia? madness 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (madness, do patients with, schizophrenia) -> madness (8109ms) What is schizophrenia? the human body 0.11111111111 What is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (the human body, can produce the same symptoms of, schizophrenia) -> the human body (8172ms) What is schizophrenia? individuals 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is almost doubled for, individuals) -> individuals (8141ms) What is schizophrenia? psychosurgery 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (Schizophrenia, was n?t the strong suit for, psychosurgery) -> psychosurgery (8187ms) What is schizophrenia? the most part 0.11111111111 What is schizophrenia? -> $x: ($x, define, schizophrenia) -> (the most part, defined, schizophrenia) -> the most part (8157ms) What is schizophrenia? violent incidents 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (violent incidents, did those with, schizophrenia) -> violent incidents (8187ms) What is schizophrenia? users 0.11111111111 What is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (users, produces, schizophrenia) -> users (8187ms) What is schizophrenia? elderly patients 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, are commonly prescribed for, elderly patients) -> elderly patients (8187ms) What is schizophrenia? Dogma 0.11111111111 What is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (Dogma, will produce, schizophrenia) -> Dogma (8203ms) What is schizophrenia? children 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is for, children) -> children (8172ms) What is schizophrenia? a famous psychiatrist 0.11111111111 What is schizophrenia? -> $x: ($x, define, schizophrenia) -> (a famous psychiatrist, defined, schizophrenia) -> a famous psychiatrist (8203ms) What is schizophrenia? RD Laing 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (RD Laing, did on, Schizophrenia) -> RD Laing (8202ms) What is schizophrenia? positive symptoms 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, has been used for, positive symptoms) -> positive symptoms (8141ms) What is schizophrenia? the top-two primary 0.11111111111 What is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (the top-two primary, produces, an electoral schizophrenia) -> the top-two primary (8187ms) What is schizophrenia? cytomegalovirus 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, were treated for, cytomegalovirus) -> cytomegalovirus (8157ms) What is schizophrenia? folks 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (folks, are already doing with, schizophrenia) -> folks (8109ms) What is schizophrenia? aging than 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (aging than, do patients with, Schizophrenia) -> aging than (8109ms) What is schizophrenia? close relatives 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is much greater for, close relatives) -> close relatives (8109ms) What is schizophrenia? the major allele 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, are homozygous for, the major allele) -> the major allele (8156ms) What is schizophrenia? Francis Wolff 0.11111111111 What is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (Francis Wolff, Releases produced, Schizophrenia) -> Francis Wolff (8232ms) What is schizophrenia? the individual 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia symptoms, again are for, the individual) -> the individual (8218ms) What is schizophrenia? young people 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is especially destructive for, young people) -> young people (8187ms) What is schizophrenia? Ray Davies 0.11111111111 What is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (Ray Davies, Tracks produced, Acute Schizophrenia Paranoia Blues) -> Ray Davies (8141ms) What is schizophrenia? The CCCS 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (The CCCS, does help people with, schizophrenia) -> The CCCS (8218ms) What is schizophrenia? Armstrong 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (Armstrong, would be able to do on, schizophrenia) -> Armstrong (8141ms) What is schizophrenia? a board game ? 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (a board game ?, does, manic depression top schizophrenia) -> a board game ? (8157ms) What is schizophrenia? the thalamus 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (the thalamus, as do people with, schizophrenia) -> the thalamus (8172ms) What is schizophrenia? diabetes 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is an independent risk factor for, diabetes) -> diabetes (8218ms) What is schizophrenia? the sufferer 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, are terrifying for, the sufferer) -> the sufferer (8203ms) What is schizophrenia? assessment interview 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, were referred for, assessment interview) -> assessment interview (8187ms) What is schizophrenia? the treatment 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (Schizophrenia SEROQUEL, is indicated for, the treatment) -> the treatment (8203ms) What is schizophrenia? Fluoridation 0.11111111111 What is schizophrenia? -> $x: ($x, produce, schizophrenia) -> (Fluoridation, produces, schizophrenia) -> Fluoridation (8109ms) What is schizophrenia? The symptoms 0.11111111111 What is schizophrenia? -> $x: ($x, characterize, schizophrenia) -> (The symptoms, characterizing, Schizophrenia) -> The symptoms (8125ms) What is schizophrenia? Japan 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (Japan, has decided to do away with, the term schizophrenia) -> Japan (8141ms) What is schizophrenia? the person 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (Schizophrenia, can be very difficult for, the person) -> the person (8187ms) What is schizophrenia? treatment 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, is an indication for, treatment) -> treatment (8141ms) What is schizophrenia? trials 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, there is an urgent need for, trials) -> trials (8157ms) What is schizophrenia? 6 months 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, there is a requirement for, 6 months) -> 6 months (8125ms) What is schizophrenia? Western 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, appears to be roughly the same for, Western) -> Western (8203ms) What is schizophrenia? type 2 diabetes 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, are at increased risk for, type 2 diabetes) -> type 2 diabetes (8203ms) What is schizophrenia? David Cornwell Tony Zichi 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (David Cornwell Tony Zichi, did n?t choose to have, schizophrenia) -> David Cornwell Tony Zichi (8141ms) What is schizophrenia? influenza exposure 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, was increased 7-fold for, influenza exposure) -> influenza exposure (8125ms) What is schizophrenia? the minor allele 0.11111111111 What is schizophrenia? -> $x: (schizophrenia, be for, $x) -> (schizophrenia, are homozygous for, the minor allele) -> the minor allele (8141ms) What is schizophrenia? auditory cortex 0.11111111111 What is schizophrenia? -> $x: ($x, characterize, schizophrenia) -> (auditory cortex, reliably characterizes, schizophrenia) -> auditory cortex (8157ms) What is schizophrenia? a psychosis 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (a psychosis, was "doing, a schizophrenia) -> a psychosis (8109ms) What is schizophrenia? Malkin 0.11111111111 What is schizophrenia? -> $x: ($x, do, schizophrenia) -> (Malkin, did n?t say something like, ?Schizophrenia) -> Malkin (8156ms) What is schizophrenia? small non-connected areas -0.0 What is schizophrenia? -> $x: ($x, create, schizophrenia) -> (small non-connected areas, creates, schizophrenia) -> small non-connected areas (8247ms) What is schizophrenia? A large study -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (A large study, found the risk of, schizophrenia) -> A large study (8278ms) What is schizophrenia? the world scientists -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (the world scientists, are finding, schizophrenia-related genes) -> the world scientists (8278ms) What is schizophrenia? mother-infant interaction -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (mother-infant interaction, found in, the schizophrenia group) -> mother-infant interaction (8278ms) What is schizophrenia? Auditory hallucinations -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (Auditory hallucinations, are classically found in, schizophrenia) -> Auditory hallucinations (8307ms) What is schizophrenia? Dopamine hypothesis of schizophrenia -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (Dopamine hypothesis of schizophrenia, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Dopamine%20hypothesis%20of%20schizophrenia) -> Dopamine hypothesis of schizophrenia (8232ms) What is schizophrenia? structures -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (structures, found to be abnormal in, chronic schizophrenia) -> structures (8278ms) What is schizophrenia? He?s -0.0 What is schizophrenia? -> $x: ($x, deal with, schizophrenia) -> (He?s, dealt with, schizophrenia) -> He?s (8292ms) What is schizophrenia? a family member -0.0 What is schizophrenia? -> $x: ($x, deal with, schizophrenia) -> (a family member, dealing with, schizophrenia) -> a family member (8233ms) What is schizophrenia? the nervous system -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (the nervous system, is found in, schizophrenia) -> the nervous system (8248ms) What is schizophrenia? Israel -0.0 What is schizophrenia? -> $x: ($x, create, schizophrenia) -> (Israel, is creating a kind of, moral schizophrenia) -> Israel (8307ms) What is schizophrenia? 14 Brown -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (14 Brown, found a seven-fold increased risk of, schizophrenia) -> 14 Brown (8278ms) What is schizophrenia? no genes -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (no genes, have been found for, depression or schizophrenia) -> no genes (8248ms) What is schizophrenia? 18 Brown -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (18 Brown, found a seven-fold increased risk of, schizophrenia) -> 18 Brown (8292ms) What is schizophrenia? The work -0.0 What is schizophrenia? -> $x: ($x, deal with, schizophrenia) -> (The work, deals with, schizophrenia) -> The work (8292ms) What is schizophrenia? INVEGA? and Schizophrenia -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (INVEGA? and Schizophrenia, Find, schizophrenia) -> INVEGA? and Schizophrenia (8248ms) What is schizophrenia? Helping -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (Helping, Find Treatment For, Schizophrenia) -> Helping (8233ms) What is schizophrenia? enrollment -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (enrollment, was found in, 6 first-episode schizophrenia) -> enrollment (8307ms) What is schizophrenia? The MGS study -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (The MGS study, also found an association between, schizophrenia) -> The MGS study (8233ms) What is schizophrenia? the disturbance -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (the disturbance, is found in, schizophrenia) -> the disturbance (8233ms) What is schizophrenia? Brian Cohn -0.0 What is schizophrenia? -> $x: ($x, deal with, schizophrenia) -> (Brian Cohn, was learning to deal with, the Schizophrenia) -> Brian Cohn (8263ms) What is schizophrenia? diagnostic , physical abnormality -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (diagnostic , physical abnormality, is found in, schizophrenia) -> diagnostic , physical abnormality (8307ms) What is schizophrenia? Divergent ERP responses -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (Divergent ERP responses, have been found in, schizophrenia) -> Divergent ERP responses (8262ms) What is schizophrenia? A scientist -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (A scientist, finds a gene associated with, schizophrenia) -> A scientist (8278ms) What is schizophrenia? More information -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (More information, can be found about, schizophrenia) -> More information (8248ms) What is schizophrenia? a freelance writer -0.0 What is schizophrenia? -> $x: ($x, deal with, schizophrenia) -> (a freelance writer, has been dealing with, schizophrenia) -> a freelance writer (8247ms) What is schizophrenia? schizophrenia_research -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (schizophrenia_research, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Schizophrenia%20Research) -> schizophrenia_research (8278ms) What is schizophrenia? A peptide -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (A peptide, found in, schizophrenia and autism) -> A peptide (8292ms) What is schizophrenia? Cognitive deficits -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (Cognitive deficits, found in, patients with schizophrenia) -> Cognitive deficits (8307ms) What is schizophrenia? Study -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (Study, finds patients with, schizophrenia) -> Study (8292ms) What is schizophrenia? a relation -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (a relation, has been found between, schizophrenia) -> a relation (8248ms) What is schizophrenia? Morality -0.0 What is schizophrenia? -> $x: ($x, create, schizophrenia) -> (Morality, creates, schizophrenia) -> Morality (8233ms) What is schizophrenia? 7 Brown -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (7 Brown, found a seven-fold increased risk of, schizophrenia) -> 7 Brown (8247ms) What is schizophrenia? Sedlacek -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (Sedlacek, was found to have, schizophrenia) -> Sedlacek (8233ms) What is schizophrenia? Disorganized schizophrenia -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (Disorganized schizophrenia, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Disorganized%20schizophrenia) -> Disorganized schizophrenia (8292ms) What is schizophrenia? 4 / 5 -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (4 / 5, Find, More Schizophrenia) -> 4 / 5 (8307ms) What is schizophrenia? I?ve -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (I?ve, always found, schizophrenia fuckin? excellent) -> I?ve (8262ms) What is schizophrenia? Numerous brain abnormalities -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (Numerous brain abnormalities, have been found in, schizophrenia) -> Numerous brain abnormalities (8307ms) What is schizophrenia? The new reality -0.0 What is schizophrenia? -> $x: ($x, create, schizophrenia) -> (The new reality, created the feeling of, schizophrenia) -> The new reality (8307ms) What is schizophrenia? aetiology -0.0 What is schizophrenia? -> $x: ($x, refer, schizophrenia) -> (aetiology, is referred to as, schizophrenia) -> aetiology (8262ms) What is schizophrenia? a family -0.0 What is schizophrenia? -> $x: ($x, deal with, schizophrenia) -> (a family, dealing with, schizophrenia) -> a family (8292ms) What is schizophrenia? No single cause -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (No single cause, has been found for, schizophrenia) -> No single cause (8262ms) What is schizophrenia? e-mail -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (e-mail, Find, schizophrenia) -> e-mail (8278ms) What is schizophrenia? long-term follow-up -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (long-term follow-up, usually finds, schizophrenia) -> long-term follow-up (8262ms) What is schizophrenia? King -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (King, found the exact same prevalence of, schizophrenia) -> King (8248ms) What is schizophrenia? context use -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (context use, found previously in, schizophrenia and male SPD) -> context use (8248ms) What is schizophrenia? The researchers -0.0 What is schizophrenia? -> $x: ($x, happen to, schizophrenia) -> (The researchers, might happen to, schizophrenia cases) -> The researchers (8233ms) What is schizophrenia? No association -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (No association, was found with, schizophrenia) -> No association (8248ms) What is schizophrenia? Nava?s dual positions -0.0 What is schizophrenia? -> $x: ($x, create, schizophrenia) -> (Nava?s dual positions, had created a sort of, ?schizophrenia?) -> Nava?s dual positions (8262ms) What is schizophrenia? evidence -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (evidence, found in, all schizophrenia algorithms) -> evidence (8233ms) What is schizophrenia? King?s research -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (King?s research, found a two-fold increase in, schizophrenia) -> King?s research (8278ms) What is schizophrenia? an increased receptor density -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (an increased receptor density, was found in, schizophrenia) -> an increased receptor density (8262ms) What is schizophrenia? high levels -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (high levels, are found in, schizophrenia) -> high levels (8307ms) What is schizophrenia? the literature inquiring -0.0 What is schizophrenia? -> $x: ($x, happen to, schizophrenia) -> (the literature inquiring, happens to, Schizophrenia) -> the literature inquiring (8262ms) What is schizophrenia? Durden -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (Durden, was found to be suffering from, paranoid schizophrenia) -> Durden (8248ms) What is schizophrenia? Intellectual impairments -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (Intellectual impairments, are commonly found in, schizophrenia) -> Intellectual impairments (8292ms) What is schizophrenia? apoptosis -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (apoptosis, is found associated with, schizophrenia) -> apoptosis (8233ms) What is schizophrenia? everyone disappoints -0.0 What is schizophrenia? -> $x: ($x, create, schizophrenia) -> (everyone disappoints, creates a bit of, schizophrenia) -> everyone disappoints (8233ms) What is schizophrenia? young Muslim -0.0 What is schizophrenia? -> $x: ($x, create, schizophrenia) -> (young Muslim, creates, a schizophrenia) -> young Muslim (8262ms) What is schizophrenia? Anorexia -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (Anorexia, has been found to be as inheritable as, schizophrenia) -> Anorexia (8292ms) What is schizophrenia? the scientists -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (the scientists, must find out the cause of, schizophrenia) -> the scientists (8278ms) What is schizophrenia? cyberspace networks -0.0 What is schizophrenia? -> $x: ($x, create, schizophrenia) -> (cyberspace networks, also create, schizophrenia) -> cyberspace networks (8278ms) What is schizophrenia? 1959 -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (1959, found the rate of, Schizophrenia) -> 1959 (8278ms) What is schizophrenia? Scotland -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (Scotland, found a significant decline in, schizophrenia) -> Scotland (8233ms) What is schizophrenia? An earlier study -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (An earlier study, found twice the risk of, schizophrenia) -> An earlier study (8307ms) What is schizophrenia? food -0.0 What is schizophrenia? -> $x: ($x, refer, schizophrenia) -> (food, refers to, ?schizophrenia) -> food (8307ms) What is schizophrenia? ventral pathway abnormalities -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (ventral pathway abnormalities, were only found in, schizophrenia) -> ventral pathway abnormalities (8292ms) What is schizophrenia? Shame based religion -0.0 What is schizophrenia? -> $x: ($x, create, schizophrenia) -> (Shame based religion, created, a certain schizophrenia) -> Shame based religion (8262ms) What is schizophrenia? no country -0.0 What is schizophrenia? -> $x: ($x, found, schizophrenia) -> (no country, was found to be free of, schizophrenia) -> no country (8292ms) What is schizophrenia? alcoholics -0.0 What is schizophrenia? -> $x: ($x, deal with, schizophrenia) -> (alcoholics, have had to deal with, schizophrenia) -> alcoholics (8292ms) What is schizophrenia? ?Israel -0.0 What is schizophrenia? -> $x: ($x, create, schizophrenia) -> (?Israel, is creating a kind of, moral schizophrenia) -> ?Israel (8262ms) What is schizophrenia? common -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (common, is, Schizophrenia ?) -> common (8498ms) What is schizophrenia? Older people and children -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Older people and children, can develop, schizophrenia) -> Older people and children (8336ms) What is schizophrenia? ?clear consciousness -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (?clear consciousness, is contestable in, schizophrenia) -> ?clear consciousness (8601ms) What is schizophrenia? NRG1-induced AKT phosphorylation -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (NRG1-induced AKT phosphorylation, is decreased in, schizophrenia) -> NRG1-induced AKT phosphorylation (8548ms) What is schizophrenia? the store , redheads and blonds -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (the store , redheads and blonds, are prone to, schizophrenia) -> the store , redheads and blonds (8575ms) What is schizophrenia? the thought process -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (the thought process, is more similar to, schizophrenia) -> the thought process (8392ms) What is schizophrenia? Afghanistan -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Afghanistan, is, schizophrenia) -> Afghanistan (8584ms) What is schizophrenia? expertise -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (expertise, is, schizophrenia) -> expertise (8593ms) What is schizophrenia? microRNAs -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (microRNAs, may be altered in, schizophrenia) -> microRNAs (8433ms) What is schizophrenia? Depression -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Depression, is an emotion associated with, Schizophrenia) -> Depression (8557ms) What is schizophrenia? The problem -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (The problem, is highly similar to, schizophrenia) -> The problem (8610ms) What is schizophrenia? 30 times higher -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is about, 30 times higher) -> 30 times higher (8392ms) What is schizophrenia? head injury -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (head injury, however can be seen in, schizophrenia) -> head injury (8601ms) What is schizophrenia? cyanocobalamin -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (cyanocobalamin, is useful in treating, schizophrenia) -> cyanocobalamin (8365ms) What is schizophrenia? 1 percent -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is about, 1 percent) -> 1 percent (8566ms) What is schizophrenia? Paliperidone -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Paliperidone, is used to treat, schizophrenia) -> Paliperidone (8584ms) What is schizophrenia? CB1R immunoreactivity -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (CB1R immunoreactivity, may be common in, schizophrenia) -> CB1R immunoreactivity (8593ms) What is schizophrenia? 3.5 -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, was about, 3.5) -> 3.5 (8519ms) What is schizophrenia? Lewis SW -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Lewis SW, Is, Schizophrenia) -> Lewis SW (8350ms) What is schizophrenia? Religion -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Religion, is, schizophrenia) -> Religion (8566ms) What is schizophrenia? motivation and judgment -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (motivation and judgment, are all common in, schizophrenia) -> motivation and judgment (8350ms) What is schizophrenia? the big concerns -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the big concerns, is, schizophrenia) -> the big concerns (8392ms) What is schizophrenia? marijuana usage -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (marijuana usage, can be a contributing trigger to, schizophrenia) -> marijuana usage (8472ms) What is schizophrenia? common genetic variations -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (common genetic variations, can lead to, schizophrenia) -> common genetic variations (8321ms) What is schizophrenia? one percent -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is about, one percent) -> one percent (8433ms) What is schizophrenia? inadequate social skills -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (inadequate social skills, can bring on, schizophrenia) -> inadequate social skills (8379ms) What is schizophrenia? An Overview -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (An Overview, Is, Schizophrenia) -> An Overview (8584ms) What is schizophrenia? Hoffman-LaRoche -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Hoffman-LaRoche, is, schizophrenia) -> Hoffman-LaRoche (8392ms) What is schizophrenia? the extent -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, little is known about, the extent) -> the extent (8379ms) What is schizophrenia? psychiatry -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (psychiatry, are, schizophrenia) -> psychiatry (8419ms) What is schizophrenia? whites -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (whites, to be diagnosed with, schizophrenia) -> whites (8350ms) What is schizophrenia? Dysbandin expression -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (Dysbandin expression, is decreased in, schizophrenia) -> Dysbandin expression (8419ms) What is schizophrenia? Toxo infection -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Toxo infection, may be linked to, schizophrenia) -> Toxo infection (8419ms) What is schizophrenia? amphetamines -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (amphetamines, are virtually identical to, schizophrenia) -> amphetamines (8433ms) What is schizophrenia? adverse conditions -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (adverse conditions, are likely linked to, schizophrenia) -> adverse conditions (8498ms) What is schizophrenia? Lorazepam -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Lorazepam, can help some patients with, schizophrenia) -> Lorazepam (8601ms) What is schizophrenia? MET -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, influence, schizophrenia) -> (MET, influenced the risk for, schizophrenia) -> MET (8419ms) What is schizophrenia? GRM3 gene -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (GRM3 gene, have been implicated in, schizophrenia) -> GRM3 gene (8528ms) What is schizophrenia? more than one month -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (more than one month, is needed to diagnose, schizophrenia) -> more than one month (8321ms) What is schizophrenia? DISC1 binding partners -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (DISC1 binding partners, is reduced in, schizophrenia) -> DISC1 binding partners (8350ms) What is schizophrenia? pruning -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (pruning, has been implicated in, schizophrenia) -> pruning (8472ms) What is schizophrenia? the above factors -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, influence, schizophrenia) -> (the above factors, influence the course of, schizophrenia) -> the above factors (8485ms) What is schizophrenia? Hallucinations -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (Hallucinations, are common in, schizophrenia) -> Hallucinations (8459ms) What is schizophrenia? CLOZAPINE -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (CLOZAPINE, is used to treat, schizophrenia) -> CLOZAPINE (8321ms) What is schizophrenia? seroquel -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (seroquel, is a drug that might treat, Schizophrenia) -> seroquel (8575ms) What is schizophrenia? predominant concern -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (predominant concern, are, schizophrenia) -> predominant concern (8547ms) What is schizophrenia? cognitive impairment -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (cognitive impairment, was higher in, schizophrenia) -> cognitive impairment (8365ms) What is schizophrenia? voice hearers -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (voice hearers, can be diagnosed with, schizophrenia) -> voice hearers (8584ms) What is schizophrenia? The same -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (The same, can be said of, Schizophrenia) -> The same (8321ms) What is schizophrenia? The condition -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (The condition, is thought to be linked to, schizophrenia) -> The condition (8508ms) What is schizophrenia? cognition -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (cognition, have been reported in, schizophrenia) -> cognition (8350ms) What is schizophrenia? sample size -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (Schizophrenia Bulletin, is all about, sample size) -> sample size (8350ms) What is schizophrenia? the past -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the past, were, schizophrenia) -> the past (8538ms) What is schizophrenia? So lobotomy -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (So lobotomy, was used to treat, schizophrenia) -> So lobotomy (8406ms) What is schizophrenia? Modern medicine -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Modern medicine, can diagnose, schizophrenia) -> Modern medicine (8557ms) What is schizophrenia? higher doses -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (higher doses, is used to treat, schizophrenia) -> higher doses (8529ms) What is schizophrenia? 1 % -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is about, 1 %) -> 1 % (8321ms) What is schizophrenia? DISC1 splice variants -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (DISC1 splice variants, are upregulated in, schizophrenia) -> DISC1 splice variants (8459ms) What is schizophrenia? total neuron number -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (total neuron number, are reduced in, schizophrenia) -> total neuron number (8601ms) What is schizophrenia? clozapine -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (clozapine, is a drug that might treat, Schizophrenia) -> clozapine (8538ms) What is schizophrenia? The drug -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (The drug, is used to treat, schizophrenia) -> The drug (8365ms) What is schizophrenia? sensory input processing -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (sensory input processing, is often impaired in, schizophrenia) -> sensory input processing (8498ms) What is schizophrenia? Panic attacks -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Panic attacks, are often associated to, schizophrenia) -> Panic attacks (8419ms) What is schizophrenia? Abilify -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Abilify, can help, schizophrenia) -> Abilify (8584ms) What is schizophrenia? mental illnesses -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (mental illnesses, is, schizophrenia) -> mental illnesses (8498ms) What is schizophrenia? now its most overt manifestation -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (now its most overt manifestation, is, schizophrenia) -> now its most overt manifestation (8621ms) What is schizophrenia? only psychiatrists -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (only psychiatrists, can provide for, schizophrenia) -> only psychiatrists (8620ms) What is schizophrenia? Flutterrage -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Flutterrage, is, schizophrenia) -> Flutterrage (8498ms) What is schizophrenia? patients Risperidone -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (patients Risperidone, is used to treat, schizophrenia) -> patients Risperidone (8557ms) What is schizophrenia? nineteen million dollars -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is about, nineteen million dollars) -> nineteen million dollars (8519ms) What is schizophrenia? the issue -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the issue, was, schizophrenia) -> the issue (8620ms) What is schizophrenia? the Mentally Ill -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the Mentally Ill, Is, Schizophrenia) -> the Mentally Ill (8584ms) What is schizophrenia? The a7-nAChRs -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (The a7-nAChRs, are also linked to, Schizophrenia) -> The a7-nAChRs (8459ms) What is schizophrenia? An example of a psychotic disorder -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (An example of a psychotic disorder, is, Schizophrenia) -> An example of a psychotic disorder (8459ms) What is schizophrenia? Clozaril -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Clozaril, is used to treat, schizophrenia) -> Clozaril (8575ms) What is schizophrenia? the definition -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, are questions about, the definition) -> the definition (8601ms) What is schizophrenia? Bipolar Disorder -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Bipolar Disorder, can go on to develop, Schizophrenia) -> Bipolar Disorder (8610ms) What is schizophrenia? ADHD children -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (ADHD children, were developed to treat, schizophrenia) -> ADHD children (8419ms) What is schizophrenia? the cortex -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (the cortex, is extensive in, schizophrenia) -> the cortex (8419ms) What is schizophrenia? The first example -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (The first example, is, schizophrenia) -> The first example (8547ms) What is schizophrenia? 60 Minutes and PBS Frontline -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (60 Minutes and PBS Frontline, is, schizophrenia) -> 60 Minutes and PBS Frontline (8485ms) What is schizophrenia? Psychosocial treatments -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Psychosocial treatments, can help people with, schizophrenia) -> Psychosocial treatments (8557ms) What is schizophrenia? Schizo-Affctive -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Schizo-Affctive, is, Schizophrenia) -> Schizo-Affctive (8365ms) What is schizophrenia? dissociation -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (dissociation, can lead to, schizophrenia) -> dissociation (8459ms) What is schizophrenia? one twin -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (one twin, can develop, schizophrenia) -> one twin (8485ms) What is schizophrenia? Family counselling -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Family counselling, can help people with, schizophrenia) -> Family counselling (8433ms) What is schizophrenia? antipsychotics -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (antipsychotics, are used to treat, schizophrenia) -> antipsychotics (8459ms) What is schizophrenia? The hippocampus -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (The hippocampus, is strongly implicated in, schizophrenia) -> The hippocampus (8406ms) What is schizophrenia? adderall users -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (adderall users, is related to, schizophrenia) -> adderall users (8406ms) What is schizophrenia? OLANZAPINE -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (OLANZAPINE, is used to treat, schizophrenia) -> OLANZAPINE (8419ms) What is schizophrenia? speed -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (speed, are known problems in, schizophrenia) -> speed (8392ms) What is schizophrenia? disjointed ways -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (disjointed ways, is common in, schizophrenia) -> disjointed ways (8472ms) What is schizophrenia? a 10 % risk -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (Schizophrenia, is associated with about, a 10 % risk) -> a 10 % risk (8557ms) What is schizophrenia? niacin pyridoxine -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (niacin pyridoxine, is useful in treating, schizophrenia) -> niacin pyridoxine (8610ms) What is schizophrenia? multiple pathogens -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (multiple pathogens, have been implicated in, schizophrenia) -> multiple pathogens (8547ms) What is schizophrenia? Quetiapine -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Quetiapine, is used to treat, schizophrenia) -> Quetiapine (8593ms) What is schizophrenia? prevalent -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia spectrum disorders, are about twice as, prevalent) -> prevalent (8519ms) What is schizophrenia? online zyprexa -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (online zyprexa, can be prescribed for, schizophrenia) -> online zyprexa (8433ms) What is schizophrenia? tri-personal -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (tri-personal, is, schizophrenia) -> tri-personal (8472ms) What is schizophrenia? risperdal -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (risperdal, is a drug that might treat, Schizophrenia) -> risperdal (8472ms) What is schizophrenia? 2006 -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (2006, is, schizophrenia) -> 2006 (8557ms) What is schizophrenia? an expert -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (an expert, can cure, schizophrenia) -> an expert (8378ms) What is schizophrenia? symptoms -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (symptoms, can be diagnosed as, schizophrenia) -> symptoms (8459ms) What is schizophrenia? insight -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (insight, was first identified in, schizophrenia) -> insight (8593ms) What is schizophrenia? comparison subjects -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (comparison subjects, has been shown in, schizophrenia) -> comparison subjects (8575ms) What is schizophrenia? chromosome 16 -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (chromosome 16, can increase the risk of, schizophrenia) -> chromosome 16 (8498ms) What is schizophrenia? Atypical antipsychotics -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Atypical antipsychotics, are used to treat, schizophrenia) -> Atypical antipsychotics (8365ms) What is schizophrenia? Bipolar illness -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Bipolar illness, is, schizophrenia) -> Bipolar illness (8433ms) What is schizophrenia? COMT -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (COMT, is involved in, schizophrenia) -> COMT (8446ms) What is schizophrenia? LOXAPINE -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (LOXAPINE, is used to manage, schizophrenia) -> LOXAPINE (8621ms) What is schizophrenia? Only a doctor -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Only a doctor, can diagnose, schizophrenia) -> Only a doctor (8350ms) What is schizophrenia? chromosome 8p12 -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, influence, schizophrenia) -> (chromosome 8p12, influences susceptibility to, schizophrenia) -> chromosome 8p12 (8379ms) What is schizophrenia? nicotinic acid -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (nicotinic acid, is effective in treating, schizophrenia) -> nicotinic acid (8392ms) What is schizophrenia? Recognition -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Recognition, can be normalized in, schizophrenia) -> Recognition (8446ms) What is schizophrenia? addiction -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (addiction, are, schizophrenia) -> addiction (8529ms) What is schizophrenia? the diagnosis -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the diagnosis, is, schizophrenia) -> the diagnosis (8447ms) What is schizophrenia? Egon Leubner -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (Egon Leubner, was interested in, schizophrenia) -> Egon Leubner (8538ms) What is schizophrenia? critical roles -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (critical roles, is affected in, schizophrenia) -> critical roles (8378ms) What is schizophrenia? Glutamate -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (Glutamate, is also deficient in, schizophrenia) -> Glutamate (8433ms) What is schizophrenia? African Americans -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (African Americans, to be diagnosed with, schizophrenia) -> African Americans (8610ms) What is schizophrenia? Acupuncture -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (Acupuncture, was effective in alleviating, schizophrenia) -> Acupuncture (8485ms) What is schizophrenia? Antipsychotic medication -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Antipsychotic medication, is key to treating, schizophrenia) -> Antipsychotic medication (8485ms) What is schizophrenia? social support -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, influence, schizophrenia) -> (social support, might influence the prevalence of, schizophrenia) -> social support (8620ms) What is schizophrenia? such damage -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (such damage, is also seen in, schizophrenia) -> such damage (8547ms) What is schizophrenia? the disease -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, should be educated about, the disease) -> the disease (8519ms) What is schizophrenia? One Dutch reader -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (One Dutch reader, was particularly interested in, schizophrenia) -> One Dutch reader (8547ms) What is schizophrenia? severe nausea -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (severe nausea, is used to treat, schizophrenia) -> severe nausea (8472ms) What is schizophrenia? 1 Yes No -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (1 Yes No, is, schizophrenia) -> 1 Yes No (8557ms) What is schizophrenia? 10 -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is about, 10) -> 10 (8508ms) What is schizophrenia? a given point -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (a given point, can be quite similar between, schizophrenia) -> a given point (8336ms) What is schizophrenia? the patients -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the patients, were, schizophrenia) -> the patients (8379ms) What is schizophrenia? Among the health conditions -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Among the health conditions, are, Schizophrenia) -> Among the health conditions (8459ms) What is schizophrenia? sentences -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (sentences, was normal in, schizophrenia) -> sentences (8433ms) What is schizophrenia? NAMI | Schizophrenia -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (NAMI | Schizophrenia, Is, Schizophrenia) -> NAMI | Schizophrenia (8575ms) What is schizophrenia? overactive dopamine pathways -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (overactive dopamine pathways, are implicated in, schizophrenia) -> overactive dopamine pathways (8392ms) What is schizophrenia? The first one -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (The first one, is, Schizophrenia) -> The first one (8508ms) What is schizophrenia? 13 percent -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is about, 13 percent) -> 13 percent (8472ms) What is schizophrenia? private -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (private, Is, Schizophrenia) -> private (8321ms) What is schizophrenia? The alpha-7 receptor -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (The alpha-7 receptor, is important in, schizophrenia) -> The alpha-7 receptor (8566ms) What is schizophrenia? control -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (control, are, schizophrenia) -> control (8519ms) What is schizophrenia? Haldol -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Haldol, was used to treat, schizophrenia) -> Haldol (8378ms) What is schizophrenia? Toxo -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Toxo, is, schizophrenia) -> Toxo (8321ms) What is schizophrenia? the depression -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (the depression, can accompany, Schizophrenia) -> the depression (8547ms) What is schizophrenia? psychological treatments -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (psychological treatments, can help people with, schizophrenia) -> psychological treatments (8336ms) What is schizophrenia? no organic lesion -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (no organic lesion, are, schizophrenia) -> no organic lesion (8584ms) What is schizophrenia? NIMH Schizophrenia ? -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (NIMH Schizophrenia ?, is, schizophrenia) -> NIMH Schizophrenia ? (8584ms) What is schizophrenia? Psychotherapy -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Psychotherapy, be used to treat, Schizophrenia) -> Psychotherapy (8566ms) What is schizophrenia? 66 -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (66, is dopamine implicated in, schizophrenia) -> 66 (8498ms) What is schizophrenia? prolonged meth abuse -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (prolonged meth abuse, can resemble those of, schizophrenia) -> prolonged meth abuse (8538ms) What is schizophrenia? PCP -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (PCP, can be confused with, schizophrenia) -> PCP (8575ms) What is schizophrenia? 25 % -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is about, 25 %) -> 25 % (8365ms) What is schizophrenia? glutamate -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (glutamate, may be involved in, schizophrenia) -> glutamate (8584ms) What is schizophrenia? sun-deprived regions -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (sun-deprived regions, are especially prone to, schizophrenia) -> sun-deprived regions (8566ms) What is schizophrenia? neurotransmitters -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (neurotransmitters, has been linked to, schizophrenia) -> neurotransmitters (8575ms) What is schizophrenia? The same deficiencies -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (The same deficiencies, are common in, schizophrenia) -> The same deficiencies (8584ms) What is schizophrenia? Various treatments -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (Various treatments, are used in handling, schizophrenia) -> Various treatments (8365ms) What is schizophrenia? five -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (five, can develop, schizophrenia) -> five (8593ms) What is schizophrenia? 50 % -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is about, 50 %) -> 50 % (8433ms) What is schizophrenia? retreatism -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (retreatism, is, schizophrenia) -> retreatism (8538ms) What is schizophrenia? Kundalini Yoga -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Kundalini Yoga, are used to model, Schizophrenia) -> Kundalini Yoga (8575ms) What is schizophrenia? perc -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (perc, can increase the risk of, schizophrenia) -> perc (8307ms) What is schizophrenia? Risperidone Risperidone -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Risperidone Risperidone, is used to treat, schizophrenia) -> Risperidone Risperidone (8350ms) What is schizophrenia? adderall customers -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (adderall customers, is comparable to, schizophrenia) -> adderall customers (8538ms) What is schizophrenia? the corpus callosum -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (the corpus callosum, is abnormal in, schizophrenia) -> the corpus callosum (8557ms) What is schizophrenia? cannabis use -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (cannabis use, can trigger, schizophrenia) -> cannabis use (8566ms) What is schizophrenia? 3 times -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is about, 3 times) -> 3 times (8321ms) What is schizophrenia? The most common psychosis -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (The most common psychosis, is, schizophrenia) -> The most common psychosis (8405ms) What is schizophrenia? memory saccade -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (memory saccade, is often impaired in, schizophrenia) -> memory saccade (8529ms) What is schizophrenia? the innocent and guilty -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the innocent and guilty, is, Schizophrenia) -> the innocent and guilty (8446ms) What is schizophrenia? the young people -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (the young people, was then considered to be, schizophrenia) -> the young people (8557ms) What is schizophrenia? The most commonly known mental health issue -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (The most commonly known mental health issue, is, schizophrenia ?) -> The most commonly known mental health issue (8433ms) What is schizophrenia? the cause -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the cause, is, Schizophrenia) -> the cause (8378ms) What is schizophrenia? the answer -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the answer, is, schizophrenia) -> the answer (8307ms) What is schizophrenia? the illness -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, are educated about, the illness) -> the illness (8321ms) What is schizophrenia? the most prevalent psychosis -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the most prevalent psychosis, is, schizophrenia) -> the most prevalent psychosis (8621ms) What is schizophrenia? substance misuse -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (substance misuse, can aggravate the symptoms of, schizophrenia) -> substance misuse (8508ms) What is schizophrenia? 30 % -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is only about, 30 %) -> 30 % (8529ms) What is schizophrenia? non-users -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (non-users, to be diagnosed with, schizophrenia) -> non-users (8566ms) What is schizophrenia? CBT -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (CBT, can successfully treat people with, schizophrenia) -> CBT (8365ms) What is schizophrenia? The diagnosis -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (The diagnosis, was, schizophrenia) -> The diagnosis (8508ms) What is schizophrenia? psychosis -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (psychosis, can occur with, schizophrenia) -> psychosis (8593ms) What is schizophrenia? LAN za peen -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (LAN za peen, is used to treat, schizophrenia) -> LAN za peen (8392ms) What is schizophrenia? possible impacts -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia patients, little is known about, possible impacts) -> possible impacts (8621ms) What is schizophrenia? Risperdal -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Risperdal, is approved to treat, schizophrenia) -> Risperdal (8593ms) What is schizophrenia? Drug use -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Drug use, can mimic the symptoms of, schizophrenia) -> Drug use (8365ms) What is schizophrenia? brain cells -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (brain cells, are damaged in, schizophrenia) -> brain cells (8405ms) What is schizophrenia? protein X -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (protein X, was involved in, schizophrenia) -> protein X (8459ms) What is schizophrenia? BPD -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, was written about, BPD) -> BPD (8538ms) What is schizophrenia? the dentate gyrus -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (the dentate gyrus, was decreased in, schizophrenia) -> the dentate gyrus (8584ms) What is schizophrenia? the risk factors -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is crucial to finding out about, the risk factors) -> the risk factors (8365ms) What is schizophrenia? private What -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (private What, is, schizophrenia) -> private What (8508ms) What is schizophrenia? perception and attention -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (perception and attention, are common in, schizophrenia) -> perception and attention (8529ms) What is schizophrenia? NMDARs -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (NMDARs, was suspected in, schizophrenia) -> NMDARs (8529ms) What is schizophrenia? such functions -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (such functions, has been implicated in, schizophrenia) -> such functions (8538ms) What is schizophrenia? an anti-depressant and -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (an anti-depressant and, can treat, schizophrenia) -> an anti-depressant and (8350ms) What is schizophrenia? deeper laminae -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (deeper laminae, are decreased in, schizophrenia) -> deeper laminae (8433ms) What is schizophrenia? fickle human behavior -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (fickle human behavior, can be related to, schizophrenia) -> fickle human behavior (8620ms) What is schizophrenia? performing lobotomies -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (performing lobotomies, was to treat, schizophrenia) -> performing lobotomies (8621ms) What is schizophrenia? Dopaminergic overactivity -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Dopaminergic overactivity, is linked to, schizophrenia) -> Dopaminergic overactivity (8529ms) What is schizophrenia? OCD -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (OCD, is a precursor to, Schizophrenia) -> OCD (8498ms) What is schizophrenia? Zyprexa -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Zyprexa, is approved to treat, schizophrenia) -> Zyprexa (8610ms) What is schizophrenia? Substance abuse -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (Substance abuse, is very common in, Schizophrenia) -> Substance abuse (8621ms) What is schizophrenia? attention training -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (attention training, is effective in, schizophrenia) -> attention training (8419ms) What is schizophrenia? physical exercise -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (physical exercise, can help reduce symptoms of, schizophrenia) -> physical exercise (8575ms) What is schizophrenia? results -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (results, are normal in, schizophrenia) -> results (8601ms) What is schizophrenia? an attorney -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (an attorney, is, Schizophrenia) -> an attorney (8336ms) What is schizophrenia? celiac disease -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (celiac disease, are highly exposed to, Schizophrenia) -> celiac disease (8321ms) What is schizophrenia? Teens -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Teens, can get, schizophrenia) -> Teens (8459ms) What is schizophrenia? the drug -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (the drug, can hasten the onset of, schizophrenia) -> the drug (8446ms) What is schizophrenia? the CUS -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (the CUS, was driven to, schizophrenia) -> the CUS (8538ms) What is schizophrenia? the most common main diagnoses -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the most common main diagnoses, were, schizophrenia) -> the most common main diagnoses (8566ms) What is schizophrenia? refreshing -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (refreshing, was impaired in, schizophrenia) -> refreshing (8575ms) What is schizophrenia? NRG3 -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (NRG3, is linked to, schizophrenia) -> NRG3 (8392ms) What is schizophrenia? nerve cells -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (nerve cells, are altered in, schizophrenia) -> nerve cells (8307ms) What is schizophrenia? The primary diagnoses -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (The primary diagnoses, were, schizophrenia) -> The primary diagnoses (8392ms) What is schizophrenia? inappropriate responses -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (inappropriate responses, is, schizophrenia) -> inappropriate responses (8593ms) What is schizophrenia? The study -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (The study, is, schizophrenia) -> The study (8584ms) What is schizophrenia? African-Americans -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (African-Americans, to be diagnosed with, schizophrenia) -> African-Americans (8365ms) What is schizophrenia? items -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (items, is impaired in, schizophrenia) -> items (8519ms) What is schizophrenia? Thought disorders -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Thought disorders, can occur in, schizophrenia) -> Thought disorders (8610ms) What is schizophrenia? any comments -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (any comments, is, Schizophrenia) -> any comments (8566ms) What is schizophrenia? Schizoaffect Disorder -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Schizoaffect Disorder, is, Schizophrenia) -> Schizoaffect Disorder (8547ms) What is schizophrenia? the public -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (the public, is likely to have, schizophrenia?) -> the public (8321ms) What is schizophrenia? Executive control -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (Executive control, is disturbed in, schizophrenia) -> Executive control (8433ms) What is schizophrenia? Cognition -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (Cognition, is very important in, schizophrenia) -> Cognition (8307ms) What is schizophrenia? 80 % -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, was about, 80 %) -> 80 % (8566ms) What is schizophrenia? P300 -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (P300, have been demonstrated in, schizophrenia) -> P300 (8566ms) What is schizophrenia? primary psychiatric diagnoses -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (primary psychiatric diagnoses, were, schizophrenia) -> primary psychiatric diagnoses (8419ms) What is schizophrenia? linguistic context -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (linguistic context, are disrupted in, schizophrenia) -> linguistic context (8557ms) What is schizophrenia? GABA and glutamate -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (GABA and glutamate, are also implicated in, schizophrenia) -> GABA and glutamate (8529ms) What is schizophrenia? Evidence based treatment summaries -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Evidence based treatment summaries, is, schizophrenia) -> Evidence based treatment summaries (8350ms) What is schizophrenia? A psychiatrist -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (A psychiatrist, can treat those with, schizophrenia) -> A psychiatrist (8419ms) What is schizophrenia? visual perception -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (visual perception, is, schizophrenia) -> visual perception (8472ms) What is schizophrenia? Haloperidol -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Haloperidol, is used to treat, schizophrenia) -> Haloperidol (8620ms) What is schizophrenia? the PubMed search -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the PubMed search, were, 'schizophrenia) -> the PubMed search (8336ms) What is schizophrenia? manganese -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (manganese, can be useful in treating, schizophrenia) -> manganese (8519ms) What is schizophrenia? Medical care -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Medical care, is needed to treat, schizophrenia) -> Medical care (8446ms) What is schizophrenia? January 13 , 2010 -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (January 13 , 2010, is, schizophrenia) -> January 13 , 2010 (8593ms) What is schizophrenia? the drug Clozapine -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (the drug Clozapine, is used to treat, schizophrenia) -> the drug Clozapine (8528ms) What is schizophrenia? Anonymous Seroquel -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Anonymous Seroquel, is used to treat, schizophrenia) -> Anonymous Seroquel (8538ms) What is schizophrenia? the only other topic worth -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (*Schizophrenia, is about, the only other topic worth) -> the only other topic worth (8336ms) What is schizophrenia? the dysbindin gene -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (the dysbindin gene, is linked to, schizophrenia) -> the dysbindin gene (8566ms) What is schizophrenia? Fanapt -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Fanapt, is used to treat, schizophrenia) -> Fanapt (8485ms) What is schizophrenia? Skunk cannabis -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Skunk cannabis, can induce, schizophrenia) -> Skunk cannabis (8336ms) What is schizophrenia? Even genes -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, influence, schizophrenia) -> (Even genes, seem to influence, schizophrenia) -> Even genes (8392ms) What is schizophrenia? the principal form of which -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the principal form of which, is, schizophrenia) -> the principal form of which (8365ms) What is schizophrenia? acute stress -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (acute stress, can trigger the onset of, schizophrenia) -> acute stress (8392ms) What is schizophrenia? the first instance -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, classify as, schizophrenia) -> (the first instance, are classified as, schizophrenia) -> the first instance (8498ms) What is schizophrenia? a certain gene -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (a certain gene, are predisposed to develop, schizophrenia) -> a certain gene (8498ms) What is schizophrenia? pregnancy -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (pregnancy, can increase the risk of, schizophrenia) -> pregnancy (8519ms) What is schizophrenia? ?Personal identity -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (?Personal identity, is frequently disturbed in, schizophrenia) -> ?Personal identity (8446ms) What is schizophrenia? a painter -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, influence, schizophrenia) -> (a painter, was influenced by, his schizophrenia) -> a painter (8575ms) What is schizophrenia? a medication -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (a medication, can also be used for, schizophrenia) -> a medication (8601ms) What is schizophrenia? communication -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (communication, is key to managing, schizophrenia) -> communication (8610ms) What is schizophrenia? the cerebral cortex -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (the cerebral cortex, is decreased in, schizophrenia) -> the cerebral cortex (8518ms) What is schizophrenia? the frontal lobe -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (the frontal lobe, can be misdiagnosed as, schizophrenia) -> the frontal lobe (8601ms) What is schizophrenia? amphetamine -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (amphetamine, can exacerbate the symptoms of, schizophrenia) -> amphetamine (8575ms) What is schizophrenia? Altered serotonin levels -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (Altered serotonin levels, have been implicated in, schizophrenia) -> Altered serotonin levels (8336ms) What is schizophrenia? Seroquel -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (Seroquel, is approved to treat, schizophrenia) -> Seroquel (8406ms) What is schizophrenia? a criminal matter -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (a criminal matter, is linked to, schizophrenia) -> a criminal matter (8472ms) What is schizophrenia? the cerebellum -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (the cerebellum, have been implicated in, schizophrenia) -> the cerebellum (8406ms) What is schizophrenia? Extinction memory -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (Extinction memory, is impaired in, schizophrenia) -> Extinction memory (8508ms) What is schizophrenia? stigmatising -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (stigmatising, is, schizophrenia) -> stigmatising (8336ms) What is schizophrenia? B-3 -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (B-3, is used to treat, schizophrenia) -> B-3 (8601ms) What is schizophrenia? out methylation -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (out methylation, have been implicated in, schizophrenia) -> out methylation (8378ms) What is schizophrenia? the experience -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (Schizophrenia Empirically, little is known about, the experience) -> the experience (8472ms) What is schizophrenia? Three major psychiatric disorders -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Three major psychiatric disorders, are, schizophrenia) -> Three major psychiatric disorders (8472ms) What is schizophrenia? healthy subjects -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (healthy subjects, is reduced in, schizophrenia) -> healthy subjects (8628ms) What is schizophrenia? Key Q&A Key Q&A -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (Key Q&A Key Q&A, is, schizophrenia) -> Key Q&A Key Q&A (8519ms) What is schizophrenia? 0.01 -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is about, 0.01) -> 0.01 (8447ms) What is schizophrenia? the most frequent -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the most frequent, is, SCHIZOPHRENIA) -> the most frequent (8508ms) What is schizophrenia? masked stimuli -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (masked stimuli, is impaired in, schizophrenia) -> masked stimuli (8557ms) What is schizophrenia? the medication -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (the medication, is prescribed to treat, schizophrenia) -> the medication (8336ms) What is schizophrenia? psychiatric case register -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (psychiatric case register, Is, schizophrenia) -> psychiatric case register (8472ms) What is schizophrenia? 1-2 % -1.0000056338554941E-12 What is schizophrenia? -> $x: (schizophrenia, be about, $x) -> (schizophrenia, is about, 1-2 %) -> 1-2 % (8601ms) What is schizophrenia? day life situations -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (day life situations, can be a sign of, schizophrenia) -> day life situations (8379ms) What is schizophrenia? SSDs The outcome -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (SSDs The outcome, was, schizophrenia) -> SSDs The outcome (8485ms) What is schizophrenia? interacting genes -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, influence, schizophrenia) -> (interacting genes, influence susceptibility to, schizophrenia) -> interacting genes (8593ms) What is schizophrenia? serum proline -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (serum proline, was specific to, schizophrenia) -> serum proline (8538ms) What is schizophrenia? the research diagnosis -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the research diagnosis, was, schizophrenia) -> the research diagnosis (8610ms) What is schizophrenia? P300 asymmetry -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (P300 asymmetry, is specific to, schizophrenia) -> P300 asymmetry (8365ms) What is schizophrenia? Children -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (Children, can have, Schizophrenia) -> Children (8498ms) What is schizophrenia? 100 -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (100, can be expected to develop, schizophrenia) -> 100 (8620ms) What is schizophrenia? 10360 -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (10360, is, schizophrenia) -> 10360 (8610ms) What is schizophrenia? a patient -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (a patient, to be diagnosed with, schizophrenia) -> a patient (8406ms) What is schizophrenia? April 17 , 2006 -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (April 17 , 2006, is, schizophrenia) -> April 17 , 2006 (8472ms) What is schizophrenia? the primary diagnosis -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (the primary diagnosis, is, Schizophrenia) -> the primary diagnosis (8336ms) What is schizophrenia? illegal hallucinogens -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, can, schizophrenia) -> (illegal hallucinogens, can cause problems with, schizophrenia) -> illegal hallucinogens (8419ms) What is schizophrenia? More About -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (More About, is, Schizophrenia) -> More About (8593ms) What is schizophrenia? THIORIDAZINE -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be to, schizophrenia) -> (THIORIDAZINE, is used to treat, schizophrenia) -> THIORIDAZINE (8610ms) What is schizophrenia? 41 -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be in, schizophrenia) -> (41, was compromised in, schizophrenia) -> 41 (8610ms) What is schizophrenia? a new idea -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (a new idea, was, schizophrenia) -> a new idea (8447ms) What is schizophrenia? split personality -1.0000056338554941E-12 What is schizophrenia? -> $x: ($x, be be, schizophrenia) -> (split personality, is, schizophrenia) -> split personality (8364ms) What is schizophrenia? Approximately 2.4 million Americans -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (Approximately 2.4 million Americans, develop, schizophrenia) -> Approximately 2.4 million Americans (8652ms) What is schizophrenia? a hundred young people -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (a hundred young people, develop, schizophrenia) -> a hundred young people (8629ms) What is schizophrenia? offspring -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (offspring, developing, schizophrenia) -> offspring (8659ms) What is schizophrenia? false memories -0.11111111111100003 What is schizophrenia? -> $x: ($x, induce, schizophrenia) -> (false memories, induce by, schizophrenia) -> false memories (8673ms) What is schizophrenia? Schizotypal Personality Disorder -0.11111111111100003 What is schizophrenia? -> $x: ($x, represent, schizophrenia) -> (Schizotypal Personality Disorder, represents, mild schizophrenia) -> Schizotypal Personality Disorder (8666ms) What is schizophrenia? children and adolescents -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (children and adolescents, develop, schizophrenia) -> children and adolescents (8666ms) What is schizophrenia? the child -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (the child, to develop, schizophrenia) -> the child (8666ms) What is schizophrenia? musical prodigy Nathaniel Ayers -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (musical prodigy Nathaniel Ayers, developed, schizophrenia) -> musical prodigy Nathaniel Ayers (8666ms) What is schizophrenia? Mesoridazine -0.11111111111100003 What is schizophrenia? -> $x: ($x, be use of, schizophrenia) -> (Mesoridazine, is used to treat the symptoms of, schizophrenia) -> Mesoridazine (8629ms) What is schizophrenia? the children -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (the children, developed, schizophrenia) -> the children (8629ms) What is schizophrenia? a musical prodigy -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (a musical prodigy, developed, schizophrenia) -> a musical prodigy (8644ms) What is schizophrenia? high-risk individuals -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (high-risk individuals, developed, schizophrenia) -> high-risk individuals (8659ms) What is schizophrenia? Schizotypal Many -0.11111111111100003 What is schizophrenia? -> $x: ($x, represent, schizophrenia) -> (Schizotypal Many, represents, mild schizophrenia) -> Schizotypal Many (8673ms) What is schizophrenia? kids -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (kids, develop, schizophrenia) -> kids (8652ms) What is schizophrenia? a mechanism -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (a mechanism, develops, schizophrenia) -> a mechanism (8666ms) What is schizophrenia? Approximately 1 % of the population -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (Approximately 1 % of the population, develops, schizophrenia) -> Approximately 1 % of the population (8666ms) What is schizophrenia? a musician -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (a musician, develops, schizophrenia) -> a musician (8636ms) What is schizophrenia? one young lad -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (one young lad, developed, schizophrenia) -> one young lad (8659ms) What is schizophrenia? males -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (males, develop, schizophrenia) -> males (8629ms) What is schizophrenia? Women -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (Women, to develop, schizophrenia) -> Women (8636ms) What is schizophrenia? Used Clozapine -0.11111111111100003 What is schizophrenia? -> $x: ($x, be use of, schizophrenia) -> (Used Clozapine, is used to treat the symptoms of, schizophrenia) -> Used Clozapine (8629ms) What is schizophrenia? A Kabbalah member -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (A Kabbalah member, developed, schizophrenia) -> A Kabbalah member (8644ms) What is schizophrenia? not enough money -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (not enough money, developed, schizophrenia) -> not enough money (8629ms) What is schizophrenia? Slightly more males -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (Slightly more males, develop, schizophrenia) -> Slightly more males (8628ms) What is schizophrenia? a classical bass student -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (a classical bass student, developed, schizophrenia) -> a classical bass student (8644ms) What is schizophrenia? GEODON -0.11111111111100003 What is schizophrenia? -> $x: ($x, be use of, schizophrenia) -> (GEODON, can be used to treat symptoms of, schizophrenia) -> GEODON (8659ms) What is schizophrenia? adults -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (adults, develop, schizophrenia) -> adults (8666ms) What is schizophrenia? only one twin -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (only one twin, develops, schizophrenia) -> only one twin (8644ms) What is schizophrenia? Antipsychotics -0.11111111111100003 What is schizophrenia? -> $x: ($x, be use of, schizophrenia) -> (Antipsychotics, are used to treat the symptoms of, schizophrenia) -> Antipsychotics (8628ms) What is schizophrenia? The cannabis users -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (The cannabis users, developed, schizophrenia) -> The cannabis users (8628ms) What is schizophrenia? a former Juilliard student -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (a former Juilliard student, developed, schizophrenia) -> a former Juilliard student (8652ms) What is schizophrenia? Psilocybin -0.11111111111100003 What is schizophrenia? -> $x: ($x, induce, schizophrenia) -> (Psilocybin, induces, schizophrenia-like psychosis) -> Psilocybin (8659ms) What is schizophrenia? Olanzapine -0.11111111111100003 What is schizophrenia? -> $x: ($x, be use of, schizophrenia) -> (Olanzapine, is used to treat the symptoms of, schizophrenia) -> Olanzapine (8659ms) What is schizophrenia? Prader-Willi syndrome -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (Prader-Willi syndrome, develop, schizophrenia) -> Prader-Willi syndrome (8636ms) What is schizophrenia? one identical twin -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (one identical twin, develops, schizophrenia) -> one identical twin (8666ms) What is schizophrenia? LSD experiments -0.11111111111100003 What is schizophrenia? -> $x: ($x, induce, schizophrenia) -> (LSD experiments, had induced, schizophrenia) -> LSD experiments (8636ms) What is schizophrenia? Saphris -0.11111111111100003 What is schizophrenia? -> $x: ($x, be use of, schizophrenia) -> (Saphris, is used to treat symptoms of, schizophrenia) -> Saphris (8673ms) What is schizophrenia? The patients -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (The patients, developed, schizophrenia) -> The patients (8659ms) What is schizophrenia? drug -0.11111111111100003 What is schizophrenia? -> $x: ($x, induce, schizophrenia) -> (drug, induced, schizophrenia) -> drug (8652ms) What is schizophrenia? 5 years -0.11111111111100003 What is schizophrenia? -> $x: ($x, induce, schizophrenia) -> (5 years, induce, Schizophrenia) -> 5 years (8652ms) What is schizophrenia? men -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (men, to develop, schizophrenia) -> men (8644ms) What is schizophrenia? Luis -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (Luis, developed, schizophrenia) -> Luis (8659ms) What is schizophrenia? 757 subjects -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (757 subjects, developed, schizophrenia) -> 757 subjects (8644ms) What is schizophrenia? Eduard -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (Eduard, developed, schizophrenia) -> Eduard (8666ms) What is schizophrenia? Participants -0.11111111111100003 What is schizophrenia? -> $x: ($x, comprise, schizophrenia) -> (Participants, comprised, 16 chronic schizophrenia patients) -> Participants (8644ms) What is schizophrenia? A Zurich University study -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (A Zurich University study, developing, schizophrenia) -> A Zurich University study (8652ms) What is schizophrenia? cannabis users -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (cannabis users, to developing, schizophrenia) -> cannabis users (8636ms) What is schizophrenia? schizotypal -> Many believe -0.11111111111100003 What is schizophrenia? -> $x: ($x, represent, schizophrenia) -> (schizotypal -> Many believe, represents, mild schizophrenia) -> schizotypal -> Many believe (8644ms) What is schizophrenia? real news -0.11111111111100003 What is schizophrenia? -> $x: ($x, induce, schizophrenia) -> (real news, may induce a kind of, schizophrenia) -> real news (8666ms) What is schizophrenia? the non-users -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (the non-users, developed, schizophrenia) -> the non-users (8652ms) What is schizophrenia? Lucia -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (Lucia, developed, schizophrenia) -> Lucia (8636ms) What is schizophrenia? the offspring -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (the offspring, developed, schizophrenia) -> the offspring (8666ms) What is schizophrenia? pregnant women -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (pregnant women, developed, schizophrenia) -> pregnant women (8652ms) What is schizophrenia? harder drugs -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (harder drugs, develop, schizophrenia) -> harder drugs (8652ms) What is schizophrenia? VCFS -0.11111111111100003 What is schizophrenia? -> $x: ($x, represent, schizophrenia) -> (VCFS, thus represents a rare genetic cause of, schizophrenia) -> VCFS (8628ms) What is schizophrenia? a man -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (a man, developed, schizophrenia) -> a man (8659ms) What is schizophrenia? the population -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (the population, develops, schizophrenia) -> the population (8644ms) What is schizophrenia? 7,331 of the offspring -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (7,331 of the offspring, developed, schizophrenia) -> 7,331 of the offspring (8636ms) What is schizophrenia? sister -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (sister, developed, schizophrenia) -> sister (8644ms) What is schizophrenia? 100 people -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (100 people, develops, schizophrenia) -> 100 people (8659ms) What is schizophrenia? every five people -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (every five people, develop, schizophrenia) -> every five people (8636ms) What is schizophrenia? a teenager -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (a teenager, developing, Schizophrenia) -> a teenager (8666ms) What is schizophrenia? ZYPREXA -0.11111111111100003 What is schizophrenia? -> $x: ($x, be use of, schizophrenia) -> (ZYPREXA, is used to treat symptoms of, schizophrenia) -> ZYPREXA (8652ms) What is schizophrenia? a child -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (a child, would develop, schizophrenia) -> a child (8659ms) What is schizophrenia? newer drugs -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (newer drugs, developed for, schizophrenia) -> newer drugs (8673ms) What is schizophrenia? the OT Levels -0.11111111111100003 What is schizophrenia? -> $x: ($x, induce, schizophrenia) -> (the OT Levels, induce, schizophrenia) -> the OT Levels (8659ms) What is schizophrenia? boys -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (boys, develop, schizophrenia) -> boys (8628ms) What is schizophrenia? a twin brother -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (a twin brother, developed, schizophrenia) -> a twin brother (8659ms) What is schizophrenia? the 274 conscripts -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (the 274 conscripts, developed, schizophrenia) -> the 274 conscripts (8636ms) What is schizophrenia? migration -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (migration, develops, schizophrenia) -> migration (8652ms) What is schizophrenia? One identical twin -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (One identical twin, develops, schizophrenia) -> One identical twin (8673ms) What is schizophrenia? Aripiprazole -0.11111111111100003 What is schizophrenia? -> $x: ($x, be use of, schizophrenia) -> (Aripiprazole, is used to treat symptoms of, schizophrenia) -> Aripiprazole (8636ms) What is schizophrenia? a twin pair -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (a twin pair, develop, schizophrenia) -> a twin pair (8666ms) What is schizophrenia? a music prodigy -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (a music prodigy, developed, schizophrenia) -> a music prodigy (8673ms) What is schizophrenia? Ziprasidone -0.11111111111100003 What is schizophrenia? -> $x: ($x, be use of, schizophrenia) -> (Ziprasidone, is used to treat the symptoms of, schizophrenia) -> Ziprasidone (8629ms) What is schizophrenia? teens -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (teens, develop, schizophrenia) -> teens (8652ms) What is schizophrenia? psychotic symptoms -0.11111111111100003 What is schizophrenia? -> $x: ($x, develop, schizophrenia) -> (psychotic symptoms, develop, schizophrenia) -> psychotic symptoms (8644ms) What is schizophrenia? personality -0.111111111112 What is schizophrenia? -> $x: ($x, could be, schizophrenia) -> (personality, could be, Schizophrenia) -> personality (8681ms) What is schizophrenia? ghosts -0.111111111112 What is schizophrenia? -> $x: ($x, could be, schizophrenia) -> (ghosts, could be a slight form of, schizophrenia) -> ghosts (8674ms) What is schizophrenia? a more thorough discussion -0.111111111112 What is schizophrenia? -> $x: ($x, constitute, schizophrenia) -> (a more thorough discussion, constitutes, childhood schizophrenia) -> a more thorough discussion (8681ms) What is schizophrenia? aware -0.111111111112 What is schizophrenia? -> $x: ($x, constitute, schizophrenia) -> (aware, constitutes, schizophrenia) -> aware (8680ms) What is schizophrenia? the mother?s genes -0.111111111112 What is schizophrenia? -> $x: ($x, could be, schizophrenia) -> (the mother?s genes, could be, schizophrenia) -> the mother?s genes (8681ms) What is schizophrenia? God -0.111111111112 What is schizophrenia? -> $x: ($x, could be, schizophrenia) -> (God, could be a symptom of, schizophrenia) -> God (8681ms) What is schizophrenia? an actual demon possession -0.111111111112 What is schizophrenia? -> $x: ($x, could be, schizophrenia) -> (an actual demon possession, could be diagnosed as, schizophrenia) -> an actual demon possession (8687ms) What is schizophrenia? times -0.111111111112 What is schizophrenia? -> $x: ($x, can be, schizophrenia) -> (times, can be a form of, controlled schizophrenia) -> times (8688ms) What is schizophrenia? Such behaviors -0.111111111112 What is schizophrenia? -> $x: ($x, could be, schizophrenia) -> (Such behaviors, could be signs of, schizophrenia) -> Such behaviors (8681ms) What is schizophrenia? a cure -0.111111111112 What is schizophrenia? -> $x: ($x, discover, schizophrenia) -> (a cure, is finally discovered for, schizophrenia) -> a cure (8674ms) What is schizophrenia? such a woman -0.111111111112 What is schizophrenia? -> $x: ($x, could be, schizophrenia) -> (such a woman, could only be the case of, schizophrenia) -> such a woman (8687ms) What is schizophrenia? mother and fetus -0.111111111112 What is schizophrenia? -> $x: ($x, could be, schizophrenia) -> (mother and fetus, could be a risk factor for, schizophrenia) -> mother and fetus (8681ms) What is schizophrenia? medication -0.111111111112 What is schizophrenia? -> $x: ($x, could be, schizophrenia) -> (medication, could be used to treat, schizophrenia) -> medication (8687ms) What is schizophrenia? the work -0.111111111112 What is schizophrenia? -> $x: ($x, can be, schizophrenia) -> (the work, can be covered by, schizophrenia.com) -> the work (8673ms) What is schizophrenia? An individual -0.111111111112 What is schizophrenia? -> $x: ($x, could be, schizophrenia) -> (An individual, could be diagnosed with, Schizophrenia) -> An individual (8687ms) What is schizophrenia? opinion -0.111111111112 What is schizophrenia? -> $x: ($x, constitute, schizophrenia) -> (opinion, constitutes, schizophrenia) -> opinion (8674ms) What is schizophrenia? a hospital -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, died in, a hospital) -> a hospital (8694ms) What is schizophrenia? the world?s population -0.222222222222 What is schizophrenia? -> $x: ($x, get, schizophrenia) -> (the world?s population, is getting affected by, Schizophrenia) -> the world?s population (8726ms) What is schizophrenia? reality -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, are in, reality) -> reality (8726ms) What is schizophrenia? Authorities Concept Scheme -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (8706ms) What is schizophrenia? Susano -0.222222222222 What is schizophrenia? -> $x: ($x, get, schizophrenia) -> (Susano, gets a nasty case of, schizophrenia) -> Susano (8701ms) What is schizophrenia? late adolescence or early adulthood -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, begins in, late adolescence or early adulthood) -> late adolescence or early adulthood (8711ms) What is schizophrenia? about 1 % of the population -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, occurs in, about 1 % of the population) -> about 1 % of the population (8711ms) What is schizophrenia? Link -0.222222222222 What is schizophrenia? -> $x: ($x, get, schizophrenia) -> (Link, get over, his schizophrenia) -> Link (8694ms) What is schizophrenia? humans -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, emerges in, humans) -> humans (8701ms) What is schizophrenia? Li Hongzhi -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, obsessed in, Li Hongzhi) -> Li Hongzhi (8701ms) What is schizophrenia? The child -0.222222222222 What is schizophrenia? -> $x: ($x, raise be, schizophrenia) -> (The child, was raised by, a paranoid schizophrenia) -> The child (8716ms) What is schizophrenia? tune -0.222222222222 What is schizophrenia? -> $x: ($x, get, schizophrenia) -> (tune, then got, schizophrenia) -> tune (8726ms) What is schizophrenia? BMJ 305 -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, is in, BMJ 305) -> BMJ 305 (8706ms) What is schizophrenia? a state hospital -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, died in, a state hospital) -> a state hospital (8716ms) What is schizophrenia? a Scottish population -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, confirmed in, a Scottish population) -> a Scottish population (8711ms) What is schizophrenia? young adult life -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, emerges in, young adult life) -> young adult life (8716ms) What is schizophrenia? outpatient research protocols -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, participated in, outpatient research protocols) -> outpatient research protocols (8711ms) What is schizophrenia? degree and type -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, varies in, degree and type) -> degree and type (8716ms) What is schizophrenia? the soul -0.222222222222 What is schizophrenia? -> $x: ($x, get, schizophrenia) -> (the soul, gets into, a state of schizophrenia) -> the soul (8711ms) What is schizophrenia? volume -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, is a decrease in, volume) -> volume (8721ms) What is schizophrenia? hospitals -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, were in, hospitals) -> hospitals (8711ms) What is schizophrenia? Triangle 32 -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, is in, Triangle 32) -> Triangle 32 (8716ms) What is schizophrenia? a young person -0.222222222222 What is schizophrenia? -> $x: ($x, get, schizophrenia) -> (a young person, gets treatment for, schizophrenia) -> a young person (8721ms) What is schizophrenia? fact -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, are in, fact) -> fact (8706ms) What is schizophrenia? type and severity -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, vary in, type and severity) -> type and severity (8726ms) What is schizophrenia? the reader -0.222222222222 What is schizophrenia? -> $x: ($x, get, schizophrenia) -> (the reader, can get a sense of, the doctrinal schizophrenia) -> the reader (8706ms) What is schizophrenia? New York -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, occurred in, New York) -> New York (8706ms) What is schizophrenia? the late teens or early 20s -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, starts in, the late teens or early 20s) -> the late teens or early 20s (8706ms) What is schizophrenia? need -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, is in, need) -> need (8716ms) What is schizophrenia? young -0.222222222222 What is schizophrenia? -> $x: ($x, get, schizophrenia) -> (young, get, schizophrenia) -> young (8716ms) What is schizophrenia? Bibi?s family -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, runs in, Bibi?s family) -> Bibi?s family (8711ms) What is schizophrenia? a few cases -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, benefited in, a few cases) -> a few cases (8694ms) What is schizophrenia? the June issue -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, appears in, the June issue) -> the June issue (8694ms) What is schizophrenia? the model -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, emerge in, the model) -> the model (8711ms) What is schizophrenia? Males -0.222222222222 What is schizophrenia? -> $x: ($x, get, schizophrenia) -> (Males, typically get, schizophrenia) -> Males (8701ms) What is schizophrenia? the workplace -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, succeed in, the workplace) -> the workplace (8711ms) What is schizophrenia? Margaret Sanger -0.222222222222 What is schizophrenia? -> $x: ($x, get, schizophrenia) -> (Margaret Sanger, gets diagnosed with, Schizophrenia) -> Margaret Sanger (8694ms) What is schizophrenia? 1990 -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, occurred in, 1990) -> 1990 (8711ms) What is schizophrenia? the August 6 edition -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, appear in, the August 6 edition) -> the August 6 edition (8726ms) What is schizophrenia? Curtis?s family -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, runs in, Curtis?s family) -> Curtis?s family (8721ms) What is schizophrenia? CUD -0.222222222222 What is schizophrenia? -> $x: ($x, compare to, schizophrenia) -> (CUD, were compared to, 51 first-episode schizophrenia subjects) -> CUD (8694ms) What is schizophrenia? literature -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, receive in, literature) -> literature (8694ms) What is schizophrenia? common and -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, have in, common and) -> common and (8711ms) What is schizophrenia? the copy -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, perform in, the copy) -> the copy (8726ms) What is schizophrenia? adolescence or adulthood -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, appears in, adolescence or adulthood) -> adolescence or adulthood (8701ms) What is schizophrenia? part -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, depends in, part) -> part (8716ms) What is schizophrenia? Ouran High School Host Club -0.222222222222 What is schizophrenia? -> $x: ($x, leave, schizophrenia) -> (Ouran High School Host Club, Leave, schizophrenia) -> Ouran High School Host Club (8694ms) What is schizophrenia? a plan -0.222222222222 What is schizophrenia? -> $x: ($x, get, schizophrenia) -> (a plan, get the most from, your Schizophrenia treatment) -> a plan (8726ms) What is schizophrenia? Table 1 -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, are in, Table 1) -> Table 1 (8711ms) What is schizophrenia? hes -0.222222222222 What is schizophrenia? -> $x: ($x, get, schizophrenia) -> (hes, got, mild schizophrenia) -> hes (8706ms) What is schizophrenia? suicide -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, ends in, suicide) -> suicide (8701ms) What is schizophrenia? the community -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, live in, the community) -> the community (8725ms) What is schizophrenia? 1952 -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, began in, 1952) -> 1952 (8730ms) What is schizophrenia? reductions -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, resulted in, reductions) -> reductions (8706ms) What is schizophrenia? Topical Terms Concept Scheme -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, In Scheme, Topical Terms Concept Scheme) -> Topical Terms Concept Scheme (8706ms) What is schizophrenia? identical twins -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, occurs in, identical twins) -> identical twins (8701ms) What is schizophrenia? deletion carriers -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, occurs in, deletion carriers) -> deletion carriers (8716ms) What is schizophrenia? enough adrenochrome -0.222222222222 What is schizophrenia? -> $x: ($x, get, schizophrenia) -> (enough adrenochrome, then will get, schizophrenia) -> enough adrenochrome (8725ms) What is schizophrenia? recordings -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, lies in, recordings) -> recordings (8701ms) What is schizophrenia? cycles -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, worsen in, cycles) -> cycles (8711ms) What is schizophrenia? adolescence -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, develops in, adolescence) -> adolescence (8726ms) What is schizophrenia? equal rates among men and women -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, to occur in, equal rates among men and women) -> equal rates among men and women (8711ms) What is schizophrenia? two steps -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, goes in, two steps) -> two steps (8716ms) What is schizophrenia? late preclinical testing -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, is in, late preclinical testing) -> late preclinical testing (8716ms) What is schizophrenia? White Denim -0.222222222222 What is schizophrenia? -> $x: ($x, leave, schizophrenia) -> (White Denim, left behind, their schizophrenia) -> White Denim (8725ms) What is schizophrenia? ventricular size and structure -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, reflected in, ventricular size and structure) -> ventricular size and structure (8721ms) What is schizophrenia? various forums -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, headlined in, various forums) -> various forums (8716ms) What is schizophrenia? an Internal Medicine journal -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, reported in, an Internal Medicine journal) -> an Internal Medicine journal (8721ms) What is schizophrenia? ambush -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, lay in, ambush) -> ambush (8711ms) What is schizophrenia? community settings -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, living in, community settings) -> community settings (8721ms) What is schizophrenia? 14297 -0.222222222222 What is schizophrenia? -> $x: ($x, get, schizophrenia) -> (14297, gets, Schizophrenia) -> 14297 (8706ms) What is schizophrenia? touch -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, get in, touch) -> touch (8721ms) What is schizophrenia? the 1950s -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, emerged in, the 1950s) -> the 1950s (8721ms) What is schizophrenia? Longest Journey -0.222222222222 What is schizophrenia? -> $x: ($x, leave, schizophrenia) -> (Longest Journey, Leave, schizophrenia) -> Longest Journey (8726ms) What is schizophrenia? the mind -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, reigned in, the mind) -> the mind (8721ms) What is schizophrenia? late adolescence -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, begin in, late adolescence) -> late adolescence (8694ms) What is schizophrenia? several varieties -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, comes in, several varieties) -> several varieties (8706ms) What is schizophrenia? cancer -0.222222222222 What is schizophrenia? -> $x: ($x, get, schizophrenia) -> (cancer, are much less apt to get, schizophrenia) -> cancer (8721ms) What is schizophrenia? greater danger -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, are in, greater danger) -> greater danger (8711ms) What is schizophrenia? the residual phase -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, are in, the residual phase) -> the residual phase (8694ms) What is schizophrenia? concert -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, rose in, concert) -> concert (8725ms) What is schizophrenia? Charlie Giles ? family -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (Schizophrenia, runs in, Charlie Giles ? family) -> Charlie Giles ? family (8721ms) What is schizophrenia? different cultures -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, vary in, different cultures) -> different cultures (8721ms) What is schizophrenia? the winter -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, born in, the winter) -> the winter (8730ms) What is schizophrenia? the elderly population -0.222222222222 What is schizophrenia? -> $x: (schizophrenia, in in, $x) -> (schizophrenia, occurs in, the elderly population) -> the elderly population (8706ms) What is schizophrenia? insufficient NR signaling -0.22222222222299998 What is schizophrenia? -> $x: ($x, involve, schizophrenia) -> (insufficient NR signaling, has been involved with, schizophrenia) -> insufficient NR signaling (8730ms) What is schizophrenia? the vagus nerve low levels -0.22222222222299998 What is schizophrenia? -> $x: ($x, involve, schizophrenia) -> (the vagus nerve low levels, may be involved in, schizophrenia) -> the vagus nerve low levels (8734ms) What is schizophrenia? The latter -0.22222222222299998 What is schizophrenia? -> $x: ($x, involve, schizophrenia) -> (The latter, are presumably those involved with, schizophrenia) -> The latter (8734ms) What is schizophrenia? NOS1AP -0.22222222222299998 What is schizophrenia? -> $x: ($x, involve, schizophrenia) -> (NOS1AP, is involved in, schizophrenia) -> NOS1AP (8730ms) What is schizophrenia? a study -0.22222222222299998 What is schizophrenia? -> $x: ($x, involve, schizophrenia) -> (a study, involving, schizophrenia) -> a study (8734ms) What is schizophrenia? David Shakow -0.22222222222299998 What is schizophrenia? -> $x: ($x, involve, schizophrenia) -> (David Shakow, involved, schizophrenia research) -> David Shakow (8734ms) What is schizophrenia? the same genes -0.22222222222299998 What is schizophrenia? -> $x: ($x, involve, schizophrenia) -> (the same genes, are involved in, schizophrenia) -> the same genes (8730ms) What is schizophrenia? Site -0.44444444444500003 What is schizophrenia? -> $x: ($x, contain, schizophrenia) -> (Site, contains information on, schizophrenia) -> Site (8734ms) What is schizophrenia? Psychiatrie -0.44444444444500003 What is schizophrenia? -> $x: ($x, contain, schizophrenia) -> (Psychiatrie, contained his classifications of, schizophrenia) -> Psychiatrie (8734ms) What is schizophrenia? The psychosis group -0.44444444444500003 What is schizophrenia? -> $x: ($x, contain, schizophrenia) -> (The psychosis group, contained, schizophrenia) -> The psychosis group (8734ms) What is schizophrenia? China -0.5555555555539999 What is schizophrenia? -> $x: ($x, demonstrate, schizophrenia) -> (China, have demonstrated a degree of, schizophrenia) -> China (8734ms) What is schizophrenia? studies -0.5555555555539999 What is schizophrenia? -> $x: ($x, demonstrate, schizophrenia) -> (studies, demonstrate the validity of, schizophrenia) -> studies (8734ms) What is schizophrenia? informed consent -0.555555555555 What is schizophrenia? -> $x: ($x, concerned, schizophrenia) -> (informed consent, has concerned patients with, schizophrenia) -> informed consent (8734ms) What is schizophrenia? Improvements -0.555555555555 What is schizophrenia? -> $x: ($x, concerned, schizophrenia) -> (Improvements, concerned, the schizophrenia-like symptoms) -> Improvements (8734ms) What is schizophrenia? a poor concept -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, are already known to have, a poor concept) -> a poor concept (8767ms) What is schizophrenia? the Community -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (Schizophrenia, Are Living in, the Community) -> the Community (8738ms) What is schizophrenia? a higher occurrence -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been associated with, a higher occurrence) -> a higher occurrence (8769ms) What is schizophrenia? the Community Jan Volavka Risk -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (Schizophrenia, Are Living in, the Community Jan Volavka Risk) -> the Community Jan Volavka Risk (8765ms) What is schizophrenia? an effect -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been thought to be, an effect) -> an effect (8776ms) What is schizophrenia? lower levels -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, were found to have, lower levels) -> lower levels (8757ms) What is schizophrenia? every two weeks -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has to be given, every two weeks) -> every two weeks (8777ms) What is schizophrenia? several centres -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is practised in, several centres) -> several centres (8777ms) What is schizophrenia? sequential phases -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, can be described in, sequential phases) -> sequential phases (8769ms) What is schizophrenia? recent years -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been revolutionized in, recent years) -> recent years (8774ms) What is schizophrenia? abnormalities -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have also been shown to have, abnormalities) -> abnormalities (8771ms) What is schizophrenia? the new book Essentials -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, can be found in, the new book Essentials) -> the new book Essentials (8769ms) What is schizophrenia? detail -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, are described in, detail) -> detail (8767ms) What is schizophrenia? origin -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is biological in, origin) -> origin (8767ms) What is schizophrenia? 6.8 -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been increasing by, 6.8) -> 6.8 (8754ms) What is schizophrenia? two independent studies -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been revealed by, two independent studies) -> two independent studies (8774ms) What is schizophrenia? the cold sore virus -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been exposed to, the cold sore virus) -> the cold sore virus (8776ms) What is schizophrenia? P. Seeman et al -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is claimed in, P. Seeman et al) -> P. Seeman et al (8765ms) What is schizophrenia? one 6- week -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, was established in, one 6- week) -> one 6- week (8746ms) What is schizophrenia? younger males -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is especially common in, younger males) -> younger males (8767ms) What is schizophrenia? the prefrontal or frontal cortex -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been, the prefrontal or frontal cortex) -> the prefrontal or frontal cortex (8746ms) What is schizophrenia? a waking dream state -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (Schizophrenia, has been described as, a waking dream state) -> a waking dream state (8775ms) What is schizophrenia? a prominent feature -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been recognized as, a prominent feature) -> a prominent feature (8738ms) What is schizophrenia? study -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been under, study) -> study (8750ms) What is schizophrenia? the Community John S. Brekke -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (Schizophrenia, Are Living in, the Community John S. Brekke) -> the Community John S. Brekke (8760ms) What is schizophrenia? either Zyprexa or Risperdal -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, had been placed on, either Zyprexa or Risperdal) -> either Zyprexa or Risperdal (8754ms) What is schizophrenia? an adolescent girl -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, could be developing in, an adolescent girl) -> an adolescent girl (8769ms) What is schizophrenia? a separate disease -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (Schizophrenia, has been considered, a separate disease) -> a separate disease (8765ms) What is schizophrenia? social skill -0.777777777778 What is schizophrenia? -> $x: ($x, establish, schizophrenia) -> (social skill, have been well established in, schizophrenia) -> social skill (8762ms) What is schizophrenia? gluten intolerance -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (Schizophrenia, has been associated with, gluten intolerance) -> gluten intolerance (8760ms) What is schizophrenia? 60 percent -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is successful in, 60 percent) -> 60 percent (8762ms) What is schizophrenia? the make-believe story -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is told in, the make-believe story) -> the make-believe story (8777ms) What is schizophrenia? an early stage -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is still in, an early stage) -> an early stage (8750ms) What is schizophrenia? satisfying relationships -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, are able to have, satisfying relationships) -> satisfying relationships (8760ms) What is schizophrenia? nature -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, are bizarre in, nature) -> nature (8760ms) What is schizophrenia? a hard plastic chair -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, had been shackled to, a hard plastic chair) -> a hard plastic chair (8738ms) What is schizophrenia? single day -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, was established in, single day) -> single day (8742ms) What is schizophrenia? a good safety -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been shown to have, a good safety) -> a good safety (8767ms) What is schizophrenia? special powers -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, are seen as having, special powers) -> special powers (8769ms) What is schizophrenia? the late teens -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is typically in, the late teens) -> the late teens (8777ms) What is schizophrenia? 72 cases -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (Schizophrenia, was present in, 72 cases) -> 72 cases (8750ms) What is schizophrenia? the Age , Beginning and Course -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, was included in, the Age , Beginning and Course) -> the Age , Beginning and Course (8771ms) What is schizophrenia? collaboration -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been established in, collaboration) -> collaboration (8771ms) What is schizophrenia? 5 placebo-controlled studies -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, was evaluated in, 5 placebo-controlled studies) -> 5 placebo-controlled studies (8750ms) What is schizophrenia? a biological basis -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, are now recognized as having, a biological basis) -> a biological basis (8757ms) What is schizophrenia? a genetic component -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (Schizophrenia, is considered to have, a genetic component) -> a genetic component (8738ms) What is schizophrenia? the mental health system -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, are treated in, the mental health system) -> the mental health system (8754ms) What is schizophrenia? the May issue -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (Schizophrenia, was published in, the May issue) -> the May issue (8765ms) What is schizophrenia? a new edition -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (Schizophrenia, will be published in, a new edition) -> a new edition (8738ms) What is schizophrenia? a long journey -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been, a long journey) -> a long journey (8769ms) What is schizophrenia? the 19th century -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been recognized since, the 19th century) -> the 19th century (8767ms) What is schizophrenia? low blood levels -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been found to have, low blood levels) -> low blood levels (8771ms) What is schizophrenia? now -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (Schizophrenia, has been linked, now) -> now (8777ms) What is schizophrenia? a biological disease -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (Schizophrenia, has also been termed, a biological disease) -> a biological disease (8776ms) What is schizophrenia? the first sample -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, was strongly reduced in, the first sample) -> the first sample (8738ms) What is schizophrenia? increased rate -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been associated with, increased rate) -> increased rate (8765ms) What is schizophrenia? school -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in teaching, $x) -> (the way schizophrenia, is taught in, school) -> school (8738ms) What is schizophrenia? three 6-week trials -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, was established in, three 6-week trials) -> three 6-week trials (8746ms) What is schizophrenia? 0.1 cases -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been estimated as, 0.1 cases) -> 0.1 cases (8754ms) What is schizophrenia? an emphasis -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been replaced by, an emphasis) -> an emphasis (8742ms) What is schizophrenia? behavioral deficits -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, are known to have, behavioral deficits) -> behavioral deficits (8776ms) What is schizophrenia? low melatonin output -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, were found to have, low melatonin output) -> low melatonin output (8774ms) What is schizophrenia? object working memory -0.777777777778 What is schizophrenia? -> $x: ($x, establish, schizophrenia) -> (object working memory, established, schizophrenia) -> object working memory (8750ms) What is schizophrenia? reviewers -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been characterized by, reviewers) -> reviewers (8760ms) What is schizophrenia? gifted children -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, had been intellectually, gifted children) -> gifted children (8773ms) What is schizophrenia? least two years -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, had all been diagnosed at, least two years) -> least two years (8774ms) What is schizophrenia? a failure -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been attributed to, a failure) -> a failure (8774ms) What is schizophrenia? terms -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, are impaired in, terms) -> terms (8771ms) What is schizophrenia? a section -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, was listed in, a section) -> a section (8750ms) What is schizophrenia? improper lateralization -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been linked to, improper lateralization) -> improper lateralization (8750ms) What is schizophrenia? Figure 1 -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, are summarized in, Figure 1) -> Figure 1 (8765ms) What is schizophrenia? the pattern -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been estimated from, the pattern) -> the pattern (8777ms) What is schizophrenia? the media -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is often confused in, the media) -> the media (8771ms) What is schizophrenia? perceptual closure -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, are profoundly impaired in, perceptual closure) -> perceptual closure (8759ms) What is schizophrenia? Dr. Goff -0.777777777778 What is schizophrenia? -> $x: ($x, establish, schizophrenia) -> (Dr. Goff, established, the Schizophrenia Program) -> Dr. Goff (8776ms) What is schizophrenia? a disorder -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been hypothesized to be, a disorder) -> a disorder (8742ms) What is schizophrenia? poor social functioning -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, were found to have, poor social functioning) -> poor social functioning (8738ms) What is schizophrenia? a stable dose -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been on, a stable dose) -> a stable dose (8774ms) What is schizophrenia? a result -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been shown to be, a result) -> a result (8769ms) What is schizophrenia? recurrent and disabling -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been regarded as, recurrent and disabling) -> recurrent and disabling (8757ms) What is schizophrenia? a plethora -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (Schizophrenia, has been associated with, a plethora) -> a plethora (8771ms) What is schizophrenia? point -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (Schizophrenia, is a case in, point) -> point (8757ms) What is schizophrenia? a disease -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (Schizophrenia, has been known as, a disease) -> a disease (8757ms) What is schizophrenia? non-affected relatives -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, are also found in, non-affected relatives) -> non-affected relatives (8767ms) What is schizophrenia? latent inhibition -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, are impaired in, latent inhibition) -> latent inhibition (8760ms) What is schizophrenia? interior products -0.777777777778 What is schizophrenia? -> $x: ($x, inspired, schizophrenia) -> (interior products, are inspired by, schizophrenia) -> interior products (8773ms) What is schizophrenia? British political life -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is becoming apparent in, British political life) -> British political life (8750ms) What is schizophrenia? an age -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, was treated in, an age) -> an age (8762ms) What is schizophrenia? cities -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, was more common in, cities) -> cities (8760ms) What is schizophrenia? several respects -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (Schizophrenia, is similar in, several respects) -> several respects (8757ms) What is schizophrenia? 38 , 39 ] -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been reported [, 38 , 39 ]) -> 38 , 39 ] (8742ms) What is schizophrenia? a rollercoaster ride -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (Schizophrenia, has been described as, a rollercoaster ride) -> a rollercoaster ride (8762ms) What is schizophrenia? Found -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (Schizophrenia, Has been, Found) -> Found (8762ms) What is schizophrenia? recent decades -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been published in, recent decades) -> recent decades (8746ms) What is schizophrenia? several loci -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been identified at, several loci) -> several loci (8754ms) What is schizophrenia? HLA type -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been correlated with, HLA type) -> HLA type (8774ms) What is schizophrenia? the NIMH -0.777777777778 What is schizophrenia? -> $x: ($x, establish, schizophrenia) -> (the NIMH, has established, a Schizophrenia Genetics Initiative) -> the NIMH (8757ms) What is schizophrenia? doubt -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been established beyond, doubt) -> doubt (8746ms) What is schizophrenia? the left temporal lobe -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (Schizophrenia, has been associated with, the left temporal lobe) -> the left temporal lobe (8769ms) What is schizophrenia? cultures -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is rare in, cultures) -> cultures (8767ms) What is schizophrenia? intensive research -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been the focus of, intensive research) -> intensive research (8760ms) What is schizophrenia? several studies -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been reported in, several studies) -> several studies (8765ms) What is schizophrenia? previous neuroimaging -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, have been described by, previous neuroimaging) -> previous neuroimaging (8754ms) What is schizophrenia? low selenium regions -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is more common in, low selenium regions) -> low selenium regions (8762ms) What is schizophrenia? Israeli researchers -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been proposed by, Israeli researchers) -> Israeli researchers (8746ms) What is schizophrenia? bad genes or even bad parents -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (Schizophrenia, has been blamed on, bad genes or even bad parents) -> bad genes or even bad parents (8773ms) What is schizophrenia? a higher risk -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been linked to, a higher risk) -> a higher risk (8777ms) What is schizophrenia? the basis -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been postulated on, the basis) -> the basis (8750ms) What is schizophrenia? the general population -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is found in, the general population) -> the general population (8750ms) What is schizophrenia? a $ 1 million boost -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been given, a $ 1 million boost) -> a $ 1 million boost (8757ms) What is schizophrenia? the haplotype analysis -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, was detected in, the haplotype analysis) -> the haplotype analysis (8776ms) What is schizophrenia? cohorts -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, was examined in, cohorts) -> cohorts (8771ms) What is schizophrenia? bewilderment -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been a source of, bewilderment) -> bewilderment (8757ms) What is schizophrenia? date -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (schizophrenia, has been published to, date) -> date (8771ms) What is schizophrenia? around -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be have, $x) -> (Schizophrenia, has been, around) -> around (8757ms) What is schizophrenia? early detection -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is very important in, early detection) -> early detection (8765ms) What is schizophrenia? Table 6-8 -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, are summarized in, Table 6-8) -> Table 6-8 (8769ms) What is schizophrenia? the July 1 , 2009 issue -0.777777777778 What is schizophrenia? -> $x: (schizophrenia, be in, $x) -> (schizophrenia, is published in, the July 1 , 2009 issue) -> the July 1 , 2009 issue (8769ms) What is the length of the Big Dig? the service browser 0.999999999995 What is the length of the Big Dig? -> $x: ($x, be type of, dig) -> (the service browser, is a type of, dig-down interface) -> the service browser (1973ms) What is the length of the Big Dig? Tani 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Tani, then goes back to, digging) -> Tani (2192ms) What is the length of the Big Dig? Max Spaniel 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Max Spaniel, decides to go on, a dinosaur dig) -> Max Spaniel (2207ms) What is the length of the Big Dig? Yellow- 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Yellow-, Go to, the dig site) -> Yellow- (2192ms) What is the length of the Big Dig? Binah 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Binah, went on to issue, a thinly veiled dig at the group) -> Binah (2192ms) What is the length of the Big Dig? The Battn 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (The Battn, is going to put in, three tube dug-outs) -> The Battn (2203ms) What is the length of the Big Dig? the day 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the day, went to, my digs) -> the day (2206ms) What is the length of the Big Dig? officers 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (officers, go back to, their digging) -> officers (2068ms) What is the length of the Big Dig? the Old Man 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the Old Man, went to, digging) -> the Old Man (2192ms) What is the length of the Big Dig? Rick 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Rick, went off to, a dig) -> Rick (2207ms) What is the length of the Big Dig? the tour group 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the tour group, went to, the main dig site) -> the tour group (2206ms) What is the length of the Big Dig? the squirrel suit 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the squirrel suit, had had gone back to, digging) -> the squirrel suit (2192ms) What is the length of the Big Dig? I?m 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (I?m, excited to go back to, my old digs) -> I?m (2203ms) What is the length of the Big Dig? Readers 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Readers, can even go online to read about, the dig adventures) -> Readers (2203ms) What is the length of the Big Dig? Harry 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Harry, went back to, digging) -> Harry (1972ms) What is the length of the Big Dig? Scan 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Scan, then go back to do, the digging) -> Scan (2192ms) What is the length of the Big Dig? Interested contributors 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Interested contributors, should go to, the ht ://Dig developer) -> Interested contributors (2203ms) What is the length of the Big Dig? joke 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (joke, ? go to, Donna?s blog & dig) -> joke (2203ms) What is the length of the Big Dig? the excavator 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the excavator, is going to start, their digging) -> the excavator (2206ms) What is the length of the Big Dig? A woman from New England 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (A woman from New England, went to, try to dig him up) -> A woman from New England (2207ms) What is the length of the Big Dig? Hopalong Cassidy 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Hopalong Cassidy, is long gone to, the big dig) -> Hopalong Cassidy (2207ms) What is the length of the Big Dig? Michael 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Michael, goes back to, his digging area) -> Michael (2207ms) What is the length of the Big Dig? the Grand Palace 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the Grand Palace, is the place to go for, cheap digs) -> the Grand Palace (2192ms) What is the length of the Big Dig? a pig 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (a pig, went to, dig) -> a pig (2203ms) What is the length of the Big Dig? a daffy hound dog 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (a daffy hound dog, decides to go on, a dinosaur dig) -> a daffy hound dog (2206ms) What is the length of the Big Dig? the place 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the place, to go deeper to, dig) -> the place (2192ms) What is the length of the Big Dig? race .5 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (race .5, Went to, Digging) -> race .5 (2069ms) What is the length of the Big Dig? Tiffany Milburn 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Tiffany Milburn, served up three aces to go with, 12 digs) -> Tiffany Milburn (2192ms) What is the length of the Big Dig? I?d 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (I?d, also like to go on, an archaeological dig) -> I?d (2203ms) What is the length of the Big Dig? just maybe I?ll 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (just maybe I?ll, even get to go on, some digs) -> just maybe I?ll (2069ms) What is the length of the Big Dig? Matt 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Matt, went back to, digging) -> Matt (1972ms) What is the length of the Big Dig? the wasp 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the wasp, will soon go back to, its digging) -> the wasp (2192ms) What is the length of the Big Dig? Wonder 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Wonder, else is going to take, digs) -> Wonder (2172ms) What is the length of the Big Dig? The kids 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (The kids, get to go on, a pretend dig) -> The kids (1972ms) What is the length of the Big Dig? Olsen 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Olsen, recorded 15 assists to go along with, 4 digs) -> Olsen (2206ms) What is the length of the Big Dig? the Normandy ? 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the Normandy ?, went right to, the dig site) -> the Normandy ? (2206ms) What is the length of the Big Dig? trucks 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (trucks, are all going to scanned, an dig?i?tized) -> trucks (2203ms) What is the length of the Big Dig? man 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, invent, dig) -> (man, invented, the dug-out canoe) -> man (2173ms) What is the length of the Big Dig? so many airlines 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (so many airlines, are going to, a digEplayer program) -> so many airlines (2203ms) What is the length of the Big Dig? The Doctor 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (The Doctor, plans to go to, the archaeological dig) -> The Doctor (1972ms) What is the length of the Big Dig? Chapter 90 funds 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Chapter 90 funds, had previously gone to, the Big Dig) -> Chapter 90 funds (2192ms) What is the length of the Big Dig? the gold fever 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the gold fever, went west to, DIG) -> the gold fever (2203ms) What is the length of the Big Dig? ? Auntie 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (? Auntie, goes back to, digging) -> ? Auntie (2192ms) What is the length of the Big Dig? Jonathan 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Jonathan, goes back to, digging) -> Jonathan (2173ms) What is the length of the Big Dig? Buckbeak 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Buckbeak, then went back to, digging) -> Buckbeak (2069ms) What is the length of the Big Dig? San Diego 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (San Diego, then went to work on, an archaeological dig) -> San Diego (2173ms) What is the length of the Big Dig? Celia 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Celia, loves to go on, archaeological digs) -> Celia (2207ms) What is the length of the Big Dig? Tony 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Tony, goes to, the digs) -> Tony (2209ms) What is the length of the Big Dig? the team from Ibex 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the team from Ibex, went to, dig some test pits) -> the team from Ibex (1972ms) What is the length of the Big Dig? Tim and Rich 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Tim and Rich, were going to, the dig) -> Tim and Rich (2192ms) What is the length of the Big Dig? Freedom 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Freedom, went back to work on, the digging) -> Freedom (2206ms) What is the length of the Big Dig? Asia 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Asia, went back to, her digging) -> Asia (2068ms) What is the length of the Big Dig? good news ? 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (good news ?, went out to, my soon-to-be new digs) -> good news ? (2172ms) What is the length of the Big Dig? spring 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (spring, goes on to do, a little digging) -> spring (2203ms) What is the length of the Big Dig? Paul 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Paul, went up to, the dig) -> Paul (2068ms) What is the length of the Big Dig? the price 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the price, is always going to be higher than, a dig) -> the price (2192ms) What is the length of the Big Dig? Bridget 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Bridget, goes to, an archaeological dig and kisses) -> Bridget (2173ms) What is the length of the Big Dig? Egypt 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Egypt, went to, the King Tut dig) -> Egypt (2192ms) What is the length of the Big Dig? Bell 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Bell, continued to go on, many archaeological digs) -> Bell (2068ms) What is the length of the Big Dig? the Orioles and Jays 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the Orioles and Jays, went back to, the old school digs) -> the Orioles and Jays (2206ms) What is the length of the Big Dig? the safari activity window 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the safari activity window, decided to go, digging) -> the safari activity window (2203ms) What is the length of the Big Dig? the Librarian 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the Librarian, goes to, a dig) -> the Librarian (2207ms) What is the length of the Big Dig? an archeology major 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (an archeology major, can go to, a dig) -> an archeology major (2172ms) What is the length of the Big Dig? the answers 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the answers, was going to do, a little digging) -> the answers (2203ms) What is the length of the Big Dig? Jacka 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Jacka, had gone to, his dug-out) -> Jacka (2207ms) What is the length of the Big Dig? intrest 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (intrest, are now going to have to do, a dig) -> intrest (2173ms) What is the length of the Big Dig? Danaos 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, invent, dig) -> (Danaos, invented, the digging) -> Danaos (2203ms) What is the length of the Big Dig? Jules and Martin 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Jules and Martin, went to have, a dig) -> Jules and Martin (2203ms) What is the length of the Big Dig? Mood 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (Mood, go to, the park digging) -> Mood (1972ms) What is the length of the Big Dig? the plaines 0.8888888888840001 What is the length of the Big Dig? -> $x: ($x, go to, dig) -> (the plaines, went over to, Spanish Dry Digging) -> the plaines (2203ms) What is the length of the Big Dig? a flat , flexible molding strip 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (a flat , flexible molding strip, need for, digging) -> a flat , flexible molding strip (2215ms) What is the length of the Big Dig? Eaton Bray 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Eaton Bray, needed, a drainage system digging) -> Eaton Bray (2217ms) What is the length of the Big Dig? Soetoro and Holder 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Soetoro and Holder, need to try out, their NEW DIGS) -> Soetoro and Holder (2217ms) What is the length of the Big Dig? course 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (course, also need to establish, digs) -> course (2209ms) What is the length of the Big Dig? a fancy fox 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (a fancy fox, needs, some fancy digs) -> a fancy fox (2212ms) What is the length of the Big Dig? the best DUI attorney 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (the best DUI attorney, really needs, some digging) -> the best DUI attorney (2220ms) What is the length of the Big Dig? a journalist 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (a journalist, needs to, dig deeper) -> a journalist (2217ms) What is the length of the Big Dig? Exterior Excavation Exterior excavation 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Exterior Excavation Exterior excavation, needs, the digging) -> Exterior Excavation Exterior excavation (2217ms) What is the length of the Big Dig? The toll increases 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (The toll increases, are needed to pay for, the Big Dig) -> The toll increases (2209ms) What is the length of the Big Dig? The Sloughi 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (The Sloughi, may need training to, discourage digging holes) -> The Sloughi (2220ms) What is the length of the Big Dig? the trench 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (the trench, needs to, be dug) -> the trench (2215ms) What is the length of the Big Dig? the organization 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (the organization, need to do a lot of, digging) -> the organization (2220ms) What is the length of the Big Dig? only 1 magazine 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (only 1 magazine, is needed per, digs) -> only 1 magazine (2215ms) What is the length of the Big Dig? Solar Power options 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Solar Power options, eliminate the need for, digging) -> Solar Power options (2220ms) What is the length of the Big Dig? Scripts and HTML code 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Scripts and HTML code, needed for using, ht ://Dig) -> Scripts and HTML code (2209ms) What is the length of the Big Dig? Dean 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Dean, need to upgrade to, bigger digs) -> Dean (2209ms) What is the length of the Big Dig? Dimond 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Dimond, needed money and resources to, help her dig it out) -> Dimond (2212ms) What is the length of the Big Dig? the cable 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (the cable, needs to, be dug up) -> the cable (2220ms) What is the length of the Big Dig? Badgers 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Badgers, need, these digging tools) -> Badgers (2212ms) What is the length of the Big Dig? small wooden dolls 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (small wooden dolls, need, some new digs) -> small wooden dolls (2217ms) What is the length of the Big Dig? Student Newspapers 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Student Newspapers, need to challenge, the SRC and ?dig?) -> Student Newspapers (2212ms) What is the length of the Big Dig? players 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (players, need to, dig to the underground well before the others) -> players (2215ms) What is the length of the Big Dig? Ben 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Ben, needs, a digging alien) -> Ben (2209ms) What is the length of the Big Dig? the rain 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (the rain, needs to, get dug out as ice-cubes) -> the rain (2215ms) What is the length of the Big Dig? the best equipment 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (the best equipment, needs, some serious pocket digging) -> the best equipment (2209ms) What is the length of the Big Dig? Juvenile justice reforms 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Juvenile justice reforms, need to, dig deeper) -> Juvenile justice reforms (2215ms) What is the length of the Big Dig? the grade 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (the grade, eliminates the need for, digging) -> the grade (2212ms) What is the length of the Big Dig? intelligent women 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (intelligent women, need to do some of, their own digging) -> intelligent women (2220ms) What is the length of the Big Dig? a new line 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (a new line, needs, new digs) -> a new line (2209ms) What is the length of the Big Dig? support 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (support, is there any need to have, a dig) -> support (2215ms) What is the length of the Big Dig? The roots 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (The roots, need to, be dug out) -> The roots (2212ms) What is the length of the Big Dig? Kilmer 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Kilmer, will need to do, more digging) -> Kilmer (2212ms) What is the length of the Big Dig? the observatory 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (the observatory, will need, some digging) -> the observatory (2220ms) What is the length of the Big Dig? Joe Contractor 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Joe Contractor, needs, a dedicated digging machine) -> Joe Contractor (2217ms) What is the length of the Big Dig? an ?oopsy ? 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (an ?oopsy ?, so needs, a ?dig) -> an ?oopsy ? (2209ms) What is the length of the Big Dig? the soil 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (the soil, reduce the need for, digging) -> the soil (2212ms) What is the length of the Big Dig? a good soil mix 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (a good soil mix, should eliminate the need for, deep digging) -> a good soil mix (2217ms) What is the length of the Big Dig? Justin 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Justin, needed to move into, his new digs) -> Justin (2217ms) What is the length of the Big Dig? Buyer beware , @ groupon 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Buyer beware , @ groupon, needs to do, a little digging) -> Buyer beware , @ groupon (2217ms) What is the length of the Big Dig? the new well 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (the new well, needed to, be dug) -> the new well (2220ms) What is the length of the Big Dig? shallow foundation tubes 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (shallow foundation tubes, eliminated the need for, deep digging) -> shallow foundation tubes (2215ms) What is the length of the Big Dig? the home 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (the home, will reduce the need for, extensive digging) -> the home (2220ms) What is the length of the Big Dig? Small trees 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Small trees, need to, be dug up or pulled out) -> Small trees (2217ms) What is the length of the Big Dig? The holes 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (The holes, need to, be dug) -> The holes (2215ms) What is the length of the Big Dig? garden 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (garden, needs, dug/de-graveled/watered etc.) -> garden (2209ms) What is the length of the Big Dig? The answer 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (The answer, needed, some digging) -> The answer (2212ms) What is the length of the Big Dig? the steps 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (the steps, needed to use, the ht ://Dig system) -> the steps (2209ms) What is the length of the Big Dig? Mr. Sharf 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Mr. Sharf, needed, a digging shovel) -> Mr. Sharf (2217ms) What is the length of the Big Dig? Sweetcorn 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Sweetcorn, needs, a well dug , rich soil) -> Sweetcorn (2212ms) What is the length of the Big Dig? waste 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (waste, will need to, be dug out and taken elsewhere) -> waste (2220ms) What is the length of the Big Dig? 716 m 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (716 m, has regularly needed, 4 hour + digging dives) -> 716 m (2212ms) What is the length of the Big Dig? larger clients 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (larger clients, often need, a little digging) -> larger clients (2215ms) What is the length of the Big Dig? subsidization options 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (subsidization options, will need to do, some digging) -> subsidization options (2217ms) What is the length of the Big Dig? Schwarzenegger 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Schwarzenegger, Needs, Digs) -> Schwarzenegger (2209ms) What is the length of the Big Dig? Permission 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Permission, will be needed before, any digging) -> Permission (2215ms) What is the length of the Big Dig? answer 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (answer, need to do, some more digging) -> answer (2212ms) What is the length of the Big Dig? diving 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (diving, is needed to get to, this dig) -> diving (2212ms) What is the length of the Big Dig? groupon 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (groupon, needs to do, a little digging) -> groupon (2209ms) What is the length of the Big Dig? the garden 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (the garden, needs to, be dug) -> the garden (2217ms) What is the length of the Big Dig? Ill 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Ill, need to, dig further) -> Ill (2220ms) What is the length of the Big Dig? a road 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (a road, needs, digging up) -> a road (2215ms) What is the length of the Big Dig? a cite 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (a cite, need to do, some digging) -> a cite (2215ms) What is the length of the Big Dig? You?ll 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (You?ll, probably need to do, some digging) -> You?ll (2220ms) What is the length of the Big Dig? Cauliflowers 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Cauliflowers, need, a well dug) -> Cauliflowers (2220ms) What is the length of the Big Dig? HTML code 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (HTML code, needed for using, ht ://Dig) -> HTML code (2215ms) What is the length of the Big Dig? Key contributions 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Key contributions, will be needed from, the dug-out) -> Key contributions (2215ms) What is the length of the Big Dig? IMD 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (IMD, needed, new digs) -> IMD (2209ms) What is the length of the Big Dig? DGCI 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (DGCI, need, new digs) -> DGCI (2217ms) What is the length of the Big Dig? college student 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (college student, will need to outfit, their new digs) -> college student (2222ms) What is the length of the Big Dig? the tree 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (the tree, would need, giant digging machines) -> the tree (2222ms) What is the length of the Big Dig? Somebody 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Somebody, needs to do, some digging) -> Somebody (2217ms) What is the length of the Big Dig? Every able-bodied man 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Every able-bodied man, was needed for, the digging) -> Every able-bodied man (2215ms) What is the length of the Big Dig? Hump Day ? 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Hump Day ?, needs a bit of, a dig) -> Hump Day ? (2220ms) What is the length of the Big Dig? the hole 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (the hole, needed, digging) -> the hole (2220ms) What is the length of the Big Dig? The tides 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (The tides, need to be right for, clam digging) -> The tides (2212ms) What is the length of the Big Dig? Star 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (Star, needs to, dig deeper into critical issues) -> Star (2220ms) What is the length of the Big Dig? a beginner 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (a beginner, needs to, know to start digging into their roots) -> a beginner (2209ms) What is the length of the Big Dig? the Malakettes 0.777777777774 What is the length of the Big Dig? -> $x: ($x, need, dig) -> (the Malakettes, needed, better digs) -> the Malakettes (2217ms) What is the length of the Big Dig? James Davidson 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, mac) -> (James Davidson, dug deeply into, the Mac) -> James Davidson (2229ms) What is the length of the Big Dig? chinchoks 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, mac) -> (chinchoks, dig, Sesshu , Bach , John D. MacDonald) -> chinchoks (2224ms) What is the length of the Big Dig? The crowd 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (The crowd, is digging, Giant big time) -> The crowd (2229ms) What is the length of the Big Dig? family 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (family, dig, a big hole) -> family (2225ms) What is the length of the Big Dig? Emily 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Emily, just dug, big comfortable hole) -> Emily (2226ms) What is the length of the Big Dig? The article 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, mac) -> (The article, digs into, Vince MacMahon) -> The article (2225ms) What is the length of the Big Dig? Americans 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Americans, dig, big cars) -> Americans (2227ms) What is the length of the Big Dig? the villagers 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the villagers, dig out, big stones) -> the villagers (2228ms) What is the length of the Big Dig? a backhoe 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (a backhoe, dug, a big hole) -> a backhoe (2223ms) What is the length of the Big Dig? Dad and son 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Dad and son, dug, a big hole) -> Dad and son (2229ms) What is the length of the Big Dig? ?We?ve 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (?We?ve, dug, a big hole) -> ?We?ve (2227ms) What is the length of the Big Dig? extremely powerful back legs rabbits 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (extremely powerful back legs rabbits, dig, big holes) -> extremely powerful back legs rabbits (2229ms) What is the length of the Big Dig? Windows 7 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, mac) -> (Windows 7, dug out, a MacBook) -> Windows 7 (2223ms) What is the length of the Big Dig? a smile 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, mac) -> (a smile, dug back into, his mac'n'cheese) -> a smile (2228ms) What is the length of the Big Dig? a matter 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (a matter, dug, a hole big and deep enough) -> a matter (2228ms) What is the length of the Big Dig? the children 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the children, dug, a big pail) -> the children (2224ms) What is the length of the Big Dig? Native Americans 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Native Americans, dug, big holes) -> Native Americans (2228ms) What is the length of the Big Dig? they?ve 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (they?ve, dug, a big hole) -> they?ve (2222ms) What is the length of the Big Dig? the end 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the end, dig, a big deep hole) -> the end (2228ms) What is the length of the Big Dig? the flashy advertising 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the flashy advertising, dug, two big pits) -> the flashy advertising (2228ms) What is the length of the Big Dig? waste ? 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (waste ?, dig, a big hole) -> waste ? (2222ms) What is the length of the Big Dig? the atom bomb 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the atom bomb, dug, a big canal) -> the atom bomb (2227ms) What is the length of the Big Dig? the kids 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the kids, just dug, the big beats) -> the kids (2224ms) What is the length of the Big Dig? hospitals 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (hospitals, dig into, Big Data) -> hospitals (2228ms) What is the length of the Big Dig? Khan 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Khan, dug, his big fingers) -> Khan (2222ms) What is the length of the Big Dig? chicks 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (chicks, dig, big vocabularies) -> chicks (2222ms) What is the length of the Big Dig? the street 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, mac) -> (the street, maybe dig into, some delicious mac ?n cheese) -> the street (2224ms) What is the length of the Big Dig? Youre 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Youre, digging yourself, a big hole) -> Youre (2229ms) What is the length of the Big Dig? ?Chicks 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (?Chicks, dig, big brains) -> ?Chicks (2222ms) What is the length of the Big Dig? Mike Mulligan and his steam shovel 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Mike Mulligan and his steam shovel, dig, big holes) -> Mike Mulligan and his steam shovel (2228ms) What is the length of the Big Dig? Black Oak Ridge .... Big engines 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Black Oak Ridge .... Big engines, will dig, big ditches) -> Black Oak Ridge .... Big engines (2222ms) What is the length of the Big Dig? local governments 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (local governments, start digging, big tunnels) -> local governments (2227ms) What is the length of the Big Dig? An estimated 30 million U. First 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (An estimated 30 million U. First, dig, a big hole) -> An estimated 30 million U. First (2224ms) What is the length of the Big Dig? Arie Kamp 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, mac) -> (Arie Kamp, has dug up, Pat MacKay) -> Arie Kamp (2228ms) What is the length of the Big Dig? Commerce 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Commerce, dug, a big hole) -> Commerce (2228ms) What is the length of the Big Dig? the pigs 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the pigs, dig up, big patches) -> the pigs (2222ms) What is the length of the Big Dig? Harrison 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, mac) -> (Harrison, dug into, his mac n? cheese & grapes) -> Harrison (2222ms) What is the length of the Big Dig? the Warriors 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the Warriors, dig, another big hole) -> the Warriors (2227ms) What is the length of the Big Dig? Mr. Sharon 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Mr. Sharon, has dug, a very big hole) -> Mr. Sharon (2230ms) What is the length of the Big Dig? Windows users 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, mac) -> (Windows users, dig around in, Mac filesystems) -> Windows users (2227ms) What is the length of the Big Dig? a place 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (a place, digs, a big hole) -> a place (2224ms) What is the length of the Big Dig? Swam 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Swam, dug, a big hole) -> Swam (2229ms) What is the length of the Big Dig? a mud puddle 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (a mud puddle, dig, a big dirt pit) -> a mud puddle (2229ms) What is the length of the Big Dig? ?How 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (?How, dig, such a big hole) -> ?How (2222ms) What is the length of the Big Dig? the Titus Brothers 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the Titus Brothers, dig, the big tunnel) -> the Titus Brothers (2227ms) What is the length of the Big Dig? Fancy 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Fancy, digs in, a big city) -> Fancy (2228ms) What is the length of the Big Dig? The director 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (The director, dug, a big hole) -> The director (2226ms) What is the length of the Big Dig? a girl 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (a girl, digs, a guy with a big dick) -> a girl (2222ms) What is the length of the Big Dig? the new structure 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the new structure, dig, a big hole) -> the new structure (2228ms) What is the length of the Big Dig? Don?t 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Don?t, dig, a big deep hole) -> Don?t (2229ms) What is the length of the Big Dig? Bush 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Bush, dug, a really big hole) -> Bush (2227ms) What is the length of the Big Dig? The Teso 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (The Teso, can dig, a big portion) -> The Teso (2227ms) What is the length of the Big Dig? bricks and rocks 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (bricks and rocks, dug, a big hole) -> bricks and rocks (2229ms) What is the length of the Big Dig? Kevin 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Kevin, dug, big holes) -> Kevin (2228ms) What is the length of the Big Dig? the bulldozer 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the bulldozer, dug, a big hole) -> the bulldozer (2225ms) What is the length of the Big Dig? somebody 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (somebody, to dig, a big hole) -> somebody (2225ms) What is the length of the Big Dig? head-on 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (head-on, digs up, big hypocrisies) -> head-on (2225ms) What is the length of the Big Dig? Theyve 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Theyve, dug, a big hole) -> Theyve (2228ms) What is the length of the Big Dig? Chicks 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, mac) -> (Chicks, dig, Mac OS X) -> Chicks (2225ms) What is the length of the Big Dig? an intense bout 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, mac) -> (an intense bout, digged up, my old Mac Plus) -> an intense bout (2225ms) What is the length of the Big Dig? the soldiers 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the soldiers, dug, a big hole) -> the soldiers (2224ms) What is the length of the Big Dig? a man 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (a man, dug up, a big , earthenware cask) -> a man (2224ms) What is the length of the Big Dig? The excavator 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (The excavator, dug, a big hole) -> The excavator (2229ms) What is the length of the Big Dig? Weve 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Weve, dug ourselves, a big hole) -> Weve (2225ms) What is the length of the Big Dig? Lord Para?ur?ma 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Lord Para?ur?ma, dug, five big lakes) -> Lord Para?ur?ma (2227ms) What is the length of the Big Dig? gardening 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (gardening, Dig, two big holes) -> gardening (2224ms) What is the length of the Big Dig? Location 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Location, Digging, the big hole) -> Location (2222ms) What is the length of the Big Dig? the guys 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the guys, dig, big holes) -> the guys (2230ms) What is the length of the Big Dig? Karen 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, mac) -> (Karen, is totally digging, her MacBook Pro) -> Karen (2225ms) What is the length of the Big Dig? Don?t fig 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Don?t fig, dig, a big wide hole) -> Don?t fig (2225ms) What is the length of the Big Dig? bricks and stones 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (bricks and stones, dug, a big hole) -> bricks and stones (2225ms) What is the length of the Big Dig? Old Romney quote 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, mac) -> (Old Romney quote, dug up by, @AlecMacGillis) -> Old Romney quote (2227ms) What is the length of the Big Dig? Certain critics 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Certain critics, dig, big fat juice) -> Certain critics (2225ms) What is the length of the Big Dig? the contractor 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the contractor, dug, a big hole) -> the contractor (2227ms) What is the length of the Big Dig? the entire socailist democratic party 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the entire socailist democratic party, dig, a big ditch) -> the entire socailist democratic party (2228ms) What is the length of the Big Dig? the table and 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the table and, dug into, big bowls) -> the table and (2228ms) What is the length of the Big Dig? Microsoft 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Microsoft, have dug, an awfully big hole) -> Microsoft (2225ms) What is the length of the Big Dig? the lawnmower 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the lawnmower, dug, a big hole) -> the lawnmower (2229ms) What is the length of the Big Dig? Season 1 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, mac) -> (Season 1, really dug, Kyle MacLachlan?s button-down look) -> Season 1 (2229ms) What is the length of the Big Dig? Justis 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (Justis, dug, a big whole) -> Justis (2224ms) What is the length of the Big Dig? a smaller plant 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (a smaller plant, just dig, a hole big enough) -> a smaller plant (2225ms) What is the length of the Big Dig? the insulation value 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the insulation value, dig, a big hole) -> the insulation value (2227ms) What is the length of the Big Dig? a forest 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (a forest, dig, a big mine) -> a forest (2229ms) What is the length of the Big Dig? the iPad end-user licensing agreement 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, mac) -> (the iPad end-user licensing agreement, dug up by, MacRumors) -> the iPad end-user licensing agreement (2227ms) What is the length of the Big Dig? Ash 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, mac) -> (Ash, was digging for, second and Mac) -> Ash (2224ms) What is the length of the Big Dig? the builders 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the builders, dug, a big hole) -> the builders (2229ms) What is the length of the Big Dig? the east face 0.666666666667 What is the length of the Big Dig? -> $x: ($x, dig, big) -> (the east face, dug, a snow cave big) -> the east face (2229ms) What is the length of the Big Dig? Fans 0.555555555556 What is the length of the Big Dig? -> $x: ($x, dig, big bang) -> (Fans, are digging, Big Bang?s strong promotions) -> Fans (2230ms) What president created social security? Title V 0.555555555553 What president created social security? -> $x: ($x, created, social security act) -> (Title V, were created by, the Social Security Act) -> Title V (1394ms) What president created social security? the U.S. 0.555555555553 What president created social security? -> $x: ($x, establish, social security act) -> (the U.S., were established with, the Social Security Act) -> the U.S. (1652ms) What president created social security? Johnson 0.555555555553 What president created social security? -> $x: ($x, find, social security act) -> (Johnson, found, the social security act) -> Johnson (1451ms) What president created social security? unions 0.555555555553 What president created social security? -> $x: ($x, created, social security act) -> (unions, had created, the social security act) -> unions (772ms) What president created social security? foster care system 0.555555555553 What president created social security? -> $x: ($x, created, social security act) -> (foster care system, was created under, the Social Security Act) -> foster care system (1652ms) What president created social security? AFDC 0.555555555553 What president created social security? -> $x: ($x, created, social security act) -> (AFDC, was first created by, the Social Security Act) -> AFDC (772ms) What president created social security? Congress 0.555555555553 What president created social security? -> $x: ($x, created, social security act) -> (Congress, created, the Social Security Act) -> Congress (772ms) What president created social security? The Medicaid program 0.555555555553 What president created social security? -> $x: ($x, created, social security act) -> (The Medicaid program, was created under, the Social Security Act) -> The Medicaid program (772ms) What president created social security? a defined benefit category 0.555555555553 What president created social security? -> $x: ($x, find, social security act) -> (a defined benefit category, found in, the Social Security Act) -> a defined benefit category (1451ms) What president created social security? The program 0.555555555553 What president created social security? -> $x: ($x, establish, social security act) -> (The program, was established by, the federal Social Security Act) -> The program (1394ms) What president created social security? hospice benefits 0.555555555553 What president created social security? -> $x: ($x, find, social security act) -> (hospice benefits, are found in, the Social Security Act) -> hospice benefits (1394ms) What president created social security? Roosevelt 0.555555555553 What president created social security? -> $x: ($x, establish, social security act) -> (Roosevelt, established, the Social Security Act) -> Roosevelt (1451ms) What president created social security? a bill 0.555555555553 What president created social security? -> $x: ($x, establish, social security act) -> (a bill, established, the Social Security Act) -> a bill (1394ms) What president created social security? Social Security 0.555555555553 What president created social security? -> $x: ($x, created, social security act) -> (Social Security, was created by, the Social Security Act) -> Social Security (1394ms) What president created social security? roosevelt 0.555555555553 What president created social security? -> $x: ($x, find, social security act) -> (roosevelt, found, the social security act) -> roosevelt (1451ms) What president created social security? The requirements 0.555555555553 What president created social security? -> $x: ($x, establish, social security act) -> (The requirements, are established by, the Social Security Act) -> The requirements (772ms) What president created social security? A program 0.555555555553 What president created social security? -> $x: ($x, establish, social security act) -> (A program, established by, the Social Security Act of 1935) -> A program (1451ms) What president created social security? The system 0.555555555553 What president created social security? -> $x: ($x, establish, social security act) -> (The system, was established by, the Social Security Act of 1935) -> The system (1652ms) What president created social security? Economic Security 0.555555555553 What president created social security? -> $x: ($x, created, social security act) -> (Economic Security, created, the Social Security Act) -> Economic Security (1451ms) What president created social security? SSA 0.555555555553 What president created social security? -> $x: ($x, establish, social security act) -> (SSA, was established by, the Social Security Act) -> SSA (1451ms) What president created social security? The federal law 0.555555555553 What president created social security? -> $x: ($x, find, social security act) -> (The federal law, can be found in, the Social Security Act) -> The federal law (1394ms) What president created social security? Need 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (Need, help finding, your Social Security form) -> Need (1925ms) What president created social security? national standards 0.555555555551 What president created social security? -> $x: ($x, establish, social security) -> (national standards, establish, a social security system) -> national standards (1905ms) What president created social security? Chinese workers 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (Chinese workers, will find, that state-provided social security) -> Chinese workers (1948ms) What president created social security? 800-772-1213 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (800-772-1213, find, the Social Security office) -> 800-772-1213 (1932ms) What president created social security? lifespans 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (lifespans, have created havoc with, Social Security) -> lifespans (1948ms) What president created social security? Social Security Offices 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (Social Security Offices, Find, a social security office) -> Social Security Offices (1745ms) What president created social security? disabled people 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (disabled people, found expression in, Social Security) -> disabled people (1925ms) What president created social security? U.S. 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (U.S., created through, the Social Security Administration system) -> U.S. (1946ms) What president created social security? The Democrats 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (The Democrats, created, Social Security) -> The Democrats (1946ms) What president created social security? the criteria 0.555555555551 What president created social security? -> $x: ($x, establish, social security) -> (the criteria, established by, the Social Security Administration) -> the criteria (1935ms) What president created social security? the zip code 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (the zip code, can help find, a social security lawyer) -> the zip code (1948ms) What president created social security? the legislation 0.555555555551 What president created social security? -> $x: ($x, establish, social security) -> (the legislation, establishing, Social Security) -> the legislation (1941ms) What president created social security? Armenian 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (Armenian, can find out about, Social Security) -> Armenian (1941ms) What president created social security? He?s 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (He?s, create, Social Security) -> He?s (1941ms) What president created social security? an individual 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (an individual, found in, the Social Security Death Index) -> an individual (1929ms) What president created social security? The government 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (The government, created, the Social Security) -> The government (1944ms) What president created social security? thieves 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (thieves, easily create, fake Social Security numbers) -> thieves (1932ms) What president created social security? President Roosevelt 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (President Roosevelt, created, Social Security) -> President Roosevelt (1795ms) What president created social security? Legal Phone Book 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (Legal Phone Book, Find, Lawyers Texas Social Security Lawyers) -> Legal Phone Book (1938ms) What president created social security? The survey 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (The survey, also found vigorous support for, Social Security) -> The survey (1929ms) What president created social security? George 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (George, wants to create, Social Security Savings Accounts) -> George (1935ms) What president created social security? ?Has Obama 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (?Has Obama, created, a Social Security ?death panel?) -> ?Has Obama (1876ms) What president created social security? the federal government 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (the federal government, created, Social Security) -> the federal government (1948ms) What president created social security? An answer 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (An answer, can be found in, the 2011 Social Security report) -> An answer (1925ms) What president created social security? The company 0.555555555551 What president created social security? -> $x: ($x, establish, social security) -> (The company, had even established, a social security system) -> The company (1941ms) What president created social security? The form 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (The form, can be found at, your local Social Security office) -> The form (1938ms) What president created social security? security officers 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (security officers, found, a social security card) -> security officers (1795ms) What president created social security? The Listing 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (The Listing, found in, the Social Security regulations) -> The Listing (1847ms) What president created social security? Perkins 0.555555555551 What president created social security? -> $x: ($x, establish, social security) -> (Perkins, helped establish, the Social Security program) -> Perkins (1946ms) What president created social security? legislation 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (legislation, created, the Social Security Program) -> legislation (1905ms) What president created social security? a collection agency 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (a collection agency, find, the social security numbers) -> a collection agency (1946ms) What president created social security? President Franklin Roosevelt 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (President Franklin Roosevelt, created, Social Security) -> President Franklin Roosevelt (1935ms) What president created social security? the United States 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (the United States, created, Social Security) -> the United States (1941ms) What president created social security? persons 0.555555555551 What president created social security? -> $x: ($x, establish, social security) -> (persons, seeking to establish, Social Security eligibility) -> persons (1932ms) What president created social security? a denial 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (a denial, find, a Social Security lawyer) -> a denial (1819ms) What president created social security? 18 0.555555555551 What president created social security? -> $x: ($x, establish, social security) -> (18, can establish an account with, a Social Security Number) -> 18 (1905ms) What president created social security? The federal government 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (The federal government, created, Social Security) -> The federal government (1946ms) What president created social security? Fox poll 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (Fox poll, finds support for, private Social Security accounts) -> Fox poll (1688ms) What president created social security? medical expenses 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (medical expenses, find, that Social Security) -> medical expenses (1819ms) What president created social security? Law 100 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (Law 100, created, a new general social security system) -> Law 100 (1929ms) What president created social security? a U.S. Congressman 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (a U.S. Congressman, voted to create, Social Security) -> a U.S. Congressman (1932ms) What president created social security? less than one child 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (less than one child, creates an undue burden on, social security) -> less than one child (1745ms) What president created social security? Biomass production 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (Biomass production, should create, social security) -> Biomass production (1925ms) What president created social security? jobs 0.555555555551 What president created social security? -> $x: ($x, establish, social security) -> (jobs, establish a new system of, social security) -> jobs (1943ms) What president created social security? ?disability ? 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (?disability ?, found in, the Social Security regulations) -> ?disability ? (1932ms) What president created social security? the Social Security Act 0.555555555551 What president created social security? -> $x: ($x, establish, social security) -> (the Social Security Act, established, the Social Security Board) -> the Social Security Act (1847ms) What president created social security? Seniors 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (Seniors, often find, their Social Security income) -> Seniors (1943ms) What president created social security? 2. Bush 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (2. Bush, still wants to create, a Social Security system) -> 2. Bush (1935ms) What president created social security? the U.S. federal government 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (the U.S. federal government, created, social security) -> the U.S. federal government (1794ms) What president created social security? More information 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (More information, can be found on, the Social Security website) -> More information (1819ms) What president created social security? FDR 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (FDR, created, the Social Security system) -> FDR (1946ms) What president created social security? civil service 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (civil service, creates, Social Security Administration) -> civil service (1929ms) What president created social security? work incentives 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (work incentives, can be found on, the Social Security web site) -> work incentives (1745ms) What president created social security? the U.S. government 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (the U.S. government, created, its social security program) -> the U.S. government (1938ms) What president created social security? the tab 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (the tab, Find, a Social Security Office ') -> the tab (1876ms) What president created social security? arthritis 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (arthritis, will be found disabled under, Social Security rules) -> arthritis (1938ms) What president created social security? life 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (life, can be found in, Social Security or immediate annuities) -> life (1941ms) What president created social security? state 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (state, can be found on, Social Security web site) -> state (1745ms) What president created social security? the Congress 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (the Congress, created, Social Security or Medicare) -> the Congress (1745ms) What president created social security? the New-Deal 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (the New-Deal, created, Social Security) -> the New-Deal (1938ms) What president created social security? SSI 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (SSI, can be found at, Social Security) -> SSI (1941ms) What president created social security? 87 ? 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (87 ?, Creates, a social security fund) -> 87 ? (1938ms) What president created social security? Inmate 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (Inmate, was found by, the Social Security Admin) -> Inmate (1688ms) What president created social security? sleep apnea 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (sleep apnea, will be found disabled under, Social Security rules) -> sleep apnea (1946ms) What president created social security? National Social Security Workers Union 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (National Social Security Workers Union, can be found on Wikipedia at, http://en.wikipedia.org/wiki/National%20Social%20Security%20Workers%20Union) -> National Social Security Workers Union (1925ms) What president created social security? McCoy 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (McCoy, did find, Jonestown social security beneficiaries) -> McCoy (1941ms) What president created social security? The State 0.555555555551 What president created social security? -> $x: ($x, establish, social security) -> (The State, establishes, a social security system) -> The State (1932ms) What president created social security? France 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (France, created, a fifth national social security agency) -> France (1652ms) What president created social security? turn 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (turn, created, the corporate social security system) -> turn (1932ms) What president created social security? the Needy 0.555555555551 What president created social security? -> $x: ($x, establish, social security) -> (the Needy, establish a system of, Social Security) -> the Needy (1932ms) What president created social security? any hacker 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (any hacker, can find, my social security number) -> any hacker (1943ms) What president created social security? Franklin D. Roosevelt 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (Franklin D. Roosevelt, created, Social Security) -> Franklin D. Roosevelt (1944ms) What president created social security? the federal laws 0.555555555551 What president created social security? -> $x: ($x, establish, social security) -> (the federal laws, established, the Social Security program) -> the federal laws (1847ms) What president created social security? individuals 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (individuals, find, their local Social Security office) -> individuals (1946ms) What president created social security? The Social Security Board 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (The Social Security Board, then created, 10 Social Security) -> The Social Security Board (1946ms) What president created social security? No Culpeppers 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (No Culpeppers, found, Social Security Death Index Source) -> No Culpeppers (1948ms) What president created social security? a plan 0.555555555551 What president created social security? -> $x: ($x, establish, social security) -> (a plan, would establish, Social Security private accounts) -> a plan (1905ms) What president created social security? The charter 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (The charter, also creates new rights to, social security) -> The charter (1905ms) What president created social security? Sensitive Data 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (Sensitive Data, Find, unsecured Social Security Numbers) -> Sensitive Data (1905ms) What president created social security? Tibet 0.555555555551 What president created social security? -> $x: ($x, establish, social security) -> (Tibet, has established, a social security system) -> Tibet (1795ms) What president created social security? One reader 0.555555555551 What president created social security? -> $x: ($x, discover, social security) -> (One reader, discovered errors in, her Social Security statements) -> One reader (1935ms) What president created social security? the president 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (the president, first created, a Social Security system) -> the president (1795ms) What president created social security? Political Movement for Social Security 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (Political Movement for Social Security, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Political%20Movement%20for%20Social%20Security) -> Political Movement for Social Security (1925ms) What president created social security? government 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (government, creates, a social security system) -> government (1935ms) What president created social security? the author 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (the author, find disappointing in, the Social Security program) -> the author (1941ms) What president created social security? The new web pages 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (The new web pages, can be found on, the Social Security website) -> The new web pages (1932ms) What president created social security? you?ll 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (you?ll, find, a Social Security disability attorney) -> you?ll (1946ms) What president created social security? the commission 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (the commission, thus created, the Social Security surplus) -> the commission (1925ms) What president created social security? Chipotle 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (Chipotle, found, incorrect Social Security numbers) -> Chipotle (1925ms) What president created social security? Franklin Roosevelt 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (Franklin Roosevelt, created, social security) -> Franklin Roosevelt (1925ms) What president created social security? President Franklin Delano Roosevelt 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (President Franklin Delano Roosevelt, created, Social Security) -> President Franklin Delano Roosevelt (1935ms) What president created social security? a state 0.555555555551 What president created social security? -> $x: ($x, establish, social security) -> (a state, to establish, a system of social security) -> a state (1938ms) What president created social security? information 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (information, found in, the Social Security Death Index) -> information (1943ms) What president created social security? the promise 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (the promise, create, a social security network) -> the promise (1932ms) What president created social security? Old Friends 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (Old Friends, will help create, a social security system) -> Old Friends (1905ms) What president created social security? Rall 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (Rall, says finding, a social security card) -> Rall (1929ms) What president created social security? Liberals 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (Liberals, created, Social Security) -> Liberals (1819ms) What president created social security? the header 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (the header, Find, A Social Security Office) -> the header (1847ms) What president created social security? the heading 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (the heading, Find, A Social Security Office) -> the heading (1935ms) What president created social security? the politicians 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (the politicians, created, the Social Security program) -> the politicians (1938ms) What president created social security? Local Office Search 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (Local Office Search, find, your local Social Security office) -> Local Office Search (1932ms) What president created social security? the party 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (the party, created, Social Security and Medicare) -> the party (1948ms) What president created social security? Quigley?s office 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (Quigley?s office, found out, the Social Security Administration) -> Quigley?s office (1929ms) What president created social security? dhss 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (dhss, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Department%20of%20Health%20and%20Social%20Security) -> dhss (1905ms) What president created social security? any age 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (any age, can be found disabled by, Social Security) -> any age (1932ms) What president created social security? the bill 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (the bill, creating, Social Security) -> the bill (1948ms) What president created social security? the government 0.555555555551 What president created social security? -> $x: ($x, establish, social security) -> (the government, established, Social Security) -> the government (1948ms) What president created social security? software 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (software, find, Social Security Numbers) -> software (1935ms) What president created social security? the staff 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (the staff, will be able to find, their Social Security Number) -> the staff (1943ms) What president created social security? Generations 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (Generations, worked to create, our Social Security) -> Generations (1929ms) What president created social security? a business 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (a business, may find, Social Security) -> a business (1688ms) What president created social security? the New Deal 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (the New Deal, created, Social Security) -> the New Deal (1941ms) What president created social security? 35 % 0.555555555551 What president created social security? -> $x: ($x, establish, social security) -> (35 %, establish private accounts for, Social Security) -> 35 % (1929ms) What president created social security? People Search GUIDE TOOLS 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (People Search GUIDE TOOLS, Find Out, Social Security Numbers) -> People Search GUIDE TOOLS (1688ms) What president created social security? much less work 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (much less work, even created, a social-security system) -> much less work (1935ms) What president created social security? a child 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (a child, was found to have, six social security numbers) -> a child (1819ms) What president created social security? Crooks 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (Crooks, can find, all the Social Security numbers) -> Crooks (1946ms) What president created social security? Bachelet 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (Bachelet, created, a social security network) -> Bachelet (1935ms) What president created social security? the Rich 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (the Rich, Created, the Social Security) -> the Rich (1795ms) What president created social security? Eric Karros 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (Eric Karros, found, their social security checks) -> Eric Karros (1905ms) What president created social security? India 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (India, create, an American-style Social Security Administration) -> India (1938ms) What president created social security? International Social Security Association 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (International Social Security Association, can be found on Wikipedia at, http://en.wikipedia.org/wiki/International%20Social%20Security%20Association) -> International Social Security Association (1847ms) What president created social security? E-Verify 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (E-Verify, was created at, Social Security) -> E-Verify (1847ms) What president created social security? online businesses 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (online businesses, are finding, inactive Social Security numbers) -> online businesses (1938ms) What president created social security? the law 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (the law, creating, Social Security) -> the law (1948ms) What president created social security? the IRA. 9 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (the IRA. 9, Find out about, your Social Security benefits) -> the IRA. 9 (1948ms) What president created social security? progressives politicians 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (progressives politicians, create, Social Security) -> progressives politicians (1929ms) What president created social security? a switch 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (a switch, also could create, Social Security issues) -> a switch (1652ms) What president created social security? Ralphs 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (Ralphs, created, fake Social Security Numbers) -> Ralphs (1905ms) What president created social security? higher brackets 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (higher brackets, may find, that Social Security income) -> higher brackets (1929ms) What president created social security? the Democrats 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (the Democrats, created, Social Security and the Republicans) -> the Democrats (1935ms) What president created social security? death records 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (death records, find people by, name or social security number) -> death records (1925ms) What president created social security? the Great Depression 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (the Great Depression, was to create, Social Security) -> the Great Depression (1941ms) What president created social security? 1935 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (1935, created, Social Security) -> 1935 (1905ms) What president created social security? the Act 0.555555555551 What president created social security? -> $x: ($x, establish, social security) -> (the Act, established, Social Security) -> the Act (1943ms) What president created social security? The Act 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (The Act, creates, a Social Security Board) -> The Act (1935ms) What president created social security? licenses 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (licenses, will find, their Social Security numbers) -> licenses (1938ms) What president created social security? harness modern science 0.555555555551 What president created social security? -> $x: ($x, establish, social security) -> (harness modern science, establish, personal Social Security) -> harness modern science (1688ms) What president created social security? the option 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (the option, Find, a Social Security office) -> the option (1944ms) What president created social security? the country 0.555555555551 What president created social security? -> $x: ($x, created, social security) -> (the country, must create a real system of, social security) -> the country (1935ms) What president created social security? The information 0.555555555551 What president created social security? -> $x: ($x, find, social security) -> (The information, found in, the Social Security Death Index) -> The information (1943ms) What president created social security? The Communists 0.55555555555 What president created social security? -> $x: ($x, produce, social security) -> (The Communists, produced, social security) -> The Communists (1948ms) What president created social security? a waiver 0.55555555555 What president created social security? -> $x: ($x, produce, social security) -> (a waiver, produce, a Social Security Card) -> a waiver (1950ms) What president created social security? The accounts 0.55555555555 What president created social security? -> $x: ($x, produce, social security) -> (The accounts, produce a permanent surplus in, Social Security) -> The accounts (1950ms) What president created social security? the demographics 0.55555555555 What president created social security? -> $x: ($x, produce, social security) -> (the demographics, produce, a Social Security gap) -> the demographics (1950ms) What president created social security? Sanae 0.55555555555 What president created social security? -> $x: ($x, produce, social security) -> (Sanae, also produced, a Social Security number) -> Sanae (1950ms) What president created social security? workers 0.55555555555 What president created social security? -> $x: ($x, produce, social security) -> (workers, must produce, a Social Security card) -> workers (1950ms) What president created social security? Flores 0.55555555555 What president created social security? -> $x: ($x, produce, social security) -> (Flores, produced, a Social Security card) -> Flores (1950ms) What president created social security? Andy Cox 0.55555555555 What president created social security? -> $x: ($x, produce, social security) -> (Andy Cox, Tracks produced, Social Security) -> Andy Cox (1950ms) What president created social security? the Machine 0.55555555555 What president created social security? -> $x: ($x, produce, social security) -> (the Machine, produces, the social security number) -> the Machine (1950ms) What president created social security? Diaz 0.55555555555 What president created social security? -> $x: ($x, produce, social security) -> (Diaz, had produced, a Social Security number) -> Diaz (1950ms) What president created social security? David Steele 0.55555555555 What president created social security? -> $x: ($x, produce, social security) -> (David Steele, Tracks produced, Social Security) -> David Steele (1950ms) What president created social security? the hiring hall 0.55555555555 What president created social security? -> $x: ($x, produce, social security) -> (the hiring hall, produced, the Social Security cards) -> the hiring hall (1950ms) What president created social security? Non-Residents 0.55555555555 What president created social security? -> $x: ($x, produce, social security) -> (Non-Residents, are required to produce, Social Security number) -> Non-Residents (1948ms) What president created social security? Alvarez 0.55555555555 What president created social security? -> $x: ($x, produce, social security) -> (Alvarez, was unable to produce, a valid Social Security card) -> Alvarez (1950ms) What president created social security? Roland Gift 0.55555555555 What president created social security? -> $x: ($x, produce, social security) -> (Roland Gift, Tracks produced, Social Security) -> Roland Gift (1950ms) What president created social security? the accounts 0.222222222221 What president created social security? -> $x: ($x, created, social security number) -> (the accounts, are created under, the same Social Security number) -> the accounts (1952ms) When was it introduced into the U.S.? Japanese scientists 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Japanese scientists, introduced into, U.S. soft drinks) -> Japanese scientists (988ms) When was it introduced into the U.S.? Bill 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Bill, introduced into, the U.S. House) -> Bill (990ms) When was it introduced into the U.S.? sweet potatoes 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (sweet potatoes, were first introduced into, the U.S.) -> sweet potatoes (990ms) When was it introduced into the U.S.? Kudzu 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Kudzu, was introduced into, the U.S.) -> Kudzu (990ms) When was it introduced into the U.S.? The Maxixe 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (The Maxixe, was introduced into, the U.S.A.) -> The Maxixe (990ms) When was it introduced into the U.S.? Introduction Houndstongue 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Introduction Houndstongue, was introduced into, the U.S.) -> Introduction Houndstongue (989ms) When was it introduced into the U.S.? metrazol convulsive therapy 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (metrazol convulsive therapy, was introduced into, U.S. asylums) -> metrazol convulsive therapy (989ms) When was it introduced into the U.S.? the virus 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (the virus, was first introduced into, the U.S.) -> the virus (986ms) When was it introduced into the U.S.? an act 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (an act, was introduced into, the U.S. Congress) -> an act (989ms) When was it introduced into the U.S.? an innovative method 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (an innovative method, were largely introduced into, the U.S.) -> an innovative method (987ms) When was it introduced into the U.S.? Water chestnut 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Water chestnut, was introduced into, the U.S.) -> Water chestnut (987ms) When was it introduced into the U.S.? Mass. 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Mass., had introduced into, the U.S.) -> Mass. (984ms) When was it introduced into the U.S.? autumn olive 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (autumn olive, was introduced into, the U.S.) -> autumn olive (991ms) When was it introduced into the U.S.? The House Sparrow 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (The House Sparrow, was first introduced into, the U.S.) -> The House Sparrow (986ms) When was it introduced into the U.S.? Distribution Autumn olive 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Distribution Autumn olive, was introduced into, U.S. cultivation) -> Distribution Autumn olive (988ms) When was it introduced into the U.S.? Green Star 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Green Star, has just been introduced into, U.S. market) -> Green Star (990ms) When was it introduced into the U.S.? Sales 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Sales, introduced into, the U.S. market) -> Sales (989ms) When was it introduced into the U.S.? The elm leaf beetle 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (The elm leaf beetle, was accidentally introduced into, the U.S.) -> The elm leaf beetle (990ms) When was it introduced into the U.S.? Counterfeits Act ? 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Counterfeits Act ?, was introduced into, the U.S. Senate) -> Counterfeits Act ? (988ms) When was it introduced into the U.S.? Europe or Asia 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Europe or Asia, was probably introduced into, the U.S.) -> Europe or Asia (989ms) When was it introduced into the U.S.? The Asian grass carp 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (The Asian grass carp, was introduced deliberately into, the U.S.) -> The Asian grass carp (984ms) When was it introduced into the U.S.? The pest 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (The pest, was introduced into, the U.S.) -> The pest (991ms) When was it introduced into the U.S.? a new pest/disease 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (a new pest/disease, may have been introduced into, the U.S.) -> a new pest/disease (987ms) When was it introduced into the U.S.? Fabaceae Soybeans 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Fabaceae Soybeans, were first introduced into, the U.S.) -> Fabaceae Soybeans (989ms) When was it introduced into the U.S.? The PROTECT IP Act 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (The PROTECT IP Act, was introduced into, the U.S. Senate) -> The PROTECT IP Act (991ms) When was it introduced into the U.S.? GMOs 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (GMOs, are rapidly being introduced into, U.S. agriculture) -> GMOs (990ms) When was it introduced into the U.S.? The method 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (The method, was introduced into, the U.S.) -> The method (984ms) When was it introduced into the U.S.? One bill 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (One bill, introduced into, the U.S. Senate) -> One bill (989ms) When was it introduced into the U.S.? disease 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (disease, is first introduced into, the U.S.) -> disease (984ms) When was it introduced into the U.S.? cultivar 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (cultivar, was introduced into, the U.S.) -> cultivar (988ms) When was it introduced into the U.S.? The predators 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (The predators, have been introduced into, the U.S.) -> The predators (984ms) When was it introduced into the U.S.? Mexico and Canada 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Mexico and Canada, was introduced into, the U.S. House) -> Mexico and Canada (989ms) When was it introduced into the U.S.? West Nile 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (West Nile, was first introduced into, the U.S.) -> West Nile (984ms) When was it introduced into the U.S.? garlic mustard 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (garlic mustard, was introduced into, the northeastern U. S.) -> garlic mustard (989ms) When was it introduced into the U.S.? Russian bee queens 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Russian bee queens, were introduced into, the U.S.) -> Russian bee queens (990ms) When was it introduced into the U.S.? Europe 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Europe, was introduced into, the U.S.) -> Europe (986ms) When was it introduced into the U.S.? Amur honeysuckles 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Amur honeysuckles, were introduced into, the U.S.) -> Amur honeysuckles (988ms) When was it introduced into the U.S.? The seeds 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (The seeds, were introduced into, the U.S) -> The seeds (984ms) When was it introduced into the U.S.? the products 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (the products, were introduced into, the U.S.) -> the products (986ms) When was it introduced into the U.S.? Project 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Project, have been introduced into, the U.S.) -> Project (989ms) When was it introduced into the U.S.? Europe centuries 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Europe centuries, was introduced into, the U.S.) -> Europe centuries (984ms) When was it introduced into the U.S.? antidepressant medication 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (antidepressant medication, was introduced into, the U.S.) -> antidepressant medication (989ms) When was it introduced into the U.S.? Air yam 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Air yam, was introduced into, the U.S.) -> Air yam (989ms) When was it introduced into the U.S.? China 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (China, was introduced into, the U.S.) -> China (988ms) When was it introduced into the U.S.? GA Mimosa Tree 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (GA Mimosa Tree, was introduced into, the U.S.) -> GA Mimosa Tree (990ms) When was it introduced into the U.S.? the varroa mite 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (the varroa mite, were introduced into, the U.S.) -> the varroa mite (986ms) When was it introduced into the U.S.? Paulownia tomentosa Princesstree 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Paulownia tomentosa Princesstree, was introduced into, the U.S.) -> Paulownia tomentosa Princesstree (988ms) When was it introduced into the U.S.? a leading supplier 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (a leading supplier, introduces into, the U.S. market) -> a leading supplier (990ms) When was it introduced into the U.S.? the 128 kHz microchip 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (the 128 kHz microchip, have been introduced into, the U.S.) -> the 128 kHz microchip (986ms) When was it introduced into the U.S.? Morrow?s and Amur honeysuckles 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Morrow?s and Amur honeysuckles, were introduced into, the U.S.) -> Morrow?s and Amur honeysuckles (984ms) When was it introduced into the U.S.? vegetable oils 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (vegetable oils, was introduced into, the U.S.) -> vegetable oils (990ms) When was it introduced into the U.S.? data breach response 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (data breach response, have been introduced into, the U.S. Senate) -> data breach response (989ms) When was it introduced into the U.S.? The soybean plant 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (The soybean plant, was originally introduced into, the U.S.) -> The soybean plant (988ms) When was it introduced into the U.S.? Chinaberry 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Chinaberry, was introduced into, the U.S.) -> Chinaberry (989ms) When was it introduced into the U.S.? Repair Act 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Repair Act, has been introduced into, the U.S. Congress) -> Repair Act (991ms) When was it introduced into the U.S.? every 10 new books 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (every 10 new books, introduced into, the U.S. market) -> every 10 new books (990ms) When was it introduced into the U.S.? new soybean accessions 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (new soybean accessions, were introduced into, the U.S.) -> new soybean accessions (983ms) When was it introduced into the U.S.? First 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (First, introduced into, the U.S.) -> First (990ms) When was it introduced into the U.S.? Hertz 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Hertz, introduced into, its U.S. fleet) -> Hertz (990ms) When was it introduced into the U.S.? 555 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (555, was introduced into, the U. S. Senate) -> 555 (987ms) When was it introduced into the U.S.? Faith 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Faith, will be introduced into, U.S. public) -> Faith (990ms) When was it introduced into the U.S.? risks 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (risks, are introduced into, U.S. waters) -> risks (984ms) When was it introduced into the U.S.? a fungus 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (a fungus, introduced into, the U.S.) -> a fungus (986ms) When was it introduced into the U.S.? the tomato 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (the tomato, was introduced into, the U.S.) -> the tomato (990ms) When was it introduced into the U.S.? the same name 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (the same name, was introduced into, the U.S. House) -> the same name (989ms) When was it introduced into the U.S.? Africa 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Africa, introduced into, the U.S.) -> Africa (984ms) When was it introduced into the U.S.? The M3 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (The M3, was introduced into, the U. S. Army) -> The M3 (983ms) When was it introduced into the U.S.? 230 new pizzas 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (230 new pizzas, were introduced into, the U.S.) -> 230 new pizzas (986ms) When was it introduced into the U.S.? Red fire ants 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Red fire ants, were introduced into, the U.S.) -> Red fire ants (984ms) When was it introduced into the U.S.? the monkeypox virus 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (the monkeypox virus, was introduced into, the U.S.) -> the monkeypox virus (986ms) When was it introduced into the U.S.? the PWR 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (the PWR, introduced into, the U.S. market) -> the PWR (986ms) When was it introduced into the U.S.? The Elise 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (The Elise, was recently introduced into, the U.S.) -> The Elise (989ms) When was it introduced into the U.S.? a member 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (a member, was introduced into, the U.S.) -> a member (988ms) When was it introduced into the U.S.? The Chinese Jujube 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (The Chinese Jujube, was introduced formally into, the U.S.) -> The Chinese Jujube (986ms) When was it introduced into the U.S.? a native 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (a native, was probably introduced into, the U.S.) -> a native (991ms) When was it introduced into the U.S.? Iridology 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Iridology, was introduced into, the U. S.) -> Iridology (986ms) When was it introduced into the U.S.? deterrence 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (deterrence, should also be introduced into, U.S. policy) -> deterrence (986ms) When was it introduced into the U.S.? a resolution 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (a resolution, had been introduced into, the U.S. House) -> a resolution (991ms) When was it introduced into the U.S.? SAM-e 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (SAM-e, was officially introduced into, the U.S.) -> SAM-e (986ms) When was it introduced into the U.S.? Mimosa 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Mimosa, was first introduced into, the U.S.) -> Mimosa (990ms) When was it introduced into the U.S.? GHB and ketamine 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (GHB and ketamine, were first introduced into, the U.S.) -> GHB and ketamine (988ms) When was it introduced into the U.S.? Green-oriented legislation 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Green-oriented legislation, introduced into, the U.S. Congress) -> Green-oriented legislation (991ms) When was it introduced into the U.S.? Senator Obama 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Senator Obama, introduced into, the U.S. Senate) -> Senator Obama (990ms) When was it introduced into the U.S.? Several technologies 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (Several technologies, have been introduced into, the U.S. market) -> Several technologies (984ms) When was it introduced into the U.S.? The Gardnerian sect 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (The Gardnerian sect, is introduced into, the U.S.) -> The Gardnerian sect (991ms) When was it introduced into the U.S.? The B-biotype 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (The B-biotype, was introduced into, the U.S.) -> The B-biotype (990ms) When was it introduced into the U.S.? the Troya brand 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (the Troya brand, was introduced into, the U. S. market) -> the Troya brand (984ms) When was it introduced into the U.S.? the Beetle 1.22222222221 When was it introduced into the U.S.? -> $x: ($x, introduce into, u.s.) -> (the Beetle, was introduced into, the U.S.) -> the Beetle (988ms) When is Jennifer Lopez's birthday? the USA 0.111111111108 When is Jennifer Lopez's birthday? -> $x: (jennifer lopez, be bear in, $x) -> (Jennifer Lopez, was born in, the USA) -> the USA (773ms) When is Jennifer Lopez's birthday? 1970 0.111111111108 When is Jennifer Lopez's birthday? -> $x: (jennifer lopez, be bear in, $x) -> (Jennifer Lopez and Beck, were all born in, 1970) -> 1970 (773ms) When is Jennifer Lopez's birthday? the Castle Hill section 0.111111111108 When is Jennifer Lopez's birthday? -> $x: (jennifer lopez, be bear in, $x) -> (Jennifer Lynn Lopez, was born in, the Castle Hill section) -> the Castle Hill section (773ms) When is Jennifer Lopez's birthday? New York City 0.111111111108 When is Jennifer Lopez's birthday? -> $x: (jennifer lopez, be bear in, $x) -> (Jennifer Lopez, was born in, New York City) -> New York City (773ms) When is Jennifer Lopez's birthday? the Bronx , New York 0.111111111108 When is Jennifer Lopez's birthday? -> $x: (jennifer lopez, be bear in, $x) -> (Jennifer Lopez Jennifer Lopez, was born in, the Bronx , New York) -> the Bronx , New York (773ms) When is Jennifer Lopez's birthday? the Bronx , NY , 0.111111111108 When is Jennifer Lopez's birthday? -> $x: (jennifer lopez, be bear in, $x) -> (Actress/singer Jennifer Lopez, was born in, the Bronx , NY ,) -> the Bronx , NY , (773ms) When is Jennifer Lopez's birthday? July 24 -0.333333333335 When is Jennifer Lopez's birthday? -> $x: (jennifer lopez, be bear on, $x) -> (Jennifer Lynn Lopez, was born on, July 24) -> July 24 (773ms) When is Jennifer Lopez's birthday? 24th July 1969 -0.333333333335 When is Jennifer Lopez's birthday? -> $x: (jennifer lopez, be bear on, $x) -> (Jennifer Lynn Lopez, was born on, 24th July 1969) -> 24th July 1969 (773ms) When is Jennifer Lopez's birthday? July 24 , 1970 -0.333333333335 When is Jennifer Lopez's birthday? -> $x: (jennifer lopez, be bear on, $x) -> (Jennifer Lopez, was born on, July 24 , 1970) -> July 24 , 1970 (773ms) When is Jennifer Lopez's birthday? July 24 , 1969 -0.333333333335 When is Jennifer Lopez's birthday? -> $x: (jennifer lopez, be bear on, $x) -> (Jennifer Lopez, was born on, July 24 , 1969) -> July 24 , 1969 (773ms) When was Shakespeare born? England 0.888888888883 When was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (William Shakespeare, was born in, England) -> England (6544ms) When was Shakespeare born? April , 1564 0.888888888883 When was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (William Shakespeare, was born in, April , 1564) -> April , 1564 (6933ms) When was Shakespeare born? the depths 0.888888888883 When was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (William Shakespeare, was born in, the depths) -> the depths (6545ms) When was Shakespeare born? the year 0.888888888883 When was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (William Shakespeare, was born in, the year) -> the year (6640ms) When was Shakespeare born? April 1564 0.888888888883 When was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (THE POET William Shakespeare, was born in, April 1564) -> April 1564 (6933ms) When was Shakespeare born? Stratford 0.888888888883 When was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (William Shakespeare, is born in, Stratford) -> Stratford (6640ms) When was Shakespeare born? late April 1564 0.888888888883 When was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (Biography William Shakespeare, was born in, late April 1564) -> late April 1564 (6545ms) When was Shakespeare born? Stratford-on-Avon 0.888888888883 When was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (William Shakespeare, was born in, Stratford-on-Avon) -> Stratford-on-Avon (6640ms) When was Shakespeare born? Stratford-upon-Avon 0.888888888883 When was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (2007 William Shakespeare, was born in, Stratford-upon-Avon) -> Stratford-upon-Avon (6933ms) When was Shakespeare born? Stratford and today 0.888888888883 When was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (William Shakespeare, was born in, Stratford and today) -> Stratford and today (5275ms) When was Shakespeare born? 1564 0.888888888883 When was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (William Shakespeare, was born in, 1564) -> 1564 (6640ms) When was Shakespeare born? the town 0.888888888883 When was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (William Shakespeare, was born in, the town) -> the town (5349ms) When was Shakespeare born? the county of Warwick 0.888888888883 When was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (William Shakespeare, was born in, the county of Warwick) -> the county of Warwick (6933ms) When was Shakespeare born? April 0.888888888883 When was Shakespeare born? -> $x: (william shakespeare, be bear in, $x) -> (William Shakespeare, was born in, April) -> April (6545ms) When was Shakespeare born? St . Austell 0.666666666662 When was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Shakespeare scholar and authority, was born in, St . Austell) -> St . Austell (9644ms) When was Shakespeare born? Kingston 0.666666666662 When was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Robbie Shakespeare, were both born in, Kingston) -> Kingston (11787ms) When was Shakespeare born? 1529 0.666666666662 When was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (John Shakespeare, was born in, 1529) -> 1529 (7560ms) When was Shakespeare born? the village 0.666666666662 When was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Shakespeare, was born in, the village) -> the village (12057ms) When was Shakespeare born? Teaneck 0.666666666662 When was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Shakespeare, had been born in, Teaneck) -> Teaneck (11660ms) When was Shakespeare born? Worcester 0.666666666662 When was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Nicholas Shakespeare, was born in, Worcester) -> Worcester (11660ms) When was Shakespeare born? the same year 0.666666666662 When was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Galileo and Shakespeare, were born in, the same year) -> the same year (12057ms) When was Shakespeare born? Henley Street 0.666666666662 When was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Shakespeare, was born in, Henley Street) -> Henley Street (11660ms) When was Shakespeare born? 1554 0.666666666662 When was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Shakespeare, was born in, 1554) -> 1554 (9589ms) When was Shakespeare born? Italy 0.666666666662 When was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Shakespeare, was born in, Italy) -> Italy (11273ms) When was Shakespeare born? the Warwickshire town 0.666666666662 When was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Will Shakespeare, was born in, the Warwickshire town) -> the Warwickshire town (12057ms) When was Shakespeare born? April and World book day 0.666666666662 When was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Shakespeare, was born in, April and World book day) -> April and World book day (6933ms) When was Shakespeare born? a small town 0.666666666662 When was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Shakespeare, was born in, a small town) -> a small town (12057ms) When was Shakespeare born? the latter half 0.666666666662 When was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (scotland Shakespeare, was born in, the latter half) -> the latter half (7560ms) When was Shakespeare born? Jackson 0.666666666662 When was Shakespeare born? -> $x: (shakespeare, be bear in, $x) -> (Shakespeare scholar Bruce R. Smith, was born in, Jackson) -> Jackson (6933ms) When was Shakespeare born? the same city 0.555555555553 When was Shakespeare born? -> $x: (william shakespeare, live in, $x) -> (William Shakespeare, lived in, the same city) -> the same city (12092ms) When was Shakespeare born? England four hundred years 0.555555555553 When was Shakespeare born? -> $x: (william shakespeare, live in, $x) -> (William Shakespeare, lived in, England four hundred years) -> England four hundred years (12091ms) When was Shakespeare born? 26 April 1564 0.555555555553 When was Shakespeare born? -> $x: (william shakespeare, be bear on, $x) -> (William Shakespeare, was born on, 26 April 1564) -> 26 April 1564 (12192ms) When was Shakespeare born? April 23 , 1564 0.555555555553 When was Shakespeare born? -> $x: (william shakespeare, be bear on, $x) -> (William Shakespeare, may have been born on, April 23 , 1564) -> April 23 , 1564 (12192ms) When was Shakespeare born? London 0.555555555553 When was Shakespeare born? -> $x: (william shakespeare, live in, $x) -> ('s Southwark William Shakespeare, lived in, London) -> London (12092ms) When was Shakespeare born? a time 0.555555555553 When was Shakespeare born? -> $x: (william shakespeare, live in, $x) -> (William Shakespeare, also lived in, a time) -> a time (12192ms) When was Shakespeare born? the epoch 0.555555555553 When was Shakespeare born? -> $x: (william shakespeare, live in, $x) -> (William Shakespeare, lived in, the epoch) -> the epoch (12159ms) When was Shakespeare born? April 23 0.555555555553 When was Shakespeare born? -> $x: (william shakespeare, be bear on, $x) -> (William Shakespeare, was born on, April 23) -> April 23 (12159ms) When was Shakespeare born? 23 April 1564 0.555555555553 When was Shakespeare born? -> $x: (william shakespeare, be bear on, $x) -> (William Shakespeare, was born on, 23 April 1564) -> 23 April 1564 (12125ms) When was Shakespeare born? the 26th 0.555555555553 When was Shakespeare born? -> $x: (william shakespeare, be bear on, $x) -> (William Shakespeare, was born on, the 26th) -> the 26th (12192ms) When was Shakespeare born? a 23... dead 0.555555555553 When was Shakespeare born? -> $x: (william shakespeare, be bear on, $x) -> (William Shakespeare, was born on, a 23... dead) -> a 23... dead (12125ms) When was Shakespeare born? April 23 , 1616 0.44444444444199993 When was Shakespeare born? -> $x: (william shakespeare, die on, $x) -> (William Shakespeare, died on, April 23 , 1616) -> April 23 , 1616 (12270ms) When was Shakespeare born? 1564 ! 5 hours ago 0.44444444444199993 When was Shakespeare born? -> $x: (william shakespeare, born in, $x) -> (Happy birthday William Shakespeare, born in, 1564 ! 5 hours ago) -> 1564 ! 5 hours ago (12192ms) When was Shakespeare born? The town 0.44444444444199993 When was Shakespeare born? -> $x: ($x, be birthplace of, william shakespeare) -> (The town, is the birthplace of, William Shakespeare) -> The town (12320ms) When was Shakespeare born? 1564 ! 1 hour ago 0.44444444444199993 When was Shakespeare born? -> $x: (william shakespeare, born in, $x) -> (Happy birthday William Shakespeare, born in, 1564 ! 1 hour ago) -> 1564 ! 1 hour ago (12245ms) When was Shakespeare born? 23 April 1616 0.44444444444199993 When was Shakespeare born? -> $x: (william shakespeare, die on, $x) -> (William Shakespeare, died on, 23 April 1616) -> 23 April 1616 (12320ms) When was Shakespeare born? 1564 ! 2 0.44444444444199993 When was Shakespeare born? -> $x: (william shakespeare, born in, $x) -> (Happy birthday William Shakespeare, born in, 1564 ! 2) -> 1564 ! 2 (12192ms) When was Shakespeare born? Stratford upon Avon 0.44444444444199993 When was Shakespeare born? -> $x: ($x, be birthplace of, william shakespeare) -> (Stratford upon Avon, is the birthplace of, William Shakespeare) -> Stratford upon Avon (12245ms) When was Shakespeare born? What town 0.44444444444199993 When was Shakespeare born? -> $x: ($x, be birthplace of, william shakespeare) -> (What town, was the birthplace of, William Shakespeare) -> What town (12218ms) When was Shakespeare born? Avon 0.44444444444199993 When was Shakespeare born? -> $x: ($x, be birthplace of, william shakespeare) -> (Avon, is the birthplace of, William Shakespeare) -> Avon (12245ms) When was Shakespeare born? 1564 ! 3 hours ago 0.44444444444199993 When was Shakespeare born? -> $x: (william shakespeare, born in, $x) -> (Happy birthday William Shakespeare, born in, 1564 ! 3 hours ago) -> 1564 ! 3 hours ago (12192ms) When was Shakespeare born? an island 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live on, $x) -> (Shakespeare?s Prospero, lived on, an island) -> an island (12572ms) When was Shakespeare born? Lafayette 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live on, $x) -> (Shakespeare, lived on, Lafayette) -> Lafayette (12505ms) When was Shakespeare born? such a nasty 'ouse 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, such a nasty 'ouse) -> such a nasty 'ouse (12438ms) When was Shakespeare born? 23rd April 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, be bear on, $x) -> (Shakespeare, was born on, 23rd April) -> 23rd April (12550ms) When was Shakespeare born? St George?s day 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, be bear on, $x) -> (Shakespeare, was born on, St George?s day) -> St George?s day (12548ms) When was Shakespeare born? 1616 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, 1616) -> 1616 (12460ms) When was Shakespeare born? London writing 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, London writing) -> London writing (12572ms) When was Shakespeare born? 23 April 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, be bear on, $x) -> (Shakespeare, was born on, 23 April) -> 23 April (12483ms) When was Shakespeare born? such a time 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, did live in, such a time) -> such a time (12526ms) When was Shakespeare born? the present day 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (shakespeare, lived in, the present day) -> the present day (12548ms) When was Shakespeare born? the parish 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, was living in, the parish) -> the parish (12572ms) When was Shakespeare born? an era 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, an era) -> an era (12415ms) When was Shakespeare born? a very turbulent time 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, a very turbulent time) -> a very turbulent time (12460ms) When was Shakespeare born? high schools 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, is living today?in, high schools) -> high schools (12460ms) When was Shakespeare born? a world 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (?Shakespeare, lived in, a world) -> a world (12438ms) When was Shakespeare born? a theatre 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (10 professionally-produced Shakespeare plays, live in, a theatre) -> a theatre (12460ms) When was Shakespeare born? Sunday 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, be bear on, $x) -> (Shakespeare, was indeed born on, Sunday) -> Sunday (12438ms) When was Shakespeare born? the overwhelming fascination 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, was living in was, the overwhelming fascination) -> the overwhelming fascination (12526ms) When was Shakespeare born? Buenos Aires 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Nicholas Shakespeare, lived in, Buenos Aires) -> Buenos Aires (12392ms) When was Shakespeare born? the countryside 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare?s day, lived in, the countryside) -> the countryside (12504ms) When was Shakespeare born? theater 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare?s Play, live in, theater) -> theater (12571ms) When was Shakespeare born? an absolutist world 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, an absolutist world) -> an absolutist world (12548ms) When was Shakespeare born? Mars 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live on, $x) -> (Bierce and Shakespeare, are all living on, Mars) -> Mars (12415ms) When was Shakespeare born? April 26 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, be bear on, $x) -> (Shakespeare, was born on, April 26) -> April 26 (12504ms) When was Shakespeare born? an age 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, an age) -> an age (12571ms) When was Shakespeare born? a tiny house 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, a tiny house) -> a tiny house (12483ms) When was Shakespeare born? Lancashire 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, may have lived in, Lancashire) -> Lancashire (12505ms) When was Shakespeare born? Tudor England 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, Tudor England) -> Tudor England (12548ms) When was Shakespeare born? retirement 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, retirement) -> retirement (12593ms) When was Shakespeare born? April 26 , 1564 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, be bear on, $x) -> (Shakespeare, was born on, April 26 , 1564) -> April 26 , 1564 (12593ms) When was Shakespeare born? Muggleton Street 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live on, $x) -> (Shakespeare, lived on, Muggleton Street) -> Muggleton Street (12505ms) When was Shakespeare born? April 23rd 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, be bear on, $x) -> (! Shakespeare, was born on, April 23rd) -> April 23rd (12526ms) When was Shakespeare born? the streets 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (this Shakespeare, lived in, the streets) -> the streets (12483ms) When was Shakespeare born? the 23rd too 0.333333333332 When was Shakespeare born? -> $x: (shakespeare, be bear on, $x) -> (Shakespeare, was born on, the 23rd too) -> the 23rd too (12571ms) When was Shakespeare born? Aprill 0.33333333333099996 When was Shakespeare born? -> $x: (william shakespeare, die in, $x) -> (William Shakespeare, died in, Aprill) -> Aprill (12614ms) When was Shakespeare born? murder sleep 0.33333333333099996 When was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (? William Shakespeare Macbeth, does, murder sleep) -> murder sleep (12634ms) When was Shakespeare born? Charlie Brown love 0.33333333333099996 When was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (. William Shakespeare 14, did, Charlie Brown love) -> Charlie Brown love (12613ms) When was Shakespeare born? wrong 0.33333333333099996 When was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (William Shakespeare, do, wrong) -> wrong (12613ms) When was Shakespeare born? today effects tomorrow 0.33333333333099996 When was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (~William Shakespeare, is done, today effects tomorrow) -> today effects tomorrow (12613ms) When was Shakespeare born? a kindness 0.33333333333099996 When was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (- William Shakespeare, cannot do, a kindness) -> a kindness (12593ms) When was Shakespeare born? a laptop? 0.33333333333099996 When was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (?William Shakespeare, did n?t have, a laptop?) -> a laptop? (12613ms) When was Shakespeare born? April 1616 0.33333333333099996 When was Shakespeare born? -> $x: (william shakespeare, die in, $x) -> (William Shakespeare, died in, April 1616) -> April 1616 (12613ms) When was Shakespeare born? success 0.33333333333099996 When was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (? William Shakespeare Commitment, does n?t guarantee, success) -> success (12634ms) When was Shakespeare born? now 0.33333333333099996 When was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (William Shakespeare, Did my heart love till, now) -> now (12593ms) When was Shakespeare born? a sponge 0.33333333333099996 When was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (William Shakespeare, did have the brain like, a sponge) -> a sponge (12634ms) When was Shakespeare born? matter 0.33333333333099996 When was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (? William Shakespeare ?It, does n?t, matter) -> matter (12634ms) When was Shakespeare born? the ghost 0.33333333333099996 When was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (William Shakespeare, did play the role of, the ghost) -> the ghost (12613ms) When was Shakespeare born? battle 0.33333333333099996 When was Shakespeare born? -> $x: (william shakespeare, die in, $x) -> (William Shakespeare, died in, battle) -> battle (12613ms) When was Shakespeare born? college 0.33333333333099996 When was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (William Shakespeare, did n?t go to, college) -> college (12613ms) When was Shakespeare born? Witchcraft 0.33333333333099996 When was Shakespeare born? -> $x: (william shakespeare, do, $x) -> (William Shakespeare, did, Witchcraft) -> Witchcraft (12613ms) When was Shakespeare born? 1830 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1830) -> 1830 (12654ms) When was Shakespeare born? 1840 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1840) -> 1840 (12751ms) When was Shakespeare born? 1852 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, being born in, 1852) -> 1852 (12674ms) When was Shakespeare born? 1849 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1849) -> 1849 (12732ms) When was Shakespeare born? 1811 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1811) -> 1811 (12693ms) When was Shakespeare born? Missouri 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Missouri) -> Missouri (12732ms) When was Shakespeare born? 1765 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1765) -> 1765 (12674ms) When was Shakespeare born? Wales 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, Wales) -> Wales (12712ms) When was Shakespeare born? 1915 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1915) -> 1915 (12634ms) When was Shakespeare born? 1833 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1833) -> 1833 (12654ms) When was Shakespeare born? 1864 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1864) -> 1864 (12732ms) When was Shakespeare born? 1804 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1804) -> 1804 (12751ms) When was Shakespeare born? Toronto 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, Toronto) -> Toronto (12674ms) When was Shakespeare born? 1787 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1787) -> 1787 (12654ms) When was Shakespeare born? Boston 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, Boston) -> Boston (12712ms) When was Shakespeare born? Miss 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (william, was born in, Miss) -> Miss (12674ms) When was Shakespeare born? Sydney 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Sydney) -> Sydney (12732ms) When was Shakespeare born? Belfast City 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Belfast City) -> Belfast City (12712ms) When was Shakespeare born? Greene County 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Greene County) -> Greene County (12693ms) When was Shakespeare born? Brooklyn 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Brooklyn) -> Brooklyn (12693ms) When was Shakespeare born? 1827 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1827) -> 1827 (12654ms) When was Shakespeare born? 1893 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1893) -> 1893 (12732ms) When was Shakespeare born? 1728 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1728) -> 1728 (12674ms) When was Shakespeare born? 1892 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1892) -> 1892 (12712ms) When was Shakespeare born? New York 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, New York) -> New York (12732ms) When was Shakespeare born? 1825 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1825) -> 1825 (12751ms) When was Shakespeare born? 1822 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1822) -> 1822 (12673ms) When was Shakespeare born? Edinburgh 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Edinburgh) -> Edinburgh (12732ms) When was Shakespeare born? 1836 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1836) -> 1836 (12693ms) When was Shakespeare born? 1818 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1818) -> 1818 (12732ms) When was Shakespeare born? 1763 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1763) -> 1763 (12751ms) When was Shakespeare born? orleans 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in the city, orleans) -> orleans (12674ms) When was Shakespeare born? 1770 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1770) -> 1770 (12732ms) When was Shakespeare born? Mitre Lane 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Mitre Lane) -> Mitre Lane (12751ms) When was Shakespeare born? 1817 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1817) -> 1817 (12712ms) When was Shakespeare born? San Jose 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, San Jose) -> San Jose (12634ms) When was Shakespeare born? Ala 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Ala) -> Ala (12751ms) When was Shakespeare born? 1803 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1803) -> 1803 (12634ms) When was Shakespeare born? 1931 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1931) -> 1931 (12732ms) When was Shakespeare born? Texas 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Texas) -> Texas (12673ms) When was Shakespeare born? 1880 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1880) -> 1880 (12693ms) When was Shakespeare born? 1887 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1887) -> 1887 (12751ms) When was Shakespeare born? America 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, America) -> America (12654ms) When was Shakespeare born? 1937 0.33333333333 When was Shakespeare born? -> $x: (prose, be bear in, $x) -> (Prose Alain Labrousse, was born in, 1937) -> 1937 (12693ms) When was Shakespeare born? 1790 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1790) -> 1790 (12751ms) When was Shakespeare born? Cambridge 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Cambridge) -> Cambridge (12654ms) When was Shakespeare born? 1824 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1824) -> 1824 (12693ms) When was Shakespeare born? 1831 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1831) -> 1831 (12712ms) When was Shakespeare born? 1794 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1794) -> 1794 (12654ms) When was Shakespeare born? 1841 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1841) -> 1841 (12654ms) When was Shakespeare born? Chicago 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, Chicago) -> Chicago (12693ms) When was Shakespeare born? Derby 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Derby) -> Derby (12654ms) When was Shakespeare born? Madison 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, Madison) -> Madison (12751ms) When was Shakespeare born? Lycoming County 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Lycoming County) -> Lycoming County (12654ms) When was Shakespeare born? Connecticut 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, Connecticut) -> Connecticut (12751ms) When was Shakespeare born? Columbus 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, Columbus) -> Columbus (12693ms) When was Shakespeare born? 1872 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1872) -> 1872 (12634ms) When was Shakespeare born? Alabama 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Alabama) -> Alabama (12673ms) When was Shakespeare born? Salem 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Salem) -> Salem (12712ms) When was Shakespeare born? Pennsylvania 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, Pennsylvania) -> Pennsylvania (12693ms) When was Shakespeare born? Bedford Co. 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Bedford Co.) -> Bedford Co. (12673ms) When was Shakespeare born? Alexandria 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, Alexandria) -> Alexandria (12693ms) When was Shakespeare born? 1932 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1932) -> 1932 (12751ms) When was Shakespeare born? 1778 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1778) -> 1778 (12693ms) When was Shakespeare born? 1866 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1866) -> 1866 (12751ms) When was Shakespeare born? 1865 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1865) -> 1865 (12732ms) When was Shakespeare born? Dublin barracks 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Dublin barracks) -> Dublin barracks (12674ms) When was Shakespeare born? Greenwood Township 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Greenwood Township) -> Greenwood Township (12693ms) When was Shakespeare born? 1869 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1869) -> 1869 (12673ms) When was Shakespeare born? Belfast 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Belfast) -> Belfast (12732ms) When was Shakespeare born? Virginia 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Virginia) -> Virginia (12732ms) When was Shakespeare born? Plainfield 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Plainfield) -> Plainfield (12654ms) When was Shakespeare born? 1826 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1826) -> 1826 (12712ms) When was Shakespeare born? 1027 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1027) -> 1027 (12751ms) When was Shakespeare born? South Carolina 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, South Carolina) -> South Carolina (12712ms) When was Shakespeare born? 1876 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1876) -> 1876 (12712ms) When was Shakespeare born? April 1885 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, April 1885) -> April 1885 (12732ms) When was Shakespeare born? India 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, India) -> India (12712ms) When was Shakespeare born? Kentucky 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was actually born in, Kentucky) -> Kentucky (12751ms) When was Shakespeare born? Tennessee 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Tennessee) -> Tennessee (12674ms) When was Shakespeare born? 1911 0.33333333333 When was Shakespeare born? -> $x: (prose, be bear in, $x) -> (prose writer and translator, was born in, 1911) -> 1911 (12732ms) When was Shakespeare born? 1797 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1797) -> 1797 (12674ms) When was Shakespeare born? Accomack Co. 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Accomack Co.) -> Accomack Co. (12654ms) When was Shakespeare born? Springfield 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Springfield) -> Springfield (12634ms) When was Shakespeare born? Belper 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Belper) -> Belper (12654ms) When was Shakespeare born? YORK 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in the location, YORK) -> YORK (12693ms) When was Shakespeare born? 1816 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1816) -> 1816 (12674ms) When was Shakespeare born? 1873 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1873) -> 1873 (12634ms) When was Shakespeare born? Indiana 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Indiana) -> Indiana (12674ms) When was Shakespeare born? Rutherford 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, Rutherford) -> Rutherford (12712ms) When was Shakespeare born? 1743 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1743) -> 1743 (12693ms) When was Shakespeare born? 1871 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1871) -> 1871 (12712ms) When was Shakespeare born? 1839 0.33333333333 When was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1839) -> 1839 (12654ms) When was Shakespeare born? The star 0.222222222221 When was Shakespeare born? -> $x: ($x, date be, shakespeare) -> (The star, has been dating, the Royal Shakespeare Company actor) -> The star (12806ms) When was Shakespeare born? the pox 0.222222222221 When was Shakespeare born? -> $x: (shakespeare, die of, $x) -> (Shakespeare, is also dying of, the pox) -> the pox (12908ms) When was Shakespeare born? prostate cancer 0.222222222221 When was Shakespeare born? -> $x: (shakespeare, die of, $x) -> (Clive Shakespeare, died of, prostate cancer) -> prostate cancer (12940ms) When was Shakespeare born? cholera infantum 0.222222222221 When was Shakespeare born? -> $x: (shakespeare, die of, $x) -> (the aforesaid W. Shakespeare, had died of, cholera infantum) -> cholera infantum (12770ms) When was Shakespeare born? the same day 0.222222222221 When was Shakespeare born? -> $x: (shakespeare, die on, $x) -> (Shakespeare and Cervantes, died on, the same day) -> the same day (12956ms) When was Shakespeare born? the very same day 0.222222222221 When was Shakespeare born? -> $x: (shakespeare, die on, $x) -> (Shakespeare and Cervantes, died on, the very same day) -> the very same day (12892ms) When was Shakespeare born? Rare Cancer 0.222222222221 When was Shakespeare born? -> $x: (shakespeare, die of, $x) -> (Shakespeare, Died of, Rare Cancer) -> Rare Cancer (12875ms) When was Shakespeare born? a fever there 0.222222222221 When was Shakespeare born? -> $x: (shakespeare, die of, $x) -> (Shakespeare, died of, a fever there) -> a fever there (12924ms) When was Shakespeare born? unknown causes 0.222222222221 When was Shakespeare born? -> $x: (shakespeare, die of, $x) -> (Shakespeare, died of, unknown causes) -> unknown causes (12908ms) When was Shakespeare born? May 3 0.222222222221 When was Shakespeare born? -> $x: (shakespeare, die on, $x) -> (Shakespeare, died on, May 3) -> May 3 (12908ms) When was Shakespeare born? 23rd April 1616 0.222222222221 When was Shakespeare born? -> $x: (shakespeare, die on, $x) -> (Shakespeare, died on, 23rd April 1616) -> 23rd April 1616 (12841ms) When was Shakespeare born? a fever 0.222222222221 When was Shakespeare born? -> $x: (shakespeare, die of, $x) -> (Shakespeare, died of, a fever) -> a fever (12841ms) When was Shakespeare born? an unknown cause 0.222222222221 When was Shakespeare born? -> $x: (shakespeare, die of, $x) -> (Hamnet Shakespeare, died of, an unknown cause) -> an unknown cause (12841ms) When was Shakespeare born? the same date 0.222222222221 When was Shakespeare born? -> $x: (shakespeare, die on, $x) -> (Shakespeare and Cervantes, died on, the same date) -> the same date (12956ms) When was Shakespeare born? the best piece of writing 0.22222222221999993 When was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (the best piece of writing, done by, William Shakespeare , Hamlet) -> the best piece of writing (13033ms) When was Shakespeare born? the 5th floor 0.22222222221999993 When was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (the 5th floor, do a search for, " William Shakespeare) -> the 5th floor (13033ms) When was Shakespeare born? Markey 0.22222222221999993 When was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (Markey, does, William Shakespeare) -> Markey (13033ms) When was Shakespeare born? Oct. 28 0.22222222221999993 When was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (Oct. 28, Did, William Shakespeare) -> Oct. 28 (13033ms) When was Shakespeare born? Julius Caesar 0.22222222221999993 When was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (Julius Caesar, does bring to, mind William Shakespeare) -> Julius Caesar (13048ms) When was Shakespeare born? rel=shortlink 0.22222222221999993 When was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (rel=shortlink, does, the name ?William Shakespeare ?) -> rel=shortlink (13048ms) When was Shakespeare born? playwrights 0.22222222221999993 When was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (playwrights, does, the name William Shakespeare ring) -> playwrights (13048ms) When was Shakespeare born? Favourite poet or writer 0.22222222221999993 When was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (Favourite poet or writer, Does, William Shakespeare count) -> Favourite poet or writer (13033ms) When was Shakespeare born? vz-nostalgia 0.22222222221999993 When was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (vz-nostalgia, so did, William Shakespeare) -> vz-nostalgia (13048ms) When was Shakespeare born? the shocking question 0.22222222221999993 When was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (the shocking question, Did, William Shakespeare) -> the shocking question (13033ms) When was Shakespeare born? the qoutes 0.22222222221999993 When was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (the qoutes, are done by, William Shakespeare) -> the qoutes (13048ms) When was Shakespeare born? Erin 0.22222222221999993 When was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (Erin, does, William Shakespeare) -> Erin (13048ms) When was Shakespeare born? Mark Antony 0.22222222221999993 When was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (Mark Antony, did in, William Shakespeare?s Julius Caesar) -> Mark Antony (13033ms) When was Shakespeare born? the film ?Miguel & William? Press / EP 0.22222222221999993 When was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (the film ?Miguel & William? Press / EP, Did, William Shakespeare) -> the film ?Miguel & William? Press / EP (13048ms) When was Shakespeare born? Canada 0.22222222221899998 When was Shakespeare born? -> $x: (globe, be bear in, $x) -> (Golden Globe-nominated New Zealand actress, was born in, Canada) -> Canada (13048ms) When was Shakespeare born? Montreal 0.22222222221899998 When was Shakespeare born? -> $x: (globe, be bear in, $x) -> (-The Globe and Mail Samantha Warwick, was born in, Montreal) -> Montreal (13048ms) When was Shakespeare born? the Philippines 0.22222222221899998 When was Shakespeare born? -> $x: (globe, be bear in, $x) -> (the globe?he, was born in, the Philippines) -> the Philippines (13048ms) When was Shakespeare born? the regions 0.22222222221899998 When was Shakespeare born? -> $x: (globe, be bear in, $x) -> (the globe, were born here in, the regions) -> the regions (13048ms) When was Shakespeare born? 1951 0.22222222221899998 When was Shakespeare born? -> $x: (globe, be bear in, $x) -> (The Boston Sunday Globe Paul Muldoon, was born in, 1951) -> 1951 (13048ms) When was Shakespeare born? groups 0.22222222221899998 When was Shakespeare born? -> $x: (globe, be bear in, $x) -> (The globe-shaped flower heads, are borne in, groups) -> groups (13048ms) When was Shakespeare born? Germany 0.22222222221899998 When was Shakespeare born? -> $x: (globe, be bear in, $x) -> (the globe-trotter, was born in, Germany) -> Germany (13048ms) When was Shakespeare born? first 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did it, first) -> first (13127ms) When was Shakespeare born? Polanski orchestrate 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, successfully does, Polanski orchestrate) -> Polanski orchestrate (13097ms) When was Shakespeare born? Romeo and Juliet 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did with, Romeo and Juliet) -> Romeo and Juliet (13127ms) When was Shakespeare born? care 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, care) -> care (13171ms) When was Shakespeare born? thangs 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, thangs) -> thangs (13139ms) When was Shakespeare born? Roger Zelazny 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, so did, Roger Zelazny) -> Roger Zelazny (13150ms) When was Shakespeare born? the ending 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did alter, the ending) -> the ending (13171ms) When was Shakespeare born? Marlowe 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, Marlowe) -> Marlowe (13139ms) When was Shakespeare born? before 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, done, before) -> before (13082ms) When was Shakespeare born? Hamlet 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did with, Hamlet) -> Hamlet (13161ms) When was Shakespeare born? April 2003 , four months 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Mrs. Shakespeare, died in, April 2003 , four months) -> April 2003 , four months (13161ms) When was Shakespeare born? Dickens? 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did for, Dickens?) -> Dickens? (13150ms) When was Shakespeare born? the same 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, the same) -> the same (13150ms) When was Shakespeare born? pen 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, pen) -> pen (13127ms) When was Shakespeare born? an excellent job 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, an excellent job) -> an excellent job (13150ms) When was Shakespeare born? Israel 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, unfortunately did, Israel) -> Israel (13161ms) When was Shakespeare born? likewise 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, does, likewise) -> likewise (13097ms) When was Shakespeare born? n?t Punctuate 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (?Shakespeare, Did, n?t Punctuate) -> n?t Punctuate (13161ms) When was Shakespeare born? the end 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare?s tragedies main characters, die in, the end) -> the end (13127ms) When was Shakespeare born? supernatural stuff 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did write, supernatural stuff) -> supernatural stuff (13082ms) When was Shakespeare born? 1601 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (John Shakespeare, died in, 1601) -> 1601 (13161ms) When was Shakespeare born? verse 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did ? in, verse) -> verse (13150ms) When was Shakespeare born? Anne Hathaway 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did to, Anne Hathaway) -> Anne Hathaway (13082ms) When was Shakespeare born? Condell 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, presumably did, Condell) -> Condell (13097ms) When was Shakespeare born? lyrics 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did include, lyrics) -> lyrics (13097ms) When was Shakespeare born? Juliet 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did for, Juliet) -> Juliet (13139ms) When was Shakespeare born? Spanish 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did speak, Spanish) -> Spanish (13112ms) When was Shakespeare born? the Bible 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did read, the Bible) -> the Bible (13127ms) When was Shakespeare born? 1896 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare, died in, 1896) -> 1896 (13150ms) When was Shakespeare born? right ? 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, is done, right ?) -> right ? (13160ms) When was Shakespeare born? a very good job 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, a very good job) -> a very good job (13161ms) When was Shakespeare born? n?t touch 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, n?t touch) -> n?t touch (13150ms) When was Shakespeare born? 1599 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare, died in, 1599) -> 1599 (13127ms) When was Shakespeare born? childhood 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (the Shakespeare household?three, died in, childhood) -> childhood (13161ms) When was Shakespeare born? Troilus and Cressida 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did in, Troilus and Cressida) -> Troilus and Cressida (13171ms) When was Shakespeare born? few years 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, few years) -> few years (13082ms) When was Shakespeare born? 1596 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare, died in, 1596) -> 1596 (13171ms) When was Shakespeare born? infancy 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare Quiney, died in, infancy) -> infancy (13112ms) When was Shakespeare born? best 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, best) -> best (13139ms) When was Shakespeare born? discretion and valor 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did relate, discretion and valor) -> discretion and valor (13139ms) When was Shakespeare born? 1608 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Mary Shakespeare, died in, 1608) -> 1608 (13112ms) When was Shakespeare born? English 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, does in, English) -> English (13139ms) When was Shakespeare born? the Seven Deadly Sins 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, Does, the Seven Deadly Sins) -> the Seven Deadly Sins (13082ms) When was Shakespeare born? the same centuries 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, the same centuries) -> the same centuries (13082ms) When was Shakespeare born? the old stories 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did for, the old stories) -> the old stories (13112ms) When was Shakespeare born? a marvelous job 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, does, a marvelous job) -> a marvelous job (13082ms) When was Shakespeare born? when he left school 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, when he left school) -> when he left school (13171ms) When was Shakespeare born? an immersion 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, does require, an immersion) -> an immersion (13161ms) When was Shakespeare born? art excell 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did in, art excell) -> art excell (13097ms) When was Shakespeare born? more than 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, more than) -> more than (13161ms) When was Shakespeare born? 1585 and 1592 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did between, 1585 and 1592) -> 1585 and 1592 (13127ms) When was Shakespeare born? exert 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, does, exert) -> exert (13112ms) When was Shakespeare born? n?t interest 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, n?t interest) -> n?t interest (13161ms) When was Shakespeare born? the equation 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did draw, the equation) -> the equation (13082ms) When was Shakespeare born? English literature 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, does in, English literature) -> English literature (13127ms) When was Shakespeare born? so 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, so) -> so (13081ms) When was Shakespeare born? crosswords 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, crosswords) -> crosswords (13097ms) When was Shakespeare born? too 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, too) -> too (13161ms) When was Shakespeare born? Dickens 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, so did, Dickens) -> Dickens (13139ms) When was Shakespeare born? a hand 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did have, a hand) -> a hand (13161ms) When was Shakespeare born? dwarfs 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, do, dwarfs) -> dwarfs (13171ms) When was Shakespeare born? the work 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, do, the work) -> the work (13127ms) When was Shakespeare born? students 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, do study, students) -> students (13082ms) When was Shakespeare born? often 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, often) -> often (13097ms) When was Shakespeare born? once 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did say, once) -> once (13127ms) When was Shakespeare born? 1623 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare 's widow, died in, 1623) -> 1623 (13150ms) When was Shakespeare born? the play 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, does in, the play) -> the play (13139ms) When was Shakespeare born? the software work 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, does, the software work) -> the software work (13150ms) When was Shakespeare born? words 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did with, words) -> words (13082ms) When was Shakespeare born? a certain Anne Hathaway 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did marry, a certain Anne Hathaway) -> a certain Anne Hathaway (13150ms) When was Shakespeare born? the early twenty-first century 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare, will die in, the early twenty-first century) -> the early twenty-first century (13160ms) When was Shakespeare born? a marvellous job 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, a marvellous job) -> a marvellous job (13082ms) When was Shakespeare born? re-enactments 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, does monthly, re-enactments) -> re-enactments (13139ms) When was Shakespeare born? the role 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare, died in, the role) -> the role (13150ms) When was Shakespeare born? actor/manager 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did as, actor/manager) -> actor/manager (13150ms) When was Shakespeare born? 400 years ago 0.11111111111 When was Shakespeare born? -> $x: (shakespeare, do, $x) -> (Shakespeare, did, 400 years ago) -> 400 years ago (13097ms) When was Shakespeare born? the day 0.11111111110899996 When was Shakespeare born? -> $x: (william shakespeare, be bear, $x) -> (William Shakespeare, was born, the day) -> the day (13211ms) When was Shakespeare born? John and Mary Shakespeare 0.11111111110899996 When was Shakespeare born? -> $x: (william shakespeare, be bear, $x) -> (1564 /William Shakespeare, is born to, John and Mary Shakespeare) -> John and Mary Shakespeare (13221ms) When was Shakespeare born? two years 0.11111111110899996 When was Shakespeare born? -> $x: (william shakespeare, be bear, $x) -> (William Shakespeare, was born, two years) -> two years (13202ms) When was Shakespeare born? the time 0.11111111110899996 When was Shakespeare born? -> $x: (william shakespeare, be bear, $x) -> (William Shakespeare, was born, the time) -> the time (13230ms) When was Shakespeare born? allegedly on April 23 , 1564 0.11111111110899996 When was Shakespeare born? -> $x: (william shakespeare, be bear, $x) -> (William Shakespeare, was born, allegedly on April 23 , 1564) -> allegedly on April 23 , 1564 (13192ms) When was Shakespeare born? the start 0.11111111110899996 When was Shakespeare born? -> $x: (william shakespeare, be bear, $x) -> (William Shakespeare, was born at, the start) -> the start (13211ms) When was Shakespeare born? April 23 , 0.11111111110899996 When was Shakespeare born? -> $x: (william shakespeare, be bear, $x) -> (?William Shakespeare, was born, April 23 ,) -> April 23 , (13181ms) When was Shakespeare born? John Shakespeare 0.11111111110899996 When was Shakespeare born? -> $x: (william shakespeare, be bear, $x) -> (William Shakespeare, was born to, John Shakespeare) -> John Shakespeare (13192ms) When was Shakespeare born? humble stock 0.11111111110899996 When was Shakespeare born? -> $x: (william shakespeare, be bear, $x) -> (William Shakespeare, was born of quite, humble stock) -> humble stock (13181ms) When was Shakespeare born? a Taurean sun 0.11111111110899996 When was Shakespeare born? -> $x: (william shakespeare, be bear, $x) -> (William Shakespeare, were also born under, a Taurean sun) -> a Taurean sun (13221ms) When was Shakespeare born? Charlottesville -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, has lived in, Charlottesville) -> Charlottesville (13299ms) When was Shakespeare born? 1789 -0.0 When was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1789) -> 1789 (13355ms) When was Shakespeare born? the Ranch -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Williams ?, live on, the Ranch) -> the Ranch (13299ms) When was Shakespeare born? the same block -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Williams, had lived on, the same block) -> the same block (13380ms) When was Shakespeare born? 16 March 1934 -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William, was living on, 16 March 1934) -> 16 March 1934 (13266ms) When was Shakespeare born? the Cross Bronx Expressway -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Betty Williams, lived on, the Cross Bronx Expressway) -> the Cross Bronx Expressway (13384ms) When was Shakespeare born? Blairstown Township -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Blairstown Township) -> Blairstown Township (13365ms) When was Shakespeare born? the road -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Walrath, lived on, the road) -> the road (13307ms) When was Shakespeare born? the southwest corner -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Howarth, lived on, the southwest corner) -> the southwest corner (13299ms) When was Shakespeare born? Vancouver Island -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (artist E. Colin Williams, live on, Vancouver Island) -> Vancouver Island (13330ms) When was Shakespeare born? Hanslape -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Hanslape) -> Hanslape (13316ms) When was Shakespeare born? 1847 -0.0 When was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1847) -> 1847 (13291ms) When was Shakespeare born? Christmas St -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William, Lived on, Christmas St) -> Christmas St (13370ms) When was Shakespeare born? Dan Post -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Morey, lived on, Dan Post) -> Dan Post (13380ms) When was Shakespeare born? 1585 -0.0 When was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1585) -> 1585 (13283ms) When was Shakespeare born? Dummer Twp. -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Dummer Twp.) -> Dummer Twp. (13337ms) When was Shakespeare born? Basin Harbor -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Solomon and William Kellogg, lived on, Basin Harbor) -> Basin Harbor (13299ms) When was Shakespeare born? Stony Brook -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on, Stony Brook) -> Stony Brook (13258ms) When was Shakespeare born? 1875 -0.0 When was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1875) -> 1875 (13258ms) When was Shakespeare born? an alley -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Brewster, lived on, an alley) -> an alley (13291ms) When was Shakespeare born? Palm Coast -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Palm Coast) -> Palm Coast (13275ms) When was Shakespeare born? Paris -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Paris) -> Paris (13344ms) When was Shakespeare born? North Water Street -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on, North Water Street) -> North Water Street (13249ms) When was Shakespeare born? Eagle Township -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Eagle Township) -> Eagle Township (13337ms) When was Shakespeare born? Wolf -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Judge William Sparks, lived on, Wolf) -> Wolf (13316ms) When was Shakespeare born? 12 March 1925 -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (177 William, was living on, 12 March 1925) -> 12 March 1925 (13283ms) When was Shakespeare born? C-SPAN. -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Williams, was broadcast live on, C-SPAN.) -> C-SPAN. (13299ms) When was Shakespeare born? Isleworth -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Isleworth) -> Isleworth (13323ms) When was Shakespeare born? Hawaii -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Hawaii) -> Hawaii (13275ms) When was Shakespeare born? PEI -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William, has lived on, PEI) -> PEI (13299ms) When was Shakespeare born? Mercer County -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Mercer County) -> Mercer County (13316ms) When was Shakespeare born? Ohio Ave -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Merrill HAMILTON, lived on, Ohio Ave) -> Ohio Ave (13344ms) When was Shakespeare born? Pine Ridge -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (The Rev. Mr. Williams, lived on, Pine Ridge) -> Pine Ridge (13275ms) When was Shakespeare born? Denver -0.0 When was Shakespeare born? -> $x: (william, live now in, $x) -> (William E. Barrett, now lived in, Denver) -> Denver (13375ms) When was Shakespeare born? a flat -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, a flat) -> a flat (13380ms) When was Shakespeare born? the property -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (stipulation William, will live on, the property) -> the property (13380ms) When was Shakespeare born? campus -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Williams students, live on, campus) -> campus (13350ms) When was Shakespeare born? the Clear Fork -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Holden, lived on, the Clear Fork) -> the Clear Fork (13315ms) When was Shakespeare born? lot 532 -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William, probably lived on, lot 532) -> lot 532 (13380ms) When was Shakespeare born? Kansas City -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Kansas City) -> Kansas City (13384ms) When was Shakespeare born? Park Lane -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William B. Randall, lived on, Park Lane) -> Park Lane (13366ms) When was Shakespeare born? the past -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, live in, the past) -> the past (13330ms) When was Shakespeare born? the Bebout farm -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on, the Bebout farm) -> the Bebout farm (13344ms) When was Shakespeare born? the new house -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, the new house) -> the new house (13375ms) When was Shakespeare born? Maine -0.0 When was Shakespeare born? -> $x: (william, live now in, $x) -> (Bob Williams, now live in, Maine) -> Maine (13350ms) When was Shakespeare born? New Jersey -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, New Jersey) -> New Jersey (13330ms) When was Shakespeare born? Memphis ? streets -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Sam Williams, lived on, Memphis ? streets) -> Memphis ? streets (13370ms) When was Shakespeare born? Creek -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on Back, Creek) -> Creek (13267ms) When was Shakespeare born? the same street -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Williams, was living on, the same street) -> the same street (13365ms) When was Shakespeare born? the reign -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, the reign) -> the reign (13355ms) When was Shakespeare born? a house -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, a house) -> a house (13275ms) When was Shakespeare born? Lot 48 -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on, Lot 48) -> Lot 48 (13275ms) When was Shakespeare born? Scaly Mountain -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Scaly Mountain) -> Scaly Mountain (13307ms) When was Shakespeare born? England ? ' -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (WIlliam, live in, England ? ') -> England ? ' (13307ms) When was Shakespeare born? Norwich -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Norwich) -> Norwich (13380ms) When was Shakespeare born? Grand Bahama -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Williams, has lived on, Grand Bahama) -> Grand Bahama (13350ms) When was Shakespeare born? the street -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (John T. Williams, lived on, the street) -> the street (13299ms) When was Shakespeare born? 1795 -0.0 When was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1795) -> 1795 (13365ms) When was Shakespeare born? North Carolina -0.0 When was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, North Carolina) -> North Carolina (13337ms) When was Shakespeare born? Dublin -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Dublin) -> Dublin (13344ms) When was Shakespeare born? the east coast -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Williams, has been living on, the east coast) -> the east coast (13350ms) When was Shakespeare born? the Sanctuary -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Ricketts, lived on at, the Sanctuary) -> the Sanctuary (13384ms) When was Shakespeare born? Wimple Creek -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (John and William Boyd, live on, Wimple Creek) -> Wimple Creek (13337ms) When was Shakespeare born? Fairfield village -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Fairfield village) -> Fairfield village (13266ms) When was Shakespeare born? death row -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Williams, lived on, death row) -> death row (13291ms) When was Shakespeare born? a large farm -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William and Mary Jane Wilson, lived on, a large farm) -> a large farm (13330ms) When was Shakespeare born? 1620 -0.0 When was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1620) -> 1620 (13370ms) When was Shakespeare born? the homestead -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on, the homestead) -> the homestead (13360ms) When was Shakespeare born? Fauquier and Loudon counties -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Fauquier and Loudon counties) -> Fauquier and Loudon counties (13350ms) When was Shakespeare born? the old homestead -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on, the old homestead) -> the old homestead (13380ms) When was Shakespeare born? Wood Co. -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Wood Co.) -> Wood Co. (13366ms) When was Shakespeare born? Graig Terrace -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William Williams, lived in, Graig Terrace) -> Graig Terrace (13375ms) When was Shakespeare born? Westline Rd. -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (KNOX William, Lived on, Westline Rd.) -> Westline Rd. (13375ms) When was Shakespeare born? the Town -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, the Town) -> the Town (13291ms) When was Shakespeare born? two very different worlds -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, two very different worlds) -> two very different worlds (13344ms) When was Shakespeare born? Metropolitan Opera Radio -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Berger, live on, Metropolitan Opera Radio) -> Metropolitan Opera Radio (13307ms) When was Shakespeare born? Jefferson -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Jefferson) -> Jefferson (13360ms) When was Shakespeare born? Carland -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Carland) -> Carland (13275ms) When was Shakespeare born? Wake Forest -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, live in, Wake Forest) -> Wake Forest (13323ms) When was Shakespeare born? sixteen more years -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on for, sixteen more years) -> sixteen more years (13258ms) When was Shakespeare born? stage -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Shatner, live on, stage) -> stage (13330ms) When was Shakespeare born? a farm -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on, a farm) -> a farm (13330ms) When was Shakespeare born? Miles Ave -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William J. Elliott, lived on, Miles Ave) -> Miles Ave (13307ms) When was Shakespeare born? Utah -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Utah) -> Utah (13344ms) When was Shakespeare born? the famous Glastonbury Abbey -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, the famous Glastonbury Abbey) -> the famous Glastonbury Abbey (13266ms) When was Shakespeare born? South St. -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Judge William WALKER, lived on, South St.) -> South St. (13384ms) When was Shakespeare born? the home -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, the home) -> the home (13370ms) When was Shakespeare born? Sea Street -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Captain William Truman Tuttle, lived on, Sea Street) -> Sea Street (13355ms) When was Shakespeare born? LOT 48 -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on, LOT 48) -> LOT 48 (13370ms) When was Shakespeare born? the farm -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (6 ~ ~ William Roberson, lived on, the farm) -> the farm (13299ms) When was Shakespeare born? U City -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, U City) -> U City (13307ms) When was Shakespeare born? Elmley Castle -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Elmley Castle) -> Elmley Castle (13344ms) When was Shakespeare born? 1635 -0.0 When was Shakespeare born? -> $x: (william, be from in, $x) -> (Williams, was banished from the colony in, 1635) -> 1635 (13308ms) When was Shakespeare born? a hotel room -0.0 When was Shakespeare born? -> $x: (william, live now in, $x) -> (Williams and Allen, now live in, a hotel room) -> a hotel room (13323ms) When was Shakespeare born? the Tuscarora Reservation -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Mike Williams, live on, the Tuscarora Reservation) -> the Tuscarora Reservation (13380ms) When was Shakespeare born? Albany -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Albany) -> Albany (13366ms) When was Shakespeare born? a Brooklyn condo -0.0 When was Shakespeare born? -> $x: (william, live now in, $x) -> (Williams, is now living in, a Brooklyn condo) -> a Brooklyn condo (13299ms) When was Shakespeare born? part -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on, part) -> part (13330ms) When was Shakespeare born? Bull Street -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Jim Williams, lived on, Bull Street) -> Bull Street (13283ms) When was Shakespeare born? Hungary -0.0 When was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Hungary) -> Hungary (13366ms) When was Shakespeare born? Clay county -0.0 When was Shakespeare born? -> $x: (william, live now in, $x) -> (William MARESBECK, is now living in, Clay county) -> Clay county (13299ms) When was Shakespeare born? death -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Dennis Williams, lived on, death) -> death (13266ms) When was Shakespeare born? Orange County -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Orange County) -> Orange County (13366ms) When was Shakespeare born? New River -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Col . William Christian, lived on, New River) -> New River (13355ms) When was Shakespeare born? Cincinnati -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Cincinnati) -> Cincinnati (13291ms) When was Shakespeare born? Campbell Street -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Miss Carrie Williams, lived on, Campbell Street) -> Campbell Street (13258ms) When was Shakespeare born? Lexington -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Lexington) -> Lexington (13316ms) When was Shakespeare born? Illinois -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Illinois) -> Illinois (13375ms) When was Shakespeare born? the months -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, the months) -> the months (13355ms) When was Shakespeare born? 1842 -0.0 When was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1842) -> 1842 (13365ms) When was Shakespeare born? Tucson -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, live in, Tucson) -> Tucson (13370ms) When was Shakespeare born? the province -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, the province) -> the province (13375ms) When was Shakespeare born? New York City -0.0 When was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in, New York City) -> New York City (13323ms) When was Shakespeare born? 1881 -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, is living In, 1881) -> 1881 (13337ms) When was Shakespeare born? Forestdale -0.0 When was Shakespeare born? -> $x: (william, live now in, $x) -> (His son William, now live in, Forestdale) -> Forestdale (13316ms) When was Shakespeare born? Oxford village -0.0 When was Shakespeare born? -> $x: (william, live now in, $x) -> (William, is now living in, Oxford village) -> Oxford village (13258ms) When was Shakespeare born? the premises -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Janelle Williams, lived on, the premises) -> the premises (13299ms) When was Shakespeare born? Cuba and China -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Cuba and China) -> Cuba and China (13360ms) When was Shakespeare born? a sober house -0.0 When was Shakespeare born? -> $x: (william, live now in, $x) -> (Williams, is now living in, a sober house) -> a sober house (13384ms) When was Shakespeare born? Liverpool -0.0 When was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Liverpool) -> Liverpool (13360ms) When was Shakespeare born? Geyserville -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Geyserville) -> Geyserville (13323ms) When was Shakespeare born? the adjacent lot -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William and Lillie Morse, lived on, the adjacent lot) -> the adjacent lot (13283ms) When was Shakespeare born? adjacent farms -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William and Sarah, lived on, adjacent farms) -> adjacent farms (13375ms) When was Shakespeare born? the air -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Brian Williams, live on, the air) -> the air (13344ms) When was Shakespeare born? a Quonset hut -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Cavanaugh, lived on, a Quonset hut) -> a Quonset hut (13337ms) When was Shakespeare born? Amherst -0.0 When was Shakespeare born? -> $x: (william, live now in, $x) -> (William P. Noies, is now living in, Amherst) -> Amherst (13355ms) When was Shakespeare born? an island inIrondequoit Bay -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Held, lived on, an island inIrondequoit Bay) -> an island inIrondequoit Bay (13258ms) When was Shakespeare born? San Diego -0.0 When was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in, San Diego) -> San Diego (13370ms) When was Shakespeare born? a ranch -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Bent, lived on, a ranch) -> a ranch (13323ms) When was Shakespeare born? Loves Creek -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Poe, lived on, Loves Creek) -> Loves Creek (13380ms) When was Shakespeare born? Tharpe?s land -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Dougherty, lived on, Tharpe?s land) -> Tharpe?s land (13366ms) When was Shakespeare born? Knob Fork -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William and Rosa, lived on, Knob Fork) -> Knob Fork (13384ms) When was Shakespeare born? Michigan -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, was living in, Michigan) -> Michigan (13355ms) When was Shakespeare born? California -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, California) -> California (13316ms) When was Shakespeare born? a mountain -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William, live on, a mountain) -> a mountain (13266ms) When was Shakespeare born? a house trailer -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, a house trailer) -> a house trailer (13355ms) When was Shakespeare born? the house -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, the house) -> the house (13330ms) When was Shakespeare born? CBS -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Williams, live on, CBS) -> CBS (13375ms) When was Shakespeare born? Granville County -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Granville County) -> Granville County (13323ms) When was Shakespeare born? Central -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Central) -> Central (13299ms) When was Shakespeare born? Chepstow -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Chepstow) -> Chepstow (13375ms) When was Shakespeare born? the ocean -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Kunz, has lived on, the ocean) -> the ocean (13355ms) When was Shakespeare born? the home farm -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William, is living on, the home farm) -> the home farm (13366ms) When was Shakespeare born? Lancashire ,England -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Lancashire ,England) -> Lancashire ,England (13283ms) When was Shakespeare born? Rehoboth -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Rehoboth) -> Rehoboth (13366ms) When was Shakespeare born? Davenport -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Davenport) -> Davenport (13283ms) When was Shakespeare born? Elizabethton -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, had lived in, Elizabethton) -> Elizabethton (13258ms) When was Shakespeare born? the Nisqually flats -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Packwood, lived on, the Nisqually flats) -> the Nisqually flats (13323ms) When was Shakespeare born? Walton County -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Walton County) -> Walton County (13266ms) When was Shakespeare born? an apartment -0.0 When was Shakespeare born? -> $x: (william, live now in, $x) -> (Williams, is now back to living in, an apartment) -> an apartment (13307ms) When was Shakespeare born? the Society -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, the Society) -> the Society (13355ms) When was Shakespeare born? 1925 -0.0 When was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in, 1925) -> 1925 (13323ms) When was Shakespeare born? Fleming Street -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on, Fleming Street) -> Fleming Street (13380ms) When was Shakespeare born? the corner -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Parrott, lived on, the corner) -> the corner (13360ms) When was Shakespeare born? the French Quarter -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, the French Quarter) -> the French Quarter (13330ms) When was Shakespeare born? Portsmouth -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Portsmouth) -> Portsmouth (13344ms) When was Shakespeare born? the green mountains -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, the green mountains) -> the green mountains (13337ms) When was Shakespeare born? Beaver -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Roy, was living on, Beaver) -> Beaver (13379ms) When was Shakespeare born? Bussey Street -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Scollay, lived on, Bussey Street) -> Bussey Street (13370ms) When was Shakespeare born? Japan -0.0 When was Shakespeare born? -> $x: (prose, live in, $x) -> (the poetry and prose, lived in, Japan) -> Japan (13360ms) When was Shakespeare born? North Court -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William, lived on, North Court) -> North Court (13337ms) When was Shakespeare born? Union St -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William John Moore, lived on, Union St) -> Union St (13355ms) When was Shakespeare born? four different residences -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, four different residences) -> four different residences (13291ms) When was Shakespeare born? 12/1/58 -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (ROSE WILLIAMS, Lived on, 12/1/58) -> 12/1/58 (13370ms) When was Shakespeare born? the caravan -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Williams, will get live reports on, the caravan) -> the caravan (13316ms) When was Shakespeare born? the Woodland neighborhood -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, the Woodland neighborhood) -> the Woodland neighborhood (13366ms) When was Shakespeare born? the west coast -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William and Emanuel, live on, the west coast) -> the west coast (13380ms) When was Shakespeare born? CSN -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William and Mary, live on, CSN) -> CSN (13350ms) When was Shakespeare born? 1901 -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, is living in, 1901) -> 1901 (13291ms) When was Shakespeare born? 1906 -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, was living In, 1906) -> 1906 (13370ms) When was Shakespeare born? Orchard Drive -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Baker, lived on, Orchard Drive) -> Orchard Drive (13366ms) When was Shakespeare born? Sparta -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Sparta) -> Sparta (13283ms) When was Shakespeare born? Natchez -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Natchez) -> Natchez (13307ms) When was Shakespeare born? Sefton -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Sefton) -> Sefton (13360ms) When was Shakespeare born? Montour Run -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (William Tucker, lived on, Montour Run) -> Montour Run (13316ms) When was Shakespeare born? Georgia -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Georgia) -> Georgia (13365ms) When was Shakespeare born? Ohio -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Ohio) -> Ohio (13370ms) When was Shakespeare born? Key West -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Key West) -> Key West (13307ms) When was Shakespeare born? broadway -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Robin Williams, live on, broadway) -> broadway (13375ms) When was Shakespeare born? NPR -0.0 When was Shakespeare born? -> $x: (william, live on, $x) -> (Hear Jason D. Williams, live on, NPR) -> NPR (13275ms) When was Shakespeare born? Oakham Rutlandshire -0.0 When was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Oakham Rutlandshire) -> Oakham Rutlandshire (13360ms) When was Shakespeare born? Geoffrey Boycott -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Geoffrey Boycott, do, Shakespeare) -> Geoffrey Boycott (13388ms) When was Shakespeare born? Nobody -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Nobody, does, Shakespeare) -> Nobody (13392ms) When was Shakespeare born? JUST A DREAM -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (JUST A DREAM, do, Shakespeare) -> JUST A DREAM (13392ms) When was Shakespeare born? the Americans -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (the Americans, do, Shakespeare) -> the Americans (13388ms) When was Shakespeare born? the companies -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (the companies, do, Shakespeare) -> the companies (13388ms) When was Shakespeare born? any -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (any, did, Shakespeare) -> any (13384ms) When was Shakespeare born? Goethe -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Goethe, so did, Shakespeare) -> Goethe (13384ms) When was Shakespeare born? Brits -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Brits, do, Shakespeare) -> Brits (13388ms) When was Shakespeare born? youre -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (youre, doing, Shakespeare) -> youre (13388ms) When was Shakespeare born? Ed Westwick -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Ed Westwick, do, Shakespeare) -> Ed Westwick (13392ms) When was Shakespeare born? Branagh -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Branagh, doing, Shakespeare) -> Branagh (13392ms) When was Shakespeare born? Mark Twain -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Mark Twain, did for, Shakespeare) -> Mark Twain (13392ms) When was Shakespeare born? Bacon -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Bacon, did write, Shakespeare) -> Bacon (13388ms) When was Shakespeare born? Ger -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Ger, does, Shakespeare) -> Ger (13392ms) When was Shakespeare born? famous actors -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (famous actors, do, Shakespeare) -> famous actors (13388ms) When was Shakespeare born? Touching -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Touching, did, Shakespeare) -> Touching (13392ms) When was Shakespeare born? each year -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (each year, only did, Shakespeare) -> each year (13392ms) When was Shakespeare born? just an entertaining play -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (just an entertaining play, did, Shakespeare) -> just an entertaining play (13392ms) When was Shakespeare born? 1.2 -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (1.2, does, Shakespeare) -> 1.2 (13392ms) When was Shakespeare born? Coleridge -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Coleridge, did, Shakespeare) -> Coleridge (13388ms) When was Shakespeare born? A DREAM -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (A DREAM, do, Shakespeare) -> A DREAM (13392ms) When was Shakespeare born? a more dramatic and poetic form -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (a more dramatic and poetic form, did, Shakespeare) -> a more dramatic and poetic form (13388ms) When was Shakespeare born? Karamazov Brothers -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Karamazov Brothers, do, Shakespeare) -> Karamazov Brothers (13384ms) When was Shakespeare born? Hes -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Hes, done, Shakespeare) -> Hes (13388ms) When was Shakespeare born? a balcony -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (a balcony, could do, Shakespeare) -> a balcony (13388ms) When was Shakespeare born? literature?s great mysteries ? -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (literature?s great mysteries ?, did, Shakespeare) -> literature?s great mysteries ? (13388ms) When was Shakespeare born? Tessa -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Tessa, Does, Shakespeare) -> Tessa (13384ms) When was Shakespeare born? UK Company Propeller -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (UK Company Propeller, does, Shakespeare) -> UK Company Propeller (13392ms) When was Shakespeare born? critics or scholars -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (critics or scholars, did, Shakespeare) -> critics or scholars (13388ms) When was Shakespeare born? How many plays -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (How many plays, did write, Shakespeare) -> How many plays (13388ms) When was Shakespeare born? Olivier -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Olivier, did, Shakespeare) -> Olivier (13388ms) When was Shakespeare born? a professional company -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (a professional company, did, Shakespeare) -> a professional company (13384ms) When was Shakespeare born? pretty melodies -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (pretty melodies, do, Shakespeare) -> pretty melodies (13392ms) When was Shakespeare born? Gargoyles -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Gargoyles, do, Shakespeare) -> Gargoyles (13384ms) When was Shakespeare born? Description -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Description, Did, Shakespeare) -> Description (13392ms) When was Shakespeare born? a toddler -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (a toddler, do, Shakespeare) -> a toddler (13392ms) When was Shakespeare born? The question -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (The question, is did, Shakespeare) -> The question (13392ms) When was Shakespeare born? Dunster -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Dunster, does, Shakespeare) -> Dunster (13384ms) When was Shakespeare born? the rules -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (the rules, did, Shakespeare) -> the rules (13388ms) When was Shakespeare born? Adam Sandler -1.0000333894311098E-12 When was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Adam Sandler, did, Shakespeare) -> Adam Sandler (13384ms) What year did Patsy Cline die? an airplane crash 0.555555555564 What year did Patsy Cline die? -> $x: (patsy cline, die in, $x) -> (Patsy Cline, died in, an airplane crash) -> an airplane crash (1063ms) What year did Patsy Cline die? 1963 0.555555555564 What year did Patsy Cline die? -> $x: (patsy cline, die in, $x) -> (Patsy Cline, died in, 1963) -> 1963 (1063ms) What year did Patsy Cline die? a plane crash 0.555555555564 What year did Patsy Cline die? -> $x: (patsy cline, die in, $x) -> (Patsy Cline, died in, a plane crash) -> a plane crash (1063ms) What year did Patsy Cline die? the Shenandoah Valley 0.555555555555 What year did Patsy Cline die? -> $x: (patsy cline, be bear in, $x) -> (Patsy Cline, was born in, the Shenandoah Valley) -> the Shenandoah Valley (1063ms) What year did Patsy Cline die? 1932 0.555555555555 What year did Patsy Cline die? -> $x: (patsy cline, be bear in, $x) -> (Patsy Cline, was born in, 1932) -> 1932 (1102ms) What year did Patsy Cline die? age 30 0.333333333333 What year did Patsy Cline die? -> $x: (patsy cline, die, $x) -> (legendary country singer Patsy Cline, died at, age 30) -> age 30 (1102ms) What year did Patsy Cline die? studio gadgets -1.33333333333 What year did Patsy Cline die? -> $x: (patsy cline, make up, $x) -> (Patsy Cline-esque crooning, is n?t made up of, studio gadgets) -> studio gadgets (1261ms) What year did Patsy Cline die? holloween -1.33333333333 What year did Patsy Cline die? -> $x: (patsy cline, make up, $x) -> (Lexi martinez crazy patsy cline lyrics, make up for, holloween) -> holloween (1261ms) What year did Patsy Cline die? Air disaster -1.444444444443 What year did Patsy Cline die? -> $x: ($x, die, patsy cline) -> (Air disaster, People Who Died This Way, Patsy Cline) -> Air disaster (1284ms) What is neuropathy? Stavudine 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Stavudine, may cause, neuropathies) -> Stavudine (2176ms) What is neuropathy? diabetic foot ulcers 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (diabetic foot ulcers, are typically caused by, neuropathy) -> diabetic foot ulcers (1724ms) What is neuropathy? denture adhesives 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (denture adhesives, could cause, neuropathy) -> denture adhesives (3724ms) What is neuropathy? a foot deformity 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (a foot deformity, caused by, neuropathy) -> a foot deformity (3931ms) What is neuropathy? trichlorphon and/or dichlorvos 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (trichlorphon and/or dichlorvos, cause delayed, neuropathy) -> trichlorphon and/or dichlorvos (4195ms) What is neuropathy? Scientists 0.111111111111 What is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (Scientists, causes, diabetic neuropathy) -> Scientists (2023ms) What is neuropathy? glycyl-tRNA synthetase 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (glycyl-tRNA synthetase, causes, neuropathy) -> glycyl-tRNA synthetase (3724ms) What is neuropathy? Pinched nerve 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Pinched nerve, can cause, neuropathy) -> Pinched nerve (2176ms) What is neuropathy? Diabetes 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Diabetes, is the most common cause of, neuropathy) -> Diabetes (4195ms) What is neuropathy? higher daily doses 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (higher daily doses, can actually cause symptoms of, neuropathy) -> higher daily doses (3299ms) What is neuropathy? Alcoholism 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Alcoholism, is a leading cause of, neuropathy) -> Alcoholism (4162ms) What is neuropathy? the injuries 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (the injuries, causing, neuropathy) -> the injuries (3931ms) What is neuropathy? even a few antibiotics 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (even a few antibiotics, will also cause, neuropathy) -> even a few antibiotics (2195ms) What is neuropathy? Neurogenic bladder 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Neurogenic bladder, Causes, Neuropathy) -> Neurogenic bladder (4195ms) What is neuropathy? the nervous system 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (the nervous system, are the primarily cause of, neuropathy) -> the nervous system (4195ms) What is neuropathy? Hormonal imbalances 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Hormonal imbalances, cause, neuropathies) -> Hormonal imbalances (3299ms) What is neuropathy? a genetic biomarker 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (a genetic biomarker, causes, neuropathy) -> a genetic biomarker (3795ms) What is neuropathy? chemotherapy 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (chemotherapy, can also cause, neuropathy) -> chemotherapy (1944ms) What is neuropathy? a number of factors 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (a number of factors, can cause, neuropathies) -> a number of factors (1618ms) What is neuropathy? Does Vincristine 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Does Vincristine, Cause, Neuropathy) -> Does Vincristine (3794ms) What is neuropathy? Two inherited disorders 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Two inherited disorders, are known to cause, neuropathy) -> Two inherited disorders (4162ms) What is neuropathy? VISUAL IMPROVEMENTS Diplopia 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (VISUAL IMPROVEMENTS Diplopia, is caused by, neuropathy) -> VISUAL IMPROVEMENTS Diplopia (1944ms) What is neuropathy? the peripheral nervous system 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (the peripheral nervous system, causes, neuropathy) -> the peripheral nervous system (3794ms) What is neuropathy? Researchers 0.111111111111 What is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (Researchers, causes, diabetic neuropathy) -> Researchers (1618ms) What is neuropathy? MDMA 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (MDMA, caused, neuropathy) -> MDMA (3724ms) What is neuropathy? alcohol abuse 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (alcohol abuse, is a frequent cause of, neuropathy) -> alcohol abuse (3931ms) What is neuropathy? Vinblastine 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Vinblastine, also causes, neuropathy) -> Vinblastine (4162ms) What is neuropathy? Sjogren Syndrome 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Sjogren Syndrome, are the cause of, neuropathy) -> Sjogren Syndrome (3724ms) What is neuropathy? glyburide 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (glyburide, might cause, neuropathy) -> glyburide (4162ms) What is neuropathy? Diabetes mellitus 0.111111111111 What is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (Diabetes mellitus, Diseases or conditions caused, Diabetic Peripheral Neuropathy) -> Diabetes mellitus (2023ms) What is neuropathy? type 1 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (type 1, has caused, neuropathy) -> type 1 (2176ms) What is neuropathy? the body tissues 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (the body tissues, cause, neuropathy) -> the body tissues (4162ms) What is neuropathy? Mechanical compression and ischemia 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Mechanical compression and ischemia, also cause, neuropathies) -> Mechanical compression and ischemia (1945ms) What is neuropathy? Medications 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Medications, can treat pain caused by, neuropathy) -> Medications (1724ms) What is neuropathy? The latter 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (The latter, can cause, neuropathy) -> The latter (2023ms) What is neuropathy? NARP 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (NARP, causes, neuropathy) -> NARP (3931ms) What is neuropathy? Foot drop 0.111111111111 What is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (Foot drop, can be caused by, diabetic neuropathy) -> Foot drop (3931ms) What is neuropathy? AIDS 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (AIDS, can cause, neuropathy) -> AIDS (2195ms) What is neuropathy? the body 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (the body, can also cause, neuropathy) -> the body (4195ms) What is neuropathy? certain artificial sweeteners 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (certain artificial sweeteners, can cause, neuropathy) -> certain artificial sweeteners (3299ms) What is neuropathy? radiation treatments 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (radiation treatments, often cause, neuropathy) -> radiation treatments (4195ms) What is neuropathy? Damage 0.111111111111 What is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (Damage, caused by, diabetic neuropathy) -> Damage (4195ms) What is neuropathy? Neurological disorder 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Neurological disorder, Includes causes of death, Neuropathy) -> Neurological disorder (3794ms) What is neuropathy? men 0.111111111111 What is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (men, causes, diabetic neuropathy) -> men (3299ms) What is neuropathy? vitamin 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (vitamin, causes, neuropathy) -> vitamin (3931ms) What is neuropathy? the combination 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (the combination, has the potential to cause, neuropathy) -> the combination (4195ms) What is neuropathy? injured areas 0.111111111111 What is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (injured areas, relieves pain caused by, diabetic neuropathy) -> injured areas (1724ms) What is neuropathy? a B12 deficiency 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (a B12 deficiency, can cause, neuropathy) -> a B12 deficiency (1945ms) What is neuropathy? the pain and discomfort 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (the pain and discomfort, caused by, neuropathy) -> the pain and discomfort (4195ms) What is neuropathy? Amiodarone 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Amiodarone, can cause, neuropathy) -> Amiodarone (3724ms) What is neuropathy? severe vocal spasms 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (severe vocal spasms, are caused by, neuropathy) -> severe vocal spasms (4162ms) What is neuropathy? The leg pain 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (The leg pain, could be caused by, Neuropathy) -> The leg pain (4195ms) What is neuropathy? lower cholesterol 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (lower cholesterol, will cause, neuropathy) -> lower cholesterol (1945ms) What is neuropathy? bacterial or viral infections 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (bacterial or viral infections, may cause, neuropathy) -> bacterial or viral infections (1618ms) What is neuropathy? The treatment 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (The treatment, causes, neuropathy) -> The treatment (2023ms) What is neuropathy? High blood pressure medication 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (High blood pressure medication, can cause, neuropathy) -> High blood pressure medication (2195ms) What is neuropathy? drop foot 0.111111111111 What is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (drop foot, is caused by, Diabetic Neuropathy) -> drop foot (1944ms) What is neuropathy? Pain 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Pain, caused by, neuropathy) -> Pain (4195ms) What is neuropathy? defective heme synthesis 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (defective heme synthesis, causes, neuropathy) -> defective heme synthesis (3299ms) What is neuropathy? Chronic exposure 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Chronic exposure, can cause, neuropathy) -> Chronic exposure (1724ms) What is neuropathy? the back 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (the back, can be another cause of, neuropathy) -> the back (2176ms) What is neuropathy? Lelio Luttazzi 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Lelio Luttazzi, Cause of death, Neuropathy) -> Lelio Luttazzi (2023ms) What is neuropathy? The virus 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (The virus, can cause several different forms of, neuropathy) -> The virus (1725ms) What is neuropathy? a chemotherapy drug 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (a chemotherapy drug, has the potential for causing, neuropathy) -> a chemotherapy drug (1618ms) What is neuropathy? diabetes 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (diabetes, is the most common cause of, neuropathy) -> diabetes (3931ms) What is neuropathy? nerves 0.111111111111 What is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (nerves, causes, Diabetic Neuropathy) -> nerves (3724ms) What is neuropathy? Gastroparesis 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Gastroparesis, is a condition caused by, neuropathy) -> Gastroparesis (3931ms) What is neuropathy? Nerve Pain 0.111111111111 What is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (Nerve Pain, caused by, diabetic neuropathy) -> Nerve Pain (4195ms) What is neuropathy? drugs 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (drugs, are known potent causes of, neuropathy) -> drugs (2195ms) What is neuropathy? affinity 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (affinity, are likely the cause of, neuropathy) -> affinity (4195ms) What is neuropathy? not all pain 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (not all pain, is caused by, neuropathy) -> not all pain (4195ms) What is neuropathy? Vitamin B6 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Vitamin B6, can cause, neuropathy) -> Vitamin B6 (3794ms) What is neuropathy? pain 0.111111111111 What is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (pain, caused by, fibromyalgia and diabetic peripheral neuropathy) -> pain (4162ms) What is neuropathy? a person?s body 0.111111111111 What is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (a person?s body, is caused by, Diabetic Neuropathy) -> a person?s body (4162ms) What is neuropathy? old age 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (old age, are common known causes of, neuropathy) -> old age (3724ms) What is neuropathy? pyridoxine 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (pyridoxine, may cause, neuropathy) -> pyridoxine (1619ms) What is neuropathy? Diabetic neuropathy 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Diabetic neuropathy, is the leading cause of, neuropathy) -> Diabetic neuropathy (3724ms) What is neuropathy? Ultram 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (Ultram, cause, neuropathy) -> Ultram (1945ms) What is neuropathy? The diabetes 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (The diabetes, has caused, neuropathy) -> The diabetes (4162ms) What is neuropathy? factors 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (factors, can cause, neuropathies) -> factors (2176ms) What is neuropathy? the nerve damage 0.111111111111 What is neuropathy? -> $x: ($x, cause, diabetic neuropathy) -> (the nerve damage, caused by, diabetic neuropathy) -> the nerve damage (3794ms) What is neuropathy? 18v Ziprasidone batteries 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (18v Ziprasidone batteries, cause, neuropathy) -> 18v Ziprasidone batteries (2023ms) What is neuropathy? toxic chemicals 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (toxic chemicals, can cause, neuropathy) -> toxic chemicals (3795ms) What is neuropathy? toxic substances 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (toxic substances, is a very frequent cause of, neuropathy) -> toxic substances (1618ms) What is neuropathy? high glucose 0.111111111111 What is neuropathy? -> $x: ($x, cause, neuropathy) -> (high glucose, causes, neuropathy) -> high glucose (4195ms) What is neuropathy? the optic nerve -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (the optic nerve, result in, optic neuropathy) -> the optic nerve (4204ms) What is neuropathy? patients -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (patients, is less likely to result in, neuropathy) -> patients (4239ms) What is neuropathy? large nerve fibers -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (large nerve fibers, are thus normal in, small fiber neuropathy) -> large nerve fibers (4213ms) What is neuropathy? Pat Irmer -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Pat Irmer, is participating in, a neuropathy study) -> Pat Irmer (4213ms) What is neuropathy? Clinical Studies -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Clinical Studies, validate in, neuropathy symptoms) -> Clinical Studies (4231ms) What is neuropathy? lubricants -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (lubricants, can result in, a neuropathy indistinguishable) -> lubricants (4239ms) What is neuropathy? Neurontin -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Neurontin, is in, painful neuropathies) -> Neurontin (4204ms) What is neuropathy? macronutrients -0.0 What is neuropathy? -> $x: ($x, in, diabetic neuropathy) -> (macronutrients, is beneficial in, diabetic neuropathy) -> macronutrients (4248ms) What is neuropathy? Alcohol abuse -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Alcohol abuse, can result in, neuropathy) -> Alcohol abuse (4231ms) What is neuropathy? collaborative efforts -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (collaborative efforts, involve studies in, peripheral neuropathy) -> collaborative efforts (4248ms) What is neuropathy? CIDP -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (CIDP, is uncommon in, the motor neuropathies) -> CIDP (4213ms) What is neuropathy? Compensatory hyperhidrosis -0.0 What is neuropathy? -> $x: ($x, in, diabetic neuropathy) -> (Compensatory hyperhidrosis, is also seen in, diabetic neuropathy) -> Compensatory hyperhidrosis (4231ms) What is neuropathy? cannabis -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (cannabis, was effective in, neuropathy patients) -> cannabis (4213ms) What is neuropathy? High titers -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (High titers, are common in, axonal sensory > motor neuropathies) -> High titers (4222ms) What is neuropathy? Pregabalin and gabapentin -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Pregabalin and gabapentin, are effective in, diabetic neuropathy) -> Pregabalin and gabapentin (4239ms) What is neuropathy? A 1953 accident -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (A 1953 accident, elsewhere resulted in, peripheral neuropathies) -> A 1953 accident (4248ms) What is neuropathy? Glucose control -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Glucose control, seems to play a role in, neuropathy) -> Glucose control (4231ms) What is neuropathy? Several B vitamins -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Several B vitamins, are useful in treating, diabetic neuropathy) -> Several B vitamins (4248ms) What is neuropathy? Sativex Seen -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Sativex Seen, referred to in, my Neuropathy post) -> Sativex Seen (4239ms) What is neuropathy? Demyelinating features -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Demyelinating features, are common in, the POEMS neuropathy) -> Demyelinating features (4248ms) What is neuropathy? large fibre loss -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (large fibre loss, was observed in, sensory ataxic neuropathy) -> large fibre loss (4239ms) What is neuropathy? acupuncture -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (acupuncture, can indeed help in treating, peripheral neuropathy) -> acupuncture (4222ms) What is neuropathy? ALA -0.0 What is neuropathy? -> $x: ($x, in, diabetic neuropathy) -> (ALA, reduces sensory symptoms in, diabetic neuropathy) -> ALA (4248ms) What is neuropathy? sensory nerve fibers -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (sensory nerve fibers, are impaired in, diabetic neuropathy) -> sensory nerve fibers (4248ms) What is neuropathy? Moth-eaten fibers -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Moth-eaten fibers, may occur in, myopathy or neuropathy) -> Moth-eaten fibers (4222ms) What is neuropathy? gastroparesis -0.0 What is neuropathy? -> $x: ($x, in, diabetic neuropathy) -> (gastroparesis, is a prominant finding in, Diabetic Neuropathy) -> gastroparesis (4248ms) What is neuropathy? Anti-GM1 antibodies -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Anti-GM1 antibodies, may be found in, acute motor neuropathies) -> Anti-GM1 antibodies (4213ms) What is neuropathy? Gabapentin -0.0 What is neuropathy? -> $x: ($x, in, diabetic neuropathy) -> (Gabapentin, is also recommended in, painful diabetic neuropathy) -> Gabapentin (4248ms) What is neuropathy? Dr. Van Gils -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Dr. Van Gils, also has a strong interest in, neuropathy) -> Dr. Van Gils (4204ms) What is neuropathy? occurs -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (occurs, was more severe in, peripheral neuropathy) -> occurs (4213ms) What is neuropathy? Chemotherapy -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Chemotherapy, often results in, ?peripheral neuropathy) -> Chemotherapy (4205ms) What is neuropathy? Washington Title -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Washington Title, is best in, ulnar neuropathy) -> Washington Title (4213ms) What is neuropathy? btx-a -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (btx-a, is helpful in, chronic focal painful neuropathies) -> btx-a (4231ms) What is neuropathy? four factor -0.0 What is neuropathy? -> $x: ($x, in, diabetic neuropathy) -> (four factor, involved in, the development of diabetic neuropathy) -> four factor (4239ms) What is neuropathy? Opiates -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Opiates, are only used in, diabetic neuropathy treatments) -> Opiates (4248ms) What is neuropathy? the NeuropathyDR logo -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (the NeuropathyDR logo, are specialists in, neuropathy) -> the NeuropathyDR logo (4213ms) What is neuropathy? brain -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (brain, are also fundamentally involved in, neuropathy) -> brain (4213ms) What is neuropathy? the disruptions -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (the disruptions, found in, peripheral neuropathies) -> the disruptions (4205ms) What is neuropathy? either side -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (either side, is a slide in, neuropathy) -> either side (4239ms) What is neuropathy? a pathway -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (a pathway, thought to be involved in, diabetic neuropathy) -> a pathway (4222ms) What is neuropathy? DHA -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (DHA, plays a protective role in, diabetic neuropathy) -> DHA (4239ms) What is neuropathy? massage -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (massage, may be beneficial in, diabetic neuropathy) -> massage (4231ms) What is neuropathy? ?Aspartame -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (?Aspartame, is a culprit in, small fiber neuropathy) -> ?Aspartame (4222ms) What is neuropathy? a cobalamin -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (a cobalamin, used in, peripheral neuropathy) -> a cobalamin (4248ms) What is neuropathy? genetic lesions -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (genetic lesions, resulting in, inherited neuropathy) -> genetic lesions (4205ms) What is neuropathy? ?The consistency -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (?The consistency, observed differences in, peripheral neuropathy) -> ?The consistency (4213ms) What is neuropathy? Vitamin B12 deficiency -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Vitamin B12 deficiency, can result in, neuropathies) -> Vitamin B12 deficiency (4204ms) What is neuropathy? the same medications -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (the same medications, are generally used in, neuropathy) -> the same medications (4239ms) What is neuropathy? Dr. Vinik -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Dr. Vinik, is a leading expert in, neuropathy) -> Dr. Vinik (4248ms) What is neuropathy? Recent studies -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Recent studies, show improvement in, diabetic neuropathy) -> Recent studies (4239ms) What is neuropathy? thalidomide -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (thalidomide, may result in, severe peripheral neuropathy) -> thalidomide (4239ms) What is neuropathy? Schizophrenic diabetic man -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Schizophrenic diabetic man, came in with, peripheral neuropathy) -> Schizophrenic diabetic man (4231ms) What is neuropathy? Effexor -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Effexor, is also used in treating, diabetic neuropathy) -> Effexor (4231ms) What is neuropathy? Taxol -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Taxol, include reduction in, peripheral neuropathies and lack) -> Taxol (4222ms) What is neuropathy? marked improvements -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (marked improvements, were noted in, both peripheral neuropathy) -> marked improvements (4248ms) What is neuropathy? Pregabalin -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Pregabalin, is registered in, diabetic neuropathy patients) -> Pregabalin (4231ms) What is neuropathy? CMT pain -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (CMT pain, is used in, many painful neuropathies) -> CMT pain (4239ms) What is neuropathy? a new member -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (a new member, is mutated in, giant axonal neuropathy) -> a new member (4231ms) What is neuropathy? antidepressants -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (antidepressants, reduce pain in, diabetic neuropathy) -> antidepressants (4239ms) What is neuropathy? Active oxygen -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (Active oxygen, is involved in, many neuropathies and myopathies) -> Active oxygen (4231ms) What is neuropathy? very uncontrolled diabetes -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (very uncontrolled diabetes, has resulted in, diabetic neuropathy) -> very uncontrolled diabetes (4248ms) What is neuropathy? connexins -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (connexins, has been implicated in, peripheral neuropathy) -> connexins (4222ms) What is neuropathy? blood flow -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (blood flow, are more harmful in, glaucomatous optic neuropathy) -> blood flow (4222ms) What is neuropathy? peripheral neuropathy -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (peripheral neuropathy, occurs in, diabetic neuropathy) -> peripheral neuropathy (4248ms) What is neuropathy? myo-inositol -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (myo-inositol, may be involved in, diabetic neuropathy) -> myo-inositol (4248ms) What is neuropathy? premature death -0.0 What is neuropathy? -> $x: ($x, in, neuropathy) -> (premature death, found in, neuropathy) -> premature death (4222ms) What is neuropathy? relief -0.111111111111 What is neuropathy? -> $x: (neuropathy, do, $x) -> (neuropathy, can be done to get, relief) -> relief (4256ms) What is neuropathy? a monthly basis -0.111111111111 What is neuropathy? -> $x: (neuropathy, do, $x) -> (neuropathy, should be done on, a monthly basis) -> a monthly basis (4256ms) What is neuropathy? 2004 -0.111111111111 What is neuropathy? -> $x: (neuropathy, do, $x) -> (The neuropathy study, should be done in, 2004) -> 2004 (4256ms) What is neuropathy? Intravenous Application -0.111111111111 What is neuropathy? -> $x: (diabetic neuropathy, do, $x) -> (Diabetic Neuropathy, were done via, Intravenous Application) -> Intravenous Application (4256ms) What is neuropathy? Source -0.111111111111 What is neuropathy? -> $x: (neuropathy, do, $x) -> (Ulnar Neuropathy, DO, Source) -> Source (4256ms) What is neuropathy? celiac disease and cidp -0.111111111111 What is neuropathy? -> $x: ($x, describe, neuropathy) -> (celiac disease and cidp, described as, small fiber neuropathy) -> celiac disease and cidp (4256ms) What is neuropathy? Doctors Diagnose Diabetic Neuropathy -0.111111111111 What is neuropathy? -> $x: (neuropathy, do, $x) -> (Neuropathy, Do, Doctors Diagnose Diabetic Neuropathy) -> Doctors Diagnose Diabetic Neuropathy (4256ms) What is neuropathy? a cochlear implant -0.111111111111 What is neuropathy? -> $x: (neuropathy, do, $x) -> (auditory neuropathy, would do badly with, a cochlear implant) -> a cochlear implant (4256ms) What is neuropathy? a physical challenge -0.111111111111 What is neuropathy? -> $x: (neuropathy, do, $x) -> (The neuropathy, did n?t just produce, a physical challenge) -> a physical challenge (4256ms) What is neuropathy? a paradox -0.111111111111 What is neuropathy? -> $x: (neuropathy, do, $x) -> (Diabetic somatic neuropathies, do represent, a paradox) -> a paradox (4256ms) What is neuropathy? foot infections -0.111111111112 What is neuropathy? -> $x: (diabetic neuropathy, be for, $x) -> (Diabetic neuropathy, is a major risk factor for, foot infections) -> foot infections (4295ms) What is neuropathy? evaluation -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (peripheral neuropathy, are indications for, evaluation) -> evaluation (4273ms) What is neuropathy? 15 years -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (optic neuropathy, has been following patients for, 15 years) -> 15 years (4273ms) What is neuropathy? an eye disease -0.111111111112 What is neuropathy? -> $x: ($x, define, neuropathy) -> (an eye disease, is defined as, a characteristic optic neuropathy) -> an eye disease (4295ms) What is neuropathy? any disorder -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (Peripheral neuropathy, is a general term for, any disorder) -> any disorder (4280ms) What is neuropathy? foot ulcers -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (peripheral neuropathy, are at increased risk for, foot ulcers) -> foot ulcers (4288ms) What is neuropathy? Abrams -0.111111111112 What is neuropathy? -> $x: ($x, do, neuropathy) -> (Abrams, is now doing, his peripheral neuropathy study) -> Abrams (4280ms) What is neuropathy? AVAPRO -0.111111111112 What is neuropathy? -> $x: ($x, do, neuropathy) -> (AVAPRO, did make, a neuropathy) -> AVAPRO (4295ms) What is neuropathy? Cisplatin/Taxol combination -0.111111111112 What is neuropathy? -> $x: ($x, produce, neuropathy) -> (Cisplatin/Taxol combination, produces, more neuropathy) -> Cisplatin/Taxol combination (4273ms) What is neuropathy? a few days post surgery -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (The neuropathy, was completely gone for, a few days post surgery) -> a few days post surgery (4256ms) What is neuropathy? twenty or thirty other doctors -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (This NEUROPATHY, is for, twenty or thirty other doctors) -> twenty or thirty other doctors (4273ms) What is neuropathy? a lot -0.111111111112 What is neuropathy? -> $x: ($x, do, neuropathy) -> (a lot, as did, neuropathy) -> a lot (4295ms) What is neuropathy? disorders -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (Peripheral neuropathy, is a general term for, disorders) -> disorders (4288ms) What is neuropathy? severity -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (incident peripheral neuropathy and, were graded for, severity) -> severity (4272ms) What is neuropathy? Isoniazid -0.111111111112 What is neuropathy? -> $x: ($x, produce, neuropathy) -> (Isoniazid, produced, 602 % peripheral neuropathy) -> Isoniazid (4256ms) What is neuropathy? the cortex -0.111111111112 What is neuropathy? -> $x: ($x, define, neuropathy) -> (the cortex, might be defined as, an auditory neuropathy) -> the cortex (4288ms) What is neuropathy? disease -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (Neuropathy, is the medical word for, disease) -> disease (4273ms) What is neuropathy? Early postoperative period -0.111111111112 What is neuropathy? -> $x: ($x, characterize, neuropathy) -> (Early postoperative period, is characterized by, neuropathies) -> Early postoperative period (4280ms) What is neuropathy? the ataxia -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (Peripheral neuropathy, is often responsible for, the ataxia) -> the ataxia (4265ms) What is neuropathy? glaucoma -0.111111111112 What is neuropathy? -> $x: ($x, characterize, neuropathy) -> (glaucoma, is characterized by, optic neuropathy) -> glaucoma (4288ms) What is neuropathy? primrose oil -0.111111111112 What is neuropathy? -> $x: ($x, do, neuropathy) -> (primrose oil, do anything for, diabetic neuropathy) -> primrose oil (4280ms) What is neuropathy? once the four treatments -0.111111111112 What is neuropathy? -> $x: ($x, do, neuropathy) -> (once the four treatments, does, the neuropathy) -> once the four treatments (4273ms) What is neuropathy? L-OHP -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (peripheral sensory neuropathy, was greatest for, L-OHP) -> L-OHP (4265ms) What is neuropathy? Neuropathy -0.111111111112 What is neuropathy? -> $x: ($x, do, diabetic neuropathy) -> (Neuropathy, Do, Doctors Diagnose Diabetic Neuropathy) -> Neuropathy (4280ms) What is neuropathy? the most part -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (Peripheral Neuropathy, Is For, the most part) -> the most part (4288ms) What is neuropathy? muscle cramps -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (Neuropathy, is noted for, muscle cramps) -> muscle cramps (4295ms) What is neuropathy? damage -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (Neuropathy, is the term for, damage) -> damage (4288ms) What is neuropathy? neuropathic pains -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (Neuropathies, may be causes for, neuropathic pains) -> neuropathic pains (4273ms) What is neuropathy? a very long time -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (neuropathy, has been present for, a very long time) -> a very long time (4288ms) What is neuropathy? information -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (This NEUROPATHY, is for, information) -> information (4288ms) What is neuropathy? alcoholism -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (alcoholic neuropathy, is treatment for, alcoholism) -> alcoholism (4256ms) What is neuropathy? each group -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (NEUROPATHY, was then determined for, each group) -> each group (4280ms) What is neuropathy? years -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (peripheral neuropathy, has been extremely mild for, years) -> years (4280ms) What is neuropathy? the maintenance -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (hereditary axonal neuropathy, are critical for, the maintenance) -> the maintenance (4295ms) What is neuropathy? any type -0.111111111112 What is neuropathy? -> $x: (diabetic neuropathy, be for, $x) -> (diabetic neuropathy, is generally used for, any type) -> any type (4265ms) What is neuropathy? Lead toxicity -0.111111111112 What is neuropathy? -> $x: ($x, produce, neuropathy) -> (Lead toxicity, produces, a classic motor neuropathy) -> Lead toxicity (4265ms) What is neuropathy? neuropathic pain -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (Neuropathy, is another term for, neuropathic pain) -> neuropathic pain (4265ms) What is neuropathy? The nerve damage -0.111111111112 What is neuropathy? -> $x: ($x, characterize, neuropathy) -> (The nerve damage, characterizes, diabetic peripheral neuropathy) -> The nerve damage (4280ms) What is neuropathy? the neck -0.111111111112 What is neuropathy? -> $x: ($x, produce, neuropathy) -> (the neck, can produce, SYMPTOMS SENSORY NEUROPATHIES NEUROPATHY) -> the neck (4288ms) What is neuropathy? amputation -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (?Neuropathy, is the leading cause for, amputation) -> amputation (4265ms) What is neuropathy? The isoniazid -0.111111111112 What is neuropathy? -> $x: ($x, produce, neuropathy) -> (The isoniazid, produced, more peripheral neuropathy) -> The isoniazid (4288ms) What is neuropathy? the common link -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (neuropathy, is a prime candidate for, the common link) -> the common link (4288ms) What is neuropathy? Question -0.111111111112 What is neuropathy? -> $x: ($x, do, neuropathy) -> (Question, Does, neuropathy) -> Question (4273ms) What is neuropathy? each 2200 patient years -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (neuropathy, could be expected for, each 2200 patient years) -> each 2200 patient years (4288ms) What is neuropathy? neurotoxicity -0.111111111112 What is neuropathy? -> $x: ($x, characterize, neuropathy) -> (neurotoxicity, is characterized by, an acute neuropathy) -> neurotoxicity (4265ms) What is neuropathy? physical damage -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (Neuropathy, is a general term for, physical damage) -> physical damage (4280ms) What is neuropathy? the feet -0.111111111112 What is neuropathy? -> $x: ($x, do, neuropathy) -> (the feet, is to do with, ?neuropathy?) -> the feet (4273ms) What is neuropathy? presentation -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (Motor Neuropathy Patients, has been accepted for, presentation) -> presentation (4273ms) What is neuropathy? a few hours -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (my neuropathy, was diminished for, a few hours) -> a few hours (4280ms) What is neuropathy? treatment -0.111111111112 What is neuropathy? -> $x: (neuropathy, be for, $x) -> (neuropathies, may be a dose-limiting factor for, treatment) -> treatment (4288ms) What is neuropathy? cramps -0.111111111112 What is neuropathy? -> $x: (diabetic neuropathy, be for, $x) -> (diabetic neuropathy, can also be mistaken for, cramps) -> cramps (4280ms) What is neuropathy? NCS -0.111111111112 What is neuropathy? -> $x: ($x, do, neuropathy) -> (NCS, cannot be done for, autonomic neuropathy) -> NCS (4295ms) What is neuropathy? Condition -0.222222222222 What is neuropathy? -> $x: ($x, refer, neuropathy) -> (Condition, also referred to as, peripheral Neuropathy) -> Condition (4295ms) What is neuropathy? neuropathy-target-esterase -0.222222222222 What is neuropathy? -> $x: ($x, found, neuropathy) -> (neuropathy-target-esterase, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Neuropathy%20target%20esterase) -> neuropathy-target-esterase (4303ms) What is neuropathy? Topics -0.222222222222 What is neuropathy? -> $x: ($x, found, neuropathy) -> (Topics, Find, a Podiatrist , neuropathy and footwear) -> Topics (4303ms) What is neuropathy? Doctors -0.222222222222 What is neuropathy? -> $x: ($x, refer, neuropathy) -> (Doctors, usually refer to, neuropathies) -> Doctors (4310ms) What is neuropathy? average exposure -0.222222222222 What is neuropathy? -> $x: ($x, found, neuropathy) -> (average exposure, were found to have, neuropathies) -> average exposure (4310ms) What is neuropathy? the extremities -0.222222222222 What is neuropathy? -> $x: ($x, refer, neuropathy) -> (the extremities, referred to as, a peripheral neuropathy) -> the extremities (4295ms) What is neuropathy? CIDN -0.222222222222 What is neuropathy? -> $x: ($x, refer, neuropathy) -> (CIDN, referred to as, hypertrophic neuropathy) -> CIDN (4295ms) What is neuropathy? NARP syndrome -0.222222222222 What is neuropathy? -> $x: ($x, found, neuropathy) -> (NARP syndrome, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Neuropathy,%20ataxia,%20and%20retinitis%20pigmentosa) -> NARP syndrome (4310ms) What is neuropathy? medications -0.222222222222 What is neuropathy? -> $x: ($x, create, neuropathy) -> (medications, create, Neuropathy Saturday) -> medications (4303ms) What is neuropathy? a statistical association -0.222222222222 What is neuropathy? -> $x: ($x, found, neuropathy) -> (a statistical association, was found between, neuropathy) -> a statistical association (4310ms) What is neuropathy? The term sensorimotor -0.222222222222 What is neuropathy? -> $x: ($x, refer, neuropathy) -> (The term sensorimotor, refers to, neuropathies) -> The term sensorimotor (4310ms) What is neuropathy? No association -0.222222222222 What is neuropathy? -> $x: ($x, found, diabetic neuropathy) -> (No association, was found between, diabetic neuropathy) -> No association (4303ms) What is neuropathy? multifocal_motor_neuropathy -0.222222222222 What is neuropathy? -> $x: ($x, found, neuropathy) -> (multifocal_motor_neuropathy, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Multifocal%20motor%20neuropathy) -> multifocal_motor_neuropathy (4310ms) What is neuropathy? Giant axonal neuropathy -0.222222222222 What is neuropathy? -> $x: ($x, found, neuropathy) -> (Giant axonal neuropathy, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Giant%20axonal%20neuropathy) -> Giant axonal neuropathy (4303ms) What is neuropathy? HMSN III -0.222222222222 What is neuropathy? -> $x: ($x, refer, neuropathy) -> (HMSN III, refers to, hypertrophic neuropathy) -> HMSN III (4303ms) What is neuropathy? 486 patients -0.222222222222 What is neuropathy? -> $x: ($x, refer, neuropathy) -> (486 patients, referred for, suspected sensory neuropathy) -> 486 patients (4303ms) What is neuropathy? The other , -0.222222222222 What is neuropathy? -> $x: ($x, refer, neuropathy) -> (The other ,, referred to as, autonomic neuropathy) -> The other , (4295ms) What is neuropathy? nerve damage -0.222222222222 What is neuropathy? -> $x: ($x, refer, neuropathy) -> (nerve damage, is also referred to as, neuropathy) -> nerve damage (4303ms) What is neuropathy? the hands and feet -0.222222222222 What is neuropathy? -> $x: ($x, refer, neuropathy) -> (the hands and feet, is referred to as, amyloid neuropathy) -> the hands and feet (4310ms) What is neuropathy? cednik syndrome -0.222222222222 What is neuropathy? -> $x: ($x, found, neuropathy) -> (cednik syndrome, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Cerebral%20dysgenesis%E2%80%93neuropathy%E2%80%93ichthyosis%E2%80%93keratoderma%20syndrome) -> cednik syndrome (4303ms) What is neuropathy? feelings -0.222222222222 What is neuropathy? -> $x: ($x, refer, neuropathy) -> (feelings, is referred to as, peripheral neuropathy) -> feelings (4303ms) What is neuropathy? The 5th patient -0.222222222222 What is neuropathy? -> $x: ($x, found, diabetic neuropathy) -> (The 5th patient, was found to suffer from, diabetic neuropathy) -> The 5th patient (4303ms) What is neuropathy? Auditory Neuropathy -0.222222222222 What is neuropathy? -> $x: ($x, found, neuropathy) -> (Auditory Neuropathy, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Auditory%20neuropathy) -> Auditory Neuropathy (4303ms) What is neuropathy? Fixodent zinc poisoning -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (Fixodent zinc poisoning, can lead to, neuropathy) -> Fixodent zinc poisoning (4344ms) What is neuropathy? exposure -0.222222222223 What is neuropathy? -> $x: (neuropathy, be about, $x) -> (Diabetic focal neuropathy, is usually brought about by, exposure) -> exposure (4358ms) What is neuropathy? Severe zinc poisoning -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (Severe zinc poisoning, can lead to, neuropathy) -> Severe zinc poisoning (4419ms) What is neuropathy? ?The main task -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (?The main task, is to identify those with, peripheral neuropathy) -> ?The main task (4398ms) What is neuropathy? procedures -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (procedures, can lead to, ulnar neuropathy) -> procedures (4368ms) What is neuropathy? breast cancer -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (breast cancer, can cause, peripheral neuropathy) -> breast cancer (4398ms) What is neuropathy? Certain chemotherapy drugs -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (Certain chemotherapy drugs, can cause, peripheral neuropathy) -> Certain chemotherapy drugs (4390ms) What is neuropathy? the condition -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (the condition, may be due to, inflammatory neuropathy) -> the condition (4398ms) What is neuropathy? diabetic food neuropathy -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (diabetic food neuropathy, is, diabetic neuropathy) -> diabetic food neuropathy (4331ms) What is neuropathy? past radiation treatment -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (past radiation treatment, is, neuropathy) -> past radiation treatment (4363ms) What is neuropathy? Vitamin B12 deficiencies -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (Vitamin B12 deficiencies, can lead to, peripheral neuropathy) -> Vitamin B12 deficiencies (4317ms) What is neuropathy? kidney failure -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (kidney failure, can cause, peripheral neuropathy) -> kidney failure (4310ms) What is neuropathy? a copper deficiency -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (a copper deficiency, can lead to, neuropathy) -> a copper deficiency (4394ms) What is neuropathy? the body?s cells -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (the body?s cells, can treat, diabetic neuropathy) -> the body?s cells (4409ms) What is neuropathy? Flagyl -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (Flagyl, can cause, perephial neuropathy) -> Flagyl (4419ms) What is neuropathy? deficiency -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (deficiency, is linked to, neuropathy and mental depression) -> deficiency (4317ms) What is neuropathy? a known result -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (a known result, is indistinguishable from, diabetic neuropathy) -> a known result (4324ms) What is neuropathy? the medicines -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (the medicines, used can have, peripheral neuropathy) -> the medicines (4414ms) What is neuropathy? a denizen -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (a denizen, is suffering greatly from, diabetic neuropathy) -> a denizen (4381ms) What is neuropathy? Several factors -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (Several factors, have been linked to, auditory neuropathy) -> Several factors (4372ms) What is neuropathy? mission -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (mission, is to increase public awareness of, neuropathy) -> mission (4344ms) What is neuropathy? B vitamins and magnesium -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (B vitamins and magnesium, are compromised with, neuropathy) -> B vitamins and magnesium (4414ms) What is neuropathy? an 8 -0.222222222223 What is neuropathy? -> $x: (neuropathy, be about, $x) -> (Feet neuropathy, is about, an 8) -> an 8 (4338ms) What is neuropathy? the lookout -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (the lookout, is, diabetic neuropathy) -> the lookout (4382ms) What is neuropathy? YASMIN -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (YASMIN, is used to treat, neuropathy) -> YASMIN (4394ms) What is neuropathy? Contains n-hexane -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (Contains n-hexane, can cause, peripheral neuropathy) -> Contains n-hexane (4386ms) What is neuropathy? Myalgic hyperalgesia -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (Myalgic hyperalgesia, may also be secondary to, neuropathy) -> Myalgic hyperalgesia (4405ms) What is neuropathy? INH -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (INH, can cause, peripheral neuropathy) -> INH (4390ms) What is neuropathy? The symptom -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (The symptom, is known as, neuropathy) -> The symptom (4421ms) What is neuropathy? Myeloma patients -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (Myeloma patients, can also experience, peripheral neuropathy) -> Myeloma patients (4331ms) What is neuropathy? dentures -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (dentures, were afflicted with, neuropathy) -> dentures (4377ms) What is neuropathy? 600 mg/day doses -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (600 mg/day doses, were mainly used for, diabetic neuropathy) -> 600 mg/day doses (4402ms) What is neuropathy? Lifestyle changes -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (Lifestyle changes, can help, peripheral neuropathy) -> Lifestyle changes (4412ms) What is neuropathy? Neuropathy Severe zinc poisoning -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (Neuropathy Severe zinc poisoning, can lead to, neuropathy) -> Neuropathy Severe zinc poisoning (4419ms) What is neuropathy? Excessive zinc -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (Excessive zinc, has been linked to, neuropathy) -> Excessive zinc (4409ms) What is neuropathy? Blood sugar control -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (Blood sugar control, is the only treatment for, neuropathy) -> Blood sugar control (4402ms) What is neuropathy? Diabetics -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (Diabetics, can develop, peripheral neuropathies) -> Diabetics (4412ms) What is neuropathy? erectile dysfunction -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (erectile dysfunction, is due to, neuropathy) -> erectile dysfunction (4412ms) What is neuropathy? excellent blood sugar control -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (excellent blood sugar control, can develop, diabetic neuropathy) -> excellent blood sugar control (4368ms) What is neuropathy? 15 percent -0.222222222223 What is neuropathy? -> $x: (neuropathy, be about, $x) -> (Peripheral neuropathy, is found in about, 15 percent) -> 15 percent (4421ms) What is neuropathy? Cymbalta -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (Cymbalta, is used for, Diabetic Neuropathy) -> Cymbalta (4368ms) What is neuropathy? The muscles -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (The muscles, are affected by, diabetic neuropathy) -> The muscles (4398ms) What is neuropathy? the body organs -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (the body organs, can be impacted by, neuropathy) -> the body organs (4412ms) What is neuropathy? Nerve damage -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (Nerve damage, is also called, diabetic neuropathy) -> Nerve damage (4344ms) What is neuropathy? diabetic foot pain -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (diabetic foot pain, is, diabetic neuropathy) -> diabetic foot pain (4350ms) What is neuropathy? The ultimate aim -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (The ultimate aim, is to prevent, the neuropathy) -> The ultimate aim (4394ms) What is neuropathy? the peripheral nerves -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (the peripheral nerves, are affected due to, neuropathy) -> the peripheral nerves (4402ms) What is neuropathy? DM20 -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (DM20, is necessary to prevent, neuropathy) -> DM20 (4417ms) What is neuropathy? autoimmune disorders -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (autoimmune disorders, can cause, peripheral neuropathy) -> autoimmune disorders (4417ms) What is neuropathy? Steven NEUROPATHY -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (Steven NEUROPATHY, was told, NEUROPATHY) -> Steven NEUROPATHY (4377ms) What is neuropathy? lipoic acid -0.222222222223 What is neuropathy? -> $x: ($x, be to, diabetic neuropathy) -> (lipoic acid, has been shown to decrease, diabetic neuropathy) -> lipoic acid (4381ms) What is neuropathy? A common example -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (A common example, is, Diabetic Neuropathy) -> A common example (4405ms) What is neuropathy? high blood glucose levels -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (high blood glucose levels, is, diabetic neuropathy) -> high blood glucose levels (4381ms) What is neuropathy? time -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (time, is the key to treating, diabetic neuropathy) -> time (4405ms) What is neuropathy? A Diabetic -0.222222222223 What is neuropathy? -> $x: ($x, can, diabetic neuropathy) -> (A Diabetic, can also acquire, diabetic neuropathy) -> A Diabetic (4398ms) What is neuropathy? Free radicals -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (Free radicals, are hypothesized to, play a role in neuropathy) -> Free radicals (4310ms) What is neuropathy? Gold chloride -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (Gold chloride, has been known to cause, Peripheral Neuropathy) -> Gold chloride (4377ms) What is neuropathy? neurotrophic agents -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (neurotrophic agents, can be applied to, peripheral neuropathies) -> neurotrophic agents (4324ms) What is neuropathy? vitamin B12 -0.222222222223 What is neuropathy? -> $x: ($x, be to, diabetic neuropathy) -> (vitamin B12, may be helpful to, diabetic neuropathy patients) -> vitamin B12 (4394ms) What is neuropathy? High doses -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (High doses, can cause, peripheral neuropathy) -> High doses (4368ms) What is neuropathy? the patient -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (the patient, is suspected of having, neuropathy) -> the patient (4338ms) What is neuropathy? paroxetine -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (paroxetine, is effective for, diabetic neuropathy) -> paroxetine (4372ms) What is neuropathy? the right steps -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (the right steps, now can delay, neuropathy) -> the right steps (4358ms) What is neuropathy? No medical treatments -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (No medical treatments, can cure, peripheral neuropathy) -> No medical treatments (4363ms) What is neuropathy? B6 -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (B6, is important to control, INH related peripheral neuropathy) -> B6 (4331ms) What is neuropathy? The reduced blood flow -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (The reduced blood flow, can intensify, neuropathy symptoms) -> The reduced blood flow (4331ms) What is neuropathy? Primrose evening oil -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (Primrose evening oil, is also great for, diabetic neuropathy) -> Primrose evening oil (4390ms) What is neuropathy? orbital compartment syndrome -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (orbital compartment syndrome, can develop, optic neuropathy) -> orbital compartment syndrome (4350ms) What is neuropathy? cyclohexane -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (cyclohexane, has been known to cause, a peripheral neuropathy) -> cyclohexane (4390ms) What is neuropathy? Tricyclic antidepressants -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (Tricyclic antidepressants, are known to help, some neuropathies) -> Tricyclic antidepressants (4344ms) What is neuropathy? the most common distal axonopathy -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (the most common distal axonopathy, is, diabetic neuropathy) -> the most common distal axonopathy (4386ms) What is neuropathy? nerve endings -0.222222222223 What is neuropathy? -> $x: ($x, can, diabetic neuropathy) -> (nerve endings, can lead to, diabetic neuropathy) -> nerve endings (4422ms) What is neuropathy? GLA -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (GLA, may be more effective for, diabetic neuropathy) -> GLA (4405ms) What is neuropathy? Diabetic Peripheral Neuropathy -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (Diabetic Peripheral Neuropathy, is, Neuropathy) -> Diabetic Peripheral Neuropathy (4414ms) What is neuropathy? half -0.222222222223 What is neuropathy? -> $x: (neuropathy, be about, $x) -> (neuropathy, is about, half) -> half (4402ms) What is neuropathy? Alpha-lipoic acid -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (Alpha-lipoic acid, is effectively used to treat, neuropathy) -> Alpha-lipoic acid (4421ms) What is neuropathy? The cause -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (The cause, was complication of, neuropathy) -> The cause (4405ms) What is neuropathy? nutrients -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (nutrients, are specifically designed to, address neuropathy) -> nutrients (4377ms) What is neuropathy? African Americans -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (African Americans, were much more likely to have, neuropathy) -> African Americans (4324ms) What is neuropathy? 60 -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (60, are most likely to develop, peripheral neuropathy) -> 60 (4421ms) What is neuropathy? depression -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (depression, is used to treat, chronic pain/neuropathy) -> depression (4317ms) What is neuropathy? sensation -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (sensation, is limited with, neuropathy) -> sensation (4344ms) What is neuropathy? Diabetes Mellitus -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (Diabetes Mellitus, is, Diabetic Neuropathy) -> Diabetes Mellitus (4422ms) What is neuropathy? alcohol -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (alcohol, can experience, peripheral neuropathy) -> alcohol (4390ms) What is neuropathy? smoking and alcohol use -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (smoking and alcohol use, can also lead to, neuropathy) -> smoking and alcohol use (4402ms) What is neuropathy? feeling -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (feeling, is called, diabetic neuropathy) -> feeling (4386ms) What is neuropathy? sixth nerve impairment -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (sixth nerve impairment, is, diabetic neuropathy) -> sixth nerve impairment (4358ms) What is neuropathy? wounds -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (wounds, is, diabetic neuropathy) -> wounds (4412ms) What is neuropathy? the meeting -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (the meeting, was devoted to, Auditory Neuropathy) -> the meeting (4363ms) What is neuropathy? The heart -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (The heart, is also affected by, neuropathy) -> The heart (4331ms) What is neuropathy? 19 Nov 2010 , 12:15 AM Diabetics -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (19 Nov 2010 , 12:15 AM Diabetics, is called, neuropathy) -> 19 Nov 2010 , 12:15 AM Diabetics (4310ms) What is neuropathy? diabetic complication -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (diabetic complication, is, diabetic neuropathy) -> diabetic complication (4402ms) What is neuropathy? Ward?s condition -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (Ward?s condition, was diagnosed as, diabetic neuropathy) -> Ward?s condition (4402ms) What is neuropathy? TRAMADOL -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (TRAMADOL, is used for, Diabetic Neuropathy) -> TRAMADOL (4405ms) What is neuropathy? the causes -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (the causes, could be from, Neuropathy) -> the causes (4386ms) What is neuropathy? Improved regulation -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (Improved regulation, is the best way to reduce, neuropathy) -> Improved regulation (4344ms) What is neuropathy? Nutritional deficiencies -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (Nutritional deficiencies, can cause, peripheral neuropathy) -> Nutritional deficiencies (4405ms) What is neuropathy? controls -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (controls, cannot be used to rule out, small fiber neuropathy) -> controls (4402ms) What is neuropathy? a physical exam -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (a physical exam, is used to diagnose, neuropathy) -> a physical exam (4358ms) What is neuropathy? people with diabetes -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (people with diabetes, can develop, neuropathy) -> people with diabetes (4358ms) What is neuropathy? severe nerve damage -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (severe nerve damage, was diagnosed with, neuropathy) -> severe nerve damage (4417ms) What is neuropathy? the longest -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (the longest, often are affected by, neuropathy) -> the longest (4417ms) What is neuropathy? Ward -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (Ward, was already suffering from, diabetic neuropathy) -> Ward (4377ms) What is neuropathy? Velcade -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (Velcade, can make, neuropathy) -> Velcade (4358ms) What is neuropathy? cortical plasticity -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (cortical plasticity, may be related to, neuropathies) -> cortical plasticity (4331ms) What is neuropathy? no fun -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (no fun, is certainly more temporary than, neuropathy) -> no fun (4419ms) What is neuropathy? ulcers -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (ulcers, are a common complication of, diabetic neuropathy) -> ulcers (4317ms) What is neuropathy? the foot -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (the foot, is called, neuropathy) -> the foot (4412ms) What is neuropathy? heel ulcers -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (heel ulcers, are directly related to, peripheral neuropathy) -> heel ulcers (4324ms) What is neuropathy? IOP evaluation -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (IOP evaluation, is widely used to test for, optic neuropathy) -> IOP evaluation (4372ms) What is neuropathy? topical pain creams -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (topical pain creams, are, diabetic neuropathy) -> topical pain creams (4394ms) What is neuropathy? Blindness -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (Blindness, as are, diabetic neuropathy) -> Blindness (4419ms) What is neuropathy? 2011 -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (2011, is, Diabetic Neuropathy) -> 2011 (4368ms) What is neuropathy? the more common syndromes -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (the more common syndromes, are, diabetic neuropathy) -> the more common syndromes (4377ms) What is neuropathy? The diagnosis -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (The diagnosis, was later altered to, autonomic neuropathy) -> The diagnosis (4394ms) What is neuropathy? pictures -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (pictures, are classic examples of, diabetic neuropathy) -> pictures (4324ms) What is neuropathy? the sublimed conceptions -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (the sublimed conceptions, are all product of, neuropathy) -> the sublimed conceptions (4386ms) What is neuropathy? motor function -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (motor function, are impaired from, neuropathy) -> motor function (4377ms) What is neuropathy? Cancer -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (Cancer, can cause, peripheral neuropathy) -> Cancer (4419ms) What is neuropathy? Hereditary -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (Hereditary, are Hereditary, Neuropathies) -> Hereditary (4414ms) What is neuropathy? The nervous system -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (The nervous system, is known as, diabetic neuropathy) -> The nervous system (4386ms) What is neuropathy? Metronidazole -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (Metronidazole, can cause, peripheral neuropathy) -> Metronidazole (4363ms) What is neuropathy? DCA -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (DCA, may be limited by, neuropathy) -> DCA (4317ms) What is neuropathy? alpha lipoic acid -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (alpha lipoic acid, is beneficial for, neuropathy) -> alpha lipoic acid (4368ms) What is neuropathy? Too much B6 -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (Too much B6, can cause, peripheral neuropathy) -> Too much B6 (4338ms) What is neuropathy? 70 years -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (70 years, was diagnosed with, diabetic neuropathy) -> 70 years (4421ms) What is neuropathy? More serious side effects -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (More serious side effects, can include, neuropathy) -> More serious side effects (4409ms) What is neuropathy? B12 deficiency -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (B12 deficiency, can lead to varying degrees of, neuropathy) -> B12 deficiency (4390ms) What is neuropathy? the toes and hands -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (the toes and hands, can be signs of, diabetic neuropathy) -> the toes and hands (4409ms) What is neuropathy? Duloxetine -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (Duloxetine, is also used to treat, diabetic neuropathy) -> Duloxetine (4363ms) What is neuropathy? One example -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (One example, is, diabetic neuropathy) -> One example (4419ms) What is neuropathy? agents -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (agents, are used for, neuropathy) -> agents (4394ms) What is neuropathy? deficiencies -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (deficiencies, have also been linked to, peripheral neuropathy) -> deficiencies (4405ms) What is neuropathy? a larger factor -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (a larger factor, is, neuropathy) -> a larger factor (4350ms) What is neuropathy? a daily and prolonged basis -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (a daily and prolonged basis, can cause, alcoholic neuropathy) -> a daily and prolonged basis (4338ms) What is neuropathy? The flagship application -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (The flagship application, will be, diabetic neuropathy) -> The flagship application (4402ms) What is neuropathy? nerve cells -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (nerve cells, is the primary reason for, Diabetic neuropathy) -> nerve cells (4405ms) What is neuropathy? 17p12 -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (17p12, are associated with, neuropathy) -> 17p12 (4417ms) What is neuropathy? vincristine and cisplatin -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (vincristine and cisplatin, can cause, peripheral neuropathies) -> vincristine and cisplatin (4386ms) What is neuropathy? the foot problems -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (the foot problems, are primarily a consequence of, neuropathy) -> the foot problems (4390ms) What is neuropathy? Vitamin B -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (Vitamin B, is commonly used to treat, peripheral neuropathy) -> Vitamin B (4419ms) What is neuropathy? 2009 Nucleus Medical Media -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (2009 Nucleus Medical Media, can cause, peripheral neuropathy) -> 2009 Nucleus Medical Media (4381ms) What is neuropathy? the organs -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (the organs, can be altered by, neuropathy) -> the organs (4390ms) What is neuropathy? the pain -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (the pain, could be due to, neuropathy) -> the pain (4358ms) What is neuropathy? Old mitochondria -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (Old mitochondria, might be responsible for, neuropathy) -> Old mitochondria (4398ms) What is neuropathy? real , sometimes permanent nerve damage -0.222222222223 What is neuropathy? -> $x: (neuropathy, be about, $x) -> (neuropathy, is about, real , sometimes permanent nerve damage) -> real , sometimes permanent nerve damage (4414ms) What is neuropathy? high blood sugar levels -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (high blood sugar levels, is known as, diabetic neuropathy) -> high blood sugar levels (4337ms) What is neuropathy? Nerve Damage -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (Nerve Damage, is also called, Neuropathy) -> Nerve Damage (4409ms) What is neuropathy? Nerve damage Diabetes -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (Nerve damage Diabetes, can lead to, neuropathy) -> Nerve damage Diabetes (4372ms) What is neuropathy? such long-term complications -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (such long-term complications, can arise as, neuropathy) -> such long-term complications (4317ms) What is neuropathy? 2.This formula -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (2.This formula, may also be used for, neuropathy) -> 2.This formula (4398ms) What is neuropathy? lower back pain -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (lower back pain, is, diabetic neuropathy) -> lower back pain (4412ms) What is neuropathy? hypomotility -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (hypomotility, is a consequence of, diabetic neuropathy) -> hypomotility (4398ms) What is neuropathy? muscles -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (muscles, are impacted by, diabetic neuropathy) -> muscles (4409ms) What is neuropathy? The antibiotics -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (The antibiotics, can have dreadful side effects like, neuropathy) -> The antibiotics (4417ms) What is neuropathy? Discomfort -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (Discomfort, is Brought on by, neuropathy) -> Discomfort (4372ms) What is neuropathy? Fibromyalgia pain -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (Fibromyalgia pain, is similar to, diabetic neuropathy) -> Fibromyalgia pain (4324ms) What is neuropathy? A PT -0.222222222223 What is neuropathy? -> $x: ($x, can, diabetic neuropathy) -> (A PT, can help treat, diabetic neuropathy) -> A PT (4324ms) What is neuropathy? blood rheology -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (blood rheology, may be relevant to, neuropathy .38,39) -> blood rheology (4409ms) What is neuropathy? foot ulceration -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (foot ulceration, is usually related to, peripheral neuropathy) -> foot ulceration (4363ms) What is neuropathy? gastrointestinal tract -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (gastrointestinal tract, is called, neuropathy) -> gastrointestinal tract (4405ms) What is neuropathy? the person -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (the person, is suffering from, neuropathy) -> the person (4386ms) What is neuropathy? similar symptoms -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (similar symptoms, are, diabetic neuropathy) -> similar symptoms (4394ms) What is neuropathy? problems -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (problems, is, neuropathy) -> problems (4344ms) What is neuropathy? Patients -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (Patients, are also likely to have, coexisting neuropathy) -> Patients (4331ms) What is neuropathy? M.D. -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (M.D., is, Neuropathy) -> M.D. (4324ms) What is neuropathy? The model variables -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (The model variables, were used to classify, neuropathy) -> The model variables (4363ms) What is neuropathy? nerve compression -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (nerve compression, can help certain types of, neuropathy) -> nerve compression (4372ms) What is neuropathy? certain genes -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (certain genes, were more likely to develop, diabetic neuropathy) -> certain genes (4409ms) What is neuropathy? a nerve -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (a nerve, can lead to, neuropathy) -> a nerve (4409ms) What is neuropathy? Lipoic acid -0.222222222223 What is neuropathy? -> $x: ($x, be to, diabetic neuropathy) -> (Lipoic acid, has been used to treat, diabetic neuropathy) -> Lipoic acid (4377ms) What is neuropathy? the first symptom -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (the first symptom, is, diabetic neuropathy) -> the first symptom (4317ms) What is neuropathy? Lead exposure -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (Lead exposure, can cause, peripheral neuropathy) -> Lead exposure (4409ms) What is neuropathy? the hearing results -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (the hearing results, may be due to, an auditory neuropathy) -> the hearing results (4381ms) What is neuropathy? sarcoidosis -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (sarcoidosis, can cause, peripheral neuropathy) -> sarcoidosis (4368ms) What is neuropathy? The weak hind legs -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (The weak hind legs, is called, diabetic neuropathy) -> The weak hind legs (4310ms) What is neuropathy? anterior optic type -0.222222222223 What is neuropathy? -> $x: ($x, be be, neuropathy) -> (anterior optic type, were called, neuropathy) -> anterior optic type (4417ms) What is neuropathy? anti-nausea medications -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (anti-nausea medications, can increase, neuropathy) -> anti-nausea medications (4414ms) What is neuropathy? diabetics -0.222222222223 What is neuropathy? -> $x: ($x, be to, neuropathy) -> (diabetics, are attributed to, neuropathy) -> diabetics (4417ms) What is neuropathy? glutamine -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (glutamine, can minimize the severity of, neuropathy) -> glutamine (4412ms) What is neuropathy? whole grains -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (whole grains, can also help with, neuropathy) -> whole grains (4344ms) What is neuropathy? numbness or combinations -0.222222222223 What is neuropathy? -> $x: ($x, be be, diabetic neuropathy) -> (numbness or combinations, is called, diabetic neuropathy) -> numbness or combinations (4368ms) What is neuropathy? C-peptide -0.222222222223 What is neuropathy? -> $x: ($x, can, neuropathy) -> (C-peptide, can improve, neuropathy) -> C-peptide (4372ms) What is neuropathy? diagnosis -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (diagnosis, developed, peripheral neuropathy) -> diagnosis (4429ms) What is neuropathy? Drug -0.333333333333 What is neuropathy? -> $x: ($x, induce, neuropathy) -> (Drug, induced, neuropathy) -> Drug (4424ms) What is neuropathy? SCLC -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (SCLC, developed, neuropathies) -> SCLC (4430ms) What is neuropathy? CIPN ? chemotherapy -0.333333333333 What is neuropathy? -> $x: ($x, induce, neuropathy) -> (CIPN ? chemotherapy, induced, peripheral neuropathy) -> CIPN ? chemotherapy (4429ms) What is neuropathy? Chronic inorganic mercury -0.333333333333 What is neuropathy? -> $x: ($x, induce, neuropathy) -> (Chronic inorganic mercury, induced, peripheral neuropathy) -> Chronic inorganic mercury (4425ms) What is neuropathy? opiate ULTRAM -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (opiate ULTRAM, could develop, neuropathy) -> opiate ULTRAM (4432ms) What is neuropathy? heavy drinkers -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (heavy drinkers, develop, peripheral neuropathy) -> heavy drinkers (4425ms) What is neuropathy? Arsenic -0.333333333333 What is neuropathy? -> $x: ($x, induce, neuropathy) -> (Arsenic, induced, neuropathy) -> Arsenic (4425ms) What is neuropathy? a diabetic patient -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (a diabetic patient, may develop, peripheral neuropathy) -> a diabetic patient (4432ms) What is neuropathy? Hispanics -0.333333333333 What is neuropathy? -> $x: ($x, develop, diabetic neuropathy) -> (Hispanics, doubled the risk of developing, diabetic neuropathy) -> Hispanics (4432ms) What is neuropathy? A few diabetic patients -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (A few diabetic patients, develop, diabetic neuropathy) -> A few diabetic patients (4427ms) What is neuropathy? more than 12 months -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (more than 12 months, develop, peripheral neuropathy) -> more than 12 months (4431ms) What is neuropathy? nausea -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (nausea, developed, neuropathy) -> nausea (4427ms) What is neuropathy? Radiation -0.333333333333 What is neuropathy? -> $x: ($x, induce, neuropathy) -> (Radiation, induced, optic neuropathy) -> Radiation (4427ms) What is neuropathy? The drug -0.333333333333 What is neuropathy? -> $x: ($x, side, neuropathy) -> (The drug, has some bothersome side effects such as, neuropathy) -> The drug (4433ms) What is neuropathy? 18 patients -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (18 patients, had developed, neuropathy symptoms) -> 18 patients (4427ms) What is neuropathy? amputation Diabetics -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (amputation Diabetics, often develop, sensory neuropathy) -> amputation Diabetics (4429ms) What is neuropathy? prolonged periods -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (prolonged periods, developed, severe peripheral neuropathies) -> prolonged periods (4433ms) What is neuropathy? an 8th grade science teacher -0.333333333333 What is neuropathy? -> $x: ($x, develop, diabetic neuropathy) -> (an 8th grade science teacher, developed, diabetic neuropathy) -> an 8th grade science teacher (4433ms) What is neuropathy? Mitchell -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (Mitchell, develop, neuropathies) -> Mitchell (4427ms) What is neuropathy? progressive nerve disease -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (progressive nerve disease, had developed, autonomic neuropathy) -> progressive nerve disease (4424ms) What is neuropathy? endothelin-1 -0.333333333333 What is neuropathy? -> $x: ($x, induce, neuropathy) -> (endothelin-1, Induced, chronic optic neuropathy) -> endothelin-1 (4427ms) What is neuropathy? Chemo-therapy -0.333333333333 What is neuropathy? -> $x: ($x, induce, neuropathy) -> (Chemo-therapy, induced, peripheral neuropathy) -> Chemo-therapy (4429ms) What is neuropathy? a taxane -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (a taxane, develop, neuropathy) -> a taxane (4433ms) What is neuropathy? diabetic patients -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (diabetic patients, develop, peripheral neuropathy) -> diabetic patients (4432ms) What is neuropathy? 47 years -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (47 years, developed, a demyelinating neuropathy) -> 47 years (4430ms) What is neuropathy? Bicycling -0.333333333333 What is neuropathy? -> $x: ($x, induce, neuropathy) -> (Bicycling, induced, pudendal nerve pressure neuropathy) -> Bicycling (4430ms) What is neuropathy? Three patients -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (Three patients, developed, grade 2 neuropathy) -> Three patients (4425ms) What is neuropathy? non-deployed ones -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (non-deployed ones, develop, poly-neuropathy) -> non-deployed ones (4424ms) What is neuropathy? individuals -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (individuals, developed, sensory neuropathies) -> individuals (4429ms) What is neuropathy? Lindane -0.333333333333 What is neuropathy? -> $x: ($x, induce, neuropathy) -> (Lindane, induced, neuropathy) -> Lindane (4427ms) What is neuropathy? long-standing diabetes -0.333333333333 What is neuropathy? -> $x: ($x, develop, diabetic neuropathy) -> (long-standing diabetes, may develop, diabetic neuropathy) -> long-standing diabetes (4430ms) What is neuropathy? chemo -0.333333333333 What is neuropathy? -> $x: ($x, induce, neuropathy) -> (chemo, induced, neuropathy) -> chemo (4432ms) What is neuropathy? Certain chemotherapies -0.333333333333 What is neuropathy? -> $x: ($x, induce, neuropathy) -> (Certain chemotherapies, can induce, severe , painful neuropathy) -> Certain chemotherapies (4432ms) What is neuropathy? About half of people with diabetes -0.333333333333 What is neuropathy? -> $x: ($x, develop, diabetic neuropathy) -> (About half of people with diabetes, develop, diabetic neuropathy) -> About half of people with diabetes (4427ms) What is neuropathy? HIV -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (HIV, may increase the risk of developing, peripheral neuropathy) -> HIV (4430ms) What is neuropathy? Chronic inorganic -0.333333333333 What is neuropathy? -> $x: ($x, induce, neuropathy) -> (Chronic inorganic, induced, peripheral neuropathy) -> Chronic inorganic (4433ms) What is neuropathy? the course -0.333333333333 What is neuropathy? -> $x: ($x, comprise, neuropathy) -> (the course, comprise, a relapsing and asymmetrical neuropathy) -> the course (4430ms) What is neuropathy? Alcohol -0.333333333333 What is neuropathy? -> $x: ($x, induce, neuropathy) -> (Alcohol, induced, neuropathy) -> Alcohol (4429ms) What is neuropathy? enough regular sleep -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (enough regular sleep, can develop, ischemic optic neuropathy) -> enough regular sleep (4433ms) What is neuropathy? 78 -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (78, has developed, neuropathy) -> 78 (4432ms) What is neuropathy? Acute Pyridoxine -0.333333333333 What is neuropathy? -> $x: ($x, induce, neuropathy) -> (Acute Pyridoxine, induced, Sensory Neuropathy and Recovery) -> Acute Pyridoxine (4431ms) What is neuropathy? Occasionally people -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (Occasionally people, also develop this type of, neuropathy) -> Occasionally people (4430ms) What is neuropathy? subjects -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (subjects, developed, peripheral neuropathy) -> subjects (4432ms) What is neuropathy? more people -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (more people, are developing, peripheral neuropathy) -> more people (4430ms) What is neuropathy? hepatitis C patients -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (hepatitis C patients, will develop, peripheral neuropathy) -> hepatitis C patients (4430ms) What is neuropathy? different health and medical conditions -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (different health and medical conditions, develop, neuropathy) -> different health and medical conditions (4430ms) What is neuropathy? the male patient -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (the male patient, developed, a partial neuropathy) -> the male patient (4425ms) What is neuropathy? a patient -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (a patient, then developed, median neuropathy) -> a patient (4432ms) What is neuropathy? health and medical ailments -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (health and medical ailments, develop, neuropathy) -> health and medical ailments (4424ms) What is neuropathy? HIV patients -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (HIV patients, developed, peripheral neuropathy) -> HIV patients (4432ms) What is neuropathy? Myers -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (Myers, developed, neuropathy) -> Myers (4424ms) What is neuropathy? environmental toxins -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (environmental toxins, frequently develop, neuropathy) -> environmental toxins (4424ms) What is neuropathy? Jackson -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (Jackson, developed, peripheral neuropathy) -> Jackson (4425ms) What is neuropathy? lupus -0.333333333333 What is neuropathy? -> $x: ($x, develop, neuropathy) -> (lupus, develop, steroid-induced neuropathies) -> lupus (4432ms) What is the age of our solar system? 500 billion weeks 0.555555555555 What is the age of our solar system? -> $x: ($x, be age of, solar system) -> (500 billion weeks, is almost double the age of, the solar system) -> 500 billion weeks (699ms) What is the age of our solar system? 4.55 billion years 0.555555555555 What is the age of our solar system? -> $x: ($x, be age of, solar system) -> (4.55 billion years, is the approximate age of, the Solar System) -> 4.55 billion years (699ms) What is the age of our solar system? more than 4.5 billion years 0.555555555555 What is the age of our solar system? -> $x: ($x, be age of, solar system) -> (more than 4.5 billion years, is the age of, the Solar System) -> more than 4.5 billion years (699ms) What is the age of our solar system? a brand -0.333333333331 What is the age of our solar system? -> $x: ($x, be range of, solar system) -> (a brand, is exhibiting its ranges of, solar PV systems) -> a brand (699ms) What is the age of our solar system? Tileform UK -0.333333333331 What is the age of our solar system? -> $x: ($x, be range of, solar system) -> (Tileform UK, are now able to offer a range of, PV solar systems) -> Tileform UK (699ms) What is the age of our solar system? Pluto -0.444444444443 What is the age of our solar system? -> $x: ($x, be consider, solar system) -> (Pluto, was considered, the Solar System) -> Pluto (921ms) What is the age of our solar system? The district -0.444444444443 What is the age of our solar system? -> $x: ($x, be consider, solar system) -> (The district, is considering installing, solar systems) -> The district (921ms) What is the age of our solar system? Solar technology -0.444444444443 What is the age of our solar system? -> $x: ($x, be consider, solar system) -> (Solar technology, is now considered as, a solar thermal systems) -> Solar technology (921ms) What is the age of our solar system? the Moon -0.444444444443 What is the age of our solar system? -> $x: ($x, be consider, solar system) -> (the Moon, are considered to be, Inner Solar System Missions) -> the Moon (921ms) What is the age of our solar system? the Earth -0.444444444443 What is the age of our solar system? -> $x: ($x, be consider, solar system) -> (the Earth, was considered the center of, the Solar System) -> the Earth (921ms) What is the age of our solar system? Mars -0.444444444443 What is the age of our solar system? -> $x: ($x, be consider, solar system) -> (Mars, are also considered, Inner Solar System Missions) -> Mars (921ms) What is the age of our solar system? Japan -0.444444444443 What is the age of our solar system? -> $x: ($x, be consider, solar system) -> (Japan, is still considering, a giant solar energy system) -> Japan (921ms) What is the age of our solar system? ?These space balls -0.6666666666650001 What is the age of our solar system? -> $x: ($x, look like, meteorite) -> (?These space balls, look like, small meteorites) -> ?These space balls (1661ms) What is the age of our solar system? Furnace and smelter slag -0.6666666666650001 What is the age of our solar system? -> $x: ($x, look like, meteorite) -> (Furnace and smelter slag, often look like, meteorites) -> Furnace and smelter slag (1661ms) What is the age of our solar system? terrestrial rocks -0.6666666666650001 What is the age of our solar system? -> $x: ($x, look like, meteorite) -> (terrestrial rocks, look like, lunar meteorites) -> terrestrial rocks (1661ms) What is the age of our solar system? the ship -0.6666666666650001 What is the age of our solar system? -> $x: ($x, look like, meteorite) -> (the ship, looked like, a meteorite) -> the ship (1661ms) What is the age of our solar system? Gotenks -0.6666666666650001 What is the age of our solar system? -> $x: ($x, look like, meteorite) -> (Gotenks, looks like, a huge meteorite crater) -> Gotenks (1661ms) What is the age of our solar system? 13-year-olds -0.6666666666650001 What is the age of our solar system? -> $x: ($x, look like, meteorite) -> (13-year-olds, looked like, a meteorite streak) -> 13-year-olds (1661ms) What is the age of our solar system? the piece -0.6666666666650001 What is the age of our solar system? -> $x: ($x, look like, meteorite) -> (the piece, looks a little bit like, a meteorite) -> the piece (1661ms) What is the age of our solar system? Paul ? April 10 , 2012 @ 1:49 pm Pluto -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Paul ? April 10 , 2012 @ 1:49 pm Pluto, IS considered, a planet) -> Paul ? April 10 , 2012 @ 1:49 pm Pluto (2090ms) What is the age of our solar system? The largest asteroids -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (The largest asteroids, were considered, planets) -> The largest asteroids (2091ms) What is the age of our solar system? the subject -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (the subject, should be considered, a planet) -> the subject (2091ms) What is the age of our solar system? large enough -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (large enough, was once also considered, a ?planet ?) -> large enough (2083ms) What is the age of our solar system? the continuing debate -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (the continuing debate, should be considered, a planet) -> the continuing debate (2090ms) What is the age of our solar system? the moon -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (the moon, are often considered, planets) -> the moon (2086ms) What is the age of our solar system? Jupiter and Chiron -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Jupiter and Chiron, also are considered, masculine planets) -> Jupiter and Chiron (1661ms) What is the age of our solar system? the city -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (the city, is considered to be, the planet) -> the city (2088ms) What is the age of our solar system? universes Pluto -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (universes Pluto, is still considered, a planet) -> universes Pluto (2088ms) What is the age of our solar system? the sun -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (the sun, is considered, a planet) -> the sun (2088ms) What is the age of our solar system? Mars and Saturn -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Mars and Saturn, were considered, malevolent planets) -> Mars and Saturn (2090ms) What is the age of our solar system? a protosolar disc -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (a protosolar disc, are considered to be, planets) -> a protosolar disc (2093ms) What is the age of our solar system? Venus and Jupiter -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Venus and Jupiter, are considered, auspicious planets) -> Venus and Jupiter (2080ms) What is the age of our solar system? The Arctic -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (The Arctic, is considered to be, the planet) -> The Arctic (2083ms) What is the age of our solar system? Neptune -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Neptune, is considered, the planet) -> Neptune (2083ms) What is the age of our solar system? larger then mercury -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (larger then mercury, is considered as, a planet) -> larger then mercury (2080ms) What is the age of our solar system? even these largest asteroids -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (even these largest asteroids, are considered, minor planets) -> even these largest asteroids (2083ms) What is the age of our solar system? Uranus -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Uranus, is considered, the planet) -> Uranus (2090ms) What is the age of our solar system? Pluto , Ceres and Eris -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Pluto , Ceres and Eris, are considered, dwarf planets) -> Pluto , Ceres and Eris (2088ms) What is the age of our solar system? the main-belt asteroids -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (the main-belt asteroids, were considered to be, planets) -> the main-belt asteroids (2090ms) What is the age of our solar system? The two luminaries -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (The two luminaries, are considered, the personal planets) -> The two luminaries (2080ms) What is the age of our solar system? the Sun -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (the Sun, are too small to be considered, planets) -> the Sun (2083ms) What is the age of our solar system? Brown dwarfs -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Brown dwarfs, are too massive to be considered, planets) -> Brown dwarfs (2091ms) What is the age of our solar system? Cloud Computing -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Cloud Computing, be considered consequential on, a planet) -> Cloud Computing (2088ms) What is the age of our solar system? the tropical forests -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (the tropical forests, are often considered, the planet?s lungs) -> the tropical forests (2090ms) What is the age of our solar system? Ray Ozzie -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Ray Ozzie, is considered one of, the planet) -> Ray Ozzie (2080ms) What is the age of our solar system? the asteroid Ceres -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (the asteroid Ceres, was considered, a planet) -> the asteroid Ceres (2083ms) What is the age of our solar system? Xena -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Xena, might be considered, a planet) -> Xena (2088ms) What is the age of our solar system? Venus -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Venus, is considered to be, the planet) -> Venus (2093ms) What is the age of our solar system? The sun and moon -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (The sun and moon, are considered as, planets) -> The sun and moon (2092ms) What is the age of our solar system? Rahu Ketu -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Rahu Ketu, are considered, shadow planets) -> Rahu Ketu (2086ms) What is the age of our solar system? a debate -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (a debate, should be considered, a planet) -> a debate (2080ms) What is the age of our solar system? The TPO tile -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (The TPO tile, is considered to be, a planet) -> The TPO tile (2083ms) What is the age of our solar system? Saturn -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Saturn, was considered, the planet) -> Saturn (2086ms) What is the age of our solar system? the solar system -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (the solar system, was considered to have, eight planets) -> the solar system (2088ms) What is the age of our solar system? Cristal Mountain National Park -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Cristal Mountain National Park, is considered one of, the planet) -> Cristal Mountain National Park (2086ms) What is the age of our solar system? Ceres , Pluto and Eris -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Ceres , Pluto and Eris, are considered, dwarf planets) -> Ceres , Pluto and Eris (2086ms) What is the age of our solar system? Ireland -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Ireland, is considered to have, this Planet?s) -> Ireland (2086ms) What is the age of our solar system? Ceres -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Ceres, is considered, a dwarf planet) -> Ceres (2088ms) What is the age of our solar system? the ideal compensation -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (the ideal compensation, be sure to consider, our planet) -> the ideal compensation (2083ms) What is the age of our solar system? Ceres and Vesta -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Ceres and Vesta, were considered, planets) -> Ceres and Vesta (2083ms) What is the age of our solar system? the Sun and Moon -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (the Sun and Moon, are considered, planets) -> the Sun and Moon (2088ms) What is the age of our solar system? Nike -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Nike, is considered, the planet leading supplier) -> Nike (2091ms) What is the age of our solar system? Jupiter -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Jupiter, is considered, a transpersonal , societal planet) -> Jupiter (2091ms) What is the age of our solar system? Mars and Ketu -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Mars and Ketu, are considered, malefic planets) -> Mars and Ketu (1661ms) What is the age of our solar system? three -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (three, are considered, dwarf planets) -> three (2090ms) What is the age of our solar system? mercury -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (mercury, is considered, an inauspicious planet) -> mercury (2088ms) What is the age of our solar system? a few days -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (a few days, was considered, a planet) -> a few days (2080ms) What is the age of our solar system? Sun-like stars -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Sun-like stars, are considered good candidates for, planets) -> Sun-like stars (2083ms) What is the age of our solar system? Earth -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Earth, is considered, a young planet) -> Earth (2080ms) What is the age of our solar system? Eris -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Eris, is considered, a dwarf planet) -> Eris (2086ms) What is the age of our solar system? the 18th and 19th centuries Chiron -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (the 18th and 19th centuries Chiron, was considered, a planet) -> the 18th and 19th centuries Chiron (2093ms) What is the age of our solar system? the King -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (the King, was considered to be, the planet) -> the King (2080ms) What is the age of our solar system? Moon -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (Moon, is considered, the quickest relocating planet) -> Moon (2093ms) What is the age of our solar system? The Congo Basin Forest -0.7777777777770001 What is the age of our solar system? -> $x: ($x, be consider, planet) -> (The Congo Basin Forest, is considered, the planet?s) -> The Congo Basin Forest (2083ms) What is the age of our solar system? the atom -0.888888888886 What is the age of our solar system? -> $x: ($x, look like, solar system) -> (the atom, looked like, a solar system) -> the atom (2094ms) What is the age of our solar system? the device -0.888888888886 What is the age of our solar system? -> $x: ($x, look like, solar system) -> (the device, looks like, a solar system) -> the device (2093ms) What is the age of our solar system? atoms -0.888888888886 What is the age of our solar system? -> $x: ($x, look like, solar system) -> (atoms, look a lot like, our solar system) -> atoms (2093ms) What is the age of our solar system? The map -0.888888888886 What is the age of our solar system? -> $x: ($x, look like, solar system) -> (The map, looks like, a solar system) -> The map (2093ms) What is the age of our solar system? The atom -0.888888888886 What is the age of our solar system? -> $x: ($x, look like, solar system) -> (The atom, looks like, a miniature solar system) -> The atom (2093ms) What is the age of our solar system? Orion -0.888888888886 What is the age of our solar system? -> $x: ($x, look like, solar system) -> (Orion, will look nothing like, our own solar system) -> Orion (2093ms) What is the age of our solar system? an atom -0.888888888886 What is the age of our solar system? -> $x: ($x, look like, solar system) -> (an atom, looks a bit like, our solar system) -> an atom (2094ms) What is the age of our solar system? existence -0.888888888886 What is the age of our solar system? -> $x: ($x, look like, solar system) -> (existence, look like in, the Solar System) -> existence (2093ms) What is the age of our solar system? 50 % -0.888888888888 What is the age of our solar system? -> $x: ($x, die from, planet) -> (50 %, die from, glaciation 545 Planets) -> 50 % (2094ms) What is the age of our solar system? the discs -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the discs, looked like, the outer planets Uranus and Neptune) -> the discs (2094ms) What is the age of our solar system? the wake -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the wake, looked like, a planet-size jellyfish) -> the wake (2099ms) What is the age of our solar system? the symbol -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the symbol, looked like, a planet) -> the symbol (2094ms) What is the age of our solar system? a little green alien -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (a little green alien, looks like, the planet) -> a little green alien (2094ms) What is the age of our solar system? Enceladus -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (Enceladus, looks like, a planet) -> Enceladus (2096ms) What is the age of our solar system? The pictures -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (The pictures, look like, another planet) -> The pictures (2098ms) What is the age of our solar system? each planet -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (each planet, looks like, the planet) -> each planet (2094ms) What is the age of our solar system? deviantART Nebula and gas/dust -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (deviantART Nebula and gas/dust, look like, planet eclipse) -> deviantART Nebula and gas/dust (2094ms) What is the age of our solar system? the night sky -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the night sky, look like from, a planet) -> the night sky (2097ms) What is the age of our solar system? the center -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the center, looked like, a planet) -> the center (2096ms) What is the age of our solar system? the picture -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the picture, looked like, a frozen alien planet) -> the picture (2098ms) What is the age of our solar system? the Jupiter -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the Jupiter, looks exactly like, the Planet) -> the Jupiter (2094ms) What is the age of our solar system? the light -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the light, looked like, a planet) -> the light (2098ms) What is the age of our solar system? the fella -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the fella, looks like, a planet-side 50) -> the fella (2098ms) What is the age of our solar system? Wales -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (Wales, look enough like, alien planets) -> Wales (2099ms) What is the age of our solar system? images -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (images, looks like, a planet) -> images (2099ms) What is the age of our solar system? amazing good job -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (amazing good job, Looks like, a rather new planet) -> amazing good job (2097ms) What is the age of our solar system? times Earth -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (times Earth, looks like, a completely alien planet) -> times Earth (2097ms) What is the age of our solar system? United States -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (United States, Looks like, another planet) -> United States (2096ms) What is the age of our solar system? the model of each planet -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the model of each planet, looks like, the planet) -> the model of each planet (2097ms) What is the age of our solar system? a dull nebula -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (a dull nebula, looks like, a fading planet) -> a dull nebula (2096ms) What is the age of our solar system? a mural -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (a mural, looked like, a very florid alien planet) -> a mural (2096ms) What is the age of our solar system? landscapes -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (landscapes, look like, our planet) -> landscapes (2096ms) What is the age of our solar system? God -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (God, looks like on, planet earth) -> God (2096ms) What is the age of our solar system? the bigger coloured circles -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the bigger coloured circles, look like, planets) -> the bigger coloured circles (2097ms) What is the age of our solar system? bright shades -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (bright shades, looks a bit like, the planet) -> bright shades (2098ms) What is the age of our solar system? A framework -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (A framework, seems to look like, a planet) -> A framework (2099ms) What is the age of our solar system? the UFO -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the UFO, looks like, a planet) -> the UFO (2097ms) What is the age of our solar system? astronomers -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (astronomers, looks like, a planet) -> astronomers (2096ms) What is the age of our solar system? plants -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (plants, may look like on, different planets) -> plants (2099ms) What is the age of our solar system? the crater -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the crater, looks like, another planet) -> the crater (2099ms) What is the age of our solar system? Pandora -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (Pandora, looks like, a supergiant planet) -> Pandora (2098ms) What is the age of our solar system? the landscape -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the landscape, looked like, another planet) -> the landscape (2099ms) What is the age of our solar system? Loading comments -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (Loading comments, looks like, a whole different planet) -> Loading comments (2097ms) What is the age of our solar system? a stock image -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (a stock image, look like, a moon or planet) -> a stock image (2094ms) What is the age of our solar system? 20 May 2011 -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (20 May 2011, Just looks like, another planet) -> 20 May 2011 (2099ms) What is the age of our solar system? a dark ring -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (a dark ring, looked like, the planet) -> a dark ring (2098ms) What is the age of our solar system? semi-stereographic projection -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (semi-stereographic projection, looks like, a small planet) -> semi-stereographic projection (2098ms) What is the age of our solar system? The city -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (The city, looks like, the Ice Planet Hoth) -> The city (2099ms) What is the age of our solar system? The rocks and cliffs -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (The rocks and cliffs, look like, an alien planet) -> The rocks and cliffs (2097ms) What is the age of our solar system? 12 semi-precious gemstones -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (12 semi-precious gemstones, look like, the planets) -> 12 semi-precious gemstones (2094ms) What is the age of our solar system? the tundra -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the tundra, looked like, the planet) -> the tundra (2099ms) What is the age of our solar system? a red circle -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (a red circle, looks like, a red planet) -> a red circle (2099ms) What is the age of our solar system? a place -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (a place, looked like, another planet) -> a place (2098ms) What is the age of our solar system? comments -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (comments, looks like, home planet chunter) -> comments (2099ms) What is the age of our solar system? The semiprecious gemstones -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (The semiprecious gemstones, look like, the planets) -> The semiprecious gemstones (2099ms) What is the age of our solar system? the pomelo -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the pomelo, looks like, a planet) -> the pomelo (2096ms) What is the age of our solar system? little more -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (little more, looked like, another planet) -> little more (2098ms) What is the age of our solar system? the middle -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the middle, looked like, a star or planet) -> the middle (2099ms) What is the age of our solar system? an idea -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (an idea, has looked like on, the planet) -> an idea (2094ms) What is the age of our solar system? orange jasper rounds -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (orange jasper rounds, looks like, the planet Jupiter) -> orange jasper rounds (2098ms) What is the age of our solar system? at least a place -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (at least a place, looks like, another planet) -> at least a place (2094ms) What is the age of our solar system? the periods -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the periods, looked like, little ringed planets) -> the periods (2099ms) What is the age of our solar system? the unique valleys -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the unique valleys, look like, another planet) -> the unique valleys (2099ms) What is the age of our solar system? the land -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the land, looks like, another planet) -> the land (2099ms) What is the age of our solar system? Helen Bonham Carter -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (Helen Bonham Carter, look like in, Planet) -> Helen Bonham Carter (2097ms) What is the age of our solar system? Cydonia -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (Cydonia, looks like, a Planet) -> Cydonia (2096ms) What is the age of our solar system? Steven Tyler -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (Steven Tyler, looks like, he is from another planet) -> Steven Tyler (2098ms) What is the age of our solar system? deviantART Details Submitted -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (deviantART Details Submitted, Looks like, a planet) -> deviantART Details Submitted (2096ms) What is the age of our solar system? one boy -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (one boy, look like on, another planet) -> one boy (2099ms) What is the age of our solar system? sky -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (sky, looked like, white planets) -> sky (2099ms) What is the age of our solar system? the coconut -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the coconut, looked like, a planet) -> the coconut (2097ms) What is the age of our solar system? the horizon -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the horizon, look like, a planet) -> the horizon (2099ms) What is the age of our solar system? The place -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (The place, looks like, a different planet) -> The place (2099ms) What is the age of our solar system? a lovely picture -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (a lovely picture, might look like on, that planet) -> a lovely picture (2097ms) What is the age of our solar system? the eyes -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the eyes, look like, Planets) -> the eyes (2096ms) What is the age of our solar system? the word -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the word, looks like, another planet) -> the word (2097ms) What is the age of our solar system? the mouse -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the mouse, looks like, a cratered planet) -> the mouse (2096ms) What is the age of our solar system? the goal -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the goal, might look like on, another planet) -> the goal (2098ms) What is the age of our solar system? deviantART -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (deviantART, kinda looks like, planets) -> deviantART (2097ms) What is the age of our solar system? Eleven more gemstone beads -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (Eleven more gemstone beads, actually look like, the Planets) -> Eleven more gemstone beads (2099ms) What is the age of our solar system? john -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (john, looks like, LittleBigPlanet) -> john (2097ms) What is the age of our solar system? the symptoms and life situations -1.22222222222 What is the age of our solar system? -> $x: ($x, look like, planet) -> (the symptoms and life situations, look like on, Planet Bipolar) -> the symptoms and life situations (2096ms) When was CNN's first broadcast? The interview -1.333333333329 When was CNN's first broadcast? -> $x: ($x, first broadcast, cnn) -> (The interview, was first broadcast on, CNN) -> The interview (511ms) When was CNN's first broadcast? Selma -1.333333333329 When was CNN's first broadcast? -> $x: ($x, first broadcast, cnn) -> (Selma, was first broadcast globally on, CNN) -> Selma (511ms) What movies did Judi Dench play in? Rodgers and Hart?s 1.0000056338554941E-12 What movies did Judi Dench play in? -> $x: (judi dench, direct, $x) -> (Judi Dench, directed a production of, Rodgers and Hart?s) -> Rodgers and Hart?s (948ms) What movies did Judi Dench play in? Look Back in Anger 1.0000056338554941E-12 What movies did Judi Dench play in? -> $x: (judi dench, direct, $x) -> (Judi Dench, Films directed, Look Back in Anger) -> Look Back in Anger (948ms) What movies did Judi Dench play in? The Boys 1.0000056338554941E-12 What movies did Judi Dench play in? -> $x: (judi dench, direct, $x) -> (1990 Judi Dench, directs, The Boys) -> The Boys (948ms) What movies did Judi Dench play in? Cary Fukunaga 1.0000056338554941E-12 What movies did Judi Dench play in? -> $x: (judi dench, direct, $x) -> (Judi Dench, is directed by, Cary Fukunaga) -> Cary Fukunaga (948ms) What movies did Judi Dench play in? 2010-05-09 -0.11111111111 What movies did Judi Dench play in? -> $x: (judi dench, date, $x) -> (Judi Dench, Original air date, 2010-05-09) -> 2010-05-09 (1079ms) What movies did Judi Dench play in? 2003-11-15 -0.11111111111 What movies did Judi Dench play in? -> $x: (judi dench, date, $x) -> (Judi Dench, Peter Kay, Charlotte Uhlenbroek, Will Young, Original air date, 2003-11-15) -> 2003-11-15 (948ms) What movies did Judi Dench play in? only eight minutes -0.11111111111 What movies did Judi Dench play in? -> $x: (judi dench, win oscar for, $x) -> (Dame Judi Dench, won an Oscar for, only eight minutes) -> only eight minutes (1079ms) What movies did Judi Dench play in? 2005 -0.11111111111 What movies did Judi Dench play in? -> $x: (judi dench, date, $x) -> (Judi Dench : scenes from my life, Publication date, 2005) -> 2005 (949ms) What movies did Judi Dench play in? 1934-12-09 -0.11111111111 What movies did Judi Dench play in? -> $x: (judi dench, date, $x) -> (Judi Dench, Date of birth, 1934-12-09) -> 1934-12-09 (948ms) What movies did Judi Dench play in? 2012-10-26 -0.11111111111 What movies did Judi Dench play in? -> $x: (judi dench, date, $x) -> (Daniel Craig, Judi Dench and Javier Bardem, Original air date, 2012-10-26) -> 2012-10-26 (1079ms) What movies did Judi Dench play in? 1998-11-26 -0.11111111111 What movies did Judi Dench play in? -> $x: (judi dench, date, $x) -> (Judi Dench, Original air date, 1998-11-26) -> 1998-11-26 (1079ms) What movies did Judi Dench play in? 1998 -0.11111111111 What movies did Judi Dench play in? -> $x: (judi dench, date, $x) -> (Judi Dench : with a crack in her voice : the biography, Publication date, 1998) -> 1998 (1079ms) What movies did Judi Dench play in? 2009-12-18 -0.11111111111 What movies did Judi Dench play in? -> $x: (judi dench, date, $x) -> (Judi Dench, Michelle Rodriguez, Original air date, 2009-12-18) -> 2009-12-18 (949ms) What movies did Judi Dench play in? 2002-03-09 -0.11111111111 What movies did Judi Dench play in? -> $x: (judi dench, date, $x) -> (Rory Bremner, Judi Dench, Kevin Spacey, The Lighthouse Family, Original air date, 2002-03-09) -> 2002-03-09 (1091ms) What movies did Judi Dench play in? 2012-02-10 -0.11111111111 What movies did Judi Dench play in? -> $x: (judi dench, date, $x) -> (Dame Judi Dench, Dev Patel and Will Young, Original air date, 2012-02-10) -> 2012-02-10 (1079ms) What movies did Judi Dench play in? 1995-10-29 -0.11111111111 What movies did Judi Dench play in? -> $x: (judi dench, date, $x) -> (Dame Judi Dench, Original air date, 1995-10-29) -> 1995-10-29 (1079ms) What movies did Judi Dench play in? 2013-03-01 -0.11111111111 What movies did Judi Dench play in? -> $x: (judi dench, date, $x) -> (James Franco, Mila Kunis, Jude Law, Judi Dench, Olly Murs, Original air date, 2013-03-01) -> 2013-03-01 (1091ms) What movies did Judi Dench play in? 1978-10-18 -0.11111111111 What movies did Judi Dench play in? -> $x: (judi dench, date, $x) -> (Special with Judi Dench, Leonard Sachs, Donald Sinden, Original air date, 1978-10-18) -> 1978-10-18 (1079ms) What movies did Judi Dench play in? 2009-12-16 -0.11111111111 What movies did Judi Dench play in? -> $x: (judi dench, date, $x) -> (Hugh Grant, Judi Dench, guest co-host Anderson Cooper, Original air date, 2009-12-16) -> 2009-12-16 (1079ms) What movies did Judi Dench play in? the movie -0.222222222221 What movies did Judi Dench play in? -> $x: (judi dench, play in, $x) -> (( Judi Dench, played her so tenderly in, the movie) -> the movie (1091ms) What is the oldest sports trophy? the next best -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the next best, will play for, third place plate trophy) -> the next best (2116ms) What is the oldest sports trophy? Cote d'Ivoire -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Cote d'Ivoire, will be playing for, the trophies and awards) -> Cote d'Ivoire (2116ms) What is the oldest sports trophy? The victor -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (The victor, plays for, the trophy) -> The victor (2115ms) What is the oldest sports trophy? the young musician -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the young musician, started to play for, trophies) -> the young musician (2115ms) What is the oldest sports trophy? Slow Club 0 -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Slow Club 0, plays, Trophy Room) -> Slow Club 0 (2117ms) What is the oldest sports trophy? The remaining teams -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (The remaining teams, play off for, the Amateur League Trophy) -> The remaining teams (2111ms) What is the oldest sports trophy? the two teams -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the two teams, played for, the KA Auty trophy) -> the two teams (2117ms) What is the oldest sports trophy? Newport -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Newport, play in, the FA Trophy final) -> Newport (2113ms) What is the oldest sports trophy? Goblin Spelunkers -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Goblin Spelunkers, opted to play, Trophy Hunter) -> Goblin Spelunkers (2111ms) What is the oldest sports trophy? Sand Grain Studios -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Sand Grain Studios, Game Versions Developed, Cabela's North American Trophy Bucks) -> Sand Grain Studios (2111ms) What is the oldest sports trophy? Ganguly -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Ganguly, has played, two Ranji Trophy finals) -> Ganguly (2111ms) What is the oldest sports trophy? The teams -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (The teams, are playing for, the trophy) -> The teams (2117ms) What is the oldest sports trophy? Juniors -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Juniors, will play for, trophies) -> Juniors (2113ms) What is the oldest sports trophy? the Steelers -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the Steelers, will play for, the NFL trophy) -> the Steelers (2110ms) What is the oldest sports trophy? 3 players -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (3 players, had played, Ranji Trophy cricket) -> 3 players (2110ms) What is the oldest sports trophy? Pujara -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Pujara, played, four Ranji Trophy) -> Pujara (2115ms) What is the oldest sports trophy? Badgers -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Badgers, play, two trophy games) -> Badgers (2115ms) What is the oldest sports trophy? the regular season -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the regular season, will play for, the final trophy) -> the regular season (2116ms) What is the oldest sports trophy? The two teams -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (The two teams, play for, the Wilford Moore Trophy) -> The two teams (2117ms) What is the oldest sports trophy? The children -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (The children, will play for, trophies) -> The children (2113ms) What is the oldest sports trophy? ? Fort Peck -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (? Fort Peck, has developed into, a trophy walleye fishery) -> ? Fort Peck (2115ms) What is the oldest sports trophy? Muhammad Rizwan -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Muhammad Rizwan, played well in, Qaid e Azam trophy) -> Muhammad Rizwan (2117ms) What is the oldest sports trophy? the best Jose -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the best Jose, has played since, his Hart Trophy) -> the best Jose (2114ms) What is the oldest sports trophy? Israel -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Israel, began developing, the Trophy) -> Israel (2114ms) What is the oldest sports trophy? 1946 -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (1946, was played for, the Barclay Trophy) -> 1946 (2114ms) What is the oldest sports trophy? An LXR affiliate -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (An LXR affiliate, developed, the trophy building) -> An LXR affiliate (2110ms) What is the oldest sports trophy? the Sox and Cubs -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the Sox and Cubs, are playing for, a trophy) -> the Sox and Cubs (1803ms) What is the oldest sports trophy? Terrelle Pryor -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Terrelle Pryor, played like, a Heisman Trophy candidate) -> Terrelle Pryor (2117ms) What is the oldest sports trophy? four games -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (four games, play for, a trophy) -> four games (2116ms) What is the oldest sports trophy? VfL Gummersbach -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (VfL Gummersbach, will play for, the CL trophy) -> VfL Gummersbach (2110ms) What is the oldest sports trophy? Every player -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Every player, plays for, trophies) -> Every player (2114ms) What is the oldest sports trophy? the team -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the team, played in, the Berlusconi Trophy) -> the team (2110ms) What is the oldest sports trophy? the boss -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the boss, play, their much-delayed FA Trophy clash) -> the boss (1836ms) What is the oldest sports trophy? a cricketer -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (a cricketer, played, Ranji Trophy) -> a cricketer (1803ms) What is the oldest sports trophy? Godfrey Poku -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Godfrey Poku, played in, the Trophy) -> Godfrey Poku (2069ms) What is the oldest sports trophy? Joe Maddon -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Joe Maddon, play chess for, the trophy) -> Joe Maddon (2115ms) What is the oldest sports trophy? Murray -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, heisman) -> (Murray, might play his way into, a Heisman Trophy) -> Murray (2113ms) What is the oldest sports trophy? Milford Haven Golf Club -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Milford Haven Golf Club, are allowed to play for, the trophy) -> Milford Haven Golf Club (2069ms) What is the oldest sports trophy? Activision -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Activision, Game Versions Developed, Cabela's GrandSlam Hunting: 2004 Trophies) -> Activision (2110ms) What is the oldest sports trophy? Maple Leaf Gardens -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Maple Leaf Gardens, played host to, both trophy presentations) -> Maple Leaf Gardens (2110ms) What is the oldest sports trophy? Communist officials -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Communist officials, developed their own case of, ?trophy mania) -> Communist officials (2114ms) What is the oldest sports trophy? Players -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Players, will be playing with, trophies) -> Players (2111ms) What is the oldest sports trophy? a pro-style offense -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, heisman trophy) -> (a pro-style offense, helped develop, four Heisman Trophy winners) -> a pro-style offense (2116ms) What is the oldest sports trophy? Not everyone -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Not everyone, to play for, the big trophy) -> Not everyone (2069ms) What is the oldest sports trophy? QB Russell Wilson -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, heisman) -> (QB Russell Wilson, can make a play for, the Heisman) -> QB Russell Wilson (2111ms) What is the oldest sports trophy? Lennie Moore -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Lennie Moore, Game Versions Developed, Rocky Mountain Trophy Hunter) -> Lennie Moore (2069ms) What is the oldest sports trophy? Singapore -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Singapore, played in, the first ACC Trophy) -> Singapore (2111ms) What is the oldest sports trophy? Sunstorm Interactive -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Sunstorm Interactive, Games Developed, Rocky Mountain Trophy Hunter) -> Sunstorm Interactive (2117ms) What is the oldest sports trophy? more details -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (more details, played further roles beyond, trophies) -> more details (2110ms) What is the oldest sports trophy? the teams -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the teams, play tonsil hockey with, the trophy) -> the teams (2117ms) What is the oldest sports trophy? Kyle Orton -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, heisman) -> (Kyle Orton, made a strong play for, the Heisman) -> Kyle Orton (1836ms) What is the oldest sports trophy? Polyphony Digital -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Polyphony Digital, Game Versions Developed, Tourist Trophy) -> Polyphony Digital (2115ms) What is the oldest sports trophy? Bugbear Entertainment -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Bugbear Entertainment, Game Versions Developed, Rally Trophy) -> Bugbear Entertainment (2116ms) What is the oldest sports trophy? Keith -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Keith, played like, a Norris Trophy winner) -> Keith (2113ms) What is the oldest sports trophy? Neko Entertainment -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Neko Entertainment, Game Versions Developed, Mouse Trophy) -> Neko Entertainment (2114ms) What is the oldest sports trophy? more than 250 golfers -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (more than 250 golfers, play for, the Eden Trophy) -> more than 250 golfers (2116ms) What is the oldest sports trophy? 20 -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (20, played outstandingly at, the Samsung Champions Trophy) -> 20 (2117ms) What is the oldest sports trophy? McCoy -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, heisman) -> (McCoy, play well?, Heisman voters) -> McCoy (2110ms) What is the oldest sports trophy? the Earth -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the Earth, play, a major trophy) -> the Earth (2113ms) What is the oldest sports trophy? Everybody -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Everybody, plays football to, win medals and trophies) -> Everybody (2114ms) What is the oldest sports trophy? Milan , Inter and Juve -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Milan , Inter and Juve, are playing, the TIM Trophy) -> Milan , Inter and Juve (2116ms) What is the oldest sports trophy? January Zagrab -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (January Zagrab, plays host to, the Snow queen trophy) -> January Zagrab (2116ms) What is the oldest sports trophy? Simon -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Simon, played for, a trophy) -> Simon (1803ms) What is the oldest sports trophy? the field -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the field, will be playing for, the ?Dave Sievwright Trophy?) -> the field (1836ms) What is the oldest sports trophy? TJ -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, heisman) -> (TJ, was playing on, Heisman level) -> TJ (2113ms) What is the oldest sports trophy? a high school team -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, heisman trophy) -> (a high school team, plays like, a Heisman Trophy winner) -> a high school team (2117ms) What is the oldest sports trophy? Wilkinson Blades -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Wilkinson Blades, also play at, Trophy?s 3pm) -> Wilkinson Blades (2115ms) What is the oldest sports trophy? the two -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the two, have played each other for, the trophy) -> the two (2110ms) What is the oldest sports trophy? Henson -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, heisman) -> (Henson, plays, Heisman Trophy winner Jim Brown) -> Henson (2113ms) What is the oldest sports trophy? The top four players -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (The top four players, played for, a tournament trophy) -> The top four players (2117ms) What is the oldest sports trophy? The Idol Toss -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (The Idol Toss, plays a bit like, the Trophy Lottery) -> The Idol Toss (2117ms) What is the oldest sports trophy? the advice -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the advice, play this game with, the more challenging trophies) -> the advice (2069ms) What is the oldest sports trophy? The actress -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (The actress, plays, a trophy wife) -> The actress (2110ms) What is the oldest sports trophy? bowlers -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (bowlers, play for, trophies) -> bowlers (2114ms) What is the oldest sports trophy? cricketers -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (cricketers, first played, Ranji Trophy) -> cricketers (1837ms) What is the oldest sports trophy? the two top teams -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the two top teams, play off for, the trophy) -> the two top teams (2116ms) What is the oldest sports trophy? teams -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (teams, play each other for, the Championship trophy) -> teams (2114ms) What is the oldest sports trophy? the Council -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the Council, played for, this prestigious trophy) -> the Council (2110ms) What is the oldest sports trophy? 250 golfers -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (250 golfers, play for, the Eden trophy) -> 250 golfers (2111ms) What is the oldest sports trophy? 1.5 Determine the teams -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (1.5 Determine the teams, shall play on, trophy weekends) -> 1.5 Determine the teams (2114ms) What is the oldest sports trophy? the Rafael -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (the Rafael, developed, Trophy APS.) -> the Rafael (2069ms) What is the oldest sports trophy? Krisalis Software -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Krisalis Software, Game Versions Developed, World Trophy Soccer) -> Krisalis Software (2111ms) What is the oldest sports trophy? Chippenham -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Chippenham, are now playing in, the Trophy) -> Chippenham (1803ms) What is the oldest sports trophy? 2 players -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (2 players, to play, Trophy) -> 2 players (2111ms) What is the oldest sports trophy? Magic Wand Productions -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Magic Wand Productions, Games Developed, Cabela's Big Game Hunter 2006 Trophy Season) -> Magic Wand Productions (2117ms) What is the oldest sports trophy? Appaloosa Interactive -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Appaloosa Interactive, Game Versions Developed, Rick Davis's World Trophy Soccer) -> Appaloosa Interactive (2116ms) What is the oldest sports trophy? the last salsa -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the last salsa, was played to win, the much coveted trophy) -> the last salsa (1837ms) What is the oldest sports trophy? a break -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (a break, played in, the Deodhar Trophy) -> a break (1803ms) What is the oldest sports trophy? XV -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (XV, played for, four trophies) -> XV (2110ms) What is the oldest sports trophy? a few high-profile athletes -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (a few high-profile athletes, play for, our trophies) -> a few high-profile athletes (2069ms) What is the oldest sports trophy? Sydney and Essendon -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Sydney and Essendon, will play for, the Marn Grook trophy) -> Sydney and Essendon (2117ms) What is the oldest sports trophy? division 1 teams -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (division 1 teams, would play for, a trophy) -> division 1 teams (1802ms) What is the oldest sports trophy? 2008 -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (2008, will be play for, the Lombardi Trophy) -> 2008 (2113ms) What is the oldest sports trophy? the two NFL conferences -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the two NFL conferences, play for, the Vince Lombardi Trophy) -> the two NFL conferences (2115ms) What is the oldest sports trophy? Gray -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Gray, played, his trophy wife) -> Gray (2116ms) What is the oldest sports trophy? a club -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (a club, should be playing for, trophies) -> a club (2114ms) What is the oldest sports trophy? a game -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (a game, played for, a trophy) -> a game (2116ms) What is the oldest sports trophy? Kylotonn -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Kylotonn, Game Versions Developed, Hunter's Trophy) -> Kylotonn (2115ms) What is the oldest sports trophy? McEntire -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (McEntire, will play host at, the annual trophy show) -> McEntire (1803ms) What is the oldest sports trophy? BASC -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (BASC, played a limited role in, trophy measurement) -> BASC (2115ms) What is the oldest sports trophy? Coolidge -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Coolidge, plays, a gold-digging trophy wife) -> Coolidge (2111ms) What is the oldest sports trophy? Lake Fork -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Lake Fork, has developed into, the Premier Trophy Bass Lake) -> Lake Fork (2110ms) What is the oldest sports trophy? lures -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (lures, have been developed for, Hunting Trophy Deer) -> lures (2117ms) What is the oldest sports trophy? MachineWorks Northwest -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (MachineWorks Northwest, Game Versions Developed, 3D Hunting Trophy Whitetail Championship 2009) -> MachineWorks Northwest (2110ms) What is the oldest sports trophy? Mr. Wirth -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (Mr. Wirth, developed, numerous trophy properties) -> Mr. Wirth (2114ms) What is the oldest sports trophy? FUN Labs -0.555555555564 What is the oldest sports trophy? -> $x: ($x, develop, trophy) -> (FUN Labs, Game Versions Developed, Cabela's Trophy Bucks) -> FUN Labs (2115ms) What is the oldest sports trophy? Railways -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Railways, have played, their Ranji Trophy) -> Railways (1803ms) What is the oldest sports trophy? the Big 10 feature -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (the Big 10 feature, are played for, trophies) -> the Big 10 feature (2113ms) What is the oldest sports trophy? The golfers -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (The golfers, can play for, trophies) -> The golfers (2116ms) What is the oldest sports trophy? eight teams -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (eight teams, will play for, the trophy) -> eight teams (2116ms) What is the oldest sports trophy? Bergkamp?s input -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Bergkamp?s input, played a strong part in winning, trophies) -> Bergkamp?s input (2114ms) What is the oldest sports trophy? football and Bangladesh -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (football and Bangladesh, were only playing, ICC Trophy) -> football and Bangladesh (2113ms) What is the oldest sports trophy? Robert Griffin -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, heisman) -> (Robert Griffin, is still playing for, the Heisman) -> Robert Griffin (2116ms) What is the oldest sports trophy? Teams -0.555555555564 What is the oldest sports trophy? -> $x: ($x, play, trophy) -> (Teams, play for, trophies) -> Teams (2113ms) Who are professional female boxers? Tropical Storm Risk -0.11111111112399996 Who are professional female boxers? -> $x: ($x, outlook, hurricane) -> (Tropical Storm Risk, raised its outlook for, hurricane activity) -> Tropical Storm Risk (666ms) Who are professional female boxers? Rasmussen -0.11111111112600003 Who are professional female boxers? -> $x: ($x, outlook, boxer) -> (Rasmussen, had a pessimistic outlook for, Boxer) -> Rasmussen (666ms) Who are professional female boxers? the Duluth -0.7777777777720001 Who are professional female boxers? -> $x: ($x, boxer, professional) -> (the Duluth, boxer, his first professional loss) -> the Duluth (666ms) Who are professional female boxers? Lightweight -0.7777777777720001 Who are professional female boxers? -> $x: ($x, boxer, singer) -> (Lightweight, Boxers rated at this weight, Al Singer) -> Lightweight (666ms) Who are professional female boxers? Iran Barkley -1.111111111105 Who are professional female boxers? -> $x: (professional, boxer, $x) -> (American Professional, boxer, Iran Barkley) -> Iran Barkley (974ms) What are geckos? standards 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (standards, support in, Gecko) -> standards (2949ms) What are geckos? Scientists 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Scientists, are also interested in, the gecko) -> Scientists (1805ms) What are geckos? scientists 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (scientists, was n?t just interested in, geckos? feet) -> scientists (1609ms) What are geckos? 2238 Harold 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (2238 Harold, arrives in, Gecko) -> 2238 Harold (3915ms) What are geckos? CSS ] Content 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (CSS ] Content, differs in, Netscape Gecko browsers) -> CSS ] Content (2911ms) What are geckos? the sine-scroller 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (the sine-scroller, is so slow in, Gecko) -> the sine-scroller (1967ms) What are geckos? DOMContentLoaded event 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (DOMContentLoaded event, is in, Gecko) -> DOMContentLoaded event (1609ms) What are geckos? the audience 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (the audience, is settling in to watch, Gordon Gecko) -> the audience (4040ms) What are geckos? the build strategy 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (the build strategy, has changed in, gecko 1.9) -> the build strategy (1609ms) What are geckos? Harold 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Harold, arrives in, Gecko) -> Harold (3916ms) What are geckos? SVG images 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (SVG images, is extremely restricted in, Gecko) -> SVG images (3045ms) What are geckos? runny feces 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (runny feces, is very common in, crested geckos) -> runny feces (2911ms) What are geckos? Wind and Ground 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Wind and Ground, are characters in, Gecko?s landscape) -> Wind and Ground (1609ms) What are geckos? LAYER 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (LAYER, can be replaced in, Mozilla Gecko browsers) -> LAYER (3916ms) What are geckos? The secret 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (The secret, lies in, the gecko) -> The secret (3916ms) What are geckos? amber 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (amber, found in, many modern geckos) -> amber (3815ms) What are geckos? Researchers 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Researchers, have long been interested in, geckos) -> Researchers (1968ms) What are geckos? Wikiwyg 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Wikiwyg, only works in, Gecko browsers) -> Wikiwyg (1968ms) What are geckos? serveral problems 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (serveral problems, found in, Gecko rendering engine rv) -> serveral problems (4039ms) What are geckos? Speculative fiction 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Speculative fiction, Books In This Genre, Geckos) -> Speculative fiction (1608ms) What are geckos? the doctype name 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (the doctype name, is an interned string in, Gecko) -> the doctype name (1967ms) What are geckos? Works 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Works, presented in, the Gecko) -> Works (4100ms) What are geckos? bugs 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (bugs, were fixed in, Gecko 1.8) -> bugs (3816ms) What are geckos? Luke 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Luke, got lost in, Gecko Cavern) -> Luke (4040ms) What are geckos? Layne and Heather 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Layne and Heather, brought in, their gargoyle geckos) -> Layne and Heather (1968ms) What are geckos? nanosized setae 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (nanosized setae, found in, gecko?s feet) -> nanosized setae (1806ms) What are geckos? image indicators 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (image indicators, are slightly sketchy in, Mozilla Gecko) -> image indicators (2949ms) What are geckos? Computer hardware 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Computer hardware, Organizations in this industry, Gecko Gear) -> Computer hardware (3045ms) What are geckos? MathML 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (MathML, works fine in, Gecko) -> MathML (4100ms) What are geckos? the existing android 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (the existing android, added in, the Gecko specific drivers) -> the existing android (2949ms) What are geckos? the part 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (the part, installed back in, Gecko) -> the part (3045ms) What are geckos? blocks 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (blocks, does work in, Gecko) -> blocks (3045ms) What are geckos? features 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (features, were introduced in, Gecko 1.7) -> features (4039ms) What are geckos? Fiction 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Fiction, Books In This Genre, Meet The Gecko) -> Fiction (2949ms) What are geckos? I?ve 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (I?ve, also spotted this problem in, old Gecko) -> I?ve (4040ms) What are geckos? the rendering code 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (the rendering code, is injected in to, the Gecko application) -> the rendering code (3045ms) What are geckos? numerous hairlike setae 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (numerous hairlike setae, found in, many modern geckos) -> numerous hairlike setae (3815ms) What are geckos? The personal bar 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (The personal bar, is only found in, Gecko browsers) -> The personal bar (1806ms) What are geckos? an dom exception 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (an dom exception, would be thrown in, Gecko) -> an dom exception (2911ms) What are geckos? Midrange 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Midrange, Accommodation in this range, Green Gecko) -> Midrange (3916ms) What are geckos? an SVG image 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (an SVG image, scale properly in, Gecko browsers) -> an SVG image (1968ms) What are geckos? JavaScript 1.8.2 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (JavaScript 1.8.2, is now in, Gecko) -> JavaScript 1.8.2 (3045ms) What are geckos? The widest CSS3-implementations 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (The widest CSS3-implementations, are in, Mozilla Gecko browsers) -> The widest CSS3-implementations (1806ms) What are geckos? Adrian 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Adrian, is taken in by, the Gecko family) -> Adrian (4101ms) What are geckos? For Dummies 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (For Dummies, Works in this series, Leopard Geckos For Dummies) -> For Dummies (4100ms) What are geckos? the Chosen One 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (the Chosen One, arrives in, Gecko) -> the Chosen One (2949ms) What are geckos? the DOM 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (the DOM, implemented in, Gecko-based browsers) -> the DOM (3816ms) What are geckos? the top two runners-up 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (the top two runners-up, will be showcased in, GuideGecko) -> the top two runners-up (1806ms) What are geckos? more bugs 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (more bugs, got fixed?in shared, Gecko components) -> more bugs (1805ms) What are geckos? Lim 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Lim, takes second place in, Guide Gecko contest 2010) -> Lim (3916ms) What are geckos? an element 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (an element, could fail in, Gecko) -> an element (2949ms) What are geckos? Bugs 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Bugs, found only in, Gecko based browsers) -> Bugs (2911ms) What are geckos? The Breakfast 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (The Breakfast, were sitting in with, Mondo Gecko) -> The Breakfast (4100ms) What are geckos? backspace 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (backspace, was used in, Gecko) -> backspace (2911ms) What are geckos? OPTGROUP 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (OPTGROUP, is supported only in, Mozilla Gecko browsers) -> OPTGROUP (3815ms) What are geckos? a ContextMenu instance 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (a ContextMenu instance, is made visible In, Gecko) -> a ContextMenu instance (3915ms) What are geckos? the actual bug 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (the actual bug, is in, Gecko) -> the actual bug (1805ms) What are geckos? the Pokemon 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (the Pokemon, put in, the GEICO Gecko) -> the Pokemon (4040ms) What are geckos? the thermoregulartory behavior 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (the thermoregulartory behavior, observed in, field-active geckos) -> the thermoregulartory behavior (4040ms) What are geckos? The incident 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (The incident, occurred in between, Gecko Road) -> The incident (2911ms) What are geckos? The forum topic code 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (The forum topic code, works in, Gecko) -> The forum topic code (3045ms) What are geckos? SVG support 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (SVG support, is still nascent in, Gecko) -> SVG support (1608ms) What are geckos? The hotels and accommodations 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (The hotels and accommodations, cited in, GeckoGo) -> The hotels and accommodations (3815ms) What are geckos? Gex 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Gex, Games In Series, Gex: Enter the Gecko) -> Gex (2911ms) What are geckos? Lenny 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Lenny, is a Ghoul living in, Gecko city) -> Lenny (4039ms) What are geckos? Children's literature 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Children's literature, Books In This Genre, Meet The Gecko) -> Children's literature (3916ms) What are geckos? Gowan 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Gowan, are partners in, five Gecko?s Grill & Pub restaurants) -> Gowan (1968ms) What are geckos? the mouse 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (the mouse, co-ordinates in, Gecko) -> the mouse (3816ms) What are geckos? correct comments 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (correct comments, is crucial in, Gecko) -> correct comments (1968ms) What are geckos? the yellow pass key 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (the yellow pass key, opens the doors in, the Gecko Power Plant) -> the yellow pass key (2949ms) What are geckos? a component 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (a component, can be used in, Gecko) -> a component (4101ms) What are geckos? The caret 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (The caret, sometimes gets stuck in, Gecko) -> The caret (4100ms) What are geckos? the leucistic 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (the leucistic, are all included in, leopard gecko variations) -> the leucistic (2911ms) What are geckos? The PNG Drop Shadow method 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (The PNG Drop Shadow method, works in, Gecko browsers) -> The PNG Drop Shadow method (1608ms) What are geckos? 10 % 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (10 %, are paid in, Golden Gecko Bonus Bucks) -> 10 % (1608ms) What are geckos? Responsible Tourism 0.888888888899 What are geckos? -> $x: ($x, in, gecko) -> (Responsible Tourism, is a key philosophy in, all Gecko) -> Responsible Tourism (3045ms) What are geckos? Adobe Rent 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Gecko Trail Adventures, does work very closely with, Adobe Rent) -> Adobe Rent (4141ms) What are geckos? Geico 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (the Gecko, do for, Geico) -> Geico (4187ms) What are geckos? place 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Groovy Gecko, did, place) -> place (4187ms) What are geckos? the last few months 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (WebKit and Gecko, have both done this in, the last few months) -> the last few months (4141ms) What are geckos? the inline-block display property 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Gecko, does n?t handle, the inline-block display property) -> the inline-block display property (4167ms) What are geckos? Gex 3 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Deep Cover Gecko, do, Gex 3) -> Gex 3 (4167ms) What are geckos? UV light 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Leopard geckos, do need, UV light) -> UV light (4141ms) What are geckos? teeth 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Leopard geckos, do have, teeth) -> teeth (4141ms) What are geckos? 10 gallon 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Leopard geckos, also do reasonably well contained by, 10 gallon) -> 10 gallon (4167ms) What are geckos? already 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Gecko, does, already) -> already (4177ms) What are geckos? a lot 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Gecko, does, a lot) -> a lot (4177ms) What are geckos? a solitary pet 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (The Pictus Gecko, also does well as, a solitary pet) -> a solitary pet (4177ms) What are geckos? n?t support counters 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Gecko, did, n?t support counters) -> n?t support counters (4141ms) What are geckos? XML 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Netscape Gecko, do support, XML) -> XML (4177ms) What are geckos? a day-night light cycle 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (the Crested Gecko, does need, a day-night light cycle) -> a day-night light cycle (4177ms) What are geckos? The Happy Face 091 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Geck-o, Do, The Happy Face 091) -> The Happy Face 091 (4187ms) What are geckos? a gecko climb 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Gecko glue, does, a gecko climb) -> a gecko climb (4177ms) What are geckos? the temperature 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (The gecko can?t, do much to control, the temperature) -> the temperature (4187ms) What are geckos? an app store 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Boot 2 Gecko, does have, an app store) -> an app store (4167ms) What are geckos? fine 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (the gecko, doing, fine) -> fine (4167ms) What are geckos? a great job 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Gecko Adventures, did, a great job) -> a great job (4177ms) What are geckos? a variety 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Flying Geckos, do well with, a variety) -> a variety (4167ms) What are geckos? helping firefighters save lives 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (a gecko, to do with, helping firefighters save lives) -> helping firefighters save lives (4177ms) What are geckos? Liz-ard Minnelli 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (A cheeky gecko, does an impression of, Liz-ard Minnelli) -> Liz-ard Minnelli (4177ms) What are geckos? the ADD show 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Topo and Gecko, do, the ADD show) -> the ADD show (4167ms) What are geckos? a greater risk 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (a leopard gecko, does is taking, a greater risk) -> a greater risk (4177ms) What are geckos? Turvy 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (A funny little cute gecko 5, Does, Turvy) -> Turvy (4166ms) What are geckos? Texas 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (the Gecko, doing the two-step in, Texas) -> Texas (4141ms) What are geckos? awesome pets 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Geckos, do make, awesome pets) -> awesome pets (4177ms) What are geckos? the robot 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (the gecko, do, the robot) -> the robot (4177ms) What are geckos? Mary Richardson 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (The gecko piece, was done by, Mary Richardson) -> Mary Richardson (4177ms) What are geckos? avoid calcium deficiency 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Leopard geckos, do need UV light to, avoid calcium deficiency) -> avoid calcium deficiency (4167ms) What are geckos? firefighters save lives 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (a gecko, to do with helping, firefighters save lives) -> firefighters save lives (4177ms) What are geckos? remote administration and management 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Blue Gecko, does, remote administration and management) -> remote administration and management (4177ms) What are geckos? children 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (the Crested Gecko, do well around, children) -> children (4141ms) What are geckos? multiple 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (> Gecko, does support, multiple) -> multiple (4141ms) What are geckos? bark 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (geckos, really do, bark) -> bark (4187ms) What are geckos? water 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (gecko adhesion, does n?t work well in, water) -> water (4167ms) What are geckos? much sophistication and support 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Gecko, does n?t hold as, much sophistication and support) -> much sophistication and support (4167ms) What are geckos? eyelids 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Leopard geckos, do have, eyelids) -> eyelids (4177ms) What are geckos? the two-step 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (the Gecko, doing, the two-step) -> the two-step (4167ms) What are geckos? wonders 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (The new Gecko rendering engine, is doing, wonders) -> wonders (4141ms) What are geckos? more than 8? reveals 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Gecko, does n?t work with, more than 8? reveals) -> more than 8? reveals (4141ms) What are geckos? traditional 3-D games 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (the Gecko, does, traditional 3-D games) -> traditional 3-D games (4167ms) What are geckos? an impression 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (A cheeky gecko, does, an impression) -> an impression (4187ms) What are geckos? the hyphens 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Gecko, does n?t treat, the hyphens) -> the hyphens (4167ms) What are geckos? boys 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Chet Gecko books, do really well (especially with, boys) -> boys (4167ms) What are geckos? prime time 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Gecko, does n?t seem quite ready for, prime time) -> prime time (4187ms) What are geckos? calcium deficiency 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (Leopard geckos, do need UV light to avoid, calcium deficiency) -> calcium deficiency (4167ms) What are geckos? awesome 0.777777777788 What are geckos? -> $x: (gecko, do, $x) -> (the geckos, are doing, awesome) -> awesome (4141ms) What are geckos? Apple 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (Apple, does n?t need, Gecko?s multi-platform support) -> Apple (4244ms) What are geckos? excellence 0.777777777787 What are geckos? -> $x: ($x, produce, gecko) -> (excellence, produces, high quality leopard geckos) -> excellence (4197ms) What are geckos? NVDA 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (NVDA, far does have support for, Gecko) -> NVDA (4187ms) What are geckos? mplayerplug-in 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (gecko-mediaplayer, is a replacement for, mplayerplug-in) -> mplayerplug-in (4244ms) What are geckos? printing and print preview 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko, was for, printing and print preview) -> printing and print preview (4235ms) What are geckos? a 7-year kid 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (a gecko, be a suitable pet for, a 7-year kid) -> a 7-year kid (4225ms) What are geckos? a Tremper Enigma 0.777777777787 What are geckos? -> $x: ($x, produce, gecko) -> (a Tremper Enigma, produced by, A&M Geckos) -> a Tremper Enigma (4235ms) What are geckos? NS5 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (NS5, does indeed represent, Gecko/Moz) -> NS5 (4206ms) What are geckos? pickles 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (pickles, have to do with, Gecko Hospitality) -> pickles (4197ms) What are geckos? beginners 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko, is good for, beginners) -> beginners (4235ms) What are geckos? the day 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (GeckoSystems, is well prepared for, the day) -> the day (4225ms) What are geckos? the thousand other kids 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (your Gecko, is also used for, the thousand other kids) -> the thousand other kids (4216ms) What are geckos? security reasons 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko, must be excluded for, security reasons) -> security reasons (4216ms) What are geckos? Windows 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko Tool, is for, Windows) -> Windows (4252ms) What are geckos? Shiva Chandra 0.777777777787 What are geckos? -> $x: ($x, produce, gecko) -> (Shiva Chandra, Tracks produced, Gecko) -> Shiva Chandra (4206ms) What are geckos? the story 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (the story, did the idea for, the gecko private eye) -> the story (4197ms) What are geckos? general development 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (the gecko rendering engine, is useful for, general development) -> general development (4216ms) What are geckos? thread work 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko Dex, is also excellent for, thread work) -> thread work (4244ms) What are geckos? the Miocene 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (the Miocene, did, the geckos) -> the Miocene (4225ms) What are geckos? basic and 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (giant geckos, is a tough encounter for, basic and) -> basic and (4206ms) What are geckos? Carbon allotropes 0.777777777787 What are geckos? -> $x: ($x, produce, gecko) -> (Carbon allotropes, are used to produce, gecko tape) -> Carbon allotropes (4225ms) What are geckos? Mobile devices 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko, might be more appropriate for, Mobile devices) -> Mobile devices (4197ms) What are geckos? the next time 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (the next time, do a search for, ?SAS Geckos?) -> the next time (4244ms) What are geckos? the first time 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko Maps, is publishing this information for, the first time) -> the first time (4225ms) What are geckos? a while 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (The geckos, had been out for, a while) -> a while (4253ms) What are geckos? smartphones 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko, is built for, smartphones) -> smartphones (4235ms) What are geckos? the viewport 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Mozilla Gecko browsers borders, can be set for, the viewport) -> the viewport (4225ms) What are geckos? each guest 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko Villa, are tailored for, each guest) -> each guest (4216ms) What are geckos? the browser 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko, is optimized for, the browser) -> the browser (4187ms) What are geckos? Firefox 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (Firefox, does this with, its gecko engine) -> Firefox (4225ms) What are geckos? an experienced , high energy 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko Hospitality, is looking for, an experienced , high energy) -> an experienced , high energy (4206ms) What are geckos? TRY IT TOOOOOO 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (TRY IT TOOOOOO, does, Gecko) -> TRY IT TOOOOOO (4225ms) What are geckos? speed 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (this gecko, is built for, speed) -> speed (4235ms) What are geckos? The basement 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (The basement, does contain, some golden geckos) -> The basement (4225ms) What are geckos? a toe hold 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (a toe hold, does, the Duvaucel?s gecko) -> a toe hold (4235ms) What are geckos? Infinitely Virtual 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Lisa Gecko, is a staff writer for, Infinitely Virtual) -> Infinitely Virtual (4244ms) What are geckos? just 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (just, as has been done for, Gecko 1.8.0) -> just (4253ms) What are geckos? The hard work 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (The hard work, here is actually done by, Gecko) -> The hard work (4244ms) What are geckos? new building materials 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Synthetic Gecko, could also be used for, new building materials) -> new building materials (4253ms) What are geckos? multicolumn layout 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko 1.8, is support for, multicolumn layout) -> multicolumn layout (4216ms) What are geckos? the grid 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (the grid, are now doing well in, the Gecko grid) -> the grid (4225ms) What are geckos? stays 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Green Gecko, may be booked for, stays) -> stays (4226ms) What are geckos? the alternative medicine trade 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (geckos, are collected for, the alternative medicine trade) -> the alternative medicine trade (4187ms) What are geckos? the Champions launcher 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (gecko, are required for, the Champions launcher) -> the Champions launcher (4206ms) What are geckos? designer excellence 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Our geckos, are specially bred for, designer excellence) -> designer excellence (4216ms) What are geckos? a Tremper Albino Enigma 0.777777777787 What are geckos? -> $x: ($x, produce, gecko) -> (a Tremper Albino Enigma, produced by, A&M Geckos) -> a Tremper Albino Enigma (4244ms) What are geckos? Thomas P. Heckmann 0.777777777787 What are geckos? -> $x: ($x, produce, gecko) -> (Thomas P. Heckmann, Tracks produced, Amphetamine (Gecko remix)) -> Thomas P. Heckmann (4225ms) What are geckos? MAC , Linux and Windows 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko Tool, will be for, MAC , Linux and Windows) -> MAC , Linux and Windows (4206ms) What are geckos? the web 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko, is a very powerful tool for making, the web) -> the web (4244ms) What are geckos? the electronics 0.777777777787 What are geckos? -> $x: ($x, produce, gecko) -> (the electronics, are produced by, Gecko) -> the electronics (4216ms) What are geckos? adventure 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko?s, is the way to go for, adventure) -> adventure (4197ms) What are geckos? a healthy lifestyle 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Tokay gecko, is a very good herb for, a healthy lifestyle) -> a healthy lifestyle (4197ms) What are geckos? the same price 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko devices, will be sold for, the same price) -> the same price (4225ms) What are geckos? me? ? Nobody 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (me? ? Nobody, does, geckos and cavemen) -> me? ? Nobody (4235ms) What are geckos? the best reviews 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (the best reviews, has ever been done for, Gecko Trail Adventures) -> the best reviews (4206ms) What are geckos? brown Treesnakes 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (House geckos, are frequent prey for, brown Treesnakes) -> brown Treesnakes (4253ms) What are geckos? mobile devices 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko?s performance, was deemed good enough for, mobile devices) -> mobile devices (4244ms) What are geckos? the garage 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (the garage, DO about, a bathroom gecko) -> the garage (4225ms) What are geckos? a new style 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko Fur, is our inaccurate definition for, a new style) -> a new style (4225ms) What are geckos? the images 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (the images, does, Gecko) -> the images (4206ms) What are geckos? release 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko, is scheduled for, release) -> release (4253ms) What are geckos? dinner 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko Hospitality, were out for, dinner) -> dinner (4216ms) What are geckos? evolution 0.777777777787 What are geckos? -> $x: ($x, produce, gecko) -> (evolution, produced, a gecko) -> evolution (4216ms) What are geckos? Beta testing 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko Systems, is preparing for, Beta testing) -> Beta testing (4216ms) What are geckos? Mozilla 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (Mozilla, did with, Gecko) -> Mozilla (4244ms) What are geckos? web developers 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (the Gecko date stamp, is meaningful for, web developers) -> web developers (4206ms) What are geckos? 162 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (The Geckos, were now 5 for, 162) -> 162 (4187ms) What are geckos? physical science classrooms 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (the Gecko, is designed for, physical science classrooms) -> physical science classrooms (4206ms) What are geckos? Espiritu Santo 0.777777777787 What are geckos? -> $x: ($x, produce, gecko) -> (Espiritu Santo, has produced a new species of, gecko) -> Espiritu Santo (4244ms) What are geckos? PC CD-ROM 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (the Gecko, will also be available for, PC CD-ROM) -> PC CD-ROM (4253ms) What are geckos? adoption 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Geckos, are available for, adoption) -> adoption (4244ms) What are geckos? publishing 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (the Gecko, was picked up for, publishing) -> publishing (4235ms) What are geckos? just a shot 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (just a shot, i did of, a house gecko) -> just a shot (4187ms) What are geckos? new options 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko Trail Adventures, is always looking for, new options) -> new options (4216ms) What are geckos? the decades 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Few geckos, have been observed for, the decades) -> the decades (4235ms) What are geckos? 19 years 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko Software, has been in business for, 19 years) -> 19 years (4216ms) What are geckos? beat @ 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (beat @, did, the Gecko job) -> beat @ (4235ms) What are geckos? multithreading , many components 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko, is n?t built for, multithreading , many components) -> multithreading , many components (4197ms) What are geckos? Daniel 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (Daniel, has been able to do with, a customized gecko) -> Daniel (4244ms) What are geckos? an MSAA tree 0.777777777787 What are geckos? -> $x: ($x, produce, gecko) -> (an MSAA tree, produced from, a Mozilla Gecko window) -> an MSAA tree (4216ms) What are geckos? over one hundred years 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Crested geckos, to be extinct for, over one hundred years) -> over one hundred years (4216ms) What are geckos? Franchise Partners 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko Hospitality, is currently looking for, Franchise Partners) -> Franchise Partners (4206ms) What are geckos? Question 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (Question, does, the Gecko/Lizard) -> Question (4235ms) What are geckos? coughs 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko, is also used for, coughs) -> coughs (4187ms) What are geckos? The question 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (The question, does, the gecko use) -> The question (4244ms) What are geckos? Jan D'Silva 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (Jan D'Silva, is doing wonderful stuff with, Go Go Gecko) -> Jan D'Silva (4187ms) What are geckos? parents 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (GECKO Productions, is looking for, parents) -> parents (4197ms) What are geckos? a feed 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (?The gecko, could have been looking for, a feed) -> a feed (4206ms) What are geckos? stepper motors 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (The Gecko Powered controllers, are either for, stepper motors) -> stepper motors (4244ms) What are geckos? hours 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (pictus geckos, can be held for, hours) -> hours (4197ms) What are geckos? Gecko glue 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (Gecko glue, does, a gecko climb) -> Gecko glue (4235ms) What are geckos? a number 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko, is also been picked for, a number) -> a number (4206ms) What are geckos? interaction 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (GeckoChat?, is responsible for, interaction) -> interaction (4235ms) What are geckos? new homes 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (our leopard gecko babies, are ready for, new homes) -> new homes (4216ms) What are geckos? safari 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (safari, did n?t want to use, the gecko engine) -> safari (4216ms) What are geckos? blood 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko, would be out for, blood) -> blood (4253ms) What are geckos? the research campus 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko, is a first for, the research campus) -> the research campus (4197ms) What are geckos? Julia Marshall 0.777777777787 What are geckos? -> $x: ($x, do, gecko) -> (Julia Marshall, is doing with, Gecko Press) -> Julia Marshall (4206ms) What are geckos? NS4.x LAYERS 0.777777777787 What are geckos? -> $x: ($x, define, gecko) -> (NS4.x LAYERS, is defined for, MSIE/Gecko) -> NS4.x LAYERS (4197ms) What are geckos? protection 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (the Gecko, is suitable for, protection) -> protection (4235ms) What are geckos? The firm 0.777777777787 What are geckos? -> $x: ($x, produce, gecko) -> (The firm, produced, the Gecko ads) -> The firm (4244ms) What are geckos? Google Chrome 0.777777777787 What are geckos? -> $x: ($x, produce, gecko) -> (Google Chrome, produced, Gecko 2010-02-03T13 :50:19 phasefx) -> Google Chrome (4235ms) What are geckos? a relaxing holiday 0.777777777787 What are geckos? -> $x: (gecko, be for, $x) -> (Gecko Villa, is the perfect hideaway for, a relaxing holiday) -> a relaxing holiday (4187ms) What are geckos? northland green gecko 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (northland green gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Northland%20green%20gecko) -> northland green gecko (4270ms) What are geckos? marlborough green gecko 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (marlborough green gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Marlborough%20green%20gecko) -> marlborough green gecko (4261ms) What are geckos? morning 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (morning, have found, a gecko) -> morning (4270ms) What are geckos? The Martin Agency 0.666666666677 What are geckos? -> $x: ($x, create, gecko) -> (The Martin Agency, created, the Geico Insurance gecko) -> The Martin Agency (4270ms) What are geckos? the grounds 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (the grounds, found, more geckos) -> the grounds (4261ms) What are geckos? the peer-reviewed references 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (the peer-reviewed references, found via, Gecko) -> the peer-reviewed references (4278ms) What are geckos? the U.S. 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (the U.S., found, geckos) -> the U.S. (4270ms) What are geckos? Seychelles giant day gecko 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (Seychelles giant day gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Seychelles%20giant%20day%20gecko) -> Seychelles giant day gecko (4278ms) What are geckos? tiny little hairs 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (tiny little hairs, found on, geckos) -> tiny little hairs (4261ms) What are geckos? Yellow-throated day gecko 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (Yellow-throated day gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Yellow%2Dthroated%20day%20gecko) -> Yellow-throated day gecko (4261ms) What are geckos? Ghouls 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (Ghouls, can be found in, the town Gecko) -> Ghouls (4278ms) What are geckos? Aldabra Island day gecko 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (Aldabra Island day gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Aldabra%20Island%20day%20gecko) -> Aldabra Island day gecko (4278ms) What are geckos? atlas day gecko 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (atlas day gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Atlas%20Day%20Gecko) -> atlas day gecko (4253ms) What are geckos? Ocelot Gecko 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (Ocelot Gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Ocelot%20Gecko) -> Ocelot Gecko (4261ms) What are geckos? the fine hairs 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (the fine hairs, found on, each gecko foot) -> the fine hairs (4270ms) What are geckos? European Leaf-toed Gecko 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (European Leaf-toed Gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/European%20Leaf%2Dtoed%20Gecko) -> European Leaf-toed Gecko (4287ms) What are geckos? Fossils 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (Fossils, have been found containing, geckos) -> Fossils (4279ms) What are geckos? Yaval region 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (Yaval region, has found species of, giant tree gecko) -> Yaval region (4278ms) What are geckos? Stephen's Island Gecko 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (Stephen's Island Gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Stephen's%20Island%20gecko) -> Stephen's Island Gecko (4261ms) What are geckos? Rough gecko 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (Rough gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Rough%20gecko) -> Rough gecko (4287ms) What are geckos? author 0.666666666677 What are geckos? -> $x: ($x, create, gecko) -> (author, created, Gordon Gecko?s wardrobe) -> author (4279ms) What are geckos? God 0.666666666677 What are geckos? -> $x: ($x, create, gecko) -> (God, created, the gecko) -> God (4270ms) What are geckos? Kuroiwa's Ground Gecko 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (Kuroiwa's Ground Gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Kuroiwa's%20Ground%20Gecko) -> Kuroiwa's Ground Gecko (4261ms) What are geckos? researchers 0.666666666677 What are geckos? -> $x: ($x, create, gecko) -> (researchers, have created a new family of, geckos) -> researchers (4261ms) What are geckos? JOHN HOCKENBERRY 0.666666666677 What are geckos? -> $x: ($x, happen to, gecko) -> (JOHN HOCKENBERRY, happened to, your little leaf-tailed gecko pal) -> JOHN HOCKENBERRY (4261ms) What are geckos? the ad shop 0.666666666677 What are geckos? -> $x: ($x, create, gecko) -> (the ad shop, has created, the Geico gecko) -> the ad shop (4278ms) What are geckos? Barking Gecko Theatre Company 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (Barking Gecko Theatre Company, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Barking%20Gecko%20Theatre%20Company) -> Barking Gecko Theatre Company (4270ms) What are geckos? You?d 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (You?d, rather find, two geckos fighting) -> You?d (4253ms) What are geckos? African Fat-Tailed Gecko 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (African Fat-Tailed Gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/African%20fat%2Dtailed%20gecko) -> African Fat-Tailed Gecko (4287ms) What are geckos? eggs 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (eggs, found, a dead gecko) -> eggs (4253ms) What are geckos? Banded Toed Gecko 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (Banded Toed Gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Banded%20Toed%20Gecko) -> Banded Toed Gecko (4253ms) What are geckos? Stupid Videos and pictures 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (Stupid Videos and pictures, can be found at, Gecko Tales) -> Stupid Videos and pictures (4279ms) What are geckos? GEICO 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (GEICO, Find, the Gecko Sweepstakes Search) -> GEICO (4270ms) What are geckos? Tokay gecko 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (Tokay gecko, found, a flying gecko) -> Tokay gecko (4278ms) What are geckos? the answer 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (the answer, can be found at, Gecko?s) -> the answer (4270ms) What are geckos? The World Wildlife Fund 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (The World Wildlife Fund, found, a previously unknown gecko) -> The World Wildlife Fund (4261ms) What are geckos? the Linux plugin 0.666666666677 What are geckos? -> $x: ($x, create, gecko) -> (the Linux plugin, is basically created to work with, Gecko...) -> the Linux plugin (4270ms) What are geckos? Giant Bronze Gecko 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (Giant Bronze Gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Giant%20Bronze%20Gecko) -> Giant Bronze Gecko (4253ms) What are geckos? Simon Fraser University 0.666666666677 What are geckos? -> $x: ($x, create, gecko) -> (Simon Fraser University, created, this gecko-inspired tank) -> Simon Fraser University (4270ms) What are geckos? Blue-tailed Day Gecko 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (Blue-tailed Day Gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Blue%2Dtailed%20day%20gecko) -> Blue-tailed Day Gecko (4261ms) What are geckos? golden gecko 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (golden gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Golden%20Gecko) -> golden gecko (4287ms) What are geckos? South Africa 0.666666666677 What are geckos? -> $x: ($x, create, gecko) -> (South Africa, created by, Cape Geckos Username) -> South Africa (4278ms) What are geckos? Gecko 0.666666666677 What are geckos? -> $x: ($x, create, gecko) -> (Gecko, was created by, Gecko Design) -> Gecko (4270ms) What are geckos? ?Momma 0.666666666677 What are geckos? -> $x: ($x, happen to, gecko) -> (?Momma, happens to, Geckos) -> ?Momma (4278ms) What are geckos? Fisher 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (Fisher, found two of, the bumblebee geckos) -> Fisher (4253ms) What are geckos? Auckland green gecko 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (Auckland green gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Auckland%20green%20gecko) -> Auckland green gecko (4279ms) What are geckos? the same EVA 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (the same EVA, found on, the rubberised Gecko) -> the same EVA (4287ms) What are geckos? East Canary Gecko 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (East Canary Gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/East%20Canary%20Gecko) -> East Canary Gecko (4287ms) What are geckos? the cave 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (the cave, found, a gecko high) -> the cave (4270ms) What are geckos? robert merten's day gecko 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (robert merten's day gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Robert%20Mertens'%20day%20gecko) -> robert merten's day gecko (4253ms) What are geckos? gold striped gecko 0.666666666677 What are geckos? -> $x: ($x, found, gecko) -> (gold striped gecko, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Gold%2Dstriped%20gecko) -> gold striped gecko (4253ms) What are geckos? coloring 0.666666666677 What are geckos? -> $x: (gecko, have use of, $x) -> (* ObsidianGecko, has a beautiful use of, coloring) -> coloring (4270ms) What are geckos? Telcos 0.6666666666759999 What are geckos? -> $x: ($x, can, gecko) -> (Telcos, can package, the Geckos) -> Telcos (4310ms) What are geckos? the 'other creatures 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (the 'other creatures, are, geckos) -> the 'other creatures (4376ms) What are geckos? The display problem 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (The display problem, is due to, a Mozilla/Gecko) -> The display problem (4402ms) What are geckos? WebKit 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (WebKit, is further along than, Gecko) -> WebKit (4349ms) What are geckos? length 0.6666666666759999 What are geckos? -> $x: (gecko, be about, $x) -> (The house gecko, is about three to five inches in, length) -> length (4349ms) What are geckos? the car 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (the car, is, Gecko) -> the car (4361ms) What are geckos? a few people 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (a few people, appeared to be, gecko feet) -> a few people (4310ms) What are geckos? The Gecko engine 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (The Gecko engine, has been updated to, Gecko rv) -> The Gecko engine (4371ms) What are geckos? one snail shell 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (one snail shell, appeared to be, gecko egg remnants) -> one snail shell (4394ms) What are geckos? Aliya Sternstein 0.6666666666759999 What are geckos? -> $x: (gecko, be about, $x) -> (GeckoSystems, are excited about, Aliya Sternstein) -> Aliya Sternstein (4294ms) What are geckos? The MIT2 chip 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (The MIT2 chip, can only be used with, Gecko) -> The MIT2 chip (4385ms) What are geckos? Hide boxes 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Hide boxes, are vital to, your gecko) -> Hide boxes (4366ms) What are geckos? the tails 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (the tails, are a little long to be, a gecko) -> the tails (4385ms) What are geckos? The plan 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (The plan, was to make like, this Gecko) -> The plan (4376ms) What are geckos? Lysol 0.6666666666759999 What are geckos? -> $x: ($x, can, gecko) -> (Lysol, can kill, a fragile gecko.) -> Lysol (4371ms) What are geckos? the site 0.6666666666759999 What are geckos? -> $x: ($x, be in, gecko) -> (the site, is looking in, another Gecko-based browser e.g) -> the site (4333ms) What are geckos? the rendering engine 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (the rendering engine, is, Gecko) -> the rendering engine (4326ms) What are geckos? The idea 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (The idea, is to run, Gecko) -> The idea (4381ms) What are geckos? The rather wriggly chest hair wig 0.6666666666759999 What are geckos? -> $x: ($x, consist of, gecko) -> (The rather wriggly chest hair wig, consisted of, 2 geckos) -> The rather wriggly chest hair wig (4349ms) What are geckos? attendants 0.6666666666759999 What are geckos? -> $x: ($x, can, gecko) -> (attendants, can see, gecko night vision) -> attendants (4390ms) What are geckos? version 8.0.3.3 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (version 8.0.3.3, is based to, Gecko version) -> version 8.0.3.3 (4381ms) What are geckos? sniffers 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (sniffers, should be looking for, Gecko) -> sniffers (4371ms) What are geckos? designers 0.6666666666759999 What are geckos? -> $x: ($x, can, gecko) -> (designers, can directly access, the Gecko MCU?s LCD) -> designers (4294ms) What are geckos? 8 inches 0.6666666666759999 What are geckos? -> $x: (gecko, be about, $x) -> (Crested Geckos, only get to be about, 8 inches) -> 8 inches (4349ms) What are geckos? CSS3 and HTML5 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (CSS3 and HTML5, will be added to, Gecko) -> CSS3 and HTML5 (4376ms) What are geckos? Supported browsers 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (Supported browsers, are, Gecko) -> Supported browsers (4302ms) What are geckos? Jan 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (Jan, am hoping, gecko) -> Jan (4361ms) What are geckos? mining 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (mining, are home to, the Golden Gecko) -> mining (4340ms) What are geckos? Gecko browsers 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Gecko browsers, are supposed to include, the ' Gecko ') -> Gecko browsers (4333ms) What are geckos? the DOM Element object 0.6666666666759999 What are geckos? -> $x: ($x, be in, gecko) -> (the DOM Element object, was introduced in, Gecko 1.9.1) -> the DOM Element object (4385ms) What are geckos? the swarmers 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (the swarmers, are eaten by, geckos) -> the swarmers (4381ms) What are geckos? a new HTML 5 File API 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (a new HTML 5 File API, has been added to, Gecko) -> a new HTML 5 File API (4376ms) What are geckos? Moderate Charts 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (Moderate Charts, are all courtesy of, Gecko) -> Moderate Charts (4385ms) What are geckos? a vendor 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (a vendor, appeared to be freshly, dead geckos) -> a vendor (4356ms) What are geckos? Nvu 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (Nvu, is based on, Gecko) -> Nvu (4366ms) What are geckos? Firefox 2.0 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (Firefox 2.0, will be basing on, Gecko) -> Firefox 2.0 (4385ms) What are geckos? the Kiwi House visitors 0.6666666666759999 What are geckos? -> $x: ($x, can, gecko) -> (the Kiwi House visitors, can see, bush geckoes) -> the Kiwi House visitors (4390ms) What are geckos? The standard browser 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (The standard browser, is based on, Gecko) -> The standard browser (4371ms) What are geckos? Konqueror 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Konqueror, is similar to, the Gecko rendering engine) -> Konqueror (4340ms) What are geckos? a 20-gallon plastic tank 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (a 20-gallon plastic tank, is enough to keep, the leopard gecko) -> a 20-gallon plastic tank (4302ms) What are geckos? navigator.productSub 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (navigator.productSub, is specific to, Gecko browsers) -> navigator.productSub (4333ms) What are geckos? twenty gallons 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (twenty gallons, is better for up to, three geckos) -> twenty gallons (4390ms) What are geckos? Leopard geckos 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Leopard geckos, are connected to, various geckos) -> Leopard geckos (4406ms) What are geckos? The most popular one 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (The most popular one, is, Gecko) -> The most popular one (4406ms) What are geckos? CSS gradient syntax 0.6666666666759999 What are geckos? -> $x: ($x, be in, gecko) -> (CSS gradient syntax, is different in, Webkit and Gecko) -> CSS gradient syntax (4398ms) What are geckos? Opera 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Opera, seems to be a bit more popular than, Gecko-based browsers) -> Opera (4394ms) What are geckos? Neptune 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (Neptune, would be better suited to, Gecko) -> Neptune (4318ms) What are geckos? deleted mail 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (deleted mail, is either sent to, the gecko-trash folder) -> deleted mail (4356ms) What are geckos? Worms 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Worms, are fed to, a Tokay Gecko) -> Worms (4326ms) What are geckos? Human beings 0.6666666666759999 What are geckos? -> $x: ($x, can, gecko) -> (Human beings, can play, the piano and geckos) -> Human beings (4294ms) What are geckos? thinking Safari 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (thinking Safari, was actually, Gecko) -> thinking Safari (4340ms) What are geckos? AOL 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (AOL, is going to use, the Gecko rendering engine) -> AOL (4385ms) What are geckos? Multipart upload 0.6666666666759999 What are geckos? -> $x: ($x, be in, gecko) -> (Multipart upload, is only supported in, Gecko and WebKit) -> Multipart upload (4371ms) What are geckos? The best option 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (The best option, was to befriend, my gecko) -> The best option (4349ms) What are geckos? Itaewon 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (Itaewon, is, Gecko) -> Itaewon (4366ms) What are geckos? sand 0.6666666666759999 What are geckos? -> $x: ($x, can, gecko) -> (sand, can be harmful for, leopard gecko) -> sand (4385ms) What are geckos? lizards 0.6666666666759999 What are geckos? -> $x: ($x, can, gecko) -> (lizards, can range from, the tiny Geckos of a couple inches) -> lizards (4326ms) What are geckos? males 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (males, will need to be separated from, all other geckos) -> males (4381ms) What are geckos? the decision 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (the decision, was made to develop, a Gecko Career Website) -> the decision (4361ms) What are geckos? 6 inches 0.6666666666759999 What are geckos? -> $x: (gecko, be about, $x) -> (The gecko, was about, 6 inches) -> 6 inches (4398ms) What are geckos? the crowd 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (the crowd, be like, gecko) -> the crowd (4326ms) What are geckos? KompoZer 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (KompoZer, is based on, Gecko) -> KompoZer (4406ms) What are geckos? claws 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (claws, appeared to be, a giant gecko) -> claws (4361ms) What are geckos? real eyelids 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (real eyelids, is extremely uncommon to, most gecko species) -> real eyelids (4326ms) What are geckos? Even my 3yr old 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Even my 3yr old, is n?t drawn to, the gecko) -> Even my 3yr old (4394ms) What are geckos? The completely open-source OS 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (The completely open-source OS, is to be called, Boot 2 Gecko) -> The completely open-source OS (4326ms) What are geckos? tables 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (tables, is now working on, Gecko) -> tables (4402ms) What are geckos? the live plants 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (the live plants, are important to, a Day Gecko) -> the live plants (4366ms) What are geckos? Epiphany 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Epiphany, is switching to Webkit from, Gecko) -> Epiphany (4385ms) What are geckos? the Java side 0.6666666666759999 What are geckos? -> $x: ($x, be in, gecko) -> (the Java side, can be seen in, GeckoSurfaceView .java) -> the Java side (4402ms) What are geckos? Finally the above implementation 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (Finally the above implementation, is for, Gecko) -> Finally the above implementation (4402ms) What are geckos? flies 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (flies, were concentrated precariously close to, the gecko) -> flies (4318ms) What are geckos? The nights 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (The nights, can be stressful due to, the geckos) -> The nights (4398ms) What are geckos? a water bowl 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (a water bowl, is enough to keep, your gecko hydrated) -> a water bowl (4356ms) What are geckos? the moment 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (the moment, is, Gecko) -> the moment (4356ms) What are geckos? The rendering engine 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (The rendering engine, is called, Gecko) -> The rendering engine (4333ms) What are geckos? each code engine release 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (each code engine release, was named, Gecko) -> each code engine release (4349ms) What are geckos? rats 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (rats, are nearly as addicting as, geckos) -> rats (4376ms) What are geckos? A good case 0.6666666666759999 What are geckos? -> $x: ($x, can, gecko) -> (A good case, can be made for, gecko setae) -> A good case (4356ms) What are geckos? the Lunar Eclipse 0.6666666666759999 What are geckos? -> $x: ($x, can, gecko) -> (the Lunar Eclipse, can be played with, the GeckoOS app) -> the Lunar Eclipse (4394ms) What are geckos? the electronics industries 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (the electronics industries, are built by, Gecko) -> the electronics industries (4376ms) What are geckos? view 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (view, matters is, Gecko) -> view (4287ms) What are geckos? Improvements 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Improvements, have been made to, the Gecko layout engine) -> Improvements (4376ms) What are geckos? the new browser 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (the new browser, will be based on, Gecko) -> the new browser (4356ms) What are geckos? Ginseng 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (Ginseng, is used with, Gecko) -> Ginseng (4376ms) What are geckos? Current code 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Current code, is tied to, Gecko 1.x) -> Current code (4381ms) What are geckos? Overflow :auto 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Overflow :auto, is still applied to for, Gecko/MacOS) -> Overflow :auto (4381ms) What are geckos? Amit Lahav 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (Amit Lahav, are, Gecko) -> Amit Lahav (4398ms) What are geckos? Visitors 0.6666666666759999 What are geckos? -> $x: ($x, can, gecko) -> (Visitors, can experience, gecko night vision) -> Visitors (4361ms) What are geckos? NPAPI support 0.6666666666759999 What are geckos? -> $x: ($x, be in, gecko) -> (NPAPI support, is already in, the Gecko web rendering engine) -> NPAPI support (4390ms) What are geckos? 10 Newtons 0.6666666666759999 What are geckos? -> $x: (gecko, be about, $x) -> (gecko foot, is about, 10 Newtons) -> 10 Newtons (4287ms) What are geckos? KHTML 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (KHTML, pretended to be, Gecko) -> KHTML (4310ms) What are geckos? the browsers 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (the browsers, are based on, Gecko) -> the browsers (4376ms) What are geckos? The error 0.6666666666759999 What are geckos? -> $x: ($x, be in, gecko) -> (The error, has been fixed in, Gecko 1.9) -> The error (4294ms) What are geckos? Flock 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (Flock, is based on, Gecko) -> Flock (4366ms) What are geckos? SpiderMonkey 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (SpiderMonkey, is, Gecko) -> SpiderMonkey (4349ms) What are geckos? greed 0.6666666666759999 What are geckos? -> $x: (gecko, be about, $x) -> (September 14 , 2010 Gordon Gecko, was right about, greed) -> greed (4294ms) What are geckos? 20 gallons 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (20 gallons, is sufficient to house, one or two geckos) -> 20 gallons (4310ms) What are geckos? insects 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (insects, were eaten by, geckoes) -> insects (4385ms) What are geckos? Chinese tiger gecko diet 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Chinese tiger gecko diet, is similar to, the leopard gecko) -> Chinese tiger gecko diet (4318ms) What are geckos? Osteodystrophy 0.6666666666759999 What are geckos? -> $x: ($x, can, gecko) -> (Osteodystrophy, can also stop the growth of, a gecko) -> Osteodystrophy (4349ms) What are geckos? 12 0.6666666666759999 What are geckos? -> $x: ($x, can, gecko) -> (12, can learn about, geckos) -> 12 (4294ms) What are geckos? enough the insects 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (enough the insects, were consumed by, geckoes) -> enough the insects (4390ms) What are geckos? the snake 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (the snake, was trying to eat, the gecko) -> the snake (4318ms) What are geckos? heavy duty 0.6666666666759999 What are geckos? -> $x: (gecko, be about, $x) -> (Gecko, is about being, heavy duty) -> heavy duty (4361ms) What are geckos? developers 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (developers, will be able to simply tell, Gecko) -> developers (4406ms) What are geckos? a patching method 0.6666666666759999 What are geckos? -> $x: ($x, can, gecko) -> (a patching method, can be used with, the Gecko OS code handler) -> a patching method (4302ms) What are geckos? The change 0.6666666666759999 What are geckos? -> $x: ($x, be in, gecko) -> (The change, has been checked in on, the Gecko trunk) -> The change (4326ms) What are geckos? Chromium 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (Chromium, was also, Gecko) -> Chromium (4371ms) What are geckos? the week 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (the week, was, Gecko) -> the week (4406ms) What are geckos? Webkit 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (Webkit, so is, Gecko) -> Webkit (4394ms) What are geckos? black lights 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (black lights, are fine to use with, leopard geckos) -> black lights (4366ms) What are geckos? overseas 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (overseas, were, geckos) -> overseas (4361ms) What are geckos? GREED 0.6666666666759999 What are geckos? -> $x: ($x, be in, gecko) -> (GREED, IS GOOD in, his best Gecko impression) -> GREED (4287ms) What are geckos? a GNOME Web browser 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (a GNOME Web browser, is based on, Gecko) -> a GNOME Web browser (4310ms) What are geckos? 20kms southeast 0.6666666666759999 What are geckos? -> $x: (gecko, be about, $x) -> (Gecko Villa, is located about, 20kms southeast) -> 20kms southeast (4302ms) What are geckos? CSS position 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (CSS position, is too unstable to apply for, Mozilla Gecko) -> CSS position (4333ms) What are geckos? the best option 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (the best option, is, Gecko) -> the best option (4310ms) What are geckos? Atlanta 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Atlanta, is very excited to welcome, the GEICO Gecko exhibit) -> Atlanta (4402ms) What are geckos? Web authors 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Web authors, need there to be, ?one gecko?) -> Web authors (4394ms) What are geckos? chains 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (chains, are put together to make, geckos) -> chains (4361ms) What are geckos? heat 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (heat, is much more important to, your gecko) -> heat (4406ms) What are geckos? the Mozilla redering engine 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (the Mozilla redering engine, IS, Gecko) -> the Mozilla redering engine (4398ms) What are geckos? The exception 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (The exception, is, Gecko) -> The exception (4366ms) What are geckos? Artist 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (Artist, is, Gecko) -> Artist (4287ms) What are geckos? Netscape 8.1 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Netscape 8.1, could be set to use, either Gecko or Trident) -> Netscape 8.1 (4385ms) What are geckos? site 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (site, is, Gecko) -> site (4381ms) What are geckos? The U.S. public 0.6666666666759999 What are geckos? -> $x: ($x, can, gecko) -> (The U.S. public, can readily identify, the GEICO gecko) -> The U.S. public (4342ms) What are geckos? the Maximum ie 0.6666666666759999 What are geckos? -> $x: (gecko, be about, $x) -> (Gecko, is talking about is, the Maximum ie) -> the Maximum ie (4406ms) What are geckos? gemal .dk 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (gemal .dk, is now available to, all Gecko based browsers) -> gemal .dk (4402ms) What are geckos? The Gecko Extreme 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (The Gecko Extreme, is designed to work WITH, your original Gecko) -> The Gecko Extreme (4381ms) What are geckos? the size 0.6666666666759999 What are geckos? -> $x: (gecko, be about, $x) -> (a leopard gecko, is about, the size) -> the size (4381ms) What are geckos? client-side storage 0.6666666666759999 What are geckos? -> $x: ($x, be in, gecko) -> (client-side storage, is in, WebKit and Gecko?) -> client-side storage (4371ms) What are geckos? the wall 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (the wall, are strong enough to hold up, the gecko) -> the wall (4394ms) What are geckos? W3C 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (W3C, is Boot to, Gecko) -> W3C (4340ms) What are geckos? The experiment 0.6666666666759999 What are geckos? -> $x: ($x, be in, gecko) -> (The experiment, was repeated in, the geckos? natural habitat) -> The experiment (4333ms) What are geckos? The first two stages 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (The first two stages, are based on, geckos) -> The first two stages (4398ms) What are geckos? Babies 0.6666666666759999 What are geckos? -> $x: ($x, can, gecko) -> (Babies, can be started on, house geckos) -> Babies (4340ms) What are geckos? 2001 0.6666666666759999 What are geckos? -> $x: (gecko, be about, $x) -> (Gecko-like dry adhesives, have been around since about, 2001) -> 2001 (4390ms) What are geckos? Heat mat 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Heat mat, is another hazard to, your crested geckos) -> Heat mat (4349ms) What are geckos? anole 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (anole, is preferred to, gecko) -> anole (4366ms) What are geckos? Subiaco Arts Centre 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Subiaco Arts Centre, is home to, Barking Gecko Theatre Company) -> Subiaco Arts Centre (4376ms) What are geckos? XPCOM Components 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (XPCOM Components, is about, Gecko) -> XPCOM Components (4356ms) What are geckos? Entries 0.6666666666759999 What are geckos? -> $x: ($x, can, gecko) -> (Entries, can be sent to, Project Gecko) -> Entries (4390ms) What are geckos? three to five inches 0.6666666666759999 What are geckos? -> $x: (gecko, be about, $x) -> (The house gecko, is about, three to five inches) -> three to five inches (4398ms) What are geckos? Ian Oeschger 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (Ian Oeschger, is about, Gecko) -> Ian Oeschger (4394ms) What are geckos? First 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (First, is to set, these Gecko settings) -> First (4356ms) What are geckos? the house 0.6666666666759999 What are geckos? -> $x: (gecko, be about, $x) -> (The gecko babies, are running about, the house) -> the house (4333ms) What are geckos? Safari 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Safari, has historically been superior to, Gecko) -> Safari (4287ms) What are geckos? leopard geckos 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (leopard geckos, are descendants of, geckos) -> leopard geckos (4302ms) What are geckos? MPAPI 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (MPAPI, is currently internal to, Gecko) -> MPAPI (4333ms) What are geckos? visitors 0.6666666666759999 What are geckos? -> $x: ($x, can, gecko) -> (visitors, can experience, gecko night vision) -> visitors (4371ms) What are geckos? The photo gallery 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (The photo gallery, is a list of, geckos) -> The photo gallery (4287ms) What are geckos? Russian scientists 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (Russian scientists, are training, geckos) -> Russian scientists (4402ms) What are geckos? a page 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (a page, is loaded in to, the GeckoBrowser) -> a page (4398ms) What are geckos? a shame 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (a shame, is to lose, both Mark and Gecko) -> a shame (4385ms) What are geckos? Strength Builder 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Strength Builder, is very similar to, Gecko Rockclimber) -> Strength Builder (4381ms) What are geckos? a few months 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (a few months, be closer to, main stream Gecko) -> a few months (4390ms) What are geckos? The vines 0.6666666666759999 What are geckos? -> $x: ($x, be in, gecko) -> (The vines, are drenched in, peridot and geckoes dart) -> The vines (4340ms) What are geckos? the better choice 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (the better choice, was, Gecko) -> the better choice (4371ms) What are geckos? JSCSSP 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (JSCSSP, are also adapted from, Gecko) -> JSCSSP (4366ms) What are geckos? the native UI 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (the native UI, is to move, Gecko and XUL) -> the native UI (4333ms) What are geckos? Firefox Nightly 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Firefox Nightly, is very similar to, the Gecko version) -> Firefox Nightly (4385ms) What are geckos? ChatZilla 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (ChatZilla, are using, Gecko) -> ChatZilla (4310ms) What are geckos? a beta1 freeze 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (a beta1 freeze, is probably to get, a Gecko version) -> a beta1 freeze (4318ms) What are geckos? Deutsche Telekom 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (Deutsche Telekom, has been contributing code to, Boot2Gecko) -> Deutsche Telekom (4310ms) What are geckos? the DDT-poisoned bugs 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (the DDT-poisoned bugs, were eaten by, geckoes) -> the DDT-poisoned bugs (4402ms) What are geckos? the canvas element 0.6666666666759999 What are geckos? -> $x: ($x, be in, gecko) -> (the canvas element, has recently been implemented in, Gecko 1.8) -> the canvas element (4340ms) What are geckos? The second approach 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (The second approach, is to serve, Gecko) -> The second approach (4366ms) What are geckos? One box 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (One box, is to help, geckos) -> One box (4390ms) What are geckos? the bracket 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (the bracket, is attached to, the Fat Gecko Mount) -> the bracket (4356ms) What are geckos? A soft cloth 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (A soft cloth, may be used to catch, the delicate skinned geckos) -> A soft cloth (4333ms) What are geckos? a new female Tokay gecko 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (a new female Tokay gecko, be introduced to, a male Tokay gecko) -> a new female Tokay gecko (4361ms) What are geckos? SeaMonkey 1.0.7 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (SeaMonkey 1.0.7, is still, Gecko) -> SeaMonkey 1.0.7 (4318ms) What are geckos? landscaping 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (landscaping, is to offer, the gecko) -> landscaping (4381ms) What are geckos? Children 0.6666666666759999 What are geckos? -> $x: ($x, can, gecko) -> (Children, over can sign up for, Geckos) -> Children (4302ms) What are geckos? nobody 0.6666666666759999 What are geckos? -> $x: ($x, be to, gecko) -> (nobody, is going to make, a gecko) -> nobody (4294ms) What are geckos? the morning 0.6666666666759999 What are geckos? -> $x: ($x, be be, gecko) -> (the morning, was from, geckos) -> the morning (4366ms) What are geckos? the latter 0.5555555555659999 What are geckos? -> $x: ($x, develop, gecko) -> (the latter, develops, Bookt2Gecko) -> the latter (4409ms) What are geckos? the United States 0.5555555555659999 What are geckos? -> $x: ($x, develop, gecko) -> (the United States, have developed, the modern leopard gecko) -> the United States (4409ms) What are geckos? xpcom component 0.5555555555659999 What are geckos? -> $x: ($x, develop, gecko) -> (xpcom component, so develop with only, the gecko sdk) -> xpcom component (4406ms) What are geckos? Crystal Dynamics 0.5555555555659999 What are geckos? -> $x: ($x, develop, gecko) -> (Crystal Dynamics, Games Developed, Gex: Enter the Gecko) -> Crystal Dynamics (4412ms) What are geckos? Mozilla Phones in 2012 0.5555555555659999 What are geckos? -> $x: ($x, develop, gecko) -> (Mozilla Phones in 2012, is developing, a version of Gecko) -> Mozilla Phones in 2012 (4409ms) What are geckos? Realtime Associates 0.5555555555659999 What are geckos? -> $x: ($x, develop, gecko) -> (Realtime Associates, Games Developed, Gex: Enter the Gecko) -> Realtime Associates (4409ms) What are geckos? Morgan 0.5555555555659999 What are geckos? -> $x: ($x, develop, gecko) -> (Morgan, developed, GECKO) -> Morgan (4409ms) What are geckos? a lower temperature 0.5555555555659999 What are geckos? -> $x: ($x, develop, gecko) -> (a lower temperature, develops into, female leopard geckos) -> a lower temperature (4409ms) What are geckos? software 0.5555555555659999 What are geckos? -> $x: ($x, develop, gecko) -> (software, developed by, Gecko Software) -> software (4409ms) What are geckos? UC Berkeley 0.5555555555659999 What are geckos? -> $x: ($x, develop, gecko) -> (UC Berkeley, are developing an uber-adhesive based on, a gecko) -> UC Berkeley (4406ms) What are geckos? Gratuitous Games 0.5555555555659999 What are geckos? -> $x: ($x, develop, gecko) -> (Gratuitous Games, Games Developed, Gex 3: Deep Cover Gecko) -> Gratuitous Games (4406ms) What are geckos? David A. Palmer Productions 0.5555555555659999 What are geckos? -> $x: ($x, develop, gecko) -> (David A. Palmer Productions, Game Versions Developed, Gex: Enter the Gecko) -> David A. Palmer Productions (4409ms) What are geckos? four months 0.5555555555659999 What are geckos? -> $x: ($x, develop, gecko) -> (four months, later developed, Gecko Hospitality) -> four months (4409ms) What are geckos? Thunderbird 0.5555555555659999 What are geckos? -> $x: ($x, be use of, gecko) -> (Thunderbird, is using a new version of, the Gecko layout engine) -> Thunderbird (4412ms) What are geckos? The Mozilla project 0.5555555555659999 What are geckos? -> $x: ($x, develop, gecko) -> (The Mozilla project, developed, the Gecko engine) -> The Mozilla project (4409ms) What are geckos? Dr. Aaron Bauer 0.555555555565 What are geckos? -> $x: ($x, discover, gecko) -> (Dr. Aaron Bauer, discovered a species of, gecko) -> Dr. Aaron Bauer (4415ms) What are geckos? the family 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are now considered to be in, the family) -> the family (4424ms) What are geckos? size 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Geckos, range in, size) -> size (4426ms) What are geckos? patients 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, is contraindicated in, patients) -> patients (4422ms) What are geckos? tropical rainforests 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (geckos, live in, tropical rainforests) -> tropical rainforests (4426ms) What are geckos? Authorities Concept Scheme 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Geckos, In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (4426ms) What are geckos? the teacher 0.444444444455 What are geckos? -> $x: ($x, get, gecko) -> (the teacher, get rid of, the Gecko) -> the teacher (4420ms) What are geckos? Surfair Resort 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko?s, located in, Surfair Resort) -> Surfair Resort (4424ms) What are geckos? every home 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are found in, every home) -> every home (4430ms) What are geckos? Hawaii 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (geckos, are everywhere in, Hawaii) -> Hawaii (4430ms) What are geckos? primary , undisturbed forests 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (geckos, is found only in, primary , undisturbed forests) -> primary , undisturbed forests (4426ms) What are geckos? a milder climate 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are typically found in, a milder climate) -> a milder climate (4424ms) What are geckos? the dorsal area 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (geckos, have a light colored pattern in, the dorsal area) -> the dorsal area (4431ms) What are geckos? the inside 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (geckos, got skin in, the inside) -> the inside (4430ms) What are geckos? zero gravity 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (geckos, behave in, zero gravity) -> zero gravity (4422ms) What are geckos? development 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, had already been in, development) -> development (4427ms) What are geckos? June 2011 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, was unveiled in, June 2011) -> June 2011 (4426ms) What are geckos? a nearby area 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Geckos, found in, a nearby area) -> a nearby area (4426ms) What are geckos? popular imagery 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are ubiquitous both in, popular imagery) -> popular imagery (4431ms) What are geckos? the quotation marks 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, puts in, the quotation marks) -> the quotation marks (4422ms) What are geckos? Melbourne 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko?s Adventures, has its head office in, Melbourne) -> Melbourne (4420ms) What are geckos? no idea 0.444444444455 What are geckos? -> $x: ($x, get, gecko) -> (no idea, get, geckos tommorrow) -> no idea (4427ms) What are geckos? thousands 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko?s feet, are covered in, thousands) -> thousands (4430ms) What are geckos? front 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are still way out in, front) -> front (4430ms) What are geckos? fact 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (geckos, are in, fact) -> fact (4424ms) What are geckos? nature 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (gecko, is slightly warm in, nature) -> nature (4430ms) What are geckos? ?Yep 0.444444444455 What are geckos? -> $x: ($x, get, gecko) -> (?Yep, got, Geckos) -> ?Yep (4422ms) What are geckos? Papua New Guinea 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (gecko, has been discovered in, Papua New Guinea) -> Papua New Guinea (4430ms) What are geckos? a creamy tan colour 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, looks great in, a creamy tan colour) -> a creamy tan colour (4427ms) What are geckos? standards-based rendering 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, is the leader in, standards-based rendering) -> standards-based rendering (4424ms) What are geckos? 60,000sqm 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, is set in over, 60,000sqm) -> 60,000sqm (4430ms) What are geckos? a long aquarium 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Geckos, should be housed in, a long aquarium) -> a long aquarium (4430ms) What are geckos? warm climates 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are found in, warm climates) -> warm climates (4424ms) What are geckos? home 0.444444444455 What are geckos? -> $x: ($x, get, gecko) -> (home, Got, my two new Crested Geckos) -> home (4420ms) What are geckos? a booth 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, sat in, a booth) -> a booth (4420ms) What are geckos? the default font 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, are rendered in, the default font) -> the default font (4426ms) What are geckos? CSS definitions 0.444444444455 What are geckos? -> $x: ($x, get, gecko) -> (CSS definitions, got lost by, Gecko) -> CSS definitions (4420ms) What are geckos? 100 million years ago 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (geckos, were definitely in Asia, 100 million years ago) -> 100 million years ago (4430ms) What are geckos? Brazil 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, will be rolled out in, Brazil) -> Brazil (4420ms) What are geckos? pairs---one male 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are always sold in, pairs---one male) -> pairs---one male (4424ms) What are geckos? Jess 0.444444444455 What are geckos? -> $x: ($x, get, gecko) -> (Jess, get, a gecko) -> Jess (4429ms) What are geckos? hey yall 0.444444444455 What are geckos? -> $x: ($x, get, gecko) -> (hey yall, just got, 2 crested geckos) -> hey yall (4427ms) What are geckos? a print Btw 0.444444444455 What are geckos? -> $x: ($x, get, gecko) -> (a print Btw, get, many gecko 's) -> a print Btw (4427ms) What are geckos? every situation 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, behave the same way in, every situation) -> every situation (4431ms) What are geckos? little hairs 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (The Gecko Gecko feet, are covered in, little hairs) -> little hairs (4420ms) What are geckos? oh & 0.444444444455 What are geckos? -> $x: ($x, get, gecko) -> (oh &, got, another gecko) -> oh & (4430ms) What are geckos? Step 5 0.444444444455 What are geckos? -> $x: ($x, get, gecko) -> (Step 5, Get, a gecko) -> Step 5 (4417ms) What are geckos? Camino 1.0.x 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, used in, Camino 1.0.x) -> Camino 1.0.x (4426ms) What are geckos? the development cycle 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, is somewhat late in, the development cycle) -> the development cycle (4430ms) What are geckos? the fight 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, could aid in, the fight) -> the fight (4431ms) What are geckos? men 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, is very commonly used in, men) -> men (4427ms) What are geckos? pet shops 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are a popular choice in, pet shops) -> pet shops (4430ms) What are geckos? we?ll 0.444444444455 What are geckos? -> $x: ($x, get, gecko) -> (we?ll, get, Gecko goodness) -> we?ll (4427ms) What are geckos? 60,000sqm of private grounds 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, is set in over, 60,000sqm of private grounds) -> 60,000sqm of private grounds (4427ms) What are geckos? terms 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, has made a very significant progress in, terms) -> terms (4424ms) What are geckos? the USC business incubator 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, will start out in, the USC business incubator) -> the USC business incubator (4426ms) What are geckos? Topical Terms Concept Scheme 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Geckos, In Scheme, Topical Terms Concept Scheme) -> Topical Terms Concept Scheme (4431ms) What are geckos? southeastern Asia 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are most numerous in, southeastern Asia) -> southeastern Asia (4431ms) What are geckos? pairs 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (geckos, lay eggs in, pairs) -> pairs (4431ms) What are geckos? the market 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, was in, the market) -> the market (4430ms) What are geckos? map development 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, also is working in, map development) -> map development (4422ms) What are geckos? the 2005 version 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, can be used in, the 2005 version) -> the 2005 version (4424ms) What are geckos? the air 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (geckos, still lingers in, the air) -> the air (4426ms) What are geckos? Tussock 8 ply 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are show in, Tussock 8 ply) -> Tussock 8 ply (4420ms) What are geckos? New App | WebProNews 0.444444444455 What are geckos? -> $x: ($x, get, gecko) -> (New App | WebProNews, Get, Your Gecko) -> New App | WebProNews (4431ms) What are geckos? a children?s literacy resource Who?s 0.444444444455 What are geckos? -> $x: ($x, get, gecko) -> (a children?s literacy resource Who?s, got, the ?Gecko) -> a children?s literacy resource Who?s (4424ms) What are geckos? abundance 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are in, abundance) -> abundance (4424ms) What are geckos? a released mobile device 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, already runs in, a released mobile device) -> a released mobile device (4417ms) What are geckos? the string 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, is also mentioned in, the string) -> the string (4430ms) What are geckos? a ' Firefox OS' 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, could result in, a ' Firefox OS') -> a ' Firefox OS' (4422ms) What are geckos? Jukjeon 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (No Gecko?s, opened a new restaurant in, Jukjeon) -> Jukjeon (4426ms) What are geckos? the ocean 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (geckos, swam in, the ocean) -> the ocean (4424ms) What are geckos? Asia 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (geckos, were definitely in, Asia) -> Asia (4426ms) What are geckos? NZ 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are the largest in, NZ) -> NZ (4426ms) What are geckos? Mozilla?s Firefox 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, is used in, Mozilla?s Firefox) -> Mozilla?s Firefox (4422ms) What are geckos? Firefox 3.6 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, used in, Firefox 3.6) -> Firefox 3.6 (4422ms) What are geckos? a cave 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (gecko, has adapted to living in, a cave) -> a cave (4420ms) What are geckos? a separate thread 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, is running in, a separate thread) -> a separate thread (4422ms) What are geckos? Gotta 0.444444444455 What are geckos? -> $x: ($x, get, gecko) -> (Gotta, Get, a Gecko) -> Gotta (4427ms) What are geckos? the southern mountains 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (gecko, had been discovered in, the southern mountains) -> the southern mountains (4422ms) What are geckos? UTF-8. 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, usually stores URLs internally in, UTF-8.) -> UTF-8. (4422ms) What are geckos? quirks mode 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Gecko, is OK in, quirks mode) -> quirks mode (4427ms) What are geckos? FL... 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are inevitanle in, FL...) -> FL... (4430ms) What are geckos? the wild 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (geckos, "lived in, the wild) -> the wild (4420ms) What are geckos? deviantART 0.444444444455 What are geckos? -> $x: ($x, get, gecko) -> (deviantART, Got, some crested geckos) -> deviantART (4427ms) What are geckos? I?ll 0.444444444455 What are geckos? -> $x: ($x, get, gecko) -> (I?ll, have to get, my little gecko) -> I?ll (4422ms) What are geckos? Tigermond 0.444444444455 What are geckos? -> $x: ($x, get, gecko) -> (Tigermond, needs some help to get, his geckos) -> Tigermond (4422ms) What are geckos? Cambodia?s Cardamoms 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (geckos, found only in, Cambodia?s Cardamoms) -> Cambodia?s Cardamoms (4431ms) What are geckos? different varieties 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (geckos, come in, different varieties) -> different varieties (4426ms) What are geckos? Submitted 0.444444444455 What are geckos? -> $x: ($x, get, gecko) -> (Submitted, Finally got another picture of, my gecko Mallory up) -> Submitted (4426ms) What are geckos? every part 0.444444444455 What are geckos? -> $x: (gecko, in in, $x) -> (Geckos, are found in almost, every part) -> every part (4427ms) What are geckos? Okinawa?the 0.444444444454 What are geckos? -> $x: ($x, involve, gecko) -> (Okinawa?the, first involves, a gecko) -> Okinawa?the (4431ms) What are geckos? the steppers 0.33333333334299997 What are geckos? -> $x: ($x, be use as, gecko) -> (the steppers, would be the same as using, gecko) -> the steppers (4431ms) What are geckos? no loot 0.22222222223199994 What are geckos? -> $x: ($x, contain, gecko) -> (no loot, may contain, a fire gecko) -> no loot (4432ms) What are geckos? Louisiana 0.22222222223199994 What are geckos? -> $x: ($x, contain, gecko) -> (Louisiana, Contains, Gecko) -> Louisiana (4432ms) What are geckos? The atrium 0.22222222223199994 What are geckos? -> $x: ($x, contain, gecko) -> (The atrium, contains, more fire geckos) -> The atrium (4432ms) What are geckos? Albuquerque 0.22222222223199994 What are geckos? -> $x: ($x, contain, gecko) -> (Albuquerque, Contains, Gecko's Bar and Tapas) -> Albuquerque (4431ms) What are geckos? United States of America 0.22222222223199994 What are geckos? -> $x: ($x, contain, gecko) -> (United States of America, Contains, Gecko) -> United States of America (4432ms) What are geckos? The latter 0.22222222223199994 What are geckos? -> $x: ($x, contain, gecko) -> (The latter, currently contains, Gecko 1.9 alpha) -> The latter (4431ms) What are geckos? St. Martin Parish 0.22222222223199994 What are geckos? -> $x: ($x, contain, gecko) -> (St. Martin Parish, Contains, Gecko) -> St. Martin Parish (4431ms) What are geckos? the tea 0.22222222223199994 What are geckos? -> $x: ($x, contain, gecko) -> (the tea, contained, dried gecko lizard parts) -> the tea (4432ms) What are geckos? Simplicity Studio 0.22222222223199994 What are geckos? -> $x: ($x, contain, gecko) -> (Simplicity Studio, also contains, EFM32 Gecko code examples) -> Simplicity Studio (4432ms) What are geckos? tropical lizards 0.222222222219 What are geckos? -> $x: ($x, in, leopard gecko) -> (tropical lizards, would die in, a leopard gecko environment) -> tropical lizards (4432ms) What are geckos? A testcase 0.11111111112299998 What are geckos? -> $x: ($x, demonstrate, gecko) -> (A testcase, demonstrates, Gecko?s correct behaviour) -> A testcase (4432ms) What are geckos? The conference 0.11111111112299998 What are geckos? -> $x: ($x, demonstrate, gecko) -> (The conference, will demonstrate, GeckoSystems) -> The conference (4432ms) What are geckos? I?m gonna 0.11111111112100003 What are geckos? -> $x: ($x, race be, gecko) -> (I?m gonna, be racing, the Gecko) -> I?m gonna (4432ms) Whom did he marry? care -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (care, marries, whom) -> care (534ms) Whom did he marry? six children -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (six children, married, all of whom) -> six children (534ms) Whom did he marry? a damn -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (a damn, marries, whom) -> a damn (534ms) Whom did he marry? Davidman -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (Davidman, married William Gresham by, whom) -> Davidman (534ms) Whom did he marry? five daughters -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (five daughters, married, all of whom) -> five daughters (535ms) Whom did he marry? Wickham -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (Wickham, should marry, a girl whom it was impossible) -> Wickham (534ms) Whom did he marry? Jerry -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (Jerry, [is] the married man with, whom) -> Jerry (535ms) Whom did he marry? twelve children -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (twelve children, married, all of whom) -> twelve children (535ms) Whom did he marry? 16 known children -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (16 known children, married, most of whom) -> 16 known children (535ms) Whom did he marry? Lindsay -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (Lindsay, [is] a married woman with, whom) -> Lindsay (535ms) Whom did he marry? a rip -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (a rip, marries, whom) -> a rip (534ms) Whom did he marry? a young lady -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (a young lady, to marry, the man whom her father has selected) -> a young lady (535ms) Whom did he marry? Sweden -0.0 Whom did he marry? -> $x: ($x, marry, stockholm) -> (Sweden, married in, Stockholm) -> Sweden (534ms) Whom did he marry? two brothers -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (two brothers, was married, one of whom) -> two brothers (535ms) Whom did he marry? A seducer -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (A seducer, must marry, an unengaged virgin whom he seduces) -> A seducer (535ms) Whom did he marry? thirteen children -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (thirteen children, married, most of whom) -> thirteen children (535ms) Whom did he marry? James Mayfield -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (James Mayfield, [is] a married man with, whom) -> James Mayfield (534ms) Whom did he marry? ten children -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (ten children, married, all of whom) -> ten children (535ms) Whom did he marry? an adulteress -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (an adulteress, to marry, a man with whom she committed adultery) -> an adulteress (535ms) Whom did he marry? fair opportunities -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (fair opportunities, may marry, WHOM SHE LIKES.) -> fair opportunities (535ms) Whom did he marry? business -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (business, marries, whom) -> business (535ms) Whom did he marry? four children -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (four children, married, all of whom) -> four children (535ms) Whom did he marry? eight children -0.0 Whom did he marry? -> $x: ($x, marry, whom) -> (eight children, married, all of whom) -> eight children (535ms) Where was Rachel Carson home? Wells -1.0 Where was Rachel Carson home? -> $x: ($x, be home, rachel carson) -> (Wells, is home to, the Rachel Carson National Wildlife Refuge) -> Wells (1036ms) Where was Rachel Carson home? Self-anchored suspension bridge -1.111111111109 Where was Rachel Carson home? -> $x: ($x, type, rachel carson) -> (Self-anchored suspension bridge, Bridges of this type, Rachel Carson Bridge) -> Self-anchored suspension bridge (1036ms) Where was Rachel Carson home? the years -1.3333333333330002 Where was Rachel Carson home? -> $x: ($x, be the home of, carson) -> (the years, was the home of, Johnny Carson) -> the years (1147ms) Where was Rachel Carson home? the starting point -1.3333333333330002 Where was Rachel Carson home? -> $x: ($x, be the home of, carson) -> (the starting point, was the boyhood home of, Kit Carson) -> the starting point (1147ms) Where was Rachel Carson home? a captivating herd -1.5555555555499998 Where was Rachel Carson home? -> $x: (rachel carson, be home, $x) -> (the Rachel Carson Reserve, is home to, a captivating herd) -> a captivating herd (1917ms) Where was Rachel Carson home? scores -1.5555555555499998 Where was Rachel Carson home? -> $x: (rachel carson, be home, $x) -> (The Rachel Carson Reserve, is home to, scores) -> scores (1917ms) Where was Rachel Carson home? Organization -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Middle School, Type, Organization) -> Organization (3484ms) Where was Rachel Carson home? Influence Node -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Notable types, Influence Node) -> Influence Node (3464ms) Where was Rachel Carson home? Canonical Version -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Notable types, Canonical Version) -> Canonical Version (3476ms) Where was Rachel Carson home? Building -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Homestead, Notable types, Building) -> Building (3476ms) Where was Rachel Carson home? word -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Louise Carson, Type, word) -> word (3481ms) Where was Rachel Carson home? Body Of Water -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Run, Type, Body Of Water) -> Body Of Water (3476ms) Where was Rachel Carson home? NRIS Listing -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson House, Type, NRIS Listing) -> NRIS Listing (2152ms) Where was Rachel Carson home? Project focus -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Homestead, Type, Project focus) -> Project focus (3476ms) Where was Rachel Carson home? Award Winner -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Type, Award Winner) -> Award Winner (3168ms) Where was Rachel Carson home? Trail -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Trail, Notable types, Trail) -> Trail (3168ms) Where was Rachel Carson home? Cataloged instance -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Notable types, Cataloged instance) -> Cataloged instance (3480ms) Where was Rachel Carson home? River -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Run, Notable types, River) -> River (3464ms) Where was Rachel Carson home? Structure -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Bridge, Type, Structure) -> Structure (3481ms) Where was Rachel Carson home? KWTopic -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Notable types, KWTopic) -> KWTopic (3484ms) Where was Rachel Carson home? Museum -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Homestead, Type, Museum) -> Museum (3464ms) Where was Rachel Carson home? Book -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Type, Book) -> Book (3476ms) Where was Rachel Carson home? NNDB Person -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Type, NNDB Person) -> NNDB Person (1944ms) Where was Rachel Carson home? Deceased Person -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Type, Deceased Person) -> Deceased Person (3484ms) Where was Rachel Carson home? Musical Recording -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Type, Musical Recording) -> Musical Recording (3484ms) Where was Rachel Carson home? Book Edition -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson: a biography, Type, Book Edition) -> Book Edition (3481ms) Where was Rachel Carson home? Person -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Notable types, Person) -> Person (2015ms) Where was Rachel Carson home? Name source -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Notable types, Name source) -> Name source (3476ms) Where was Rachel Carson home? Bridge -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Bridge, Type, Bridge) -> Bridge (3476ms) Where was Rachel Carson home? Elevation Range -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Trail, Type, Elevation Range) -> Elevation Range (1917ms) Where was Rachel Carson home? TV Episode -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson's Silent Spring, Notable types, TV Episode) -> TV Episode (3464ms) Where was Rachel Carson home? Award Nominee -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Notable types, Award Nominee) -> Award Nominee (3484ms) Where was Rachel Carson home? Organization committee -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Awards Council, Type, Organization committee) -> Organization committee (3484ms) Where was Rachel Carson home? Namesake -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Prize, Type, Namesake) -> Namesake (3481ms) Where was Rachel Carson home? Image -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (RachelCarsonHomestead, Type, Image) -> Image (3484ms) Where was Rachel Carson home? Geographical Feature -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Run, Type, Geographical Feature) -> Geographical Feature (3464ms) Where was Rachel Carson home? Award -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Prize, Type, Award) -> Award (3481ms) Where was Rachel Carson home? Content -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel carson house md, Type, Content) -> Content (3488ms) Where was Rachel Carson home? Listed Site -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Homestead, Type, Listed Site) -> Listed Site (3484ms) Where was Rachel Carson home? Hall of fame inductee -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Notable types, Hall of fame inductee) -> Hall of fame inductee (3480ms) Where was Rachel Carson home? Release track -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Type, Release track) -> Release track (3168ms) Where was Rachel Carson home? Location -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson House, Type, Location) -> Location (3480ms) Where was Rachel Carson home? Employer -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Middle School, Type, Employer) -> Employer (3464ms) Where was Rachel Carson home? Written Work -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Notable types, Written Work) -> Written Work (3484ms) Where was Rachel Carson home? Award category -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Prize, Type, Award category) -> Award category (2152ms) Where was Rachel Carson home? Tourist attraction -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Homestead, Type, Tourist attraction) -> Tourist attraction (3484ms) Where was Rachel Carson home? Educational Institution -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Middle School, Type, Educational Institution) -> Educational Institution (3484ms) Where was Rachel Carson home? School -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson Middle School, Type, School) -> School (3485ms) Where was Rachel Carson home? Building Occupant -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Type, Building Occupant) -> Building Occupant (3484ms) Where was Rachel Carson home? Author -1.6666666666589998 Where was Rachel Carson home? -> $x: (rachel carson, type, $x) -> (Rachel Carson, Notable types, Author) -> Author (3476ms) Where was Rachel Carson home? The base -1.6666666666660002 Where was Rachel Carson home? -> $x: ($x, be home, carson) -> (The base, is also home to, the Charles C. Carson Center) -> The base (3488ms) Where was Rachel Carson home? Colorado Springs -1.6666666666660002 Where was Rachel Carson home? -> $x: ($x, be home, carson) -> (Colorado Springs, is home to, Fort Carson Army base) -> Colorado Springs (3488ms) Where was Rachel Carson home? Burlington -1.6666666666660002 Where was Rachel Carson home? -> $x: ($x, be home, carson) -> (Burlington, is home to, the Kit Carson County Carousel) -> Burlington (3488ms) Where was Rachel Carson home? Hugo -1.6666666666660002 Where was Rachel Carson home? -> $x: ($x, be home, carson) -> (Hugo, is the winter home to, the Carson & Barnes Circus) -> Hugo (3488ms) Where was Rachel Carson home? Colorado -1.6666666666660002 Where was Rachel Carson home? -> $x: ($x, be home, carson) -> (Colorado, is home to, Ft . Carson) -> Colorado (3488ms) Where was Rachel Carson home? the Regiment -1.6666666666660002 Where was Rachel Carson home? -> $x: ($x, be home, carson) -> (the Regiment, are now returning home to, Ft Carson) -> the Regiment (3488ms) Where was Rachel Carson home? David Carson Design -1.6666666666660002 Where was Rachel Carson home? -> $x: ($x, be home, carson) -> (David Carson Design, is still home to, Carson) -> David Carson Design (3488ms) Where was Rachel Carson home? Middagh Street -1.6666666666660002 Where was Rachel Carson home? -> $x: ($x, be home, carson) -> (Middagh Street, was home to, Carson McCullers) -> Middagh Street (3488ms) Where was Rachel Carson home? NC -1.6666666666660002 Where was Rachel Carson home? -> $x: ($x, be home, carson) -> (NC, was home to, the Carson family) -> NC (3488ms) Where was Rachel Carson home? Taos -1.6666666666660002 Where was Rachel Carson home? -> $x: ($x, be home, carson) -> (Taos, was home to, Kit Carson) -> Taos (3488ms) Where was Rachel Carson home? The Carson River Watershed -1.6666666666660002 Where was Rachel Carson home? -> $x: ($x, be home, carson) -> (The Carson River Watershed, is home to, the Carson River) -> The Carson River Watershed (3488ms) Where was Rachel Carson home? Common stock -1.7777777777750001 Where was Rachel Carson home? -> $x: ($x, type, carson) -> (Common stock, Issues of this type, CARSON CUMBERBATCH & CO PLC Common Stock) -> Common stock (3492ms) Where was Rachel Carson home? Floribunda -1.7777777777750001 Where was Rachel Carson home? -> $x: ($x, type, carson) -> (Floribunda, Roses of this type, Rosa 'Violet Carson') -> Floribunda (3492ms) Where was Rachel Carson home? the regiment -1.888888888883 Where was Rachel Carson home? -> $x: (carson, be the home of, $x) -> (Camp Carson, was the new home of, the regiment) -> the regiment (3495ms) Where was Rachel Carson home? a writer -2.111111111103 Where was Rachel Carson home? -> $x: (carson, be example of, $x) -> (Carson McCullers, is the quintessential example of, a writer) -> a writer (3495ms) Where was Rachel Carson home? a victorian home -2.111111111103 Where was Rachel Carson home? -> $x: (carson, be example of, $x) -> (The carson mansion, is an example of, a victorian home) -> a victorian home (3495ms) Where was Rachel Carson home? meat -2.222222222214 Where was Rachel Carson home? -> $x: (carson, be type of, $x) -> (Bowl of the wife of Kit Carson, is a type of, meat) -> meat (3495ms) Where was Rachel Carson home? company -2.222222222214 Where was Rachel Carson home? -> $x: (carson, be type of, $x) -> (Matt Carson Profusion Customs, is the type of, company) -> company (3495ms) Where was Rachel Carson home? buildings -2.222222222215 Where was Rachel Carson home? -> $x: (carson, be house in, $x) -> (The old Carson-Tahoe Hospital, was housed in, buildings) -> buildings (3495ms) Where was Rachel Carson home? a large assortment -2.2222222222159997 Where was Rachel Carson home? -> $x: (carson, be home, $x) -> (Carson, is home to, a large assortment) -> a large assortment (3495ms) Where was Rachel Carson home? nine divisions -2.2222222222159997 Where was Rachel Carson home? -> $x: (carson, be home, $x) -> (its history Fort Carson, has been home to, nine divisions) -> nine divisions (3495ms) Where was Rachel Carson home? 9,000 Axis prisoners -2.2222222222159997 Where was Rachel Carson home? -> $x: (carson, be home, $x) -> (Camp Carson, was also home to nearly, 9,000 Axis prisoners) -> 9,000 Axis prisoners (3495ms) Where was Rachel Carson home? Carson -2.2222222222159997 Where was Rachel Carson home? -> $x: (carson, be home, $x) -> (David Carson Design, is still home to, Carson) -> Carson (3499ms) Where was Rachel Carson home? the Home Depot Center -2.2222222222159997 Where was Rachel Carson home? -> $x: (carson, be home, $x) -> (Carson, is also home to, the Home Depot Center) -> the Home Depot Center (3499ms) Where was Rachel Carson home? the first Nevada settlement -2.2222222222159997 Where was Rachel Carson home? -> $x: (carson, be home, $x) -> (Carson Valley, is home of, the first Nevada settlement) -> the first Nevada settlement (3499ms) Where was Rachel Carson home? furlough -2.2222222222159997 Where was Rachel Carson home? -> $x: (carson, be home, $x) -> (John Carson, is home on, furlough) -> furlough (3499ms) Where was Rachel Carson home? 15 officers -2.2222222222159997 Where was Rachel Carson home? -> $x: (carson, be home, $x) -> (Carson City, is home to, 15 officers) -> 15 officers (3499ms) Where was Rachel Carson home? prom -2.2222222222159997 Where was Rachel Carson home? -> $x: (carson, be home, $x) -> (Jake and Carson, were heading home from, prom) -> prom (3495ms) Where was Rachel Carson home? the brand -2.2222222222159997 Where was Rachel Carson home? -> $x: (carson, be home, $x) -> (Carson, would be a perfect home for, the brand) -> the brand (3499ms) Where was Rachel Carson home? Wheeler Peak -2.2222222222159997 Where was Rachel Carson home? -> $x: (carson, be home, $x) -> (Carson National Forest, is home to, Wheeler Peak) -> Wheeler Peak (3499ms) Where was Rachel Carson home? Stickman -2.2222222222159997 Where was Rachel Carson home? -> $x: (carson, be home, $x) -> (Carson, used to be home to, Stickman) -> Stickman (3499ms) Where was Rachel Carson home? the Carson River -2.2222222222159997 Where was Rachel Carson home? -> $x: (carson, be home, $x) -> (The Carson River Watershed, is home to, the Carson River) -> the Carson River (3499ms) Where was Rachel Carson home? the rare Lahontan trout -2.2222222222159997 Where was Rachel Carson home? -> $x: (carson, be home, $x) -> (the Carson River, is home to, the rare Lahontan trout) -> the rare Lahontan trout (3499ms) Where was Rachel Carson home? the families -2.2222222222159997 Where was Rachel Carson home? -> $x: (carson, be home, $x) -> (Fort Carson, is home to, the families) -> the families (3495ms) Where was Rachel Carson home? the largest collection -2.2222222222159997 Where was Rachel Carson home? -> $x: (carson, be home, $x) -> (Carson City, is home to, the largest collection) -> the largest collection (3495ms) Where was Rachel Carson home? Statistical region -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Notable types, Statistical region) -> Statistical region (3515ms) Where was Rachel Carson home? Business Operation -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson's, Type, Business Operation) -> Business Operation (3513ms) Where was Rachel Carson home? Noble person -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Edward Carson, Baron Carson, Type, Noble person) -> Noble person (3515ms) Where was Rachel Carson home? Transit Stop -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Notable types, Transit Stop) -> Transit Stop (3511ms) Where was Rachel Carson home? Musical Album -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson?, Notable types, Musical Album) -> Musical Album (3515ms) Where was Rachel Carson home? Top Architectural City -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Notable types, Top Architectural City) -> Top Architectural City (3509ms) Where was Rachel Carson home? TV Actor -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Mindy Carson, Type, TV Actor) -> TV Actor (3513ms) Where was Rachel Carson home? topic -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Type, topic) -> topic (3513ms) Where was Rachel Carson home? City/Town/Village -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Type, City/Town/Village) -> City/Town/Village (3511ms) Where was Rachel Carson home? Politician -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Edward Carson, Baron Carson, Type, Politician) -> Politician (3513ms) Where was Rachel Carson home? Governmental Jurisdiction -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Notable types, Governmental Jurisdiction) -> Governmental Jurisdiction (3511ms) Where was Rachel Carson home? Dated location -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Type, Dated location) -> Dated location (3515ms) Where was Rachel Carson home? KWSentence -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson^?, Type, KWSentence) -> KWSentence (3509ms) Where was Rachel Carson home? Film actor -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Towa Carson, Type, Film actor) -> Film actor (3511ms) Where was Rachel Carson home? Chivalric Order Member -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Edward Carson, Baron Carson, Type, Chivalric Order Member) -> Chivalric Order Member (3515ms) Where was Rachel Carson home? Capital of administrative division -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Notable types, Capital of administrative division) -> Capital of administrative division (3513ms) Where was Rachel Carson home? HUD County Place -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Notable types, HUD County Place) -> HUD County Place (3513ms) Where was Rachel Carson home? Fictional Character -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Larry Carson, Type, Fictional Character) -> Fictional Character (3515ms) Where was Rachel Carson home? dbpedia_import -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Type, dbpedia_import) -> dbpedia_import (3509ms) Where was Rachel Carson home? School mascot -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Type, School mascot) -> School mascot (3513ms) Where was Rachel Carson home? HUD Foreclosure Area -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Type, HUD Foreclosure Area) -> HUD Foreclosure Area (3515ms) Where was Rachel Carson home? EP -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson?, Release type, EP) -> EP (3511ms) Where was Rachel Carson home? Theater Character -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Notable types, Theater Character) -> Theater Character (3509ms) Where was Rachel Carson home? TV Character -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Notable types, TV Character) -> TV Character (3511ms) Where was Rachel Carson home? Film character -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Edward Carson, Baron Carson, Notable types, Film character) -> Film character (3513ms) Where was Rachel Carson home? Organization extra -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson's, Notable types, Organization extra) -> Organization extra (3515ms) Where was Rachel Carson home? Given Name -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Type, Given Name) -> Given Name (3507ms) Where was Rachel Carson home? Musician -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Mindy Carson, Type, Musician) -> Musician (3502ms) Where was Rachel Carson home? Musical Artist -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Kendel Carson, Type, Musical Artist) -> Musical Artist (3513ms) Where was Rachel Carson home? Book Character -2.333333333325 Where was Rachel Carson home? -> $x: (carson, type, $x) -> (Carson, Notable types, Book Character) -> Book Character (3513ms) Where was Rachel Carson home? Film -2.77777777777 Where was Rachel Carson home? -> $x: (ben carson, type, $x) -> (Ben Carson, Type, Film) -> Film (3520ms) Where was Rachel Carson home? Organization leader -2.77777777777 Where was Rachel Carson home? -> $x: (ben carson, type, $x) -> (Ben Carson, Notable types, Organization leader) -> Organization leader (3519ms) Where was Rachel Carson home? TV Program -2.77777777777 Where was Rachel Carson home? -> $x: (ben carson, type, $x) -> (Gifted Hands: The Ben Carson Story, Notable types, TV Program) -> TV Program (3519ms) Where was Rachel Carson home? Person or entity appearing in film -2.77777777777 Where was Rachel Carson home? -> $x: (ben carson, type, $x) -> (Ben Carson, Type, Person or entity appearing in film) -> Person or entity appearing in film (3519ms) Where was Rachel Carson home? Film music contributor -2.77777777777 Where was Rachel Carson home? -> $x: (ben carson, type, $x) -> (Ben Carson, Notable types, Film music contributor) -> Film music contributor (3519ms) Where was Rachel Carson home? Processed with Review Queue -2.77777777777 Where was Rachel Carson home? -> $x: (ben carson, type, $x) -> (Ben Carson, Type, Processed with Review Queue) -> Processed with Review Queue (3520ms) Where was Rachel Carson home? Concept -2.77777777777 Where was Rachel Carson home? -> $x: (ben carson, type, $x) -> (Ben Carson, Type, Concept) -> Concept (3519ms) Where was Rachel Carson home? Resource -2.77777777777 Where was Rachel Carson home? -> $x: (ben carson, type, $x) -> (Ben Carson, Type, Resource) -> Resource (3517ms) Where was Rachel Carson home? Physician -2.77777777777 Where was Rachel Carson home? -> $x: (ben carson, type, $x) -> (Ben Carson, Notable types, Physician) -> Physician (3520ms) Where was Rachel Carson home? Award-Nominated Work -2.77777777777 Where was Rachel Carson home? -> $x: (ben carson, type, $x) -> (Gifted Hands: The Ben Carson Story, Type, Award-Nominated Work) -> Award-Nominated Work (3519ms) Where was Rachel Carson home? Film subject -2.77777777777 Where was Rachel Carson home? -> $x: (ben carson, type, $x) -> (Ben Carson, Type, Film subject) -> Film subject (3520ms) Where was Rachel Carson home? Academic -2.77777777777 Where was Rachel Carson home? -> $x: (ben carson, type, $x) -> (Ben Carson, Notable types, Academic) -> Academic (3520ms) Where was Rachel Carson home? Netflix Title -2.77777777777 Where was Rachel Carson home? -> $x: (ben carson, type, $x) -> (Gifted Hands: The Ben Carson Story, Notable types, Netflix Title) -> Netflix Title (3520ms) Where was Rachel Carson home? School district -2.77777777777 Where was Rachel Carson home? -> $x: (ben carson, type, $x) -> (Clay Community Schools Of Columbus-Ben Carson Academy, Notable types, School district) -> School district (3519ms) Where is the Holland Tunnel? The second I 0.333333333333 Where is the Holland Tunnel? -> $x: ($x, get, holland tunnel) -> (The second I, got through, the Holland Tunnel) -> The second I (844ms) Where is the Holland Tunnel? Hudson River 0.333333333333 Where is the Holland Tunnel? -> $x: ($x, contain, holland tunnel) -> (Hudson River, Contains, Holland Tunnel) -> Hudson River (986ms) Where is the Holland Tunnel? got rides 0.333333333333 Where is the Holland Tunnel? -> $x: ($x, first make, holland tunnel) -> (got rides, also made my first trip through, the Holland Tunnel) -> got rides (1081ms) Where is the Holland Tunnel? Two cars 0.333333333333 Where is the Holland Tunnel? -> $x: ($x, go, holland tunnel) -> (Two cars, are going through, the Holland Tunnel) -> Two cars (1081ms) Where is the Holland Tunnel? Holland Tunnel 0.333333333333 Where is the Holland Tunnel? -> $x: ($x, event, holland tunnel) -> (Holland Tunnel, Events, Holland Tunnel fire) -> Holland Tunnel (986ms) Where is the Holland Tunnel? Ole Singstad 0.333333333333 Where is the Holland Tunnel? -> $x: ($x, design, holland tunnel) -> (Ole Singstad, Structures Designed, Holland Tunnel) -> Ole Singstad (987ms) Where is the Holland Tunnel? Clifford Milburn Holland 0.333333333333 Where is the Holland Tunnel? -> $x: ($x, design, holland tunnel) -> (Clifford Milburn Holland, Structures Designed, Holland Tunnel) -> Clifford Milburn Holland (986ms) Where is the Holland Tunnel? movies 0.22222222222100002 Where is the Holland Tunnel? -> $x: (holland tunnel, be in in, $x) -> (The Holland Tunnel, has been featured in, movies) -> movies (1143ms) Where is the Holland Tunnel? 1927 0.22222222222100002 Where is the Holland Tunnel? -> $x: (holland tunnel, be in in, $x) -> (The Holland Tunnel, was completed in, 1927) -> 1927 (1143ms) Where is the Holland Tunnel? the exact change lane 0.22222222222100002 Where is the Holland Tunnel? -> $x: (holland tunnel, be in in, $x) -> (the Holland Tunnel, is stuck in, the exact change lane) -> the exact change lane (1143ms) Where is the Holland Tunnel? Old Town 0.22222222222100002 Where is the Holland Tunnel? -> $x: (holland tunnel, be in in, $x) -> (Holland Tunnel Gallery, are in, Old Town) -> Old Town (1143ms) Where is the Holland Tunnel? the 1920 's 0.22222222222100002 Where is the Holland Tunnel? -> $x: (holland tunnel, be in in, $x) -> (the Holland Tunnel, was built in, the 1920 's) -> the 1920 's (1143ms) Where is the Holland Tunnel? Hoboken -0.0 Where is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (Hoboken, is located between, the Holland and Lincoln Tunnels) -> Hoboken (1226ms) Where is the Holland Tunnel? Canal Street -0.0 Where is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (Canal Street, will still be able to enter, the Holland Tunnel) -> Canal Street (1226ms) Where is the Holland Tunnel? Muslims -0.0 Where is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (Muslims, should be detoured through, Holland Tunnel ,than) -> Muslims (1211ms) Where is the Holland Tunnel? a bar -0.0 Where is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (a bar, is worse than, the Holland Tunnel) -> a bar (1211ms) Where is the Holland Tunnel? The theatre -0.0 Where is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (The theatre, is just minutes from, the Holland/Lincoln Tunnels) -> The theatre (1211ms) Where is the Holland Tunnel? Rory -0.0 Where is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (Rory, is driving home through, the Holland Tunnel) -> Rory (1226ms) Where is the Holland Tunnel? The other lanes -0.0 Where is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (The other lanes, are for, Holland Tunnel) -> The other lanes (1226ms) Where is the Holland Tunnel? Sheraton New York -0.0 Where is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (Sheraton New York, is a half mile from, the Holland Tunnel) -> Sheraton New York (1226ms) Where is the Holland Tunnel? six-axle trucks -0.0 Where is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (six-axle trucks, are prohibited from using, the Holland Tunnel) -> six-axle trucks (1226ms) Where is the Holland Tunnel? president -0.0 Where is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (president, was planning to extend, New York?s Holland Tunnel) -> president (1226ms) Where is the Holland Tunnel? Newport area -0.0 Where is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (Newport area, is right next to, Holland Tunnel) -> Newport area (1226ms) Where is the Holland Tunnel? The billboard -0.0 Where is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (The billboard, is near, the Holland Tunnel) -> The billboard (1226ms) Where is the Holland Tunnel? only cars and buses -0.0 Where is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (only cars and buses, were permitted to use, the Holland Tunnel) -> only cars and buses (1226ms) Where is the Holland Tunnel? The store -0.0 Where is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (The store, is near, the Holland Tunnel) -> The store (1211ms) Where is the Holland Tunnel? such tunnels -0.0 Where is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (such tunnels, were ?as big as, the Holland and Lincoln tunnels) -> such tunnels (1211ms) Where is the Holland Tunnel? a bomb -0.0 Where is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (a bomb, were headed for, the Holland Tunnel) -> a bomb (1211ms) Where is the Holland Tunnel? Items -0.0 Where is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (Items, may be picked up from, the Holland Tunnel Police Command) -> Items (1211ms) Where is the Holland Tunnel? New York City -0.0 Where is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (New York City, here is to take, the Holland Tunnel) -> New York City (1211ms) Where is the Holland Tunnel? the left -0.0 Where is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (the left, is, Holland Tunnel) -> the left (1226ms) Where is the Holland Tunnel? Nude Anna Nicole -0.0 Where is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (Nude Anna Nicole, was, the Holland Tunnel) -> Nude Anna Nicole (1211ms) Where is the Holland Tunnel? The basic trajectory -0.0 Where is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (The basic trajectory, was from, the Holland Tunnel) -> The basic trajectory (1211ms) Where is the Holland Tunnel? Slated for destruction -0.0 Where is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (Slated for destruction, were, the Holland and Lincoln Tunnels) -> Slated for destruction (1226ms) Where is the Holland Tunnel? the Village -0.0 Where is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (the Village, is only, five Holland Tunnel minutes) -> the Village (1211ms) Where is the Holland Tunnel? Officer Donald Foreman -0.0 Where is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (Officer Donald Foreman, was assigned to, the Holland Tunnel) -> Officer Donald Foreman (1211ms) Where is the Holland Tunnel? the canine -0.0 Where is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (the canine, was spotted down near, the Holland Tunnel) -> the canine (1226ms) Where is the Holland Tunnel? the wait -0.0 Where is the Holland Tunnel? -> $x: ($x, be be, holland tunnel) -> (the wait, is much shorter at, the Holland Tunnel) -> the wait (1211ms) Where is the Holland Tunnel? like -0.333333333333 Where is the Holland Tunnel? -> $x: ($x, happen at, holland tunnel) -> (like, happens at, the Holland Tunnel) -> like (1226ms) When was Queen Victoria born? the Palace 1.33333333333 When was Queen Victoria born? -> $x: (queen victoria, be bear in, $x) -> (Queen Victoria, was born in, the Palace) -> the Palace (1754ms) When was Queen Victoria born? 1857. 1.33333333333 When was Queen Victoria born? -> $x: (queen victoria, be bear in, $x) -> (Queen Victoria, was born in, 1857.) -> 1857. (1674ms) When was Queen Victoria born? England 1.33333333333 When was Queen Victoria born? -> $x: (queen victoria, be bear in, $x) -> (Queen Victoria, was born in, England) -> England (1674ms) When was Queen Victoria born? London 1.33333333333 When was Queen Victoria born? -> $x: (queen victoria, be bear in, $x) -> (Queen Victoria, was born in, London) -> London (1674ms) When was Queen Victoria born? Kensington Palace 1.33333333333 When was Queen Victoria born? -> $x: (queen victoria, be bear in, $x) -> (Queen Victoria, was born in, Kensington Palace) -> Kensington Palace (1674ms) When was Queen Victoria born? Kensington 1.33333333333 When was Queen Victoria born? -> $x: (queen victoria, be bear in, $x) -> (Queen Victoria, was born in, Kensington) -> Kensington (1523ms) When was Queen Victoria born? 1819 1.33333333333 When was Queen Victoria born? -> $x: (queen victoria, be bear in, $x) -> (Queen Victoria, was born in, 1819) -> 1819 (1754ms) When was Queen Victoria born? celebrity status 1.0 When was Queen Victoria born? -> $x: (queen victoria, live in, $x) -> (Queen Victoria, truly lived her life in, celebrity status) -> celebrity status (1781ms) When was Queen Victoria born? the 24 May 1.0 When was Queen Victoria born? -> $x: (queen victoria, be bear on, $x) -> (Queen Victoria, was born on, the 24 May) -> the 24 May (1811ms) When was Queen Victoria born? May 24 , 1819 1.0 When was Queen Victoria born? -> $x: (queen victoria, be bear on, $x) -> (Queen Victoria, was born on, May 24 , 1819) -> May 24 , 1819 (1831ms) When was Queen Victoria born? 24 May 1819 1.0 When was Queen Victoria born? -> $x: (queen victoria, be bear on, $x) -> (Queen Victoria, was born on, 24 May 1819) -> 24 May 1819 (1811ms) When was Queen Victoria born? Scotland 1.0 When was Queen Victoria born? -> $x: (queen victoria, live in, $x) -> (Queen Victoria, lived in, Scotland) -> Scotland (1811ms) When was Queen Victoria born? the 21st January 0.888888888889 When was Queen Victoria born? -> $x: (queen victoria, die on, $x) -> (Queen Victoria, died on, the 21st January) -> the 21st January (2767ms) When was Queen Victoria born? p.300 0.888888888889 When was Queen Victoria born? -> $x: (queen victoria, die on, $x) -> (Queen Victoria, dies on, p.300) -> p.300 (2305ms) When was Queen Victoria born? 14th 0.888888888889 When was Queen Victoria born? -> $x: (queen victoria, die on, $x) -> (Queen Victoria?s beloved husband Albert, died on, 14th) -> 14th (2305ms) When was Queen Victoria born? January 22 , 1901 0.888888888889 When was Queen Victoria born? -> $x: (queen victoria, die on, $x) -> (( Queen Victoria, died on, January 22 , 1901) -> January 22 , 1901 (2684ms) When was Queen Victoria born? the 22nd 0.888888888889 When was Queen Victoria born? -> $x: (queen victoria, die on, $x) -> (its namesake Queen Victoria, died on, the 22nd) -> the 22nd (2304ms) When was Queen Victoria born? January 22nd , 1901 0.888888888889 When was Queen Victoria born? -> $x: (queen victoria, die on, $x) -> (the Empress-Queen Victoria, died on, January 22nd , 1901) -> January 22nd , 1901 (2684ms) When was Queen Victoria born? May 24th 0.888888888889 When was Queen Victoria born? -> $x: ($x, be birthday of, queen victoria) -> (May 24th, was the birthday of, Queen Victoria) -> May 24th (2304ms) When was Queen Victoria born? 22 January 1901 0.888888888889 When was Queen Victoria born? -> $x: (queen victoria, die on, $x) -> (Queen Victoria, died on, 22 January 1901) -> 22 January 1901 (2061ms) When was Queen Victoria born? 22nd January 1901 0.888888888889 When was Queen Victoria born? -> $x: (queen victoria, die on, $x) -> (Queen Victoria, died on, 22nd January 1901) -> 22nd January 1901 (2767ms) When was Queen Victoria born? typhoid 0.888888888889 When was Queen Victoria born? -> $x: (queen victoria, die of, $x) -> (Queen Victoria?s husband, died of, typhoid) -> typhoid (1873ms) When was Queen Victoria born? 22 January 0.888888888889 When was Queen Victoria born? -> $x: (queen victoria, die on, $x) -> (Queen Victoria, died on, 22 January) -> 22 January (1873ms) When was Queen Victoria born? 22nd January 0.888888888889 When was Queen Victoria born? -> $x: (queen victoria, die on, $x) -> (Queen Victoria, died on, 22nd January) -> 22nd January (2767ms) When was Queen Victoria born? old age 0.888888888889 When was Queen Victoria born? -> $x: (queen victoria, die of, $x) -> (Queen Victoria, died of, old age) -> old age (1873ms) When was Queen Victoria born? 1884 0.777777777778 When was Queen Victoria born? -> $x: (queen victoria, die in, $x) -> (Queen Victoria?s son Leopold, died in, 1884) -> 1884 (2778ms) When was Queen Victoria born? the Halifax harbour 0.777777777778 When was Queen Victoria born? -> $x: (queen victoria, do, $x) -> (Queen Victoria, will do a tour of, the Halifax harbour) -> the Halifax harbour (2787ms) When was Queen Victoria born? King Edward VII 0.777777777778 When was Queen Victoria born? -> $x: (queen victoria, do, $x) -> (Queen Victoria, as did, King Edward VII) -> King Edward VII (2787ms) When was Queen Victoria born? the same 0.777777777778 When was Queen Victoria born? -> $x: (queen victoria, do, $x) -> (Queen Victoria, did, the same) -> the same (2778ms) When was Queen Victoria born? St . Edward?s Crown 0.777777777778 When was Queen Victoria born? -> $x: (queen victoria, do, $x) -> (Queen Victoria, did wear, St . Edward?s Crown) -> St . Edward?s Crown (2778ms) When was Queen Victoria born? women 0.777777777778 When was Queen Victoria born? -> $x: (queen victoria, do, $x) -> (Queen Victoria, did n?t think, women) -> women (2778ms) When was Queen Victoria born? January , 1901 0.777777777778 When was Queen Victoria born? -> $x: (queen victoria, die in, $x) -> (Queen Victoria, died in, January , 1901) -> January , 1901 (2782ms) When was Queen Victoria born? Sir Thomas Brock 0.777777777778 When was Queen Victoria born? -> $x: (queen victoria, do, $x) -> (Queen Victoria, was done by, Sir Thomas Brock) -> Sir Thomas Brock (2782ms) When was Queen Victoria born? the age 0.777777777778 When was Queen Victoria born? -> $x: (queen victoria, do, $x) -> (Queen Victoria, did so up until, the age) -> the age (2778ms) When was Queen Victoria born? the Villa Svezia 0.777777777778 When was Queen Victoria born? -> $x: (queen victoria, die in, $x) -> (Queen Victoria, died in, the Villa Svezia) -> the Villa Svezia (2787ms) When was Queen Victoria born? a great deal 0.777777777778 When was Queen Victoria born? -> $x: (queen victoria, do, $x) -> (Queen Victoria, did, a great deal) -> a great deal (2787ms) When was Queen Victoria born? 1861 0.777777777778 When was Queen Victoria born? -> $x: (queen victoria, die in, $x) -> (Queen Victoria 's husband, died in, 1861) -> 1861 (2787ms) When was Queen Victoria born? England 22.1.1901 0.777777777778 When was Queen Victoria born? -> $x: (queen victoria, die in, $x) -> (Queen Victoria Alexandrina, died in, England 22.1.1901) -> England 22.1.1901 (2772ms) When was Queen Victoria born? Queen Mary 0.777777777778 When was Queen Victoria born? -> $x: (queen victoria, do, $x) -> (Queen Victoria?s small crown, did, Queen Mary) -> Queen Mary (2782ms) When was Queen Victoria born? January and Churchill 0.777777777778 When was Queen Victoria born? -> $x: (queen victoria, die in, $x) -> (Queen Victoria, died in, January and Churchill) -> January and Churchill (2778ms) When was Queen Victoria born? the mid-Victorian 0.777777777778 When was Queen Victoria born? -> $x: (queen victoria, die in, $x) -> (Queen Victoria, was known to have died in, the mid-Victorian) -> the mid-Victorian (2772ms) When was Queen Victoria born? the unfounded bad press 0.777777777778 When was Queen Victoria born? -> $x: (queen victoria, do, $x) -> (Queen Victoria, did much to reverse, the unfounded bad press) -> the unfounded bad press (2782ms) When was Queen Victoria born? the luxury 0.777777777778 When was Queen Victoria born? -> $x: (queen victoria, do, $x) -> (Queen Victoria, did n?t even get, the luxury) -> the luxury (2778ms) When was Queen Victoria born? a Harbour Tour 0.777777777778 When was Queen Victoria born? -> $x: (queen victoria, do, $x) -> (Queen Victoria, will do, a Harbour Tour) -> a Harbour Tour (2787ms) When was Queen Victoria born? January 1901 0.777777777778 When was Queen Victoria born? -> $x: (queen victoria, die in, $x) -> (Queen Victoria, had died in, January 1901) -> January 1901 (2782ms) When was Queen Victoria born? January of 1901 0.777777777778 When was Queen Victoria born? -> $x: (queen victoria, die in, $x) -> (Queen Victoria, died in, January of 1901) -> January of 1901 (2772ms) When was Queen Victoria born? former residences 0.777777777778 When was Queen Victoria born? -> $x: (queen victoria, do, $x) -> (Queen Victoria, as do, former residences) -> former residences (2782ms) When was Queen Victoria born? 19th Century America 0.777777777778 When was Queen Victoria born? -> $x: (queen victoria, do, $x) -> (Queen Victoria, got to do with, 19th Century America) -> 19th Century America (2782ms) When was Queen Victoria born? so 0.777777777778 When was Queen Victoria born? -> $x: (queen victoria, do, $x) -> (Queen Victoria, did, so) -> so (2787ms) When was Queen Victoria born? January 0.777777777778 When was Queen Victoria born? -> $x: (queen victoria, die in, $x) -> (Queen Victoria, died in, January) -> January (2786ms) When was Queen Victoria born? the early development 0.777777777778 When was Queen Victoria born? -> $x: (queen victoria, do, $x) -> (Queen Victoria, did much to promote, the early development) -> the early development (2782ms) When was Queen Victoria born? 1901 0.777777777778 When was Queen Victoria born? -> $x: (queen victoria, die in, $x) -> (Queen Victoria, died in, 1901) -> 1901 (2787ms) When was Queen Victoria born? a mutation 0.777777777778 When was Queen Victoria born? -> $x: (queen victoria, do, $x) -> (Queen Victoria, actually did suffer, a mutation) -> a mutation (2778ms) When was Queen Victoria born? grant 0.777777777778 When was Queen Victoria born? -> $x: (queen victoria, do, $x) -> (Queen Victoria, did, grant) -> grant (2782ms) When was Queen Victoria born? Juanita 0.666666666667 When was Queen Victoria born? -> $x: ($x, do, queen victoria) -> (Juanita, did, Queen Victoria) -> Juanita (2787ms) When was Queen Victoria born? Johnson 0.666666666667 When was Queen Victoria born? -> $x: ($x, do, queen victoria) -> (Johnson, So did, Queen Victoria) -> Johnson (2787ms) When was Queen Victoria born? the prophecy 0.666666666667 When was Queen Victoria born? -> $x: ($x, do, queen victoria) -> (the prophecy, did, her great , great grandmother Queen Victoria) -> the prophecy (2787ms) When was Queen Victoria born? toothbrush 0.666666666667 When was Queen Victoria born? -> $x: ($x, do, queen victoria) -> (toothbrush, did, Queen Victoria use) -> toothbrush (2787ms) When was Queen Victoria born? hilarious audience participation 0.666666666667 When was Queen Victoria born? -> $x: ($x, do, queen victoria) -> (hilarious audience participation, did, Queen Victoria Empress) -> hilarious audience participation (2787ms) When was Queen Victoria born? the century 0.666666666667 When was Queen Victoria born? -> $x: ($x, do, queen victoria) -> (the century, does the life of, the great Queen Victoria) -> the century (2787ms) When was Queen Victoria born? the palace 0.555555555556 When was Queen Victoria born? -> $x: (queen victoria, be bear, $x) -> (Queen Victoria, was born at, the palace) -> the palace (2791ms) When was Queen Victoria born? Princess Alexandria Victoria 0.555555555556 When was Queen Victoria born? -> $x: (queen victoria, be bear, $x) -> (Queen Victoria, was born as, Princess Alexandria Victoria) -> Princess Alexandria Victoria (2795ms) When was Queen Victoria born? the royal residence 0.555555555556 When was Queen Victoria born? -> $x: (queen victoria, be bear, $x) -> (Queen Victoria, was born at, the royal residence) -> the royal residence (2795ms) When was Queen Victoria born? May 0.555555555556 When was Queen Victoria born? -> $x: (queen victoria, be bear, $x) -> (" Queen Victoria, was born the 24th of, May) -> May (2802ms) When was Queen Victoria born? the royal home 0.555555555556 When was Queen Victoria born? -> $x: (queen victoria, be bear, $x) -> (Queen Victoria, was born at, the royal home) -> the royal home (2799ms) When was Queen Victoria born? Alexandrina Victoria 0.555555555556 When was Queen Victoria born? -> $x: (queen victoria, be bear, $x) -> (Queen Victoria, was born, Alexandrina Victoria) -> Alexandrina Victoria (2791ms) When was Queen Victoria born? typhoid fever -0.9999999999920001 When was Queen Victoria born? -> $x: (queen victoria, die from, $x) -> (Queen Victoria, dies from, typhoid fever) -> typhoid fever (2810ms) When was Queen Victoria born? Epworth Hospital -0.9999999999940001 When was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Queen Victoria Hospital, has died at, Epworth Hospital) -> Epworth Hospital (2817ms) When was Queen Victoria born? the age of 81 -0.9999999999940001 When was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Queen Victoria, dies at, the age of 81) -> the age of 81 (2818ms) When was Queen Victoria born? the day -0.9999999999940001 When was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Queen Victoria, died, the day) -> the day (2817ms) When was Queen Victoria born? the age 82 -0.9999999999940001 When was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Queen Victoria, dies at, the age 82) -> the age 82 (2815ms) When was Queen Victoria born? The event -0.9999999999940001 When was Queen Victoria born? -> $x: ($x, invent, queen victoria) -> (The event, was invented by, Queen Victoria) -> The event (2810ms) When was Queen Victoria born? recently -0.9999999999940001 When was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Queen Victoria, had died, recently) -> recently (2815ms) When was Queen Victoria born? Osborne -0.9999999999940001 When was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Queen Victoria, died at, Osborne) -> Osborne (2815ms) When was Queen Victoria born? twenty years -0.9999999999940001 When was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Queen Victoria, died, twenty years) -> twenty years (2817ms) When was Queen Victoria born? the same year -0.9999999999940001 When was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Queen Victoria, died, the same year) -> the same year (2818ms) When was Queen Victoria born? the year -0.9999999999940001 When was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Queen Victoria, died, the year) -> the year (2817ms) When was Queen Victoria born? Richard Trevithick -0.9999999999940001 When was Queen Victoria born? -> $x: ($x, invent, queen victoria) -> (Richard Trevithick, invented, the locomotive and Queen Victoria) -> Richard Trevithick (2813ms) When was Queen Victoria born? 22nd January Half -0.9999999999940001 When was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Our Queen Victoria, Died, 22nd January Half) -> 22nd January Half (2817ms) When was Queen Victoria born? the time -0.9999999999940001 When was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Queen Victoria, died, the time) -> the time (2818ms) When was Queen Victoria born? Cerebral hemorrhage -0.9999999999940001 When was Queen Victoria born? -> $x: ($x, die, queen victoria) -> (Cerebral hemorrhage, People Who Died This Way, Queen Victoria) -> Cerebral hemorrhage (2813ms) When was Queen Victoria born? a martyr -0.9999999999940001 When was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Queen Victoria, dies, a martyr) -> a martyr (2810ms) When was Queen Victoria born? 80 -0.9999999999940001 When was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Queen Victoria, died aged, 80) -> 80 (2813ms) When was Queen Victoria born? age 81 -0.9999999999940001 When was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Queen Victoria, died at, age 81) -> age 81 (2817ms) When was Queen Victoria born? finally -0.9999999999940001 When was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Queen Victoria, dying, finally) -> finally (2815ms) When was Queen Victoria born? the British throne -0.9999999999940001 When was Queen Victoria born? -> $x: ($x, die, queen victoria) -> (the British throne, died, ? Queen Victoria Edward) -> the British throne (2818ms) When was Queen Victoria born? the first days -0.9999999999940001 When was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (The British Queen Victoria, died during, the first days) -> the first days (2813ms) When was Queen Victoria born? Osborne House -0.9999999999940001 When was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Queen Victoria, died at, Osborne House) -> Osborne House (2815ms) When was Queen Victoria born? the ripe old age -0.9999999999940001 When was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Queen Victoria, died at, the ripe old age) -> the ripe old age (2815ms) When was Queen Victoria born? age 82 -0.9999999999940001 When was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Britain 's Queen Victoria, died at, age 82) -> age 82 (2818ms) When was Queen Victoria born? 10.50 pm -0.9999999999940001 When was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Queen Victoria, died at, 10.50 pm) -> 10.50 pm (2815ms) When was Queen Victoria born? 10 years -0.9999999999940001 When was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Queen Victoria, died, 10 years) -> 10 years (2818ms) When was Queen Victoria born? 81 -0.9999999999940001 When was Queen Victoria born? -> $x: (queen victoria, die, $x) -> (Queen Victoria, dies aged, 81) -> 81 (2815ms) When was Queen Victoria born? Emily -1.000000000003 When was Queen Victoria born? -> $x: ($x, queen, victoria) -> (Emily, played a queen in, The Young Victoria) -> Emily (2818ms) When was Queen Victoria born? Justice Harper -1.000000000003 When was Queen Victoria born? -> $x: ($x, queen, victoria) -> (Justice Harper, was appointed a Queen 's Counsel in, Victoria) -> Justice Harper (2818ms) When was Queen Victoria born? Una -1.111111111103 When was Queen Victoria born? -> $x: ($x, look like, queen victoria) -> (Una, looks like, Queen Victoria) -> Una (2820ms) When was Queen Victoria born? a ?wesbian? -1.111111111103 When was Queen Victoria born? -> $x: (queen victoria, look like, $x) -> (Queen Victoria, looked like, a ?wesbian?) -> a ?wesbian? (2820ms) When was Queen Victoria born? the hag -1.111111111103 When was Queen Victoria born? -> $x: ($x, look like, queen victoria) -> (the hag, look like, Queen Victoria) -> the hag (2820ms) When was Queen Victoria born? a hoodoo -1.111111111103 When was Queen Victoria born? -> $x: ($x, look like, queen victoria) -> (a hoodoo, said to look like, Queen Victoria) -> a hoodoo (2820ms) When was Queen Victoria born? a love match -1.111111111104 When was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> (Queen Victoria, also married in, a love match) -> a love match (2822ms) When was Queen Victoria born? Prince Louis -1.111111111104 When was Queen Victoria born? -> $x: ($x, marry, queen victoria) -> (Prince Louis, married one of, Queen Victoria) -> Prince Louis (2822ms) When was Queen Victoria born? 1840 -1.111111111104 When was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> (Queen Victoria, was married in, 1840) -> 1840 (2822ms) When was Queen Victoria born? the white , opulent gown -1.111111111104 When was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> (Queen Victoria, married in, the white , opulent gown) -> the white , opulent gown (2822ms) When was Queen Victoria born? Dracula -1.111111111104 When was Queen Victoria born? -> $x: ($x, marry, queen victoria) -> (Dracula, went on to marry, Queen Victoria) -> Dracula (2822ms) When was Queen Victoria born? Frederick -1.111111111104 When was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> (Queen Victoria, married, Frederick) -> Frederick (2821ms) When was Queen Victoria born? Sachsen-Coburg and Gotha -1.111111111104 When was Queen Victoria born? -> $x: ($x, marry, queen victoria) -> (Sachsen-Coburg and Gotha, married, Queen Victoria) -> Sachsen-Coburg and Gotha (2820ms) When was Queen Victoria born? the German Prince Albert -1.111111111104 When was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> (Queen Victoria, married, the German Prince Albert) -> the German Prince Albert (2822ms) When was Queen Victoria born? Albert of Saxe -1.111111111104 When was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> (Queen Victoria, married, Albert of Saxe) -> Albert of Saxe (2820ms) When was Queen Victoria born? Norton -1.111111111104 When was Queen Victoria born? -> $x: ($x, marry, queen victoria) -> (Norton, was planning to marry, Queen Victoria) -> Norton (2821ms) When was Queen Victoria born? the German prince -1.111111111104 When was Queen Victoria born? -> $x: ($x, marry, queen victoria) -> (the German prince, married, Queen Victoria) -> the German prince (2822ms) When was Queen Victoria born? Saxe-Coburg and Gotha -1.111111111104 When was Queen Victoria born? -> $x: ($x, marry, queen victoria) -> (Saxe-Coburg and Gotha, married, England?s Queen Victoria) -> Saxe-Coburg and Gotha (2821ms) When was Queen Victoria born? the German Prince -1.111111111104 When was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> ('s Queen Victoria, married, the German Prince) -> the German Prince (2821ms) When was Queen Victoria born? the events -1.111111111104 When was Queen Victoria born? -> $x: ($x, marry, queen victoria) -> (the events, goes on to marry, Queen Victoria) -> the events (2822ms) When was Queen Victoria born? Albert -1.111111111104 When was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> (Queen Victoria, married, Albert) -> Albert (2821ms) When was Queen Victoria born? Prince Ferdinand -1.111111111104 When was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> (Queen Victoria, married, Prince Ferdinand) -> Prince Ferdinand (2822ms) When was Queen Victoria born? a white wedding gown -1.111111111104 When was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> (Queen Victoria, was married in, a white wedding gown) -> a white wedding gown (2821ms) When was Queen Victoria born? the love -1.111111111104 When was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> (Queen Victoria, marries, the love) -> the love (2821ms) When was Queen Victoria born? white -1.111111111104 When was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> (Queen Victoria, by marrying in, white) -> white (2821ms) When was Queen Victoria born? the German-born Prince Albert -1.111111111104 When was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> (Queen Victoria, married, the German-born Prince Albert) -> the German-born Prince Albert (2822ms) When was Queen Victoria born? Prince Albert -1.111111111104 When was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> ('s Queen Victoria, married, Prince Albert) -> Prince Albert (2822ms) When was Queen Victoria born? a white dress -1.111111111104 When was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> (the 1840?s Queen Victoria, got married in, a white dress) -> a white dress (2822ms) When was Queen Victoria born? a German Duke -1.111111111104 When was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> (Queen Victoria, married, a German Duke) -> a German Duke (2822ms) When was Queen Victoria born? 12 October 1888 -1.111111111104 When was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> (Queen Victoria Lollar, married on, 12 October 1888) -> 12 October 1888 (2822ms) When was Queen Victoria born? a white gown -1.111111111104 When was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> (Queen Victoria, was married in, a white gown) -> a white gown (2822ms) When was Queen Victoria born? white dress -1.111111111104 When was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> (Queen Victoria, got married in, white dress) -> white dress (2822ms) When was Queen Victoria born? a Hohen -1.111111111104 When was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> (queen Victoria, married, a Hohen) -> a Hohen (2821ms) When was Queen Victoria born? Germany -1.111111111104 When was Queen Victoria born? -> $x: ($x, marry, queen victoria) -> (Germany, married, Queen Victoria) -> Germany (2820ms) When was Queen Victoria born? the Crown Prince -1.111111111104 When was Queen Victoria born? -> $x: (queen victoria, marry, $x) -> (Queen Victoria, married, the Crown Prince) -> the Crown Prince (2822ms) When was Queen Victoria born? the mission -1.111111111114 When was Queen Victoria born? -> $x: ($x, function, victoria) -> (the mission, functioned in, victoria county) -> the mission (2822ms) When was Queen Victoria born? the region -1.111111111114 When was Queen Victoria born? -> $x: ($x, be size of, victoria) -> (the region, is twice the size of, Victoria) -> the region (2822ms) When was Queen Victoria born? example -1.111111111114 When was Queen Victoria born? -> $x: ($x, be size of, victoria) -> (example, is many times the size of, Victoria) -> example (2822ms) What is Jay-Z's real name? Shawn Carter 2.222222222212 What is Jay-Z's real name? -> $x: ($x, be name of, jay z) -> (Shawn Carter, is also the real name of, rap artist Jay-Z) -> Shawn Carter (742ms) What is Jay-Z's real name? Def Jam 0.9999999999959999 What is Jay-Z's real name? -> $x: (jay z, be name, $x) -> (this article Jay-Z, was named CEO of, Def Jam) -> Def Jam (857ms) What is Jay-Z's real name? any part 0.9999999999959999 What is Jay-Z's real name? -> $x: (jay z, be name, $x) -> (Jay-Z and Oprah, are pretty much household names in, any part) -> any part (857ms) What is Jay-Z's real name? the top 50 most hated New Yorker 0.9999999999959999 What is Jay-Z's real name? -> $x: (jay z, be name, $x) -> (Jay-Z & Nas, were named two of, the top 50 most hated New Yorker) -> the top 50 most hated New Yorker (742ms) What is Jay-Z's real name? president 0.9999999999959999 What is Jay-Z's real name? -> $x: (jay z, be name, $x) -> (Jay-Z, was named, president) -> president (742ms) What is Jay-Z's real name? the wireless power industry 0.9999999999959999 What is Jay-Z's real name? -> $x: (jay z, be name, $x) -> (Jay-Z, is adding big-name juice to, the wireless power industry) -> the wireless power industry (742ms) What is Jay-Z's real name? best rap performance 0.9999999999959999 What is Jay-Z's real name? -> $x: (jay z, be name, $x) -> (Jay-Z, was named, best rap performance) -> best rap performance (742ms) What is Jay-Z's real name? an elite group 0.9999999999959999 What is Jay-Z's real name? -> $x: (jay z, be name, $x) -> (Jay-Z, was named amongst, an elite group) -> an elite group (742ms) What is Jay-Z's real name? the second highest earning musician 0.9999999999959999 What is Jay-Z's real name? -> $x: (jay z, be name, $x) -> (Jay-Z, was named, the second highest earning musician) -> the second highest earning musician (742ms) What is Jay-Z's real name? Def Jam Records 0.9999999999959999 What is Jay-Z's real name? -> $x: (jay z, be name, $x) -> (Jay-Z, was named president of, Def Jam Records) -> Def Jam Records (858ms) What is Jay-Z's real name? Song Cry 0.6666666666649999 What is Jay-Z's real name? -> $x: ($x, be real, jay z) -> (Song Cry, was a real song about, Jay-Z) -> Song Cry (858ms) What is Jay-Z's real name? the HELL 0.5555555555559999 What is Jay-Z's real name? -> $x: ($x, happen to, jay z) -> (the HELL, happen to, JayZ) -> the HELL (857ms) What is Jay-Z's real name? full name 0.444444444445 What is Jay-Z's real name? -> $x: ($x, marry, jay z) -> (full name, is officially married to, Shaun ?Jay-Z? Carter) -> full name (997ms) What is Jay-Z's real name? The singer 0.444444444445 What is Jay-Z's real name? -> $x: ($x, marry, jay z) -> (The singer, secretly married, rapper Jay-Z) -> The singer (904ms) What is Jay-Z's real name? Beyonce?s 0.444444444445 What is Jay-Z's real name? -> $x: ($x, marry, jay z) -> (Beyonce?s, married to, Jay Z) -> Beyonce?s (997ms) What is Jay-Z's real name? The ' Halo ' singer 0.444444444445 What is Jay-Z's real name? -> $x: ($x, marry, jay z) -> (The ' Halo ' singer, is married to, hip-hop superstar Jay-Z) -> The ' Halo ' singer (904ms) What is Jay-Z's real name? Beyonc? 0.444444444445 What is Jay-Z's real name? -> $x: ($x, marry, jay z) -> (Beyonc?, is married to, rapper Jay-Z) -> Beyonc? (904ms) What is Jay-Z's real name? the song 0.444444444445 What is Jay-Z's real name? -> $x: ($x, marry, jay z) -> (the song, will marry, fiance Jay-Z) -> the song (997ms) What is Jay-Z's real name? Common 0.444444444445 What is Jay-Z's real name? -> $x: ($x, live with, jay z) -> (Common, played live with, Jay-Z.) -> Common (858ms) What is Jay-Z's real name? 27-02-2009 2 0.444444444445 What is Jay-Z's real name? -> $x: ($x, marry, jay z) -> (27-02-2009 2, will marry, fiance Jay-Z) -> 27-02-2009 2 (997ms) What is Jay-Z's real name? Uncategorized Beyonce 0.444444444445 What is Jay-Z's real name? -> $x: ($x, marry, jay z) -> (Uncategorized Beyonce, may be married to, Jay-Z) -> Uncategorized Beyonce (998ms) What is Jay-Z's real name? The R&B superstar 0.444444444445 What is Jay-Z's real name? -> $x: ($x, marry, jay z) -> (The R&B superstar, is married to, rapper Jay-Z) -> The R&B superstar (904ms) What is Jay-Z's real name? singer 0.444444444445 What is Jay-Z's real name? -> $x: ($x, marry, jay z) -> (singer, is married to, rapper Jay Z) -> singer (904ms) What is Jay-Z's real name? The former Destiny?s Child singer 0.444444444445 What is Jay-Z's real name? -> $x: ($x, marry, jay z) -> (The former Destiny?s Child singer, married, Jay-Z) -> The former Destiny?s Child singer (997ms) What is Jay-Z's real name? Beyonce 0.444444444445 What is Jay-Z's real name? -> $x: ($x, marry, jay z) -> (Beyonce, married, Jay-Z) -> Beyonce (997ms) What is Jay-Z's real name? Knowles 0.444444444445 What is Jay-Z's real name? -> $x: ($x, marry, jay z) -> (Knowles, has been married to, rapper Jay-Z) -> Knowles (904ms) What is Jay-Z's real name? The 29-year-old singer 0.444444444445 What is Jay-Z's real name? -> $x: ($x, marry, jay z) -> (The 29-year-old singer, is married to, Jay-Z.) -> The 29-year-old singer (904ms) What is Jay-Z's real name? Blue Ivy Carter 0.11111111110400007 What is Jay-Z's real name? -> $x: ($x, be name of, beyonce) -> (Blue Ivy Carter, is the name of, Beyonce) -> Blue Ivy Carter (1015ms) What is Jay-Z's real name? the care -0.5555555555539999 What is Jay-Z's real name? -> $x: (beyonce, life in, $x) -> (Tiny Beyonce, lives happily in, the care) -> the care (1015ms) What is Jay-Z's real name? an award-winning journalist -1.111111111112 What is Jay-Z's real name? -> $x: (beyonce, be name, $x) -> (Beyonce, is named, an award-winning journalist) -> an award-winning journalist (1226ms) What is Jay-Z's real name? World -1.111111111112 What is Jay-Z's real name? -> $x: (beyonce, be name, $x) -> (Beyonce, was named, World) -> World (1226ms) What is Jay-Z's real name? World ?s Most Beautiful Woman -1.111111111112 What is Jay-Z's real name? -> $x: (beyonce, be name, $x) -> (Beyonce, was named, World ?s Most Beautiful Woman) -> World ?s Most Beautiful Woman (1210ms) What is Jay-Z's real name? the most Read More -1.111111111112 What is Jay-Z's real name? -> $x: (beyonce, be name, $x) -> (Beyonce, was named, the most Read More) -> the most Read More (1210ms) What is Jay-Z's real name? the Most Beautiful Woman -1.111111111112 What is Jay-Z's real name? -> $x: (beyonce, be name, $x) -> (Beyonce, has been named, the Most Beautiful Woman) -> the Most Beautiful Woman (1210ms) What is Jay-Z's real name? the highest paid couple -1.111111111112 What is Jay-Z's real name? -> $x: (beyonce, be name, $x) -> (his wife Beyonce, were also named, the highest paid couple) -> the highest paid couple (1226ms) What is Jay-Z's real name? People magazine -1.111111111112 What is Jay-Z's real name? -> $x: (beyonce, be name, $x) -> (Beyonce, was named, People magazine) -> People magazine (1209ms) What is Jay-Z's real name? The World ?s Most Beautiful Person -1.111111111112 What is Jay-Z's real name? -> $x: (beyonce, be name, $x) -> (Beyonce, is named, The World ?s Most Beautiful Person) -> The World ?s Most Beautiful Person (1209ms) What is Jay-Z's real name? the world?s -1.111111111112 What is Jay-Z's real name? -> $x: (beyonce, be name, $x) -> (new mother Beyonce, was named, the world?s) -> the world?s (1210ms) What is Jay-Z's real name? the most beautiful woman in the world -1.111111111112 What is Jay-Z's real name? -> $x: (beyonce, be name, $x) -> (Beyonce, was named, the most beautiful woman in the world) -> the most beautiful woman in the world (1210ms) What is Jay-Z's real name? the most successful musician -1.111111111112 What is Jay-Z's real name? -> $x: (beyonce, be name, $x) -> (2010 Beyonce, has been named, the most successful musician) -> the most successful musician (1226ms) What is Jay-Z's real name? good music -1.555555555552 What is Jay-Z's real name? -> $x: ($x, happen to, beyonce) -> (good music, happened to, the Beyonce and Alicia Keys video) -> good music (1226ms) What is Jay-Z's real name? African Movies ? -1.555555555552 What is Jay-Z's real name? -> $x: ($x, happen to, beyonce) -> (African Movies ?, really happened to, Beyonce) -> African Movies ? (1226ms) What is Jay-Z's real name? the rapper -1.6666666666630001 What is Jay-Z's real name? -> $x: ($x, marry, beyonce) -> (the rapper, is married to, Beyonce) -> the rapper (1226ms) What is Jay-Z's real name? The Shire -1.6666666666630001 What is Jay-Z's real name? -> $x: ($x, marry, beyonce) -> (The Shire, married to, Beyonce) -> The Shire (1226ms) What is Jay-Z's real name? Jay -1.6666666666630001 What is Jay-Z's real name? -> $x: ($x, live with, beyonce) -> (Jay, met with Live Nation to, discuss a tour for Beyonce) -> Jay (1226ms) What is Jay-Z's real name? Jay-Z -1.6666666666630001 What is Jay-Z's real name? -> $x: ($x, marry, beyonce) -> (Jay-Z, is married to, singer Beyonce) -> Jay-Z (1226ms) Why is a ladybug helpful? light fixtures -0.555555555555 Why is a ladybug helpful? -> $x: ($x, help, ladybug) -> (light fixtures, helps to keep, ladybugs) -> light fixtures (700ms) Why is a ladybug helpful? Pre-conditioning -0.555555555555 Why is a ladybug helpful? -> $x: ($x, help, ladybug) -> (Pre-conditioning, helps satisfy, the ladybug) -> Pre-conditioning (700ms) Why is a ladybug helpful? fennel -0.555555555555 Why is a ladybug helpful? -> $x: ($x, help, ladybug) -> (fennel, help attract, ladybugs and lacewings) -> fennel (700ms) Why is a ladybug helpful? the garden -0.555555555555 Why is a ladybug helpful? -> $x: ($x, help, ladybug) -> (the garden, helps draw, ladybugs) -> the garden (700ms) Why is a ladybug helpful? the player -0.555555555555 Why is a ladybug helpful? -> $x: ($x, help, ladybug) -> (the player, has to help, the ladybugs find their houses) -> the player (700ms) Why is a ladybug helpful? the park -1.555555555561 Why is a ladybug helpful? -> $x: (ladybug, help, $x) -> (LADYBUG Gardeners welcomes, help at, the park) -> the park (700ms) Why is a ladybug helpful? Paw-Paw -1.555555555561 Why is a ladybug helpful? -> $x: (ladybug, help, $x) -> (Ladybug, helped, Paw-Paw) -> Paw-Paw (701ms) Why is a ladybug helpful? aphid populations -1.555555555561 Why is a ladybug helpful? -> $x: (ladybug, help, $x) -> (ladybugs, will help control, aphid populations) -> aphid populations (701ms) Why is a ladybug helpful? garden pests -1.555555555561 Why is a ladybug helpful? -> $x: (ladybug, help, $x) -> (Beautiful ladybugs, help control, garden pests) -> garden pests (700ms) Why is a ladybug helpful? farmers -1.555555555561 Why is a ladybug helpful? -> $x: (ladybug, help, $x) -> (ladybugs, help, farmers) -> farmers (700ms) Why is a ladybug helpful? control harmful bugs -1.555555555561 Why is a ladybug helpful? -> $x: (ladybug, help, $x) -> (Ladybugs and praying mantises, will help, control harmful bugs) -> control harmful bugs (702ms) Why is a ladybug helpful? a little -1.555555555561 Why is a ladybug helpful? -> $x: (ladybug, help, $x) -> (the ladybug.This, helped, a little) -> a little (700ms) Why is a ladybug helpful? a severe problem -1.555555555561 Why is a ladybug helpful? -> $x: (ladybug, help, $x) -> (purchasing ladybugs, can help to control, a severe problem) -> a severe problem (701ms) Why is a ladybug helpful? ease childrens fear -1.555555555561 Why is a ladybug helpful? -> $x: (ladybug, help, $x) -> (Twilight Ladybug, helps, ease childrens fear) -> ease childrens fear (701ms) Why is a ladybug helpful? each child -1.555555555561 Why is a ladybug helpful? -> $x: (ladybug, help, $x) -> (LUCKY LADYBUGS, Help, each child) -> each child (702ms) Why is a ladybug helpful? harmful bugs -1.555555555561 Why is a ladybug helpful? -> $x: (ladybug, help, $x) -> (Ladybugs and praying mantises, will help control, harmful bugs) -> harmful bugs (701ms) Why is a ladybug helpful? children -1.555555555561 Why is a ladybug helpful? -> $x: (ladybug, help, $x) -> (This lovely red ladybug, helps ease, children) -> children (701ms) Why is a ladybug helpful? smaller insects -1.555555555561 Why is a ladybug helpful? -> $x: (ladybug, help, $x) -> (some ladybugs, can help kill, smaller insects) -> smaller insects (701ms) Why is a ladybug helpful? an early age -1.555555555561 Why is a ladybug helpful? -> $x: (ladybug, help, $x) -> (Ladybug, helps trigger that good habit at, an early age) -> an early age (700ms) Why is a ladybug helpful? scales -1.555555555561 Why is a ladybug helpful? -> $x: (ladybug, help, $x) -> (Vedalia ladybugs, now help control, scales) -> scales (702ms) Why is a ladybug helpful? pesky garden pests -1.555555555561 Why is a ladybug helpful? -> $x: (ladybug, help, $x) -> (ladybugs, help eliminate, pesky garden pests) -> pesky garden pests (700ms) Why is a ladybug helpful? ease children?s fear -1.555555555561 Why is a ladybug helpful? -> $x: (ladybug, help, $x) -> (The Twilight Ladybug, helps, ease children?s fear) -> ease children?s fear (702ms) Why is a ladybug helpful? ease children?s fear -1.555555555561 Why is a ladybug helpful? -> $x: (ladybug, help, $x) -> (Twilight Ladybug, helps, ease children?s fear) -> ease children?s fear (700ms) Why is a ladybug helpful? ease children???s fear -1.555555555561 Why is a ladybug helpful? -> $x: (ladybug, help, $x) -> (Twilight Ladybug, helps, ease children???s fear) -> ease children???s fear (700ms) Why is a ladybug helpful? control pests -1.555555555561 Why is a ladybug helpful? -> $x: (ladybug, help, $x) -> (ladybugs, helps, control pests) -> control pests (700ms) Why is a ladybug helpful? the homeless -1.555555555561 Why is a ladybug helpful? -> $x: (ladybug, help, $x) -> (the Ladybug Foundation, to help, the homeless) -> the homeless (700ms) How many official languages does Switzerland have? German and French 1.66666666666 How many official languages does Switzerland have? -> $x: ($x, be official language of, switzerland) -> (German and French, are the official languages of, Switzerland) -> German and French (1167ms) How many official languages does Switzerland have? German 1.66666666666 How many official languages does Switzerland have? -> $x: ($x, be official language of, switzerland) -> (German, is the only official language of, Germany Switzerland) -> German (1166ms) How many official languages does Switzerland have? Italy 1.66666666666 How many official languages does Switzerland have? -> $x: ($x, be official language of, switzerland) -> (Italy, is an official language of, Switzerland) -> Italy (1166ms) How many official languages does Switzerland have? Italian 1.66666666666 How many official languages does Switzerland have? -> $x: ($x, be official language of, switzerland) -> (Italian, is an official language of, Switzerland) -> Italian (1166ms) How many official languages does Switzerland have? The Swiss Franc 1.333333333325 How many official languages does Switzerland have? -> $x: ($x, be official of, switzerland) -> (The Swiss Franc, is the official currency of, Switzerland) -> The Swiss Franc (1166ms) How many official languages does Switzerland have? The Swiss franc 1.333333333325 How many official languages does Switzerland have? -> $x: ($x, be official of, switzerland) -> (The Swiss franc, is the official currency of, Switzerland) -> The Swiss franc (1430ms) How many official languages does Switzerland have? Christianity 1.222222222216 How many official languages does Switzerland have? -> $x: ($x, be religion of, switzerland) -> (Christianity, is the predominant religion of, Switzerland) -> Christianity (1430ms) How many official languages does Switzerland have? French 1.222222222215 How many official languages does Switzerland have? -> $x: ($x, be official in, switzerland) -> (French, is a co-official language in, Switzerland) -> French (1495ms) How many official languages does Switzerland have? the east 1.222222222215 How many official languages does Switzerland have? -> $x: ($x, be official in, switzerland) -> (the east, is the only official National Park in, Switzerland) -> the east (1495ms) How many official languages does Switzerland have? Switzerland French 1.222222222215 How many official languages does Switzerland have? -> $x: ($x, be official in, switzerland) -> (Switzerland French, is an official language in, Switzerland) -> Switzerland French (1495ms) How many official languages does Switzerland have? The zone 1.111111111105 How many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (The zone, is the size of, Switzerland) -> The zone (1668ms) How many official languages does Switzerland have? an island 1.111111111105 How many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (an island, is the size of, Switzerland) -> an island (1555ms) How many official languages does Switzerland have? Colorado 1.111111111105 How many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (Colorado, is six times the size of, Switzerland) -> Colorado (1635ms) How many official languages does Switzerland have? the Aksai Chin plateau 1.111111111105 How many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (the Aksai Chin plateau, is almost the size of, Switzerland) -> the Aksai Chin plateau (1635ms) How many official languages does Switzerland have? The Kimberley 1.111111111105 How many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (The Kimberley, is the size of, Switzerland) -> The Kimberley (1635ms) How many official languages does Switzerland have? Bern Switzerland Temple 1.111111111105 How many official languages does Switzerland have? -> $x: ($x, website, switzerland) -> (Bern Switzerland Temple, Official website, ) -> Bern Switzerland Temple (1635ms) How many official languages does Switzerland have? Retoromansh 1.111111111105 How many official languages does Switzerland have? -> $x: ($x, be speak in, switzerland) -> (Retoromansh, is spoken in, Switzerland) -> Retoromansh (1635ms) How many official languages does Switzerland have? The total area 1.111111111105 How many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (The total area, is approximately the size of, Switzerland) -> The total area (1647ms) How many official languages does Switzerland have? The liberated territory 1.111111111105 How many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (The liberated territory, was almost the size of, Switzerland) -> The liberated territory (1582ms) How many official languages does Switzerland have? The Kruger National Park 1.111111111105 How many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (The Kruger National Park, is the size of, Switzerland) -> The Kruger National Park (1582ms) How many official languages does Switzerland have? Four million hectares 1.111111111105 How many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (Four million hectares, is roughly the size of, Switzerland) -> Four million hectares (1685ms) How many official languages does Switzerland have? Three main languages 1.111111111105 How many official languages does Switzerland have? -> $x: ($x, be speak in, switzerland) -> (Three main languages, are spoken in, Switzerland) -> Three main languages (1667ms) How many official languages does Switzerland have? The last European Celtic tongue 1.111111111105 How many official languages does Switzerland have? -> $x: ($x, be speak in, switzerland) -> (The last European Celtic tongue, was spoken in, Switzerland) -> The last European Celtic tongue (1647ms) How many official languages does Switzerland have? The Pans 1.111111111105 How many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (The Pans, are the size of, Switzerland) -> The Pans (1582ms) How many official languages does Switzerland have? Marajo Island 1.111111111105 How many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (Marajo Island, is roughly the size of, Switzerland) -> Marajo Island (1647ms) How many official languages does Switzerland have? Brazil 1.111111111105 How many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (Brazil, is twice the size of, Switzerland) -> Brazil (1668ms) How many official languages does Switzerland have? MapQuest 1.111111111105 How many official languages does Switzerland have? -> $x: ($x, website, switzerland) -> (MapQuest, has now open.MapQuest-websites for, Switzerland) -> MapQuest (1647ms) How many official languages does Switzerland have? English 1.111111111105 How many official languages does Switzerland have? -> $x: ($x, be speak in, switzerland) -> (English, is widely spoken in, Switzerland) -> English (1685ms) How many official languages does Switzerland have? Southland 1.111111111105 How many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (Southland, covers an area the size of, Switzerland) -> Southland (1569ms) How many official languages does Switzerland have? JobsinZurich.com 1.111111111105 How many official languages does Switzerland have? -> $x: ($x, website, switzerland) -> (JobsinZurich.com, is the only website in, Switzerland) -> JobsinZurich.com (1668ms) How many official languages does Switzerland have? Switzerland 1.111111111105 How many official languages does Switzerland have? -> $x: ($x, website, switzerland) -> (Switzerland, Official website, ) -> Switzerland (1668ms) How many official languages does Switzerland have? a total land area 1.111111111105 How many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (a total land area, is the same size as, Switzerland) -> a total land area (1635ms) How many official languages does Switzerland have? the world-Marajo Island 1.111111111105 How many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (the world-Marajo Island, is roughly the size of, Switzerland) -> the world-Marajo Island (1685ms) How many official languages does Switzerland have? Bhutan 1.111111111105 How many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (Bhutan, is roughly the size of, Switzerland) -> Bhutan (1647ms) How many official languages does Switzerland have? Makgadikgadi 1.111111111105 How many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (Makgadikgadi, are the size of, Switzerland) -> Makgadikgadi (1647ms) How many official languages does Switzerland have? lects 1.111111111105 How many official languages does Switzerland have? -> $x: ($x, be speak in, switzerland) -> (lects, are spoken primarily in, Switzerland) -> lects (1555ms) How many official languages does Switzerland have? Andrew 1.111111111105 How many official languages does Switzerland have? -> $x: ($x, be speak in, switzerland) -> (Andrew, had been speaking in, Switzerland) -> Andrew (1582ms) How many official languages does Switzerland have? languages 1.111111111105 How many official languages does Switzerland have? -> $x: ($x, be speak in, switzerland) -> (languages, are spoken in, Switzerland) -> languages (1635ms) How many official languages does Switzerland have? AngloINFO 1.111111111105 How many official languages does Switzerland have? -> $x: ($x, website, switzerland) -> (AngloINFO, launched its first website in, Switzerland) -> AngloINFO (1685ms) How many official languages does Switzerland have? Which languages 1.111111111105 How many official languages does Switzerland have? -> $x: ($x, be speak in, switzerland) -> (Which languages, are spoken in, Switzerland) -> Which languages (1667ms) How many official languages does Switzerland have? Romansch 1.111111111105 How many official languages does Switzerland have? -> $x: ($x, be speak in, switzerland) -> (Romansch, is a language spoken mostly in, Switzerland) -> Romansch (1685ms) How many official languages does Switzerland have? the Thunder Dragon 1.111111111105 How many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (the Thunder Dragon, is the size of, Switzerland) -> the Thunder Dragon (1569ms) How many official languages does Switzerland have? The Rufiji River Basin 1.111111111105 How many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (The Rufiji River Basin, is six times the size of, Switzerland) -> The Rufiji River Basin (1569ms) How many official languages does Switzerland have? the south-west coast 1.111111111105 How many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (the south-west coast, will be twice the size of, Switzerland) -> the south-west coast (1635ms) How many official languages does Switzerland have? JobsinGeneva.com 1.111111111105 How many official languages does Switzerland have? -> $x: ($x, website, switzerland) -> (JobsinGeneva.com, is the only website in, Switzerland) -> JobsinGeneva.com (1582ms) How many official languages does Switzerland have? ?My 1.111111111105 How many official languages does Switzerland have? -> $x: ($x, size, switzerland) -> (?My, is pretty much the size of, Switzerland) -> ?My (1647ms) How many official languages does Switzerland have? 11:35pm German -0.222222222222 How many official languages does Switzerland have? -> $x: ($x, be official language of, berne) -> (11:35pm German, is the official language of, Berne) -> 11:35pm German (1685ms) How tall is the Washington Monument? Examples 0.888888888878 How tall is the Washington Monument? -> $x: ($x, be height of, washington monument) -> (Examples, is the height of, the Washington Monument) -> Examples (605ms) How tall is the Washington Monument? Pel?e 0.888888888878 How tall is the Washington Monument? -> $x: ($x, be height of, washington monument) -> (Pel?e, was twice the height of, the Washington Monument) -> Pel?e (605ms) How tall is the Washington Monument? Washington -0.1111111111130001 How tall is the Washington Monument? -> $x: (washington monument, be tallest building in, $x) -> (the Washington Monument, is the tallest building in, Washington) -> Washington (605ms) How old is Harriet Miers? PJV -1.11111111109 How old is Harriet Miers? -> $x: ($x, happen to, harriet miers) -> (PJV, happened to, Harriet Miers clear example) -> PJV (692ms) How old is Harriet Miers? the Senate -1.11111111109 How old is Harriet Miers? -> $x: ($x, happen to, harriet miers) -> (the Senate, happened last week to, Harriet Miers) -> the Senate (684ms) How old is Harriet Miers? 2005-10-05 -1.22222222222 How old is Harriet Miers? -> $x: (harriet miers, date, $x) -> (Harriet Miers & anti-Christian Bias, Original air date, 2005-10-05) -> 2005-10-05 (729ms) How old is Harriet Miers? 1945-08-10 -1.22222222222 How old is Harriet Miers? -> $x: (harriet miers, date, $x) -> (Harriet Miers, Date of birth, 1945-08-10) -> 1945-08-10 (729ms) How old is Harriet Miers? 2005-10-27 -1.22222222222 How old is Harriet Miers? -> $x: (harriet miers, date, $x) -> (Harriet Miers Withdraws Nomination, Original air date, 2005-10-27) -> 2005-10-27 (729ms) When was King Louis XIV born? the site -0.0 When was King Louis XIV born? -> $x: (king louis xiv, live on, $x) -> (King Louis XIV, used to live on, the site) -> the site (885ms) When was King Louis XIV born? 1638 -0.0 When was King Louis XIV born? -> $x: (louis xiv, be bear in, $x) -> (Louis XIV, was born in, 1638) -> 1638 (885ms) When was King Louis XIV born? the royal ch?teau -0.0 When was King Louis XIV born? -> $x: (king louis xiv, live in, $x) -> (King Louis XIV, lived in, the royal ch?teau) -> the royal ch?teau (885ms) When was King Louis XIV born? the Chateau-Neuf -0.0 When was King Louis XIV born? -> $x: (louis xiv, be bear in, $x) -> (Louis XIV, was born in, the Chateau-Neuf) -> the Chateau-Neuf (885ms) When was King Louis XIV born? the land -0.0 When was King Louis XIV born? -> $x: (king louis xiv, live on, $x) -> (King Louis XIV, had earlier lived on, the land) -> the land (885ms) When was King Louis XIV born? September 1638 -0.0 When was King Louis XIV born? -> $x: (louis xiv, be bear in, $x) -> (Louis XIV, was born in, September 1638) -> September 1638 (885ms) When was King Louis XIV born? September 1 , 1715 -0.111111111111 When was King Louis XIV born? -> $x: (king louis xiv, die on, $x) -> (King Louis XIV, died on, September 1 , 1715) -> September 1 , 1715 (885ms) When was King Louis XIV born? 1715 -0.222222222222 When was King Louis XIV born? -> $x: (king louis xiv, die in, $x) -> (King Louis XIV, died in, 1715) -> 1715 (942ms) When was King Louis XIV born? France -0.333333333333 When was King Louis XIV born? -> $x: ($x, do, king louis xiv) -> (France, did, King Louis XIV help) -> France (942ms) When was King Louis XIV born? Radio Frequency Coordination -1.5555555555540002 When was King Louis XIV born? -> $x: ($x, establish, xiv) -> (Radio Frequency Coordination, was re-established at, CBS XIV) -> Radio Frequency Coordination (989ms) When was King Louis XIV born? the Assessor -1.5555555555540002 When was King Louis XIV born? -> $x: ($x, establish, xiv) -> (the Assessor, is established under, Section 8 Article XIV) -> the Assessor (1005ms) When was King Louis XIV born? Paris -1.5555555555540002 When was King Louis XIV born? -> $x: ($x, establish, louis xiv) -> (Paris, was established by, Louis XIV) -> Paris (989ms) When was King Louis XIV born? Major General Vandegrift -1.5555555555540002 When was King Louis XIV born? -> $x: ($x, establish, xiv) -> (Major General Vandegrift, established, the US XIV Corps) -> Major General Vandegrift (989ms) When was King Louis XIV born? the National Stud -1.5555555555540002 When was King Louis XIV born? -> $x: ($x, establish, louis xiv) -> (the National Stud, was established in, France . Louis XIV) -> the National Stud (1006ms) When was King Louis XIV born? compliance -1.5555555555540002 When was King Louis XIV born? -> $x: ($x, establish, xiv) -> (compliance, thus failed to establish, its Article XIV defence) -> compliance (989ms) When was King Louis XIV born? Van Robais -1.5555555555540002 When was King Louis XIV born? -> $x: ($x, establish, xiv) -> (Van Robais, was established by, Lewis XIV.) -> Van Robais (989ms) When was King Louis XIV born? The EMP Commission -1.5555555555540002 When was King Louis XIV born? -> $x: ($x, establish, xiv) -> (The EMP Commission, was established pursuant to, title XIV) -> The EMP Commission (989ms) When was King Louis XIV born? 1746 -1.9999999999940001 When was King Louis XIV born? -> $x: (king louis xiv, die, $x) -> (French King Louis XIV, dies, 1746) -> 1746 (1073ms) When was King Louis XIV born? 1712 -1.9999999999940001 When was King Louis XIV born? -> $x: (king louis xiv, die, $x) -> (French king Louis XIV, dies, 1712) -> 1712 (1073ms) When was King Louis XIV born? figure -1.9999999999940001 When was King Louis XIV born? -> $x: (king louis xiv, invent, $x) -> (French king Louis xiv, invented, figure) -> figure (1073ms) When was King Louis XIV born? Maria-Teresa -2.111111111104 When was King Louis XIV born? -> $x: (king louis xiv, marry, $x) -> (King Louis XIV, married, Maria-Teresa) -> Maria-Teresa (1073ms) Where is the Salton Sea? Coachella Valley residents 0.555555555555 Where is the Salton Sea? -> $x: ($x, cause, salton sea) -> (Coachella Valley residents, are caused by, a decaying Salton Sea) -> Coachella Valley residents (1286ms) Where is the Salton Sea? Riverside County 0.555555555555 Where is the Salton Sea? -> $x: ($x, contain, salton sea) -> (Riverside County, Contains, Salton Sea State Recreation Area) -> Riverside County (1544ms) Where is the Salton Sea? 92275 0.555555555555 Where is the Salton Sea? -> $x: ($x, contain, salton sea) -> (92275, Contains, Salton Sea Airport) -> 92275 (1544ms) Where is the Salton Sea? The bill 0.555555555555 Where is the Salton Sea? -> $x: ($x, establish, salton sea) -> (The bill, would establish, the Salton Sea Restoration Fund) -> The bill (1514ms) Where is the Salton Sea? Oreochromis mossambicus 0.555555555555 Where is the Salton Sea? -> $x: ($x, found, salton sea) -> (Oreochromis mossambicus, Found in, Salton Sea) -> Oreochromis mossambicus (1569ms) Where is the Salton Sea? Sonny Bono Salton Sea National Wildlife Refuge 0.555555555555 Where is the Salton Sea? -> $x: ($x, found, salton sea) -> (Sonny Bono Salton Sea National Wildlife Refuge, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sonny%20Bono%20Salton%20Sea%20National%20Wildlife%20Refuge) -> Sonny Bono Salton Sea National Wildlife Refuge (1544ms) Where is the Salton Sea? sick and deceased pelicans 0.555555555555 Where is the Salton Sea? -> $x: ($x, find, salton sea) -> (sick and deceased pelicans, found at, Salton Sea) -> sick and deceased pelicans (1286ms) Where is the Salton Sea? didnt 0.555555555555 Where is the Salton Sea? -> $x: ($x, go, salton sea) -> (didnt, go to, Salton Sea) -> didnt (1326ms) Where is the Salton Sea? file 0.555555555555 Where is the Salton Sea? -> $x: ($x, contain, salton sea) -> (file, contains, Salton Sea) -> file (1286ms) Where is the Salton Sea? two years 0.555555555555 Where is the Salton Sea? -> $x: ($x, create, salton sea) -> (two years, created, the Salton Sea) -> two years (1544ms) Where is the Salton Sea? Thomas Newman 0.555555555555 Where is the Salton Sea? -> $x: ($x, produce, salton sea) -> (Thomas Newman, Releases produced, The Salton Sea) -> Thomas Newman (1386ms) Where is the Salton Sea? issues 0.555555555555 Where is the Salton Sea? -> $x: ($x, surround, salton sea) -> (issues, surrounding, the Salton Sea) -> issues (1128ms) Where is the Salton Sea? the rock formations 0.555555555555 Where is the Salton Sea? -> $x: ($x, found, salton sea) -> (the rock formations, found just north of, the Salton Sea) -> the rock formations (1514ms) Where is the Salton Sea? the Colorado River 0.555555555555 Where is the Salton Sea? -> $x: ($x, create, salton sea) -> (the Colorado River, created, the Salton Sea) -> the Colorado River (1286ms) Where is the Salton Sea? the pollutants 0.555555555555 Where is the Salton Sea? -> $x: ($x, found, salton sea) -> (the pollutants, found in, the Salton Sea) -> the pollutants (1544ms) Where is the Salton Sea? solar 0.555555555555 Where is the Salton Sea? -> $x: (salton sea, be for, $x) -> (the Salton Sea, are actually suited for, solar) -> solar (1326ms) Where is the Salton Sea? Salton Sea State Recreation Area 0.555555555555 Where is the Salton Sea? -> $x: ($x, found, salton sea) -> (Salton Sea State Recreation Area, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Salton%20Sea%20State%20Recreation%20Area) -> Salton Sea State Recreation Area (1544ms) Where is the Salton Sea? 1960 1960 Tonopah Test Range 0.555555555555 Where is the Salton Sea? -> $x: ($x, replace, salton sea) -> (1960 1960 Tonopah Test Range, replaced, the Salton Sea Test Base) -> 1960 1960 Tonopah Test Range (1326ms) Where is the Salton Sea? salton sea airport 0.555555555555 Where is the Salton Sea? -> $x: ($x, find, salton sea) -> (salton sea airport, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Salton%20Sea%20Airport) -> salton sea airport (1286ms) Where is the Salton Sea? United States of America 0.555555555555 Where is the Salton Sea? -> $x: ($x, contain, salton sea) -> (United States of America, Contains, Salton Sea Beach) -> United States of America (1286ms) Where is the Salton Sea? dusty flatlands 0.555555555555 Where is the Salton Sea? -> $x: ($x, replace, salton sea) -> (dusty flatlands, have replaced parts of, the Salton Sea) -> dusty flatlands (1544ms) Where is the Salton Sea? the survey 0.555555555555 Where is the Salton Sea? -> $x: ($x, found, salton sea) -> (the survey, can be found under, # 4074A Salton Sea South '81) -> the survey (1514ms) Where is the Salton Sea? you?ll 0.555555555555 Where is the Salton Sea? -> $x: ($x, find, salton sea) -> (you?ll, find, Salton Sea State Park) -> you?ll (1387ms) Where is the Salton Sea? folks 0.555555555555 Where is the Salton Sea? -> $x: (salton sea, be for, $x) -> (the Salton Sea, was the premiere vacation destination for, folks) -> folks (1326ms) Where is the Salton Sea? post 0.555555555555 Where is the Salton Sea? -> $x: ($x, go, salton sea) -> (post, Went to, the Salton Sea) -> post (1286ms) Where is the Salton Sea? the land 0.555555555555 Where is the Salton Sea? -> $x: ($x, surround, salton sea) -> (the land, surrounding, the Salton Sea) -> the land (1326ms) Where is the Salton Sea? California 0.555555555555 Where is the Salton Sea? -> $x: ($x, contain, salton sea) -> (California, Contains, Salton Sea Beach) -> California (1247ms) Where is the Salton Sea? a road 0.555555555555 Where is the Salton Sea? -> $x: ($x, go, salton sea) -> (a road, went by, the Salton Sea) -> a road (1247ms) Where is the Salton Sea? the ?green path ? 0.555555555555 Where is the Salton Sea? -> $x: ($x, go, salton sea) -> (the ?green path ?, will go ? to, the Salton Sea) -> the ?green path ? (1387ms) Where is the Salton Sea? Colorado Desert 0.555555555555 Where is the Salton Sea? -> $x: ($x, contain, salton sea) -> (Colorado Desert, Contains, Salton Sea) -> Colorado Desert (1514ms) Where is the Salton Sea? 1905 0.555555555555 Where is the Salton Sea? -> $x: ($x, create, salton sea) -> (1905, created, the Salton Sea) -> 1905 (1128ms) Where is the Salton Sea? the headwaters 0.555555555555 Where is the Salton Sea? -> $x: (salton sea, be for, $x) -> (the Salton Sea, could be mistaken for, the headwaters) -> the headwaters (1326ms) Where is the Salton Sea? Southern California 0.555555555555 Where is the Salton Sea? -> $x: ($x, contain, salton sea) -> (Southern California, Contains, Salton Sea) -> Southern California (1247ms) Where is the Salton Sea? Imperial County 0.555555555555 Where is the Salton Sea? -> $x: ($x, contain, salton sea) -> (Imperial County, Contains, Salton Sea Airport) -> Imperial County (1514ms) Where is the Salton Sea? The flood 0.555555555555 Where is the Salton Sea? -> $x: ($x, create, salton sea) -> (The flood, created, the Salton Sea) -> The flood (1326ms) Where is the Salton Sea? A somewhat unique population 0.555555555555 Where is the Salton Sea? -> $x: ($x, found, salton sea) -> (A somewhat unique population, is found in, the Salton Sea) -> A somewhat unique population (1387ms) Where is the Salton Sea? the revision 0.555555555555 Where is the Salton Sea? -> $x: ($x, create, salton sea) -> (the revision, helped create, the Salton Sea Coalition) -> the revision (1387ms) Where is the Salton Sea? Bill Bernstein 0.555555555555 Where is the Salton Sea? -> $x: ($x, produce, salton sea) -> (Bill Bernstein, Releases produced, The Salton Sea) -> Bill Bernstein (1386ms) Where is the Salton Sea? 3 million birds 0.555555555555 Where is the Salton Sea? -> $x: ($x, find, salton sea) -> (3 million birds, can be found at, the Salton Sea) -> 3 million birds (1247ms) Where is the Salton Sea? human enjoyment 0.555555555555 Where is the Salton Sea? -> $x: (salton sea, be for, $x) -> (the Salton Sea, was now unfit for, human enjoyment) -> human enjoyment (1128ms) Where is the Salton Sea? Ken Aguado 0.555555555555 Where is the Salton Sea? -> $x: ($x, produce, salton sea) -> (Ken Aguado, Films Produced, The Salton Sea) -> Ken Aguado (1386ms) Where is the Salton Sea? every movie 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (every movie, is shot near, the Salton Sea) -> every movie (1736ms) Where is the Salton Sea? No nests 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (No nests, have been noted at, the Salton Sea) -> No nests (1704ms) Where is the Salton Sea? Floods and crop damage 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (Floods and crop damage, was incurred at, the Salton Sea) -> Floods and crop damage (1739ms) Where is the Salton Sea? a director 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (a director, was, The Salton Sea) -> a director (1721ms) Where is the Salton Sea? a motor home and Jeep 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (a motor home and Jeep, are stored near, the Salton Sea) -> a motor home and Jeep (1739ms) Where is the Salton Sea? Christopher 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (Christopher, is living near, the Salton Sea and training) -> Christopher (1722ms) Where is the Salton Sea? The park 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (The park, was dedicated to, Salton Sea advocate Sonny Bono) -> The park (1738ms) Where is the Salton Sea? the data 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (the data, has been gathered on, the Salton Sea) -> the data (1704ms) Where is the Salton Sea? the Gulf 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (the Gulf, has been recorded at, the Salton Sea) -> the Gulf (1722ms) Where is the Salton Sea? the bulk 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (the bulk, is occupied by, the Salton Sea) -> the bulk (1636ms) Where is the Salton Sea? the valley 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (the valley, had been filled by, the Salton Sea) -> the valley (1722ms) Where is the Salton Sea? the largest geothermal plant 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (the largest geothermal plant, is called, the Salton Sea 6) -> the largest geothermal plant (1739ms) Where is the Salton Sea? Lake Cahuilla 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (Lake Cahuilla, was the original name for, the Salton Sea) -> Lake Cahuilla (1736ms) Where is the Salton Sea? more than one hundred different species 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (more than one hundred different species, are at, the Salton Sea) -> more than one hundred different species (1738ms) Where is the Salton Sea? Randy 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (Randy, was more familiar with, the Salton Sea) -> Randy (1738ms) Where is the Salton Sea? Palm Springs 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (Palm Springs, is, the Salton Sea) -> Palm Springs (1736ms) Where is the Salton Sea? Bombay Beach 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (Bombay Beach, is, the Salton Sea) -> Bombay Beach (1739ms) Where is the Salton Sea? high phosphate water 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (high phosphate water, is, the Salton sea) -> high phosphate water (1736ms) Where is the Salton Sea? The money 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (The money, shall be paid into, the Salton Sea Restoration Fund) -> The money (1569ms) Where is the Salton Sea? The next step 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (The next step, is available to fix, the Salton Sea) -> The next step (1738ms) Where is the Salton Sea? 70,000 shorebirds 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (70,000 shorebirds, were counted in, Salton Sea) -> 70,000 shorebirds (1569ms) Where is the Salton Sea? the Center 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (the Center, will be, the Salton Sea) -> the Center (1636ms) Where is the Salton Sea? Desert Shores 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (Desert Shores, is in, the Salton Sea area) -> Desert Shores (1636ms) Where is the Salton Sea? The location 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (The location, is, the Salton Sea) -> The location (1739ms) Where is the Salton Sea? 400 species of birds 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (400 species of birds, are attracted to, the Salton Sea) -> 400 species of birds (1722ms) Where is the Salton Sea? The plant 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (The plant, is located over, the Salton Sea Geothermal Field) -> The plant (1739ms) Where is the Salton Sea? 4 Salton Sea Q 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (4 Salton Sea Q, is the deal with, the Salton Sea) -> 4 Salton Sea Q (1736ms) Where is the Salton Sea? DDT 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (DDT, has both been detected in, the Salton Sea) -> DDT (1736ms) Where is the Salton Sea? Yucca 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (Yucca, is somewhere near, the Salton Sea) -> Yucca (1738ms) Where is the Salton Sea? The project 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (The project, was designated as, Salton Sea Unit) -> The project (1738ms) Where is the Salton Sea? 420 bird species 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (420 bird species, have been recorded at, the Salton Sea) -> 420 bird species (1736ms) Where is the Salton Sea? The large lake 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (The large lake, is, the Salton Sea) -> The large lake (1736ms) Where is the Salton Sea? Westmorland 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (Westmorland, is 12 miles south of, the Salton Sea) -> Westmorland (1739ms) Where is the Salton Sea? screenshot 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (screenshot, is taken from, Philip Bloom?s piece Salton Sea Beach) -> screenshot (1636ms) Where is the Salton Sea? The refuge 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (The refuge, is bordered by, the Salton Sea) -> The refuge (1569ms) Where is the Salton Sea? The Glamis Sand Dunes 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (The Glamis Sand Dunes, are located southeast of, the Salton Sea) -> The Glamis Sand Dunes (1569ms) Where is the Salton Sea? the meeting 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (the meeting, was centered around, the Salton Sea 6 project) -> the meeting (1739ms) Where is the Salton Sea? birds 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (birds, have been counted at, the Salton Sea--almost half) -> birds (1722ms) Where is the Salton Sea? 01/09/01 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (01/09/01, 1AM, Salton Sea Optional Link URL) -> 01/09/01 (1736ms) Where is the Salton Sea? the east 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (the east, is, the Salton Sea) -> the east (1739ms) Where is the Salton Sea? The following photos 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (The following photos, are from, the Salton Sea) -> The following photos (1738ms) Where is the Salton Sea? The site 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (The site, is located on, the Salton Sea) -> The site (1739ms) Where is the Salton Sea? a lake 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (a lake, was dubbed, the Salton Sea) -> a lake (1704ms) Where is the Salton Sea? April 24 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (April 24, will be the fate of, the Salton Sea ? Panel Discussion) -> April 24 (1738ms) Where is the Salton Sea? the desert 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (the desert, is, the Salton Sea) -> the desert (1739ms) Where is the Salton Sea? the approach 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (the approach, being taken to, restore the Salton Sea) -> the approach (1636ms) Where is the Salton Sea? An obvious issue 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (An obvious issue, is the distance from, the Salton Sea) -> An obvious issue (1736ms) Where is the Salton Sea? boating enthusiasts 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (boating enthusiasts, are lured to, buoyant Salton Sea) -> boating enthusiasts (1569ms) Where is the Salton Sea? the Los Angeles basin 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (the Los Angeles basin, are near, the Salton Sea) -> the Los Angeles basin (1636ms) Where is the Salton Sea? Todd 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (Todd, is highly knowledgeable of, the Salton Sea) -> Todd (1704ms) Where is the Salton Sea? water 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (water, would have been sent to, the Salton Sea) -> water (1738ms) Where is the Salton Sea? the nation?s eyes 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (the nation?s eyes, were finally turned toward, the Salton Sea) -> the nation?s eyes (1704ms) Where is the Salton Sea? the Coachella and Imperial valleys 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (the Coachella and Imperial valleys, is, the Salton Sea) -> the Coachella and Imperial valleys (1739ms) Where is the Salton Sea? The next outing 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (The next outing, was out down to, the Salton Sea) -> The next outing (1636ms) Where is the Salton Sea? Bob 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (Bob, was raised in, the Salton Sea area) -> Bob (1738ms) Where is the Salton Sea? Alabama 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (Alabama, is like, the Salton Sea) -> Alabama (1704ms) Where is the Salton Sea? The real issue 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (The real issue, is the liability of, the Salton Sea) -> The real issue (1738ms) Where is the Salton Sea? sea level 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (sea level, would be enough for, the Salton Sea) -> sea level (1736ms) Where is the Salton Sea? Indio 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (Indio, is, the Salton Sea) -> Indio (1738ms) Where is the Salton Sea? Sonny Bono Sonny 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (Sonny Bono Sonny, was determined to save, the Salton Sea) -> Sonny Bono Sonny (1736ms) Where is the Salton Sea? Wheat Chex 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (Wheat Chex, must be made in, the Salton Sea) -> Wheat Chex (1704ms) Where is the Salton Sea? I?ll 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (I?ll, be speaking about, the Salton Sea) -> I?ll (1739ms) Where is the Salton Sea? The next stop 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (The next stop, was, the Salton Sea) -> The next stop (1736ms) Where is the Salton Sea? the Pacific Institute 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (the Pacific Institute, are members of, the Salton Sea Coalition) -> the Pacific Institute (1722ms) Where is the Salton Sea? The band 0.444444444444 Where is the Salton Sea? -> $x: ($x, be be, salton sea) -> (The band, is from, the Salton Sea) -> The band (1569ms) Where is the Salton Sea? the sea -9.999778782798785E-13 Where is the Salton Sea? -> $x: (salton sea, do, $x) -> (the Salton Sea Authority, is trying to do with, the sea) -> the sea (1741ms) Where is the Salton Sea? Linda -9.999778782798785E-13 Where is the Salton Sea? -> $x: (salton sea, do, $x) -> (the Salton Sea, so does, Linda) -> Linda (1741ms) Where is the Salton Sea? a closed desert basin -1.999955756559757E-12 Where is the Salton Sea? -> $x: (salton sea, be locate in, $x) -> (The Salton Sea, is located in, a closed desert basin) -> a closed desert basin (1741ms) Where is the Salton Sea? the southeastern corner -1.999955756559757E-12 Where is the Salton Sea? -> $x: (salton sea, be locate in, $x) -> (The Salton Sea, is located in, the southeastern corner) -> the southeastern corner (1741ms) Where is the Salton Sea? the Sonoran Desert -1.999955756559757E-12 Where is the Salton Sea? -> $x: (salton sea, be locate in, $x) -> (The Salton Sea, is located in, the Sonoran Desert) -> the Sonoran Desert (1741ms) Where is the Salton Sea? 1955 -0.22222222222299992 Where is the Salton Sea? -> $x: (salton sea, be in in, $x) -> (The Salton Sea State Park, was established in, 1955) -> 1955 (1742ms) Where is the Salton Sea? serious trouble -0.22222222222299992 Where is the Salton Sea? -> $x: (salton sea, be in in, $x) -> (The Salton Sea, is in, serious trouble) -> serious trouble (1741ms) Where is the Salton Sea? black -0.22222222222299992 Where is the Salton Sea? -> $x: (salton sea, be in in, $x) -> (the present day Salton Sea, is shown in, black) -> black (1742ms) Where is the Salton Sea? Ecotopia -0.22222222222299992 Where is the Salton Sea? -> $x: (salton sea, be in in, $x) -> (the Salton Sea, was featured in, Ecotopia) -> Ecotopia (1742ms) Where is the Salton Sea? the dust -0.22222222222299992 Where is the Salton Sea? -> $x: (salton sea, be in in, $x) -> (The Salton Sea, was left in, the dust) -> the dust (1742ms) Where is the Salton Sea? a poor state -0.22222222222299992 Where is the Salton Sea? -> $x: (salton sea, be in in, $x) -> (The Salton Sea, is still there in, a poor state) -> a poor state (1742ms) Where is the Salton Sea? fact -0.22222222222299992 Where is the Salton Sea? -> $x: (salton sea, be in in, $x) -> (the Salton Sea, was in, fact) -> fact (1742ms) Where is the Salton Sea? nature -0.22222222222299992 Where is the Salton Sea? -> $x: (salton sea, be in in, $x) -> (the Salton Sea, are often cyclical in, nature) -> nature (1742ms) Where is the Salton Sea? the hostile desert -0.22222222222299992 Where is the Salton Sea? -> $x: (salton sea, be in in, $x) -> ('s Salton Sea, is a fertile oasis in, the hostile desert) -> the hostile desert (1742ms) Where is the Salton Sea? the early part -0.22222222222299992 Where is the Salton Sea? -> $x: (salton sea, be in in, $x) -> (the Salton Sea, was formed in, the early part) -> the early part (1742ms) Where is the Salton Sea? May -0.22222222222299992 Where is the Salton Sea? -> $x: (salton sea, be in in, $x) -> (Salton Sea', will be out in, May) -> May (1742ms) Where is the Salton Sea? an effort -0.22222222222299992 Where is the Salton Sea? -> $x: (salton sea, be in in, $x) -> (the Salton Sea Authority, was formed in, an effort) -> an effort (1742ms) Where is the Salton Sea? the Imperial Valley -0.22222222222299992 Where is the Salton Sea? -> $x: (salton sea, be in in, $x) -> (the Salton Sea, is in, the Imperial Valley) -> the Imperial Valley (1742ms) Where is the Salton Sea? the middle -0.22222222222299992 Where is the Salton Sea? -> $x: (salton sea, be in in, $x) -> (The Salton Sea, is an ocean in, the middle) -> the middle (1742ms) Where is the Salton Sea? 2010 -0.22222222222299992 Where is the Salton Sea? -> $x: (salton sea, be in in, $x) -> (the Salton Sea, was ruled invalid in, 2010) -> 2010 (1742ms) Where is the Salton Sea? the top picks -0.22222222222299992 Where is the Salton Sea? -> $x: (salton sea, be in in, $x) -> (the Salton Sea, is staying yet another week in, the top picks) -> the top picks (1742ms) Where is the Salton Sea? SB 153 -0.22222222222299992 Where is the Salton Sea? -> $x: (salton sea, be in in, $x) -> (the Salton Sea, be included in, SB 153) -> SB 153 (1742ms) Where is the Salton Sea? a former volcanic area -0.22222222222299992 Where is the Salton Sea? -> $x: (salton sea, be in in, $x) -> (The Salton Sea, is in, a former volcanic area) -> a former volcanic area (1742ms) Where is the Salton Sea? management -0.22222222222299992 Where is the Salton Sea? -> $x: (salton sea, be in in, $x) -> (The Salton Sea, is an experiment in, management) -> management (1741ms) Where is the Salton Sea? Portal So Cal -0.555555555555 Where is the Salton Sea? -> $x: ($x, get, salton sea) -> (Portal So Cal, get together also down by, the Salton Sea) -> Portal So Cal (1743ms) Where is the Salton Sea? 1964 ? Tilapia -0.555555555555 Where is the Salton Sea? -> $x: ($x, get, salton sea) -> (1964 ? Tilapia, get into, Salton Sea) -> 1964 ? Tilapia (1742ms) What was the final score? an interception runback -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final Raider points, were scored on, an interception runback) -> an interception runback (2861ms) What was the final score? gritty high sheens -0.0 What was the final score? -> $x: (final, be score, $x) -> (the final moments, are scored by, gritty high sheens) -> gritty high sheens (2861ms) What was the final score? August 25 -0.0 What was the final score? -> $x: (final, be score, $x) -> (His final two victyories, were scored on, August 25) -> August 25 (2327ms) What was the final score? oof a lovely ball -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final Johnson goal, was scored, oof a lovely ball) -> oof a lovely ball (2327ms) What was the final score? Kayla Grimsley -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final two goals, were scored by, Kayla Grimsley) -> Kayla Grimsley (2009ms) What was the final score? Mag Farrell -0.0 What was the final score? -> $x: (final, be score, $x) -> (the final try, was fittingly scored by, Mag Farrell) -> Mag Farrell (3593ms) What was the final score? every possible way -0.0 What was the final score? -> $x: (final, be score, $x) -> (the final result, was a total score in, every possible way) -> every possible way (3498ms) What was the final score? 27.9 seconds -0.0 What was the final score? -> $x: (final, be score, $x) -> (FA Cup final, was scored in, 27.9 seconds) -> 27.9 seconds (2649ms) What was the final score? defenseman Curtis Leschyshyn -0.0 What was the final score? -> $x: (final, be score, $x) -> ('s final goal, was scored by, defenseman Curtis Leschyshyn) -> defenseman Curtis Leschyshyn (2009ms) What was the final score? Samper -0.0 What was the final score? -> $x: (final, be score, $x) -> (The fifth and final goal, was scored by, Samper) -> Samper (2009ms) What was the final score? Logan Ferrell -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final two goals, were scored by, Logan Ferrell) -> Logan Ferrell (2009ms) What was the final score? the 72nd minute -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final goal, was scored in, the 72nd minute) -> the 72nd minute (1739ms) What was the final score? Chelsea Russell -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final goal, was scored by, Chelsea Russell) -> Chelsea Russell (2527ms) What was the final score? Alex Leavitt -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final two goals, were scored by, Alex Leavitt) -> Alex Leavitt (2526ms) What was the final score? a 30 ? -0.0 What was the final score? -> $x: (final, be score, $x) -> (His final performance, was scored, a 30 ?) -> a 30 ? (3824ms) What was the final score? the full test dataset -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final results, are scored on, the full test dataset) -> the full test dataset (2649ms) What was the final score? Jack Henry -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final goal, was scored by, Jack Henry) -> Jack Henry (2009ms) What was the final score? every year -0.0 What was the final score? -> $x: (final, be score, $x) -> (the final touchdown, is scored, every year) -> every year (3497ms) What was the final score? junior Emily Cline -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final goal, was scored by, junior Emily Cline) -> junior Emily Cline (2649ms) What was the final score? Dirk Graham -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final regular season goal, was scored by, Dirk Graham) -> Dirk Graham (3498ms) What was the final score? the home team -0.0 What was the final score? -> $x: (final, be score, $x) -> (One final run, would be scored by, the home team) -> the home team (3824ms) What was the final score? 100 % -0.0 What was the final score? -> $x: (final, be score, $x) -> (This final audit, was scored, 100 %) -> 100 % (2527ms) What was the final score? the matches -0.0 What was the final score? -> $x: (final, be score, $x) -> (the quarter finals, were scored in, the matches) -> the matches (2830ms) What was the final score? Nobuo Uematsu -0.0 What was the final score? -> $x: (final, be score, $x) -> (Final Fantasy II, was originally scored by, Nobuo Uematsu) -> Nobuo Uematsu (3824ms) What was the final score? Jak Cox -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final Stones try, was scored by, Jak Cox) -> Jak Cox (3593ms) What was the final score? Ripson Fox -0.0 What was the final score? -> $x: (final, be score, $x) -> (the final, was scored by, Ripson Fox) -> Ripson Fox (2830ms) What was the final score? the shootout round -0.0 What was the final score? -> $x: (final, be score, $x) -> (the final score, are scored during, the shootout round) -> the shootout round (3824ms) What was the final score? fold -0.0 What was the final score? -> $x: (final, be score, $x) -> (final point, has been scored, fold) -> fold (3824ms) What was the final score? far-reaching changes -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final result, was a score of, far-reaching changes) -> far-reaching changes (2649ms) What was the final score? tenths -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final, is scored in, tenths) -> tenths (3896ms) What was the final score? Vincent Damphousse -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final regular season goal, was scored by, Vincent Damphousse) -> Vincent Damphousse (1739ms) What was the final score? the other Silvertips newbie -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final goal, was scored by, the other Silvertips newbie) -> the other Silvertips newbie (1739ms) What was the final score? Coaching Systems -0.0 What was the final score? -> $x: (final, be score, $x) -> (*Final participant tests, are scored at, Coaching Systems) -> Coaching Systems (3593ms) What was the final score? 80mins -0.0 What was the final score? -> $x: (final, be score, $x) -> (the final goal, was scored after, 80mins) -> 80mins (2009ms) What was the final score? Batum -0.0 What was the final score? -> $x: (final, be score, $x) -> (the final 18, were scored by, Batum) -> Batum (2861ms) What was the final score? chamber orchestra -0.0 What was the final score? -> $x: (final, be score, $x) -> (final Symphony, is scored for, chamber orchestra) -> chamber orchestra (3593ms) What was the final score? a la Balderdash -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final papers, are scored, a la Balderdash) -> a la Balderdash (2260ms) What was the final score? the 17 :04 mark -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final goal, was scored at, the 17 :04 mark) -> the 17 :04 mark (2260ms) What was the final score? Nathan Ahrens -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final Hanover goal, was scored by, Nathan Ahrens) -> Nathan Ahrens (3593ms) What was the final score? survival -0.0 What was the final score? -> $x: (final, be score, $x) -> (his final examination, would be scored based on, survival) -> survival (2861ms) What was the final score? two days -0.0 What was the final score? -> $x: (final, be score, $x) -> (the final score, is your total score from, two days) -> two days (1739ms) What was the final score? a corner -0.0 What was the final score? -> $x: (final, be score, $x) -> (the final goal, was scored from, a corner) -> a corner (1739ms) What was the final score? a draw -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final verdict, was scored, a draw) -> a draw (2327ms) What was the final score? the Faculty -0.0 What was the final score? -> $x: (final, be score, $x) -> (a final goal, was scored by, the Faculty) -> the Faculty (2260ms) What was the final score? second-year -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final Bengals touchdown, was scored by, second-year) -> second-year (2861ms) What was the final score? Italy -0.0 What was the final score? -> $x: (final, be score, $x) -> (the quarter finals, were the scores from, Italy) -> Italy (3593ms) What was the final score? points -0.0 What was the final score? -> $x: (final, be score, $x) -> (your final, will be scored objectively by, points) -> points (2527ms) What was the final score? Iniesta -0.0 What was the final score? -> $x: (final, be score, $x) -> (the final goal, was scored by, Iniesta) -> Iniesta (2830ms) What was the final score? 1 , 2 , 3 -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final bibliography, will be given a score of, 1 , 2 , 3) -> 1 , 2 , 3 (3498ms) What was the final score? the scoring rubric -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final product, will be scored using, the scoring rubric) -> the scoring rubric (3824ms) What was the final score? the following three parts -0.0 What was the final score? -> $x: (final, be score, $x) -> (Final assessment, will be scored in, the following three parts) -> the following three parts (3824ms) What was the final score? a full orchestra -0.0 What was the final score? -> $x: (final, be score, $x) -> (the final touches, include being scored by, a full orchestra) -> a full orchestra (3824ms) What was the final score? the five ringside judges -0.0 What was the final score? -> $x: (final, be score, $x) -> (the final round, was scored by, the five ringside judges) -> the five ringside judges (3824ms) What was the final score? Nathan Zita -0.0 What was the final score? -> $x: (final, be score, $x) -> (' final touchdown, was scored by, Nathan Zita) -> Nathan Zita (2526ms) What was the final score? the trip -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final total, is your score for, the trip) -> the trip (2649ms) What was the final score? a scale -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final exams, are scored on, a scale) -> a scale (2009ms) What was the final score? the ninth -0.0 What was the final score? -> $x: (final, be score, $x) -> ('s third and final run, was scored in, the ninth) -> the ninth (2861ms) What was the final score? freshman Payton DeHart -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final goal, was scored by, freshman Payton DeHart) -> freshman Payton DeHart (2327ms) What was the final score? an empty net -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final goal, was scored on, an empty net) -> an empty net (3825ms) What was the final score? a force field method -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final result, was then scored using, a force field method) -> a force field method (3498ms) What was the final score? 4.5 -0.0 What was the final score? -> $x: (final, be score, $x) -> (the final round, will be scored as, 4.5) -> 4.5 (1739ms) What was the final score? Lam Jones -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final Jets touchdown, was scored by, Lam Jones) -> Lam Jones (2327ms) What was the final score? Thomas Schreiber -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final first quarter goal, was scored by, Thomas Schreiber) -> Thomas Schreiber (2526ms) What was the final score? a header -0.0 What was the final score? -> $x: (final, be score, $x) -> (the final goal, was scored by, a header) -> a header (3824ms) What was the final score? Yankee pinch-runner Brett Gardner -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final run, was scored by, Yankee pinch-runner Brett Gardner) -> Yankee pinch-runner Brett Gardner (3593ms) What was the final score? teams -0.0 What was the final score? -> $x: (final, be score, $x) -> (the final and, have been putting some good scores on, teams) -> teams (2830ms) What was the final score? the merest hint -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final piece, was an electronic score with, the merest hint) -> the merest hint (3896ms) What was the final score? BSBA officials -0.0 What was the final score? -> $x: (final, be score, $x) -> (final score total All targets, will be scored by, BSBA officials) -> BSBA officials (3824ms) What was the final score? a battling -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final three tries, were scored first by, a battling) -> a battling (2260ms) What was the final score? Junior -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final goal, was scored by, Junior) -> Junior (3497ms) What was the final score? the final 15 minutes -0.0 What was the final score? -> $x: (final, be score, $x) -> (the final frame, was the only score of, the final 15 minutes) -> the final 15 minutes (2260ms) What was the final score? the same criteria -0.0 What was the final score? -> $x: (final, be score, $x) -> (Final Round Structure Sets, will be scored on, the same criteria) -> the same criteria (2861ms) What was the final score? Sullinger and Lighty -0.0 What was the final score? -> $x: (final, be score, $x) -> (the final 20 points, were scored by, Sullinger and Lighty) -> Sullinger and Lighty (2649ms) What was the final score? the favorite -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final margin, is the final score of, the favorite) -> the favorite (3593ms) What was the final score? winger Gennadiy Likhachev -0.0 What was the final score? -> $x: (final, be score, $x) -> (the 1969 final, was scored by, winger Gennadiy Likhachev) -> winger Gennadiy Likhachev (2830ms) What was the final score? overtime -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final goal, would be scored in, overtime) -> overtime (2009ms) What was the final score? the penalty spot -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final goal, was scored from, the penalty spot) -> the penalty spot (2526ms) What was the final score? Canada?s #8 -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final goal, was scored by, Canada?s #8) -> Canada?s #8 (2527ms) What was the final score? the 66th minute -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final goal, was scored in, the 66th minute) -> the 66th minute (3896ms) What was the final score? Blackpool?s Stan Mortensen -0.0 What was the final score? -> $x: (final, be score, $x) -> (the final, was scored by, Blackpool?s Stan Mortensen) -> Blackpool?s Stan Mortensen (2830ms) What was the final score? stupid baserunning -0.0 What was the final score? -> $x: (final, be score, $x) -> (the final run, was scored on, stupid baserunning) -> stupid baserunning (2260ms) What was the final score? a straight one-time pass -0.0 What was the final score? -> $x: (final, be score, $x) -> (final goal, was scored off, a straight one-time pass) -> a straight one-time pass (2861ms) What was the final score? Saddington -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final try, was scored by, Saddington) -> Saddington (2327ms) What was the final score? Ocean Bay -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final touchdown, was scored by, Ocean Bay) -> Ocean Bay (2830ms) What was the final score? Burks Falls -0.0 What was the final score? -> $x: (final, be score, $x) -> (His final victory, was scored at, Burks Falls) -> Burks Falls (2260ms) What was the final score? Honeycutt -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final goal, was scored by, Honeycutt) -> Honeycutt (2649ms) What was the final score? Morton Betts -0.0 What was the final score? -> $x: (final, be score, $x) -> (The first Cup Final goal, was scored by, Morton Betts) -> Morton Betts (3498ms) What was the final score? an open net -0.0 What was the final score? -> $x: (final, be score, $x) -> (The final goal, was scored on, an open net) -> an open net (1739ms) What was the final score? Earl Cherniak Q.C. -0.0 What was the final score? -> $x: (final, be score, $x) -> (the final rounds, were also scored by, Earl Cherniak Q.C.) -> Earl Cherniak Q.C. (2327ms) What was the final score? handicaps -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (handicaps, were applied to, the finals scores) -> handicaps (3919ms) What was the final score? a bonus point -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (a bonus point, is added to, the final score) -> a bonus point (3904ms) What was the final score? more points -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (more points, are added to, the final score) -> more points (3896ms) What was the final score? Twelve metrics -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (Twelve metrics, are used to calculate, the final score) -> Twelve metrics (3920ms) What was the final score? the players -0.111111111111 What was the final score? -> $x: ($x, re, final score) -> (the players, re-opened, the final score) -> the players (3912ms) What was the final score? Fu and Han -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (Fu and Han, are multiplied to get, the final score) -> Fu and Han (3927ms) What was the final score? two -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (two, would prove to be, the final score) -> two (3934ms) What was the final score? the handicap -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (the handicap, is applied to, the final score) -> the handicap (3904ms) What was the final score? the day -0.111111111111 What was the final score? -> $x: ($x, be t, final score) -> (the day, was n?t just about, the final score) -> the day (3896ms) What was the final score? respondents -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (respondents, were averaged to determine, the final score) -> respondents (3912ms) What was the final score? a factor -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (a factor, is relevant to, the final score) -> a factor (3920ms) What was the final score? a pitch -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (a pitch, proved to be, the final score) -> a pitch (3934ms) What was the final score? Patrick?s goal -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (Patrick?s goal, proved to be, the final Islander score) -> Patrick?s goal (3934ms) What was the final score? DeSaverio?s goal -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (DeSaverio?s goal, would prove to be, the final CU score) -> DeSaverio?s goal (3904ms) What was the final score? the winner -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (the winner, is to use, the final score) -> the winner (3912ms) What was the final score? The scores -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (The scores, are summed to produce, a final score) -> The scores (3904ms) What was the final score? Killian Canavan -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (Killian Canavan, proved to be, the final score) -> Killian Canavan (3919ms) What was the final score? The top two scores -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (The top two scores, are added to form, the final score) -> The top two scores (3904ms) What was the final score? the purpose -0.111111111111 What was the final score? -> $x: ($x, be t, final score) -> (the purpose, is n?t just to determine, the final score) -> the purpose (3904ms) What was the final score? Three points -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (Three points, are added to, the final score) -> Three points (3919ms) What was the final score? the scores -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (the scores, are averaged to, derive the final score) -> the scores (3927ms) What was the final score? the tie-breaker game -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (the tie-breaker game, was closest to, the actual final score) -> the tie-breaker game (3919ms) What was the final score? the showcase -0.111111111111 What was the final score? -> $x: ($x, constitute, final score) -> (the showcase, will constitute 10 % of, your final score) -> the showcase (3904ms) What was the final score? Bonus points -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (Bonus points, are then added to, final scores) -> Bonus points (3912ms) What was the final score? Veterans ? preference credit -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (Veterans ? preference credit, will be added to, the final score) -> Veterans ? preference credit (3904ms) What was the final score? Two factors -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (Two factors, are used to determine, the final score) -> Two factors (3912ms) What was the final score? Veterans ? preference points -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (Veterans ? preference points, are added to, the final score) -> Veterans ? preference points (3927ms) What was the final score? Fan votes -0.111111111111 What was the final score? -> $x: ($x, constitute, final score) -> (Fan votes, constitute, 20 percent of a coach 's final score) -> Fan votes (3919ms) What was the final score? the opening hole scores -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (the opening hole scores, are related to, the final total score) -> the opening hole scores (3934ms) What was the final score? a candidate -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (a candidate, were averaged to determine, the final score) -> a candidate (3927ms) What was the final score? lucky gamers -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (lucky gamers, were able to, score Final Fantasy XIII) -> lucky gamers (3896ms) What was the final score? the emotions -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (the emotions, are varied accordingly to, the final cricket score) -> the emotions (3919ms) What was the final score? seven seniority points -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (seven seniority points, are added to, the final score) -> seven seniority points (3934ms) What was the final score? The points -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (The points, are added to, the final score) -> The points (3912ms) What was the final score? the media ? -0.111111111111 What was the final score? -> $x: ($x, influence, final score) -> (the media ?, also influenced, the final score) -> the media ? (3896ms) What was the final score? events -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (events, turned out to be, the final score) -> events (3904ms) What was the final score? self-worth scores -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (self-worth scores, are added to, your final score) -> self-worth scores (3904ms) What was the final score? Veterans preference credit -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (Veterans preference credit, will be added to, the final score) -> Veterans preference credit (3912ms) What was the final score? Multi-player -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (Multi-player, now has to be added to, the final score) -> Multi-player (3927ms) What was the final score? e-mail results -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (e-mail results, be sure to include, the final score) -> e-mail results (3927ms) What was the final score? the three trials -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (the three trials, were summed to obtain, the final score) -> the three trials (3927ms) What was the final score? Criterion scores -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (Criterion scores, were averaged to, determine the final score) -> Criterion scores (3934ms) What was the final score? the total -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (the total, are added to, the final score) -> the total (3920ms) What was the final score? The last portion -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (The last portion, is attributable to, the final score) -> The last portion (3896ms) What was the final score? a difficult angle -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (a difficult angle, proved to be, the final score) -> a difficult angle (3912ms) What was the final score? a Matador -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (a Matador, turned out to be, the final score) -> a Matador (3934ms) What was the final score? The goal -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (The goal, is to guess, the final combined score) -> The goal (3896ms) What was the final score? the calculations -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (the calculations, there had to be, a final score) -> the calculations (3912ms) What was the final score? The game -0.111111111111 What was the final score? -> $x: ($x, be t, final score) -> (The game, was n?t as close as, the 68-59 final score) -> The game (3934ms) What was the final score? the limit -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (the limit, is applied to, the final score) -> the limit (3896ms) What was the final score? each dollar -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (each dollar, was added to, their final score) -> each dollar (3904ms) What was the final score? 5-2...which -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (5-2...which, turned out to be, the final score) -> 5-2...which (3934ms) What was the final score? Noebels ? -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (Noebels ?, would prove to be, the final score) -> Noebels ? (3927ms) What was the final score? a specific settling table -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (a specific settling table, is used to determine, the final score) -> a specific settling table (3927ms) What was the final score? T-Square and 20 points -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (T-Square and 20 points, were added to, the final exam score) -> T-Square and 20 points (3904ms) What was the final score? the evaluation process -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (the evaluation process, was to share, the final scoring) -> the evaluation process (3912ms) What was the final score? the score 2-1 -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (the score 2-1, proved to be, the final score) -> the score 2-1 (3934ms) What was the final score? A point spread -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (A point spread, is an adjustment to, the final score) -> A point spread (3904ms) What was the final score? Employees -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (Employees, are allowed to obtain, the final score) -> Employees (3896ms) What was the final score? each test -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (each test, is used to determine, the final score) -> each test (3912ms) What was the final score? the game -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (the game, is to get, a final better score) -> the game (3904ms) What was the final score? A general impression mark -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (A general impression mark, is also added to, the final score) -> A general impression mark (3912ms) What was the final score? the two best flying rounds -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (the two best flying rounds, are added to make, the final score) -> the two best flying rounds (3927ms) What was the final score? Each product -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (Each product, will be added to, determine their final score) -> Each product (3927ms) What was the final score? division -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (division, are added to, the final score) -> division (3927ms) What was the final score? The following categories -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (The following categories, are used to determine, the final score) -> The following categories (3896ms) What was the final score? the puzzle -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (the puzzle, will be added to, your final score) -> the puzzle (3927ms) What was the final score? each ball -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (each ball, will be added to, your final score) -> each ball (3904ms) What was the final score? no chance -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (no chance, proved to be, the final score) -> no chance (3896ms) What was the final score? a three-point lead -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (a three-point lead, was reduced to, the final score) -> a three-point lead (3927ms) What was the final score? Tie-breaker -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (Tie-breaker, will be closest to, the final score) -> Tie-breaker (3920ms) What was the final score? a raw figure -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (a raw figure, was converted to, a final score) -> a raw figure (3934ms) What was the final score? each test run -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (each test run, are added to give, your final score) -> each test run (3896ms) What was the final score? each squad -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (each squad, are used to calculate, the final team score) -> each squad (3920ms) What was the final score? double skunks -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (double skunks, are then added to, your final score) -> double skunks (3912ms) What was the final score? a statistical model -0.111111111111 What was the final score? -> $x: ($x, influence, final score) -> (a statistical model, influenced, the final JOA score) -> a statistical model (3919ms) What was the final score? the remaining 3 scores -0.111111111111 What was the final score? -> $x: ($x, constitute, final score) -> (the remaining 3 scores, will constitute, the final score) -> the remaining 3 scores (3912ms) What was the final score? 5 points -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (5 points, are added to, this final score) -> 5 points (3919ms) What was the final score? Letter grades -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (Letter grades, will be assigned to, final adjusted scores) -> Letter grades (3927ms) What was the final score? attributes -0.111111111111 What was the final score? -> $x: ($x, develop, final score) -> (attributes, develops, the final score and ranking) -> attributes (3912ms) What was the final score? the first Celtic Ranch Cup -0.111111111111 What was the final score? -> $x: ($x, be t, final score) -> (the first Celtic Ranch Cup, was n?t about, the final score) -> the first Celtic Ranch Cup (3934ms) What was the final score? Veterans Points -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (Veterans Points, are added to, the final score) -> Veterans Points (3904ms) What was the final score? the homerun blast -0.111111111111 What was the final score? -> $x: ($x, be to, final score) -> (the homerun blast, proved to be, Sassy Sisters final scoring) -> the homerun blast (3919ms) What was the final score? the overtime period -0.111111111114 What was the final score? -> $x: ($x, do, final score) -> (the overtime period, did n?t provide, a final score) -> the overtime period (3940ms) What was the final score? The runs -0.111111111114 What was the final score? -> $x: ($x, do, final score) -> (The runs, do count toward, the final score) -> The runs (3940ms) What was the final score? a Brahms symphony -0.111111111114 What was the final score? -> $x: ($x, do, final score) -> (a Brahms symphony, does n?t end with, a final score) -> a Brahms symphony (3934ms) What was the final score? proposition bets -0.111111111114 What was the final score? -> $x: ($x, do, final score) -> (proposition bets, have nothing to do with, the final score) -> proposition bets (3941ms) What was the final score? Cliff Martinez -0.111111111114 What was the final score? -> $x: ($x, do, final score) -> (Cliff Martinez, was brought in to do, the final score) -> Cliff Martinez (3934ms) What was the final score? The new line-up -0.111111111114 What was the final score? -> $x: ($x, do, final score) -> (The new line-up, did n?t play as badly as, the final score) -> The new line-up (3940ms) What was the final score? 1997 -0.111111111114 What was the final score? -> $x: ($x, do, final score) -> (1997, did, score one final victory) -> 1997 (3940ms) What was the final score? The numbers -0.111111111114 What was the final score? -> $x: ($x, do, final score) -> (The numbers, really did n?t translate into, the final score) -> The numbers (3940ms) What was the final score? NJ?It -0.111111111114 What was the final score? -> $x: ($x, do, final score) -> (NJ?It, did n?t show up in, the final score) -> NJ?It (3940ms) What was the final score? Linear Appraisal Award -0.111111111114 What was the final score? -> $x: ($x, do, final score) -> (Linear Appraisal Award, Does with, a Final Score) -> Linear Appraisal Award (3934ms) What was the final score? winning game 4 -0.111111111114 What was the final score? -> $x: ($x, do, final score) -> (winning game 4, did so by, a final score) -> winning game 4 (3940ms) What was the final score? The defense -0.111111111114 What was the final score? -> $x: ($x, do, final score) -> (The defense, did its job until, the final UW scoring drive) -> The defense (3940ms) What was the final score? halftime -0.111111111114 What was the final score? -> $x: ($x, do, final score) -> (halftime, has very little to do with, the final score) -> halftime (3941ms) What was the final score? The goaltend -0.111111111114 What was the final score? -> $x: ($x, do, final score) -> (The goaltend, also has nothing to do with, the final score) -> The goaltend (3934ms) What was the final score? Castres -0.111111111114 What was the final score? -> $x: ($x, do, final score) -> (Castres, did manage, one final score) -> Castres (3940ms) What was the final score? n?t matter -0.111111111117 What was the final score? -> $x: (final score, do, $x) -> (The final score, did, n?t matter) -> n?t matter (3940ms) What was the final score? course -0.111111111117 What was the final score? -> $x: (final score, do, $x) -> (The final score, does n?t paint the complete picture of, course) -> course (3948ms) What was the final score? a group -0.111111111117 What was the final score? -> $x: (final score, do, $x) -> (the final score, did n?t matter for, a group) -> a group (3948ms) What was the final score? a good effort -0.111111111117 What was the final score? -> $x: (final score, do, $x) -> (The final score, failed to do justice to, a good effort) -> a good effort (3941ms) What was the final score? the reality -0.111111111117 What was the final score? -> $x: (final score, do, $x) -> (Final score, did n?t reflect, the reality) -> the reality (3948ms) What was the final score? the closeness -0.111111111117 What was the final score? -> $x: (final score, do, $x) -> (The final score, did n?t reflect, the closeness) -> the closeness (3948ms) What was the final score? the true story about a game -0.111111111117 What was the final score? -> $x: (final score, do, $x) -> (The final score line, does nt tell, the true story about a game) -> the true story about a game (3948ms) What was the final score? much success -0.111111111117 What was the final score? -> $x: (final score, do, $x) -> (the final score, did n?t reflect too, much success) -> much success (3948ms) What was the final score? matter -0.111111111117 What was the final score? -> $x: (final score, do, $x) -> (the final score, does, matter) -> matter (3948ms) What was the final score? the match -0.111111111117 What was the final score? -> $x: (final score, do, $x) -> (The final score, did n?t reflect, the match) -> the match (3948ms) What was the final score? Good Strokes -0.111111111117 What was the final score? -> $x: (final score, do, $x) -> (The final score, does n?t reflect the quality of, Good Strokes) -> Good Strokes (3948ms) What was the final score? the Bears justice -0.111111111117 What was the final score? -> $x: (final score, do, $x) -> (The final score, does n?t do, the Bears justice) -> the Bears justice (3948ms) What was the final score? the ten positive items -0.111111111117 What was the final score? -> $x: (final score, do, $x) -> (the final total score, did, the ten positive items) -> the ten positive items (3948ms) What was the final score? the Blazers -0.111111111117 What was the final score? -> $x: (final score, do, $x) -> (The final box score, did n?t look so bad for, the Blazers) -> the Blazers (3941ms) What was the final score? justice -0.111111111117 What was the final score? -> $x: (final score, do, $x) -> (the final score, to do, justice) -> justice (3948ms) What was the final score? 2 Fans -0.222222222222 What was the final score? -> $x: ($x, find, final score) -> (2 Fans, Find, final score) -> 2 Fans (3953ms) What was the final score? bird tickets -0.222222222222 What was the final score? -> $x: ($x, find, final score) -> (bird tickets, now Find, the final scores) -> bird tickets (3953ms) What was the final score? detail -0.222222222222 What was the final score? -> $x: ($x, can be, final score) -> (detail, can be provided on, the final score reports) -> detail (3948ms) What was the final score? sections -0.222222222222 What was the final score? -> $x: ($x, comprise, final score) -> (sections, comprise 40 % each of, the final score) -> sections (3953ms) What was the final score? the three components -0.222222222222 What was the final score? -> $x: ($x, comprise, final score) -> (the three components, comprises, the final SPPB score) -> the three components (3948ms) What was the final score? difficulty level -0.222222222222 What was the final score? -> $x: ($x, find, final score) -> (difficulty level, 2. Find, the final score) -> difficulty level (3953ms) What was the final score? struggling Maryland -0.222222222222 What was the final score? -> $x: ($x, find, final score) -> (struggling Maryland, find a way to keep, the final score) -> struggling Maryland (3953ms) What was the final score? 3 Fans -0.222222222222 What was the final score? -> $x: ($x, find, final score) -> (3 Fans, Find, final score) -> 3 Fans (3953ms) What was the final score? ?Sounds Orchestral -0.222222222222 What was the final score? -> $x: ($x, can be, final score) -> (?Sounds Orchestral, can be found here, Final score) -> ?Sounds Orchestral (3953ms) What was the final score? Moderation results -0.222222222222 What was the final score? -> $x: ($x, can be, final score) -> (Moderation results, can be used to assign, a final score) -> Moderation results (3953ms) What was the final score? the English part -0.222222222222 What was the final score? -> $x: ($x, comprise, final score) -> (the English part, comprises 20 % of, the final score) -> the English part (3953ms) What was the final score? The shortcomings -0.222222222223 What was the final score? -> $x: ($x, be in, final score) -> (The shortcomings, are evident in, the report 's final scores) -> The shortcomings (3964ms) What was the final score? The 1-chips -0.222222222223 What was the final score? -> $x: ($x, be in, final score) -> (The 1-chips, are only needed in, the final scoring) -> The 1-chips (3968ms) What was the final score? duplicates -0.222222222223 What was the final score? -> $x: ($x, be in, final score) -> (duplicates, may be noted in, the final report or score) -> duplicates (3959ms) What was the final score? the medal round -0.222222222223 What was the final score? -> $x: ($x, be in, final score) -> (the medal round, is counted twice in, the final scoring) -> the medal round (3958ms) What was the final score? the three finalists -0.222222222223 What was the final score? -> $x: ($x, be in, final score) -> (the three finalists, were very close in, the final scores) -> the three finalists (3958ms) What was the final score? no modifications -0.222222222223 What was the final score? -> $x: ($x, be in, final score) -> (no modifications, were presented in, the final Bishop score) -> no modifications (3964ms) What was the final score? Lindell -0.222222222223 What was the final score? -> $x: ($x, be in, final score) -> (Lindell, were the difference in, the final score) -> Lindell (3953ms) What was the final score? the three centers -0.222222222223 What was the final score? -> $x: ($x, be in, final score) -> (the three centers, were comparable in, final scores) -> the three centers (3959ms) What was the final score? the chosen model -0.222222222223 What was the final score? -> $x: ($x, be in, final score) -> (the chosen model, is considered in deciding, the final score) -> the chosen model (3953ms) What was the final score? Bombings -0.222222222223 What was the final score? -> $x: ($x, be in, final score) -> (Bombings, are counted in, the final score) -> Bombings (3964ms) What was the final score? Nine -0.222222222223 What was the final score? -> $x: ($x, be in, final score) -> (Nine, will be counted in, final scoring) -> Nine (3959ms) What was the final score? No differences -0.222222222223 What was the final score? -> $x: ($x, be in, final score) -> (No differences, were seen in, the final PSS score) -> No differences (3964ms) What was the final score? Webster?s games -0.222222222223 What was the final score? -> $x: ($x, be all, final score) -> (Webster?s games, were all cancelled from, the final scoring) -> Webster?s games (3964ms) What was the final score? Farmers -0.222222222223 What was the final score? -> $x: ($x, be in, final score) -> (Farmers, are only scored in, the final scoring) -> Farmers (3964ms) What was the final score? sock style -0.222222222223 What was the final score? -> $x: ($x, be in, final score) -> (sock style, will be a factor in, the final score) -> sock style (3968ms) What was the final score? the IIMs -0.222222222223 What was the final score? -> $x: ($x, be in, final score) -> (the IIMs, will be in receiving, final scores) -> the IIMs (3958ms) What was the final score? field goal shooting -0.222222222223 What was the final score? -> $x: ($x, be in, final score) -> (field goal shooting, was the difference in, the final score) -> field goal shooting (3964ms) What was the final score? 10 points -0.222222222223 What was the final score? -> $x: ($x, be in, final score) -> (10 points, is added already in, the final score) -> 10 points (3964ms) What was the final score? the Jaguar Cup Regatta -0.222222222223 What was the final score? -> $x: ($x, be in, final score) -> (the Jaguar Cup Regatta, must be included in, the final scores) -> the Jaguar Cup Regatta (3959ms) What was the final score? L, O Overtime periods -0.222222222223 What was the final score? -> $x: ($x, be in, final score) -> (L, O Overtime periods, are counted in, the final score) -> L, O Overtime periods (3968ms) What was the final score? a separate ribbon -0.222222222223 What was the final score? -> $x: ($x, be in, final score) -> (a separate ribbon, is given double weight in, the final scores) -> a separate ribbon (3964ms) What was the final score? general showmanship -0.222222222223 What was the final score? -> $x: ($x, be all, final score) -> (general showmanship, are all reflected in, the final score) -> general showmanship (3964ms) What was the final score? the USSR -0.222222222223 What was the final score? -> $x: ($x, be in, final score) -> (the USSR, is usually disadvantaged in, Final Scoring) -> the USSR (3964ms) What was the final score? the two sides -0.222222222223 What was the final score? -> $x: ($x, be in, final score) -> (the two sides, was reflected in, the final score) -> the two sides (3959ms) What was the final score? The most points -0.222222222223 What was the final score? -> $x: ($x, be in, final score) -> (The most points, are earned in, the final scoring) -> The most points (3959ms) What was the final score? the horse -0.222222222223 What was the final score? -> $x: ($x, be in, final score) -> (the horse, is a factor in, his final score) -> the horse (3964ms) What was the final score? over-time periods -0.222222222223 What was the final score? -> $x: ($x, be in, final score) -> (over-time periods, are included in, the final score) -> over-time periods (3953ms) What was the final score? each team?s answers -0.222222222223 What was the final score? -> $x: ($x, be in, final score) -> (each team?s answers, will be included in, the final score) -> each team?s answers (3958ms) What was the final score? information -0.222222222223 What was the final score? -> $x: ($x, be in, final score) -> (information, is cited in, Beyond The Final Score) -> information (3959ms) What was the final score? Hits -0.222222222223 What was the final score? -> $x: ($x, be in, final score) -> (Hits, are counted in, the final score) -> Hits (3959ms) What was the final score? Asia -0.222222222223 What was the final score? -> $x: ($x, be in, final score) -> (Asia, is worth more in, Final Scoring) -> Asia (3964ms) What was the final score? successes -0.222222222223 What was the final score? -> $x: ($x, be in, final score) -> (successes, are added resulting in, their final health score) -> successes (3953ms) What was the final score? Tim Ferguson -0.222222222223 What was the final score? -> $x: ($x, be in, final score) -> (Tim Ferguson, proved to be the difference in, the final score) -> Tim Ferguson (3964ms) What was the final score? The overall outcome -0.222222222223 What was the final score? -> $x: ($x, be in, final score) -> (The overall outcome, was very one-sided ending in, a final score) -> The overall outcome (3959ms) What was the final score? Kyle Arbuckle -0.222222222223 What was the final score? -> $x: ($x, be in, final score) -> (Kyle Arbuckle, was inspirational in, the final term scoring) -> Kyle Arbuckle (3968ms) What was the final score? day 1 -0.222222222223 What was the final score? -> $x: ($x, be in, final score) -> (day 1, was included in, event final scores) -> day 1 (3964ms) What was the final score? boats -0.222222222223 What was the final score? -> $x: ($x, be in, final score) -> (boats, were tied in, the final scoring) -> boats (3968ms) What was the final score? extra innings -0.222222222223 What was the final score? -> $x: ($x, be in, final score) -> (extra innings, are counted in, the final score) -> extra innings (3953ms) What was the final score? Remission -0.333333333333 What was the final score? -> $x: ($x, define, final score) -> (Remission, was defined as, a final HRSD-17 score) -> Remission (3968ms) What was the final score? STI -0.333333333333 What was the final score? -> $x: ($x, include, final score) -> (STI, will include, a Final Assessment Score) -> STI (3973ms) What was the final score? Four variables -0.333333333333 What was the final score? -> $x: ($x, be consider, final score) -> (Four variables, were considered for, the final score) -> Four variables (3973ms) What was the final score? Similar Jedi -0.333333333333 What was the final score? -> $x: ($x, include, final score) -> (Similar Jedi, include, FINAL SCORE) -> Similar Jedi (3973ms) What was the final score? the address -0.333333333333 What was the final score? -> $x: ($x, include, final score) -> (the address, will include, a Final Score Report) -> the address (3969ms) What was the final score? Radio -0.333333333334 What was the final score? -> $x: (final score, be like, $x) -> (the final score, was something like, Radio) -> Radio (3978ms) What was the final score? 2-12 -0.333333333334 What was the final score? -> $x: (final score, be like, $x) -> (Final score, was something like, 2-12) -> 2-12 (3978ms) What was the final score? 9-4 -0.333333333334 What was the final score? -> $x: (final score, be like, $x) -> (the final score, was something like, 9-4) -> 9-4 (3973ms) What was the final score? 15-10 -0.333333333334 What was the final score? -> $x: (final score, be like, $x) -> (The final score, was something like, 15-10) -> 15-10 (3978ms) What was the final score? 261 -0.333333333334 What was the final score? -> $x: (final score, be like, $x) -> (Final score, was something like, 261) -> 261 (3973ms) What was the final score? 53-6 -0.333333333334 What was the final score? -> $x: (final score, be like, $x) -> (The final score, was something like, 53-6) -> 53-6 (3978ms) What was the final score? 6-1 -0.333333333334 What was the final score? -> $x: (final score, be like, $x) -> (The final score, was something like, 6-1) -> 6-1 (3978ms) What was the final score? 19-16 -0.333333333334 What was the final score? -> $x: (final score, be like, $x) -> (the final score, will be something like, 19-16) -> 19-16 (3978ms) What was the final score? 14 -0.333333333334 What was the final score? -> $x: (final score, be like, $x) -> (The final score, was something like, 14) -> 14 (3978ms) What was the final score? 7-6 -0.333333333334 What was the final score? -> $x: (final score, be like, $x) -> (the final score, could be something like, 7-6) -> 7-6 (3978ms) What was the final score? 84 ? 40 -0.333333333334 What was the final score? -> $x: (final score, be like, $x) -> (the final score, was like, 84 ? 40) -> 84 ? 40 (3978ms) What was the final score? 162-158 -0.333333333334 What was the final score? -> $x: (final score, be like, $x) -> (The final score, was something like, 162-158) -> 162-158 (3973ms) What was the final score? 28-22 -0.333333333334 What was the final score? -> $x: (final score, be like, $x) -> (the final score, was something like, 28-22) -> 28-22 (3978ms) What was the final score? FFXII -0.333333333334 What was the final score? -> $x: (final score, be like, $x) -> (the final score, would be like for, FFXII) -> FFXII (3973ms) What was the final score? 8-6 -0.333333333334 What was the final score? -> $x: (final score, be like, $x) -> (the final score, was something like, 8-6) -> 8-6 (3978ms) What was the final score? the nation -0.444444444445 What was the final score? -> $x: ($x, be th, final score) -> (the nation, is 26th nationally for, final round scoring average) -> the nation (3978ms) What was the final score? No account -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (No account, has been taken of, final scores) -> No account (4001ms) What was the final score? Wisconsin -0.555555555556 What was the final score? -> $x: ($x, in, final score) -> (Wisconsin, came in with, a final score) -> Wisconsin (4013ms) What was the final score? 14-1 -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (14-1, was, the final score) -> 14-1 (4001ms) What was the final score? HOA -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (the final scores, are for, HOA) -> HOA (3982ms) What was the final score? the first round -0.555555555556 What was the final score? -> $x: ($x, get, final score) -> (the first round, will get an extra point in, the final score) -> the first round (4019ms) What was the final score? 2 GP -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (Final scores, must be cumulative points for, 2 GP) -> 2 GP (3994ms) What was the final score? strategic thinking -0.555555555556 What was the final score? -> $x: ($x, in, final score) -> (strategic thinking, make a big difference in, your final score) -> strategic thinking (4010ms) What was the final score? Coach Mike -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (The 81-77 final score, was surely spit-worthy for, Coach Mike) -> Coach Mike (4013ms) What was the final score? Hard-rep -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (Hard-rep, is used for, final scoring) -> Hard-rep (3986ms) What was the final score? each individual -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (A final multiple score, is computed for, each individual) -> each individual (4023ms) What was the final score? Atl?tico -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (The final score, was 4-3 for, Atl?tico) -> Atl?tico (4019ms) What was the final score? Jim Kelly -0.555555555556 What was the final score? -> $x: ($x, in, final score) -> (Jim Kelly, came in with, a final score) -> Jim Kelly (4020ms) What was the final score? the hard drive -0.555555555556 What was the final score? -> $x: ($x, in, final score) -> (the hard drive, only plays a small role in, the final score) -> the hard drive (4004ms) What was the final score? the final results -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (final score, is totalled for, the final results) -> the final results (4019ms) What was the final score? the 9th my heart -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (the 9th my heart, was pounding, ...FINAL SCORE) -> the 9th my heart (3997ms) What was the final score? The following distribution -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (The following distribution, is based on, final scores) -> The following distribution (3998ms) What was the final score? field goals -0.555555555556 What was the final score? -> $x: ($x, in, final score) -> (field goals, reflects the difference in, the final score) -> field goals (4023ms) What was the final score? North Wilkes -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (The final score, was n?t so good for, North Wilkes) -> North Wilkes (4015ms) What was the final score? much mutual respect -0.555555555556 What was the final score? -> $x: ($x, in, final score) -> (much mutual respect, reflected in, the final score) -> much mutual respect (4019ms) What was the final score? lowest score -0.555555555556 What was the final score? -> $x: ($x, in, final score) -> (lowest score, goes first in, final scoring round) -> lowest score (4019ms) What was the final score? Brenner -0.555555555556 What was the final score? -> $x: ($x, get, final score) -> (Brenner, would get credit for, the Tigers 4th and final score) -> Brenner (4004ms) What was the final score? 34 -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (34, was, the final score) -> 34 (4010ms) What was the final score? the situation -0.555555555556 What was the final score? -> $x: ($x, in, final score) -> (the situation, maintain alive in, the final score) -> the situation (4022ms) What was the final score? 6-3 -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (6-3, was, the final score) -> 6-3 (4004ms) What was the final score? lack -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (final score versus language, cannot be uncovered for, lack) -> lack (4020ms) What was the final score? the outcome -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (the outcome, was, the final score) -> the outcome (4004ms) What was the final score? the Eagles -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (the Eagles, is, your predicted final score) -> the Eagles (3997ms) What was the final score? 1-1 -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (1-1, is, your final score) -> 1-1 (4004ms) What was the final score? Montreal -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (Final score, was 5-3 for, Montreal) -> Montreal (3994ms) What was the final score? Hannah Leatherman -0.555555555556 What was the final score? -> $x: ($x, in, final score) -> (Hannah Leatherman, came in with, a final score) -> Hannah Leatherman (4004ms) What was the final score? 3-3 -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (3-3, was, the final score) -> 3-3 (4001ms) What was the final score? The Award committee -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (The Award committee, is taken into, final scoring) -> The Award committee (4008ms) What was the final score? the 3 points -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (the 3 points, were taken, Final score) -> the 3 points (4013ms) What was the final score? Windsor Caboto -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (The final score, was 5-1 for, Windsor Caboto) -> Windsor Caboto (3990ms) What was the final score? players -0.555555555556 What was the final score? -> $x: ($x, in, final score) -> (players, Please call in, your final scores) -> players (3982ms) What was the final score? each grid cell -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (a final normal score, was calculated for, each grid cell) -> each grid cell (3997ms) What was the final score? grades 4-12 -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (The final scoring guides, are validated for, grades 4-12) -> grades 4-12 (3990ms) What was the final score? 1 field -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (1 field, is, the official final score) -> 1 field (3986ms) What was the final score? Kansas City -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (The final score, was 1-nil for, Kansas City) -> Kansas City (4022ms) What was the final score? the pitcher ? -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (the pitcher ?, will be a low scoring affair with, final scores) -> the pitcher ? (3982ms) What was the final score? 13 -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (13, was, the final score) -> 13 (3997ms) What was the final score? Boston -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (The final score, was 5-3 for, Boston) -> Boston (4015ms) What was the final score? each contestant -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (each contestant, is, their final score) -> each contestant (4020ms) What was the final score? 42-31 -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (42-31, was, the final score) -> 42-31 (3998ms) What was the final score? lol -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (lol, is, my final score) -> lol (4013ms) What was the final score? each weakness -0.555555555556 What was the final score? -> $x: ($x, get, final score) -> (each weakness, are added together to get, a final score) -> each weakness (3982ms) What was the final score? any -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (No final score report, is provided for, any) -> any (4015ms) What was the final score? the Tide -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (the final score and victory, should be there for, the Tide) -> the Tide (4015ms) What was the final score? a ResultSet -0.555555555556 What was the final score? -> $x: ($x, get, final score) -> (a ResultSet, has methods to get, the final total score) -> a ResultSet (3990ms) What was the final score? Sky Sports -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (the BBC?s Final Score, are excellent news for, Sky Sports) -> Sky Sports (4024ms) What was the final score? obvious reasons -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (No final scores, will be given for, obvious reasons) -> obvious reasons (4019ms) What was the final score? 75 Diggs4-3 -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (75 Diggs4-3, was, the final score) -> 75 Diggs4-3 (4010ms) What was the final score? Heerenveen -0.555555555556 What was the final score? -> $x: ($x, in, final score) -> (Heerenveen, resulted in, the final score) -> Heerenveen (4017ms) What was the final score? a cross -0.555555555556 What was the final score? -> $x: ($x, in, final score) -> (a cross, slotted in, the final score) -> a cross (3994ms) What was the final score? each Level -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (The final minimum Pass Score, is 50 % for, each Level) -> each Level (4023ms) What was the final score? the first quarter match -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (The final score, is complete for, the first quarter match) -> the first quarter match (3982ms) What was the final score? the second half -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (the second half, was, the final score) -> the second half (4004ms) What was the final score? Tudi -0.555555555556 What was the final score? -> $x: ($x, in, final score) -> (Tudi, turned in, a final round score) -> Tudi (4022ms) What was the final score? the browser -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (the final score, is a real indicator for, the browser) -> the browser (3994ms) What was the final score? file -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (the final score, is two for, file) -> file (3986ms) What was the final score? Tory Nelson -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (Final score, was 1-0 for, Tory Nelson) -> Tory Nelson (4015ms) What was the final score? The Crusaders -0.555555555556 What was the final score? -> $x: ($x, get, final score) -> (The Crusaders, got their second win with, the final score) -> The Crusaders (4001ms) What was the final score? the Lions -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (The final score, was actually flattering for, the Lions) -> the Lions (4023ms) What was the final score? the Bruins -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (Final score, was 4-2 for, the Bruins) -> the Bruins (3990ms) What was the final score? Broughton -0.555555555556 What was the final score? -> $x: ($x, in, final score) -> (Broughton, resulted in, a final score) -> Broughton (4004ms) What was the final score? Debbie Hockley -0.555555555556 What was the final score? -> $x: ($x, in, final score) -> (Debbie Hockley, has the highest score in, a final scoring 141) -> Debbie Hockley (4020ms) What was the final score? Yeah -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (Yeah, was, the final score) -> Yeah (4001ms) What was the final score? total weight -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (total weight, is, the final score) -> total weight (4024ms) What was the final score? award ranking -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (The final point score, is the basis for, award ranking) -> award ranking (4023ms) What was the final score? the present score -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (the present score, is, the final score) -> the present score (4010ms) What was the final score? relatively low Difficulty marks -0.555555555556 What was the final score? -> $x: ($x, in, final score) -> (relatively low Difficulty marks, resulted in, a final score) -> relatively low Difficulty marks (4017ms) What was the final score? interview -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (The final score, is invited for, interview) -> interview (4019ms) What was the final score? Macnab -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (The final score, was 51-43 for, Macnab) -> Macnab (3986ms) What was the final score? manuscripts -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (final scoring, will be made for, manuscripts) -> manuscripts (4024ms) What was the final score? Nathan Anderson -0.555555555556 What was the final score? -> $x: ($x, in, final score) -> (Nathan Anderson, would drive in, the final score) -> Nathan Anderson (4010ms) What was the final score? Scholarships -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (Scholarships, are awarded based on, final scores) -> Scholarships (4022ms) What was the final score? winners -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (The final score, is for, winners) -> winners (4010ms) What was the final score? 21 to 7 -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (21 to 7, was, the final score) -> 21 to 7 (4013ms) What was the final score? The ?line ? -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (The ?line ?, is, the total final score) -> The ?line ? (4008ms) What was the final score? S?o Paulo -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (S?o Paulo, was, the final score) -> S?o Paulo (4001ms) What was the final score? Sophomore quarterback Clay Allen -0.555555555556 What was the final score? -> $x: ($x, in, final score) -> (Sophomore quarterback Clay Allen, put in, the final score) -> Sophomore quarterback Clay Allen (4004ms) What was the final score? 4-2 -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (4-2, was, the final score) -> 4-2 (4024ms) What was the final score? Cornwall -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (behind.The final score, was 4-2 for, Cornwall) -> Cornwall (3997ms) What was the final score? The only down side -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (The only down side, was, the final score) -> The only down side (4022ms) What was the final score? two percentage points -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (two percentage points, will be deducted from, final score) -> two percentage points (4013ms) What was the final score? the only question -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (the only question, is, the final score) -> the only question (4024ms) What was the final score? Cleveland Junior Jacks -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (The final score, was 4-3 for, Cleveland Junior Jacks) -> Cleveland Junior Jacks (4017ms) What was the final score? Last years contest info -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (Last years contest info, was here with, final scoring) -> Last years contest info (4008ms) What was the final score? count -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (count, is, the final score) -> count (4020ms) What was the final score? more than three goal difference -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (final score, will be for, more than three goal difference) -> more than three goal difference (4013ms) What was the final score? senior Jack Reeder -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (senior Jack Reeder, were, the final scoring Spartans) -> senior Jack Reeder (4007ms) What was the final score? Ukraine -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (The final score, was 1-0 for, Ukraine) -> Ukraine (3997ms) What was the final score? 37-21 -0.555555555556 What was the final score? -> $x: ($x, could be, final score) -> (37-21, could be, the most deceiving final score) -> 37-21 (4001ms) What was the final score? Team USA -0.555555555556 What was the final score? -> $x: ($x, get, final score) -> (Team USA, got its first victory with, a final score) -> Team USA (3990ms) What was the final score? either side -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (The final score, was hardly ideal for, either side) -> either side (4015ms) What was the final score? full story -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (The final score, was 2-1 Click here for, full story) -> full story (3998ms) What was the final score? each game -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (each game, will be determined by, final score) -> each game (4013ms) What was the final score? possession -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (possession, are inconsistent with, final score) -> possession (4008ms) What was the final score? each strategy -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (Final scores, were calculated for, each strategy) -> each strategy (4023ms) What was the final score? 86-54 -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (86-54, was, the final score) -> 86-54 (3990ms) What was the final score? the Russian player -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (The final score, was 1-3 for, the Russian player) -> the Russian player (4001ms) What was the final score? the red discussion -0.555555555556 What was the final score? -> $x: ($x, get, final score) -> (the red discussion, gets, a higher final score) -> the red discussion (4020ms) What was the final score? up to 30 credits -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (up to 30 credits, may be granted for, final scores) -> up to 30 credits (4013ms) What was the final score? Composite scores -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (Composite scores, are turned into, final scores) -> Composite scores (4001ms) What was the final score? the rallymaster -0.555555555556 What was the final score? -> $x: ($x, in, final score) -> (the rallymaster, plays a much bigger role in, final scores) -> the rallymaster (4004ms) What was the final score? 3-2 -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (3-2, was, the final winning score) -> 3-2 (4004ms) What was the final score? Armstrong-Smith -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (Final score, was 7-1 for, Armstrong-Smith) -> Armstrong-Smith (4023ms) What was the final score? February 14 -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (February 14, was, the final score) -> February 14 (3986ms) What was the final score? Ten points -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (Ten points, are deducted from, final score) -> Ten points (4017ms) What was the final score? The only question -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (The only question, is, the final score) -> The only question (4015ms) What was the final score? Manchester United -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (the final score, was status quo for, Manchester United) -> Manchester United (4023ms) What was the final score? Christine O'Donnell -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (The final score, is 4-0 for, Christine O'Donnell) -> Christine O'Donnell (3986ms) What was the final score? 3-0 -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (3-0, was, the final score) -> 3-0 (3998ms) What was the final score? event 1 -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (Final scores and ranks, are available for, event 1) -> event 1 (4010ms) What was the final score? the 2012 Eagles -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (The 74-57 final score, is an average win for, the 2012 Eagles) -> the 2012 Eagles (4008ms) What was the final score? any games -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (any games, was, the final scores) -> any games (3982ms) What was the final score? Man -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (The final score, was 2-1-1 for, Man) -> Man (4001ms) What was the final score? 19-23 -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (19-23, was, the final score) -> 19-23 (4015ms) What was the final score? 45 seconds -0.555555555556 What was the final score? -> $x: ($x, in, final score) -> (45 seconds, resulted in, the final score) -> 45 seconds (3994ms) What was the final score? each municipality -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (the final SES score, was calculated for, each municipality) -> each municipality (4010ms) What was the final score? the House -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (The 30-28 final score, was good for, the House) -> the House (3994ms) What was the final score? 56 guests 3 -0.555555555556 What was the final score? -> $x: ($x, get, final score) -> (56 guests 3, got, the final score correct) -> 56 guests 3 (4008ms) What was the final score? the final round -0.555555555556 What was the final score? -> $x: ($x, in, final score) -> (the final round, eventually lost in, final scoring) -> the final round (4022ms) What was the final score? the Victoria game -0.555555555556 What was the final score? -> $x: ($x, in, final score) -> (the Victoria game, reflected in, the final score) -> the Victoria game (4023ms) What was the final score? Brad Evans -0.555555555556 What was the final score? -> $x: ($x, in, final score) -> (Brad Evans, put in, the final score) -> Brad Evans (4013ms) What was the final score? the correct answers -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (my final score, was 4 for, the correct answers) -> the correct answers (3997ms) What was the final score? the CHL -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (the CHL, has been getting, final scores) -> the CHL (4008ms) What was the final score? the quarterfinals -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (final score 1:0 Cameroon, are qualified for, the quarterfinals) -> the quarterfinals (4024ms) What was the final score? Weve -0.555555555556 What was the final score? -> $x: ($x, get, final score) -> (Weve, got, the finals scores) -> Weve (4022ms) What was the final score? 3 GP -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (Final scores, must be cumulative points for, 3 GP) -> 3 GP (3982ms) What was the final score? walk-off wins -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (walk-off wins, have been by, final scores) -> walk-off wins (4001ms) What was the final score? a 4-2 lead -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (a 4-2 lead, was, the final score) -> a 4-2 lead (4004ms) What was the final score? space reasons -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (only the final scores, are shown here for, space reasons) -> space reasons (3998ms) What was the final score? California -0.555555555556 What was the final score? -> $x: ($x, in, final score) -> (California, came in with, a final score) -> California (4020ms) What was the final score? Students -0.555555555556 What was the final score? -> $x: ($x, in, final score) -> (Students, write in, their final score) -> Students (4010ms) What was the final score? the clock -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (the clock, was ticking, ? Final score) -> the clock (4010ms) What was the final score? White Sox -0.555555555556 What was the final score? -> $x: ($x, get, final score) -> (White Sox, got an early jump in, the final scoring) -> White Sox (4019ms) What was the final score? Tiger Woods -0.555555555556 What was the final score? -> $x: ($x, get, final score) -> (Tiger Woods, gets to, the final scoring hole) -> Tiger Woods (4015ms) What was the final score? The real success -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (The real success, is, the final score) -> The real success (4015ms) What was the final score? the other two sections -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (the other two sections, are each worth 25 % of, final score) -> the other two sections (4007ms) What was the final score? wrong ? 89 -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (wrong ? 89, was, the final score) -> wrong ? 89 (4015ms) What was the final score? the Crusaders -0.555555555556 What was the final score? -> $x: ($x, get, final score) -> (the Crusaders, get the victory with, the final score) -> the Crusaders (4022ms) What was the final score? Marlyn -0.555555555556 What was the final score? -> $x: ($x, get, final score) -> (Marlyn, got, her final LA score) -> Marlyn (4020ms) What was the final score? Watson -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (a final score, was $ 77,147 for, Watson) -> Watson (4001ms) What was the final score? sports -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (sports, is, the final score) -> sports (4010ms) What was the final score? game -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (game, was, the final score) -> game (4022ms) What was the final score? Projo.com -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (Projo.com, will be posting, final scores) -> Projo.com (4017ms) What was the final score? 4-0 -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (4-0, was, the final score) -> 4-0 (3994ms) What was the final score? The third element -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (The third element, is, the final exam scores) -> The third element (4004ms) What was the final score? The Knights -0.555555555556 What was the final score? -> $x: ($x, get, final score) -> (The Knights, got, their final score) -> The Knights (3990ms) What was the final score? 5-1 -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (5-1, was, the final score) -> 5-1 (4015ms) What was the final score? important -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (important, is, the final game score) -> important (3990ms) What was the final score? attention -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (attention, is drawn towards, final score) -> attention (3986ms) What was the final score? Biography -0.555555555556 What was the final score? -> $x: ($x, in, final score) -> (Biography, Books In This Genre, The Final Score) -> Biography (4017ms) What was the final score? BHS. -0.555555555556 What was the final score? -> $x: ($x, in, final score) -> (BHS., Posted in, Final Score) -> BHS. (4017ms) What was the final score? Comments -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (Comments, are closed, Final Score) -> Comments (3997ms) What was the final score? The 2 -1 -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (The 2 -1, was, the final score) -> The 2 -1 (3998ms) What was the final score? Portsmouth -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (The final score, is 2-1 for, Portsmouth) -> Portsmouth (4015ms) What was the final score? each match -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (each match, will be decided on, final score) -> each match (3994ms) What was the final score? The Jackets -0.555555555556 What was the final score? -> $x: ($x, in, final score) -> (The Jackets, turned in, a final score) -> The Jackets (3986ms) What was the final score? last year -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (His final score, was for, last year) -> last year (3990ms) What was the final score? a specific question -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (a specific question, may be omitted from, final scoring) -> a specific question (4023ms) What was the final score? Eddie Stobart drivers -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (Eddie Stobart drivers, was, the final score) -> Eddie Stobart drivers (4020ms) What was the final score? a single-trait animal model -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (a single-trait animal model, was applied for, final score) -> a single-trait animal model (4023ms) What was the final score? playoff basketball -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (playoff basketball, is, the final score) -> playoff basketball (3994ms) What was the final score? Feb. 1 -0.555555555556 What was the final score? -> $x: ($x, in, final score) -> (Feb. 1, resulted in, a final score) -> Feb. 1 (4022ms) What was the final score? upcoming 2003 objectives -0.555555555556 What was the final score? -> $x: ($x, in, final score) -> (upcoming 2003 objectives, count in, your final score) -> upcoming 2003 objectives (3986ms) What was the final score? sure they?ve -0.555555555556 What was the final score? -> $x: ($x, get, final score) -> (sure they?ve, already got, the final score) -> sure they?ve (4017ms) What was the final score? Bellevue -0.555555555556 What was the final score? -> $x: ($x, in, final score) -> (Bellevue, turned in, a final round score) -> Bellevue (4013ms) What was the final score? Germany -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (The final score, was a 4?1 win for, Germany) -> Germany (3994ms) What was the final score? The Bulldogs ? biggest lead -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (The Bulldogs ? biggest lead, was, the final score) -> The Bulldogs ? biggest lead (4001ms) What was the final score? The Saints -0.555555555556 What was the final score? -> $x: ($x, get, final score) -> (The Saints, would get, the final two scores) -> The Saints (4024ms) What was the final score? Ballard -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (The final score, was 25 for, Ballard) -> Ballard (4013ms) What was the final score? pitching -0.555555555556 What was the final score? -> $x: ($x, in, final score) -> (pitching, reflected in, the final score) -> pitching (3986ms) What was the final score? the only important number -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (the only important number, is, the final score) -> the only important number (4008ms) What was the final score? 12-9 -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (12-9, was, the final score) -> 12-9 (4008ms) What was the final score? Team East -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (The final score, was 2-1 for, Team East) -> Team East (4017ms) What was the final score? Misdee Wrigley Miller -0.555555555556 What was the final score? -> $x: ($x, in, final score) -> (Misdee Wrigley Miller, turned in, a final score) -> Misdee Wrigley Miller (4024ms) What was the final score? England?s Luke Donald -0.555555555556 What was the final score? -> $x: ($x, in, final score) -> (England?s Luke Donald, put in, a final score card) -> England?s Luke Donald (3986ms) What was the final score? Final places -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (Final places, are determined based upon, final scores) -> Final places (4010ms) What was the final score? Opera singer Katherine Jenkins -0.555555555556 What was the final score? -> $x: ($x, get, final score) -> (Opera singer Katherine Jenkins, ended up getting, a final score) -> Opera singer Katherine Jenkins (3986ms) What was the final score? Tiger -0.555555555556 What was the final score? -> $x: ($x, in, final score) -> (Tiger, leads the group in, final round scoring) -> Tiger (3994ms) What was the final score? Donaggio -0.555555555556 What was the final score? -> $x: ($x, in, final score) -> (Donaggio, turned in, his final score) -> Donaggio (4008ms) What was the final score? I?ll -0.555555555556 What was the final score? -> $x: ($x, in, final score) -> (I?ll, lose in, Final Scoring) -> I?ll (3982ms) What was the final score? Kyle -0.555555555556 What was the final score? -> $x: ($x, get, final score) -> (Kyle, got, the highest final score) -> Kyle (4013ms) What was the final score? Tipp -0.555555555556 What was the final score? -> $x: ($x, get, final score) -> (Tipp, got, the final three scores) -> Tipp (3982ms) What was the final score? out -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (out, was, our final score) -> out (4013ms) What was the final score? friends -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> ('s final scores, were for, friends) -> friends (4022ms) What was the final score? 2-0 -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (2-0, was, the final score) -> 2-0 (3990ms) What was the final score? 7-4 -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (7-4, was, the final score) -> 7-4 (3994ms) What was the final score? Lang -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (the final score, was 4-0 for, Lang) -> Lang (4023ms) What was the final score? FGCU -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (The final score, was 4-1 for, FGCU) -> FGCU (4015ms) What was the final score? each patient -0.555555555556 What was the final score? -> $x: (final score, be for, $x) -> (A final score, is calculated for, each patient) -> each patient (4022ms) What was the final score? nt -0.555555555556 What was the final score? -> $x: ($x, in, final score) -> (nt, reflected in, the final score) -> nt (4024ms) What was the final score? the uninsured rate -0.555555555556 What was the final score? -> $x: ($x, be be, final score) -> (the uninsured rate, is, the final score) -> the uninsured rate (4022ms) What was the final score? use -0.666666666667 What was the final score? -> $x: ($x, establish, final score) -> (use, was quite simple to establish, the final rating score) -> use (4024ms) What was the final score? the Range -0.7777777777770001 What was the final score? -> $x: ($x, be product of, score) -> (the Range, is the product of, exhaustive research and scores) -> the Range (4024ms) What was the final score? The point total -0.7777777777770001 What was the final score? -> $x: ($x, be product of, score) -> (The point total, is the product of, your average score) -> The point total (4024ms) What was the final score? reliability -0.7777777777770001 What was the final score? -> $x: ($x, be product of, score) -> (reliability, are the product of, group scores) -> reliability (4024ms) What was the final score? Pn -0.7777777777770001 What was the final score? -> $x: ($x, be product of, score) -> (Pn, is the product of, n distribution scores) -> Pn (4024ms) What was the final score? an auto loan -0.7777777777770001 What was the final score? -> $x: ($x, be product of, score) -> (an auto loan, is a product of, your credit score) -> an auto loan (4024ms) What was the final score? the correlation -0.7777777777770001 What was the final score? -> $x: ($x, be product of, score) -> (the correlation, is the average product of, the standard scores) -> the correlation (4024ms) What was the final score? each window-position score -0.7777777777770001 What was the final score? -> $x: ($x, be product of, score) -> (each window-position score, is the product of, the scores) -> each window-position score (4024ms) What was the final score? The overall score -0.7777777777770001 What was the final score? -> $x: ($x, be product of, score) -> (The overall score, is the product of, the coverage score) -> The overall score (4024ms) What was the final score? The printed score report -0.777777777778 What was the final score? -> $x: ($x, contain, final score) -> (The printed score report, will contain, the final section scores) -> The printed score report (4024ms) What was the final score? the stories -0.777777777778 What was the final score? -> $x: ($x, contain, final score) -> (the stories, contained little more than, the final score) -> the stories (4024ms) What was the final score? Game cards -0.777777777778 What was the final score? -> $x: ($x, contain, final score) -> (Game cards, will contain, the final scores) -> Game cards (4024ms) What was the final score? Monaleen -0.888888888883 What was the final score? -> $x: ($x, be score of, final) -> (Monaleen, was the only score of, the final ten minute period) -> Monaleen (4024ms) What was the final score? Mahmoud -0.888888888883 What was the final score? -> $x: ($x, be score of, final) -> (Mahmoud, was scoring the only goal of, the final) -> Mahmoud (4024ms) What was the final score? the final frame -0.888888888883 What was the final score? -> $x: ($x, be score of, final) -> (the final frame, was the only score of, the final 15 minutes) -> the final frame (4024ms) What is the esophagus used for? patients 0.333333333331 What is the esophagus used for? -> $x: (esophagus, be for, $x) -> ('s esophagus, should be reserved for, patients) -> patients (1594ms) What is the esophagus used for? acid reflux 0.333333333331 What is the esophagus used for? -> $x: (esophagus, be for, $x) -> (the esophagus, is the culprit for, acid reflux) -> acid reflux (1612ms) What is the esophagus used for? the function 0.333333333331 What is the esophagus used for? -> $x: (esophagus, be for, $x) -> (the esophagus, are responsible for, the function) -> the function (1612ms) What is the esophagus used for? use 0.333333333331 What is the esophagus used for? -> $x: (esophagus, be for, $x) -> (SIZE Application Esophagus membrane protein lysate, is for, use) -> use (2367ms) What is the esophagus used for? 2 ? weeks 0.333333333331 What is the esophagus used for? -> $x: (esophagus, be for, $x) -> (his esophagus, had to be hospitalized for, 2 ? weeks) -> 2 ? weeks (1374ms) What is the esophagus used for? the first time 0.333333333331 What is the esophagus used for? -> $x: (esophagus, be for, $x) -> (a columnar-lined esophagus, is detected for, the first time) -> the first time (2367ms) What is the esophagus used for? analysis 0.333333333331 What is the esophagus used for? -> $x: (esophagus, be for, $x) -> (the esophagus, can be captured for, analysis) -> analysis (2459ms) What is the esophagus used for? resection 0.333333333331 What is the esophagus used for? -> $x: (esophagus, be for, $x) -> (the esophagus and stomach, are often candidates for, resection) -> resection (1374ms) What is the esophagus used for? a neutral pH 0.333333333331 What is the esophagus used for? -> $x: (esophagus, be for, $x) -> (The esophagus, is designed for, a neutral pH) -> a neutral pH (2459ms) What is the esophagus used for? a year 0.333333333331 What is the esophagus used for? -> $x: (esophagus, be for, $x) -> (the esophagus, had been growing for, a year) -> a year (1612ms) What is the esophagus used for? a wide range 0.333333333331 What is the esophagus used for? -> $x: (esophagus, be for, $x) -> (Esophagus, can be useful for, a wide range) -> a wide range (1595ms) What is the esophagus used for? GERD symptoms 0.333333333331 What is the esophagus used for? -> $x: (esophagus, be for, $x) -> (Barrett?s esophagus, are treated for, GERD symptoms) -> GERD symptoms (1595ms) What is the esophagus used for? relaxation 0.333333333331 What is the esophagus used for? -> $x: (esophagus, be for, $x) -> (the esophagus and sedatives, can be administered for, relaxation) -> relaxation (2459ms) What is the esophagus used for? the most part 0.333333333331 What is the esophagus used for? -> $x: (esophagus, be for, $x) -> (the esophagus, is for, the most part) -> the most part (1375ms) What is the esophagus used for? placement 0.333333333331 What is the esophagus used for? -> $x: (esophagus, be for, $x) -> (esophagus, is exposed for, placement) -> placement (2459ms) What is the esophagus used for? the proverbial needle 0.333333333331 What is the esophagus used for? -> $x: (esophagus, be for, $x) -> ('s esophagus, is like looking for, the proverbial needle) -> the proverbial needle (1374ms) What is the esophagus used for? cancers 0.333333333331 What is the esophagus used for? -> $x: (esophagus, be for, $x) -> (the esophagus, is the most common region for, cancers) -> cancers (1612ms) What is the esophagus used for? elective esophgectomy 0.333333333331 What is the esophagus used for? -> $x: (esophagus, be for, $x) -> (carcinoma esophagus, were planned for, elective esophgectomy) -> elective esophgectomy (1594ms) What is the esophagus used for? heartburn 0.333333333331 What is the esophagus used for? -> $x: (esophagus, be for, $x) -> (esophagus, will be the scientific reason for, heartburn) -> heartburn (2367ms) What is the esophagus used for? the presence 0.333333333331 What is the esophagus used for? -> $x: (esophagus, be for, $x) -> (the esophagus, is monitored for, the presence) -> the presence (2367ms) What is the esophagus used for? esophageal cancer 0.333333333331 What is the esophagus used for? -> $x: (esophagus, be for, $x) -> ('s esophagus, is a risk factor for, esophageal cancer) -> esophageal cancer (2459ms) What is the esophagus used for? the antral pump 0.333333333331 What is the esophagus used for? -> $x: (esophagus, be for, $x) -> (The esophagus, is a conduit for, the antral pump) -> the antral pump (1612ms) What is the esophagus used for? a few seconds 0.333333333331 What is the esophagus used for? -> $x: (esophagus, be for, $x) -> (the lower esophagus sphincter, is to open for, a few seconds) -> a few seconds (1612ms) What is the esophagus used for? the development 0.333333333331 What is the esophagus used for? -> $x: (esophagus, be for, $x) -> (the esophagus, is the strongest risk factor for, the development) -> the development (2459ms) What is the esophagus used for? several years 0.333333333331 What is the esophagus used for? -> $x: (esophagus, be for, $x) -> ('s esophagus, may be present for, several years) -> several years (1594ms) What is the esophagus used for? confirmation 0.333333333331 What is the esophagus used for? -> $x: (esophagus, be for, $x) -> (the esophagus or endoscopy, is carried out for, confirmation) -> confirmation (1375ms) What is the esophagus used for? flow 0.333333333331 What is the esophagus used for? -> $x: (esophagus, be for, $x) -> (the esophagus, is removed to allow for, flow) -> flow (2459ms) What is the esophagus used for? cancer 0.333333333331 What is the esophagus used for? -> $x: (esophagus, be for, $x) -> ('s esophagus, is a risk factor for, cancer) -> cancer (2459ms) What is the esophagus used for? severe side effects 0.333333333331 What is the esophagus used for? -> $x: (esophagus, be for, $x) -> (the esophagus, is a common site for, severe side effects) -> severe side effects (1374ms) What is the esophagus used for? adenocarcinoma 0.333333333331 What is the esophagus used for? -> $x: (esophagus, be for, $x) -> (Barrett esophagus, are predisposing factors for, adenocarcinoma) -> adenocarcinoma (2367ms) What is the esophagus used for? conjuction 0.33333333333000004 What is the esophagus used for? -> $x: (esophagus, be use in, $x) -> (Esophagus, can be used in, conjuction) -> conjuction (2535ms) What is the esophagus used for? more than 60,000 cases 0.33333333333000004 What is the esophagus used for? -> $x: (esophagus, be use in, $x) -> ('s esophagus, has been used in, more than 60,000 cases) -> more than 60,000 cases (2535ms) What is the esophagus used for? The oil 0.22222222222100002 What is the esophagus used for? -> $x: ($x, be use for, esophagus) -> (The oil, is used internally for, thrush and esophagus) -> The oil (2535ms) What is the esophagus used for? Coughing 0.222222222218 What is the esophagus used for? -> $x: ($x, be function of, respiratory system) -> (Coughing, is a function of, the respiratory system) -> Coughing (2535ms) What is the esophagus used for? movie films 0.111111111112 What is the esophagus used for? -> $x: (esophagus, be use, $x) -> (your family esophagus, is used to see, movie films) -> movie films (3626ms) What is the esophagus used for? the infant 0.111111111112 What is the esophagus used for? -> $x: (esophagus, do, $x) -> (the esophagus, is done quickly after, the infant) -> the infant (3625ms) What is the esophagus used for? Varanoid aggressor@phytosis 0.111111111112 What is the esophagus used for? -> $x: (esophagus, do, $x) -> (esophagus, quadrilaterally does, Varanoid aggressor@phytosis) -> Varanoid aggressor@phytosis (2582ms) What is the esophagus used for? endoscopy 0.111111111112 What is the esophagus used for? -> $x: (esophagus, be use, $x) -> (your esophagus, is by using, endoscopy) -> endoscopy (3625ms) What is the esophagus used for? lower esophagus tumors 0.111111111112 What is the esophagus used for? -> $x: (esophagus, do, $x) -> (Upper esophagus tumors, do better than, lower esophagus tumors) -> lower esophagus tumors (2582ms) What is the esophagus used for? surgery 0.111111111112 What is the esophagus used for? -> $x: (esophagus, be use, $x) -> (the esophagus and radiation therapy, is used instead of, surgery) -> surgery (2535ms) What is the esophagus used for? a reference 0.111111111112 What is the esophagus used for? -> $x: (esophagus, be use, $x) -> ('s esophagus map, can be used as, a reference) -> a reference (2535ms) What is the esophagus used for? the palliative care team 0.111111111112 What is the esophagus used for? -> $x: (esophagus, be use, $x) -> (the esophagus, can be used by, the palliative care team) -> the palliative care team (2582ms) What is the esophagus used for? a variety 0.111111111112 What is the esophagus used for? -> $x: (esophagus, do, $x) -> (the esophagus Therapy, may consist of doing, a variety) -> a variety (2582ms) What is the esophagus used for? the stomach 0.111111111112 What is the esophagus used for? -> $x: (esophagus, do, $x) -> (the esophagus, does n?t attach to, the stomach) -> the stomach (3625ms) What is the esophagus used for? specific muscles 0.111111111112 What is the esophagus used for? -> $x: (esophagus, be use, $x) -> (The esophagus, is protected using, specific muscles) -> specific muscles (2582ms) What is the esophagus used for? the same protective lining 0.111111111112 What is the esophagus used for? -> $x: (esophagus, do, $x) -> (the esophagus, does n?t have, the same protective lining) -> the same protective lining (3626ms) What is the esophagus used for? the primary sound generator 0.111111111112 What is the esophagus used for? -> $x: (esophagus, be use, $x) -> (the esophagus, is used as, the primary sound generator) -> the primary sound generator (2582ms) What is the esophagus used for? the work 0.111111111112 What is the esophagus used for? -> $x: (esophagus, do, $x) -> (the esophagus, do, the work) -> the work (3626ms) What is the esophagus used for? the protective lining 0.111111111112 What is the esophagus used for? -> $x: (esophagus, do, $x) -> (the esophagus, does n?t have, the protective lining) -> the protective lining (3626ms) What is the esophagus used for? AmazaPet 0.111111111109 What is the esophagus used for? -> $x: ($x, be use for, respiratory system) -> (AmazaPet, may be used as needed for, respiratory system support) -> AmazaPet (3655ms) What is the esophagus used for? pine oil 0.111111111109 What is the esophagus used for? -> $x: ($x, be use for, respiratory system) -> (pine oil, has been used for, the respiratory system) -> pine oil (3656ms) What is the esophagus used for? one that kicked -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (one that kicked, caused, esophagus-melting heartburn) -> one that kicked (3793ms) What is the esophagus used for? the damage -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (the damage, caused to, the esophagus) -> the damage (3793ms) What is the esophagus used for? acid -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (acid, causes the narrowing of, esophagus) -> acid (3778ms) What is the esophagus used for? the posterior tracheal wall -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (the posterior tracheal wall, can cause injury to, the esophagus) -> the posterior tracheal wall (3762ms) What is the esophagus used for? foods -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (foods, cause cancers in, the stomach and esophagus) -> foods (3762ms) What is the esophagus used for? Untreated heartburn -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Untreated heartburn, can cause scarring of, the esophagus) -> Untreated heartburn (3782ms) What is the esophagus used for? Frequent vomiting -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Frequent vomiting, can cause the rupture of, the esophagus) -> Frequent vomiting (3790ms) What is the esophagus used for? strictures -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (strictures, cause the narrowing of, the esophagus) -> strictures (3778ms) What is the esophagus used for? gastro acid reflux -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (gastro acid reflux, can cause inflammation in, your esophagus) -> gastro acid reflux (3742ms) What is the esophagus used for? the Esophagus GERD -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (the Esophagus GERD, can cause irritation in, the esophagus) -> the Esophagus GERD (3790ms) What is the esophagus used for? bile reflux alone -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (bile reflux alone, to cause, cancer of the esophagus) -> bile reflux alone (3778ms) What is the esophagus used for? Steam Therapy work -0.0 What is the esophagus used for? -> $x: (respiratory system, do, $x) -> (the respiratory system, does, Steam Therapy work) -> Steam Therapy work (3782ms) What is the esophagus used for? Vomiting -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Vomiting, will cause further damage to, the esophagus) -> Vomiting (3777ms) What is the esophagus used for? Acid reflux -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Acid reflux, can often cause damage to, your esophagus) -> Acid reflux (3778ms) What is the esophagus used for? Fosamax -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Fosamax, can cause ulcers in, the esophagus) -> Fosamax (3790ms) What is the esophagus used for? The fluid -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (The fluid, can cause major damage to, the esophagus) -> The fluid (3790ms) What is the esophagus used for? Potassium pills -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Potassium pills, can cause injury to, the esophagus) -> Potassium pills (3786ms) What is the esophagus used for? persistent GERD symptoms -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (persistent GERD symptoms, cause damage to, the esophagus) -> persistent GERD symptoms (3762ms) What is the esophagus used for? Reflux -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Reflux, causes damage to, the esophagus or symptoms) -> Reflux (3786ms) What is the esophagus used for? The acidic contents -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (The acidic contents, causes irritation in, the esophagus) -> The acidic contents (3782ms) What is the esophagus used for? guar gum -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (guar gum, may cause obstruction of, the esophagus) -> guar gum (3790ms) What is the esophagus used for? Sever heart burn -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Sever heart burn, can cause cancer of, the esophagus) -> Sever heart burn (3656ms) What is the esophagus used for? time -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (time, causes changes in, the esophagus) -> time (3786ms) What is the esophagus used for? GERD -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (GERD, can cause scarring of, the esophagus) -> GERD (3786ms) What is the esophagus used for? acid or acid regurgitation -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (acid or acid regurgitation, causes, the esophagus) -> acid or acid regurgitation (3762ms) What is the esophagus used for? Sjogren?s syndrome -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Sjogren?s syndrome, causes problems with, the esophagus) -> Sjogren?s syndrome (3793ms) What is the esophagus used for? The eosinophils -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (The eosinophils, cause, damage to the tissue of the esophagus) -> The eosinophils (3782ms) What is the esophagus used for? Allergies -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Allergies, can cause irritation in, the esophagus) -> Allergies (3786ms) What is the esophagus used for? powder -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (powder, can cause burning of, the esophagus) -> powder (3790ms) What is the esophagus used for? the pills -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (the pills, can cause inflammation in, the esophagus) -> the pills (3786ms) What is the esophagus used for? the chest -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (the chest, may cause infection in, the esophagus) -> the chest (3790ms) What is the esophagus used for? sleep -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (sleep, also causes more damage to, the esophagus) -> sleep (3782ms) What is the esophagus used for? gastric reflux -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (gastric reflux, may cause injury of, the esophagus) -> gastric reflux (3742ms) What is the esophagus used for? the esophagus -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (the esophagus, cause, Barrett esophagus) -> the esophagus (3790ms) What is the esophagus used for? Continued irritation -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Continued irritation, may cause narrowing of, the esophagus) -> Continued irritation (3762ms) What is the esophagus used for? the hiatal hernia -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (the hiatal hernia, causes an irritation of, the esophagus) -> the hiatal hernia (3762ms) What is the esophagus used for? the relief -0.0 What is the esophagus used for? -> $x: (respiratory system, be useful for, $x) -> (the respiratory system, is useful for, the relief) -> the relief (3655ms) What is the esophagus used for? looked-for -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (looked-for, can cause ulcer in, the esophagus and stomach) -> looked-for (3782ms) What is the esophagus used for? alcohol -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (alcohol, can also cause inflammation of, the esophagus) -> alcohol (3782ms) What is the esophagus used for? one gulp -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (one gulp, can cause, your esophagus) -> one gulp (3786ms) What is the esophagus used for? a digestive disorder -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (a digestive disorder, causes injury to, the esophagus) -> a digestive disorder (3782ms) What is the esophagus used for? Chronic acid reflux disease -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Chronic acid reflux disease, may cause damage to, the esophagus) -> Chronic acid reflux disease (3790ms) What is the esophagus used for? Stomach acid -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Stomach acid, could be causing damage to, your esophagus) -> Stomach acid (3793ms) What is the esophagus used for? Humans Breathe -0.0 What is the esophagus used for? -> $x: (respiratory system, do, $x) -> (The Respiratory System, Do, Humans Breathe) -> Humans Breathe (3778ms) What is the esophagus used for? alendronate -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (alendronate, can cause severe damage to, the esophagus) -> alendronate (3782ms) What is the esophagus used for? the lungs work -0.0 What is the esophagus used for? -> $x: (respiratory system, do, $x) -> (The respiratory system, do, the lungs work) -> the lungs work (3790ms) What is the esophagus used for? juice -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (juice, will cause irritation to, the esophagus) -> juice (3778ms) What is the esophagus used for? Gerd -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Gerd, may cause a significant damage on, your esophagus) -> Gerd (3762ms) What is the esophagus used for? acidic vomit -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (acidic vomit, can cause erosion in, the esophagus) -> acidic vomit (3655ms) What is the esophagus used for? too many raw onions -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (too many raw onions, can cause, stomach and esophagus problems) -> too many raw onions (3777ms) What is the esophagus used for? acid reflux symptoms -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (acid reflux symptoms, cause, severe damage to the esophagus) -> acid reflux symptoms (3790ms) What is the esophagus used for? scales -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (scales, cause internal burns in, the esophagus and throat) -> scales (3793ms) What is the esophagus used for? exactly what -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (exactly what, causes, Barrett?s esophagus) -> exactly what (3786ms) What is the esophagus used for? reflux -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (reflux, is typically caused by, a damaged esophagus) -> reflux (3762ms) What is the esophagus used for? cigarettes -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (cigarettes, can cause, the esophagus) -> cigarettes (3786ms) What is the esophagus used for? the stomach acid -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (the stomach acid, could be causing, damage to your esophagus) -> the stomach acid (3655ms) What is the esophagus used for? The disease -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (The disease, causes swelling of, the esophagus) -> The disease (3782ms) What is the esophagus used for? colds -0.0 What is the esophagus used for? -> $x: (respiratory system, be use, $x) -> (the respiratory system, is traditionally used to treat, colds) -> colds (3790ms) What is the esophagus used for? Ingestion -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Ingestion, may cause burns to, the mouth and esophagus) -> Ingestion (3786ms) What is the esophagus used for? tobacco juice -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (tobacco juice, causes cancer of, the esophagus) -> tobacco juice (3786ms) What is the esophagus used for? the acid -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (the acid, causes the burning sensation in, the esophagus) -> the acid (3782ms) What is the esophagus used for? the reflux -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (the reflux, can cause severe damage to, the esophagus) -> the reflux (3790ms) What is the esophagus used for? stomach acid -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (stomach acid, can eventually cause scarring of, the esophagus) -> stomach acid (3786ms) What is the esophagus used for? the baby -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (the baby, causes, acid to enter the esophagus) -> the baby (3742ms) What is the esophagus used for? usually more acidic -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (usually more acidic, causes serious pain in, the esophagus) -> usually more acidic (3786ms) What is the esophagus used for? the belly acid level -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (the belly acid level, causes irritation to, the esophagus) -> the belly acid level (3786ms) What is the esophagus used for? orange and lemon -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (orange and lemon, will cause irritation to, the esophagus) -> orange and lemon (3790ms) What is the esophagus used for? Bulimia -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Bulimia, often causes injury to, the esophagus) -> Bulimia (3655ms) What is the esophagus used for? Doxorubicin -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Doxorubicin, causes, esophagus inflammation) -> Doxorubicin (3778ms) What is the esophagus used for? Repeated vomiting -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Repeated vomiting, can cause inflammation of, the esophagus) -> Repeated vomiting (3790ms) What is the esophagus used for? day -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (day, can cause the irritation of, the esophagus) -> day (3782ms) What is the esophagus used for? the increase -0.0 What is the esophagus used for? -> $x: (respiratory system, be use, $x) -> (your respiratory system, is n?t usually used to, the increase) -> the increase (3655ms) What is the esophagus used for? Reflux disease -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Reflux disease, can cause erosion of, the esophagus) -> Reflux disease (3762ms) What is the esophagus used for? a punctured battery -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (a punctured battery, can cause burns to, the mouth and esophagus) -> a punctured battery (3742ms) What is the esophagus used for? The acid -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (The acid, causes, damage to the lining of the esophagus) -> The acid (3786ms) What is the esophagus used for? Doxycycline -0.0 What is the esophagus used for? -> $x: ($x, cause, esophagus) -> (Doxycycline, may cause inflammation of, the esophagus) -> Doxycycline (3782ms) What is the esophagus used for? the esophageal feeder tube -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the esophageal feeder tube, is in, the esophagus) -> the esophageal feeder tube (3815ms) What is the esophagus used for? the small amount of acid -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the small amount of acid, is left in, the esophagus) -> the small amount of acid (3808ms) What is the esophagus used for? length -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is approximately 3 feet in, length) -> length (3811ms) What is the esophagus used for? the literature -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, was first reported in, the literature) -> the literature (3813ms) What is the esophagus used for? the Combitube -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the Combitube, is located in, the esophagus) -> the Combitube (3808ms) What is the esophagus used for? diameter -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (The esophagus, is large in, diameter) -> diameter (3802ms) What is the esophagus used for? the middle portion -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is most common in, the middle portion) -> the middle portion (3810ms) What is the esophagus used for? the echo transducer -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the echo transducer, is placed in, the esophagus) -> the echo transducer (3806ms) What is the esophagus used for? the U.S. -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, are diagnosed in, the U.S.) -> the U.S. (3813ms) What is the esophagus used for? the battery -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the battery, is in, the esophagus) -> the battery (3814ms) What is the esophagus used for? EGC and EC -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (EGC and EC, were found in, the esophagus) -> EGC and EC (3814ms) What is the esophagus used for? the center -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (Your esophagus, is located in, the center) -> the center (3799ms) What is the esophagus used for? whites -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (esophagus, is most prevalent in, whites) -> whites (3813ms) What is the esophagus used for? the tubes -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the tubes, are lodged in, your esophagus) -> the tubes (3810ms) What is the esophagus used for? the distal balloon -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the distal balloon, will be placed in, the esophagus) -> the distal balloon (3802ms) What is the esophagus used for? The probe -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (The probe, is in, the esophagus) -> The probe (3813ms) What is the esophagus used for? The sensor -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (The sensor, is positioned in, the esophagus) -> The sensor (3815ms) What is the esophagus used for? half five years -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (esophagus risks, are cut in, half five years) -> half five years (3799ms) What is the esophagus used for? the other night ACID REFLUX -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the other night ACID REFLUX, was in, my esophagus) -> the other night ACID REFLUX (3808ms) What is the esophagus used for? Special balloons -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (Special balloons, can be inserted in, the esophagus) -> Special balloons (3799ms) What is the esophagus used for? foreign bodies -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (foreign bodies, can be located in, the esophagus) -> foreign bodies (3814ms) What is the esophagus used for? felines -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, are normal in, felines) -> felines (3814ms) What is the esophagus used for? smooth muscle -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is wrapped in, smooth muscle) -> smooth muscle (3814ms) What is the esophagus used for? the doctor -0.111111111111 What is the esophagus used for? -> $x: ($x, discover, esophagus) -> (the doctor, discovered a cancerous tumor in, my esophagus) -> the doctor (3804ms) What is the esophagus used for? An object -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (An object, is stuck in, the esophagus) -> An object (3810ms) What is the esophagus used for? women -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, was more than doubled in, women) -> women (3806ms) What is the esophagus used for? infection -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (infection, are common in, the esophagus) -> infection (3802ms) What is the esophagus used for? a fetus -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (The esophagus, is usually present in, a fetus) -> a fetus (3804ms) What is the esophagus used for? about three days -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, can be healed in, about three days) -> about three days (3813ms) What is the esophagus used for? will additional -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (will additional, be processed in, the esophagus) -> will additional (3804ms) What is the esophagus used for? 21 % -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (Barrett esophagus, was found in, 21 %) -> 21 % (3804ms) What is the esophagus used for? the end -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the end, is in, the esophagus) -> the end (3810ms) What is the esophagus used for? an environment -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (an esophagus, would be able to flourish in, an environment) -> an environment (3806ms) What is the esophagus used for? Asia and China -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is more common in, Asia and China) -> Asia and China (3796ms) What is the esophagus used for? the hook -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the hook, is down in, the esophagus) -> the hook (3811ms) What is the esophagus used for? refluxed acid -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is bathed in, refluxed acid) -> refluxed acid (3806ms) What is the esophagus used for? front -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (his esophagus, is in, front) -> front (3796ms) What is the esophagus used for? granular cell tumor -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (granular cell tumor, was detected in, distal esophagus) -> granular cell tumor (3796ms) What is the esophagus used for? nature -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, are squamous cell carcinoma in, nature) -> nature (3796ms) What is the esophagus used for? the stool -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is ultimately passed in, the stool) -> the stool (3811ms) What is the esophagus used for? the probe -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the probe, is in, your esophagus) -> the probe (3810ms) What is the esophagus used for? male juveniles -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (Esophagus, is degenerate in, male juveniles) -> male juveniles (3804ms) What is the esophagus used for? the distal end -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the distal end, is located in, the esophagus) -> the distal end (3814ms) What is the esophagus used for? a flat strip -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be make from, $x) -> (Esophagus Spring Rolls, are made from, a flat strip) -> a flat strip (3815ms) What is the esophagus used for? The thyroid gland -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (The thyroid gland, is located in, the esophagus) -> The thyroid gland (3804ms) What is the esophagus used for? two segments -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is in, two segments) -> two segments (3813ms) What is the esophagus used for? how much stomach acid -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (how much stomach acid, is in, your esophagus) -> how much stomach acid (3811ms) What is the esophagus used for? adults -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is about 10 inches long In, adults) -> adults (3804ms) What is the esophagus used for? 20 % -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (Barrett esophagus, was noted in, 20 %) -> 20 % (3808ms) What is the esophagus used for? the food -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the food, is stuck in, the esophagus) -> the food (3814ms) What is the esophagus used for? eosinophils -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (eosinophils, are in, the esophagus) -> eosinophils (3813ms) What is the esophagus used for? a fundamental biomechanical mechanism -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (a fundamental biomechanical mechanism, is used in, the esophagus) -> a fundamental biomechanical mechanism (3799ms) What is the esophagus used for? 10 % neutral buffered formalin -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, was fixed in, 10 % neutral buffered formalin) -> 10 % neutral buffered formalin (3793ms) What is the esophagus used for? lymphoid nodular hyperplasia -0.111111111111 What is the esophagus used for? -> $x: ($x, discover, esophagus) -> (lymphoid nodular hyperplasia, was discovered in, 2/68 esophagus) -> lymphoid nodular hyperplasia (3802ms) What is the esophagus used for? A probe -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (A probe, is placed in, the esophagus) -> A probe (3810ms) What is the esophagus used for? locating infection -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is important in, locating infection) -> locating infection (3808ms) What is the esophagus used for? scleroderma -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, can be affected in, scleroderma) -> scleroderma (3799ms) What is the esophagus used for? different sections -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (your esophagus, will be measured in, different sections) -> different sections (3806ms) What is the esophagus used for? Esophageal cancer -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (Esophageal cancer, is characterized in, the esophagus) -> Esophageal cancer (3810ms) What is the esophagus used for? the varices -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the varices, are located in, the esophagus) -> the varices (3814ms) What is the esophagus used for? the Digestive Tract Recognized -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (Esophagus, Is Bleeding in, the Digestive Tract Recognized) -> the Digestive Tract Recognized (3804ms) What is the esophagus used for? turn -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (turn, is left in, the esophagus) -> turn (3815ms) What is the esophagus used for? an object -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (an object, is stuck in, your esophagus) -> an object (3802ms) What is the esophagus used for? frequency -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is increasing rapidly in, frequency) -> frequency (3808ms) What is the esophagus used for? individuals -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is typically larger in, individuals) -> individuals (3810ms) What is the esophagus used for? part -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (part, was in, his esophagus) -> part (3802ms) What is the esophagus used for? previous surgery -0.111111111111 What is the esophagus used for? -> $x: (esophagus, have history of, $x) -> (a short esophagus, have a history of, previous surgery) -> previous surgery (3796ms) What is the esophagus used for? men -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is more common in, men) -> men (3813ms) What is the esophagus used for? adults and children -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is pretty much the same in, adults and children) -> adults and children (3815ms) What is the esophagus used for? a bad shape -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is in, a bad shape) -> a bad shape (3799ms) What is the esophagus used for? the central chest region -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (our esophagus, is in, the central chest region) -> the central chest region (3796ms) What is the esophagus used for? The transducer -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (The transducer, is carefully placed in, your esophagus) -> The transducer (3808ms) What is the esophagus used for? prevalence -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, has been increasing in, prevalence) -> prevalence (3810ms) What is the esophagus used for? the chest cavity -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is located in, the chest cavity) -> the chest cavity (3799ms) What is the esophagus used for? children -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> ('s esophagus, is uncommon in, children) -> children (3813ms) What is the esophagus used for? the western world -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, has been declining in, the western world) -> the western world (3811ms) What is the esophagus used for? The food -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (The food, is lodged in, the esophagus) -> The food (3811ms) What is the esophagus used for? the middle -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is in, the middle) -> the middle (3811ms) What is the esophagus used for? question -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the lungs or esophagus, are in, question) -> question (3802ms) What is the esophagus used for? button batteries -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (button batteries, can be wedged in, the esophagus) -> button batteries (3806ms) What is the esophagus used for? the cells -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> ('s esophagus, is a change in, the cells) -> the cells (3806ms) What is the esophagus used for? Washington -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, had been receiving treatment in, Washington) -> Washington (3814ms) What is the esophagus used for? vertebrates -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (The esophagus, is an organ in, vertebrates) -> vertebrates (3813ms) What is the esophagus used for? 1929 -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (Theatrical esophagus, was further accustomed in, 1929) -> 1929 (3806ms) What is the esophagus used for? An esophageal pH test -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (An esophageal pH test, is in, the esophagus) -> An esophageal pH test (3814ms) What is the esophagus used for? food storage -0.111111111111 What is the esophagus used for? -> $x: (esophagus, use for, $x) -> ('s esophagus, used for, food storage) -> food storage (3796ms) What is the esophagus used for? the fundus -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is absent in, the fundus) -> the fundus (3811ms) What is the esophagus used for? An ultrasound technique -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (An ultrasound technique, is placed in, the esophagus) -> An ultrasound technique (3796ms) What is the esophagus used for? The ultrasound generator -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (The ultrasound generator, can be positioned in, the esophagus) -> The ultrasound generator (3796ms) What is the esophagus used for? the digestive tract -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (Esophagus, is bleeding in, the digestive tract) -> the digestive tract (3814ms) What is the esophagus used for? extremely hot solid food -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (extremely hot solid food, can be seen in, esophagus) -> extremely hot solid food (3793ms) What is the esophagus used for? certain parts -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is especially prevalent in, certain parts) -> certain parts (3810ms) What is the esophagus used for? Hiccoughs -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (Hiccoughs, are a standing wave in, the esophagus) -> Hiccoughs (3804ms) What is the esophagus used for? hysteria and chorea -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is seen in, hysteria and chorea) -> hysteria and chorea (3793ms) What is the esophagus used for? Balloons -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (Balloons, can be inserted in, the esophagus) -> Balloons (3814ms) What is the esophagus used for? candida -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (candida, would be down in, his esophagus) -> candida (3796ms) What is the esophagus used for? stratified squamous epithelium -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (stratified squamous epithelium, is observed in, the esophagus) -> stratified squamous epithelium (3799ms) What is the esophagus used for? esophogeal varices -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (esophogeal varices, are swollen veins in, the esophagus) -> esophogeal varices (3802ms) What is the esophagus used for? blacks -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is more common in, blacks) -> blacks (3814ms) What is the esophagus used for? A small mucosal lesion -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (A small mucosal lesion, was seen in, mid esophagus) -> A small mucosal lesion (3806ms) What is the esophagus used for? several types -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is indicated in, several types) -> several types (3793ms) What is the esophagus used for? a laser beam light -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (a laser beam light, is shined in, your esophagus) -> a laser beam light (3814ms) What is the esophagus used for? the GI tract -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the GI tract, are especially distinct in, the esophagus) -> the GI tract (3813ms) What is the esophagus used for? Primary tumors -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (Primary tumors, were located in, the esophagus) -> Primary tumors (3814ms) What is the esophagus used for? the lining -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> ('s esophagus, is a change in, the lining) -> the lining (3813ms) What is the esophagus used for? the risks -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the risks, are The tube in, the esophagus) -> the risks (3810ms) What is the esophagus used for? the transducer -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the transducer, is placed in, the esophagus) -> the transducer (3811ms) What is the esophagus used for? pain -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (his esophagus, was still moaning in, pain) -> pain (3806ms) What is the esophagus used for? older adults -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> ('s esophagus, is more common in, older adults) -> older adults (3808ms) What is the esophagus used for? a blunt foreign body -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (a blunt foreign body, is stuck in, the esophagus) -> a blunt foreign body (3813ms) What is the esophagus used for? the batteries -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the batteries, were lodged in, his esophagus) -> the batteries (3804ms) What is the esophagus used for? boys -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (boys, are being dressed in, esophagus footwear) -> boys (3796ms) What is the esophagus used for? Thrush lesions -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (Thrush lesions, may also be seen in, the esophagus) -> Thrush lesions (3804ms) What is the esophagus used for? The rest -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (The rest, are found in, the esophagus) -> The rest (3814ms) What is the esophagus used for? least 10 % -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> ('s Esophagus, is precancerous in at, least 10 %) -> least 10 % (3802ms) What is the esophagus used for? the brain stem whilst -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is controlled in, the brain stem whilst) -> the brain stem whilst (3808ms) What is the esophagus used for? a temperature probe -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (a temperature probe, was placed in, the esophagus) -> a temperature probe (3814ms) What is the esophagus used for? A foreign object -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (A foreign object, is seen in, the esophagus) -> A foreign object (3799ms) What is the esophagus used for? A thin , pressure-sensitive tube -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (A thin , pressure-sensitive tube, is placed in, your esophagus) -> A thin , pressure-sensitive tube (3796ms) What is the esophagus used for? as small -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (as small, is placed in, the esophagus) -> as small (3813ms) What is the esophagus used for? the tube -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the tube, is in, your esophagus) -> the tube (3811ms) What is the esophagus used for? tablets -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (tablets, are still sitting in, the esophagus) -> tablets (3793ms) What is the esophagus used for? The object -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (The object, may be stuck in, the esophagus) -> The object (3804ms) What is the esophagus used for? food -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (food, is perceived in, the esophagus) -> food (3808ms) What is the esophagus used for? positive the esophageal feeder tube -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (positive the esophageal feeder tube, is in, the esophagus) -> positive the esophageal feeder tube (3811ms) What is the esophagus used for? the endoscope -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (the endoscope, is in, your esophagus) -> the endoscope (3799ms) What is the esophagus used for? the US. -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (esophagus, is the fastest growing cancer in, the US.) -> the US. (3815ms) What is the esophagus used for? 10 % -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> ('s esophagus, is found in only, 10 %) -> 10 % (3811ms) What is the esophagus used for? bouts -0.111111111111 What is the esophagus used for? -> $x: (esophagus, be in, $x) -> (the esophagus, is implicated in nightly, bouts) -> bouts (3808ms) What is the esophagus used for? more acid -0.111111111111 What is the esophagus used for? -> $x: ($x, be in, esophagus) -> (more acid, is stuck in, the esophagus) -> more acid (3814ms) What is the esophagus used for? muscle -0.222222222223 What is the esophagus used for? -> $x: (esophagus, be make of, $x) -> (the esophagus, is made of, muscle) -> muscle (3815ms) What is the esophagus used for? a tissue called epithelium -0.222222222223 What is the esophagus used for? -> $x: (esophagus, be make of, $x) -> (the esophagus, is made up of, a tissue called epithelium) -> a tissue called epithelium (3815ms) What is the esophagus used for? striated muscle -0.222222222223 What is the esophagus used for? -> $x: (esophagus, be make of, $x) -> (upper esophagus, are made of, striated muscle) -> striated muscle (3815ms) What is the esophagus used for? several layers -0.222222222223 What is the esophagus used for? -> $x: (esophagus, be make of, $x) -> (The esophagus, is made of, several layers) -> several layers (3815ms) What is the esophagus used for? individual cells -0.222222222223 What is the esophagus used for? -> $x: (esophagus, be make of, $x) -> (The esophagus, is made up of, individual cells) -> individual cells (3815ms) What is the esophagus used for? two types -0.222222222223 What is the esophagus used for? -> $x: (esophagus, be make of, $x) -> (the esophagus, is made up of, two types) -> two types (3815ms) What is the esophagus used for? tender tissue -0.222222222223 What is the esophagus used for? -> $x: (esophagus, be make of, $x) -> (the esophagus, is made of very, tender tissue) -> tender tissue (3815ms) What is the esophagus used for? two layers -0.222222222223 What is the esophagus used for? -> $x: (esophagus, be make of, $x) -> (the esophagus, is made up of, two layers) -> two layers (3815ms) What is the esophagus used for? squamous cells -0.222222222223 What is the esophagus used for? -> $x: (esophagus, be make of, $x) -> (the esophagus, is made up of, squamous cells) -> squamous cells (3815ms) What is the esophagus used for? three layers -0.222222222223 What is the esophagus used for? -> $x: (esophagus, be make of, $x) -> (The esophagus, is made of, three layers) -> three layers (3815ms) What is the esophagus used for? several distinct layers -0.222222222223 What is the esophagus used for? -> $x: (esophagus, be make of, $x) -> (the esophagus, are made up of, several distinct layers) -> several distinct layers (3815ms) What is the esophagus used for? several layers and cancers -0.222222222223 What is the esophagus used for? -> $x: (esophagus, be make of, $x) -> (the esophagus, is made up of, several layers and cancers) -> several layers and cancers (3815ms) What is leukemia? work 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (work, may cause, leukemia) -> work (2453ms) What is leukemia? Vitamin D 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (Vitamin D, actually cause, leukemia) -> Vitamin D (6813ms) What is leukemia? exposure 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (exposure, could cause, Leukemia) -> exposure (5176ms) What is leukemia? toxins 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (toxins, have caused, leukemia) -> toxins (3434ms) What is leukemia? a second mouse 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (a second mouse, caused, leukemia) -> a second mouse (4386ms) What is leukemia? viruses 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (viruses, can cause, leukemia) -> viruses (3434ms) What is leukemia? Health Tools Experts 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (Health Tools Experts, causes, leukemia) -> Health Tools Experts (6745ms) What is leukemia? a drug 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (a drug, causes, leukemia) -> a drug (3434ms) What is leukemia? complications 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (complications, caused by, leukemia) -> complications (6813ms) What is leukemia? the blood-forming cells 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (the blood-forming cells, cause, leukemia) -> the blood-forming cells (2453ms) What is leukemia? cesium 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (cesium, causes, leukemia) -> cesium (7049ms) What is leukemia? a carcinogen 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (a carcinogen, causes, leukemia) -> a carcinogen (4385ms) What is leukemia? a chemical 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (a chemical, to cause, leukemia) -> a chemical (7050ms) What is leukemia? the stem cells 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (the stem cells, cause, leukemia) -> the stem cells (6813ms) What is leukemia? fallout 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (fallout, can cause, leukemia) -> fallout (6572ms) What is leukemia? formaldehyde 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (formaldehyde, may cause, leukemia) -> formaldehyde (5498ms) What is leukemia? the question 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (the question, causes, leukemia) -> the question (7049ms) What is leukemia? DU weapons 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (DU weapons, had caused, leukemia) -> DU weapons (2211ms) What is leukemia? Benzene 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (Benzene, can cause, leukemia) -> Benzene (6678ms) What is leukemia? Fatigue 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (Fatigue, Causes, Leukemia) -> Fatigue (6745ms) What is leukemia? genetic mutations 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (genetic mutations, cause, leukemia) -> genetic mutations (2453ms) What is leukemia? a known carcinogen 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (a known carcinogen, causes, Leukemia) -> a known carcinogen (2210ms) What is leukemia? Aspartame 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (Aspartame, also caused, leukemia) -> Aspartame (5176ms) What is leukemia? Experts 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (Experts, causes, leukemia) -> Experts (5176ms) What is leukemia? DU ammunition 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (DU ammunition, would cause, leukemia) -> DU ammunition (5498ms) What is leukemia? the environment and food 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (the environment and food, cause, leukemia) -> the environment and food (5176ms) What is leukemia? the microwavess 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (the microwavess, could cause, leukemia) -> the microwavess (7050ms) What is leukemia? jet fuel and plastic 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (jet fuel and plastic, causes, leukemia) -> jet fuel and plastic (6572ms) What is leukemia? the marriage 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (the marriage, causes, leukemia) -> the marriage (6744ms) What is leukemia? burning garbage 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (burning garbage, can cause, leukemia) -> burning garbage (6572ms) What is leukemia? magnetic fields 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (magnetic fields, cause, leukemia) -> magnetic fields (4385ms) What is leukemia? white cell count 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (white cell count, even cause, leukemia) -> white cell count (4385ms) What is leukemia? insomnia 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (insomnia, can cause, leukemia) -> insomnia (6744ms) What is leukemia? the workplace 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (the workplace, can cause, leukemia) -> the workplace (5176ms) What is leukemia? rogue stem cells 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (rogue stem cells, can cause, Leukemia) -> rogue stem cells (6572ms) What is leukemia? Exposure to benzene 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (Exposure to benzene, to cause, leukemia) -> Exposure to benzene (3434ms) What is leukemia? chemicals 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (chemicals, causing, leukemia) -> chemicals (2453ms) What is leukemia? Tungsten 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (Tungsten, to cause, leukemia) -> Tungsten (6572ms) What is leukemia? vitamin 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (vitamin, may cause, leukemia) -> vitamin (6813ms) What is leukemia? electric power lines 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (electric power lines, cause, leukemia) -> electric power lines (6744ms) What is leukemia? death 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (death, caused by, Leukemia) -> death (6813ms) What is leukemia? a toxic product 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (a toxic product, caused, Leukemia) -> a toxic product (3434ms) What is leukemia? the microwaves 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (the microwaves, could cause, leukemia) -> the microwaves (2210ms) What is leukemia? a retrovirus 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (a retrovirus, causes, leukemia) -> a retrovirus (2452ms) What is leukemia? Prolonged exposure 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (Prolonged exposure, will cause, Leukemia) -> Prolonged exposure (2210ms) What is leukemia? chemical compounds and radiation 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (chemical compounds and radiation, may cause, leukemia) -> chemical compounds and radiation (6813ms) What is leukemia? the dude 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (the dude, caused by, leukemia) -> the dude (6572ms) What is leukemia? the cells 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (the cells, cause, leukemia) -> the cells (5498ms) What is leukemia? The mechanism 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (The mechanism, cause, leukemia) -> The mechanism (6813ms) What is leukemia? power lines 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (power lines, might cause, leukemia) -> power lines (5176ms) What is leukemia? the misplaced MLL 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (the misplaced MLL, causes, leukemia) -> the misplaced MLL (5498ms) What is leukemia? chronic exposure 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (chronic exposure, can cause, leukemia) -> chronic exposure (2210ms) What is leukemia? the air 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (the air, can cause, leukemia) -> the air (6744ms) What is leukemia? the smallest RNAs 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (the smallest RNAs, apparently causes, leukemia) -> the smallest RNAs (7049ms) What is leukemia? Ellence 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (Ellence, can cause, leukemia) -> Ellence (6678ms) What is leukemia? uranium shells 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (uranium shells, cause, leukemia) -> uranium shells (4385ms) What is leukemia? agents 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (agents, may cause, leukemia) -> agents (5498ms) What is leukemia? Cesium 137 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (Cesium 137, causes, leukemia) -> Cesium 137 (3434ms) What is leukemia? Strontium-90 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (Strontium-90, causes, leukemia) -> Strontium-90 (7049ms) What is leukemia? ANNOUNCER 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (ANNOUNCER, causes, leukemia) -> ANNOUNCER (2452ms) What is leukemia? AZT 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (AZT, causes, leukemia) -> AZT (6678ms) What is leukemia? The radiation 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (The radiation, causes, leukemia) -> The radiation (2453ms) What is leukemia? a gene 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (a gene, causes, leukemia) -> a gene (6744ms) What is leukemia? nearby refineries 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (nearby refineries, have caused, leukemia) -> nearby refineries (7049ms) What is leukemia? mutated KIT protein 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (mutated KIT protein, causes, leukemia) -> mutated KIT protein (6572ms) What is leukemia? blood cells 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (blood cells, cause, leukemia) -> blood cells (7050ms) What is leukemia? few reasons 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (few reasons, might cause, Leukemia) -> few reasons (5498ms) What is leukemia? Hydrea 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (Hydrea, causes, leukemia) -> Hydrea (6813ms) What is leukemia? DU 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (DU, can cause, leukemia) -> DU (3434ms) What is leukemia? pain 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (pain, caused by, leukemia) -> pain (4385ms) What is leukemia? MtBE 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (MtBE, caused, leukemia) -> MtBE (5176ms) What is leukemia? a retroviral vector 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (a retroviral vector, caused, leukemia) -> a retroviral vector (2453ms) What is leukemia? the bone marrow 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (the bone marrow, causes, leukemia) -> the bone marrow (4385ms) What is leukemia? a virus 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (a virus, causes, Leukemia) -> a virus (6678ms) What is leukemia? radiation 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (radiation, can cause, leukemia) -> radiation (7049ms) What is leukemia? kidneys 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (kidneys, even cause, leukemia) -> kidneys (5176ms) What is leukemia? the air , ground and food 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (the air , ground and food, can cause, leukemia) -> the air , ground and food (6572ms) What is leukemia? somatic PTPN11 mutations 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (somatic PTPN11 mutations, cause, leukemias) -> somatic PTPN11 mutations (5498ms) What is leukemia? gene therapy 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (gene therapy, can cause, leukemia) -> gene therapy (7050ms) What is leukemia? different types 2.111111111101 What is leukemia? -> $x: ($x, cause, leukemia) -> (different types, causes of, Leukemia) -> different types (6744ms) What is leukemia? a doctor 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (a doctor, specializing in, leukemia) -> a doctor (7501ms) What is leukemia? enough platelets 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (enough platelets, happens in, leukemia) -> enough platelets (7597ms) What is leukemia? translocations 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (translocations, found in, human leukemias) -> translocations (7526ms) What is leukemia? high frequency currents 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (high frequency currents, were contra-indicated in, leukemia) -> high frequency currents (7574ms) What is leukemia? Woburn 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (Woburn, observed a horrifying increase in, leukemia) -> Woburn (7550ms) What is leukemia? the gene 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (the gene, was also expressed in, leukemia) -> the gene (7550ms) What is leukemia? the concepts 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (the concepts, goes wrong in, leukemia) -> the concepts (7476ms) What is leukemia? complex p73 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (complex p73, isoforms in, myeloid leukemia) -> complex p73 (7597ms) What is leukemia? The first bone marrow transplants 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (The first bone marrow transplants, were performed in, leukemia) -> The first bone marrow transplants (7501ms) What is leukemia? VEGF 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (VEGF, supports growth in, leukemia) -> VEGF (7597ms) What is leukemia? a continued strain 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (a continued strain, is an aggravating factor in, leukemia) -> a continued strain (7501ms) What is leukemia? the mutation 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (the mutation, found in, leukemia) -> the mutation (7550ms) What is leukemia? An infectious agent 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (An infectious agent, is implicated in, leukemia) -> An infectious agent (7597ms) What is leukemia? BP1 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (BP1, is active in, leukemia) -> BP1 (7574ms) What is leukemia? GATA-2 mutations 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (GATA-2 mutations, occur in, leukemia) -> GATA-2 mutations (7525ms) What is leukemia? genes 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (genes, involved in, myeloid leukemia) -> genes (7550ms) What is leukemia? a Japanese Haematologist 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (a Japanese Haematologist, discovered the increase in, leukemia) -> a Japanese Haematologist (7476ms) What is leukemia? rust inhibitors 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (rust inhibitors, have been implicated in, leukemia) -> rust inhibitors (7526ms) What is leukemia? the United States 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (the United States, declined in, leukemia mortality) -> the United States (7574ms) What is leukemia? Abl 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (Abl, has been extensively studied in, leukemia) -> Abl (7597ms) What is leukemia? Boswellia 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (Boswellia, may even be useful in treating, leukemia) -> Boswellia (7526ms) What is leukemia? Researchers 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (Researchers, found a 38-fold increase in, leukemia) -> Researchers (7476ms) What is leukemia? CSCs 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (CSCs, was first documented in, leukemia) -> CSCs (7525ms) What is leukemia? daily aloe 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (daily aloe, showed a remarkable reduction in, leukemia) -> daily aloe (7573ms) What is leukemia? Evidence 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (Evidence, is strongest in, leukemia) -> Evidence (7550ms) What is leukemia? the activated form 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (the activated form, found in, leukemia) -> the activated form (7501ms) What is leukemia? Dr. El-Shemy 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (Dr. El-Shemy, did his postdoctoral fellowship in, leukemia) -> Dr. El-Shemy (7573ms) What is leukemia? two small molecules 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (two small molecules, are lost in, chronic leukemia) -> two small molecules (7501ms) What is leukemia? The increases 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (The increases, occurred in, leukemia) -> The increases (7476ms) What is leukemia? KRAS , BRAF and EGFR ? 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (KRAS , BRAF and EGFR ?, have also been implicated in, leukemia) -> KRAS , BRAF and EGFR ? (7573ms) What is leukemia? previous studies 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (previous studies, have shown benefit in treating, leukemia) -> previous studies (7476ms) What is leukemia? Tal1 and Lyl1 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (Tal1 and Lyl1, are aberrantly over-expressed in, leukemia) -> Tal1 and Lyl1 (7501ms) What is leukemia? Dr. Druker 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (Dr. Druker, specializes in, childhood Leukemia) -> Dr. Druker (7526ms) What is leukemia? leptin receptor 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (leptin receptor, isoforms in, myeloid leukemia) -> leptin receptor (7476ms) What is leukemia? Italy 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (Italy, revealed significant increases in, leukemia) -> Italy (7501ms) What is leukemia? an important molecule 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (an important molecule, is mutated in, leukemia) -> an important molecule (7597ms) What is leukemia? a cancer-causing gene 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (a cancer-causing gene, found in, childhood leukemias) -> a cancer-causing gene (7574ms) What is leukemia? decitabine 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (decitabine, was found to be active in, leukemia) -> decitabine (7501ms) What is leukemia? tumour maintenance 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (tumour maintenance, was originally demonstrated in, leukemia) -> tumour maintenance (7501ms) What is leukemia? Kava Kava 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (Kava Kava, has also shown promise in treating, leukemia) -> Kava Kava (7501ms) What is leukemia? France 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (France, was very active in treating, leukemia) -> France (7476ms) What is leukemia? programmed cell death 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (programmed cell death, goes awry in, leukemias) -> programmed cell death (7526ms) What is leukemia? Long-term exposure 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (Long-term exposure, can result in, leukemia) -> Long-term exposure (7597ms) What is leukemia? the moment few republics 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (the moment few republics, are reporting a rise in, leukemia) -> the moment few republics (7525ms) What is leukemia? the events 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (the events, occur in, every leukemia) -> the events (7550ms) What is leukemia? The first targeted therapies 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (The first targeted therapies, were developed in, leukemia) -> The first targeted therapies (7050ms) What is leukemia? NOTCH1 ? 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (NOTCH1 ?, were implicated in, leukemia) -> NOTCH1 ? (7476ms) What is leukemia? The count 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (The count, can otherwise be altered in, leukemia) -> The count (7526ms) What is leukemia? vincristine 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (vincristine, are used in, leukemia) -> vincristine (7476ms) What is leukemia? T cells 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (T cells, stain positive in, leukemia) -> T cells (7574ms) What is leukemia? important discoveries 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (important discoveries, will be done in, leukemias) -> important discoveries (7574ms) What is leukemia? arsenic 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (arsenic, was proven helpful in treating, leukemia) -> arsenic (7550ms) What is leukemia? transcription factors 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (transcription factors, involved in, leukemia) -> transcription factors (7501ms) What is leukemia? the malady 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (the malady, had been documented in, leukemia) -> the malady (7501ms) What is leukemia? Hope 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (Hope, happened in, leukemia) -> Hope (7526ms) What is leukemia? Set1 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (Set1, are involved in, leukemia) -> Set1 (7550ms) What is leukemia? novel partner 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (novel partner, chromosomes in, myeloid leukemias) -> novel partner (7525ms) What is leukemia? Colloidal Silver IV 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (Colloidal Silver IV, has been successful in, Leukemia) -> Colloidal Silver IV (7476ms) What is leukemia? Registered Nurses 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (Registered Nurses, are experienced in, leukemia) -> Registered Nurses (7550ms) What is leukemia? MCL1 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (MCL1, is prevalent in, leukemia) -> MCL1 (7476ms) What is leukemia? 90 % 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (90 %, are in, leukemias) -> 90 % (7526ms) What is leukemia? response 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (response, relapse in, human leukemia) -> response (7526ms) What is leukemia? articles 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (articles, published to your present article in, Leukemia) -> articles (7573ms) What is leukemia? hematopoietic failure 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (hematopoietic failure, is an invariable feature in, leukemia) -> hematopoietic failure (7574ms) What is leukemia? Cancer stem cells 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (Cancer stem cells, were identified in, leukemia) -> Cancer stem cells (7550ms) What is leukemia? September ? 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (September ?, cites unusual rises in, leukemia) -> September ? (7550ms) What is leukemia? regulation 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (regulation, may be modified in, leukemia) -> regulation (7574ms) What is leukemia? melatonin 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (melatonin, are in, leukemia) -> melatonin (7550ms) What is leukemia? Ophthalmic disorders 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (Ophthalmic disorders, occur in, leukemias) -> Ophthalmic disorders (7525ms) What is leukemia? particular antigens 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (particular antigens, were studied in, leukemia) -> particular antigens (7526ms) What is leukemia? the kinetochore complex 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (the kinetochore complex, have been implicated in, leukemia) -> the kinetochore complex (7574ms) What is leukemia? normal and leukemic stem cells 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (normal and leukemic stem cells, are rarely mutated in, leukemia) -> normal and leukemic stem cells (7476ms) What is leukemia? such viruses 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (such viruses, can have a role in causing, leukemia) -> such viruses (7550ms) What is leukemia? cause DNA and chromosomal damage 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (cause DNA and chromosomal damage, found in, leukemia) -> cause DNA and chromosomal damage (7597ms) What is leukemia? Iraq 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (Iraq, have documented an increase in, leukemia) -> Iraq (7501ms) What is leukemia? the rise 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (the rise, is in, leukemias) -> the rise (7476ms) What is leukemia? last year 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (last year, identified in, leukemia) -> last year (7597ms) What is leukemia? Clofarabine 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (Clofarabine, has shown clinical activity in, leukemias) -> Clofarabine (7501ms) What is leukemia? Lead 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (Lead, is implicated in causing, leukemia) -> Lead (7476ms) What is leukemia? MYH Tyr382Asp 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (MYH Tyr382Asp, variants in, childhood leukemias) -> MYH Tyr382Asp (7525ms) What is leukemia? doctors 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (doctors, have experience in treating, leukemia) -> doctors (7597ms) What is leukemia? Hiroshima survivors 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (Hiroshima survivors, showed a 17-fold increase in, leukemia) -> Hiroshima survivors (7550ms) What is leukemia? indirubin 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (indirubin, is widely used in, leukemia) -> indirubin (7550ms) What is leukemia? great strides 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (great strides, have been made in treating, leukemia) -> great strides (7050ms) What is leukemia? the process 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (the process, can result in, leukemia) -> the process (7501ms) What is leukemia? self-renew 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (self-renew, are exploited in, leukemias) -> self-renew (7501ms) What is leukemia? alkylglycerols 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (alkylglycerols, is being used in treating, leukemia) -> alkylglycerols (7476ms) What is leukemia? caspase activation pathways 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (caspase activation pathways, are common in, leukemia) -> caspase activation pathways (7550ms) What is leukemia? telomerase activity 1.99999999999 What is leukemia? -> $x: ($x, in, leukemia) -> (telomerase activity, may be an early step in, leukemia) -> telomerase activity (7574ms) What is leukemia? patients 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (the Leukemia and Lymphoma Society, are doing for, patients) -> patients (7666ms) What is leukemia? a simple blood examination 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (the leukemia, can be done ding, a simple blood examination) -> a simple blood examination (7621ms) What is leukemia? the day 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (leukemia necklace, did arrive on, the day) -> the day (7643ms) What is leukemia? scientists 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (leukemia cells, was done by, scientists) -> scientists (7597ms) What is leukemia? humans 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (leukemia, do, humans) -> humans (7643ms) What is leukemia? parental ES cells 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (leukemia inhibitory factor, did, parental ES cells) -> parental ES cells (7621ms) What is leukemia? the shipyard?s non-nuclear workers 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (less leukemia mortality, did, the shipyard?s non-nuclear workers) -> the shipyard?s non-nuclear workers (7621ms) What is leukemia? transcriptase 1.888888888879 What is leukemia? -> $x: ($x, describe, leukemia) -> (transcriptase, have been described in, acute myelocytic leukemia) -> transcriptase (7621ms) What is leukemia? much knowledge 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (mouse leukemia, were done without, much knowledge) -> much knowledge (7621ms) What is leukemia? LETBI 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (The chronic leukemia patients, did go into, LETBI) -> LETBI (7643ms) What is leukemia? SL 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (The Leukemia & Lymphoma Society, is doing in, SL) -> SL (7643ms) What is leukemia? any form 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (leukemia, better start doing, any form) -> any form (7643ms) What is leukemia? PCI 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (leukemia treatment, do have a component of, PCI) -> PCI (7621ms) What is leukemia? Phytochemicals Triumph 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (Leukemia Cells, Do, Phytochemicals Triumph) -> Phytochemicals Triumph (7597ms) What is leukemia? Salkowski 102 1.888888888879 What is leukemia? -> $x: ($x, describe, leukemia) -> (Salkowski 102, described a patient with, ?splenic leukemia?) -> Salkowski 102 (7621ms) What is leukemia? 1000 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (leukemia, started doing, 1000) -> 1000 (7597ms) What is leukemia? age 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (Leukemia, does increase with, age) -> age (7643ms) What is leukemia? adults 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (leukemia, do, adults) -> adults (7643ms) What is leukemia? a career school scoring record 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (leukemia, only did Collier set, a career school scoring record) -> a career school scoring record (7621ms) What is leukemia? side 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (the Leukemia, did, side) -> side (7597ms) What is leukemia? FIV 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (leukemia, did test positive for, FIV) -> FIV (7621ms) What is leukemia? passing away 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (a girl dying of leukemia, to do before, passing away) -> passing away (7643ms) What is leukemia? a cure 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (the Leukemia and Lymphoma Society, are doing to find, a cure) -> a cure (7621ms) What is leukemia? matter 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (chronic phase chronic myeloid leukemia, does, matter) -> matter (7666ms) What is leukemia? children 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (leukemia, do, children) -> children (7621ms) What is leukemia? a single 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (leukemia, are typically done by, a single) -> a single (7643ms) What is leukemia? cranial spinal radiation 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (leukemia, have done, cranial spinal radiation) -> cranial spinal radiation (7643ms) What is leukemia? great attitudes 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (his leukemia, have done so faithfully with, great attitudes) -> great attitudes (7644ms) What is leukemia? Meniere 1.888888888879 What is leukemia? -> $x: ($x, describe, leukemia) -> (Meniere, described the effects of, leukemia) -> Meniere (7643ms) What is leukemia? a lymph node biopsy 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (lymphoma/leukemia, is to do, a lymph node biopsy) -> a lymph node biopsy (7621ms) What is leukemia? brain cancer 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (leukemia, do suggest a link to, brain cancer) -> brain cancer (7597ms) What is leukemia? years 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (Leukemia, does n?t hang all around for, years) -> years (7597ms) What is leukemia? smoking 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (leukemias, have nothing to do with, smoking) -> smoking (7621ms) What is leukemia? cancer patients 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (The Leukemia & Lymphoma Society, does for, cancer patients) -> cancer patients (7666ms) What is leukemia? the work 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (the leukemia cells, can still do some of, the work) -> the work (7621ms) What is leukemia? normal blood cells 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (Leukemia cells, cannot do the job of, normal blood cells) -> normal blood cells (7621ms) What is leukemia? a number 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (DIagnosing leukemia, is done by, a number) -> a number (7621ms) What is leukemia? treatment 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (Hairy cell leukemia, does n?t usually respond well to, treatment) -> treatment (7644ms) What is leukemia? phases 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (acute leukemia, is done in, phases) -> phases (7643ms) What is leukemia? an amazing job 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (the Leukemia & Lymphoma Society?s Woman, did, an amazing job) -> an amazing job (7666ms) What is leukemia? the associations 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (childhood leukemia, as do, the associations) -> the associations (7644ms) What is leukemia? a form 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (some chronic leukemias, do progress to, a form) -> a form (7666ms) What is leukemia? staging systems 1.888888888879 What is leukemia? -> $x: (leukemia, do, $x) -> (leukemia, do have, staging systems) -> staging systems (7643ms) What is leukemia? funeral directors 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, is creating unnecessary risks for, funeral directors) -> funeral directors (7688ms) What is leukemia? molecular genetics 1.888888888878 What is leukemia? -> $x: ($x, do, leukemia) -> (molecular genetics, did, some leukemia research) -> molecular genetics (7752ms) What is leukemia? Cancers 1.888888888878 What is leukemia? -> $x: ($x, produce, leukemia) -> (Cancers, produced included, leukemia , lymphoma , kidney) -> Cancers (7688ms) What is leukemia? use 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, is being tested for, use) -> use (7710ms) What is leukemia? The 9 year bride 1.888888888878 What is leukemia? -> $x: ($x, do, leukemia) -> (The 9 year bride, does have, leukemia) -> The 9 year bride (7688ms) What is leukemia? homes 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (our FIV+ and feline leukemia cats, are looking for, homes) -> homes (7710ms) What is leukemia? human leukemia 1.888888888878 What is leukemia? -> $x: ($x, produce, leukemia) -> (human leukemia, had produced, a leukemia) -> human leukemia (7688ms) What is leukemia? at least 6 months 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, has been achieved for, at least 6 months) -> at least 6 months (7688ms) What is leukemia? a day 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, was Batman for, a day) -> a day (7793ms) What is leukemia? ways 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (The Leukemia & Lymphoma Society, am looking for, ways) -> ways (7688ms) What is leukemia? a bone marrow match 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, has been searching for, a bone marrow match) -> a bone marrow match (7752ms) What is leukemia? 5q syndrome 1.888888888878 What is leukemia? -> $x: ($x, characterize, leukemia) -> (5q syndrome, is characterized to, overt leukemia) -> 5q syndrome (7710ms) What is leukemia? dogs 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, is very rare for, dogs) -> dogs (7710ms) What is leukemia? possible causes 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, were investigated for, possible causes) -> possible causes (7793ms) What is leukemia? the study 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (Leukemia, is a classic area for, the study) -> the study (7710ms) What is leukemia? Dax 1.888888888878 What is leukemia? -> $x: ($x, do, leukemia) -> (Dax, did lose his battle with, Leukemia) -> Dax (7752ms) What is leukemia? themselves 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia patients, were then left to fend for, themselves) -> themselves (7773ms) What is leukemia? the boats 1.888888888878 What is leukemia? -> $x: ($x, do, leukemia) -> (the boats, decided to do, a leukemia fund-raising event) -> the boats (7773ms) What is leukemia? The NCI 1.888888888878 What is leukemia? -> $x: ($x, define, leukemia) -> (The NCI, defines, leukemia) -> The NCI (7710ms) What is leukemia? the first time 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia and sarcomas, has been found for, the first time) -> the first time (7710ms) What is leukemia? cat owners 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (The cat leukemia virus, is very worrisome for, cat owners) -> cat owners (7812ms) What is leukemia? minority patients 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia survival rates, are lower for, minority patients) -> minority patients (7666ms) What is leukemia? the kids 1.888888888878 What is leukemia? -> $x: ($x, do, leukemia) -> (the kids, does develop, leukemia) -> the kids (7773ms) What is leukemia? pro-active care 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (Understanding leukemia, is basic for, pro-active care) -> pro-active care (7710ms) What is leukemia? prognostic factors 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (leukemias, has been useful for identifying, prognostic factors) -> prognostic factors (7732ms) What is leukemia? Theodore?s bone marrow 1.888888888878 What is leukemia? -> $x: ($x, produce, leukemia) -> (Theodore?s bone marrow, produced, the leukemia) -> Theodore?s bone marrow (7793ms) What is leukemia? Women 1.888888888878 What is leukemia? -> $x: ($x, do, leukemia) -> (Women, Can Do Now, Bovine Leukemia Virus Infection) -> Women (7793ms) What is leukemia? modern medicine 1.888888888878 What is leukemia? -> $x: ($x, do, leukemia) -> (modern medicine, does n?t hold the cure for, childhood leukemia) -> modern medicine (7773ms) What is leukemia? The shelter 1.888888888878 What is leukemia? -> $x: ($x, do, leukemia) -> (The shelter, does feline, leukemia tests) -> The shelter (7688ms) What is leukemia? infected cattle 1.888888888878 What is leukemia? -> $x: ($x, do, leukemia) -> (infected cattle, do develop, leukemia or lymphoma) -> infected cattle (7812ms) What is leukemia? TKI therapy 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (these leukemias, may also be candidates for, TKI therapy) -> TKI therapy (7752ms) What is leukemia? fresh peaches 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, was for, fresh peaches) -> fresh peaches (7732ms) What is leukemia? home 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, was cared for at, home) -> home (7710ms) What is leukemia? PCBs 1.888888888878 What is leukemia? -> $x: ($x, produce, leukemia) -> (PCBs, also produced, lymphomas and leukemias) -> PCBs (7666ms) What is leukemia? Metal 1.888888888878 What is leukemia? -> $x: ($x, do, leukemia) -> (Metal, does n?t get, leukemia) -> Metal (7666ms) What is leukemia? spinal tap 1.888888888878 What is leukemia? -> $x: ($x, do, leukemia) -> (spinal tap, may be done to diagnose, leukemia) -> spinal tap (7773ms) What is leukemia? the transplant 1.888888888878 What is leukemia? -> $x: ($x, do, leukemia) -> (the transplant, did cure, his leukemia) -> the transplant (7812ms) What is leukemia? successful treatment 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, is critical for, successful treatment) -> successful treatment (7752ms) What is leukemia? white children 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (Leukemia rates, are substantially higher for, white children) -> white children (7793ms) What is leukemia? bone marrow transplants 1.888888888878 What is leukemia? -> $x: ($x, do, leukemia) -> (bone marrow transplants, are done for, leukemia) -> bone marrow transplants (7773ms) What is leukemia? five years 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, is reinstated now for, five years) -> five years (7793ms) What is leukemia? One bright spot 1.888888888878 What is leukemia? -> $x: ($x, do, leukemia) -> (One bright spot, did arise from, his leukemia diagnosis) -> One bright spot (7752ms) What is leukemia? the rest 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (feline leukemia, is infected for, the rest) -> the rest (7752ms) What is leukemia? a bone-marrow transplant 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, are waiting for, a bone-marrow transplant) -> a bone-marrow transplant (7732ms) What is leukemia? mdr-phenotype 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, is a good marker for, mdr-phenotype) -> mdr-phenotype (7752ms) What is leukemia? cats 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (feline leukemia, is recommended for, cats) -> cats (7812ms) What is leukemia? Research 1.888888888878 What is leukemia? -> $x: ($x, do, leukemia) -> (Research, was done on, three leukemia patients) -> Research (7773ms) What is leukemia? treatment planning 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (your leukemia, can be important for, treatment planning) -> treatment planning (7773ms) What is leukemia? Hodgkin?s survivors 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (a future leukemia, is a possibility for, Hodgkin?s survivors) -> Hodgkin?s survivors (7752ms) What is leukemia? the hotdogs 1.888888888878 What is leukemia? -> $x: ($x, do, leukemia) -> (the hotdogs, do cause, higher rates of childhood leukemia) -> the hotdogs (7752ms) What is leukemia? over 20 years 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (hairy cell leukemia, apparently was told for, over 20 years) -> over 20 years (7773ms) What is leukemia? 30 days 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia cures, were for about, 30 days) -> 30 days (7666ms) What is leukemia? coaches 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (The Leukemia & Lymphoma Society, is looking for, coaches) -> coaches (7688ms) What is leukemia? each major type 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (treating leukemia, is different for, each major type) -> each major type (7732ms) What is leukemia? an invalid husband 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia and bad arthritis, is caring for, an invalid husband) -> an invalid husband (7793ms) What is leukemia? families 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (The Leukemia & Lymphoma Society, is for, families) -> families (7773ms) What is leukemia? the non-Adriamycin arm 1.888888888878 What is leukemia? -> $x: ($x, do, leukemia) -> (the non-Adriamycin arm, did develop, an acute leukemia) -> the non-Adriamycin arm (7812ms) What is leukemia? a bone marrow donor 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, are searching for, a bone marrow donor) -> a bone marrow donor (7793ms) What is leukemia? the Match 1.888888888878 What is leukemia? -> $x: ($x, do, leukemia) -> (the Match, does a really good thing for, leukemia patients) -> the Match (7793ms) What is leukemia? Cuddles 1.888888888878 What is leukemia? -> $x: ($x, do, leukemia) -> (Cuddles, did test positive for, feline leukemia) -> Cuddles (7710ms) What is leukemia? the decline 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (the possibility salmon leukemia, was to blame for, the decline) -> the decline (7688ms) What is leukemia? FeLV. 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, should be tested for, FeLV.) -> FeLV. (7812ms) What is leukemia? The US and UK Studies 1.888888888878 What is leukemia? -> $x: ($x, do, leukemia) -> (The US and UK Studies, Do Point to, an EMF Leukemia Risk) -> The US and UK Studies (7732ms) What is leukemia? 35 years 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (Human Leukemia, are now for, 35 years) -> 35 years (7773ms) What is leukemia? a transplant 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, may be considered for, a transplant) -> a transplant (7688ms) What is leukemia? fleas 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (feline leukemia, has been treated for, fleas) -> fleas (7752ms) What is leukemia? baby Noah 1.888888888878 What is leukemia? -> $x: ($x, do, leukemia) -> (baby Noah, did n?t have, leukemia , lymphoma or liver failure) -> baby Noah (7710ms) What is leukemia? donations 1.888888888878 What is leukemia? -> $x: ($x, do, leukemia) -> (donations, be done to, the Leukemia Lymphoma Society) -> donations (7688ms) What is leukemia? B?chau et al 1.888888888878 What is leukemia? -> $x: ($x, characterize, leukemia) -> (B?chau et al, characterize, B-cell leukemia-3) -> B?chau et al (7688ms) What is leukemia? the Medal 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, was nominated for, the Medal) -> the Medal (7793ms) What is leukemia? the appropriate management 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (leukemias, are the bases for, the appropriate management) -> the appropriate management (7688ms) What is leukemia? the last 20 years 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, has been studied for, the last 20 years) -> the last 20 years (7666ms) What is leukemia? a physician 1.888888888878 What is leukemia? -> $x: ($x, do, leukemia) -> (a physician, does suspect, leukemia) -> a physician (7812ms) What is leukemia? the variety 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (lymphoma and leukemia research, is well known for, the variety) -> the variety (7752ms) What is leukemia? a third time 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (The Leukemia, was back for, a third time) -> a third time (7710ms) What is leukemia? any cat 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (Leukemia vaccine, is appropriate for, any cat) -> any cat (7732ms) What is leukemia? A DONOR 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (LEUKEMIA AND LYMPHOMA, ARE WAITING FOR, A DONOR) -> A DONOR (7688ms) What is leukemia? Vaccines 1.888888888878 What is leukemia? -> $x: ($x, do, leukemia) -> (Vaccines, do predispose to, cancer and leukemia) -> Vaccines (7732ms) What is leukemia? the public 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, is asking for, the public) -> the public (7710ms) What is leukemia? the establishment 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (stem cell leukemia, is also calling for, the establishment) -> the establishment (7666ms) What is leukemia? several types 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (Leukemia, is a general term for, several types) -> several types (7793ms) What is leukemia? leukemogenesis 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (feline leukemia virus, are responsible for, leukemogenesis) -> leukemogenesis (7666ms) What is leukemia? clues 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (juvenile leukemia Kaustubh Supekar, is looking for, clues) -> clues (7752ms) What is leukemia? a child 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (a Childhood Leukemia Foundation, is appropriate for, a child) -> a child (7793ms) What is leukemia? power frequency fields 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (childhood leukemia, is suggested for, power frequency fields) -> power frequency fields (7688ms) What is leukemia? the anti-tumor activity 1.888888888878 What is leukemia? -> $x: ($x, do, leukemia) -> (the anti-tumor activity, were done against, L1210 leukemia) -> the anti-tumor activity (7710ms) What is leukemia? the treatment 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, is important for, the treatment) -> the treatment (7773ms) What is leukemia? leukemia 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia stem cells, are responsible for initiating, leukemia) -> leukemia (7793ms) What is leukemia? Donald Pinkel 1.888888888878 What is leukemia? -> $x: ($x, do, leukemia) -> (Donald Pinkel, has done so much for, leukemia) -> Donald Pinkel (7710ms) What is leukemia? more than 10 years 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, had been HIV-positive for, more than 10 years) -> more than 10 years (7752ms) What is leukemia? an early stem cell 1.888888888878 What is leukemia? -> $x: ($x, produce, leukemia) -> (an early stem cell, produce, acute leukemia) -> an early stem cell (7666ms) What is leukemia? days or weeks 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (acute leukemia present, have been ill only for, days or weeks) -> days or weeks (7732ms) What is leukemia? four different types 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (Leukemia, is the general name for, four different types) -> four different types (7793ms) What is leukemia? ionizing radiation 1.888888888878 What is leukemia? -> $x: ($x, do, leukemia) -> (ionizing radiation, do get, Leukemia) -> ionizing radiation (7688ms) What is leukemia? transplant 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (leukemias, are the major cancer-related reason for, transplant) -> transplant (7812ms) What is leukemia? seven years 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, has now been cancer free for, seven years) -> seven years (7732ms) What is leukemia? the protein survivin 1.888888888878 What is leukemia? -> $x: ($x, produce, leukemia) -> (the protein survivin, is heavily produced in, NK-leukemia cells) -> the protein survivin (7732ms) What is leukemia? major heart surgery 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (Leukemia , tinnitus, am schedule for, major heart surgery) -> major heart surgery (7732ms) What is leukemia? interested residents 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (Acute Leukemia, are available for, interested residents) -> interested residents (7732ms) What is leukemia? profits 1.888888888878 What is leukemia? -> $x: (leukemia, be for, $x) -> (leukemia, is good for, profits) -> profits (7752ms) What is leukemia? 2. Several retroviruses 1.888888888878 What is leukemia? -> $x: ($x, produce, leukemia) -> (2. Several retroviruses, can produce, leukemia) -> 2. Several retroviruses (7732ms) What is leukemia? the vet 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (the vet, found, two leukemia tumors) -> the vet (7870ms) What is leukemia? the antibody 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (the antibody, finds, a leukemia cell) -> the antibody (7871ms) What is leukemia? Paola Michelozzi 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (Paola Michelozzi, found higher rates of, childhood leukemia) -> Paola Michelozzi (7928ms) What is leukemia? Boston University 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (Boston University, found, high leukemia rates) -> Boston University (7928ms) What is leukemia? The idea 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (The idea, is to find, residual leukemia) -> The idea (7812ms) What is leukemia? the amounts 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (the amounts, found helpful for, leukemia treatment) -> the amounts (7812ms) What is leukemia? a chemical compound refined 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (a chemical compound refined, was found to cause, leukemia) -> a chemical compound refined (7889ms) What is leukemia? mission 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (mission, is to find cures for, leukemia) -> mission (7909ms) What is leukemia? research 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (research, will help find cures for, leukemia) -> research (7909ms) What is leukemia? the MLL and AF4 genes 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (the MLL and AF4 genes, is found in, Acute lymphoblastic leukemia) -> the MLL and AF4 genes (7812ms) What is leukemia? home use 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (home use, found an increased risk of, childhood leukemia) -> home use (7832ms) What is leukemia? Kennedi 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (Kennedi, was found to suffer from, acute lymphoblastic leukemia) -> Kennedi (7832ms) What is leukemia? a $ 7 donation 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (a $ 7 donation, help find a cure for, Pediatric Leukemia) -> a $ 7 donation (7851ms) What is leukemia? health 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (health, found higher incidences of, leukemia) -> health (7928ms) What is leukemia? the society 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (the society, is to find cures for, leukemia) -> the society (7928ms) What is leukemia? December 1998 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (December 1998, found higher rates of, childhood leukemia) -> December 1998 (7851ms) What is leukemia? leucocytes 1.777777777768 What is leukemia? -> $x: ($x, create, leukemia) -> (leucocytes, can create, Leukemia) -> leucocytes (7928ms) What is leukemia? Harry 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (Harry, was found to be with, leukemia) -> Harry (7909ms) What is leukemia? the doctor 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (the doctor, finds, chronic leukemia) -> the doctor (7909ms) What is leukemia? XMRV 1.777777777768 What is leukemia? -> $x: ($x, refer, leukemia) -> (XMRV, refers to, xenotropic murine leukemia virus-related virus) -> XMRV (7909ms) What is leukemia? a recent German study 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (a recent German study, found, childhood leukemia clusters) -> a recent German study (7909ms) What is leukemia? researchers 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (researchers, have found elevated rates of, childhood leukemia) -> researchers (7851ms) What is leukemia? chromosomal translocations 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (chromosomal translocations, found in, Acute Myelogenous Leukemia) -> chromosomal translocations (7871ms) What is leukemia? Doctors 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (Doctors, often find, chronic leukemia) -> Doctors (7909ms) What is leukemia? lymphnodes 1.777777777768 What is leukemia? -> $x: ($x, refer, leukemia) -> (lymphnodes, is referred to as, Leukemia) -> lymphnodes (7889ms) What is leukemia? a temporary condition 1.777777777768 What is leukemia? -> $x: ($x, refer, leukemia) -> (a temporary condition, referred to as, ?leukemia?) -> a temporary condition (7832ms) What is leukemia? Dr. Helmuth Ulrich 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (Dr. Helmuth Ulrich, found, the leukemia rate) -> Dr. Helmuth Ulrich (7909ms) What is leukemia? Chimi 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (Chimi, was found to have, Feline Leukemia) -> Chimi (7928ms) What is leukemia? L3 1.777777777768 What is leukemia? -> $x: ($x, refer, leukemia) -> (L3, is now referred to as, Burkitt cell leukemia) -> L3 (7851ms) What is leukemia? times 1.777777777768 What is leukemia? -> $x: ($x, refer, leukemia) -> (times, referred to as, chronic granulocytic leukemia) -> times (7832ms) What is leukemia? The Leukemia & Lymphoma Society 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (The Leukemia & Lymphoma Society, is to find cures for, leukemia) -> The Leukemia & Lymphoma Society (7928ms) What is leukemia? the pathologist 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (the pathologist, finds, leukemia cells) -> the pathologist (7871ms) What is leukemia? household appliances 1.777777777768 What is leukemia? -> $x: ($x, create, leukemia) -> (household appliances, create risks of, childhood leukemia) -> household appliances (7832ms) What is leukemia? The ROR1 antigen 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (The ROR1 antigen, is found on, all the leukemia cells) -> The ROR1 antigen (7851ms) What is leukemia? mRNA 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (mRNA, have been found in, hairy cell leukemia) -> mRNA (7851ms) What is leukemia? styrene 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (styrene, have found increased risks of, leukemia and lymphoma) -> styrene (7889ms) What is leukemia? none 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (none, was found active in, mouse leukemia systems) -> none (7889ms) What is leukemia? utero 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (utero, found to be associated with, childhood leukemia) -> utero (7928ms) What is leukemia? Serenity 1.777777777768 What is leukemia? -> $x: ($x, deal with, leukemia) -> (Serenity, has been dealing with, Leukemia) -> Serenity (7928ms) What is leukemia? HB 2373 1.777777777768 What is leukemia? -> $x: ($x, create, leukemia) -> (HB 2373, would create, the Oklahoma Leukemia) -> HB 2373 (7871ms) What is leukemia? 1991 Aloe 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (1991 Aloe, was found to be effective against, feline leukemia) -> 1991 Aloe (7871ms) What is leukemia? treatments 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (treatments, have been found for, childhood leukemia) -> treatments (7871ms) What is leukemia? Bailey 1.777777777768 What is leukemia? -> $x: ($x, deal with, leukemia) -> (Bailey, has been dealing with, leukemia) -> Bailey (7889ms) What is leukemia? three more farm families 1.777777777768 What is leukemia? -> $x: ($x, deal with, leukemia) -> (three more farm families, are dealing with, leukemia) -> three more farm families (7812ms) What is leukemia? Aberrant Rel/NF-kB activity 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (Aberrant Rel/NF-kB activity, is found in, many human leukemias) -> Aberrant Rel/NF-kB activity (7851ms) What is leukemia? radiation therapy 1.777777777768 What is leukemia? -> $x: (leukemia, have use of, $x) -> (adult leukemia, have abandoned the use of, radiation therapy) -> radiation therapy (7891ms) What is leukemia? 1973 ] 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (1973 ], was found to have, a chronic Leukemia) -> 1973 ] (7871ms) What is leukemia? a visiting professor 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (a visiting professor, is found to be lacking in, human leukemia) -> a visiting professor (7871ms) What is leukemia? the problem 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (the problem, was found for, chronic lymphatic leukemia) -> the problem (7871ms) What is leukemia? New Hampshire 1.777777777768 What is leukemia? -> $x: ($x, deal with, leukemia) -> (New Hampshire, are dealing with, leukemia) -> New Hampshire (7928ms) What is leukemia? The authors 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (The authors, found increased rates of, leukemia) -> The authors (7832ms) What is leukemia? the doctors 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (the doctors, found, the leukemia) -> the doctors (7889ms) What is leukemia? purine analogues 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (purine analogues, has been found active against, human leukemias) -> purine analogues (7928ms) What is leukemia? new chemotherapy agents 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (new chemotherapy agents, were found effective against, leukemia) -> new chemotherapy agents (7871ms) What is leukemia? maitake 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (maitake, was found effective against, leukemia) -> maitake (7851ms) What is leukemia? methotrexate 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (methotrexate, were found to be effective in, leukemia patients) -> methotrexate (7851ms) What is leukemia? a family 1.777777777768 What is leukemia? -> $x: ($x, deal with, leukemia) -> (a family, dealing with, childhood Leukemia) -> a family (7851ms) What is leukemia? Cancer , Causes & Control 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (Cancer , Causes & Control, finds a higher risk for, leukemia) -> Cancer , Causes & Control (7909ms) What is leukemia? Similar associations 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (Similar associations, have been found with, leukemia) -> Similar associations (7851ms) What is leukemia? LLS 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (LLS, find cures for, leukemia) -> LLS (7851ms) What is leukemia? Leukemia research 1.777777777768 What is leukemia? -> $x: ($x, create, leukemia) -> (Leukemia research, as create awareness about, Leukemia) -> Leukemia research (7832ms) What is leukemia? Studies 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (Studies, worldwide have found, excess child leukemia) -> Studies (7832ms) What is leukemia? MOZ gene 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (MOZ gene, has been found in, acute myeloid leukemia) -> MOZ gene (7928ms) What is leukemia? Mr. Beaumont 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (Mr. Beaumont, was found to have, leukemia) -> Mr. Beaumont (7928ms) What is leukemia? No association 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (No association, has been found in, acute myeloblastic leukemia) -> No association (7832ms) What is leukemia? Texas study 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (Texas study, found a possible link between, childhood leukemia) -> Texas study (7889ms) What is leukemia? IDH mutations 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (IDH mutations, are also found in, some forms of leukemia) -> IDH mutations (7851ms) What is leukemia? a cellular component 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (a cellular component, found in, hairy cell leukemia) -> a cellular component (7928ms) What is leukemia? AF9 genes 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (AF9 genes, is mainly found in, acute myeloid leukemia) -> AF9 genes (7832ms) What is leukemia? benzene 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (benzene, have found an increased risk of, both leukemia) -> benzene (7832ms) What is leukemia? a local family 1.777777777768 What is leukemia? -> $x: ($x, deal with, leukemia) -> (a local family, is dealing with, Leukemia) -> a local family (7889ms) What is leukemia? A team approach 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (A team approach, is necessary to find a cure for, leukemia) -> A team approach (7889ms) What is leukemia? a molecule 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (a molecule, found on, some B-cell leukemias) -> a molecule (7946ms) What is leukemia? 30 to 100 % 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (30 to 100 %, were found for, leukemia and cancers) -> 30 to 100 % (7909ms) What is leukemia? mercury 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (mercury, are found to cause, leukemia) -> mercury (7909ms) What is leukemia? You?ll 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (You?ll, find various symptoms of, leukemia) -> You?ll (7832ms) What is leukemia? RUNX1 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (RUNX1, are frequently found in, human leukemias) -> RUNX1 (7909ms) What is leukemia? the flt3 gene 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (the flt3 gene, found in, acute myeloid leukemia) -> the flt3 gene (7812ms) What is leukemia? the Abl gene 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (the Abl gene, can be found in, chronic myeloid leukemia patients) -> the Abl gene (7871ms) What is leukemia? a study 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (a study, found a higher incidence of, leukemia and liver tumors) -> a study (7889ms) What is leukemia? Medicine study 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (Medicine study, found, acute leukemia) -> Medicine study (7889ms) What is leukemia? BC V6J 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (BC V6J, Find out about, The Leukemia & Lymphoma Society) -> BC V6J (7889ms) What is leukemia? several studies 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (several studies, have found a higher incidence of, leukemia) -> several studies (7928ms) What is leukemia? Kinlen 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (Kinlen, found a cluster of, leukemias) -> Kinlen (7889ms) What is leukemia? Savitz 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (Savitz, found, leukemia , lymphoma and brain tumors) -> Savitz (7909ms) What is leukemia? One study 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (One study, found rates of, childhood leukemia) -> One study (7928ms) What is leukemia? Cohen 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (Cohen, was found to have, hairy cell leukemia) -> Cohen (7871ms) What is leukemia? the hopes 1.777777777768 What is leukemia? -> $x: ($x, found, leukemia) -> (the hopes, we?ll find a cure for, Feline Leukemia) -> the hopes (7909ms) What is leukemia? Astragalus species 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (Astragalus species, are used to treat, leukemia) -> Astragalus species (8208ms) What is leukemia? bone marrow cancer 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (bone marrow cancer, is similar to, leukemia) -> bone marrow cancer (8147ms) What is leukemia? Pediatric brain tumors 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (Pediatric brain tumors, are second only to, leukemia) -> Pediatric brain tumors (8049ms) What is leukemia? the human system 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (the human system, is known to cause, leukemia) -> the human system (8066ms) What is leukemia? neutrophils 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (neutrophils, can be caused by, leukemia) -> neutrophils (8341ms) What is leukemia? Diseases 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (Diseases, are related to, leukemia) -> Diseases (8033ms) What is leukemia? a similar viral etiology 1.777777777767 What is leukemia? -> $x: ($x, be in, leukemia) -> (a similar viral etiology, has been sought in, human leukemias) -> a similar viral etiology (8082ms) What is leukemia? the diseases 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (the diseases, are, leukemia) -> the diseases (8265ms) What is leukemia? interference 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (interference, can be used for, leukemia) -> interference (8306ms) What is leukemia? Unmatched bone marrow 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (Unmatched bone marrow, can treat, leukemia) -> Unmatched bone marrow (8147ms) What is leukemia? the condition 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (the condition, can be caused by, leukemia) -> the condition (8251ms) What is leukemia? Radioactive thorium 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (Radioactive thorium, is known to cause, leukemia) -> Radioactive thorium (8330ms) What is leukemia? effective chemotherapy 1.777777777767 What is leukemia? -> $x: ($x, be in, leukemia) -> (effective chemotherapy, was first employed in, acute leukemia) -> effective chemotherapy (8340ms) What is leukemia? such radiation 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (such radiation, has been linked to, leukemia) -> such radiation (8341ms) What is leukemia? The earliest 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (The earliest, are, leukemia) -> The earliest (8353ms) What is leukemia? The seminal calicium channel hypercapnia PERIACTIN 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (The seminal calicium channel hypercapnia PERIACTIN, is, leukemia) -> The seminal calicium channel hypercapnia PERIACTIN (8082ms) What is leukemia? increased lymphocytes 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (increased lymphocytes, is, leukemia) -> increased lymphocytes (8279ms) What is leukemia? downwind areas 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (downwind areas, were beginning to develop, leukemia) -> downwind areas (8293ms) What is leukemia? tissues 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (tissues, are, leukemias) -> tissues (8208ms) What is leukemia? a factor 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (a factor, can get, leukemia) -> a factor (8293ms) What is leukemia? Chantel Johnson 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (Chantel Johnson, was discovered to have, leukemia) -> Chantel Johnson (8237ms) What is leukemia? Kevin McGuire 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (Kevin McGuire, is battling, leukemia) -> Kevin McGuire (8341ms) What is leukemia? Leukemic ophthalmopathy 1.777777777767 What is leukemia? -> $x: ($x, be in, leukemia) -> (Leukemic ophthalmopathy, was more prevalent in, chronic leukemia) -> Leukemic ophthalmopathy (8049ms) What is leukemia? Seattle WA 98105 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (Seattle WA 98105, Is, Leukemia) -> Seattle WA 98105 (8279ms) What is leukemia? cell therapies 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (cell therapies, are used to treat, leukemia) -> cell therapies (8178ms) What is leukemia? a mother 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (a mother, was determined to beat, leukemia) -> a mother (8237ms) What is leukemia? 2005 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (2005, were, leukemias) -> 2005 (7981ms) What is leukemia? GCSF receptor 1.777777777767 What is leukemia? -> $x: ($x, be in, leukemia) -> (GCSF receptor, are implicated in, a leukemia) -> GCSF receptor (8222ms) What is leukemia? Cats 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (Cats, are, leukemia) -> Cats (8208ms) What is leukemia? Findings 1.777777777767 What is leukemia? -> $x: ($x, be in, leukemia) -> (Findings, are published online in, Leukemia Research) -> Findings (8306ms) What is leukemia? aplastic anemia 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (aplastic anemia, can lead to, leukemia) -> aplastic anemia (8033ms) What is leukemia? a complete blood cell count 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (a complete blood cell count, can be associated with, leukemia) -> a complete blood cell count (8330ms) What is leukemia? the first hit 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (the first hit, was, leukemia) -> the first hit (8319ms) What is leukemia? the story 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (the story, is, leukemia) -> the story (7946ms) What is leukemia? Stem cell transplant therapy 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (Stem cell transplant therapy, is used to treat, leukemias) -> Stem cell transplant therapy (8131ms) What is leukemia? Immediate treatment 1.777777777767 What is leukemia? -> $x: ($x, be in, leukemia) -> (Immediate treatment, is required in, acute leukemia) -> Immediate treatment (8293ms) What is leukemia? chemotherapy 1.777777777767 What is leukemia? -> $x: ($x, be in, leukemia) -> (chemotherapy, is particularly important in, pediatric leukemia) -> chemotherapy (8319ms) What is leukemia? Neutrophils 1.777777777767 What is leukemia? -> $x: ($x, be in, leukemia) -> (Neutrophils, are also increased in, granulocytic leukemia) -> Neutrophils (8330ms) What is leukemia? red blood cells 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (red blood cells, eventually can cause, leukemia) -> red blood cells (8115ms) What is leukemia? the red blood cells 1.777777777767 What is leukemia? -> $x: ($x, be in, leukemia) -> (the red blood cells, are abnormally low in, leukemia patients) -> the red blood cells (8293ms) What is leukemia? Radiation 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (Radiation, can induce, leukemias) -> Radiation (8265ms) What is leukemia? The best example 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (The best example, is, leukemia) -> The best example (8131ms) What is leukemia? The other 44,000 cases 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (The other 44,000 cases, are, leukemia) -> The other 44,000 cases (8279ms) What is leukemia? the Leukemia and Lymphoma Society 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (the Leukemia and Lymphoma Society, is to cure, leukemia) -> the Leukemia and Lymphoma Society (8098ms) What is leukemia? interactions 1.777777777767 What is leukemia? -> $x: (leukemia, be about, $x) -> (leukemia, is brought about by, interactions) -> interactions (8237ms) What is leukemia? Causes & Treatment Search 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (Causes & Treatment Search, Is, Leukemia) -> Causes & Treatment Search (8147ms) What is leukemia? the organism 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (the organism, can also be affected by, leukemia) -> the organism (8251ms) What is leukemia? allergic-type reactions 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (allergic-type reactions, can possibly lead to, leukemia) -> allergic-type reactions (8330ms) What is leukemia? Normal and leukemic hematopoiesis 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (Normal and leukemic hematopoiesis, Are, leukemias) -> Normal and leukemic hematopoiesis (8340ms) What is leukemia? a lot 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (a lot, is, leukemia) -> a lot (8193ms) What is leukemia? 0 to 14 years 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (0 to 14 years, are, leukemia) -> 0 to 14 years (8178ms) What is leukemia? the antioxidant power 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (the antioxidant power, can defeat, leukemia) -> the antioxidant power (8237ms) What is leukemia? tetrachloroethylene 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (tetrachloroethylene, is, leukemia) -> tetrachloroethylene (8330ms) What is leukemia? underlying disease 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (underlying disease, is, leukemia) -> underlying disease (8049ms) What is leukemia? Chronic Lymphocytic Leukemia 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (Chronic Lymphocytic Leukemia, is, leukemia) -> Chronic Lymphocytic Leukemia (8098ms) What is leukemia? blood cancer 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (blood cancer, is, Leukemia) -> blood cancer (8265ms) What is leukemia? the illnesses 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (the illnesses, are, leukemia) -> the illnesses (8016ms) What is leukemia? seven cases 1.777777777767 What is leukemia? -> $x: (leukemia, be about, $x) -> (leukemia, is about, seven cases) -> seven cases (7981ms) What is leukemia? Others general types 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (Others general types, are, leukemia) -> Others general types (8049ms) What is leukemia? discussion/written assessment 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (discussion/written assessment, is, leukemia) -> discussion/written assessment (7999ms) What is leukemia? regular social interaction 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (regular social interaction, can reduce the risk of, leukemia) -> regular social interaction (8098ms) What is leukemia? Cord blood stem cells 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (Cord blood stem cells, can be used to treat, leukemia) -> Cord blood stem cells (8279ms) What is leukemia? Donations 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (Donations, may be made to, Leukemia) -> Donations (8330ms) What is leukemia? C/EBP-alpha expression 1.777777777767 What is leukemia? -> $x: ($x, be in, leukemia) -> (C/EBP-alpha expression, is low in, leukemia cells) -> C/EBP-alpha expression (8049ms) What is leukemia? ?Anyone 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (?Anyone, can be affected by, leukemia) -> ?Anyone (8082ms) What is leukemia? the N -ras 1.777777777767 What is leukemia? -> $x: ($x, be in, leukemia) -> (the N -ras, was strictly expressed in, acute leukemia) -> the N -ras (8341ms) What is leukemia? chromosome 22 1.777777777767 What is leukemia? -> $x: ($x, be in, leukemia) -> (chromosome 22, are implicated in, certain leukemias) -> chromosome 22 (8222ms) What is leukemia? inhaled DU 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (inhaled DU, can ultimately be responsible for, leukemia) -> inhaled DU (8341ms) What is leukemia? Leukemias 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (Leukemias, is, leukemia) -> Leukemias (8306ms) What is leukemia? the pursuit 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (the pursuit, can help fight, leukemia) -> the pursuit (8237ms) What is leukemia? a young boy 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (a young boy, is fighting, leukemia) -> a young boy (8341ms) What is leukemia? the patient 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (the patient, can report a history of, leukemia) -> the patient (8251ms) What is leukemia? The possibilities 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (The possibilities, are, leukemia) -> The possibilities (8162ms) What is leukemia? The most common cancer in children 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (The most common cancer in children, is, leukemia) -> The most common cancer in children (8319ms) What is leukemia? Canada?s mission 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (Canada?s mission, is to cure, leukemia) -> Canada?s mission (8049ms) What is leukemia? EMF radiation 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (EMF radiation, can increase your risk of, leukemia) -> EMF radiation (8306ms) What is leukemia? Chronic Myelogenous Leukemia 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (Chronic Myelogenous Leukemia, is, leukemia) -> Chronic Myelogenous Leukemia (8222ms) What is leukemia? 5 , 700 Americans 1.777777777767 What is leukemia? -> $x: (leukemia, be about, $x) -> (lymphocytic leukemia, is diagnosed in about, 5 , 700 Americans) -> 5 , 700 Americans (8033ms) What is leukemia? mice 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (mice, is an animal that can develop, Leukemia) -> mice (8319ms) What is leukemia? Bone pain 1.777777777767 What is leukemia? -> $x: ($x, be in, leukemia) -> (Bone pain, is common in, acute leukemia) -> Bone pain (8065ms) What is leukemia? cord blood 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (cord blood, can be used to treat, leukemia) -> cord blood (8193ms) What is leukemia? Donated cord blood 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (Donated cord blood, can be used to treat, leukemia) -> Donated cord blood (7981ms) What is leukemia? Bone marrow biopsy 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (Bone marrow biopsy, is used to diagnose, leukemia) -> Bone marrow biopsy (8353ms) What is leukemia? Tumor cells 1.777777777767 What is leukemia? -> $x: ($x, be in, leukemia) -> (Tumor cells, are positive in, monocytic leukemia) -> Tumor cells (7981ms) What is leukemia? FeLV 1.777777777767 What is leukemia? -> $x: ($x, be in, leukemia) -> (FeLV, is involved in, these leukemias) -> FeLV (8033ms) What is leukemia? The Leukemia Lymphoma Society?s mission 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (The Leukemia Lymphoma Society?s mission, is to cure, leukemia) -> The Leukemia Lymphoma Society?s mission (8131ms) What is leukemia? a toxic chemical 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (a toxic chemical, has been linked to, leukemia) -> a toxic chemical (8066ms) What is leukemia? The cause 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (The cause, was, leukemia) -> The cause (8066ms) What is leukemia? the diagnosis 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (the diagnosis, was, leukemia) -> the diagnosis (8306ms) What is leukemia? Pathologists 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (Pathologists, can distinguish various types of, leukemia) -> Pathologists (7999ms) What is leukemia? The first chemotherapy 1.777777777767 What is leukemia? -> $x: ($x, be in, leukemia) -> (The first chemotherapy, was developed in, leukemia patients) -> The first chemotherapy (8066ms) What is leukemia? thiarabine 1.777777777767 What is leukemia? -> $x: ($x, be in, leukemia) -> (thiarabine, is widely used in treating, leukemia patients) -> thiarabine (8115ms) What is leukemia? NOTCH1 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (NOTCH1, can eradicate, leukemia) -> NOTCH1 (8178ms) What is leukemia? the bones and lungs?and 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (the bones and lungs?and, can cause cancer of, leukemia) -> the bones and lungs?and (8279ms) What is leukemia? bone cancer 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (bone cancer, is, leukemia) -> bone cancer (8082ms) What is leukemia? pesticides 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (pesticides, have been linked to, leukemia) -> pesticides (7981ms) What is leukemia? Wilson 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (Wilson, was being treated for, leukemia) -> Wilson (8340ms) What is leukemia? Daunorubicin 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (Daunorubicin, is used to treat, leukemia) -> Daunorubicin (7946ms) What is leukemia? Memorial contributions 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (Memorial contributions, may be made to, Leukemia) -> Memorial contributions (8208ms) What is leukemia? RA 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (RA, can help treat, leukemia) -> RA (7964ms) What is leukemia? the LRF 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (the LRF, is to conquer, leukemia) -> the LRF (7964ms) What is leukemia? HERG 1.777777777767 What is leukemia? -> $x: ($x, be in, leukemia) -> (HERG, is upregulated in, leukemia cells) -> HERG (8193ms) What is leukemia? polyploids 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (polyploids, are linked to, leukemia) -> polyploids (8330ms) What is leukemia? 2. What 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (2. What, is, leukemia) -> 2. What (8033ms) What is leukemia? petichiae 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (petichiae, can be caused by, leukemia) -> petichiae (8354ms) What is leukemia? similar cells 1.777777777767 What is leukemia? -> $x: ($x, be in, leukemia) -> (similar cells, have been identified in, human leukemia) -> similar cells (8066ms) What is leukemia? cytopenia 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (cytopenia, is related to, leukemia) -> cytopenia (8115ms) What is leukemia? Chemotherapy 1.777777777767 What is leukemia? -> $x: ($x, influence, leukemia) -> (Chemotherapy, may influence, leukemia relapse Investigators) -> Chemotherapy (8162ms) What is leukemia? private 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (private, is, Leukemia) -> private (8193ms) What is leukemia? small chemical exposures 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (small chemical exposures, are linked to, leukemia) -> small chemical exposures (8251ms) What is leukemia? LLS?s mission 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (LLS?s mission, is to cure, leukemia) -> LLS?s mission (8354ms) What is leukemia? utero oncogene rearrangements 1.777777777767 What is leukemia? -> $x: ($x, be in, leukemia) -> (utero oncogene rearrangements, are reported in, infant leukemias) -> utero oncogene rearrangements (8208ms) What is leukemia? The therapy 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (The therapy, is designed to treat, leukemia) -> The therapy (8279ms) What is leukemia? one such compound 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (one such compound, is used to treat, leukemia) -> one such compound (8098ms) What is leukemia? 29,000 adults 1.777777777767 What is leukemia? -> $x: (leukemia, be about, $x) -> (leukemia, is diagnosed in about, 29,000 adults) -> 29,000 adults (8193ms) What is leukemia? Project ELF 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (Project ELF, have been linked to, leukemia) -> Project ELF (8330ms) What is leukemia? Acute Lymphocytic Leukemia 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (Acute Lymphocytic Leukemia, is, leukemia) -> Acute Lymphocytic Leukemia (8082ms) What is leukemia? PCP 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (PCP, were, leukemia) -> PCP (8131ms) What is leukemia? ACUTE LEUKEMIA TREATMENT INFORMATION 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (ACUTE LEUKEMIA TREATMENT INFORMATION, is, Leukemia) -> ACUTE LEUKEMIA TREATMENT INFORMATION (7981ms) What is leukemia? The Leukemia & Lymphoma Society?s mission 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (The Leukemia & Lymphoma Society?s mission, is to cure, leukemia) -> The Leukemia & Lymphoma Society?s mission (8178ms) What is leukemia? Lymphoma 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (Lymphoma, is closely related to, leukemia) -> Lymphoma (8131ms) What is leukemia? interested Rosenberg 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (interested Rosenberg, was, leukemia) -> interested Rosenberg (8115ms) What is leukemia? the blood 1.777777777767 What is leukemia? -> $x: ($x, be in, leukemia) -> (the blood, were higher in, leukemia patients) -> the blood (8208ms) What is leukemia? The latest findings 1.777777777767 What is leukemia? -> $x: ($x, be in, leukemia) -> (The latest findings, are published online in, Leukemia Research) -> The latest findings (8292ms) What is leukemia? The most common childhood cancers 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (The most common childhood cancers, are, leukemia) -> The most common childhood cancers (8208ms) What is leukemia? ulcers 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (ulcers, is said to cure, leukemia) -> ulcers (8115ms) What is leukemia? The cause of death 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (The cause of death, was, Leukemia) -> The cause of death (8065ms) What is leukemia? An unexplained bruise 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (An unexplained bruise, can be symptom of, leukemia) -> An unexplained bruise (7946ms) What is leukemia? cancer causing chemical 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (cancer causing chemical, is linked to, leukemia) -> cancer causing chemical (8016ms) What is leukemia? Platelets 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (Platelets, can help patients with, leukemia) -> Platelets (8033ms) What is leukemia? 99 % sure 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (99 % sure, is, leukemia) -> 99 % sure (8293ms) What is leukemia? light bulbs 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (light bulbs, has been connected to, leukemia) -> light bulbs (8147ms) What is leukemia? 38000 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (38000, can be used for, leukemia) -> 38000 (8293ms) What is leukemia? ?Steroids 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (?Steroids, are used to treat, leukemia) -> ?Steroids (8237ms) What is leukemia? 15 days 1.777777777767 What is leukemia? -> $x: (leukemia, be about, $x) -> (leukemia, is about, 15 days) -> 15 days (8098ms) What is leukemia? RF 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (RF, can lead to, leukemia) -> RF (8193ms) What is leukemia? free radicals 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (free radicals, can lead to, leukemia) -> free radicals (7964ms) What is leukemia? 30 % 1.777777777767 What is leukemia? -> $x: (leukemia, be about, $x) -> (cancers and leukemias, were about, 30 %) -> 30 % (7999ms) What is leukemia? Overview Our mission 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (Overview Our mission, is to cure, leukemia) -> Overview Our mission (7946ms) What is leukemia? The rosy periwinkle plant 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (The rosy periwinkle plant, is used to cure, leukemia) -> The rosy periwinkle plant (8066ms) What is leukemia? Chicago 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (Chicago, is, leukemia) -> Chicago (8193ms) What is leukemia? acute cases 1.777777777767 What is leukemia? -> $x: ($x, be in, leukemia) -> (acute cases, is used in, chronic leukemia) -> acute cases (8066ms) What is leukemia? flipping burgers 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (flipping burgers, can cure, leukemia) -> flipping burgers (8049ms) What is leukemia? childhood cancers 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (childhood cancers, are, leukemias) -> childhood cancers (8162ms) What is leukemia? the rosy periwinkle 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (the rosy periwinkle, is used to cure, leukemia) -> the rosy periwinkle (8193ms) What is leukemia? Paddington DC ? Love 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (Paddington DC ? Love, is, Leukemia) -> Paddington DC ? Love (8049ms) What is leukemia? Benzene exposure 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (Benzene exposure, has been linked to, leukemia) -> Benzene exposure (8293ms) What is leukemia? The anemia 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (The anemia, was, leukemia) -> The anemia (8251ms) What is leukemia? Key evidence-based links 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (Key evidence-based links, is, leukemia) -> Key evidence-based links (7999ms) What is leukemia? Several tests 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (Several tests, can be performed to detect, Leukemia) -> Several tests (8065ms) What is leukemia? 700 Americans 1.777777777767 What is leukemia? -> $x: (leukemia, be about, $x) -> (Hairy cell leukemia, is diagnosed in about, 700 Americans) -> 700 Americans (8279ms) What is leukemia? Kevin 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (Kevin, is battling, leukemia) -> Kevin (8353ms) What is leukemia? information 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (information, is, leukemia) -> information (8306ms) What is leukemia? The Leukemia Research Foundation 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (The Leukemia Research Foundation, is to conquer, leukemia) -> The Leukemia Research Foundation (7964ms) What is leukemia? a disorder 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (a disorder, can lead to, leukemia) -> a disorder (7964ms) What is leukemia? the circulation or bone marrow 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (the circulation or bone marrow, is, Leukemia) -> the circulation or bone marrow (8330ms) What is leukemia? The most common uses 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (The most common uses, are, leukemia) -> The most common uses (8147ms) What is leukemia? the new kitty 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (the new kitty, is, leukemia) -> the new kitty (8340ms) What is leukemia? Cyclophosphamide 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (Cyclophosphamide, is used to treat, leukemias) -> Cyclophosphamide (8082ms) What is leukemia? 527 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (527, were, leukemias) -> 527 (8193ms) What is leukemia? Hox products 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (Hox products, can induce, leukemia) -> Hox products (8033ms) What is leukemia? 90 percent 1.777777777767 What is leukemia? -> $x: (leukemia, be about, $x) -> (most other childhood leukemias, is about, 90 percent) -> 90 percent (8222ms) What is leukemia? any age 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (any age, can get, leukemia) -> any age (8082ms) What is leukemia? Chemotherapy and radiation 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (Chemotherapy and radiation, can hold this form of, leukemia) -> Chemotherapy and radiation (8265ms) What is leukemia? IL-2 1.777777777767 What is leukemia? -> $x: ($x, be in, leukemia) -> (IL-2, is overexpressed in, leukemia cells) -> IL-2 (8265ms) What is leukemia? 5 , 300 Americans 1.777777777767 What is leukemia? -> $x: (leukemia, be about, $x) -> (lymphocytic leukemia, is diagnosed in about, 5 , 300 Americans) -> 5 , 300 Americans (8098ms) What is leukemia? Certain genetic conditions 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (Certain genetic conditions, can increase the risk for, leukemia) -> Certain genetic conditions (8131ms) What is leukemia? ? Formaldehyde 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (? Formaldehyde, has been linked to, leukemia) -> ? Formaldehyde (8131ms) What is leukemia? Certain mutations 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (Certain mutations, can trigger, leukemia) -> Certain mutations (8049ms) What is leukemia? solvent exposure 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (solvent exposure, are, leukemia) -> solvent exposure (8306ms) What is leukemia? Malaysia | Beacon Hospital 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (Malaysia | Beacon Hospital, Is, Leukemia) -> Malaysia | Beacon Hospital (8178ms) What is leukemia? WT1 1.777777777767 What is leukemia? -> $x: ($x, be in, leukemia) -> (WT1, is expressed in, most leukemias) -> WT1 (8115ms) What is leukemia? Memorials 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (Memorials, may be made to, Leukemia) -> Memorials (8098ms) What is leukemia? certain chemicals 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (certain chemicals, can also cause, leukemia) -> certain chemicals (8293ms) What is leukemia? Ethoxyquin 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (Ethoxyquin, has been linked to, leukemia) -> Ethoxyquin (8178ms) What is leukemia? blood tumor 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (blood tumor, is, Leukemia) -> blood tumor (8016ms) What is leukemia? CD22 antigen 1.777777777767 What is leukemia? -> $x: ($x, be in, leukemia) -> (CD22 antigen, is weakly expressed in, myeloid leukemias) -> CD22 antigen (8016ms) What is leukemia? Asim 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (Asim, turned out to be, leukemia) -> Asim (7964ms) What is leukemia? About one-third of childhood cancers 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (About one-third of childhood cancers, are, leukemias) -> About one-third of childhood cancers (7999ms) What is leukemia? myelodysplastic syndrome 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (myelodysplastic syndrome, can be a precursor to, leukemia) -> myelodysplastic syndrome (8330ms) What is leukemia? Viagra 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (Viagra, are, leukemia) -> Viagra (8293ms) What is leukemia? pediatric cancer 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (pediatric cancer, are, leukemia) -> pediatric cancer (8082ms) What is leukemia? 3-4 1.777777777767 What is leukemia? -> $x: (leukemia, be about, $x) -> (the childhood leukemia risk, appears to be about, 3-4) -> 3-4 (7981ms) What is leukemia? 4 % 1.777777777767 What is leukemia? -> $x: (leukemia, be about, $x) -> (acute lymphoblastic leukemia, was about, 4 %) -> 4 % (8066ms) What is leukemia? little Jaya Jhabbar 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (little Jaya Jhabbar, was battling, leukemia) -> little Jaya Jhabbar (8178ms) What is leukemia? A carcinogenic chemical 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (A carcinogenic chemical, was traced to, leukemia) -> A carcinogenic chemical (8353ms) What is leukemia? The Word 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (The Word, is, Leukemia) -> The Word (8163ms) What is leukemia? more than 25 % marrow blasts 1.777777777767 What is leukemia? -> $x: ($x, classify as, leukemia) -> (more than 25 % marrow blasts, are classified as having, leukemia) -> more than 25 % marrow blasts (8163ms) What is leukemia? growth factors 1.777777777767 What is leukemia? -> $x: ($x, be in, leukemia) -> (growth factors, are deleted in, myeloid leukemias) -> growth factors (8251ms) What is leukemia? the cancer 1.777777777767 What is leukemia? -> $x: ($x, classify as, leukemia) -> (the cancer, then is classified as, acute leukemia) -> the cancer (8178ms) What is leukemia? Limited activity 1.777777777767 What is leukemia? -> $x: ($x, be in, leukemia) -> (Limited activity, has been noted in, acute leukemias) -> Limited activity (8306ms) What is leukemia? Methotrexate 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (Methotrexate, is needed to fight, leukemia) -> Methotrexate (7946ms) What is leukemia? pregnancy 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (pregnancy, can lower the risk of, leukemia) -> pregnancy (8279ms) What is leukemia? A blood test 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (A blood test, can suggest, leukemia) -> A blood test (8251ms) What is leukemia? The new differential 1.777777777767 What is leukemia? -> $x: ($x, consist of, leukemia) -> (The new differential, consists of, leukemia) -> The new differential (8115ms) What is leukemia? the principal neoplasms 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (the principal neoplasms, were, leukemia) -> the principal neoplasms (8193ms) What is leukemia? aberrant transcriptional activity 1.777777777767 What is leukemia? -> $x: ($x, be in, leukemia) -> (aberrant transcriptional activity, are common in, acute leukemia) -> aberrant transcriptional activity (8115ms) What is leukemia? the young girl 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (the young girl, was battling, leukemia) -> the young girl (8098ms) What is leukemia? Dr. Berman 1.777777777767 What is leukemia? -> $x: ($x, be in, leukemia) -> (Dr. Berman, is primarily interested in, Pediatric Leukemia) -> Dr. Berman (8016ms) What is leukemia? 16689 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (16689, is, Leukemia) -> 16689 (8147ms) What is leukemia? Leukemia Children 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (Leukemia Children, can have other kinds of, leukemia) -> Leukemia Children (8016ms) What is leukemia? the most common cancers 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (the most common cancers, are, leukemias) -> the most common cancers (8082ms) What is leukemia? James 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (James, was lost to, leukemia) -> James (7946ms) What is leukemia? affected individuals 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (affected individuals, can develop, leukemia) -> affected individuals (8115ms) What is leukemia? Acute Myelogenous Leukemia 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (Acute Myelogenous Leukemia, is, leukemia) -> Acute Myelogenous Leukemia (8306ms) What is leukemia? elevated levels 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (elevated levels, can increase the risk of, leukemia) -> elevated levels (8293ms) What is leukemia? an organization 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (an organization, is to cure, leukemia) -> an organization (8082ms) What is leukemia? cells 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (cells, are, leukemia) -> cells (8306ms) What is leukemia? minor or unnoticed injuries 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (minor or unnoticed injuries, can be a sign of, leukemia) -> minor or unnoticed injuries (7946ms) What is leukemia? Hydroxyurea 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (Hydroxyurea, is used to treat, leukemia) -> Hydroxyurea (8222ms) What is leukemia? The Foundation?s mission 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (The Foundation?s mission, is to conquer, leukemia) -> The Foundation?s mission (7946ms) What is leukemia? a rare bone marrow disorder 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (a rare bone marrow disorder, can lead to, leukemia) -> a rare bone marrow disorder (8049ms) What is leukemia? McGuire 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (McGuire, is battling, Leukemia) -> McGuire (8147ms) What is leukemia? Northbrook 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (Northbrook, was lost to, leukemia) -> Northbrook (8222ms) What is leukemia? The c-myc expression level 1.777777777767 What is leukemia? -> $x: ($x, be in, leukemia) -> (The c-myc expression level, is higher in, acute leukemia) -> The c-myc expression level (8319ms) What is leukemia? a donor 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (a donor, are used to treat, leukemia) -> a donor (8131ms) What is leukemia? long-term exposure 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (long-term exposure, has been linked to, leukemia) -> long-term exposure (8147ms) What is leukemia? Stem cells 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (Stem cells, are used to treat, leukemia) -> Stem cells (8251ms) What is leukemia? particular 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (particular, is, leukemia) -> particular (8033ms) What is leukemia? Math 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (Math, can help cure, leukemia) -> Math (7946ms) What is leukemia? pesticide exposure 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (pesticide exposure, are, leukemia) -> pesticide exposure (7999ms) What is leukemia? sideroblastic anemia 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (sideroblastic anemia, can even progress to, leukemia) -> sideroblastic anemia (7946ms) What is leukemia? the AHS 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (the AHS, have been linked to, leukemia) -> the AHS (8016ms) What is leukemia? a pathologist 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (a pathologist, can diagnose, leukemia) -> a pathologist (8098ms) What is leukemia? cancer 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (cancer, are, Leukemia) -> cancer (8222ms) What is leukemia? human and bovine retroviruses 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (human and bovine retroviruses, were believed to cause, leukemia) -> human and bovine retroviruses (8293ms) What is leukemia? Benzene-induced Leukemia Benzene 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (Benzene-induced Leukemia Benzene, is known to cause, leukemia) -> Benzene-induced Leukemia Benzene (7946ms) What is leukemia? a patient 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (a patient, can be born susceptible to, Leukemia) -> a patient (8033ms) What is leukemia? acute leukemia 1.777777777767 What is leukemia? -> $x: ($x, be in, leukemia) -> (acute leukemia, was most common in, promyelocytic leukemia) -> acute leukemia (8193ms) What is leukemia? More About 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (More About, Is, Leukemia ?) -> More About (7999ms) What is leukemia? a blood disorder 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (a blood disorder, can lead to, leukemia) -> a blood disorder (8237ms) What is leukemia? arsenic trioxide 1.777777777767 What is leukemia? -> $x: ($x, be in, leukemia) -> (arsenic trioxide, was being used in, myelocytic leukemia) -> arsenic trioxide (8208ms) What is leukemia? a friend 1.777777777767 What is leukemia? -> $x: (leukemia, be about, $x) -> (leukemia, is this about, a friend) -> a friend (8131ms) What is leukemia? Generic Purinethol 50 mg Purinethol 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (Generic Purinethol 50 mg Purinethol, is used to treat, leukemia) -> Generic Purinethol 50 mg Purinethol (8341ms) What is leukemia? NHL 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (NHL, is considered similar to, leukemia) -> NHL (8330ms) What is leukemia? Dr. Mauro?s clinical focus 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (Dr. Mauro?s clinical focus, is, leukemia) -> Dr. Mauro?s clinical focus (8251ms) What is leukemia? The preliminary diagnosis 1.777777777767 What is leukemia? -> $x: ($x, be be, leukemia) -> (The preliminary diagnosis, was, leukemia) -> The preliminary diagnosis (8251ms) What is leukemia? bone marrow stem cells 1.777777777767 What is leukemia? -> $x: ($x, be to, leukemia) -> (bone marrow stem cells, are used to treat, leukemia) -> bone marrow stem cells (8193ms) What is leukemia? Radiation therapy 1.777777777767 What is leukemia? -> $x: ($x, can, leukemia) -> (Radiation therapy, can increase the risk of, leukemia) -> Radiation therapy (8293ms) What is leukemia? Wu L Retinoic acid 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (Wu L Retinoic acid, induces, leukemia cell) -> Wu L Retinoic acid (8402ms) What is leukemia? Imatinib 1.666666666657 What is leukemia? -> $x: ($x, be use of, leukemia) -> (Imatinib, is commonly used to treat certain types of, leukemia) -> Imatinib (8438ms) What is leukemia? Three patients on chronic lithium therapy 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (Three patients on chronic lithium therapy, developed, leukemia) -> Three patients on chronic lithium therapy (8412ms) What is leukemia? Westbrook 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (Westbrook, developed, Leukemia) -> Westbrook (8364ms) What is leukemia? five children 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (five children, developed, leukemia) -> five children (8373ms) What is leukemia? transforms 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (transforms, induces, leukemia) -> transforms (8353ms) What is leukemia? Increased Trib1 and Trib2 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (Increased Trib1 and Trib2, induces, acute myeloid leukemia) -> Increased Trib1 and Trib2 (8373ms) What is leukemia? a French study 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (a French study, develops, leukemia) -> a French study (8429ms) What is leukemia? four patients 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (four patients, developed, leukemia) -> four patients (8412ms) What is leukemia? degradation 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (degradation, induce, acute myelogenous leukemia) -> degradation (8393ms) What is leukemia? the suburbs 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (the suburbs, developed, leukemia) -> the suburbs (8402ms) What is leukemia? Vitamin K2 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (Vitamin K2, induces simultaneously in, leukemia cells) -> Vitamin K2 (8383ms) What is leukemia? A little lad named Kenny 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (A little lad named Kenny, developed, leukemia) -> A little lad named Kenny (8373ms) What is leukemia? the French boy 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (the French boy, developing, leukemia) -> the French boy (8438ms) What is leukemia? an individual 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (an individual, develops, leukemia) -> an individual (8412ms) What is leukemia? Several chronic leukemia viruses 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (Several chronic leukemia viruses, are known to induce, leukemia) -> Several chronic leukemia viruses (8383ms) What is leukemia? murine bone marrow 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (murine bone marrow, induces, myeloid leukemia) -> murine bone marrow (8430ms) What is leukemia? the Abelson virus 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (the Abelson virus, induced, leukemia system) -> the Abelson virus (8438ms) What is leukemia? low EMF levels 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (low EMF levels, develop, leukemias) -> low EMF levels (8373ms) What is leukemia? the monkeys 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (the monkeys, developed, leukemia) -> the monkeys (8364ms) What is leukemia? Patti Durante 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (Patti Durante, developed, leukemia) -> Patti Durante (8429ms) What is leukemia? C-Myc 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (C-Myc, rapidly induces, acute myeloid leukemia) -> C-Myc (8393ms) What is leukemia? nearly one third 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (nearly one third, develop, leukemia) -> nearly one third (8429ms) What is leukemia? 15259066 Honokiol 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (15259066 Honokiol, induces apoptosis in, human lymphoid leukemia) -> 15259066 Honokiol (8393ms) What is leukemia? 40 donors 1.666666666657 What is leukemia? -> $x: ($x, represent, leukemia) -> (40 donors, represents the needs of, five leukemia patients) -> 40 donors (8412ms) What is leukemia? the American ambassador 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (the American ambassador, developed, leukemia) -> the American ambassador (8412ms) What is leukemia? a young Japanese girl 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (a young Japanese girl, developed, leukemia) -> a young Japanese girl (8421ms) What is leukemia? Sadako Sasaki 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (Sadako Sasaki, developed, leukemia) -> Sadako Sasaki (8402ms) What is leukemia? Sydney 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (Sydney, develops, leukemia) -> Sydney (8364ms) What is leukemia? several of the children 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (several of the children, developed, leukemia) -> several of the children (8364ms) What is leukemia? Hirobe T ATP 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (Hirobe T ATP, induces, leukemia inhibitory factor mRNA) -> Hirobe T ATP (8364ms) What is leukemia? a Japanese girl 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (a Japanese girl, developed, leukemia) -> a Japanese girl (8421ms) What is leukemia? GLI 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (GLI, induces apoptosis in, chronic lymphocytic leukemia cells) -> GLI (8421ms) What is leukemia? Such viremic mice 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (Such viremic mice, develop, leukemias) -> Such viremic mice (8402ms) What is leukemia? boswellic acid acetate 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (boswellic acid acetate, failed to induce, erythroid leukemia) -> boswellic acid acetate (8373ms) What is leukemia? a loved one 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (a loved one, developed, leukemia) -> a loved one (8421ms) What is leukemia? Julia Kendall 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (Julia Kendall, developed, leukemia) -> Julia Kendall (8429ms) What is leukemia? Securinine 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (Securinine, induced apoptosis in, human leukemia HL-60 cells) -> Securinine (8393ms) What is leukemia? Friend virus 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (Friend virus, induced, mouse leukemia) -> Friend virus (8430ms) What is leukemia? concordant twins 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (concordant twins, developed, leukemia) -> concordant twins (8364ms) What is leukemia? European soldiers 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (European soldiers, developed, leukemia) -> European soldiers (8402ms) What is leukemia? the elution profile 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (the elution profile, induces apoptosis in, the leukemia cells) -> the elution profile (8430ms) What is leukemia? the Tu-4 bomber 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (the Tu-4 bomber, developed, leukemia) -> the Tu-4 bomber (8364ms) What is leukemia? Flavonoids 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (Flavonoids, induce apoptosis in, human leukemia) -> Flavonoids (8402ms) What is leukemia? a young girl 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (a young girl, developed, leukemia) -> a young girl (8383ms) What is leukemia? an aberrant MYB-GATA1 fusion 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (an aberrant MYB-GATA1 fusion, induces, leukemia) -> an aberrant MYB-GATA1 fusion (8412ms) What is leukemia? Michael 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (Michael, developed, leukemia) -> Michael (8421ms) What is leukemia? Etoposide 1.666666666657 What is leukemia? -> $x: ($x, side, leukemia) -> (Etoposide, can have a side effect of, leukemia) -> Etoposide (8393ms) What is leukemia? Arthur Watson 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (Arthur Watson, developed, leukemia) -> Arthur Watson (8430ms) What is leukemia? the Lmo2 oncogene 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (the Lmo2 oncogene, induced, mice leukemia) -> the Lmo2 oncogene (8438ms) What is leukemia? the Golan 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (the Golan, developed, Leukemia) -> the Golan (8383ms) What is leukemia? The boy 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (The boy, develops, leukemia) -> The boy (8393ms) What is leukemia? the viremic cats 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (the viremic cats, develop, leukemias) -> the viremic cats (8421ms) What is leukemia? EWS/FLI-1 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (EWS/FLI-1, induces rapid onset of, myeloid/erythroid leukemia) -> EWS/FLI-1 (8364ms) What is leukemia? X-ray 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (X-ray, induced, leukemias) -> X-ray (8402ms) What is leukemia? 50.000 adults and children 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (50.000 adults and children, develop, leukemia) -> 50.000 adults and children (8402ms) What is leukemia? a third child 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (a third child, developed, leukemia) -> a third child (8412ms) What is leukemia? Sadako 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (Sadako, developed, Leukemia) -> Sadako (8447ms) What is leukemia? B cells 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (B cells, induces, pre-B cell acute lymphoblastic leukemia) -> B cells (8402ms) What is leukemia? a professional person 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (a professional person, developed, leukemia) -> a professional person (8412ms) What is leukemia? CD95 and TRAIL 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (CD95 and TRAIL, induced apoptosis in, leukemia cell lines) -> CD95 and TRAIL (8373ms) What is leukemia? 2002 Kainic acid 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (2002 Kainic acid, induces, leukemia inhibitory factor) -> 2002 Kainic acid (8421ms) What is leukemia? BA 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (BA, potently induces apoptosis in, leukemia cells) -> BA (8393ms) What is leukemia? two of these children 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (two of these children, developed, leukemia) -> two of these children (8402ms) What is leukemia? clioquinol 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (clioquinol, induce apoptotic cell death in, leukemia and myeloma) -> clioquinol (8430ms) What is leukemia? MYST3-CREBBP 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (MYST3-CREBBP, may induce, leukemia) -> MYST3-CREBBP (8430ms) What is leukemia? 21 people 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (21 people, developed, leukemia) -> 21 people (8438ms) What is leukemia? the first 11 patients 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (the first 11 patients, developed, leukemia) -> the first 11 patients (8438ms) What is leukemia? the mice 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (the mice, developed, leukemia) -> the mice (8430ms) What is leukemia? Ray 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (Ray, developed, leukemia) -> Ray (8402ms) What is leukemia? miR-141 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (miR-141, is induced by, leukemia inhibitory factor) -> miR-141 (8354ms) What is leukemia? diabetes and chemo 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (diabetes and chemo, can induce, leukemia several years) -> diabetes and chemo (8438ms) What is leukemia? male infants 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (male infants, has induced, childhood leukemia) -> male infants (8402ms) What is leukemia? two of the patients 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (two of the patients, developed, leukemia) -> two of the patients (8412ms) What is leukemia? FPD/AML patients 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (FPD/AML patients, developed, leukemia) -> FPD/AML patients (8373ms) What is leukemia? immune deficiency 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (immune deficiency, is induced by, LP-BM5 murine leukemia virus) -> immune deficiency (8383ms) What is leukemia? metabolites 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (metabolites, induce, leukemia) -> metabolites (8383ms) What is leukemia? tanshinone IIA 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (tanshinone IIA, induced cellular apoptosis in, leukemia cells) -> tanshinone IIA (8363ms) What is leukemia? heme biosynthesis 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (heme biosynthesis, induces apoptosis in, leukemia cells) -> heme biosynthesis (8373ms) What is leukemia? TEL-JAK2 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (TEL-JAK2, induce, T-cell leukemia) -> TEL-JAK2 (8383ms) What is leukemia? NUP98-PMX1 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (NUP98-PMX1, induced, typical leukemia syndrome) -> NUP98-PMX1 (8438ms) What is leukemia? chronic pain 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (chronic pain, developed, Leukemia) -> chronic pain (8364ms) What is leukemia? 95 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (95, developed, leukemia) -> 95 (8430ms) What is leukemia? columns 1.666666666657 What is leukemia? -> $x: ($x, represent, leukemia) -> (columns, represent patients with, mixed lineage leukemia) -> columns (8421ms) What is leukemia? orange 1.666666666657 What is leukemia? -> $x: ($x, represent, leukemia) -> (orange, represents, leukemia awareness) -> orange (8383ms) What is leukemia? aspartame 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (aspartame, is capable of inducing, lymphomas and leukemias) -> aspartame (8374ms) What is leukemia? compounds 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (compounds, induce, differentiation of murine leukemia cells) -> compounds (8412ms) What is leukemia? the researchers 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (the researchers, develops, leukemia) -> the researchers (8421ms) What is leukemia? adolescence 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (adolescence, developed, leukemia) -> adolescence (8412ms) What is leukemia? Cytarabine 1.666666666657 What is leukemia? -> $x: ($x, be use of, leukemia) -> (Cytarabine, is used to treat different forms of, leukemia) -> Cytarabine (8412ms) What is leukemia? Abelson virus 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (Abelson virus, induced, leukemias) -> Abelson virus (8353ms) What is leukemia? two patients 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (two patients, developed, Leukemia) -> two patients (8393ms) What is leukemia? the girl 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (the girl, developed, leukemia) -> the girl (8383ms) What is leukemia? ATO 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (ATO, induces apoptosis in, HL-60 promyelocytic leukemia cells) -> ATO (8402ms) What is leukemia? Plutonium 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (Plutonium, can induce, bone cancer or leukemia) -> Plutonium (8430ms) What is leukemia? MLL-ELL 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (MLL-ELL, induced, leukemia) -> MLL-ELL (8429ms) What is leukemia? the mutant human JAK1 gene 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (the mutant human JAK1 gene, developed, leukemia) -> the mutant human JAK1 gene (8421ms) What is leukemia? the Friend virus 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (the Friend virus, induced, leukemia) -> the Friend virus (8393ms) What is leukemia? Granes 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (Granes, developed, leukemia) -> Granes (8438ms) What is leukemia? HPCs 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (HPCs, induces, leukemia) -> HPCs (8447ms) What is leukemia? RL V 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (RL V, induced, leukemia) -> RL V (8374ms) What is leukemia? Arsenite 1.666666666657 What is leukemia? -> $x: ($x, be use of, leukemia) -> (Arsenite, has been used to treat some types of, leukemias) -> Arsenite (8383ms) What is leukemia? Hiroshima 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (Hiroshima, developed, Leukemia) -> Hiroshima (8402ms) What is leukemia? activates 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (activates, induces, acute megakaryoblastic leukemia) -> activates (8412ms) What is leukemia? Bortezomib 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (Bortezomib, induces apoptosis in, leukemia cells) -> Bortezomib (8412ms) What is leukemia? leukemia virus 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (leukemia virus, develop, leukemia) -> leukemia virus (8373ms) What is leukemia? a leukemic cell population 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (a leukemic cell population, induced, leukemia) -> a leukemic cell population (8393ms) What is leukemia? zyvox 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (zyvox, induced, leukemia) -> zyvox (8438ms) What is leukemia? murine leukemia virus 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (murine leukemia virus, induced, acute myeloid leukemia) -> murine leukemia virus (8383ms) What is leukemia? the exposed workers 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (the exposed workers, developed, leukemia) -> the exposed workers (8373ms) What is leukemia? The chemical 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (The chemical, also induced, mononuclear cell leukemia) -> The chemical (8438ms) What is leukemia? drugs 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (drugs, induces DNA damage in, human myeloid leukemia cells) -> drugs (8364ms) What is leukemia? a young survivor 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (a young survivor, developed, leukemia) -> a young survivor (8438ms) What is leukemia? Spain 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (Spain, developed, leukemia) -> Spain (8393ms) What is leukemia? a new friend 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (a new friend, developed, leukemia) -> a new friend (8421ms) What is leukemia? Japan 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (Japan, developed, leukemia) -> Japan (8421ms) What is leukemia? two children 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (two children, developed, leukemia) -> two children (8421ms) What is leukemia? Sorafenib 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (Sorafenib, induces cell death in, chronic lymphocytic leukemia) -> Sorafenib (8438ms) What is leukemia? one adult 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (one adult, developed, leukemia) -> one adult (8402ms) What is leukemia? bovine leukemia virus 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (bovine leukemia virus, developed, leukemia) -> bovine leukemia virus (8364ms) What is leukemia? the immune-deficient children 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (the immune-deficient children, developed, leukemia) -> the immune-deficient children (8421ms) What is leukemia? the husband 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (the husband, developed, leukemia) -> the husband (8364ms) What is leukemia? Runx2 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (Runx2, induces, acute myeloid leukemia) -> Runx2 (8373ms) What is leukemia? p53 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (p53, induces, myeloid leukemias) -> p53 (8383ms) What is leukemia? 700 people 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (700 people, develop, leukemia) -> 700 people (8393ms) What is leukemia? Sasaki 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (Sasaki, developed, leukemia) -> Sasaki (8429ms) What is leukemia? Fucoxanthin 1.666666666657 What is leukemia? -> $x: ($x, induce, leukemia) -> (Fucoxanthin, induces apoptosis in, human leukemia) -> Fucoxanthin (8364ms) What is leukemia? the hormone deprivation-only group 1.666666666657 What is leukemia? -> $x: ($x, develop, leukemia) -> (the hormone deprivation-only group, developed, leukemia) -> the hormone deprivation-only group (8383ms) What is leukemia? Chronic myelomonocytic leukemia 1.666666666656 What is leukemia? -> $x: ($x, can be, leukemia) -> (Chronic myelomonocytic leukemia, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Chronic%20myelomonocytic%20leukemia) -> Chronic myelomonocytic leukemia (8463ms) What is leukemia? Secondary causes 1.666666666656 What is leukemia? -> $x: ($x, could be, leukemia) -> (Secondary causes, could be, leukemia) -> Secondary causes (8455ms) What is leukemia? the occurrence 1.666666666656 What is leukemia? -> $x: ($x, can be, leukemia) -> (the occurrence, therefore can be considered, a leukemia cause) -> the occurrence (8472ms) What is leukemia? mono 1.666666666656 What is leukemia? -> $x: ($x, can be, leukemia) -> (mono, can also be a symptom of, leukemia) -> mono (8447ms) What is leukemia? cat 1.666666666656 What is leukemia? -> $x: ($x, can be, leukemia) -> (cat, is an animal that can develop, feline leukemia) -> cat (8479ms) What is leukemia? groin 1.666666666656 What is leukemia? -> $x: ($x, can be, leukemia) -> (groin, can be an early sign of, leukemia) -> groin (8455ms) What is leukemia? acute megakaryoblastic leukemia 1.666666666656 What is leukemia? -> $x: ($x, can be, leukemia) -> (acute megakaryoblastic leukemia, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Acute%20megakaryoblastic%20leukemia) -> acute megakaryoblastic leukemia (8464ms) What is leukemia? Contributions 1.666666666656 What is leukemia? -> $x: ($x, can be, leukemia) -> (Contributions, can be made to, the Leukemia & Lymphoma Society) -> Contributions (8480ms) What is leukemia? Gfi1 deficiency 1.666666666656 What is leukemia? -> $x: ($x, could be, leukemia) -> (Gfi1 deficiency, could be linked to, myeloid leukemia) -> Gfi1 deficiency (8472ms) What is leukemia? Headache 1.666666666656 What is leukemia? -> $x: ($x, can be, leukemia) -> (Headache, can be, symptoms of CNS leukemia) -> Headache (8472ms) What is leukemia? chemical shampoo 1.666666666656 What is leukemia? -> $x: ($x, could be, leukemia) -> (chemical shampoo, could be risk of developing, leukemia) -> chemical shampoo (8455ms) What is leukemia? the viral particles 1.666666666656 What is leukemia? -> $x: ($x, could be, leukemia) -> (the viral particles, could be seen within, the leukemia cells) -> the viral particles (8447ms) What is leukemia? the disease 1.666666666656 What is leukemia? -> $x: ($x, can be, leukemia) -> (the disease, can either be, acute leukemia) -> the disease (8480ms) What is leukemia? T-cell prolymphocytic leukemia 1.666666666656 What is leukemia? -> $x: ($x, can be, leukemia) -> (T-cell prolymphocytic leukemia, can be found on Wikipedia at, http://en.wikipedia.org/wiki/T%2Dcell%20prolymphocytic%20leukemia) -> T-cell prolymphocytic leukemia (8455ms) What is leukemia? prolymphocytic leukemia 1.666666666656 What is leukemia? -> $x: ($x, can be, leukemia) -> (prolymphocytic leukemia, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Prolymphocytic%20leukemia) -> prolymphocytic leukemia (8480ms) What is leukemia? Chronic eosinophilic leukemia 1.666666666656 What is leukemia? -> $x: ($x, can be, leukemia) -> (Chronic eosinophilic leukemia, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Chronic%20eosinophilic%20leukemia) -> Chronic eosinophilic leukemia (8472ms) What is leukemia? covalent conjugates 1.666666666656 What is leukemia? -> $x: ($x, can be, leukemia) -> (covalent conjugates, can be used to target, leukemia blast cells) -> covalent conjugates (8472ms) What is leukemia? Aggressive NK cell leukemia 1.666666666656 What is leukemia? -> $x: ($x, can be, leukemia) -> (Aggressive NK cell leukemia, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Aggressive%20NK%2Dcell%20leukemia) -> Aggressive NK cell leukemia (8479ms) What is leukemia? chronic neutrophilic leukemia 1.666666666656 What is leukemia? -> $x: ($x, can be, leukemia) -> (chronic neutrophilic leukemia, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Chronic%20neutrophilic%20leukemia) -> chronic neutrophilic leukemia (8472ms) What is leukemia? same 1.666666666656 What is leukemia? -> $x: ($x, can be, leukemia) -> (same, can about is, leukemia Report child) -> same (8472ms) What is leukemia? Cards 1.666666666656 What is leukemia? -> $x: ($x, can be, leukemia) -> (Cards, can be ordered online at, www.leukemia-research) -> Cards (8447ms) What is leukemia? A high MCV 1.666666666656 What is leukemia? -> $x: ($x, can be, leukemia) -> (A high MCV, can be, a ?Pre-Leukemia? warning sign) -> A high MCV (8480ms) What is leukemia? blurred vision 1.666666666656 What is leukemia? -> $x: ($x, can be, leukemia) -> (blurred vision, can be symptoms of, CNS leukemia) -> blurred vision (8464ms) What is leukemia? breath 1.666666666656 What is leukemia? -> $x: ($x, can be, leukemia) -> (breath, can be symptoms of, pre-leukemia) -> breath (8472ms) What is leukemia? Sample cards 1.666666666656 What is leukemia? -> $x: ($x, can be, leukemia) -> (Sample cards, can be viewed at, www.leukemia-research) -> Sample cards (8480ms) What is leukemia? syndrome 1.666666666656 What is leukemia? -> $x: ($x, can be, leukemia) -> (syndrome, can be cured of, their leukemia) -> syndrome (8464ms) What is leukemia? Acute myeloblastic leukemia with maturation 1.666666666656 What is leukemia? -> $x: ($x, can be, leukemia) -> (Acute myeloblastic leukemia with maturation, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Acute%20myeloblastic%20leukemia%20with%20maturation) -> Acute myeloblastic leukemia with maturation (8464ms) What is leukemia? The same drug 1.666666666656 What is leukemia? -> $x: ($x, can be, leukemia) -> (The same drug, can be, leukemia reticulosarcoma) -> The same drug (8455ms) What is leukemia? The next one 1.666666666656 What is leukemia? -> $x: ($x, discover, leukemia) -> (The next one, discovered, the feline leukemia) -> The next one (8464ms) What is leukemia? Acute erythroid leukemia 1.666666666656 What is leukemia? -> $x: ($x, can be, leukemia) -> (Acute erythroid leukemia, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Acute%20erythroid%20leukemia) -> Acute erythroid leukemia (8472ms) What is leukemia? 8 weeks 1.666666666656 What is leukemia? -> $x: ($x, could be, leukemia) -> (8 weeks, could be tested for, feline leukemia) -> 8 weeks (8455ms) What is leukemia? Bone marrow donors 1.666666666656 What is leukemia? -> $x: ($x, can be, leukemia) -> (Bone marrow donors, can only be performed while, the leukemia) -> Bone marrow donors (8447ms) What is leukemia? Abelson murine leukemia virus 1.666666666656 What is leukemia? -> $x: ($x, can be, leukemia) -> (Abelson murine leukemia virus, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Abelson%20murine%20leukemia%20virus) -> Abelson murine leukemia virus (8455ms) What is leukemia? plasma cell leukemia 1.666666666656 What is leukemia? -> $x: ($x, can be, leukemia) -> (plasma cell leukemia, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Plasma%20cell%20leukemia) -> plasma cell leukemia (8455ms) What is leukemia? Such transplants 1.666666666656 What is leukemia? -> $x: ($x, can be, leukemia) -> (Such transplants, can be used to treat, acute myeloid leukemia) -> Such transplants (8480ms) What is leukemia? Acute myeloblastic leukemia without maturation 1.666666666656 What is leukemia? -> $x: ($x, can be, leukemia) -> (Acute myeloblastic leukemia without maturation, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Acute%20myeloblastic%20leukemia%20without%20maturation) -> Acute myeloblastic leukemia without maturation (8472ms) What is leukemia? acute_myelomonocytic_leukemia 1.666666666656 What is leukemia? -> $x: ($x, can be, leukemia) -> (acute_myelomonocytic_leukemia, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Acute%20myelomonocytic%20leukemia) -> acute_myelomonocytic_leukemia (8447ms) What is leukemia? leukemia inhibitory factor receptor 1.666666666656 What is leukemia? -> $x: ($x, can be, leukemia) -> (leukemia inhibitory factor receptor, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Leukemia%20inhibitory%20factor%20receptor) -> leukemia inhibitory factor receptor (8447ms) What is leukemia? bleeding gums 1.666666666656 What is leukemia? -> $x: ($x, can be, leukemia) -> (bleeding gums, can be an early symptom of, leukemia) -> bleeding gums (8455ms) What is leukemia? The cancer cells 1.666666666656 What is leukemia? -> $x: ($x, can be, leukemia) -> (The cancer cells, can be, leukemia cells) -> The cancer cells (8464ms) What is leukemia? common 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, have in, common) -> common (8487ms) What is leukemia? forest fires 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, is found in, forest fires) -> forest fires (8517ms) What is leukemia? 2009 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, died in, 2009) -> 2009 (8541ms) What is leukemia? the wake 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, died in, the wake) -> the wake (8517ms) What is leukemia? a little girl 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (a little girl, got, Leukemia) -> a little girl (8480ms) What is leukemia? breast cancer 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (breast cancer, then got, leukemia) -> breast cancer (8536ms) What is leukemia? a few people 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (a few people, get, leukemia) -> a few people (8524ms) What is leukemia? two sorts 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (Leukemia, comes in, two sorts) -> two sorts (8495ms) What is leukemia? a few patients 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (Leukemia, has been reported in, a few patients) -> a few patients (8547ms) What is leukemia? a particular family 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, is found in, a particular family) -> a particular family (8510ms) What is leukemia? 10,0000 people 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, is 1 in, 10,0000 people) -> 10,0000 people (8531ms) What is leukemia? the Chinese cohort 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, diagnosed in, the Chinese cohort) -> the Chinese cohort (8517ms) What is leukemia? the U.S. 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, causes more deaths in, the U.S.) -> the U.S. (8517ms) What is leukemia? Authorities Concept Scheme 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (Leukemia, In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (8536ms) What is leukemia? each species 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (each species, got, leukemia) -> each species (8524ms) What is leukemia? a nursing home 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, spent her time in, a nursing home) -> a nursing home (8547ms) What is leukemia? Nobody 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (Nobody, plans on getting, leukemia) -> Nobody (8524ms) What is leukemia? Rick 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (Rick, got, leukemia) -> Rick (8502ms) What is leukemia? Adam?s central nervous system 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, appeared in, Adam?s central nervous system) -> Adam?s central nervous system (8541ms) What is leukemia? ?-catenin 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (?-catenin, might just get rid of, leukemia) -> ?-catenin (8502ms) What is leukemia? the Post 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, writes in, the Post) -> the Post (8531ms) What is leukemia? the course of her work 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, contracted in, the course of her work) -> the course of her work (8547ms) What is leukemia? a healthy , young guy 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (a healthy , young guy, get, leukemia) -> a healthy , young guy (8541ms) What is leukemia? detail 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (Leukemia, describes in, detail) -> detail (8541ms) What is leukemia? Susie 1.555555555546 What is leukemia? -> $x: ($x, raise be, leukemia) -> (Susie, is raising money for, the Leukemia & Lymphoma Society) -> Susie (8517ms) What is leukemia? the hospital 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, is in, the hospital) -> the hospital (8536ms) What is leukemia? Hitchhiking Garfield 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (Hitchhiking Garfield, Gets, Feline Leukemia) -> Hitchhiking Garfield (8536ms) What is leukemia? leukemic cows 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (leukemic cows, got, leukemia) -> leukemic cows (8495ms) What is leukemia? Bobby 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (Bobby, got, leukemia) -> Bobby (8480ms) What is leukemia? 2004 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, died in, 2004) -> 2004 (8510ms) What is leukemia? the babies 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (the babies, get, leukemia) -> the babies (8536ms) What is leukemia? Funds 1.555555555546 What is leukemia? -> $x: ($x, raise be, leukemia) -> (Funds, raised were donated to, the Leukemia Foundation) -> Funds (8510ms) What is leukemia? The team 1.555555555546 What is leukemia? -> $x: ($x, raise be, leukemia) -> (The team, is raising money for, The Leukemia & Lymphoma Society) -> The team (8531ms) What is leukemia? conjunction 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, emerged in, conjunction) -> conjunction (8503ms) What is leukemia? kids 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (kids, get, leukemia) -> kids (8524ms) What is leukemia? workers 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (workers, get, leukemia) -> workers (8510ms) What is leukemia? high-energy radiation 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (high-energy radiation, increases the risk of getting, leukemia) -> high-energy radiation (8510ms) What is leukemia? males 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (Leukemia, occurs in, males) -> males (8502ms) What is leukemia? a whirl 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, have gone by in, a whirl) -> a whirl (8495ms) What is leukemia? the planning stages 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, are in, the planning stages) -> the planning stages (8495ms) What is leukemia? Jennifer 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (Jennifer, get, leukemia) -> Jennifer (8517ms) What is leukemia? nature 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, is highly proliferative in, nature) -> nature (8524ms) What is leukemia? one cell 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (Leukemia, begins in, one cell) -> one cell (8531ms) What is leukemia? an African American 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (an African American, gets, leukemia) -> an African American (8502ms) What is leukemia? the kid 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (the kid, gets, leukemia) -> the kid (8495ms) What is leukemia? beta-catenin 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (beta-catenin, might just get rid of, leukemia) -> beta-catenin (8517ms) What is leukemia? blood-forming tissue 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (Leukemia, starts in, blood-forming tissue) -> blood-forming tissue (8541ms) What is leukemia? seven 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, found in, seven) -> seven (8547ms) What is leukemia? western countries 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, found in, western countries) -> western countries (8487ms) What is leukemia? the first year 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, diagnosed in, the first year) -> the first year (8536ms) What is leukemia? agreement 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, is in, agreement) -> agreement (8517ms) What is leukemia? a small number of children 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (Leukemia, has been reported in, a small number of children) -> a small number of children (8524ms) What is leukemia? each person 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, differ in, each person) -> each person (8547ms) What is leukemia? shes 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (shes, got, Leukemia) -> shes (8524ms) What is leukemia? November 2008 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, relapsed in, November 2008) -> November 2008 (8541ms) What is leukemia? now 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, is in remission, now) -> now (8531ms) What is leukemia? radiation-exposed persons 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (Leukemia, appears in, radiation-exposed persons) -> radiation-exposed persons (8502ms) What is leukemia? memory 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (Leukemia, is in, memory) -> memory (8495ms) What is leukemia? The poor children 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (The poor children, get, leukemias) -> The poor children (8517ms) What is leukemia? the blood or bone marrow 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, develop in, the blood or bone marrow) -> the blood or bone marrow (8517ms) What is leukemia? the affected counties 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (the affected counties, got, leukemia) -> the affected counties (8524ms) What is leukemia? the late 1940 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, began in, the late 1940) -> the late 1940 (8487ms) What is leukemia? the marrow 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, arises in, the marrow) -> the marrow (8524ms) What is leukemia? the household 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (the household, could get, Leukemia) -> the household (8536ms) What is leukemia? Topical Terms Concept Scheme 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (Leukemia, In Scheme, Topical Terms Concept Scheme) -> Topical Terms Concept Scheme (8495ms) What is leukemia? Shawn 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (Shawn, gets, leukemia) -> Shawn (8542ms) What is leukemia? the normal process 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (Leukemia, interferes in, the normal process) -> the normal process (8510ms) What is leukemia? newborns 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, is also seen in, newborns) -> newborns (8502ms) What is leukemia? so many teachers and nurses aids 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (so many teachers and nurses aids, get, leukemia) -> so many teachers and nurses aids (8510ms) What is leukemia? a long term study 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, found in, a long term study) -> a long term study (8531ms) What is leukemia? teenagers 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, diagnosed in, teenagers) -> teenagers (8502ms) What is leukemia? a human being 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (a human being, gets, leukemia) -> a human being (8547ms) What is leukemia? a particular school 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (a particular school, got, leukemia) -> a particular school (8524ms) What is leukemia? a type 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, begins in, a type) -> a type (8536ms) What is leukemia? July 2011 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, began in, July 2011) -> July 2011 (8517ms) What is leukemia? Rachel 1.555555555546 What is leukemia? -> $x: ($x, raise be, leukemia) -> (Rachel, is raising money for, the Leukemia and Lymphoma Society-) -> Rachel (8510ms) What is leukemia? Reamer 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (Reamer, got, leukemia) -> Reamer (8495ms) What is leukemia? 1953 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, died in, 1953) -> 1953 (8495ms) What is leukemia? one particular person 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (one particular person, gets, acute leukemia) -> one particular person (8524ms) What is leukemia? multiple side 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (Leukemia, find might in, multiple side) -> multiple side (8547ms) What is leukemia? The trip 1.555555555546 What is leukemia? -> $x: ($x, raise be, leukemia) -> (The trip, was designed to raise money for, a leukemia charity) -> The trip (8541ms) What is leukemia? eight 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, recurred in, eight) -> eight (8536ms) What is leukemia? desperate short supply 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, is in, desperate short supply) -> desperate short supply (8487ms) What is leukemia? Mont 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, died in, Mont) -> Mont (8495ms) What is leukemia? son 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (son, got, leukemia) -> son (8531ms) What is leukemia? a warehouse 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, are being kept in, a warehouse) -> a warehouse (8531ms) What is leukemia? infants 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, diagnosed in, infants) -> infants (8510ms) What is leukemia? Kennedy 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (Kennedy, got, Leukemia) -> Kennedy (8495ms) What is leukemia? Training 1.555555555546 What is leukemia? -> $x: ($x, raise be, leukemia) -> (Training, are raising funds to help, STOP leukemia) -> Training (8541ms) What is leukemia? vegetarian 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (vegetarian, got, leukemia) -> vegetarian (8495ms) What is leukemia? every five caucasians 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (every five caucasians, get, Leukemia) -> every five caucasians (8510ms) What is leukemia? remission 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, is in, remission) -> remission (8536ms) What is leukemia? the bone marrow and wrecks havoc 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (( Leukemia, starts in, the bone marrow and wrecks havoc) -> the bone marrow and wrecks havoc (8495ms) What is leukemia? Kenny 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (Kenny, got, leukemia) -> Kenny (8510ms) What is leukemia? the factory 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (the factory, will get, leukemia) -> the factory (8487ms) What is leukemia? the ecology 1.555555555546 What is leukemia? -> $x: ($x, leave, leukemia) -> (the ecology, left an ongoing legacy of, childhood leukemia) -> the ecology (8487ms) What is leukemia? older adults 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, occur in, older adults) -> older adults (8531ms) What is leukemia? a small number 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (Leukemia, has been reported in, a small number) -> a small number (8541ms) What is leukemia? Down syndrome 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (Down syndrome, get, Leukemia) -> Down syndrome (8541ms) What is leukemia? the person 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (the person, will get, leukemia) -> the person (8536ms) What is leukemia? Alexa 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (Alexa, got, Leukemia) -> Alexa (8502ms) What is leukemia? specific drugs 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (specific drugs, may get, leukemia) -> specific drugs (8517ms) What is leukemia? a woman 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (a woman, got, leukemia) -> a woman (8536ms) What is leukemia? the researcher 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (the researcher, got, leukemia) -> the researcher (8487ms) What is leukemia? two ways 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, may be given in, two ways) -> two ways (8510ms) What is leukemia? sixteen children 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (sixteen children, got, leukemia) -> sixteen children (8517ms) What is leukemia? a person 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (a person, will get, leukemia) -> a person (8542ms) What is leukemia? the calendar 1.555555555546 What is leukemia? -> $x: ($x, raise be, leukemia) -> (the calendar, was to raise money for, leukemia) -> the calendar (8524ms) What is leukemia? one person 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (one person, gets, leukemia) -> one person (8531ms) What is leukemia? the WARNER , DARLING , MILLS plot 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, is buried in, the WARNER , DARLING , MILLS plot) -> the WARNER , DARLING , MILLS plot (8524ms) What is leukemia? kathya 1.555555555546 What is leukemia? -> $x: ($x, raise be, leukemia) -> (kathya, is raising funds for, the leukemia and lymphoma society) -> kathya (8495ms) What is leukemia? Dom 1.555555555546 What is leukemia? -> $x: ($x, get, leukemia) -> (Dom, got, leukemia) -> Dom (8503ms) What is leukemia? various forms 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (Leukemia, occurs in, various forms) -> various forms (8547ms) What is leukemia? the white blood cells 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (Leukemia, starts in, the white blood cells) -> the white blood cells (8547ms) What is leukemia? the higher dairy 1.555555555546 What is leukemia? -> $x: (leukemia, in in, $x) -> (leukemia, is more common in, the higher dairy) -> the higher dairy (8536ms) What is leukemia? Moore 1.555555555545 What is leukemia? -> $x: ($x, involve, leukemia) -> (Moore, is involved with, the Leukemia and Lymphoma Society) -> Moore (8552ms) What is leukemia? the SYK kinase 1.555555555545 What is leukemia? -> $x: ($x, involve, leukemia) -> (the SYK kinase, is involved in, leukemia and breast cancers) -> the SYK kinase (8552ms) What is leukemia? Stephanie 1.555555555545 What is leukemia? -> $x: ($x, involve, leukemia) -> (Stephanie, is involved with, the Leukemia and Lymphoma Society) -> Stephanie (8551ms) What is leukemia? the ALL1 and AF4 1.555555555545 What is leukemia? -> $x: ($x, involve, leukemia) -> (the ALL1 and AF4, proteins involved in, acute leukemia) -> the ALL1 and AF4 (8551ms) What is leukemia? a human proto-oncogene 1.555555555545 What is leukemia? -> $x: ($x, involve, leukemia) -> (a human proto-oncogene, involved in, acute myeloid leukemias) -> a human proto-oncogene (8552ms) What is leukemia? the research 1.555555555545 What is leukemia? -> $x: ($x, involve, leukemia) -> (the research, involved, leukemia) -> the research (8551ms) What is leukemia? asparagus and cancer 1.555555555545 What is leukemia? -> $x: ($x, involve, leukemia) -> (asparagus and cancer, involves, leukemia) -> asparagus and cancer (8552ms) What is leukemia? Gary 1.555555555545 What is leukemia? -> $x: ($x, involve, leukemia) -> (Gary, has long been involved with, the Leukemia Cup Regattas) -> Gary (8551ms) What is leukemia? The study 1.555555555545 What is leukemia? -> $x: ($x, involve, leukemia) -> (The study, involved a type of, leukemia) -> The study (8552ms) What is leukemia? The different age effect 1.555555555545 What is leukemia? -> $x: ($x, involve, leukemia) -> (The different age effect, involves different types of, leukemias) -> The different age effect (8551ms) What is leukemia? stem cells 1.444444444434 What is leukemia? -> $x: ($x, be use as, leukemia) -> (stem cells, are being used to treat diseases such as, leukemia) -> stem cells (8556ms) What is leukemia? MDS 1.444444444434 What is leukemia? -> $x: ($x, precede, leukemia) -> (MDS, precedes the development of, acute Leukemia) -> MDS (8556ms) What is leukemia? ?Sometimes 1.444444444434 What is leukemia? -> $x: ($x, precede, leukemia) -> (?Sometimes, preceded by, myelogenous leukemia) -> ?Sometimes (8556ms) What is leukemia? viremia 1.444444444434 What is leukemia? -> $x: ($x, precede, leukemia) -> (viremia, preceded, leukemia) -> viremia (8556ms) What is leukemia? the cords 1.444444444434 What is leukemia? -> $x: ($x, be use as, leukemia) -> (the cords, would be used to treat diseases such as, leukemia) -> the cords (8556ms) What is leukemia? milk 1.333333333323 What is leukemia? -> $x: ($x, contain, leukemia) -> (milk, might also have contained, live leukemia virus) -> milk (8556ms) What is leukemia? cow products 1.333333333323 What is leukemia? -> $x: ($x, contain, leukemia) -> (cow products, contain, live lymphoma and leukemia viruses) -> cow products (8556ms) What is leukemia? the yellow fever vaccine 1.333333333323 What is leukemia? -> $x: ($x, contain, leukemia) -> (the yellow fever vaccine, contained, a leukemia virus) -> the yellow fever vaccine (8556ms) What is leukemia? blood 1.333333333323 What is leukemia? -> $x: ($x, contain, leukemia) -> (blood, also contains, the leukemia) -> blood (8556ms) What is leukemia? Coriolus 1.222222222214 What is leukemia? -> $x: ($x, demonstrate, leukemia) -> (Coriolus, have demonstrated an inhibitory effect on, leukemia) -> Coriolus (8556ms) What is leukemia? Vietnam veterans 1.222222222213 What is leukemia? -> $x: ($x, concerned, leukemia) -> (Vietnam veterans, concerned about, chronic lymphocytic leukemia) -> Vietnam veterans (8561ms) What is leukemia? House 1.222222222213 What is leukemia? -> $x: ($x, concerned, leukemia) -> (House, is now concerned about, leukemia) -> House (8556ms) What is leukemia? lymph nodes 1.222222222213 What is leukemia? -> $x: ($x, concerned, leukemia) -> (lymph nodes, raise the concern for, leukemia) -> lymph nodes (8556ms) What is leukemia? physical challenge 1.1111111111010001 What is leukemia? -> $x: ($x, bring about, leukemia) -> (physical challenge, brought about by, acute leukemia) -> physical challenge (8561ms) What is leukemia? leukemia stem cells 0.99999999999 What is leukemia? -> $x: ($x, initiate, leukemia) -> (leukemia stem cells, are responsible for initiating, leukemia) -> leukemia stem cells (8585ms) What is leukemia? two particular classrooms 0.99999999999 What is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, had been in, two particular classrooms) -> two particular classrooms (8581ms) What is leukemia? green tea 0.99999999999 What is leukemia? -> $x: ($x, number of, leukemia) -> (green tea, may reduce the number of, leukemia cells) -> green tea (8587ms) What is leukemia? The Lmo2 oncogene 0.99999999999 What is leukemia? -> $x: ($x, initiate, leukemia) -> (The Lmo2 oncogene, initiates, leukemia) -> The Lmo2 oncogene (8565ms) What is leukemia? excessive exposure 0.99999999999 What is leukemia? -> $x: (leukemia, be have, $x) -> (leukemia, has been linked to, excessive exposure) -> excessive exposure (8581ms) What is leukemia? HIV infection 0.99999999999 What is leukemia? -> $x: (leukemia, be have, $x) -> (leukemia, has been cured of, HIV infection) -> HIV infection (8587ms) What is leukemia? parts 0.99999999999 What is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, is well documented in, parts) -> parts (8587ms) What is leukemia? neoplastic lines 0.99999999999 What is leukemia? -> $x: (leukemia, be have, $x) -> (leukemias, have been carried out on, neoplastic lines) -> neoplastic lines (8565ms) What is leukemia? the hematopoietic system 0.99999999999 What is leukemia? -> $x: (leukemia, be in, $x) -> (Leukemia, is always disseminated in, the hematopoietic system) -> the hematopoietic system (8573ms) What is leukemia? previous gene therapy trials 0.99999999999 What is leukemia? -> $x: (leukemia, be have, $x) -> (leukemia, has been a problem with, previous gene therapy trials) -> previous gene therapy trials (8587ms) What is leukemia? origin 0.99999999999 What is leukemia? -> $x: (leukemia, be in, $x) -> (Leukemia, is evidently psychosomatic in, origin) -> origin (8573ms) What is leukemia? Flax Oil 0.99999999999 What is leukemia? -> $x: (leukemia, be have, $x) -> (Leukemia, has been using, Flax Oil) -> Flax Oil (8561ms) What is leukemia? two classrooms 0.99999999999 What is leukemia? -> $x: (leukemia, be have, $x) -> (leukemia, had been located in, two classrooms) -> two classrooms (8581ms) What is leukemia? the past 0.99999999999 What is leukemia? -> $x: (leukemia, be have, $x) -> (leukemia cases, have been increasing over, the past) -> the past (8565ms) What is leukemia? 5 decades 0.99999999999 What is leukemia? -> $x: (leukemia, be have, $x) -> (leukemia, has been increasing over, 5 decades) -> 5 decades (8584ms) What is leukemia? several countries 0.99999999999 What is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, were found in, several countries) -> several countries (8561ms) What is leukemia? green tea?helps 0.99999999999 What is leukemia? -> $x: ($x, number of, leukemia) -> (green tea?helps, reduce the number of, leukemia cells) -> green tea?helps (8573ms) What is leukemia? God 0.99999999999 What is leukemia? -> $x: (leukemia, be have, $x) -> (Childhood leukemia, may have been in, God) -> God (8587ms) What is leukemia? a higher expression level 0.99999999999 What is leukemia? -> $x: (leukemia, be have, $x) -> (leukemia, were found to have, a higher expression level) -> a higher expression level (8581ms) What is leukemia? 20 people 0.99999999999 What is leukemia? -> $x: (leukemia, be in, $x) -> (Leukemia, was found in, 20 people) -> 20 people (8573ms) What is leukemia? the group 0.99999999999 What is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, were the youngest in, the group) -> the group (8581ms) What is leukemia? the Center 0.99999999999 What is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, are treated in, the Center) -> the Center (8585ms) What is leukemia? Xj 0.99999999999 What is leukemia? -> $x: ($x, number of, leukemia) -> (Xj, is the number of, leukemia deaths) -> Xj (8587ms) What is leukemia? the Glivec clinical trials 0.99999999999 What is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, were included in, the Glivec clinical trials) -> the Glivec clinical trials (8573ms) What is leukemia? M. D. Anderson since 0.99999999999 What is leukemia? -> $x: (leukemia, be have, $x) -> (leukemia, has been made at, M. D. Anderson since) -> M. D. Anderson since (8581ms) What is leukemia? a concern 0.99999999999 What is leukemia? -> $x: (leukemia, be have, $x) -> (pediatric leukemia, has been, a concern) -> a concern (8585ms) What is leukemia? gang rape 0.99999999999 What is leukemia? -> $x: (leukemia, be have, $x) -> (leukemia, claims to have been a victim of, gang rape) -> gang rape (8577ms) What is leukemia? As71 and As74 0.99999999999 What is leukemia? -> $x: ($x, administer, leukemia) -> (As71 and As74, were administered to, four leukemia patients) -> As71 and As74 (8569ms) What is leukemia? total remission 0.99999999999 What is leukemia? -> $x: (leukemia, be have, $x) -> (the leukemia, had been driven into, total remission) -> total remission (8569ms) What is leukemia? the years 0.99999999999 What is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, was observed in, the years) -> the years (8587ms) What is leukemia? dairy farmers 0.99999999999 What is leukemia? -> $x: (leukemia, be have, $x) -> (leukemia, has been found among, dairy farmers) -> dairy farmers (8587ms) What is leukemia? induction therapy 0.99999999999 What is leukemia? -> $x: ($x, number of, leukemia) -> (induction therapy, is to reduce the number of, leukemia cells) -> induction therapy (8569ms) What is leukemia? a translocation 0.99999999999 What is leukemia? -> $x: (leukemia, be have, $x) -> (leukemia, has been associated with, a translocation) -> a translocation (8581ms) What is leukemia? Shelton 0.99999999999 What is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, was buried in, Shelton) -> Shelton (8569ms) What is leukemia? Table 1 0.99999999999 What is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, are shown in, Table 1) -> Table 1 (8577ms) What is leukemia? radium recipients 0.99999999999 What is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, were documented in, radium recipients) -> radium recipients (8561ms) What is leukemia? the year 2007 0.99999999999 What is leukemia? -> $x: (leukemia, be in, $x) -> (Leukemia, were diagnosed in, the year 2007) -> the year 2007 (8585ms) What is leukemia? a high rate 0.99999999999 What is leukemia? -> $x: (leukemia, be have, $x) -> (Leukemia, is considered to have, a high rate) -> a high rate (8569ms) What is leukemia? Portland 0.99999999999 What is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, is very high in, Portland) -> Portland (8569ms) What is leukemia? the bone marrow registry 0.99999999999 What is leukemia? -> $x: (leukemia, be have, $x) -> (leukemia, had been placed on, the bone marrow registry) -> the bone marrow registry (8561ms) What is leukemia? the UF College 0.99999999999 What is leukemia? -> $x: (leukemia, be have, $x) -> (leukemia, has been named the new chair of, the UF College) -> the UF College (8577ms) What is leukemia? the media 0.99999999999 What is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, was widely promoted in, the media) -> the media (8581ms) What is leukemia? La Hague reprocessing plant 0.99999999999 What is leukemia? -> $x: (leukemia, be have, $x) -> (Leukemia, has been reported around, La Hague reprocessing plant) -> La Hague reprocessing plant (8577ms) What is leukemia? JAMA. 0.99999999999 What is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, was published in, JAMA.) -> JAMA. (8577ms) What is leukemia? 2000 0.99999999999 What is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, are expected in, 2000) -> 2000 (8561ms) What is leukemia? nine percent 0.99999999999 What is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, was found in, nine percent) -> nine percent (8581ms) What is leukemia? obesity 0.99999999999 What is leukemia? -> $x: (leukemia, be have, $x) -> (leukemia, have been linked to, obesity) -> obesity (8573ms) What is leukemia? a Batman movie 0.99999999999 What is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, was to star in, a Batman movie) -> a Batman movie (8587ms) What is leukemia? genetic disorders 0.99999999999 What is leukemia? -> $x: ($x, initiate, leukemia) -> (genetic disorders, initiate, leukemias) -> genetic disorders (8587ms) What is leukemia? a complication 0.99999999999 What is leukemia? -> $x: (leukemia, be have, $x) -> (leukemia, has been observed as, a complication) -> a complication (8585ms) What is leukemia? 40-50 % 0.99999999999 What is leukemia? -> $x: (leukemia, be have, $x) -> (Leukemia, has been reduced by, 40-50 %) -> 40-50 % (8587ms) What is leukemia? infections 0.99999999999 What is leukemia? -> $x: (leukemia, be have, $x) -> (Childhood leukemia, has been linked to, infections) -> infections (8565ms) What is leukemia? the development 0.99999999999 What is leukemia? -> $x: (leukemia, be have, $x) -> (Feline leukemia, has been linked to, the development) -> the development (8565ms) What is leukemia? 1876 0.99999999999 What is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, was first suggested in, 1876) -> 1876 (8569ms) What is leukemia? Down syndrome patients 0.99999999999 What is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, is only seen in, Down syndrome patients) -> Down syndrome patients (8577ms) What is leukemia? Melothria 0.99999999999 What is leukemia? -> $x: ($x, administer, leukemia) -> (Melothria, was administered to, leukemia cells) -> Melothria (8561ms) What is leukemia? Hiroshima females 0.99999999999 What is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, was significantly high in, Hiroshima females) -> Hiroshima females (8577ms) What is leukemia? rates 0.99999999999 What is leukemia? -> $x: (leukemia, be have, $x) -> (leukemia, has been diagnosed at, rates) -> rates (8587ms) What is leukemia? an accident 0.99999999999 What is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, is disabled in, an accident) -> an accident (8565ms) What is leukemia? studies 0.99999999999 What is leukemia? -> $x: (leukemia, be have, $x) -> (leukemia, have been found to be higher in, studies) -> studies (8585ms) What is leukemia? the bloodstream 0.99999999999 What is leukemia? -> $x: (leukemia, be in, $x) -> (leukemia, are present in, the bloodstream) -> the bloodstream (8585ms) What is leukemia? 1948 0.99999999999 What is leukemia? -> $x: (leukemia, be have, $x) -> (leukemia, has been documented since, 1948) -> 1948 (8585ms) What is leukemia? ELF radiation 0.99999999999 What is leukemia? -> $x: (leukemia, be have, $x) -> (leukemia, has been heavily exposed to, ELF radiation) -> ELF radiation (8587ms) What is an eclipse? Yeager 0.44444444444200004 What is an eclipse? -> $x: ($x, be example of, eclipse) -> (Yeager, are handy examples of, such eclipsed glory) -> Yeager (2810ms) What is an eclipse? IBM 0.333333333332 What is an eclipse? -> $x: ($x, be th, eclipse) -> (IBM, is celebrating its 10th anniversary at, EclipseCon) -> IBM (2810ms) What is an eclipse? tomorrow 0.333333333332 What is an eclipse? -> $x: ($x, be th, eclipse) -> (tomorrow, is the the 90th anniversary of, the 1919 solar eclipse) -> tomorrow (2810ms) What is an eclipse? Trolleys 0.222222222219 What is an eclipse? -> $x: ($x, be example of, solar power) -> (Trolleys, are also an example of, a solar powered vehicle) -> Trolleys (2810ms) What is an eclipse? Sun rooms 0.222222222219 What is an eclipse? -> $x: ($x, be example of, solar power) -> (Sun rooms, are another example of, passive solar power) -> Sun rooms (2810ms) What is an eclipse? Java coding and debugging 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (Java coding and debugging, is done in, Eclipse) -> Java coding and debugging (10454ms) What is an eclipse? JRebel 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (JRebel, can be found in, the Eclipse Marketplace) -> JRebel (10398ms) What is an eclipse? a RCP based file browser 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (a RCP based file browser, create, a new Eclipse RCP project) -> a RCP based file browser (10490ms) What is an eclipse? work 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (work, is, Eclipse) -> work (10748ms) What is an eclipse? Twilight 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (Twilight, will do the same for, Eclipse) -> Twilight (10641ms) What is an eclipse? the Keeneland publicist 0.111111111111 What is an eclipse? -> $x: ($x, invent, eclipse) -> (the Keeneland publicist, invented, the Eclipse Award program) -> the Keeneland publicist (10672ms) What is an eclipse? March 29 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (March 29, produces, a total solar eclipse) -> March 29 (10398ms) What is an eclipse? Lavi 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (Lavi, found a picture of, her Eclipse) -> Lavi (10777ms) What is an eclipse? The demo 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (The demo, was done in, Eclipse) -> The demo (3497ms) What is an eclipse? Aptana 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (Aptana, has done a good job at using, Eclipse) -> Aptana (10625ms) What is an eclipse? ? I?ve 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (? I?ve, even found the benefit in, Eclipse?s new task tab) -> ? I?ve (10703ms) What is an eclipse? Auto classifieds 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (Auto classifieds, find, a 2007 Mitsubishi Eclipse Spyder) -> Auto classifieds (10576ms) What is an eclipse? PHP files 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (PHP files, can be done with, Eclipse) -> PHP files (10791ms) What is an eclipse? A binary star system 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (A binary star system, can also produce, eclipses) -> A binary star system (10472ms) What is an eclipse? Cicero 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (Cicero, found, the eclipse) -> Cicero (10688ms) What is an eclipse? Cain 0.111111111111 What is an eclipse? -> $x: ($x, describe, eclipse) -> (Cain, has described, Eclipse) -> Cain (10703ms) What is an eclipse? A coronagraph 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (A coronagraph, produces, an artificial eclipse) -> A coronagraph (10367ms) What is an eclipse? Marty Bowen 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Marty Bowen, Films Executive Produced, Eclipse) -> Marty Bowen (10417ms) What is an eclipse? overthrow 0.111111111111 What is an eclipse? -> $x: ($x, represent, eclipse) -> (overthrow, were represented by, eclipses and extinction) -> overthrow (10576ms) What is an eclipse? The main problem 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (The main problem, is, Eclipse) -> The main problem (10592ms) What is an eclipse? Eclipse Our winner 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (Eclipse Our winner, is, Eclipse) -> Eclipse Our winner (10508ms) What is an eclipse? 63 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (63, did, more than eclipse) -> 63 (9745ms) What is an eclipse? DAVID letter 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (DAVID letter, was found on, the solar eclipse) -> DAVID letter (9240ms) What is an eclipse? the ECLIPSE partnership 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (the ECLIPSE partnership, can be found at, www.eclipse .org) -> the ECLIPSE partnership (10472ms) What is an eclipse? The problem 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (The problem, is, Eclipse) -> The problem (10436ms) What is an eclipse? 1999 0.111111111111 What is an eclipse? -> $x: ($x, happen at, eclipse) -> (1999, also happened at, the ?Nostradamus ? solar eclipse) -> 1999 (10592ms) What is an eclipse? course 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (course, also do this all from within, Eclipse) -> course (10436ms) What is an eclipse? The track 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (The track, was, ?eclipse?.) -> The track (10656ms) What is an eclipse? Wyck Godfrey 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Wyck Godfrey, Films Produced, Eclipse) -> Wyck Godfrey (10525ms) What is an eclipse? Alan Parsons 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Alan Parsons, Tracks produced, Total Eclipse) -> Alan Parsons (10748ms) What is an eclipse? low frequency propagation 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (low frequency propagation, did change during, the eclipse) -> low frequency propagation (10777ms) What is an eclipse? Ketu 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (Ketu, creates, the eclipse) -> Ketu (10717ms) What is an eclipse? a little reflection 0.111111111111 What is an eclipse? -> $x: ($x, happen at, eclipse) -> (a little reflection, happened last week at, EclipseCon) -> a little reflection (10454ms) What is an eclipse? Jeremy Podeswa 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Jeremy Podeswa, Films Produced, Eclipse) -> Jeremy Podeswa (10791ms) What is an eclipse? the winter months 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (the winter months, finds, an almost eclipse) -> the winter months (10490ms) What is an eclipse? the snippet text 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (the snippet text, create folders in, eclipse snippet directory 4) -> the snippet text (10490ms) What is an eclipse? Top Firms 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (Top Firms, Find, 2006 Mitsubishi Eclipse GS coupe) -> Top Firms (10559ms) What is an eclipse? an astronomy dictionary 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (an astronomy dictionary, find out about, solar eclipses) -> an astronomy dictionary (10559ms) What is an eclipse? Normal 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Normal, produces, the Eclipse) -> Normal (10436ms) What is an eclipse? The element helium 0.111111111111 What is an eclipse? -> $x: ($x, discover, eclipse) -> (The element helium, was also discovered at, this eclipse) -> The element helium (10398ms) What is an eclipse? Barry Jamieson 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Barry Jamieson, Tracks produced, Eclipse (original mix)) -> Barry Jamieson (10508ms) What is an eclipse? The IDE 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (The IDE, is, eclipse) -> The IDE (10508ms) What is an eclipse? large crowd 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (large crowd, are doing with, Eclipse) -> large crowd (10672ms) What is an eclipse? fairly no changes 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (fairly no changes, is found in, the Eclipse-CVS-Repository) -> fairly no changes (2810ms) What is an eclipse? only a few hours 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (only a few hours, then did go back to, Eclipse) -> only a few hours (10490ms) What is an eclipse? cannot 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (cannot, be, eclipses) -> cannot (10525ms) What is an eclipse? spectral variations 0.111111111111 What is an eclipse? -> $x: ($x, be characteristic of, eclipse) -> (spectral variations, are characteristic of, the eclipses) -> spectral variations (10542ms) What is an eclipse? Data 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (Data, can be found on, the NASA Lunar Eclipse Page) -> Data (7886ms) What is an eclipse? June 1 , 2011 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (June 1 , 2011, produces, a Partial Solar Eclipse) -> June 1 , 2011 (10791ms) What is an eclipse? a discussion 0.111111111111 What is an eclipse? -> $x: ($x, happen at, eclipse) -> (a discussion, actually happened last year at, EclipseCon 2007) -> a discussion (9240ms) What is an eclipse? Rahu and Ketu 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (Rahu and Ketu, create, eclipses) -> Rahu and Ketu (10718ms) What is an eclipse? committee members 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (committee members, can be found at, www.eclipse-copd.com) -> committee members (10398ms) What is an eclipse? the entire disc 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (the entire disc, creates, a total solar eclipse) -> the entire disc (6038ms) What is an eclipse? an essence 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (an essence, was created during, an eclipse) -> an essence (10703ms) What is an eclipse? was 0.111111111111 What is an eclipse? -> $x: ($x, re, eclipse) -> (was, re-install, Eclipse) -> was (10641ms) What is an eclipse? Table 3 0.111111111111 What is an eclipse? -> $x: ($x, define, eclipse) -> (Table 3, define a line of, maximum eclipse) -> Table 3 (10717ms) What is an eclipse? Donald Smith?s ? 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (Donald Smith?s ?, is, Eclipse) -> Donald Smith?s ? (10367ms) What is an eclipse? The court 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (The court, found for, Eclipse) -> The court (10542ms) What is an eclipse? the opportunity 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (the opportunity, are doing with, Eclipse) -> the opportunity (7886ms) What is an eclipse? The EPL license 0.111111111111 What is an eclipse? -> $x: ($x, define, eclipse) -> (The EPL license, was defined by, the Eclipse foundation) -> The EPL license (10454ms) What is an eclipse? the reddish component 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (the reddish component, was found to be, an eclipsing binary) -> the reddish component (10525ms) What is an eclipse? a role 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (a role, did, Eclipse play) -> a role (10688ms) What is an eclipse? the moon 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (the moon, produces, lunar eclipses) -> the moon (10777ms) What is an eclipse? The following steps 0.111111111111 What is an eclipse? -> $x: ($x, describe, eclipse) -> (The following steps, are described for, Eclipse) -> The following steps (10656ms) What is an eclipse? The Moon 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (The Moon, produces, a Solar eclipse) -> The Moon (10656ms) What is an eclipse? the How 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (the How, create, an Eclipse update site) -> the How (10417ms) What is an eclipse? Subversion 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (Subversion, does have a plugin for, Eclipse) -> Subversion (10763ms) What is an eclipse? not every new Moon 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (not every new Moon, produces, a solar eclipse) -> not every new Moon (10472ms) What is an eclipse? BIRT 2.3 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (BIRT 2.3, can be found on, the Eclipse Foundation Web site) -> BIRT 2.3 (10672ms) What is an eclipse? Desert Edge 0.111111111111 What is an eclipse? -> $x: ($x, represent, eclipse) -> (Desert Edge, thankfully represents, Eclipse) -> Desert Edge (10542ms) What is an eclipse? Thanks 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (Thanks, do, Eclipse PDE) -> Thanks (10542ms) What is an eclipse? Da Beatminerz 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Da Beatminerz, Releases produced, Total Eclipse) -> Da Beatminerz (10748ms) What is an eclipse? YorkIT 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (YorkIT, found, Eclipse profiler/eclipsecolorer) -> YorkIT (10559ms) What is an eclipse? prob lems 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (prob lems, is, #eclipse) -> prob lems (10718ms) What is an eclipse? the technology 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (the technology, can be found on, www.Eclipse20.com) -> the technology (10748ms) What is an eclipse? Butch 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Butch, Tracks produced, Eclipse (Butch remix)) -> Butch (10417ms) What is an eclipse? Filip Remunda 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Filip Remunda, Films Produced, Solar Eclipse) -> Filip Remunda (10333ms) What is an eclipse? One such example 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (One such example, is, Eclipse) -> One such example (10559ms) What is an eclipse? Karen Rosenfelt 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Karen Rosenfelt, Films Produced, Eclipse) -> Karen Rosenfelt (10508ms) What is an eclipse? only scattered clouds 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (only scattered clouds, can be found at, eclipse time) -> only scattered clouds (10609ms) What is an eclipse? The GWT presentation 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (The GWT presentation, was done completely in, Eclipse) -> The GWT presentation (10398ms) What is an eclipse? The Mexicans 0.111111111111 What is an eclipse? -> $x: ($x, represent, eclipse) -> (The Mexicans, represent, an eclipse) -> The Mexicans (10417ms) What is an eclipse? sacred light 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (sacred light, is, eclipse) -> sacred light (10656ms) What is an eclipse? the unit 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (the unit, have created so far from, Eclipse) -> the unit (10508ms) What is an eclipse? Sunfury , Arcane and Netherweave 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (Sunfury , Arcane and Netherweave, are found in, Eclipse Point) -> Sunfury , Arcane and Netherweave (10703ms) What is an eclipse? A total eclipse 0.111111111111 What is an eclipse? -> $x: ($x, define, eclipse) -> (A total eclipse, can be defined as, an eclipse) -> A total eclipse (5989ms) What is an eclipse? second culprit 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (second culprit, is, eclipse) -> second culprit (10641ms) What is an eclipse? The driver 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (The driver, can be found on, the Northern Eclipse CD) -> The driver (10559ms) What is an eclipse? Beni ? Tue Sep 29 , 2009 2:09 pm 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (Beni ? Tue Sep 29 , 2009 2:09 pm, does, Eclipse crash) -> Beni ? Tue Sep 29 , 2009 2:09 pm (9745ms) What is an eclipse? to Indians 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (to Indians, did, such eclipse respond) -> to Indians (10641ms) What is an eclipse? a far more complex application 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (a far more complex application, was created with, Eclipse) -> a far more complex application (10472ms) What is an eclipse? El Tit? 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (El Tit?, Tracks produced, Eclipse) -> El Tit? (10576ms) What is an eclipse? the sun 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (the sun, does shine its like, an eclipse) -> the sun (10454ms) What is an eclipse? the upcoming solar eclipse 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (the upcoming solar eclipse, can be found at, MrEclipse) -> the upcoming solar eclipse (10748ms) What is an eclipse? name 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (name, is, Eclipse) -> name (10525ms) What is an eclipse? the icon 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (the icon, find, the Eclipse .ini) -> the icon (10656ms) What is an eclipse? The guidance 0.111111111111 What is an eclipse? -> $x: ($x, describe, eclipse) -> (The guidance, below are described based on, Eclipse-3.2) -> The guidance (10641ms) What is an eclipse? 33 different countries 0.111111111111 What is an eclipse? -> $x: ($x, represent, eclipse) -> (33 different countries, will be represented at, EclipseCon 2012) -> 33 different countries (10398ms) What is an eclipse? the broken pieces 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (the broken pieces, was, Eclipse) -> the broken pieces (10625ms) What is an eclipse? The company 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (The company, produced, Eclipse 1) -> The company (10732ms) What is an eclipse? The best example 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (The best example, is, Eclipse) -> The best example (10625ms) What is an eclipse? sample New File Wizard 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (sample New File Wizard, created by, Eclipse) -> sample New File Wizard (10559ms) What is an eclipse? the Header Colors 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (the Header Colors, Create a new workspace for, Eclipse) -> the Header Colors (10472ms) What is an eclipse? shift and change 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (shift and change, does, a lunar eclipse) -> shift and change (9240ms) What is an eclipse? Tasktop 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (Tasktop, created, the popular Eclipse Mylyn project) -> Tasktop (10732ms) What is an eclipse? the well 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (the well, also found in, the EVOs , Talons , Eclipse , ect.) -> the well (10525ms) What is an eclipse? Cherry Bomb 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Cherry Bomb, Tracks produced, Eclipse) -> Cherry Bomb (10542ms) What is an eclipse? the computer process 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (the computer process, can be found at, 1999 Composite Eclipse) -> the computer process (10559ms) What is an eclipse? a coronagraph 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (a coronagraph, produces, an artificial solar eclipse) -> a coronagraph (10417ms) What is an eclipse? cowthen 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (cowthen, do, the Mone eclipse) -> cowthen (10472ms) What is an eclipse? the software 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (the software, is done using, eclipse) -> the software (10732ms) What is an eclipse? a look 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (a look, find, the eclipse) -> a look (10641ms) What is an eclipse? horse Light-Infantry 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (horse Light-Infantry, was, Eclipse) -> horse Light-Infantry (10703ms) What is an eclipse? PHP Architect 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (PHP Architect, find, an Eclipse cover story) -> PHP Architect (10559ms) What is an eclipse? a 45 year mystery 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (a 45 year mystery, Does, a solar eclipse) -> a 45 year mystery (10508ms) What is an eclipse? use Eclipse 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (use Eclipse, do use, Eclipse) -> use Eclipse (10367ms) What is an eclipse? The environment 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (The environment, is, Eclipse) -> The environment (10672ms) What is an eclipse? God 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (God, is, eclipsed?) -> God (10609ms) What is an eclipse? The labs 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (The labs, are done using, Eclipse WTP) -> The labs (10333ms) What is an eclipse? a test class 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (a test class, does beat, Eclipse) -> a test class (10763ms) What is an eclipse? solar eclipses 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (solar eclipses, can be found on, the Eclipse Page) -> solar eclipses (10763ms) What is an eclipse? JSP together 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (JSP together, did n?t do anything in, Eclipse) -> JSP together (10625ms) What is an eclipse? further deatails 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (further deatails, can be found at, www.eclipse .com .ec) -> further deatails (10398ms) What is an eclipse? The series 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (The series, will continue to produce, partial eclipses) -> The series (10717ms) What is an eclipse? a new Test Project 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (a new Test Project, Create, a new Eclipse project) -> a new Test Project (10717ms) What is an eclipse? a magazine 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (a magazine, does a cover story on, Eclipse) -> a magazine (10490ms) What is an eclipse? Dost?pna jest r?wnie? 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (Dost?pna jest r?wnie?, do, Eclipse) -> Dost?pna jest r?wnie? (10525ms) What is an eclipse? Curve IntelliJ 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (Curve IntelliJ, does some things differently to, Eclipse) -> Curve IntelliJ (10625ms) What is an eclipse? The hiccup 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (The hiccup, was, Eclipse) -> The hiccup (10576ms) What is an eclipse? 2. It 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (2. It, does n?t have, Eclipse IDE) -> 2. It (10791ms) What is an eclipse? 4 Lol Balrogan 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (4 Lol Balrogan, did, an eclipse) -> 4 Lol Balrogan (10367ms) What is an eclipse? rthentic RTNC 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (rthentic RTNC, Tracks produced, Eclipsed) -> rthentic RTNC (9240ms) What is an eclipse? ouch # firefox #security # 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (ouch # firefox #security #, Finally found, the eclipse) -> ouch # firefox #security # (10398ms) What is an eclipse? The Full Moon 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (The Full Moon, produces, a Total Lunar Eclipse) -> The Full Moon (10508ms) What is an eclipse? Tommy Victor 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Tommy Victor, Tracks produced, Entrance of the Eclipse) -> Tommy Victor (10763ms) What is an eclipse? Tereza Horska 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Tereza Horska, Films Produced, Solar Eclipse) -> Tereza Horska (10417ms) What is an eclipse? time 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (time, create, an eclipse) -> time (10672ms) What is an eclipse? the Sun 0.111111111111 What is an eclipse? -> $x: (eclipse, have part of, $x) -> (Most eclipses, have only part of, the Sun) -> the Sun (10641ms) What is an eclipse? Void 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (Void, did, I. Eclipse) -> Void (6038ms) What is an eclipse? Observers 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (Observers, may find, the Eclipsing Binary Ephemerides) -> Observers (10454ms) What is an eclipse? October 3 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (October 3, produces, an annular solar eclipse) -> October 3 (10703ms) What is an eclipse? keyboardist Jonathan Cain 0.111111111111 What is an eclipse? -> $x: ($x, describe, eclipse) -> (keyboardist Jonathan Cain, recently described, Eclipse) -> keyboardist Jonathan Cain (10672ms) What is an eclipse? More details 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (More details, can be found at, the Luna Eclipse information page) -> More details (10717ms) What is an eclipse? A TCP connection 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (A TCP connection, is created between, Eclipse IDE) -> A TCP connection (10748ms) What is an eclipse? the complete archive 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (the complete archive, can be found at, the Eclipse website) -> the complete archive (10732ms) What is an eclipse? Anne Keefe 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (Anne Keefe, created, EclipseSpa) -> Anne Keefe (10472ms) What is an eclipse? The pounding sun 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (The pounding sun, creates, an eclipse) -> The pounding sun (4010ms) What is an eclipse? the server entry 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (the server entry, has been created in, the Eclipse Servers view) -> the server entry (5989ms) What is an eclipse? Rebecca O'Flanagan 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Rebecca O'Flanagan, Films Executive Produced, The Eclipse) -> Rebecca O'Flanagan (10367ms) What is an eclipse? the Moon 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (the Moon, produces, an annular eclipse) -> the Moon (10559ms) What is an eclipse? A good example of how I like to see 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (A good example of how I like to see, is, Eclipse) -> A good example of how I like to see (10490ms) What is an eclipse? prediction 0.111111111111 What is an eclipse? -> $x: (eclipse, have part of, $x) -> (Eclipses, have been a part of, prediction) -> prediction (4010ms) What is an eclipse? the front runners 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (the front runners, is, Eclipse) -> the front runners (10525ms) What is an eclipse? mitsubishi 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (mitsubishi, is an agent that has something to do with the item, Eclipse) -> mitsubishi (10417ms) What is an eclipse? Holmes 0.111111111111 What is an eclipse? -> $x: ($x, represent, eclipse) -> (Holmes, represents, the eclipse) -> Holmes (10656ms) What is an eclipse? the movies 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (the movies, was, Eclipse) -> the movies (10472ms) What is an eclipse? a physical OpenFlow switch 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (a physical OpenFlow switch, Creating the project in, Eclipse) -> a physical OpenFlow switch (10763ms) What is an eclipse? a developer 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (a developer, does n?t like, Eclipse) -> a developer (9240ms) What is an eclipse? the character 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (the character, can create, a limited eclipse) -> the character (10454ms) What is an eclipse? the Museo 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (the Museo, do, Eclipse) -> the Museo (10625ms) What is an eclipse? eclipse expeditions 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (eclipse expeditions, can create, custom eclipse maps) -> eclipse expeditions (10592ms) What is an eclipse? pastry chef Clair Robberson 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (pastry chef Clair Robberson, does at, Eclipse) -> pastry chef Clair Robberson (10454ms) What is an eclipse? the Full Moon 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (the Full Moon, produced, a Partial Lunar Eclipse) -> the Full Moon (10592ms) What is an eclipse? ?Open Declaration ? 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (?Open Declaration ?, are found in, Eclipse) -> ?Open Declaration ? (10508ms) What is an eclipse? not every full moon 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (not every full moon, produces, an eclipse) -> not every full moon (10703ms) What is an eclipse? the CDT 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (the CDT, can be found at, www.eclipse) -> the CDT (10732ms) What is an eclipse? the reader 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (the reader, will find the key texts of, these long-eclipsed) -> the reader (10436ms) What is an eclipse? the passage 0.111111111111 What is an eclipse? -> $x: ($x, describe, eclipse) -> (the passage, describe the phases of, the Moon and Eclipses) -> the passage (10717ms) What is an eclipse? FREE 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (FREE, Find out more at, Eclipse) -> FREE (10436ms) What is an eclipse? Approval 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (Approval, can be found on, all new Eclipse products) -> Approval (10576ms) What is an eclipse? useful features 0.111111111111 What is an eclipse? -> $x: ($x, describe, eclipse) -> (useful features, are described on, an Eclipse) -> useful features (10688ms) What is an eclipse? just 0.111111111111 What is an eclipse? -> $x: ($x, happen to, eclipse) -> (just, so happens to also coincide with, November?s solar eclipse) -> just (10791ms) What is an eclipse? sounds Windfall 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (sounds Windfall, is, Eclipse) -> sounds Windfall (10672ms) What is an eclipse? a project 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (a project, Create a general project in, Eclipse) -> a project (10625ms) What is an eclipse? several convenient ways 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (several convenient ways, create, new Eclipse project source code) -> several convenient ways (10777ms) What is an eclipse? the Saros eclipse interval 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (the Saros eclipse interval, produces, similar eclipses) -> the Saros eclipse interval (10417ms) What is an eclipse? a lunation 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (a lunation, creates, eclipses) -> a lunation (10417ms) What is an eclipse? graphics 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (graphics, are found on, our eclipse logos page) -> graphics (10609ms) What is an eclipse? Krystyna Doktorowicz 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Krystyna Doktorowicz, Films Produced, Eclipse) -> Krystyna Doktorowicz (6038ms) What is an eclipse? More information 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (More information, can be found at, www.eclipse) -> More information (2811ms) What is an eclipse? Gottfried Koch 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Gottfried Koch, Tracks produced, The Fall Into Eclipse) -> Gottfried Koch (10525ms) What is an eclipse? The new moon 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (The new moon, produces, a total solar eclipse) -> The new moon (10732ms) What is an eclipse? Beloit College 0.111111111111 What is an eclipse? -> $x: ($x, describe, eclipse) -> (Beloit College, described his school?s usage of, Eclipse) -> Beloit College (7886ms) What is an eclipse? North America 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (North America, will find, the eclipse) -> North America (7086ms) What is an eclipse? The resulting film 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (The resulting film, was, ?ECLIPSE) -> The resulting film (10367ms) What is an eclipse? Minagen X3 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (Minagen X3, can be found in, the Eclipse base) -> Minagen X3 (10472ms) What is an eclipse? Nov 11 2009 Technorati Tags 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (Nov 11 2009 Technorati Tags, create, project , eclipse) -> Nov 11 2009 Technorati Tags (10717ms) What is an eclipse? the Southern Hemisphere 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (the Southern Hemisphere, produces, an eclipse) -> the Southern Hemisphere (3497ms) What is an eclipse? SWT 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (SWT, does n?t integrate naturally with, Eclipse) -> SWT (10687ms) What is an eclipse? a more difficult question 0.111111111111 What is an eclipse? -> $x: ($x, exactly be, eclipse) -> (a more difficult question, exactly is, Eclipse) -> a more difficult question (3497ms) What is an eclipse? Cannot 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (Cannot, Find, Eclipse Weapon) -> Cannot (5989ms) What is an eclipse? DIS 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (DIS, IS, ECLIPSE) -> DIS (10490ms) What is an eclipse? Jul 22 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (Jul 22, is, Eclipse) -> Jul 22 (10576ms) What is an eclipse? GMF 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (GMF, are rarely found on, Eclipse 3.1 installation) -> GMF (7886ms) What is an eclipse? sunspot 1402 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (sunspot 1402, produced, a partially-eclipsed flare) -> sunspot 1402 (10609ms) What is an eclipse? the same Saros family 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (the same Saros family, produced, the great lunar eclipse) -> the same Saros family (10525ms) What is an eclipse? The following text 0.111111111111 What is an eclipse? -> $x: ($x, describe, eclipse) -> (The following text, describes, the Total Lunar Eclipse) -> The following text (10656ms) What is an eclipse? the Eclipse community 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (the Eclipse community, will do the same for, Eclipse) -> the Eclipse community (10777ms) What is an eclipse? a question 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (a question, find a discussion about, your Eclipse) -> a question (10748ms) What is an eclipse? Hudson 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (Hudson, works well for doing, Eclipse) -> Hudson (10672ms) What is an eclipse? a true code-editor 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (a true code-editor, is, Eclipse) -> a true code-editor (4010ms) What is an eclipse? eclipse -type d` 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (eclipse -type d`, Then create, an eclipse executable) -> eclipse -type d` (10525ms) What is an eclipse? Amber 0.111111111111 What is an eclipse? -> $x: ($x, discover, eclipse) -> (Amber, discovered a mysterious letter in, Eclipse) -> Amber (10398ms) What is an eclipse? Venus 0.111111111111 What is an eclipse? -> $x: ($x, exactly be, eclipse) -> (Venus, was also exactly on, the August 11 eclipse-point) -> Venus (10641ms) What is an eclipse? the library 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (the library, can be found in, the org .eclipse .equinox) -> the library (10703ms) What is an eclipse? Rakesh Chaudhary 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Rakesh Chaudhary, Films Produced, The Eclipse of Taregna) -> Rakesh Chaudhary (10609ms) What is an eclipse? Jan Krause 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Jan Krause, Tracks produced, Eclipse) -> Jan Krause (7086ms) What is an eclipse? a new system 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (a new system, is, Eclipse) -> a new system (10592ms) What is an eclipse? Screen 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (Screen, Saver created using, Active Media Eclipse) -> Screen (10333ms) What is an eclipse? innovation 0.111111111111 What is an eclipse? -> $x: ($x, happen to, eclipse) -> (innovation, continues to happen in, the Eclipse ecosystem) -> innovation (10688ms) What is an eclipse? Pulsar 0.111111111111 What is an eclipse? -> $x: ($x, define, eclipse) -> (Pulsar, will define a common set of, Eclipse-based tools) -> Pulsar (10417ms) What is an eclipse? Emmett 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (Emmett, will continue to do so in, Eclipse) -> Emmett (10559ms) What is an eclipse? Jon Kelly 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Jon Kelly, Tracks produced, Masculine Eclipse) -> Jon Kelly (10641ms) What is an eclipse? Barbara Buchholz 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Barbara Buchholz, Tracks produced, Eclipse) -> Barbara Buchholz (10717ms) What is an eclipse? The Bush speech 0.111111111111 What is an eclipse? -> $x: ($x, represent, eclipse) -> (The Bush speech, represents neither, the eclipse) -> The Bush speech (10703ms) What is an eclipse? the IDE 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (the IDE, is, Eclipse) -> the IDE (10656ms) What is an eclipse? IDE integration 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (IDE integration, Create, an IDEA or Eclipse project files) -> IDE integration (4010ms) What is an eclipse? Mullaney 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Mullaney, produced at, Eclipse Comics) -> Mullaney (10641ms) What is an eclipse? a reasonably large figure 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (a reasonably large figure, produced, a dark eclipse) -> a reasonably large figure (3497ms) What is an eclipse? Mark 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (Mark, also found, two solar eclipses) -> Mark (10791ms) What is an eclipse? Second 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (Second, is, Eclipse) -> Second (10592ms) What is an eclipse? An Eclipse project 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (An Eclipse project, is created within, the Eclipse workspace) -> An Eclipse project (10367ms) What is an eclipse? a side note 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (a side note, does, the eclipsed moon look) -> a side note (10656ms) What is an eclipse? Greg Mooradian 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Greg Mooradian, Films Produced, Eclipse) -> Greg Mooradian (10656ms) What is an eclipse? the program 0.111111111111 What is an eclipse? -> $x: ($x, describe, eclipse) -> (the program, was described as, the best-attended Eclipse Day) -> the program (10454ms) What is an eclipse? A quick check 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (A quick check, finds, Mercurial Eclipse) -> A quick check (10333ms) What is an eclipse? CoolChaser 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (CoolChaser, Create, your own 1995 Mitsubishi Eclipse layouts) -> CoolChaser (10748ms) What is an eclipse? Stalin 0.111111111111 What is an eclipse? -> $x: ($x, represent, eclipse) -> (Stalin, represents, the eclipse) -> Stalin (10609ms) What is an eclipse? The Quick Access menu 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (The Quick Access menu, find anything in, Eclipse) -> The Quick Access menu (10748ms) What is an eclipse? the first Israeli 0.111111111111 What is an eclipse? -> $x: ($x, represent, eclipse) -> (the first Israeli, represent, the eclipse) -> the first Israeli (10576ms) What is an eclipse? birds 0.111111111111 What is an eclipse? -> $x: ($x, happen to, eclipse) -> (birds, just happens to coincide with, a Total Solar Eclipse) -> birds (10454ms) What is an eclipse? Planning 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (Planning, was done in, Eclipse) -> Planning (10641ms) What is an eclipse? the Earth 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (the Earth, produces, a Solar eclipse) -> the Earth (10791ms) What is an eclipse? NASA 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (NASA, has conveniently created, the lunar eclipse) -> NASA (10508ms) What is an eclipse? A good , free , open source option 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (A good , free , open source option, is, Eclipse) -> A good , free , open source option (10508ms) What is an eclipse? Steve Mattson 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (Steve Mattson, had done some work for, Eclipse Comics) -> Steve Mattson (10417ms) What is an eclipse? Maven Eclipse-Plugin Plugin 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (Maven Eclipse-Plugin Plugin, creates, Eclipse plugins) -> Maven Eclipse-Plugin Plugin (10672ms) What is an eclipse? the CRC file 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (the CRC file, is done according to, Eclipse standard) -> the CRC file (10472ms) What is an eclipse? a historian/essayist 0.111111111111 What is an eclipse? -> $x: ($x, invent, eclipse) -> (a historian/essayist, invented, an eclipse) -> a historian/essayist (10490ms) What is an eclipse? a New Moon 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (a New Moon, creates, a solar eclipse) -> a New Moon (10436ms) What is an eclipse? stephanie meyer 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (stephanie meyer, created, Eclipse) -> stephanie meyer (10454ms) What is an eclipse? Dave 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (Dave, do for, free eclipses) -> Dave (10625ms) What is an eclipse? We?d 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (We?d, do, the Eclipse festival) -> We?d (10542ms) What is an eclipse? Step 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (Step, create, the Eclipse Project files) -> Step (4010ms) What is an eclipse? features 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (features, find their way into, Eclipse) -> features (10436ms) What is an eclipse? Summit 0.111111111111 What is an eclipse? -> $x: ($x, re, eclipse) -> (Summit, is re-releasing, Eclipse) -> Summit (10672ms) What is an eclipse? Saros 130 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Saros 130, continues to produce, total eclipses) -> Saros 130 (10592ms) What is an eclipse? The integrated environment 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (The integrated environment, is, Eclipse) -> The integrated environment (10417ms) What is an eclipse? Hand 0.111111111111 What is an eclipse? -> $x: ($x, describe, eclipse) -> (Hand, described in, doc/coding/eclipse) -> Hand (9745ms) What is an eclipse? mobile platforms 0.111111111111 What is an eclipse? -> $x: ($x, represent, eclipse) -> (mobile platforms, represents, the eclipse) -> mobile platforms (10576ms) What is an eclipse? The image 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (The image, was created from, an eclipse image) -> The image (10763ms) What is an eclipse? java and 0.111111111111 What is an eclipse? -> $x: ($x, discover, eclipse) -> (java and, recently discovered, eclipse) -> java and (10608ms) What is an eclipse? a Java developer 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (a Java developer, was involved in creating, an Eclipse Plugin) -> a Java developer (10777ms) What is an eclipse? Sally H. Moritz 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (Sally H. Moritz, has created a version of, Eclipse) -> Sally H. Moritz (10703ms) What is an eclipse? a racer 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (a racer, was, Eclipse) -> a racer (10559ms) What is an eclipse? the big ones 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (the big ones, were, Eclipse) -> the big ones (9745ms) What is an eclipse? Prop 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (Prop, created for, Eclipse) -> Prop (10417ms) What is an eclipse? Wychwood Brewery 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Wychwood Brewery, Beers Produced, Wychwood Solar Eclipse) -> Wychwood Brewery (10748ms) What is an eclipse? the 8.5hp kohler 0.111111111111 What is an eclipse? -> $x: ($x, equal, eclipse) -> (the 8.5hp kohler, was about equal with, my eclipse) -> the 8.5hp kohler (10763ms) What is an eclipse? such an architecture 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (such an architecture, is, Eclipse) -> such an architecture (10525ms) What is an eclipse? The picture 0.111111111111 What is an eclipse? -> $x: ($x, represent, eclipse) -> (The picture, represents, an eclipse) -> The picture (10687ms) What is an eclipse? the Linux IDE 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (the Linux IDE, is, Eclipse) -> the Linux IDE (4010ms) What is an eclipse? men 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (men, had nothing to do with, eclipses) -> men (10592ms) What is an eclipse? users 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (users, can find, m2eclipse) -> users (10472ms) What is an eclipse? Emperor 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Emperor, Releases produced, In the Nightside Eclipse) -> Emperor (10703ms) What is an eclipse? developers 0.111111111111 What is an eclipse? -> $x: ($x, happen to, eclipse) -> (developers, happen to, use eclipse) -> developers (10763ms) What is an eclipse? midnight 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (midnight, is, Eclipse) -> midnight (10490ms) What is an eclipse? the solar system 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (the solar system, produces, perfect solar eclipses) -> the solar system (10542ms) What is an eclipse? the seller 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (the seller, find, other Mitsubishi Eclipse vehicles) -> the seller (10609ms) What is an eclipse? Once the project 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (Once the project, is created in, your Eclipse workspace) -> Once the project (10777ms) What is an eclipse? P4 0.111111111111 What is an eclipse? -> $x: ($x, represent, eclipse) -> (P4, represent each phase of, the eclipse) -> P4 (10791ms) What is an eclipse? May 4 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (May 4, produces, a Total Lunar Eclipse) -> May 4 (9745ms) What is an eclipse? Pink Floyd 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Pink Floyd, Tracks produced, Eclipse) -> Pink Floyd (10777ms) What is an eclipse? I?ve 0.111111111111 What is an eclipse? -> $x: ($x, re, eclipse) -> (I?ve, also re-read, Eclipse) -> I?ve (10688ms) What is an eclipse? the structure IBM 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (the structure IBM, created for, Eclipse .org) -> the structure IBM (10508ms) What is an eclipse? The second complaint 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (The second complaint, has to do with, Eclipse) -> The second complaint (10559ms) What is an eclipse? the project 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (the project, created in, Eclipse) -> the project (10687ms) What is an eclipse? IDEs 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (IDEs, are, Eclipse) -> IDEs (10436ms) What is an eclipse? Wolfram Tichy 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Wolfram Tichy, Films Executive Produced, Eclipse) -> Wolfram Tichy (10436ms) What is an eclipse? groovy 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (groovy, does, Groovy-Eclipse use) -> groovy (10703ms) What is an eclipse? the local dogs 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (the local dogs, did during, the eclipse) -> the local dogs (10525ms) What is an eclipse? The goal 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (The goal, are doing with, Eclipse) -> The goal (10672ms) What is an eclipse? The magnolia blooms 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (The magnolia blooms, have nothing to do with, eclipses) -> The magnolia blooms (10609ms) What is an eclipse? the next book 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (the next book, is, Eclipse) -> the next book (10672ms) What is an eclipse? Java developers 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (Java developers, would do with, Eclipse) -> Java developers (10777ms) What is an eclipse? the New & Noteworthy stuff 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (the New & Noteworthy stuff, found on, the Eclipse site) -> the New & Noteworthy stuff (7086ms) What is an eclipse? the tools 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (the tools, are, Eclipse) -> the tools (10625ms) What is an eclipse? the standard environment 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (the standard environment, is, eclipse) -> the standard environment (10398ms) What is an eclipse? the same people 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (the same people, created, MyEclipse) -> the same people (10490ms) What is an eclipse? VMWare 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (VMWare, can be found at, RTEMS Eclipse Plug-in) -> VMWare (7886ms) What is an eclipse? July 7 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (July 7, produces, a penumbral lunar eclipse) -> July 7 (3497ms) What is an eclipse? Derby 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (Derby, does, the eclipse plugin) -> Derby (10333ms) What is an eclipse? EMF 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (EMF, is a powerful framework for creating, Eclipse plugins) -> EMF (10490ms) What is an eclipse? I'M ALMOST 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (I'M ALMOST, DONE WITH, ECLIPSE !) -> I'M ALMOST (10791ms) What is an eclipse? Jeff Wood 0.111111111111 What is an eclipse? -> $x: ($x, describe, eclipse) -> (Jeff Wood, described watching, the December 2010 lunar eclipse) -> Jeff Wood (7086ms) What is an eclipse? rare autographs 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (rare autographs, can only be found in, Press Pass Eclipse 2004) -> rare autographs (10592ms) What is an eclipse? Christofer Johnsson 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Christofer Johnsson, Tracks produced, The Fall Into Eclipse) -> Christofer Johnsson (10717ms) What is an eclipse? a 40 cm aperture 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (a 40 cm aperture, will produce large images of, the eclipse) -> a 40 cm aperture (10398ms) What is an eclipse? stephenie meyer 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (stephenie meyer, created, Eclipse) -> stephenie meyer (10367ms) What is an eclipse? Feb 6-7 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Feb 6-7, produces, an Annular Solar Eclipse) -> Feb 6-7 (10592ms) What is an eclipse? Eclipse 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (Eclipse, did, Veryant customize Eclipse) -> Eclipse (10609ms) What is an eclipse? Paul Heaton 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Paul Heaton, Tracks produced, Masculine Eclipse) -> Paul Heaton (10525ms) What is an eclipse? the station 0.111111111111 What is an eclipse? -> $x: ($x, happen to, eclipse) -> (the station, happens so very close to, the Lunar Eclipse) -> the station (10763ms) What is an eclipse? Cassini 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (Cassini, created, a second eclipse map) -> Cassini (10454ms) What is an eclipse? The one on the left 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (The one on the left, is, Eclipse) -> The one on the left (10559ms) What is an eclipse? 427 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (427, Tracks produced, Frustration (feat. Eclipse 427)) -> 427 (7886ms) What is an eclipse? Today?s highest scoring word 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (Today?s highest scoring word, is, ECLIPSE) -> Today?s highest scoring word (5989ms) What is an eclipse? the shadow of the Earth 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (the shadow of the Earth, produces, the lunar eclipse) -> the shadow of the Earth (3497ms) What is an eclipse? the head 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (the head, find, Eclipse .project) -> the head (10656ms) What is an eclipse? Tim Summerhayes 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Tim Summerhayes, Tracks produced, Total Eclipse) -> Tim Summerhayes (10592ms) What is an eclipse? Poil 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (Poil, was, Eclipses) -> Poil (10472ms) What is an eclipse? the Linux version 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (the Linux version, found at, Eclipse) -> the Linux version (10609ms) What is an eclipse? lunar eclipses 0.111111111111 What is an eclipse? -> $x: ($x, exactly be, eclipse) -> (lunar eclipses, are exactly the same as, solar eclipses) -> lunar eclipses (7086ms) What is an eclipse? merges 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (merges, can be done from within, Eclipse) -> merges (9745ms) What is an eclipse? the following settings 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (the following settings, can be found in, Eclipse) -> the following settings (10398ms) What is an eclipse? Luna 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (Luna, can create, an eclipse) -> Luna (10559ms) What is an eclipse? eclipses 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (eclipses, can be found on, the NASA Eclipse Home Page) -> eclipses (10734ms) What is an eclipse? Robert Hakim 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Robert Hakim, Films Produced, Eclipse) -> Robert Hakim (10609ms) What is an eclipse? Mark Morgan 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Mark Morgan, Films Executive Produced, Eclipse) -> Mark Morgan (10732ms) What is an eclipse? The throne 0.111111111111 What is an eclipse? -> $x: ($x, describe, eclipse) -> (The throne, would describe, an eclipse) -> The throne (10656ms) What is an eclipse? poor food 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (poor food, is, Eclipse) -> poor food (10592ms) What is an eclipse? the tutorials 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (the tutorials, is, Eclipse) -> the tutorials (10777ms) What is an eclipse? Paddy McDonald 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Paddy McDonald, Films Executive Produced, The Eclipse) -> Paddy McDonald (10732ms) What is an eclipse? Duncan Forbes 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Duncan Forbes, Tracks produced, Eclipse (Butch remix)) -> Duncan Forbes (10592ms) What is an eclipse? December 10 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (December 10, produces, a Total Lunar Eclipse) -> December 10 (10472ms) What is an eclipse? The tale 0.111111111111 What is an eclipse? -> $x: ($x, describe, eclipse) -> (The tale, is thought also to describe, a solar eclipse) -> The tale (10763ms) What is an eclipse? two Java projects 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (two Java projects, were created in, Eclipse) -> two Java projects (10732ms) What is an eclipse? the ECJ 0.111111111111 What is an eclipse? -> $x: ($x, represent, eclipse) -> (the ECJ, represents, Eclipse) -> the ECJ (6038ms) What is an eclipse? Morgan Stanley 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (Morgan Stanley, are doing with, Eclipse) -> Morgan Stanley (10748ms) What is an eclipse? back 50 years 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (back 50 years, found this list of, Total Solar Eclipses) -> back 50 years (10542ms) What is an eclipse? additional packages 0.111111111111 What is an eclipse? -> $x: ($x, describe, eclipse) -> (additional packages, described on, the Eclipse Classic page) -> additional packages (10672ms) What is an eclipse? More and more vendors 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (More and more vendors, are creating, Eclipse plugins) -> More and more vendors (10490ms) What is an eclipse? the government 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (the government, found out about, Eclipse) -> the government (10732ms) What is an eclipse? David 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (David, is created by, the eclipse) -> David (10656ms) What is an eclipse? April 19 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (April 19, produces, a Partial Solar Eclipse) -> April 19 (10508ms) What is an eclipse? the Evolvis Webservice 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (the Evolvis Webservice, were created with, the Eclipse Web tools) -> the Evolvis Webservice (10436ms) What is an eclipse? Do 0.111111111111 What is an eclipse? -> $x: ($x, happen to, eclipse) -> (Do, is going to happen with, Eclipse project) -> Do (10490ms) What is an eclipse? night 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (night, produces the effect of, an eclipse) -> night (10333ms) What is an eclipse? point 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (point, is, Eclipse) -> point (7086ms) What is an eclipse? Eirik Hundvin 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Eirik Hundvin, Releases produced, In the Nightside Eclipse) -> Eirik Hundvin (10542ms) What is an eclipse? Tasktop Technologies 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (Tasktop Technologies, created, the Eclipse Mylyn integrations) -> Tasktop Technologies (10525ms) What is an eclipse? faces-config .xml 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (faces-config .xml, is created by, Eclipse JSF tools) -> faces-config .xml (10592ms) What is an eclipse? California 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (California, did see, the eclipse) -> California (10609ms) What is an eclipse? Jupiter 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Jupiter, produce, total eclipses) -> Jupiter (10777ms) What is an eclipse? the institutions 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (the institutions, are doing similar things with, Eclipse) -> the institutions (10542ms) What is an eclipse? The Moon?s penumbral shadow 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (The Moon?s penumbral shadow, produces, a partial eclipse visible) -> The Moon?s penumbral shadow (10688ms) What is an eclipse? The IDE I?ll use 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (The IDE I?ll use, is, Eclipse) -> The IDE I?ll use (10542ms) What is an eclipse? First 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (First, is, Eclipse) -> First (4010ms) What is an eclipse? integrated support 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (integrated support, does, MyEclipse) -> integrated support (10732ms) What is an eclipse? William 0.111111111111 What is an eclipse? -> $x: ($x, exactly be, eclipse) -> (William, is born exactly on, an eclipse) -> William (10454ms) What is an eclipse? last month?s full moon 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (last month?s full moon, produced, a total lunar eclipse visible) -> last month?s full moon (10732ms) What is an eclipse? The bent strip 0.111111111111 What is an eclipse? -> $x: ($x, represent, eclipse) -> (The bent strip, possibly represents, a solar eclipse) -> The bent strip (10656ms) What is an eclipse? Klas ?hlund 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Klas ?hlund, Tracks produced, Eclipse) -> Klas ?hlund (10732ms) What is an eclipse? ten articles 0.111111111111 What is an eclipse? -> $x: ($x, describe, eclipse) -> (ten articles, describes a wide variety of, historical eclipses) -> ten articles (10472ms) What is an eclipse? SourceForge ? 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (SourceForge ?, do a search for, ?Eclipse Plugin?) -> SourceForge ? (10398ms) What is an eclipse? Brasil 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (Brasil, will create, a lunar eclipse) -> Brasil (10718ms) What is an eclipse? a prominent dark eyeline 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (a prominent dark eyeline, does, the eclipse male) -> a prominent dark eyeline (10763ms) What is an eclipse? Raymond Hakim 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Raymond Hakim, Films Produced, Eclipse) -> Raymond Hakim (3497ms) What is an eclipse? Diana Wilson 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Diana Wilson, Films Produced, Eclipse Predictions) -> Diana Wilson (10703ms) What is an eclipse? CTRL-SHIFT-F 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (CTRL-SHIFT-F, does the same in, Eclipse) -> CTRL-SHIFT-F (10609ms) What is an eclipse? the work 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (the work, to do at, Eclipse) -> the work (10576ms) What is an eclipse? files 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (files, found in, the eclipse subfolder) -> files (10490ms) What is an eclipse? Robert Walpole 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Robert Walpole, Films Produced, The Eclipse) -> Robert Walpole (10436ms) What is an eclipse? the dark Moon 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (the dark Moon, created, a partial eclipse) -> the dark Moon (10672ms) What is an eclipse? the Eclipse Public License 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (the Eclipse Public License, does, the Eclipse Foundation use) -> the Eclipse Public License (10717ms) What is an eclipse? the not-for-profit category 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (the not-for-profit category, is, Eclipse) -> the not-for-profit category (10576ms) What is an eclipse? the most stunning success stories 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (the most stunning success stories, is, Eclipse) -> the most stunning success stories (10748ms) What is an eclipse? the many capabilities 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (the many capabilities, found in, MyEclipse) -> the many capabilities (10592ms) What is an eclipse? the third one 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (the third one, is, EClipse) -> the third one (10688ms) What is an eclipse? Part 2 2. 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (Part 2 2., Create, an Eclipse project) -> Part 2 2. (10748ms) What is an eclipse? a handy feature 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (a handy feature, found in, Eclipse) -> a handy feature (10508ms) What is an eclipse? the translations 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (the translations, can be found in, the book Historical Eclipses) -> the translations (10641ms) What is an eclipse? Saros 124 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Saros 124, will continue to produce, partial eclipses) -> Saros 124 (10436ms) What is an eclipse? The drawing 0.111111111111 What is an eclipse? -> $x: ($x, represent, eclipse) -> (The drawing, represents, a solar eclipse) -> The drawing (7886ms) What is an eclipse? Java programming 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (Java programming, has been done in, Eclipse) -> Java programming (10777ms) What is an eclipse? jmc excel 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (jmc excel, failed to create, java virtual machine eclipse) -> jmc excel (10454ms) What is an eclipse? Question 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (Question, does, a solar eclipse move) -> Question (10791ms) What is an eclipse? Eclipse PDE 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (Eclipse PDE, can be found in, the Eclipse cvs) -> Eclipse PDE (10436ms) What is an eclipse? equinox 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (equinox, does bring a season of, eclipses) -> equinox (10559ms) What is an eclipse? The first picture 0.111111111111 What is an eclipse? -> $x: ($x, represent, eclipse) -> (The first picture, represents, solar eclipse) -> The first picture (10748ms) What is an eclipse? The lower back 0.111111111111 What is an eclipse? -> $x: ($x, represent, eclipse) -> (The lower back, represents, an eclipse) -> The lower back (10763ms) What is an eclipse? the series 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (the series, to produce, total eclipses) -> the series (10703ms) What is an eclipse? the possibilities 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (the possibilities, create, an eclipse plug-in) -> the possibilities (9745ms) What is an eclipse? An other Subversion aware IDE 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (An other Subversion aware IDE, is, Eclipse) -> An other Subversion aware IDE (10777ms) What is an eclipse? Installing Postgres 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (Installing Postgres, did n?t go nearly as smoothly as, Eclipse) -> Installing Postgres (10672ms) What is an eclipse? A damn good score 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (A damn good score, will be doing the musical score for, Eclipse) -> A damn good score (10525ms) What is an eclipse? John Weigand 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (John Weigand, created, the Eclipse Series) -> John Weigand (10703ms) What is an eclipse? larger wheels 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (larger wheels, creates, Eclipse GS) -> larger wheels (10576ms) What is an eclipse? The two shades 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (The two shades, create, an eclipse-like effect) -> The two shades (10717ms) What is an eclipse? an Update Site 0.111111111111 What is an eclipse? -> $x: ($x, define, eclipse) -> (an Update Site, defined in, the EasyEclipse distros) -> an Update Site (10641ms) What is an eclipse? Camelia Frieberg 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Camelia Frieberg, Films Produced, Eclipse) -> Camelia Frieberg (10688ms) What is an eclipse? applications development 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (applications development, is done in, eclipse) -> applications development (10576ms) What is an eclipse? India 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (India, found, the eclipsed Sun) -> India (10687ms) What is an eclipse? Nujabes 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Nujabes, Tracks produced, Eclipse) -> Nujabes (10625ms) What is an eclipse? the Miracleman name 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (the Miracleman name, was created by, Eclipse Comics) -> the Miracleman name (10609ms) What is an eclipse? the term eclipse 0.111111111111 What is an eclipse? -> $x: ($x, describe, eclipse) -> (the term eclipse, is used for describing, the solar eclipse) -> the term eclipse (10542ms) What is an eclipse? the new solutions people 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (the new solutions people, are finding on, Eclipse Marketplace) -> the new solutions people (7086ms) What is an eclipse? the eclipse 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (the eclipse, can be found at, the NASA Solar Eclipses page) -> the eclipse (10525ms) What is an eclipse? Polarsys 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (Polarsys, was created at, the Eclipse Foundation) -> Polarsys (5989ms) What is an eclipse? remote debugging 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (remote debugging, can be found at, RTEMS Eclipse Plug-in) -> remote debugging (10763ms) What is an eclipse? P. Bencze 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (P. Bencze, Did, the solar eclipse) -> P. Bencze (10454ms) What is an eclipse? an old series 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (an old series, produced, its last central eclipse) -> an old series (10748ms) What is an eclipse? the Eclipse and OSGi news 0.111111111111 What is an eclipse? -> $x: ($x, happen at, eclipse) -> (the Eclipse and OSGi news, is happening at, EclipseCon) -> the Eclipse and OSGi news (7886ms) What is an eclipse? Microsoft 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (Microsoft, is creating, Eclipse plug-ins) -> Microsoft (10417ms) What is an eclipse? the Northern Hemisphere 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (the Northern Hemisphere, produces, an eclipse) -> the Northern Hemisphere (10641ms) What is an eclipse? a good free tool 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (a good free tool, is, Eclipse) -> a good free tool (10777ms) What is an eclipse? const double* 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (const double*, creates, an ECLiPSe array) -> const double* (10472ms) What is an eclipse? new developers 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (new developers, continue to find, Eclipse) -> new developers (10367ms) What is an eclipse? Red Flag 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Red Flag, Tracks produced, Electric Eclipse (Tranqua remix)) -> Red Flag (10732ms) What is an eclipse? Installer 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (Installer, creates, Eclipse project files) -> Installer (10688ms) What is an eclipse? the sister class 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (the sister class, Create, a branded Eclipse IDE) -> the sister class (10576ms) What is an eclipse? Step 2 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (Step 2, create, Eclipse project) -> Step 2 (10656ms) What is an eclipse? profiteering 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (profiteering, did lead to, the eclipse) -> profiteering (10608ms) What is an eclipse? the groups 0.111111111111 What is an eclipse? -> $x: ($x, represent, eclipse) -> (the groups, represent, the next two total eclipses) -> the groups (10625ms) What is an eclipse? V?t Klus?k 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (V?t Klus?k, Films Produced, Solar Eclipse) -> V?t Klus?k (10576ms) What is an eclipse? The learner 0.111111111111 What is an eclipse? -> $x: ($x, describe, eclipse) -> (The learner, will be able to describe, solar and lunar eclipses) -> The learner (10398ms) What is an eclipse? experienced Spring users 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (experienced Spring users, will find, MyEclipse) -> experienced Spring users (4010ms) What is an eclipse? the do 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (the do, do n'ts on, eclipse day) -> the do (10454ms) What is an eclipse? dbPort project developer 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (dbPort project developer, can find, Eclipse launch file) -> dbPort project developer (10732ms) What is an eclipse? fantastic what people 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (fantastic what people, can do with, Eclipse technology) -> fantastic what people (6038ms) What is an eclipse? the large heart 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (the large heart, found in, Eclipse) -> the large heart (10508ms) What is an eclipse? brightness maps 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (brightness maps, created from, close observations of eclipses) -> brightness maps (10777ms) What is an eclipse? New Moon 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (New Moon, was, Eclipse) -> New Moon (10472ms) What is an eclipse? Xtext 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (Xtext, will create customized, Eclipse editors) -> Xtext (10592ms) What is an eclipse? Bartlett?s Childers 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (Bartlett?s Childers, was, Eclipse) -> Bartlett?s Childers (10718ms) What is an eclipse? the most popular 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (the most popular, is, Eclipse) -> the most popular (10508ms) What is an eclipse? the sky 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (the sky, will create, a solar eclipse) -> the sky (10687ms) What is an eclipse? an EJB project 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (an EJB project, would have to be created in, Eclipse) -> an EJB project (10333ms) What is an eclipse? the only alternative 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (the only alternative, is, Eclipse) -> the only alternative (10576ms) What is an eclipse? Development 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (Development, can be done with, Eclipse) -> Development (10398ms) What is an eclipse? The brackets 0.111111111111 What is an eclipse? -> $x: ($x, represent, eclipse) -> (The brackets, represent the positions of, the two eclipse points) -> The brackets (10436ms) What is an eclipse? the Update Manager 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (the Update Manager, works can be found in, Eclipse) -> the Update Manager (10688ms) What is an eclipse? I?ll 0.111111111111 What is an eclipse? -> $x: ($x, re, eclipse) -> (I?ll, be re-reading, Eclipse) -> I?ll (5989ms) What is an eclipse? the akhet sign 0.111111111111 What is an eclipse? -> $x: ($x, represent, eclipse) -> (the akhet sign, represented, a solar eclipse) -> the akhet sign (10763ms) What is an eclipse? products 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (products, has been created around, the Eclipse technology) -> products (10542ms) What is an eclipse? The next stop 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (The next stop, was, eclipse) -> The next stop (10542ms) What is an eclipse? the fainter component 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (the fainter component, was found to be, an eclipsing binary) -> the fainter component (10791ms) What is an eclipse? Kyle 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (Kyle, did the presentation in, Eclipse) -> Kyle (10367ms) What is an eclipse? the Lunar South Node 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (the Lunar South Node, produces, a Total Lunar Eclipse--visible) -> the Lunar South Node (10777ms) What is an eclipse? the JVM settings 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (the JVM settings, Find, Eclipse) -> the JVM settings (10625ms) What is an eclipse? the crankwalk problem 0.111111111111 What is an eclipse? -> $x: ($x, found, eclipse) -> (the crankwalk problem, found in, the first gen Eclipse) -> the crankwalk problem (10672ms) What is an eclipse? The character 0.111111111111 What is an eclipse? -> $x: ($x, be be, eclipse) -> (The character, is, Eclipse) -> The character (10703ms) What is an eclipse? the easiest way 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (the easiest way, is probably to create, Eclipse make targets) -> the easiest way (10656ms) What is an eclipse? Functional Prototype 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (Functional Prototype, created with, MyEclipse) -> Functional Prototype (10791ms) What is an eclipse? the Modfactor 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (the Modfactor, can be created in, the Eclipse) -> the Modfactor (6038ms) What is an eclipse? reconstruction periods 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (reconstruction periods, produced, an eclipse) -> reconstruction periods (10763ms) What is an eclipse? Sasha 0.111111111111 What is an eclipse? -> $x: ($x, produce, eclipse) -> (Sasha, Tracks produced, Eclipse (Butch remix)) -> Sasha (10791ms) What is an eclipse? The Eclipse Comet 0.111111111111 What is an eclipse? -> $x: ($x, discover, eclipse) -> (The Eclipse Comet, is discovered during, a total solar eclipse) -> The Eclipse Comet (10625ms) What is an eclipse? Lepido newsgroup 0.111111111111 What is an eclipse? -> $x: ($x, create, eclipse) -> (Lepido newsgroup, has been created at, Eclipse) -> Lepido newsgroup (10417ms) What is an eclipse? I?m sure he?ll 0.111111111111 What is an eclipse? -> $x: ($x, do, eclipse) -> (I?m sure he?ll, do a great job with, Eclipse) -> I?m sure he?ll (10625ms) What is an eclipse? the content type specified here 0.111111111111 What is an eclipse? -> $x: ($x, define, eclipse) -> (the content type specified here, is defined by, Eclipse) -> the content type specified here (10417ms) What is an eclipse? Sun -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (Sun, can be an open contributor to, Eclipse) -> Sun (10885ms) What is an eclipse? tests -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (tests, can be run from, Eclipse) -> tests (10865ms) What is an eclipse? ages -0.0 What is an eclipse? -> $x: ($x, be consider, eclipse) -> (ages, have been considering, eclipses) -> ages (10875ms) What is an eclipse? Rahu the Darkener -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (Rahu the Darkener, causes, eclipse) -> Rahu the Darkener (10875ms) What is an eclipse? the build files -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (the build files, can be run from within, Eclipse) -> the build files (10875ms) What is an eclipse? Linux -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, can be downloaded for, Linux) -> Linux (10885ms) What is an eclipse? pre-order -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (?Eclipse?, is finally available for, pre-order) -> pre-order (10924ms) What is an eclipse? A package -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (A package, can be generated from, Eclipse) -> A package (10885ms) What is an eclipse? plant structure and maturity -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is uniform for, plant structure and maturity) -> plant structure and maturity (10905ms) What is an eclipse? use -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is now ready for, use) -> use (10791ms) What is an eclipse? Java but PDT -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is for, Java but PDT) -> Java but PDT (10895ms) What is an eclipse? a major spread -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, have been photographed for, a major spread) -> a major spread (10895ms) What is an eclipse? darkness -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (darkness, are caused by, the sun?s eclipse) -> darkness (10950ms) What is an eclipse? a stand alone application -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (a stand alone application, can be run within, Eclipse) -> a stand alone application (10885ms) What is an eclipse? Google -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (Google, can improve, Eclipse) -> Google (10804ms) What is an eclipse? Describe -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (Describe, causes, solar and lunar eclipses) -> Describe (10865ms) What is an eclipse? important new beginnings -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (eclipses, should be avoided for, important new beginnings) -> important new beginnings (10875ms) What is an eclipse? major change -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipses, are the catalyst for, major change) -> major change (10895ms) What is an eclipse? a generated project -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (a generated project, can be opened in, Eclipse) -> a generated project (10914ms) What is an eclipse? change -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipses, are potent catalysts for, change) -> change (10844ms) What is an eclipse? The tests -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (The tests, can be run via, Eclipse) -> The tests (10933ms) What is an eclipse? tool integration -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is an open platform for, tool integration) -> tool integration (10844ms) What is an eclipse? no IDEs support -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (no IDEs support, can be developed within, Eclipse) -> no IDEs support (10950ms) What is an eclipse? Windows -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is now available for, Windows) -> Windows (10818ms) What is an eclipse? An image editor -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (An image editor, can be installed separately in, Eclipse) -> An image editor (10942ms) What is an eclipse? The plug-in -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (The plug-in, can also be installed in, Eclipse) -> The plug-in (10942ms) What is an eclipse? Flex Builder -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is the basis for, Flex Builder) -> Flex Builder (10855ms) What is an eclipse? Violet -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (Violet, can reside in, Eclipse) -> Violet (10942ms) What is an eclipse? the clues -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (the clues, was causing, these eclipses) -> the clues (10895ms) What is an eclipse? mind -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (mind, can be performed during, eclipse) -> mind (10818ms) What is an eclipse? Models -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (Models, can readily be loaded into, Eclipse) -> Models (10831ms) What is an eclipse? profound change -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipses, are catalysts for, profound change) -> profound change (10950ms) What is an eclipse? Workbench -0.0 What is an eclipse? -> $x: ($x, be term for, eclipse) -> (Workbench, is the term used for, the generic Eclipse) -> Workbench (10895ms) What is an eclipse? Scala and Android -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is OK for learning, Scala and Android) -> Scala and Android (10914ms) What is an eclipse? a double system -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (a double system, was causing, an eclipse or occultation) -> a double system (10959ms) What is an eclipse? free download and works -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is available for, free download and works) -> free download and works (10905ms) What is an eclipse? the Eclipse IDE -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is a plugin for, the Eclipse IDE) -> the Eclipse IDE (10895ms) What is an eclipse? the implementation -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, was chosen for, the implementation) -> the implementation (10844ms) What is an eclipse? adult programming -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (adult programming, can easily get access to, ECLIPSE) -> adult programming (10924ms) What is an eclipse? ShareMedia -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (ShareMedia, can now be installed in, Eclipse) -> ShareMedia (10914ms) What is an eclipse? the users -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (the users, can work on, Eclipse) -> the users (10855ms) What is an eclipse? C++ programming -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is now ready for, C++ programming) -> C++ programming (10933ms) What is an eclipse? a short period -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is for, a short period) -> a short period (10950ms) What is an eclipse? fresh fish -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is known for, fresh fish) -> fresh fish (10855ms) What is an eclipse? the 2008 Teens -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is a nominee for, the 2008 Teens) -> the 2008 Teens (10875ms) What is an eclipse? buying stocks -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (eclipses, are bad days for, buying stocks) -> buying stocks (10791ms) What is an eclipse? MS SQL Server -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (MS SQL Server, caused by, Eclipse limitations) -> MS SQL Server (10831ms) What is an eclipse? a lot -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is a host for, a lot) -> a lot (10865ms) What is an eclipse? eight tubs -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse?, is up for, eight tubs) -> eight tubs (10905ms) What is an eclipse? surprises -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipses, are known for, surprises) -> surprises (10942ms) What is an eclipse? Stonehenge -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (Stonehenge, can be used to predict, eclipses) -> Stonehenge (10895ms) What is an eclipse? the first time -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is run for, the first time) -> the first time (10914ms) What is an eclipse? Create Patch Patch files -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (Create Patch Patch files, can be easily generated from, Eclipse) -> Create Patch Patch files (10804ms) What is an eclipse? Krishna -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (Krishna, causes, a momentary eclipse) -> Krishna (10933ms) What is an eclipse? the emulator -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (the emulator, can be integrated very easily into, Eclipse) -> the emulator (10885ms) What is an eclipse? seven Razzies -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, has been nominated for, seven Razzies) -> seven Razzies (10855ms) What is an eclipse? long periods -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, had been running for, long periods) -> long periods (10905ms) What is an eclipse? AFL 4 -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is back for, AFL 4) -> AFL 4 (10818ms) What is an eclipse? reliability -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, was its reputation for, reliability) -> reliability (10855ms) What is an eclipse? development -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, can be used for, development) -> development (10831ms) What is an eclipse? the bitch -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (the bitch, caused, an eclipse) -> the bitch (10895ms) What is an eclipse? The dimming -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (The dimming, is caused by, an eclipse) -> The dimming (10855ms) What is an eclipse? the application -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (the application, can be debugged in, Eclipse) -> the application (10875ms) What is an eclipse? the same nature -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (the same nature, appear to have caused, the eclipse) -> the same nature (10941ms) What is an eclipse? A Eclipse RCP application -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (A Eclipse RCP application, can run as is also in, Eclipse) -> A Eclipse RCP application (10818ms) What is an eclipse? code editing -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is used for, code editing) -> code editing (10942ms) What is an eclipse? The sources -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (The sources, can be checked out using, eclipse) -> The sources (10804ms) What is an eclipse? PHP -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is for working in, PHP) -> PHP (10914ms) What is an eclipse? experienced architects and programmers -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is intended for, experienced architects and programmers) -> experienced architects and programmers (10959ms) What is an eclipse? A Eclipse RAP application -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (A Eclipse RAP application, can run as is also in, Eclipse) -> A Eclipse RAP application (10865ms) What is an eclipse? a shadow -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (a shadow, caused by, an eclipse) -> a shadow (10942ms) What is an eclipse? ruddy hues -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (ruddy hues, caused by, a solar eclipse) -> ruddy hues (10875ms) What is an eclipse? the five trilithons -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (the five trilithons, can also be used to predict, eclipses) -> the five trilithons (10865ms) What is an eclipse? the corona -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (the corona, can be seen only during, eclipses) -> the corona (10885ms) What is an eclipse? The minima -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (The minima, were probably caused by, the eclipses) -> The minima (10865ms) What is an eclipse? a long time -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, was leading for, a long time) -> a long time (10950ms) What is an eclipse? E.g -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (E.g, is the cause of, eclipse) -> E.g (10865ms) What is an eclipse? sale -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, was already available for, sale) -> sale (10914ms) What is an eclipse? the exposure -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (eclipses, are equally known for, the exposure) -> the exposure (10818ms) What is an eclipse? the conical mountain -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (the conical mountain, causes, nights and eclipses) -> the conical mountain (10895ms) What is an eclipse? code -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (code, automatically can really slow down, Eclipse) -> code (10924ms) What is an eclipse? a little -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, has been around for, a little) -> a little (10950ms) What is an eclipse? multi-language development -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is really good for, multi-language development) -> multi-language development (10914ms) What is an eclipse? The -showLocation parameter -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (The -showLocation parameter, causes, Eclipse) -> The -showLocation parameter (10818ms) What is an eclipse? the moment -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is completely unstable for, the moment) -> the moment (10804ms) What is an eclipse? Java development -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, was used for, Java development) -> Java development (10831ms) What is an eclipse? none -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (none, is large enough to cause, an eclipse) -> none (10885ms) What is an eclipse? JUnit unit tests -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (JUnit unit tests, can be run in, Eclipse) -> JUnit unit tests (10905ms) What is an eclipse? the DOS operating system -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is available for, the DOS operating system) -> the DOS operating system (10942ms) What is an eclipse? the building tasks -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (the building tasks, can be accomplished also from, Eclipse) -> the building tasks (10942ms) What is an eclipse? events -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (events, can be linked directly to, eclipses) -> events (10905ms) What is an eclipse? The gleeful cackling -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (The gleeful cackling, alone would cause, a solar eclipse) -> The gleeful cackling (10804ms) What is an eclipse? a Maven archetype -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (a Maven archetype, can be directly imported in, Eclipse) -> a Maven archetype (10818ms) What is an eclipse? a longer period -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (eclipses, can be felt for, a longer period) -> a longer period (10804ms) What is an eclipse? The movie -0.0 What is an eclipse? -> $x: ($x, be market, eclipse) -> (The movie, is also marketed as, ?Twilight Eclipse?) -> The movie (10831ms) What is an eclipse? too many plug-ins -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (too many plug-ins, can slow down, Eclipse) -> too many plug-ins (10933ms) What is an eclipse? ?Europe -0.0 What is an eclipse? -> $x: ($x, be market, eclipse) -> (?Europe, is such a great market for, the Eclipse 500) -> ?Europe (10923ms) What is an eclipse? Explain -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (Explain, causes, solar and lunar eclipses) -> Explain (10933ms) What is an eclipse? Mac , Windows or Unix -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is available for, Mac , Windows or Unix) -> Mac , Windows or Unix (10865ms) What is an eclipse? radiotherapy treatment planning -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, has been adopted for, radiotherapy treatment planning) -> radiotherapy treatment planning (10924ms) What is an eclipse? Generator workflows -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (Generator workflows, can be easily run from, Eclipse) -> Generator workflows (10924ms) What is an eclipse? Artemis -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (Artemis, cause, another solar eclipse Artemist) -> Artemis (10831ms) What is an eclipse? one week FIT departures -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is available for, one week FIT departures) -> one week FIT departures (10895ms) What is an eclipse? irregular celestial motion -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (irregular celestial motion, causes, an eclipse) -> irregular celestial motion (10924ms) What is an eclipse? worst picture and worst screen ensemble -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is up for, worst picture and worst screen ensemble) -> worst picture and worst screen ensemble (10914ms) What is an eclipse? J2ME midlets -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (J2ME midlets, can now be developed in, Eclipse) -> J2ME midlets (10933ms) What is an eclipse? Java source -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is great for editing, Java source) -> Java source (10804ms) What is an eclipse? a lunar event -0.0 What is an eclipse? -> $x: ($x, be consider, eclipse) -> (a lunar event, is considered, an eclipse) -> a lunar event (10831ms) What is an eclipse? dragons -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (dragons, caused, eclipses) -> dragons (10804ms) What is an eclipse? The astronomers -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (The astronomers, can foretell, eclipses) -> The astronomers (10875ms) What is an eclipse? the community -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is only goodness for, the community) -> the community (10905ms) What is an eclipse? The test -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (The test, can be executed with, Eclipse) -> The test (10950ms) What is an eclipse? Mylyn?s frameworks -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (Mylyn?s frameworks, can run outside of, Eclipse) -> Mylyn?s frameworks (10844ms) What is an eclipse? Java files -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is good for, Java files) -> Java files (10933ms) What is an eclipse? further study -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, are provided for, further study) -> further study (10855ms) What is an eclipse? Beau -0.0 What is an eclipse? -> $x: ($x, be market, eclipse) -> (Beau, was Marketing Director for, Dean?s Eclipse) -> Beau (10959ms) What is an eclipse? flares -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (flares, could have been caused by, an eclipsing companion) -> flares (10855ms) What is an eclipse? Several JProfiler-related settings -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (Several JProfiler-related settings, can be adjusted in, eclipse) -> Several JProfiler-related settings (10950ms) What is an eclipse? a new Android Virtual Device -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (a new Android Virtual Device, can use in, Eclipse) -> a new Android Virtual Device (10804ms) What is an eclipse? the slickness -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (the slickness, can be attributed to, Eclipse) -> the slickness (10914ms) What is an eclipse? Even supposing Thales -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (Even supposing Thales, had known the cause of, eclipses) -> Even supposing Thales (10831ms) What is an eclipse? a build management tool -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (a build management tool, can be driven from, Eclipse) -> a build management tool (10895ms) What is an eclipse? satisfied ? -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (satisfied ?, is caused by, Helios eclipse u) -> satisfied ? (10959ms) What is an eclipse? demonstrations -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is used for coding, demonstrations) -> demonstrations (10855ms) What is an eclipse? release -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is scheduled for, release) -> release (10914ms) What is an eclipse? The latest source code -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (The latest source code, can be imported into, eclipse) -> The latest source code (10905ms) What is an eclipse? the alignment -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (the alignment, to cause, an eclipse) -> the alignment (10875ms) What is an eclipse? free -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is available for, free) -> free (10959ms) What is an eclipse? ? Organize Imports ? -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is support for, ? Organize Imports ?) -> ? Organize Imports ? (10818ms) What is an eclipse? editing -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, would be used for, editing) -> editing (10950ms) What is an eclipse? Java peeps -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, was only for, Java peeps) -> Java peeps (10818ms) What is an eclipse? permanent change -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipses, are catalysts for, permanent change) -> permanent change (10875ms) What is an eclipse? the error -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (the error, was caused by, Eclipse) -> the error (10885ms) What is an eclipse? Mars -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (Mars, so caused a great number of, solar eclipses) -> Mars (10804ms) What is an eclipse? the 400D -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (the 400D, can be damaged by, Eclipse) -> the 400D (10804ms) What is an eclipse? The code -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (The code, can be imported into, Eclipse) -> The code (10844ms) What is an eclipse? the earth -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (the earth, causes, an eclipse of the moon) -> the earth (10950ms) What is an eclipse? plug-ins -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (plug-ins, can be installed in, Eclipse) -> plug-ins (10905ms) What is an eclipse? SOLAR & LUNAR ECLIPSES -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (SOLAR & LUNAR ECLIPSES, causes, eclipses) -> SOLAR & LUNAR ECLIPSES (10959ms) What is an eclipse? a quality experience -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, are needed for, a quality experience) -> a quality experience (10855ms) What is an eclipse? the dragon -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (the dragon, to cause, eclipses) -> the dragon (10865ms) What is an eclipse? the movement -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (the movement, is the cause of, eclipses) -> the movement (10885ms) What is an eclipse? An earth -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (An earth, caused, eclipse) -> An earth (10905ms) What is an eclipse? Deimos -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (Deimos, causes, a solar eclipse) -> Deimos (10875ms) What is an eclipse? the darkness -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (the darkness, was caused by, a solar eclipse) -> the darkness (10942ms) What is an eclipse? Enterprise development -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is used for, Enterprise development) -> Enterprise development (10959ms) What is an eclipse? a summer release -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is set for, a summer release) -> a summer release (10942ms) What is an eclipse? the resulting script -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (the resulting script, can then be used in, eclipse) -> the resulting script (10855ms) What is an eclipse? two mouse clicks -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (eclipse, is for, two mouse clicks) -> two mouse clicks (10933ms) What is an eclipse? The patch -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (The patch, causes, the Eclipse classpath) -> The patch (10942ms) What is an eclipse? the Eclipse platform and IDE -0.0 What is an eclipse? -> $x: ($x, be consider, eclipse) -> (the Eclipse platform and IDE, can be considered part of, Eclipse) -> the Eclipse platform and IDE (10924ms) What is an eclipse? Downloads Mylyn WikiText -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (Downloads Mylyn WikiText, can be installed into, Eclipse) -> Downloads Mylyn WikiText (10831ms) What is an eclipse? the Bugdel pointcuts -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (the Bugdel pointcuts, can only be used from within, Eclipse) -> the Bugdel pointcuts (10924ms) What is an eclipse? the monster -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (the monster, is supposed to cause, eclipses) -> the monster (10959ms) What is an eclipse? an ?exeligmos? -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (an ?exeligmos?, will cause, the next solar eclipse) -> an ?exeligmos? (10959ms) What is an eclipse? a June 2010 release -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is slated for, a June 2010 release) -> a June 2010 release (10791ms) What is an eclipse? the demon -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (the demon, causes, the eclipse) -> the demon (10959ms) What is an eclipse? 1st century CE -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (1st century CE, caused, the eclipse) -> 1st century CE (10818ms) What is an eclipse? The Eclipse -0.0 What is an eclipse? -> $x: ($x, be consider, eclipse) -> (The Eclipse, is considered, a Solar Eclipse) -> The Eclipse (10885ms) What is an eclipse? Eclipse project -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (Eclipse project, can be opened in, Eclipse) -> Eclipse project (10942ms) What is an eclipse? Explore -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (Explore, causes, eclipses) -> Explore (10844ms) What is an eclipse? the studio -0.0 What is an eclipse? -> $x: ($x, be consider, eclipse) -> (the studio, is considering making, third book Eclipse) -> the studio (10875ms) What is an eclipse? the Groovy and Java work -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is great for, the Groovy and Java work) -> the Groovy and Java work (10844ms) What is an eclipse? preferences page -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (preferences page, caused exception in, Eclipse 3.1.1) -> preferences page (10855ms) What is an eclipse? Java -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is an IDE for, Java) -> Java (10950ms) What is an eclipse? the exit -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, was heading for, the exit) -> the exit (10875ms) What is an eclipse? platforms -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (platforms, can be developed in, eclipse) -> platforms (10875ms) What is an eclipse? Java programmers -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is providing for, Java programmers) -> Java programmers (10905ms) What is an eclipse? Eclipse Client-side Web UI code -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (Eclipse Client-side Web UI code, can be debugged in, Eclipse) -> Eclipse Client-side Web UI code (10905ms) What is an eclipse? Chemistry experiment -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (Chemistry experiment, causes, eclipse) -> Chemistry experiment (10933ms) What is an eclipse? a new Mac -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (a new Mac, can actually run things like, Eclipse) -> a new Mac (10818ms) What is an eclipse? Service development APIs -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (Service development APIs, can be used in, Eclipse) -> Service development APIs (10831ms) What is an eclipse? The variations -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (The variations, can be caused by, eclipses) -> The variations (10914ms) What is an eclipse? Health problems -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (Health problems, can manifest with, eclipses) -> Health problems (10855ms) What is an eclipse? a small RCP ?application ? -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (a small RCP ?application ?, can started from, eclipse) -> a small RCP ?application ? (10905ms) What is an eclipse? simple editing projects -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, could be used for, simple editing projects) -> simple editing projects (10844ms) What is an eclipse? such a phenomenon -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (such a phenomenon, was caused by, an eclipse) -> such a phenomenon (10885ms) What is an eclipse? EIGHT awards -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is nominated for, EIGHT awards) -> EIGHT awards (10914ms) What is an eclipse? Mylyn WikiText -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (Mylyn WikiText, can be installed into, Eclipse) -> Mylyn WikiText (10950ms) What is an eclipse? the Java 7 -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, will be voting for, the Java 7) -> the Java 7 (10905ms) What is an eclipse? a mom -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is sucktastic for, a mom) -> a mom (10914ms) What is an eclipse? meditation -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipses, are excellent times for, meditation) -> meditation (10831ms) What is an eclipse? the dead , -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (the dead ,, cause, eclipses) -> the dead , (10933ms) What is an eclipse? a dragon -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (a dragon, was supposed to cause, eclipses) -> a dragon (10885ms) What is an eclipse? unison -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (unison, caused, an eclipse) -> unison (10865ms) What is an eclipse? the god -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (the god, could cause, eclipses) -> the god (10885ms) What is an eclipse? any platform -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (any platform, can be used to build, Eclipse) -> any platform (10875ms) What is an eclipse? RSKRX62T boards -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (RSKRX62T boards, can only be debugged in, Eclipse) -> RSKRX62T boards (10804ms) What is an eclipse? download -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, was made available for, download) -> download (10959ms) What is an eclipse? the build folder -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (the build folder, can be imported to, Eclipse) -> the build folder (10959ms) What is an eclipse? the shadow -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (the shadow, causes, a lunar eclipse) -> the shadow (10895ms) What is an eclipse? 10 years -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, has been around for, 10 years) -> 10 years (10959ms) What is an eclipse? Moon -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (Moon, caused, eclipse) -> Moon (10804ms) What is an eclipse? Ingres Icebreaker -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is a perfect match for, Ingres Icebreaker) -> Ingres Icebreaker (10818ms) What is an eclipse? even new programmers -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (even new programmers, can make effective use of, Eclipse) -> even new programmers (10804ms) What is an eclipse? the Rahu planet -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (the Rahu planet, causes, an eclipse) -> the Rahu planet (10885ms) What is an eclipse? Chinese astrologers -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (Chinese astrologers, caused, eclipses) -> Chinese astrologers (10855ms) What is an eclipse? Python -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is used for, Python) -> Python (10831ms) What is an eclipse? the beam -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (the beam, causes, an eclipse) -> the beam (10923ms) What is an eclipse? Rahu -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (Rahu, said to be the cause of, eclipses) -> Rahu (10933ms) What is an eclipse? fixed license -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, is suitable for, fixed license) -> fixed license (10905ms) What is an eclipse? a demon -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (a demon, causes, eclipses) -> a demon (10905ms) What is an eclipse? the Kapeet -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (the Kapeet, caused, eclipses) -> the Kapeet (10818ms) What is an eclipse? example how Maven goals -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (example how Maven goals, can be executed from within, Eclipse) -> example how Maven goals (10895ms) What is an eclipse? Best Business Email -0.0 What is an eclipse? -> $x: (eclipse, be for, $x) -> (Eclipse, are also up for, Best Business Email) -> Best Business Email (10895ms) What is an eclipse? out -0.0 What is an eclipse? -> $x: ($x, cause, eclipse) -> (out, causes, an eclipse) -> out (10865ms) What is an eclipse? Java code -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (Java code, can be extended in, Eclipse) -> Java code (10950ms) What is an eclipse? The EA model -0.0 What is an eclipse? -> $x: ($x, can, eclipse) -> (The EA model, can be used outside of, Eclipse) -> The EA model (10818ms) What is an eclipse? MoonWatcher guide -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (MoonWatcher guide, contains articles related to, eclipses) -> MoonWatcher guide (10999ms) What is an eclipse? OOME -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (OOME, is probably some other part of, Eclipse) -> OOME (11046ms) What is an eclipse? Lynn -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (Lynn, has been a fantastic part of, the Eclipse Foundation) -> Lynn (10976ms) What is an eclipse? Io -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (Io, is in, eclipse) -> Io (11053ms) What is an eclipse? the engagement wing -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (the engagement wing, is in, eclipse) -> the engagement wing (11053ms) What is an eclipse? the three planets -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (the three planets, are in, eclipse) -> the three planets (10984ms) What is an eclipse? York -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (York, was in, eclipse) -> York (10976ms) What is an eclipse? Each category -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (Each category, contains a list of, Eclipse) -> Each category (11007ms) What is an eclipse? Missouri -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (Missouri, Contains, Eclipse School of Cosmetology and Barbering) -> Missouri (11053ms) What is an eclipse? the avant-garde -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (the avant-garde, was in, eclipse) -> the avant-garde (11046ms) What is an eclipse? 31 -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (31, contain information on, eclipses) -> 31 (11014ms) What is an eclipse? Enceladus -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (Enceladus, is in, eclipse) -> Enceladus (11039ms) What is an eclipse? The Church -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (The Church, will be in, Eclipse) -> The Church (11059ms) What is an eclipse? Canada -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (Canada, contained, several eclipse reports) -> Canada (11007ms) What is an eclipse? the features -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (the features, are in, Eclipse) -> the features (10992ms) What is an eclipse? a reasonably self -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (a reasonably self, contained, excerpt from Eclipse Court) -> a reasonably self (11022ms) What is an eclipse? the arts -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (the arts, is in, eclipse) -> the arts (10984ms) What is an eclipse? Pecos County -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (Pecos County, Contains, Canon Ranch Railroad Eclipse Windmill) -> Pecos County (11053ms) What is an eclipse? version 10 -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (version 10, contains, MyEclipse-related fixes and improvements) -> version 10 (11022ms) What is an eclipse? Each bulletin -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (Each bulletin, contains, detailed eclipse predictions) -> Each bulletin (11022ms) What is an eclipse? socialism -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (socialism, is in, eclipse) -> socialism (11007ms) What is an eclipse? 9:00 ? -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (9:00 ?, was the most challenging part of, Eclipse) -> 9:00 ? (10967ms) What is an eclipse? Jim -0.111111111111 What is an eclipse? -> $x: ($x, be involve in, eclipse) -> (Jim, is heavily involved in, the Eclipse project) -> Jim (11053ms) What is an eclipse? DDMS -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (DDMS, is part of, the ADT Eclipse plug-in) -> DDMS (11046ms) What is an eclipse? the Sun or Moon -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (the Sun or Moon, is in, eclipse) -> the Sun or Moon (10992ms) What is an eclipse? CVS support -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (CVS support, is already part of, the standard Eclipse platform) -> CVS support (10992ms) What is an eclipse? Epicurus -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (Epicurus, was in, eclipse) -> Epicurus (11032ms) What is an eclipse? public realm -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (public realm, is in, eclipse) -> public realm (10992ms) What is an eclipse? Ben -0.111111111111 What is an eclipse? -> $x: ($x, be involve in, eclipse) -> (Ben, has been deeply involved in, the Eclipse community) -> Ben (10967ms) What is an eclipse? a self -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (a self, contained, eclipse maven project) -> a self (10976ms) What is an eclipse? Peyer -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (Peyer, was in, eclipse) -> Peyer (10967ms) What is an eclipse? a zip file -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (a zip file, containing, an Eclipse project) -> a zip file (10999ms) What is an eclipse? EclipseLink -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (EclipseLink, is part of, the Eclipse ecosystem) -> EclipseLink (11022ms) What is an eclipse? an Inex series -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (an Inex series, contains about, 780 eclipses) -> an Inex series (10976ms) What is an eclipse? An Inex family -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (An Inex family, contains much, more eclipses) -> An Inex family (10999ms) What is an eclipse? Kasich -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (Kasich, is in, eclipse) -> Kasich (11014ms) What is an eclipse? Holy Mother Church -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (Holy Mother Church, is in, eclipse) -> Holy Mother Church (11053ms) What is an eclipse? Suffolk -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (Suffolk, Contains, Eclipse) -> Suffolk (10984ms) What is an eclipse? Cardus -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (Cardus, is in, eclipse) -> Cardus (10976ms) What is an eclipse? The Church -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (The Church, will be in, Eclipse) -> The Church (11053ms) What is an eclipse? a persoanl planet -0.111111111111 What is an eclipse? -> $x: ($x, be involve in, eclipse) -> (a persoanl planet, is involved in, an eclipse) -> a persoanl planet (11039ms) What is an eclipse? the spacecraft -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (the spacecraft, is in, eclipse) -> the spacecraft (11032ms) What is an eclipse? less than 60 seconds -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (less than 60 seconds, are all a part of, the Eclipse service) -> less than 60 seconds (10984ms) What is an eclipse? Each series -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (Each series, contains, 70 or more eclipses) -> Each series (11053ms) What is an eclipse? the end -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (the end, will be part of, the Eclipse Galileo annual release) -> the end (11046ms) What is an eclipse? Thomism -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (Thomism, is in, eclipse) -> Thomism (11039ms) What is an eclipse? the campus -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (the campus, was in, eclipse) -> the campus (11014ms) What is an eclipse? eclipseme .org -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (eclipseme .org, is now part of, PlanetEclipse) -> eclipseme .org (10976ms) What is an eclipse? The eclipse-egit package -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (The eclipse-egit package, contains, Eclipse plugins) -> The eclipse-egit package (11039ms) What is an eclipse? sure the selected directory -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (sure the selected directory, contains, the Eclipse executable) -> sure the selected directory (10976ms) What is an eclipse? Jewish fortunes -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (Jewish fortunes, were in, eclipse) -> Jewish fortunes (10984ms) What is an eclipse? JNode -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (JNode, contains, several Eclipse projects) -> JNode (10967ms) What is an eclipse? p2 -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (p2, is part of, Eclipse) -> p2 (10984ms) What is an eclipse? August -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (August, contains, the Solar and Lunar Eclipse) -> August (11007ms) What is an eclipse? The database -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (The database, contains, 24085 eclipses) -> The database (11032ms) What is an eclipse? the directory -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (the directory, contains, Eclipse) -> the directory (11025ms) What is an eclipse? the JUnit support -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (the JUnit support, has been a standard part of, Eclipse) -> the JUnit support (11053ms) What is an eclipse? the sun and moon -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (the sun and moon, are in, eclipse) -> the sun and moon (11007ms) What is an eclipse? al Qaeda -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (al Qaeda, is in, eclipse) -> al Qaeda (11007ms) What is an eclipse? The engineers -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (The engineers, are ] in, Eclipse) -> The engineers (11032ms) What is an eclipse? the Monitor -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (the Monitor, was in, eclipse) -> the Monitor (11053ms) What is an eclipse? the ?Tent Scene ? -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (the ?Tent Scene ?, was his favourite part of, Eclipse) -> the ?Tent Scene ? (10967ms) What is an eclipse? joy -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (joy, is in, eclipse) -> joy (11046ms) What is an eclipse? the Eclipse Foundation Board -0.111111111111 What is an eclipse? -> $x: ($x, be involve in, eclipse) -> (the Eclipse Foundation Board, has been involved in, Eclipse) -> the Eclipse Foundation Board (11039ms) What is an eclipse? the West -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (the West, are in, eclipse) -> the West (11032ms) What is an eclipse? Green -0.111111111111 What is an eclipse? -> $x: ($x, be involve in, eclipse) -> (Green, is deeply involved in, the Eclipse community) -> Green (11014ms) What is an eclipse? The project -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (The project, contains, all necessary Eclipse project files) -> The project (11032ms) What is an eclipse? Gutheinz -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (Gutheinz, was part of, Operation Lunar Eclipse) -> Gutheinz (11046ms) What is an eclipse? the time -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (the time, was in, eclipse) -> the time (11022ms) What is an eclipse? United States of America -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (United States of America, Contains, Eclipse School of Cosmetology and Barbering) -> United States of America (10992ms) What is an eclipse? the house in your birthchart -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (the house in your birthchart, contains, the eclipse degree) -> the house in your birthchart (10984ms) What is an eclipse? the Church -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (the Church, would be in, eclipse) -> the Church (11022ms) What is an eclipse? Cape Girardeau -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (Cape Girardeau, Contains, Eclipse School of Cosmetology and Barbering) -> Cape Girardeau (11032ms) What is an eclipse? MSE -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (MSE, is part of, the Magillem Eclipse) -> MSE (11046ms) What is an eclipse? 11:58 -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (11:58, AM in, Eclipse) -> 11:58 (10967ms) What is an eclipse? the Armstrong spirit -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (the Armstrong spirit, was in, eclipse) -> the Armstrong spirit (10984ms) What is an eclipse? sweetener -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (sweetener, is in, Eclipse) -> sweetener (10976ms) What is an eclipse? X10DT 2.1.1 -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (X10DT 2.1.1, contain, Eclipse) -> X10DT 2.1.1 (11007ms) What is an eclipse? FDT -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (FDT, is part of, the Eclipse community) -> FDT (10959ms) What is an eclipse? The sun -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (The sun, was in, eclipse) -> The sun (10992ms) What is an eclipse? the right-wing anti-Semitism -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (the right-wing anti-Semitism, is in, eclipse) -> the right-wing anti-Semitism (11039ms) What is an eclipse? IDE weirdness -0.111111111111 What is an eclipse? -> $x: ($x, be n, eclipse) -> (IDE weirdness, is n?t unique to, Eclipse) -> IDE weirdness (10999ms) What is an eclipse? China -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (China, was in, eclipse) -> China (11015ms) What is an eclipse? Secret Government -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (Secret Government, was in, eclipse) -> Secret Government (11046ms) What is an eclipse? Howard?s daughter -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (Howard?s daughter, is in, Eclipse) -> Howard?s daughter (11053ms) What is an eclipse? Texas -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (Texas, Contains, Eclipse) -> Texas (10984ms) What is an eclipse? A Capitol Hill empire -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (A Capitol Hill empire, is in, eclipse) -> A Capitol Hill empire (11032ms) What is an eclipse? multiple people -0.111111111111 What is an eclipse? -> $x: ($x, be involve in, eclipse) -> (multiple people, are involved In, Eclipse) -> multiple people (10984ms) What is an eclipse? the luminaries -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (the luminaries, are in, eclipse) -> the luminaries (11007ms) What is an eclipse? The various editors -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (The various editors, are part of, the Eclipse platform) -> The various editors (10992ms) What is an eclipse? the above sentence -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (the above sentence, contains, the words simple and Eclipse) -> the above sentence (11015ms) What is an eclipse? The Gallery page -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (The Gallery page, contains albums of, new eclipse maps) -> The Gallery page (11046ms) What is an eclipse? the ?project-android ? folder -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (the ?project-android ? folder, will contain, the Eclipse project) -> the ?project-android ? folder (10999ms) What is an eclipse? the photography club scene -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (the photography club scene, was in, eclipse) -> the photography club scene (11022ms) What is an eclipse? the SWT toolkit -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (the SWT toolkit, is part of, Eclipse) -> the SWT toolkit (11007ms) What is an eclipse? New Mexico -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (New Mexico, Contains, Moriarty Eclipse Windmill) -> New Mexico (11046ms) What is an eclipse? user-friendly consumer sex -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (user-friendly consumer sex, were in, eclipse) -> user-friendly consumer sex (11015ms) What is an eclipse? the accompanying boxes -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (the accompanying boxes, contain the time of, mid-eclipse) -> the accompanying boxes (11039ms) What is an eclipse? new APIs -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (new APIs, were part of, the Eclipse Galileo release) -> new APIs (11014ms) What is an eclipse? Subversive -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (Subversive, is now part of, the Eclipse project) -> Subversive (11039ms) What is an eclipse? Al-Qaeda -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (Al-Qaeda, was in, eclipse) -> Al-Qaeda (11039ms) What is an eclipse? CVS -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (CVS, is a native part of, Eclipse) -> CVS (10992ms) What is an eclipse? Riena -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (Riena, is also part of, the EclipseRT top level project) -> Riena (10992ms) What is an eclipse? Torrance County -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (Torrance County, Contains, Moriarty Eclipse Windmill) -> Torrance County (11007ms) What is an eclipse? John -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (John, has been a part of, Eclipse) -> John (10967ms) What is an eclipse? the IMF -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (the IMF, is in, eclipse) -> the IMF (11022ms) What is an eclipse? The good times -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (The good times, are in, eclipse) -> The good times (11039ms) What is an eclipse? nice people -0.111111111111 What is an eclipse? -> $x: ($x, be involve in, eclipse) -> (nice people, are all involved in, Eclipse) -> nice people (11053ms) What is an eclipse? Greg -0.111111111111 What is an eclipse? -> $x: ($x, be involve in, eclipse) -> (Greg, has been involved in, Eclipse tools development) -> Greg (11046ms) What is an eclipse? each album -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (each album, contains, significant eclipse maps) -> each album (11022ms) What is an eclipse? Atlanta -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (Atlanta, Contains, Eclipse di Luna - Miami Circle) -> Atlanta (11046ms) What is an eclipse? Eclipse RCP -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (Eclipse RCP, is the part of, Eclipse) -> Eclipse RCP (11046ms) What is an eclipse? The moon -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (The moon, was in, eclipse) -> The moon (11039ms) What is an eclipse? Edward and Jacob -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (Edward and Jacob, is a crucial part of, Eclipse) -> Edward and Jacob (11032ms) What is an eclipse? Jubula -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (Jubula, is a part of, the new Eclipse) -> Jubula (11046ms) What is an eclipse? the faith -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (the faith, is in, eclipse) -> the faith (11053ms) What is an eclipse? The brunch event -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (The brunch event, was part of, Eclipse Week) -> The brunch event (11058ms) What is an eclipse? Jasper County -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (Jasper County, Contains, Eclipse) -> Jasper County (10999ms) What is an eclipse? Mercury -0.111111111111 What is an eclipse? -> $x: ($x, be involve in, eclipse) -> (Mercury, was involved in, the eclipse patterns) -> Mercury (11032ms) What is an eclipse? The Tories -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (The Tories, were in, eclipse) -> The Tories (11053ms) What is an eclipse? just-announced -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (just-announced, will be part of, the Eclipse Paho M2M project) -> just-announced (11032ms) What is an eclipse? the firm -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (the firm, has been an instrumental part of, the Eclipse team) -> the firm (11022ms) What is an eclipse? the planet -0.111111111111 What is an eclipse? -> $x: ($x, be involve in, eclipse) -> (the planet, will be involved in, the lunar and solar eclipses) -> the planet (10967ms) What is an eclipse? 2200 -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (2200, contains Besselian elements for, the 570 solar eclipses) -> 2200 (10976ms) What is an eclipse? Perspectives and Views -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (Perspectives and Views, as is most every part of, Eclipse) -> Perspectives and Views (10967ms) What is an eclipse? the Georgian style -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (the Georgian style, was in, eclipse) -> the Georgian style (11032ms) What is an eclipse? organizations -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (organizations, are part of, the Eclipse community) -> organizations (11022ms) What is an eclipse? The first event -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (The first event, is part of, EclipseCon 2008) -> The first event (11007ms) What is an eclipse? commands -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (commands, are part of, eclipse) -> commands (11039ms) What is an eclipse? the North Node Uranus -0.111111111111 What is an eclipse? -> $x: ($x, be involve in, eclipse) -> (the North Node Uranus, is involved in, this eclipse) -> the North Node Uranus (10992ms) What is an eclipse? Joyful energy -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (Joyful energy, is part of, this eclipse) -> Joyful energy (10992ms) What is an eclipse? BIRT -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (BIRT, is part of, the Eclipse project) -> BIRT (10984ms) What is an eclipse? anti-Semitism -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (anti-Semitism, is in, eclipse) -> anti-Semitism (10967ms) What is an eclipse? Virginia -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (Virginia, Contains, Eclipse) -> Virginia (11015ms) What is an eclipse? sankranti or surya -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (sankranti or surya, is in, eclipse) -> sankranti or surya (10976ms) What is an eclipse? a page -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (a page, containing, 10 years of eclipses) -> a page (10992ms) What is an eclipse? ? needs -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (? needs, were in, eclipse) -> ? needs (11014ms) What is an eclipse? careful memory -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (careful memory, is in, eclipse) -> careful memory (11015ms) What is an eclipse? the system -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (the system, is in, eclipse) -> the system (11039ms) What is an eclipse? The planet Mercury -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (The planet Mercury, will also be part of, this eclipse pattern) -> The planet Mercury (11007ms) What is an eclipse? the Wealth -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (the Wealth, is part of, ?the casual eclipse) -> the Wealth (10959ms) What is an eclipse? Tweet -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (Tweet, must contain, the ?#SpectreEclipse? hashtag) -> Tweet (10999ms) What is an eclipse? Samuel Schmucker -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (Samuel Schmucker, was in, eclipse) -> Samuel Schmucker (10999ms) What is an eclipse? The DORII project -0.111111111111 What is an eclipse? -> $x: ($x, be involve in, eclipse) -> (The DORII project, is involved in, the g-Eclipse project) -> The DORII project (10984ms) What is an eclipse? Perseus -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (Perseus, contains, the famed eclipsing binary star Algol) -> Perseus (10967ms) What is an eclipse? open source BIRT -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (open source BIRT, is part of, Eclipse) -> open source BIRT (11039ms) What is an eclipse? Chartism -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (Chartism, was in, eclipse) -> Chartism (10984ms) What is an eclipse? Western Australia -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (Western Australia, Contains, Eclipse Island) -> Western Australia (11022ms) What is an eclipse? the satellite -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (the satellite, is in, eclipse) -> the satellite (11007ms) What is an eclipse? beauty -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (beauty, is in, eclipse) -> beauty (11039ms) What is an eclipse? a Russian juggler -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (a Russian juggler, was in, ?Eclipse?) -> a Russian juggler (10999ms) What is an eclipse? The E2I -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (The E2I, is part of, the Nikon Eclipse E800 Microscope system) -> The E2I (11015ms) What is an eclipse? EGit EGit -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (EGit EGit, is part of, the Eclipse project) -> EGit EGit (11007ms) What is an eclipse? The sun and the moon -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (The sun and the moon, were in, eclipse) -> The sun and the moon (11053ms) What is an eclipse? the Manabi Straight OVA -0.111111111111 What is an eclipse? -> $x: ($x, be n, eclipse) -> (the Manabi Straight OVA, was n?t subbed by, Eclipse) -> the Manabi Straight OVA (11022ms) What is an eclipse? Plug-in Test -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (Plug-in Test, is a part of, Eclipse) -> Plug-in Test (11046ms) What is an eclipse? punishment -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (punishment, is in, eclipse) -> punishment (10992ms) What is an eclipse? extensions -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (extensions, are part of, MyEclipse) -> extensions (11059ms) What is an eclipse? Each project -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (Each project, also contains, Eclipse .project) -> Each project (10999ms) What is an eclipse? Mozart?s career -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (Mozart?s career, was in, eclipse) -> Mozart?s career (10999ms) What is an eclipse? an 82-year-old man -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (an 82-year-old man, is in, eclipse) -> an 82-year-old man (11046ms) What is an eclipse? The accompanying CD-ROM -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (The accompanying CD-ROM, contains, Eclipse 3.0,) -> The accompanying CD-ROM (10992ms) What is an eclipse? The Eclipse Pro rugby boot -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (The Eclipse Pro rugby boot, is a part of, the new ECLIPSE range) -> The Eclipse Pro rugby boot (11022ms) What is an eclipse? the TCP/IP Monitor -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (the TCP/IP Monitor, is part of, Eclipse 3.5) -> the TCP/IP Monitor (11015ms) What is an eclipse? GEF -0.111111111111 What is an eclipse? -> $x: ($x, be n, eclipse) -> (GEF, is n?t in, the Eclipse SDK) -> GEF (10999ms) What is an eclipse? A Saros family -0.111111111111 What is an eclipse? -> $x: ($x, contain, eclipse) -> (A Saros family, contains from, 69 to 86 eclipses) -> A Saros family (10967ms) What is an eclipse? Virgo -0.111111111111 What is an eclipse? -> $x: ($x, be part of, eclipse) -> (Virgo, is part of, Eclipse) -> Virgo (11007ms) What is an eclipse? an art -0.111111111111 What is an eclipse? -> $x: ($x, be in, eclipse) -> (an art, is in, eclipse) -> an art (11032ms) What is an eclipse? One inventor -0.111111111112 What is an eclipse? -> $x: ($x, invent, solar power) -> (One inventor, invent, a solar powered robot) -> One inventor (11087ms) What is an eclipse? The residence -0.111111111112 What is an eclipse? -> $x: ($x, do, solar power) -> (The residence, does n?t run solely on, solar power) -> The residence (11083ms) What is an eclipse? Reliable -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (Reliable, Is, Solar Power) -> Reliable (11083ms) What is an eclipse? Photovoltaics -0.111111111112 What is an eclipse? -> $x: ($x, produce, solar power) -> (Photovoltaics, produce electricity from, solar power) -> Photovoltaics (11064ms) What is an eclipse? The house -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (The house, is, Solar powered) -> The house (11078ms) What is an eclipse? Coal power -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (Coal power, is, solar power) -> Coal power (11103ms) What is an eclipse? organic fabrics -0.111111111112 What is an eclipse? -> $x: ($x, produce, solar power) -> (organic fabrics, is produced in, a solar-powered factory) -> organic fabrics (11069ms) What is an eclipse? A New York-based designer -0.111111111112 What is an eclipse? -> $x: ($x, invent, solar power) -> (A New York-based designer, has invented, a solar-powered bikini) -> A New York-based designer (11103ms) What is an eclipse? The Lodge -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (The Lodge, is, solar powered) -> The Lodge (11092ms) What is an eclipse? power -0.111111111112 What is an eclipse? -> $x: ($x, describe, solar power) -> (power, can be best described as, ?Liquid Solar Power) -> power (11107ms) What is an eclipse? A very good answer -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (A very good answer, is, solar power) -> A very good answer (11103ms) What is an eclipse? The integrated sensor suite -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (The integrated sensor suite, is, solar powered) -> The integrated sensor suite (11096ms) What is an eclipse? Anderson Valley Brewing Company -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (Anderson Valley Brewing Company, is, solar powered) -> Anderson Valley Brewing Company (11096ms) What is an eclipse? CitizenRe -0.111111111112 What is an eclipse? -> $x: ($x, do, solar power) -> (CitizenRe, is doing something very interesting with, solar power) -> CitizenRe (11069ms) What is an eclipse? a preview -0.111111111112 What is an eclipse? -> $x: ($x, do, solar power) -> (a preview, Does, Solar Power Work) -> a preview (11074ms) What is an eclipse? the Squirrel Boss Bird Feeder -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (the Squirrel Boss Bird Feeder, is, solar powered) -> the Squirrel Boss Bird Feeder (11064ms) What is an eclipse? Olli Wisdom -0.111111111112 What is an eclipse? -> $x: ($x, produce, solar power) -> (Olli Wisdom, Tracks produced, Solar Power) -> Olli Wisdom (11078ms) What is an eclipse? the heck -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (the heck, is, solar power) -> the heck (11100ms) What is an eclipse? the energy -0.111111111112 What is an eclipse? -> $x: ($x, produce, solar power) -> (the energy, produced by, solar power plants) -> the energy (11107ms) What is an eclipse? contact -0.111111111112 What is an eclipse? -> $x: ($x, create, solar power) -> (contact, so creates, solar power) -> contact (11064ms) What is an eclipse? The most promising technology in the long term -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (The most promising technology in the long term, is, solar power) -> The most promising technology in the long term (11064ms) What is an eclipse? a team -0.111111111112 What is an eclipse? -> $x: ($x, produce, solar power) -> (a team, produced, a high-efficiency solar-powered LED lamp) -> a team (11100ms) What is an eclipse? the pump -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (the pump, was, solar powered) -> the pump (11064ms) What is an eclipse? Facts Coal power -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (Facts Coal power, is, solar power) -> Facts Coal power (11092ms) What is an eclipse? Cats -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (Cats, are, Solar Powered) -> Cats (11103ms) What is an eclipse? solar panels -0.111111111112 What is an eclipse? -> $x: ($x, create, solar power) -> (solar panels, have different methods of creating, solar power ?) -> solar panels (11103ms) What is an eclipse? Anderson Valley Brewing -0.111111111112 What is an eclipse? -> $x: ($x, do, solar power) -> (Anderson Valley Brewing, are doing with, Solar Power) -> Anderson Valley Brewing (11103ms) What is an eclipse? The winery -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (The winery, is, solar powered) -> The winery (11074ms) What is an eclipse? Morningstar -0.111111111112 What is an eclipse? -> $x: ($x, do, solar power) -> (Morningstar, seems to do this with, their solar power equipment) -> Morningstar (11096ms) What is an eclipse? an inverter -0.111111111112 What is an eclipse? -> $x: ($x, found, solar power) -> (an inverter, are found on, all home solar powered systems) -> an inverter (11100ms) What is an eclipse? ways -0.111111111112 What is an eclipse? -> $x: ($x, found, solar power) -> (ways, found, a solar powered ice-maker) -> ways (11083ms) What is an eclipse? the question -0.111111111112 What is an eclipse? -> $x: ($x, do, solar power) -> (the question, does, solar power work) -> the question (11096ms) What is an eclipse? Ordinary homeowners -0.111111111112 What is an eclipse? -> $x: ($x, found, solar power) -> (Ordinary homeowners, still find, solar power) -> Ordinary homeowners (11107ms) What is an eclipse? QUESTION -0.111111111112 What is an eclipse? -> $x: ($x, do, solar power) -> (QUESTION, Do, Solar Powered Fans Work) -> QUESTION (11107ms) What is an eclipse? a manufacturer -0.111111111112 What is an eclipse? -> $x: ($x, create, solar power) -> (a manufacturer, had created, a solar-powered tv) -> a manufacturer (11064ms) What is an eclipse? a multi-purpose machine -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (a multi-purpose machine, is, solar powered) -> a multi-purpose machine (11087ms) What is an eclipse? the state -0.111111111112 What is an eclipse? -> $x: ($x, produce, solar power) -> (the state, produced 95 percent of, the world?s solar power) -> the state (11096ms) What is an eclipse? the team -0.111111111112 What is an eclipse? -> $x: ($x, create, solar power) -> (the team, created, a safe , affordable solar-powered lantern) -> the team (11074ms) What is an eclipse? One of these -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (One of these, is, solar power) -> One of these (11103ms) What is an eclipse? an audio Bible -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (an audio Bible, is, solar powered) -> an audio Bible (11083ms) What is an eclipse? the principle -0.111111111112 What is an eclipse? -> $x: ($x, produce, solar power) -> (the principle, produces, solar power) -> the principle (11078ms) What is an eclipse? Phoenix -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (Phoenix, is, solar powered) -> Phoenix (11083ms) What is an eclipse? energy problems -0.111111111112 What is an eclipse? -> $x: ($x, found, solar power) -> (energy problems, will be found in, solar power) -> energy problems (11096ms) What is an eclipse? electricity -0.111111111112 What is an eclipse? -> $x: ($x, produce, solar power) -> (electricity, produced by, concentrated solar power) -> electricity (11087ms) What is an eclipse? Conergy USA Conergy -0.111111111112 What is an eclipse? -> $x: ($x, create, solar power) -> (Conergy USA Conergy, contributes to creating, solar power plants) -> Conergy USA Conergy (11100ms) What is an eclipse? 2012 -0.111111111112 What is an eclipse? -> $x: ($x, found, solar power) -> (2012, Find the best product for, Gable Mount Solar Power Vent) -> 2012 (11083ms) What is an eclipse? Gera -0.111111111112 What is an eclipse? -> $x: ($x, produce, solar power) -> (Gera, has been producing electricity from, solar power) -> Gera (11059ms) What is an eclipse? concentrated solar power -0.111111111112 What is an eclipse? -> $x: ($x, found, solar power) -> (concentrated solar power, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Concentrated%20solar%20power) -> concentrated solar power (11092ms) What is an eclipse? findings -0.111111111112 What is an eclipse? -> $x: ($x, represent, solar power) -> (findings, represent, Solar Power) -> findings (11059ms) What is an eclipse? the OP -0.111111111112 What is an eclipse? -> $x: ($x, do, solar power) -> (the OP, has nothing to do with, solar thermal power) -> the OP (11103ms) What is an eclipse? each student -0.111111111112 What is an eclipse? -> $x: ($x, create, solar power) -> (each student, creates a design for, a solar-powered house) -> each student (11087ms) What is an eclipse? One Be Lo -0.111111111112 What is an eclipse? -> $x: ($x, produce, solar power) -> (One Be Lo, Tracks produced, Solar Powered) -> One Be Lo (11069ms) What is an eclipse? the PV manufacturing process -0.111111111112 What is an eclipse? -> $x: ($x, create, solar power) -> (the PV manufacturing process, creates, solar power) -> the PV manufacturing process (11100ms) What is an eclipse? ?Kids -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (?Kids, are, solar powered ?) -> ?Kids (11100ms) What is an eclipse? green technology -0.111111111112 What is an eclipse? -> $x: ($x, produce, solar power) -> (green technology, has produced advances in, solar and wind power) -> green technology (11092ms) What is an eclipse? the industry -0.111111111112 What is an eclipse? -> $x: ($x, do, solar power) -> (the industry, does n?t feel constrained to, solar power) -> the industry (11107ms) What is an eclipse? Magic Hot Springs -0.111111111112 What is an eclipse? -> $x: ($x, do, solar power) -> (Magic Hot Springs, does n?t have enough sun for, solar power) -> Magic Hot Springs (11069ms) What is an eclipse? the home -0.111111111112 What is an eclipse? -> $x: ($x, do, solar power) -> (the home, does make extensive use of, solar power) -> the home (11064ms) What is an eclipse? A kit fox -0.111111111112 What is an eclipse? -> $x: ($x, found, solar power) -> (A kit fox, found dead near, the Genesis solar power project site) -> A kit fox (11096ms) What is an eclipse? a robot -0.111111111112 What is an eclipse? -> $x: ($x, create, solar power) -> (a robot, create, a windmill or solar-powered car) -> a robot (11092ms) What is an eclipse? The hydrogen -0.111111111112 What is an eclipse? -> $x: ($x, produce, solar power) -> (The hydrogen, could be produced by, solar power) -> The hydrogen (11074ms) What is an eclipse? The 30,000 gallon-a-day system -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (The 30,000 gallon-a-day system, is, solar powered) -> The 30,000 gallon-a-day system (11087ms) What is an eclipse? the cradle -0.111111111112 What is an eclipse? -> $x: ($x, do, solar power) -> (the cradle, does so via, solar power) -> the cradle (11107ms) What is an eclipse? America?s electricity -0.111111111112 What is an eclipse? -> $x: ($x, produce, solar power) -> (America?s electricity, would be produced by, solar power) -> America?s electricity (11087ms) What is an eclipse? Grimes -0.111111111112 What is an eclipse? -> $x: ($x, represent, solar power) -> (Grimes, represents, solar-power companies) -> Grimes (11074ms) What is an eclipse? Energy -0.111111111112 What is an eclipse? -> $x: ($x, create, solar power) -> (Energy, created by, the solar power generation system) -> Energy (11087ms) What is an eclipse? Bees -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (Bees, are, solar powered) -> Bees (11100ms) What is an eclipse? Sunrun -0.111111111112 What is an eclipse? -> $x: ($x, invent, solar power) -> (Sunrun, invented, solar power service) -> Sunrun (11100ms) What is an eclipse? dollars -0.111111111112 What is an eclipse? -> $x: ($x, create, solar power) -> (dollars, should be used to create, solar power plants) -> dollars (11087ms) What is an eclipse? Aussie Vans -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (Aussie Vans, are, Solar Powered) -> Aussie Vans (11096ms) What is an eclipse? Sunrun Sunrun -0.111111111112 What is an eclipse? -> $x: ($x, invent, solar power) -> (Sunrun Sunrun, invented, solar power service) -> Sunrun Sunrun (11087ms) What is an eclipse? H Hope Alternative energy -0.111111111112 What is an eclipse? -> $x: ($x, do, solar power) -> (H Hope Alternative energy, does n?t, just mean solar power) -> H Hope Alternative energy (11107ms) What is an eclipse? Sm solar , solar system -0.111111111112 What is an eclipse? -> $x: ($x, produce, solar power) -> (Sm solar , solar system, produced, solar power) -> Sm solar , solar system (11059ms) What is an eclipse? An exciting alternative energy -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (An exciting alternative energy, is, solar power) -> An exciting alternative energy (11100ms) What is an eclipse? Spencer Bockus -0.111111111112 What is an eclipse? -> $x: ($x, create, solar power) -> (Spencer Bockus, created, solar-powered fans) -> Spencer Bockus (11092ms) What is an eclipse? the waterfall -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (the waterfall, is, solar powered) -> the waterfall (11078ms) What is an eclipse? The Pathfinder -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (The Pathfinder, is, solar powered) -> The Pathfinder (11107ms) What is an eclipse? The light -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (The light, is, solar powered) -> The light (11100ms) What is an eclipse? Iqua -0.111111111112 What is an eclipse? -> $x: ($x, create, solar power) -> (Iqua, has created, the first Solar powered Bluetooth Headset) -> Iqua (11096ms) What is an eclipse? organic herbs and spices -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (organic herbs and spices, is, solar powered) -> organic herbs and spices (11092ms) What is an eclipse? The hottest new technology -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (The hottest new technology, is, solar power) -> The hottest new technology (11074ms) What is an eclipse? the website -0.111111111112 What is an eclipse? -> $x: ($x, found, solar power) -> (the website, Find, Portable Solar Power) -> the website (11087ms) What is an eclipse? Auguste Mouchout -0.111111111112 What is an eclipse? -> $x: ($x, create, solar power) -> (Auguste Mouchout, created, a solar powered steam engine) -> Auguste Mouchout (11092ms) What is an eclipse? ?How -0.111111111112 What is an eclipse? -> $x: ($x, do, solar power) -> (?How, does, solar power work) -> ?How (11074ms) What is an eclipse? eBay -0.111111111112 What is an eclipse? -> $x: ($x, found, solar power) -> (eBay, Find, SOLAR POWER POND WATER PUMP) -> eBay (11059ms) What is an eclipse? the fountain -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (the fountain, is, solar powered) -> the fountain (11083ms) What is an eclipse? The MiniChlor -0.111111111112 What is an eclipse? -> $x: ($x, do, solar power) -> (The MiniChlor, does n?t have, a solar panel power supply) -> The MiniChlor (11087ms) What is an eclipse? the answer -0.111111111112 What is an eclipse? -> $x: ($x, do, solar power) -> (the answer, does?not lie in, solar power) -> the answer (11058ms) What is an eclipse? livestock -0.111111111112 What is an eclipse? -> $x: ($x, do, solar power) -> (livestock, is done with, solar power) -> livestock (11069ms) What is an eclipse? the company -0.111111111112 What is an eclipse? -> $x: ($x, create, solar power) -> (the company, has created, a new solar power option) -> the company (11074ms) What is an eclipse? a house heating system -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (a house heating system, is, solar powered) -> a house heating system (11087ms) What is an eclipse? A thin film of plastic -0.111111111112 What is an eclipse? -> $x: ($x, produce, solar power) -> (A thin film of plastic, produces, solar power) -> A thin film of plastic (11096ms) What is an eclipse? Electricity -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (Electricity, is, solar powered) -> Electricity (11103ms) What is an eclipse? advantages/challenges -0.111111111112 What is an eclipse? -> $x: ($x, do, solar power) -> (advantages/challenges, does, solar power collection present) -> advantages/challenges (11103ms) What is an eclipse? EarthFix -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (EarthFix, is, solar power) -> EarthFix (11100ms) What is an eclipse? the lawn -0.111111111112 What is an eclipse? -> $x: ($x, do, solar power) -> (the lawn, does so using, solar power) -> the lawn (11103ms) What is an eclipse? a spacecraft -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (a spacecraft, is, solar powered) -> a spacecraft (11078ms) What is an eclipse? teams -0.111111111112 What is an eclipse? -> $x: ($x, create, solar power) -> (teams, compete to create, energy efficient solar powered houses) -> teams (11064ms) What is an eclipse? Nuclear fission -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (Nuclear fission, is, solar power) -> Nuclear fission (11083ms) What is an eclipse? Click -0.111111111112 What is an eclipse? -> $x: ($x, found, solar power) -> (Click, here find, special price 2 Watt Solar Powered Water Pump) -> Click (11069ms) What is an eclipse? Energy Cache -0.111111111112 What is an eclipse? -> $x: ($x, create, solar power) -> (Energy Cache, wants to create, a solar-powered pump) -> Energy Cache (11064ms) What is an eclipse? a car -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (a car, is, solar powered) -> a car (11092ms) What is an eclipse? Klimek -0.111111111112 What is an eclipse? -> $x: ($x, create, solar power) -> (Klimek, creates, tiny solar-powered miniatures) -> Klimek (11074ms) What is an eclipse? customers -0.111111111112 What is an eclipse? -> $x: ($x, found, solar power) -> (customers, find, the Solar Power Kits) -> customers (11069ms) What is an eclipse? The electricity -0.111111111112 What is an eclipse? -> $x: ($x, produce, solar power) -> (The electricity, produced by, the solar power system) -> The electricity (11107ms) What is an eclipse? the idea -0.111111111112 What is an eclipse? -> $x: ($x, create, solar power) -> (the idea, Creating, your own solar power plant) -> the idea (11078ms) What is an eclipse? SDA -0.111111111112 What is an eclipse? -> $x: ($x, define, solar power) -> (SDA, defined, solar-powered charge ports) -> SDA (11074ms) What is an eclipse? Lighting -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (Lighting, is, solar powered) -> Lighting (11103ms) What is an eclipse? quantity -0.111111111112 What is an eclipse? -> $x: ($x, produce, solar power) -> (quantity, produce, solar power systems) -> quantity (11078ms) What is an eclipse? an androgynous deity -0.111111111112 What is an eclipse? -> $x: ($x, represent, solar power) -> (an androgynous deity, represented, the solar power) -> an androgynous deity (11107ms) What is an eclipse? Intel -0.111111111112 What is an eclipse? -> $x: ($x, do, solar power) -> (Intel, does n?t aim to build, solar-powered CPUs) -> Intel (11064ms) What is an eclipse? wind power -0.111111111112 What is an eclipse? -> $x: ($x, do, solar power) -> (wind power, now seeks to do the same with, solar power) -> wind power (11078ms) What is an eclipse? Notes -0.111111111112 What is an eclipse? -> $x: ($x, do, solar power) -> (Notes, Had little to do with, Solar Power) -> Notes (11083ms) What is an eclipse? Solar cells -0.111111111112 What is an eclipse? -> $x: ($x, create, solar power) -> (Solar cells, create, solar power) -> Solar cells (11078ms) What is an eclipse? the utility grid -0.111111111112 What is an eclipse? -> $x: ($x, do, solar power) -> (the utility grid, so does, the solar power system) -> the utility grid (11092ms) What is an eclipse? class -0.111111111112 What is an eclipse? -> $x: ($x, do, solar power) -> (class, were doing a project on, ?Solar Power Plants?and) -> class (11074ms) What is an eclipse? the world?s -0.111111111112 What is an eclipse? -> $x: ($x, produce, solar power) -> (the world?s, commercially produced, solar power) -> the world?s (11092ms) What is an eclipse? No comments -0.111111111112 What is an eclipse? -> $x: ($x, found, solar power) -> (No comments, were found for, Solar panels power) -> No comments (11069ms) What is an eclipse? Desk Fan products -0.111111111112 What is an eclipse? -> $x: ($x, found, solar power) -> (Desk Fan products, find, discount White Solar Powered Room) -> Desk Fan products (11074ms) What is an eclipse? homes , schools and businesses -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (homes , schools and businesses, is, solar power) -> homes , schools and businesses (11083ms) What is an eclipse? a lantern -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (a lantern, is, solar powered) -> a lantern (11100ms) What is an eclipse? smaller remote lodges -0.111111111112 What is an eclipse? -> $x: ($x, do, solar power) -> (smaller remote lodges, often make do with, solar power) -> smaller remote lodges (11069ms) What is an eclipse? renewable energy sources -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (renewable energy sources, are, solar power) -> renewable energy sources (11092ms) What is an eclipse? SolarDrive -0.111111111112 What is an eclipse? -> $x: ($x, produce, solar power) -> (SolarDrive, produces, effective solar power solutions) -> SolarDrive (11078ms) What is an eclipse? a mollusc and algal plastids -0.111111111112 What is an eclipse? -> $x: ($x, produce, solar power) -> (a mollusc and algal plastids, produces, solar-powered sea slugs) -> a mollusc and algal plastids (11096ms) What is an eclipse? The robot -0.111111111112 What is an eclipse? -> $x: ($x, do, solar power) -> (The robot, does this by, solar powered sensors) -> The robot (11087ms) What is an eclipse? the public -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (the public, is, solar power) -> the public (11078ms) What is an eclipse? You?ll -0.111111111112 What is an eclipse? -> $x: ($x, found, solar power) -> (You?ll, find, solar power-run wall chargers) -> You?ll (11059ms) What is an eclipse? plastic -0.111111111112 What is an eclipse? -> $x: ($x, produce, solar power) -> (plastic, produces, solar power) -> plastic (11103ms) What is an eclipse? the System -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (the System, is, Solar Powered) -> the System (11059ms) What is an eclipse? the roof -0.111111111112 What is an eclipse? -> $x: ($x, produce, solar power) -> (the roof, produce, solar power) -> the roof (11107ms) What is an eclipse? The energy -0.111111111112 What is an eclipse? -> $x: ($x, produce, solar power) -> (The energy, produced by, the PV solar power system) -> The energy (11074ms) What is an eclipse? EIPV -0.111111111112 What is an eclipse? -> $x: ($x, produce, solar power) -> (EIPV, are specifically produced for, integrating solar power) -> EIPV (11107ms) What is an eclipse? increased energy efficient heating and cooling -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (increased energy efficient heating and cooling, is, solar power) -> increased energy efficient heating and cooling (11092ms) What is an eclipse? the China Academy -0.111111111112 What is an eclipse? -> $x: ($x, describe, solar power) -> (the China Academy, described a study on, space solar power) -> the China Academy (11069ms) What is an eclipse? MIDC -0.111111111112 What is an eclipse? -> $x: ($x, initiate, solar power) -> (MIDC, initiates, Solar power generation projects) -> MIDC (11092ms) What is an eclipse? earth -0.111111111112 What is an eclipse? -> $x: ($x, do, solar power) -> (earth, does, solar power work) -> earth (11096ms) What is an eclipse? a very popular alternative energy source -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (a very popular alternative energy source, is, solar power) -> a very popular alternative energy source (11103ms) What is an eclipse? Comments -0.111111111112 What is an eclipse? -> $x: ($x, do, solar power) -> (Comments, exactly does, solar power work) -> Comments (11107ms) What is an eclipse? electricity humans -0.111111111112 What is an eclipse? -> $x: ($x, found, solar power) -> (electricity humans, find to use, solar power) -> electricity humans (11064ms) What is an eclipse? Solar Learn -0.111111111112 What is an eclipse? -> $x: ($x, do, solar power) -> (Solar Learn, Does, Solar Power Function) -> Solar Learn (11064ms) What is an eclipse? the un-possible ? -0.111111111112 What is an eclipse? -> $x: ($x, invent, solar power) -> (the un-possible ?, invented, a solar powered bra) -> the un-possible ? (11064ms) What is an eclipse? the fan -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (the fan, is, solar powered) -> the fan (11107ms) What is an eclipse? available solar energy -0.111111111112 What is an eclipse? -> $x: (solar power, have use of, $x) -> (the solar power-plant, have used 30 % of, available solar energy) -> available solar energy (11058ms) What is an eclipse? The systems -0.111111111112 What is an eclipse? -> $x: ($x, represent, solar power) -> (The systems, represent, the largest solar power deployment) -> The systems (11100ms) What is an eclipse? students -0.111111111112 What is an eclipse? -> $x: ($x, create, solar power) -> (students, created, some impressive , solar-powered robots) -> students (11107ms) What is an eclipse? the power -0.111111111112 What is an eclipse? -> $x: ($x, produce, solar power) -> (the power, produced by, the solar power system) -> the power (11074ms) What is an eclipse? Hyderabad -0.111111111112 What is an eclipse? -> $x: ($x, be role of, solar power) -> (Hyderabad, are now fulfilling the role of, solar power engineers) -> Hyderabad (11092ms) What is an eclipse? Japan -0.111111111112 What is an eclipse? -> $x: ($x, create, solar power) -> (Japan, is planning to create, a space solar power system) -> Japan (11087ms) What is an eclipse? the electricity -0.111111111112 What is an eclipse? -> $x: ($x, produce, solar power) -> (the electricity, produced by, solar power plants) -> the electricity (11069ms) What is an eclipse? John Suppes -0.111111111112 What is an eclipse? -> $x: ($x, create, solar power) -> (John Suppes, are creating, entire solar-powered subdivisions) -> John Suppes (11058ms) What is an eclipse? ?&# 1072n b? -0.111111111112 What is an eclipse? -> $x: ($x, found, solar power) -> (?&# 1072n b?, found, &# 1110n solar powered calculators) -> ?&# 1072n b? (11096ms) What is an eclipse? either hydrogen or electricity -0.111111111112 What is an eclipse? -> $x: ($x, produce, solar power) -> (either hydrogen or electricity, produced from, solar power) -> either hydrogen or electricity (11078ms) What is an eclipse? the Earth Defense Force -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (the Earth Defense Force, are, solar power) -> the Earth Defense Force (11100ms) What is an eclipse? Much Maintenance -0.111111111112 What is an eclipse? -> $x: ($x, do, solar power) -> (Much Maintenance, Does, a Solar Power System Require) -> Much Maintenance (11064ms) What is an eclipse? Researchers and scientists -0.111111111112 What is an eclipse? -> $x: ($x, discover, solar power) -> (Researchers and scientists, have already discovered, solar power) -> Researchers and scientists (11092ms) What is an eclipse? Germany -0.111111111112 What is an eclipse? -> $x: ($x, produce, solar power) -> (Germany, produces, more solar power) -> Germany (11078ms) What is an eclipse? the south side -0.111111111112 What is an eclipse? -> $x: ($x, produce, solar power) -> (the south side, produces, limitless solar power) -> the south side (11078ms) What is an eclipse? food -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (food, was, solar power) -> food (11096ms) What is an eclipse? mass -0.111111111112 What is an eclipse? -> $x: ($x, produce, solar power) -> (mass, produce, a low-cost solar power converter) -> mass (11103ms) What is an eclipse? the analysis -0.111111111112 What is an eclipse? -> $x: ($x, do, solar power) -> (the analysis, can be done for, solar power) -> the analysis (11103ms) What is an eclipse? Green Savvy ? -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (Green Savvy ?, Is, Solar Power) -> Green Savvy ? (11078ms) What is an eclipse? the camp -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (the camp, is, solar powered) -> the camp (11069ms) What is an eclipse? Georgia -0.111111111112 What is an eclipse? -> $x: ($x, found, solar power) -> (Georgia, have found a way to generate, solar power) -> Georgia (11069ms) What is an eclipse? Solar Power One option for clean technology -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (Solar Power One option for clean technology, is, solar power) -> Solar Power One option for clean technology (11087ms) What is an eclipse? the country -0.111111111112 What is an eclipse? -> $x: ($x, produce, solar power) -> (the country, produces, more solar power) -> the country (11100ms) What is an eclipse? convenience trumping cents -0.111111111112 What is an eclipse? -> $x: ($x, be be, solar power) -> (convenience trumping cents, is, solar power) -> convenience trumping cents (11107ms) What is an eclipse? the bloke -0.111111111112 What is an eclipse? -> $x: ($x, invent, solar power) -> (the bloke, invented, the solar-powered torch) -> the bloke (11083ms) How many moons does Neptune have? Pluto 0.11111111112000005 How many moons does Neptune have? -> $x: ($x, be moon of, neptune) -> (Pluto, was once a moon of, Neptune) -> Pluto (1250ms) How many moons does Neptune have? Triton 0.11111111112000005 How many moons does Neptune have? -> $x: ($x, be moon of, neptune) -> (Triton, is a moon of, Neptune) -> Triton (1250ms) How many moons does Neptune have? the planet 0.11111111112000005 How many moons does Neptune have? -> $x: ($x, be moon of, neptune) -> (the planet, are the moons of, Neptune) -> the planet (1221ms) How many moons does Neptune have? Naiad 0.11111111112000005 How many moons does Neptune have? -> $x: ($x, be moon of, neptune) -> (Naiad, are moons of, Neptune) -> Naiad (1251ms) How many moons does Neptune have? Larissa 0.11111111112000005 How many moons does Neptune have? -> $x: ($x, be moon of, neptune) -> (Larissa, is a moon of, Neptune) -> Larissa (1221ms) How many moons does Neptune have? Galatea 0.11111111112000005 How many moons does Neptune have? -> $x: ($x, be moon of, neptune) -> (Galatea, is a moon of, Neptune) -> Galatea (1250ms) How many moons does Neptune have? Tritan 0.11111111112000005 How many moons does Neptune have? -> $x: ($x, be moon of, neptune) -> (Tritan, is a moon of, Neptune) -> Tritan (1221ms) How many moons does Neptune have? 1:31 0.11111111112000005 How many moons does Neptune have? -> $x: ($x, be moon of, neptune) -> (1:31, am Great Moons of, Neptune) -> 1:31 (1250ms) How many moons does Neptune have? Proteus 0.11111111112000005 How many moons does Neptune have? -> $x: ($x, be moon of, neptune) -> (Proteus, is the second largest moon of, Neptune) -> Proteus (1250ms) How many moons does Neptune have? The P2V-7 9.000133971426294E-12 How many moons does Neptune have? -> $x: ($x, be last, neptune) -> (The P2V-7, is the last version of, the Neptune) -> The P2V-7 (1270ms) How many moons does Neptune have? the various conjunctions 9.000133971426294E-12 How many moons does Neptune have? -> $x: ($x, moon, neptune) -> (the various conjunctions, is her Moon to, my Neptune) -> the various conjunctions (1311ms) How many moons does Neptune have? the folks -0.1111111111019999 How many moons does Neptune have? -> $x: ($x, see, neptune) -> (the folks, here see, this Mars/Neptune) -> the folks (1315ms) How many moons does Neptune have? Aulnay , Llangwm , Suton Benger -0.1111111111019999 How many moons does Neptune have? -> $x: ($x, see, neptune) -> (Aulnay , Llangwm , Suton Benger, See, Neptune Item Code) -> Aulnay , Llangwm , Suton Benger (1319ms) How many moons does Neptune have? NEPTUNE -0.1111111111019999 How many moons does Neptune have? -> $x: ($x, see, neptune) -> (NEPTUNE, see, OPERATION NEPTUNE) -> NEPTUNE (1311ms) How many moons does Neptune have? an overview -0.1111111111019999 How many moons does Neptune have? -> $x: ($x, see, neptune) -> (an overview, see, the Neptune Feb 23 Hello , everyone) -> an overview (1319ms) How many moons does Neptune have? Leander -0.1111111111019999 How many moons does Neptune have? -> $x: ($x, see, neptune) -> (Leander, saw, Neptune) -> Leander (1315ms) How many moons does Neptune have? details -0.1111111111019999 How many moons does Neptune have? -> $x: ($x, see, neptune) -> (details, see, OPERATION NEPTUNE) -> details (1319ms) How many moons does Neptune have? Mars and Neptune -0.1111111111019999 How many moons does Neptune have? -> $x: ($x, see, neptune) -> (Mars and Neptune, see, Neptune and Mars Mars) -> Mars and Neptune (1315ms) How many moons does Neptune have? similar storms -0.1111111111019999 How many moons does Neptune have? -> $x: ($x, see, neptune) -> (similar storms, have been seen on, Saturn and Neptune) -> similar storms (1315ms) How many moons does Neptune have? Glen Island Park -0.1111111111019999 How many moons does Neptune have? -> $x: ($x, see, neptune) -> (Glen Island Park, can be seen from, Neptune Park) -> Glen Island Park (1311ms) How many moons does Neptune have? William Lassell -0.1111111111019999 How many moons does Neptune have? -> $x: ($x, see, neptune) -> (William Lassell, had been first to see, a moon orbiting Neptune) -> William Lassell (1315ms) How many moons does Neptune have? Visitors -0.1111111111019999 How many moons does Neptune have? -> $x: ($x, see, neptune) -> (Visitors, see, King Neptune) -> Visitors (1315ms) How many moons does Neptune have? Galle and d'Arrest -0.1111111111019999 How many moons does Neptune have? -> $x: ($x, see, neptune) -> (Galle and d'Arrest, first saw, Neptune) -> Galle and d'Arrest (1311ms) How many moons does Neptune have? The boys -0.1111111111019999 How many moons does Neptune have? -> $x: ($x, see, neptune) -> (The boys, see, the King Neptune) -> The boys (1319ms) How many moons does Neptune have? the landings -0.1111111111019999 How many moons does Neptune have? -> $x: ($x, see, neptune) -> (the landings, see, OPERATION NEPTUNE) -> the landings (1315ms) How many moons does Neptune have? Robin -0.1111111111019999 How many moons does Neptune have? -> $x: ($x, see, neptune) -> (Robin, goes to see, Neptune) -> Robin (1315ms) How many moons does Neptune have? Galileo -0.1111111111019999 How many moons does Neptune have? -> $x: ($x, see, neptune) -> (Galileo, may have seen, Neptune) -> Galileo (1319ms) How many moons does Neptune have? a dramatic late twist -0.1111111111019999 How many moons does Neptune have? -> $x: ($x, see, neptune) -> (a dramatic late twist, saw, Neptune) -> a dramatic late twist (1315ms) How many moons does Neptune have? I?ve -0.1111111111019999 How many moons does Neptune have? -> $x: ($x, see, neptune) -> (I?ve, seen, Uranus and Neptune) -> I?ve (1315ms) How many moons does Neptune have? the Piazza della Signoria -0.1111111111019999 How many moons does Neptune have? -> $x: ($x, see, neptune) -> (the Piazza della Signoria, see, the famous Neptune Fountain) -> the Piazza della Signoria (1315ms) How many moons does Neptune have? Similar structures -0.1111111111019999 How many moons does Neptune have? -> $x: ($x, see, neptune) -> (Similar structures, have been seen on, Saturn and Neptune) -> Similar structures (1311ms) How many moons does Neptune have? more info -0.1111111111019999 How many moons does Neptune have? -> $x: ($x, see, neptune) -> (more info, see, Neptune Introduction) -> more info (1315ms) How many moons does Neptune have? Bologna -0.1111111111019999 How many moons does Neptune have? -> $x: ($x, see, neptune) -> (Bologna, See, Neptune) -> Bologna (1311ms) How many moons does Neptune have? Windsor -0.1111111111019999 How many moons does Neptune have? -> $x: ($x, see, neptune) -> (Windsor, See, the Neptune Fountain) -> Windsor (1315ms) How many moons does Neptune have? the Pyramid -0.1111111111019999 How many moons does Neptune have? -> $x: ($x, be see of, neptune) -> (the Pyramid, can be seen of, Neptune) -> the Pyramid (1319ms) How many moons does Neptune have? A telescope -0.1111111111019999 How many moons does Neptune have? -> $x: ($x, see, neptune) -> (A telescope, will be required to see, Neptune) -> A telescope (1319ms) How many moons does Neptune have? Paul -0.1111111111019999 How many moons does Neptune have? -> $x: ($x, see, neptune) -> (Paul, saw the image of, Neptune) -> Paul (1315ms) How many moons does Neptune have? The Sun person -0.1111111111019999 How many moons does Neptune have? -> $x: ($x, see, neptune) -> (The Sun person, to want to see the best in, the Neptune person) -> The Sun person (1311ms) How many moons does Neptune have? cirrus clouds -0.1111111111019999 How many moons does Neptune have? -> $x: ($x, see, neptune) -> (cirrus clouds, were seen high in, Neptune) -> cirrus clouds (1311ms) How many moons does Neptune have? A good sized telescope -0.1111111111019999 How many moons does Neptune have? -> $x: ($x, see, neptune) -> (A good sized telescope, will be required to see, Neptune) -> A good sized telescope (1319ms) How many moons does Neptune have? Taurus -0.4444444444529998 How many moons does Neptune have? -> $x: (neptune, be last, $x) -> (Neptune, was last in, Taurus) -> Taurus (1322ms) How many moons does Neptune have? the fourth giant gas planet -0.4444444444529998 How many moons does Neptune have? -> $x: (neptune, be last, $x) -> (Neptune, is last of, the fourth giant gas planet) -> the fourth giant gas planet (1322ms) How many moons does Neptune have? Aquarius -0.4444444444529998 How many moons does Neptune have? -> $x: (neptune, be last, $x) -> (Neptune, was last in, Aquarius) -> Aquarius (1322ms) How many moons does Neptune have? the top... -0.4444444444529998 How many moons does Neptune have? -> $x: (neptune, moon, $x) -> (neptunes transformation pen, has a moon on, the top...) -> the top... (1322ms) How many moons does Neptune have? Pisces -0.4444444444529998 How many moons does Neptune have? -> $x: (neptune, be last, $x) -> (Neptune, was last in, Pisces) -> Pisces (1319ms) How many moons does Neptune have? five movie houses -0.4444444444529998 How many moons does Neptune have? -> $x: (neptune, be last, $x) -> (The Neptune, is the last of, five movie houses) -> five movie houses (1319ms) How many moons does Neptune have? the solar system -0.4444444444529998 How many moons does Neptune have? -> $x: (neptune, be last, $x) -> (Neptune, is the last planet in, the solar system) -> the solar system (1319ms) How many moons does Neptune have? 1847-1861 -0.4444444444529998 How many moons does Neptune have? -> $x: (neptune, be last, $x) -> (Neptune, was last from, 1847-1861) -> 1847-1861 (1319ms) How many moons does Neptune have? Pisces starting -0.4444444444529998 How many moons does Neptune have? -> $x: (neptune, be last, $x) -> (Neptune, was last in, Pisces starting) -> Pisces starting (1319ms) How many moons does Neptune have? a grand and glorious period -0.4444444444529998 How many moons does Neptune have? -> $x: (neptune, be last, $x) -> (This Neptune, is our last link to, a grand and glorious period) -> a grand and glorious period (1319ms) How many moons does Neptune have? first -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, was seen, first) -> first (1325ms) How many moons does Neptune have? spiritual -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune transits, may be seen as overtly, spiritual) -> spiritual (1328ms) How many moons does Neptune have? a small telescope -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (Uranus and Neptune, can be seen in, a small telescope) -> a small telescope (1322ms) How many moons does Neptune have? ESO PR -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptunes, see, ESO PR) -> ESO PR (1328ms) How many moons does Neptune have? the zest -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, could see, the zest) -> the zest (1331ms) How many moons does Neptune have? Shiva and Ahriman -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, is seen as, Shiva and Ahriman) -> Shiva and Ahriman (1331ms) How many moons does Neptune have? the whole picture -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, always sees, the whole picture) -> the whole picture (1331ms) How many moons does Neptune have? LANDINGS -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (NEPTUNE, see, LANDINGS) -> LANDINGS (1325ms) How many moons does Neptune have? photo right -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (the Neptune Network, see, photo right) -> photo right (1331ms) How many moons does Neptune have? the September Sky & Telescope -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (Uranus and Neptune, see, the September Sky & Telescope) -> the September Sky & Telescope (1328ms) How many moons does Neptune have? a telescope -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (Uranus , Neptune and Pluto, can only be seen with, a telescope) -> a telescope (1331ms) How many moons does Neptune have? the foreground -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (The Neptune-like planet, can be seen in, the foreground) -> the foreground (1322ms) How many moons does Neptune have? a whole -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, sees the universe as, a whole) -> a whole (1322ms) How many moons does Neptune have? the goddess playing -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, saw, the goddess playing) -> the goddess playing (1325ms) How many moons does Neptune have? the first time -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, was seen for, the first time) -> the first time (1328ms) How many moons does Neptune have? Uranus -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune Neptune, is often seen as, Uranus) -> Uranus (1322ms) How many moons does Neptune have? time -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, looks to see, time) -> time (1322ms) How many moons does Neptune have? the Sun -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (The Vesta-Neptune synod, is seen looking from, the Sun) -> the Sun (1328ms) How many moons does Neptune have? an ebb'n'flow -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, sees, an ebb'n'flow) -> an ebb'n'flow (1328ms) How many moons does Neptune have? 2 and 3 -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (Uranus and Neptune, are best seen between, 2 and 3) -> 2 and 3 (1325ms) How many moons does Neptune have? a large blue spot -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (C. Neptune, was once seen to have, a large blue spot) -> a large blue spot (1325ms) How many moons does Neptune have? a variety -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (his strong Neptune, can be seen in, a variety) -> a variety (1331ms) How many moons does Neptune have? binoculars -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, can be seen with, binoculars) -> binoculars (1328ms) How many moons does Neptune have? 1989 -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (the planet Neptune, seen in, 1989) -> 1989 (1325ms) How many moons does Neptune have? the Soul Teacher -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, is seen as, the Soul Teacher) -> the Soul Teacher (1325ms) How many moons does Neptune have? An injury -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (ne 'er hath Neptune, seen, An injury) -> An injury (1325ms) How many moons does Neptune have? midnight -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (Uranus and Neptune, can be seen after, midnight) -> midnight (1325ms) How many moons does Neptune have? a judge -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (Mr. Neptune, has yet to see, a judge) -> a judge (1328ms) How many moons does Neptune have? wireless communications -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune and Pluto, saw the first use of, wireless communications) -> wireless communications (1325ms) How many moons does Neptune have? a long , scaly , green tail -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (King Neptune, is seen with, a long , scaly , green tail) -> a long , scaly , green tail (1326ms) How many moons does Neptune have? more comments -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune June 25, Please see, more comments) -> more comments (1322ms) How many moons does Neptune have? Neptune and Mars Mars -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (Mars and Neptune, see, Neptune and Mars Mars) -> Neptune and Mars Mars (1322ms) How many moons does Neptune have? the glass half empty -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, may see, the glass half empty) -> the glass half empty (1328ms) How many moons does Neptune have? the island -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, saw her dancing on, the island) -> the island (1325ms) How many moons does Neptune have? the distance -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, can be seen in, the distance) -> the distance (1328ms) How many moons does Neptune have? the concrete blocks -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (King Neptune, can be seen in, the concrete blocks) -> the concrete blocks (1331ms) How many moons does Neptune have? generational planets -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (Uranus and Neptune, are seen as, generational planets) -> generational planets (1331ms) How many moons does Neptune have? the Skywatches -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (The Neptune/Chiron/Jupiter conjunction, see, the Skywatches) -> the Skywatches (1328ms) How many moons does Neptune have? the Greeks -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, seeing, the Greeks) -> the Greeks (1325ms) How many moons does Neptune have? Hex Wheels Today -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, see, Hex Wheels Today) -> Hex Wheels Today (1331ms) How many moons does Neptune have? fear -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (The U.S. Mars-Neptune square, can be seen as, fear) -> fear (1325ms) How many moons does Neptune have? the timing -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (the Mars-Neptune signature, can be seen through, the timing) -> the timing (1328ms) How many moons does Neptune have? the drawing -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (Haruka/Uranus AND Michiru/Neptune, must be seen on, the drawing) -> the drawing (1328ms) How many moons does Neptune have? the evening twilight -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, will be difficult to see in, the evening twilight) -> the evening twilight (1331ms) How many moons does Neptune have? OPERATION NEPTUNE -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (NEPTUNE, see, OPERATION NEPTUNE) -> OPERATION NEPTUNE (1322ms) How many moons does Neptune have? da Vinci -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, sees, da Vinci) -> da Vinci (1331ms) How many moons does Neptune have? the main -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, is seen in, the main) -> the main (1328ms) How many moons does Neptune have? space exploration -0.5555555555639998 How many moons does Neptune have? -> $x: (neptune, see, $x) -> (Neptune, will see a resurgent interest in, space exploration) -> space exploration (1322ms) What is relative humidity? wood 0.555555555556 What is relative humidity? -> $x: ($x, be related to, humidity) -> (wood, is directly related to, the humidity and temperature) -> wood (965ms) What is relative humidity? energy 0.555555555556 What is relative humidity? -> $x: ($x, be related to, humidity) -> (energy, is entirely related to, humidity) -> energy (965ms) What is relative humidity? nasal congestion 0.555555555556 What is relative humidity? -> $x: ($x, be related to, humidity) -> (nasal congestion, is related to, the temperature and humidity) -> nasal congestion (965ms) What is relative humidity? Water vapor 0.555555555556 What is relative humidity? -> $x: ($x, be related to, humidity) -> (Water vapor, is also related to, sea surface humidity) -> Water vapor (965ms) What is relative humidity? nasal obstruction 0.555555555556 What is relative humidity? -> $x: ($x, be related to, humidity) -> (nasal obstruction, is related to, the temperature and humidity) -> nasal obstruction (965ms) What is relative humidity? the smell 0.555555555556 What is relative humidity? -> $x: ($x, be related to, humidity) -> (the smell, is related to, the humidity) -> the smell (1131ms) What is relative humidity? NMF 0.555555555556 What is relative humidity? -> $x: ($x, be related to, humidity) -> (NMF, is directly related to, external humidity) -> NMF (965ms) What is relative humidity? minimum temperatures 0.555555555556 What is relative humidity? -> $x: ($x, be related to, humidity) -> (minimum temperatures, could be related to, the relative humidity) -> minimum temperatures (1131ms) What is relative humidity? Plant transpiration 0.555555555556 What is relative humidity? -> $x: ($x, be related to, humidity) -> (Plant transpiration, is directly related to, humidity) -> Plant transpiration (965ms) What is relative humidity? narrow buffers 0.555555555556 What is relative humidity? -> $x: ($x, be related to, humidity) -> (narrow buffers, are related to decreased, humidity levels) -> narrow buffers (1131ms) What is relative humidity? a given room 0.555555555556 What is relative humidity? -> $x: ($x, be related to, humidity) -> (a given room, is directly related to, humidity) -> a given room (965ms) What is relative humidity? machinery heat 0.555555555555 What is relative humidity? -> $x: ($x, cause, relative humidity) -> (machinery heat, causes, a serious drop in relative humidity) -> machinery heat (1131ms) What is relative humidity? the cloud scheme 0.555555555555 What is relative humidity? -> $x: ($x, cause, relative humidity) -> (the cloud scheme, causes, drier relative humidity forecasts) -> the cloud scheme (1131ms) What is relative humidity? temperature 0.555555555555 What is relative humidity? -> $x: ($x, cause, relative humidity) -> (temperature, can cause wide fluctuations in, relative humidity) -> temperature (1177ms) What is relative humidity? Nosebleed 0.555555555555 What is relative humidity? -> $x: ($x, cause, relative humidity) -> (Nosebleed, Causes, Relative humidity) -> Nosebleed (1131ms) What is relative humidity? the air 0.555555555555 What is relative humidity? -> $x: ($x, cause, relative humidity) -> (the air, causes a drop in, the relative humidity) -> the air (1177ms) What is relative humidity? The lake 0.555555555555 What is relative humidity? -> $x: ($x, cause, relative humidity) -> (The lake, causes, relative humidity) -> The lake (1177ms) What is relative humidity? a condition 0.555555555555 What is relative humidity? -> $x: ($x, cause, relative humidity) -> (a condition, believed to be caused by, low relative humidity) -> a condition (1131ms) What is relative humidity? the dew-point 0.555555555555 What is relative humidity? -> $x: ($x, cause, relative humidity) -> (the dew-point, always cause a change in, the relative humidity) -> the dew-point (1177ms) What is relative humidity? unoccupied times 0.555555555555 What is relative humidity? -> $x: ($x, cause, relative humidity) -> (unoccupied times, can cause, high relative humidity and result) -> unoccupied times (1177ms) What is relative humidity? Regularly people 0.555555555555 What is relative humidity? -> $x: ($x, cause, relative humidity) -> (Regularly people, will cause, great relative humidity) -> Regularly people (1131ms) What is relative humidity? low 60s 0.444444444444 What is relative humidity? -> $x: ($x, in, relative humidity) -> (low 60s, will result in, relative humidity values) -> low 60s (1938ms) What is relative humidity? CLOUDS 0.444444444444 What is relative humidity? -> $x: ($x, in, relative humidity) -> (CLOUDS, IS FAVORED IN, RELATIVE HUMIDITY FIELDS ACROSS) -> CLOUDS (1178ms) What is relative humidity? evaporation 0.444444444444 What is relative humidity? -> $x: ($x, in, relative humidity) -> (evaporation, may be due to change in, relative humidity levels) -> evaporation (1808ms) What is relative humidity? molds 0.444444444444 What is relative humidity? -> $x: ($x, in, relative humidity) -> (molds, thrive in, relative humidity conditions) -> molds (1938ms) What is relative humidity? high relative humidity 0.444444444444 What is relative humidity? -> $x: ($x, in, relative humidity) -> (high relative humidity, shrink in, low relative humidity) -> high relative humidity (1900ms) What is relative humidity? the most startling contrast 0.444444444444 What is relative humidity? -> $x: ($x, in, relative humidity) -> (the most startling contrast, is in, relative humidity) -> the most startling contrast (1808ms) What is relative humidity? Pianos 0.444444444444 What is relative humidity? -> $x: ($x, in, relative humidity) -> (Pianos, are happiest in, a relative humidity level) -> Pianos (1938ms) What is relative humidity? the job site 0.444444444444 What is relative humidity? -> $x: ($x, in, relative humidity) -> (the job site, is quite low in, relative humidity) -> the job site (1808ms) What is relative humidity? Coreci 0.444444444444 What is relative humidity? -> $x: ($x, in, relative humidity) -> (Coreci, has been a major force in, the relative humidity market) -> Coreci (1177ms) What is relative humidity? level 0.444444444444 What is relative humidity? -> $x: ($x, in, relative humidity) -> (level, drops approximately 7 % in, relative humidity) -> level (1900ms) What is relative humidity? AFTERNOON VERTICAL MIXING 0.444444444444 What is relative humidity? -> $x: ($x, in, relative humidity) -> (AFTERNOON VERTICAL MIXING, WILL RESULT IN, RELATIVE HUMIDITIES) -> AFTERNOON VERTICAL MIXING (1900ms) What is relative humidity? an F 0.444444444444 What is relative humidity? -> $x: ($x, in, relative humidity) -> (an F, is in measuring, the temperatures and relative humidities) -> an F (2269ms) What is relative humidity? an airborne fungus 0.444444444444 What is relative humidity? -> $x: ($x, in, relative humidity) -> (an airborne fungus, is found in, areas of high relative humidity) -> an airborne fungus (2269ms) What is relative humidity? the wood 0.444444444444 What is relative humidity? -> $x: ($x, in, relative humidity) -> (the wood, is kept in, a relative humidity) -> the wood (1808ms) What is relative humidity? Optional 0.444444444444 What is relative humidity? -> $x: ($x, in, relative humidity) -> (Optional, plug in, relative humidity probe) -> Optional (1938ms) What is relative humidity? furniture 0.444444444444 What is relative humidity? -> $x: ($x, in, relative humidity) -> (furniture, is great changes in, relative humidity) -> furniture (2269ms) What is relative humidity? the air of 0.444444444444 What is relative humidity? -> $x: ($x, in, relative humidity) -> (the air of, measured in, relative humidity) -> the air of (2269ms) What is relative humidity? The answer 0.444444444444 What is relative humidity? -> $x: ($x, in, relative humidity) -> (The answer, lies in, the relative humidity) -> The answer (2269ms) What is relative humidity? the ABB range 0.444444444444 What is relative humidity? -> $x: ($x, in, relative humidity) -> (the ABB range, can also work in, 100 % relative humidity) -> the ABB range (1938ms) What is relative humidity? crates 0.444444444444 What is relative humidity? -> $x: ($x, in, relative humidity) -> (crates, monitor change in, temperature and relative humidity) -> crates (1938ms) What is relative humidity? Nearly all plants 0.444444444444 What is relative humidity? -> $x: ($x, in, relative humidity) -> (Nearly all plants, thrive in, 80 % relative humidity) -> Nearly all plants (1900ms) What is relative humidity? The product 0.444444444444 What is relative humidity? -> $x: ($x, in, relative humidity) -> (The product, should store in, the relative humidity) -> The product (1808ms) What is relative humidity? The air 0.444444444444 What is relative humidity? -> $x: ($x, in, relative humidity) -> (The air, will slowly rise in, temperature and relative humidity) -> The air (1808ms) What is relative humidity? low dewpoints 0.444444444444 What is relative humidity? -> $x: ($x, in, relative humidity) -> (low dewpoints, will result in, relative humidity values) -> low dewpoints (1900ms) What is relative humidity? 70?F 0.444444444444 What is relative humidity? -> $x: ($x, in, relative humidity) -> (70?F, will result in, a relative humidity) -> 70?F (1177ms) What is relative humidity? 72?F 0.444444444444 What is relative humidity? -> $x: ($x, in, relative humidity) -> (72?F, will result in, 55 % relative humidity) -> 72?F (1900ms) What is relative humidity? GCRs 0.444444444444 What is relative humidity? -> $x: ($x, in, relative humidity) -> (GCRs, include increases in, relative humidities) -> GCRs (1808ms) What is relative humidity? the increased temperatures 0.444444444444 What is relative humidity? -> $x: ($x, in, relative humidity) -> (the increased temperatures, result in, lower relative humidity) -> the increased temperatures (1938ms) What is relative humidity? Mold 0.444444444444 What is relative humidity? -> $x: ($x, in, relative humidity) -> (Mold, can bloom again in, elevated relative humidity) -> Mold (2269ms) What is relative humidity? 50 F 0.444444444444 What is relative humidity? -> $x: ($x, in, relative humidity) -> (50 F, resulted in, low relative humidities) -> 50 F (1900ms) What is relative humidity? the outside air 0.333333333334 What is relative humidity? -> $x: ($x, be low, humidity) -> (the outside air, is low in, humidity) -> the outside air (2302ms) What is relative humidity? winter air 0.333333333334 What is relative humidity? -> $x: ($x, be low, humidity) -> (winter air, is so low in, humidity) -> winter air (2302ms) What is relative humidity? The environment 0.333333333334 What is relative humidity? -> $x: ($x, be low, humidity) -> (The environment, can be low in, humidity) -> The environment (2337ms) What is relative humidity? The temperature 0.333333333334 What is relative humidity? -> $x: ($x, be low, humidity) -> (The temperature, is low because, of the humidity) -> The temperature (2337ms) What is relative humidity? the temperature 0.333333333334 What is relative humidity? -> $x: ($x, be low, humidity) -> (the temperature, is always low with extremely, high humidity) -> the temperature (2337ms) What is relative humidity? Guanacaste 0.333333333334 What is relative humidity? -> $x: ($x, be low, humidity) -> (Guanacaste, is low in, humidity) -> Guanacaste (2302ms) What is relative humidity? Temperature-controlled rooms 0.333333333334 What is relative humidity? -> $x: ($x, be low, humidity) -> (Temperature-controlled rooms, are often very low in, humidity) -> Temperature-controlled rooms (2302ms) What is relative humidity? the annual rainfall 0.333333333334 What is relative humidity? -> $x: ($x, be low, humidity) -> (the annual rainfall, is low as well as, low humidity) -> the annual rainfall (2302ms) What is relative humidity? the water content 0.333333333334 What is relative humidity? -> $x: ($x, be low, humidity) -> (the water content, is expected to be low at, relative humidities) -> the water content (2337ms) What is relative humidity? the payload container 0.333333333334 What is relative humidity? -> $x: ($x, be low, humidity) -> (the payload container, is low in, humidity) -> the payload container (2338ms) What is relative humidity? perfectly timed rain events 0.333333333334 What is relative humidity? -> $x: ($x, be low, humidity) -> (perfectly timed rain events, was otherwise low in, humidity) -> perfectly timed rain events (2302ms) What is relative humidity? A summer 0.333333333334 What is relative humidity? -> $x: ($x, be low, humidity) -> (A summer, was otherwise low in, humidity) -> A summer (2269ms) What is relative humidity? Airline cabin air 0.333333333334 What is relative humidity? -> $x: ($x, be low, humidity) -> (Airline cabin air, is extremely low in, humidity) -> Airline cabin air (2302ms) What is relative humidity? The storage room 0.333333333334 What is relative humidity? -> $x: ($x, be low, humidity) -> (The storage room, should be low in, humidity and cool) -> The storage room (2337ms) What is relative humidity? adolescents 0.33333333333299997 What is relative humidity? -> $x: (relative humidity, do, $x) -> (17 % relative humidity, did, adolescents) -> adolescents (2376ms) What is relative humidity? the moisture 0.33333333333299997 What is relative humidity? -> $x: (relative humidity, do, $x) -> (relative humidity, does give an overview of, the moisture) -> the moisture (2376ms) What is relative humidity? UTH 0.33333333333299997 What is relative humidity? -> $x: ($x, be meaning of, relative humidity) -> (UTH, is a weighted mean of, fractional relative humidity) -> UTH (2337ms) What is relative humidity? the duration 0.333333333332 What is relative humidity? -> $x: (relative humidity, be for, $x) -> (relative humidity, were recorded for, the duration) -> the duration (2413ms) What is relative humidity? 55 degree F. Q 0.333333333332 What is relative humidity? -> $x: ($x, do, relative humidity) -> (55 degree F. Q, does, high relative humidity) -> 55 degree F. Q (2413ms) What is relative humidity? the press room 0.333333333332 What is relative humidity? -> $x: (relative humidity, be for, $x) -> (60 % relative humidity, is recommended for, the press room) -> the press room (2438ms) What is relative humidity? lumber 0.333333333332 What is relative humidity? -> $x: (relative humidity, be for, $x) -> (relative humidity, is used for drying, lumber) -> lumber (2376ms) What is relative humidity? officials 0.333333333332 What is relative humidity? -> $x: (relative humidity, be for, $x) -> (relative humidity values, were factors for, officials) -> officials (2413ms) What is relative humidity? microbes 0.333333333332 What is relative humidity? -> $x: (relative humidity, be for, $x) -> (a 45 % relative humidity, is best for killing, microbes) -> microbes (2437ms) What is relative humidity? infection 0.333333333332 What is relative humidity? -> $x: (relative humidity, be for, $x) -> (high relative humidity, is required for, infection) -> infection (2438ms) What is relative humidity? analysis 0.333333333332 What is relative humidity? -> $x: (relative humidity, be for, $x) -> (temperature and relative humidity data, be used for, analysis) -> analysis (2413ms) What is relative humidity? systems 0.333333333332 What is relative humidity? -> $x: ($x, produce, relative humidity) -> (systems, produce low levels of, relative humidity) -> systems (2438ms) What is relative humidity? a user 0.333333333332 What is relative humidity? -> $x: ($x, define, relative humidity) -> (a user, defined, relative humidity) -> a user (2437ms) What is relative humidity? spores 0.333333333332 What is relative humidity? -> $x: (relative humidity, be for, $x) -> (high relative humidities, are required for, spores) -> spores (2413ms) What is relative humidity? 7 am 0.333333333332 What is relative humidity? -> $x: (relative humidity, be for, $x) -> (The Morning relative humidity percentages, are for, 7 am) -> 7 am (2376ms) What is relative humidity? textiles 0.333333333332 What is relative humidity? -> $x: (relative humidity, be for, $x) -> (Relative humidity levels, must be mid-range for, textiles) -> textiles (2377ms) What is relative humidity? reduction 0.333333333332 What is relative humidity? -> $x: (relative humidity, be for, $x) -> (high relative humidity, is essential for, reduction) -> reduction (2438ms) What is relative humidity? a saturated NaCl solution 0.333333333332 What is relative humidity? -> $x: ($x, produce, relative humidity) -> (a saturated NaCl solution, produces, 76 % relative humidity) -> a saturated NaCl solution (2413ms) What is relative humidity? mold growth 0.333333333332 What is relative humidity? -> $x: (relative humidity, be for, $x) -> (50 % relative humidity, is ideal for, mold growth) -> mold growth (2437ms) What is relative humidity? consistent results 0.333333333332 What is relative humidity? -> $x: (relative humidity, be for, $x) -> (relative humidity, is a critical factor for, consistent results) -> consistent results (2376ms) What is relative humidity? least 24 hours 0.333333333332 What is relative humidity? -> $x: (relative humidity, be for, $x) -> (high relative humidity, are required for at, least 24 hours) -> least 24 hours (2376ms) What is relative humidity? month 0.333333333332 What is relative humidity? -> $x: (relative humidity, be for, $x) -> (45 Relative Humidity as low as 31 %, is low for, month) -> month (2413ms) What is relative humidity? the house 0.333333333332 What is relative humidity? -> $x: ($x, produce, relative humidity) -> (the house, produces, high relative humidity) -> the house (2438ms) What is relative humidity? a few days 0.333333333332 What is relative humidity? -> $x: (relative humidity, be for, $x) -> (the relative humidity, was low for, a few days) -> a few days (2438ms) What is relative humidity? Unheated areas 0.333333333332 What is relative humidity? -> $x: ($x, produce, relative humidity) -> (Unheated areas, can sometimes produce, relative humidities) -> Unheated areas (2437ms) What is relative humidity? good health ?? ? 0.333333333332 What is relative humidity? -> $x: (relative humidity, be for, $x) -> (relative humidity, is vital for, good health ?? ?) -> good health ?? ? (2438ms) What is relative humidity? Experiments 0.333333333332 What is relative humidity? -> $x: ($x, do, relative humidity) -> (Experiments, were done at, constant relative humidity) -> Experiments (2438ms) What is relative humidity? wet- 0.333333333332 What is relative humidity? -> $x: (relative humidity, be for, $x) -> (daily relative humidity, is adjusted to account for, wet-) -> wet- (2437ms) What is relative humidity? selected cities 0.333333333332 What is relative humidity? -> $x: (relative humidity, be for, $x) -> (relative humidity, is displayed for, selected cities) -> selected cities (2437ms) What is relative humidity? conservation 0.333333333332 What is relative humidity? -> $x: (relative humidity, be for, $x) -> (relative humidity and handling, is essential for, conservation) -> conservation (2413ms) What is relative humidity? several reasons 0.333333333332 What is relative humidity? -> $x: (relative humidity, be for, $x) -> (low relative humidity, is inadequate for, several reasons) -> several reasons (2413ms) What is relative humidity? susceptibility 0.333333333332 What is relative humidity? -> $x: ($x, do, relative humidity) -> (susceptibility, does, 100 % relative humidity) -> susceptibility (2413ms) What is relative humidity? vapor barriers 0.333333333332 What is relative humidity? -> $x: ($x, do, relative humidity) -> (vapor barriers, do, effect indoor relative humidity) -> vapor barriers (2438ms) What is relative humidity? a given condition 0.333333333332 What is relative humidity? -> $x: ($x, define, relative humidity) -> (a given condition, is defined as, the RELATIVE HUMIDITY) -> a given condition (2413ms) What is relative humidity? the calculator 0.222222222222 What is relative humidity? -> $x: ($x, found, relative humidity) -> (the calculator, find, the relative humidity) -> the calculator (2444ms) What is relative humidity? Weather reports 0.222222222222 What is relative humidity? -> $x: ($x, refer, relative humidity) -> (Weather reports, commonly refer to, relative humidity) -> Weather reports (2444ms) What is relative humidity? The dense plant population 0.222222222222 What is relative humidity? -> $x: ($x, create, relative humidity) -> (The dense plant population, creates, high relative humidity) -> The dense plant population (2444ms) What is relative humidity? Get details 0.222222222222 What is relative humidity? -> $x: ($x, found, relative humidity) -> (Get details, Find, the Relative Humidity) -> Get details (2444ms) What is relative humidity? mold 0.222222222222 What is relative humidity? -> $x: ($x, refer, relative humidity) -> (mold, can also refer to, high relative humidity) -> mold (2444ms) What is relative humidity? the hot air 0.222222222222 What is relative humidity? -> $x: ($x, create, relative humidity) -> (the hot air, creates, a low relative humidity) -> the hot air (2444ms) What is relative humidity? a table 0.222222222222 What is relative humidity? -> $x: ($x, found, relative humidity) -> (a table, to find, the relative humidity) -> a table (2444ms) What is relative humidity? the atmosphere 0.222222222222 What is relative humidity? -> $x: ($x, refer, relative humidity) -> (the atmosphere, is referred to as, Relative Humidity) -> the atmosphere (2444ms) What is relative humidity? Questions 0.222222222222 What is relative humidity? -> $x: ($x, happen to, relative humidity) -> (Questions, happens to, the relative humidity) -> Questions (2444ms) What is relative humidity? a feral hive 0.222222222222 What is relative humidity? -> $x: ($x, found, relative humidity) -> (a feral hive, has been found with, a relative humidity) -> a feral hive (2438ms) What is relative humidity? A calculator 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (A calculator, will be used to convert to, relative humidity) -> A calculator (2496ms) What is relative humidity? tests 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (tests, will be conducted to measure, relative humidity) -> tests (2500ms) What is relative humidity? Water requirement 0.222222222221 What is relative humidity? -> $x: ($x, influence, relative humidity) -> (Water requirement, is strongly influenced by, relative humidity) -> Water requirement (2465ms) What is relative humidity? over-watering 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (over-watering, is to install, a relative humidity sensor) -> over-watering (2484ms) What is relative humidity? the attic 0.222222222221 What is relative humidity? -> $x: ($x, can, relative humidity) -> (the attic, can increase, the relative humidity in the attic) -> the attic (2480ms) What is relative humidity? Problem fire behavior 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (Problem fire behavior, will be offset by, relative humidity) -> Problem fire behavior (2455ms) What is relative humidity? Disease development 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (Disease development, is favored by, relative humidity) -> Disease development (2480ms) What is relative humidity? the average heated home 0.222222222221 What is relative humidity? -> $x: ($x, can, relative humidity) -> (the average heated home, can have, a relative humidity) -> the average heated home (2455ms) What is relative humidity? a desiccant 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (a desiccant, is to actively reduce, the relative humidity) -> a desiccant (2500ms) What is relative humidity? the key 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (the key, is to regulate, the relative humidity level) -> the key (2496ms) What is relative humidity? the device 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (the device, could have been affected by, relative humidity) -> the device (2508ms) What is relative humidity? foxing 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (foxing, is, relative humidity) -> foxing (2484ms) What is relative humidity? Cloud fraction 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (Cloud fraction, is based upon, relative humidity) -> Cloud fraction (2460ms) What is relative humidity? buildings 0.222222222221 What is relative humidity? -> $x: ($x, can, relative humidity) -> (buildings, can have a high level of, relative humidity) -> buildings (2465ms) What is relative humidity? 10-15 % 0.222222222221 What is relative humidity? -> $x: (relative humidity, be about, $x) -> (the relative humidity, is only about, 10-15 %) -> 10-15 % (2492ms) What is relative humidity? the MODEL 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (the MODEL, is indeed very sensitive to, relative humidity) -> the MODEL (2465ms) What is relative humidity? A well soaked sponge 0.222222222221 What is relative humidity? -> $x: ($x, can, relative humidity) -> (A well soaked sponge, can easily raise, the relative humidity) -> A well soaked sponge (2484ms) What is relative humidity? closets 0.222222222221 What is relative humidity? -> $x: ($x, can, relative humidity) -> (closets, can have, a higher relative humidity) -> closets (2480ms) What is relative humidity? an air parcel 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (an air parcel, is saturated, ( relative humidity) -> an air parcel (2489ms) What is relative humidity? The following steps 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (The following steps, can be taken to control, relative humidity) -> The following steps (2484ms) What is relative humidity? money 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (money, is correlated to, the relative humidity) -> money (2503ms) What is relative humidity? 70 to 80 percent 0.222222222221 What is relative humidity? -> $x: (relative humidity, be about, $x) -> (the relative humidity, is generally about, 70 to 80 percent) -> 70 to 80 percent (2508ms) What is relative humidity? the Ski*go wax line 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (the Ski*go wax line, is tuned to, different relative humidities) -> the Ski*go wax line (2484ms) What is relative humidity? 100 % 0.222222222221 What is relative humidity? -> $x: (relative humidity, be about, $x) -> (The relative humidity, is maintained at about, 100 %) -> 100 % (2492ms) What is relative humidity? the material 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (the material, be exposed to, normal relative humidity) -> the material (2450ms) What is relative humidity? the unit 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (the unit, is off 10 points of, relative humidity) -> the unit (2500ms) What is relative humidity? deserts 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (deserts, is, relative humidity) -> deserts (2489ms) What is relative humidity? 60 % 0.222222222221 What is relative humidity? -> $x: (relative humidity, be about, $x) -> (the relative humidity, is about, 60 %) -> 60 % (2508ms) What is relative humidity? explaining humidity 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (explaining humidity, are, relative humidity) -> explaining humidity (2484ms) What is relative humidity? 0o and 40 0.222222222221 What is relative humidity? -> $x: ($x, can, relative humidity) -> (0o and 40, can tolerate up to, 90 % relative humidity) -> 0o and 40 (2500ms) What is relative humidity? snow 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (snow, is affected by, relative humidity) -> snow (2476ms) What is relative humidity? Conidia 0.222222222221 What is relative humidity? -> $x: ($x, can, relative humidity) -> (Conidia, can germinate at, relative humidity) -> Conidia (2465ms) What is relative humidity? 85 % 0.222222222221 What is relative humidity? -> $x: (relative humidity, be about, $x) -> (The relative humidity, is about, 85 %) -> 85 % (2506ms) What is relative humidity? 68 % 0.222222222221 What is relative humidity? -> $x: (relative humidity, be about, $x) -> (the average relative humidity, is about, 68 %) -> 68 % (2455ms) What is relative humidity? the 8912 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (the 8912, is capable of measuring, relative humidity) -> the 8912 (2506ms) What is relative humidity? plastifier 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (plastifier, had been exposed to, low relative humidity) -> plastifier (2488ms) What is relative humidity? the mites 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (the mites, were very sensitive to, relative humidity) -> the mites (2492ms) What is relative humidity? 55 % or less 0.222222222221 What is relative humidity? -> $x: (relative humidity, be about, $x) -> (the relative humidity, is always about, 55 % or less) -> 55 % or less (2484ms) What is relative humidity? Transmission Efficiency 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (Transmission Efficiency, Is Dependent on, Relative Humidity) -> Transmission Efficiency (2470ms) What is relative humidity? F. Spores 0.222222222221 What is relative humidity? -> $x: ($x, can, relative humidity) -> (F. Spores, can form after, 15 hours of high relative humidity) -> F. Spores (2455ms) What is relative humidity? Efficacy 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (Efficacy, will be variable depending upon, relative humidity) -> Efficacy (2496ms) What is relative humidity? every effort 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (every effort, should be made to maintain, the relative humidity) -> every effort (2488ms) What is relative humidity? the row and column intersect 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (the row and column intersect, is, the relative humidity) -> the row and column intersect (2450ms) What is relative humidity? water absorption 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (water absorption, is a function of, relative humidity) -> water absorption (2480ms) What is relative humidity? transpiration 0.222222222221 What is relative humidity? -> $x: ($x, influence, relative humidity) -> (transpiration, is influenced by, the relative humidity) -> transpiration (2508ms) What is relative humidity? 70 percent 0.222222222221 What is relative humidity? -> $x: (relative humidity, be about, $x) -> (The average relative humidity, is about, 70 percent) -> 70 percent (2444ms) What is relative humidity? 75 % 0.222222222221 What is relative humidity? -> $x: (relative humidity, be about, $x) -> (the relative humidity, was about, 75 %) -> 75 % (2503ms) What is relative humidity? 60 percent 0.222222222221 What is relative humidity? -> $x: (relative humidity, be about, $x) -> (The average noonday relative humidity, is about, 60 percent) -> 60 percent (2450ms) What is relative humidity? a small CO2 warming 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (a small CO2 warming, is predicted to increase, relative humidity) -> a small CO2 warming (2480ms) What is relative humidity? dry 0.222222222221 What is relative humidity? -> $x: ($x, can, relative humidity) -> (dry, can be dependent on, the relative humidity) -> dry (2506ms) What is relative humidity? 65 % 0.222222222221 What is relative humidity? -> $x: (relative humidity, be about, $x) -> (Relative humidity, is about, 65 %) -> 65 % (2503ms) What is relative humidity? The display 0.222222222221 What is relative humidity? -> $x: ($x, can, relative humidity) -> (The display, can also show, the room?s relative humidity) -> The display (2455ms) What is relative humidity? Silica gel packets 0.222222222221 What is relative humidity? -> $x: ($x, can, relative humidity) -> (Silica gel packets, can drop, the relative humidity) -> Silica gel packets (2508ms) What is relative humidity? the production 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (the production, is, relative humidity) -> the production (2500ms) What is relative humidity? issues 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (issues, were once again taken up with, relative humidity) -> issues (2496ms) What is relative humidity? Bufkit 0.222222222221 What is relative humidity? -> $x: ($x, can, relative humidity) -> (Bufkit, can now display, Relative Humidity) -> Bufkit (2460ms) What is relative humidity? the humidity 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (the humidity, is increased to, 65 % relative humidity or more) -> the humidity (2476ms) What is relative humidity? TrimView 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (TrimView, is able to determine, the current relative humidity) -> TrimView (2460ms) What is relative humidity? combination 0.222222222221 What is relative humidity? -> $x: ($x, can, relative humidity) -> (combination, can be used to measure, the relative humidity) -> combination (2500ms) What is relative humidity? the disease severity 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (the disease severity, are very dependent on, relative humidity) -> the disease severity (2444ms) What is relative humidity? none 0.222222222221 What is relative humidity? -> $x: ($x, can, relative humidity) -> (none, can achieve, 50 percent relative humidity) -> none (2492ms) What is relative humidity? the maximum 0.222222222221 What is relative humidity? -> $x: (relative humidity, be about, $x) -> (50 % relative humidity, is about, the maximum) -> the maximum (2496ms) What is relative humidity? 2.0. 5 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (2.0. 5, is, Relative Humidity) -> 2.0. 5 (2470ms) What is relative humidity? disease development 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (disease development, are moderate to, low relative humidity) -> disease development (2492ms) What is relative humidity? the cell 0.222222222221 What is relative humidity? -> $x: ($x, can, relative humidity) -> (the cell, can depend on, the relative humidity) -> the cell (2508ms) What is relative humidity? A humidifier 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (A humidifier, is recommended to keep, the relative humidity) -> A humidifier (2492ms) What is relative humidity? air 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (air, is also commonly reported as, relative humidity) -> air (2500ms) What is relative humidity? the disease 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (the disease, are, relative humidity) -> the disease (2444ms) What is relative humidity? human hair 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (human hair, is used to measure, relative humidity) -> human hair (2460ms) What is relative humidity? the mirror 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (the mirror, was exposed to, ~40 % relative humidity) -> the mirror (2506ms) What is relative humidity? Attention 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (Attention, must be paid to, relative humidity and dew points) -> Attention (2492ms) What is relative humidity? climate shape ecosystems 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (climate shape ecosystems, is, relative humidity) -> climate shape ecosystems (2492ms) What is relative humidity? production 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (production, have been reported to increase, relative humidity) -> production (2492ms) What is relative humidity? nail keratin 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (nail keratin, is proportional to, the relative humidity) -> nail keratin (2496ms) What is relative humidity? cigars 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (cigars, is to achieve, a stable and ideal relative humidity) -> cigars (2455ms) What is relative humidity? 40 percent 0.222222222221 What is relative humidity? -> $x: (relative humidity, be about, $x) -> (relative humidities, were about 35 to, 40 percent) -> 40 percent (2465ms) What is relative humidity? The first one 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (The first one, is to identify, the relative humidity) -> The first one (2450ms) What is relative humidity? 70 0.222222222221 What is relative humidity? -> $x: (relative humidity, be about, $x) -> (Relative humidities, are about, 70) -> 70 (2503ms) What is relative humidity? dehumidifiers 0.222222222221 What is relative humidity? -> $x: ($x, can, relative humidity) -> (dehumidifiers, can effectively bring down, the Relative Humidity) -> dehumidifiers (2503ms) What is relative humidity? Operating range 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (Operating range, is 0 % to, 100 % relative humidity) -> Operating range (2455ms) What is relative humidity? conidiophores and conidia 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (conidiophores and conidia, is affected by, relative humidity) -> conidiophores and conidia (2460ms) What is relative humidity? turn 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (turn, are used to determine, Relative Humidity and Dew Point) -> turn (2503ms) What is relative humidity? Germination 0.222222222221 What is relative humidity? -> $x: ($x, can, relative humidity) -> (Germination, can occur at, relative humidities) -> Germination (2465ms) What is relative humidity? cloud 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (cloud, is dependent on, relative humidity) -> cloud (2506ms) What is relative humidity? 22? 0.222222222221 What is relative humidity? -> $x: (relative humidity, be about, $x) -> (the relative humidity, was about 80 % at, 22?) -> 22? (2450ms) What is relative humidity? Condensation 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (Condensation, is a function of, relative humidity) -> Condensation (2470ms) What is relative humidity? The most commonly used parameter 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (The most commonly used parameter, is, relative humidity) -> The most commonly used parameter (2476ms) What is relative humidity? Finishes 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (Finishes, are affected by, relative humidity) -> Finishes (2506ms) What is relative humidity? wood or drywall 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (wood or drywall, is exposed to, a relative humidity) -> wood or drywall (2506ms) What is relative humidity? 70 % 0.222222222221 What is relative humidity? -> $x: (relative humidity, be about, $x) -> (The relative humidity, was about, 70 %) -> 70 % (2460ms) What is relative humidity? 50 % 0.222222222221 What is relative humidity? -> $x: (relative humidity, be about, $x) -> (relative humidity, can be kept at about, 50 %) -> 50 % (2500ms) What is relative humidity? the Cigar Oasis Ultra 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (the Cigar Oasis Ultra, is factory set to, 70 % relative humidity) -> the Cigar Oasis Ultra (2506ms) What is relative humidity? even ventilation systems 0.222222222221 What is relative humidity? -> $x: ($x, can, relative humidity) -> (even ventilation systems, can raise, relative humidity) -> even ventilation systems (2480ms) What is relative humidity? Basements Basements 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (Basements Basements, are prone to, elevated relative humidity) -> Basements Basements (2460ms) What is relative humidity? paper 0.222222222221 What is relative humidity? -> $x: ($x, can, relative humidity) -> (paper, can stay closer to, an ideal 55 % relative humidity) -> paper (2496ms) What is relative humidity? The same method 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (The same method, is used to calculate, relative humidity) -> The same method (2508ms) What is relative humidity? Curing times 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (Curing times, will be affected by, relative humidity) -> Curing times (2475ms) What is relative humidity? materials 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (materials, is almost solely dependant on, relative humidity) -> materials (2450ms) What is relative humidity? RH 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (RH, is, relative humidity) -> RH (2476ms) What is relative humidity? a broad range 0.222222222221 What is relative humidity? -> $x: ($x, can, relative humidity) -> (a broad range, can provide low levels of, relative humidity) -> a broad range (2508ms) What is relative humidity? the pesky little critters 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (the pesky little critters, is to lower, the relative humidity) -> the pesky little critters (2470ms) What is relative humidity? ice 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (ice, was used to get, relative humidity) -> ice (2484ms) What is relative humidity? Humidity 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (Humidity, was previously measured by, relative humidity) -> Humidity (2506ms) What is relative humidity? A table 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (A table, can be used to determine, the relative humidity) -> A table (2465ms) What is relative humidity? Features 0.222222222221 What is relative humidity? -> $x: ($x, can, relative humidity) -> (Features, Can withstand up to, 90 % relative humidity) -> Features (2488ms) What is relative humidity? 30 % 0.222222222221 What is relative humidity? -> $x: (relative humidity, be about, $x) -> (relative humidity, was about, 30 %) -> 30 % (2488ms) What is relative humidity? the sensor 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (the sensor, is a measure for, relative humidity) -> the sensor (2506ms) What is relative humidity? SO2 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (SO2, was investigated under, relative humidity) -> SO2 (2503ms) What is relative humidity? water 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (water, is compared to, a relative humidity) -> water (2492ms) What is relative humidity? Trehalose dihydrate 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (Trehalose dihydrate, is stable up to, 94 % relative humidity) -> Trehalose dihydrate (2506ms) What is relative humidity? The DampGuard 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (The DampGuard, is designed to monitor, relative humidity) -> The DampGuard (2508ms) What is relative humidity? heat 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (heat, is used to lower, the relative humidity) -> heat (2470ms) What is relative humidity? the heating season 0.222222222221 What is relative humidity? -> $x: ($x, can, relative humidity) -> (the heating season, can result from, low relative humidity) -> the heating season (2465ms) What is relative humidity? water vapor 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (water vapor, is measured as, Relative Humidity) -> water vapor (2476ms) What is relative humidity? 90 % 0.222222222221 What is relative humidity? -> $x: (relative humidity, be about, $x) -> (the relative humidity, was about, 90 %) -> 90 % (2492ms) What is relative humidity? dashed lines 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (dashed lines, are, relative humidity) -> dashed lines (2476ms) What is relative humidity? sulfur dioxide and nitrogen oxides 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (sulfur dioxide and nitrogen oxides, is, relative humidity) -> sulfur dioxide and nitrogen oxides (2455ms) What is relative humidity? heating climates 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (heating climates, is to keep, the indoor relative humidity) -> heating climates (2484ms) What is relative humidity? Antiques 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (Antiques, should be at, relative humidity) -> Antiques (2508ms) What is relative humidity? the table leaves 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (the table leaves, are adjusting to, the same relative humidity) -> the table leaves (2503ms) What is relative humidity? the left 0.222222222221 What is relative humidity? -> $x: ($x, can, relative humidity) -> (the left, can increase, relative humidity) -> the left (2492ms) What is relative humidity? wet 0.222222222221 What is relative humidity? -> $x: ($x, can, relative humidity) -> (wet, can increase, the relative humidity) -> wet (2480ms) What is relative humidity? units 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (units, are designed to maintain, relative humidity) -> units (2506ms) What is relative humidity? the steam 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (the steam, is saturated, ( relative humidity) -> the steam (2508ms) What is relative humidity? fuel-burning appliances 0.222222222221 What is relative humidity? -> $x: ($x, can, relative humidity) -> (fuel-burning appliances, can raise, the relative humidity) -> fuel-burning appliances (2475ms) What is relative humidity? an affinity 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (an affinity, are sensitive to, high relative humidity) -> an affinity (2508ms) What is relative humidity? The wines 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (The wines, are stored at, relative humidity) -> The wines (2460ms) What is relative humidity? The second map 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (The second map, is a forecast for, relative humidity) -> The second map (2470ms) What is relative humidity? The most effective solution 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (The most effective solution, is to raise, the relative humidity) -> The most effective solution (2503ms) What is relative humidity? 55 % 0.222222222221 What is relative humidity? -> $x: (relative humidity, be about, $x) -> (the relative humidity, is about, 55 %) -> 55 % (2506ms) What is relative humidity? A hygrometer 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (A hygrometer, can be used to measure, relative humidity) -> A hygrometer (2503ms) What is relative humidity? humidity 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (humidity, is expressed as, relative humidity) -> humidity (2506ms) What is relative humidity? cloud fraction 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (cloud fraction, is computed from, relative humidity) -> cloud fraction (2488ms) What is relative humidity? The key 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (The key, is to prevent, relative humidities) -> The key (2496ms) What is relative humidity? 3 degrees 0.222222222221 What is relative humidity? -> $x: (relative humidity, be about, $x) -> (The relative humidity swing, is about 2 to, 3 degrees) -> 3 degrees (2503ms) What is relative humidity? 50 percent 0.222222222221 What is relative humidity? -> $x: (relative humidity, be about, $x) -> (the relative humidity, is above about, 50 percent) -> 50 percent (2480ms) What is relative humidity? altitude 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (altitude, as is, relative humidity) -> altitude (2496ms) What is relative humidity? saturation 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (saturation, is called, relative humidity) -> saturation (2480ms) What is relative humidity? Saturated air 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (Saturated air, is reduced to about, 60 % relative humidity) -> Saturated air (2460ms) What is relative humidity? The climate 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (The climate, is tropical monsoonal with, relative humidity) -> The climate (2444ms) What is relative humidity? A few degrees 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (A few degrees, is enough to lower, the relative humidity) -> A few degrees (2508ms) What is relative humidity? 80 % 0.222222222221 What is relative humidity? -> $x: (relative humidity, be about, $x) -> (the relative humidity, was about, 80 %) -> 80 % (2488ms) What is relative humidity? CaCl2 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (CaCl2, was used to maintain, the relative humidity) -> CaCl2 (2455ms) What is relative humidity? The set points 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (The set points, are labeled as, relative humidity) -> The set points (2488ms) What is relative humidity? An inexpensive hygrometer 0.222222222221 What is relative humidity? -> $x: ($x, can, relative humidity) -> (An inexpensive hygrometer, can indicate, the relative humidity) -> An inexpensive hygrometer (2484ms) What is relative humidity? the plants 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (the plants, are often exposed to, relative humidity levels) -> the plants (2460ms) What is relative humidity? moisture content 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (moisture content, is a function of, relative humidity) -> moisture content (2475ms) What is relative humidity? Developmental time 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (Developmental time, can also be affected by, relative humidity) -> Developmental time (2506ms) What is relative humidity? The spray air 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (The spray air, needs to be less than, 5 % relative humidity) -> The spray air (2450ms) What is relative humidity? Answer 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (Answer, is the difference between, relative humidity) -> Answer (2455ms) What is relative humidity? the humidity threshold 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (the humidity threshold, is reduced to, 80 % relative humidity) -> the humidity threshold (2489ms) What is relative humidity? The cooling unit 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (The cooling unit, is designed to maintain, relative humidity) -> The cooling unit (2470ms) What is relative humidity? a convective environment 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (a convective environment, is the use of, relative humidity) -> a convective environment (2489ms) What is relative humidity? 20 percent 0.222222222221 What is relative humidity? -> $x: (relative humidity, be about, $x) -> (the relative humidity, is greater than about, 20 percent) -> 20 percent (2470ms) What is relative humidity? newspapers 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (newspapers, are usually, relative humidity) -> newspapers (2503ms) What is relative humidity? The annual high temperature 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (The annual high temperature, is 30-45?C with, relative humidity) -> The annual high temperature (2450ms) What is relative humidity? ?humidity ? 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (?humidity ?, is actually, ?relative humidity ?) -> ?humidity ? (2455ms) What is relative humidity? A low cost hygrometer 0.222222222221 What is relative humidity? -> $x: ($x, can, relative humidity) -> (A low cost hygrometer, can be used to measure, relative humidity) -> A low cost hygrometer (2492ms) What is relative humidity? tree 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (tree, are sensitive to, relative humidity) -> tree (2460ms) What is relative humidity? The dew point 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (The dew point, is associated with, relative humidity) -> The dew point (2460ms) What is relative humidity? The two key components 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (The two key components, are, temperature and relative humidity) -> The two key components (2450ms) What is relative humidity? overwatering 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (overwatering, is to install, a relative humidity sensor) -> overwatering (2470ms) What is relative humidity? Development 0.222222222221 What is relative humidity? -> $x: ($x, can, relative humidity) -> (Development, can occur at, a relative humidity) -> Development (2500ms) What is relative humidity? the focus 0.222222222221 What is relative humidity? -> $x: ($x, be be, relative humidity) -> (the focus, has been on, relative humidity) -> the focus (2484ms) What is relative humidity? 40 % 0.222222222221 What is relative humidity? -> $x: (relative humidity, be about, $x) -> (the relative humidity, is about, 40 %) -> 40 % (2500ms) What is relative humidity? 10 % 0.222222222221 What is relative humidity? -> $x: (relative humidity, be about, $x) -> (Relative humidity, was about, 10 %) -> 10 % (2500ms) What is relative humidity? Instruments 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (Instruments, are available to measure, relative humidity) -> Instruments (2496ms) What is relative humidity? a common form 0.222222222221 What is relative humidity? -> $x: ($x, be to, relative humidity) -> (a common form, were exposed to, different relative humidities) -> a common form (2470ms) What is relative humidity? The second philosophy 0.22222222222000002 What is relative humidity? -> $x: ($x, exactly be, relative) -> (The second philosophy, exactly is, relative economic equality) -> The second philosophy (2510ms) What is relative humidity? a house 0.22222222222000002 What is relative humidity? -> $x: ($x, exactly be, relative) -> (a house, will be at exactly, the same relative location) -> a house (2508ms) What is relative humidity? Smart Fog 0.11111111111099997 What is relative humidity? -> $x: ($x, develop, relative humidity) -> (Smart Fog, has developed, a relative humidity control system) -> Smart Fog (2510ms) What is relative humidity? 2 numbers 0.11111111111099997 What is relative humidity? -> $x: ($x, represent, relative humidity) -> (2 numbers, represents, the relative humidity) -> 2 numbers (2510ms) What is relative humidity? The gray scale 0.11111111111099997 What is relative humidity? -> $x: ($x, represent, relative humidity) -> (The gray scale, represents, the relative humidity) -> The gray scale (2511ms) What is relative humidity? brood 0.11111111111099997 What is relative humidity? -> $x: ($x, develop, relative humidity) -> (brood, develops best at, 40 % relative humidity) -> brood (2511ms) What is relative humidity? The displayed values 0.11111111111099997 What is relative humidity? -> $x: ($x, represent, relative humidity) -> (The displayed values, represent, the current relative humidity) -> The displayed values (2510ms) What is relative humidity? Thick , solid lines 0.11111111111099997 What is relative humidity? -> $x: ($x, represent, relative humidity) -> (Thick , solid lines, represent, boundary layer relative humidity) -> Thick , solid lines (2511ms) What is relative humidity? fire suppression -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (higher relative humidity, will aid in, fire suppression) -> fire suppression (2521ms) What is relative humidity? EffectFrom -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (Low Relative Humidity, Is In, EffectFrom) -> EffectFrom (2519ms) What is relative humidity? each room -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidity, were measured in, each room) -> each room (2521ms) What is relative humidity? the teens -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (the relative humidity, is in, the teens) -> the teens (2521ms) What is relative humidity? attics and basements -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (( Relative humidity, can be high in, attics and basements) -> attics and basements (2519ms) What is relative humidity? wildfires -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (low relative humidity, will likely result in, wildfires) -> wildfires (2522ms) What is relative humidity? the range 45-65 % -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (The relative humidity, must be in, the range 45-65 %) -> the range 45-65 % (2519ms) What is relative humidity? the representation -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidity, can be seen in, the representation) -> the representation (2514ms) What is relative humidity? corrosion failures -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (increased relative humidity, can result in, corrosion failures) -> corrosion failures (2522ms) What is relative humidity? Figure 4 -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidities, are presented in, Figure 4) -> Figure 4 (2516ms) What is relative humidity? critical fire weather -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (low relative humidity, will result in, critical fire weather) -> critical fire weather (2513ms) What is relative humidity? hand -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (Temperature and relative humidity, often go hand in, hand) -> hand (2513ms) What is relative humidity? the VFD room -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (The relative humidity, was slightly higher in, the VFD room) -> the VFD room (2518ms) What is relative humidity? clear air -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (high relative humidities, were measured in, clear air) -> clear air (2516ms) What is relative humidity? the 4 % to 5 % range -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> ('s low relative humidity, is often in, the 4 % to 5 % range) -> the 4 % to 5 % range (2519ms) What is relative humidity? the upper atmosphere -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidity, pressure in, the upper atmosphere) -> the upper atmosphere (2519ms) What is relative humidity? winter -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (The relative humidity, is much lower in, winter) -> winter (2518ms) What is relative humidity? weather analysis -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (Relative humidity, is a crucial factor in, weather analysis) -> weather analysis (2516ms) What is relative humidity? hospitals -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (the relative humidity level, is always high in, hospitals) -> hospitals (2519ms) What is relative humidity? Melbourne -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidity, were set in, Melbourne) -> Melbourne (2522ms) What is relative humidity? the 70 % range -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (Relative humidity, was in, the 70 % range) -> the 70 % range (2521ms) What is relative humidity? weather maps -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (Relative humidity, is expressed in, weather maps) -> weather maps (2519ms) What is relative humidity? the 60 percent range -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidity, was in, the 60 percent range) -> the 60 percent range (2519ms) What is relative humidity? single digits -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidities, will be in, single digits) -> single digits (2513ms) What is relative humidity? the two cases -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (low relative humidity, was markedly different in, the two cases) -> the two cases (2518ms) What is relative humidity? low relative humidity -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (high relative humidity, shrink in, low relative humidity) -> low relative humidity (2513ms) What is relative humidity? the 10-20 % range -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (Relative humidity, is expected in, the 10-20 % range) -> the 10-20 % range (2513ms) What is relative humidity? an increasing range -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (Inlet relative humidity, was controlled in, an increasing range) -> an increasing range (2521ms) What is relative humidity? tree rings -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (Relative humidity, recorded in, tree rings) -> tree rings (2522ms) What is relative humidity? the comfort range -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidities, are in, the comfort range) -> the comfort range (2513ms) What is relative humidity? a variety -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (Relative humidity, can be computed in, a variety) -> a variety (2516ms) What is relative humidity? the type -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (Relative humidity, also plays a role in, the type) -> the type (2522ms) What is relative humidity? the region -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (Relative humidity, varies widely in, the region) -> the region (2518ms) What is relative humidity? oxygen and negative ions -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (a relative humidity, is high in, oxygen and negative ions) -> oxygen and negative ions (2518ms) What is relative humidity? Seeds -0.0 What is relative humidity? -> $x: ($x, leave, relative humidity) -> (Seeds, left at, ambient temperature and relative humidity) -> Seeds (2516ms) What is relative humidity? more than 60 percent -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (low relative humidity, has resulted in, more than 60 percent) -> more than 60 percent (2522ms) What is relative humidity? the temperature range -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (the relative humidity sensor, can work in, the temperature range) -> the temperature range (2516ms) What is relative humidity? the humidistat -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (the desired relative humidity, will be set in, the humidistat) -> the humidistat (2513ms) What is relative humidity? the afternoon -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (The relative humidity, is lowest in, the afternoon) -> the afternoon (2519ms) What is relative humidity? the Saddle -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (The relative humidity, was significantly lower in, the Saddle) -> the Saddle (2522ms) What is relative humidity? the mountains -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (the relative humidity, is much lower in, the mountains) -> the mountains (2516ms) What is relative humidity? the range -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (Relative humidity, is in, the range) -> the range (2522ms) What is relative humidity? the 25 to 30 percent range -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (Low relative humidities, will be in, the 25 to 30 percent range) -> the 25 to 30 percent range (2516ms) What is relative humidity? the environment -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (the relative humidity, is lower in, the environment) -> the environment (2521ms) What is relative humidity? terms -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidity, is generally understood in, terms) -> terms (2522ms) What is relative humidity? the western part -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (The relative humidity, had slight drop in, the western part) -> the western part (2521ms) What is relative humidity? percentage -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (Relative humidity, is measured in, percentage) -> percentage (2518ms) What is relative humidity? the daytime , 95 % -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (Relative humidity, is typically 70 % in, the daytime , 95 %) -> the daytime , 95 % (2516ms) What is relative humidity? the daytime -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (The lowest relative humidity, is found generally in, the daytime) -> the daytime (2513ms) What is relative humidity? extensive drying craquelure -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidity, had resulted in, extensive drying craquelure) -> extensive drying craquelure (2519ms) What is relative humidity? July -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (The relative humidity, is the highest in, July) -> July (2522ms) What is relative humidity? a home environment -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidity, goes down in, a home environment) -> a home environment (2518ms) What is relative humidity? the coastal region -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (Relative humidity, is highest in, the coastal region) -> the coastal region (2516ms) What is relative humidity? excess -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidity, is in, excess) -> excess (2518ms) What is relative humidity? the low 30 % range -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidity, is in, the low 30 % range) -> the low 30 % range (2522ms) What is relative humidity? the arid environment -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidity, is low in, the arid environment) -> the arid environment (2521ms) What is relative humidity? the table below -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (the relative humidities, shown in, the table below) -> the table below (2522ms) What is relative humidity? connection -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidity, were recorded hourly in, connection) -> connection (2519ms) What is relative humidity? Bioko -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (The relative humidity, is higher than in, Bioko) -> Bioko (2521ms) What is relative humidity? a range -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidity, should be kept in, a range) -> a range (2521ms) What is relative humidity? spring -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (The average relative humidity, was 70 % in, spring) -> spring (2521ms) What is relative humidity? the high 90s -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (Relative humidity, has a diurnal range in, the high 90s) -> the high 90s (2521ms) What is relative humidity? the fuel -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidity, is in, the fuel) -> the fuel (2522ms) What is relative humidity? the guitar -0.0 What is relative humidity? -> $x: ($x, get, relative humidity) -> (the guitar, gets below, 30 % relative humidity) -> the guitar (2521ms) What is relative humidity? effect -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (low relative humidity, is in, effect) -> effect (2518ms) What is relative humidity? an acceptable manner -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidity, are maintained in, an acceptable manner) -> an acceptable manner (2522ms) What is relative humidity? the 15 to 30 % RH range -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (Relative humidity, should be in, the 15 to 30 % RH range) -> the 15 to 30 % RH range (2522ms) What is relative humidity? the calculation -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (Relative humidity values, are used in, the calculation) -> the calculation (2516ms) What is relative humidity? excellent condition -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (90 % relative humidity, were in, excellent condition) -> excellent condition (2520ms) What is relative humidity? April -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (Average relative humidity, is 60 % in, April) -> April (2522ms) What is relative humidity? a forest -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (The relative humidity, is usually greater in, a forest) -> a forest (2513ms) What is relative humidity? the INDOOR -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidity, are displayed in, the INDOOR) -> the INDOOR (2521ms) What is relative humidity? percent -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (Relative humidity, is expressed in, percent) -> percent (2522ms) What is relative humidity? the morning -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (the relative humidity, is highest in, the morning) -> the morning (2522ms) What is relative humidity? the 10 % to 20 % range -0.0 What is relative humidity? -> $x: (relative humidity, in in, $x) -> (relative humidity, is often in, the 10 % to 20 % range) -> the 10 % to 20 % range (2518ms) What is relative humidity? hs0 -0.111111111112 What is relative humidity? -> $x: ($x, be use as, relative humidity) -> (hs0, is used as, the relative humidity) -> hs0 (2522ms) What is relative humidity? The Humidity class -0.33333333333299997 What is relative humidity? -> $x: ($x, implement, relative humidity) -> (The Humidity class, implements a concept of, a relative humidity) -> The Humidity class (2522ms) What is relative humidity? understanding students -0.33333333333299997 What is relative humidity? -> $x: ($x, concerned, relative humidity) -> (understanding students, may have concerning, relative humidity) -> understanding students (2522ms) What is relative humidity? a free travel -0.555555555554 What is relative humidity? -> $x: ($x, size, humidity) -> (a free travel, sized, humidity-repellent hairspray) -> a free travel (2523ms) Who founded the Church of Jesus Christ of Latter-day Saints? Strangites 1.111111111106 Who founded the Church of Jesus Christ of Latter-day Saints? -> $x: ($x, found, jesus christ of latter day saints) -> (Strangites, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Church%20of%20Jesus%20Christ%20of%20Latter%20Day%20Saints%20(Strangite)) -> Strangites (1409ms) What was the nickname for the French team? Les Bleus 1.6666666666530001 What was the nickname for the French team? -> $x: ($x, be nickname of, french) -> (Les Bleus, is the nickname of, the French football team) -> Les Bleus (745ms) What was the nickname for the French team? Frankie 1.444444444433 What was the nickname for the French team? -> $x: ($x, be nickname for, france) -> (Frankie, was a common nickname for, Frances) -> Frankie (745ms) What was the nickname for the French team? Frank 1.444444444433 What was the nickname for the French team? -> $x: ($x, be nickname for, france) -> (Frank, was a common nickname for, Frances) -> Frank (746ms) What was the nickname for the French team? Spiderman 1.1111111110979999 What was the nickname for the French team? -> $x: ($x, be nickname give to, french) -> (Spiderman, is the nickname given to, French climber Alain Robert) -> Spiderman (746ms) What was the nickname for the French team? Red zone 0.333333333332 What was the nickname for the French team? -> $x: ($x, be nickname for, team) -> (Red zone, is a nickname for, the defensive team) -> Red zone (978ms) What was the nickname for the French team? Katie Martin VOID 0.333333333332 What was the nickname for the French team? -> $x: ($x, be word for, team) -> (Katie Martin VOID, is an unmentionable word for, the expert team) -> Katie Martin VOID (978ms) What was the nickname for the French team? Tigers 0.333333333332 What was the nickname for the French team? -> $x: ($x, be word for, team) -> (Tigers, is just too strong a word for, this team) -> Tigers (978ms) What was the nickname for the French team? OMADA 0.333333333332 What was the nickname for the French team? -> $x: ($x, be word for, team) -> (OMADA, IS THE GREEK WORD FOR, TEAM.) -> OMADA (978ms) What was the nickname for the French team? Service and friendliness 0.333333333332 What was the nickname for the French team? -> $x: ($x, be word for, team) -> (Service and friendliness, are key words for, our management team) -> Service and friendliness (1089ms) What was the nickname for the French team? a last place team Pesky 0.333333333332 What was the nickname for the French team? -> $x: ($x, be word for, team) -> (a last place team Pesky, is the word for, this team) -> a last place team Pesky (978ms) What was the nickname for the French team? ?Triplets ? 0.333333333332 What was the nickname for the French team? -> $x: ($x, be word for, team) -> (?Triplets ?, is basically the buzz word for, a teams) -> ?Triplets ? (978ms) What was the nickname for the French team? ?All ya?ll ? 0.333333333332 What was the nickname for the French team? -> $x: ($x, be word for, team) -> (?All ya?ll ?, is just another word for, team) -> ?All ya?ll ? (978ms) What was the nickname for the French team? Immersion 0.333333333332 What was the nickname for the French team? -> $x: ($x, be word for, team) -> (Immersion, is an important word for, the team) -> Immersion (978ms) What was the nickname for the French team? The Azkals 0.333333333331 What was the nickname for the French team? -> $x: ($x, be nickname of, team) -> (The Azkals, is the nickname of, our football team ..yes) -> The Azkals (1090ms) What was the nickname for the French team? The second box 0.333333333331 What was the nickname for the French team? -> $x: ($x, be nickname of, team) -> (The second box, is the nickname of, your team) -> The second box (1133ms) What was the nickname for the French team? ? Tammy 0.333333333331 What was the nickname for the French team? -> $x: ($x, be nickname of, team) -> (? Tammy, was the nickname of, their team) -> ? Tammy (1133ms) What was the nickname for the French team? the Go-Go Sox 0.333333333331 What was the nickname for the French team? -> $x: ($x, be nickname of, team) -> (the Go-Go Sox, are also nickname of, Chicago White Sox team) -> the Go-Go Sox (1090ms) What was the nickname for the French team? Stanford Cardinal 0.333333333331 What was the nickname for the French team? -> $x: ($x, be nickname of, team) -> (Stanford Cardinal, is the nickname of, the athletic teams) -> Stanford Cardinal (1089ms) What was the nickname for the French team? Chivas 0.333333333331 What was the nickname for the French team? -> $x: ($x, be nickname of, team) -> (Chivas, is the nickname of, the soccer team) -> Chivas (1090ms) What is the oldest university in the US? William and Mary 1.111111111105 What is the oldest university in the US? -> $x: ($x, be oldest university in, us) -> (William and Mary, is the second oldest university in, the US.) -> William and Mary (641ms) What is the oldest university in the US? Rensselaer 1.111111111105 What is the oldest university in the US? -> $x: ($x, be oldest university in, us) -> (Rensselaer, is the oldest technological university in, the U.S.) -> Rensselaer (642ms) What is the oldest university in the US? Chapel Hill 1.111111111105 What is the oldest university in the US? -> $x: ($x, be oldest university in, us) -> (Chapel Hill, is the oldest public university in, the U.S.) -> Chapel Hill (642ms) What is the oldest university in the US? The Quadrangle 0.777777777774 What is the oldest university in the US? -> $x: ($x, be oldest part of, university) -> (The Quadrangle, is the oldest part of, the University campus) -> The Quadrangle (1024ms) What is the oldest university in the US? Harvard Yard 0.777777777774 What is the oldest university in the US? -> $x: ($x, be oldest part of, university) -> (Harvard Yard, is the oldest part of, the Harvard University) -> Harvard Yard (1024ms) How many sonnets did Shakespeare write? wardrobe -0.555555555555 How many sonnets did Shakespeare write? -> $x: (william, be importance of, $x) -> (William, had been discussing the importance of, wardrobe) -> wardrobe (593ms) How many sonnets did Shakespeare write? the bat community -0.555555555555 How many sonnets did Shakespeare write? -> $x: (william, be know about, $x) -> (William E. Rainey, little was known about, the bat community) -> the bat community (593ms) How many sonnets did Shakespeare write? Col -0.555555555555 How many sonnets did Shakespeare write? -> $x: (william, be know about, $x) -> (Colonel William Thrush Little, is known about, Col) -> Col (593ms) How many sonnets did Shakespeare write? atmosphere safeguard -0.6666666666659999 How many sonnets did Shakespeare write? -> $x: (globe, be importance of, $x) -> (the globe, are knowing the importance of, atmosphere safeguard) -> atmosphere safeguard (593ms) How many sonnets did Shakespeare write? the overall results -0.6666666666659999 How many sonnets did Shakespeare write? -> $x: (globe, be know about, $x) -> (the globe, is known about, the overall results) -> the overall results (593ms) How did Eva Peron die? cancer 0.555555555554 How did Eva Peron die? -> $x: (eva peron, die of, $x) -> (Eva Peron, died of, cancer) -> cancer (1197ms) How did Eva Peron die? May 7 , 1919 0.111111111111 How did Eva Peron die? -> $x: (eva peron, be bear on, $x) -> (Eva Peron Maria Eva Duarte, was born on, May 7 , 1919) -> May 7 , 1919 (1197ms) How did Eva Peron die? Argentina 0.111111111109 How did Eva Peron die? -> $x: (eva peron, die in, $x) -> (Eva Peron, died in, Argentina) -> Argentina (1197ms) How did Eva Peron die? July 26 , 1952 -0.0 How did Eva Peron die? -> $x: (eva peron, die, $x) -> (Eva Peron, died on, July 26 , 1952) -> July 26 , 1952 (1440ms) How did Eva Peron die? a year later -0.0 How did Eva Peron die? -> $x: (peron, die, $x) -> (Peron, died, a year later) -> a year later (1440ms) How did Eva Peron die? July 1 , 1974 -0.0 How did Eva Peron die? -> $x: (peron, die, $x) -> (Peron, died on, July 1 , 1974) -> July 1 , 1974 (1440ms) How did Eva Peron die? 1952 -0.0 How did Eva Peron die? -> $x: (peron, die in, $x) -> (Ms. Peron, died in, 1952) -> 1952 (1274ms) How did Eva Peron die? 1974 -0.0 How did Eva Peron die? -> $x: (peron, die, $x) -> (Peron, died in, 1974) -> 1974 (1440ms) How did Eva Peron die? July -0.0 How did Eva Peron die? -> $x: (peron, die, $x) -> (Peron, dies in, July) -> July (1326ms) How did Eva Peron die? office -0.0 How did Eva Peron die? -> $x: (peron, die, $x) -> (President Juan Peron, died in, office) -> office (1405ms) How did Eva Peron die? July 26 , 1952 and Argentina -0.0 How did Eva Peron die? -> $x: (peron, die, $x) -> (Peron, died on, July 26 , 1952 and Argentina) -> July 26 , 1952 and Argentina (1326ms) How did Eva Peron die? 1810 -0.0 How did Eva Peron die? -> $x: (peron, die, $x) -> (Peron, died in, 1810) -> 1810 (1440ms) How did Eva Peron die? last year -0.0 How did Eva Peron die? -> $x: (peron, die, $x) -> (Peron-Wildes and Stephanie Lee, died, last year) -> last year (1405ms) How did Eva Peron die? age 33 -0.0 How did Eva Peron die? -> $x: (peron, die, $x) -> (Evita Peron, died at, age 33) -> age 33 (1405ms) How did Eva Peron die? the musical?s premiere performance -0.111111111112 How did Eva Peron die? -> $x: (eva peron, do, $x) -> (Eva Peron, did so in, the musical?s premiere performance) -> the musical?s premiere performance (1440ms) How did Eva Peron die? Buenos Aires -0.222222222222 How did Eva Peron die? -> $x: (eva peron, be bury in, $x) -> (Eva Peron, is buried in, Buenos Aires) -> Buenos Aires (1440ms) How did Eva Peron die? 1922 -0.333333333334 How did Eva Peron die? -> $x: (eva peron, be bear in, $x) -> (3557 EVA PERON BIOGRAPHY Eva Peron, was born in, 1922) -> 1922 (1448ms) How did Eva Peron die? October 21 , 1945 -0.333333333334 How did Eva Peron die? -> $x: (peron, marry, $x) -> (Juan Peron and Eva, were married on, October 21 , 1945) -> October 21 , 1945 (1448ms) How did Eva Peron die? the former actress Eva Duarte -0.333333333334 How did Eva Peron die? -> $x: (peron, marry, $x) -> (Peron, married, the former actress Eva Duarte) -> the former actress Eva Duarte (1448ms) What was Thailand's original name? a unique collection 0.9999999999959999 What was Thailand's original name? -> $x: ($x, source, thailand) -> (a unique collection, sourced entirely from, Thailand) -> a unique collection (838ms) What was Thailand's original name? gem 0.9999999999959999 What was Thailand's original name? -> $x: ($x, source, thailand) -> (gem, sourced from, Thailand) -> gem (839ms) What was Thailand's original name? hand 0.9999999999959999 What was Thailand's original name? -> $x: ($x, source, thailand) -> (hand, sourced from, Thailand) -> hand (882ms) What was Thailand's original name? TripAdvisor 0.9999999999959999 What was Thailand's original name? -> $x: ($x, source, thailand) -> (TripAdvisor, is the source for, Thailand information) -> TripAdvisor (838ms) What was Thailand's original name? the trucks 0.9999999999959999 What was Thailand's original name? -> $x: ($x, source, thailand) -> (the trucks, will be sourced from, Thailand) -> the trucks (838ms) What was Thailand's original name? The paste 0.9999999999959999 What was Thailand's original name? -> $x: ($x, source, thailand) -> (The paste, is sourced from, Thailand) -> The paste (838ms) What was Thailand's original name? 13-15 % 0.9999999999959999 What was Thailand's original name? -> $x: ($x, source, thailand) -> (13-15 %, is being sourced from, Thailand) -> 13-15 % (838ms) What was Thailand's original name? critical parts 0.9999999999959999 What was Thailand's original name? -> $x: ($x, source, thailand) -> (critical parts, sourced from, Thailand) -> critical parts (882ms) What was Thailand's original name? A few critical electronic parts 0.9999999999959999 What was Thailand's original name? -> $x: ($x, source, thailand) -> (A few critical electronic parts, are sourced from, Thailand) -> A few critical electronic parts (839ms) What was Thailand's original name? income 0.9999999999959999 What was Thailand's original name? -> $x: ($x, source, thailand) -> (income, sourced in, Thailand) -> income (882ms) What was Thailand's original name? the equation 0.9999999999959999 What was Thailand's original name? -> $x: ($x, source, thailand) -> (the equation, are sourced from, Thailand) -> the equation (882ms) What was Thailand's original name? service product 0.9999999999959999 What was Thailand's original name? -> $x: ($x, source, thailand) -> (service product, sourcing, company in Thailand) -> service product (838ms) What was Thailand's original name? Lansinoh?s core products 0.9999999999959999 What was Thailand's original name? -> $x: ($x, source, thailand) -> (Lansinoh?s core products, are sourced in, Thailand) -> Lansinoh?s core products (882ms) What was Thailand's original name? rims 0.9999999999959999 What was Thailand's original name? -> $x: ($x, source, thailand) -> (rims, sourced from, Thailand) -> rims (933ms) What was Thailand's original name? indigenous ingredients 0.9999999999959999 What was Thailand's original name? -> $x: ($x, source, thailand) -> (indigenous ingredients, sourced from, Thailand) -> indigenous ingredients (882ms) What was Thailand's original name? the desserts 0.9999999999959999 What was Thailand's original name? -> $x: ($x, source, thailand) -> (the desserts, are sourced from, Thailand) -> the desserts (882ms) What was Thailand's original name? literally ?first time ? -0.666666666666 What was Thailand's original name? -> $x: ($x, be origin of, french) -> (literally ?first time ?, is the origin of, the French word) -> literally ?first time ? (934ms) What was Thailand's original name? The word roe -0.666666666666 What was Thailand's original name? -> $x: ($x, be origin of, french) -> (The word roe, is the origin of, the French word roi) -> The word roe (934ms) What was Thailand's original name? Lyon -0.666666666666 What was Thailand's original name? -> $x: ($x, be origin of, french) -> (Lyon, is the origin of, French Bistro) -> Lyon (934ms) What was Thailand's original name? Beauty, unaccompanied by virtue, is as a flower without perfume. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Beauty, unaccompanied by virtue, is as a flower without perfume., Source, French Proverb) -> Beauty, unaccompanied by virtue, is as a flower without perfume. (1691ms) What was Thailand's original name? The Latin vagus means -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (The Latin vagus means, is the source of, the French and) -> The Latin vagus means (2088ms) What was Thailand's original name? In love, there is always one who kisses and one who offers the cheek. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (In love, there is always one who kisses and one who offers the cheek., Source, French Proverb) -> In love, there is always one who kisses and one who offers the cheek. (2088ms) What was Thailand's original name? He that is born to be hanged shall never be drowned. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (He that is born to be hanged shall never be drowned., Source, French Proverb) -> He that is born to be hanged shall never be drowned. (2091ms) What was Thailand's original name? If youth but had the knowledge and old age the strength. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (If youth but had the knowledge and old age the strength., Source, French Proverb) -> If youth but had the knowledge and old age the strength. (1691ms) What was Thailand's original name? French Garden House -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (French Garden House, is a great source for, French linens) -> French Garden House (2088ms) What was Thailand's original name? AFP -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (AFP, cite sources from, the French club) -> AFP (1952ms) What was Thailand's original name? The man who has nothing to do is always the busiest. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (The man who has nothing to do is always the busiest., Source, French Proverb) -> The man who has nothing to do is always the busiest. (2088ms) What was Thailand's original name? There is nothing new, but what has become antiquated. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (There is nothing new, but what has become antiquated., Source, French Proverb) -> There is nothing new, but what has become antiquated. (1732ms) What was Thailand's original name? The third form -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (The third form, has its source in, the French Revolution) -> The third form (2029ms) What was Thailand's original name? We know the true worth of a thing when we have lost it. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (We know the true worth of a thing when we have lost it., Source, French Proverb) -> We know the true worth of a thing when we have lost it. (2088ms) What was Thailand's original name? the unit -0.777777777774 What was Thailand's original name? -> $x: ($x, source, singapore) -> (the unit, is sourced from, ( Singapore/Malaysia/other) -> the unit (979ms) What was Thailand's original name? A good meal ought to begin with hunger. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (A good meal ought to begin with hunger., Source, French Proverb) -> A good meal ought to begin with hunger. (2088ms) What was Thailand's original name? Nothing is more elegant than ready money! -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Nothing is more elegant than ready money!, Source, French Proverb) -> Nothing is more elegant than ready money! (2091ms) What was Thailand's original name? Why kill time when one can employ it. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Why kill time when one can employ it., Source, French Proverb) -> Why kill time when one can employ it. (2089ms) What was Thailand's original name? Life is an onion and one cries while peeling it. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Life is an onion and one cries while peeling it., Source, French Proverb) -> Life is an onion and one cries while peeling it. (2030ms) What was Thailand's original name? When we don't have what we like, we must like what we have. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (When we don't have what we like, we must like what we have., Source, French Proverb) -> When we don't have what we like, we must like what we have. (2074ms) What was Thailand's original name? Never speak of a rope in the family of one who has been hanged. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Never speak of a rope in the family of one who has been hanged., Source, French Proverb) -> Never speak of a rope in the family of one who has been hanged. (2074ms) What was Thailand's original name? Bordeaux -0.777777777774 What was Thailand's original name? -> $x: ($x, be source of, french) -> (Bordeaux, is also the source of, the famous French sweet wines) -> Bordeaux (1076ms) What was Thailand's original name? Fear is a great inventor. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Fear is a great inventor., Source, French Proverb) -> Fear is a great inventor. (2089ms) What was Thailand's original name? Fort Loudoun Lake -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Fort Loudoun Lake, Inflow source(s), French Broad River) -> Fort Loudoun Lake (2074ms) What was Thailand's original name? The French work to live, but the Swiss live to work. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (The French work to live, but the Swiss live to work., Source, French Proverb) -> The French work to live, but the Swiss live to work. (1952ms) What was Thailand's original name? Who loves well, chastises well. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Who loves well, chastises well., Source, French Proverb) -> Who loves well, chastises well. (1732ms) What was Thailand's original name? None are more haughty than a common place person raised to power. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (None are more haughty than a common place person raised to power., Source, French Proverb) -> None are more haughty than a common place person raised to power. (2030ms) What was Thailand's original name? Few people rise to our esteem upon closer scrutiny. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Few people rise to our esteem upon closer scrutiny., Source, French Proverb) -> Few people rise to our esteem upon closer scrutiny. (2089ms) What was Thailand's original name? He who comes from afar may lie without fear of contradiction as he is sure to be listened to with the utmost attention. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (He who comes from afar may lie without fear of contradiction as he is sure to be listened to with the utmost attention., Source, French Proverb) -> He who comes from afar may lie without fear of contradiction as he is sure to be listened to with the utmost attention. (1732ms) What was Thailand's original name? Penny wise is often pound foolish. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Penny wise is often pound foolish., Source, French Proverb) -> Penny wise is often pound foolish. (2091ms) What was Thailand's original name? Everyone according to their talent and every talent according to its work. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Everyone according to their talent and every talent according to its work., Source, French Proverb) -> Everyone according to their talent and every talent according to its work. (1691ms) What was Thailand's original name? Duck rillette -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Duck rillette, sourced from, free-range French farms) -> Duck rillette (2074ms) What was Thailand's original name? No wind is of service to him that is bound for nowhere. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (No wind is of service to him that is bound for nowhere., Source, French Proverb) -> No wind is of service to him that is bound for nowhere. (2091ms) What was Thailand's original name? Save a thief from the gallows and he will cut your throat. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Save a thief from the gallows and he will cut your throat., Source, French Proverb) -> Save a thief from the gallows and he will cut your throat. (2091ms) What was Thailand's original name? It's good to be clever, but not to show it. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (It's good to be clever, but not to show it., Source, French Proverb) -> It's good to be clever, but not to show it. (1691ms) What was Thailand's original name? There are two great pleasures in gambling: that of winning and that of losing. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (There are two great pleasures in gambling: that of winning and that of losing., Source, French Proverb) -> There are two great pleasures in gambling: that of winning and that of losing. (2091ms) What was Thailand's original name? Laughing is not always the proof of a mind at ease. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Laughing is not always the proof of a mind at ease., Source, French Proverb) -> Laughing is not always the proof of a mind at ease. (2091ms) What was Thailand's original name? Hope is the dream of a soul awake. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Hope is the dream of a soul awake., Source, French Proverb) -> Hope is the dream of a soul awake. (2088ms) What was Thailand's original name? LCS Stamps -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (LCS Stamps, is a good source for, older French area stamps) -> LCS Stamps (2074ms) What was Thailand's original name? Nothing resembles an honest man more than a cheat. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Nothing resembles an honest man more than a cheat., Source, French Proverb) -> Nothing resembles an honest man more than a cheat. (2088ms) What was Thailand's original name? Love makes time pass away and time makes love pass away. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Love makes time pass away and time makes love pass away., Source, French Proverb) -> Love makes time pass away and time makes love pass away. (2091ms) What was Thailand's original name? Liberty has no crueler enemy than license. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Liberty has no crueler enemy than license., Source, French Proverb) -> Liberty has no crueler enemy than license. (1952ms) What was Thailand's original name? It is a wise man who lives with money in the bank, it is a fool who dies that way. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (It is a wise man who lives with money in the bank, it is a fool who dies that way., Source, French Proverb) -> It is a wise man who lives with money in the bank, it is a fool who dies that way. (1691ms) What was Thailand's original name? What makes us discontented with our condition is the absurdly exaggerated idea we have of the happiness of others. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (What makes us discontented with our condition is the absurdly exaggerated idea we have of the happiness of others., Source, French Proverb) -> What makes us discontented with our condition is the absurdly exaggerated idea we have of the happiness of others. (2088ms) What was Thailand's original name? Great talker, great liar. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Great talker, great liar., Source, French Proverb) -> Great talker, great liar. (2089ms) What was Thailand's original name? There is something in the misfortune of our best friends which does not displease us. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (There is something in the misfortune of our best friends which does not displease us., Source, French Proverb) -> There is something in the misfortune of our best friends which does not displease us. (2088ms) What was Thailand's original name? A good lawyer is a bad neighbor. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (A good lawyer is a bad neighbor., Source, French Proverb) -> A good lawyer is a bad neighbor. (1952ms) What was Thailand's original name? A good swordsman is not given to quarrel. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (A good swordsman is not given to quarrel., Source, French Proverb) -> A good swordsman is not given to quarrel. (2088ms) What was Thailand's original name? He who is near the Church is often far from God. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (He who is near the Church is often far from God., Source, French Proverb) -> He who is near the Church is often far from God. (1952ms) What was Thailand's original name? part -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (part, sourced from, a French vineyard) -> part (2089ms) What was Thailand's original name? Against change of fortune set a brave heart. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Against change of fortune set a brave heart., Source, French Proverb) -> Against change of fortune set a brave heart. (1952ms) What was Thailand's original name? Glutton: one who digs his grave with his teeth. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Glutton: one who digs his grave with his teeth., Source, French Proverb) -> Glutton: one who digs his grave with his teeth. (2089ms) What was Thailand's original name? duck fat -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (duck fat, sourced from, free-frange French duck farms) -> duck fat (2091ms) What was Thailand's original name? One is rated by others as he rates himself. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (One is rated by others as he rates himself., Source, French Proverb) -> One is rated by others as he rates himself. (1732ms) What was Thailand's original name? Desperate maladies require desperate remedies. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Desperate maladies require desperate remedies., Source, French Proverb) -> Desperate maladies require desperate remedies. (2074ms) What was Thailand's original name? the great target -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (the great target, is also the great source of, French alterity) -> the great target (2074ms) What was Thailand's original name? Duck -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Duck, sourced from, free-range french farms) -> Duck (2030ms) What was Thailand's original name? the author -0.777777777774 What was Thailand's original name? -> $x: ($x, source, singapore) -> (the author, identifies the source of, the Singapore) -> the author (980ms) What was Thailand's original name? One meets his destiny often in the road he takes to avoid it. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (One meets his destiny often in the road he takes to avoid it., Source, French Proverb) -> One meets his destiny often in the road he takes to avoid it. (2074ms) What was Thailand's original name? Life is half spent before one knows what it is. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Life is half spent before one knows what it is., Source, French Proverb) -> Life is half spent before one knows what it is. (2088ms) What was Thailand's original name? He that parts with his property before his death prepares himself for much suffering. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (He that parts with his property before his death prepares himself for much suffering., Source, French Proverb) -> He that parts with his property before his death prepares himself for much suffering. (1952ms) What was Thailand's original name? a mineral water -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (a mineral water, sourced from, the French Alps) -> a mineral water (2090ms) What was Thailand's original name? Douglas Lake -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Douglas Lake, Inflow source(s), French Broad River) -> Douglas Lake (1691ms) What was Thailand's original name? A sin confessed is half forgiven. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (A sin confessed is half forgiven., Source, French Proverb) -> A sin confessed is half forgiven. (2089ms) What was Thailand's original name? Quebec -0.777777777774 What was Thailand's original name? -> $x: ($x, be source of, french) -> (Quebec, had been the top source of, B.C.?s French teachers) -> Quebec (1076ms) What was Thailand's original name? Everything passes, everything perishes, everything palls. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Everything passes, everything perishes, everything palls., Source, French Proverb) -> Everything passes, everything perishes, everything palls. (2089ms) What was Thailand's original name? The bank -0.777777777774 What was Thailand's original name? -> $x: ($x, source, singapore) -> (The bank, is the only source in, Singapore) -> The bank (979ms) What was Thailand's original name? Set a thief to catch a thief. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Set a thief to catch a thief., Source, French Proverb) -> Set a thief to catch a thief. (2091ms) What was Thailand's original name? Don't dance on a volcano. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Don't dance on a volcano., Source, French Proverb) -> Don't dance on a volcano. (2074ms) What was Thailand's original name? Divorce is the sacrament of adultery. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Divorce is the sacrament of adultery., Source, French Proverb) -> Divorce is the sacrament of adultery. (2091ms) What was Thailand's original name? People will ignore their misfortunes and their interests when they are in competition with their pleasures. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (People will ignore their misfortunes and their interests when they are in competition with their pleasures., Source, French Proverb) -> People will ignore their misfortunes and their interests when they are in competition with their pleasures. (2089ms) What was Thailand's original name? It is better to be the hammer than the anvil. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (It is better to be the hammer than the anvil., Source, French Proverb) -> It is better to be the hammer than the anvil. (2030ms) What was Thailand's original name? More flies are caught with honey than with vinegar. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (More flies are caught with honey than with vinegar., Source, French Proverb) -> More flies are caught with honey than with vinegar. (2029ms) What was Thailand's original name? Gratitude is the heart's memory. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Gratitude is the heart's memory., Source, French Proverb) -> Gratitude is the heart's memory. (2091ms) What was Thailand's original name? Fashion is a tyrant from which there is no deliverance; all must conform to its whimsical. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Fashion is a tyrant from which there is no deliverance; all must conform to its whimsical., Source, French Proverb) -> Fashion is a tyrant from which there is no deliverance; all must conform to its whimsical. (2089ms) What was Thailand's original name? the port and sea trading -0.777777777774 What was Thailand's original name? -> $x: ($x, be source of, singapore) -> (the port and sea trading, are the source of, Singapore) -> the port and sea trading (1077ms) What was Thailand's original name? Work relieves us from three great evils, boredom, vice, and want. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Work relieves us from three great evils, boredom, vice, and want., Source, French Proverb) -> Work relieves us from three great evils, boredom, vice, and want. (2090ms) What was Thailand's original name? There are no miracles for those that have no faith in them. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (There are no miracles for those that have no faith in them., Source, French Proverb) -> There are no miracles for those that have no faith in them. (2088ms) What was Thailand's original name? By continually scolding someone, they in time become accustomed to it and despise your reproof. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (By continually scolding someone, they in time become accustomed to it and despise your reproof., Source, French Proverb) -> By continually scolding someone, they in time become accustomed to it and despise your reproof. (2091ms) What was Thailand's original name? Skeptics are never deceived. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Skeptics are never deceived., Source, French Proverb) -> Skeptics are never deceived. (1732ms) What was Thailand's original name? A surgeon should be young a physician old. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (A surgeon should be young a physician old., Source, French Proverb) -> A surgeon should be young a physician old. (2089ms) What was Thailand's original name? People count the faults of those who keep them waiting. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (People count the faults of those who keep them waiting., Source, French Proverb) -> People count the faults of those who keep them waiting. (2088ms) What was Thailand's original name? He that waits for a dead man's shoes may long go barefoot. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (He that waits for a dead man's shoes may long go barefoot., Source, French Proverb) -> He that waits for a dead man's shoes may long go barefoot. (2089ms) What was Thailand's original name? Without grace beauty is an unabated hook. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Without grace beauty is an unabated hook., Source, French Proverb) -> Without grace beauty is an unabated hook. (1732ms) What was Thailand's original name? India -0.777777777774 What was Thailand's original name? -> $x: ($x, source, singapore) -> (India, sourced locally here in, Singapore}) -> India (980ms) What was Thailand's original name? Gambling is the son of avarice and the father of despair. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Gambling is the son of avarice and the father of despair., Source, French Proverb) -> Gambling is the son of avarice and the father of despair. (1952ms) What was Thailand's original name? I know by my own pot how the others boil. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (I know by my own pot how the others boil., Source, French Proverb) -> I know by my own pot how the others boil. (2088ms) What was Thailand's original name? People always make the wolf more formidable than he is. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (People always make the wolf more formidable than he is., Source, French Proverb) -> People always make the wolf more formidable than he is. (2074ms) What was Thailand's original name? A closed mouth catches no flies. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (A closed mouth catches no flies., Source, French Proverb) -> A closed mouth catches no flies. (1732ms) What was Thailand's original name? Partir, c'est mourir un peu. (To leave is to die a little.) -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Partir, c'est mourir un peu. (To leave is to die a little.), Source, French Proverb) -> Partir, c'est mourir un peu. (To leave is to die a little.) (2091ms) What was Thailand's original name? There are more fools among buyers than among sellers. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (There are more fools among buyers than among sellers., Source, French Proverb) -> There are more fools among buyers than among sellers. (2089ms) What was Thailand's original name? When a blind man bears the standard, pity those who follow. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (When a blind man bears the standard, pity those who follow., Source, French Proverb) -> When a blind man bears the standard, pity those who follow. (2091ms) What was Thailand's original name? In the councils of a state, the question is not so much, what ought to be done? As, what can be done? -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (In the councils of a state, the question is not so much, what ought to be done? As, what can be done?, Source, French Proverb) -> In the councils of a state, the question is not so much, what ought to be done? As, what can be done? (2074ms) What was Thailand's original name? Appetite comes with eating; the more one has, the more one would have. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Appetite comes with eating; the more one has, the more one would have., Source, French Proverb) -> Appetite comes with eating; the more one has, the more one would have. (2029ms) What was Thailand's original name? A father is a banker provided by nature. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (A father is a banker provided by nature., Source, French Proverb) -> A father is a banker provided by nature. (2091ms) What was Thailand's original name? Crispus -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Crispus, is also the source of, French cr?pe) -> Crispus (2089ms) What was Thailand's original name? Youth lives on hope, old age on memories. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Youth lives on hope, old age on memories., Source, French Proverb) -> Youth lives on hope, old age on memories. (1691ms) What was Thailand's original name? To believe a thing is impossible is to make it so. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (To believe a thing is impossible is to make it so., Source, French Proverb) -> To believe a thing is impossible is to make it so. (2074ms) What was Thailand's original name? products -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (products, sourced from, artisan UK and French Producers) -> products (2074ms) What was Thailand's original name? The while we keep a man waiting, he reflects on our shortcomings. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (The while we keep a man waiting, he reflects on our shortcomings., Source, French Proverb) -> The while we keep a man waiting, he reflects on our shortcomings. (1732ms) What was Thailand's original name? One may go a long way after one is tired. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (One may go a long way after one is tired., Source, French Proverb) -> One may go a long way after one is tired. (2089ms) What was Thailand's original name? Marriage is the sunset of love. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Marriage is the sunset of love., Source, French Proverb) -> Marriage is the sunset of love. (1691ms) What was Thailand's original name? a plant -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (a plant, has its source in, the French Polynesian islands) -> a plant (2091ms) What was Thailand's original name? Speak little and well if you wish to be esteemed a person of merit. -0.777777777774 What was Thailand's original name? -> $x: ($x, source, french) -> (Speak little and well if you wish to be esteemed a person of merit., Source, French Proverb) -> Speak little and well if you wish to be esteemed a person of merit. (2088ms) What was Thailand's original name? Rattanakosin Island -0.7777777777770001 What was Thailand's original name? -> $x: ($x, be origin of, bangkok) -> (Rattanakosin Island, is the origin of, Bangkok history) -> Rattanakosin Island (2091ms) What was Thailand's original name? the historical center -0.7777777777770001 What was Thailand's original name? -> $x: ($x, be origin of, bangkok) -> (the historical center, is the origin of, modern Bangkok) -> the historical center (2091ms) What was Thailand's original name? Spreadsheet Upload about the 2012 World Film Festival of Bangkok -0.8888888888850001 What was Thailand's original name? -> $x: ($x, source, bangkok) -> (Spreadsheet Upload about the 2012 World Film Festival of Bangkok, Information Source, World Film Festival of Bangkok) -> Spreadsheet Upload about the 2012 World Film Festival of Bangkok (2091ms) What was Thailand's original name? jon -0.8888888888850001 What was Thailand's original name? -> $x: ($x, source, bangkok) -> (jon, Source, World Film Festival of Bangkok) -> jon (2091ms) What was Thailand's original name? an organisation -0.8888888888850001 What was Thailand's original name? -> $x: ($x, be meaning of, french) -> (an organisation, meant to be representative of, French Muslims) -> an organisation (2091ms) What was Thailand's original name? an endeavor? -0.8888888888850001 What was Thailand's original name? -> $x: ($x, be meaning of, french) -> (an endeavor?, is the meaning of, the French word entrepreneur) -> an endeavor? (2091ms) What was Thailand's original name? direct export -0.888888888886 What was Thailand's original name? -> $x: ($x, be purpose of, french) -> (direct export, was the chief purpose of, all French investments) -> direct export (2091ms) What was Thailand's original name? Bahamas Home Rentals -1.111111111107 What was Thailand's original name? -> $x: ($x, source, bahama) -> (Bahamas Home Rentals, is your source for, Bahama) -> Bahamas Home Rentals (2091ms) How big is a keg? The engine 1.4444444444409998 How big is a keg? -> $x: ($x, be size of, keg) -> (The engine, is roughly the size of, a half keg) -> The engine (860ms) How big is a keg? the bulb 1.0 How big is a keg? -> $x: ($x, size be, keg) -> (the bulb, is the right size for, your keg) -> the bulb (860ms) How big is a keg? The rod 0.888888888888 How big is a keg? -> $x: ($x, go to, keg) -> (The rod, is going to stay in, my keg) -> The rod (1099ms) How big is a keg? swimmers 0.888888888888 How big is a keg? -> $x: ($x, go to, keg) -> (swimmers, would usually go to get, our kegs) -> swimmers (1099ms) How big is a keg? Yo 0.888888888888 How big is a keg? -> $x: ($x, go to, keg) -> (Yo, Go back to, your keg) -> Yo (860ms) How big is a keg? sixteen-year-old Mario Rocha 0.888888888888 How big is a keg? -> $x: ($x, go to, keg) -> (sixteen-year-old Mario Rocha, went to, a keg party) -> sixteen-year-old Mario Rocha (860ms) How big is a keg? Bonehead 0.888888888888 How big is a keg? -> $x: ($x, go to, keg) -> (Bonehead, went out to, a teenage keg party) -> Bonehead (1099ms) How big is a keg? eggs or cheese 0.888888888888 How big is a keg? -> $x: ($x, go to, keg) -> (eggs or cheese, go to, The Keg) -> eggs or cheese (860ms) How big is a keg? Ms. Sheriff 0.888888888888 How big is a keg? -> $x: ($x, eat, keg) -> (Ms. Sheriff, likes to eat at, the Keg) -> Ms. Sheriff (860ms) How big is a keg? the typical export size 0.888888888888 How big is a keg? -> $x: ($x, go to, keg) -> (the typical export size, may go down to, 380,500 kegs) -> the typical export size (1099ms) How big is a keg? Moose 0.888888888888 How big is a keg? -> $x: ($x, go to, keg) -> (Moose, went to join, Keg and Jazz) -> Moose (860ms) How big is a keg? a beer 0.888888888888 How big is a keg? -> $x: ($x, go to, keg) -> (a beer, then went to, The Keg) -> a beer (1099ms) How big is a keg? Sixty percent 0.888888888888 How big is a keg? -> $x: ($x, go to, keg) -> (Sixty percent, goes to, the keg lines) -> Sixty percent (1099ms) How big is a keg? Budweiser 0.777777777778 How big is a keg? -> $x: ($x, need, keg) -> (Budweiser, needs to make, kegs) -> Budweiser (1615ms) How big is a keg? Jockey boxes 0.777777777778 How big is a keg? -> $x: ($x, need, keg) -> (Jockey boxes, eliminate the need to keep, the entire keg cold) -> Jockey boxes (1615ms) How big is a keg? Island Potato Stout 0.777777777778 How big is a keg? -> $x: ($x, need, keg) -> (Island Potato Stout, need to clean, more kegs) -> Island Potato Stout (1099ms) How big is a keg? the event 0.777777777778 How big is a keg? -> $x: ($x, need, keg) -> (the event, needs more than just, one keg) -> the event (1099ms) How big is a keg? the Royal Navy 0.777777777778 How big is a keg? -> $x: ($x, need, keg) -> (the Royal Navy, found its need for, barrels and kegs) -> the Royal Navy (1615ms) How big is a keg? Multiple 0.777777777778 How big is a keg? -> $x: ($x, need, keg) -> (Multiple, Needed, 4 D System Keg Coupler) -> Multiple (1615ms) How big is a keg? 2,857 pounds 0.777777777778 How big is a keg? -> $x: (keg, have weight of, $x) -> (15 smaller kegs, had a total weight of, 2,857 pounds) -> 2,857 pounds (1099ms) How big is a keg? a half dozen large nail mills 0.777777777778 How big is a keg? -> $x: ($x, need, keg) -> (a half dozen large nail mills, needed a constant supply of, kegs) -> a half dozen large nail mills (1615ms) How big is a keg? a kit 0.777777777778 How big is a keg? -> $x: ($x, need, keg) -> (a kit, will need, a keg tap) -> a kit (1099ms) How big is a keg? a those bar 0.555555555554 How big is a keg? -> $x: ($x, size, keg) -> (a those bar, sized, kegs) -> a those bar (1615ms) How big is a keg? a pint 0.555555555554 How big is a keg? -> $x: ($x, size, keg) -> (a pint, sized, pony keg) -> a pint (1617ms) How big is a keg? Strategic 0.555555555554 How big is a keg? -> $x: ($x, size of, keg) -> (Strategic, has increased the size of, the Keg) -> Strategic (1615ms) How big is a keg? full or pony 0.555555555554 How big is a keg? -> $x: ($x, size, keg) -> (full or pony, sized, kegs) -> full or pony (1615ms) How big is a keg? Black/Stainless Feature Accommodates full or pony 0.555555555554 How big is a keg? -> $x: ($x, size, keg) -> (Black/Stainless Feature Accommodates full or pony, sized, kegs) -> Black/Stainless Feature Accommodates full or pony (1615ms) How big is a keg? a pony 0.555555555554 How big is a keg? -> $x: ($x, size, keg) -> (a pony, sized, keg) -> a pony (1615ms) How big is a keg? The Summit Freestanding Kegerator 0.555555555554 How big is a keg? -> $x: ($x, size, keg) -> (The Summit Freestanding Kegerator, holds various sizes of, kegs) -> The Summit Freestanding Kegerator (1615ms) How big is a keg? More Images ? Accommodates full or pony 0.555555555554 How big is a keg? -> $x: ($x, size, keg) -> (More Images ? Accommodates full or pony, sized, kegs) -> More Images ? Accommodates full or pony (1615ms) How big is a keg? a wide boulevard 0.444444444444 How big is a keg? -> $x: (keg, do, $x) -> (a water keg, did n?t need, a wide boulevard) -> a wide boulevard (1623ms) How big is a keg? The fuse 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (The fuse, is in, the powder keg) -> The fuse (1619ms) How big is a keg? beer 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (beer, are in, a beer keg) -> beer (1621ms) How big is a keg? Wine 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (Wine, is increasingly coming in, kegs) -> Wine (1619ms) How big is a keg? Mestan 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (Mestan, is placed in, kegs) -> Mestan (1617ms) How big is a keg? Scotch Ale 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (Scotch Ale, is in, the keg) -> Scotch Ale (1621ms) How big is a keg? much beer 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (much beer, is in, a keg) -> much beer (1617ms) How big is a keg? Once the beer and priming sugar 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (Once the beer and priming sugar, are in, the keg) -> Once the beer and priming sugar (1623ms) How big is a keg? The wine 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (The wine, is then refined in, kegs) -> The wine (1621ms) How big is a keg? genmai miso 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (genmai miso, is fully aged in, cedarwood kegs) -> genmai miso (1617ms) How big is a keg? the majority 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (the majority, was packaged in, wood kegs) -> the majority (1617ms) How big is a keg? a fan 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (a fan, was in, a keg) -> a fan (1625ms) How big is a keg? real ale 0.444444444444 How big is a keg? -> $x: (keg, do, $x) -> (keg beer, does with, real ale) -> real ale (1623ms) How big is a keg? Katalyst Kombucha?s accounts 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (Katalyst Kombucha?s accounts, are delivered in, kegs) -> Katalyst Kombucha?s accounts (1626ms) How big is a keg? The beer 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (The beer, is available in, keg) -> The beer (1626ms) How big is a keg? the above recipe 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (the above recipe, has been in, the keg) -> the above recipe (1625ms) How big is a keg? several hours 0.444444444444 How big is a keg? -> $x: (keg, do, $x) -> (The tailgate keg taps, did n?t close for, several hours) -> several hours (1621ms) How big is a keg? Beer 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (Beer, is available in, Kegs) -> Beer (1623ms) How big is a keg? The spoiled batch 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (The spoiled batch, had been in, the keg) -> The spoiled batch (1621ms) How big is a keg? The whole junction 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (The whole junction, was just covered in, beer kegs) -> The whole junction (1626ms) How big is a keg? only about 12 percent of the nation 's beer 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (only about 12 percent of the nation 's beer, is sold in, kegs) -> only about 12 percent of the nation 's beer (1625ms) How big is a keg? a night 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (a night, was in, the keg) -> a night (1619ms) How big is a keg? bitters 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (bitters, were in, casks or kegs) -> bitters (1617ms) How big is a keg? How many cases 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (How many cases, are in, a keg) -> How many cases (1626ms) How big is a keg? the piece de resistance 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (the piece de resistance, was in, a beer keg) -> the piece de resistance (1619ms) How big is a keg? mid February 2012 0.444444444444 How big is a keg? -> $x: (keg, do, $x) -> (kegs, will be able to do so by, mid February 2012) -> mid February 2012 (1621ms) How big is a keg? much people 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (much people, much is left in, the keg) -> much people (1625ms) How big is a keg? draft 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (draft, is available in, kegs) -> draft (1625ms) How big is a keg? beer and wine and beer 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (beer and wine and beer, may be served in, kegs) -> beer and wine and beer (1621ms) How big is a keg? Antonino 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (Antonino, was in, the keg cooler) -> Antonino (1626ms) How big is a keg? How many beers 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (How many beers, are in, a keg) -> How many beers (1625ms) How big is a keg? Master 0.444444444444 How big is a keg? -> $x: (keg, do, $x) -> (KEGS, DOS, Master) -> Master (1621ms) How big is a keg? blow 0.444444444444 How big is a keg? -> $x: (keg, do, $x) -> (the powder keg, does, blow) -> blow (1625ms) How big is a keg? dry hopping 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (dry hopping, is in, the keg) -> dry hopping (1621ms) How big is a keg? the need 0.444444444444 How big is a keg? -> $x: (keg, do, $x) -> (keg beer dispensers, does away with, the need) -> the need (1623ms) How big is a keg? The beer , ale and stout 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (The beer , ale and stout, is packaged in, kegs) -> The beer , ale and stout (1617ms) How big is a keg? smoke powder 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (smoke powder, is often sold in, kegs) -> smoke powder (1617ms) How big is a keg? How much beer 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (How much beer, is in, a keg) -> How much beer (1619ms) How big is a keg? the beer 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (the beer, is in, the keg) -> the beer (1623ms) How big is a keg? Hellsmoke Porter 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (Hellsmoke Porter, will be heading out in, kegs) -> Hellsmoke Porter (1623ms) How big is a keg? The resulting ale 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (The resulting ale, was stored in, kegs) -> The resulting ale (1617ms) How big is a keg? the primary 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (the primary, now is in, kegs) -> the primary (1623ms) How big is a keg? a premium price 0.444444444444 How big is a keg? -> $x: (keg, do, $x) -> (These converted kegs, do come at, a premium price) -> a premium price (1623ms) How big is a keg? Whoop Pass 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (Whoop Pass, is extra dry-hopped in, the keg) -> Whoop Pass (1621ms) How big is a keg? home brew 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (home brew, can be in, the keg) -> home brew (1617ms) How big is a keg? Iodophor 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (Iodophor, should be mixed in, the keg) -> Iodophor (1626ms) How big is a keg? ice 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (ice, is put in, the keg) -> ice (1619ms) How big is a keg? normal air 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (normal air, should be used in, kegs) -> normal air (1626ms) How big is a keg? the wines 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (the wines, are being placed in, Keg www.) -> the wines (1619ms) How big is a keg? the cameras and lights 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (the cameras and lights, was left in, the keg) -> the cameras and lights (1621ms) How big is a keg? PM Re 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (PM Re, are in, a keg) -> PM Re (1617ms) How big is a keg? the trick 0.444444444444 How big is a keg? -> $x: (keg, do, $x) -> (the keg, seemed to do, the trick) -> the trick (1625ms) How big is a keg? the money 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (the money, has been brought in by, the keg) -> the money (1626ms) How big is a keg? Nebraska 0.444444444444 How big is a keg? -> $x: (keg, do, $x) -> (a keg, did attend the University of, Nebraska) -> Nebraska (1619ms) How big is a keg? 10 gallon batches 0.444444444444 How big is a keg? -> $x: (keg, do, $x) -> (a 1/2 barrel keg, will be doing, 10 gallon batches) -> 10 gallon batches (1619ms) How big is a keg? similar tastes 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (similar tastes, are placed in, kegs) -> similar tastes (1625ms) How big is a keg? Beers 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (Beers, will be packaged in, both keg) -> Beers (1617ms) How big is a keg? pressure 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (pressure, was equal in, both kegs) -> pressure (1621ms) How big is a keg? Joseph Schlitz 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (Joseph Schlitz, were busy rolling in, some kegs) -> Joseph Schlitz (1617ms) How big is a keg? the move 0.444444444444 How big is a keg? -> $x: (keg, do, $x) -> (The keg-aerator, did n?t make, the move) -> the move (1623ms) How big is a keg? beer and pizza 0.444444444444 How big is a keg? -> $x: (keg, do, $x) -> (Kegs and Kitchens, does, beer and pizza) -> beer and pizza (1617ms) How big is a keg? how much beer 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (how much beer, was left in, the keg) -> how much beer (1623ms) How big is a keg? Alberta projects 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (Alberta projects, were in, Keg River) -> Alberta projects (1623ms) How big is a keg? a enough plus sides 0.444444444444 How big is a keg? -> $x: (keg, do, $x) -> (Corny kegs, just does n?t seem to have, a enough plus sides) -> a enough plus sides (1623ms) How big is a keg? the first Sylvers LP 0.444444444444 How big is a keg? -> $x: (keg, do, $x) -> (Keg Johnson, did a good job on, the first Sylvers LP) -> the first Sylvers LP (1619ms) How big is a keg? Kids 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (Kids, are useful in, keg preparation) -> Kids (1621ms) How big is a keg? Blueberry Wheat 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (Blueberry Wheat, is generally available only in, kegs) -> Blueberry Wheat (1624ms) How big is a keg? the early days wine 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (the early days wine, was stored in, wooden kegs) -> the early days wine (1624ms) How big is a keg? a number 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (a number, are available in, mini kegs) -> a number (1625ms) How big is a keg? HB 1324 0.444444444444 How big is a keg? -> $x: (keg, do, $x) -> (kegs, neither does, HB 1324) -> HB 1324 (1625ms) How big is a keg? Wachusett Ales 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (Wachusett Ales, have been available in, kegs) -> Wachusett Ales (1623ms) How big is a keg? the period shipboard rum 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (the period shipboard rum, was in, small kegs) -> the period shipboard rum (1617ms) How big is a keg? the camp 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (the camp, were packed in, kegs) -> the camp (1621ms) How big is a keg? the cover illustration 0.444444444444 How big is a keg? -> $x: (keg, do, $x) -> (the birthday cheer keg, also did, the cover illustration) -> the cover illustration (1624ms) How big is a keg? track 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (track, is left in, the keg) -> track (1625ms) How big is a keg? Gally and Mince 0.444444444444 How big is a keg? -> $x: ($x, be in, keg) -> (Gally and Mince, are in, that keg) -> Gally and Mince (1625ms) How big is a keg? Hoda 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (Hoda, was originally supposed to do, the keg stand) -> Hoda (1627ms) How big is a keg? Star Barrels and DK Barrels return 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (Star Barrels and DK Barrels return, so do, Steel Kegs) -> Star Barrels and DK Barrels return (1626ms) How big is a keg? a frat boy 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (a frat boy, doing, a keg stand) -> a frat boy (1628ms) How big is a keg? Rob Orlando 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (Rob Orlando, do, kegs) -> Rob Orlando (1627ms) How big is a keg? seventeen-year-olds 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (seventeen-year-olds, do, keg stands) -> seventeen-year-olds (1628ms) How big is a keg? Pictures of you 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (Pictures of you, doing, keg stands) -> Pictures of you (1627ms) How big is a keg? 6.8 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (6.8, long do, Mini Kegs) -> 6.8 (1628ms) How big is a keg? the guy 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (the guy, did used to destroy, a keg) -> the guy (1628ms) How big is a keg? PBR 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (PBR, did n?t even come in, the table keg variety) -> PBR (1627ms) How big is a keg? shots 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (shots, do, keg stands) -> shots (1627ms) How big is a keg? Gert 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (Gert, does indeed examine, the keg) -> Gert (1627ms) How big is a keg? Mohr 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (Mohr, also does only, kegs--no time) -> Mohr (1626ms) How big is a keg? The stupid human tricks 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (The stupid human tricks, as did, the 5 kegs) -> The stupid human tricks (1628ms) How big is a keg? War 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (War, did, his first keg stand) -> War (1628ms) How big is a keg? Would Jesus 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (Would Jesus, do, a keg stand) -> Would Jesus (1626ms) How big is a keg? Raffi 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (Raffi, did a couple of, keg stands) -> Raffi (1627ms) How big is a keg? the performers 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (the performers, do, a balancing keg stand) -> the performers (1626ms) How big is a keg? Roger 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (Roger, does, an impressive keg stand) -> Roger (1627ms) How big is a keg? Craig 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (Craig, do, keg stands) -> Craig (1628ms) How big is a keg? an online school 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (an online school, exactly does, the online keg party work) -> an online school (1628ms) How big is a keg? adult responsibilities 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (adult responsibilities, do, keg stands) -> adult responsibilities (1627ms) How big is a keg? Grandma 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (Grandma, does, a keg-stand) -> Grandma (1628ms) How big is a keg? Britain 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (Britain, really does become, a powder-keg) -> Britain (1627ms) How big is a keg? teasing 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (teasing, be forced to do, a keg stand) -> teasing (1629ms) How big is a keg? a bottle 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (a bottle, do so in, a keg) -> a bottle (1628ms) How big is a keg? a single one 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (a single one, does, a keg stand) -> a single one (1628ms) How big is a keg? an D 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (an D, did, some keg stands) -> an D (1628ms) How big is a keg? the Cathedral front balcony and people 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (the Cathedral front balcony and people, were doing, keg stands) -> the Cathedral front balcony and people (1628ms) How big is a keg? Q BBQ & Tequila 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (Q BBQ & Tequila, is doing something special at, Keg & Kitchen) -> Q BBQ & Tequila (1628ms) How big is a keg? Step 4 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (Step 4, Do, your first Keg Stand) -> Step 4 (1627ms) How big is a keg? the Orcs and Tauren 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (the Orcs and Tauren, are doing, keg stands) -> the Orcs and Tauren (1626ms) How big is a keg? more attention 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (more attention, do, Sankey kegs) -> more attention (1629ms) How big is a keg? night 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (night, did at, least one keg stand) -> night (1628ms) How big is a keg? the staff 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (the staff, did, keg one) -> the staff (1628ms) How big is a keg? The mousy librarian 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (The mousy librarian, doing, drunken keg) -> The mousy librarian (1627ms) How big is a keg? Rosie 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (Rosie, is doing, a keg stand) -> Rosie (1627ms) How big is a keg? Park + Vine 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (Park + Vine, does n?t yet have, a kombucha keg) -> Park + Vine (1628ms) How big is a keg? Lets 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (Lets, go do, keg stands) -> Lets (1628ms) How big is a keg? Maryland 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (Maryland, do, keg stands) -> Maryland (1626ms) How big is a keg? 3pm and 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (3pm and, so does, the keg) -> 3pm and (1628ms) How big is a keg? Pat 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (Pat, also did, a keg stand) -> Pat (1627ms) How big is a keg? Jimmy Fallon 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (Jimmy Fallon, did, a keg stand) -> Jimmy Fallon (1628ms) How big is a keg? I?ll 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (I?ll, even get around to doing, the keg sprints) -> I?ll (1627ms) How big is a keg? Gosling 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (Gosling, is doing, keg stands) -> Gosling (1628ms) How big is a keg? the bride and groom 0.333333333333 How big is a keg? -> $x: ($x, do, keg) -> (the bride and groom, did, keg-stands) -> the bride and groom (1626ms) How big is a keg? one plant -0.0 How big is a keg? -> $x: (keg, be size, $x) -> (That old keg, was the perfect size for, one plant) -> one plant (1629ms) Where is Santa Lucia? the centre 0.111111111109 Where is Santa Lucia? -> $x: (santa lucia, be locate in, $x) -> (Santa Lucia Hotel, is located in, the centre) -> the centre (1035ms) Where is Santa Lucia? the historic centre 0.111111111109 Where is Santa Lucia? -> $x: (santa lucia, be locate in, $x) -> (Santa Lucia, is located in, the historic centre) -> the historic centre (1035ms) Where is Santa Lucia? front 0.111111111109 Where is Santa Lucia? -> $x: (santa lucia, be locate in, $x) -> (the Santa Lucia Church, is located right in, front) -> front (999ms) Where is Santa Lucia? Monterey County 0.111111111109 Where is Santa Lucia? -> $x: (santa lucia, be locate in, $x) -> (The Santa Lucia Highlands, are located in, Monterey County) -> Monterey County (1035ms) Where is Santa Lucia? Minori 0.111111111109 Where is Santa Lucia? -> $x: (santa lucia, be locate in, $x) -> (map Hotel Santa Lucia, is located in, Minori) -> Minori (999ms) Where is Santa Lucia? Naples 0.111111111109 Where is Santa Lucia? -> $x: (santa lucia, be locate in, $x) -> (Grand Hotel Santa Lucia, is located in, Naples) -> Naples (998ms) Where is Santa Lucia? southern Sonora State 0.111111111109 Where is Santa Lucia? -> $x: (santa lucia, be locate in, $x) -> (Santa Lucia, is located in, southern Sonora State) -> southern Sonora State (998ms) Where is Santa Lucia? California 0.111111111109 Where is Santa Lucia? -> $x: (santa lucia, be locate in, $x) -> (Santa Lucia Preserve, is located in, California) -> California (1035ms) Where is Santa Lucia? DOWNTOWN ZACATECAS 0.111111111109 Where is Santa Lucia? -> $x: (santa lucia, be locate in, $x) -> (THE CASA SANTA LUCIA HOTEL, IS LOCATED IN, DOWNTOWN ZACATECAS) -> DOWNTOWN ZACATECAS (998ms) Where is Santa Lucia? Tesistan Jalisco 0.111111111109 Where is Santa Lucia? -> $x: (santa lucia, be locate in, $x) -> (the Santa Lucia Distillery, is located in, Tesistan Jalisco) -> Tesistan Jalisco (999ms) Where is Santa Lucia? the city center 0.111111111109 Where is Santa Lucia? -> $x: (santa lucia, be locate in, $x) -> (the Santa Lucia Hill, is located in, the city center) -> the city center (998ms) Where is Santa Lucia? Francesco Borromini -0.0 Where is Santa Lucia? -> $x: ($x, design, santa lucia) -> (Francesco Borromini, Structures Designed, Santa Lucia in Selci) -> Francesco Borromini (1103ms) Where is Santa Lucia? Province of L'Aquila -0.0 Where is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Province of L'Aquila, Contains, Villa Santa Lucia degli Abruzzi) -> Province of L'Aquila (1280ms) Where is Santa Lucia? Kingdom of Lombardy?Venetia -0.0 Where is Santa Lucia? -> $x: ($x, event, santa lucia) -> (Kingdom of Lombardy?Venetia, Events, Battle of Santa Lucia) -> Kingdom of Lombardy?Venetia (1280ms) Where is Santa Lucia? Sicily -0.0 Where is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Sicily, Contains, Santa Lucia del Mela) -> Sicily (1151ms) Where is Santa Lucia? Calabria -0.0 Where is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Calabria, Contains, Motta Santa Lucia) -> Calabria (1234ms) Where is Santa Lucia? Cannaregio -0.0 Where is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Cannaregio, contains, the Santa Lucia Railway Station) -> Cannaregio (1103ms) Where is Santa Lucia? First Italian War of Independence -0.0 Where is Santa Lucia? -> $x: ($x, event, santa lucia) -> (First Italian War of Independence, Includes event, Battle of Santa Lucia) -> First Italian War of Independence (1234ms) Where is Santa Lucia? San Antonio -0.0 Where is Santa Lucia? -> $x: ($x, surround, santa lucia) -> (San Antonio, is surrounded by, the Santa Lucia Wilderness) -> San Antonio (1151ms) Where is Santa Lucia? Ilocos Sur -0.0 Where is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Ilocos Sur, Contains, Santa Lucia, Ilocos Sur) -> Ilocos Sur (1367ms) Where is Santa Lucia? Province of Messina -0.0 Where is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Province of Messina, Contains, Santa Lucia del Mela) -> Province of Messina (1280ms) Where is Santa Lucia? Province of Avellino -0.0 Where is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Province of Avellino, Contains, Santa Lucia di Serino) -> Province of Avellino (1235ms) Where is Santa Lucia? a boatman -0.0 Where is Santa Lucia? -> $x: ($x, describe, santa lucia) -> (a boatman, describing, the view from Santa Lucia) -> a boatman (1059ms) Where is Santa Lucia? Haute-Corse -0.0 Where is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Haute-Corse, Contains, Santa-Lucia-di-Moriani) -> Haute-Corse (1103ms) Where is Santa Lucia? Venice -0.0 Where is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Venice, Contains, Venezia Santa Lucia railway station) -> Venice (1235ms) Where is Santa Lucia? Italy -0.0 Where is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Italy, Contains, Santa Lucia del Mela) -> Italy (1280ms) Where is Santa Lucia? coal -0.0 Where is Santa Lucia? -> $x: ($x, discover, santa lucia) -> (coal, has been discovered in, Santa Lucia) -> coal (1198ms) Where is Santa Lucia? Little help -0.0 Where is Santa Lucia? -> $x: ($x, found, santa lucia) -> (Little help, to be found in, the modern concept of Santa Lucia) -> Little help (1234ms) Where is Santa Lucia? Pima County -0.0 Where is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Pima County, Contains, Santa Lucia) -> Pima County (1151ms) Where is Santa Lucia? Perfect -0.0 Where is Santa Lucia? -> $x: ($x, design, santa lucia) -> (Perfect, Costume design by, Lucia Santa Maria) -> Perfect (1281ms) Where is Santa Lucia? palazzo murat -0.0 Where is Santa Lucia? -> $x: ($x, create, santa lucia) -> (palazzo murat, creates the need for, santa lucia) -> palazzo murat (1235ms) Where is Santa Lucia? Arizona -0.0 Where is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Arizona, Contains, Santa Lucia) -> Arizona (1198ms) Where is Santa Lucia? Julio and Maria -0.0 Where is Santa Lucia? -> $x: ($x, do, santa lucia) -> (Julio and Maria, have done at, their Meson Santa Lucia) -> Julio and Maria (1368ms) Where is Santa Lucia? Corsica -0.0 Where is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Corsica, Contains, Santa-Lucia-di-Mercurio) -> Corsica (1198ms) Where is Santa Lucia? Abruzzo -0.0 Where is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Abruzzo, Contains, Villa Santa Lucia degli Abruzzi) -> Abruzzo (1280ms) Where is Santa Lucia? chaparral and grasslands -0.0 Where is Santa Lucia? -> $x: ($x, find, santa lucia) -> (chaparral and grasslands, found in, the Santa Lucia Mountains) -> chaparral and grasslands (1198ms) Where is Santa Lucia? Yesterday -0.0 Where is Santa Lucia? -> $x: ($x, go, santa lucia) -> (Yesterday, finally went to, Cerro Santa Lucia) -> Yesterday (1103ms) Where is Santa Lucia? Province of Belluno -0.0 Where is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Province of Belluno, Contains, Colle Santa Lucia) -> Province of Belluno (1235ms) Where is Santa Lucia? Laura -0.0 Where is Santa Lucia? -> $x: ($x, go, santa lucia) -> (Laura, went to, Santa Lucia) -> Laura (1103ms) Where is Santa Lucia? Carlo Maderno -0.0 Where is Santa Lucia? -> $x: ($x, design, santa lucia) -> (Carlo Maderno, Structures Designed, Santa Lucia in Selci) -> Carlo Maderno (1198ms) Where is Santa Lucia? Veneto -0.0 Where is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Veneto, Contains, Colle Santa Lucia) -> Veneto (1198ms) Where is Santa Lucia? the train -0.0 Where is Santa Lucia? -> $x: ($x, go, santa lucia) -> (the train, goes on to, Santa Lucia station) -> the train (1059ms) Where is Santa Lucia? two friends -0.0 Where is Santa Lucia? -> $x: ($x, go, santa lucia) -> (two friends, had gone to, Santa Lucia) -> two friends (1035ms) Where is Santa Lucia? harvest 2000 -0.0 Where is Santa Lucia? -> $x: ($x, establish, santa lucia) -> (harvest 2000, will establish, the Santa Lucia Highlands) -> harvest 2000 (1059ms) Where is Santa Lucia? Province of Catanzaro -0.0 Where is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Province of Catanzaro, Contains, Motta Santa Lucia) -> Province of Catanzaro (1234ms) Where is Santa Lucia? Campania -0.0 Where is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Campania, Contains, Santa Lucia di Serino) -> Campania (1059ms) Where is Santa Lucia? Lazio -0.0 Where is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Lazio, Contains, Villa Santa Lucia) -> Lazio (1151ms) Where is Santa Lucia? Santa Lucia -0.0 Where is Santa Lucia? -> $x: ($x, event, santa lucia) -> (Santa Lucia, Events, Battle of Santa Lucia) -> Santa Lucia (1198ms) Where is Santa Lucia? Province of Frosinone -0.0 Where is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Province of Frosinone, Contains, Villa Santa Lucia) -> Province of Frosinone (1151ms) Where is Santa Lucia? Province of Treviso -0.0 Where is Santa Lucia? -> $x: ($x, contain, santa lucia) -> (Province of Treviso, Contains, Santa Lucia di Piave) -> Province of Treviso (1059ms) Where is Santa Lucia? a half bath home -0.111111111111 Where is Santa Lucia? -> $x: ($x, be located in, santa lucia) -> (a half bath home, is located in, Santa Lucia Preserve) -> a half bath home (1480ms) Where is Santa Lucia? Hotel Hotel Club Amigo Caracol -0.111111111111 Where is Santa Lucia? -> $x: ($x, be in, santa lucia) -> (Hotel Hotel Club Amigo Caracol, is located in, Santa Lucia Beach) -> Hotel Hotel Club Amigo Caracol (1480ms) Where is Santa Lucia? The heat -0.111111111111 Where is Santa Lucia? -> $x: ($x, be in, santa lucia) -> (The heat, has n?t been too bad in, the Santa Lucia Highlands) -> The heat (1368ms) Where is Santa Lucia? Brad -0.111111111111 Where is Santa Lucia? -> $x: ($x, be in, santa lucia) -> (Brad, was born in, Santa Lucia del Camino) -> Brad (1508ms) Where is Santa Lucia? The function -0.111111111111 Where is Santa Lucia? -> $x: ($x, be in, santa lucia) -> (The function, was organised in, Santa Lucia hall) -> The function (1367ms) Where is Santa Lucia? Hidden Valley Inn -0.111111111111 Where is Santa Lucia? -> $x: ($x, be in, santa lucia) -> (Hidden Valley Inn, is nestled in, the Sunny Santa Lucia) -> Hidden Valley Inn (1368ms) Where is Santa Lucia? The City Hall -0.111111111111 Where is Santa Lucia? -> $x: ($x, be in, santa lucia) -> (The City Hall, is located in, Via Santa Lucia 10) -> The City Hall (1508ms) Where is Santa Lucia? Paso Robles -0.111111111111 Where is Santa Lucia? -> $x: ($x, be in, santa lucia) -> (Paso Robles, is in, the Santa Lucia mountains) -> Paso Robles (1480ms) Where is Santa Lucia? The 3 star hotel -0.111111111111 Where is Santa Lucia? -> $x: ($x, be in, santa lucia) -> (The 3 star hotel, is located in, Santa Lucia) -> The 3 star hotel (1508ms) Where is Santa Lucia? The meeting -0.111111111111 Where is Santa Lucia? -> $x: ($x, be in, santa lucia) -> (The meeting, will be held in, the Santa Lucia Room) -> The meeting (1480ms) Where is Santa Lucia? a 3 stars -0.111111111111 Where is Santa Lucia? -> $x: ($x, be located in, santa lucia) -> (a 3 stars, is located in, the Santa Lucia beach) -> a 3 stars (1508ms) Where is Santa Lucia? 1991 -0.111111111112 Where is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (The Santa Lucia Highlands, was approved in, 1991) -> 1991 (1508ms) Where is Santa Lucia? 1875 -0.111111111112 Where is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (Cerro Santa Lucia, was established in, 1875) -> 1875 (1554ms) Where is Santa Lucia? a very strategic position -0.111111111112 Where is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (The Hotel Santa Lucia, is situated in, a very strategic position) -> a very strategic position (1508ms) Where is Santa Lucia? a lot -0.111111111112 Where is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (Santa Lucia Day, is celebrated in, a lot) -> a lot (1554ms) Where is Santa Lucia? the heart -0.111111111112 Where is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (Santa Lucia Santa Luc?a eco-lodge and cabanas, are in, the heart) -> the heart (1554ms) Where is Santa Lucia? Norway and Sweden -0.111111111112 Where is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (The Santa Lucia holiday, is celebrated in, Norway and Sweden) -> Norway and Sweden (1554ms) Where is Santa Lucia? the historical district -0.111111111112 Where is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (Plaza Santa Lucia, is in, the historical district) -> the historical district (1554ms) Where is Santa Lucia? a quiet residential area -0.111111111112 Where is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (Santa Lucia, is situated in, a quiet residential area) -> a quiet residential area (1554ms) Where is Santa Lucia? need -0.111111111112 Where is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (Santa Lucia, is in, need) -> need (1556ms) Where is Santa Lucia? layers -0.111111111112 Where is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (the Santa Lucia mountain range, were rich in, layers) -> layers (1554ms) Where is Santa Lucia? Sweden -0.111111111112 Where is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (Santa Lucia, is celebrated in, Sweden) -> Sweden (1554ms) Where is Santa Lucia? Costa Rica -0.111111111112 Where is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (SANTA LUCIA ApartHotel, is a modern lodging way in, Costa Rica) -> Costa Rica (1554ms) Where is Santa Lucia? 1937 -0.111111111112 Where is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (the Santa Lucia mountain range, was set aside in, 1937) -> 1937 (1556ms) Where is Santa Lucia? Cuenca -0.111111111112 Where is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (The Santa Lucia hotel, is a gem in, Cuenca) -> Cuenca (1554ms) Where is Santa Lucia? poor shape -0.111111111112 Where is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (the Cerro Santa Lucia, had been in very, poor shape) -> poor shape (1508ms) Where is Santa Lucia? Sweden as well as -0.111111111112 Where is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (Santa Lucia, is observed in, Sweden as well as) -> Sweden as well as (1556ms) Where is Santa Lucia? the Amalfitan Coast -0.111111111112 Where is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (the Santa Lucia Hotel, is in, the Amalfitan Coast) -> the Amalfitan Coast (1554ms) Where is Santa Lucia? Scandinavia -0.111111111112 Where is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (Santa Lucia, is celebrated in, Scandinavia) -> Scandinavia (1556ms) Where is Santa Lucia? camera trapping -0.111111111112 Where is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (Santa Lucia, was to assist in, camera trapping) -> camera trapping (1556ms) Where is Santa Lucia? a 7000 sm garden area -0.111111111112 Where is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (SANTA LUCIA ApartHotel, is immersed in, a 7000 sm garden area) -> a 7000 sm garden area (1508ms) Where is Santa Lucia? the historic center -0.111111111112 Where is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (The Venice Santa Lucia station, is in, the historic center) -> the historic center (1508ms) Where is Santa Lucia? the Cannaregio district -0.111111111112 Where is Santa Lucia? -> $x: (santa lucia, be in in, $x) -> (The Santa Lucia Railway Station, is in, the Cannaregio district) -> the Cannaregio district (1508ms) Where is Santa Lucia? Pinot Gris -0.222222222222 Where is Santa Lucia? -> $x: (santa lucia, be for, $x) -> (the Santa Lucia Highlands, is perfectly suited for, Pinot Gris) -> Pinot Gris (1559ms) Where is Santa Lucia? sporty people -0.222222222222 Where is Santa Lucia? -> $x: (santa lucia, be for, $x) -> (Campsite Santa Lucia, is especially suiteble for, sporty people) -> sporty people (1559ms) Where is Santa Lucia? the more adventurous vacationer -0.222222222222 Where is Santa Lucia? -> $x: (santa lucia, be for, $x) -> (Santa Lucia, is a good spot for, the more adventurous vacationer) -> the more adventurous vacationer (1556ms) Where is Santa Lucia? rent -0.222222222222 Where is Santa Lucia? -> $x: (santa lucia, be for, $x) -> (Santa Lucia, are available for, rent) -> rent (1559ms) Where is Santa Lucia? scuba diving -0.222222222222 Where is Santa Lucia? -> $x: (santa lucia, be for, $x) -> (Santa Lucia, is an excellent place for, scuba diving) -> scuba diving (1559ms) Where is Santa Lucia? a different reason -0.222222222222 Where is Santa Lucia? -> $x: (santa lucia, be for, $x) -> (The phrase ?Santa Lucia?, is famous for, a different reason) -> a different reason (1558ms) Where is Santa Lucia? lovers -0.222222222222 Where is Santa Lucia? -> $x: (santa lucia, be for, $x) -> (Santa Lucia Beach, is a paradise for, lovers) -> lovers (1559ms) Where is Santa Lucia? camping and fishing -0.222222222222 Where is Santa Lucia? -> $x: (santa lucia, be for, $x) -> (The Santa Lucia Lagoon, is great for, camping and fishing) -> camping and fishing (1559ms) Where is Santa Lucia? Pinot Noir -0.222222222222 Where is Santa Lucia? -> $x: (santa lucia, be for, $x) -> (the Santa Lucia Highlands Appellation, is for, Pinot Noir) -> Pinot Noir (1558ms) Where is Santa Lucia? romance -0.222222222222 Where is Santa Lucia? -> $x: (santa lucia, be for, $x) -> (Santa Lucia, was an ideal setting for, romance) -> romance (1558ms) Where is Santa Lucia? Italy Hotel Moderno -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (Italy Hotel Moderno, is close to, Santa Lucia Train Station) -> Italy Hotel Moderno (1564ms) Where is Santa Lucia? Candon City -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (Candon City, is the town of, Santa Lucia) -> Candon City (1565ms) Where is Santa Lucia? The hot region -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (The hot region, now is, the Santa Lucia Highlands) -> The hot region (1560ms) Where is Santa Lucia? the Swedish yuletide -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (the Swedish yuletide, is the visit of, Santa Lucia) -> the Swedish yuletide (1562ms) Where is Santa Lucia? Answers -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (Answers, is the state of, Santa Lucia) -> Answers (1562ms) Where is Santa Lucia? tourists -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (tourists, are the towns of, Santa Lucia) -> tourists (1564ms) Where is Santa Lucia? Mastic and Mahleb -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (Mastic and Mahleb, is extracted from, Santa Lucia cherry pits) -> Mastic and Mahleb (1560ms) Where is Santa Lucia? off -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (off, are now, the Santa Lucia Highlands) -> off (1562ms) Where is Santa Lucia? The vineyards -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (The vineyards, are spread throughout, the Santa Lucia Highlands) -> The vineyards (1560ms) Where is Santa Lucia? twinkle lights -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (twinkle lights, was, Santa Lucia) -> twinkle lights (1564ms) Where is Santa Lucia? the Salinas Valley -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (the Salinas Valley, is called, the Santa Lucia Highlands) -> the Salinas Valley (1559ms) Where is Santa Lucia? 13th December -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (13th December, is the time of, Santa Lucia) -> 13th December (1563ms) Where is Santa Lucia? a rig -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (a rig, is currently drilling, the Santa Lucia-4) -> a rig (1565ms) Where is Santa Lucia? Will -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (Will, was shot at, the Santa Lucia Barricade) -> Will (1560ms) Where is Santa Lucia? the 38th floor -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (the 38th floor, is, Santa Lucia ? Comments) -> the 38th floor (1565ms) Where is Santa Lucia? Cape Vidal -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (Cape Vidal, is next to, Santa Lucia) -> Cape Vidal (1564ms) Where is Santa Lucia? the nearest railway station -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (the nearest railway station, is, Venice Santa Lucia) -> the nearest railway station (1564ms) Where is Santa Lucia? 3 stars category -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (3 stars category, is located at, Santa Lucia) -> 3 stars category (1564ms) Where is Santa Lucia? Luigi Gordigiani -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (Luigi Gordigiani, is usually credited with, ?Santa Lucia) -> Luigi Gordigiani (1562ms) Where is Santa Lucia? price/quality equity -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (price/quality equity, was, the $ 33 Santa Lucia) -> price/quality equity (1564ms) Where is Santa Lucia? the most -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (the most, was the tradition of, Santa Lucia Day) -> the most (1565ms) Where is Santa Lucia? ping pong -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (ping pong, are available at, the Santa Lucia Masseria) -> ping pong (1560ms) Where is Santa Lucia? The apartment -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (The apartment, is situated close to, Santa Lucia Hill) -> The apartment (1565ms) Where is Santa Lucia? December 13th -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (December 13th, is, Santa Lucia Day) -> December 13th (1563ms) Where is Santa Lucia? De La Salle -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (De La Salle, are graduates of, Santa Lucia Grade School) -> De La Salle (1564ms) Where is Santa Lucia? 3 Blocks -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (3 Blocks, away is, metro Santa Lucia) -> 3 Blocks (1564ms) Where is Santa Lucia? November 23 , 2009 December 13th -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (November 23 , 2009 December 13th, is the Feast of, Santa Lucia) -> November 23 , 2009 December 13th (1564ms) Where is Santa Lucia? Hotel -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (Hotel, Be, Live Brisas Santa Lucia) -> Hotel (1560ms) Where is Santa Lucia? annealing temperatures -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (annealing temperatures, are from, SantaLucia & Hicks) -> annealing temperatures (1560ms) Where is Santa Lucia? The railway station -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (The railway station, is named after, Santa Lucia) -> The railway station (1562ms) Where is Santa Lucia? mozzarella cheese -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (mozzarella cheese, is, Santa Lucia) -> mozzarella cheese (1559ms) Where is Santa Lucia? the main drill targets -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (the main drill targets, were, Santa Lucia) -> the main drill targets (1560ms) Where is Santa Lucia? The city -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (The city, is also famous for, the Santa Lucia Riverwalk) -> The city (1563ms) Where is Santa Lucia? Hotel Principe -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (Hotel Principe, is 200 metres from, Santa Lucia Train Station) -> Hotel Principe (1562ms) Where is Santa Lucia? the journey -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (the journey, is, Venice Santa Lucia station) -> the journey (1564ms) Where is Santa Lucia? the league -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (the league, are, the Santa Lucia Realtors) -> the league (1563ms) Where is Santa Lucia? the museum -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (the museum, is, Paseo Santa Lucia) -> the museum (1563ms) Where is Santa Lucia? Hotel Ca' Lucrezia -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (Hotel Ca' Lucrezia, is 50 metres from, Santa Lucia Train Station) -> Hotel Ca' Lucrezia (1563ms) Where is Santa Lucia? The hotels -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (The hotels, far is, Santa Lucia train station) -> The hotels (1562ms) Where is Santa Lucia? vision -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (vision, is, Santa Lucia) -> vision (1562ms) Where is Santa Lucia? Tomorrow -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (Tomorrow, is, Santa Lucia Day) -> Tomorrow (1563ms) Where is Santa Lucia? the south-west -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (the south-west, are the more fashionable area of, Santa Lucia) -> the south-west (1563ms) Where is Santa Lucia? Venice train station -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (Venice train station, is named, Santa Lucia) -> Venice train station (1559ms) Where is Santa Lucia? PetroLatina -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (PetroLatina, is the operator of, the Santa Lucia field) -> PetroLatina (1559ms) Where is Santa Lucia? Betania -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (Betania, is, Santa Lucia school) -> Betania (1564ms) Where is Santa Lucia? Executive Chef Mattos -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (Executive Chef Mattos, is from, Santa Lucia) -> Executive Chef Mattos (1563ms) Where is Santa Lucia? The first stop -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (The first stop, was, Santa Lucia Memorial Park) -> The first stop (1560ms) Where is Santa Lucia? A good one -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (A good one, is located on, Alameda Santa Lucia #4) -> A good one (1560ms) Where is Santa Lucia? December -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (December, is, Santa Lucia Day) -> December (1562ms) Where is Santa Lucia? the town -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (the town, is the tower of, Santa Lucia) -> the town (1563ms) Where is Santa Lucia? The parish -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (The parish, is called, Santa Lucia) -> The parish (1562ms) Where is Santa Lucia? the finish -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (the finish, was, the amazing Santa Lucia) -> the finish (1562ms) Where is Santa Lucia? week 4 -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (week 4, is, Santa Lucia buns) -> week 4 (1564ms) Where is Santa Lucia? Further drilling -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (Further drilling, is planned for, Santa Lucia) -> Further drilling (1562ms) Where is Santa Lucia? the peak -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (the peak, was known as, Santa Lucia) -> the peak (1565ms) Where is Santa Lucia? special buns -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (special buns, are served on, Santa Lucia Day) -> special buns (1560ms) Where is Santa Lucia? One option -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (One option, is, the Santa Lucia Hill) -> One option (1564ms) Where is Santa Lucia? Highlights -0.333333333333 Where is Santa Lucia? -> $x: ($x, be be, santa lucia) -> (Highlights, are, Santa Lucia Luntana) -> Highlights (1563ms) Where is Santa Lucia? 2 km -0.666666666667 Where is Santa Lucia? -> $x: (santa lucia, be about, $x) -> (Santa Lucia railway station, is about, 2 km) -> 2 km (1566ms) Where is Santa Lucia? 90 minutes -0.666666666667 Where is Santa Lucia? -> $x: (santa lucia, be about, $x) -> (Santa Lucia, is about, 90 minutes) -> 90 minutes (1566ms) What hockey team did Wayne Gretzky play for? fun -0.444444444444 What hockey team did Wayne Gretzky play for? -> $x: (hockey team, play for, $x) -> (your own street-hockey team, play for, fun) -> fun (580ms) What hockey team did Wayne Gretzky play for? the second Olympic gold medal -0.444444444444 What hockey team did Wayne Gretzky play for? -> $x: (hockey team, play for, $x) -> ('s hockey team, will play for, the second Olympic gold medal) -> the second Olympic gold medal (580ms) What hockey team did Wayne Gretzky play for? for 4 seasons -0.444444444444 What hockey team did Wayne Gretzky play for? -> $x: (hockey team, play for, $x) -> (the Highschool hockey team, played for, for 4 seasons) -> for 4 seasons (580ms) What hockey team did Wayne Gretzky play for? the Boston Bruins -0.444444444444 What hockey team did Wayne Gretzky play for? -> $x: (hockey team, play for, $x) -> (the Michigan hockey team, now plays for, the Boston Bruins) -> the Boston Bruins (580ms) What hockey team did Wayne Gretzky play for? the high school city championship -0.444444444444 What hockey team did Wayne Gretzky play for? -> $x: (hockey team, play for, $x) -> ('s hockey team, will play for, the high school city championship) -> the high school city championship (580ms) What hockey team did Wayne Gretzky play for? Gold -0.444444444444 What hockey team did Wayne Gretzky play for? -> $x: (hockey team, play for, $x) -> ('s hockey team, will end up playing for, Gold) -> Gold (580ms) What hockey team did Wayne Gretzky play for? five years -0.444444444444 What hockey team did Wayne Gretzky play for? -> $x: (hockey team, play for, $x) -> (The Providence Reds hockey team, played there for, five years) -> five years (580ms) What hockey team did Wayne Gretzky play for? the Keller Division championship -0.444444444444 What hockey team did Wayne Gretzky play for? -> $x: (hockey team, play for, $x) -> (' hockey team, will play for, the Keller Division championship) -> the Keller Division championship (580ms) What hockey team did Wayne Gretzky play for? a spot -0.444444444444 What hockey team did Wayne Gretzky play for? -> $x: (hockey team, play for, $x) -> (Findlay High School?s hockey team, will play for, a spot) -> a spot (580ms) What hockey team did Wayne Gretzky play for? three seasons -0.444444444444 What hockey team did Wayne Gretzky play for? -> $x: (hockey team, play for, $x) -> ('s hockey team, played there for, three seasons) -> three seasons (580ms) What hockey team did Wayne Gretzky play for? Favorite pro player -0.444444444444 What hockey team did Wayne Gretzky play for? -> $x: (hockey team, play for, $x) -> (hockey team, play for, Favorite pro player) -> Favorite pro player (580ms) How many crew members were aboard? Limited seating -0.33333333333799997 How many crew members were aboard? -> $x: ($x, be aboard, challenger) -> (Limited seating, is available aboard, the R/V CHALLENGER) -> Limited seating (776ms) How many crew members were aboard? space -0.33333333333799997 How many crew members were aboard? -> $x: ($x, be aboard, challenger) -> (space, was also aboard, the Challenger) -> space (776ms) How many crew members were aboard? The count -0.33333333333799997 How many crew members were aboard? -> $x: ($x, be aboard, challenger) -> (The count, will be held aboard, UNH R.V. Gulf Challenger) -> The count (776ms) How many crew members were aboard? Arraf -0.33333333333799997 How many crew members were aboard? -> $x: ($x, be aboard, challenger) -> (Arraf, was aboard, the Challenger 1) -> Arraf (776ms) How many crew members were aboard? Isla Mujeres -0.666666666667 How many crew members were aboard? -> $x: ($x, crew, aboard) -> (Isla Mujeres, join the crew of, Aboard one) -> Isla Mujeres (776ms) How many crew members were aboard? The ship -0.666666666667 How many crew members were aboard? -> $x: ($x, crew, aboard) -> (The ship, had a crew of, 31 aboard) -> The ship (776ms) How many crew members were aboard? the plane -1.333333333331 How many crew members were aboard? -> $x: (crew member, be aboard, $x) -> (20 crew members, were aboard, the plane) -> the plane (777ms) How many crew members were aboard? the privately-owned boat -1.333333333331 How many crew members were aboard? -> $x: (crew member, be aboard, $x) -> (Two crew members, were aboard, the privately-owned boat) -> the privately-owned boat (777ms) How many crew members were aboard? the Santa Maria -1.333333333331 How many crew members were aboard? -> $x: (crew member, be aboard, $x) -> (a crew member, was aboard, the Santa Maria) -> the Santa Maria (777ms) How many crew members were aboard? already -1.333333333331 How many crew members were aboard? -> $x: (crew member, be aboard, $x) -> (crew members, were aboard the ISS, already) -> already (777ms) How many crew members were aboard? Flight # 11 -1.333333333331 How many crew members were aboard? -> $x: (crew member, be aboard, $x) -> (Crew members, were aboard, Flight # 11) -> Flight # 11 (777ms) How many crew members were aboard? the California Zephyr -1.333333333331 How many crew members were aboard? -> $x: (crew member, be aboard, $x) -> (14 crew members, were aboard, the California Zephyr) -> the California Zephyr (777ms) How many crew members were aboard? a few weeks -1.333333333331 How many crew members were aboard? -> $x: (crew member, be aboard, $x) -> (those crew members, have only been aboard, a few weeks) -> a few weeks (776ms) How many crew members were aboard? longer than expected -1.333333333331 How many crew members were aboard? -> $x: (crew member, be aboard, $x) -> (six crew members, were aboard for, longer than expected) -> longer than expected (777ms) How many crew members were aboard? RMS Titanic -1.333333333331 How many crew members were aboard? -> $x: (crew member, be aboard, $x) -> (crew members, were aboard, RMS Titanic) -> RMS Titanic (777ms) How many crew members were aboard? the Discovery -1.333333333331 How many crew members were aboard? -> $x: (crew member, be aboard, $x) -> (Seven crew members, were aboard, the Discovery) -> the Discovery (777ms) How many crew members were aboard? the Titanic -1.333333333331 How many crew members were aboard? -> $x: (crew member, be aboard, $x) -> (passengers and crew members, were aboard, the Titanic) -> the Titanic (777ms) How many crew members were aboard? the aircraft -1.333333333331 How many crew members were aboard? -> $x: (crew member, be aboard, $x) -> (Nine crew members, were aboard, the aircraft) -> the aircraft (777ms) How many crew members were aboard? the vessel -1.333333333331 How many crew members were aboard? -> $x: (crew member, be aboard, $x) -> (crew members, were aboard, the vessel) -> the vessel (776ms) How many crew members were aboard? the ship -1.333333333331 How many crew members were aboard? -> $x: (crew member, be aboard, $x) -> (Twenty-seven crew members, were aboard, the ship) -> the ship (777ms) How many crew members were aboard? the Costa Concordia -1.333333333331 How many crew members were aboard? -> $x: (crew member, be aboard, $x) -> (1,000 crew members, were aboard, the Costa Concordia) -> the Costa Concordia (776ms) How many crew members were aboard? Flight # 77 -1.333333333331 How many crew members were aboard? -> $x: (crew member, be aboard, $x) -> (Crew members, were aboard, Flight # 77) -> Flight # 77 (777ms) How many crew members were aboard? the ISS -1.333333333331 How many crew members were aboard? -> $x: (crew member, be aboard, $x) -> (crew members, were aboard, the ISS) -> the ISS (777ms) How many crew members were aboard? M/V Costa Concordia -1.333333333331 How many crew members were aboard? -> $x: (crew member, be aboard, $x) -> (crew members, were aboard, M/V Costa Concordia) -> M/V Costa Concordia (777ms) How many seats are in the Lebanese Parliament? The capital Beirut -0.11111111110800001 How many seats are in the Lebanese Parliament? -> $x: ($x, be seat of, lebanese parliament) -> (The capital Beirut, is the seat of, the Lebanese Parliament) -> The capital Beirut (721ms) How many seats are in the Lebanese Parliament? Hezbollah -0.999999999988 How many seats are in the Lebanese Parliament? -> $x: ($x, seat, lebanese parliament) -> (Hezbollah, won more seats in, the Lebanese parliament) -> Hezbollah (721ms) How many seats are in the Lebanese Parliament? 2000 Hezbollah -0.999999999988 How many seats are in the Lebanese Parliament? -> $x: ($x, seat, lebanese parliament) -> (2000 Hezbollah, has won seats in, the Lebanese parliament) -> 2000 Hezbollah (721ms) How many seats are in the Lebanese Parliament? the party -0.999999999988 How many seats are in the Lebanese Parliament? -> $x: ($x, seat, lebanese parliament) -> (the party, does hold seats in, the Lebanese parliament) -> the party (721ms) How many seats are in the Lebanese Parliament? Hizballah members -0.999999999988 How many seats are in the Lebanese Parliament? -> $x: ($x, seat, lebanese parliament) -> (Hizballah members, hold seats in, the Lebanese parliament) -> Hizballah members (721ms) What is his primary career? the numbers -0.22222222221299998 What is his primary career? -> $x: ($x, function, career) -> (the numbers, is the core function of, a budget analyst career) -> the numbers (1113ms) What is his primary career? employment website -0.22222222221299998 What is his primary career? -> $x: ($x, function, career) -> (employment website, functions much like, Seek or MyCareer) -> employment website (1113ms) What is his primary career? No matter -0.22222222221299998 What is his primary career? -> $x: ($x, function, career) -> (No matter, is our specific function in, our career) -> No matter (1177ms) What is his primary career? true cohesion -0.22222222221299998 What is his primary career? -> $x: ($x, be symptom of, career) -> (true cohesion, is obviously a symptom of, Bay?s career) -> true cohesion (931ms) What is his primary career? jobs -0.22222222221299998 What is his primary career? -> $x: ($x, be type of, career) -> (jobs, are the most popular types of, careers) -> jobs (931ms) What is his primary career? Freelance writing -0.22222222221299998 What is his primary career? -> $x: ($x, be type of, career) -> (Freelance writing, has long been a special type of, career) -> Freelance writing (1113ms) What is his primary career? addition -0.22222222221299998 What is his primary career? -> $x: ($x, function, career) -> (addition, perform an important function in, the career) -> addition (1204ms) What is his primary career? Application creator -0.22222222221299998 What is his primary career? -> $x: ($x, be type of, career) -> (Application creator, will be other type of, career) -> Application creator (1177ms) What is his primary career? The show -0.22222222221299998 What is his primary career? -> $x: ($x, function, career) -> (The show, will function as, a mid-career retrospective) -> The show (931ms) What is his primary career? The person -0.22222222221299998 What is his primary career? -> $x: ($x, be type of, career) -> (The person, is considering this type of, alternative career move) -> The person (1154ms) What is his primary career? Members -0.22222222221299998 What is his primary career? -> $x: ($x, be type of, career) -> (Members, are taught the different types of, nursing careers) -> Members (1177ms) What is his primary career? A personality test -0.22222222221299998 What is his primary career? -> $x: ($x, be type of, career) -> (A personality test, is another type of, career assessment tests) -> A personality test (1177ms) What is his primary career? the internet -0.22222222221299998 What is his primary career? -> $x: ($x, be type of, career) -> (the internet, is an ideal type of, a career path) -> the internet (1154ms) What is his primary career? Career CollegesThere -0.22222222221299998 What is his primary career? -> $x: ($x, be type of, career) -> (Career CollegesThere, are many types of, career colleges) -> Career CollegesThere (931ms) What is his primary career? Fighter -0.22222222221299998 What is his primary career? -> $x: ($x, be type of, career) -> (Fighter, is a close-fight type of, career) -> Fighter (1113ms) What is his primary career? individuals -0.22222222221299998 What is his primary career? -> $x: ($x, function, career) -> (individuals, to function in, professional service careers) -> individuals (1177ms) What is his primary career? five -0.22222222221299998 What is his primary career? -> $x: ($x, function, career) -> (five, were a curvilinear function of, career age) -> five (1178ms) What is his primary career? nursing -0.22222222221299998 What is his primary career? -> $x: ($x, be type of, career) -> (nursing, was a very interactive type of, career) -> nursing (931ms) What is his primary career? employers -0.22222222221299998 What is his primary career? -> $x: ($x, function, career) -> (employers, determine the functions for, each career) -> employers (1177ms) What is his primary career? an international sector -0.22222222221299998 What is his primary career? -> $x: ($x, be type of, career) -> (an international sector, is a different type of, career choice) -> an international sector (1154ms) What is his primary career? Fiduciary accounting -0.22222222221299998 What is his primary career? -> $x: ($x, be type of, career) -> (Fiduciary accounting, is another type of, accountancy careers) -> Fiduciary accounting (1154ms) What is his primary career? Next -0.22222222221299998 What is his primary career? -> $x: ($x, be type of, career) -> (Next, is the type of, career) -> Next (1113ms) What is his primary career? non-sales -0.22222222221299998 What is his primary career? -> $x: ($x, function, career) -> (non-sales, functions very early in, their career) -> non-sales (1154ms) What is his primary career? such movements -0.22222222221299998 What is his primary career? -> $x: ($x, function, career) -> (such movements, is a function of, career security) -> such movements (1154ms) What is his primary career? capable citizens -0.22222222221299998 What is his primary career? -> $x: ($x, function, career) -> (capable citizens, were able to function within, a career field) -> capable citizens (1154ms) What is his primary career? economics -0.22222222221299998 What is his primary career? -> $x: ($x, be type of, career) -> (economics, There are basically two types of, career) -> economics (931ms) What is his primary career? the learning and education -0.22222222221299998 What is his primary career? -> $x: ($x, function, career) -> (the learning and education, function, a core career step) -> the learning and education (1154ms) What is his primary career? college -0.22222222221299998 What is his primary career? -> $x: ($x, be type of, career) -> (college, was exactly the type of, career) -> college (1177ms) What is his primary career? An internship -0.22222222221299998 What is his primary career? -> $x: ($x, be type of, career) -> (An internship, is one type of, career preparatory experience) -> An internship (1113ms) What is his primary career? The generalized age curve -0.22222222221299998 What is his primary career? -> $x: ($x, function, career) -> (The generalized age curve, is a function of, career) -> The generalized age curve (1113ms) What is his primary career? We?ll -0.22222222221299998 What is his primary career? -> $x: ($x, be type of, career) -> (We?ll, be covering three types of, career break activities) -> We?ll (931ms) What is his primary career? A career aptitude test -0.22222222221299998 What is his primary career? -> $x: ($x, be type of, career) -> (A career aptitude test, is a type of, career quiz) -> A career aptitude test (931ms) What nationality is Sean Connery? big money -2.333333333344 What nationality is Sean Connery? -> $x: (sean connery, play for, $x) -> (even Sean Connery, played roulette for, big money) -> big money (584ms) What nationality is Sean Connery? James Bond -2.333333333344 What nationality is Sean Connery? -> $x: (sean connery, play for, $x) -> (Sean Connery, for playing, James Bond) -> James Bond (584ms) What songs did Al Jolson Sing? ?Sonny Boy 0.555555555552 What songs did Al Jolson Sing? -> $x: (al jolson, sing, $x) -> (Al Jolson, sang, ?Sonny Boy) -> ?Sonny Boy (789ms) What songs did Al Jolson Sing? the song 0.555555555552 What songs did Al Jolson Sing? -> $x: (al jolson, sing, $x) -> (Al Jolson, sang, the song) -> the song (789ms) What songs did Al Jolson Sing? Mammy 0.555555555552 What songs did Al Jolson Sing? -> $x: (al jolson, sing, $x) -> (Al Jolson, sang, Mammy) -> Mammy (789ms) What songs did Al Jolson Sing? the October 0.555555555552 What songs did Al Jolson Sing? -> $x: (al jolson, sing, $x) -> (the first song Al Jolson, sang on, the October) -> the October (801ms) What songs did Al Jolson Sing? ?Mammy ? 0.555555555552 What songs did Al Jolson Sing? -> $x: (al jolson, sing, $x) -> (Al Jolson, sings, ?Mammy ?) -> ?Mammy ? (789ms) What songs did Al Jolson Sing? a few songs 0.555555555552 What songs did Al Jolson Sing? -> $x: (al jolson, sing, $x) -> (Al Jolson, sings, a few songs) -> a few songs (789ms) What songs did Al Jolson Sing? the most popular tongue twister 0.555555555552 What songs did Al Jolson Sing? -> $x: (al jolson, sing, $x) -> (Al Jolson, sang, the most popular tongue twister) -> the most popular tongue twister (789ms) What songs did Al Jolson Sing? more soldiers 0.555555555552 What songs did Al Jolson Sing? -> $x: (al jolson, sing, $x) -> (S. J. Woolf Al Jolson, has sung to, more soldiers) -> more soldiers (801ms) What songs did Al Jolson Sing? two hours 0.555555555552 What songs did Al Jolson Sing? -> $x: (al jolson, sing, $x) -> (Al Jolson, sang for, two hours) -> two hours (789ms) What songs did Al Jolson Sing? California, Here I Come -0.666666666667 What songs did Al Jolson Sing? -> $x: (al jolson, compose, $x) -> (Al Jolson, Works Composed, California, Here I Come) -> California, Here I Come (801ms) In what country is the mouth of the Amazon River? Nevado Mismi 1.333333333325 In what country is the mouth of the Amazon River? -> $x: ($x, be source of, amazon river) -> (Nevado Mismi, is the ultimate source of, the Amazon River) -> Nevado Mismi (687ms) In what country is the mouth of the Amazon River? Peruvian Amazonia 1.333333333325 In what country is the mouth of the Amazon River? -> $x: ($x, be source of, amazon river) -> (Peruvian Amazonia, is the source of, the Amazon River) -> Peruvian Amazonia (687ms) In what country is the mouth of the Amazon River? Purus River 1.222222222218 In what country is the mouth of the Amazon River? -> $x: ($x, mouth, amazon river) -> (Purus River, Mouth, Amazon River) -> Purus River (688ms) In what country is the mouth of the Amazon River? Xingu River 1.222222222218 In what country is the mouth of the Amazon River? -> $x: ($x, mouth, amazon river) -> (Xingu River, Mouth, Amazon River) -> Xingu River (688ms) In what country is the mouth of the Amazon River? Madeira River 1.222222222218 In what country is the mouth of the Amazon River? -> $x: ($x, mouth, amazon river) -> (Madeira River, Mouth, Amazon River) -> Madeira River (687ms) In what country is the mouth of the Amazon River? Rio Negro 1.222222222218 In what country is the mouth of the Amazon River? -> $x: ($x, mouth, amazon river) -> (Rio Negro, Mouth, Amazon River) -> Rio Negro (688ms) In what country is the mouth of the Amazon River? Napo River 1.222222222218 In what country is the mouth of the Amazon River? -> $x: ($x, mouth, amazon river) -> (Napo River, Mouth, Amazon River) -> Napo River (687ms) In what country is the mouth of the Amazon River? The Amazing Amazon Peru 0.666666666663 In what country is the mouth of the Amazon River? -> $x: ($x, source, amazon river) -> (The Amazing Amazon Peru, has the source of, the Amazon River) -> The Amazing Amazon Peru (687ms) In what country is the mouth of the Amazon River? down-river -1.0000056338554941E-12 In what country is the mouth of the Amazon River? -> $x: ($x, mouth, amazon) -> (down-river, eventually reached the mouth of, the Amazon) -> down-river (688ms) In what country is the mouth of the Amazon River? The group -1.0000056338554941E-12 In what country is the mouth of the Amazon River? -> $x: ($x, mouth, amazon) -> (The group, reached the mouth of, the Amazon) -> The group (688ms) In what country is the mouth of the Amazon River? THE AMAZON BASIN Peru -0.111111111111 In what country is the mouth of the Amazon River? -> $x: ($x, be source of, amazon) -> (THE AMAZON BASIN Peru, is the source of, the Amazon Basin) -> THE AMAZON BASIN Peru (689ms) In what country is the mouth of the Amazon River? Technological Technology -0.111111111111 In what country is the mouth of the Amazon River? -> $x: ($x, be source of, amazon) -> (Technological Technology, is a key source of, Amazon) -> Technological Technology (689ms) In what country is the mouth of the Amazon River? Humedales -0.111111111111 In what country is the mouth of the Amazon River? -> $x: ($x, be source of, amazon) -> (Humedales, are the source of, the Amazon tributaries) -> Humedales (689ms) In what country is the mouth of the Amazon River? southern Peru -0.111111111111 In what country is the mouth of the Amazon River? -> $x: ($x, be source of, amazon) -> (southern Peru, were the source of, the Amazon) -> southern Peru (689ms) In what country is the mouth of the Amazon River? Java Hydra Cache -0.111111111111 In what country is the mouth of the Amazon River? -> $x: ($x, be source of, amazon) -> (Java Hydra Cache, is an open source implementation of, Amazon) -> Java Hydra Cache (689ms) In what country is the mouth of the Amazon River? The Apurimac River -0.111111111111 In what country is the mouth of the Amazon River? -> $x: ($x, be source of, amazon) -> (The Apurimac River, is the true source of, the Amazon) -> The Apurimac River (689ms) In what country is the mouth of the Amazon River? mountains -0.111111111111 In what country is the mouth of the Amazon River? -> $x: ($x, be source of, amazon) -> (mountains, is the source of, the Amazon) -> mountains (689ms) In what country is the mouth of the Amazon River? decent second-hand copies -0.555555555556 In what country is the mouth of the Amazon River? -> $x: ($x, source, amazon) -> (decent second-hand copies, can be sourced from, Amazon) -> decent second-hand copies (689ms) In what country is the mouth of the Amazon River? Conversations with James Baldwin -0.555555555556 In what country is the mouth of the Amazon River? -> $x: ($x, source, amazon) -> (Conversations with James Baldwin, Source, Amazon.com) -> Conversations with James Baldwin (689ms) In what country is the mouth of the Amazon River? natural rubber -0.555555555556 In what country is the mouth of the Amazon River? -> $x: ($x, source, amazon) -> (natural rubber, sourced from, the Amazon rainforest) -> natural rubber (690ms) In what country is the mouth of the Amazon River? the Amazon UK price -0.555555555556 In what country is the mouth of the Amazon River? -> $x: ($x, source, amazon) -> (the Amazon UK price, sourced from, Amazon) -> the Amazon UK price (690ms) In what country is the mouth of the Amazon River? Review of The Famished Road -0.555555555556 In what country is the mouth of the Amazon River? -> $x: ($x, source, amazon) -> (Review of The Famished Road, source, Amazon.com) -> Review of The Famished Road (690ms) In what country is the mouth of the Amazon River? the ingredients -0.555555555556 In what country is the mouth of the Amazon River? -> $x: ($x, source, amazon) -> (the ingredients, are sustainably sourced in, the Amazon) -> the ingredients (690ms) In what country is the mouth of the Amazon River? content -0.555555555556 In what country is the mouth of the Amazon River? -> $x: ($x, source, amazon) -> (content, sourced from, Amazon) -> content (690ms) In what country is the mouth of the Amazon River? the chart -0.555555555556 In what country is the mouth of the Amazon River? -> $x: ($x, source, amazon) -> (the chart, is sourced from, Amazon) -> the chart (690ms) In what country is the mouth of the Amazon River? home -0.555555555556 In what country is the mouth of the Amazon River? -> $x: ($x, source, amazon) -> (home, ethically sourced, Amazon.com) -> home (690ms) In what country is the mouth of the Amazon River? Marten Gallagher ? Web Editor -0.555555555556 In what country is the mouth of the Amazon River? -> $x: ($x, source, amazon) -> (Marten Gallagher ? Web Editor, sourced from, Amazon blurb) -> Marten Gallagher ? Web Editor (690ms) In what country is the mouth of the Amazon River? leather -0.555555555556 In what country is the mouth of the Amazon River? -> $x: ($x, source, amazon) -> (leather, sourced in, the Amazon basin) -> leather (690ms) In what country is the mouth of the Amazon River? The field -0.555555555556 In what country is the mouth of the Amazon River? -> $x: ($x, source, amazon) -> (The field, is the source for, a $ 20 billion Amazon pipeline) -> The field (690ms) In what country is the mouth of the Amazon River? Picture -0.555555555556 In what country is the mouth of the Amazon River? -> $x: ($x, source, amazon) -> (Picture, sourced from, Amazon.co.uk) -> Picture (690ms) In what country is the mouth of the Amazon River? Promo Jones -0.555555555556 In what country is the mouth of the Amazon River? -> $x: ($x, source, amazon) -> (Promo Jones, is a one-stop source for, Amazon promotional codes) -> Promo Jones (689ms) In what country is the mouth of the Amazon River? Shelfari -0.555555555556 In what country is the mouth of the Amazon River? -> $x: ($x, source, amazon) -> (Shelfari, is a crowd-sourced service from, Amazon) -> Shelfari (690ms) In what country is the mouth of the Amazon River? photo -0.555555555556 In what country is the mouth of the Amazon River? -> $x: ($x, source, amazon) -> (photo, sourced from, amazon Read-Aloud Rhymes) -> photo (690ms) In what country is the mouth of the Amazon River? ideas -0.555555555556 In what country is the mouth of the Amazon River? -> $x: ($x, source, amazon) -> (ideas, will be primarily sourced through, Amazon Studios) -> ideas (689ms) In what country is the mouth of the Amazon River? ?Aberjhani's voice should be heard around the world. He is an extraordinarily gifted writer whose words are more than inspirational, intriguing, and eloquent ... they are poetry in motion.? -0.555555555556 In what country is the mouth of the Amazon River? -> $x: ($x, source, amazon) -> (?Aberjhani's voice should be heard around the world. He is an extraordinarily gifted writer whose words are more than inspirational, intriguing, and eloquent ... they are poetry in motion.?, Source, Amazon Review) -> ?Aberjhani's voice should be heard around the world. He is an extraordinarily gifted writer whose words are more than inspirational, intriguing, and eloquent ... they are poetry in motion.? (690ms) In what country is the mouth of the Amazon River? subject matter -0.555555555556 In what country is the mouth of the Amazon River? -> $x: ($x, source, amazon) -> (subject matter, sourced from, Amazon) -> subject matter (690ms) When did the Johnstown flood occur? Pennsylvania -0.222222222229 When did the Johnstown flood occur? -> $x: (johnstown flood, occur in, $x) -> (The Johnstown Flood, occurred in, Pennsylvania) -> Pennsylvania (692ms) When did the Johnstown flood occur? Harrison -0.666666666671 When did the Johnstown flood occur? -> $x: (johnstown flood, occur during, $x) -> (The famous Johnstown flood, occurred during, Harrison) -> Harrison (692ms) When did the Johnstown flood occur? May 31 , 1889 -0.7777777777830001 When did the Johnstown flood occur? -> $x: (johnstown flood, occur, $x) -> (The Johnstown Flood, occurred on, May 31 , 1889) -> May 31 , 1889 (692ms) How many members does it have? Miss D?Addario 0.11111111111400002 How many members does it have? -> $x: ($x, provide, congress member) -> (Miss D?Addario, began providing, Congress members) -> Miss D?Addario (1083ms) How many members does it have? the health care 0.11111111111400002 How many members does it have? -> $x: ($x, provide, congress member) -> (the health care, provided to, members of Congress) -> the health care (1142ms) How many members does it have? The event 0.11111111111400002 How many members does it have? -> $x: ($x, provide, congress member) -> (The event, provides, members of Congress and their staffers) -> The event (1083ms) How many members does it have? Dr. Bailey 0.11111111111400002 How many members does it have? -> $x: ($x, provide, congress member) -> (Dr. Bailey, provides, the Congress members) -> Dr. Bailey (1083ms) How many members does it have? the telephone numbers 0.11111111111400002 How many members does it have? -> $x: ($x, provide, congress member) -> (the telephone numbers, were provided for, Congress members) -> the telephone numbers (1083ms) How many members does it have? the health care plans 0.11111111111400002 How many members does it have? -> $x: ($x, provide, congress member) -> (the health care plans, provided to, the members of Congress) -> the health care plans (1083ms) How many members does it have? the Constitution 0.11111111111400002 How many members does it have? -> $x: ($x, protect, congress member) -> (the Constitution, protects, members of Congress) -> the Constitution (1083ms) How many members does it have? expenses 0.11111111111400002 How many members does it have? -> $x: ($x, provide, congress member) -> (expenses, even provide a stipend for, congress members) -> expenses (1083ms) How many members does it have? a think tank 0.11111111111400002 How many members does it have? -> $x: ($x, provide, congress member) -> (a think tank, provides reports to, members of Congress) -> a think tank (1142ms) How many members does it have? The 25-page report 0.11111111111400002 How many members does it have? -> $x: ($x, provide, congress member) -> (The 25-page report, provided to, members of Congress) -> The 25-page report (1083ms) How many members does it have? David -0.222222222215 How many members does it have? -> $x: ($x, be member of, titanium) -> (David, is an Honorary Member of, the Titanium Information Group) -> David (3149ms) How many members does it have? Ebola -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (Ebola, readily spreads to, family members) -> Ebola (7086ms) How many members does it have? Klement -0.222222222219 How many members does it have? -> $x: ($x, talk about, senate) -> (Klement, also talked about, Senate-passage) -> Klement (7030ms) How many members does it have? surveying -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (surveying, started as, members) -> surveying (7091ms) How many members does it have? the flame -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (the flame, were studied by, members) -> the flame (6191ms) How many members does it have? neutron stars -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (neutron stars, is studied by, members) -> neutron stars (6948ms) How many members does it have? The commentators -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (The commentators, are talking about, the Supreme Court members) -> The commentators (7090ms) How many members does it have? MDRC -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (MDRC, is studying, the members) -> MDRC (7040ms) How many members does it have? the local community ALL students -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (the local community ALL students, study privately with, members) -> the local community ALL students (7080ms) How many members does it have? let?s -0.222222222219 How many members does it have? -> $x: ($x, talk about, senate) -> (let?s, even talk about, the sad-sack Senate Democrats) -> let?s (7040ms) How many members does it have? the most surprising and -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (the most surprising and, talked about, members) -> the most surprising and (7008ms) How many members does it have? Waters -0.222222222219 How many members does it have? -> $x: ($x, talk about, pink floyd) -> (Waters, is talking about, Pink Floyd) -> Waters (7044ms) How many members does it have? a different vendor -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (a different vendor, provides this service in, the Senate) -> a different vendor (6979ms) How many members does it have? the Fellow -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (the Fellow, has opportunities to study with, members) -> the Fellow (7049ms) How many members does it have? a ?telescope corner ? -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (a ?telescope corner ?, began to take shape as, one EAS member) -> a ?telescope corner ? (6986ms) How many members does it have? the pipeline -0.222222222219 How many members does it have? -> $x: ($x, provide, state legislature) -> (the pipeline, provides, state legislatures) -> the pipeline (3456ms) How many members does it have? music -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (music, started as, a member) -> music (7015ms) How many members does it have? warm stories -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (warm stories, talk about, the family members) -> warm stories (7025ms) How many members does it have? six children -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (six children, spread among, family members) -> six children (7084ms) How many members does it have? Landry?s coalition -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (Landry?s coalition, will provide, the Senate) -> Landry?s coalition (7065ms) How many members does it have? odors -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (odors, can spread to, family members) -> odors (7049ms) How many members does it have? Rumours -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (Rumours, are being vigorously spread among, members) -> Rumours (6851ms) How many members does it have? Institutions -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (Institutions, shape, their members) -> Institutions (7035ms) How many members does it have? The Copyright Office -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (The Copyright Office, provided, the Senate Judiciary Committee) -> The Copyright Office (7015ms) How many members does it have? an associate professor -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (an associate professor, has provided, Senate testimony) -> an associate professor (7049ms) How many members does it have? The celebration -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (The celebration, spread through, every team member) -> The celebration (7068ms) How many members does it have? Zander -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Zander, started off as, a member) -> Zander (7030ms) How many members does it have? insurers -0.222222222219 How many members does it have? -> $x: ($x, provide, state legislature) -> (insurers, provides testimony before, state legislatures) -> insurers (6994ms) How many members does it have? a small idea -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (a small idea, took shape for, one member) -> a small idea (7061ms) How many members does it have? the con?di?tion -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (the con?di?tion, spreads to, wild mem?bers) -> the con?di?tion (6940ms) How many members does it have? funds -0.222222222219 How many members does it have? -> $x: ($x, provide, state legislature) -> (funds, provided by, the Minnesota State Legislature) -> funds (7084ms) How many members does it have? Louisiana -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (Louisiana, spread awareness among, members) -> Louisiana (7090ms) How many members does it have? a group -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (a group, shape the behavior of, individual members) -> a group (6948ms) How many members does it have? Alan Parsons -0.222222222219 How many members does it have? -> $x: ($x, talk about, pink floyd) -> (Alan Parsons, were here to talk about, recording Pink Floyd) -> Alan Parsons (7044ms) How many members does it have? The two -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (The two, talk about, Weier O Members) -> The two (7001ms) How many members does it have? a few Bond characters -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (a few Bond characters, were shaped from, real SOE members) -> a few Bond characters (7049ms) How many members does it have? The agreement -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (The agreement, also provided for, a senate) -> The agreement (7008ms) How many members does it have? learning -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (learning, was shaped by, faculty members) -> learning (7084ms) How many members does it have? Sifu Ken Gullette -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (Sifu Ken Gullette, has studied with, members) -> Sifu Ken Gullette (7073ms) How many members does it have? the strike -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (the strike, spread to, members) -> the strike (7080ms) How many members does it have? Randy Coutts -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (Randy Coutts, talked about, their 13-member team) -> Randy Coutts (4169ms) How many members does it have? more operating funds -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (more operating funds, spread across, community members) -> more operating funds (6948ms) How many members does it have? full time ventures -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (full time ventures, started as, a founding team member) -> full time ventures (7087ms) How many members does it have? Susan -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (Susan, studied with, members) -> Susan (7057ms) How many members does it have? the best -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (the best, provide, the ASUC Senate) -> the best (5494ms) How many members does it have? The club -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (The club, started as, 8 members) -> The club (7001ms) How many members does it have? Kazuhisa Ishii -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Kazuhisa Ishii, started as, a member) -> Kazuhisa Ishii (6964ms) How many members does it have? the virus -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (the virus, spread among, the family members) -> the virus (7090ms) How many members does it have? Costs -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (Costs, are spread among, member libraries) -> Costs (7040ms) How many members does it have? The new website -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (The new website, is taking shape with, many members) -> The new website (6994ms) How many members does it have? The Office -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (The Office, started her career as, a member) -> The Office (6940ms) How many members does it have? December 16 -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (December 16, provided, the Senate) -> December 16 (7090ms) How many members does it have? no strangers -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (no strangers, talked about, the famous members) -> no strangers (7080ms) How many members does it have? Bach -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (Bach, studied with, various family members) -> Bach (7035ms) How many members does it have? the Tribal Council -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (the Tribal Council, started as, a Member) -> the Tribal Council (6972ms) How many members does it have? the Protect IP Act -0.222222222219 How many members does it have? -> $x: ($x, talk about, senate) -> (the Protect IP Act, is being talked about in, the Senate) -> the Protect IP Act (6994ms) How many members does it have? media outlets -0.222222222219 How many members does it have? -> $x: ($x, talk about, opec) -> (media outlets, talk about, OPEC) -> media outlets (7078ms) How many members does it have? law -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (law, provides a sense of, the Senate?s opposition) -> law (5494ms) How many members does it have? quite a few volunteers -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (quite a few volunteers, started as, a steering committee members) -> quite a few volunteers (7044ms) How many members does it have? the Scrophulariaceae -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (the Scrophulariaceae, suggested the study of, members) -> the Scrophulariaceae (6948ms) How many members does it have? the amounts -0.222222222219 How many members does it have? -> $x: ($x, talk about, senate) -> (the amounts, initially talked about in, the Senate committee) -> the amounts (7061ms) How many members does it have? propagations -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (propagations, are actively spread by, the members) -> propagations (7090ms) How many members does it have? The New Jersey letter carrier -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (The New Jersey letter carrier, started out as, a member) -> The New Jersey letter carrier (6964ms) How many members does it have? such bias -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (such bias, spread to, new members) -> such bias (7065ms) How many members does it have? minor changes -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (minor changes, provide, the Senate) -> minor changes (6796ms) How many members does it have? NADCP -0.222222222219 How many members does it have? -> $x: ($x, provide, state legislature) -> (NADCP, provided early guidance to, state legislatures) -> NADCP (7001ms) How many members does it have? the opportunity -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (the opportunity, study with, faculty members) -> the opportunity (7057ms) How many members does it have? Organizations -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (Organizations, regularly spread the word to, members) -> Organizations (7008ms) How many members does it have? two women -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (two women, started talking about, family members) -> two women (7053ms) How many members does it have? 1pm -0.222222222219 How many members does it have? -> $x: ($x, start as, senate) -> (1pm, started late as, the Senate Democrats) -> 1pm (3456ms) How many members does it have? The Constitution -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (The Constitution, provided for, a Senate) -> The Constitution (7040ms) How many members does it have? a primary influence -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (a primary influence, was shaped by, members) -> a primary influence (6956ms) How many members does it have? Bodine -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Bodine, started as, a junior crew member) -> Bodine (7086ms) How many members does it have? research -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (research, involved studying, 400 members) -> research (6956ms) How many members does it have? Adams -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (Adams, talked about, other alleged members) -> Adams (7089ms) How many members does it have? The students -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (The students, will begin their studies as, members) -> The students (7091ms) How many members does it have? Act -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (Act, provide full public financing for, Senate candidates) -> Act (6979ms) How many members does it have? CAMEO members -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (CAMEO members, talked to about, 60 members) -> CAMEO members (4045ms) How many members does it have? Jailers -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (Jailers, talk about, ?wannabe? gang members) -> Jailers (7075ms) How many members does it have? Mullahs -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (Mullahs, can talk smack about, a member) -> Mullahs (7025ms) How many members does it have? the Holy Spirit -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (the Holy Spirit, spread amongst, the members) -> the Holy Spirit (7084ms) How many members does it have? Kermit -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (Kermit, has talked occasionally about, other members) -> Kermit (7086ms) How many members does it have? notes -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (notes, study, team member Jeffrey McClintock) -> notes (7015ms) How many members does it have? The awakening -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (The awakening, spread rapidly among, members) -> The awakening (7025ms) How many members does it have? the democratic process -0.222222222219 How many members does it have? -> $x: ($x, provide, state legislature) -> (the democratic process, provided by, the State Legislature) -> the democratic process (7061ms) How many members does it have? Siskind -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Siskind, started as, a social documentarian and member) -> Siskind (7080ms) How many members does it have? Nobles -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Nobles, start off as, members) -> Nobles (6972ms) How many members does it have? the scholarship agreement -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (the scholarship agreement, will also be provided to, the Senate) -> the scholarship agreement (7025ms) How many members does it have? the current one -0.222222222219 How many members does it have? -> $x: ($x, study, senate) -> (the current one, was recently studied by, a Senate committee) -> the current one (7053ms) How many members does it have? the forum -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (the forum, starts as, a junior member) -> the forum (7057ms) How many members does it have? courses/seminars/talks/workshops -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (courses/seminars/talks/workshops, will be shaped by, the members) -> courses/seminars/talks/workshops (7078ms) How many members does it have? Topics -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (Topics, are shaped by, members) -> Topics (7025ms) How many members does it have? knowledge -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (knowledge, is spread by, members) -> knowledge (7080ms) How many members does it have? Provost Gerry Selter -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (Provost Gerry Selter, provided, the Senate) -> Provost Gerry Selter (7080ms) How many members does it have? the Senate Office -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (the Senate Office, provide excellent support to, the Senate) -> the Senate Office (6940ms) How many members does it have? the lack -0.222222222219 How many members does it have? -> $x: ($x, shape, senate) -> (the lack, shapes, the Senate race) -> the lack (4169ms) How many members does it have? statistics -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (statistics, provided to, the Senate) -> statistics (6948ms) How many members does it have? The Faculty Council -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (The Faculty Council, provides, Academic Senate consultation) -> The Faculty Council (7087ms) How many members does it have? existing undergraduate courses and programs -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (existing undergraduate courses and programs, provide, Senate) -> existing undergraduate courses and programs (7084ms) How many members does it have? the Annual Meeting -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (the Annual Meeting, is shaped by, CEF members) -> the Annual Meeting (7082ms) How many members does it have? The synod -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (The synod, is studying whether, members) -> The synod (6851ms) How many members does it have? a great way -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (a great way, spread the word through, members) -> a great way (7065ms) How many members does it have? lets -0.222222222219 How many members does it have? -> $x: ($x, talk about, senate) -> (lets, talk about, the Senate) -> lets (7001ms) How many members does it have? the trouble -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (the trouble, started as, a member) -> the trouble (7087ms) How many members does it have? The leadership -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (The leadership, was provided by, the Senate) -> The leadership (7030ms) How many members does it have? Frudakis -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (Frudakis, studied, members) -> Frudakis (6986ms) How many members does it have? Dr. Fontana -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (Dr. Fontana, has done studies on, members) -> Dr. Fontana (7068ms) How many members does it have? a cup -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (a cup, shaped, annular disc or bowl member) -> a cup (7035ms) How many members does it have? The bill -0.222222222219 How many members does it have? -> $x: ($x, shape, senate) -> (The bill, is currently being shaped in, the Senate) -> The bill (6940ms) How many members does it have? Congress -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Congress, started out as, members) -> Congress (7025ms) How many members does it have? Assign roles -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (Assign roles, to study, group members) -> Assign roles (7084ms) How many members does it have? The company -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (The company, started as, a multipurpose coop... Member) -> The company (7068ms) How many members does it have? Bingaman -0.222222222219 How many members does it have? -> $x: ($x, talk about, senate) -> (Bingaman, also talks about, the expected Senate confirmation) -> Bingaman (7073ms) How many members does it have? holds -0.222222222219 How many members does it have? -> $x: ($x, study, senate) -> (holds, also is being studied by, a bipartisan Senate task force) -> holds (7044ms) How many members does it have? the comparative effectiveness -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (the comparative effectiveness, studied, 26,000 members) -> the comparative effectiveness (6956ms) How many members does it have? Rogers -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Rogers, started as, a board member) -> Rogers (7057ms) How many members does it have? T?m?r -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (T?m?r, started out as, a member) -> T?m?r (7068ms) How many members does it have? yawns -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (yawns, spread through, the guild members) -> yawns (6972ms) How many members does it have? survivors -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (survivors, talk about lost, family members) -> survivors (6964ms) How many members does it have? George Lake -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (George Lake, started as, a member) -> George Lake (6851ms) How many members does it have? Lieberman -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (Lieberman, have provided, the Senate) -> Lieberman (7061ms) How many members does it have? The UCSA -0.222222222219 How many members does it have? -> $x: ($x, provide, state legislature) -> (The UCSA, provided, state legislatures) -> The UCSA (7086ms) How many members does it have? Godinez -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (Godinez, talked about being, a member) -> Godinez (6986ms) How many members does it have? Green Dot -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (Green Dot, spread to, the 15 member states) -> Green Dot (6979ms) How many members does it have? Capsule -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (Capsule, Drugs with this shape, Members Mark Acetaminophen 500 tablet) -> Capsule (7090ms) How many members does it have? Cope -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (Cope, shape the end of, a molded wood member) -> Cope (7065ms) How many members does it have? 1992 -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (1992, studied, members) -> 1992 (6940ms) How many members does it have? legislation -0.222222222219 How many members does it have? -> $x: ($x, start as, senate) -> (legislation, passed as its starting point by, the Senate) -> legislation (3456ms) How many members does it have? the State Department -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (the State Department, has yet to provide to, the Senate) -> the State Department (6994ms) How many members does it have? infection -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (infection, has spread beyond, members) -> infection (6994ms) How many members does it have? Convex Cope -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (Convex Cope, shape the end of, a moulded wood member) -> Convex Cope (7087ms) How many members does it have? a decision -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (a decision, is spread across, members) -> a decision (7075ms) How many members does it have? Front Row USA -0.222222222219 How many members does it have? -> $x: ($x, provide, rat pack) -> (Front Row USA, provides information on, Rat Pack) -> Front Row USA (7053ms) How many members does it have? Gaute Barlindhaug -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Gaute Barlindhaug, started out as, member) -> Gaute Barlindhaug (7086ms) How many members does it have? a two page -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (a two page, spread to, each family member) -> a two page (7084ms) How many members does it have? the way Nixon -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (the way Nixon, talked about, members) -> the way Nixon (7025ms) How many members does it have? the interviewees -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (the interviewees, are talking about, band members) -> the interviewees (6940ms) How many members does it have? socialist states -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (socialist states, increasingly spreads among, members) -> socialist states (6940ms) How many members does it have? a commencement ceremony Dr. Rose -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (a commencement ceremony Dr. Rose, talked about, a member) -> a commencement ceremony Dr. Rose (7044ms) How many members does it have? amendments -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (amendments, provide recommendations to, the Senate) -> amendments (6972ms) How many members does it have? thread -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (thread, talk about, members gardens) -> thread (7001ms) How many members does it have? year -0.222222222219 How many members does it have? -> $x: ($x, study, senate) -> (year, was a study of, the United States Senate) -> year (7015ms) How many members does it have? the United States -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (the United States, talk about, numerous members) -> the United States (7044ms) How many members does it have? Further holiday cheer -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (Further holiday cheer, is being spread by, member) -> Further holiday cheer (6851ms) How many members does it have? Funds -0.222222222219 How many members does it have? -> $x: ($x, provide, state legislature) -> (Funds, are provided by, the State Legislature) -> Funds (7057ms) How many members does it have? Postscript Michael -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Postscript Michael, started as, a Powerful Practices member) -> Postscript Michael (7057ms) How many members does it have? self-incompatibility -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (self-incompatibility, has been studied intensively in, members) -> self-incompatibility (6964ms) How many members does it have? The experiences -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (The experiences, spread to, other family members) -> The experiences (6964ms) How many members does it have? biological viruses -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (biological viruses, spread within, individual ...members) -> biological viruses (7087ms) How many members does it have? The Committee -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (The Committee, provided a report to, the Senate) -> The Committee (6972ms) How many members does it have? the FTC -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (the FTC, provided, the Senate Special Committee) -> the FTC (6956ms) How many members does it have? the WELL -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (the WELL, spread among, the more adventurous members) -> the WELL (6986ms) How many members does it have? the worship leaders -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (the worship leaders, spread to, the class members) -> the worship leaders (7082ms) How many members does it have? the premium -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (the premium, is spread among, members) -> the premium (7025ms) How many members does it have? the House version -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (the House version, provided, the Senate bill) -> the House version (7086ms) How many members does it have? Boomen -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (Boomen, partially shape the identities of, their members) -> Boomen (7057ms) How many members does it have? the Malawian constitution -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (the Malawian constitution, provides for, a Senate) -> the Malawian constitution (7082ms) How many members does it have? xTDSxSCARFACE i -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (xTDSxSCARFACE i, was talking about, ps3 members) -> xTDSxSCARFACE i (7078ms) How many members does it have? The infection -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (The infection, spreads to, key team members) -> The infection (7061ms) How many members does it have? Scott -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Scott, started her career as, a member) -> Scott (7065ms) How many members does it have? The Cavern -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (The Cavern, started as, a members club) -> The Cavern (7015ms) How many members does it have? Mike Mansfield -0.222222222219 How many members does it have? -> $x: ($x, shape, senate) -> (Mike Mansfield, shaped the character of, the modern Senate) -> Mike Mansfield (7078ms) How many members does it have? A sideline discussion -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (A sideline discussion, quickly spreads between, members) -> A sideline discussion (7040ms) How many members does it have? RESEARCH -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (RESEARCH, STUDIED, ABOUT 300-THOUSAND MILITARY SERVICE MEMBERS) -> RESEARCH (7080ms) How many members does it have? the funding -0.222222222219 How many members does it have? -> $x: ($x, provide, state legislature) -> (the funding, provided by, the state legislature) -> the funding (7040ms) How many members does it have? the regulations -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (the regulations, were provided to, the Senate) -> the regulations (7087ms) How many members does it have? The stone -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (The stone, is rough-cut then shaped by, Tamokcub co-op members) -> The stone (7020ms) How many members does it have? Jud King -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Jud King, started as, a faculty member) -> Jud King (7090ms) How many members does it have? The previous FAQ -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (The previous FAQ, were talking about, MEMBER OBJECTS) -> The previous FAQ (7090ms) How many members does it have? Mr. Biden -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (Mr. Biden, talked about, individual members) -> Mr. Biden (7090ms) How many members does it have? The Australian Constitution -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (The Australian Constitution, provides, the Senate) -> The Australian Constitution (6956ms) How many members does it have? quotes -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (quotes, study, team member Dietmar Glindemann) -> quotes (6191ms) How many members does it have? fat taxes -0.222222222219 How many members does it have? -> $x: ($x, spread, state legislature) -> (fat taxes, are spreading through, state legislatures) -> fat taxes (7053ms) How many members does it have? The Department -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (The Department, was asked to provide, the Senate) -> The Department (7061ms) How many members does it have? the 75 disorders -0.222222222219 How many members does it have? -> $x: ($x, study, senate) -> (the 75 disorders, studied by, a Senate subcommittee) -> the 75 disorders (3149ms) How many members does it have? Dave Snow -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (Dave Snow, present the study to, members) -> Dave Snow (7053ms) How many members does it have? the Rules violation -0.222222222219 How many members does it have? -> $x: ($x, spread, senate) -> (the Rules violation, spread to, the Senate Rehabilitation) -> the Rules violation (7068ms) How many members does it have? August -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (August, could provide momentum for, the Senate) -> August (7020ms) How many members does it have? Rectangle -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (Rectangle, Drugs with this shape, Members Mark Nicotine 2 chewing gum) -> Rectangle (7075ms) How many members does it have? lizards -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (lizards, has been extensively studied in, members) -> lizards (7078ms) How many members does it have? Witt -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (Witt, talked about, his fellow members) -> Witt (7082ms) How many members does it have? Circle -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (Circle, Drugs with this shape, Members Mark Fexofenadine 180 film coated tablet) -> Circle (7078ms) How many members does it have? Mentors -0.222222222219 How many members does it have? -> $x: ($x, provide, rat pack) -> (Mentors, should be provided, Pack-ratting) -> Mentors (6972ms) How many members does it have? scholarship winners -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (scholarship winners, study in, a caucus member?s district) -> scholarship winners (6994ms) How many members does it have? Mathis -0.222222222219 How many members does it have? -> $x: ($x, talk about, senate) -> (Mathis, talked about, ending gridlock in the Senate) -> Mathis (4045ms) How many members does it have? The law -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (The law, started as, a private member) -> The law (7087ms) How many members does it have? the Mizo youth -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (the Mizo youth, was shaped into, a responsibility adult member) -> the Mizo youth (7073ms) How many members does it have? spaced apart ring -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (spaced apart ring, shaped, members) -> spaced apart ring (7091ms) How many members does it have? Kulick -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (Kulick, studied, every member) -> Kulick (6994ms) How many members does it have? Mike Gravel -0.222222222219 How many members does it have? -> $x: ($x, talk about, senate) -> (Mike Gravel, talks about, the senate?s latest vote) -> Mike Gravel (6979ms) How many members does it have? Nicky -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (Nicky, studied, members) -> Nicky (7075ms) How many members does it have? president -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (president, spread among, Soka Gakkai members) -> president (6851ms) How many members does it have? Harris -0.222222222219 How many members does it have? -> $x: ($x, shape, senate) -> (Harris, shaped, the modern Senate chaplaincy) -> Harris (6987ms) How many members does it have? Edwin R. A. Seligman -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (Edwin R. A. Seligman, had all studied with, members) -> Edwin R. A. Seligman (7044ms) How many members does it have? The tutors -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (The tutors, studied were, members) -> The tutors (6964ms) How many members does it have? Flamin -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Flamin, started off as, a member) -> Flamin (7020ms) How many members does it have? each team member -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (each team member, could study, one member) -> each team member (6994ms) How many members does it have? The cup -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (The cup, shaped, member 17) -> The cup (7035ms) How many members does it have? X Watch Brian -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (X Watch Brian, talk about being, a former Hair Club member) -> X Watch Brian (7065ms) How many members does it have? Fifty-Five -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (Fifty-Five, is shaped by, its members) -> Fifty-Five (7053ms) How many members does it have? colleagues -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (colleagues, studied, 1,037 members) -> colleagues (7057ms) How many members does it have? the Harveys -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (the Harveys, had started out as, members) -> the Harveys (6851ms) How many members does it have? Neal -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (Neal, has studied with, members) -> Neal (6979ms) How many members does it have? the highly contagious disease -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (the highly contagious disease, spreads to, family members) -> the highly contagious disease (7057ms) How many members does it have? A channel -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (A channel, shaped, member having an upwardly open face) -> A channel (7001ms) How many members does it have? the other two -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (the other two, may be shaped by, any member) -> the other two (7080ms) How many members does it have? Allison -0.222222222219 How many members does it have? -> $x: ($x, talk about, senate) -> (Allison, is talking about, the Senate) -> Allison (7075ms) How many members does it have? the aisle -0.222222222219 How many members does it have? -> $x: ($x, talk about, senate) -> (the aisle, are talking about, the U.S. Senate race) -> the aisle (7035ms) How many members does it have? the agreement -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (the agreement, provides, the Senate) -> the agreement (7057ms) How many members does it have? Players -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Players, start as, a Gold member) -> Players (6797ms) How many members does it have? 50 active laboratories -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (50 active laboratories, spread over, all member states) -> 50 active laboratories (7087ms) How many members does it have? Hugh -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (Hugh, will also be providing, Senate updates) -> Hugh (7089ms) How many members does it have? you/your trainers -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (you/your trainers, talk about, the members) -> you/your trainers (7008ms) How many members does it have? an interface -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (an interface, specifies only the shape of, members) -> an interface (7061ms) How many members does it have? an identity -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (an identity, thus shapes the identities of, its members) -> an identity (7035ms) How many members does it have? 1760 -0.222222222219 How many members does it have? -> $x: ($x, provide, state legislature) -> (1760, provided, the colonial Connecticut State Legislature) -> 1760 (7089ms) How many members does it have? Aqat -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (Aqat, said talking about, the other member) -> Aqat (7089ms) How many members does it have? RationalMan -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (RationalMan, was talking about, BNP members) -> RationalMan (7080ms) How many members does it have? Clinton -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (Clinton, provided from, the senate) -> Clinton (7082ms) How many members does it have? the session -0.222222222219 How many members does it have? -> $x: ($x, shape, senate) -> (the session, shaped up as, the Senate) -> the session (4169ms) How many members does it have? The Senate -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (The Senate, provides public access to, Senate proceedings) -> The Senate (7084ms) How many members does it have? the conference agreement -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (the conference agreement, provides, the Senate) -> the conference agreement (7020ms) How many members does it have? Jeremy -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (Jeremy, studied with, members) -> Jeremy (7080ms) How many members does it have? the katana -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (the katana, have spread with, the members) -> the katana (7030ms) How many members does it have? Mailing labels -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (Mailing labels, will be provided to, the Senate) -> Mailing labels (7057ms) How many members does it have? The VPRI -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (The VPRI, provides internal reports to, Senate) -> The VPRI (7049ms) How many members does it have? The paper -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (The paper, provides recommended actions for, local senates) -> The paper (7001ms) How many members does it have? the most -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (the most, talked about, member) -> the most (7090ms) How many members does it have? T.I. -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (T.I., also talked about, the newest Hustle Gang members) -> T.I. (7035ms) How many members does it have? related policies -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (related policies, are shaped to fit, member priorities) -> related policies (7086ms) How many members does it have? Dr. Kim -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Dr. Kim, started as, a member) -> Dr. Kim (6956ms) How many members does it have? demarcation and succession -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (demarcation and succession, will be provided to, the Senate) -> demarcation and succession (7090ms) How many members does it have? Sarah -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (Sarah, studied under, members) -> Sarah (7072ms) How many members does it have? Glenn Branca -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Glenn Branca, started out as, a member) -> Glenn Branca (7049ms) How many members does it have? staff writers and photographers -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (staff writers and photographers, talk about, military members) -> staff writers and photographers (7065ms) How many members does it have? Abu Sukkar -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (Abu Sukkar, talked about, members) -> Abu Sukkar (6948ms) How many members does it have? The President -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (The President, provided, the Senate) -> The President (6986ms) How many members does it have? meat -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (meat, study, the pack members) -> meat (7084ms) How many members does it have? the landscape -0.222222222219 How many members does it have? -> $x: ($x, shape, senate) -> (the landscape, took shape for, 2008 Senate races) -> the landscape (7080ms) How many members does it have? Culkin -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (Culkin, is also shaping up as, the most gifted member) -> Culkin (7053ms) How many members does it have? section -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (section, provides secretarial services to, Senate) -> section (7049ms) How many members does it have? the reviewers -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (the reviewers, always talk about, other audience members) -> the reviewers (7061ms) How many members does it have? residents -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (residents, talked about, their friends and family members) -> residents (7086ms) How many members does it have? the Wireless RERC -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (the Wireless RERC, conducted a study among, members) -> the Wireless RERC (6972ms) How many members does it have? the LCC ? -0.222222222219 How many members does it have? -> $x: ($x, provide, state legislature) -> (the LCC ?, provides legal advice to, the state legislature) -> the LCC ? (7089ms) How many members does it have? Vince -0.222222222219 How many members does it have? -> $x: ($x, talk about, motley crue) -> (Vince, is talking about, Motley Crue) -> Vince (7090ms) How many members does it have? The quartet -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (The quartet, studied with, members) -> The quartet (6986ms) How many members does it have? Secretary Norton -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (Secretary Norton, provided, the Senate Committee) -> Secretary Norton (7068ms) How many members does it have? Chris Christie -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (Chris Christie, provided, confidential Senate questionnaires) -> Chris Christie (6964ms) How many members does it have? an attempt -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (an attempt, reflect the spread of, members) -> an attempt (7068ms) How many members does it have? The passion and nurturing -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (The passion and nurturing, started as, a member) -> The passion and nurturing (6940ms) How many members does it have? creative ideas -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (creative ideas, spread amongst, its members) -> creative ideas (7078ms) How many members does it have? false teaching -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (false teaching, spread among, the members) -> false teaching (7068ms) How many members does it have? the period -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (the period, studied since, members) -> the period (6986ms) How many members does it have? The Mommies Network -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (The Mommies Network, started as, a member) -> The Mommies Network (7008ms) How many members does it have? a speech -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (a speech, talk about, other cast members) -> a speech (4045ms) How many members does it have? Florida Atlantic University -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (Florida Atlantic University, has studied, its members) -> Florida Atlantic University (6191ms) How many members does it have? Nokelainen -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Nokelainen, started the season as, a member) -> Nokelainen (7090ms) How many members does it have? The core group -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (The core group, started as, the members) -> The core group (6964ms) How many members does it have? Oil speculation bill -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (Oil speculation bill, provides, Senate forum) -> Oil speculation bill (7072ms) How many members does it have? Singer -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (Singer, has studied, members) -> Singer (6191ms) How many members does it have? little formal training -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (little formal training, started as, members) -> little formal training (7008ms) How many members does it have? The Hoasca Project -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (The Hoasca Project, studied, 15 long-time members) -> The Hoasca Project (7053ms) How many members does it have? Steve Jacob -0.222222222219 How many members does it have? -> $x: ($x, talk about, senate) -> (Steve Jacob, is talking about, the Senate immigration bill) -> Steve Jacob (7090ms) How many members does it have? Christians -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (Christians, talked often about being, members) -> Christians (7044ms) How many members does it have? the online service -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (the online service, provided to visitors to, Senate websites) -> the online service (5494ms) How many members does it have? The deference -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (The deference, provided to, the Senate) -> The deference (6972ms) How many members does it have? Oregon -0.222222222219 How many members does it have? -> $x: ($x, provide, state legislature) -> (Oregon, was provided through, the State Legislature) -> Oregon (7049ms) How many members does it have? Traffic Syndicate -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Traffic Syndicate, Start as, a silver member) -> Traffic Syndicate (7025ms) How many members does it have? Nelson -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Nelson, started as, a LIFE board member) -> Nelson (7008ms) How many members does it have? Wiborg -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Wiborg, started as, a Burger King crew member) -> Wiborg (6986ms) How many members does it have? WBro Peter Hewitt -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (WBro Peter Hewitt, spread amongst, the members) -> WBro Peter Hewitt (7065ms) How many members does it have? AUSA -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (AUSA, Provides Testimony for, Senate VA) -> AUSA (6979ms) How many members does it have? the news outlets -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (the news outlets, stop talking about, TEA Party members) -> the news outlets (7084ms) How many members does it have? the martial arts -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (the martial arts, has studied with, members) -> the martial arts (7089ms) How many members does it have? Applicants -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Applicants, will start as, members) -> Applicants (7075ms) How many members does it have? an infected worker -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (an infected worker, spread the disease to, family members) -> an infected worker (6956ms) How many members does it have? the meeting -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (the meeting, is shaped by, the 13 members) -> the meeting (7086ms) How many members does it have? Instead new rights -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (Instead new rights, spread among, the member nations) -> Instead new rights (7065ms) How many members does it have? Chan -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (Chan, talked about, a gang member) -> Chan (7072ms) How many members does it have? the Naxalite?movement -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (the Naxalite?movement, took shape after, some members) -> the Naxalite?movement (7025ms) How many members does it have? Cass -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (Cass, will talk about, the unsung members) -> Cass (7053ms) How many members does it have? Doubront and Bard -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Doubront and Bard, will get their first starts as, members) -> Doubront and Bard (7090ms) How many members does it have? such interested parties -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (such interested parties, as will provide, the Senate) -> such interested parties (7072ms) How many members does it have? Zwaggle -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (Zwaggle, is shaped by, our community members) -> Zwaggle (7049ms) How many members does it have? Everybody -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Everybody, automatically starts off as, a member) -> Everybody (7030ms) How many members does it have? DIAN researchers -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (DIAN researchers, are studying, members) -> DIAN researchers (6979ms) How many members does it have? Babesiosis -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (Babesiosis, is spread by, members) -> Babesiosis (5494ms) How many members does it have? the GSEs -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (the GSEs, has been provided to, the Senate) -> the GSEs (7035ms) How many members does it have? The Vancouver native -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (The Vancouver native, started as, a young member) -> The Vancouver native (7089ms) How many members does it have? Robin -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Robin, started as, a member) -> Robin (7049ms) How many members does it have? project managers -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (project managers, start out as, members) -> project managers (6956ms) How many members does it have? Steve Boris -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Steve Boris, started as, members) -> Steve Boris (7090ms) How many members does it have? TVW -0.222222222219 How many members does it have? -> $x: ($x, provide, state legislature) -> (TVW, provides televised coverage of, the state Legislature) -> TVW (7008ms) How many members does it have? We?d -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (We?d, rather talk about, our 100 member Falls Rump Church) -> We?d (7082ms) How many members does it have? Senate -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (Senate, Provides links to, Senate Committees) -> Senate (7030ms) How many members does it have? PFI -0.222222222219 How many members does it have? -> $x: ($x, provide, state legislature) -> (PFI, provides information to, Congress and state legislatures) -> PFI (3456ms) How many members does it have? Vampire characters -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Vampire characters, start as, members) -> Vampire characters (7068ms) How many members does it have? The news -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (The news, spread after, a few members) -> The news (7061ms) How many members does it have? The House -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (The House, shall provide, the Senate) -> The House (6987ms) How many members does it have? Funding -0.222222222219 How many members does it have? -> $x: ($x, provide, state legislature) -> (Funding, is provided by, the Illinois State Legislature) -> Funding (7090ms) How many members does it have? such Churches and fellowships -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (such Churches and fellowships, spread among, members) -> such Churches and fellowships (7075ms) How many members does it have? President Clinton -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (President Clinton, was talked about by, the Klan members) -> President Clinton (4169ms) How many members does it have? FL -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (FL, started their careers as, members) -> FL (6948ms) How many members does it have? PUBLIC MOOD -0.222222222219 How many members does it have? -> $x: ($x, shape, senate) -> (PUBLIC MOOD, WILL SHAPE, SENATE) -> PUBLIC MOOD (7057ms) How many members does it have? Pinworm infection -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (Pinworm infection, spreads easily to, family members) -> Pinworm infection (7044ms) How many members does it have? the amazing enthusiasm -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (the amazing enthusiasm, spread throughout, the audience members) -> the amazing enthusiasm (7001ms) How many members does it have? America -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (America, has studied with, members) -> America (7090ms) How many members does it have? despair -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (despair, spread over, the members) -> despair (7040ms) How many members does it have? the ABR list -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (the ABR list, provides, his Senate Leadership number) -> the ABR list (7044ms) How many members does it have? 555-555-5555 Everyone -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (555-555-5555 Everyone, starts as, a Blue Status Member) -> 555-555-5555 Everyone (6979ms) How many members does it have? the ring -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (the ring, shaped, support member) -> the ring (6972ms) How many members does it have? Dahlia Lithwick -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (Dahlia Lithwick, provides, Senate Democrats) -> Dahlia Lithwick (7015ms) How many members does it have? employees -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (employees, started to talk about, the family members) -> employees (7030ms) How many members does it have? Milanovich -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Milanovich, started as, a member) -> Milanovich (7053ms) How many members does it have? were -0.222222222219 How many members does it have? -> $x: ($x, talk about, senate) -> (were, talking about, the Senate) -> were (7087ms) How many members does it have? written records -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (written records, show the wide spread of, members) -> written records (6940ms) How many members does it have? Speakers and family members -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (Speakers and family members, will talk about, members) -> Speakers and family members (6994ms) How many members does it have? a moderator -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (a moderator, talked about, the court members) -> a moderator (7075ms) How many members does it have? Lotteries -0.222222222219 How many members does it have? -> $x: ($x, provide, state legislature) -> (Lotteries, provide, state legislatures) -> Lotteries (7068ms) How many members does it have? the potentially controversial plan -0.222222222219 How many members does it have? -> $x: ($x, shape, senate) -> (the potentially controversial plan, taking shape in, the Senate) -> the potentially controversial plan (7086ms) How many members does it have? the anchor -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (the anchor, talked about, gang members) -> the anchor (7057ms) How many members does it have? the full negotiating records -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (the full negotiating records, have been provided to, the Senate) -> the full negotiating records (7044ms) How many members does it have? the Rohrabacher bill -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (the Rohrabacher bill, provides, Senate representation) -> the Rohrabacher bill (6851ms) How many members does it have? October Tristan Koch -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (October Tristan Koch, started as, a new core team member) -> October Tristan Koch (7090ms) How many members does it have? Hillary Clinton -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (Hillary Clinton, was talked about by, the Klan members) -> Hillary Clinton (6986ms) How many members does it have? a Passage -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (a Passage, is an informal bible study for, members) -> a Passage (6948ms) How many members does it have? the attack -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (the attack, can spread to, other members) -> the attack (7065ms) How many members does it have? Simon -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (Simon, talks about, ways NAVCA members) -> Simon (7040ms) How many members does it have? Health Freedom -0.222222222219 How many members does it have? -> $x: ($x, talk about, senate) -> (Health Freedom, will talk about, California Senate Bill SB 2100) -> Health Freedom (7089ms) How many members does it have? Oval -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (Oval, Drugs with this shape, Members Mark Loratadine 10 tablet) -> Oval (7084ms) How many members does it have? Home -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (Home, spreads lies about, members) -> Home (7008ms) How many members does it have? the regions -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (the regions, studied by, core List members) -> the regions (6956ms) How many members does it have? Big O and Blag-o -0.222222222219 How many members does it have? -> $x: ($x, talk about, senate) -> (Big O and Blag-o, met to talk about, the Senate seat vacancy) -> Big O and Blag-o (7025ms) How many members does it have? Prometheus -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (Prometheus, had been separately shaping, those natural members) -> Prometheus (7015ms) How many members does it have? Phil Gramm -0.222222222219 How many members does it have? -> $x: ($x, talk about, senate) -> (Phil Gramm, was talking about leaving, the Senate) -> Phil Gramm (7040ms) How many members does it have? Globals Inc -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (Globals Inc, took shape initially with only, four members) -> Globals Inc (7053ms) How many members does it have? the great justices -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (the great justices, started out as, a member) -> the great justices (7089ms) How many members does it have? Senator Duffy -0.222222222219 How many members does it have? -> $x: ($x, talk about, senate) -> (Senator Duffy, talked about, the Senate Retreat) -> Senator Duffy (7084ms) How many members does it have? a report -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (a report, will be provided to, the Senate) -> a report (7068ms) How many members does it have? Louv -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (Louv, talked about being, a member) -> Louv (6948ms) How many members does it have? the Burger King Carl -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (the Burger King Carl, started as, a student crew member) -> the Burger King Carl (7040ms) How many members does it have? the final plan -0.222222222219 How many members does it have? -> $x: ($x, provide, state legislature) -> (the final plan, will be provided to, the state Legislature) -> the final plan (7090ms) How many members does it have? Joe -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (Joe, studied with, members) -> Joe (7080ms) How many members does it have? VSLA groups -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (VSLA groups, spread valuable financial knowledge to, members) -> VSLA groups (7035ms) How many members does it have? the workplan -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (the workplan, will be shaped by, the members) -> the workplan (7089ms) How many members does it have? a small group -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (a small group, then spread, member ship) -> a small group (6956ms) How many members does it have? the interviews -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (the interviews, talk about, other family members) -> the interviews (7086ms) How many members does it have? Internet Addiction -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (Internet Addiction, Study, | ValueWalk Member Login Username) -> Internet Addiction (7089ms) How many members does it have? the poison -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (the poison, has spread to, every member) -> the poison (7090ms) How many members does it have? old suggestion 's -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (old suggestion 's, talked about with, some members) -> old suggestion 's (7008ms) How many members does it have? Garret Hobart -0.222222222219 How many members does it have? -> $x: ($x, study, senate) -> (Garret Hobart, studied, the Senate) -> Garret Hobart (7087ms) How many members does it have? Roger Overton -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Roger Overton, started his career as, a member) -> Roger Overton (7008ms) How many members does it have? the scene -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (the scene, began spreading, online , several members) -> the scene (7089ms) How many members does it have? Bloggers -0.222222222219 How many members does it have? -> $x: ($x, talk about, senate) -> (Bloggers, are also talking about, a Senate race) -> Bloggers (4045ms) How many members does it have? 2011 -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (2011, is shaping up for, AAMA members) -> 2011 (7086ms) How many members does it have? Defender Association -0.222222222219 How many members does it have? -> $x: ($x, study, state legislature) -> (Defender Association, did the study for, the state Legislature) -> Defender Association (7075ms) How many members does it have? www .safc-fans.com -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (www .safc-fans.com, Spread, the word 0 members) -> www .safc-fans.com (6851ms) How many members does it have? John -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (John, has studied with, members) -> John (7035ms) How many members does it have? the tag -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (the tag, has been spread around, CR members) -> the tag (7090ms) How many members does it have? The Associated Press -0.222222222219 How many members does it have? -> $x: ($x, study, senate) -> (The Associated Press, studied, his entire Senate career) -> The Associated Press (3149ms) How many members does it have? Neville Hobson -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (Neville Hobson, is talking about, a UK jury member) -> Neville Hobson (6948ms) How many members does it have? Sheryl Underwood -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (Sheryl Underwood, talked about, the member organizations) -> Sheryl Underwood (7035ms) How many members does it have? the same people -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (the same people, provided the answers at, Senate estimates) -> the same people (7068ms) How many members does it have? Rumbel -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (Rumbel, studied with, members) -> Rumbel (6986ms) How many members does it have? the funds -0.222222222219 How many members does it have? -> $x: ($x, provide, state legislature) -> (the funds, provided by, the New York State Legislature) -> the funds (7068ms) How many members does it have? Alberta?we -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (Alberta?we, were talking about, family members) -> Alberta?we (6986ms) How many members does it have? Music -0.222222222219 How many members does it have? -> $x: ($x, provide, rat pack) -> (Music, was provided by, The Irish Rat Pack) -> Music (7025ms) How many members does it have? Ireland -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (Ireland, could spread to, core members) -> Ireland (7086ms) How many members does it have? Illinois -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (Illinois, provided, senate bill sb3668) -> Illinois (7078ms) How many members does it have? a parliamentary committee -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (a parliamentary committee, studying, her private members bill) -> a parliamentary committee (7015ms) How many members does it have? Georgetown University -0.222222222219 How many members does it have? -> $x: ($x, study, state legislature) -> (Georgetown University, has studied, a dozen state legislatures) -> Georgetown University (7073ms) How many members does it have? Maggots -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (Maggots, are the worm-shaped larva of, various members) -> Maggots (7044ms) How many members does it have? Feisty -0.222222222219 How many members does it have? -> $x: ($x, talk about, senate) -> (Feisty, was talking about, the Senate) -> Feisty (7089ms) How many members does it have? Jennifer Long -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (Jennifer Long, even provided testimony to, the Senate) -> Jennifer Long (6956ms) How many members does it have? subcontracting opportunities -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (subcontracting opportunities, will be provided by, the Senate) -> subcontracting opportunities (7072ms) How many members does it have? Wiley -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (Wiley, provided, a Senate committee) -> Wiley (7075ms) How many members does it have? JCC -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (JCC, provides, a Student Senate) -> JCC (6191ms) How many members does it have? Yang -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (Yang, studied with, members) -> Yang (7091ms) How many members does it have? Counsel -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (Counsel, should study, the member) -> Counsel (7086ms) How many members does it have? Senator Kerry -0.222222222219 How many members does it have? -> $x: ($x, talk about, senate) -> (Senator Kerry, needs to talk about, his Senate record) -> Senator Kerry (6979ms) How many members does it have? McDonald?s -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (McDonald?s, started as, crew members) -> McDonald?s (6956ms) How many members does it have? RISCA -0.222222222219 How many members does it have? -> $x: ($x, provide, state legislature) -> (RISCA, are provided by, the Rhode Island State Legislature) -> RISCA (7053ms) How many members does it have? Rumors -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (Rumors, were quickly spreading among, the members) -> Rumors (7057ms) How many members does it have? Amelia -0.222222222219 How many members does it have? -> $x: ($x, provide, rat pack) -> (Amelia, provided all the information to, the RAT pack) -> Amelia (6948ms) How many members does it have? Washington -0.222222222219 How many members does it have? -> $x: ($x, provide, state legislature) -> (Washington, must provide, the state legislature) -> Washington (7020ms) How many members does it have? 59 -0.222222222219 How many members does it have? -> $x: ($x, start as, senate) -> (59, started as, Senate Constitutional Amendment 1) -> 59 (7049ms) How many members does it have? the talus -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (the talus, is shaped like, that members) -> the talus (7061ms) How many members does it have? the hemispherically -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (the hemispherically, shaped, housing member 62) -> the hemispherically (7001ms) How many members does it have? Genetic Profiles Genes -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (Genetic Profiles Genes, studied, CFS & FM Family members) -> Genetic Profiles Genes (7089ms) How many members does it have? Colorado Mr. Franklin -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Colorado Mr. Franklin, started as, a member) -> Colorado Mr. Franklin (7025ms) How many members does it have? each case -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (each case, study, a senior member) -> each case (7065ms) How many members does it have? arms -0.222222222219 How many members does it have? -> $x: ($x, provide, state legislature) -> (arms, provide security for, the state legislature) -> arms (7035ms) How many members does it have? Rob -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Rob, started as, a member) -> Rob (7072ms) How many members does it have? Families -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (Families, talk about, their missing members) -> Families (7080ms) How many members does it have? Egypt and Tunisia -0.222222222219 How many members does it have? -> $x: ($x, spread, opec) -> (Egypt and Tunisia, might spread to, other OPEC nations) -> Egypt and Tunisia (7065ms) How many members does it have? Unity -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (Unity, shapes, its members) -> Unity (6972ms) How many members does it have? the value -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (the value, talk about, one member) -> the value (6979ms) How many members does it have? information -0.222222222219 How many members does it have? -> $x: ($x, provide, state legislature) -> (information, provide this information to, state legislatures) -> information (7020ms) How many members does it have? the funding level -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (the funding level, provided by, the Senate) -> the funding level (7089ms) How many members does it have? Austin -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Austin, started as, a company member) -> Austin (7015ms) How many members does it have? the wonks -0.222222222219 How many members does it have? -> $x: ($x, study, senate) -> (the wonks, study, the Senate) -> the wonks (7090ms) How many members does it have? Justice -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (Justice, provided to, Senate offices) -> Justice (5494ms) How many members does it have? Paquin -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (Paquin, is talking about, actual family members or made-up) -> Paquin (7015ms) How many members does it have? Nepal -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Nepal, started as, two Nepalese members) -> Nepal (7072ms) How many members does it have? Thiel and colleagues -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (Thiel and colleagues, studied, members) -> Thiel and colleagues (6986ms) How many members does it have? 1971 -0.222222222219 How many members does it have? -> $x: ($x, spread, opec) -> (1971, eventually spread to, all OPEC countries) -> 1971 (6948ms) How many members does it have? Northwestern researcher Albaugh -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (Northwestern researcher Albaugh, studied were, members) -> Northwestern researcher Albaugh (7044ms) How many members does it have? 73 regions -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (73 regions, spread across, 8 EU Member States) -> 73 regions (6979ms) How many members does it have? The Liberals -0.222222222219 How many members does it have? -> $x: ($x, study, senate) -> (The Liberals, had planned to study the budget in, the Senate) -> The Liberals (7049ms) How many members does it have? the downturn -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (the downturn, spread to, core members France) -> the downturn (7001ms) How many members does it have? The researchers -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (The researchers, studied, 13,128 members) -> The researchers (7082ms) How many members does it have? the House -0.222222222219 How many members does it have? -> $x: ($x, spread, senate) -> (the House, is spreading to, the Senate) -> the House (7090ms) How many members does it have? pillows -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (pillows, spread to, every family member) -> pillows (5494ms) How many members does it have? somebody -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (somebody, talks about, a member) -> somebody (7015ms) How many members does it have? Fairway Drive -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (Fairway Drive, quickly spread as, members) -> Fairway Drive (7020ms) How many members does it have? group health insurance coverage -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (group health insurance coverage, is spread out among, members) -> group health insurance coverage (7084ms) How many members does it have? companies -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (companies, are being studied by, members) -> companies (7078ms) How many members does it have? liability -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (liability, is spread among, members) -> liability (7065ms) How many members does it have? a neighbor -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (a neighbor, spread out, my family members) -> a neighbor (7084ms) How many members does it have? Romanyshyn -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Romanyshyn, started as, a member) -> Romanyshyn (7087ms) How many members does it have? Busta -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Busta, started his career as, a member) -> Busta (6948ms) How many members does it have? Universities Australia -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (Universities Australia, provided, the Senate Committee) -> Universities Australia (5494ms) How many members does it have? the sites -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (the sites, spread among, Intelligence Community members) -> the sites (7084ms) How many members does it have? Sen. Stevens -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (Sen. Stevens, provided invaluable leadership of, the Senate) -> Sen. Stevens (6994ms) How many members does it have? Cisco -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (Cisco, studied, 2,000 members) -> Cisco (6956ms) How many members does it have? quantity -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (quantity, talked about, members) -> quantity (4045ms) How many members does it have? the Committee -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (the Committee, provide, the Academic Senate Executive Committee) -> the Committee (7087ms) How many members does it have? the bill -0.222222222219 How many members does it have? -> $x: ($x, shape, senate) -> (the bill, shaping up in, the Senate) -> the bill (7065ms) How many members does it have? netizens -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (netizens, talked about, a senior member) -> netizens (7075ms) How many members does it have? Wyant -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (Wyant, provided, policy expertise for the Senate Majority Office) -> Wyant (7091ms) How many members does it have? Professional Service -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (Professional Service, Study, section member) -> Professional Service (7020ms) How many members does it have? Paddy O'Fyrnyture -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Paddy O'Fyrnyture, started as, New members) -> Paddy O'Fyrnyture (7040ms) How many members does it have? the Nature report -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (the Nature report, studied, 205 members) -> the Nature report (7020ms) How many members does it have? years -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (years, took shape after, committee member Bob Getz) -> years (6994ms) How many members does it have? content identifiers -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (content identifiers, are spread throughout, the members) -> content identifiers (7049ms) How many members does it have? Arms Office -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (Arms Office, provides security for, the Senate) -> Arms Office (7078ms) How many members does it have? Acting -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (Acting, has studied abroad with, members) -> Acting (6191ms) How many members does it have? the shares -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (the shares, spread among, 175 other member governments) -> the shares (7020ms) How many members does it have? a disease -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (a disease, is studied among, members) -> a disease (7025ms) How many members does it have? foul -0.222222222219 How many members does it have? -> $x: ($x, study, senate) -> (foul, would benefit from studying, Senate history) -> foul (3150ms) How many members does it have? Students -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (Students, may also study with, members) -> Students (7080ms) How many members does it have? The crisis -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (The crisis, can spread to, family members) -> The crisis (7075ms) How many members does it have? Mccain -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (Mccain, has been provided one of, the senate) -> Mccain (6986ms) How many members does it have? the triangular -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (the triangular, shaped, support member) -> the triangular (7078ms) How many members does it have? electrochemistry -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (electrochemistry, are currently being studied by, members) -> electrochemistry (7072ms) How many members does it have? Jewish organizations -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (Jewish organizations, talking about, members of their faith) -> Jewish organizations (7065ms) How many members does it have? Carl Schaefer -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (Carl Schaefer, first studied under, members) -> Carl Schaefer (7075ms) How many members does it have? Armstrong -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (Armstrong, talked about, each of the Guns members) -> Armstrong (7087ms) How many members does it have? The Old Ways -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (The Old Ways, spread to, members) -> The Old Ways (6940ms) How many members does it have? The document -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (The document, had been provided to, the Senate) -> The document (6972ms) How many members does it have? Achievement Everyone -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Achievement Everyone, starts as, a member) -> Achievement Everyone (6940ms) How many members does it have? An unlikely phenomenon -0.222222222219 How many members does it have? -> $x: ($x, shape, senate) -> (An unlikely phenomenon, is shaping up, a great Senate race) -> An unlikely phenomenon (4169ms) How many members does it have? the new Authorization Act -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (the new Authorization Act, is shaped by, Members) -> the new Authorization Act (7080ms) How many members does it have? visitors -0.222222222219 How many members does it have? -> $x: ($x, provide, state legislature) -> (visitors, provided testimony before, the state legislature) -> visitors (7091ms) How many members does it have? a showdown -0.222222222219 How many members does it have? -> $x: ($x, shape, senate) -> (a showdown, is shaping up between, the House and Senate) -> a showdown (7044ms) How many members does it have? Jensen -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (Jensen, talked about, the vulnerable members) -> Jensen (6956ms) How many members does it have? Instead people -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (Instead people, should try to talk about, the family members) -> Instead people (7065ms) How many members does it have? the Western Hemisphere -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (the Western Hemisphere, was shaped by, members) -> the Western Hemisphere (6979ms) How many members does it have? infections -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (infections, usually spread between, family members) -> infections (6964ms) How many members does it have? The illness -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (The illness, is spread to, household members) -> The illness (6994ms) How many members does it have? Eni Mustafaraj -0.222222222219 How many members does it have? -> $x: ($x, study, senate) -> (Eni Mustafaraj, studied, the local senate race) -> Eni Mustafaraj (3150ms) How many members does it have? The SEC -0.222222222219 How many members does it have? -> $x: ($x, study, senate) -> (The SEC, will still conduct the study in, the Senate bill) -> The SEC (7053ms) How many members does it have? A strategy -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (A strategy, be shaped by, the members/owners) -> A strategy (7082ms) How many members does it have? greater power -0.222222222219 How many members does it have? -> $x: ($x, value, senate) -> (greater power, effectively reduce the value of, the Senate) -> greater power (4045ms) How many members does it have? The player -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (The player, starts as, a low ranking members) -> The player (7015ms) How many members does it have? the positive -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (the positive, avoid negative talk about, any team members) -> the positive (7090ms) How many members does it have? the CIAA -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (the CIAA, is given full shape with, skilled members) -> the CIAA (7035ms) How many members does it have? One woman -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (One woman, was talking about, a staff member) -> One woman (7040ms) How many members does it have? Lola -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (Lola, will talk about, integrating members) -> Lola (7090ms) How many members does it have? A party -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (A party, shapes, its members ideologies) -> A party (7053ms) How many members does it have? the administration -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (the administration, to provide, Senate) -> the administration (6940ms) How many members does it have? ASAP -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (ASAP, spread across, 44 member companies) -> ASAP (6972ms) How many members does it have? An epic battle -0.222222222219 How many members does it have? -> $x: ($x, shape, senate) -> (An epic battle, is shaping up in, the Michigan Senate) -> An epic battle (6940ms) How many members does it have? H.R. 5898 -0.222222222219 How many members does it have? -> $x: ($x, provide, state legislature) -> (H.R. 5898, would provide, state legislatures) -> H.R. 5898 (7030ms) How many members does it have? Kennedy -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (Kennedy, provided, the senate) -> Kennedy (7035ms) How many members does it have? the least -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (the least, talked about, but most effective member) -> the least (7087ms) How many members does it have? Mike fasano -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (Mike fasano, provided in, the senate) -> Mike fasano (6796ms) How many members does it have? instrumental talent -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (instrumental talent, spread across, all five members) -> instrumental talent (7001ms) How many members does it have? TVA volunteer Nimisha Raja -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (TVA volunteer Nimisha Raja, also spread the word to, members) -> TVA volunteer Nimisha Raja (6979ms) How many members does it have? the cost -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (the cost, is spread out among, club members) -> the cost (7040ms) How many members does it have? Hageland Aviation -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Hageland Aviation, started as, the youngest member) -> Hageland Aviation (7087ms) How many members does it have? Paul -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (Paul, is talking about, members) -> Paul (7090ms) How many members does it have? fear -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (fear, had been talked about by, a member) -> fear (4045ms) How many members does it have? Ziobrowski -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (Ziobrowski, 's more recent study of, members) -> Ziobrowski (6940ms) How many members does it have? quality -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (quality, are intensively studied by, members) -> quality (7089ms) How many members does it have? Delta Sigma Theta -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (Delta Sigma Theta, has been shaped by, its members) -> Delta Sigma Theta (7061ms) How many members does it have? the fire -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (the fire, started as, members) -> the fire (6972ms) How many members does it have? the termicides -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (the termicides, spread to, all the members) -> the termicides (7049ms) How many members does it have? Oberstar -0.222222222219 How many members does it have? -> $x: ($x, study, senate) -> (Oberstar, is studying, the Senate) -> Oberstar (3150ms) How many members does it have? reports -0.222222222219 How many members does it have? -> $x: ($x, provide, state legislature) -> (reports, are provided to, the California State Legislature) -> reports (3456ms) How many members does it have? the revitalisation -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (the revitalisation, spread, some members) -> the revitalisation (7020ms) How many members does it have? students -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (students, study under, highly qualified faculty members) -> students (6972ms) How many members does it have? The committee -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (The committee, provides, the Senate) -> The committee (7073ms) How many members does it have? The fever -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (The fever, spread among, our members) -> The fever (7090ms) How many members does it have? Rob Wallace -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (Rob Wallace, provided, an update on Faculty Senate discussions) -> Rob Wallace (7049ms) How many members does it have? Amy -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (Amy, spread gossip about, various members) -> Amy (7084ms) How many members does it have? Mickey Moon -0.222222222219 How many members does it have? -> $x: ($x, provide, rat pack) -> (Mickey Moon, can also provide, a Rat Pack Tribute Show) -> Mickey Moon (7082ms) How many members does it have? Kara -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Kara, started as, a four-member group) -> Kara (7078ms) How many members does it have? experienced member outreach agents -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (experienced member outreach agents, is shaping, your members) -> experienced member outreach agents (6979ms) How many members does it have? seven campuses -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (seven campuses, studied with, faculty members) -> seven campuses (7087ms) How many members does it have? Rules Regarding Banned Members 1 -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (Rules Regarding Banned Members 1, to talk about, banned members) -> Rules Regarding Banned Members 1 (7035ms) How many members does it have? economic crisis -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (economic crisis, spreads across, member states) -> economic crisis (7053ms) How many members does it have? October -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (October, started as, a registration staff member) -> October (7072ms) How many members does it have? Alexander -0.222222222219 How many members does it have? -> $x: ($x, start as, senate) -> (Alexander, started working as, a Senate aide) -> Alexander (7072ms) How many members does it have? a UC Davis expert -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (a UC Davis expert, has studied, members) -> a UC Davis expert (7001ms) How many members does it have? A few years -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (A few years, Study, member) -> A few years (7082ms) How many members does it have? bills -0.222222222219 How many members does it have? -> $x: ($x, shape, senate) -> (bills, are being shaped in, the House and Senate) -> bills (7015ms) How many members does it have? a playboy -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (a playboy, started the war as, a member) -> a playboy (7075ms) How many members does it have? audiences -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (audiences, got their start as, members) -> audiences (7078ms) How many members does it have? 1957 -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (1957, studied the behavior of, members) -> 1957 (7082ms) How many members does it have? Kenny W. -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (Kenny W., has studied with, members) -> Kenny W. (7075ms) How many members does it have? The guys -0.222222222219 How many members does it have? -> $x: ($x, talk about, pink floyd) -> (The guys, talk about, Pink Floyd) -> The guys (7061ms) How many members does it have? The state supreme court -0.222222222219 How many members does it have? -> $x: ($x, provide, state legislature) -> (The state supreme court, will provide, the state legislature) -> The state supreme court (7061ms) How many members does it have? Marion Rice -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (Marion Rice, studied with, members) -> Marion Rice (7044ms) How many members does it have? McCarthy -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (McCarthy, talked about, two members) -> McCarthy (7091ms) How many members does it have? the player -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (the player, starts as, one member) -> the player (7020ms) How many members does it have? Links -0.222222222219 How many members does it have? -> $x: ($x, provide, state legislature) -> (Links, are provided to, each state legislature site) -> Links (7061ms) How many members does it have? Meetings -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (Meetings, include study of, member) -> Meetings (7035ms) How many members does it have? British and Russian scientists -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (British and Russian scientists, study, the members) -> British and Russian scientists (7030ms) How many members does it have? Jamie -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Jamie, started as, a core member) -> Jamie (6797ms) How many members does it have? Mac -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (Mac, studied, the team members) -> Mac (7044ms) How many members does it have? ideas -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (ideas, spread amongst, its members) -> ideas (7070ms) How many members does it have? Searcher audiences -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Searcher audiences, start as, members) -> Searcher audiences (6994ms) How many members does it have? April -0.222222222219 How many members does it have? -> $x: ($x, spread, senate) -> (April, has now spread to, the Senate) -> April (7008ms) How many members does it have? the 108th Congress -0.222222222219 How many members does it have? -> $x: ($x, shape, senate) -> (the 108th Congress, will be shaped by, the new Senate leadership) -> the 108th Congress (7015ms) How many members does it have? London Brent -0.222222222219 How many members does it have? -> $x: ($x, value, opec) -> (London Brent, already was valuing, an OPEC crude basket) -> London Brent (6797ms) How many members does it have? Nowak-Gottl -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (Nowak-Gottl, studied, 1,002 household members) -> Nowak-Gottl (7008ms) How many members does it have? The Church?s task -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (The Church?s task, shape, its members) -> The Church?s task (7061ms) How many members does it have? Gayle -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Gayle, started as, a member worker) -> Gayle (7030ms) How many members does it have? President Paul Davenport -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (President Paul Davenport, provided, Senate) -> President Paul Davenport (7008ms) How many members does it have? Naval Health Research Center -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (Naval Health Research Center, studied, U.S. service members) -> Naval Health Research Center (6956ms) How many members does it have? Pentagon officials -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (Pentagon officials, also provided, Senate investigators) -> Pentagon officials (7049ms) How many members does it have? even those -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (even those, started as, members) -> even those (6797ms) How many members does it have? Tim -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Tim, started as, a member) -> Tim (6796ms) How many members does it have? a nine-month head -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (a nine-month head, start as, board member) -> a nine-month head (7082ms) How many members does it have? Indiana -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Indiana, started as, an associate member) -> Indiana (7015ms) How many members does it have? LEGISLATIVE SOURCE BOOK -0.222222222219 How many members does it have? -> $x: ($x, provide, state legislature) -> (LEGISLATIVE SOURCE BOOK, provides links to, state legislatures) -> LEGISLATIVE SOURCE BOOK (3456ms) How many members does it have? I?ll -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (I?ll, be talking about, the members section) -> I?ll (6956ms) How many members does it have? Hook -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (Hook, shaped, members) -> Hook (7091ms) How many members does it have? cancer -0.222222222219 How many members does it have? -> $x: ($x, study, senate) -> (cancer, was actually studied by, the U.S. senate) -> cancer (7030ms) How many members does it have? Judith -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (Judith, studied with, members) -> Judith (6797ms) How many members does it have? state positions -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (state positions, were studied by, members) -> state positions (6851ms) How many members does it have? the information -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (the information, provided to, the Senate) -> the information (6964ms) How many members does it have? Benefits -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (Benefits, spread across, all Member States) -> Benefits (7001ms) How many members does it have? The Act -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (The Act, started as, a Private Members Bill) -> The Act (6964ms) How many members does it have? a workplace -0.222222222219 How many members does it have? -> $x: ($x, shape, member) -> (a workplace, is shaped by, team member feedback) -> a workplace (6964ms) How many members does it have? The farmers group -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (The farmers group, studied were, members) -> The farmers group (7078ms) How many members does it have? The lab -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (The lab, is studying, members) -> The lab (7020ms) How many members does it have? the new service -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (the new service, started as, a member) -> the new service (7078ms) How many members does it have? Jan Sasse -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Jan Sasse, started as, new members) -> Jan Sasse (7025ms) How many members does it have? fascinating sites -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (fascinating sites, talk about with, your family members) -> fascinating sites (6940ms) How many members does it have? track -0.222222222219 How many members does it have? -> $x: ($x, provide, state legislature) -> (track, provide a report to, the State Legislature) -> track (7030ms) How many members does it have? Beirne -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (Beirne, talked about, the new staff members) -> Beirne (4169ms) How many members does it have? school bands and orchestras -0.222222222219 How many members does it have? -> $x: ($x, study, member) -> (school bands and orchestras, studied with, members) -> school bands and orchestras (7040ms) How many members does it have? City employees -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (City employees, spread, the holiday spirit Members) -> City employees (6979ms) How many members does it have? the estimate -0.222222222219 How many members does it have? -> $x: ($x, provide, senate) -> (the estimate, provided to, the Senate) -> the estimate (7072ms) How many members does it have? Smith -0.222222222219 How many members does it have? -> $x: ($x, start as, member) -> (Smith, started as, an unknown member) -> Smith (7086ms) How many members does it have? Okay -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (Okay, lets talk about, the members) -> Okay (7008ms) How many members does it have? Shadowfax -0.222222222219 How many members does it have? -> $x: ($x, talk about, member) -> (Shadowfax, is talking about, members) -> Shadowfax (7053ms) How many members does it have? consumption -0.222222222219 How many members does it have? -> $x: ($x, spread, member) -> (consumption, spread from, one member) -> consumption (7082ms) How old was the dam? karnataka 1.111111111103 How old was the dam? -> $x: ($x, be example of, dam) -> (karnataka, is an example of, new dam collapse) -> karnataka (1048ms) How old was the dam? The Hoover Dam 1.111111111103 How old was the dam? -> $x: ($x, be example of, dam) -> (The Hoover Dam, is an example of, an arch-gravity dam) -> The Hoover Dam (1048ms) How old was the dam? A beaver dam 1.111111111103 How old was the dam? -> $x: ($x, be example of, dam) -> (A beaver dam, is an example of, a small dam) -> A beaver dam (1048ms) How old was the dam? Hoover Dam 1.111111111103 How old was the dam? -> $x: ($x, be example of, dam) -> (Hoover Dam, is an example of, an arch-gravity dam) -> Hoover Dam (1048ms) How old was the dam? A worker 0.999999999992 How old was the dam? -> $x: ($x, die, dam) -> (A worker, has died at, the Sunrise Dam gold mine) -> A worker (1127ms) How old was the dam? four manatees 0.999999999992 How old was the dam? -> $x: ($x, die, dam) -> (four manatees, have already died at, the Nawel River dam) -> four manatees (1127ms) How old was the dam? WV 0.999999999992 How old was the dam? -> $x: ($x, die, dam) -> (WV, died at, Riverton Dam) -> WV (1127ms) How old was the dam? a hippo calf 0.999999999992 How old was the dam? -> $x: ($x, die, dam) -> (a hippo calf, had died in, Sunset Dam) -> a hippo calf (1246ms) How old was the dam? 998 people 0.999999999992 How old was the dam? -> $x: ($x, die, dam) -> (998 people, will die should, the dam break) -> 998 people (1246ms) How old was the dam? the Om 0.999999999992 How old was the dam? -> $x: ($x, die, dam) -> (the Om, die, Dam 50 km) -> the Om (1128ms) How old was the dam? the litter 0.999999999992 How old was the dam? -> $x: ($x, happen to, dam) -> (the litter, happen to, the dam) -> the litter (1127ms) How old was the dam? 250,000 people 0.999999999992 How old was the dam? -> $x: ($x, die, dam) -> (250,000 people, died in, the 1975 Banqiao dam disaster) -> 250,000 people (1127ms) How old was the dam? control 0.999999999992 How old was the dam? -> $x: ($x, happen to, dam) -> (control, happens to, the Snake River dams) -> control (1246ms) How old was the dam? uittuur 0.999999999992 How old was the dam? -> $x: ($x, die, dam) -> (uittuur, die, dam) -> uittuur (1246ms) How old was the dam? fish 0.999999999992 How old was the dam? -> $x: ($x, die, dam) -> (fish, are dying off in, dammed streams) -> fish (1246ms) How old was the dam? Question 8 0.999999999992 How old was the dam? -> $x: ($x, happen to, dam) -> (Question 8, will happen to, the dam) -> Question 8 (1293ms) How old was the dam? 84 0.999999999992 How old was the dam? -> $x: ($x, die, dam) -> (84, died the previous Sunday in, the Coulee Dam hospital) -> 84 (1246ms) How old was the dam? Major John Davidson 0.999999999992 How old was the dam? -> $x: ($x, die, dam) -> (Major John Davidson, died at, Beaver Dam) -> Major John Davidson (1127ms) How old was the dam? 45 0.999999999992 How old was the dam? -> $x: ($x, die, dam) -> (45, died at, Beaver Dam Community Hospital) -> 45 (1048ms) How old was the dam? Brown 0.999999999992 How old was the dam? -> $x: ($x, die, dam) -> (Brown, died at, the Coulee Dam Community hospital) -> Brown (1246ms) How old was the dam? more dear ? 0.999999999992 How old was the dam? -> $x: ($x, die, dam) -> (more dear ?, died building, the dam) -> more dear ? (1048ms) How old was the dam? flame markings 0.999999999992 How old was the dam? -> $x: ($x, die, dam) -> (flame markings, die, Sire/Dam) -> flame markings (1048ms) How old was the dam? the 96 workers 0.999999999992 How old was the dam? -> $x: ($x, die, dam) -> (the 96 workers, died during, the dam?s construction) -> the 96 workers (1128ms) How old was the dam? en daar bars 0.999999999992 How old was the dam? -> $x: ($x, die, dam) -> (en daar bars, die, dam.) -> en daar bars (1246ms) How old was the dam? out 0.999999999992 How old was the dam? -> $x: ($x, happen to, dam) -> (out, happened to, the dam) -> out (1293ms) What are antacids? Vitamin B12 deficiency anemia 0.7777777777780001 What are antacids? -> $x: ($x, cause, antacid) -> (Vitamin B12 deficiency anemia, Causes, Antacid) -> Vitamin B12 deficiency anemia (1395ms) What are antacids? Belching 0.7777777777780001 What are antacids? -> $x: ($x, cause, antacid) -> (Belching, may also be caused by, carbonated drinks or antacids) -> Belching (1395ms) What are antacids? two vacancies 0.7777777777780001 What are antacids? -> $x: ($x, cause, antacid) -> (two vacancies, may cause, an antacid supply shortage) -> two vacancies (1396ms) What are antacids? a nation 0.666666666667 What are antacids? -> $x: ($x, in, antacid) -> (a nation, nearly consumes its weight in, antacid pills) -> a nation (1606ms) What are antacids? Drug 0.666666666667 What are antacids? -> $x: ($x, in, antacid) -> (Drug, Drug formulations in this category, Antacid and pain reliever 500/1.948/2.485 powder) -> Drug (1606ms) What are antacids? PCC 0.666666666667 What are antacids? -> $x: ($x, in, antacid) -> (PCC, is often used in, calcium-based antacid tablets and liquids) -> PCC (2590ms) What are antacids? Calcium carbonate 0.666666666667 What are antacids? -> $x: ($x, in, antacid) -> (Calcium carbonate, is used in, several antacids and overuse) -> Calcium carbonate (2534ms) What are antacids? a naturally occurring mineral 0.666666666667 What are antacids? -> $x: ($x, in, antacid) -> (a naturally occurring mineral, used in, antacids) -> a naturally occurring mineral (1396ms) What are antacids? the chemicals 0.666666666667 What are antacids? -> $x: ($x, in, antacid) -> (the chemicals, found in, antacids) -> the chemicals (1770ms) What are antacids? the magnesium 0.666666666667 What are antacids? -> $x: ($x, in, antacid) -> (the magnesium, found in, antacids) -> the magnesium (2535ms) What are antacids? the corn dog 0.666666666667 What are antacids? -> $x: ($x, in, antacid) -> (the corn dog, do in, that antacid commercial) -> the corn dog (2534ms) What are antacids? trademarks 0.666666666667 What are antacids? -> $x: ($x, in, antacid) -> (trademarks, are found in, the antacid section) -> trademarks (1770ms) What are antacids? Powder for solution 0.666666666667 What are antacids? -> $x: ($x, in, antacid) -> (Powder for solution, Formulations available in this form, Antacid 1.948/2.485 powder for solution) -> Powder for solution (1606ms) What are antacids? Endoscopic examination 0.666666666667 What are antacids? -> $x: ($x, in, antacid) -> (Endoscopic examination, showed all ulcers in, the antacid group) -> Endoscopic examination (2535ms) What are antacids? calcium carbonate 0.666666666667 What are antacids? -> $x: ($x, in, antacid) -> (calcium carbonate, is its use in, antacids) -> calcium carbonate (2590ms) What are antacids? Antacids 0.666666666667 What are antacids? -> $x: ($x, in, antacid) -> (Antacids, reduce acid in, the stomach and antacid products) -> Antacids (1606ms) What are antacids? Aluminum 0.666666666667 What are antacids? -> $x: ($x, in, antacid) -> (Aluminum, is present in, many antacids) -> Aluminum (2626ms) What are antacids? cooking 0.666666666667 What are antacids? -> $x: ($x, in, antacid) -> (cooking, is often included in, antacids) -> cooking (1770ms) What are antacids? aluminum 0.666666666667 What are antacids? -> $x: ($x, in, antacid) -> (aluminum, are present in, antacids) -> aluminum (1396ms) What are antacids? calcium carbonate and magnesium 0.666666666667 What are antacids? -> $x: ($x, in, antacid) -> (calcium carbonate and magnesium, is commonly found in, antacids) -> calcium carbonate and magnesium (1770ms) What are antacids? Prelief 0.666666666667 What are antacids? -> $x: ($x, in, antacid) -> (Prelief, is available in, the antacid section) -> Prelief (1770ms) What are antacids? Magnesium oxide 0.666666666667 What are antacids? -> $x: ($x, in, antacid) -> (Magnesium oxide, is used in, some antacids) -> Magnesium oxide (1606ms) What are antacids? Powder 0.666666666667 What are antacids? -> $x: ($x, in, antacid) -> (Powder, Formulations available in this form, Antacid and pain reliever 500/1.948/2.485 powder) -> Powder (2590ms) What are antacids? The antacid composition 0.666666666667 What are antacids? -> $x: ($x, in, antacid) -> (The antacid composition, is improved in, antacid properties) -> The antacid composition (2535ms) What are antacids? Magnesium 0.666666666667 What are antacids? -> $x: ($x, in, antacid) -> (Magnesium, is often found in, antacids) -> Magnesium (2590ms) What are antacids? Dwight 0.666666666667 What are antacids? -> $x: ($x, in, antacid) -> (Dwight, engaged in, antacid abuse) -> Dwight (2590ms) What are antacids? Mgtrisilicate 0.666666666667 What are antacids? -> $x: ($x, in, antacid) -> (Mgtrisilicate, is found in, some antacids) -> Mgtrisilicate (1606ms) What are antacids? the vicious circle ions 0.666666666667 What are antacids? -> $x: ($x, in, antacid) -> (the vicious circle ions, are contained in, antacid) -> the vicious circle ions (1770ms) What are antacids? Calcium Carbonate 0.666666666667 What are antacids? -> $x: ($x, in, antacid) -> (Calcium Carbonate, is also found in, popular antacids) -> Calcium Carbonate (1396ms) What are antacids? aluminum hydroxide 0.666666666667 What are antacids? -> $x: ($x, in, antacid) -> (aluminum hydroxide, is used in, antacids) -> aluminum hydroxide (2590ms) What are antacids? the bile acid 0.666666666667 What are antacids? -> $x: ($x, in, antacid) -> (the bile acid, is used in, numerous commercial gastric antacids) -> the bile acid (1606ms) What are antacids? prescription 0.555555555556 What are antacids? -> $x: (antacid, do, $x) -> (Antacids, do have the potential to react with, prescription) -> prescription (2626ms) What are antacids? the condition 0.555555555556 What are antacids? -> $x: (antacid, do, $x) -> (Antacids, did n?t always cure, the condition) -> the condition (3041ms) What are antacids? the and el 0.555555555556 What are antacids? -> $x: (antacid, do, $x) -> (Antacids, do medically significantly recall, the and el) -> the and el (2626ms) What are antacids? the job 0.555555555556 What are antacids? -> $x: (antacid, do, $x) -> (the counter antacids, don?t do, the job) -> the job (3041ms) What are antacids? the elderly 0.555555555556 What are antacids? -> $x: (antacid, do, $x) -> (an antacid product, does severe harm to, the elderly) -> the elderly (2626ms) What are antacids? n?t work 0.555555555556 What are antacids? -> $x: (antacid, do, $x) -> (over-the-counter antacids, did, n?t work) -> n?t work (3041ms) What are antacids? the and page 0.555555555556 What are antacids? -> $x: (antacid, do, $x) -> (Antacids, do very significantly find, the and page) -> the and page (2626ms) What are antacids? the trick 0.555555555556 What are antacids? -> $x: (antacid, do, $x) -> (over-the-counter antacids, will do, the trick) -> the trick (3042ms) What are antacids? the and reference 0.555555555556 What are antacids? -> $x: (antacid, do, $x) -> (Antacids, do frequently significantly go, the and reference) -> the and reference (2626ms) What are antacids? phentermine work 0.555555555556 What are antacids? -> $x: (antacid, do, $x) -> (information nexium and antacids, does, phentermine work) -> phentermine work (3041ms) What are antacids? esophageal 0.555555555556 What are antacids? -> $x: (antacid, do, $x) -> (other antacids, do by reducing, esophageal) -> esophageal (3042ms) What are antacids? Acid Influx 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (antacid qualities, is the best cure for, Acid Influx) -> Acid Influx (3414ms) What are antacids? gas and bloating 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (Antacids, are useless for, gas and bloating) -> gas and bloating (3468ms) What are antacids? PROVIGIL today and PROVIGIL 0.555555555555 What are antacids? -> $x: ($x, do, antacid) -> (PROVIGIL today and PROVIGIL, was doing a lot of, antacids) -> PROVIGIL today and PROVIGIL (3414ms) What are antacids? acid reflux 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (an antacid, here are some home remedies for, acid reflux) -> acid reflux (3451ms) What are antacids? about 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (Antacids, must usually be avoided for, about) -> about (3451ms) What are antacids? anemia treatment 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (ingesting antacids, is crucial for, anemia treatment) -> anemia treatment (3351ms) What are antacids? heartburn symptoms 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (Antacids, are safe to use for, heartburn symptoms) -> heartburn symptoms (3459ms) What are antacids? health 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (in pills and antacids, are quite detrimental for, health) -> health (3308ms) What are antacids? an acute episode 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (Antacids, really are the best treatment for, an acute episode) -> an acute episode (3451ms) What are antacids? concern 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (antacids, is therefore a reason for, concern) -> concern (3467ms) What are antacids? acid neutralization 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (antacid therapy, is usually recommended for, acid neutralization) -> acid neutralization (3207ms) What are antacids? the question 0.555555555555 What are antacids? -> $x: ($x, do, antacid) -> (the question, does, our Antacid query) -> the question (3451ms) What are antacids? a positive test 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (antacids, is also a requisite for, a positive test) -> a positive test (3451ms) What are antacids? IBS. 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (antacids and laxatives, can also be triggers for, IBS.) -> IBS. (3308ms) What are antacids? chronic heartburn 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (Antacids, may be recommended for, chronic heartburn) -> chronic heartburn (3351ms) What are antacids? prescription medicines 0.555555555555 What are antacids? -> $x: ($x, produce, antacid) -> (prescription medicines, produce is expensive as, the antacid) -> prescription medicines (3351ms) What are antacids? the drug industry 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (Antacid drugs, were very profitable for, the drug industry) -> the drug industry (3451ms) What are antacids? therapy 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (the antacids, even be a consideration for, therapy) -> therapy (3207ms) What are antacids? Mark Pritchard 0.555555555555 What are antacids? -> $x: ($x, produce, antacid) -> (Mark Pritchard, Tracks produced, Antacid (Jedi Knights remix)) -> Mark Pritchard (3351ms) What are antacids? Tom Middleton 0.555555555555 What are antacids? -> $x: ($x, produce, antacid) -> (Tom Middleton, Tracks produced, Antacid (Jedi Knights remix)) -> Tom Middleton (3459ms) What are antacids? different physical extremes 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (Antacids, Be prepared for, different physical extremes) -> different physical extremes (3451ms) What are antacids? minor acid reflux cases 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (antacids, are just for, minor acid reflux cases) -> minor acid reflux cases (3206ms) What are antacids? mild symptoms 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (Acid Reflux Antacids, are the primary drugs for, mild symptoms) -> mild symptoms (3459ms) What are antacids? multiple daily doses 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (antacid use, are the requirements for, multiple daily doses) -> multiple daily doses (3414ms) What are antacids? short-term relief 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (Antacids, are typically more for, short-term relief) -> short-term relief (3414ms) What are antacids? occasional indigestion 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (Antacids, may be used for, occasional indigestion) -> occasional indigestion (3414ms) What are antacids? a heavy 0.555555555555 What are antacids? -> $x: ($x, do, antacid) -> (a heavy, does of, antacids) -> a heavy (3451ms) What are antacids? mild disease 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (the counter antacids, are usually instituted for, mild disease) -> mild disease (3451ms) What are antacids? nutrients 0.555555555555 What are antacids? -> $x: ($x, do, antacid) -> (nutrients, does, antacids) -> nutrients (3207ms) What are antacids? the relief 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (Axia3? ProDigestive? Antacid, is for, the relief) -> the relief (3459ms) What are antacids? GERD. 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (Antacids, are most commonly used for, GERD.) -> GERD. (3467ms) What are antacids? a longer period 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (Antacids, may sometimes be used for, a longer period) -> a longer period (3207ms) What are antacids? Heartburn 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (antacids, are Natural Remedies For, Heartburn) -> Heartburn (3414ms) What are antacids? OTC use 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (Antacid preparations, are licensed for, OTC use) -> OTC use (3459ms) What are antacids? Several drugs 0.555555555555 What are antacids? -> $x: ($x, do, antacid) -> (Several drugs, do a much better job than, antacids) -> Several drugs (3451ms) What are antacids? relaxation 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (a natural antacid and magnesium, is essential for, relaxation) -> relaxation (3459ms) What are antacids? overall health 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (antacid pills, cannot be good for, overall health) -> overall health (3459ms) What are antacids? more than 3 weeks 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (antacids, are needed for, more than 3 weeks) -> more than 3 weeks (3451ms) What are antacids? the temporary relief 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (Antacids, are useful for, the temporary relief) -> the temporary relief (3414ms) What are antacids? children 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> ('s Pepto Antacid, is for, children) -> children (3207ms) What are antacids? a higher 0.555555555555 What are antacids? -> $x: ($x, do, antacid) -> (a higher, does of, antacids) -> a higher (3414ms) What are antacids? heartburn 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (Antacids, are used primarily for, heartburn) -> heartburn (3459ms) What are antacids? minor episodes 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (antacids, are effective for, minor episodes) -> minor episodes (3451ms) What are antacids? inflammation 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (Antacids, can be used for, inflammation) -> inflammation (3308ms) What are antacids? mild conditions 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (Antacids, are available for treating, mild conditions) -> mild conditions (3468ms) What are antacids? healthy people 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (Antacid, is a suitable treatment for, healthy people) -> healthy people (3308ms) What are antacids? years 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (Antacid tablets and liquids, have been around for, years) -> years (3459ms) What are antacids? consumers 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (generic brand antacids, are better for, consumers) -> consumers (3308ms) What are antacids? a period 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (Antacid medications, are required for, a period) -> a period (3308ms) What are antacids? dietary iron absorption 0.555555555555 What are antacids? -> $x: ($x, do, antacid) -> (dietary iron absorption, does the regular use of, antacids) -> dietary iron absorption (3459ms) What are antacids? immediate relief 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (Liquid antacids, are helpful for, immediate relief) -> immediate relief (3459ms) What are antacids? Oklahoma Health Science Center 0.555555555555 What are antacids? -> $x: ($x, do, antacid) -> (Oklahoma Health Science Center, do, antacids) -> Oklahoma Health Science Center (3459ms) What are antacids? digestive problems 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (D. a and c Antacids, often are taken for, digestive problems) -> digestive problems (3451ms) What are antacids? Bananas 0.555555555555 What are antacids? -> $x: ($x, produce, antacid) -> (Bananas, produces, high natural antacids) -> Bananas (3468ms) What are antacids? occasional relief 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (Antacids, should be used only for, occasional relief) -> occasional relief (3459ms) What are antacids? quick symptom relief 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (Antacids, are intended for, quick symptom relief) -> quick symptom relief (3451ms) What are antacids? treatment 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (Many antacids, are widely used for, treatment) -> treatment (3459ms) What are antacids? temporary relief 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (antacids, have long been the choices for, temporary relief) -> temporary relief (3414ms) What are antacids? 25-30 % 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (Antacids, is effective for, 25-30 %) -> 25-30 % (3467ms) What are antacids? several reasons 0.555555555555 What are antacids? -> $x: (antacid, be for, $x) -> (your antacid, is important for, several reasons) -> several reasons (3414ms) What are antacids? the ?safe-zone? 0.44444444444500003 What are antacids? -> $x: ($x, create, antacid) -> (the ?safe-zone?, creates a dependence on, the antacid) -> the ?safe-zone? (3468ms) What are antacids? research 0.44444444444500003 What are antacids? -> $x: ($x, found, antacid) -> (research, has found, antacids) -> research (3475ms) What are antacids? the patient 0.44444444444500003 What are antacids? -> $x: ($x, found, antacid) -> (the patient, finds relief after taking, antacids) -> the patient (3468ms) What are antacids? Generic for Doryx 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (Generic for Doryx, can interact with, antacids) -> Generic for Doryx (3513ms) What are antacids? hip new joints 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (hip new joints, now are into, antacids) -> hip new joints (3520ms) What are antacids? painful heartburn 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (painful heartburn, can be relieved with, antacid medications) -> painful heartburn (3483ms) What are antacids? patients 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (patients, can take, antacids) -> patients (3536ms) What are antacids? Maalox Advanced Maximum Strength 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (Maalox Advanced Maximum Strength, are, antacids) -> Maalox Advanced Maximum Strength (3550ms) What are antacids? SIBO 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (SIBO, is, antacids) -> SIBO (3531ms) What are antacids? gastric acid jumps 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (gastric acid jumps, can be relieved with, antacids) -> gastric acid jumps (3525ms) What are antacids? The baking soda 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (The baking soda, can be, an excellent antacid) -> The baking soda (3506ms) What are antacids? aluminium-containing medicines 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (aluminium-containing medicines, are, antacids) -> aluminium-containing medicines (3531ms) What are antacids? heartburn or acid reflux 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (heartburn or acid reflux, is, antacids) -> heartburn or acid reflux (3531ms) What are antacids? stress 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (stress, can be effectively treated with, antacids) -> stress (3541ms) What are antacids? The heartburn 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (The heartburn, can be relieved promptly by, antacids) -> The heartburn (3483ms) What are antacids? Baking soda 0.444444444444 What are antacids? -> $x: ($x, be to, antacid) -> (Baking soda, is known to be, a natural antacid) -> Baking soda (3545ms) What are antacids? The saliva flow 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (The saliva flow, can lead to, an antacid effect) -> The saliva flow (3550ms) What are antacids? Meadowsweet 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (Meadowsweet, can replace over, the counter antacids) -> Meadowsweet (3545ms) What are antacids? Magnesium Hydroxide 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (Magnesium Hydroxide, are used as, antacids) -> Magnesium Hydroxide (3483ms) What are antacids? burn 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (burn, can be treated by, antacids) -> burn (3525ms) What are antacids? a chemical 0.444444444444 What are antacids? -> $x: ($x, be to, antacid) -> (a chemical, is often added to, antacids) -> a chemical (3491ms) What are antacids? amprenavir 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (amprenavir, is coadministered with, antacids) -> amprenavir (3525ms) What are antacids? Dad 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (Dad, was popping, antacids) -> Dad (3550ms) What are antacids? the Obama 2012 reelection campaign 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (the Obama 2012 reelection campaign, be stocking up on, antacids) -> the Obama 2012 reelection campaign (3490ms) What are antacids? A foam barrier 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (A foam barrier, also can be used with, the antacid) -> A foam barrier (3545ms) What are antacids? SPRYCEL plasma concentrations 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (SPRYCEL plasma concentrations, should be avoided, Antacids) -> SPRYCEL plasma concentrations (3520ms) What are antacids? the occasional patient 0.444444444444 What are antacids? -> $x: ($x, be to, antacid) -> (the occasional patient, is allergic to, antacid components) -> the occasional patient (3513ms) What are antacids? The consistency 0.444444444444 What are antacids? -> $x: ($x, be to, antacid) -> (The consistency, is similar to, Tums antacid tablets) -> The consistency (3491ms) What are antacids? ulcer patients 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (ulcer patients, are prescribed, antacids) -> ulcer patients (3525ms) What are antacids? Acid reflux 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (Acid reflux, is often treated with, antacid) -> Acid reflux (3498ms) What are antacids? American families 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (American families, are popping, antacids) -> American families (3513ms) What are antacids? Ulcers Pepcid and Zantac 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (Ulcers Pepcid and Zantac, are commonly used, antacids) -> Ulcers Pepcid and Zantac (3531ms) What are antacids? ketoconazole 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (ketoconazole, is taken with, antacids) -> ketoconazole (3530ms) What are antacids? Cola drinks 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (Cola drinks, can interact adversely with, antacids) -> Cola drinks (3541ms) What are antacids? the quickest relievers 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (the quickest relievers, are usually, antacids) -> the quickest relievers (3491ms) What are antacids? treating gastritis 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (treating gastritis, are, antacids) -> treating gastritis (3525ms) What are antacids? effective 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (effective, are, antacids) -> effective (3513ms) What are antacids? Doctors 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (Doctors, are prescribing, antacids) -> Doctors (3530ms) What are antacids? PRILOSEC 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (PRILOSEC, can take, antacids) -> PRILOSEC (3491ms) What are antacids? meals 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (meals, can be, a helpful antacid) -> meals (3491ms) What are antacids? the most common OTC drugs 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (the most common OTC drugs, are, antacids) -> the most common OTC drugs (3541ms) What are antacids? ultimate absorption 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (ultimate absorption, can be neutralized by, the antacids) -> ultimate absorption (3483ms) What are antacids? Occasional mild cases 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (Occasional mild cases, can usually be settled with, an antacid) -> Occasional mild cases (3525ms) What are antacids? Nexium 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (Nexium, may be taken with, antacids) -> Nexium (3550ms) What are antacids? the symptoms 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (the symptoms, have been treated with, antacids) -> the symptoms (3475ms) What are antacids? the health sodium bicarbonate 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (the health sodium bicarbonate, can be used as, an antacid) -> the health sodium bicarbonate (3545ms) What are antacids? Medical supplies 0.444444444444 What are antacids? -> $x: ($x, be to, antacid) -> (Medical supplies, were limited to, eye drops and antacids) -> Medical supplies (3520ms) What are antacids? The next cheapest and safest GERD therapy 0.444444444444 What are antacids? -> $x: ($x, be to, antacid) -> (The next cheapest and safest GERD therapy, is to take, antacids) -> The next cheapest and safest GERD therapy (3545ms) What are antacids? dismissible and 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (dismissible and, can easily be remedied by, antacids) -> dismissible and (3520ms) What are antacids? symptoms 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (symptoms, have been using, antacids) -> symptoms (3525ms) What are antacids? combat 0.444444444444 What are antacids? -> $x: ($x, be to, antacid) -> (combat, is to use to, antacids) -> combat (3550ms) What are antacids? Calcium carbonate or calcium citrate 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (Calcium carbonate or calcium citrate, can be used as, antacids) -> Calcium carbonate or calcium citrate (3483ms) What are antacids? drinking water 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (drinking water, can turn into, an antacid) -> drinking water (3513ms) What are antacids? just one sore 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (just one sore, can put, an antacid tablet) -> just one sore (3550ms) What are antacids? one hour 0.444444444444 What are antacids? -> $x: (antacid, be about, $x) -> (antacids, is about, one hour) -> one hour (3506ms) What are antacids? a regular basis 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (a regular basis, are taking, antacids) -> a regular basis (3531ms) What are antacids? The medical ?acid cure reflux ? 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (The medical ?acid cure reflux ?, is usually, antacids) -> The medical ?acid cure reflux ? (3513ms) What are antacids? Acid suppression 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (Acid suppression, can be achieved by taking, antacids) -> Acid suppression (3541ms) What are antacids? Immediate pain 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (Immediate pain, can be relieved with, antacids) -> Immediate pain (3541ms) What are antacids? the other side 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (the other side, can be used for, antacids) -> the other side (3531ms) What are antacids? heartburn acid reflux 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (heartburn acid reflux, will be, antacids) -> heartburn acid reflux (3531ms) What are antacids? the foods 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (the foods, are taking, antacids) -> the foods (3498ms) What are antacids? upset stomachs 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (upset stomachs, can be treated with, an antacid) -> upset stomachs (3506ms) What are antacids? gastric reflux 0.444444444444 What are antacids? -> $x: ($x, be to, antacid) -> (gastric reflux, would be to take, antacids) -> gastric reflux (3545ms) What are antacids? Fluoroquinolone absorption 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (Fluoroquinolone absorption, is decreased by, antacids) -> Fluoroquinolone absorption (3475ms) What are antacids? the advertising industry 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (the advertising industry, is forcing, antacids) -> the advertising industry (3520ms) What are antacids? The virtually general management 0.444444444444 What are antacids? -> $x: ($x, be to, antacid) -> (The virtually general management, is to involve, antacids) -> The virtually general management (3520ms) What are antacids? the natural reaction 0.444444444444 What are antacids? -> $x: ($x, be to, antacid) -> (the natural reaction, is to take, an antacid) -> the natural reaction (3483ms) What are antacids? Medications 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (Medications, can be through, over-the-counter antacids) -> Medications (3535ms) What are antacids? prognosis 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (prognosis, will be, antacids) -> prognosis (3506ms) What are antacids? frequent indigestion 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (frequent indigestion, are taking, antacids) -> frequent indigestion (3525ms) What are antacids? acid reflux disorder disorder 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (acid reflux disorder disorder, is undoubtedly, antacids) -> acid reflux disorder disorder (3520ms) What are antacids? DLPA 0.444444444444 What are antacids? -> $x: ($x, be to, antacid) -> (DLPA, is the precursor to, tyrosine Antacids) -> DLPA (3541ms) What are antacids? Second 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (Second, is the use of, antacids) -> Second (3476ms) What are antacids? The pain 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (The pain, may be relieved by, antacids) -> The pain (3545ms) What are antacids? Common indigestion 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (Common indigestion, is repeatedly treated with, antacids) -> Common indigestion (3483ms) What are antacids? the Pharmacist :Antacids 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (the Pharmacist :Antacids, are, antacids) -> the Pharmacist :Antacids (3498ms) What are antacids? Sufferers 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (Sufferers, used to be on, antacids) -> Sufferers (3531ms) What are antacids? Diets 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (Diets, Are Like, Antacids) -> Diets (3541ms) What are antacids? hyperacidity 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (hyperacidity, can continue to take, antacids) -> hyperacidity (3483ms) What are antacids? Runners 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (Runners, can benefit from taking, antacids) -> Runners (3540ms) What are antacids? acidity 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (acidity, can be completely cured even, homoeopathic antacids) -> acidity (3536ms) What are antacids? the causes 0.444444444444 What are antacids? -> $x: ($x, be to, antacid) -> (the causes, are there safe alternatives to, antacids) -> the causes (3545ms) What are antacids? conventional medicine 0.444444444444 What are antacids? -> $x: ($x, be to, antacid) -> (conventional medicine, has been to prescribe, an antacid) -> conventional medicine (3541ms) What are antacids? minerals 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (minerals, are used as, antacids) -> minerals (3498ms) What are antacids? An example 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (An example, is, antacids) -> An example (3520ms) What are antacids? diarrhea 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (diarrhea, are, antacids) -> diarrhea (3536ms) What are antacids? heartburn or acid indigestion medicines 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (heartburn or acid indigestion medicines, can dealt, antacids) -> heartburn or acid indigestion medicines (3491ms) What are antacids? the problem 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (the problem, can virtually always be corrected without, antacids) -> the problem (3545ms) What are antacids? endoscopy.Treatment 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (endoscopy.Treatment, is, antacids) -> endoscopy.Treatment (3491ms) What are antacids? aluminum ingestion 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (aluminum ingestion, is, antacids) -> aluminum ingestion (3483ms) What are antacids? The next cheapest and safest GERD FOSAMAX 0.444444444444 What are antacids? -> $x: ($x, be to, antacid) -> (The next cheapest and safest GERD FOSAMAX, is to take, antacids) -> The next cheapest and safest GERD FOSAMAX (3531ms) What are antacids? ulcers 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (ulcers, is, antacids) -> ulcers (3498ms) What are antacids? Prilosec 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (Prilosec, can also be used along with, antacids) -> Prilosec (3506ms) What are antacids? acid reflux disease 0.444444444444 What are antacids? -> $x: ($x, be to, antacid) -> (acid reflux disease, is to reach for, an antacid) -> acid reflux disease (3536ms) What are antacids? The cure for acid reflux 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (The cure for acid reflux, is, antacids) -> The cure for acid reflux (3550ms) What are antacids? week 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (week, take is, antacids) -> week (3550ms) What are antacids? The medication effect 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (The medication effect, can be altered by, milk or antacids) -> The medication effect (3506ms) What are antacids? the jaundice 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (the jaundice, were, antacids) -> the jaundice (3490ms) What are antacids? acid problems 0.444444444444 What are antacids? -> $x: ($x, be to, antacid) -> (acid problems, are generally superior to, antacids) -> acid problems (3550ms) What are antacids? The correct answer 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (The correct answer, is, Antacids) -> The correct answer (3506ms) What are antacids? medicine 0.444444444444 What are antacids? -> $x: ($x, be to, antacid) -> (medicine, may be the addition to, antacids and laxatives) -> medicine (3550ms) What are antacids? Baking Soda 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (Baking Soda, can be termed, a natural antacid) -> Baking Soda (3536ms) What are antacids? the counter medications 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (the counter medications, are, antacids) -> the counter medications (3536ms) What are antacids? Lemon 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (Lemon, can work as, a natural antacid) -> Lemon (3499ms) What are antacids? Blockers 0.444444444444 What are antacids? -> $x: ($x, be to, antacid) -> (Blockers, are superior to, antacids) -> Blockers (3483ms) What are antacids? high-fat snacks 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (high-fat snacks, can reduce your need for, antacid medication) -> high-fat snacks (3545ms) What are antacids? Bet CVS 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (Bet CVS, was plumb out of, antacids) -> Bet CVS (3491ms) What are antacids? 3-6 hours 0.444444444444 What are antacids? -> $x: (antacid, be about, $x) -> (the antacid, be most effective after about, 3-6 hours) -> 3-6 hours (3550ms) What are antacids? PREVACID 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (PREVACID, was taking, antacids) -> PREVACID (3525ms) What are antacids? agents 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (agents, must be admixed with, antacids) -> agents (3520ms) What are antacids? Saliva 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (Saliva, can act as, a natural antacid) -> Saliva (3550ms) What are antacids? absorption 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (absorption, is affected by, antacids) -> absorption (3536ms) What are antacids? bacteria 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (bacteria, can survive longer with, the antacids) -> bacteria (3506ms) What are antacids? the biggest villains 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (the biggest villains, is, antacids) -> the biggest villains (3541ms) What are antacids? the other hand 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (the other hand, can be cured by, simple antacids) -> the other hand (3525ms) What are antacids? high purity magnesium carbonate 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (high purity magnesium carbonate, is used as, antacid) -> high purity magnesium carbonate (3506ms) What are antacids? a week take 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (a week take, is, antacids) -> a week take (3506ms) What are antacids? a previously tested therapy 0.444444444444 What are antacids? -> $x: ($x, consist of, antacid) -> (a previously tested therapy, consisted of, one antacid) -> a previously tested therapy (3483ms) What are antacids? the pain 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (the pain, can be relieved by, antacids) -> the pain (3541ms) What are antacids? Chronic heartburn 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (Chronic heartburn, can be treated with, antacids) -> Chronic heartburn (3476ms) What are antacids? Banana 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (Banana, can be, a organic antacid) -> Banana (3483ms) What are antacids? soda 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (soda, can be used as, Antacid) -> soda (3545ms) What are antacids? the user 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (the user, is also taking, antacid) -> the user (3541ms) What are antacids? Older child 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (Older child, can use, 1 teaspoon 5 ml of a liquid antacid) -> Older child (3536ms) What are antacids? regular baking soda 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (regular baking soda, can act as, a wonderful antacid) -> regular baking soda (3475ms) What are antacids? Thanksgiving dinner Dad 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (Thanksgiving dinner Dad, was popping, antacids) -> Thanksgiving dinner Dad (3498ms) What are antacids? remedy 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (remedy, can include over, the counter antacids) -> remedy (3506ms) What are antacids? Conventional treatment 0.444444444444 What are antacids? -> $x: ($x, consist of, antacid) -> (Conventional treatment, consists of, antacids) -> Conventional treatment (3541ms) What are antacids? sure the region?s tourism authorities 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (sure the region?s tourism authorities, are chewing, antacids) -> sure the region?s tourism authorities (3513ms) What are antacids? heartburn symptoms treatments 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (heartburn symptoms treatments, would be, antacids) -> heartburn symptoms treatments (3531ms) What are antacids? indigestion 0.444444444444 What are antacids? -> $x: ($x, be to, antacid) -> (indigestion, is to use, a antacid) -> indigestion (3498ms) What are antacids? radiotelemetry 0.444444444444 What are antacids? -> $x: ($x, be to, antacid) -> (radiotelemetry, was used to study, the antacid properties) -> radiotelemetry (3536ms) What are antacids? The remedy for 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (The remedy for, to be, antacids) -> The remedy for (3550ms) What are antacids? magnesium hydroxide 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (magnesium hydroxide, are also, antacids) -> magnesium hydroxide (3513ms) What are antacids? Acceptable alternatives 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (Acceptable alternatives, are, antacids) -> Acceptable alternatives (3475ms) What are antacids? Common examples 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (Common examples, are, antacids) -> Common examples (3498ms) What are antacids? calcium use or retention 0.444444444444 What are antacids? -> $x: ($x, be be, antacid) -> (calcium use or retention, are, antacids) -> calcium use or retention (3545ms) What are antacids? Mineral imbalances 0.444444444444 What are antacids? -> $x: ($x, can, antacid) -> (Mineral imbalances, can occur from, over-the-counter antacids) -> Mineral imbalances (3483ms) What are antacids? The most common methods 0.333333333334 What are antacids? -> $x: ($x, be use of, antacid) -> (The most common methods, are use of, antacids) -> The most common methods (3554ms) What are antacids? a core 0.333333333334 What are antacids? -> $x: ($x, comprise, antacid) -> (a core, comprises, an antacid) -> a core (3554ms) What are antacids? home remedies 0.333333333333 What are antacids? -> $x: ($x, could be, antacid) -> (home remedies, could be better than, antacids) -> home remedies (3554ms) What are antacids? place 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (antacids, should be considered in, place) -> place (3567ms) What are antacids? Authorities Concept Scheme 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (Antacids, In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (3576ms) What are antacids? assorted fruit flavors 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (antacid tablets, come in, assorted fruit flavors) -> assorted fruit flavors (3581ms) What are antacids? liquid formulations 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (These antacids, are more effective in, liquid formulations) -> liquid formulations (3578ms) What are antacids? great relief 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (antacids, usually results in, great relief) -> great relief (3581ms) What are antacids? either liquid or tablet form 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (Medicines Antacids, are taken in, either liquid or tablet form) -> either liquid or tablet form (3574ms) What are antacids? the amounts 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (Antacids, differ in, the amounts) -> the amounts (3567ms) What are antacids? relieving symptoms 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (antacids, are effective in, relieving symptoms) -> relieving symptoms (3567ms) What are antacids? the alkalinity 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (Antacids, may cause an increase in, the alkalinity) -> the alkalinity (3581ms) What are antacids? stomach acid reflux 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (Antacids, can help in reducing, stomach acid reflux) -> stomach acid reflux (3581ms) What are antacids? the stomach cavity 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (Non-absorbable antacids, act in, the stomach cavity) -> the stomach cavity (3578ms) What are antacids? 4 rolls 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (Rolaids Original Antacid Tablets, comes in, 4 rolls) -> 4 rolls (3567ms) What are antacids? the interim period 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (an antacid, may used in, the interim period) -> the interim period (3583ms) What are antacids? buffered aspirin 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (an antacid, can be used in, buffered aspirin) -> buffered aspirin (3584ms) What are antacids? the stomach and antacid products 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (Antacids, reduce acid in, the stomach and antacid products) -> the stomach and antacid products (3570ms) What are antacids? the past 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (Antacids, were a daily thing in, the past) -> the past (3574ms) What are antacids? 1954 valacyclovir dosing 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (antacids, can be used in, 1954 valacyclovir dosing) -> 1954 valacyclovir dosing (3567ms) What are antacids? the stomach and esophagus 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (The antacids, neutralize acid in, the stomach and esophagus) -> the stomach and esophagus (3563ms) What are antacids? the United States 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (Rolaids antacid, were recalled in, the United States) -> the United States (3574ms) What are antacids? Let?s 0.22222222222300003 What are antacids? -> $x: ($x, get, antacid) -> (Let?s, get kids hooked on, antacids) -> Let?s (3570ms) What are antacids? conjunction 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (antacids, can usually be taken safely in, conjunction) -> conjunction (3567ms) What are antacids? the sole agent 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (antacids, may result in, the sole agent) -> the sole agent (3583ms) What are antacids? the healing 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (an antacid, assist in, the healing) -> the healing (3570ms) What are antacids? the small intestine 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (Antacids, neutralize the acid in, the small intestine) -> the small intestine (3581ms) What are antacids? addition 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (An antacid, may be taken in, addition) -> addition (3567ms) What are antacids? tablet form 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (Antacids, mostly comes in, tablet form) -> tablet form (3570ms) What are antacids? RiteTrac 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (The antacids, contained in, RiteTrac) -> RiteTrac (3567ms) What are antacids? an 18 % decrease 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (antacids, resulted in, an 18 % decrease) -> an 18 % decrease (3570ms) What are antacids? a reduction 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (magnesium-containing antacid, resulted in, a reduction) -> a reduction (3567ms) What are antacids? neutralizing stomach acid 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (Antacids, can help in, neutralizing stomach acid) -> neutralizing stomach acid (3584ms) What are antacids? the West 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (The antacid drug ranitinide, can be found in, the West) -> the West (3567ms) What are antacids? acid rebound 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (antacids, may result in, acid rebound) -> acid rebound (3581ms) What are antacids? United States of America 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (Antacid 750 tablet, Available in, United States of America) -> United States of America (3583ms) What are antacids? the stomach 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (Antacids, neutralize the acid in, the stomach) -> the stomach (3578ms) What are antacids? the body 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (Antacids, work by neutralizing the stomach acid in, the body) -> the body (3570ms) What are antacids? the coating 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (the antacid, is contained in, the coating) -> the coating (3578ms) What are antacids? short-term cases 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (Antacids, are usually helpful in, short-term cases) -> short-term cases (3563ms) What are antacids? coating 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (Antacids ?, are also helpful in, coating) -> coating (3581ms) What are antacids? unpleasant side effects 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (antacids, can result in, unpleasant side effects) -> unpleasant side effects (3574ms) What are antacids? America 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (Antacids, are the most used drugs in, America) -> America (3578ms) What are antacids? the prescribed dose 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (# Antacids, should be taken in, the prescribed dose) -> the prescribed dose (3583ms) What are antacids? I?ve 0.22222222222300003 What are antacids? -> $x: ($x, get, antacid) -> (I?ve, also got, a stronger antacid) -> I?ve (3578ms) What are antacids? pill 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (Antacids, come in, pill) -> pill (3581ms) What are antacids? the treatment plan 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (an antacid, could be added in to, the treatment plan) -> the treatment plan (3574ms) What are antacids? Topical Terms Concept Scheme 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (Antacids, In Scheme, Topical Terms Concept Scheme) -> Topical Terms Concept Scheme (3578ms) What are antacids? the middle 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (An antacid, can also be a lifesaver in, the middle) -> the middle (3570ms) What are antacids? water 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (an antacid tablet, plopped in, water) -> water (3574ms) What are antacids? sodium 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (Antacids, can be high in, sodium) -> sodium (3567ms) What are antacids? the market 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (Antacids, are available in, the market) -> the market (3563ms) What are antacids? We?ve 0.22222222222300003 What are antacids? -> $x: ($x, get, antacid) -> (We?ve, got a supply of, antacids) -> We?ve (3583ms) What are antacids? an acid rebound effect 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (All antacids, can result in, an acid rebound effect) -> an acid rebound effect (3576ms) What are antacids? chewable tablets 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (Some antacids, are sold in, chewable tablets) -> chewable tablets (3570ms) What are antacids? Connecticut 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (Antacids, are exempt in, Connecticut) -> Connecticut (3581ms) What are antacids? Tums 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (Another common antacid ingredient, found in, Tums) -> Tums (3578ms) What are antacids? liquid form and coat 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (Many antacids, come in, liquid form and coat) -> liquid form and coat (3583ms) What are antacids? dose 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (antacids, can be prescribed in, dose) -> dose (3578ms) What are antacids? he?s 0.22222222222300003 What are antacids? -> $x: ($x, get, antacid) -> (he?s, got, antacids) -> he?s (3578ms) What are antacids? tablet 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (Antacids, are available in, tablet) -> tablet (3574ms) What are antacids? instances 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (Antacids, must only be utilized in, instances) -> instances (3581ms) What are antacids? liquid form 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (Antacids, also come in, liquid form) -> liquid form (3578ms) What are antacids? the acid 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (Antacids, help in neutralizing, the acid) -> the acid (3570ms) What are antacids? the treatment 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (Antacids, are useful in, the treatment) -> the treatment (3567ms) What are antacids? handy 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (antacid medicines, could come in, handy) -> handy (3581ms) What are antacids? pregnancy 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (Antacids, are safe in, pregnancy) -> pregnancy (3581ms) What are antacids? lemon and orange flavors 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (other antacids, get made in, lemon and orange flavors) -> lemon and orange flavors (3570ms) What are antacids? India 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (a popular antacid, made in, India) -> India (3581ms) What are antacids? liquids 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (well different antacids, work in, liquids) -> liquids (3574ms) What are antacids? unwanted effects 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (antacid components, result in, unwanted effects) -> unwanted effects (3570ms) What are antacids? the short term 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (antacids, can be helpful in, the short term) -> the short term (3574ms) What are antacids? two ways 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (Antacids, can work in, two ways) -> two ways (3581ms) What are antacids? the absorption 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (antacids, may affect the product in, the absorption) -> the absorption (3574ms) What are antacids? touch 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (antacids, should get in, touch) -> touch (3563ms) What are antacids? side effects 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (antacids, can outcome in, side effects) -> side effects (3581ms) What are antacids? emergencies 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (mind antacids, should only be used in, emergencies) -> emergencies (3563ms) What are antacids? blood 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (an antacid and buffer, found in, blood) -> blood (3563ms) What are antacids? any drugstore 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (Antacids, can be found in, any drugstore) -> any drugstore (3574ms) What are antacids? DGL 0.22222222222300003 What are antacids? -> $x: ($x, compare to, antacid) -> (DGL, compare to, antacids) -> DGL (3581ms) What are antacids? the gastrointestinal system 0.22222222222300003 What are antacids? -> $x: (antacid, in in, $x) -> (Antacids, neutralize acids in, the gastrointestinal system) -> the gastrointestinal system (3567ms) What are antacids? interactions 0.22222222222200005 What are antacids? -> $x: ($x, involve, antacid) -> (interactions, involving, a specific Antacid/Acid Blocker) -> interactions (3583ms) What are antacids? Oesophagitis 0.22222222222200005 What are antacids? -> $x: ($x, involve, antacid) -> (Oesophagitis, involves the use of, antacids) -> Oesophagitis (3586ms) What are antacids? gastritis 0.22222222222200005 What are antacids? -> $x: ($x, involve, antacid) -> (gastritis, involves, antacids) -> gastritis (3586ms) What are antacids? Treatment 0.22222222222200005 What are antacids? -> $x: ($x, involve, antacid) -> (Treatment, usually involves taking, antacids) -> Treatment (3583ms) What are antacids? the Chitosan based products 0.22222222222200005 What are antacids? -> $x: ($x, involve, antacid) -> (the Chitosan based products, may involve, its antacid properties) -> the Chitosan based products (3583ms) What are antacids? sodium bicarbonate 0.11111111111100003 What are antacids? -> $x: ($x, be use as, antacid) -> (sodium bicarbonate, is used as, an antacid) -> sodium bicarbonate (3588ms) What are antacids? milk 0.11111111111100003 What are antacids? -> $x: ($x, be use as, antacid) -> (milk, is commonly used as, an antacid) -> milk (3588ms) What are antacids? The root 0.11111111111100003 What are antacids? -> $x: ($x, be use as, antacid) -> (The root, is used as, an antacid) -> The root (3586ms) What are antacids? licorice root 0.11111111111100003 What are antacids? -> $x: ($x, be use as, antacid) -> (licorice root, is used as, an antacid) -> licorice root (3586ms) What are antacids? Milk of Magnesia 0.11111111111100003 What are antacids? -> $x: ($x, be use as, antacid) -> (Milk of Magnesia, is commonly used as, an antacid) -> Milk of Magnesia (3586ms) What are antacids? magnesia 0.11111111111100003 What are antacids? -> $x: ($x, be use as, antacid) -> (magnesia, is a commonly used as, an antacid) -> magnesia (3586ms) What are antacids? Sodium Bicarbonate 0.11111111111100003 What are antacids? -> $x: ($x, be use as, antacid) -> (Sodium Bicarbonate, is used as, an antacid) -> Sodium Bicarbonate (3588ms) What are antacids? Hydrated magnesium oxide 0.11111111111100003 What are antacids? -> $x: ($x, be use as, antacid) -> (Hydrated magnesium oxide, is often used as, an antacid) -> Hydrated magnesium oxide (3588ms) What are antacids? glycine 0.11111111111100003 What are antacids? -> $x: ($x, be use as, antacid) -> (glycine, is used as, a gastric antacid) -> glycine (3588ms) What are antacids? Magnesium Oxide 0.11111111111100003 What are antacids? -> $x: ($x, be use as, antacid) -> (Magnesium Oxide, is sometimes used as, an antacid) -> Magnesium Oxide (3586ms) What are antacids? magnesium hydroxide crystals 0.11111111111100003 What are antacids? -> $x: ($x, be use as, antacid) -> (magnesium hydroxide crystals, are widely used as, an antacid) -> magnesium hydroxide crystals (3588ms) What are antacids? calcium lactate 0.11111111111100003 What are antacids? -> $x: ($x, be use as, antacid) -> (calcium lactate, is most commonly used as, an antacid) -> calcium lactate (3586ms) What are antacids? hydroxide 0.11111111111100003 What are antacids? -> $x: ($x, be use as, antacid) -> (hydroxide, is used as, a digestive antacid) -> hydroxide (3586ms) What are antacids? a synthesized salt of glycine 0.11111111111100003 What are antacids? -> $x: ($x, be use as, antacid) -> (a synthesized salt of glycine, is used as, a gastric antacid) -> a synthesized salt of glycine (3590ms) What are antacids? a vitamin supplement 0.11111111111100003 What are antacids? -> $x: ($x, be use as, antacid) -> (a vitamin supplement, is used as, an antacid) -> a vitamin supplement (3586ms) What are antacids? calcium -0.0 What are antacids? -> $x: ($x, contain, antacid) -> (calcium, containing, antacids) -> calcium (3590ms) What are antacids? Aluminium -0.0 What are antacids? -> $x: ($x, contain, antacid) -> (Aluminium, containing, antacids) -> Aluminium (3590ms) What are antacids? an aluminum or magnesium -0.0 What are antacids? -> $x: ($x, contain, antacid) -> (an aluminum or magnesium, containing, antacid) -> an aluminum or magnesium (3590ms) What are antacids? Light weight -0.0 What are antacids? -> $x: ($x, contain, antacid) -> (Light weight, contains, antacids) -> Light weight (3592ms) What are antacids? the drug -0.0 What are antacids? -> $x: ($x, contain, antacid) -> (the drug, further contains, an antacid) -> the drug (3590ms) What are antacids? magnesium -0.0 What are antacids? -> $x: ($x, contain, antacid) -> (magnesium, trisilicate-containing, antacids) -> magnesium (3592ms) What are antacids? ddI -0.0 What are antacids? -> $x: ($x, contain, antacid) -> (ddI, contained, an antacid buffering agent) -> ddI (3590ms) What are antacids? Combination products -0.0 What are antacids? -> $x: ($x, contain, antacid) -> (Combination products, containing, antacids) -> Combination products (3590ms) What are antacids? relief -0.33333333333299997 What are antacids? -> $x: (antacid, be have, $x) -> (antacids, has been developed specifically to help, relief) -> relief (3597ms) What are antacids? cases -0.33333333333299997 What are antacids? -> $x: (antacid, be in, $x) -> (the great antacid, is useful in, cases) -> cases (3594ms) What are antacids? development -0.33333333333299997 What are antacids? -> $x: (antacid, be in, $x) -> (the antacids aluminium and magnesium, are in, development) -> development (3592ms) What are antacids? the form -0.33333333333299997 What are antacids? -> $x: (antacid, be in, $x) -> (Names Antacid medicines, are available in, the form) -> the form (3592ms) What are antacids? antacid properties -0.33333333333299997 What are antacids? -> $x: (antacid, be in, $x) -> (The antacid composition, is improved in, antacid properties) -> antacid properties (3594ms) What are antacids? the moment -0.33333333333299997 What are antacids? -> $x: (antacid, be have, $x) -> (an antacid, would have been heavenly at, the moment) -> the moment (3595ms) What are antacids? the non prescription drugs -0.33333333333299997 What are antacids? -> $x: (antacid, be have, $x) -> (Antacids, have long been, the non prescription drugs) -> the non prescription drugs (3597ms) What are antacids? a batch -0.33333333333299997 What are antacids? -> $x: (antacid, be in, $x) -> (a common antacid tablet, would be present in, a batch) -> a batch (3596ms) What are antacids? higher risk -0.33333333333299997 What are antacids? -> $x: (antacid, be have, $x) -> (regular antacid takers, have been shown to be at, higher risk) -> higher risk (3595ms) What are antacids? a potential increase -0.33333333333299997 What are antacids? -> $x: (antacid, be have, $x) -> (antacids, has been associated with, a potential increase) -> a potential increase (3596ms) What are antacids? the 1850s -0.33333333333299997 What are antacids? -> $x: (antacid, be in, $x) -> (an antacid and reliever, was invented in, the 1850s) -> the 1850s (3595ms) What are antacids? excess -0.33333333333299997 What are antacids? -> $x: (antacid, be in, $x) -> (Aluminum containing antacids, should be avoided in, excess) -> excess (3596ms) In what state is Dulles located? Herndon 0.888888888888 In what state is Dulles located? -> $x: (dulles, be located in, $x) -> (The Crowne Plaza Hotel Dulles Airport, is located in, Herndon) -> Herndon (757ms) In what state is Dulles located? the heart 0.888888888888 In what state is Dulles located? -> $x: (dulles, be located in, $x) -> (The Holiday Inn Dulles Airport, is located in, the heart) -> the heart (771ms) In what state is Dulles located? Fairfax 0.888888888888 In what state is Dulles located? -> $x: (dulles, be located in, $x) -> (Dulles, is located in, Fairfax) -> Fairfax (771ms) In what state is Dulles located? the nation 0.888888888888 In what state is Dulles located? -> $x: (dulles, be located in, $x) -> (the Dulles International Airport, is located in, the nation) -> the nation (757ms) In what state is Dulles located? Loudoun County 0.888888888888 In what state is Dulles located? -> $x: (dulles, be located in, $x) -> (Aloft Dulles Airport North, is located in, Loudoun County) -> Loudoun County (757ms) In what state is Dulles located? the new urban face 0.888888888888 In what state is Dulles located? -> $x: (dulles, be located in, $x) -> (Dulles, is located in, the new urban face) -> the new urban face (757ms) In what state is Dulles located? Dulles 0.888888888888 In what state is Dulles located? -> $x: (dulles, be located in, $x) -> (The Homewood Suites Dulles North/Loudoun, is located in, Dulles) -> Dulles (771ms) In what state is Dulles located? dc 0.888888888888 In what state is Dulles located? -> $x: (dulles, be located in, $x) -> (Washington-Dulles, is a building located in the city, dc) -> dc (771ms) In what state is Dulles located? the Dulles Corner Office Park 0.888888888888 In what state is Dulles located? -> $x: (dulles, be located in, $x) -> (The Hyatt Dulles, is located in, the Dulles Corner Office Park) -> the Dulles Corner Office Park (771ms) In what state is Dulles located? Chantilly 0.888888888888 In what state is Dulles located? -> $x: (dulles, be located in, $x) -> (Dulles International Airport, is located in, Chantilly) -> Chantilly (771ms) In what state is Dulles located? Sterling 0.888888888888 In what state is Dulles located? -> $x: (dulles, be located in, $x) -> (The SpringHill Suites Dulles Airport, is located in, Sterling) -> Sterling (757ms) In what state is Dulles located? Washington 0.888888888888 In what state is Dulles located? -> $x: (dulles, be located in, $x) -> (Dulles International Airport, is located in, Washington) -> Washington (771ms) In what state is Dulles located? Virginia 0.888888888888 In what state is Dulles located? -> $x: (dulles, be located in, $x) -> (Dulles International Airport, is located in, Virginia) -> Virginia (771ms) In what state is Dulles located? Northern Virginia 0.888888888888 In what state is Dulles located? -> $x: (dulles, be located in, $x) -> (Dulles International airports, are located in, Northern Virginia) -> Northern Virginia (771ms) In what state is Dulles located? Herndon Virginia 0.888888888888 In what state is Dulles located? -> $x: (dulles, be located in, $x) -> (The Crowne Plaza Dulles Airport, is located in, Herndon Virginia) -> Herndon Virginia (771ms) In what state is Dulles located? the fall -0.888888888889 In what state is Dulles located? -> $x: ($x, be know as, dulles) -> (the fall, will be known as, the Residence Inn-Dulles Airport) -> the fall (773ms) In what state is Dulles located? the proposed drilling area -1.22222222222 In what state is Dulles located? -> $x: ($x, size be, dulles) -> (the proposed drilling area, would be the size of, Dulles Airport) -> the proposed drilling area (774ms) In what state is Dulles located? the car -1.22222222222 In what state is Dulles located? -> $x: ($x, find, dulles) -> (the car, was found at, Dulles International Airport) -> the car (774ms) In what state is Dulles located? Srodes -1.22222222222 In what state is Dulles located? -> $x: ($x, found, dulles) -> (Srodes, found these among, Dulles) -> Srodes (773ms) In what state is Dulles located? the plane -1.22222222222 In what state is Dulles located? -> $x: ($x, head, dulles) -> (the plane, headed back towards, Dulles) -> the plane (774ms) In what state is Dulles located? The security and armaments group -1.22222222222 In what state is Dulles located? -> $x: ($x, head, dulles) -> (The security and armaments group, was headed by, Allen Dulles) -> The security and armaments group (774ms) In what state is Dulles located? Eleanor Lansing Dulles -1.22222222222 In what state is Dulles located? -> $x: ($x, find, dulles) -> (Eleanor Lansing Dulles, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Eleanor%20Lansing%20Dulles) -> Eleanor Lansing Dulles (774ms) In what state is Dulles located? 10 -1.22222222222 In what state is Dulles located? -> $x: ($x, head, dulles) -> (10, am before heading out to, Dulles) -> 10 (773ms) In what state is Dulles located? The jet -1.22222222222 In what state is Dulles located? -> $x: ($x, head, dulles) -> (The jet, then headed back to, Dulles Airport) -> The jet (774ms) In what state is Dulles located? Alhazmi -1.22222222222 In what state is Dulles located? -> $x: ($x, find, dulles) -> (Alhazmi, was found at, Dulles International Airport) -> Alhazmi (773ms) In what state is Dulles located? the letter -1.22222222222 In what state is Dulles located? -> $x: ($x, found, dulles) -> (the letter, was also found at, Dulles Airport) -> the letter (774ms) In what state is Dulles located? Dulles Town Center -1.22222222222 In what state is Dulles located? -> $x: ($x, found, dulles) -> (Dulles Town Center, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Dulles%20Town%20Center) -> Dulles Town Center (773ms) In what state is Dulles located? a flight -1.22222222222 In what state is Dulles located? -> $x: ($x, head, dulles) -> (a flight, headed from, Dulles Airport) -> a flight (773ms) In what state is Dulles located? Marylanders -1.22222222222 In what state is Dulles located? -> $x: ($x, found, dulles) -> (Marylanders, find, Dulles inconvenient) -> Marylanders (774ms) In what state is Dulles located? the CIA -1.22222222222 In what state is Dulles located? -> $x: ($x, head, dulles) -> (the CIA, headed by, Allen Dulles) -> the CIA (773ms) In what state is Dulles located? a Wall Street lawyer -1.22222222222 In what state is Dulles located? -> $x: ($x, head, dulles) -> (a Wall Street lawyer, became head of, Dulles) -> a Wall Street lawyer (774ms) Who was Abraham Lincoln? Ron Thorson 0.777777777774 Who was Abraham Lincoln? -> $x: ($x, happen to, lincoln) -> (Ron Thorson, also happens to own, Lincoln?s Neon Signs business) -> Ron Thorson (3075ms) Who was Abraham Lincoln? The Democrats 0.777777777774 Who was Abraham Lincoln? -> $x: ($x, happen to, lincoln) -> (The Democrats, happened to, Blanche Lincoln) -> The Democrats (3074ms) Who was Abraham Lincoln? a Wikipedia look 0.777777777774 Who was Abraham Lincoln? -> $x: ($x, happen to, lincoln) -> (a Wikipedia look, happened to, Abraham Lincoln) -> a Wikipedia look (3075ms) Who was Abraham Lincoln? the better question 0.777777777774 Who was Abraham Lincoln? -> $x: ($x, happen to, lincoln) -> (the better question, happened to, Lincoln) -> the better question (3074ms) Who was Abraham Lincoln? The true story 0.777777777774 Who was Abraham Lincoln? -> $x: ($x, happen to, lincoln) -> (The true story, happened to, Abraham Lincoln) -> The true story (3904ms) Who was Abraham Lincoln? Wm . H. Seward??who 0.777777777774 Who was Abraham Lincoln? -> $x: ($x, happen to, lincoln) -> (Wm . H. Seward??who, happened to be, Lincoln?s Secretary) -> Wm . H. Seward??who (3904ms) Who was Abraham Lincoln? AutoExtremist 0.777777777774 Who was Abraham Lincoln? -> $x: ($x, happen to, lincoln) -> (AutoExtremist, has happened to, Lincoln) -> AutoExtremist (3904ms) Who was Abraham Lincoln? a car 0.777777777774 Who was Abraham Lincoln? -> $x: ($x, happen to, lincoln) -> (a car, happened to be, a 1961 Lincoln continental) -> a car (3904ms) Who was Abraham Lincoln? Swanson 0.777777777774 Who was Abraham Lincoln? -> $x: ($x, happen to, lincoln) -> (Swanson, happened to, Lincoln) -> Swanson (3075ms) Who was Abraham Lincoln? there own take 0.777777777774 Who was Abraham Lincoln? -> $x: ($x, happen to, lincoln) -> (there own take, happen to, President Lincoln) -> there own take (3075ms) Who was Abraham Lincoln? The portrait 0.777777777774 Who was Abraham Lincoln? -> $x: ($x, happen to, lincoln) -> (The portrait, happened to be one of, Abraham Lincoln) -> The portrait (3075ms) Who was Abraham Lincoln? an old-timer 0.777777777774 Who was Abraham Lincoln? -> $x: ($x, happen to, lincoln) -> (an old-timer, happened to, Lincoln Road Mall) -> an old-timer (3074ms) Who was Abraham Lincoln? the greenback 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did with, the greenback) -> the greenback (3904ms) Who was Abraham Lincoln? fun 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did for, fun) -> fun (6871ms) Who was Abraham Lincoln? n?t 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, n?t) -> n?t (10641ms) Who was Abraham Lincoln? paper work 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, does, paper work) -> paper work (6592ms) Who was Abraham Lincoln? change 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, change) -> change (8611ms) Who was Abraham Lincoln? a wonderful exhibition 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, just did, a wonderful exhibition) -> a wonderful exhibition (10641ms) Who was Abraham Lincoln? the Emancipation Proclamation 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did issue, the Emancipation Proclamation) -> the Emancipation Proclamation (12322ms) Who was Abraham Lincoln? the same 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, do, the same) -> the same (12424ms) Who was Abraham Lincoln? what he thought was right 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, what he thought was right) -> what he thought was right (8114ms) Who was Abraham Lincoln? abortions 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, is doing, abortions) -> abortions (6592ms) Who was Abraham Lincoln? Nicholas 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, Nicholas) -> Nicholas (8114ms) Who was Abraham Lincoln? Woodrow Wilson?s 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, Woodrow Wilson?s) -> Woodrow Wilson?s (10641ms) Who was Abraham Lincoln? a modification 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, a modification) -> a modification (3904ms) Who was Abraham Lincoln? McClellan 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, McClellan) -> McClellan (12322ms) Who was Abraham Lincoln? the illinois staats-anzeiger 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, the illinois staats-anzeiger) -> the illinois staats-anzeiger (10641ms) Who was Abraham Lincoln? what he did 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, what he did) -> what he did (12423ms) Who was Abraham Lincoln? paper work for Logan & Lincoln 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, does, paper work for Logan & Lincoln) -> paper work for Logan & Lincoln (8611ms) Who was Abraham Lincoln? slavery 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did end, slavery) -> slavery (12423ms) Who was Abraham Lincoln? 522 abortions 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, 522 abortions) -> 522 abortions (12322ms) Who was Abraham Lincoln? the general election 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did win, the general election) -> the general election (3904ms) Who was Abraham Lincoln? n?t plate 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, n?t plate) -> n?t plate (12200ms) Who was Abraham Lincoln? the election 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did win, the election) -> the election (4707ms) Who was Abraham Lincoln? a great job 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, a great job) -> a great job (12423ms) Who was Abraham Lincoln? lodge 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, do, lodge) -> lodge (6592ms) Who was Abraham Lincoln? insane tone 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, does get, insane tone) -> insane tone (12424ms) Who was Abraham Lincoln? the Civil War 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did in, the Civil War) -> the Civil War (10641ms) Who was Abraham Lincoln? coin 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, coin) -> coin (6871ms) Who was Abraham Lincoln? end slavery 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, end slavery) -> end slavery (10641ms) Who was Abraham Lincoln? 1861 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did in, 1861) -> 1861 (6871ms) Who was Abraham Lincoln? Martin Luther King Jr. 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, as did, Martin Luther King Jr.) -> Martin Luther King Jr. (6592ms) Who was Abraham Lincoln? the Corwin Amendment 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did support, the Corwin Amendment) -> the Corwin Amendment (12322ms) Who was Abraham Lincoln? a less successful job 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, does, a less successful job) -> a less successful job (8611ms) Who was Abraham Lincoln? habeas 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did restrict, habeas) -> habeas (12423ms) Who was Abraham Lincoln? over and over again 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, over and over again) -> over and over again (12200ms) Who was Abraham Lincoln? quote Jesus Christ 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, quote Jesus Christ) -> quote Jesus Christ (12200ms) Who was Abraham Lincoln? as much 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, as much) -> as much (4707ms) Who was Abraham Lincoln? attempt consensus-building 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, attempt consensus-building) -> attempt consensus-building (6872ms) Who was Abraham Lincoln? preliminary paper work 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, does, preliminary paper work) -> preliminary paper work (8114ms) Who was Abraham Lincoln? the slavery issue 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did grab, the slavery issue) -> the slavery issue (8611ms) Who was Abraham Lincoln? Gettysburg 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did at, Gettysburg) -> Gettysburg (8611ms) Who was Abraham Lincoln? Rock Canyon?s Eric Williams 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, Rock Canyon?s Eric Williams) -> Rock Canyon?s Eric Williams (12322ms) Who was Abraham Lincoln? vis a 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, vis a) -> vis a (12200ms) Who was Abraham Lincoln? a 180 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, suddenly did, a 180) -> a 180 (12322ms) Who was Abraham Lincoln? the gold standard money system 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did establish, the gold standard money system) -> the gold standard money system (8114ms) Who was Abraham Lincoln? split rails 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, split rails) -> split rails (12322ms) Who was Abraham Lincoln? so 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, so) -> so (10641ms) Who was Abraham Lincoln? the train 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did on, the train) -> the train (12423ms) Who was Abraham Lincoln? 1858 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did in, 1858) -> 1858 (8611ms) Who was Abraham Lincoln? he can 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, does, he can) -> he can (4707ms) Who was Abraham Lincoln? Lincoln?s actions 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, do, Lincoln?s actions) -> Lincoln?s actions (8114ms) Who was Abraham Lincoln? decades 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, decades) -> decades (12200ms) Who was Abraham Lincoln? Thomas Jefferson 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, Thomas Jefferson) -> Thomas Jefferson (6592ms) Who was Abraham Lincoln? a much better job 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, does, a much better job) -> a much better job (4707ms) Who was Abraham Lincoln? Greenbacks 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did with, Greenbacks) -> Greenbacks (4707ms) Who was Abraham Lincoln? DIAZEPAM 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, DIAZEPAM) -> DIAZEPAM (12322ms) Who was Abraham Lincoln? what he had to do 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, what he had to do) -> what he had to do (12200ms) Who was Abraham Lincoln? the administration 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, does, the administration) -> the administration (6871ms) Who was Abraham Lincoln? History Ever Matter 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, Does, History Ever Matter) -> History Ever Matter (6871ms) Who was Abraham Lincoln? the Union 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did save, the Union) -> the Union (6592ms) Who was Abraham Lincoln? Darwin 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did read, Darwin) -> Darwin (8114ms) Who was Abraham Lincoln? a certain degree 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, do, a certain degree) -> a certain degree (12200ms) Who was Abraham Lincoln? once 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, once) -> once (10641ms) Who was Abraham Lincoln? regard Blacks 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, regard Blacks) -> regard Blacks (6592ms) Who was Abraham Lincoln? nt 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, did, nt) -> nt (8611ms) Who was Abraham Lincoln? the slaves 0.666666666662 Who was Abraham Lincoln? -> $x: (lincoln, do, $x) -> (Lincoln, do for, the slaves) -> the slaves (12200ms) Who was Abraham Lincoln? building coalitions 0.333333333332 Who was Abraham Lincoln? -> $x: (lincoln, be know for, $x) -> (Obama and Lincoln, are known for, building coalitions) -> building coalitions (12423ms) Who was Abraham Lincoln? the University` 0.333333333332 Who was Abraham Lincoln? -> $x: (lincoln, be know for, $x) -> (Lincoln, is best known for, the University`) -> the University` (12423ms) Who was Abraham Lincoln? warehouses 0.333333333332 Who was Abraham Lincoln? -> $x: (lincoln, be know for, $x) -> (Lincoln Park, was previously known for, warehouses) -> warehouses (12472ms) Who was Abraham Lincoln? innovation 0.333333333332 Who was Abraham Lincoln? -> $x: (lincoln, be know for, $x) -> (Lincoln Financial Group, are known for, innovation) -> innovation (12423ms) Who was Abraham Lincoln? itsmulticultural feel 0.333333333332 Who was Abraham Lincoln? -> $x: (lincoln, be know for, $x) -> (Lincoln Square, is known for, itsmulticultural feel) -> itsmulticultural feel (12423ms) Who was Abraham Lincoln? honesty 0.333333333332 Who was Abraham Lincoln? -> $x: (lincoln, be know for, $x) -> (Abraham Lincoln, is probably best known for is, honesty) -> honesty (12472ms) Who was Abraham Lincoln? whale watching 0.333333333332 Who was Abraham Lincoln? -> $x: (lincoln, be know for, $x) -> (Lincoln City, is also well known for, whale watching) -> whale watching (12472ms) Who was Abraham Lincoln? Thanksgiving 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Thanksgiving, was created during, the Lincoln administration) -> Thanksgiving (13553ms) Who was Abraham Lincoln? the Readings 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (the Readings, Does, Lincoln) -> the Readings (13431ms) Who was Abraham Lincoln? 20 minutes 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln Center, was only about, 20 minutes) -> 20 minutes (13688ms) Who was Abraham Lincoln? Paine 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (Paine, had a strong influence on, Lincoln) -> Paine (13464ms) Who was Abraham Lincoln? 2009 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (2009, is the 200th Anniversary of, Lincoln) -> 2009 (12885ms) Who was Abraham Lincoln? 1235-53 Robert Grosseteste 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (1235-53 Robert Grosseteste, was bishop of, Lincoln) -> 1235-53 Robert Grosseteste (13505ms) Who was Abraham Lincoln? a nation 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (a nation, describes the impact of, Lincoln) -> a nation (13212ms) Who was Abraham Lincoln? Becker 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Becker, was an admirer of, Lincoln) -> Becker (13630ms) Who was Abraham Lincoln? Seen 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Seen, here is, Lincoln Ellsworth) -> Seen (12820ms) Who was Abraham Lincoln? Fairbanks 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Fairbanks, People born here, Lincoln Brewster) -> Fairbanks (12707ms) Who was Abraham Lincoln? a key ring 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (a key ring, was found in, Lincoln) -> a key ring (13431ms) Who was Abraham Lincoln? The MKZ and MKX 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (The MKZ and MKX, helped, Lincoln post) -> The MKZ and MKX (13212ms) Who was Abraham Lincoln? Real stakes 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Real stakes, play better in, Lincoln) -> Real stakes (13656ms) Who was Abraham Lincoln? vastly more power 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (vastly more power, did, Lincoln) -> vastly more power (13030ms) Who was Abraham Lincoln? The state volleyball finals 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be past, lincoln) -> (The state volleyball finals, were this past weekend in, Lincoln) -> The state volleyball finals (13262ms) Who was Abraham Lincoln? War Edwin Stanton 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be involve in, lincoln) -> (War Edwin Stanton, was most likely involved in, Lincoln) -> War Edwin Stanton (13612ms) Who was Abraham Lincoln? the hostile motion 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (the hostile motion, was the subject of, Lincoln) -> the hostile motion (13245ms) Who was Abraham Lincoln? five months 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, was spending about, five months) -> five months (13228ms) Who was Abraham Lincoln? Mansfield 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Mansfield, was a member of, Lincolns Inn) -> Mansfield (13612ms) Who was Abraham Lincoln? graduate 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Mr. Lincoln, is about to, graduate) -> graduate (13505ms) Who was Abraham Lincoln? the weed 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (the weed, killed, Abraham Lincolns mother) -> the weed (12864ms) Who was Abraham Lincoln? academics 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, discover, lincoln) -> (academics, discover more about, Lincoln) -> academics (13229ms) Who was Abraham Lincoln? a father and son 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (a father and son, created a giant portrait of, Abe Lincoln) -> a father and son (13068ms) Who was Abraham Lincoln? Seth Gilliam 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Seth Gilliam, played, Lincoln) -> Seth Gilliam (13593ms) Who was Abraham Lincoln? the American contingent 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (the American contingent, were forming, the Abraham Lincoln) -> the American contingent (12970ms) Who was Abraham Lincoln? Bill 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (Bill, was elected, Lincoln County Commissioner) -> Bill (13194ms) Who was Abraham Lincoln? 11PM 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (11PM, KILLED, ABRAHAM LINCOLN) -> 11PM (13295ms) Who was Abraham Lincoln? Truth 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Truth, was a fan of, Lincoln) -> Truth (12970ms) Who was Abraham Lincoln? York 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (York, then were done by, Lincoln) -> York (13357ms) Who was Abraham Lincoln? Benjamin Walker 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Benjamin Walker, plays, Abraham Lincoln) -> Benjamin Walker (13656ms) Who was Abraham Lincoln? Mail 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (Mail, completed form to, 246 S 14th St Lincoln) -> Mail (13141ms) Who was Abraham Lincoln? Walt Whitman 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (Walt Whitman, Influenced By, Abraham Lincoln) -> Walt Whitman (13245ms) Who was Abraham Lincoln? Sinocence 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Sinocence, are coming to play in, Lincoln) -> Sinocence (12798ms) Who was Abraham Lincoln? Sciences 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Sciences, was created by, President Abraham Lincoln) -> Sciences (12753ms) Who was Abraham Lincoln? Facebook 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (Facebook, Find, the Lincoln Heritage Museum) -> Facebook (13245ms) Who was Abraham Lincoln? Hodgenville 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Hodgenville, People born here, Abraham Lincoln) -> Hodgenville (13049ms) Who was Abraham Lincoln? Away G. William Beardslee 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (Away G. William Beardslee, killed, Abraham Lincoln ?) -> Away G. William Beardslee (13030ms) Who was Abraham Lincoln? The photos 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (The photos, form a collective portrait of, Lincoln) -> The photos (13688ms) Who was Abraham Lincoln? 20 km 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln College, is about, 20 km) -> 20 km (13553ms) Who was Abraham Lincoln? tales 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, is skeptic about, tales) -> tales (13638ms) Who was Abraham Lincoln? Frecklington 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Frecklington, play a key role in, Lincoln) -> Frecklington (13228ms) Who was Abraham Lincoln? An interesting situation 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (An interesting situation, is developing in, southeast Lincoln) -> An interesting situation (13431ms) Who was Abraham Lincoln? The Big 12 Huskers 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (The Big 12 Huskers, play their home games in, Lincoln) -> The Big 12 Huskers (13311ms) Who was Abraham Lincoln? Logan Co. 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (Logan Co., was formed from, Lincoln Co.) -> Logan Co. (13464ms) Who was Abraham Lincoln? Lincoln Navigator 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Lincoln Navigator, also helped spur, Lincoln?s momentum) -> Lincoln Navigator (12947ms) Who was Abraham Lincoln? Douglass 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (Douglass, described, Lincoln) -> Douglass (13387ms) Who was Abraham Lincoln? the safety 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, are concerned about, the safety) -> the safety (13639ms) Who was Abraham Lincoln? signals 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (signals, were very good here in, Lincoln) -> signals (12906ms) Who was Abraham Lincoln? Pasadena 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Pasadena, People born here, Lincoln Holdzkom) -> Pasadena (13011ms) Who was Abraham Lincoln? political right 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, inspire, lincoln) -> (political right, inspired, Lincoln) -> political right (13647ms) Who was Abraham Lincoln? Republicans 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Republicans, are the party of, Lincoln) -> Republicans (13664ms) Who was Abraham Lincoln? a month 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln Center, is about, a month) -> a month (13553ms) Who was Abraham Lincoln? Sullivan 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Sullivan, has been a member of, Lincoln High School) -> Sullivan (12504ms) Who was Abraham Lincoln? Levi 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, inspired, lincoln) -> (Levi, inspired one of, Lincoln) -> Levi (13105ms) Who was Abraham Lincoln? a PDP 8 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (a PDP 8, developed initially at, the Lincoln Labs) -> a PDP 8 (13543ms) Who was Abraham Lincoln? the subject 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, was evidently well informed about, the subject) -> the subject (12629ms) Who was Abraham Lincoln? the LS 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (the LS, did little to change, Lincoln) -> the LS (13011ms) Who was Abraham Lincoln? Carter 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Carter, had been a member of, the Abraham Lincoln Brigade) -> Carter (13688ms) Who was Abraham Lincoln? Cabinet officials 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Cabinet officials, were created in, the Lincoln Bedroom) -> Cabinet officials (12472ms) Who was Abraham Lincoln? threats 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, was continually warned about, threats) -> threats (13387ms) Who was Abraham Lincoln? a doctor and land owner 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (a doctor and land owner, helps, Lincoln?s character) -> a doctor and land owner (12970ms) Who was Abraham Lincoln? the luncheon menu 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, inspire, lincoln) -> (the luncheon menu, was inspired by, Lincoln?s alleged love) -> the luncheon menu (13573ms) Who was Abraham Lincoln? Nevada 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (Nevada, claimed to have found, Lincoln) -> Nevada (13295ms) Who was Abraham Lincoln? the annexation 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, had been indifferent about, the annexation) -> the annexation (13402ms) Who was Abraham Lincoln? An earthquake 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, cause, lincoln) -> (An earthquake, caused structural damage to, Lincoln Cathedral) -> An earthquake (13087ms) Who was Abraham Lincoln? Jack Hunter 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, hate, lincoln) -> (Jack Hunter, hates, Lincoln) -> Jack Hunter (13105ms) Who was Abraham Lincoln? the Republican Party 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (the Republican Party, elected, Abraham Lincoln) -> the Republican Party (13664ms) Who was Abraham Lincoln? 1629 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, was built about, 1629) -> 1629 (13229ms) Who was Abraham Lincoln? Trustees 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Trustees, is a Board Member of, the Lincoln Junior Achievement) -> Trustees (13688ms) Who was Abraham Lincoln? Michigan 's vote 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Michigan 's vote, helped put, Lincoln) -> Michigan 's vote (13372ms) Who was Abraham Lincoln? Westport 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Westport, People born here, Lincoln Child) -> Westport (13446ms) Who was Abraham Lincoln? six years 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Abraham Lincoln, was probably about, six years) -> six years (12820ms) Who was Abraham Lincoln? the stage name 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (the stage name, has been described as, Abraham Lincoln) -> the stage name (12906ms) Who was Abraham Lincoln? Apple Hill Center 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Apple Hill Center, was a member of, Lincoln Center) -> Apple Hill Center (13593ms) Who was Abraham Lincoln? Thomas 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be past, lincoln) -> (Thomas, is a past recipient of, the Lincoln Prize) -> Thomas (12659ms) Who was Abraham Lincoln? yearly parades 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (yearly parades, draws the local people here in, Lincoln) -> yearly parades (12970ms) Who was Abraham Lincoln? Johnson 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (Johnson, did, lincoln) -> Johnson (13621ms) Who was Abraham Lincoln? Catholic 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be involve in, lincoln) -> (Catholic, was involved in, the Lincoln assassination) -> Catholic (13703ms) Who was Abraham Lincoln? Jyotirao Phule 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (Jyotirao Phule, Influenced By, Abraham Lincoln) -> Jyotirao Phule (12775ms) Who was Abraham Lincoln? The famous actor 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (The famous actor, killed, Lincoln) -> The famous actor (12730ms) Who was Abraham Lincoln? Young Carpenter 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (Young Carpenter, described, Lincoln?s arrival) -> Young Carpenter (13311ms) Who was Abraham Lincoln? the patron 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (the patron, is the dean of, Lincoln) -> the patron (13327ms) Who was Abraham Lincoln? the Democratic party 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (the Democratic party, was elected to, the Lincoln) -> the Democratic party (13603ms) Who was Abraham Lincoln? DiLorenzo points 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (DiLorenzo points, created, the mythic Abe Lincoln) -> DiLorenzo points (12730ms) Who was Abraham Lincoln? Tobago 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Tobago, People born here, Lincoln Roberts) -> Tobago (13417ms) Who was Abraham Lincoln? the number one best selling luxury brand spot 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (the number one best selling luxury brand spot, helped, Lincoln) -> the number one best selling luxury brand spot (12798ms) Who was Abraham Lincoln? a Democrat , nominated vice president 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (a Democrat , nominated vice president, elected with, Lincoln) -> a Democrat , nominated vice president (13295ms) Who was Abraham Lincoln? planned , Johnson 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (planned , Johnson, would have been killed along with, Lincoln) -> planned , Johnson (13656ms) Who was Abraham Lincoln? the debates 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (the debates, helped boost, Lincoln) -> the debates (12927ms) Who was Abraham Lincoln? the opportunity 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (the opportunity, create, Lincoln Hats) -> the opportunity (13602ms) Who was Abraham Lincoln? Leland 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (Leland, formed, the Lincoln Motor Company) -> Leland (13492ms) Who was Abraham Lincoln? the quaint downtown most people 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (the quaint downtown most people, would find, Lincoln) -> the quaint downtown most people (13673ms) Who was Abraham Lincoln? The North 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (The North, wanted to kill, Lincoln) -> The North (13402ms) Who was Abraham Lincoln? a huge basketball fan 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (a huge basketball fan, played for, Lincoln) -> a huge basketball fan (13417ms) Who was Abraham Lincoln? The ex-priest Charles Chiniquy 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (The ex-priest Charles Chiniquy, was contemporary of, Lincoln) -> The ex-priest Charles Chiniquy (13630ms) Who was Abraham Lincoln? Federal power 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, was all about, Federal power) -> Federal power (12659ms) Who was Abraham Lincoln? England 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (England, elected a fellow of, Lincoln College) -> England (13688ms) Who was Abraham Lincoln? designers 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (designers, developed, the Lincoln C concept) -> designers (13417ms) Who was Abraham Lincoln? Doreen Rappaport Discussion questions 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (Doreen Rappaport Discussion questions, did, Lincoln) -> Doreen Rappaport Discussion questions (12970ms) Who was Abraham Lincoln? the bigger issue 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (the bigger issue, Did, Lincoln) -> the bigger issue (13194ms) Who was Abraham Lincoln? Sales 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Sales, helped make, Lincoln) -> Sales (13638ms) Who was Abraham Lincoln? The community 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (The community, was developed by, Lincoln and Sons) -> The community (13681ms) Who was Abraham Lincoln? preparedness 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (preparedness, found, Lincoln unresponsive) -> preparedness (13573ms) Who was Abraham Lincoln? The mainstream media 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, discover, lincoln) -> (The mainstream media, are discovering that, Lincoln was right) -> The mainstream media (13612ms) Who was Abraham Lincoln? the Blind and Visually 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (the Blind and Visually, Impaired here in, Lincoln) -> the Blind and Visually (13049ms) Who was Abraham Lincoln? Johannesburg 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Johannesburg, People born here, Bobby Lincoln) -> Johannesburg (13583ms) Who was Abraham Lincoln? Coach Galicinao 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Coach Galicinao, played her high school ball at, Lincoln) -> Coach Galicinao (12629ms) Who was Abraham Lincoln? close 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (close, Find, Lincoln dealer invoice prices) -> close (13688ms) Who was Abraham Lincoln? John Wesley 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (John Wesley, was a Fellow of, Lincoln) -> John Wesley (12864ms) Who was Abraham Lincoln? the Disney folks 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (the Disney folks, did to, Lincoln) -> the Disney folks (13621ms) Who was Abraham Lincoln? New Orleans & LA 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (New Orleans & LA, Find, the perfect New Lincoln) -> New Orleans & LA (13656ms) Who was Abraham Lincoln? 1862 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (1862, did, Lincoln) -> 1862 (12906ms) Who was Abraham Lincoln? the majority 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (the majority, had elected, Lincoln) -> the majority (13011ms) Who was Abraham Lincoln? Barack Obama 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Barack Obama, is the fulfillment of, Lincoln) -> Barack Obama (12906ms) Who was Abraham Lincoln? Lake Jackson 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Lake Jackson, People born here, Brad Lincoln) -> Lake Jackson (12798ms) Who was Abraham Lincoln? full character 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (full character, plays, Mary Lincoln) -> full character (12707ms) Who was Abraham Lincoln? Chris Damon 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Chris Damon, is a native of, Lincoln) -> Chris Damon (13532ms) Who was Abraham Lincoln? the Holy Spirit 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (the Holy Spirit, did something in, Lincoln) -> the Holy Spirit (12885ms) Who was Abraham Lincoln? William H. Seward 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (William H. Seward, did with, Lincoln) -> William H. Seward (13681ms) Who was Abraham Lincoln? 23+ Aquarius 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, exactly be, lincoln) -> (23+ Aquarius, is exactly, conjunct President Lincoln) -> 23+ Aquarius (13696ms) Who was Abraham Lincoln? the Jackson portrait 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (the Jackson portrait, found, Mr. Lincoln) -> the Jackson portrait (13673ms) Who was Abraham Lincoln? I?m 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, happen in, lincoln) -> (I?m, happened last year in, Lincoln) -> I?m (13553ms) Who was Abraham Lincoln? RECENTLY 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, discover, lincoln) -> (RECENTLY, DISCOVERED, ABRAHAM AND MARY TODD LINCOLN DINNER PLATE) -> RECENTLY (12842ms) Who was Abraham Lincoln? the Republican party 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (the Republican party, elected, Abraham Lincoln president) -> the Republican party (13664ms) Who was Abraham Lincoln? One black woman 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (One black woman, was a member of, Mary Lincoln?s church) -> One black woman (13141ms) Who was Abraham Lincoln? the stand 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (the stand, begins here in, Lincoln County) -> the stand (12566ms) Who was Abraham Lincoln? anybody?s 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, happen in, lincoln) -> (anybody?s, will happen in, Lincoln) -> anybody?s (12798ms) Who was Abraham Lincoln? Harare 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Harare, People born here, Lincoln Zvasiya) -> Harare (13068ms) Who was Abraham Lincoln? Kline 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Kline, plays, Lincoln?s War Secretary Edwin Stanton) -> Kline (13228ms) Who was Abraham Lincoln? Arkansas 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (Arkansas, re-elected, Senator Lincoln) -> Arkansas (13664ms) Who was Abraham Lincoln? Heim Avenue 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Heim Avenue, is South of, Lincoln) -> Heim Avenue (13621ms) Who was Abraham Lincoln? 1994 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be name of, lincoln) -> (1994, was named director of, Lincoln Center) -> 1994 (13279ms) Who was Abraham Lincoln? 1864 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (1864, did, Lincoln) -> 1864 (13583ms) Who was Abraham Lincoln? softball 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (softball, helped keep, Lincoln , Nebraska , native Shannon Moore) -> softball (13311ms) Who was Abraham Lincoln? de Valera 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (de Valera, helped escape from, Lincoln prison) -> de Valera (13245ms) Who was Abraham Lincoln? the opportunities 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (the opportunities, are available right here in, Lincoln) -> the opportunities (12535ms) Who was Abraham Lincoln? Dred Scott 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (Dred Scott, elected, Abraham Lincoln) -> Dred Scott (13159ms) Who was Abraham Lincoln? The Lehrman Institute 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (The Lehrman Institute, created, The Lincoln Institute) -> The Lehrman Institute (13543ms) Who was Abraham Lincoln? Hughes 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (Hughes, had influence in, the Lincoln Administration) -> Hughes (12970ms) Who was Abraham Lincoln? the first Lincoln 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (the first Lincoln, created in, its new Lincoln Design Studio) -> the first Lincoln (13357ms) Who was Abraham Lincoln? San Antonio 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (San Antonio, People born here, Rosalie Lincoln) -> San Antonio (12990ms) Who was Abraham Lincoln? the city 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (the city, play, Lincoln Center) -> the city (13141ms) Who was Abraham Lincoln? Trevor Nunn?s production 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Trevor Nunn?s production, played, Lincoln Center) -> Trevor Nunn?s production (12707ms) Who was Abraham Lincoln? Booth 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (Booth, did kill, Lincoln) -> Booth (13688ms) Who was Abraham Lincoln? the unit 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (the unit, was created by, President Abraham Lincoln) -> the unit (12597ms) Who was Abraham Lincoln? the guy 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (the guy, playing, Lincoln) -> the guy (13464ms) Who was Abraham Lincoln? Rudy Cervantes 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (Rudy Cervantes, formed, the Lincoln Club) -> Rudy Cervantes (13417ms) Who was Abraham Lincoln? the Oklahoma-Nebraska game 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (the Oklahoma-Nebraska game, was played in, Lincoln) -> the Oklahoma-Nebraska game (13245ms) Who was Abraham Lincoln? toxic asbestos dust 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, cause, lincoln) -> (toxic asbestos dust, caused, Lincoln) -> toxic asbestos dust (12947ms) Who was Abraham Lincoln? The Democrat party 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, hate, lincoln) -> (The Democrat party, hated, Lincoln) -> The Democrat party (13372ms) Who was Abraham Lincoln? teller machines 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (teller machines, was developed in, Lincoln) -> teller machines (13327ms) Who was Abraham Lincoln? steps 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (steps, away form, Lincoln Center) -> steps (12885ms) Who was Abraham Lincoln? Amazing best 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (Amazing best, describes, this 2007 Lincoln MKX A more ... Type) -> Amazing best (13141ms) Who was Abraham Lincoln? George 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, inspire, lincoln) -> (George, inspired, Lincoln Institute founder John C) -> George (13372ms) Who was Abraham Lincoln? President Abraham Lincoln 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (President Abraham Lincoln, is a composite of, Lincoln) -> President Abraham Lincoln (13262ms) Who was Abraham Lincoln? The deceased 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (The deceased, was a member of, Macy Lincoln lodge) -> The deceased (13446ms) Who was Abraham Lincoln? Martin Luther King, Jr. 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (Martin Luther King, Jr., Influenced By, Abraham Lincoln) -> Martin Luther King, Jr. (13583ms) Who was Abraham Lincoln? Dallas 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Dallas, People born here, Lincoln Coleman) -> Dallas (13327ms) Who was Abraham Lincoln? John Rawls 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (John Rawls, Influenced By, Abraham Lincoln) -> John Rawls (13664ms) Who was Abraham Lincoln? Robert 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Robert, [is] bishop of, Lincoln) -> Robert (13030ms) Who was Abraham Lincoln? Toronto 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Toronto, People born here, Lincoln Alexander) -> Toronto (13445ms) Who was Abraham Lincoln? product 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln?s arguments, were about, product) -> product (13431ms) Who was Abraham Lincoln? the sidewalk 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (the sidewalk, did show, Lincoln) -> the sidewalk (13505ms) Who was Abraham Lincoln? Lincoln Search Jobs 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (Lincoln Search Jobs, find, Lincoln employers) -> Lincoln Search Jobs (13532ms) Who was Abraham Lincoln? the renovation 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (the renovation, created, Lincoln Center) -> the renovation (13688ms) Who was Abraham Lincoln? Maxey 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (Maxey, also was the first black elected to, the Lincoln Board) -> Maxey (13638ms) Who was Abraham Lincoln? The bill 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (The bill, created, the Lincoln Memorial Commission) -> The bill (12990ms) Who was Abraham Lincoln? Berks County 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Berks County, People born here, Abraham Lincoln) -> Berks County (13387ms) Who was Abraham Lincoln? Congress 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (Congress, formed, the Lincoln Monument Association) -> Congress (13177ms) Who was Abraham Lincoln? duh 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (duh, live here in, Lincoln) -> duh (13532ms) Who was Abraham Lincoln? Sandlin 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (Sandlin, describes, Abraham Lincoln) -> Sandlin (13279ms) Who was Abraham Lincoln? a lack 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, have story of, $x) -> (Abraham Lincoln, had similar stories of, a lack) -> a lack (13311ms) Who was Abraham Lincoln? the actors 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (the actors, have played, Lincoln) -> the actors (13402ms) Who was Abraham Lincoln? The company 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (The company, also developed mixed-use projects on, Lincoln Road) -> The company (12659ms) Who was Abraham Lincoln? ?Presidential? 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, initiate, lincoln) -> (?Presidential?, was initiated by, Republican presidents Lincoln) -> ?Presidential? (12798ms) Who was Abraham Lincoln? Tilghman 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (Tilghman, was elected sheriff of, Lincoln County) -> Tilghman (13417ms) Who was Abraham Lincoln? Kansas City 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Kansas City, People born here, Lincoln Roblee) -> Kansas City (13159ms) Who was Abraham Lincoln? the Duke family 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (the Duke family, helped, open North Carolina ?s Lincoln Hospital) -> the Duke family (13229ms) Who was Abraham Lincoln? the question 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (the question, Did, Lincoln) -> the question (13357ms) Who was Abraham Lincoln? President 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (President, elect, Abraham Lincoln) -> President (13564ms) Who was Abraham Lincoln? Schultz 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be past, lincoln) -> (Schultz, is a past recipient of, a Lincoln County Women) -> Schultz (13492ms) Who was Abraham Lincoln? Thailand 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Thailand, is the first port call of, Lincoln) -> Thailand (13177ms) Who was Abraham Lincoln? Anthony 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Anthony, is a member of, the Lincoln Center Director) -> Anthony (13279ms) Who was Abraham Lincoln? The poets 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (The poets, undoubtedly had their influence on, Lincoln) -> The poets (13311ms) Who was Abraham Lincoln? Lincoln Technical Institute 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Lincoln Technical Institute, is a member of, the Lincoln Group) -> Lincoln Technical Institute (13141ms) Who was Abraham Lincoln? very little inferencing--questions 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (very little inferencing--questions, do, Lincoln) -> very little inferencing--questions (13593ms) Who was Abraham Lincoln? Virginia Tech 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Virginia Tech, will play in, Lincoln) -> Virginia Tech (13229ms) Who was Abraham Lincoln? a couple 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (a couple, had helped, Mary Todd Lincoln bust) -> a couple (13673ms) Who was Abraham Lincoln? Goober 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (Goober, killed, Abraham Lincoln) -> Goober (13681ms) Who was Abraham Lincoln? the tradition 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, date, lincoln) -> (the tradition, dates, back to Abraham Lincoln) -> the tradition (12775ms) Who was Abraham Lincoln? ?a visitor 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (?a visitor, found, Lincoln) -> ?a visitor (13519ms) Who was Abraham Lincoln? the first half 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (the first half, helped keep, Lincoln) -> the first half (13638ms) Who was Abraham Lincoln? the First Inaugural Address 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (the First Inaugural Address, does, Lincoln) -> the First Inaugural Address (13612ms) Who was Abraham Lincoln? hand 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, inspired, lincoln) -> (hand, inspire the young people of, Port Lincoln) -> hand (13478ms) Who was Abraham Lincoln? Luigi 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (Luigi, killed, Abraham Lincoln) -> Luigi (13464ms) Who was Abraham Lincoln? Mr. Berge 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Mr. Berge, was a native of, Lincoln) -> Mr. Berge (12659ms) Who was Abraham Lincoln? sculptor Daniel French 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (sculptor Daniel French, created, the Lincoln Memorial) -> sculptor Daniel French (13446ms) Who was Abraham Lincoln? large percentages 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (large percentages, finds, Lincoln ahead) -> large percentages (13357ms) Who was Abraham Lincoln? the effect 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, was exceedingly nervous about, the effect) -> the effect (13446ms) Who was Abraham Lincoln? stinkin' Booth 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (stinkin' Booth, did to, Lincoln) -> stinkin' Booth (13681ms) Who was Abraham Lincoln? Four conference schools 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Four conference schools, will play in, Lincoln) -> Four conference schools (12842ms) Who was Abraham Lincoln? Huntsville 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, discover, lincoln) -> (Huntsville, was discovered in, Lincoln County) -> Huntsville (12597ms) Who was Abraham Lincoln? Confederates 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, hate, lincoln) -> (Confederates, hated, Abraham Lincoln) -> Confederates (13464ms) Who was Abraham Lincoln? 7.5 inches 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, was about, 7.5 inches) -> 7.5 inches (13030ms) Who was Abraham Lincoln? Raynham 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Raynham, People born here, Ezra Lincoln) -> Raynham (12927ms) Who was Abraham Lincoln? Help students 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Help students, create a timeline of, Abraham Lincoln?s life) -> Help students (12842ms) Who was Abraham Lincoln? the Jesuits 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (the Jesuits, killed, Abe Lincoln) -> the Jesuits (13505ms) Who was Abraham Lincoln? spouse 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (spouse, is an associate member of, the Lincoln MCR.) -> spouse (13664ms) Who was Abraham Lincoln? Kentucky and Kentuckians 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (Kentucky and Kentuckians, influenced, Lincoln?s childhood) -> Kentucky and Kentuckians (13262ms) Who was Abraham Lincoln? Bobby 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Bobby, was a member of, the Lincoln University Mennonite Church) -> Bobby (13279ms) Who was Abraham Lincoln? SolarBlue 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (SolarBlue, developed plans to, power Lincoln Financial Field) -> SolarBlue (12990ms) Who was Abraham Lincoln? the first time we?ve 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (the first time we?ve, played in, Lincoln) -> the first time we?ve (13696ms) Who was Abraham Lincoln? Chihuahua 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Chihuahua, had played at, Lincoln) -> Chihuahua (13417ms) Who was Abraham Lincoln? a Fulbright 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (a Fulbright, is a member of, the Lincoln Center Directors ? Lab) -> a Fulbright (13229ms) Who was Abraham Lincoln? the students 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (the students, created, Lincoln) -> the students (13573ms) Who was Abraham Lincoln? the cards 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (the cards, have helped, Abraham Lincoln) -> the cards (13688ms) Who was Abraham Lincoln? New Jersey 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (New Jersey, Find, the perfect Used Lincoln) -> New Jersey (13492ms) Who was Abraham Lincoln? a household name 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (a household name, helped ensure, Lincoln) -> a household name (13177ms) Who was Abraham Lincoln? a working hub 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (a working hub, was created for, the Lincoln cent reverse) -> a working hub (13068ms) Who was Abraham Lincoln? The Polar Plunge 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, happen in, lincoln) -> (The Polar Plunge, is happening in, Lincoln February 25) -> The Polar Plunge (13573ms) Who was Abraham Lincoln? Clay 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, inspired, lincoln) -> (Clay, inspired, smooth talking railroad lawyer Abraham Lincoln) -> Clay (13532ms) Who was Abraham Lincoln? Mount Rushmore 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Mount Rushmore, created, Lincoln Park) -> Mount Rushmore (13295ms) Who was Abraham Lincoln? the run 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (the run, was elected sheriff of, Lincoln County) -> the run (12535ms) Who was Abraham Lincoln? actors 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (actors, found among, Lincoln) -> actors (13673ms) Who was Abraham Lincoln? God 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (God, is doing here in, Lincoln) -> God (13342ms) Who was Abraham Lincoln? Information from online users 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Information from online users, helps, us keep the Lincoln) -> Information from online users (12597ms) Who was Abraham Lincoln? doctor 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (doctor, helped, Lincoln assassin John Wilkes Booth) -> doctor (13532ms) Who was Abraham Lincoln? Garrett 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (Garrett, was elected as, sheriff of Lincoln County) -> Garrett (13087ms) Who was Abraham Lincoln? The money 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (The money, will be used to help with, Lincoln?s celebration) -> The money (12730ms) Who was Abraham Lincoln? the United States 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (the United States, found, President Abraham Lincoln offering) -> the United States (13278ms) Who was Abraham Lincoln? Joshua 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Joshua, helped to maintain, Lincoln?s legacy) -> Joshua (13049ms) Who was Abraham Lincoln? the state 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (the state, is a member of, the Lincoln Board) -> the state (13011ms) Who was Abraham Lincoln? Worse 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (Worse, does, Lincoln) -> Worse (13372ms) Who was Abraham Lincoln? the end 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (the end, triumphantly elected, Lincoln and Johnson) -> the end (13087ms) Who was Abraham Lincoln? Ms. Kovner 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Ms. Kovner, is a member of, the Lincoln Center ?s Director Lab) -> Ms. Kovner (12864ms) Who was Abraham Lincoln? the Capitol 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (the Capitol, are the bust of, Lincoln) -> the Capitol (12535ms) Who was Abraham Lincoln? child development & geriatrics 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (child development & geriatrics, are also part of, Lincoln) -> child development & geriatrics (12659ms) Who was Abraham Lincoln? the Turners 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (the Turners, formed, Lincoln) -> the Turners (13696ms) Who was Abraham Lincoln? Denise 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, date be, lincoln) -> (Denise, is now dating, 39-year-old Lincoln Townley) -> Denise (13553ms) Who was Abraham Lincoln? striking achievements 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (striking achievements, did, Lincoln) -> striking achievements (12927ms) Who was Abraham Lincoln? musical Bloody Bloody Andrew Jackson 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (musical Bloody Bloody Andrew Jackson, is playing, Lincoln) -> musical Bloody Bloody Andrew Jackson (13087ms) Who was Abraham Lincoln? London 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (London, People born here, Andrew Lincoln) -> London (13704ms) Who was Abraham Lincoln? the mark 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (the mark, found, Lincoln) -> the mark (13049ms) Who was Abraham Lincoln? 10 miles 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, was about, 10 miles) -> 10 miles (12798ms) Who was Abraham Lincoln? The lecture 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (The lecture, also describes, Lincoln) -> The lecture (13228ms) Who was Abraham Lincoln? Comments Section 106 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Comments Section 106, is there to help, Blanche Lincoln) -> Comments Section 106 (13245ms) Who was Abraham Lincoln? the show 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (the show, has still found time for, Lincoln) -> the show (13612ms) Who was Abraham Lincoln? the Mid-West 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (the Mid-West, helped elect, Lincoln) -> the Mid-West (12969ms) Who was Abraham Lincoln? Portland & Oregon 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (Portland & Oregon, Find, the perfect Used Lincoln) -> Portland & Oregon (13342ms) Who was Abraham Lincoln? Miverel 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Miverel, will play, Lincoln) -> Miverel (13564ms) Who was Abraham Lincoln? Self Driven City Tour Tour departs 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (Self Driven City Tour Tour departs, form, Lincoln Road) -> Self Driven City Tour Tour departs (12504ms) Who was Abraham Lincoln? Leigh 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Leigh, offered to help, Lincoln) -> Leigh (12535ms) Who was Abraham Lincoln? Tortoise 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Tortoise, plays, Lincoln Hall) -> Tortoise (13402ms) Who was Abraham Lincoln? Selby 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Selby, has played, Lincoln) -> Selby (13087ms) Who was Abraham Lincoln? password 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (password, Here 's a site about, Lincoln) -> password (12820ms) Who was Abraham Lincoln? the myths Americans 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (the myths Americans, have created about, Abraham Lincoln) -> the myths Americans (12659ms) Who was Abraham Lincoln? Adena 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Adena, is a member of, the Lincoln Center Director?s Lab) -> Adena (13431ms) Who was Abraham Lincoln? A good example 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be story of, lincoln) -> (A good example, would be the story of, Abraham Lincoln) -> A good example (13603ms) Who was Abraham Lincoln? Johanns 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Johanns, was mayor of, Lincoln) -> Johanns (13262ms) Who was Abraham Lincoln? the Cats 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (the Cats, played in, Lincoln) -> the Cats (12885ms) Who was Abraham Lincoln? EU 2-EQ 2 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (EU 2-EQ 2, did, Lincoln) -> EU 2-EQ 2 (13030ms) Who was Abraham Lincoln? Rep. Stevens 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, hate, lincoln) -> (Rep. Stevens, hated, the pre-Lincoln Constitution) -> Rep. Stevens (13543ms) Who was Abraham Lincoln? winter 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, is serious about, winter) -> winter (12504ms) Who was Abraham Lincoln? Yankee bankers 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, discover, lincoln) -> (Yankee bankers, discovered during, Lincoln?s War) -> Yankee bankers (13638ms) Who was Abraham Lincoln? The Library 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (The Library, is a member of, the Lincoln Trail Libraries System) -> The Library (12504ms) Who was Abraham Lincoln? a home 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (a home, helped elect, Abraham Lincoln) -> a home (13564ms) Who was Abraham Lincoln? opalized wood 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (opalized wood, can be found in, Lincoln) -> opalized wood (13311ms) Who was Abraham Lincoln? 1535 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (+ Christian LINCOLN, was born about, 1535) -> 1535 (12566ms) Who was Abraham Lincoln? Volk 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Volk, would create, many fine Lincoln sculptures) -> Volk (13159ms) Who was Abraham Lincoln? Dams Lincoln 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (Dams Lincoln, Find, Dams Lincoln huge selection) -> Dams Lincoln (13703ms) Who was Abraham Lincoln? the Better Business Bureau 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (the Better Business Bureau, is a member of, the Lincoln Chamber) -> the Better Business Bureau (13194ms) Who was Abraham Lincoln? Musicians 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Musicians, was a member of, Lincoln Center) -> Musicians (13553ms) Who was Abraham Lincoln? Wesley 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (Wesley, was elected, Fellow of Lincoln) -> Wesley (12864ms) Who was Abraham Lincoln? Dingman 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (Dingman, formed, the Lincoln rock quartet) -> Dingman (13703ms) Who was Abraham Lincoln? a Peace Democrat 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (a Peace Democrat, is elected in, 1864 ! *Lincoln) -> a Peace Democrat (13212ms) Who was Abraham Lincoln? the group 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (the group, is the party of, Lincoln) -> the group (13417ms) Who was Abraham Lincoln? chrome accessories 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (chrome accessories, is right here for, your Lincoln) -> chrome accessories (13621ms) Who was Abraham Lincoln? no trabalho inicial 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (no trabalho inicial, do, Lincoln) -> no trabalho inicial (12775ms) Who was Abraham Lincoln? view facilities 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, discover, lincoln) -> (view facilities, discover the city of, Lincoln) -> view facilities (13630ms) Who was Abraham Lincoln? the weapon 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (the weapon, killed, Lincoln) -> the weapon (12798ms) Who was Abraham Lincoln? Southerners 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, hate, lincoln) -> (Southerners, hated, Lincoln) -> Southerners (13673ms) Who was Abraham Lincoln? The military personnel 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (The military personnel, found, the Lincoln Town Car) -> The military personnel (13372ms) Who was Abraham Lincoln? THINK 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (THINK, did, Lincoln) -> THINK (13673ms) Who was Abraham Lincoln? Norwich 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Norwich, People born here, Fred Lincoln) -> Norwich (13105ms) Who was Abraham Lincoln? patrons 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (patrons, are the bishop of, Lincoln) -> patrons (13573ms) Who was Abraham Lincoln? cross 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (cross, is getting popular here in, lincoln) -> cross (12990ms) Who was Abraham Lincoln? the bullet 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (the bullet, killed, Lincoln) -> the bullet (13449ms) Who was Abraham Lincoln? the three quotations 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (the three quotations, was part of, Lincoln) -> the three quotations (12504ms) Who was Abraham Lincoln? President Bush?s Administration 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (President Bush?s Administration, is reminiscent of, Lincoln) -> President Bush?s Administration (13279ms) Who was Abraham Lincoln? Room d?cor 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, inspire, lincoln) -> (Room d?cor, is inspired by, the Lincoln Center) -> Room d?cor (13573ms) Who was Abraham Lincoln? The scheme 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (The scheme, is being developed by, US developer AIG/Lincoln) -> The scheme (12753ms) Who was Abraham Lincoln? Harlem River Blues Justin Townes Earle 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Harlem River Blues Justin Townes Earle, plays, Lincoln Hall) -> Harlem River Blues Justin Townes Earle (13123ms) Who was Abraham Lincoln? 1970 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (1970, formed, Lincoln Square Synagogue) -> 1970 (13212ms) Who was Abraham Lincoln? McCord 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (McCord, finds, Lincoln) -> McCord (13262ms) Who was Abraham Lincoln? president 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (president, elect, abraham lincoln) -> president (13532ms) Who was Abraham Lincoln? Holmes 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be vice president for, lincoln) -> (Holmes, was a Vice President for, Lincoln National Corporation) -> Holmes (13445ms) Who was Abraham Lincoln? the War 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (the War, created for, President Lincoln) -> the War (13245ms) Who was Abraham Lincoln? Worcester 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Worcester, People born here, Enoch Lincoln) -> Worcester (12842ms) Who was Abraham Lincoln? fact 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (fact, kill, Lincoln) -> fact (12864ms) Who was Abraham Lincoln? Mod_perl 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (Mod_perl, was described by, Lincoln Stein) -> Mod_perl (13141ms) Who was Abraham Lincoln? a developer 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (a developer, find a five-acre property in, Lincoln) -> a developer (13664ms) Who was Abraham Lincoln? the different branches 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (the different branches, may be found in, Lincoln) -> the different branches (13228ms) Who was Abraham Lincoln? War 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (War, So did, Lincoln) -> War (13664ms) Who was Abraham Lincoln? Jennifer 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Jennifer, is a native of, Lincoln) -> Jennifer (13621ms) Who was Abraham Lincoln? a year 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (a year, also had a profound influence upon, President Lincoln) -> a year (12504ms) Who was Abraham Lincoln? David Herbert Donald 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (David Herbert Donald, described in, his Lincoln biography) -> David Herbert Donald (13177ms) Who was Abraham Lincoln? LAST WE FLEW 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (LAST WE FLEW, was developed at, Lincoln Center) -> LAST WE FLEW (12990ms) Who was Abraham Lincoln? Mr. Baldwin 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Mr. Baldwin, was here to see, Mr. Lincoln) -> Mr. Baldwin (12535ms) Who was Abraham Lincoln? a committee 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (a committee, was formed at, Lincoln) -> a committee (13030ms) Who was Abraham Lincoln? a counter-factual one 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, happen in, lincoln) -> (a counter-factual one, would have happened in, Lincoln) -> a counter-factual one (13696ms) Who was Abraham Lincoln? Luitink 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (Luitink, described to, the Lincoln Welding representatives) -> Luitink (13673ms) Who was Abraham Lincoln? michael connelly 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (michael connelly, created, The Lincoln lawyer) -> michael connelly (12906ms) Who was Abraham Lincoln? Lincoln Lincoln Jobs 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (Lincoln Lincoln Jobs, Find jobs in, Lincoln) -> Lincoln Lincoln Jobs (12842ms) Who was Abraham Lincoln? 15 inches 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Sir Lincoln, is about, 15 inches) -> 15 inches (12730ms) Who was Abraham Lincoln? an event 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (an event, find an image of, Lincoln) -> an event (13704ms) Who was Abraham Lincoln? fashion fabrics 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Andrea Lincoln, is crazy about, fashion fabrics) -> fashion fabrics (12535ms) Who was Abraham Lincoln? the design 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (the design, is emblemaic of, Lincoln) -> the design (13357ms) Who was Abraham Lincoln? Tripp 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (Tripp, credibly describes, Lincoln?s) -> Tripp (13159ms) Who was Abraham Lincoln? Robert H. 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (Robert H., Did, Lincoln) -> Robert H. (13696ms) Who was Abraham Lincoln? Freeman 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Freeman, was a member of, Lincoln?s Board) -> Freeman (13327ms) Who was Abraham Lincoln? Rhode Island Rhode Island 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (Rhode Island Rhode Island, elected, Independent Lincoln Chafee) -> Rhode Island Rhode Island (13123ms) Who was Abraham Lincoln? Jacobs 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, discover, lincoln) -> (Jacobs, was discovered in, her green four-door Lincoln) -> Jacobs (13068ms) Who was Abraham Lincoln? sale 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (sale, find, Lincoln real estate) -> sale (13583ms) Who was Abraham Lincoln? Ashford 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Ashford, People born here, James Lincoln) -> Ashford (13573ms) Who was Abraham Lincoln? the faithful citizens 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (the faithful citizens, elected, Mr. Lincoln) -> the faithful citizens (13478ms) Who was Abraham Lincoln? an American 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (an American, to play, Lincoln) -> an American (13704ms) Who was Abraham Lincoln? The arbitration panel 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (The arbitration panel, found, Lincoln Financial liable) -> The arbitration panel (13431ms) Who was Abraham Lincoln? LP 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (LP, Did, Lincoln) -> LP (13030ms) Who was Abraham Lincoln? an architect?s son 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, invent, lincoln) -> (an architect?s son, invented, Lincoln Logs) -> an architect?s son (13262ms) Who was Abraham Lincoln? a planning authority 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (a planning authority, has been created for, Lincoln County) -> a planning authority (13311ms) Who was Abraham Lincoln? the aisle 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, inspired, lincoln) -> (the aisle, have been inspired by, Lincoln?s words and ideas) -> the aisle (13087ms) Who was Abraham Lincoln? the only person 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (the only person, wanted to kill, Lincoln) -> the only person (13564ms) Who was Abraham Lincoln? Business 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, is about, Business) -> Business (13372ms) Who was Abraham Lincoln? suspiciously similar , event 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, happen in, lincoln) -> (suspiciously similar , event, will be happening in, Lincoln Park) -> suspiciously similar , event (13159ms) Who was Abraham Lincoln? Lincoln Nebraska 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (Lincoln Nebraska, Find a dentist in, Lincoln) -> Lincoln Nebraska (13478ms) Who was Abraham Lincoln? Hugh 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Hugh, [is] bishop of, Lincoln) -> Hugh (13177ms) Who was Abraham Lincoln? Russia 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Russia, really helped, Abraham Lincoln) -> Russia (13357ms) Who was Abraham Lincoln? 2 year old sister 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (2 year old sister, were killed in, Lincoln) -> 2 year old sister (13688ms) Who was Abraham Lincoln? Historic Preservation 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (Historic Preservation, develop, President Lincoln) -> Historic Preservation (13372ms) Who was Abraham Lincoln? Chris Fields 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (Chris Fields, do any of, Lincoln) -> Chris Fields (13602ms) Who was Abraham Lincoln? TVC 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (TVC, helps, the Lincoln MKS drive) -> TVC (13402ms) Who was Abraham Lincoln? The person 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (The person, had killed, Lincoln) -> The person (12659ms) Who was Abraham Lincoln? residencies 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (residencies, play, Lincoln Center) -> residencies (13656ms) Who was Abraham Lincoln? Mary Elizabeth Winstead 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Mary Elizabeth Winstead, plays, Lincolns wife) -> Mary Elizabeth Winstead (12885ms) Who was Abraham Lincoln? an interest 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (an interest, now helps organize, the Lincoln Air Show) -> an interest (13262ms) Who was Abraham Lincoln? Ford?s Theatre 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Ford?s Theatre, have created, The Lincoln Legacy Project) -> Ford?s Theatre (13478ms) Who was Abraham Lincoln? Iowa 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Iowa, People born here, Lincoln Fitzell) -> Iowa (12798ms) Who was Abraham Lincoln? a mile 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, is a lake-bed about, a mile) -> a mile (12707ms) Who was Abraham Lincoln? Clinton 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Clinton, helped, Lincoln) -> Clinton (13478ms) Who was Abraham Lincoln? the plate 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (the plate, was developed the spirit of, Abraham Lincoln) -> the plate (13372ms) Who was Abraham Lincoln? GI Campus Textbooks 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (GI Campus Textbooks, Please click here for, Lincoln) -> GI Campus Textbooks (13647ms) Who was Abraham Lincoln? Spring 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, happen in, lincoln) -> (Spring, is happening in, Lincoln Park) -> Spring (13228ms) Who was Abraham Lincoln? seven 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Kansas ? Lincoln, was about, seven) -> seven (13431ms) Who was Abraham Lincoln? 200 new jobs 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (200 new jobs, will be created in, Lincoln) -> 200 new jobs (13011ms) Who was Abraham Lincoln? New Zealand 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (New Zealand, People born here, Lincoln Doull) -> New Zealand (13532ms) Who was Abraham Lincoln? half 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln Center, is about, half) -> half (13621ms) Who was Abraham Lincoln? the founders 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (the founders, formed, the Lincoln Motor Company) -> the founders (13593ms) Who was Abraham Lincoln? an undated fragment 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (an undated fragment, found among, Lincoln) -> an undated fragment (13532ms) Who was Abraham Lincoln? The county town 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (The county town, is the city of, Lincoln) -> The county town (13068ms) Who was Abraham Lincoln? new radar technology 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (new radar technology, developed at, MIT?s Lincoln Laboratory) -> new radar technology (13621ms) Who was Abraham Lincoln? David Selby 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (David Selby, returns to play, Lincoln) -> David Selby (13519ms) Who was Abraham Lincoln? Kenneth 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Kenneth, is currently a staff member of, the Lincoln Laboratory) -> Kenneth (12753ms) Who was Abraham Lincoln? Election Day 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Election Day, helped, vindicate Lincoln?s war strategy) -> Election Day (13603ms) Who was Abraham Lincoln? nebraska wesleyan prairie wolves 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (nebraska wesleyan prairie wolves, is the home city of the sports team, lincoln) -> nebraska wesleyan prairie wolves (13573ms) Who was Abraham Lincoln? the National Park Service 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (the National Park Service, describes the highlights of, Lincoln) -> the National Park Service (12842ms) Who was Abraham Lincoln? Prozac 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Prozac, could have helped, Lincoln) -> Prozac (13068ms) Who was Abraham Lincoln? The lincoln mark lt 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (The lincoln mark lt, is a key part of, lincoln) -> The lincoln mark lt (13681ms) Who was Abraham Lincoln? The gun 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (The gun, killed, Lincoln) -> The gun (13673ms) Who was Abraham Lincoln? Henry Carey 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Henry Carey, was the advisor of, Lincoln) -> Henry Carey (13245ms) Who was Abraham Lincoln? the civil rights movement 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, inspire, lincoln) -> (the civil rights movement, inspired, Lincoln) -> the civil rights movement (13602ms) Who was Abraham Lincoln? race 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (race, develops between, Lincoln) -> race (13621ms) Who was Abraham Lincoln? architect John Lloyd Wright 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (architect John Lloyd Wright, created, the first Lincoln Logs) -> architect John Lloyd Wright (13564ms) Who was Abraham Lincoln? the veteran character actor 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (the veteran character actor, played, Lincoln) -> the veteran character actor (13387ms) Who was Abraham Lincoln? passengers 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (passengers, has been described by, Lincoln Steffens) -> passengers (12798ms) Who was Abraham Lincoln? The new design 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (The new design, will be emblematic of, Lincoln) -> The new design (12947ms) Who was Abraham Lincoln? The war 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (The war, did enable, Lincoln) -> The war (13696ms) Who was Abraham Lincoln? The TV show 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (The TV show, is based out of, Lincoln) -> The TV show (13295ms) Who was Abraham Lincoln? the voice-talent actor 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (the voice-talent actor, plays, Abraham Lincoln) -> the voice-talent actor (12776ms) Who was Abraham Lincoln? funding 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Senator Lincoln, was hopeful about, funding) -> funding (13123ms) Who was Abraham Lincoln? the Illuminati 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (the Illuminati, kill, American President Abraham Lincoln) -> the Illuminati (12730ms) Who was Abraham Lincoln? Abraham Lincoln 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (Abraham Lincoln, finds, Lincoln) -> Abraham Lincoln (13696ms) Who was Abraham Lincoln? lincoln performance parts 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, have history of, $x) -> (lincoln, has a proud history of, lincoln performance parts) -> lincoln performance parts (13492ms) Who was Abraham Lincoln? five women 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (five women, helped, shape Abraham Lincoln?s life) -> five women (13593ms) Who was Abraham Lincoln? Thursday Coronado 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Thursday Coronado, plays at, Lincoln) -> Thursday Coronado (13159ms) Who was Abraham Lincoln? Select Smith Names William Smyth 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Select Smith Names William Smyth, was Bishop of, Lincoln) -> Select Smith Names William Smyth (13505ms) Who was Abraham Lincoln? slavery and secession 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (slavery and secession, was described by, Lincoln) -> slavery and secession (12730ms) Who was Abraham Lincoln? military necessity 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (military necessity, influenced, Lincoln) -> military necessity (12707ms) Who was Abraham Lincoln? 170 lbs 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (President Lincoln, was about, 170 lbs) -> 170 lbs (13574ms) Who was Abraham Lincoln? the Chicago Times 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (the Chicago Times, described one of, Lincoln) -> the Chicago Times (13638ms) Who was Abraham Lincoln? The Biblical language 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (The Biblical language, is typical of, Lincoln) -> The Biblical language (12906ms) Who was Abraham Lincoln? Wilson 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (Wilson, finds the body of, Lincoln) -> Wilson (13603ms) Who was Abraham Lincoln? New Lincoln Price Quotes 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (New Lincoln Price Quotes, Find, a Used Lincoln Search) -> New Lincoln Price Quotes (13357ms) Who was Abraham Lincoln? Benson 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be name of, lincoln) -> (Benson, was named head of, the Lincoln-Mercury Division) -> Benson (13177ms) Who was Abraham Lincoln? 5 miles 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, is about, 5 miles) -> 5 miles (13612ms) Who was Abraham Lincoln? games 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (games, played in, Lincoln) -> games (13194ms) Who was Abraham Lincoln? depression 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (depression, is making strides right here in, Lincoln) -> depression (12927ms) Who was Abraham Lincoln? a truck 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln avenue, was brought about by, a truck) -> a truck (12753ms) Who was Abraham Lincoln? Plots 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (Plots, To Kill, Lincoln) -> Plots (13049ms) Who was Abraham Lincoln? Thomas Paine 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (Thomas Paine, Influenced, Abraham Lincoln) -> Thomas Paine (13417ms) Who was Abraham Lincoln? the first Bass club 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (the first Bass club, formed in, Lincoln) -> the first Bass club (13212ms) Who was Abraham Lincoln? drawings 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (drawings, have been created in, Lincoln?s image) -> drawings (13532ms) Who was Abraham Lincoln? events 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (events, helped, Lincoln) -> events (13573ms) Who was Abraham Lincoln? more communication 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln Center, was about, more communication) -> more communication (12472ms) Who was Abraham Lincoln? a jury 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (a jury, finds, Lincoln) -> a jury (12753ms) Who was Abraham Lincoln? Colston 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Colston, also helped, Lincoln) -> Colston (12775ms) Who was Abraham Lincoln? a Euro-American innovator 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (a Euro-American innovator, helped set, the Lincolns ? first son) -> a Euro-American innovator (13621ms) Who was Abraham Lincoln? United States of America 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (United States of America, People born here, Evelyn Lincoln) -> United States of America (13583ms) Who was Abraham Lincoln? Bill T. Jones 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (Bill T. Jones, describes his relationship to, Lincoln) -> Bill T. Jones (13703ms) Who was Abraham Lincoln? Baker ?s departure 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, cause, lincoln) -> (Baker ?s departure, has caused controversy in, Lincoln) -> Baker ?s departure (13431ms) Who was Abraham Lincoln? modern Keel Avenue 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be name of, lincoln) -> (modern Keel Avenue, was given the name of, the county?Lincoln) -> modern Keel Avenue (13630ms) Who was Abraham Lincoln? Christopher Maloney 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Christopher Maloney, play, Lincoln) -> Christopher Maloney (12753ms) Who was Abraham Lincoln? Mr. Chase 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, cause, lincoln) -> (Mr. Chase, caused, Mr. Lincoln considerable embarrassment) -> Mr. Chase (13194ms) Who was Abraham Lincoln? Tom Warburton 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Tom Warburton, Fictional Characters Created, Cree Lincoln) -> Tom Warburton (13519ms) Who was Abraham Lincoln? the dam 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (the dam, was developed by, Lincoln County) -> the dam (12707ms) Who was Abraham Lincoln? the Outer Banks 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (the Outer Banks, helped accomplish, President Lincoln) -> the Outer Banks (13639ms) Who was Abraham Lincoln? routines 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (routines, Help, others Lincoln) -> routines (12730ms) Who was Abraham Lincoln? The Pixies 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (The Pixies, played in, Lincoln) -> The Pixies (13177ms) Who was Abraham Lincoln? One word 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, define, lincoln) -> (One word, clearly defines, Abraham Lincoln) -> One word (13327ms) Who was Abraham Lincoln? Rome 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Rome, was the instigator of, Lincoln) -> Rome (13311ms) Who was Abraham Lincoln? The MKT 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (The MKT, really does put, Lincoln) -> The MKT (13417ms) Who was Abraham Lincoln? Szilva 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Szilva, went on to create, a Big Lincoln Cent) -> Szilva (13141ms) Who was Abraham Lincoln? Griffith 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (Griffith, describes, Lincoln) -> Griffith (12969ms) Who was Abraham Lincoln? Winston-Salem 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Winston-Salem, People born here, Lincoln Broyhill) -> Winston-Salem (13068ms) Who was Abraham Lincoln? The victories 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (The victories, helped, Lincoln) -> The victories (13141ms) Who was Abraham Lincoln? Tubman 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (Tubman, seeks to influence, President Abraham Lincoln) -> Tubman (13583ms) Who was Abraham Lincoln? 11 people 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (11 people, were killed in, Lincoln) -> 11 people (13621ms) Who was Abraham Lincoln? Sandel 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (Sandel, finds in, Lincoln) -> Sandel (13656ms) Who was Abraham Lincoln? The first one 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (The first one, is of, Lincoln) -> The first one (13105ms) Who was Abraham Lincoln? Lehmann 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, date, lincoln) -> (Lehmann, got a date with, Lincoln Continental brass) -> Lehmann (12776ms) Who was Abraham Lincoln? Rockingham County 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Rockingham County, People born here, Thomas Lincoln) -> Rockingham County (13402ms) Who was Abraham Lincoln? Texas A&M 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Texas A&M, will play in, Lincoln) -> Texas A&M (13673ms) Who was Abraham Lincoln? CARY ? Brett Malmstrom 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (CARY ? Brett Malmstrom, helped, North Lincoln) -> CARY ? Brett Malmstrom (13519ms) Who was Abraham Lincoln? The urinals 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, size be, lincoln) -> (The urinals, are the size of, Abraham Lincoln) -> The urinals (13703ms) Who was Abraham Lincoln? the coming year 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (the coming year, should show the influence of, Mr. Lincoln) -> the coming year (12775ms) Who was Abraham Lincoln? 1860 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (1860, elected, Abraham Lincoln president) -> 1860 (13543ms) Who was Abraham Lincoln? almost a third currency 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (almost a third currency, was created by, Abe Lincoln) -> almost a third currency (13564ms) Who was Abraham Lincoln? a beating 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (a beating, killed, President Lincoln) -> a beating (13612ms) Who was Abraham Lincoln? the collection plate 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (the collection plate, finds, the Lincoln) -> the collection plate (13602ms) Who was Abraham Lincoln? same formats 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (same formats, did, Lincoln) -> same formats (13612ms) Who was Abraham Lincoln? best 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (best, describes, Lincoln Park) -> best (13574ms) Who was Abraham Lincoln? hate 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (hate, did, Lincoln) -> hate (13245ms) Who was Abraham Lincoln? the frequency 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (the frequency, did, Lincoln) -> the frequency (13602ms) Who was Abraham Lincoln? A fair parallel 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (A fair parallel, would be the influence of, Abraham Lincoln) -> A fair parallel (12947ms) Who was Abraham Lincoln? Emmet 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (Emmet, influenced, Lincoln) -> Emmet (13593ms) Who was Abraham Lincoln? Massachusetts 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (Massachusetts, Find, the perfect Used Lincoln) -> Massachusetts (13402ms) Who was Abraham Lincoln? November 1880 Garrett 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (November 1880 Garrett, was elected, Lincoln County Sheriff) -> November 1880 Garrett (12864ms) Who was Abraham Lincoln? Washington DC 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (Washington DC, find, the Lincoln Memorial) -> Washington DC (13647ms) Who was Abraham Lincoln? LA 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (LA, Find, the perfect New Lincoln) -> LA (13553ms) Who was Abraham Lincoln? The automaker 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (The automaker, created, a separate Lincoln team) -> The automaker (13602ms) Who was Abraham Lincoln? John Wilkes Booth 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (John Wilkes Booth, killed, Abraham Lincoln) -> John Wilkes Booth (13621ms) Who was Abraham Lincoln? help 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, certainly have n?t been shy about asking for, help) -> help (12906ms) Who was Abraham Lincoln? lead 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, discover, lincoln) -> (lead, was discovered at, the Lincoln Mine) -> lead (12885ms) Who was Abraham Lincoln? Northern Democrats 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, was also concerned about, Northern Democrats) -> Northern Democrats (13505ms) Who was Abraham Lincoln? Charlie Hien 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (Charlie Hien, found pictures of, Lincoln) -> Charlie Hien (13564ms) Who was Abraham Lincoln? Union Plaza 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Union Plaza, create, more opportunities for growth in Lincoln) -> Union Plaza (13621ms) Who was Abraham Lincoln? Jr. 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Jr., is the author of, Lincoln) -> Jr. (13593ms) Who was Abraham Lincoln? Christ Church 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (Christ Church, elected a fellow of, Lincoln College) -> Christ Church (12970ms) Who was Abraham Lincoln? Nathan Hale 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (Nathan Hale, did, Lincoln) -> Nathan Hale (13505ms) Who was Abraham Lincoln? strong women 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (strong women, helped form, Lincoln) -> strong women (13638ms) Who was Abraham Lincoln? Newt 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (Newt, did read, Lincoln) -> Newt (13011ms) Who was Abraham Lincoln? the civil war 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (the civil war, did, Lincoln) -> the civil war (13177ms) Who was Abraham Lincoln? Hospitals and care homes 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (Hospitals and care homes, find, the Lincoln ideal) -> Hospitals and care homes (13553ms) Who was Abraham Lincoln? American Presidents Blog 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (American Presidents Blog, Did, Lincoln) -> American Presidents Blog (13492ms) Who was Abraham Lincoln? the occasion 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, have idea of, $x) -> (Lincoln, had better grasped ?the central idea of, the occasion) -> the occasion (13647ms) Who was Abraham Lincoln? Lewis Lehrman 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Lewis Lehrman, created, The Lincoln Institute) -> Lewis Lehrman (13656ms) Who was Abraham Lincoln? Thorp 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Thorp, created the only artist?s portrait of, Lincoln) -> Thorp (12776ms) Who was Abraham Lincoln? the town ?s sentiments 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (the town ?s sentiments, may have helped, Lincoln) -> the town ?s sentiments (13647ms) Who was Abraham Lincoln? saline wetlands 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (saline wetlands, played a key role in, Lincoln) -> saline wetlands (12504ms) Who was Abraham Lincoln? Blessings 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, date be, lincoln) -> (Blessings, was the date on, the first Lincoln cent) -> Blessings (13673ms) Who was Abraham Lincoln? Frank Lloyd Wright?s son John 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, invent, lincoln) -> (Frank Lloyd Wright?s son John, invented, Lincoln Logs) -> Frank Lloyd Wright?s son John (12472ms) Who was Abraham Lincoln? The president 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (The president, re-created, Lincoln) -> The president (12683ms) Who was Abraham Lincoln? Lincoln 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Lincoln, is a member of, numerous Lincoln) -> Lincoln (13123ms) Who was Abraham Lincoln? Not one cheap joke or anecdote 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (Not one cheap joke or anecdote, did, Lincoln) -> Not one cheap joke or anecdote (13228ms) Who was Abraham Lincoln? the wisdom 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, hate, lincoln) -> (the wisdom, hated, Lincoln) -> the wisdom (13030ms) Who was Abraham Lincoln? a major Formula SAE competition 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, happen in, lincoln) -> (a major Formula SAE competition, will happen in, Lincoln) -> a major Formula SAE competition (12842ms) Who was Abraham Lincoln? Transcontinental Railroad 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, initiate, lincoln) -> (Transcontinental Railroad, initiated by, Abraham Lincoln) -> Transcontinental Railroad (13068ms) Who was Abraham Lincoln? Tom 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Tom, is a member of, the Lincoln Center Directors Lab) -> Tom (13583ms) Who was Abraham Lincoln? Expansion move 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Expansion move, creates new jobs at, Gateway Park Lincoln) -> Expansion move (13357ms) Who was Abraham Lincoln? The political party 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (The political party, had elected, Lincoln) -> The political party (13372ms) Who was Abraham Lincoln? Treasurer 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Treasurer, is a member of, the Lincoln Forum) -> Treasurer (12798ms) Who was Abraham Lincoln? the German American Turners 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (the German American Turners, formed, Lincoln) -> the German American Turners (13011ms) Who was Abraham Lincoln? the reactionary part 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, was particularly concerned about, the reactionary part) -> the reactionary part (13464ms) Who was Abraham Lincoln? Denzel Washington 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Denzel Washington, plays, Lincoln) -> Denzel Washington (13593ms) Who was Abraham Lincoln? An actor 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (An actor, apparently influenced, Lincoln) -> An actor (12990ms) Who was Abraham Lincoln? 15 miles 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, is about, 15 miles) -> 15 miles (12885ms) Who was Abraham Lincoln? the speed 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, date, lincoln) -> (the speed, dating, lincoln) -> the speed (13505ms) Who was Abraham Lincoln? 100 years 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln Hall, is just about, 100 years) -> 100 years (13519ms) Who was Abraham Lincoln? The pic 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be story of, lincoln) -> (The pic, is the fictionalized story of, Abraham Lincoln) -> The pic (12906ms) Who was Abraham Lincoln? Vampire Hunter 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be story of, lincoln) -> (Vampire Hunter, is the unique story of, Abraham Lincoln?s life) -> Vampire Hunter (13688ms) Who was Abraham Lincoln? San Francisco 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (San Francisco, People born here, Lincoln Steffens) -> San Francisco (13656ms) Who was Abraham Lincoln? the role photography 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (the role photography, played in, Lincoln) -> the role photography (13123ms) Who was Abraham Lincoln? Remi 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Remi, [is] bishop of, Lincoln) -> Remi (13311ms) Who was Abraham Lincoln? President Obama 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, inspired, lincoln) -> (President Obama, is so inspired by, Lincoln) -> President Obama (13492ms) Who was Abraham Lincoln? Holbeach 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Holbeach, is the University of, Lincoln) -> Holbeach (13387ms) Who was Abraham Lincoln? Brian Kaiser 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Brian Kaiser, started here in, Lincoln) -> Brian Kaiser (12597ms) Who was Abraham Lincoln? Only 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (Only, then does, Lincoln) -> Only (12885ms) Who was Abraham Lincoln? a campaign 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (a campaign, re-elected, Abraham Lincoln) -> a campaign (13583ms) Who was Abraham Lincoln? the gun 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (the gun, killed, Lincoln) -> the gun (12947ms) Who was Abraham Lincoln? a block 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, is only about, a block) -> a block (13630ms) Who was Abraham Lincoln? Klaxons 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Klaxons, play, Lincoln Hall) -> Klaxons (12949ms) Who was Abraham Lincoln? The raid 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (The raid, also helped elect, Abraham Lincoln) -> The raid (13478ms) Who was Abraham Lincoln? Gever 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, inspired, lincoln) -> (Gever, is inspired to try, a new Lincoln-Log style notch+lash) -> Gever (13630ms) Who was Abraham Lincoln? men 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (men, do, ( Lincoln) -> men (13704ms) Who was Abraham Lincoln? early tragedy 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (early tragedy, helped prepare, Lincoln) -> early tragedy (13402ms) Who was Abraham Lincoln? Scissors 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (Scissors, have been developed at, Lincoln Center Theatre) -> Scissors (13688ms) Who was Abraham Lincoln? Ira 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Ira, was a member of, Lincoln Park United Methodist Church) -> Ira (13593ms) Who was Abraham Lincoln? St. Louis 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (St. Louis, People born here, Lincoln Kilpatrick) -> St. Louis (13583ms) Who was Abraham Lincoln? Theodore Parker 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (Theodore Parker, Influenced, Abraham Lincoln) -> Theodore Parker (13519ms) Who was Abraham Lincoln? a family acting troupe 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (a family acting troupe, played, Lincoln regularly) -> a family acting troupe (12683ms) Who was Abraham Lincoln? Brisbane 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Brisbane, People born here, Lincoln Lewis) -> Brisbane (13553ms) Who was Abraham Lincoln? Abe Lincoln 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be story of, lincoln) -> (Abe Lincoln, is the story of, Lincoln) -> Abe Lincoln (12683ms) Who was Abraham Lincoln? Central Falls 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Central Falls, People born here, Lincoln Almond) -> Central Falls (13593ms) Who was Abraham Lincoln? the lavishly funded challenge 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (the lavishly funded challenge, did force, Lincoln) -> the lavishly funded challenge (13159ms) Who was Abraham Lincoln? The War 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (The War, as did confidence in, Lincoln) -> The War (13492ms) Who was Abraham Lincoln? The Clientele 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (The Clientele, played, Lincoln Hall) -> The Clientele (13141ms) Who was Abraham Lincoln? law partner William Herndon 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (law partner William Herndon, influenced, Lincoln) -> law partner William Herndon (13681ms) Who was Abraham Lincoln? secessionists 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (secessionists, would kill, Lincoln) -> secessionists (13532ms) Who was Abraham Lincoln? Guiding Questions 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (Guiding Questions, did, Lincoln) -> Guiding Questions (13630ms) Who was Abraham Lincoln? How many slaves 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (How many slaves, did own, Lincoln) -> How many slaves (13553ms) Who was Abraham Lincoln? 3 miles 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (the Lincoln, is about, 3 miles) -> 3 miles (13212ms) Who was Abraham Lincoln? first game 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (first game, was n?t played in, Lincoln) -> first game (13519ms) Who was Abraham Lincoln? the British soldiers 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (the British soldiers, were killed in, Lincoln) -> the British soldiers (13519ms) Who was Abraham Lincoln? iATN Member Directory 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (iATN Member Directory, Find, a Repair Shop Lincoln) -> iATN Member Directory (13583ms) Who was Abraham Lincoln? efficiency 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (?Lincoln C, is about, efficiency) -> efficiency (12906ms) Who was Abraham Lincoln? LAMB 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (LAMB, Did, Lincoln) -> LAMB (13212ms) Who was Abraham Lincoln? The museum 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (The museum, will create a DVD of, Lincoln) -> The museum (13049ms) Who was Abraham Lincoln? machinist Henry Leland 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (machinist Henry Leland, created, Cadillac and Lincoln) -> machinist Henry Leland (13105ms) Who was Abraham Lincoln? medieval philosophy 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (medieval philosophy, so did, Lincoln) -> medieval philosophy (13228ms) Who was Abraham Lincoln? Japanese sushi chefs 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, discover, lincoln) -> (Japanese sushi chefs, discovered, Port Lincoln) -> Japanese sushi chefs (13492ms) Who was Abraham Lincoln? Be part 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Be part, help make, Lincoln) -> Be part (13621ms) Who was Abraham Lincoln? Republican pollster OnMessage 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (Republican pollster OnMessage, finds, Rep. Lincoln Davis) -> Republican pollster OnMessage (13464ms) Who was Abraham Lincoln? Terry Thompson 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (Terry Thompson, was elected, Lincoln County Commissioner) -> Terry Thompson (13583ms) Who was Abraham Lincoln? Room d?cor 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, inspire, lincoln) -> (Room d?cor, is inspired by, the Lincoln Center) -> Room d?cor (13327ms) Who was Abraham Lincoln? Seth Grahame Smith 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Seth Grahame Smith, created, Abraham Lincoln: Vampire Hunter) -> Seth Grahame Smith (13194ms) Who was Abraham Lincoln? the Executive Mansion 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (the Executive Mansion, helped, Mary Lincoln cover) -> the Executive Mansion (12659ms) Who was Abraham Lincoln? New York City ?s 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (New York City ?s, newly created, Lincoln Center Theater) -> New York City ?s (13505ms) Who was Abraham Lincoln? SPSS 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (SPSS, will help, Lincoln Financial Distributors) -> SPSS (13011ms) Who was Abraham Lincoln? Sergeant Fedon 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Sergeant Fedon, is a native of, Lincoln) -> Sergeant Fedon (13593ms) Who was Abraham Lincoln? U.S. President Abraham Lincoln 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (U.S. President Abraham Lincoln, is a composite of, Lincoln) -> U.S. President Abraham Lincoln (13159ms) Who was Abraham Lincoln? Idustries 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Idustries, has been a long time member of, the Lincoln Chamber) -> Idustries (12629ms) Who was Abraham Lincoln? the president 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (the president, sought here is, Lincoln) -> the president (13194ms) Who was Abraham Lincoln? Fiske 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Fiske, was a member of, the Park Liberty Lincoln County) -> Fiske (12842ms) Who was Abraham Lincoln? any other President 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Abraham Lincoln, there are about, any other President) -> any other President (12927ms) Who was Abraham Lincoln? the God 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (the God, described by, Abraham Lincoln) -> the God (12566ms) Who was Abraham Lincoln? Edgar Lee Masters 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (Edgar Lee Masters, Influenced By, Abraham Lincoln) -> Edgar Lee Masters (13357ms) Who was Abraham Lincoln? A Man 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (A Man, ? create, your own Lincoln hat) -> A Man (13262ms) Who was Abraham Lincoln? the actor 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (the actor, playing, Lincoln) -> the actor (13673ms) Who was Abraham Lincoln? 30 % 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln Dollars, were also about, 30 %) -> 30 % (13612ms) Who was Abraham Lincoln? John 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (John, found, Lincoln sitting) -> John (13696ms) Who was Abraham Lincoln? DDL 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (DDL, is playing, Lincoln) -> DDL (13417ms) Who was Abraham Lincoln? 25 miles 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, is situated about, 25 miles) -> 25 miles (13177ms) Who was Abraham Lincoln? Enfield 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Enfield, People born here, Lincoln Steen) -> Enfield (12597ms) Who was Abraham Lincoln? The Weed 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (The Weed, killed, Lincoln?s mother) -> The Weed (12947ms) Who was Abraham Lincoln? Mary Todd 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (Mary Todd, Killed, Lincoln) -> Mary Todd (12820ms) Who was Abraham Lincoln? Wilbur 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (Wilbur, killed, Abraham Lincoln) -> Wilbur (13105ms) Who was Abraham Lincoln? NAPT staff 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (NAPT staff, create for, Lincoln?s community radio station) -> NAPT staff (13553ms) Who was Abraham Lincoln? North Platte 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (North Platte, is a member of, the Lincoln County Farm Bureau) -> North Platte (13688ms) Who was Abraham Lincoln? the MKT crossover 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (the MKT crossover, will find its way to, Lincoln) -> the MKT crossover (12842ms) Who was Abraham Lincoln? Chicago 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Chicago, People born here, Lincoln Schatz) -> Chicago (13630ms) Who was Abraham Lincoln? 35 years 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, was about, 35 years) -> 35 years (13212ms) Who was Abraham Lincoln? an ordinary guy 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (an ordinary guy, found, the Lincoln Fry) -> an ordinary guy (13194ms) Who was Abraham Lincoln? designer Lela Rose 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (designer Lela Rose, created, a stunning Lincoln Center portfolio) -> designer Lela Rose (13372ms) Who was Abraham Lincoln? ?The Futurity 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (?The Futurity, really helped, the Lincoln show entries) -> ?The Futurity (12775ms) Who was Abraham Lincoln? Illinois 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Illinois, is the Land of, Lincoln) -> Illinois (13464ms) Who was Abraham Lincoln? Anderson 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (Anderson, found out about, Lincoln) -> Anderson (13357ms) Who was Abraham Lincoln? Used Lincoln Cars 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (Used Lincoln Cars, Find, Lincoln parts and accessories Lincoln) -> Used Lincoln Cars (13311ms) Who was Abraham Lincoln? Wranglers 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (Wranglers, are impossible to find in, Lincoln) -> Wranglers (13564ms) Who was Abraham Lincoln? the artistic center 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (the artistic center, was developed around, Lincoln Center) -> the artistic center (13478ms) Who was Abraham Lincoln? Atlanta 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Atlanta, helped guarantee, Lincoln) -> Atlanta (13704ms) Who was Abraham Lincoln? Ortho-Bionomy 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (Ortho-Bionomy, was developed by, Dr. Arthur Lincoln Pauls) -> Ortho-Bionomy (13664ms) Who was Abraham Lincoln? on 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (on, otherwise develop property in, Lincoln County) -> on (13295ms) Who was Abraham Lincoln? the presses 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be story of, lincoln) -> (the presses, is the story of, the Lincoln Inaugural Train) -> the presses (13295ms) Who was Abraham Lincoln? The game 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (The game, was played at, Lincoln) -> The game (13357ms) Who was Abraham Lincoln? waste 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (waste, are disposed of in, Lincoln) -> waste (12798ms) Who was Abraham Lincoln? ALO 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (ALO, Did, Lincoln) -> ALO (13402ms) Who was Abraham Lincoln? the lush campus 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (the lush campus, find, Lincoln Hall) -> the lush campus (13464ms) Who was Abraham Lincoln? Carmichael 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Carmichael, People born here, Mike Lincoln) -> Carmichael (12798ms) Who was Abraham Lincoln? The street pastors scheme 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (The street pastors scheme, has helped, Lincoln) -> The street pastors scheme (12472ms) Who was Abraham Lincoln? a possible site 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (a possible site, was found in, Lincoln) -> a possible site (13105ms) Who was Abraham Lincoln? A girl 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, discover, lincoln) -> (A girl, discovers many things about, Abraham Lincoln) -> A girl (13229ms) Who was Abraham Lincoln? the Christian agenda 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, was skeptical about, the Christian agenda) -> the Christian agenda (13123ms) Who was Abraham Lincoln? the national legend 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (the national legend, has been created about, Lincoln) -> the national legend (13696ms) Who was Abraham Lincoln? everybody 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (everybody, has to find, Lincoln) -> everybody (13478ms) Who was Abraham Lincoln? the maps 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (the maps, form the basis for, several Lincoln Institute) -> the maps (12864ms) Who was Abraham Lincoln? a sponsor 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (a sponsor, held here in, Lincoln) -> a sponsor (13446ms) Who was Abraham Lincoln? New York City 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (New York City, People born here, Lincoln Gordon) -> New York City (13583ms) Who was Abraham Lincoln? Byzantine documents 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Byzantine documents, was the character of, Lincoln) -> Byzantine documents (13445ms) Who was Abraham Lincoln? The Nebraska State Penitentiary 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (The Nebraska State Penitentiary, was then south of, Lincoln) -> The Nebraska State Penitentiary (13543ms) Who was Abraham Lincoln? ?growth ? 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (?growth ?, really describe, Lincoln) -> ?growth ? (13639ms) Who was Abraham Lincoln? Washington 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, discover, lincoln) -> (Washington, discover, the Lincoln and Howard theatres) -> Washington (13656ms) Who was Abraham Lincoln? Leon 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, race be, lincoln) -> (Leon, is racing for, Lincoln-based team AP Kawasaki) -> Leon (12472ms) Who was Abraham Lincoln? March 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (March, found, Lincoln leading Griffin) -> March (13431ms) Who was Abraham Lincoln? the U.S. Mint 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (the U.S. Mint, has developed a new arsenal of, Lincoln pennies) -> the U.S. Mint (13656ms) Who was Abraham Lincoln? action 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, was about, action) -> action (13505ms) Who was Abraham Lincoln? more Trustee David McMahon 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (more Trustee David McMahon, was elected to, the Lincoln Board) -> more Trustee David McMahon (13681ms) Who was Abraham Lincoln? the conflicts 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, define, lincoln) -> (the conflicts, defined, Lincolns time) -> the conflicts (13681ms) Who was Abraham Lincoln? the 6th day 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (the 6th day, elected, Abraham Lincoln) -> the 6th day (13696ms) Who was Abraham Lincoln? drama students 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (drama students, form the University of, Lincoln) -> drama students (13704ms) Who was Abraham Lincoln? the GOP 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (the GOP, was the party of, Lincoln) -> the GOP (13553ms) Who was Abraham Lincoln? Seitzer 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Seitzer, was a member of, Lincoln Community High School) -> Seitzer (13105ms) Who was Abraham Lincoln? BOCES 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (BOCES, helped decorate, Lincoln Park) -> BOCES (13630ms) Who was Abraham Lincoln? Richard?s first successful bronze 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Richard?s first successful bronze, was of, ?Lincoln?) -> Richard?s first successful bronze (13583ms) Who was Abraham Lincoln? February 19 , 2012 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (February 19 , 2012, Killing, Lincoln) -> February 19 , 2012 (13342ms) Who was Abraham Lincoln? nearby Cranwell and Caroline 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (nearby Cranwell and Caroline, found a job in, Lincoln) -> nearby Cranwell and Caroline (13342ms) Who was Abraham Lincoln? more than one occasion 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (more than one occasion, found, Lincoln poring) -> more than one occasion (13583ms) Who was Abraham Lincoln? Canberra 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Canberra, People born here, Lincoln Withers) -> Canberra (13123ms) Who was Abraham Lincoln? Sharon 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be involve in, lincoln) -> (Sharon, is actively involved in, Lincoln Rotary Club 14) -> Sharon (13431ms) Who was Abraham Lincoln? 74 Moulton College Moulton College 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (74 Moulton College Moulton College, played, Lincoln College) -> 74 Moulton College Moulton College (13327ms) Who was Abraham Lincoln? a glass ceiling 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (a glass ceiling, will help, Lincoln break through) -> a glass ceiling (13673ms) Who was Abraham Lincoln? Nebraska 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Nebraska, has been a member of, the Lincoln business community) -> Nebraska (13372ms) Who was Abraham Lincoln? Hingham 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Hingham, People born here, Samuel Lincoln) -> Hingham (13011ms) Who was Abraham Lincoln? Sally 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be involve in, lincoln) -> (Sally, was involved in, Lincoln Center Program) -> Sally (12730ms) Who was Abraham Lincoln? Matthew Brumlow 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Matthew Brumlow, will play, Lincoln) -> Matthew Brumlow (12566ms) Who was Abraham Lincoln? If Booth 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (If Booth, killed, Lincoln) -> If Booth (13647ms) Who was Abraham Lincoln? The victory 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (The victory, greatly helps, President Lincoln) -> The victory (13372ms) Who was Abraham Lincoln? No news 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (No news, found for, Lincoln) -> No news (13543ms) Who was Abraham Lincoln? gun 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (gun, was used to kill, Lincoln) -> gun (13647ms) Who was Abraham Lincoln? the guests 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (the guests, did, Lincoln Lincoln Lincoln) -> the guests (13327ms) Who was Abraham Lincoln? Larson 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Larson, was a member of, Lincoln Christian) -> Larson (13295ms) Who was Abraham Lincoln? Lincolnshire food 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Lincolnshire food, has helped turn, Lincoln) -> Lincolnshire food (12683ms) Who was Abraham Lincoln? Stephen King 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Stephen King, plays, Lincoln) -> Stephen King (13647ms) Who was Abraham Lincoln? RT @ CityOfLincoln 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (RT @ CityOfLincoln, Help Keep, Lincoln & Lancaster County Clean) -> RT @ CityOfLincoln (12842ms) Who was Abraham Lincoln? The DOA 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (The DOA, was created under, President Lincoln) -> The DOA (13177ms) Who was Abraham Lincoln? Lincoln Real Estate 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (Lincoln Real Estate, Find, Lincoln Homes) -> Lincoln Real Estate (13612ms) Who was Abraham Lincoln? the vampire 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (the vampire, kills, Lincolns) -> the vampire (13417ms) Who was Abraham Lincoln? Riis 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, inspire, lincoln) -> (Riis, inspired, Lincoln Steffens) -> Riis (13574ms) Who was Abraham Lincoln? the same two men 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (the same two men, created, the Lincoln Memorial) -> the same two men (13087ms) Who was Abraham Lincoln? the side 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (the side, thus helped, Lincoln) -> the side (13681ms) Who was Abraham Lincoln? agriculture 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, was unsentimental about, agriculture) -> agriculture (13612ms) Who was Abraham Lincoln? Davis 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Davis, helped, Abraham Lincoln) -> Davis (13543ms) Who was Abraham Lincoln? The Philadelphi derringer 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (The Philadelphi derringer, killed, President Lincoln) -> The Philadelphi derringer (13464ms) Who was Abraham Lincoln? ArtScene visitors 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, happen in, lincoln) -> (ArtScene visitors, 's happening in, Lincoln) -> ArtScene visitors (13342ms) Who was Abraham Lincoln? multi-disciplined attorneys 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (multi-disciplined attorneys, is a member of, the Lincoln Chamber) -> multi-disciplined attorneys (13505ms) Who was Abraham Lincoln? Profile Christa 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Profile Christa, is a member of, Lincoln) -> Profile Christa (13194ms) Who was Abraham Lincoln? a certain John Wilkes Booth 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (a certain John Wilkes Booth, killed, Abraham Lincoln) -> a certain John Wilkes Booth (13194ms) Who was Abraham Lincoln? Former Pennsylvania Governor 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, cause, lincoln) -> (Former Pennsylvania Governor, caused, Mr. Lincoln much anxiety) -> Former Pennsylvania Governor (13492ms) Who was Abraham Lincoln? American luxury 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (? Lincoln, is about, American luxury) -> American luxury (13681ms) Who was Abraham Lincoln? a pizza sauce 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (a pizza sauce, made right here in, Lincoln) -> a pizza sauce (13446ms) Who was Abraham Lincoln? an attorney 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (an attorney, had developed a relationship with, Mr. Lincoln) -> an attorney (13141ms) Who was Abraham Lincoln? the social scene 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (the social scene, is found around, Lincoln) -> the social scene (13327ms) Who was Abraham Lincoln? Katia 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Katia, played, Robert Lincoln) -> Katia (13696ms) Who was Abraham Lincoln? No results 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (No results, found University of, Lincoln) -> No results (13553ms) Who was Abraham Lincoln? stinkin? Booth 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (stinkin? Booth, did to, Lincoln) -> stinkin? Booth (13704ms) Who was Abraham Lincoln? the party 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (the party, was the party of, Lincoln) -> the party (13402ms) Who was Abraham Lincoln? Penn Mullin 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, happen in, lincoln) -> (Penn Mullin, happened in, Lincolns bedroom) -> Penn Mullin (13030ms) Who was Abraham Lincoln? Saint-Gaudens 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Saint-Gaudens, created for, Lincoln Park) -> Saint-Gaudens (13519ms) Who was Abraham Lincoln? Tulsa 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Tulsa, People born here, Todd Lincoln) -> Tulsa (12707ms) Who was Abraham Lincoln? Churchill 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (Churchill, did, Lincoln) -> Churchill (13612ms) Who was Abraham Lincoln? the wall 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (the wall, was a picture of, Lincoln) -> the wall (12798ms) Who was Abraham Lincoln? the Committee 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (the Committee, was a summary of, Lincoln) -> the Committee (13464ms) Who was Abraham Lincoln? the bill 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (the bill, created, Lincoln county) -> the bill (13532ms) Who was Abraham Lincoln? one such speech 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (one such speech, helped turn, Lincoln) -> one such speech (13602ms) Who was Abraham Lincoln? the small suburb 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln Park, are talking about, the small suburb) -> the small suburb (12566ms) Who was Abraham Lincoln? the extreme Republicans 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (the extreme Republicans, did vote for, Lincoln) -> the extreme Republicans (12820ms) Who was Abraham Lincoln? The MC5 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (The MC5, formed in, Lincoln Park) -> The MC5 (12753ms) Who was Abraham Lincoln? David 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (David, was a member of, the Lincoln Center Directors) -> David (13123ms) Who was Abraham Lincoln? the Republicans 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (the Republicans, elected, Lincoln) -> the Republicans (13431ms) Who was Abraham Lincoln? Fido 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be name of, lincoln) -> (Fido, was the name of, Abraham Lincoln?s dog) -> Fido (13478ms) Who was Abraham Lincoln? The comments 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (The comments, here are similar to, Lincoln) -> The comments (13505ms) Who was Abraham Lincoln? Warren 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (Warren, was elected, Lincoln County Superior Court judge) -> Warren (12629ms) Who was Abraham Lincoln? Pylon 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (Pylon, is developed by, Richard Lincoln) -> Pylon (13245ms) Who was Abraham Lincoln? deacon 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (deacon, elected fellow of, Lincoln College) -> deacon (13177ms) Who was Abraham Lincoln? the second campaign 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (the second campaign, was formed at, Lincoln) -> the second campaign (12597ms) Who was Abraham Lincoln? Robert Moses 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Robert Moses, created for, Lincoln Center) -> Robert Moses (12683ms) Who was Abraham Lincoln? Friedrich Schiller 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Friedrich Schiller, helped elect, Abraham Lincoln) -> Friedrich Schiller (13431ms) Who was Abraham Lincoln? a potential Dred Scott II decision 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, was worried about, a potential Dred Scott II decision) -> a potential Dred Scott II decision (12927ms) Who was Abraham Lincoln? California 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (California, helped elect, Abraham Lincoln) -> California (12629ms) Who was Abraham Lincoln? Students 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (Students, did, Lincoln) -> Students (13564ms) Who was Abraham Lincoln? awareness 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (awareness, did, Lincoln) -> awareness (12864ms) Who was Abraham Lincoln? The 4.4 L engine 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (The 4.4 L engine, will likely find its way to, Lincoln) -> The 4.4 L engine (13342ms) Who was Abraham Lincoln? Young Lord Carlos Flores 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (Young Lord Carlos Flores, described life in, Lincoln Park) -> Young Lord Carlos Flores (13279ms) Who was Abraham Lincoln? The jury 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (The jury, found, Lincolns) -> The jury (13245ms) Who was Abraham Lincoln? patriotic basis Political losers 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (patriotic basis Political losers, elected, Lincoln 1860) -> patriotic basis Political losers (12990ms) Who was Abraham Lincoln? the Black Hawk War form 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (the Black Hawk War form, elect, Lincoln captain) -> the Black Hawk War form (13030ms) Who was Abraham Lincoln? Pennsylvania 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (Pennsylvania, should re-elect, President Abraham Lincoln) -> Pennsylvania (13327ms) Who was Abraham Lincoln? Kievman 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Kievman, is a member of, the Lincoln Center Directors Lab) -> Kievman (12990ms) Who was Abraham Lincoln? the National Archives 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (the National Archives, had found, Lincoln) -> the National Archives (13602ms) Who was Abraham Lincoln? NAS 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (NAS, was created by, President Lincoln) -> NAS (13664ms) Who was Abraham Lincoln? office 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (office, did, Lincoln) -> office (12597ms) Who was Abraham Lincoln? The Berry Farm 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (The Berry Farm, is located south of, Lincoln) -> The Berry Farm (13553ms) Who was Abraham Lincoln? OXYCONTIN 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, cause, lincoln) -> (OXYCONTIN, may cause, immunocompromised lincoln) -> OXYCONTIN (13357ms) Who was Abraham Lincoln? desperation one final question 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (desperation one final question, killed, Abraham Lincoln) -> desperation one final question (13327ms) Who was Abraham Lincoln? 150 yards 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, is about, 150 yards) -> 150 yards (12707ms) Who was Abraham Lincoln? New York Police Superintendent 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (New York Police Superintendent, played a role in, LINCOLN) -> New York Police Superintendent (12927ms) Who was Abraham Lincoln? Notre Dame 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Notre Dame, played in, Lincoln) -> Notre Dame (13087ms) Who was Abraham Lincoln? NEBRASKA 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (NEBRASKA, is the capital city of the state or province, lincoln) -> NEBRASKA (13279ms) Who was Abraham Lincoln? central Kentucky 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (central Kentucky, was formed from, Lincoln) -> central Kentucky (13574ms) Who was Abraham Lincoln? Nye 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (Nye, was formed into, Lincoln County) -> Nye (13532ms) Who was Abraham Lincoln? an unstable egotist 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, hate, lincoln) -> (an unstable egotist, hated, Lincoln) -> an unstable egotist (13573ms) Who was Abraham Lincoln? Cheshunt 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Cheshunt, People born here, Greg Lincoln) -> Cheshunt (13564ms) Who was Abraham Lincoln? Lincoln SUV 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (Lincoln SUV, Find, Lincoln parts and accessories Lincoln) -> Lincoln SUV (13387ms) Who was Abraham Lincoln? ethics 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Abraham Lincoln, was once asked about, ethics) -> ethics (13123ms) Who was Abraham Lincoln? Guelph 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Guelph, People born here, Lincoln Goldie) -> Guelph (13492ms) Who was Abraham Lincoln? Eddy County 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Eddy County, was created from, Lincoln County) -> Eddy County (13630ms) Who was Abraham Lincoln? Lithonia 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Lithonia, People born here, Charley Lincoln) -> Lithonia (13177ms) Who was Abraham Lincoln? exactly 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, happen in, lincoln) -> (exactly, is happening in, Lincoln) -> exactly (13639ms) Who was Abraham Lincoln? Boeteng 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Boeteng, also played basketball for, Lincoln) -> Boeteng (13402ms) Who was Abraham Lincoln? the derringer 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (the derringer, killed, Lincoln) -> the derringer (13696ms) Who was Abraham Lincoln? Lincoln Grange 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (Lincoln Grange, was elected secretary of, Lincoln Pomona Grange) -> Lincoln Grange (13630ms) Who was Abraham Lincoln? Frank Lloyd Wright?s son 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, invent, lincoln) -> (Frank Lloyd Wright?s son, invented, Lincoln Logs) -> Frank Lloyd Wright?s son (12566ms) Who was Abraham Lincoln? he?s 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (he?s, formed, The Lincoln Club) -> he?s (12864ms) Who was Abraham Lincoln? the Missouri Compromise 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (the Missouri Compromise, helped draw, Lincoln) -> the Missouri Compromise (13049ms) Who was Abraham Lincoln? a few women 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (a few women, helped determine, Mr. Lincoln) -> a few women (13387ms) Who was Abraham Lincoln? William 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (William, [is] bishop of, Lincoln) -> William (13532ms) Who was Abraham Lincoln? visitors 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (visitors, to form, a nuanced view of Lincoln) -> visitors (13212ms) Who was Abraham Lincoln? 3,000 people 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, is a small town with about, 3,000 people) -> 3,000 people (13543ms) Who was Abraham Lincoln? Henry Clay 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (Henry Clay, Influenced, Abraham Lincoln) -> Henry Clay (12659ms) Who was Abraham Lincoln? The conspirators 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (The conspirators, intended to kill, Lincoln) -> The conspirators (12597ms) Who was Abraham Lincoln? the audio dart master 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (the audio dart master, help out, the Lincoln Chapter) -> the audio dart master (13445ms) Who was Abraham Lincoln? survey 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (survey, finds, > Lincoln Institute) -> survey (13630ms) Who was Abraham Lincoln? Beverly Brown 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Beverly Brown, is a resident of, Lincoln) -> Beverly Brown (12683ms) Who was Abraham Lincoln? the game 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (the game, being played in, Lincoln) -> the game (13087ms) Who was Abraham Lincoln? The Pla-Mor Ballroom 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (The Pla-Mor Ballroom, is a staple of, Lincoln`) -> The Pla-Mor Ballroom (12472ms) Who was Abraham Lincoln? an actor 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (an actor, playing, Abraham Lincoln) -> an actor (13279ms) Who was Abraham Lincoln? Illinois voters 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (Illinois voters, elected, Lincoln) -> Illinois voters (12990ms) Who was Abraham Lincoln? The Republicans 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (The Republicans, are the party of, Lincoln) -> The Republicans (13505ms) Who was Abraham Lincoln? economics 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (economics, was a long-time member of, the Lincoln Institute) -> economics (13464ms) Who was Abraham Lincoln? Elihu 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Elihu, played a critical role in, Lincoln) -> Elihu (13505ms) Who was Abraham Lincoln? the elite 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (the elite, killed, Lincoln) -> the elite (13681ms) Who was Abraham Lincoln? Freedom 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, inspired, lincoln) -> (Freedom, was inspired by, Lincoln) -> Freedom (12906ms) Who was Abraham Lincoln? one year 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (young Lincoln?s schooling, was about, one year) -> one year (13087ms) Who was Abraham Lincoln? Mr. Kimrey 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Mr. Kimrey, is a member of, the Lincoln Circle) -> Mr. Kimrey (12535ms) Who was Abraham Lincoln? THE WOUND THAT 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (THE WOUND THAT, KILLED, LINCOLN) -> THE WOUND THAT (12597ms) Who was Abraham Lincoln? The media 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (The media, had described, Lincoln) -> The media (13417ms) Who was Abraham Lincoln? Mr. Rush 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Mr. Rush, has been a member of, the Lincoln Symphony) -> Mr. Rush (13464ms) Who was Abraham Lincoln? courageous poetry 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (courageous poetry, is as much influenced by, Abbey Lincoln) -> courageous poetry (13681ms) Who was Abraham Lincoln? whats 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, happen in, lincoln) -> (whats, happening in, Lincoln) -> whats (13342ms) Who was Abraham Lincoln? the Fall 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (the Fall, re-elect, Lincoln) -> the Fall (13673ms) Who was Abraham Lincoln? You?ll 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (You?ll, find, the impressive Lincoln Center) -> You?ll (13049ms) Who was Abraham Lincoln? 1865 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be from in, $x) -> (Lincoln, from being assassinated in, 1865) -> 1865 (12947ms) Who was Abraham Lincoln? a great engine 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (a great engine, was developed at, the MIT Lincoln Labs) -> a great engine (12683ms) Who was Abraham Lincoln? Robinson 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Robinson, is a member of, the Lincoln Chapparal Poets) -> Robinson (13446ms) Who was Abraham Lincoln? the 3.7-liter V-6 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (the 3.7-liter V-6, found in, Lincolns) -> the 3.7-liter V-6 (13543ms) Who was Abraham Lincoln? an assassin 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (an assassin, to kill, Lincoln) -> an assassin (12753ms) Who was Abraham Lincoln? The 18th 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (The 18th, was formed after, President Lincoln) -> The 18th (12842ms) Who was Abraham Lincoln? Abolitionists 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (Abolitionists, elect, Lincoln) -> Abolitionists (13087ms) Who was Abraham Lincoln? Rape 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Rape, is a member of, the Lincoln County Child Abuse Council) -> Rape (12683ms) Who was Abraham Lincoln? Fisher 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Fisher, helped, develop the Lincoln Highway) -> Fisher (13664ms) Who was Abraham Lincoln? almost as much anxiety 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (almost as much anxiety, did, Lincoln) -> almost as much anxiety (13639ms) Who was Abraham Lincoln? Story 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (Story, so did, Lincoln) -> Story (12707ms) Who was Abraham Lincoln? Berber tribes 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Berber tribes, was one of, Lincoln) -> Berber tribes (12970ms) Who was Abraham Lincoln? area citizens 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (area citizens, help, Pike-Lincoln Tech Center ? A.) -> area citizens (13011ms) Who was Abraham Lincoln? ?somebody 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (?somebody, else killed, Lincoln?) -> ?somebody (12990ms) Who was Abraham Lincoln? James Chimombes daughter 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (James Chimombes daughter, has also described, Lincoln) -> James Chimombes daughter (13647ms) Who was Abraham Lincoln? Arlington National Cemetery 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Arlington National Cemetery, People interred here, Evelyn Lincoln) -> Arlington National Cemetery (13656ms) Who was Abraham Lincoln? Mr. Obama 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (Mr. Obama, did mention, Lincoln) -> Mr. Obama (13068ms) Who was Abraham Lincoln? a vampire 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (a vampire, kills, Abraham Lincoln 's mother) -> a vampire (13295ms) Who was Abraham Lincoln? the war 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (the war, re-elected, Lincoln) -> the war (12927ms) Who was Abraham Lincoln? the Trojans 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (the Trojans, have played a game in, Lincoln) -> the Trojans (13593ms) Who was Abraham Lincoln? April 14 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be name of, lincoln) -> (April 14, was the name of, Abraham Lincoln) -> April 14 (12659ms) Who was Abraham Lincoln? 2009 David 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (2009 David, is helping celebrate, Lincoln?s 200th birthday) -> 2009 David (12970ms) Who was Abraham Lincoln? the source 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (the source, had influenced, Lincoln) -> the source (12885ms) Who was Abraham Lincoln? Fielderview 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (Fielderview, has been developed by, Lincoln Ventures Ltd) -> Fielderview (13564ms) Who was Abraham Lincoln? S?o Br?s do Sua?u? 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (S?o Br?s do Sua?u?, People born here, Lincoln) -> S?o Br?s do Sua?u? (12990ms) Who was Abraham Lincoln? LaRouche 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, define, lincoln) -> (LaRouche, defines, Lincoln) -> LaRouche (13194ms) Who was Abraham Lincoln? The Republican Party 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (The Republican Party, elected, Lincoln) -> The Republican Party (12885ms) Who was Abraham Lincoln? A weed 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (A weed, killed, Abraham Lincoln 's mother) -> A weed (12990ms) Who was Abraham Lincoln? Goldsmith 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Goldsmith, is the antithesis of, Lincoln) -> Goldsmith (13387ms) Who was Abraham Lincoln? St . Raphael 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (St . Raphael, will play, Lincoln) -> St . Raphael (13543ms) Who was Abraham Lincoln? Meridian 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Meridian, People born here, Alex Lincoln) -> Meridian (13492ms) Who was Abraham Lincoln? The debates 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (The debates, help make, Lincoln) -> The debates (12947ms) Who was Abraham Lincoln? Salt Creek 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, cause, lincoln) -> (Salt Creek, has caused frequent damage in, Lincoln) -> Salt Creek (13647ms) Who was Abraham Lincoln? last May 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, cause, lincoln) -> (last May, caused a stir at, 23rd and Lincoln) -> last May (13564ms) Who was Abraham Lincoln? the United Way 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (the United Way, am a Board Member of, the Lincoln Children) -> the United Way (13212ms) Who was Abraham Lincoln? two hours 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, is located about, two hours) -> two hours (13519ms) Who was Abraham Lincoln? Anthony Mackie 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Anthony Mackie, plays, Lincoln) -> Anthony Mackie (13703ms) Who was Abraham Lincoln? emancipation 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Abraham Lincoln, had been cautious about, emancipation) -> emancipation (13573ms) Who was Abraham Lincoln? The question 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (The question, did, Lincoln) -> The question (13478ms) Who was Abraham Lincoln? Daniel Chester French 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Daniel Chester French, created, the Lincoln Memorial sculpture) -> Daniel Chester French (12970ms) Who was Abraham Lincoln? ?If Booth 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (?If Booth, killed, Lincoln) -> ?If Booth (12683ms) Who was Abraham Lincoln? a poor EE student 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (a poor EE student, find parts in, Lincoln) -> a poor EE student (13141ms) Who was Abraham Lincoln? The block 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (The block, was likely quarried right here in, Lincoln) -> The block (13417ms) Who was Abraham Lincoln? OK 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (OK, killed, Abraham Lincoln) -> OK (13387ms) Who was Abraham Lincoln? Cheltenham 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Cheltenham, plays hosts to, Lincoln) -> Cheltenham (13519ms) Who was Abraham Lincoln? TriMet 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, hate, lincoln) -> (TriMet, hate, Lincoln Street) -> TriMet (12535ms) Who was Abraham Lincoln? Directory 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (Directory, find a dentist in, Lincoln) -> Directory (13543ms) Who was Abraham Lincoln? the breast 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (the breast, was found in, Lincoln) -> the breast (13311ms) Who was Abraham Lincoln? Enloe 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (Enloe, found, Tom Lincoln) -> Enloe (13593ms) Who was Abraham Lincoln? The system 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, initiate, lincoln) -> (The system, was initiated by, President Abraham Lincoln) -> The system (13245ms) Who was Abraham Lincoln? Maryland 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Maryland, People born here, Lincoln Plumer) -> Maryland (13030ms) Who was Abraham Lincoln? Telltale Games 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (Telltale Games, Games Developed, Sam & Max: Abe Lincoln Must Die!) -> Telltale Games (13583ms) Who was Abraham Lincoln? Iron Consulting Lincoln 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (Iron Consulting Lincoln, Find, the lowest cost Lincoln) -> Iron Consulting Lincoln (13630ms) Who was Abraham Lincoln? Answer 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (Answer, does the use of, Lincoln) -> Answer (13647ms) Who was Abraham Lincoln? police officers 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, discover, lincoln) -> (police officers, discovered the body of, Mrs. Lincoln) -> police officers (12535ms) Who was Abraham Lincoln? Interesting features 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be story of, lincoln) -> (Interesting features, are some stories of, Abraham Lincoln) -> Interesting features (12707ms) Who was Abraham Lincoln? Conan O?Brien 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Conan O?Brien, plays, a Lincoln?s son) -> Conan O?Brien (13212ms) Who was Abraham Lincoln? students 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (students, create, mini Lincoln books) -> students (13387ms) Who was Abraham Lincoln? going-away-from-home ? 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (going-away-from-home ?, could find, Lincoln) -> going-away-from-home ? (13445ms) Who was Abraham Lincoln? Chief Justice Williams 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (Chief Justice Williams, examines the influence of, Lincoln) -> Chief Justice Williams (12629ms) Who was Abraham Lincoln? DC 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (DC, so did, Lincoln) -> DC (13068ms) Who was Abraham Lincoln? Art Deco hotels 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Art Deco hotels, helped transform, Lincoln Road) -> Art Deco hotels (12659ms) Who was Abraham Lincoln? Francis 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (Francis, are elected with, Lincoln) -> Francis (13372ms) Who was Abraham Lincoln? Politico 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (Politico, describes as, a Lincoln-Douglas style debate) -> Politico (13445ms) Who was Abraham Lincoln? SAGE 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (SAGE, had been developed by, the Lincoln Laboratory) -> SAGE (13519ms) Who was Abraham Lincoln? the U.S. Abolition Movement 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, initiate, lincoln) -> (the U.S. Abolition Movement, initiated by, President Lincoln) -> the U.S. Abolition Movement (13011ms) Who was Abraham Lincoln? Compromise proponents 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (Compromise proponents, Does, Lincoln) -> Compromise proponents (13123ms) Who was Abraham Lincoln? a new party 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (a new party, was able to elect, Abraham Lincoln) -> a new party (13638ms) Who was Abraham Lincoln? Oakland 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Oakland, People born here, Howard Lincoln) -> Oakland (13647ms) Who was Abraham Lincoln? 30 miles 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (the Lincoln, was only about, 30 miles) -> 30 miles (12885ms) Who was Abraham Lincoln? Kentucky 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (Kentucky, was formed from, Green and Lincoln Counties) -> Kentucky (13647ms) Who was Abraham Lincoln? The guilty party 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (The guilty party, is the Party of, Lincoln) -> The guilty party (13357ms) Who was Abraham Lincoln? the same distance 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, is about, the same distance) -> the same distance (13681ms) Who was Abraham Lincoln? a local school teacher 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (a local school teacher, had helped, Lincoln) -> a local school teacher (13688ms) Who was Abraham Lincoln? charges 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, was passionately defensive about, charges) -> charges (13664ms) Who was Abraham Lincoln? Chase 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Chase, helped, Lincoln) -> Chase (13492ms) Who was Abraham Lincoln? Alexander 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Alexander, [is] bishop of, Lincoln) -> Alexander (12864ms) Who was Abraham Lincoln? Simmons 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (Simmons, develop, Lincoln Area Development Partnership) -> Simmons (13639ms) Who was Abraham Lincoln? the Evening Post 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (the Evening Post, influenced, Lincoln) -> the Evening Post (12683ms) Who was Abraham Lincoln? Reading 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Reading, People born here, Keith Lincoln) -> Reading (12504ms) Who was Abraham Lincoln? Center Hall 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Center Hall, was the site of, Lincoln) -> Center Hall (12775ms) Who was Abraham Lincoln? a Legend Pat Garrett 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (a Legend Pat Garrett, was elected Sheriff of, Lincoln County) -> a Legend Pat Garrett (13464ms) Who was Abraham Lincoln? The rest 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (The rest, were created by, Bryan Lincoln) -> The rest (13704ms) Who was Abraham Lincoln? The New Deity 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, inspire, lincoln) -> (The New Deity, was inspired by, local Lincoln events) -> The New Deity (13621ms) Who was Abraham Lincoln? ORG 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (ORG, will be playing their first away game in, Lincoln) -> ORG (13431ms) Who was Abraham Lincoln? Indian 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Indian, go over well here in, Lincoln) -> Indian (12776ms) Who was Abraham Lincoln? an illicit cloning company 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (an illicit cloning company, needs the help of, Abraham Lincoln) -> an illicit cloning company (13492ms) Who was Abraham Lincoln? several new vehicles 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (several new vehicles, are being developed for, Lincoln) -> several new vehicles (13543ms) Who was Abraham Lincoln? Monday afternoon 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (Monday afternoon, "found, Lincoln desperately homesick) -> Monday afternoon (13279ms) Who was Abraham Lincoln? Schoonover 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Schoonover, created many studies of, Lincoln) -> Schoonover (13141ms) Who was Abraham Lincoln? style 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln Park, is about, style) -> style (13478ms) Who was Abraham Lincoln? Ms. Field 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Ms. Field, was a member of, the original Lincoln Center Company) -> Ms. Field (12753ms) Who was Abraham Lincoln? a cousin 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, is all about, a cousin) -> a cousin (12820ms) Who was Abraham Lincoln? Tarts 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Tarts, also helped establish, Lincolns) -> Tarts (13011ms) Who was Abraham Lincoln? the photo 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (the photo, was created after, Lincoln?s assassination) -> the photo (13603ms) Who was Abraham Lincoln? Oak Ridge Cemetery 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Oak Ridge Cemetery, People interred here, Abraham Lincoln) -> Oak Ridge Cemetery (12820ms) Who was Abraham Lincoln? a person 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (a person, here comes, Abraham Lincoln) -> a person (12566ms) Who was Abraham Lincoln? the 1864 Presidential campaign 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, is about, the 1864 Presidential campaign) -> the 1864 Presidential campaign (12566ms) Who was Abraham Lincoln? The IRS 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (The IRS, was created by, President Abraham Lincoln) -> The IRS (13105ms) Who was Abraham Lincoln? the law 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (the law, is here articulated by, Lincoln) -> the law (13696ms) Who was Abraham Lincoln? The Washington officials 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (The Washington officials, did arrive at, Lincoln) -> The Washington officials (13123ms) Who was Abraham Lincoln? Henry 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Henry, [is] earl of, Lincoln) -> Henry (12927ms) Who was Abraham Lincoln? Lane 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Lane, helped to secure, Abraham Lincoln) -> Lane (13688ms) Who was Abraham Lincoln? 16,000 books 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, is the subject of about, 16,000 books) -> 16,000 books (13030ms) Who was Abraham Lincoln? The USDA 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (The USDA, was created by, Abraham Lincoln) -> The USDA (13311ms) Who was Abraham Lincoln? any pride 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (any pride, was one of, Lincoln) -> any pride (12990ms) Who was Abraham Lincoln? The Engineering School 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (The Engineering School, will help ensure, Lincoln) -> The Engineering School (13177ms) Who was Abraham Lincoln? Springfield 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Springfield, People born here, Tad Lincoln) -> Springfield (12820ms) Who was Abraham Lincoln? much more 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, happen in, lincoln) -> (much more, was happening in, Lincoln?s life) -> much more (13387ms) Who was Abraham Lincoln? Avalon 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Avalon, [is] bishop of, Lincoln) -> Avalon (12753ms) Who was Abraham Lincoln? Brian A. Skiff 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, discover, lincoln) -> (Brian A. Skiff, Astronomical objects discovered, 3153 Lincoln) -> Brian A. Skiff (13639ms) Who was Abraham Lincoln? Thanksgiving holiday 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, initiate, lincoln) -> (Thanksgiving holiday, was initiated by, Abraham Lincoln) -> Thanksgiving holiday (13563ms) Who was Abraham Lincoln? a concept 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (a concept, influenced, Abraham Lincoln) -> a concept (12629ms) Who was Abraham Lincoln? way 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (way, here is one from, Abraham Lincoln) -> way (13696ms) Who was Abraham Lincoln? cattle 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln County, is about, cattle) -> cattle (12597ms) Who was Abraham Lincoln? October 10 , 2010 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, discover, lincoln) -> (October 10 , 2010, discovered, the damaged Lincoln Navigator) -> October 10 , 2010 (12906ms) Who was Abraham Lincoln? blue card ref 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, define, lincoln) -> (blue card ref, was defined by, lincoln labs) -> blue card ref (13696ms) Who was Abraham Lincoln? a new winter home 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (a new winter home, created, the Lincoln Road shopping area) -> a new winter home (13656ms) Who was Abraham Lincoln? Spencer 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Spencer, plays with, Lincoln) -> Spencer (13543ms) Who was Abraham Lincoln? Longland 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Longland, [is] bishop of, Lincoln) -> Longland (13049ms) Who was Abraham Lincoln? Conan O'Brien 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, influence, lincoln) -> (Conan O'Brien, Influenced By, Abraham Lincoln) -> Conan O'Brien (13387ms) Who was Abraham Lincoln? 438-446 Page 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (438-446 Page, created, February 2012 Ataxia UK, Lincoln House) -> 438-446 Page (13159ms) Who was Abraham Lincoln? the Jefferson Davis wing 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, hate, lincoln) -> (the Jefferson Davis wing, also hate, Lincoln) -> the Jefferson Davis wing (13647ms) Who was Abraham Lincoln? Lee?s Flower & Card Shop 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Lee?s Flower & Card Shop, helped decorate, the Lincoln Room) -> Lee?s Flower & Card Shop (13519ms) Who was Abraham Lincoln? the sky 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (the sky, found a video from, Lincoln) -> the sky (13612ms) Who was Abraham Lincoln? The regiment 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (The regiment, was formed after, President Lincoln) -> The regiment (13245ms) Who was Abraham Lincoln? the process 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (the process, continues to develop, the Lincoln Park Master Plan) -> the process (13492ms) Who was Abraham Lincoln? words 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (words, did, Lincoln) -> words (13593ms) Who was Abraham Lincoln? Rochester 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Rochester, People born here, Elmo Lincoln) -> Rochester (13262ms) Who was Abraham Lincoln? mountaineering 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (mountaineering, is such an integral part of, Lincoln) -> mountaineering (13279ms) Who was Abraham Lincoln? Pall Mall 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Pall Mall, People born here, Lincoln Davis) -> Pall Mall (13664ms) Who was Abraham Lincoln? The new bishop 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (The new bishop, was St Hugh of, Lincoln) -> The new bishop (12535ms) Who was Abraham Lincoln? entrepreneur 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (entrepreneur, helped develop, the Lincoln Highway) -> entrepreneur (12927ms) Who was Abraham Lincoln? the fleeing Communists 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (the fleeing Communists, found so attractive in, Lincoln) -> the fleeing Communists (13664ms) Who was Abraham Lincoln? Providence 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Providence, People born here, Lincoln Chafee) -> Providence (12842ms) Who was Abraham Lincoln? The bullet 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (The bullet, killed, Lincoln) -> The bullet (12927ms) Who was Abraham Lincoln? the top 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (the top, is a portrait of, Lincoln) -> the top (13372ms) Who was Abraham Lincoln? the same opinion 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Mr. Lincoln, was about of, the same opinion) -> the same opinion (13704ms) Who was Abraham Lincoln? Professor Merrell Gage 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (Professor Merrell Gage, describes the life of, Abraham Lincoln) -> Professor Merrell Gage (12927ms) Who was Abraham Lincoln? 1913 Fisher 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (1913 Fisher, helped develop, the Lincoln Highway) -> 1913 Fisher (13543ms) Who was Abraham Lincoln? Authentic Polish food 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, find, lincoln) -> (Authentic Polish food, can be found on, Lincoln) -> Authentic Polish food (13519ms) Who was Abraham Lincoln? E & O 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be involve in, lincoln) -> (E & O, has been involved in, the Lincoln) -> E & O (13011ms) Who was Abraham Lincoln? Robert Sherwood?s 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Robert Sherwood?s, play, Abe Lincoln) -> Robert Sherwood?s (13656ms) Who was Abraham Lincoln? french fries 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (french fries, formed like, Abraham Lincoln) -> french fries (12683ms) Who was Abraham Lincoln? the Caroverine molecule 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (the Caroverine molecule, was developed by, Lincoln Pharma) -> the Caroverine molecule (13402ms) Who was Abraham Lincoln? McCorkle 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (McCorkle, played, Lincoln Center) -> McCorkle (13478ms) Who was Abraham Lincoln? Post-war reconciliation 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be of, lincoln) -> (Post-war reconciliation, was the defeat of, Lincoln) -> Post-war reconciliation (12927ms) Who was Abraham Lincoln? The Civil War 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, define, lincoln) -> (The Civil War, had already defined, Abraham Lincoln?s presidency) -> The Civil War (13602ms) Who was Abraham Lincoln? 150 miles 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, is located about, 150 miles) -> 150 miles (12566ms) Who was Abraham Lincoln? Primer 0.5 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (Primer 0.5, had been originally developed by, Lincoln ,S.E.) -> Primer 0.5 (12775ms) Who was Abraham Lincoln? The kidney-in-a-cartridge 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (The kidney-in-a-cartridge, is being developed by, Lincoln) -> The kidney-in-a-cartridge (12798ms) Who was Abraham Lincoln? cancer 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (cancer, would have killed, Lincoln) -> cancer (13664ms) Who was Abraham Lincoln? event 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, happen in, lincoln) -> (event, will be happening in, Lincoln Park) -> event (12566ms) Who was Abraham Lincoln? the presidency 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, define, lincoln) -> (the presidency, was the defining moment of, Lincoln?s life) -> the presidency (13262ms) Who was Abraham Lincoln? Children 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Children, can also create, their own Abraham Lincoln) -> Children (12683ms) Who was Abraham Lincoln? Shelley 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Shelley, is a member of, The Lincoln Center Director) -> Shelley (13431ms) Who was Abraham Lincoln? Confederate sympathizer Booth 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, kill, lincoln) -> (Confederate sympathizer Booth, killed, Lincoln) -> Confederate sympathizer Booth (13402ms) Who was Abraham Lincoln? Casey County 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (Casey County, was formed from, Lincoln Co.) -> Casey County (13068ms) Who was Abraham Lincoln? Stokes ? coffee 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Stokes ? coffee, is roasted here in, Lincoln) -> Stokes ? coffee (12947ms) Who was Abraham Lincoln? 35 min west 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, is a small town about, 35 min west) -> 35 min west (13141ms) Who was Abraham Lincoln? the exhibit 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (the exhibit, also will find a photograph of, Lincoln) -> the exhibit (13673ms) Who was Abraham Lincoln? Mosley 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Mosley, plays at, Lincoln) -> Mosley (12990ms) Who was Abraham Lincoln? Mike Reiss 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Mike Reiss, TV programs Created, Hard Drinkin' Lincoln) -> Mike Reiss (13681ms) Who was Abraham Lincoln? a big fan 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (a big fan, has described, Lincoln?s life) -> a big fan (13656ms) Who was Abraham Lincoln? The Daily Standard 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (The Daily Standard, described, Lincoln) -> The Daily Standard (13087ms) Who was Abraham Lincoln? Straus 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be name of, lincoln) -> (Straus, was named principal of, Lincoln Middle School) -> Straus (13342ms) Who was Abraham Lincoln? the role music 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (the role music, played in, Lincoln?s life) -> the role music (13177ms) Who was Abraham Lincoln? Ford 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (Ford, is doing with, Lincoln) -> Ford (13638ms) Who was Abraham Lincoln? LPED 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, form, lincoln) -> (LPED, formed, the Lincoln Area Development Partnership) -> LPED (13295ms) Who was Abraham Lincoln? ?Robert Parsons 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (?Robert Parsons, does play, Lincoln) -> ?Robert Parsons (13681ms) Who was Abraham Lincoln? Peter Horbury 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (Peter Horbury, created, Lincoln?s new design language) -> Peter Horbury (13311ms) Who was Abraham Lincoln? The firm 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, develop, lincoln) -> (The firm, develop commercial properties in, Lincoln) -> The firm (13505ms) Who was Abraham Lincoln? The design 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, create, lincoln) -> (The design, was created by, Lincoln Cushing) -> The design (13602ms) Who was Abraham Lincoln? the country 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, was adamant about keeping, the country) -> the country (13704ms) Who was Abraham Lincoln? Gavin Hoyte 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (Gavin Hoyte, helped, his Lincoln side) -> Gavin Hoyte (13673ms) Who was Abraham Lincoln? Daniel Day-Lewis 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Daniel Day-Lewis, will play, Lincoln) -> Daniel Day-Lewis (13105ms) Who was Abraham Lincoln? the debate 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (the debate, indirectly helped put, Abraham Lincoln) -> the debate (13656ms) Who was Abraham Lincoln? Badly Drawn Boy 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Badly Drawn Boy, play, Lincoln Hall) -> Badly Drawn Boy (12864ms) Who was Abraham Lincoln? The three wins 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, help, lincoln) -> (The three wins, helped, Lincoln move) -> The three wins (12707ms) Who was Abraham Lincoln? Griessman 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (Griessman, has done for, Lincoln) -> Griessman (13177ms) Who was Abraham Lincoln? the American people 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, elect, lincoln) -> (the American people, re-elected, Lincoln) -> the American people (13681ms) Who was Abraham Lincoln? South Carolinian militia units 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (South Carolinian militia units, did join, Lincoln) -> South Carolinian militia units (13647ms) Who was Abraham Lincoln? the Stacks 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be story of, lincoln) -> (the Stacks, is the story of, Lincoln Cabinee) -> the Stacks (13630ms) Who was Abraham Lincoln? leadership 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, do, lincoln) -> (leadership, did, Lincoln) -> leadership (12864ms) Who was Abraham Lincoln? Stanton 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, describe, lincoln) -> (Stanton, later described, Lincoln) -> Stanton (13478ms) Who was Abraham Lincoln? Martin 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, be member of, lincoln) -> (Martin, is a board member of, the Lincoln Society) -> Martin (13630ms) Who was Abraham Lincoln? 20 miles 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (( Lincoln, is about, 20 miles) -> 20 miles (13279ms) Who was Abraham Lincoln? Seth Gabel 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, play, lincoln) -> (Seth Gabel, plays, Lincoln Lee) -> Seth Gabel (12947ms) Who was Abraham Lincoln? Saint James, Trinidad and Tobago 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Saint James, Trinidad and Tobago, People born here, Lincoln Phillips) -> Saint James, Trinidad and Tobago (12566ms) Who was Abraham Lincoln? Los Angeles 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, here, lincoln) -> (Los Angeles, People born here, Lincoln Stalmaster) -> Los Angeles (13630ms) Who was Abraham Lincoln? the restaurants 0.222222222222 Who was Abraham Lincoln? -> $x: ($x, found, lincoln) -> (the restaurants, you?ll only find those things in, Lincoln) -> the restaurants (13564ms) Who was Abraham Lincoln? natural rights 0.222222222222 Who was Abraham Lincoln? -> $x: (lincoln, be about, $x) -> (Lincoln, was right about, natural rights) -> natural rights (12927ms) When was Algeria colonized? the 19th century -0.11111111111099997 When was Algeria colonized? -> $x: (algeria, be colonize in, $x) -> (Algeria, was colonized in, the 19th century) -> the 19th century (556ms) When was Algeria colonized? the French -0.999999999995 When was Algeria colonized? -> $x: (algeria, be colonize by, $x) -> (Algeria, has been colonized by, the French) -> the French (557ms) When was Algeria colonized? The French -1.333333333327 When was Algeria colonized? -> $x: ($x, colonize, algeria) -> (The French, began colonizing, Algeria) -> The French (557ms) When was Algeria colonized? France -1.333333333327 When was Algeria colonized? -> $x: ($x, colonize, algeria) -> (France, began to colonize, Algeria) -> France (557ms) When was Algeria colonized? 1832 France -1.333333333327 When was Algeria colonized? -> $x: ($x, colonize, algeria) -> (1832 France, colonized, Algeria) -> 1832 France (557ms) What is Dick Clark's date of birth? Clark -0.555555555557 What is Dick Clark's date of birth? -> $x: ($x, start, dick clark) -> (Clark, started, Dick Clark Productions) -> Clark (821ms) What is Dick Clark's date of birth? the scene -0.555555555557 What is Dick Clark's date of birth? -> $x: ($x, start, dick clark) -> (the scene, started, Dick Clark) -> the scene (821ms) What is Dick Clark's date of birth? The Twist -0.555555555557 What is Dick Clark's date of birth? -> $x: ($x, found, dick clark) -> (The Twist, found a fan in, American Bandstand host Dick Clark) -> The Twist (820ms) Who did the Prince Edward marry? The couple -0.555555555561 Who did the Prince Edward marry? -> $x: ($x, marry, prince edward) -> (The couple, were married in, Prince Edward County) -> The couple (934ms) Who did the Prince Edward marry? the Countess -0.555555555561 Who did the Prince Edward marry? -> $x: ($x, marry, prince edward) -> (the Countess, is married to, Prince Edward) -> the Countess (907ms) Who did the Prince Edward marry? Sophie Rhys -0.555555555561 Who did the Prince Edward marry? -> $x: ($x, marry, prince edward) -> (Sophie Rhys, married, Prince Edward) -> Sophie Rhys (908ms) Who did the Prince Edward marry? Denmark -0.555555555561 Who did the Prince Edward marry? -> $x: ($x, marry, prince edward) -> (Denmark, married, Prince Albert Edward) -> Denmark (908ms) Who did the Prince Edward marry? Sophie Rhys-Jones -0.555555555561 Who did the Prince Edward marry? -> $x: ($x, marry, prince edward) -> (Sophie Rhys-Jones, married, Prince Edward) -> Sophie Rhys-Jones (908ms) Who did the Prince Edward marry? Princess Alexandra -0.555555555561 Who did the Prince Edward marry? -> $x: ($x, marry, prince edward) -> (Princess Alexandra, marries, Prince Edward) -> Princess Alexandra (907ms) Who did the Prince Edward marry? the American -0.555555555561 Who did the Prince Edward marry? -> $x: ($x, marry, prince edward) -> (the American, married, Prince Edward) -> the American (934ms) Who did the Prince Edward marry? Can gays and lesbians -0.555555555561 Who did the Prince Edward marry? -> $x: ($x, marry, prince edward) -> (Can gays and lesbians, get married on, Prince Edward Island) -> Can gays and lesbians (934ms) Who did the Prince Edward marry? Giselle -0.555555555561 Who did the Prince Edward marry? -> $x: ($x, marry, prince edward) -> (Giselle, wants to marry, Prince Edward) -> Giselle (934ms) Who did the Prince Edward marry? Sophie -0.555555555561 Who did the Prince Edward marry? -> $x: ($x, marry, prince edward) -> (Sophie, married, Prince Edward) -> Sophie (934ms) Who did the Prince Edward marry? Joan -0.999999999999 Who did the Prince Edward marry? -> $x: (prince edward, marry, $x) -> (Prince Edward, eventually married, Joan) -> Joan (962ms) Who did the Prince Edward marry? a German princess -0.999999999999 Who did the Prince Edward marry? -> $x: (prince edward, marry, $x) -> (the English Prince Edward, had married, a German princess) -> a German princess (962ms) When was the White House built? the capital 1.888888888887 When was the White House built? -> $x: (white house, be build in, $x) -> (The White House, is the oldest federal building in, the capital) -> the capital (1482ms) When was the White House built? steps 1.888888888887 When was the White House built? -> $x: (white house, be build in, $x) -> (beautiful white gray stone houses, are built in, steps) -> steps (1241ms) When was the White House built? 1902 1.888888888887 When was the White House built? -> $x: (white house, be build in, $x) -> (the White House, was originally built in, 1902) -> 1902 (1482ms) When was the White House built? 1890 1.888888888887 When was the White House built? -> $x: (white house, be build in, $x) -> (The Little White House, was built in, 1890) -> 1890 (1932ms) When was the White House built? the same year 1.888888888887 When was the White House built? -> $x: (white house, be build in, $x) -> (The William White House, was apparently built in, the same year) -> the same year (1241ms) When was the White House built? WWII 1.888888888887 When was the White House built? -> $x: (white house, be build in, $x) -> (the White House East Wing, was built in, WWII) -> WWII (1482ms) When was the White House built? 1822 1.888888888887 When was the White House built? -> $x: (white house, be build in, $x) -> (white house, were built in, 1822) -> 1822 (1482ms) When was the White House built? a grid system 1.888888888887 When was the White House built? -> $x: (white house, be build in, $x) -> (It?s white houses, are built in, a grid system) -> a grid system (1369ms) When was the White House built? dc 1.888888888887 When was the White House built? -> $x: (white house, be build in, $x) -> (White house, is a building located in the city, dc) -> dc (1369ms) When was the White House built? 1943 1.888888888887 When was the White House built? -> $x: (white house, be build in, $x) -> (?The White House ?, was built in, 1943) -> 1943 (1369ms) When was the White House built? 1904 1.888888888887 When was the White House built? -> $x: (white house, be build in, $x) -> (The white clapboard house, was built in, 1904) -> 1904 (1241ms) When was the White House built? 1868 1.888888888887 When was the White House built? -> $x: (white house, be build in, $x) -> (The White County Court House, was built in, 1868) -> 1868 (1369ms) When was the White House built? Washington 1.888888888887 When was the White House built? -> $x: (white house, be build in, $x) -> (the White House, was built in, Washington) -> Washington (1241ms) When was the White House built? large part 1.888888888887 When was the White House built? -> $x: (white house, be build in, $x) -> (the White House, were built in, large part) -> large part (1241ms) When was the White House built? the District 1.888888888887 When was the White House built? -> $x: (white house, be build in, $x) -> (The White House, is the oldest public building in, the District) -> the District (1482ms) When was the White House built? December 1.888888888887 When was the White House built? -> $x: (white house, be build in, $x) -> (The White House, was built in, December) -> December (1369ms) When was the White House built? 1936 1.888888888887 When was the White House built? -> $x: (white house, be build in, $x) -> (the white house, was built in, 1936) -> 1936 (1369ms) When was the White House built? the 1700s 1.888888888887 When was the White House built? -> $x: (white house, be build in, $x) -> (his big , white farm house, was built in, the 1700s) -> the 1700s (1240ms) When was the White House built? 1792 1.888888888887 When was the White House built? -> $x: (white house, be build in, $x) -> (The White House, was built in, 1792) -> 1792 (1482ms) When was the White House built? 1845-46 1.888888888887 When was the White House built? -> $x: (white house, be build in, $x) -> (a Georgian style white clapboard house, was built in, 1845-46) -> 1845-46 (1482ms) When was the White House built? three themes 1.333333333335 When was the White House built? -> $x: (white house, be build on, $x) -> (White House and Department, is built on, three themes) -> three themes (1932ms) When was the White House built? a hill 1.333333333335 When was the White House built? -> $x: (white house, be build on, $x) -> (The typical little white houses, are built on, a hill) -> a hill (1932ms) When was the White House built? the hillside 1.333333333335 When was the White House built? -> $x: (white house, be build on, $x) -> (A dozen white-washed houses, are built on, the hillside) -> the hillside (1932ms) When was the White House built? College Drive 1.333333333335 When was the White House built? -> $x: (white house, be build on, $x) -> ('the white house, was built on, College Drive) -> College Drive (1932ms) When was the White House built? the back 1.333333333335 When was the White House built? -> $x: (white house, be build on, $x) -> (Their White House, was built on, the back) -> the back (1932ms) When was the White House built? Ft 0.777777777779 When was the White House built? -> $x: (white house, be discover in, $x) -> (Deputy White House Counsel Vince Foster, was discovered in, Ft) -> Ft (2018ms) When was the White House built? the cellar 0.777777777779 When was the White House built? -> $x: (white house, be discover in, $x) -> (red and white house wine, were discovered in, the cellar) -> the cellar (1932ms) When was the White House built? the foundation 0.777777777778 When was the White House built? -> $x: (vice president, be build on, $x) -> (Executive Vice President, are building on, the foundation) -> the foundation (2018ms) When was the White House built? the Globe?s concrete roof 0.6666666666669999 When was the White House built? -> $x: (staffer, be build on, $x) -> (staffers, would be built on, the Globe?s concrete roof) -> the Globe?s concrete roof (2018ms) When was the White House built? a long series 0.6666666666669999 When was the White House built? -> $x: (staffer, be build on, $x) -> (a key Council staffer, was built on, a long series) -> a long series (2018ms) When was the White House built? behalf of human dignity 0.555555555557 When was the White House built? -> $x: (white house, build on, $x) -> (the White House, will build on, behalf of human dignity) -> behalf of human dignity (2900ms) When was the White House built? rocks 0.555555555557 When was the White House built? -> $x: (white house, build on, $x) -> (tall white houses, built on, rocks) -> rocks (2888ms) When was the White House built? the d?tente policy 0.555555555557 When was the White House built? -> $x: (white house, build on, $x) -> (the White House, determined to build on, the d?tente policy) -> the d?tente policy (2896ms) When was the White House built? the rectorate car park 0.555555555557 When was the White House built? -> $x: (white house, be locate in, $x) -> (the Black & White House, was located in, the rectorate car park) -> the rectorate car park (2888ms) When was the White House built? downtown Keystone 0.555555555557 When was the White House built? -> $x: (white house, be locate in, $x) -> (White House Resort, is located in, downtown Keystone) -> downtown Keystone (2892ms) When was the White House built? Fort Worth 0.555555555557 When was the White House built? -> $x: (white house, be locate in, $x) -> ($ 161 Texas White House, is located in, Fort Worth) -> Fort Worth (2903ms) When was the White House built? the shape 0.555555555557 When was the White House built? -> $x: (white house, be construct in, $x) -> (the White House, is constructed in, the shape) -> the shape (2128ms) When was the White House built? the past ? e.g. 0.555555555557 When was the White House built? -> $x: (white house, be make in, $x) -> (the White House, might have been made in, the past ? e.g.) -> the past ? e.g. (2896ms) When was the White House built? advance 0.555555555557 When was the White House built? -> $x: (white house, be make in, $x) -> (the White House, should be made as far in, advance) -> advance (2745ms) When was the White House built? the city 0.555555555557 When was the White House built? -> $x: (white house, be locate in, $x) -> (The White House, is located in, the city) -> the city (2903ms) When was the White House built? preparations 0.555555555557 When was the White House built? -> $x: (white house, be make in, $x) -> (the White House, was actively involved in making, preparations) -> preparations (2903ms) When was the White House built? the West End 0.555555555557 When was the White House built? -> $x: (white house, be locate in, $x) -> (The White House, is located in, the West End) -> the West End (2630ms) When was the White House built? Sumner County 0.555555555557 When was the White House built? -> $x: (white house, be locate in, $x) -> (White House, is located partially in, Sumner County) -> Sumner County (2888ms) When was the White House built? Juneau 0.555555555557 When was the White House built? -> $x: (white house, be locate in, $x) -> (the Northern White House, will be located in, Juneau) -> Juneau (2330ms) When was the White House built? Heritage Society 0.555555555557 When was the White House built? -> $x: (white house, be locate in, $x) -> (This white house, is located in, Heritage Society) -> Heritage Society (2903ms) When was the White House built? the past 0.555555555557 When was the White House built? -> $x: (white house, be make in, $x) -> (the White House, might have been made in, the past) -> the past (2018ms) When was the White House built? ZIP code 0.555555555557 When was the White House built? -> $x: (white house, be locate in, $x) -> (the White House, is located in, ZIP code) -> ZIP code (2630ms) When was the White House built? Gate Street 0.555555555557 When was the White House built? -> $x: (white house, build on, $x) -> (the white frame house Elijah Walker, built on, Gate Street) -> Gate Street (2900ms) When was the White House built? the core district 0.555555555557 When was the White House built? -> $x: (white house, be locate in, $x) -> (The White House, is ideally located in, the core district) -> the core district (2888ms) When was the White House built? the heart 0.555555555557 When was the White House built? -> $x: (white house, be locate in, $x) -> (The White House Accommodation, is located in, the heart) -> the heart (2900ms) When was the White House built? the centre 0.555555555557 When was the White House built? -> $x: (white house, be locate in, $x) -> (The White House Hotel Bowness, is located in, the centre) -> the centre (2892ms) When was the White House built? the petition 0.555555555557 When was the White House built? -> $x: (white house, be make on, $x) -> (an official White House statement, will be made on, the petition) -> the petition (2896ms) When was the White House built? conjunction 0.555555555557 When was the White House built? -> $x: (white house, be make in, $x) -> (The White House announcement, was made in, conjunction) -> conjunction (2824ms) When was the White House built? Wednesday 0.555555555557 When was the White House built? -> $x: (white house, be finish on, $x) -> (the White House Situation Room, was just finishing on, Wednesday) -> Wednesday (2903ms) When was the White House built? suite 225 0.555555555557 When was the White House built? -> $x: (white house, be locate in, $x) -> (White House | Black Market, is located in, suite 225) -> suite 225 (2824ms) When was the White House built? Pilar 0.555555555557 When was the White House built? -> $x: (white house, be locate in, $x) -> (This modern white house, is located in, Pilar) -> Pilar (2896ms) When was the White House built? Pine Mountain 0.555555555557 When was the White House built? -> $x: (white house, be locate in, $x) -> ('s Little White House, are located in, Pine Mountain) -> Pine Mountain (2900ms) When was the White House built? the 1970s 0.555555555557 When was the White House built? -> $x: (white house, start in, $x) -> (the White House lawn, started back in, the 1970s) -> the 1970s (2330ms) When was the White House built? Bangor 0.555555555557 When was the White House built? -> $x: (white house, be locate in, $x) -> (Best Western White House Inn, is located in, Bangor) -> Bangor (2892ms) When was the White House built? Jackson Hole 0.555555555557 When was the White House built? -> $x: (white house, build in, $x) -> (a white-painted ranch house, built in, Jackson Hole) -> Jackson Hole (2363ms) When was the White House built? Oak Park 0.555555555557 When was the White House built? -> $x: (white house, be locate in, $x) -> (the White House, is n?t located in, Oak Park) -> Oak Park (2896ms) When was the White House built? the Blackwatch Building 0.555555555557 When was the White House built? -> $x: (white house, be locate in, $x) -> (the White House, are now located in, the Blackwatch Building) -> the Blackwatch Building (2745ms) When was the White House built? the home 0.555555555557 When was the White House built? -> $x: (white house, be locate in, $x) -> (temporary White House, was located in, the home) -> the home (2903ms) When was the White House built? Iran 0.555555555557 When was the White House built? -> $x: (white house, be make on, $x) -> (the White House, is making false statements on, Iran) -> Iran (2888ms) When was the White House built? Washington DC 0.555555555557 When was the White House built? -> $x: (white house, be locate in, $x) -> (the White House, are located in, Washington DC) -> Washington DC (2128ms) When was the White House built? rules 0.555555555557 When was the White House built? -> $x: (white house, build on, $x) -> (the White House?s Office, build on, rules) -> rules (2900ms) When was the White House built? China 0.555555555557 When was the White House built? -> $x: (white house, be make in, $x) -> (the White House china, is actually being made in, China) -> China (2892ms) When was the White House built? the karol bagh 0.555555555557 When was the White House built? -> $x: (white house, be locate in, $x) -> (The Hotel White House, is ideally located in, the karol bagh) -> the karol bagh (2900ms) When was the White House built? 1824 0.555555555557 When was the White House built? -> $x: (white house, be construct in, $x) -> (the White House, was constructed in, 1824) -> 1824 (2900ms) When was the White House built? 1998 0.555555555557 When was the White House built? -> $x: (white house, start in, $x) -> (The nationwide White House Project, got its start in, 1998) -> 1998 (2896ms) When was the White House built? 1952 0.555555555557 When was the White House built? -> $x: (white house, start in, $x) -> (the White House, started back in, 1952) -> 1952 (2330ms) When was the White House built? a privileged area 0.555555555557 When was the White House built? -> $x: (white house, be locate in, $x) -> (Melia White House, is located in, a privileged area) -> a privileged area (2363ms) When was the White House built? importance 0.555555555557 When was the White House built? -> $x: (white house, build in, $x) -> (the White House, had systematically built up in, importance) -> importance (2896ms) When was the White House built? the Federal Reformatory 0.555555555557 When was the White House built? -> $x: (white house, be make in, $x) -> (his White House office, was made in, the Federal Reformatory) -> the Federal Reformatory (2900ms) When was the White House built? reforms 0.555555555557 When was the White House built? -> $x: (white house, be make on, $x) -> (the White House, was making its announcement on, reforms) -> reforms (2903ms) When was the White House built? 1953 0.555555555557 When was the White House built? -> $x: (white house, start in, $x) -> (The official White House holiday card, was started in, 1953) -> 1953 (2900ms) When was the White House built? the Department 0.555555555557 When was the White House built? -> $x: (white house, be locate in, $x) -> (The White House Visitor Center, is located in, the Department) -> the Department (2824ms) When was the White House built? a room 0.555555555557 When was the White House built? -> $x: (white house, be locate in, $x) -> (the White House telephone system, was located in, a room) -> a room (2363ms) When was the White House built? the work 0.555555555557 When was the White House built? -> $x: (white house, build on, $x) -> (the White House, builds on, the work) -> the work (2903ms) When was the White House built? tax issues 0.555555555557 When was the White House built? -> $x: (white house, be make on, $x) -> (the White House, are making major pushes on, tax issues) -> tax issues (2128ms) When was the White House built? clean technology 0.555555555557 When was the White House built? -> $x: (white house, be make on, $x) -> (the White House, is making progress on, clean technology) -> clean technology (2630ms) When was the White House built? 1876 0.555555555557 When was the White House built? -> $x: (white house, build in, $x) -> ('s Home Page White County Heritage House, built in, 1876) -> 1876 (2888ms) When was the White House built? a cave 0.555555555557 When was the White House built? -> $x: (white house, be locate in, $x) -> (White House ruin, is located in, a cave) -> a cave (2330ms) When was the White House built? 1906 0.555555555557 When was the White House built? -> $x: (white house, build in, $x) -> (the White House, built in, 1906) -> 1906 (2892ms) When was the White House built? a small open area 0.555555555557 When was the White House built? -> $x: (white house, be locate in, $x) -> (an older white farm house, is located in, a small open area) -> a small open area (2903ms) When was the White House built? April 0.555555555557 When was the White House built? -> $x: (white house, start in, $x) -> (White HouseBlack Market, will start construction in, April) -> April (2824ms) When was the White House built? Horley 0.555555555557 When was the White House built? -> $x: (white house, be locate in, $x) -> (The Gatwick White House Hotel, is located in, Horley) -> Horley (2892ms) When was the White House built? effort 0.555555555557 When was the White House built? -> $x: (white house, start in, $x) -> (The White House Project, got started in, effort) -> effort (2018ms) When was the White House built? 1965 0.555555555557 When was the White House built? -> $x: (white house, start in, $x) -> (The White House Fellows Program, started in, 1965) -> 1965 (2824ms) When was the White House built? concert 0.555555555557 When was the White House built? -> $x: (white house, be make in, $x) -> (The White House announcement, was made in, concert) -> concert (2363ms) When was the White House built? June 22 , 2004 0.555555555557 When was the White House built? -> $x: (white house, be make on, $x) -> (some White House documents, were made public on, June 22 , 2004) -> June 22 , 2004 (2824ms) When was the White House built? the post 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (the post, should be established outside, the White House) -> the post (2914ms) When was the White House built? ?13 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (?13, had established contacts with, the White House) -> ?13 (2908ms) When was the White House built? President Barack Obama 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (President Barack Obama, established, a White House Council) -> President Barack Obama (2906ms) When was the White House built? Millard Fillmore?s wife 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (Millard Fillmore?s wife, established, the White House library) -> Millard Fillmore?s wife (2906ms) When was the White House built? The JPSS program 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (The JPSS program, was established after, the White House) -> The JPSS program (2906ms) When was the White House built? A Homeland Security Office 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (A Homeland Security Office, is established in, The White House) -> A Homeland Security Office (2908ms) When was the White House built? Executive Order 13592 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (Executive Order 13592, established, a White House Initiative) -> Executive Order 13592 (2914ms) When was the White House built? a restoration 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (a restoration, established, a White House Historical Association) -> a restoration (2906ms) When was the White House built? a deficit commission 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (a deficit commission, established by, the White House) -> a deficit commission (2906ms) When was the White House built? the Bush Administration 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (the Bush Administration, established, the White House Office) -> the Bush Administration (2914ms) When was the White House built? Congress 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (Congress, establish, the White House Police Force) -> Congress (2914ms) When was the White House built? the United States 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (the United States, should establish in, the White House) -> the United States (2914ms) When was the White House built? an executive order 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (an executive order, established, the White House Commission) -> an executive order (2912ms) When was the White House built? 8 Direct relations 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (8 Direct relations, were established between, the White House) -> 8 Direct relations (2908ms) When was the White House built? president 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (president, was to establish, a White House office) -> president (2914ms) When was the White House built? an Executive Order 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (an Executive Order, established, the White House Rural Council) -> an Executive Order (2914ms) When was the White House built? Millard Fillmore 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (Millard Fillmore, established, the White House library) -> Millard Fillmore (2911ms) When was the White House built? Abigail 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (Abigail, established, the first White House library) -> Abigail (2916ms) When was the White House built? an Executive order 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (an Executive order, establishing, the White House Commission) -> an Executive order (2906ms) When was the White House built? President Bush 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (President Bush, established, the White House Office) -> President Bush (2916ms) When was the White House built? Forensic Science 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (Forensic Science, was established by, the White House Office) -> Forensic Science (2908ms) When was the White House built? the White House 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (the White House, formally establish, a White House arts adviser) -> the White House (2906ms) When was the White House built? The President 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (The President, established, the White House Office) -> The President (2906ms) When was the White House built? Hudson 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (Hudson, established, a White House Catholic Working Group) -> Hudson (2912ms) When was the White House built? the aid 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (the aid, established, a White House Fine Arts Committee) -> the aid (2906ms) When was the White House built? Emergency Preparedness 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (Emergency Preparedness, had been established in, the White House) -> Emergency Preparedness (2914ms) When was the White House built? the current Bush 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (the current Bush, was established in, the White House) -> the current Bush (2912ms) When was the White House built? Total Page Views Site 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (Total Page Views Site, established, September 2000 White House) -> Total Page Views Site (2914ms) When was the White House built? The White House 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (The White House, established, the Rural White House Council) -> The White House (2908ms) When was the White House built? a covert group 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (a covert group, established to investigate, White House leaks) -> a covert group (2912ms) When was the White House built? the President 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (the President, could establish the office in, the White House) -> the President (2914ms) When was the White House built? The president 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (The president, established, the White House Council) -> The president (2908ms) When was the White House built? President Clinton 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (President Clinton, establishes, the White House Office) -> President Clinton (2914ms) When was the White House built? President Obama 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (President Obama, established, the first White House Office) -> President Obama (2912ms) When was the White House built? The order 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (The order, establishes, a White House Initiative) -> The order (2908ms) When was the White House built? Herbert Hoover 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (Herbert Hoover, established, a Summer White House) -> Herbert Hoover (2912ms) When was the White House built? Bush 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (Bush, established, a new White House office) -> Bush (2908ms) When was the White House built? Phone service 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (Phone service, was established at, the White House one year) -> Phone service (2908ms) When was the White House built? supplies 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (supplies, was established at, the White House) -> supplies (2912ms) When was the White House built? President Reagan 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (President Reagan, established, the White House Initiative) -> President Reagan (2908ms) When was the White House built? President Grover Cleveland 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (President Grover Cleveland, established, his summer White House) -> President Grover Cleveland (2914ms) When was the White House built? the Administration 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (the Administration, established, the first White House Advisor) -> the Administration (2908ms) When was the White House built? intelligence unit 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (intelligence unit, was established by, the White House) -> intelligence unit (2906ms) When was the White House built? the government 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (the government, established centers in, the White House) -> the government (2908ms) When was the White House built? office 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (office, was to establish, the White House Office) -> office (2911ms) When was the White House built? President George W. Bush 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (President George W. Bush, established, the White House Office) -> President George W. Bush (2903ms) When was the White House built? Thursday 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (Thursday, established, a White House office) -> Thursday (2914ms) When was the White House built? Danny Freeman 13 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (Danny Freeman 13, had established, contacts with the White House) -> Danny Freeman 13 (2912ms) When was the White House built? Obama 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (Obama, established, the White House Council) -> Obama (2914ms) When was the White House built? homeland security adviser 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (homeland security adviser, was established in, the White House) -> homeland security adviser (2914ms) When was the White House built? National Youth Policy 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (National Youth Policy, would be established at, the White House) -> National Youth Policy (2912ms) When was the White House built? George W. Bush 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (George W. Bush, established, the White House Office) -> George W. Bush (2911ms) When was the White House built? The administration 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (The administration, established, a White House Office) -> The administration (2906ms) When was the White House built? the executive order 0.555555555555 When was the White House built? -> $x: ($x, establish, white house) -> (the executive order, establishing, the White House Rural Council) -> the executive order (2906ms) When was the White House built? new buildings 0.4444444444449999 When was the White House built? -> $x: (new president, be build on, $x) -> (its new president, was focusing on building, new buildings) -> new buildings (2916ms) When was the White House built? 1964 0.333333333335 When was the White House built? -> $x: (white house, be create in, $x) -> (The White House Fellows Program, was created in, 1964) -> 1964 (2916ms) When was the White House built? The missing emails 0.333333333335 When was the White House built? -> $x: ($x, discover, white house) -> (The missing emails, were discovered by, the White House) -> The missing emails (2916ms) When was the White House built? Adobe Illustrator 0.333333333335 When was the White House built? -> $x: (white house, be open in, $x) -> (the White House PDF file, is opened in, Adobe Illustrator) -> Adobe Illustrator (2916ms) When was the White House built? jobs 0.333333333335 When was the White House built? -> $x: (white house, be create on, $x) -> (the White House, is focusing on creating, jobs) -> jobs (2918ms) When was the White House built? the DNC 0.333333333335 When was the White House built? -> $x: ($x, invent, white house) -> (the DNC, invented, White House ?culture) -> the DNC (2916ms) When was the White House built? May 0.333333333335 When was the White House built? -> $x: (white house, be create in, $x) -> (The White House Situation Room, was created in, May) -> May (2916ms) When was the White House built? certain key elements 0.333333333335 When was the White House built? -> $x: (white house, be open on, $x) -> (The White House, is open to compromise on, certain key elements) -> certain key elements (2918ms) When was the White House built? America 0.333333333335 When was the White House built? -> $x: (white house, be create in, $x) -> (the White House business leaders, are creating jobs in, America) -> America (2916ms) When was the White House built? full public view 0.333333333335 When was the White House built? -> $x: (white house, be open in, $x) -> (the Bush White House, is now open in, full public view) -> full public view (2916ms) When was the White House built? miniature 0.333333333335 When was the White House built? -> $x: (white house, be create in, $x) -> (the White House, were created in, miniature) -> miniature (2916ms) When was the White House built? white lie or laughable excuse 0.333333333335 When was the White House built? -> $x: ($x, invent, white house) -> (white lie or laughable excuse, is invented by, the White House) -> white lie or laughable excuse (2916ms) When was the White House built? an invitation 0.333333333335 When was the White House built? -> $x: (white house, be open in, $x) -> (The White House, is opening its doors in, an invitation) -> an invitation (2918ms) When was the White House built? January 0.333333333335 When was the White House built? -> $x: (white house, be create in, $x) -> (The White House, were created in, January) -> January (2916ms) When was the White House built? 1950 0.333333333335 When was the White House built? -> $x: (white house, be create in, $x) -> (The White House Science Advisor position, was created in, 1950) -> 1950 (2916ms) When was the White House built? Keynes 0.333333333335 When was the White House built? -> $x: ($x, discover, white house) -> (Keynes, discovered, the white house) -> Keynes (2916ms) When was the White House built? Black slaves 0.22222222222399998 When was the White House built? -> $x: (white house, be build by, $x) -> (the White House, was built by, Black slaves) -> Black slaves (2919ms) When was the White House built? Black Slaves 0.22222222222399998 When was the White House built? -> $x: (white house, be build by, $x) -> (the White House, was built by, Black Slaves) -> Black Slaves (2918ms) When was the White House built? black slaves 0.22222222222399998 When was the White House built? -> $x: (white house, be build by, $x) -> (the White House, was built by, black slaves) -> black slaves (2918ms) When was the White House built? enslaved Africans 0.22222222222399998 When was the White House built? -> $x: (white house, be build by, $x) -> (the White House, was built by, enslaved Africans) -> enslaved Africans (2918ms) When was the White House built? James Hoban 0.22222222222399998 When was the White House built? -> $x: (white house, be build by, $x) -> (White House, was built by, James Hoban) -> James Hoban (2919ms) When was the White House built? slaves 0.22222222222399998 When was the White House built? -> $x: (white house, be build by, $x) -> (a White House, was once built by, slaves) -> slaves (2919ms) When was the White House built? slave labor 0.22222222222399998 When was the White House built? -> $x: (white house, be build by, $x) -> (the White House, was originally built by, slave labor) -> slave labor (2918ms) When was the White House built? the Israelis 0.22222222222399998 When was the White House built? -> $x: (white house, be build by, $x) -> (white Jerusalem stone houses, are being built by, the Israelis) -> the Israelis (2918ms) When was the White House built? a deal 0.222222222221 When was the White House built? -> $x: (vice president, be make on, $x) -> (Vice President Joe Biden, had been made on, a deal) -> a deal (2921ms) When was the White House built? the ballot 0.222222222221 When was the White House built? -> $x: (vice president, be make on, $x) -> (vice president, was made on, the ballot) -> the ballot (2921ms) When was the White House built? contesting 0.222222222221 When was the White House built? -> $x: (vice president, be make on, $x) -> (the Vice President?s mind, is definitely made up on, contesting) -> contesting (2921ms) When was the White House built? such examinations 0.22222222222 When was the White House built? -> $x: ($x, establish, vice president) -> (such examinations, will be established by, the Vice-President) -> such examinations (2923ms) When was the White House built? the activities/events office 0.22222222222 When was the White House built? -> $x: ($x, establish, press office) -> (the activities/events office, established, their press office) -> the activities/events office (2922ms) When was the White House built? 1916 Steiner 0.22222222222 When was the White House built? -> $x: ($x, establish, press office) -> (1916 Steiner, sought to establish, a press office) -> 1916 Steiner (2922ms) When was the White House built? The Prize 0.22222222222 When was the White House built? -> $x: ($x, establish, vice president) -> (The Prize, was established by, UAE Vice President) -> The Prize (2924ms) When was the White House built? The Constitution 0.22222222222 When was the White House built? -> $x: ($x, establish, vice president) -> (The Constitution, established the office of, vice president) -> The Constitution (2923ms) When was the White House built? Clear definitions 0.22222222222 When was the White House built? -> $x: ($x, establish, vice president) -> (Clear definitions, were established with, the Vice President) -> Clear definitions (2922ms) When was the White House built? The U.S. Constitution 0.22222222222 When was the White House built? -> $x: ($x, establish, vice president) -> (The U.S. Constitution, established the office of, vice president) -> The U.S. Constitution (2923ms) When was the White House built? President Gates 0.22222222222 When was the White House built? -> $x: ($x, establish, vice president) -> (President Gates, establishes, Vice President) -> President Gates (2923ms) When was the White House built? activities 0.22222222222 When was the White House built? -> $x: ($x, establish, vice president) -> (activities, will be established by, the Vice President) -> activities (2923ms) When was the White House built? no hierarchy 0.22222222222 When was the White House built? -> $x: ($x, establish, vice president) -> (no hierarchy, is established between, the two Vice-Presidents) -> no hierarchy (2923ms) When was the White House built? a committee 0.22222222222 When was the White House built? -> $x: ($x, establish, vice president) -> (a committee, shall be established by, the Vice President) -> a committee (2922ms) When was the White House built? a reorganization 0.22222222222 When was the White House built? -> $x: ($x, establish, vice president) -> (a reorganization, established the Office of, the Vice President) -> a reorganization (2922ms) When was the White House built? The 25th amendment 0.22222222222 When was the White House built? -> $x: ($x, establish, vice president) -> (The 25th amendment, establishes, the Vice President) -> The 25th amendment (2923ms) When was the White House built? the British government 0.22222222222 When was the White House built? -> $x: ($x, establish, press office) -> (the British government, established, the War Office Press Bureau) -> the British government (2922ms) When was the White House built? fringe benefits 0.22222222222 When was the White House built? -> $x: ($x, establish, vice president) -> (fringe benefits, are established annually by, the Vice President) -> fringe benefits (2922ms) When was the White House built? priorities 0.22222222222 When was the White House built? -> $x: ($x, establish, vice president) -> (priorities, are established by, the Vice President) -> priorities (2923ms) When was the White House built? an officer-level position 0.22222222222 When was the White House built? -> $x: ($x, establish, vice president) -> (an officer-level position, established, a vice president) -> an officer-level position (2922ms) When was the White House built? a unicameral 0.22222222222 When was the White House built? -> $x: ($x, establish, vice president) -> (a unicameral, establishes the office of, vice-president) -> a unicameral (2923ms) When was the White House built? Walter Mondale 0.22222222222 When was the White House built? -> $x: ($x, establish, vice president) -> (Walter Mondale, established, the permanent vice president) -> Walter Mondale (2922ms) When was the White House built? approved gifts 0.22222222222 When was the White House built? -> $x: ($x, establish, vice president) -> (approved gifts, shall be established by, the Vice President) -> approved gifts (2923ms) When was the White House built? The term -0.0 When was the White House built? -> $x: ($x, invent, vice president) -> (The term, was apparently invented by, Vice President Al Gore) -> The term (2924ms) When was the White House built? September 6 -0.0 When was the White House built? -> $x: (vice president, be open on, $x) -> (NSU Vice President Baepler, were opened on, September 6) -> September 6 (2924ms) When was the White House built? June -0.0 When was the White House built? -> $x: (vice president, start in, $x) -> (vice president, officially starts in, June) -> June (2924ms) When was the White House built? 1898 -0.0 When was the White House built? -> $x: (vice president, build in, $x) -> (Vice President, had this house built in, 1898) -> 1898 (2924ms) When was the White House built? 1986 -0.0 When was the White House built? -> $x: (vice president, start in, $x) -> (The new vice president, started his automotive career in, 1986) -> 1986 (2924ms) When was the White House built? October 22 -0.0 When was the White House built? -> $x: (vice president, be open on, $x) -> (NSU Vice President Baepler, were opened on, October 22) -> October 22 (2924ms) When was the White House built? a small way -0.0 When was the White House built? -> $x: (vice president, start in, $x) -> (vice president, started in, a small way) -> a small way (2924ms) What was the name of Patsy Cline's producer? Chet Atkins 0.22222222221799998 What was the name of Patsy Cline's producer? -> $x: ($x, produce, patsy cline) -> (Chet Atkins, Releases produced, Remembering Patsy Cline & Jim Reeves) -> Chet Atkins (914ms) What was the name of Patsy Cline's producer? Chris Kennedy 0.22222222221799998 What was the name of Patsy Cline's producer? -> $x: ($x, produce, patsy cline) -> (Chris Kennedy, Films Produced, Doing Time for Patsy Cline) -> Chris Kennedy (914ms) What was the name of Patsy Cline's producer? Owen Bradley 0.22222222221799998 What was the name of Patsy Cline's producer? -> $x: ($x, produce, patsy cline) -> (Owen Bradley, Releases produced, Songs by Patsy Cline) -> Owen Bradley (914ms) Where is Mesa Verde National park? Long House -0.0 Where is Mesa Verde National park? -> $x: ($x, contain, mesa verde national park) -> (Long House, Contained by, Mesa Verde National Park) -> Long House (1330ms) Where is Mesa Verde National park? Colorado -0.0 Where is Mesa Verde National park? -> $x: ($x, contain, mesa verde national park) -> (Colorado, Contains, Mesa Verde National Park) -> Colorado (1312ms) Where is Mesa Verde National park? Congress -0.0 Where is Mesa Verde National park? -> $x: ($x, establish, mesa verde national park) -> (Congress, established, Mesa Verde National Park) -> Congress (1165ms) Where is Mesa Verde National park? Chapin Mesa Archeological Museum -0.0 Where is Mesa Verde National park? -> $x: ($x, contain, mesa verde national park) -> (Chapin Mesa Archeological Museum, Contained by, Mesa Verde National Park) -> Chapin Mesa Archeological Museum (1312ms) Where is Mesa Verde National park? the broad area -0.0 Where is Mesa Verde National park? -> $x: ($x, surround, mesa verde national park) -> (the broad area, surrounding, Mesa Verde National Park) -> the broad area (1165ms) Where is Mesa Verde National park? a bill -0.0 Where is Mesa Verde National park? -> $x: ($x, create, mesa verde national park) -> (a bill, creating, Mesa Verde National Park) -> a bill (1133ms) Where is Mesa Verde National park? United States of America -0.0 Where is Mesa Verde National park? -> $x: ($x, contain, mesa verde national park) -> (United States of America, Contains, Mesa Verde National Park) -> United States of America (1312ms) Where is Mesa Verde National park? Balcony House -0.0 Where is Mesa Verde National park? -> $x: ($x, contain, mesa verde national park) -> (Balcony House, Contained by, Mesa Verde National Park) -> Balcony House (1330ms) Where is Mesa Verde National park? Cliff Palace -0.0 Where is Mesa Verde National park? -> $x: ($x, contain, mesa verde national park) -> (Cliff Palace, Contained by, Mesa Verde National Park) -> Cliff Palace (1312ms) Where is Mesa Verde National park? Cedar Tree Tower -0.0 Where is Mesa Verde National park? -> $x: ($x, contain, mesa verde national park) -> (Cedar Tree Tower, Contained by, Mesa Verde National Park) -> Cedar Tree Tower (1312ms) Where is Mesa Verde National park? Step House -0.0 Where is Mesa Verde National park? -> $x: ($x, contain, mesa verde national park) -> (Step House, Contained by, Mesa Verde National Park) -> Step House (1312ms) Where is Mesa Verde National park? Mesa Verde Administrative District -0.0 Where is Mesa Verde National park? -> $x: ($x, contain, mesa verde national park) -> (Mesa Verde Administrative District, Contained by, Mesa Verde National Park) -> Mesa Verde Administrative District (1312ms) Where is Mesa Verde National park? Spruce Tree House -0.0 Where is Mesa Verde National park? -> $x: ($x, contain, mesa verde national park) -> (Spruce Tree House, Contained by, Mesa Verde National Park) -> Spruce Tree House (1331ms) Where is Mesa Verde National park? Badger House Trail -0.0 Where is Mesa Verde National park? -> $x: ($x, contain, mesa verde national park) -> (Badger House Trail, Contained by, Mesa Verde National Park) -> Badger House Trail (1312ms) Where is Mesa Verde National park? Square Tower House -0.0 Where is Mesa Verde National park? -> $x: ($x, contain, mesa verde national park) -> (Square Tower House, Contained by, Mesa Verde National Park) -> Square Tower House (1330ms) Where is Mesa Verde National park? Montezuma County -0.0 Where is Mesa Verde National park? -> $x: ($x, contain, mesa verde national park) -> (Montezuma County, Contains, Mesa Verde National Park) -> Montezuma County (1330ms) Where is Mesa Verde National park? Far View Sites Complex -0.0 Where is Mesa Verde National park? -> $x: ($x, contain, mesa verde national park) -> (Far View Sites Complex, Contained by, Mesa Verde National Park) -> Far View Sites Complex (1331ms) Where is Mesa Verde National park? the southwest corner -0.111111111112 Where is Mesa Verde National park? -> $x: (mesa verde national park, be in in, $x) -> (Mesa Verde National Park, is in, the southwest corner) -> the southwest corner (1580ms) Where is Mesa Verde National park? Southwest Colorado -0.111111111112 Where is Mesa Verde National park? -> $x: (mesa verde national park, be in in, $x) -> (Mesa Verde National Park, is perched high in, Southwest Colorado) -> Southwest Colorado (1803ms) Where is Mesa Verde National park? treasures -0.111111111112 Where is Mesa Verde National park? -> $x: (mesa verde national park, be in in, $x) -> ($ 15.99 $ 15.99 Mesa Verde National Park, is rich in, treasures) -> treasures (1580ms) Where is Mesa Verde National park? the New York Times -0.111111111112 Where is Mesa Verde National park? -> $x: (mesa verde national park, be in in, $x) -> (Mesa Verde National Park, are featured in, the New York Times) -> the New York Times (1580ms) Where is Mesa Verde National park? the 59th Congress -0.111111111112 Where is Mesa Verde National park? -> $x: (mesa verde national park, be in in, $x) -> (" Mesa Verde National Park, was introduced in, the 59th Congress) -> the 59th Congress (1580ms) Where is Mesa Verde National park? COLORADO -0.111111111112 Where is Mesa Verde National park? -> $x: (mesa verde national park, be in in, $x) -> (mesa verde national park, is a mountain in the state or province, COLORADO) -> COLORADO (1803ms) Where is Mesa Verde National park? 1906 -0.111111111112 Where is Mesa Verde National park? -> $x: (mesa verde national park, be in in, $x) -> (Mesa Verde National Park, was established in, 1906) -> 1906 (1803ms) Where is Mesa Verde National park? Southwestern Colorado -0.111111111112 Where is Mesa Verde National park? -> $x: (mesa verde national park, be in in, $x) -> (Mesa Verde National Park, is in, Southwestern Colorado) -> Southwestern Colorado (1580ms) Where is Mesa Verde National park? 2,000 feet -0.333333333333 Where is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (2,000 feet, is, Mesa Verde National Park) -> 2,000 feet (1854ms) Where is Mesa Verde National park? the Ancients Byway -0.333333333333 Where is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (the Ancients Byway, is, Mesa Verde National Park) -> the Ancients Byway (1803ms) Where is Mesa Verde National park? a situation -0.333333333333 Where is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (a situation, is reversed at, nearby Mesa Verde National Park) -> a situation (1854ms) Where is Mesa Verde National park? 160 -0.333333333333 Where is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (160, is, Mesa Verde National Park) -> 160 (1900ms) Where is Mesa Verde National park? Grand Junction -0.333333333333 Where is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (Grand Junction, is the gateway to, Mesa Verde National Park) -> Grand Junction (1854ms) Where is Mesa Verde National park? the south -0.333333333333 Where is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (the south, is, the Mesa Verde National Park) -> the south (1803ms) Where is Mesa Verde National park? Hovenweep -0.333333333333 Where is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (Hovenweep, is administered by, Mesa Verde National Park) -> Hovenweep (1900ms) Where is Mesa Verde National park? none -0.333333333333 Where is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (none, is more extensive than, Mesa Verde National Park) -> none (1854ms) Where is Mesa Verde National park? the archaeological center -0.333333333333 Where is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (the archaeological center, is home to, Mesa Verde National Park) -> the archaeological center (1900ms) Where is Mesa Verde National park? Soil samples -0.333333333333 Where is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (Soil samples, are being taken at, Mesa Verde National Park) -> Soil samples (1854ms) Where is Mesa Verde National park? wet deposition -0.333333333333 Where is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (wet deposition, has been monitored at, Mesa Verde National Park) -> wet deposition (1900ms) Where is Mesa Verde National park? early research -0.333333333333 Where is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (early research, is now, Mesa Verde National Park) -> early research (1854ms) Where is Mesa Verde National park? Mancos and Cortez -0.333333333333 Where is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (Mancos and Cortez, is, Mesa Verde National Park) -> Mancos and Cortez (1854ms) Where is Mesa Verde National park? 11:00 -0.333333333333 Where is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (11:00, AM to 3:00, PM Mesa Verde National Park) -> 11:00 (1900ms) Where is Mesa Verde National park? history -0.333333333333 Where is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (history, are displayed at, Mesa Verde National Park) -> history (1854ms) Where is Mesa Verde National park? the next morning -0.333333333333 Where is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (the next morning, would be, Mesa Verde National Park) -> the next morning (1900ms) Where is Mesa Verde National park? Next -0.333333333333 Where is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (Next, up is, Mesa Verde National Park) -> Next (1803ms) Where is Mesa Verde National park? Weber Mountain -0.333333333333 Where is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (Weber Mountain, is now, Mesa Verde National Park) -> Weber Mountain (1803ms) Where is Mesa Verde National park? Durango -0.333333333333 Where is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (Durango, is the gateway to, Mesa Verde National Park) -> Durango (1900ms) Where is Mesa Verde National park? the centerpiece -0.333333333333 Where is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (the centerpiece, is now, Mesa Verde National Park) -> the centerpiece (1803ms) Where is Mesa Verde National park? the mesa -0.333333333333 Where is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (the mesa, are protected by, Mesa Verde National Park) -> the mesa (1900ms) Where is Mesa Verde National park? Country West Motel -0.333333333333 Where is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (Country West Motel, is 8 miles from, Mesa Verde National Park) -> Country West Motel (1900ms) Where is Mesa Verde National park? Cliff Palace ruins -0.333333333333 Where is Mesa Verde National park? -> $x: ($x, be be, mesa verde national park) -> (Cliff Palace ruins, is now, Mesa Verde National Park) -> Cliff Palace ruins (1854ms) Where is Mesa Verde National park? 40 miles -0.666666666667 Where is Mesa Verde National park? -> $x: (mesa verde national park, be about, $x) -> (Mesa Verde National Park, is about, 40 miles) -> 40 miles (1900ms) Where is Mesa Verde National park? 150 miles -0.666666666667 Where is Mesa Verde National park? -> $x: (mesa verde national park, be about, $x) -> (Mesa Verde National Park, is just about, 150 miles) -> 150 miles (1900ms) Where is Mesa Verde National park? an hour -0.666666666667 Where is Mesa Verde National park? -> $x: (mesa verde national park, be about, $x) -> (Mesa Verde National Park, is about, an hour) -> an hour (1900ms) What is the location of Lake Champlain? Sun 0.777777777776 What is the location of Lake Champlain? -> $x: ($x, be location of, lake) -> (Sun, was the location of, Clear Lake) -> Sun (1079ms) What is the location of Lake Champlain? the basin 0.777777777776 What is the location of Lake Champlain? -> $x: ($x, be location of, lake) -> (the basin, has been the location of, huge lakes and shallow seas) -> the basin (1078ms) What is the location of Lake Champlain? The lost ranch 0.777777777776 What is the location of Lake Champlain? -> $x: ($x, be location of, lake) -> (The lost ranch, is also the location of, lake arrowhead airport) -> The lost ranch (1078ms) What is the location of Lake Champlain? the south 0.777777777776 What is the location of Lake Champlain? -> $x: ($x, be location of, lake) -> (the south, is also the location of, a beautiful lake) -> the south (1079ms) What is the location of Lake Champlain? the Midwestern prairie 0.777777777776 What is the location of Lake Champlain? -> $x: ($x, be location of, lake) -> (the Midwestern prairie, is the location of, the Great Lakes) -> the Midwestern prairie (1078ms) What is the location of Lake Champlain? The isthmus 0.777777777776 What is the location of Lake Champlain? -> $x: ($x, be location of, lake) -> (The isthmus, is the location of, the two largest lakes) -> The isthmus (1243ms) What is the location of Lake Champlain? Nanchang 0.777777777776 What is the location of Lake Champlain? -> $x: ($x, be location of, lake) -> (Nanchang, is the location of, the Poyang Lake) -> Nanchang (1079ms) What is the location of Lake Champlain? Nakuru 0.777777777776 What is the location of Lake Champlain? -> $x: ($x, be location of, lake) -> (Nakuru, is the location of, Lake Nakuru) -> Nakuru (1078ms) What is the location of Lake Champlain? southern Oregon 0.777777777776 What is the location of Lake Champlain? -> $x: ($x, be location of, lake) -> (southern Oregon, is the location of, the deepest lake) -> southern Oregon (1243ms) What is the location of Lake Champlain? the Midwest 0.777777777776 What is the location of Lake Champlain? -> $x: ($x, be location of, lake) -> (the Midwest, are the location of, the Great Lakes) -> the Midwest (1243ms) What is the location of Lake Champlain? The region 0.777777777776 What is the location of Lake Champlain? -> $x: ($x, be location of, lake) -> (The region, is also the location of, the biggest manmade lake) -> The region (1079ms) What is the location of Lake Champlain? Kakaban 0.777777777776 What is the location of Lake Champlain? -> $x: ($x, be location of, lake) -> (Kakaban, is the location of, Jellyfish Lake) -> Kakaban (1243ms) What is the location of Lake Champlain? The shop 0.555555555552 What is the location of Lake Champlain? -> $x: ($x, be located in, champlain) -> (The shop, is located in, the Champlain Professional Building) -> The shop (1316ms) What is the location of Lake Champlain? 1895 0.555555555552 What is the location of Lake Champlain? -> $x: ($x, be located in, champlain) -> (1895, was located in, Lake Champlain) -> 1895 (1316ms) What is the location of Lake Champlain? Plattsburgh 0.555555555552 What is the location of Lake Champlain? -> $x: ($x, be located in, champlain) -> (Plattsburgh, is centrally located in, the Lake Champlain Basin) -> Plattsburgh (1243ms) What is the location of Lake Champlain? Knight Island 0.555555555552 What is the location of Lake Champlain? -> $x: ($x, be located in, champlain) -> (Knight Island, is located in, northern Lake Champlain) -> Knight Island (1316ms) What is the location of Lake Champlain? Albans 0.555555555552 What is the location of Lake Champlain? -> $x: ($x, be located in, champlain) -> (Albans, is located in, the Champlain Valley region) -> Albans (1243ms) What is the location of Lake Champlain? Wallace Realty 0.555555555552 What is the location of Lake Champlain? -> $x: ($x, be located in, champlain) -> (Wallace Realty, is located in, the Champlain Valley) -> Wallace Realty (1316ms) What is the location of Lake Champlain? Client Services 0.555555555552 What is the location of Lake Champlain? -> $x: ($x, be located in, champlain) -> (Client Services, is also located in, the Champlain Building) -> Client Services (1243ms) What is the location of Lake Champlain? RU12 0.555555555552 What is the location of Lake Champlain? -> $x: ($x, be located in, champlain) -> (RU12, is located in, the Champlain Mill) -> RU12 (1316ms) What is the location of Lake Champlain? Guillaume Allene 0.11111111110700006 What is the location of Lake Champlain? -> $x: ($x, be relative of, champlain) -> (Guillaume Allene, is one relative of, Champlain?s) -> Guillaume Allene (1316ms) What is the location of Lake Champlain? The project -0.222222222222 What is the location of Lake Champlain? -> $x: ($x, be located in, qubec) -> (The project, is located in, the Abitibi region of central Qubec) -> The project (1420ms) What is the location of Lake Champlain? Ile d'Orl?ans -0.222222222222 What is the location of Lake Champlain? -> $x: ($x, be located in, qubec) -> (Ile d'Orl?ans, is located in, Qu?bec) -> Ile d'Orl?ans (1420ms) What is the location of Lake Champlain? cent -0.222222222222 What is the location of Lake Champlain? -> $x: ($x, be located in, qubec) -> (cent, are located in, Ontario and Qu?bec) -> cent (1420ms) What are semiconductors? engineers 1.11111111111 What are semiconductors? -> $x: ($x, invent, semiconductor) -> (engineers, invented, the semiconductor chips) -> engineers (2379ms) What are semiconductors? 1962 Hall 1.11111111111 What are semiconductors? -> $x: ($x, invent, semiconductor) -> (1962 Hall, invented, the semiconductor injection laser) -> 1962 Hall (2379ms) What are semiconductors? any metallic surface 1.11111111111 What are semiconductors? -> $x: ($x, cause, semiconductor) -> (any metallic surface, may easily cause, semiconductors damage) -> any metallic surface (1785ms) What are semiconductors? a p-n junction 1.11111111111 What are semiconductors? -> $x: ($x, cause, semiconductor) -> (a p-n junction, causes a forward bias in, the semiconductor) -> a p-n junction (1786ms) What are semiconductors? More rumblings 1.11111111111 What are semiconductors? -> $x: ($x, cause, semiconductor) -> (More rumblings, were caused by, the semiconductor industry) -> More rumblings (1785ms) What are semiconductors? boron impurities 1.11111111111 What are semiconductors? -> $x: ($x, cause, semiconductor) -> (boron impurities, cause, p-type semiconductor behavior) -> boron impurities (2379ms) What are semiconductors? TJ 1.11111111111 What are semiconductors? -> $x: ($x, cause, semiconductor) -> (TJ, can cause a 50 % reduction in, a semiconductor device) -> TJ (1785ms) What are semiconductors? Shockley and associates 1.11111111111 What are semiconductors? -> $x: ($x, invent, semiconductor) -> (Shockley and associates, invented, the semiconductors) -> Shockley and associates (2379ms) What are semiconductors? the rising voltage 1.11111111111 What are semiconductors? -> $x: ($x, cause, semiconductor) -> (the rising voltage, causes, semi-conductor components) -> the rising voltage (1785ms) What are semiconductors? a proton 1.11111111111 What are semiconductors? -> $x: ($x, cause, semiconductor) -> (a proton, causes a forward bias in, the semiconductor) -> a proton (1785ms) What are semiconductors? Germany 1.11111111111 What are semiconductors? -> $x: ($x, invent, semiconductor) -> (Germany, Invented, nano semiconductor materials) -> Germany (1786ms) What are semiconductors? diamond 1.11111111111 What are semiconductors? -> $x: ($x, cause, semiconductor) -> (diamond, is now believed to cause, the semi-conductor properties) -> diamond (2379ms) What are semiconductors? Joyce Hall 1.11111111111 What are semiconductors? -> $x: ($x, invent, semiconductor) -> (Joyce Hall, invented, the semiconductor injection laser) -> Joyce Hall (1785ms) What are semiconductors? The Device Solution Network 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (The Device Solution Network, specializes in, semiconductor) -> The Device Solution Network (7644ms) What are semiconductors? MEMC MEMC 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (MEMC MEMC, is a global leader in, semiconductor) -> MEMC MEMC (5616ms) What are semiconductors? Alcom 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (Alcom, offers solutions in, semiconductors) -> Alcom (8880ms) What are semiconductors? organic materials 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (organic materials, are very rare in, semiconductor) -> organic materials (4341ms) What are semiconductors? the parent Company 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (the parent Company, is a global leader in, semiconductor) -> the parent Company (4341ms) What are semiconductors? Sony 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (Sony, will also trim spending in, semiconductors) -> Sony (7644ms) What are semiconductors? demand 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (demand, weakened in, semiconductors) -> demand (5068ms) What are semiconductors? Broadcom Corporation 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (Broadcom Corporation, is a global leader in, semiconductors) -> Broadcom Corporation (7644ms) What are semiconductors? silane gas 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (silane gas, is used in, semiconductor) -> silane gas (7644ms) What are semiconductors? Current customers 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (Current customers, include worldwide leaders in, semiconductors) -> Current customers (5068ms) What are semiconductors? particles 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (particles, can be created in, semiconductors) -> particles (9114ms) What are semiconductors? light 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (light, is absorbed in, semiconductors) -> light (5616ms) What are semiconductors? DS2 DS2 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (DS2 DS2, is a global leader in, semiconductors) -> DS2 DS2 (5283ms) What are semiconductors? power management 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (power management, are implemented in, semiconductors) -> power management (3088ms) What are semiconductors? Topics 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (Topics, include basic optical processes in, semiconductors) -> Topics (4247ms) What are semiconductors? Samsung Electronics Co Ltd 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (Samsung Electronics Co Ltd, is a global leader in, semiconductor) -> Samsung Electronics Co Ltd (5068ms) What are semiconductors? Amd 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (Amd, is a company in the economic sector of, semiconductors) -> Amd (5068ms) What are semiconductors? The same 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (The same, will happen in, semiconductors) -> The same (7644ms) What are semiconductors? Similar effects 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (Similar effects, can occur in, semiconductors) -> Similar effects (4247ms) What are semiconductors? ST-Ericsson 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (ST-Ericsson, is a global leader in, semiconductors) -> ST-Ericsson (3921ms) What are semiconductors? technologies 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (technologies, tends to specialize in, semiconductors) -> technologies (7644ms) What are semiconductors? The gas 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (The gas, is used in manufacturing, semiconductors) -> The gas (3921ms) What are semiconductors? Atmel 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (Atmel, is a major powerhouse in, semiconductors) -> Atmel (3921ms) What are semiconductors? electrical engineering 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (electrical engineering, might be a specialist in, semiconductors) -> electrical engineering (5282ms) What are semiconductors? defect engineering 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (defect engineering, operate in, semiconductors) -> defect engineering (5282ms) What are semiconductors? Silicium 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (Silicium, is widely used in, semiconductors) -> Silicium (8880ms) What are semiconductors? Michael 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (Michael, specializes in, semiconductors) -> Michael (3088ms) What are semiconductors? Chapter 7 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (Chapter 7, brings in, semiconductors) -> Chapter 7 (7644ms) What are semiconductors? a pan-European distributor 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (a pan-European distributor, specializing in, semiconductors) -> a pan-European distributor (5068ms) What are semiconductors? Samsung 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (Samsung, is a global leader in, semiconductor) -> Samsung (8880ms) What are semiconductors? Shot noise 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (Shot noise, happens in, semiconductors) -> Shot noise (5283ms) What are semiconductors? Palladium paste 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (Palladium paste, is used in, semiconductors) -> Palladium paste (5616ms) What are semiconductors? parts binning 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (parts binning, is a common process in, semiconductors) -> parts binning (4341ms) What are semiconductors? Gold 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (Gold, is used in, semiconductors) -> Gold (5616ms) What are semiconductors? The Device 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (The Device, specializes in, semiconductor) -> The Device (5068ms) What are semiconductors? Gordon 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (Gordon, is a senior statesman in, semiconductors) -> Gordon (8880ms) What are semiconductors? III-V compounds 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (III-V compounds, used in, semiconductors) -> III-V compounds (5616ms) What are semiconductors? Optically induced excitation density 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (Optically induced excitation density, flops in, semiconductors) -> Optically induced excitation density (8880ms) What are semiconductors? electrons 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (electrons, do in, semiconductors) -> electrons (8880ms) What are semiconductors? the silicon wafers 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (the silicon wafers, used in, semiconductors) -> the silicon wafers (9114ms) What are semiconductors? the memory 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (the memory, is stored in, semiconductors) -> the memory (8880ms) What are semiconductors? technology startups 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (technology startups, specialize in, semiconductors) -> technology startups (5068ms) What are semiconductors? Indium 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (Indium, is used in, semiconductors) -> Indium (4341ms) What are semiconductors? Germanium 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (Germanium, is an important element in, semiconductors) -> Germanium (5283ms) What are semiconductors? Silicon 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (Silicon, is widely used in, semiconductors) -> Silicon (5283ms) What are semiconductors? Aptina Imaging 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (Aptina Imaging, has has been working in, semiconductors) -> Aptina Imaging (4247ms) What are semiconductors? an electron 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (an electron, practically exist only in, semiconductors) -> an electron (8880ms) What are semiconductors? the real opportunity 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (the real opportunity, was in, semiconductors) -> the real opportunity (3921ms) What are semiconductors? Extreme 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (Extreme, mid-infrared nonlinear optics in, semiconductors) -> Extreme (3088ms) What are semiconductors? solar applications 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (solar applications, as have utility in, semiconductors) -> solar applications (7644ms) What are semiconductors? the operator 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (the operator, obtains optimum results in, semiconductor) -> the operator (4342ms) What are semiconductors? MEMC 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (MEMC, is a global leader in, semiconductor) -> MEMC (5616ms) What are semiconductors? Motorola 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (Motorola, became a world leader in, semiconductor) -> Motorola (3088ms) What are semiconductors? Parts binning 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (Parts binning, is a common process in, semiconductors) -> Parts binning (2379ms) What are semiconductors? charge 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (charge, flows in, semiconductors) -> charge (8880ms) What are semiconductors? One possible area 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (One possible area, would be in, semiconductors) -> One possible area (8880ms) What are semiconductors? Samsung Electronics 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (Samsung Electronics, is a global leader in, semiconductor) -> Samsung Electronics (3921ms) What are semiconductors? The effect 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (The effect, is most pronounced in, semiconductors) -> The effect (9114ms) What are semiconductors? silicon 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (silicon, is an important element in, semiconductors) -> silicon (3921ms) What are semiconductors? a materials scientist 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (a materials scientist, worked in, semiconductors) -> a materials scientist (8880ms) What are semiconductors? chalcogenides 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (chalcogenides, are used in, semiconductors) -> chalcogenides (3921ms) What are semiconductors? the wafers 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (the wafers, used in, semiconductors) -> the wafers (5283ms) What are semiconductors? Japan 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (Japan, enjoys in, semiconductors) -> Japan (4248ms) What are semiconductors? the elements 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (the elements, found in, semiconductors) -> the elements (8880ms) What are semiconductors? a process 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (a process, occurs in, semiconductors) -> a process (3088ms) What are semiconductors? a Japanese company 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (a Japanese company, specializing in, semiconductors) -> a Japanese company (4341ms) What are semiconductors? Samsung Electronics Co. 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (Samsung Electronics Co., is a global leader in, semiconductor) -> Samsung Electronics Co. (4247ms) What are semiconductors? business 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (business, was in, semiconductors) -> business (3088ms) What are semiconductors? Fujitsu 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (Fujitsu, is a minor player in, semiconductors) -> Fujitsu (2379ms) What are semiconductors? piezo actuators 0.999999999999 What are semiconductors? -> $x: ($x, in, semiconductor) -> (piezo actuators, are common in, semiconductor) -> piezo actuators (5283ms) What are semiconductors? the transforms 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (a semiconductor, did, the transforms) -> the transforms (9114ms) What are semiconductors? Fuller 0.888888888888 What are semiconductors? -> $x: ($x, describe, semiconductor) -> (Fuller, describes his work on, semiconductors) -> Fuller (9135ms) What are semiconductors? a wonderful job 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (The semiconductor vendors, do, a wonderful job) -> a wonderful job (9156ms) What are semiconductors? the same 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (Cypress Semiconductor, did, the same) -> the same (9135ms) What are semiconductors? a vector multiplication 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (The Hall Effect Semiconductor, does, a vector multiplication) -> a vector multiplication (9156ms) What are semiconductors? a body good click 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (Semiconductors, do, a body good click) -> a body good click (9114ms) What are semiconductors? A CCD 0.888888888888 What are semiconductors? -> $x: ($x, describe, semiconductor) -> (A CCD, is best described as, a semiconductor chip) -> A CCD (9114ms) What are semiconductors? Ning 0.888888888888 What are semiconductors? -> $x: ($x, describe, semiconductor) -> (Ning, described progress on, metal-semiconductor nanolasers) -> Ning (9156ms) What are semiconductors? the transistor block 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (Organic Semiconductor, does, the transistor block) -> the transistor block (9156ms) What are semiconductors? the heavy power regulation 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (semiconductors, do, the heavy power regulation) -> the heavy power regulation (9114ms) What are semiconductors? windows 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (Lattice Semiconductor, does only work on, windows) -> windows (9156ms) What are semiconductors? the conventional wisdom hold 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (III-V semiconductors, well does, the conventional wisdom hold) -> the conventional wisdom hold (9135ms) What are semiconductors? the article 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (National Semiconductor, done since, the article) -> the article (9114ms) What are semiconductors? the job 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (inexpensive semiconductors, will do, the job) -> the job (9135ms) What are semiconductors? fine 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (the semiconductor industry, is doing just, fine) -> fine (9114ms) What are semiconductors? the 1980s 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (the semiconductor industry, did in, the 1980s) -> the 1980s (9135ms) What are semiconductors? The titanium dioxide 0.888888888888 What are semiconductors? -> $x: ($x, describe, semiconductor) -> (The titanium dioxide, is described as, a semiconductor) -> The titanium dioxide (9135ms) What are semiconductors? such soul searching 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (the semiconductor company Intel, had to do, such soul searching) -> such soul searching (9135ms) What are semiconductors? Brazil 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (semiconductor manufacturing, can be done in, Brazil) -> Brazil (9114ms) What are semiconductors? China 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (semiconductor companies, can do in, China) -> China (9135ms) What are semiconductors? the part 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (semiconductors, then did, the part) -> the part (9114ms) What are semiconductors? one shot 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (The semiconductor layer, is all done in, one shot) -> one shot (9156ms) What are semiconductors? telecoms spending 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (semiconductors, did, telecoms spending) -> telecoms spending (9114ms) What are semiconductors? any marketing 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (the semiconductor industry, does, any marketing) -> any marketing (9114ms) What are semiconductors? 2? or 3? wafers 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (compound semiconductor work, is done on, 2? or 3? wafers) -> 2? or 3? wafers (9135ms) What are semiconductors? EDA 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (semiconductor companies, does, EDA) -> EDA (9114ms) What are semiconductors? offer roadmaps 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (Semiconductor and component suppliers, do, offer roadmaps) -> offer roadmaps (9156ms) What are semiconductors? two people 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (Micrel Semiconductor, was essentially done by, two people) -> two people (9114ms) What are semiconductors? so 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (Photonics technicians who work with semiconductor lasers, do, so) -> so (9135ms) What are semiconductors? fantastic results 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (the semiconductor industry, has done with, fantastic results) -> fantastic results (9156ms) What are semiconductors? awareness 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (Semiconductor, does n?t have the same type of, awareness) -> awareness (9135ms) What are semiconductors? the 1980?s 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (the Japanese semiconductor makers, did in, the 1980?s) -> the 1980?s (9156ms) What are semiconductors? three 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (semiconductor stocks, did very well in, three) -> three (9175ms) What are semiconductors? yaaron amber 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (general semiconductor ltd industry index gaane, do, yaaron amber) -> yaaron amber (9156ms) What are semiconductors? a break 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (Semiconductor Insights, does, a break) -> a break (9156ms) What are semiconductors? the University 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (National Semiconductor Pratt & Whitney, does, the University) -> the University (9135ms) What are semiconductors? last year 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (Semiconductors, did n?t stop until, last year) -> last year (9156ms) What are semiconductors? a unique way 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (Dialog Semiconductor, has done this in, a unique way) -> a unique way (9135ms) What are semiconductors? Sematech 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (the semiconductor industry, did so successfully with, Sematech) -> Sematech (9114ms) What are semiconductors? Semico 0.888888888888 What are semiconductors? -> $x: ($x, describe, semiconductor) -> (Semico, has described, the semiconductor inventory reduction) -> Semico (9135ms) What are semiconductors? the absorption 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (the semiconductor material, so does, the absorption) -> the absorption (9135ms) What are semiconductors? a toothpaste 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (titanium semiconductor, does n?t need, a toothpaste) -> a toothpaste (9156ms) What are semiconductors? means 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (semiconductor, have been done by, means) -> means (9156ms) What are semiconductors? a phone brief 0.888888888888 What are semiconductors? -> $x: (semiconductor, do, $x) -> (The semiconductor press, did receive, a phone brief) -> a phone brief (9135ms) What are semiconductors? 2009 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductors, is for, 2009) -> 2009 (9288ms) What are semiconductors? Hudgins 0.888888888887 What are semiconductors? -> $x: ($x, do, semiconductor) -> (Hudgins, has done research on, semiconductor materials) -> Hudgins (9324ms) What are semiconductors? the future 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductors, were a problem for, the future) -> the future (9306ms) What are semiconductors? a rebound 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (?The semiconductor industry, is poised for, a rebound) -> a rebound (9233ms) What are semiconductors? the plane 0.888888888887 What are semiconductors? -> $x: ($x, define, semiconductor) -> (the plane, defined by, the semiconductor junction 15) -> the plane (9288ms) What are semiconductors? high-speed operation 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (compound semiconductors, are suitable for, high-speed operation) -> high-speed operation (9233ms) What are semiconductors? Mobile 0.888888888887 What are semiconductors? -> $x: ($x, do, semiconductor) -> (Mobile, has very little to do with, semiconductor technology) -> Mobile (9194ms) What are semiconductors? use 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductor device, is designed for, use) -> use (9213ms) What are semiconductors? no pulsation 0.888888888887 What are semiconductors? -> $x: ($x, do, semiconductor) -> (no pulsation, were done in, some semiconductor applications) -> no pulsation (9288ms) What are semiconductors? The students design 0.888888888887 What are semiconductors? -> $x: ($x, characterize, semiconductor) -> (The students design, characterize, simple semiconductor circuits) -> The students design (9233ms) What are semiconductors? more than two years 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (Semiconductors, has been established for, more than two years) -> more than two years (9175ms) What are semiconductors? science and technology 0.888888888887 What are semiconductors? -> $x: ($x, produce, semiconductor) -> (science and technology, produced, the semi-conductor industry) -> science and technology (9306ms) What are semiconductors? the transport 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (Organic semiconductors, are more feasible for, the transport) -> the transport (9324ms) What are semiconductors? research 0.888888888887 What are semiconductors? -> $x: ($x, do, semiconductor) -> (research, has to do with, the semiconductor/conductor dichotomy) -> research (9233ms) What are semiconductors? mass production 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (Semiconductor lasers, are ideally suited for, mass production) -> mass production (9306ms) What are semiconductors? microscopic devices 0.888888888887 What are semiconductors? -> $x: ($x, produce, semiconductor) -> (microscopic devices, are produced on, semiconductor chips) -> microscopic devices (9213ms) What are semiconductors? the cascaded H bridge 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductors, is the same as for, the cascaded H bridge) -> the cascaded H bridge (9233ms) What are semiconductors? Okmetic 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (power semiconductors, are important for, Okmetic) -> Okmetic (9324ms) What are semiconductors? The sensor 0.888888888887 What are semiconductors? -> $x: ($x, produce, semiconductor) -> (The sensor, was originally produced by, DALLAS Semiconductor) -> The sensor (9233ms) What are semiconductors? WideSail 0.888888888887 What are semiconductors? -> $x: ($x, do, semiconductor) -> (WideSail, does, semiconductor intellectual property) -> WideSail (9270ms) What are semiconductors? Seiko Instruments 0.888888888887 What are semiconductors? -> $x: ($x, produce, semiconductor) -> (Seiko Instruments, also produces, semiconductor products) -> Seiko Instruments (9194ms) What are semiconductors? the few that 0.888888888887 What are semiconductors? -> $x: ($x, do, semiconductor) -> (the few that, do are, Fairchild Semiconductor) -> the few that (9360ms) What are semiconductors? the currency 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (Dialog Semiconductor, be liable for, the currency) -> the currency (9195ms) What are semiconductors? charge transport 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (the semiconductor, is used solely for, charge transport) -> charge transport (9233ms) What are semiconductors? micromanufacturing 0.888888888887 What are semiconductors? -> $x: ($x, do, semiconductor) -> (micromanufacturing, had been done in, the semiconductor industry) -> micromanufacturing (9288ms) What are semiconductors? the commercial market 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductor, is now headed for, the commercial market) -> the commercial market (9195ms) What are semiconductors? the utility 0.888888888887 What are semiconductors? -> $x: ($x, do, semiconductor) -> (the utility, is also done by, semiconductors) -> the utility (9306ms) What are semiconductors? The company 0.888888888887 What are semiconductors? -> $x: ($x, produce, semiconductor) -> (The company, produces, semiconductors) -> The company (9342ms) What are semiconductors? Amino acids 0.888888888887 What are semiconductors? -> $x: ($x, characterize, semiconductor) -> (Amino acids, have been characterized as being, semi-conductor) -> Amino acids (9324ms) What are semiconductors? partner companies 0.888888888887 What are semiconductors? -> $x: ($x, produce, semiconductor) -> (partner companies, produce, the semiconductors) -> partner companies (9270ms) What are semiconductors? the integrated circuits 0.888888888887 What are semiconductors? -> $x: ($x, produce, semiconductor) -> (the integrated circuits, produced by, the semiconductor industry) -> the integrated circuits (9233ms) What are semiconductors? delicate contact 0.888888888887 What are semiconductors? -> $x: ($x, produce, semiconductor) -> (delicate contact, produced, the best semiconductor effect) -> delicate contact (9342ms) What are semiconductors? VC++ 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (Semiconductor Company, Is Looking For, VC++) -> VC++ (9306ms) What are semiconductors? complete System 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductor technology, are the enabler for, complete System) -> complete System (9233ms) What are semiconductors? a lot 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (Crystal Semiconductor, was responsible for, a lot) -> a lot (9251ms) What are semiconductors? human sensation 0.888888888887 What are semiconductors? -> $x: ($x, do, semiconductor) -> (human sensation, often do, damage semiconductor devices) -> human sensation (9213ms) What are semiconductors? the first time 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductors, was observed directly for, the first time) -> the first time (9360ms) What are semiconductors? The Laser Group 0.888888888887 What are semiconductors? -> $x: ($x, produce, semiconductor) -> (The Laser Group, produces, CW semiconductor lasers) -> The Laser Group (9288ms) What are semiconductors? smartphones 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> ('semiconductor firms, are feeding the demand for, smartphones) -> smartphones (9306ms) What are semiconductors? laser applications 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductors, are investigated for, laser applications) -> laser applications (9288ms) What are semiconductors? entire range 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductors, are being used for, entire range) -> entire range (9324ms) What are semiconductors? the conversion 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (This semiconductor, is responsible for, the conversion) -> the conversion (9288ms) What are semiconductors? architecture 0.888888888887 What are semiconductors? -> $x: ($x, produce, semiconductor) -> (architecture, were produced by, Freescale Semiconductor) -> architecture (9175ms) What are semiconductors? the FDC 0.888888888887 What are semiconductors? -> $x: ($x, produce, semiconductor) -> (the FDC, produces stacks of, semiconductor materials and metals) -> the FDC (9213ms) What are semiconductors? Circuit design and layout 0.888888888887 What are semiconductors? -> $x: ($x, do, semiconductor) -> (Circuit design and layout, were done by, Harris Semiconductor) -> Circuit design and layout (9233ms) What are semiconductors? Local workers 0.888888888887 What are semiconductors? -> $x: ($x, produce, semiconductor) -> (Local workers, produce goods for, On Semiconductor customers) -> Local workers (9342ms) What are semiconductors? EDN Magazine 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (1993 Dallas Semiconductor, was nominated for, EDN Magazine) -> EDN Magazine (9213ms) What are semiconductors? the heat 0.888888888887 What are semiconductors? -> $x: ($x, produce, semiconductor) -> (the heat, produced by, semiconductors) -> the heat (9324ms) What are semiconductors? a year 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (the semiconductor industry, is set for, a year) -> a year (9324ms) What are semiconductors? various functions 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> ('s semiconductor components, are used for, various functions) -> various functions (9251ms) What are semiconductors? Ion Torrent 0.888888888887 What are semiconductors? -> $x: ($x, produce, semiconductor) -> (Ion Torrent, produces, its proprietary semiconductor chips) -> Ion Torrent (9306ms) What are semiconductors? constructing 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (Semiconductors, are used for, constructing) -> constructing (9324ms) What are semiconductors? the year 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (Semiconductors, are now positive for, the year) -> the year (9251ms) What are semiconductors? a mineral 0.888888888887 What are semiconductors? -> $x: ($x, produce, semiconductor) -> (a mineral, produced, the best semiconductor effect) -> a mineral (9251ms) What are semiconductors? Stream Machine 0.888888888887 What are semiconductors? -> $x: ($x, produce, semiconductor) -> (Stream Machine, produces, semiconductor chips) -> Stream Machine (9233ms) What are semiconductors? Epson 0.888888888887 What are semiconductors? -> $x: ($x, produce, semiconductor) -> (Epson, produces components for, semi-conductors) -> Epson (9342ms) What are semiconductors? publication 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (organic semiconductors, has been accepted for, publication) -> publication (9342ms) What are semiconductors? the final slot 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (ROHM Semiconductor, is competing for, the final slot) -> the final slot (9288ms) What are semiconductors? low leakage inductance 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (these semiconductors, are designed for, low leakage inductance) -> low leakage inductance (9324ms) What are semiconductors? a variety 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (These semiconductors, are well suited for, a variety) -> a variety (9251ms) What are semiconductors? Raytheon 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductor materials, are critical for, Raytheon) -> Raytheon (9175ms) What are semiconductors? various purposes and devices 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (Semiconductors, are used for, various purposes and devices) -> various purposes and devices (9270ms) What are semiconductors? Schottky 0.888888888887 What are semiconductors? -> $x: ($x, do, semiconductor) -> (Schottky, did, a lot of the work on semiconductors) -> Schottky (9288ms) What are semiconductors? the rest 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductors, are ones to watch for, the rest) -> the rest (9306ms) What are semiconductors? TI 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (analog semiconductors, is the breadwinner for, TI) -> TI (9195ms) What are semiconductors? the gate 0.888888888887 What are semiconductors? -> $x: ($x, do, semiconductor) -> (the gate, does in, a semiconductor) -> the gate (9251ms) What are semiconductors? polishing purposes 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductor wafer, are also used for, polishing purposes) -> polishing purposes (9360ms) What are semiconductors? Maxtor 0.888888888887 What are semiconductors? -> $x: ($x, do, semiconductor) -> (Maxtor, did, semiconductors) -> Maxtor (9175ms) What are semiconductors? the water 0.888888888887 What are semiconductors? -> $x: ($x, produce, semiconductor) -> (the water, won?t produce, more semiconductor jobs) -> the water (9251ms) What are semiconductors? Cyrix 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (National Semiconductor, was an unmitigated disaster for, Cyrix) -> Cyrix (9251ms) What are semiconductors? wearable logic 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (Polymer semiconductors, are candidates for, wearable logic) -> wearable logic (9324ms) What are semiconductors? Purdue 0.888888888887 What are semiconductors? -> $x: ($x, do, semiconductor) -> (Purdue, has done for, the semiconductor industry) -> Purdue (9213ms) What are semiconductors? Verse Group 0.888888888887 What are semiconductors? -> $x: ($x, do, semiconductor) -> (Verse Group, had done work for, Philips Semiconductor) -> Verse Group (9213ms) What are semiconductors? NAND flash 0.888888888887 What are semiconductors? -> $x: ($x, produce, semiconductor) -> (NAND flash, is produced with, semiconductor processes) -> NAND flash (9324ms) What are semiconductors? the new chips 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (Chartered Semiconductor, will be responsible for, the new chips) -> the new chips (9233ms) What are semiconductors? A voltage 0.888888888887 What are semiconductors? -> $x: ($x, produce, semiconductor) -> (A voltage, is produced on, a semiconductor material) -> A voltage (9233ms) What are semiconductors? next-generation classical- 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductors, is promising for, next-generation classical-) -> next-generation classical- (9233ms) What are semiconductors? a Product Marketing person 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductor client, is looking for, a Product Marketing person) -> a Product Marketing person (9213ms) What are semiconductors? working students 0.888888888887 What are semiconductors? -> $x: ($x, do, semiconductor) -> (working students, do at, OSRAM Opto Semiconductors) -> working students (9270ms) What are semiconductors? colloidal methods 0.888888888887 What are semiconductors? -> $x: ($x, produce, semiconductor) -> (colloidal methods, to produce, many different semiconductors) -> colloidal methods (9195ms) What are semiconductors? NVIDIA 0.888888888887 What are semiconductors? -> $x: ($x, do, semiconductor) -> (NVIDIA, did announce a partnership with, GCT Semiconductor) -> NVIDIA (9214ms) What are semiconductors? APS 0.888888888887 What are semiconductors? -> $x: ($x, produce, semiconductor) -> (APS, produced at, commercial semiconductor foundries) -> APS (9288ms) What are semiconductors? a firm 0.888888888887 What are semiconductors? -> $x: ($x, do, semiconductor) -> (a firm, does, semiconductor-related market research) -> a firm (9360ms) What are semiconductors? Attitude 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (ON Semiconductor, is designed for, Attitude) -> Attitude (9342ms) What are semiconductors? 3 valence electrons 0.888888888887 What are semiconductors? -> $x: ($x, produce, semiconductor) -> (3 valence electrons, produce, p-type semiconductors) -> 3 valence electrons (9324ms) What are semiconductors? BroadLight 0.888888888887 What are semiconductors? -> $x: ($x, produce, semiconductor) -> (BroadLight, produced, semiconductors and software) -> BroadLight (9195ms) What are semiconductors? a joint venture 0.888888888887 What are semiconductors? -> $x: ($x, produce, semiconductor) -> (a joint venture, produce, high-performance semiconductors) -> a joint venture (9306ms) What are semiconductors? The DEPFETs 0.888888888887 What are semiconductors? -> $x: ($x, produce, semiconductor) -> (The DEPFETs, are produced in, the semiconductor laboratory) -> The DEPFETs (9360ms) What are semiconductors? the project 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (National Semiconductor, is making the chipsets for, the project) -> the project (9288ms) What are semiconductors? shipments and inventories 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (Semiconductor data, are available for, shipments and inventories) -> shipments and inventories (9306ms) What are semiconductors? the theoretical understanding 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductors, is crucial for, the theoretical understanding) -> the theoretical understanding (9195ms) What are semiconductors? electronic devices 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (Semiconductor lasers, are very useful for, electronic devices) -> electronic devices (9251ms) What are semiconductors? the company 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductor business, was a smart move for, the company) -> the company (9324ms) What are semiconductors? IBM systems 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductor technology, is critical for, IBM systems) -> IBM systems (9214ms) What are semiconductors? body wearables 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (Semiconductors, are the way to go for, body wearables) -> body wearables (9360ms) What are semiconductors? Cortex-A15 0.888888888887 What are semiconductors? -> $x: ($x, do, semiconductor) -> (Cortex-A15, do In, semiconductor design) -> Cortex-A15 (9270ms) What are semiconductors? the thermal noise 0.888888888887 What are semiconductors? -> $x: ($x, produce, semiconductor) -> (the thermal noise, produced inside, the semiconductor) -> the thermal noise (9306ms) What are semiconductors? the month 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (Semiconductors, were strongest for, the month) -> the month (9175ms) What are semiconductors? quantum computing 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (a semiconductor, is a step forward for, quantum computing) -> quantum computing (9342ms) What are semiconductors? Complete program storage 0.888888888887 What are semiconductors? -> $x: ($x, do, semiconductor) -> (Complete program storage, is done on, semiconductor memories) -> Complete program storage (9175ms) What are semiconductors? Infineon Austria 0.888888888887 What are semiconductors? -> $x: ($x, produce, semiconductor) -> (Infineon Austria, produces, semiconductors and system solutions) -> Infineon Austria (9251ms) What are semiconductors? an impressive 5000 hours 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (The semiconductor, is rated for, an impressive 5000 hours) -> an impressive 5000 hours (9175ms) What are semiconductors? the Chemistry Department 0.888888888887 What are semiconductors? -> $x: ($x, do, semiconductor) -> (the Chemistry Department, are doing with, organic semiconductors) -> the Chemistry Department (9360ms) What are semiconductors? convergence 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (automotive semiconductors, are key applications for, convergence) -> convergence (9175ms) What are semiconductors? companies 0.888888888887 What are semiconductors? -> $x: ($x, produce, semiconductor) -> (companies, produce, Semiconductor Switches Analog Mixed Signal) -> companies (9342ms) What are semiconductors? ceramics 0.888888888887 What are semiconductors? -> $x: ($x, do, semiconductor) -> (ceramics, is now being done in, the semiconductors world) -> ceramics (9195ms) What are semiconductors? Intel 0.888888888887 What are semiconductors? -> $x: ($x, produce, semiconductor) -> (Intel, is the only company to produces, semiconductor chips) -> Intel (9270ms) What are semiconductors? indicator lights 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductor chips, initially was used for, indicator lights) -> indicator lights (9342ms) What are semiconductors? Michigan 0.888888888887 What are semiconductors? -> $x: ($x, do, semiconductor) -> (Michigan, could do for, organic semiconductors) -> Michigan (9360ms) What are semiconductors? years 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (Semiconductor lasers, have been around for, years) -> years (9306ms) What are semiconductors? nuances 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (The semiconductor business, is legendary for, nuances) -> nuances (9288ms) What are semiconductors? the light generation 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductor crystal, are responsible for, the light generation) -> the light generation (9213ms) What are semiconductors? 5 valence electrons 0.888888888887 What are semiconductors? -> $x: ($x, produce, semiconductor) -> (5 valence electrons, produce, n-type semiconductors) -> 5 valence electrons (9342ms) What are semiconductors? investigation 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (Semiconductors, were a fertile field for, investigation) -> investigation (9306ms) What are semiconductors? Answer Question 0.888888888887 What are semiconductors? -> $x: ($x, do, semiconductor) -> (Answer Question, does, OSRAM Opto Semiconductors offer positions) -> Answer Question (9288ms) What are semiconductors? a CEO 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (The semiconductor maker, is looking for, a CEO) -> a CEO (9360ms) What are semiconductors? personnel use 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductor scanner, is mainly for, personnel use) -> personnel use (9175ms) What are semiconductors? IQE 0.888888888887 What are semiconductors? -> $x: ($x, produce, semiconductor) -> (IQE, is producing, compound semiconductor epiwafers) -> IQE (9324ms) What are semiconductors? Berlin 0.888888888887 What are semiconductors? -> $x: ($x, do, semiconductor) -> (Berlin, recently did in, a semiconductor material and report) -> Berlin (9342ms) What are semiconductors? laser 0.888888888887 What are semiconductors? -> $x: ($x, produce, semiconductor) -> (laser, produces its output from, semiconductor materials) -> laser (9175ms) What are semiconductors? high-speed trains 0.888888888887 What are semiconductors? -> $x: ($x, produce, semiconductor) -> (high-speed trains, is more akin to producing, semiconductors) -> high-speed trains (9342ms) What are semiconductors? LEDs 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (compound semiconductors, are used for, LEDs) -> LEDs (9270ms) What are semiconductors? further expansion 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (Seoul Semiconductor, is positioned for, further expansion) -> further expansion (9270ms) What are semiconductors? application 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (molecular semiconductors, are showing promise for, application) -> application (9306ms) What are semiconductors? ADVANTEST CORPORATION 0.888888888887 What are semiconductors? -> $x: ($x, produce, semiconductor) -> (ADVANTEST CORPORATION, produces, semiconductor testing devices) -> ADVANTEST CORPORATION (9195ms) What are semiconductors? several years 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductor fabricators, were the highest for, several years) -> several years (9233ms) What are semiconductors? simulation 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductor technology, is forcing the need for, simulation) -> simulation (9195ms) What are semiconductors? tablet PCs 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (power semiconductors, are used for, tablet PCs) -> tablet PCs (9360ms) What are semiconductors? a rock band 0.888888888887 What are semiconductors? -> $x: ($x, do, semiconductor) -> (a rock band, do, semiconductor work) -> a rock band (9175ms) What are semiconductors? any way 0.888888888887 What are semiconductors? -> $x: ($x, exactly be, semiconductor) -> (any way, exactly is, a semiconductor) -> any way (9342ms) What are semiconductors? Wind power 0.888888888887 What are semiconductors? -> $x: ($x, do, semiconductor) -> (Wind power, does n?t require, a semiconductor fab lab) -> Wind power (9251ms) What are semiconductors? the training 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (Semiconductor Physics, was important for, the training) -> the training (9213ms) What are semiconductors? businesses 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductor demand, is increasing for, businesses) -> businesses (9251ms) What are semiconductors? a number 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductors, are presented for, a number) -> a number (9175ms) What are semiconductors? a liquid bridge 0.888888888887 What are semiconductors? -> $x: ($x, produce, semiconductor) -> (a liquid bridge, is one way to produce, semiconductor crystals) -> a liquid bridge (9342ms) What are semiconductors? creation 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductor substrate, are optimum for, creation) -> creation (9175ms) What are semiconductors? smaller charges 0.888888888887 What are semiconductors? -> $x: ($x, do, semiconductor) -> (smaller charges, do, damage semiconductor devices) -> smaller charges (9195ms) What are semiconductors? Nasdaq 0.888888888887 What are semiconductors? -> $x: ($x, do, semiconductor) -> (Nasdaq, did n?t help, the Semiconductor index) -> Nasdaq (9251ms) What are semiconductors? download 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (Semiconductors, is free for, download) -> download (9251ms) What are semiconductors? the antenna elements 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (Semiconductor devices, are chosen for, the antenna elements) -> the antenna elements (9288ms) What are semiconductors? Quantum dots 0.888888888887 What are semiconductors? -> $x: ($x, produce, semiconductor) -> (Quantum dots, are specially produced, semiconductors) -> Quantum dots (9213ms) What are semiconductors? USA 0.888888888887 What are semiconductors? -> $x: ($x, do, semiconductor) -> (USA, does, semiconductors) -> USA (9306ms) What are semiconductors? Bell 0.888888888887 What are semiconductors? -> $x: ($x, do, semiconductor) -> (Bell, had all done work in, semiconductors) -> Bell (9270ms) What are semiconductors? a decline 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductor makers, are bracing for, a decline) -> a decline (9324ms) What are semiconductors? a similar fate 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductor stocks, is now headed for, a similar fate) -> a similar fate (9233ms) What are semiconductors? a Corporation 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (Semiconductor Manufacturer, is used herbelow for, a Corporation) -> a Corporation (9270ms) What are semiconductors? the Tech averages 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (the semiconductor index, be a proxy for, the Tech averages) -> the Tech averages (9288ms) What are semiconductors? low power 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (NXP Semiconductors, is designed for, low power) -> low power (9175ms) What are semiconductors? solar energy 0.888888888887 What are semiconductors? -> $x: ($x, do, semiconductor) -> (solar energy, has been done using, inorganic semiconductors) -> solar energy (9194ms) What are semiconductors? the entire structure 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (semiconductor material, is used for, the entire structure) -> the entire structure (9288ms) What are semiconductors? chips 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (a scrappy semiconductor company, to be known for, chips) -> chips (9270ms) What are semiconductors? the Idaho-connected patents 0.888888888887 What are semiconductors? -> $x: ($x, do, semiconductor) -> (the Idaho-connected patents, had to do with, semiconductors) -> the Idaho-connected patents (9270ms) What are semiconductors? no bandgap 0.888888888887 What are semiconductors? -> $x: ($x, do, semiconductor) -> (no bandgap, does n?t work well as, a semiconductor) -> no bandgap (9213ms) What are semiconductors? the Company 0.888888888887 What are semiconductors? -> $x: (semiconductor, be for, $x) -> (Semiconductor, is a developing market for, the Company) -> the Company (9270ms) What are semiconductors? the challenge 0.7777777777770001 What are semiconductors? -> $x: ($x, create, semiconductor) -> (the challenge, had been to create, a computer semiconductor) -> the challenge (9394ms) What are semiconductors? thick-SOI 0.7777777777770001 What are semiconductors? -> $x: ($x, refer, semiconductor) -> (thick-SOI, refers to, a semiconductor substrate) -> thick-SOI (9377ms) What are semiconductors? Fabless Semiconductor Association 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (Fabless Semiconductor Association, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Global%20Semiconductor%20Alliance) -> Fabless Semiconductor Association (9445ms) What are semiconductors? solid state 0.7777777777770001 What are semiconductors? -> $x: ($x, refer, semiconductor) -> (solid state, is commonly used to refer to, semiconductor devices) -> solid state (9445ms) What are semiconductors? Wide bandgap semiconductors 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (Wide bandgap semiconductors, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Wide%20bandgap%20semiconductors) -> Wide bandgap semiconductors (9411ms) What are semiconductors? Gordon Moore 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (Gordon Moore, helped found, the semiconductor industry) -> Gordon Moore (9411ms) What are semiconductors? market growth 0.7777777777770001 What are semiconductors? -> $x: ($x, create, semiconductor) -> (market growth, was being created by, semiconductors) -> market growth (9377ms) What are semiconductors? Semiconductor International 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (Semiconductor International, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Semiconductor%20International) -> Semiconductor International (9394ms) What are semiconductors? the Cypress tree 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (the Cypress tree, is found on, all Cypress Semiconductor chips) -> the Cypress tree (9377ms) What are semiconductors? opportunities 0.7777777777770001 What are semiconductors? -> $x: ($x, create, semiconductor) -> (opportunities, create, a strong semiconductor industry) -> opportunities (9428ms) What are semiconductors? no correlation 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (no correlation, is found between, semiconductors) -> no correlation (9411ms) What are semiconductors? The story 0.7777777777770001 What are semiconductors? -> $x: ($x, refer, semiconductor) -> (The story, refers to, semiconductor fabrication) -> The story (9360ms) What are semiconductors? the pair 0.7777777777770001 What are semiconductors? -> $x: ($x, create, semiconductor) -> (the pair, had jointly created, a semiconductor superlattice) -> the pair (9445ms) What are semiconductors? George 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (George, found a list of, semiconductor companies) -> George (9428ms) What are semiconductors? atoms 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (atoms, found in, semiconductor material) -> atoms (9377ms) What are semiconductors? AMD 0.7777777777770001 What are semiconductors? -> $x: ($x, create, semiconductor) -> (AMD, would create, a fab-less semi-conductor) -> AMD (9394ms) What are semiconductors? non-linear resistance 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (non-linear resistance, is also found in, semiconductor diodes) -> non-linear resistance (9394ms) What are semiconductors? The term 0.7777777777770001 What are semiconductors? -> $x: ($x, refer, semiconductor) -> (The term, usually refers to, a semiconductor diode) -> The term (9377ms) What are semiconductors? Barr 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (Barr, went on to found, Spin Semiconductor) -> Barr (9377ms) What are semiconductors? Further information 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (Further information, can be found at, OSRAM Opto Semiconductors) -> Further information (9428ms) What are semiconductors? extreme operating conditions 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (extreme operating conditions, found in, semiconductor processing) -> extreme operating conditions (9411ms) What are semiconductors? Schockley 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (Schockley, went on to found, Shockley Semiconductor Laboratory) -> Schockley (9377ms) What are semiconductors? physicists 0.7777777777770001 What are semiconductors? -> $x: ($x, create, semiconductor) -> (physicists, has created, the first semiconductor material) -> physicists (9428ms) What are semiconductors? file 0.7777777777770001 What are semiconductors? -> $x: ($x, create, semiconductor) -> (file, is created by, Realtek Semiconductor Corporation) -> file (9411ms) What are semiconductors? UndoYou 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (UndoYou, have found the List of, semiconductor materials) -> UndoYou (9445ms) What are semiconductors? semiconductor devices 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (semiconductor devices, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Semiconductor%20device) -> semiconductor devices (9360ms) What are semiconductors? quantum backgrounds 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (quantum backgrounds, find a place in, the semiconductor industry) -> quantum backgrounds (9394ms) What are semiconductors? Cadmium 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (Cadmium, can be found in, semiconductors and resistors) -> Cadmium (9411ms) What are semiconductors? the materials scientist 0.7777777777770001 What are semiconductors? -> $x: ($x, create, semiconductor) -> (the materials scientist, creates, the semiconductors and figures) -> the materials scientist (9377ms) What are semiconductors? More information 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (More information, can be found on, Varian Semiconductor) -> More information (9445ms) What are semiconductors? much higher mobilities 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (much higher mobilities, is found in, organic semiconductors) -> much higher mobilities (9428ms) What are semiconductors? the 9100 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (the 9100, has found in, semiconductor processes) -> the 9100 (9445ms) What are semiconductors? Technology 0.7777777777770001 What are semiconductors? -> $x: ($x, create, semiconductor) -> (Technology, have created, a semiconductor) -> Technology (9428ms) What are semiconductors? Uses Antimony 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (Uses Antimony, is finding use in, semiconductor technology) -> Uses Antimony (9377ms) What are semiconductors? The material 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (The material, finds use in, the semiconductor industry) -> The material (9428ms) What are semiconductors? CMOS 0.7777777777770001 What are semiconductors? -> $x: ($x, refer, semiconductor) -> (CMOS, refers to, the complimentary metal oxide semiconductor) -> CMOS (9445ms) What are semiconductors? One next step 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (One next step, is to find, the right semiconductor) -> One next step (9445ms) What are semiconductors? More evidence 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (More evidence, can be found at, Semiconductor?s Vimeo page) -> More evidence (9360ms) What are semiconductors? techniques 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (techniques, found in, semiconductor manufacturing) -> techniques (9377ms) What are semiconductors? The processor design 0.7777777777770001 What are semiconductors? -> $x: ($x, create, semiconductor) -> (The processor design, was created by, Meridian Semiconductor) -> The processor design (9377ms) What are semiconductors? part 0.7777777777770001 What are semiconductors? -> $x: ($x, create, semiconductor) -> (part, has created, the first semiconductor) -> part (9394ms) What are semiconductors? PV 0.7777777777770001 What are semiconductors? -> $x: ($x, refer, semiconductor) -> (PV, refers to, the semiconductor) -> PV (9411ms) What are semiconductors? participation fee 0.7777777777770001 What are semiconductors? -> $x: ($x, refer, semiconductor) -> (participation fee, please refer to, ?Semiconductor Seminar ?) -> participation fee (9428ms) What are semiconductors? users 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (users, are also finding, semiconductor-based lighting) -> users (9360ms) What are semiconductors? ON SEMICONDUCTOR CORP 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (ON SEMICONDUCTOR CORP, can be found on Wikipedia at, http://en.wikipedia.org/wiki/ON%20Semiconductor) -> ON SEMICONDUCTOR CORP (9377ms) What are semiconductors? the success Kalrez ? 9100 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (the success Kalrez ? 9100, has found in, semiconductor processes) -> the success Kalrez ? 9100 (9411ms) What are semiconductors? the approach 0.7777777777770001 What are semiconductors? -> $x: ($x, create, semiconductor) -> (the approach, used to create, semiconductor chips) -> the approach (9428ms) What are semiconductors? p-n-p?which 0.7777777777770001 What are semiconductors? -> $x: ($x, create, semiconductor) -> (p-n-p?which, are created by, sandwiching semiconductor) -> p-n-p?which (9411ms) What are semiconductors? Memory 0.7777777777770001 What are semiconductors? -> $x: ($x, refer, semiconductor) -> (Memory, refers to, semiconductor devices) -> Memory (9428ms) What are semiconductors? The silicide 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (The silicide, was found to be, a direct semiconductor) -> The silicide (9411ms) What are semiconductors? electron-hole pairs 0.7777777777770001 What are semiconductors? -> $x: ($x, create, semiconductor) -> (electron-hole pairs, created in, a semiconductor) -> electron-hole pairs (9360ms) What are semiconductors? Wireless TI 0.7777777777770001 What are semiconductors? -> $x: ($x, create, semiconductor) -> (Wireless TI, creates, innovative wireless semiconductors) -> Wireless TI (9377ms) What are semiconductors? customers 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (customers, to find, ROHM semiconductors) -> customers (9394ms) What are semiconductors? the demanding applications 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (the demanding applications, found in, the semiconductor industry) -> the demanding applications (9428ms) What are semiconductors? a name 0.7777777777770001 What are semiconductors? -> $x: ($x, create, semiconductor) -> (a name, specializes in creating, semiconductor devices) -> a name (9428ms) What are semiconductors? eight 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (eight, went on to found, Fairchild Semiconductor) -> eight (9394ms) What are semiconductors? the polycide structures 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (the polycide structures, found in, advanced semiconductors) -> the polycide structures (9411ms) What are semiconductors? Fairchild 0.7777777777770001 What are semiconductors? -> $x: ($x, create, semiconductor) -> (Fairchild, had agreed to create, the semiconductor division) -> Fairchild (9445ms) What are semiconductors? SiC 0.7777777777770001 What are semiconductors? -> $x: ($x, create, semiconductor) -> (SiC, is used to create, semiconductor devices) -> SiC (9394ms) What are semiconductors? hazardous energy 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (hazardous energy, typically found in, semiconductor facilities) -> hazardous energy (9411ms) What are semiconductors? powerchip 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (powerchip, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Powerchip%20Semiconductor) -> powerchip (9428ms) What are semiconductors? the complexities 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (the complexities, found in, semiconductor manufacturing) -> the complexities (9394ms) What are semiconductors? boundary scan 0.7777777777770001 What are semiconductors? -> $x: (semiconductor, have use of, $x) -> (Lattice Semiconductor, has pioneered the use of, boundary scan) -> boundary scan (9428ms) What are semiconductors? conferences 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (conferences, can be found on, semiconductors-direct) -> conferences (9445ms) What are semiconductors? transfer methods 0.7777777777770001 What are semiconductors? -> $x: (semiconductor, have use of, $x) -> (The semiconductor industry, has used a mix of, transfer methods) -> transfer methods (9377ms) What are semiconductors? boron 0.7777777777770001 What are semiconductors? -> $x: ($x, create, semiconductor) -> (boron, creates, a p-type semiconductor) -> boron (9377ms) What are semiconductors? Antimony 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (Antimony, is finding use in, semiconductor technology) -> Antimony (9411ms) What are semiconductors? problems 0.7777777777770001 What are semiconductors? -> $x: ($x, create, semiconductor) -> (problems, created by, semiconductor technology) -> problems (9445ms) What are semiconductors? FlexCAN modules 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (FlexCAN modules, found in, Freescale Semiconductor) -> FlexCAN modules (9394ms) What are semiconductors? 1957 Noyce 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (1957 Noyce, helped found, Fairchild Semiconductor) -> 1957 Noyce (9377ms) What are semiconductors? a computer context 0.7777777777770001 What are semiconductors? -> $x: ($x, refer, semiconductor) -> (a computer context, refers to, semiconductor devices) -> a computer context (9394ms) What are semiconductors? NXP 0.7777777777770001 What are semiconductors? -> $x: ($x, create, semiconductor) -> (NXP, creates, semiconductors) -> NXP (9445ms) What are semiconductors? Fluorographene 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (Fluorographene, is found to be, a wide gap semiconductor) -> Fluorographene (9445ms) What are semiconductors? on-chip CAN controllers 0.7777777777770001 What are semiconductors? -> $x: ($x, found, semiconductor) -> (on-chip CAN controllers, found in, Philips Semiconductors) -> on-chip CAN controllers (9394ms) What are semiconductors? Quantum theory 0.7777777777770001 What are semiconductors? -> $x: ($x, create, semiconductor) -> (Quantum theory, also was later used to create, semiconductors) -> Quantum theory (9445ms) What are semiconductors? The gas medium 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (The gas medium, also can be called, semiconductor laser medium) -> The gas medium (9618ms) What are semiconductors? the most competitive 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (the most competitive, is, semiconductors) -> the most competitive (9797ms) What are semiconductors? copyright protection 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (copyright protection, was extended to, semiconductor chips) -> copyright protection (9704ms) What are semiconductors? LED?s 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (LED?s, are comparable to, semiconductors) -> LED?s (9557ms) What are semiconductors? the laser medium 0.777777777776 What are semiconductors? -> $x: ($x, consist of, semiconductor) -> (the laser medium, consists of, semiconductor quantum wells) -> the laser medium (9647ms) What are semiconductors? the Semicondutor business 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (the Semicondutor business, was sold to, Dynex Semiconductor) -> the Semicondutor business (9718ms) What are semiconductors? metallic conductivity 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (metallic conductivity, can be, semiconductors) -> metallic conductivity (9745ms) What are semiconductors? even extremely small particles 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (even extremely small particles, can damage, a semiconductor) -> even extremely small particles (9603ms) What are semiconductors? IR detectors 0.777777777776 What are semiconductors? -> $x: ($x, consist of, semiconductor) -> (IR detectors, consist of, a semiconductor) -> IR detectors (9704ms) What are semiconductors? the USA 0.777777777776 What are semiconductors? -> $x: ($x, be in, semiconductor) -> (the USA, was very strong in, semiconductor manufacturing) -> the USA (9662ms) What are semiconductors? power 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (power, is applied to, semiconductors) -> power (9731ms) What are semiconductors? transistor 0.777777777776 What are semiconductors? -> $x: ($x, consist of, semiconductor) -> (transistor, consists of, three semiconductor layers) -> transistor (9494ms) What are semiconductors? a voltage 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (a voltage, is applied to, a semiconductor) -> a voltage (9573ms) What are semiconductors? The theory 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (The theory, has also been applied to, semiconductors) -> The theory (9771ms) What are semiconductors? the Components and Devices category 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (the Components and Devices category, are, semiconductors) -> the Components and Devices category (9662ms) What are semiconductors? main export products 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (main export products, are, semiconductors) -> main export products (9731ms) What are semiconductors? a heatsink 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (a heatsink, can damage, a semiconductor) -> a heatsink (9542ms) What are semiconductors? Users 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (Users, can select among, semiconductor) -> Users (9478ms) What are semiconductors? the pores 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (the pores, can also form very, uniform doped semiconductor homo) -> the pores (9573ms) What are semiconductors? The LED light 0.777777777776 What are semiconductors? -> $x: ($x, consist of, semiconductor) -> (The LED light, consists of, P-type semiconductors) -> The LED light (9461ms) What are semiconductors? the living matrix 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (the living matrix, are, semiconductors) -> the living matrix (9731ms) What are semiconductors? The idea 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (The idea, is to protect, semiconductors) -> The idea (9797ms) What are semiconductors? Certain carbon-based nanotubules 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (Certain carbon-based nanotubules, can behave as, semiconductors) -> Certain carbon-based nanotubules (9494ms) What are semiconductors? Datum Telegraphic 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (Datum Telegraphic, [is] a designer of, semiconductors) -> Datum Telegraphic (9731ms) What are semiconductors? the forward direction 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (the forward direction, can melt, the semiconductor junction) -> the forward direction (9588ms) What are semiconductors? Conexant 0.777777777776 What are semiconductors? -> $x: ($x, be in, semiconductor) -> (Conexant, is a worldwide leader in, semiconductor solutions) -> Conexant (9526ms) What are semiconductors? note 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (note, is, semiconductors) -> note (9704ms) What are semiconductors? armchairs 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (armchairs, are, semiconductors) -> armchairs (9823ms) What are semiconductors? 1.0 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (1.0, was, semiconductors) -> 1.0 (9461ms) What are semiconductors? Korea?s major export item 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (Korea?s major export item, is, semiconductors) -> Korea?s major export item (9647ms) What are semiconductors? the cost one 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (the cost one, can use, an electronic semiconductor sensor) -> the cost one (9718ms) What are semiconductors? voltage 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (voltage, is applied to negatively charged, semiconductors) -> voltage (9662ms) What are semiconductors? Computers 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (Computers, can be built from, semiconductors) -> Computers (9784ms) What are semiconductors? current 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (current, can turn, the semiconductor) -> current (9731ms) What are semiconductors? 1H06 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (1H06, were, Semiconductors) -> 1H06 (9810ms) What are semiconductors? Dark current 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (Dark current, is intrinsic to, semiconductors) -> Dark current (9784ms) What are semiconductors? diamonds 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (diamonds, are going to be used as, semiconductors) -> diamonds (9810ms) What are semiconductors? processors 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (processors, can improve, semiconductor seal performance) -> processors (9797ms) What are semiconductors? Ms Spears 0.777777777776 What are semiconductors? -> $x: ($x, be in, semiconductor) -> (Ms Spears, is an expert in, semiconductor physics) -> Ms Spears (9662ms) What are semiconductors? sufficient purity 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (sufficient purity, can behave either like, semiconductors) -> sufficient purity (9603ms) What are semiconductors? a topological state 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (a topological state, can be induced in, a semiconductor quantum) -> a topological state (9542ms) What are semiconductors? a conductor 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (a conductor, can be used as, a semiconductor) -> a conductor (9662ms) What are semiconductors? A U.S. startup 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (A U.S. startup, was to globally distribute, semiconductors) -> A U.S. startup (9718ms) What are semiconductors? SEMs 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (SEMs, are, semiconductors) -> SEMs (9494ms) What are semiconductors? 02-Sep-2008 E2V Technologies 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (02-Sep-2008 E2V Technologies, is to acquire, QP Semiconductor) -> 02-Sep-2008 E2V Technologies (9784ms) What are semiconductors? pumps 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (pumps, can be used on, all semiconductor processes) -> pumps (9557ms) What are semiconductors? a thin triple-layer coating 0.777777777776 What are semiconductors? -> $x: ($x, consist of, semiconductor) -> (a thin triple-layer coating, consists of, a semiconductor) -> a thin triple-layer coating (9633ms) What are semiconductors? carbon conduct electricity 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (carbon conduct electricity, are, semiconductors) -> carbon conduct electricity (9461ms) What are semiconductors? the conductivity 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (the conductivity, is, semiconductor) -> the conductivity (9603ms) What are semiconductors? Joe Gerhardt 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (Joe Gerhardt, are, Semiconductor) -> Joe Gerhardt (9690ms) What are semiconductors? electricity highly 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (electricity highly, can be, a semiconductor) -> electricity highly (9618ms) What are semiconductors? a byproduct 0.777777777776 What are semiconductors? -> $x: ($x, be in, semiconductor) -> (a byproduct, is used in, electronic semiconductors) -> a byproduct (9557ms) What are semiconductors? the periodic table 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (the periodic table, can be used to make, semiconductors) -> the periodic table (9618ms) What are semiconductors? Circuits Students 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (Circuits Students, are introduced to, semiconductors) -> Circuits Students (9745ms) What are semiconductors? the latter 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (the latter, can be accomplished without, semiconductors) -> the latter (9588ms) What are semiconductors? the PCB 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (the PCB, is to interconnect, semiconductor devices) -> the PCB (9510ms) What are semiconductors? a new mechanism 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (a new mechanism, can take place in, semiconductor thin-films) -> a new mechanism (9526ms) What are semiconductors? small amount of impurities 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (small amount of impurities, are added to, pure semiconductors) -> small amount of impurities (9557ms) What are semiconductors? spintronics 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (spintronics, is meant to combine, traditional semiconductors) -> spintronics (9573ms) What are semiconductors? A basic PV module 0.777777777776 What are semiconductors? -> $x: ($x, consist of, semiconductor) -> (A basic PV module, consists of, two semiconductor layers) -> A basic PV module (9478ms) What are semiconductors? molecules 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (molecules, can be used for, better semiconductors) -> molecules (9810ms) What are semiconductors? The product unit price 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (The product unit price, will be subject to, nxp semiconductors) -> The product unit price (9603ms) What are semiconductors? The first venture-backed startup 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (The first venture-backed startup, to be, Fairchild Semiconductor) -> The first venture-backed startup (9704ms) What are semiconductors? a manufacturer 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (a manufacturer, is, semiconductors) -> a manufacturer (9704ms) What are semiconductors? RFMD 0.777777777776 What are semiconductors? -> $x: ($x, be in, semiconductor) -> (RFMD, is a pioneer in, compound semiconductor) -> RFMD (9542ms) What are semiconductors? Engineers 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (Engineers, can also see, the latest semiconductor devices) -> Engineers (9647ms) What are semiconductors? detectors 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (detectors, can be used in, the semiconductor industry) -> detectors (9771ms) What are semiconductors? Indro 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (Indro, was invited to join, Philips Semiconductors) -> Indro (9784ms) What are semiconductors? TWO COOL? 0.777777777776 What are semiconductors? -> $x: ($x, be in, semiconductor) -> (TWO COOL?, is used in, the semiconductor) -> TWO COOL? (9718ms) What are semiconductors? An epoxy resin 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (An epoxy resin, is used to encapsulate, the semiconductor) -> An epoxy resin (9771ms) What are semiconductors? silicon nanowires 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (silicon nanowires, are always, semiconductor) -> silicon nanowires (9823ms) What are semiconductors? graphene 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (graphene, can be used in, semiconductor technology) -> graphene (9647ms) What are semiconductors? The semimetals 0.777777777776 What are semiconductors? -> $x: ($x, classify as, semiconductor) -> (The semimetals, are classified as, semiconductors) -> The semimetals (9676ms) What are semiconductors? A RFID transponder 0.777777777776 What are semiconductors? -> $x: ($x, consist of, semiconductor) -> (A RFID transponder, consists of, a semiconductor chip) -> A RFID transponder (9588ms) What are semiconductors? SV Version 1.0 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (SV Version 1.0, was, semiconductors) -> SV Version 1.0 (9718ms) What are semiconductors? The lasers 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (The lasers, are used to make, semiconductors) -> The lasers (9662ms) What are semiconductors? matching networks 0.777777777776 What are semiconductors? -> $x: ($x, consist of, semiconductor) -> (matching networks, simply consist of, the semiconductor die) -> matching networks (9731ms) What are semiconductors? any non-dopant contamination 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (any non-dopant contamination, can ruin, the semiconductor) -> any non-dopant contamination (9542ms) What are semiconductors? a Hall effect 0.777777777776 What are semiconductors? -> $x: ($x, be in, semiconductor) -> (a Hall effect, is rarely observed in, organic semiconductors) -> a Hall effect (9690ms) What are semiconductors? Lattice 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (Lattice, can be obtained directly from, Lattice Semiconductor) -> Lattice (9823ms) What are semiconductors? a current 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (a current, is applied to, a semiconductor) -> a current (9690ms) What are semiconductors? 157 nm 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (157 nm, are interesting to, semiconductor manufacturers) -> 157 nm (9704ms) What are semiconductors? part layers 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (part layers, is usually confined to, semiconductor applications) -> part layers (9731ms) What are semiconductors? electronic chemicals and materials 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (electronic chemicals and materials, are, semiconductors) -> electronic chemicals and materials (9557ms) What are semiconductors? structural strength 0.777777777776 What are semiconductors? -> $x: ($x, be in, semiconductor) -> (structural strength, are used in, semiconductor devices) -> structural strength (9510ms) What are semiconductors? an electrical charge 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (an electrical charge, is applied to, the semiconductor) -> an electrical charge (9690ms) What are semiconductors? silicon wafers 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (silicon wafers, are essential to manufacturing, semiconductors) -> silicon wafers (9718ms) What are semiconductors? An impurity 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (An impurity, can make, a semiconductor N-type) -> An impurity (9676ms) What are semiconductors? quartz 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (quartz, is highly beneficial to, semiconductor fabricators) -> quartz (9690ms) What are semiconductors? the most significant 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (the most significant, has to be, semiconductors) -> the most significant (9731ms) What are semiconductors? laser diode or laser light source 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (laser diode or laser light source, is integrated, semiconductor) -> laser diode or laser light source (9784ms) What are semiconductors? a lab 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (a lab, can generate, high-volume semiconductor sequencing data) -> a lab (9526ms) What are semiconductors? electricity 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (electricity, can be used to built, organic semiconductors) -> electricity (9542ms) What are semiconductors? the other four 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (the other four, are pertinent to, semiconductor industry) -> the other four (9731ms) What are semiconductors? Blank 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (Blank, was asked to join, Shockley Semiconductor) -> Blank (9588ms) What are semiconductors? photonic band gap material ? 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (photonic band gap material ?, are similar to, semiconductors) -> photonic band gap material ? (9478ms) What are semiconductors? Clean manufacture 0.777777777776 What are semiconductors? -> $x: ($x, be in, semiconductor) -> (Clean manufacture, is required in, the semiconductor) -> Clean manufacture (9745ms) What are semiconductors? the absorbed light 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (the absorbed light, is transferred to, Semiconductor) -> the absorbed light (9810ms) What are semiconductors? cost reductions 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (cost reductions, are, semiconductors) -> cost reductions (9588ms) What are semiconductors? ESD 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (ESD, can easily destroy, semiconductor products) -> ESD (9704ms) What are semiconductors? Manufacturers 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (Manufacturers, are competing to make, semiconductors) -> Manufacturers (9494ms) What are semiconductors? the PS instruments 0.777777777776 What are semiconductors? -> $x: ($x, consist of, semiconductor) -> (the PS instruments, consist of, Si semiconductor detectors) -> the PS instruments (9618ms) What are semiconductors? similar properties 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (similar properties, can also be used in, semiconductor devices) -> similar properties (9810ms) What are semiconductors? Chlorine trifluoride 0.777777777776 What are semiconductors? -> $x: ($x, be in, semiconductor) -> (Chlorine trifluoride, is used in, semiconductor manufacturing) -> Chlorine trifluoride (9478ms) What are semiconductors? PV cells 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (PV cells, are, semiconductors) -> PV cells (9797ms) What are semiconductors? Cleanrooms 0.777777777776 What are semiconductors? -> $x: ($x, be in, semiconductor) -> (Cleanrooms, are used extensively in, semiconductor manufacturing) -> Cleanrooms (9647ms) What are semiconductors? patenting 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (patenting, is pursued aggressively is, semiconductors) -> patenting (9526ms) What are semiconductors? The bonded layers 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (The bonded layers, can contain embedded, semiconductors) -> The bonded layers (9603ms) What are semiconductors? Thermoelectrics 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (Thermoelectrics, are, semiconductors) -> Thermoelectrics (9461ms) What are semiconductors? Light emitting diodes 0.777777777776 What are semiconductors? -> $x: ($x, consist of, semiconductor) -> (Light emitting diodes, consist of, semiconductor crystals) -> Light emitting diodes (9618ms) What are semiconductors? Construction Commercially available diodes 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (Construction Commercially available diodes, are, semiconductors) -> Construction Commercially available diodes (9704ms) What are semiconductors? polysilicon 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (polysilicon, is used to manufacture, semiconductor chips) -> polysilicon (9662ms) What are semiconductors? the strongest acting group 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (the strongest acting group, was, Semiconductors) -> the strongest acting group (9633ms) What are semiconductors? narrower ones 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (narrower ones, should be, semiconductors) -> narrower ones (9771ms) What are semiconductors? Such materials 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (Such materials, need to be, ?good ? semiconductors) -> Such materials (9823ms) What are semiconductors? pyrites 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (pyrites, can show, semiconductor properties) -> pyrites (9542ms) What are semiconductors? always 0.777777777776 What are semiconductors? -> $x: (semiconductor, be about, $x) -> (The semiconductor industry, has been about having it, always) -> always (9542ms) What are semiconductors? Arsine 0.777777777776 What are semiconductors? -> $x: ($x, be in, semiconductor) -> (Arsine, is exclusively used in, semiconductor manufacturing) -> Arsine (9478ms) What are semiconductors? solar cells 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (solar cells, can be made with, organic semiconductors) -> solar cells (9745ms) What are semiconductors? devices 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (devices, can be made from, semiconductors) -> devices (9542ms) What are semiconductors? The batteries 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (The batteries, are constructed from, semiconductors) -> The batteries (9494ms) What are semiconductors? selenium and tellurium 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (selenium and tellurium, are, semiconductors) -> selenium and tellurium (9494ms) What are semiconductors? germanium and others 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (germanium and others, are, semiconductors) -> germanium and others (9745ms) What are semiconductors? the plant 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (the plant, was sold to, ON Semiconductor) -> the plant (9758ms) What are semiconductors? hot electrons 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (hot electrons, can be slowed down in, semiconductor nanocrystals) -> hot electrons (9758ms) What are semiconductors? slowing demand 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (slowing demand, are expected to hit, semiconductor sales) -> slowing demand (9810ms) What are semiconductors? Membership 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (Membership, is still open to, Semiconductors) -> Membership (9771ms) What are semiconductors? Photodetectors 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (Photodetectors, are, Semiconductors) -> Photodetectors (9771ms) What are semiconductors? Organic films 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (Organic films, can be used in, backend semiconductor processing) -> Organic films (9573ms) What are semiconductors? 12 weeks 0.777777777776 What are semiconductors? -> $x: (semiconductor, be about, $x) -> (semiconductor wafers, is typically about 10 to, 12 weeks) -> 12 weeks (9526ms) What are semiconductors? nanotubes 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (nanotubes, can behave as, metals or semiconductors) -> nanotubes (9718ms) What are semiconductors? materials 0.777777777776 What are semiconductors? -> $x: ($x, be in, semiconductor) -> (materials, are used in, semiconductor manufacturing) -> materials (9758ms) What are semiconductors? Excessive heat 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (Excessive heat, can damage, the semiconductor material) -> Excessive heat (9784ms) What are semiconductors? the range 0.777777777776 What are semiconductors? -> $x: ($x, consist of, semiconductor) -> (the range, consisted of, semiconductor sensors) -> the range (9718ms) What are semiconductors? The beads 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (The beads, are made of, semiconductors) -> The beads (9633ms) What are semiconductors? interests 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (interests, are, semiconductors) -> interests (9633ms) What are semiconductors? 1950s Germanium 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (1950s Germanium, is used to make, semiconductors) -> 1950s Germanium (9758ms) What are semiconductors? A solar cell 0.777777777776 What are semiconductors? -> $x: ($x, consist of, semiconductor) -> (A solar cell, consists of, semiconductor materials) -> A solar cell (9478ms) What are semiconductors? the nanoscale 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (the nanoscale, is central to advancing, semiconductor technology) -> the nanoscale (9704ms) What are semiconductors? a new chip 0.777777777776 What are semiconductors? -> $x: (semiconductor, be about, $x) -> (The semiconductor engineer, was about to launch, a new chip) -> a new chip (9588ms) What are semiconductors? Huawei 0.777777777776 What are semiconductors? -> $x: ($x, be in, semiconductor) -> (Huawei, has been in, semiconductor industry) -> Huawei (9784ms) What are semiconductors? QDs 0.777777777776 What are semiconductors? -> $x: ($x, consist of, semiconductor) -> (QDs, consist of, a semiconductor core) -> QDs (9797ms) What are semiconductors? chief 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (chief, are, semiconductors) -> chief (9771ms) What are semiconductors? having it 0.777777777776 What are semiconductors? -> $x: (semiconductor, be about, $x) -> (The semiconductor industry, has been about, having it) -> having it (9676ms) What are semiconductors? the top ring 7 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (the top ring 7, can press, the semiconductor wafer 6) -> the top ring 7 (9526ms) What are semiconductors? the decline 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (the decline, is being led by, semiconductors) -> the decline (9797ms) What are semiconductors? Photovoltaic cells 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (Photovoltaic cells, can be made from, a semiconductor material) -> Photovoltaic cells (9603ms) What are semiconductors? Electrical properties 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (Electrical properties, are, semiconductors) -> Electrical properties (9810ms) What are semiconductors? governments/authorities 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (governments/authorities, should be related to, semiconductors) -> governments/authorities (9690ms) What are semiconductors? a semiconductor device 0.777777777776 What are semiconductors? -> $x: ($x, consist of, semiconductor) -> (a semiconductor device, consists of, two semiconductor layers) -> a semiconductor device (9731ms) What are semiconductors? an integrated circuit 0.777777777776 What are semiconductors? -> $x: ($x, consist of, semiconductor) -> (an integrated circuit, consists of, a semiconductor wafer) -> an integrated circuit (9573ms) What are semiconductors? The overmold 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (The overmold, can be grown using, semiconductor processes) -> The overmold (9758ms) What are semiconductors? Contact EFM 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (Contact EFM, can be applied to, semiconductor structures) -> Contact EFM (9771ms) What are semiconductors? The most promising subsector 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (The most promising subsector, is, semiconductors) -> The most promising subsector (9745ms) What are semiconductors? the SwitchBox-SSR 0.777777777776 What are semiconductors? -> $x: ($x, consist of, semiconductor) -> (the SwitchBox-SSR, consists of, a semiconductor relays) -> the SwitchBox-SSR (9510ms) What are semiconductors? Such crystals 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (Such crystals, can yield, better semi-conductors) -> Such crystals (9494ms) What are semiconductors? Photoelectrochemical cells or PECs 0.777777777776 What are semiconductors? -> $x: ($x, consist of, semiconductor) -> (Photoelectrochemical cells or PECs, consist of, a semiconductor) -> Photoelectrochemical cells or PECs (9797ms) What are semiconductors? A designer 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (A designer, can use, an onboard semiconductor device) -> A designer (9510ms) What are semiconductors? Inc. SEA 0.777777777776 What are semiconductors? -> $x: ($x, be in, semiconductor) -> (Inc. SEA, is a global leader in, semiconductor) -> Inc. SEA (9690ms) What are semiconductors? phase engineering 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (phase engineering, can be used to push, semiconductor materials) -> phase engineering (9633ms) What are semiconductors? The fastest growing technology areas 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (The fastest growing technology areas, are, semiconductors) -> The fastest growing technology areas (9633ms) What are semiconductors? solar cell 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (solar cell, is used to hold, semiconductors) -> solar cell (9758ms) What are semiconductors? hermetic lids 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (hermetic lids, can be made for, the semiconductor) -> hermetic lids (9588ms) What are semiconductors? The triacs 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (The triacs, are, semiconductors) -> The triacs (9618ms) What are semiconductors? Part-time musicians 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (Part-time musicians, are, semiconductors) -> Part-time musicians (9771ms) What are semiconductors? The QDR consortium 0.777777777776 What are semiconductors? -> $x: ($x, consist of, semiconductor) -> (The QDR consortium, consists of, Cypress Semiconductor) -> The QDR consortium (9690ms) What are semiconductors? Silk 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (Silk, is being coupled with, semiconductors) -> Silk (9662ms) What are semiconductors? Exported electronic products 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (Exported electronic products, were primarily, semiconductors) -> Exported electronic products (9745ms) What are semiconductors? Photovoltaic power cells 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (Photovoltaic power cells, are, semiconductors) -> Photovoltaic power cells (9618ms) What are semiconductors? A: No. LEDs 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (A: No. LEDs, are, semiconductors) -> A: No. LEDs (9510ms) What are semiconductors? An SRAM cell 0.777777777776 What are semiconductors? -> $x: ($x, consist of, semiconductor) -> (An SRAM cell, consists of, a small semiconductor circuit) -> An SRAM cell (9510ms) What are semiconductors? Such atomtronic diodes 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (Such atomtronic diodes, are analogous to, semiconductor diodes) -> Such atomtronic diodes (9771ms) What are semiconductors? The basic idea 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (The basic idea, is to use, semiconductor lasers) -> The basic idea (9745ms) What are semiconductors? a common electronic component 0.777777777776 What are semiconductors? -> $x: ($x, classify as, semiconductor) -> (a common electronic component, classified as, a semiconductor) -> a common electronic component (9588ms) What are semiconductors? the size 0.777777777776 What are semiconductors? -> $x: (semiconductor, be about, $x) -> (The entire semiconductor chip, is about, the size) -> the size (9758ms) What are semiconductors? a laser 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (a laser, can process, these semiconductors) -> a laser (9494ms) What are semiconductors? The buck regulator 0.777777777776 What are semiconductors? -> $x: ($x, consist of, semiconductor) -> (The buck regulator, consists of, two power semiconductors) -> The buck regulator (9718ms) What are semiconductors? the idea 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (the idea, is to stack, semiconductors) -> the idea (9588ms) What are semiconductors? Periscope section 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (Periscope section, is used to cover, semiconductor startups) -> Periscope section (9542ms) What are semiconductors? GE-132 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (GE-132, can be made into, an extremely pure semiconductor) -> GE-132 (9758ms) What are semiconductors? The stock 0.777777777776 What are semiconductors? -> $x: ($x, be in, semiconductor) -> (The stock, is in, the semiconductor) -> The stock (9557ms) What are semiconductors? a pulse 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (a pulse, can destroy, semiconductors) -> a pulse (9647ms) What are semiconductors? The solution 0.777777777776 What are semiconductors? -> $x: ($x, consist of, semiconductor) -> (The solution, consists of, Storm Semiconductor) -> The solution (9557ms) What are semiconductors? Solar cells 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (Solar cells, are, semiconductors) -> Solar cells (9784ms) What are semiconductors? Laggards 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (Laggards, were, Semiconductors) -> Laggards (9758ms) What are semiconductors? N-terminated vacancies 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (N-terminated vacancies, can be, a small-gap semiconductor) -> N-terminated vacancies (9810ms) What are semiconductors? Dielectric materials 0.777777777776 What are semiconductors? -> $x: ($x, be in, semiconductor) -> (Dielectric materials, is in, Semiconductor Chips) -> Dielectric materials (9676ms) What are semiconductors? Typical applications 0.777777777776 What are semiconductors? -> $x: ($x, be in, semiconductor) -> (Typical applications, are in, the semiconductor) -> Typical applications (9510ms) What are semiconductors? Solar power cells 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (Solar power cells, are, semiconductors) -> Solar power cells (9771ms) What are semiconductors? the Korea top five 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (the Korea top five, were, semiconductors) -> the Korea top five (9573ms) What are semiconductors? the topic 0.777777777776 What are semiconductors? -> $x: ($x, be in, semiconductor) -> (the topic, is the trend in, semiconductor prices) -> the topic (9618ms) What are semiconductors? The instrument 0.777777777776 What are semiconductors? -> $x: ($x, consist of, semiconductor) -> (The instrument, consisted of, two semiconductor detectors) -> The instrument (9526ms) What are semiconductors? FSI 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (FSI, is designed to clean, semiconductor materials) -> FSI (9676ms) What are semiconductors? 80 % 0.777777777776 What are semiconductors? -> $x: (semiconductor, be about, $x) -> (a leading semiconductor company, are used in about, 80 %) -> 80 % (9478ms) What are semiconductors? Broadcom 0.777777777776 What are semiconductors? -> $x: ($x, be in, semiconductor) -> (Broadcom, [is] a global leader in, semiconductor solutions) -> Broadcom (9461ms) What are semiconductors? Solar panels 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (Solar panels, are, semiconductors) -> Solar panels (9494ms) What are semiconductors? so finer detail 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (so finer detail, can be etched into, raw semiconductor materials) -> so finer detail (9633ms) What are semiconductors? LED lights 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (LED lights, are, semiconductors) -> LED lights (9797ms) What are semiconductors? The optically active materials 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (The optically active materials, are, semiconductors) -> The optically active materials (9478ms) What are semiconductors? parallel Photovoltaic panels 0.777777777776 What are semiconductors? -> $x: ($x, consist of, semiconductor) -> (parallel Photovoltaic panels, consist of, semiconductor wafers) -> parallel Photovoltaic panels (9573ms) What are semiconductors? 17 % 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (17 %, is applied to, all semiconductors) -> 17 % (9784ms) What are semiconductors? A user 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (A user, can substitute, on-board semiconductor devices) -> A user (9690ms) What are semiconductors? The chemical 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (The chemical, is used to build, semiconductor wafers) -> The chemical (9704ms) What are semiconductors? half of which 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (half of which, will be, semiconductors) -> half of which (9573ms) What are semiconductors? tremendous effort 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (tremendous effort, has been devoted to, organic semiconductors) -> tremendous effort (9603ms) What are semiconductors? the losing side 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (the losing side, were, semiconductors) -> the losing side (9662ms) What are semiconductors? MEMS apparatus 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (MEMS apparatus, can be built onto, a semiconductor wafer) -> MEMS apparatus (9823ms) What are semiconductors? the array 0.777777777776 What are semiconductors? -> $x: ($x, consist of, semiconductor) -> (the array, consists of, actual semiconductor devices) -> the array (9526ms) What are semiconductors? 7 % 0.777777777776 What are semiconductors? -> $x: (semiconductor, be about, $x) -> (semiconductor industry, is about, 7 %) -> 7 % (9690ms) What are semiconductors? 8 % 0.777777777776 What are semiconductors? -> $x: (semiconductor, be about, $x) -> (semiconductors, are the key to producing only about, 8 %) -> 8 % (9771ms) What are semiconductors? mining stocks 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (mining stocks, were, semiconductors) -> mining stocks (9797ms) What are semiconductors? A derivative 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (A derivative, was eventually sold to, Harris Semiconductor) -> A derivative (9588ms) What are semiconductors? cheap stocks 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (cheap stocks, were, semiconductors) -> cheap stocks (9542ms) What are semiconductors? Fab PowerOps 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (Fab PowerOps, is specific to, semiconductor manufacturers) -> Fab PowerOps (9573ms) What are semiconductors? Die Attach Systems 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (Die Attach Systems, are used to attach, semiconductor dice) -> Die Attach Systems (9603ms) What are semiconductors? A typical LED source 0.777777777776 What are semiconductors? -> $x: ($x, consist of, semiconductor) -> (A typical LED source, consists of, a semiconductor crystal) -> A typical LED source (9704ms) What are semiconductors? employment 0.777777777776 What are semiconductors? -> $x: ($x, be in, semiconductor) -> (employment, was in, semiconductor manufacturing) -> employment (9758ms) What are semiconductors? services 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (services, are provided to, the semiconductor) -> services (9718ms) What are semiconductors? Agere Systems 0.777777777776 What are semiconductors? -> $x: ($x, be in, semiconductor) -> (Agere Systems, is a global leader in, semiconductors) -> Agere Systems (9478ms) What are semiconductors? a wire 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (a wire, can also be through, semiconductors) -> a wire (9603ms) What are semiconductors? cost 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (cost, effectively were, semiconductors) -> cost (9618ms) What are semiconductors? industry 0.777777777776 What are semiconductors? -> $x: ($x, be in, semiconductor) -> (industry, has been interested in, semiconductor technology) -> industry (9797ms) What are semiconductors? rare diamonds 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (rare diamonds, are, semiconductors) -> rare diamonds (9717ms) What are semiconductors? NantWorks mission 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (NantWorks mission, is to converge, semiconductor technology) -> NantWorks mission (9797ms) What are semiconductors? ?MIPS? new processor 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (?MIPS? new processor, is licensable to, semiconductor companies) -> ?MIPS? new processor (9588ms) What are semiconductors? Special attention 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (Special attention, is given to, semiconductors) -> Special attention (9647ms) What are semiconductors? led lights 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (led lights, are, semiconductors) -> led lights (9810ms) What are semiconductors? Carbon 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (Carbon, is hardly considered to be, a semiconductor) -> Carbon (9478ms) What are semiconductors? an LED 0.777777777776 What are semiconductors? -> $x: ($x, influence, semiconductor) -> (an LED, has is influenced by, the semiconductor material) -> an LED (9676ms) What are semiconductors? Biochips 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (Biochips, are similar to, semiconductors) -> Biochips (9676ms) What are semiconductors? Mark Zack 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (Mark Zack, [is] vice president of, semiconductors) -> Mark Zack (9618ms) What are semiconductors? the semiconductor atom 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (the semiconductor atom, are added to, the semiconductor) -> the semiconductor atom (9745ms) What are semiconductors? Innocomm Wireless 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (Innocomm Wireless, was sold to, National Semiconductor) -> Innocomm Wireless (9633ms) What are semiconductors? the best indicator 0.777777777776 What are semiconductors? -> $x: (semiconductor, be about, $x) -> (semiconductor sales, are just about, the best indicator) -> the best indicator (9526ms) What are semiconductors? Teradyne products 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (Teradyne products, are used to test, semiconductors) -> Teradyne products (9494ms) What are semiconductors? 15 % 0.777777777776 What are semiconductors? -> $x: (semiconductor, be about, $x) -> (the semiconductor device industry, is expected to be about, 15 %) -> 15 % (9542ms) What are semiconductors? Major exports 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (Major exports, are, semiconductors) -> Major exports (9676ms) What are semiconductors? the higher currents 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (the higher currents, destroy can, semiconductors) -> the higher currents (9526ms) What are semiconductors? The memory 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (The memory, was changed to, semiconductor) -> The memory (9647ms) What are semiconductors? electronics 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (electronics, can be transmitted through, semiconductors) -> electronics (9526ms) What are semiconductors? electric field 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (electric field, are specific to, ferromagnetic semiconductors) -> electric field (9603ms) What are semiconductors? Carbon nanotubes 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (Carbon nanotubes, can behave, like metals or semiconductors) -> Carbon nanotubes (9784ms) What are semiconductors? Er staat daarom 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (Er staat daarom, BE, Semiconductor) -> Er staat daarom (9573ms) What are semiconductors? A:Fine ceramics 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (A:Fine ceramics, are applied to, semiconductor device) -> A:Fine ceramics (9784ms) What are semiconductors? tool reconfigurations 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (tool reconfigurations, can misalign, semiconductor equipment) -> tool reconfigurations (9810ms) What are semiconductors? diodes 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (diodes, are, semiconductors) -> diodes (9784ms) What are semiconductors? ?12m 0.777777777776 What are semiconductors? -> $x: (semiconductor, be about, $x) -> ('s Newton Aycliffe semiconductor plant, is valued at about, ?12m) -> ?12m (9494ms) What are semiconductors? LED or light-emitting diode 0.777777777776 What are semiconductors? -> $x: ($x, can, semiconductor) -> (LED or light-emitting diode, can be a type of, semiconductor) -> LED or light-emitting diode (9718ms) What are semiconductors? more than 250 Heusler compounds 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (more than 250 Heusler compounds, are, semiconductors) -> more than 250 Heusler compounds (9771ms) What are semiconductors? a typical LED 0.777777777776 What are semiconductors? -> $x: ($x, consist of, semiconductor) -> (a typical LED, consists of, the semiconductor material) -> a typical LED (9797ms) What are semiconductors? external radiation 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (external radiation, is applied to, a semiconductor) -> external radiation (9633ms) What are semiconductors? Leading sectors 0.777777777776 What are semiconductors? -> $x: ($x, be be, semiconductor) -> (Leading sectors, were, Semiconductors) -> Leading sectors (9461ms) What are semiconductors? an arrow 0.777777777776 What are semiconductors? -> $x: ($x, be to, semiconductor) -> (an arrow, are reflected back to, the semiconductor) -> an arrow (9526ms) What are semiconductors? Future applications 0.6666666666659999 What are semiconductors? -> $x: ($x, comprise, semiconductor) -> (Future applications, comprise, semiconductor manufacturing) -> Future applications (9880ms) What are semiconductors? the laboratory 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (the laboratory, is developing, the new semiconductor devices) -> the laboratory (9860ms) What are semiconductors? studied semiconductors 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (studied semiconductors, developed, new semiconductor processes) -> studied semiconductors (9890ms) What are semiconductors? the device 0.6666666666659999 What are semiconductors? -> $x: ($x, comprise, semiconductor) -> (the device, may comprise, a SEMiconductor) -> the device (9890ms) What are semiconductors? the INS8250 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (the INS8250, was originally developed by, National Semiconductor) -> the INS8250 (9880ms) What are semiconductors? a technology 0.6666666666659999 What are semiconductors? -> $x: ($x, induce, semiconductor) -> (a technology, induces vapor, growth of GaN-based semiconductor) -> a technology (9823ms) What are semiconductors? 2007 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (2007, was to develop, semiconductor-use chemicals) -> 2007 (9850ms) What are semiconductors? 31 offices 0.6666666666659999 What are semiconductors? -> $x: ($x, represent, semiconductor) -> (31 offices, represents, major semiconductor franchises) -> 31 offices (9850ms) What are semiconductors? A PIN photodiode 0.6666666666659999 What are semiconductors? -> $x: ($x, comprise, semiconductor) -> (A PIN photodiode, comprises, a P-type semiconductor) -> A PIN photodiode (9870ms) What are semiconductors? the technology 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (the technology, developed by, the semiconductor industry) -> the technology (9835ms) What are semiconductors? the unit 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (the unit, uses newly developed, semiconductor memory) -> the unit (9850ms) What are semiconductors? Sarda 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (Sarda, to quickly develop, a power semiconductor product line) -> Sarda (9890ms) What are semiconductors? Toronto 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (Toronto, are developing, a semiconductor) -> Toronto (9880ms) What are semiconductors? cheap solar cells 0.6666666666659999 What are semiconductors? -> $x: ($x, be use of, semiconductor) -> (cheap solar cells, is the use of, semiconductor nanoparticles) -> cheap solar cells (9880ms) What are semiconductors? The method 0.6666666666659999 What are semiconductors? -> $x: ($x, comprise, semiconductor) -> (The method, comprises, providing a semiconductor body) -> The method (9890ms) What are semiconductors? India and China 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (India and China, developed, semiconductor patents) -> India and China (9823ms) What are semiconductors? MOSAID 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (MOSAID, develops, semiconductor memory technology) -> MOSAID (9880ms) What are semiconductors? researchers 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (researchers, are developing, organic semiconductors) -> researchers (9823ms) What are semiconductors? TSIA 0.6666666666659999 What are semiconductors? -> $x: ($x, represent, semiconductor) -> (TSIA, has been representing, the semiconductor industry) -> TSIA (9870ms) What are semiconductors? the sort 0.6666666666659999 What are semiconductors? -> $x: ($x, represent, semiconductor) -> (the sort, represented in, the semiconductor agreement) -> the sort (9880ms) What are semiconductors? the method 0.6666666666659999 What are semiconductors? -> $x: ($x, comprise, semiconductor) -> (the method, further comprises patterning, the semiconductor body) -> the method (9835ms) What are semiconductors? tags 0.6666666666659999 What are semiconductors? -> $x: ($x, comprise, semiconductor) -> (tags, comprise, a semi-conductor chip) -> tags (9870ms) What are semiconductors? The research 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (The research, focused on developing, new semiconductors) -> The research (9899ms) What are semiconductors? Excelpoint 0.6666666666659999 What are semiconductors? -> $x: ($x, represent, semiconductor) -> (Excelpoint, will represent the products of, Seoul Semiconductor) -> Excelpoint (9835ms) What are semiconductors? booths 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (booths, were developed by, OSRAM Opto Semiconductors) -> booths (9890ms) What are semiconductors? Merck 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (Merck, is developing, organic semiconductors) -> Merck (9890ms) What are semiconductors? Gernot 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (Gernot, developed, semiconductor device simulators and models) -> Gernot (9880ms) What are semiconductors? the second substrate 0.6666666666659999 What are semiconductors? -> $x: ($x, comprise, semiconductor) -> (the second substrate, comprises, a semiconductor chip) -> the second substrate (9850ms) What are semiconductors? 2012 0.6666666666659999 What are semiconductors? -> $x: ($x, represent, semiconductor) -> (2012, represents the bottom of, the current semiconductor cycle) -> 2012 (9850ms) What are semiconductors? Mr. Serpa 0.6666666666659999 What are semiconductors? -> $x: ($x, represent, semiconductor) -> (Mr. Serpa, also represented, various semiconductor companies) -> Mr. Serpa (9880ms) What are semiconductors? Kobayashi 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (Kobayashi, is developing, semiconductor materials) -> Kobayashi (9823ms) What are semiconductors? Members 0.6666666666659999 What are semiconductors? -> $x: ($x, represent, semiconductor) -> (Members, represent a worldwide cross-section of, semiconductor) -> Members (9860ms) What are semiconductors? The project 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (The project, was co-developed with, Harris Semiconductor) -> The project (9850ms) What are semiconductors? GeneSiC 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (GeneSiC, is developing, its SiC-based semiconductor) -> GeneSiC (9835ms) What are semiconductors? Arrow Altech Distribution 0.6666666666659999 What are semiconductors? -> $x: ($x, represent, semiconductor) -> (Arrow Altech Distribution, represents, Cypress Semiconductor) -> Arrow Altech Distribution (9880ms) What are semiconductors? photovoltaic cells 0.6666666666659999 What are semiconductors? -> $x: ($x, comprise, semiconductor) -> (photovoltaic cells, are comprised of, semiconductor materials) -> photovoltaic cells (9860ms) What are semiconductors? Inphi 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (Inphi, develops, high speed semiconductors) -> Inphi (9880ms) What are semiconductors? The IBIS community 0.6666666666659999 What are semiconductors? -> $x: ($x, comprise, semiconductor) -> (The IBIS community, comprises of, Semiconductor vendors) -> The IBIS community (9890ms) What are semiconductors? the trade association 0.6666666666659999 What are semiconductors? -> $x: ($x, represent, semiconductor) -> (the trade association, representing, the semiconductor industry) -> the trade association (9823ms) What are semiconductors? sensors 0.6666666666659999 What are semiconductors? -> $x: ($x, comprise, semiconductor) -> (sensors, comprise, semiconductor chips) -> sensors (9890ms) What are semiconductors? Nitres 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (Nitres, developed, nitride-based semiconductors) -> Nitres (9890ms) What are semiconductors? 1976 Mitel 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (1976 Mitel, begins developing, internal semiconductor capability) -> 1976 Mitel (9899ms) What are semiconductors? Infineon 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (Infineon, develops, semiconductors) -> Infineon (9850ms) What are semiconductors? general 0.6666666666659999 What are semiconductors? -> $x: ($x, represent, semiconductor) -> (general, represented the 35th largest market for, semiconductors) -> general (9880ms) What are semiconductors? a substrate 0.6666666666659999 What are semiconductors? -> $x: ($x, comprise, semiconductor) -> (a substrate, comprises providing, a semiconductor material) -> a substrate (9890ms) What are semiconductors? processor 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (processor, was developed by, ?Haisi Semiconductors?) -> processor (9890ms) What are semiconductors? the first company 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (the first company, to actively develop, semiconductor products) -> the first company (9899ms) What are semiconductors? IPHI 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (IPHI, continues to develop, its 100G semiconductor solutions) -> IPHI (9870ms) What are semiconductors? the leading voice 0.6666666666659999 What are semiconductors? -> $x: ($x, represent, semiconductor) -> (the leading voice, has represented, U.S. semiconductor companies) -> the leading voice (9860ms) What are semiconductors? 2011 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (2011, develops, semiconductor system solutions) -> 2011 (9860ms) What are semiconductors? Faggin 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (Faggin, had to develop, new semiconductor design technologies) -> Faggin (9870ms) What are semiconductors? Austin 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (Austin, developed a base of, semiconductor manufacturers) -> Austin (9823ms) What are semiconductors? Shin & Kim 0.6666666666659999 What are semiconductors? -> $x: ($x, represent, semiconductor) -> (Shin & Kim, has recently represented, Seoul Semiconductor) -> Shin & Kim (9850ms) What are semiconductors? The green line 0.6666666666659999 What are semiconductors? -> $x: ($x, represent, semiconductor) -> (The green line, represents, the total semiconductor revenue) -> The green line (9860ms) What are semiconductors? The PV panel 0.6666666666659999 What are semiconductors? -> $x: ($x, comprise, semiconductor) -> (The PV panel, is comprised of, wafers and semiconductors) -> The PV panel (9823ms) What are semiconductors? AstroWatt 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (AstroWatt, has developed, a semiconductor-on-metal technology) -> AstroWatt (9870ms) What are semiconductors? I2C 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (I2C, was developed by, Philips Semiconductors) -> I2C (9890ms) What are semiconductors? The chip 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (The chip, has been developed by, Dialog Semiconductor) -> The chip (9850ms) What are semiconductors? Hitachi 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (Hitachi, has developed, a new semiconductor biosensor device) -> Hitachi (9850ms) What are semiconductors? software 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (software, develop, semiconductors) -> software (9870ms) What are semiconductors? the substrate 0.6666666666659999 What are semiconductors? -> $x: ($x, comprise, semiconductor) -> (the substrate, comprises, a semiconductor material) -> the substrate (9860ms) What are semiconductors? H-Stream Wireless 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (H-Stream Wireless, develops, wireless semiconductor solutions) -> H-Stream Wireless (9860ms) What are semiconductors? Romania 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (Romania, develops, power semiconductors) -> Romania (9899ms) What are semiconductors? ?Broadcom Corporation 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (?Broadcom Corporation, develops, semiconductors) -> ?Broadcom Corporation (9835ms) What are semiconductors? IC 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (IC, was developed by, National Semiconductor) -> IC (9860ms) What are semiconductors? The TINI 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (The TINI, was developed by, Dallas Semiconductor) -> The TINI (9835ms) What are semiconductors? Elecon 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (Elecon, has developed, an organic semiconductor) -> Elecon (9860ms) What are semiconductors? Dr. Vlasov 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (Dr. Vlasov, developed, semiconductor photonic crystals) -> Dr. Vlasov (9835ms) What are semiconductors? sensor 0.6666666666659999 What are semiconductors? -> $x: ($x, comprise, semiconductor) -> (sensor, comprises, a respective semiconductor chip) -> sensor (9835ms) What are semiconductors? the substrate 19 0.6666666666659999 What are semiconductors? -> $x: ($x, comprise, semiconductor) -> (the substrate 19, may comprise, a semiconductor material) -> the substrate 19 (9899ms) What are semiconductors? Materials scientists 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (Materials scientists, develop, semi-conductors) -> Materials scientists (9899ms) What are semiconductors? EMD 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (EMD, is developing, organic semiconductors) -> EMD (9860ms) What are semiconductors? JEIS 0.6666666666659999 What are semiconductors? -> $x: ($x, represent, semiconductor) -> (JEIS, has represented, the semiconductor and LCD industries) -> JEIS (9880ms) What are semiconductors? Technologies 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (Technologies, developed for, the semiconductor industry) -> Technologies (9880ms) What are semiconductors? the technology sector 0.6666666666659999 What are semiconductors? -> $x: ($x, comprise, semiconductor) -> (the technology sector, comprises, semiconductor) -> the technology sector (9860ms) What are semiconductors? Silicon Valley 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (Silicon Valley, was still developing, semiconductors) -> Silicon Valley (9870ms) What are semiconductors? Mr. Burger 0.6666666666659999 What are semiconductors? -> $x: ($x, represent, semiconductor) -> (Mr. Burger, has represented, individual semiconductor companies) -> Mr. Burger (9835ms) What are semiconductors? Y-Corp 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (Y-Corp, has developed, a new semiconductor device) -> Y-Corp (9823ms) What are semiconductors? Light 0.6666666666659999 What are semiconductors? -> $x: ($x, induce, semiconductor) -> (Light, induced, semiconductor cooling) -> Light (9835ms) What are semiconductors? Avago 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (Avago, develops, analog semiconductor devices) -> Avago (9870ms) What are semiconductors? Diagram D 0.6666666666659999 What are semiconductors? -> $x: ($x, represent, semiconductor) -> (Diagram D, represents, a P-type semiconductor crystal) -> Diagram D (9870ms) What are semiconductors? semiconductors 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (semiconductors, developed, new semiconductor processes) -> semiconductors (9880ms) What are semiconductors? ?Silicon Valley 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (?Silicon Valley, developed, semiconductor technology) -> ?Silicon Valley (9890ms) What are semiconductors? A Schottky diode 0.6666666666659999 What are semiconductors? -> $x: ($x, comprise, semiconductor) -> (A Schottky diode, comprises, a semiconductor substrate) -> A Schottky diode (9880ms) What are semiconductors? A third project 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (A third project, will develop, semiconductor nanocrystals) -> A third project (9838ms) What are semiconductors? The red rectangle 0.6666666666659999 What are semiconductors? -> $x: ($x, represent, semiconductor) -> (The red rectangle, represents, a p-type semiconductor) -> The red rectangle (9870ms) What are semiconductors? An LED 0.6666666666659999 What are semiconductors? -> $x: ($x, comprise, semiconductor) -> (An LED, comprises, an n-type semiconductor) -> An LED (9890ms) What are semiconductors? Sumitomo Electric 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (Sumitomo Electric, developed, green semiconductor lasers) -> Sumitomo Electric (9870ms) What are semiconductors? The lab 0.6666666666659999 What are semiconductors? -> $x: ($x, develop, semiconductor) -> (The lab, has developed, novel semiconductor) -> The lab (9835ms) What are semiconductors? subset B 0.6666666666659999 What are semiconductors? -> $x: ($x, comprise, semiconductor) -> (subset B, comprises only, semiconductors) -> subset B (9835ms) What are semiconductors? corporate members 0.6666666666659999 What are semiconductors? -> $x: ($x, represent, semiconductor) -> (corporate members, represent, semiconductor manufacturers) -> corporate members (9899ms) What are semiconductors? science 0.6666666666659999 What are semiconductors? -> $x: ($x, be use of, semiconductor) -> (science, is the explosive use of, semiconductors) -> science (9890ms) What are semiconductors? Israel 0.6666666666650001 What are semiconductors? -> $x: ($x, constitute, semiconductor) -> (Israel, is now constituted as, Tower Semiconductor) -> Israel (9908ms) What are semiconductors? the low energies 0.6666666666650001 What are semiconductors? -> $x: ($x, could be, semiconductor) -> (the low energies, could be a speciality of, III-V semiconductors) -> the low energies (9926ms) What are semiconductors? advantages 0.6666666666650001 What are semiconductors? -> $x: ($x, could be, semiconductor) -> (advantages, could be gained in, various semiconductor devices) -> advantages (9926ms) What are semiconductors? The technique 0.6666666666650001 What are semiconductors? -> $x: ($x, could be, semiconductor) -> (The technique, could be applied to, other II I?V semiconductors) -> The technique (9917ms) What are semiconductors? physics 0.6666666666650001 What are semiconductors? -> $x: ($x, discover, semiconductor) -> (physics, have discovered a new class of, complex semiconductors) -> physics (9899ms) What are semiconductors? various applications 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, are used in, various applications) -> various applications (9944ms) What are semiconductors? the tech space 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, are showing weakness in, the tech space) -> the tech space (9977ms) What are semiconductors? place 0.555555555555 What are semiconductors? -> $x: ($x, compare to, semiconductor) -> (place, here may be compared to, a semiconductor) -> place (9944ms) What are semiconductors? GX Vocabulary 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, In Scheme, GX Vocabulary) -> GX Vocabulary (9992ms) What are semiconductors? the Photovoltaic cells 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, are used in, the Photovoltaic cells) -> the Photovoltaic cells (9985ms) What are semiconductors? Authorities Concept Scheme 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (9935ms) What are semiconductors? ?cleanrooms 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, takes place in, ?cleanrooms) -> ?cleanrooms (9969ms) What are semiconductors? solar PV systems 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, are used in, solar PV systems) -> solar PV systems (9992ms) What are semiconductors? the center 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, are in, the center) -> the center (9952ms) What are semiconductors? interns 0.555555555555 What are semiconductors? -> $x: ($x, get, semiconductor) -> (interns, get paid at, OSRAM Opto Semiconductors) -> interns (9985ms) What are semiconductors? contact 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductor, come in, contact) -> contact (9944ms) What are semiconductors? Uzhgorod 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, will take place in, Uzhgorod) -> Uzhgorod (9952ms) What are semiconductors? recent years 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, have proliferated in, recent years) -> recent years (9985ms) What are semiconductors? Jim 0.555555555555 What are semiconductors? -> $x: ($x, leave, semiconductor) -> (Jim, left to start, Tundra Semiconductor Corporation) -> Jim (9977ms) What are semiconductors? medical equipment 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, are growing in, medical equipment) -> medical equipment (9968ms) What are semiconductors? the above theoretical computations 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, were made in, the above theoretical computations) -> the above theoretical computations (9977ms) What are semiconductors? sensor systems 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, are commonly used in, sensor systems) -> sensor systems (9935ms) What are semiconductors? low power applications 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, found widespread use in, low power applications) -> low power applications (9977ms) What are semiconductors? line 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, are trading in, line) -> line (9960ms) What are semiconductors? Photovoltaic Conversion 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, used in, Photovoltaic Conversion) -> Photovoltaic Conversion (9960ms) What are semiconductors? Electrode 0.555555555555 What are semiconductors? -> $x: ($x, leave, semiconductor) -> (Electrode, leave, the semiconductor) -> Electrode (9944ms) What are semiconductors? Gordon Moore and Robert Noyce 0.555555555555 What are semiconductors? -> $x: ($x, leave, semiconductor) -> (Gordon Moore and Robert Noyce, left, Fairchild Semiconductor) -> Gordon Moore and Robert Noyce (9969ms) What are semiconductors? design flexibility 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductor, represent the ultimate in, design flexibility) -> design flexibility (9969ms) What are semiconductors? the electronics industry 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, used in, the electronics industry) -> the electronics industry (9985ms) What are semiconductors? the international market 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductor, came down in, the international market) -> the international market (9935ms) What are semiconductors? two varieties 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, come in, two varieties) -> two varieties (9944ms) What are semiconductors? the engineering 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, has been introduced in, the engineering) -> the engineering (9968ms) What are semiconductors? household appliances 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, are increasingly found in, household appliances) -> household appliances (9944ms) What are semiconductors? the late 1940s 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, began in, the late 1940s) -> the late 1940s (9968ms) What are semiconductors? small pieces 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, are constructed in, small pieces) -> small pieces (9935ms) What are semiconductors? Singapore 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductor, previously operated in, Singapore) -> Singapore (9935ms) What are semiconductors? June 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, declined slightly in, June) -> June (9960ms) What are semiconductors? Information Appliance AMD 0.555555555555 What are semiconductors? -> $x: ($x, get, semiconductor) -> (Information Appliance AMD, got, such National Semiconductor) -> Information Appliance AMD (9968ms) What are semiconductors? collaboration 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, has resulted in, collaboration) -> collaboration (9935ms) What are semiconductors? the solid state 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, generate electricity in, the solid state) -> the solid state (9985ms) What are semiconductors? East Greenwich 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductor, operates a plant in, East Greenwich) -> East Greenwich (9943ms) What are semiconductors? automobiles 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, are increasingly pervasive in, automobiles) -> automobiles (9944ms) What are semiconductors? May 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, rebounded slightly in, May) -> May (9952ms) What are semiconductors? the industry 0.555555555555 What are semiconductors? -> $x: ($x, get, semiconductor) -> (the industry, got into, semiconductor technology and molding) -> the industry (9952ms) What are semiconductors? the late 1980s 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, operated in, the late 1980s) -> the late 1980s (9985ms) What are semiconductors? a wide range 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, are used in, a wide range) -> a wide range (9977ms) What are semiconductors? the region 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, are found in, the region) -> the region (9960ms) What are semiconductors? technology 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, can be found in, technology) -> technology (9985ms) What are semiconductors? such equipment 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, are prevalent in, such equipment) -> such equipment (9944ms) What are semiconductors? the computer 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, are found in, the computer) -> the computer (9952ms) What are semiconductors? America 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, are still made in, America) -> America (9960ms) What are semiconductors? Ken 0.555555555555 What are semiconductors? -> $x: ($x, leave, semiconductor) -> (Ken, has recently left, the Semiconductor Industry) -> Ken (9960ms) What are semiconductors? level1 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductor, was introduced in, level1) -> level1 (9968ms) What are semiconductors? focus 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, were in, focus) -> focus (9969ms) What are semiconductors? medical devices 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, used in, medical devices) -> medical devices (9935ms) What are semiconductors? Rambus 0.555555555555 What are semiconductors? -> $x: ($x, get, semiconductor) -> (Rambus, to get about $ 349 million from, Hynix Semiconductor) -> Rambus (9952ms) What are semiconductors? Fogal 0.555555555555 What are semiconductors? -> $x: ($x, get, semiconductor) -> (Fogal, get, his semiconductor) -> Fogal (9977ms) What are semiconductors? transistors 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, are used in, transistors) -> transistors (9935ms) What are semiconductors? counterfeiting 0.555555555555 What are semiconductors? -> $x: ($x, get, semiconductor) -> (counterfeiting, is getting worse in, the semiconductor space) -> counterfeiting (9985ms) What are semiconductors? Topical Terms Concept Scheme 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, In Scheme, Topical Terms Concept Scheme) -> Topical Terms Concept Scheme (9952ms) What are semiconductors? the Traitorous Eight 0.555555555555 What are semiconductors? -> $x: ($x, leave, semiconductor) -> (the Traitorous Eight, left, Shockley Semiconductor Laboratory) -> the Traitorous Eight (9985ms) What are semiconductors? Andy Grove 0.555555555555 What are semiconductors? -> $x: ($x, leave, semiconductor) -> (Andy Grove, left, Fairchild Semiconductor) -> Andy Grove (9985ms) What are semiconductors? plastics 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, is sometimes present in, plastics) -> plastics (9977ms) What are semiconductors? Figure 1 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, are presented in, Figure 1) -> Figure 1 (9960ms) What are semiconductors? 2010 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, launched in, 2010) -> 2010 (9952ms) What are semiconductors? 2000 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductor, were taken public in, 2000) -> 2000 (9977ms) What are semiconductors? sales 0.555555555555 What are semiconductors? -> $x: ($x, compare to, semiconductor) -> (sales, are still small compared to, the semiconductor industry) -> sales (9952ms) What are semiconductors? acceleration 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, resulted in, acceleration) -> acceleration (9952ms) What are semiconductors? Series A funding 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, raised $ 24 million in, Series A funding) -> Series A funding (9969ms) What are semiconductors? opposite directions 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, move in, opposite directions) -> opposite directions (9935ms) What are semiconductors? die area 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, can shrink in, die area) -> die area (9985ms) What are semiconductors? the electrons 0.555555555555 What are semiconductors? -> $x: ($x, leave, semiconductor) -> (the electrons, leave, the semiconductor) -> the electrons (9968ms) What are semiconductors? the link 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, are given in, the link) -> the link (9985ms) What are semiconductors? clean rooms 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, takes place in, clean rooms) -> clean rooms (9952ms) What are semiconductors? programmable logic devices 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, has been in, programmable logic devices) -> programmable logic devices (9977ms) What are semiconductors? computers 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, are good in, computers) -> computers (9977ms) What are semiconductors? Noyce and Moore 0.555555555555 What are semiconductors? -> $x: ($x, leave, semiconductor) -> (Noyce and Moore, left, Fairchild Semiconductor) -> Noyce and Moore (9944ms) What are semiconductors? microelectronics 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, are used in, microelectronics) -> microelectronics (9985ms) What are semiconductors? two others 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductor, is placed in between, two others) -> two others (9968ms) What are semiconductors? connection 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, are being studied in, connection) -> connection (9944ms) What are semiconductors? September 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, rose sharply in, September) -> September (9952ms) What are semiconductors? European countries 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductors, made in, European countries) -> European countries (9926ms) What are semiconductors? the eight men 0.555555555555 What are semiconductors? -> $x: ($x, leave, semiconductor) -> (the eight men, left, Shockley Semiconductor) -> the eight men (9977ms) What are semiconductors? the global transition 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, is losing in, the global transition) -> the global transition (9992ms) What are semiconductors? 230 offerings 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, has participated in approximately, 230 offerings) -> 230 offerings (9960ms) What are semiconductors? multimedia computers 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, produced sound in, multimedia computers) -> multimedia computers (9960ms) What are semiconductors? tablets 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, used in, tablets) -> tablets (9944ms) What are semiconductors? IQ 0.555555555555 What are semiconductors? -> $x: ($x, get, semiconductor) -> (IQ, get the overall rank for, the semiconductor group) -> IQ (9952ms) What are semiconductors? Rochester 0.555555555555 What are semiconductors? -> $x: ($x, get, semiconductor) -> (Rochester, got moved to, the Semiconductor Div) -> Rochester (9969ms) What are semiconductors? two subbands 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, is divided in, two subbands) -> two subbands (9935ms) What are semiconductors? quantum mechanics 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, are based in, quantum mechanics) -> quantum mechanics (9977ms) What are semiconductors? Brighton 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (Semiconductor, are based in, Brighton) -> Brighton (9968ms) What are semiconductors? Korea 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductor, LED technology in, Korea) -> Korea (9985ms) What are semiconductors? price 0.555555555555 What are semiconductors? -> $x: (semiconductor, in in, $x) -> (semiconductors, rapidly reduce in, price) -> price (9960ms) What are semiconductors? 1996 0.555555555554 What are semiconductors? -> $x: ($x, involve, semiconductor) -> (1996, has been involved in, the semiconductor industry) -> 1996 (9992ms) What are semiconductors? an EMS provider principal 0.555555555554 What are semiconductors? -> $x: ($x, involve, semiconductor) -> (an EMS provider principal, involved in, semiconductor packaging) -> an EMS provider principal (10000ms) What are semiconductors? ITC investigation 0.555555555554 What are semiconductors? -> $x: ($x, involve, semiconductor) -> (ITC investigation, involving, semi-conductor packages) -> ITC investigation (9992ms) What are semiconductors? such maneuver 0.555555555554 What are semiconductors? -> $x: ($x, involve, semiconductor) -> (such maneuver, involved, its troubled semiconductor business) -> such maneuver (9992ms) What are semiconductors? the new materials 0.555555555554 What are semiconductors? -> $x: ($x, involve, semiconductor) -> (the new materials, often involve, heavy metal semiconductors) -> the new materials (9992ms) What are semiconductors? systems 0.555555555554 What are semiconductors? -> $x: ($x, involve, semiconductor) -> (systems, involving, electrical and/or semiconductor devices) -> systems (9992ms) What are semiconductors? Bangor 0.555555555554 What are semiconductors? -> $x: ($x, involve, semiconductor) -> (Bangor, will involve the development of, semiconductor lasers) -> Bangor (9992ms) What are semiconductors? Electronics 0.555555555554 What are semiconductors? -> $x: ($x, involve, semiconductor) -> (Electronics, involves, semiconductors) -> Electronics (9992ms) What are semiconductors? The position 0.555555555554 What are semiconductors? -> $x: ($x, involve, semiconductor) -> (The position, will involve work with, semiconductor materials) -> The position (9992ms) What are semiconductors? The structures 0.555555555554 What are semiconductors? -> $x: ($x, involve, semiconductor) -> (The structures, involve, semiconductor layers) -> The structures (9992ms) What are semiconductors? COB 0.555555555554 What are semiconductors? -> $x: ($x, involve, semiconductor) -> (COB, involves mounting, a DRAM or Flash semiconductor) -> COB (9992ms) What are semiconductors? lasers 0.555555555554 What are semiconductors? -> $x: ($x, involve, semiconductor) -> (lasers, involve, semiconductor diodes) -> lasers (9992ms) What are semiconductors? The challenge 0.555555555554 What are semiconductors? -> $x: ($x, involve, semiconductor) -> (The challenge, involves the physical movement of, semiconductors) -> The challenge (9992ms) What are semiconductors? a layer 0.444444444443 What are semiconductors? -> $x: ($x, be use as, semiconductor) -> (a layer, as is commonly used in, semiconductor devices) -> a layer (10000ms) What are semiconductors? The nylon 0.444444444443 What are semiconductors? -> $x: ($x, be use as, semiconductor) -> (The nylon, is used as, a semi-conductor) -> The nylon (10000ms) What are semiconductors? germanium 0.444444444443 What are semiconductors? -> $x: ($x, be use as, semiconductor) -> (germanium, was first used as, a semi-conductor) -> germanium (10000ms) What are semiconductors? gallium arsenide 0.444444444443 What are semiconductors? -> $x: ($x, be use as, semiconductor) -> (gallium arsenide, is used as, a compound semiconductor) -> gallium arsenide (10000ms) What are semiconductors? InGaAs 0.444444444443 What are semiconductors? -> $x: ($x, be use as, semiconductor) -> (InGaAs, is used as, semiconductor material) -> InGaAs (10000ms) What are semiconductors? silicone 0.444444444443 What are semiconductors? -> $x: ($x, be use as, semiconductor) -> (silicone, is used as, a semiconductor) -> silicone (10000ms) What are semiconductors? titanium dioxide 0.444444444443 What are semiconductors? -> $x: ($x, be use as, semiconductor) -> (titanium dioxide, is used as, the semiconductor) -> titanium dioxide (10000ms) What are semiconductors? The library 0.333333333332 What are semiconductors? -> $x: ($x, contain, semiconductor) -> (The library, contains, common residuals and semiconductor gases) -> The library (10007ms) What are semiconductors? a small electronic device 0.333333333332 What are semiconductors? -> $x: ($x, contain, semiconductor) -> (a small electronic device, containing, a semiconductor) -> a small electronic device (10015ms) What are semiconductors? the package 0.333333333332 What are semiconductors? -> $x: ($x, contain, semiconductor) -> (the package, contains, an emptychip-less semi-conductor) -> the package (10000ms) What are semiconductors? a waste water 0.333333333332 What are semiconductors? -> $x: ($x, contain, semiconductor) -> (a waste water, contains, a compound semiconductor) -> a waste water (10015ms) What are semiconductors? a package 0.333333333332 What are semiconductors? -> $x: ($x, contain, semiconductor) -> (a package, containing, semiconductor devices and desiccant) -> a package (10014ms) What are semiconductors? mobile device 0.333333333332 What are semiconductors? -> $x: ($x, contain, semiconductor) -> (mobile device, contains, a much higher compound semiconductor) -> mobile device (10000ms) What are semiconductors? a small internal tube 0.333333333332 What are semiconductors? -> $x: ($x, contain, semiconductor) -> (a small internal tube, containing, a semi-conductor sensor) -> a small internal tube (10007ms) What are semiconductors? Each section 0.333333333332 What are semiconductors? -> $x: ($x, contain, semiconductor) -> (Each section, contains, a semiconductor 5-year revenue forecast) -> Each section (10007ms) What are semiconductors? The light 0.333333333332 What are semiconductors? -> $x: ($x, contain, semiconductor) -> (The light, contains, the impressive Seoul Semiconductor P7) -> The light (10007ms) What are semiconductors? Every compact disc player 0.333333333332 What are semiconductors? -> $x: ($x, contain, semiconductor) -> (Every compact disc player, contains, a semiconductor laser) -> Every compact disc player (10007ms) What are semiconductors? A tag 0.333333333332 What are semiconductors? -> $x: ($x, contain, semiconductor) -> (A tag, contains, a printed circuit board and/or semiconductors) -> A tag (10007ms) What are semiconductors? the wrap 0.333333333332 What are semiconductors? -> $x: ($x, contain, semiconductor) -> (the wrap, contains, the semiconductor material) -> the wrap (10007ms) What are semiconductors? very tiny mirrors 0.333333333332 What are semiconductors? -> $x: ($x, contain, semiconductor) -> (very tiny mirrors, are contained on, a semiconductor chip) -> very tiny mirrors (10014ms) What are semiconductors? The Jiffy converter 0.333333333332 What are semiconductors? -> $x: ($x, contain, semiconductor) -> (The Jiffy converter, contains, a 25amp triac semiconductor) -> The Jiffy converter (10007ms) What are semiconductors? stephen 0.333333333332 What are semiconductors? -> $x: ($x, contain, semiconductor) -> (stephen, contains some wonderful work by, semiconductor) -> stephen (10000ms) What are semiconductors? etc 0.333333333332 What are semiconductors? -> $x: ($x, contain, semiconductor) -> (etc, contain, semiconductors) -> etc (10014ms) What are semiconductors? diode technology 0.333333333332 What are semiconductors? -> $x: ($x, contain, semiconductor) -> (diode technology, contains, semi-conductors) -> diode technology (10007ms) What are semiconductors? The Thermator 0.333333333332 What are semiconductors? -> $x: ($x, contain, semiconductor) -> (The Thermator, contains, a semi-conductor crystal ?Varmaraf) -> The Thermator (10007ms) What are semiconductors? HDX drives 0.333333333332 What are semiconductors? -> $x: ($x, contain, semiconductor) -> (HDX drives, contain, Oxford Semiconductor chipsets) -> HDX drives (10014ms) What are semiconductors? The panels 0.333333333332 What are semiconductors? -> $x: ($x, contain, semiconductor) -> (The panels, contain a layer of, semiconductor) -> The panels (10007ms) What are semiconductors? A Solid State Drive 0.333333333332 What are semiconductors? -> $x: ($x, contain, semiconductor) -> (A Solid State Drive, contains, semiconductor microchips) -> A Solid State Drive (10007ms) What are semiconductors? Each module 0.333333333332 What are semiconductors? -> $x: ($x, contain, semiconductor) -> (Each module, contains, a semiconductor) -> Each module (10007ms) What are semiconductors? products 0.333333333332 What are semiconductors? -> $x: ($x, contain, semiconductor) -> (products, containing, semiconductors) -> products (10007ms) What are semiconductors? Each diode 0.333333333332 What are semiconductors? -> $x: ($x, contain, semiconductor) -> (Each diode, contains, a semiconductor chip) -> Each diode (10007ms) What are semiconductors? Fleming 0.333333333331 What are semiconductors? -> $x: ($x, invent, diode) -> (Fleming, invented, the vacuum diode) -> Fleming (10022ms) What are semiconductors? the coil 0.333333333331 What are semiconductors? -> $x: ($x, cause, diode) -> (the coil, causes a current to flow through, the freewheel diode) -> the coil (10014ms) What are semiconductors? Woodall 0.333333333331 What are semiconductors? -> $x: ($x, invent, diode) -> (Woodall, invented, the high-efficiency red light-emitting diodes) -> Woodall (10022ms) What are semiconductors? suggestion.The problem 0.333333333331 What are semiconductors? -> $x: ($x, cause, diode) -> (suggestion.The problem, was caused by, two damaged diodes) -> suggestion.The problem (10015ms) What are semiconductors? AT&T 0.333333333331 What are semiconductors? -> $x: ($x, invent, diode) -> (AT&T, invented, the diode transistor) -> AT&T (10022ms) What are semiconductors? Jr. 0.333333333331 What are semiconductors? -> $x: ($x, invent, diode) -> (Jr., invented, the first practical light emitting diode) -> Jr. (10022ms) What are semiconductors? The 82-year-old 0.333333333331 What are semiconductors? -> $x: ($x, invent, diode) -> (The 82-year-old, invented, the LED , or light-emitting diode) -> The 82-year-old (10022ms) What are semiconductors? Physics 0.333333333331 What are semiconductors? -> $x: ($x, invent, diode) -> (Physics, also invented, the first practical light emitting diode) -> Physics (10014ms) What are semiconductors? 1904 0.333333333331 What are semiconductors? -> $x: ($x, invent, diode) -> (1904, invented, the valve diode) -> 1904 (10022ms) What are semiconductors? solder voids 0.333333333331 What are semiconductors? -> $x: ($x, cause, diode) -> (solder voids, cause, diode failure) -> solder voids (10014ms) What are semiconductors? Shuji Nakamura 0.333333333331 What are semiconductors? -> $x: ($x, invent, diode) -> (Shuji Nakamura, invented, practical blue laser diodes) -> Shuji Nakamura (10022ms) What are semiconductors? Misha Gravenor GE 0.333333333331 What are semiconductors? -> $x: ($x, invent, diode) -> (Misha Gravenor GE, invented, the light-emitting diode) -> Misha Gravenor GE (10014ms) What are semiconductors? Eastman Kodak 0.333333333331 What are semiconductors? -> $x: ($x, invent, diode) -> (Eastman Kodak, with inventing, the first diode device) -> Eastman Kodak (10022ms) What are semiconductors? Ambrose Fleming 0.333333333331 What are semiconductors? -> $x: ($x, invent, diode) -> (Ambrose Fleming, invents, the diode tube) -> Ambrose Fleming (10022ms) What are semiconductors? 1904 Fleming 0.333333333331 What are semiconductors? -> $x: ($x, invent, diode) -> (1904 Fleming, invented, the diode thermionic valve and) -> 1904 Fleming (10022ms) What are semiconductors? an employee 0.333333333331 What are semiconductors? -> $x: ($x, invent, diode) -> (an employee, invented, the blue light-emitting diode) -> an employee (10022ms) What are semiconductors? the sine wave peaks 0.333333333331 What are semiconductors? -> $x: ($x, cause, diode) -> (the sine wave peaks, is caused by, the diodes) -> the sine wave peaks (10021ms) What are semiconductors? the voltage drop 0.333333333331 What are semiconductors? -> $x: ($x, cause, diode) -> (the voltage drop, caused by, the diodes) -> the voltage drop (10015ms) What are semiconductors? any voltage drop 0.333333333331 What are semiconductors? -> $x: ($x, cause, diode) -> (any voltage drop, caused by, the diode splitter and cabling) -> any voltage drop (10022ms) What are semiconductors? the Walkway.They 0.33333333333 What are semiconductors? -> $x: ($x, re, diode) -> (the Walkway.They, 're, LEDs , light-emitting diodes) -> the Walkway.They (10022ms) What are semiconductors? let?s 0.22222222222300003 What are semiconductors? -> $x: ($x, demonstrate, semiconductor) -> (let?s, demonstrate our technique with, one semiconductor) -> let?s (10029ms) What are semiconductors? a proven model 0.22222222222300003 What are semiconductors? -> $x: ($x, demonstrate, semiconductor) -> (a proven model, demonstrated in, the semiconductor industry) -> a proven model (10029ms) What are semiconductors? The fundamental architecture 0.22222222222200005 What are semiconductors? -> $x: ($x, implement, semiconductor) -> (The fundamental architecture, implemented on, Jazz Semiconductor) -> The fundamental architecture (10029ms) What are semiconductors? various Technical Committees 0.22222222222200005 What are semiconductors? -> $x: ($x, concerned, semiconductor) -> (various Technical Committees, concerned with, Semiconductors) -> various Technical Committees (10029ms) What are semiconductors? patents 0.22222222222200005 What are semiconductors? -> $x: ($x, concerned, semiconductor) -> (patents, concerning, semiconductor and optical technology) -> patents (10029ms) What are semiconductors? gallium nitride 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (gallium nitride, is used in, light-emitting diodes) -> gallium nitride (10069ms) What are semiconductors? Laser light 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (Laser light, is generated in, a laser diode) -> Laser light (10054ms) What are semiconductors? Michael J. Owens 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (Michael J. Owens, invented, the modern glass industry) -> Michael J. Owens (10064ms) What are semiconductors? a term 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (a term, invented by, the security industry) -> a term (10078ms) What are semiconductors? QR Codes 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (QR Codes, were invented by, the auto industry) -> QR Codes (10054ms) What are semiconductors? the details 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (the details, can be found in, the non-diode laser sales) -> the details (10073ms) What are semiconductors? the current flow 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (the current flow, is always in, the diode) -> the current flow (10049ms) What are semiconductors? The reverse voltage 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (The reverse voltage, occurs in, a Zener Diode) -> The reverse voltage (10073ms) What are semiconductors? Americans 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (Americans, invented, the oil industry) -> Americans (10064ms) What are semiconductors? Nobody 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (Nobody, has invented, the perfect affiliate industry place) -> Nobody (10073ms) What are semiconductors? The transistor sensor 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (The transistor sensor, is used in, diode mode) -> The transistor sensor (10078ms) What are semiconductors? project management 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (project management, was invented fresh for, this industry) -> project management (10082ms) What are semiconductors? Key Hub FedEx 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (Key Hub FedEx, invented, an industry) -> Key Hub FedEx (10082ms) What are semiconductors? DrivingSales 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (DrivingSales, invented, the industry) -> DrivingSales (10069ms) What are semiconductors? three samples 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (three samples, is plotted in, Single Mode Diodes Data) -> three samples (10064ms) What are semiconductors? Zenith 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (Zenith, has invented, countless industry-leading developments) -> Zenith (10082ms) What are semiconductors? Nokia 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (Nokia, had invented, this industry) -> Nokia (10035ms) What are semiconductors? Enron 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (Enron, invented, the global warming industry) -> Enron (10042ms) What are semiconductors? the signal 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (the signal, then used in, a balanced diode ring mixer) -> the signal (10078ms) What are semiconductors? the city 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (the city, invented, the advertising industry) -> the city (10048ms) What are semiconductors? a few short years Swanson and Boyer 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (a few short years Swanson and Boyer, invented, a new industry) -> a few short years Swanson and Boyer (10049ms) What are semiconductors? First Research 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (First Research, invented, its Industry Profiles) -> First Research (10073ms) What are semiconductors? forward drop 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (forward drop, can make current in, each diode) -> forward drop (10069ms) What are semiconductors? What current 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (What current, is a forward bias current in, a diode) -> What current (10082ms) What are semiconductors? survivors 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (survivors, invent, a new entertainment industry) -> survivors (10064ms) What are semiconductors? storm 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (storm, invented, the now ubiquitous industry term) -> storm (10059ms) What are semiconductors? IBM and Motorola 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (IBM and Motorola, invented, their successor industries decades) -> IBM and Motorola (10029ms) What are semiconductors? Emily Kendal Frey 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (Emily Kendal Frey, are in, diode) -> Emily Kendal Frey (10078ms) What are semiconductors? God 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (God, invent, the paper industry) -> God (10042ms) What are semiconductors? Jakob?s poems 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (Jakob?s poems, have appeared in, diode) -> Jakob?s poems (10042ms) What are semiconductors? The GaAlAs diodes 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (The GaAlAs diodes, are used both in, diode lasers) -> The GaAlAs diodes (10042ms) What are semiconductors? trifilar 1:1 transformers 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (trifilar 1:1 transformers, are used in, diode ring mixers) -> trifilar 1:1 transformers (10064ms) What are semiconductors? the DSR6U600P5 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (the DSR6U600P5, are housed in, Diodes) -> the DSR6U600P5 (10082ms) What are semiconductors? the laser effect 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (the laser effect, works In, a laser diode) -> the laser effect (10069ms) What are semiconductors? the Visionary 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (the Visionary, Invented, the Cell Phone Industry) -> the Visionary (10064ms) What are semiconductors? Dale Carnegie 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (Dale Carnegie, invented, the self-help workshop industry) -> Dale Carnegie (10059ms) What are semiconductors? Raymond 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (Raymond, invented, the industry ?s) -> Raymond (10073ms) What are semiconductors? a company 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (a company, actually invents, an industry) -> a company (10054ms) What are semiconductors? Key-switches 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (Key-switches, wired in, an 8x8 array with diodes) -> Key-switches (10054ms) What are semiconductors? Voltage-balance 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (Voltage-balance, limits in, four-level diode-clamped converters) -> Voltage-balance (10073ms) What are semiconductors? The biggest jump 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (The biggest jump, will be the increase in, light emitting diode) -> The biggest jump (10029ms) What are semiconductors? faster testing 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (faster testing, enable developments in, laser diode drivers) -> faster testing (10073ms) What are semiconductors? an open ethos 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (an open ethos, can re-invent, an industry) -> an open ethos (10059ms) What are semiconductors? The MOSFET 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (The MOSFET, has a built in, shunt diode) -> The MOSFET (10059ms) What are semiconductors? Pino 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (Pino, virtually invented, the romance novel industry) -> Pino (10054ms) What are semiconductors? Figure 24 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (Figure 24, is typically used in, smaller diodes) -> Figure 24 (10073ms) What are semiconductors? Laser technology 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (Laser technology, has a built in, laser diode) -> Laser technology (10073ms) What are semiconductors? The failure 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (The failure, might be in, the LED diode) -> The failure (10078ms) What are semiconductors? The power 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (The power, lost in, the diode) -> The power (10029ms) What are semiconductors? Rich Santulli 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (Rich Santulli, invented, the fractional-ownership industry) -> Rich Santulli (10035ms) What are semiconductors? Colonel Sanders 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (Colonel Sanders, invented, the fast-food industry) -> Colonel Sanders (10064ms) What are semiconductors? the federally registered name 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (the federally registered name, invented, this industry) -> the federally registered name (10082ms) What are semiconductors? the Internet 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (the Internet, was invented specifically for, the AEC industry) -> the Internet (10069ms) What are semiconductors? GaAs 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (GaAs, is used in, light-emitting diodes) -> GaAs (10035ms) What are semiconductors? temperature 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (temperature, is a factor in, the diode equation) -> temperature (10042ms) What are semiconductors? Edison 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (Edison, invented, the modern electric utility industry) -> Edison (10082ms) What are semiconductors? a water-proof paint 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (a water-proof paint, was invented for, the movie industry) -> a water-proof paint (10035ms) What are semiconductors? Terman?s Radio Research lab 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (Terman?s Radio Research lab, invented, an industry) -> Terman?s Radio Research lab (10082ms) What are semiconductors? Taher 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (Taher, invented, several industry) -> Taher (10059ms) What are semiconductors? Italy 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (Italy, practically invented, this cottage industry) -> Italy (10078ms) What are semiconductors? Just the opposite 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (Just the opposite, occurs in, optical diodes) -> Just the opposite (10078ms) What are semiconductors? SiC?s speed 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (SiC?s speed, has been exploited in, Schottky diodes) -> SiC?s speed (10042ms) What are semiconductors? Semiconductors 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (Semiconductors, are used in, diodes) -> Semiconductors (10064ms) What are semiconductors? The 10 digit hex code 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (The 10 digit hex code, is stored in, a diode matrix) -> The 10 digit hex code (10042ms) What are semiconductors? the first one 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (the first one, invented, a new fashion industry) -> the first one (10082ms) What are semiconductors? TIA members 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (TIA members, invented, the freight brokering industry) -> TIA members (10082ms) What are semiconductors? The GIA 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (The GIA, invented, the industry) -> The GIA (10029ms) What are semiconductors? the substances 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (the substances, included in, the diode) -> the substances (10069ms) What are semiconductors? Elizabeth Arden 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (Elizabeth Arden, invented, the American beauty industry) -> Elizabeth Arden (10054ms) What are semiconductors? Nd:YLF 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (Nd:YLF, are common in, diode-pumped lasers) -> Nd:YLF (10073ms) What are semiconductors? the cheaper ones 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (the cheaper ones, are in, the LED diode) -> the cheaper ones (10054ms) What are semiconductors? the detectors 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (the detectors, working in, the event of a diode fault) -> the detectors (10078ms) What are semiconductors? communications 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (communications, were invented by, industry) -> communications (10054ms) What are semiconductors? Latest News LCC 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (Latest News LCC, helped invent, the wireless industry) -> Latest News LCC (10042ms) What are semiconductors? 1 Question 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (1 Question, is a forward bias current in, a diode) -> 1 Question (10054ms) What are semiconductors? The X-rays 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (The X-rays, are photoelectrically absorbed in, the PIN diodes) -> The X-rays (10035ms) What are semiconductors? English 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (English, has recently published poems in, Diode) -> English (10069ms) What are semiconductors? now this substrate 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (now this substrate, stayed in, the diode) -> now this substrate (10054ms) What are semiconductors? a transcontinental railroad 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (a transcontinental railroad, invented, the automobile industry) -> a transcontinental railroad (10082ms) What are semiconductors? Texas 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (Texas, practically invented, the industry) -> Texas (10049ms) What are semiconductors? the globe 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (the globe, are re-inventing, their industries) -> the globe (10059ms) What are semiconductors? Mosfets 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (Mosfets, have a built in, diode) -> Mosfets (10082ms) What are semiconductors? electron movement 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (electron movement, takes place in, many diodes) -> electron movement (10069ms) What are semiconductors? modern humans 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (modern humans, invented, a new industry) -> modern humans (10082ms) What are semiconductors? a legal concept 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (a legal concept, invented by, the biotech industry) -> a legal concept (10054ms) What are semiconductors? Indirect clamping 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (Indirect clamping, is also a problem in, the diode structures) -> Indirect clamping (10049ms) What are semiconductors? price Increased brightness 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (price Increased brightness, has allowed a reduction in, diodes) -> price Increased brightness (10049ms) What are semiconductors? a funny word 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (a funny word, was invented purely for, the wine industry) -> a funny word (10073ms) What are semiconductors? energy levels 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (energy levels, change in, the semiconductor diode) -> energy levels (10042ms) What are semiconductors? The devil 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (The devil, 's in, the diodes) -> The devil (10073ms) What are semiconductors? the MD-2010/2015 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (the MD-2010/2015, is a breakthrough in, diode array technology) -> the MD-2010/2015 (10029ms) What are semiconductors? LEDs/SLDs 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (LEDs/SLDs, are frequently arranged in, multiple-diode clusters) -> LEDs/SLDs (10054ms) What are semiconductors? A resistor 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (A resistor, placed in, series with the commutating diode) -> A resistor (10078ms) What are semiconductors? a barrier potential 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (a barrier potential, is formed in, a p-n junction diode) -> a barrier potential (10059ms) What are semiconductors? eBay 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (eBay, invented, a new industry) -> eBay (10078ms) What are semiconductors? IBM Fellows 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (IBM Fellows, have invented some of, the industry) -> IBM Fellows (10035ms) What are semiconductors? the SPDT switch 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (the SPDT switch, is used in, the dual diode matrix) -> the SPDT switch (10069ms) What are semiconductors? Automated Food Systems 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (Automated Food Systems, invented, an industry) -> Automated Food Systems (10042ms) What are semiconductors? Recent work 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (Recent work, has appeared in, diode) -> Recent work (10082ms) What are semiconductors? Jobs 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (Jobs, did n?t invent, the industry) -> Jobs (10035ms) What are semiconductors? Cree 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (Cree, is a leader in, light-emitting diode technology) -> Cree (10073ms) What are semiconductors? the diode voltage 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (the diode voltage, drops in, the transistor and diode) -> the diode voltage (10035ms) What are semiconductors? the researchers 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (the researchers, happens in, a silicon diode) -> the researchers (10069ms) What are semiconductors? the 2 coils 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (the 2 coils, are in parallel with, a diode) -> the 2 coils (10059ms) What are semiconductors? a country 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (a country, invented, industry) -> a country (10078ms) What are semiconductors? Comes 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (Comes, invented for, the food service industry) -> Comes (10054ms) What are semiconductors? the LED devices 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (the LED devices, are in, a p-i-n diode configuration) -> the LED devices (10042ms) What are semiconductors? News LCC 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (News LCC, helped invent, the wireless industry) -> News LCC (10064ms) What are semiconductors? T2 basically 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (T2 basically, just stands in for, a zener diode) -> T2 basically (10073ms) What are semiconductors? AstroTurf ? 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (AstroTurf ?, invented, the synthetic turf industry) -> AstroTurf ? (10064ms) What are semiconductors? reliability problems 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (reliability problems, will be discussed in, diode type devices) -> reliability problems (10064ms) What are semiconductors? night 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (night, are showing interest in, light emitting diodes) -> night (10029ms) What are semiconductors? VR curves 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (VR curves, are found in, the diode datasheet) -> VR curves (10073ms) What are semiconductors? Diamond Peel 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (Diamond Peel, was thrown in with, my underarm diode session) -> Diamond Peel (10059ms) What are semiconductors? a specific wavelength 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (a specific wavelength, generated in, the diode) -> a specific wavelength (10049ms) What are semiconductors? 1953 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (1953, singlehandedly invented, the industry) -> 1953 (10059ms) What are semiconductors? dynamic programming 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (dynamic programming, is invented in, industries) -> dynamic programming (10073ms) What are semiconductors? the speculators 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (the speculators, invent, new industries) -> the speculators (10035ms) What are semiconductors? Netflix 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (Netflix, practically invented, this industry) -> Netflix (10029ms) What are semiconductors? the nation?s ability 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (the nation?s ability, invent, new industries) -> the nation?s ability (10049ms) What are semiconductors? the electron tunneling effect 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (the electron tunneling effect, used in, these diodes) -> the electron tunneling effect (10042ms) What are semiconductors? A typed version 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (A typed version, is in, the Diode Characteristics note) -> A typed version (10069ms) What are semiconductors? a way Lee Iacocca 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (a way Lee Iacocca, invented, the modern carseat industry) -> a way Lee Iacocca (10054ms) What are semiconductors? Dr. Elgamal 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (Dr. Elgamal, invented, several industry) -> Dr. Elgamal (10064ms) What are semiconductors? Question 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (Question, is a forward bias current in, a diode) -> Question (10029ms) What are semiconductors? gallium 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (gallium, are used in, light-emitting diodes) -> gallium (10064ms) What are semiconductors? the real hackers 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (the real hackers, invented, the modern computer industry) -> the real hackers (10042ms) What are semiconductors? Bunchball 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (Bunchball, invented, the gamification industry) -> Bunchball (10059ms) What are semiconductors? The diode-pumped laser source 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (The diode-pumped laser source, excels in, high diode life) -> The diode-pumped laser source (10059ms) What are semiconductors? handily 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (handily, invented, the American wine industry) -> handily (10049ms) What are semiconductors? Samuel Colt 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (Samuel Colt, invented, the modern firearm industry) -> Samuel Colt (10035ms) What are semiconductors? company 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (company, invented, the industry) -> company (10049ms) What are semiconductors? the power 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (the power, may increase resulting in, laser diode destruction) -> the power (10049ms) What are semiconductors? A chimera 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (A chimera, invented by, an industry) -> A chimera (10059ms) What are semiconductors? The largest opportunity 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (The largest opportunity, is in, the light-emitting diodes) -> The largest opportunity (10078ms) What are semiconductors? The reason 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (The reason, is in taking, real diodes) -> The reason (10069ms) What are semiconductors? two different effects 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (two different effects, are used in, Zener diodes) -> two different effects (10082ms) What are semiconductors? ideas 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (ideas, invent, whole new industries) -> ideas (10078ms) What are semiconductors? ISG 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (ISG, essentially re-invented, the American steel industry) -> ISG (10078ms) What are semiconductors? an umbrella term 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (an umbrella term, invented for, industry convenience) -> an umbrella term (10069ms) What are semiconductors? Much higher power 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (Much higher power, is available in, diode lasers) -> Much higher power (10035ms) What are semiconductors? the 100000 ohm load 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (the 100000 ohm load, is lost in, the PIN diode) -> the 100000 ohm load (10059ms) What are semiconductors? The IR module 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (The IR module, contains a built in, photo diode) -> The IR module (10035ms) What are semiconductors? nonstandard standards 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (nonstandard standards, were invented by, the computer industry) -> nonstandard standards (10042ms) What are semiconductors? Semiconductor Manufacture 0.22222222222 What are semiconductors? -> $x: ($x, in, diode) -> (Semiconductor Manufacture, Organizations in this industry, Diodes Incorporated) -> Semiconductor Manufacture (10078ms) What are semiconductors? Bob Circosta 0.22222222222 What are semiconductors? -> $x: ($x, invent, industry) -> (Bob Circosta, helped invent, an entirely new industry) -> Bob Circosta (10069ms) What is sodium chloride? further evaporation 0.111111111111 What is sodium chloride? -> $x: ($x, cause, sodium chloride) -> (further evaporation, causes, pure Sodium Chloride) -> further evaporation (1271ms) What is sodium chloride? Spray -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Spray, Formulations available in this form, Sodium chloride 26 spray) -> Spray (1271ms) What is sodium chloride? common -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (common, found in, Sodium chloride) -> common (2492ms) What is sodium chloride? Drug -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Drug, Drug formulations in this category, Sodium chloride 0.9 injection) -> Drug (7021ms) What is sodium chloride? Pregnancy Category C (FDA) -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Pregnancy Category C (FDA), Drugs in this category, Sodium chloride/Potassium chloride/Magnesium chloride/Sodium acetate/Sodium lactate/Calcium chloride) -> Pregnancy Category C (FDA) (7021ms) What is sodium chloride? the sample -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (the sample, might be immersed in, a sodium chloride solution) -> the sample (1271ms) What is sodium chloride? Pellet -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Pellet, Formulations available in this form, Sodium chloride 30 pellet) -> Pellet (6507ms) What is sodium chloride? Table salt -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Table salt, is rich in, sodium chloride) -> Table salt (6949ms) What is sodium chloride? a brine -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (a brine, saturated in, sodium chloride) -> a brine (2492ms) What is sodium chloride? tetanus toxoids -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (tetanus toxoids, suspended in, isotonic sodium chloride solution) -> tetanus toxoids (1832ms) What is sodium chloride? The springs -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (The springs, are rich in, sodium chloride) -> The springs (2492ms) What is sodium chloride? The sample -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (The sample, is dissolved in, acetone/aqueous sodium chloride) -> The sample (4243ms) What is sodium chloride? BOTOX -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (BOTOX, is suspended in, sodium chloride) -> BOTOX (4243ms) What is sodium chloride? The complex -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (The complex, is dissolved in, sterile sodium chloride solution) -> The complex (4192ms) What is sodium chloride? Solution -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Solution, Formulations available in this form, Sodium chloride 50 solution) -> Solution (6176ms) What is sodium chloride? the probes -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (the probes, are placed in, a solution containing sodium chloride) -> the probes (3629ms) What is sodium chloride? plastic containers -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (plastic containers, are available in, both sodium chloride) -> plastic containers (6507ms) What is sodium chloride? the skin surface -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (the skin surface, is usually low in, sodium and chloride) -> the skin surface (1832ms) What is sodium chloride? electrodes -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (electrodes, are in, a sodium chloride) -> electrodes (3629ms) What is sodium chloride? BUSULFEX -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (BUSULFEX, diluted in, 0.9 % Sodium Chloride Injection) -> BUSULFEX (6949ms) What is sodium chloride? rats -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (rats, are deficient in, sodium chloride) -> rats (4243ms) What is sodium chloride? 200 mg/kg -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (200 mg/kg, suspended in, 0.9 % sodium chloride solution) -> 200 mg/kg (6949ms) What is sodium chloride? neurons -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (neurons, are bathed in, a sodium chloride solution) -> neurons (2367ms) What is sodium chloride? Chlorides Saline hot springs -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Chlorides Saline hot springs, are rich in, sodium chloride) -> Chlorides Saline hot springs (6949ms) What is sodium chloride? 20 mg -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (20 mg, formulated in, 17.4 mg sodium chloride) -> 20 mg (1832ms) What is sodium chloride? Nabi-HB? -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Nabi-HB?, is formulated in, 0.075 M sodium chloride) -> Nabi-HB? (6949ms) What is sodium chloride? the water -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (the water, is rich in, sodium chloride) -> the water (4192ms) What is sodium chloride? 38 % water -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (38 % water, immersed in, 0.9 % sodium chloride solution) -> 38 % water (1468ms) What is sodium chloride? Homeopathic -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Homeopathic, Drug formulations in this category, Sodium chloride 30 pellet) -> Homeopathic (4243ms) What is sodium chloride? the chloride -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (the chloride, found in, sodium chloride) -> the chloride (4243ms) What is sodium chloride? Solution/drops -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Solution/drops, Formulations available in this form, Sodium chloride 50 solution/drops) -> Solution/drops (6507ms) What is sodium chloride? insects -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (insects, dissected in, cold 0.25 M sodium chloride) -> insects (6507ms) What is sodium chloride? Injectable -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Injectable, Formulations available in this form, Heparin sodium in sodium chloride 2 injection) -> Injectable (6949ms) What is sodium chloride? Injection -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Injection, is reconstituted in, 0.9 % sodium chloride) -> Injection (4243ms) What is sodium chloride? Sweat losses -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Sweat losses, generate large losses in, sodium and chloride) -> Sweat losses (1832ms) What is sodium chloride? human serum -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (human serum, diluted in, a sodium chloride solution) -> human serum (3629ms) What is sodium chloride? Le Tresor -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Le Tresor, is also lower in, sodium chloride content) -> Le Tresor (1271ms) What is sodium chloride? 10 mg -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (10 mg, formulated in, 17.4 mg sodium chloride) -> 10 mg (6507ms) What is sodium chloride? A lead anode -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (A lead anode, placed in, a sodium chloride solution) -> A lead anode (1832ms) What is sodium chloride? sodium -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (sodium, (usually found in, sodium chloride form) -> sodium (1468ms) What is sodium chloride? ample other minerals -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (ample other minerals, are insufficient in, sodium chloride) -> ample other minerals (6949ms) What is sodium chloride? Lotion -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Lotion, Formulations available in this form, Sodium chloride 0.0065 lotion) -> Lotion (7021ms) What is sodium chloride? Dead Sea Bath Salts -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Dead Sea Bath Salts, are low in, Sodium Chloride) -> Dead Sea Bath Salts (2492ms) What is sodium chloride? Irrigant -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Irrigant, Formulations available in this form, Sodium chloride 4.5 irrigant) -> Irrigant (3629ms) What is sodium chloride? The product -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (The product, is formulated in, 9 mg/mL sodium chloride) -> The product (6176ms) What is sodium chloride? USP -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (USP, diluted in, Sodium Chloride Injection) -> USP (4192ms) What is sodium chloride? Ointment -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Ointment, Formulations available in this form, Sodium chloride 50 ointment) -> Ointment (4192ms) What is sodium chloride? Injectable concentrate solution -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Injectable concentrate solution, Formulations available in this form, Sodium chloride 146 injectable concentrate solution) -> Injectable concentrate solution (1832ms) What is sodium chloride? Solid -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Solid, Compounds in this phase at STP, Sodium chloride) -> Solid (1271ms) What is sodium chloride? TAXOL -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (TAXOL, should be diluted in, 0.9 % Sodium Chloride Injection) -> TAXOL (6507ms) What is sodium chloride? Celtic Sea Salt -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Celtic Sea Salt, is lower in, sodium and chloride) -> Celtic Sea Salt (2492ms) What is sodium chloride? Human skin -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Human skin, preserved in, anhydric sodium chloride) -> Human skin (4243ms) What is sodium chloride? Injectable solution -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Injectable solution, Formulations available in this form, Sodium chloride 30 injectable solution) -> Injectable solution (7021ms) What is sodium chloride? Aldurazyme -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Aldurazyme, was diluted in, 0.9 % sodium chloride) -> Aldurazyme (1468ms) What is sodium chloride? Pregnancy Category X (FDA) -0.0 What is sodium chloride? -> $x: ($x, in, sodium chloride) -> (Pregnancy Category X (FDA), Drugs in this category, Follitropin/Sodium chloride) -> Pregnancy Category X (FDA) (6949ms) What is sodium chloride? the job -0.111111111111 What is sodium chloride? -> $x: (sodium chloride, do, $x) -> (a food crisis sodium chloride, can also do, the job) -> the job (7021ms) What is sodium chloride? the normal individual -0.111111111111 What is sodium chloride? -> $x: (sodium chloride, do, $x) -> (cent more sodium and chloride, did, the normal individual) -> the normal individual (7021ms) What is sodium chloride? maintenance -0.111111111112 What is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (sodium chloride, is required for, maintenance) -> maintenance (7038ms) What is sodium chloride? factories -0.111111111112 What is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (Sodium chloride, is fine for, factories) -> factories (7021ms) What is sodium chloride? Keratin -0.111111111112 What is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (Sodium chloride, is bad for, Keratin) -> Keratin (7038ms) What is sodium chloride? salt -0.111111111112 What is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (Sodium chloride, is the chemical name for, salt) -> salt (7038ms) What is sodium chloride? dogs and cats -0.111111111112 What is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (Sodium and chloride, are important minerals for, dogs and cats) -> dogs and cats (7055ms) What is sodium chloride? relief -0.111111111112 What is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (potassium sorbate and sodium chloride Lotion, is for, relief) -> relief (7039ms) What is sodium chloride? use -0.111111111112 What is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (0.9 % Sodium Chloride Injection USP, is also indicated for, use) -> use (7072ms) What is sodium chloride? animal life -0.111111111112 What is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (sodium chloride, is essential for, animal life) -> animal life (7021ms) What is sodium chloride? various purposes -0.111111111112 What is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (sodium chloride or carbonate, are marketed for, various purposes) -> various purposes (7055ms) What is sodium chloride? calcium absorption -0.111111111112 What is sodium chloride? -> $x: ($x, do, sodium chloride) -> (calcium absorption, do, sodium and chloride) -> calcium absorption (7021ms) What is sodium chloride? health -0.111111111112 What is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (Salt ? sodium chloride ?, is an element essential for, health) -> health (7055ms) What is sodium chloride? the vinegar -0.111111111112 What is sodium chloride? -> $x: ($x, produce, sodium chloride) -> (the vinegar, produces, sodium acetate and hydrogen chloride) -> the vinegar (7055ms) What is sodium chloride? stability -0.111111111112 What is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (Calcium chloride and sodium chloride, are added for, stability) -> stability (7055ms) What is sodium chloride? Mineral water -0.111111111112 What is sodium chloride? -> $x: ($x, characterize, sodium chloride) -> (Mineral water, is characterized by, chloride sodium composition) -> Mineral water (7072ms) What is sodium chloride? an equal benefit -0.111111111112 What is sodium chloride? -> $x: ($x, do, sodium chloride) -> (an equal benefit, does, isotonic sodium chloride) -> an equal benefit (7072ms) What is sodium chloride? parenteral maintenance -0.111111111112 What is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (sodium chloride, are suited for, parenteral maintenance) -> parenteral maintenance (7038ms) What is sodium chloride? 2/3 -0.111111111112 What is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (Sodium chloride, is present for, 2/3) -> 2/3 (7038ms) What is sodium chloride? the application -0.111111111112 What is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (99 % sodium chloride rejection, is adequate for, the application) -> the application (7055ms) What is sodium chloride? dry -0.111111111112 What is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (This sodium chloride free formula, is recommended for, dry) -> dry (7055ms) What is sodium chloride? 35 days -0.111111111112 What is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (0.9 % sodium chloride, were stable for, 35 days) -> 35 days (7038ms) What is sodium chloride? osmosis -0.111111111112 What is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (Sodium and chloride, are necessary for maintaining, osmosis) -> osmosis (7021ms) What is sodium chloride? refrigeration purposes -0.111111111112 What is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (Sodium chloride brine, is used for, refrigeration purposes) -> refrigeration purposes (7038ms) What is sodium chloride? Lithium chloride destroys hydrogen bonds -0.111111111112 What is sodium chloride? -> $x: ($x, do, sodium chloride) -> (Lithium chloride destroys hydrogen bonds, does, sodium chloride) -> Lithium chloride destroys hydrogen bonds (7038ms) What is sodium chloride? life -0.111111111112 What is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (sodium chloride, is necessary for, life) -> life (7039ms) What is sodium chloride? higher refraction indices -0.111111111112 What is sodium chloride? -> $x: ($x, do, sodium chloride) -> (higher refraction indices, does, sodium chloride) -> higher refraction indices (7072ms) What is sodium chloride? medicinal purposes -0.111111111112 What is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (Sodium chloride, is often used for, medicinal purposes) -> medicinal purposes (7055ms) What is sodium chloride? the body -0.111111111112 What is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (The sodium chloride content, is quite useful for, the body) -> the body (7055ms) What is sodium chloride? parenteral replacement -0.111111111112 What is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (sodium chloride, are suitable for, parenteral replacement) -> parenteral replacement (7038ms) What is sodium chloride? chemicals -0.111111111112 What is sodium chloride? -> $x: ($x, produce, sodium chloride) -> (chemicals, produces, sodium chloride) -> chemicals (7055ms) What is sodium chloride? salty conditions -0.111111111112 What is sodium chloride? -> $x: ($x, produce, sodium chloride) -> (salty conditions, produce a high amount of, sodium chloride) -> salty conditions (7055ms) What is sodium chloride? the meat -0.111111111112 What is sodium chloride? -> $x: ($x, do, sodium chloride) -> (the meat, did, the sodium chloride) -> the meat (7038ms) What is sodium chloride? Living cells -0.111111111112 What is sodium chloride? -> $x: ($x, do, sodium chloride) -> (Living cells, do depend on, sodium chloride) -> Living cells (7072ms) What is sodium chloride? winter road deicing -0.111111111112 What is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (sodium chloride, is traditionally used for, winter road deicing) -> winter road deicing (7021ms) What is sodium chloride? The purest salty taste -0.111111111112 What is sodium chloride? -> $x: ($x, produce, sodium chloride) -> (The purest salty taste, is produced by, sodium chloride) -> The purest salty taste (7038ms) What is sodium chloride? buffers -0.111111111112 What is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (Sodium chloride, is preferred particularly for, buffers) -> buffers (7021ms) What is sodium chloride? human consumption -0.111111111112 What is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (sodium chloride, is obtained for, human consumption) -> human consumption (7038ms) What is sodium chloride? years -0.111111111112 What is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (Sodium and potassium and chloride, can be stable for, years) -> years (7021ms) What is sodium chloride? prescriptions -0.111111111112 What is sodium chloride? -> $x: ($x, do, sodium chloride) -> (prescriptions, did, chloride sodium guanosine organic) -> prescriptions (7038ms) What is sodium chloride? industry -0.111111111112 What is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (sodium chloride, is already being produced for, industry) -> industry (7055ms) What is sodium chloride? addictions -0.111111111112 What is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (sodium chloride, was an effective treatment for, addictions) -> addictions (7072ms) What is sodium chloride? treatment -0.111111111112 What is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (sodium chloride, is used more for, treatment) -> treatment (7072ms) What is sodium chloride? any length -0.111111111112 What is sodium chloride? -> $x: (sodium chloride, be for, $x) -> (sodium chloride can?t, be stored for, any length) -> any length (7072ms) What is sodium chloride? the TEMPO -0.111111111112 What is sodium chloride? -> $x: ($x, produce, sodium chloride) -> (the TEMPO, produces, sodium chloride) -> the TEMPO (7055ms) What is sodium chloride? The Merck Index -0.222222222222 What is sodium chloride? -> $x: ($x, refer, sodium chloride) -> (The Merck Index, refers to, sodium chloride) -> The Merck Index (7072ms) What is sodium chloride? casual English usage -0.222222222222 What is sodium chloride? -> $x: ($x, refer, sodium chloride) -> (casual English usage, refers to, sodium chloride) -> casual English usage (7072ms) What is sodium chloride? the oceans -0.222222222222 What is sodium chloride? -> $x: ($x, create, sodium chloride) -> (the oceans, were created with, sodium chloride) -> the oceans (7072ms) What is sodium chloride? layman -0.222222222222 What is sodium chloride? -> $x: ($x, refer, sodium chloride) -> (layman, refers to, sodium chloride) -> layman (7072ms) What is sodium chloride? Sodium -0.222222222222 What is sodium chloride? -> $x: ($x, refer, sodium chloride) -> (Sodium, is primarily referred to as, compound sodium chloride) -> Sodium (7072ms) What is sodium chloride? the word -0.222222222222 What is sodium chloride? -> $x: ($x, refer, sodium chloride) -> (the word, refers to, sodium chloride) -> the word (7088ms) What is sodium chloride? the xenon arc -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (the xenon arc, causes, the sodium and mercury) -> the xenon arc (7168ms) What is sodium chloride? ample dietary potassium -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (ample dietary potassium, causes, sodium pump stimulation) -> ample dietary potassium (7137ms) What is sodium chloride? Excessive aldosterone -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (Excessive aldosterone, causes your body to retain, sodium) -> Excessive aldosterone (7167ms) What is sodium chloride? fluid gain -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (fluid gain, caused by, excess sodium) -> fluid gain (7104ms) What is sodium chloride? the Gerson diet -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (the Gerson diet, causes, the sodium level) -> the Gerson diet (7088ms) What is sodium chloride? overnight shipping -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (overnight shipping, may cause, sodium andwater) -> overnight shipping (7137ms) What is sodium chloride? a drug -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (a drug, causes, sodium retention) -> a drug (7121ms) What is sodium chloride? ACTH -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (ACTH, caused, sodium retention) -> ACTH (7121ms) What is sodium chloride? the reduced voltage -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (the reduced voltage, causes hundreds of, sodium gates) -> the reduced voltage (7088ms) What is sodium chloride? the gene -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (the gene, initially cause a loss of, sodium) -> the gene (7137ms) What is sodium chloride? any disorder -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (any disorder, causes, low blood sodium) -> any disorder (7137ms) What is sodium chloride? Nephritis -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (Nephritis, Causes, Low sodium diet) -> Nephritis (7088ms) What is sodium chloride? drowsiness and dizziness -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (drowsiness and dizziness, caused by, sodium oxybate) -> drowsiness and dizziness (7121ms) What is sodium chloride? the electrolytes -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (the electrolytes, cause, low blood-sodium levels) -> the electrolytes (7152ms) What is sodium chloride? licorice root -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (licorice root, may cause, sodium retention) -> licorice root (7088ms) What is sodium chloride? Corticosteroids -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (Corticosteroids, cause the body to retain, more sodium) -> Corticosteroids (7088ms) What is sodium chloride? antihypertensive medications -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (antihypertensive medications, may cause elevated, sodium levels) -> antihypertensive medications (7121ms) What is sodium chloride? The hormone aldosterone -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (The hormone aldosterone, causes, sodium and water retention) -> The hormone aldosterone (7137ms) What is sodium chloride? diuretics -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (diuretics, cause, sodium and water loss) -> diuretics (7152ms) What is sodium chloride? Dehydration -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (Dehydration, can cause your body to retain, sodium) -> Dehydration (7104ms) What is sodium chloride? high blood pressure -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (high blood pressure, can cause, sodium deficiency) -> high blood pressure (7137ms) What is sodium chloride? Heart failure -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (Heart failure, causes the body to retain, sodium) -> Heart failure (7137ms) What is sodium chloride? extreme cases heart failure -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (extreme cases heart failure, are caused by too, much sodium) -> extreme cases heart failure (7104ms) What is sodium chloride? endurance sports -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (endurance sports, causes, the sodium) -> endurance sports (7152ms) What is sodium chloride? extreme moisture exposure -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (extreme moisture exposure, will cause, sodium migration) -> extreme moisture exposure (7121ms) What is sodium chloride? heart failure -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (heart failure, causes, the body to hold on to extra sodium) -> heart failure (7167ms) What is sodium chloride? Anabolics -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (Anabolics, can cause, nitrogen , sodium , potassium) -> Anabolics (7104ms) What is sodium chloride? Estrogens -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (Estrogens, may cause, sodium retention) -> Estrogens (7137ms) What is sodium chloride? Medrol -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (Medrol, causes, less water and sodium retention) -> Medrol (7088ms) What is sodium chloride? prednisone -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (prednisone, can cause, sodium retention) -> prednisone (7105ms) What is sodium chloride? HIGH BLOOD PRESSURE -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (HIGH BLOOD PRESSURE, May be caused by too, much sodium) -> HIGH BLOOD PRESSURE (7152ms) What is sodium chloride? Whole licorice -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (Whole licorice, can cause, sodium retention) -> Whole licorice (7167ms) What is sodium chloride? furosemide diuretics -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (furosemide diuretics, can cause, sodium) -> furosemide diuretics (7152ms) What is sodium chloride? Insulin -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (Insulin, also causes the retention of, sodium) -> Insulin (7152ms) What is sodium chloride? the Charles River -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (the Charles River, appear to have been caused by, sodium) -> the Charles River (7121ms) What is sodium chloride? Drugs -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (Drugs, causing, elevated sodium) -> Drugs (7137ms) What is sodium chloride? the Idaho National Lab -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (the Idaho National Lab, caused, a sodium fire) -> the Idaho National Lab (7104ms) What is sodium chloride? Progesterone -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (Progesterone, causes a loss of, excess sodium) -> Progesterone (7137ms) What is sodium chloride? furosemide -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (furosemide, can cause depletion of, sodium) -> furosemide (7121ms) What is sodium chloride? plain water -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (plain water, causes a low concentration of, sodium) -> plain water (7121ms) What is sodium chloride? thirst -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (thirst, causing, sodium) -> thirst (7167ms) What is sodium chloride? too much water -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (too much water, can cause your body to lose, sodium) -> too much water (7168ms) What is sodium chloride? NSAID use -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (NSAID use, can cause, sodium retention) -> NSAID use (7104ms) What is sodium chloride? Bloating -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (Bloating, is caused usually by, excess sodium) -> Bloating (7121ms) What is sodium chloride? SSRI drugs -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (SSRI drugs, have been reported to cause, sodium depletion) -> SSRI drugs (7121ms) What is sodium chloride? turn -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (turn, causes, the sodium/potassium component) -> turn (7088ms) What is sodium chloride? laxatives -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (laxatives, can cause, water , sodium) -> laxatives (7104ms) What is sodium chloride? Kidney Estrogens -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (Kidney Estrogens, cause the body to retain, sodium) -> Kidney Estrogens (7167ms) What is sodium chloride? Sodium Cisplatin -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (Sodium Cisplatin, may cause depletion of, sodium) -> Sodium Cisplatin (7152ms) What is sodium chloride? the diuretics -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (the diuretics, caused a major decrease in, sodium levels) -> the diuretics (7105ms) What is sodium chloride? water -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (water, can cause a low concentration of, sodium) -> water (7121ms) What is sodium chloride? chemical burning -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (chemical burning, caused by, sodium hydroxide) -> chemical burning (7168ms) What is sodium chloride? the payloads -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (the payloads, apparently caused a reaction with, sodium) -> the payloads (7167ms) What is sodium chloride? Diuretics -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (Diuretics, cause, the body to excrete more sodium via urine) -> Diuretics (7104ms) What is sodium chloride? high amounts -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (high amounts, cause the amount of, sodium) -> high amounts (7121ms) What is sodium chloride? Antidepressants -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (Antidepressants, may cause the amount of, sodium) -> Antidepressants (7121ms) What is sodium chloride? a stimulus -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (a stimulus, causes, sodium channels to open) -> a stimulus (7137ms) What is sodium chloride? Trileptal -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (Trileptal, can cause low levels of, sodium) -> Trileptal (7121ms) What is sodium chloride? excessive ADH -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (excessive ADH, causes, low blood sodium and osmolality) -> excessive ADH (7104ms) What is sodium chloride? a disease -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (a disease, was caused by, high sodium) -> a disease (7168ms) What is sodium chloride? Hypernatremia -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (Hypernatremia, is rarely caused by, excessive sodium) -> Hypernatremia (7167ms) What is sodium chloride? timulus -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (timulus, causes, the sodium gates) -> timulus (7137ms) What is sodium chloride? Andrew -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (Andrew, to cause, the toxic sodium levels) -> Andrew (7137ms) What is sodium chloride? Aldosterone -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (Aldosterone, causes, sodium absorption) -> Aldosterone (7152ms) What is sodium chloride? Prednisone -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (Prednisone, causes, sodium retention and potassium loss) -> Prednisone (7088ms) What is sodium chloride? Kidney stone -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (Kidney stone, Causes, High sodium diet) -> Kidney stone (7121ms) What is sodium chloride? magnesium -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (magnesium, causes retention of, sodium) -> magnesium (7168ms) What is sodium chloride? oral contraceptives -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (oral contraceptives, may cause increased levels of, sodium) -> oral contraceptives (7152ms) What is sodium chloride? excessive sweating -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (excessive sweating, may cause a low level of, sodium) -> excessive sweating (7152ms) What is sodium chloride? the uterus -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (the uterus, causes an abnormal drop in, sodium levels) -> the uterus (7137ms) What is sodium chloride? Canker sore -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (Canker sore, Causes, Sodium laureth sulfate) -> Canker sore (7104ms) What is sodium chloride? prior diuretic treatment -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (prior diuretic treatment, may have caused, sodium depletion) -> prior diuretic treatment (7104ms) What is sodium chloride? fluid imbalances -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (fluid imbalances, can cause abnormal levels of, sodium) -> fluid imbalances (7104ms) What is sodium chloride? Licorice Licorice -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (Licorice Licorice, can cause, sodium retention) -> Licorice Licorice (7088ms) What is sodium chloride? spin -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (spin, causes, the sodium/potassium part) -> spin (7152ms) What is sodium chloride? water retention -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (water retention, causes, sodium) -> water retention (7152ms) What is sodium chloride? Sodium Lithium -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (Sodium Lithium, may cause, sodium depletion) -> Sodium Lithium (7137ms) What is sodium chloride? Carbenoxolone -0.22222222222200003 What is sodium chloride? -> $x: ($x, cause, sodium) -> (Carbenoxolone, may cause, sodium retention) -> Carbenoxolone (7152ms) What is sodium chloride? the diet -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (the diet, is, sodium chloride) -> the diet (7270ms) What is sodium chloride? patients -0.222222222223 What is sodium chloride? -> $x: ($x, be to, sodium chloride) -> (patients, were requested to keep, their sodium chloride intake) -> patients (7286ms) What is sodium chloride? Io -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (Io, was, sodium chloride) -> Io (7312ms) What is sodium chloride? seawater -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (seawater, is, sodium chloride) -> seawater (7256ms) What is sodium chloride? Avoid rock salt -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (Avoid rock salt, is, sodium chloride) -> Avoid rock salt (7241ms) What is sodium chloride? Ordinary salt -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (Ordinary salt, is, sodium chloride) -> Ordinary salt (7212ms) What is sodium chloride? Sodium carbonate -0.222222222223 What is sodium chloride? -> $x: ($x, can, sodium chloride) -> (Sodium carbonate, can also be extracted from, sodium chloride) -> Sodium carbonate (7270ms) What is sodium chloride? Table Salt -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (Table Salt, is, Sodium Chloride) -> Table Salt (7182ms) What is sodium chloride? Poisons -0.222222222223 What is sodium chloride? -> $x: ($x, can, sodium chloride) -> (Poisons, can be made from, Sodium and Chloride) -> Poisons (7212ms) What is sodium chloride? Potassium Chloride -0.222222222223 What is sodium chloride? -> $x: ($x, be to, sodium chloride) -> (Potassium Chloride, is an alternative to, Sodium Chloride) -> Potassium Chloride (7272ms) What is sodium chloride? Rock Salt -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (Rock Salt, is, sodium chloride) -> Rock Salt (7212ms) What is sodium chloride? example sea salt -0.222222222223 What is sodium chloride? -> $x: ($x, be to, sodium chloride) -> (example sea salt, is typically 97 to, 99.5 % sodium chloride) -> example sea salt (7270ms) What is sodium chloride? the preferred salt -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (the preferred salt, is, sodium chloride) -> the preferred salt (7256ms) What is sodium chloride? Common Salt -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (Common Salt, is, Sodium Chloride) -> Common Salt (7182ms) What is sodium chloride? the sea or mines -0.222222222223 What is sodium chloride? -> $x: ($x, be to, sodium chloride) -> (the sea or mines, is refined to, pure sodium chloride) -> the sea or mines (7226ms) What is sodium chloride? The most common form -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The most common form, is, sodium chloride) -> The most common form (7197ms) What is sodium chloride? NaCl -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (NaCl, is, Sodium Chloride) -> NaCl (7286ms) What is sodium chloride? Isotonic agents -0.222222222223 What is sodium chloride? -> $x: ($x, can, sodium chloride) -> (Isotonic agents, can include, sodium chloride) -> Isotonic agents (7256ms) What is sodium chloride? dietary salt -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (dietary salt, is, sodium chloride) -> dietary salt (7270ms) What is sodium chloride? ROHYPNOL -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (ROHYPNOL, is, sodium chloride) -> ROHYPNOL (7182ms) What is sodium chloride? chlorine -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (chlorine, is, sodium chloride) -> chlorine (7226ms) What is sodium chloride? weight -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (weight, is, sodium chloride) -> weight (7240ms) What is sodium chloride? The chemical name -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The chemical name, is, Sodium Chloride) -> The chemical name (7270ms) What is sodium chloride? Regular table salt -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (Regular table salt, is, Sodium Chloride) -> Regular table salt (7270ms) What is sodium chloride? Wakura Onsen -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (Wakura Onsen, is, sodium chloride) -> Wakura Onsen (7212ms) What is sodium chloride? 20 degrees -0.222222222223 What is sodium chloride? -> $x: (sodium chloride, be about, $x) -> (solid sodium chloride, is effective down to about, 20 degrees) -> 20 degrees (7270ms) What is sodium chloride? 25,000 ppm -0.222222222223 What is sodium chloride? -> $x: ($x, be to, sodium chloride) -> (25,000 ppm, is taken to be, sodium chloride) -> 25,000 ppm (7270ms) What is sodium chloride? The most common combination -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The most common combination, is, sodium chloride) -> The most common combination (7286ms) What is sodium chloride? 40 % sodium -0.222222222223 What is sodium chloride? -> $x: (sodium chloride, be about, $x) -> (sodium chloride, is made up of about, 40 % sodium) -> 40 % sodium (7183ms) What is sodium chloride? normal ocean water -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (normal ocean water, is, sodium chloride) -> normal ocean water (7197ms) What is sodium chloride? The most familiar salt -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The most familiar salt, is, sodium chloride) -> The most familiar salt (7256ms) What is sodium chloride? The most common compound -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The most common compound, is, sodium chloride) -> The most common compound (7299ms) What is sodium chloride? Common salt -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (Common salt, is, sodium chloride) -> Common salt (7168ms) What is sodium chloride? The chemical term for salt -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The chemical term for salt, is, sodium chloride) -> The chemical term for salt (7183ms) What is sodium chloride? the mixing -0.222222222223 What is sodium chloride? -> $x: (sodium chloride, be about, $x) -> (sodium chloride, is brought about by, the mixing) -> the mixing (7183ms) What is sodium chloride? The most commonly used salt -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The most commonly used salt, is, sodium chloride) -> The most commonly used salt (7286ms) What is sodium chloride? typical salt -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (typical salt, is, sodium chloride) -> typical salt (7299ms) What is sodium chloride? kosher salt -0.222222222223 What is sodium chloride? -> $x: ($x, consist of, sodium chloride) -> (kosher salt, consists of, the chemical compound sodium chloride) -> kosher salt (7256ms) What is sodium chloride? cooking -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (cooking, is, sodium chloride) -> cooking (7197ms) What is sodium chloride? easier ? sea salt -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (easier ? sea salt, is, sodium chloride) -> easier ? sea salt (7226ms) What is sodium chloride? parenteral suspension -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (parenteral suspension, are, sodium chloride) -> parenteral suspension (7312ms) What is sodium chloride? the rest -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (the rest, is, sodium chloride) -> the rest (7299ms) What is sodium chloride? the iodized salt -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (the iodized salt, is, sodium chloride) -> the iodized salt (7226ms) What is sodium chloride? The first method -0.222222222223 What is sodium chloride? -> $x: ($x, be to, sodium chloride) -> (The first method, was to replace, perfusate sodium chloride) -> The first method (7197ms) What is sodium chloride? Salt -0.222222222223 What is sodium chloride? -> $x: ($x, consist of, sodium chloride) -> (Salt, consists of, sodium chloride) -> Salt (7299ms) What is sodium chloride? renal epithelium -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (renal epithelium, is, sodium chloride) -> renal epithelium (7299ms) What is sodium chloride? Winter road salt -0.222222222223 What is sodium chloride? -> $x: ($x, can, sodium chloride) -> (Winter road salt, can increase, both sodium and chloride levels) -> Winter road salt (7270ms) What is sodium chloride? The most commonly used deicer -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The most commonly used deicer, is, sodium chloride) -> The most commonly used deicer (7197ms) What is sodium chloride? Halite -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (Halite, is, sodium chloride) -> Halite (7226ms) What is sodium chloride? Dead Sea mineral salts -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (Dead Sea mineral salts, are, sodium chloride) -> Dead Sea mineral salts (7241ms) What is sodium chloride? Sea Chem Salt -0.222222222223 What is sodium chloride? -> $x: ($x, can, sodium chloride) -> (Sea Chem Salt, can provide, both sodium chloride salt) -> Sea Chem Salt (7270ms) What is sodium chloride? straw yellow -0.222222222223 What is sodium chloride? -> $x: ($x, consist of, sodium chloride) -> (straw yellow, consists of, sodium chloride) -> straw yellow (7286ms) What is sodium chloride? The preferred salt -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The preferred salt, is, sodium chloride) -> The preferred salt (7197ms) What is sodium chloride? the predominant one -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (the predominant one, is, sodium chloride) -> the predominant one (7226ms) What is sodium chloride? Himalayan salt -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (Himalayan salt, is, sodium chloride) -> Himalayan salt (7212ms) What is sodium chloride? An example -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (An example, is, sodium chloride) -> An example (7299ms) What is sodium chloride? The most common de-icing compound -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The most common de-icing compound, is, sodium chloride) -> The most common de-icing compound (7299ms) What is sodium chloride? Road salts -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (Road salts, are, sodium chloride) -> Road salts (7256ms) What is sodium chloride? The bulk content -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The bulk content, is, sodium chloride) -> The bulk content (7312ms) What is sodium chloride? 210 million tonnes -0.222222222223 What is sodium chloride? -> $x: (sodium chloride, be about, $x) -> (ordinary sodium chloride, is about, 210 million tonnes) -> 210 million tonnes (7241ms) What is sodium chloride? placebo -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (placebo, was, sodium chloride) -> placebo (7270ms) What is sodium chloride? a flame -0.222222222223 What is sodium chloride? -> $x: ($x, can, sodium chloride) -> (a flame, can indicate the presence of, sodium chloride) -> a flame (7270ms) What is sodium chloride? Morton Salt -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (Morton Salt, is, sodium chloride) -> Morton Salt (7299ms) What is sodium chloride? Common human electrolytes -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (Common human electrolytes, are, sodium chloride) -> Common human electrolytes (7256ms) What is sodium chloride? What we dont need -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (What we dont need, is, sodium chloride) -> What we dont need (7226ms) What is sodium chloride? woody ornamentals -0.222222222223 What is sodium chloride? -> $x: ($x, be to, sodium chloride) -> (woody ornamentals, are sensitive to, sodium and chloride) -> woody ornamentals (7299ms) What is sodium chloride? The regenerant -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The regenerant, is, sodium chloride) -> The regenerant (7256ms) What is sodium chloride? The correct answer -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The correct answer, was, sodium chloride) -> The correct answer (7197ms) What is sodium chloride? Sports drinks -0.222222222223 What is sodium chloride? -> $x: ($x, can, sodium chloride) -> (Sports drinks, can replace, the sodium , chloride and potassium) -> Sports drinks (7241ms) What is sodium chloride? 90 % -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (90 %, is, sodium chloride) -> 90 % (7182ms) What is sodium chloride? salt-water pools -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (salt-water pools, is, sodium chloride) -> salt-water pools (7312ms) What is sodium chloride? The inactive ingredients -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The inactive ingredients, are, sodium chloride) -> The inactive ingredients (7226ms) What is sodium chloride? the inorganic salt -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (the inorganic salt, is, sodium chloride) -> the inorganic salt (7197ms) What is sodium chloride? Grocery store salt -0.222222222223 What is sodium chloride? -> $x: ($x, consist of, sodium chloride) -> (Grocery store salt, consists of mostly, chemical sodium chloride) -> Grocery store salt (7285ms) What is sodium chloride? the calcium chloride -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (the calcium chloride, was, sodium chloride) -> the calcium chloride (7212ms) What is sodium chloride? the comparator -0.222222222223 What is sodium chloride? -> $x: ($x, consist of, sodium chloride) -> (the comparator, consisted of, sodium chloride infusion) -> the comparator (7299ms) What is sodium chloride? The common table salt -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The common table salt, is, sodium chloride) -> The common table salt (7286ms) What is sodium chloride? Commercial salt -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (Commercial salt, is, sodium chloride) -> Commercial salt (7182ms) What is sodium chloride? the arterial fluids -0.222222222223 What is sodium chloride? -> $x: ($x, be to, sodium chloride) -> (the arterial fluids, were changed to, 40 mEq/L sodium chloride) -> the arterial fluids (7226ms) What is sodium chloride? The end products -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The end products, are, sodium chloride) -> The end products (7212ms) What is sodium chloride? the technical name of which -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (the technical name of which, is, sodium chloride) -> the technical name of which (7182ms) What is sodium chloride? ordinary table salt -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (ordinary table salt, is, sodium chloride) -> ordinary table salt (7285ms) What is sodium chloride? Sea water -0.222222222223 What is sodium chloride? -> $x: ($x, be to, sodium chloride) -> (Sea water, is related to, 73 per-cent sodium chloride) -> Sea water (7183ms) What is sodium chloride? an average size -0.222222222223 What is sodium chloride? -> $x: ($x, consist of, sodium chloride) -> (an average size, consist primarily of, sodium chloride) -> an average size (7312ms) What is sodium chloride? The most common salt -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The most common salt, is, sodium chloride) -> The most common salt (7256ms) What is sodium chloride? Walker Lake -0.222222222223 What is sodium chloride? -> $x: ($x, consist of, sodium chloride) -> (Walker Lake, consisted primarily of, sodium chloride) -> Walker Lake (7226ms) What is sodium chloride? salty flavorings -0.222222222223 What is sodium chloride? -> $x: ($x, can, sodium chloride) -> (salty flavorings, can provide, sodium chloride) -> salty flavorings (7182ms) What is sodium chloride? a kid -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (a kid, is, sodium chloride) -> a kid (7182ms) What is sodium chloride? Ordinary table salt -0.222222222223 What is sodium chloride? -> $x: ($x, consist of, sodium chloride) -> (Ordinary table salt, predominantly consists of, sodium chloride) -> Ordinary table salt (7256ms) What is sodium chloride? Lye -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (Lye, is, sodium chloride) -> Lye (7256ms) What is sodium chloride? The predominant one -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The predominant one, is, sodium chloride) -> The predominant one (7299ms) What is sodium chloride? The best way -0.222222222223 What is sodium chloride? -> $x: ($x, be to, sodium chloride) -> (The best way, is to absorb, sodium chloride) -> The best way (7256ms) What is sodium chloride? the Dead Sea -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (the Dead Sea, is, sodium chloride) -> the Dead Sea (7256ms) What is sodium chloride? the most common -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (the most common, is, sodium chloride) -> the most common (7270ms) What is sodium chloride? isotonicity -0.222222222223 What is sodium chloride? -> $x: ($x, can, sodium chloride) -> (isotonicity, can include, sodium chloride) -> isotonicity (7241ms) What is sodium chloride? the most common toxic salt -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (the most common toxic salt, is, sodium chloride) -> the most common toxic salt (7256ms) What is sodium chloride? the final product -0.222222222223 What is sodium chloride? -> $x: ($x, can, sodium chloride) -> (the final product, can be increased using, Sodium Chloride) -> the final product (7299ms) What is sodium chloride? a good first aid formula -0.222222222223 What is sodium chloride? -> $x: ($x, consist of, sodium chloride) -> (a good first aid formula, consists of, sodium chloride) -> a good first aid formula (7197ms) What is sodium chloride? The main one -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The main one, is, sodium chloride) -> The main one (7240ms) What is sodium chloride? an ionic solid -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (an ionic solid, is, sodium chloride) -> an ionic solid (7286ms) What is sodium chloride? 800oC -0.222222222223 What is sodium chloride? -> $x: (sodium chloride, be about, $x) -> (sodium chloride, is about, 800oC) -> 800oC (7212ms) What is sodium chloride? the salt -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (the salt, is, sodium chloride) -> the salt (7197ms) What is sodium chloride? The chemical name for salt -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (The chemical name for salt, is, Sodium chloride) -> The chemical name for salt (7168ms) What is sodium chloride? Sea salt -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (Sea salt, is, sodium chloride) -> Sea salt (7286ms) What is sodium chloride? Sodium chloride -0.222222222223 What is sodium chloride? -> $x: ($x, consist of, sodium chloride) -> (Sodium chloride, consists of, sodium ions and chloride ions) -> Sodium chloride (7197ms) What is sodium chloride? Rock salt -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (Rock salt, is, sodium chloride) -> Rock salt (7197ms) What is sodium chloride? the main constituents -0.222222222223 What is sodium chloride? -> $x: ($x, be to, sodium chloride) -> (the main constituents, to be, sodium and calcium chlorides) -> the main constituents (7240ms) What is sodium chloride? One common form -0.222222222223 What is sodium chloride? -> $x: ($x, be be, sodium chloride) -> (One common form, is, sodium chloride) -> One common form (7312ms) What is sodium chloride? a pass?they -0.22222222222300003 What is sodium chloride? -> $x: ($x, re, sodium) -> (a pass?they, 're high in, sodium) -> a pass?they (7312ms) What is sodium chloride? They?re so delicious , you?ll -0.22222222222300003 What is sodium chloride? -> $x: ($x, re, sodium) -> (They?re so delicious , you?ll, forget they?re low in, sodium) -> They?re so delicious , you?ll (7312ms) What is sodium chloride? coconut water -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (coconut water, is low in, sodium) -> coconut water (7334ms) What is sodium chloride? a predominately herbivorous diet -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (a predominately herbivorous diet, lacking in, sodium) -> a predominately herbivorous diet (7364ms) What is sodium chloride? foods -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (foods, are high in, sodium) -> foods (7354ms) What is sodium chloride? croutons -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (croutons, usually are high in, sodium) -> croutons (7344ms) What is sodium chloride? Canned and dry soups -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (Canned and dry soups, are typically high in, sodium) -> Canned and dry soups (7312ms) What is sodium chloride? The only area -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (The only area, is in, sodium) -> The only area (7323ms) What is sodium chloride? patient assistance program name prescription -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (patient assistance program name prescription, is in, sodium) -> patient assistance program name prescription (7354ms) What is sodium chloride? commercial kibble -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (commercial kibble, are relatively high in, sodium) -> commercial kibble (7354ms) What is sodium chloride? The tomato -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (The tomato, is low in, sodium) -> The tomato (7354ms) What is sodium chloride? Fresh pork -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (Fresh pork, is naturally low in, sodium) -> Fresh pork (7364ms) What is sodium chloride? Raisins -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (Raisins, are very low in, sodium) -> Raisins (7334ms) What is sodium chloride? recipes -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (recipes, are low in, sodium) -> recipes (7323ms) What is sodium chloride? Rice -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (Rice, is low in, sodium) -> Rice (7364ms) What is sodium chloride? Fresh meat -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (Fresh meat, is lower in, sodium) -> Fresh meat (7354ms) What is sodium chloride? a diet -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (a diet, restricted in, sodium) -> a diet (7354ms) What is sodium chloride? vegetables -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (vegetables, reduced in, sodium) -> vegetables (7323ms) What is sodium chloride? pure sea salt -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (pure sea salt, is balanced in, sodium) -> pure sea salt (7364ms) What is sodium chloride? Celsius -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (Celsius, is very low in, sodium) -> Celsius (7364ms) What is sodium chloride? the mixture -0.333333333333 What is sodium chloride? -> $x: ($x, comprise, sodium chloride) -> (the mixture, comprises, sodium chloride and sodium sulphate) -> the mixture (7312ms) What is sodium chloride? Almonds -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (Almonds, are low in, sodium) -> Almonds (7323ms) What is sodium chloride? Asparagus -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (Asparagus, is low in, sodium) -> Asparagus (7334ms) What is sodium chloride? a food -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (a food, is low in, sodium) -> a food (7354ms) What is sodium chloride? Almond milk -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (Almond milk, is also higher in, sodium) -> Almond milk (7364ms) What is sodium chloride? smart and -0.333333333333 What is sodium chloride? -> $x: ($x, be use of, sodium chloride) -> (smart and, are restricting the use of, sodium chloride) -> smart and (7354ms) What is sodium chloride? the group -0.333333333333 What is sodium chloride? -> $x: ($x, comprise, sodium chloride) -> (the group, comprises, sodium , potassium , calcium , chloride) -> the group (7364ms) What is sodium chloride? Animal products -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (Animal products, are high in, sodium) -> Animal products (7344ms) What is sodium chloride? The entire line of deli meats -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (The entire line of deli meats, are naturally low in, sodium) -> The entire line of deli meats (7312ms) What is sodium chloride? Tank managers -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (Tank managers, poured in, sodium) -> Tank managers (7364ms) What is sodium chloride? the cured meats -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (the cured meats, are high in, sodium) -> the cured meats (7344ms) What is sodium chloride? amino acids -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (amino acids, involved in, sodium) -> amino acids (7323ms) What is sodium chloride? prunes -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (prunes, are also low in, sodium) -> prunes (7323ms) What is sodium chloride? new products -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (new products, are low in, sodium) -> new products (7354ms) What is sodium chloride? Pickles -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (Pickles, are high in, sodium) -> Pickles (7334ms) What is sodium chloride? a high amount -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (a high amount, is low in, sodium) -> a high amount (7344ms) What is sodium chloride? Which foods -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (Which foods, are high in, Sodium) -> Which foods (7354ms) What is sodium chloride? The meals -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (The meals, are low in, sodium) -> The meals (7333ms) What is sodium chloride? sauces -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (sauces, are very high in, sodium) -> sauces (7364ms) What is sodium chloride? Fresh foods -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (Fresh foods, are naturally low in, sodium) -> Fresh foods (7334ms) What is sodium chloride? Such a diet -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (Such a diet, is low in, sodium) -> Such a diet (7323ms) What is sodium chloride? a canned soup -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (a canned soup, is low in, sodium) -> a canned soup (7334ms) What is sodium chloride? The fruit -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (The fruit, is low in, sodium) -> The fruit (7344ms) What is sodium chloride? the Cafeteria -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (the Cafeteria, are low in, sodium) -> the Cafeteria (7312ms) What is sodium chloride? minerals -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (minerals, lies in, sodium) -> minerals (7354ms) What is sodium chloride? dry-packaged beans -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (dry-packaged beans, are naturally low in, sodium) -> dry-packaged beans (7334ms) What is sodium chloride? Onions -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (Onions, are low in, sodium) -> Onions (7323ms) What is sodium chloride? the untreated tea -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (the untreated tea, counted "light in, sodium) -> the untreated tea (7344ms) What is sodium chloride? the cheese -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (the cheese, is low in, sodium) -> the cheese (7312ms) What is sodium chloride? Pasta -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (Pasta, is low in, sodium) -> Pasta (7344ms) What is sodium chloride? fat-free products -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (fat-free products, can be higher in, sodium) -> fat-free products (7354ms) What is sodium chloride? A healthy diet -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (A healthy diet, is low in, sodium) -> A healthy diet (7323ms) What is sodium chloride? deli meats -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (deli meats, are notoriously high in, sodium) -> deli meats (7323ms) What is sodium chloride? from-concentrate orange juice -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (from-concentrate orange juice, is very low in, sodium) -> from-concentrate orange juice (7364ms) What is sodium chloride? olives -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (olives, are high in, sodium) -> olives (7334ms) What is sodium chloride? relish -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (relish, are very high in, sodium) -> relish (7354ms) What is sodium chloride? dishes -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (dishes, reduced in, sodium) -> dishes (7334ms) What is sodium chloride? the salt solution -0.333333333333 What is sodium chloride? -> $x: ($x, comprise, sodium chloride) -> (the salt solution, comprises, sodium chloride) -> the salt solution (7323ms) What is sodium chloride? Even raw turkey -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (Even raw turkey, is naturally low in, sodium) -> Even raw turkey (7334ms) What is sodium chloride? Fresh fruits and vegetables -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (Fresh fruits and vegetables, are low in, sodium) -> Fresh fruits and vegetables (7344ms) What is sodium chloride? Tomatoes -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (Tomatoes, are low in, sodium) -> Tomatoes (7334ms) What is sodium chloride? The primitive diet -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (The primitive diet, was low in, sodium) -> The primitive diet (7373ms) What is sodium chloride? Fruits and vegetables -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (Fruits and vegetables, are naturally low in, sodium) -> Fruits and vegetables (7364ms) What is sodium chloride? Frozen meals -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (Frozen meals, are high in, sodium) -> Frozen meals (7333ms) What is sodium chloride? Beans -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (Beans, are naturally low in, sodium) -> Beans (7334ms) What is sodium chloride? Apples -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (Apples, are also low in, sodium) -> Apples (7364ms) What is sodium chloride? Foods -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (Foods, are High in, Sodium) -> Foods (7354ms) What is sodium chloride? Rhubarb -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (Rhubarb, is low in, sodium) -> Rhubarb (7364ms) What is sodium chloride? which foods -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (which foods, are lower in, sodium) -> which foods (7344ms) What is sodium chloride? the fully dissociatable salt -0.333333333333 What is sodium chloride? -> $x: ($x, comprise, sodium chloride) -> (the fully dissociatable salt, comprises, sodium chloride) -> the fully dissociatable salt (7344ms) What is sodium chloride? pretzels -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (pretzels, are low in, sodium) -> pretzels (7323ms) What is sodium chloride? Kids -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (Kids, take in, sodium) -> Kids (7373ms) What is sodium chloride? Frozen green peas -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (Frozen green peas, are much lower in, sodium) -> Frozen green peas (7364ms) What is sodium chloride? Frozen peas -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (Frozen peas, are lower in, sodium) -> Frozen peas (7344ms) What is sodium chloride? the banana -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (the banana, is very low in, sodium) -> the banana (7354ms) What is sodium chloride? natural salt -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (natural salt, is much lower in, sodium) -> natural salt (7354ms) What is sodium chloride? foods & -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (foods &, choose products low in, sodium) -> foods & (7364ms) What is sodium chloride? Animal foods -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (Animal foods, are high in, sodium) -> Animal foods (7323ms) What is sodium chloride? more bananas -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (more bananas, take in, sodium) -> more bananas (7344ms) What is sodium chloride? Dip pretzels -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (Dip pretzels, are low in, sodium) -> Dip pretzels (7373ms) What is sodium chloride? italian food -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (italian food, is low in, sodium) -> italian food (7344ms) What is sodium chloride? Contessa?s MicroSteam dishes -0.333333333333 What is sodium chloride? -> $x: ($x, in, sodium) -> (Contessa?s MicroSteam dishes, vary in, sodium) -> Contessa?s MicroSteam dishes (7364ms) What is sodium chloride? CYTOXAN -0.333333333334 What is sodium chloride? -> $x: ($x, constitute, sodium chloride) -> (CYTOXAN, constituted with, 0.9 % sterile sodium chloride) -> CYTOXAN (7373ms) What is sodium chloride? tough dirt -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (sodium carbonate, does the trick for, tough dirt) -> tough dirt (7392ms) What is sodium chloride? electrochlorinator systems -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride, used in, electrochlorinator systems) -> electrochlorinator systems (7453ms) What is sodium chloride? the manufacture -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride, is an essential ingredient in, the manufacture) -> the manufacture (7392ms) What is sodium chloride? osteoblastic activity -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (sodium fluoride, does increase, osteoblastic activity) -> osteoblastic activity (7436ms) What is sodium chloride? one liter -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride, will dissolve completely in, one liter) -> one liter (7469ms) What is sodium chloride? a salt kiln -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (sodium, does in, a salt kiln) -> a salt kiln (7383ms) What is sodium chloride? W. H. F. Talbot -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (sodium thiosulphate, did, W. H. F. Talbot) -> W. H. F. Talbot (7401ms) What is sodium chloride? blood volume -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (High serum sodium, does raise, blood volume) -> blood volume (7445ms) What is sodium chloride? calcium -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (sodium, so does, calcium) -> calcium (7427ms) What is sodium chloride? the Rift Lakes -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium and chloride, are both found in, the Rift Lakes) -> the Rift Lakes (7392ms) What is sodium chloride? series -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride solution, were connected in, series) -> series (7453ms) What is sodium chloride? the supervision -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (the sodium carbonate, is done under, the supervision) -> the supervision (7453ms) What is sodium chloride? soils and waters -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium and chloride, occur naturally in, soils and waters) -> soils and waters (7427ms) What is sodium chloride? humans -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium Sodium chloride, is a critical nutrient in, humans) -> humans (7453ms) What is sodium chloride? the processed foods -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium chloride, is in, the processed foods) -> the processed foods (7427ms) What is sodium chloride? coastal areas -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium chloride, can be elevated in, coastal areas) -> coastal areas (7401ms) What is sodium chloride? increase bone density -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (Sodium fluoride, did, increase bone density) -> increase bone density (7373ms) What is sodium chloride? the same -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (excess sodium, will do, the same) -> the same (7401ms) What is sodium chloride? caffeine -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (no calories or sodium, does have, caffeine) -> caffeine (7373ms) What is sodium chloride? the art -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (glycerin and sodium chloride, are also known in, the art) -> the art (7427ms) What is sodium chloride? the Arabian Gulf -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium Chloride, are detected in, the Arabian Gulf) -> the Arabian Gulf (7392ms) What is sodium chloride? higher levels -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium and chloride, are required in, higher levels) -> higher levels (7401ms) What is sodium chloride? de-icers -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (?Sodium chloride, is a common ingredient in, de-icers) -> de-icers (7461ms) What is sodium chloride? dogs -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride, can be lethal in, dogs) -> dogs (7392ms) What is sodium chloride? a lot -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (the sodium, does, a lot) -> a lot (7453ms) What is sodium chloride? vacuo -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (saturated sodium chloride solution, concentrated in, vacuo) -> vacuo (7461ms) What is sodium chloride? chemical symbols -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium Chloride, is represented in, chemical symbols) -> chemical symbols (7383ms) What is sodium chloride? high power laser systems -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium Chloride, is being used in, high power laser systems) -> high power laser systems (7383ms) What is sodium chloride? quantities -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride, is applied in, quantities) -> quantities (7427ms) What is sodium chloride? kitchen salt -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (the sodium and chloride, contained in, kitchen salt) -> kitchen salt (7392ms) What is sodium chloride? human history -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium Chloride, is an important element in, human history) -> human history (7461ms) What is sodium chloride? Teva-Naproxen Sodium work -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (SODIUM 275MG TABLET, does, Teva-Naproxen Sodium work) -> Teva-Naproxen Sodium work (7461ms) What is sodium chloride? persons -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride, reduced hypertension in, persons) -> persons (7427ms) What is sodium chloride? nitrogen -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (Sodium, does n?t react with, nitrogen) -> nitrogen (7461ms) What is sodium chloride? The vaccine -0.444444444444 What is sodium chloride? -> $x: ($x, get, sodium chloride) -> (The vaccine, has got, ?mutagenic? sodium chloride) -> The vaccine (7392ms) What is sodium chloride? the expense -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (sodium, is done at, the expense) -> the expense (7427ms) What is sodium chloride? blood pressure -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (sodium, so does, blood pressure) -> blood pressure (7461ms) What is sodium chloride? sweat -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium , potassium and chloride, are lost in, sweat) -> sweat (7401ms) What is sodium chloride? a test -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (sodium, may be done along with, a test) -> a test (7436ms) What is sodium chloride? an important part -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (sodium, does play, an important part) -> an important part (7410ms) What is sodium chloride? biological processes -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium Chloride, are used in, biological processes) -> biological processes (7427ms) What is sodium chloride? intravenous application -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride, can be used in, intravenous application) -> intravenous application (7427ms) What is sodium chloride? more than reduce -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (A low-sodium diet, can do, more than reduce) -> more than reduce (7436ms) What is sodium chloride? a solution -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium and chloride ions, have been ionized in, a solution) -> a solution (7401ms) What is sodium chloride? light sweaters -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (more sodium, do, light sweaters) -> light sweaters (7401ms) What is sodium chloride? 55ml -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride, are dissolved in, 55ml) -> 55ml (7410ms) What is sodium chloride? nature -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium chloride crystals, found in, nature) -> nature (7373ms) What is sodium chloride? diffuse -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (Sodium, actually does, diffuse) -> diffuse (7410ms) What is sodium chloride? 4 liters -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride, is dissolved in, 4 liters) -> 4 liters (7453ms) What is sodium chloride? table salt -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (the sodium chloride, found in, table salt) -> table salt (7410ms) What is sodium chloride? missionary work -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (sodium consumption, still be obliged to do, missionary work) -> missionary work (7383ms) What is sodium chloride? the opposite -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (element sodium, does just, the opposite) -> the opposite (7419ms) What is sodium chloride? short bursts -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride solution, was injected in, short bursts) -> short bursts (7427ms) What is sodium chloride? the placenta -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (Gold sodium thiomalate, does cross, the placenta) -> the placenta (7373ms) What is sodium chloride? the digestive processes -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium and chloride, is essential in, the digestive processes) -> the digestive processes (7427ms) What is sodium chloride? large quantities -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium chloride, is required in, large quantities) -> large quantities (7419ms) What is sodium chloride? more damage -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (sodium, do, more damage) -> more damage (7383ms) What is sodium chloride? every 2 hours -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (plasma sodium concentration, is done, every 2 hours) -> every 2 hours (7436ms) What is sodium chloride? a reduction -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride, resulted in, a reduction) -> a reduction (7401ms) What is sodium chloride? 2 liters -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride, is dissolved in, 2 liters) -> 2 liters (7410ms) What is sodium chloride? the composition -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride, can be included in, the composition) -> the composition (7445ms) What is sodium chloride? ph -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (disolved sodium bicarb, really has nothing to do with, ph) -> ph (7373ms) What is sodium chloride? the food -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (Sodium, does n?t necessarily mean, the food) -> the food (7419ms) What is sodium chloride? the conflagration -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (a warm , sodium-tinged hue, did n?t stop, the conflagration) -> the conflagration (7461ms) What is sodium chloride? Dr. Wilbur -0.444444444444 What is sodium chloride? -> $x: ($x, describe, sodium) -> (Dr. Wilbur, described her use of, hypnosis and sodium pentathol) -> Dr. Wilbur (7410ms) What is sodium chloride? Sunset Yellow FCF -0.444444444444 What is sodium chloride? -> $x: ($x, describe, sodium) -> (Sunset Yellow FCF, is described as, the sodium salt) -> Sunset Yellow FCF (7436ms) What is sodium chloride? enough fruits -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (sodium, did n?t include, enough fruits) -> enough fruits (7453ms) What is sodium chloride? a variety -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (only 98 % sodium chloride, comes in, a variety) -> a variety (7445ms) What is sodium chloride? the disease -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (sodium, else is being done to combat, the disease) -> the disease (7461ms) What is sodium chloride? ?s and don?ts -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (a low sodium diet, do, ?s and don?ts) -> ?s and don?ts (7392ms) What is sodium chloride? United States of America -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium Chloride 9 irrigant, Available in, United States of America) -> United States of America (7461ms) What is sodium chloride? Kenneth Pitzer -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (Sodium-Ammonia Solutions, was done with, Kenneth Pitzer) -> Kenneth Pitzer (7453ms) What is sodium chloride? Campbell?s ?25 % -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (much sodium, does, Campbell?s ?25 %) -> Campbell?s ?25 % (7373ms) What is sodium chloride? the first place -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (sodium nitrite, did n?t cause cancer in, the first place) -> the first place (7445ms) What is sodium chloride? hypertension -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride, is a major factor in, hypertension) -> hypertension (7419ms) What is sodium chloride? the sea and food -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium chloride, is often found in, the sea and food) -> the sea and food (7436ms) What is sodium chloride? regular salt -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (the sodium chloride, found in, regular salt) -> regular salt (7461ms) What is sodium chloride? various reactions -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride, takes part in, various reactions) -> various reactions (7419ms) What is sodium chloride? sodium benzoate -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride, dipped in, sodium benzoate) -> sodium benzoate (7427ms) What is sodium chloride? paraffinic hydrocarbons -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (Sodium, does n?t react with, paraffinic hydrocarbons) -> paraffinic hydrocarbons (7410ms) What is sodium chloride? ADHD. -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (sodium benzoate, do indeed contribute to, ADHD.) -> ADHD. (7419ms) What is sodium chloride? endogenous thyroxine -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (Levothyroxine Sodium, does, endogenous thyroxine) -> endogenous thyroxine (7445ms) What is sodium chloride? Hyponatraemia -0.444444444444 What is sodium chloride? -> $x: ($x, describe, sodium) -> (Hyponatraemia, describes an abnormally low level of, sodium) -> Hyponatraemia (7453ms) What is sodium chloride? the blood -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (the sodium chloride concentration, rises in, the blood) -> the blood (7427ms) What is sodium chloride? liquid -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium chloride, is used in, liquid) -> liquid (7383ms) What is sodium chloride? the fishermen -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (low sodium, do, the fishermen) -> the fishermen (7392ms) What is sodium chloride? every hour -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (sodium concentration, are done, every hour) -> every hour (7410ms) What is sodium chloride? Erythrosine -0.444444444444 What is sodium chloride? -> $x: ($x, describe, sodium) -> (Erythrosine, is described as, the sodium salt) -> Erythrosine (7373ms) What is sodium chloride? ESHA Food Processor -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (Sodium analysis, was done using, ESHA Food Processor) -> ESHA Food Processor (7419ms) What is sodium chloride? the neutrons -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (good breeding and sodium, does n?t slow, the neutrons) -> the neutrons (7383ms) What is sodium chloride? terms -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium chloride, is defined in, terms) -> terms (7445ms) What is sodium chloride? several ways -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium chloride, can be produced in, several ways) -> several ways (7392ms) What is sodium chloride? Earle -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (sodium bicarbonate, does, Earle) -> Earle (7436ms) What is sodium chloride? the pure liquid -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride, there are ions in, the pure liquid) -> the pure liquid (7401ms) What is sodium chloride? the recommendations -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium chloride, has been proposed in, the recommendations) -> the recommendations (7419ms) What is sodium chloride? the trick -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (sodium ascorbate, also did, the trick) -> the trick (7453ms) What is sodium chloride? typical processed salt -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (the sodium and chloride, found in, typical processed salt) -> typical processed salt (7401ms) What is sodium chloride? large doses?especially -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium Chloride, be bad in, large doses?especially) -> large doses?especially (7445ms) What is sodium chloride? Any Good -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (Sodium Restriction, Really Do, Any Good) -> Any Good (7461ms) What is sodium chloride? potassium sorbate -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride, dipped in, potassium sorbate) -> potassium sorbate (7410ms) What is sodium chloride? the market -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (the most sodium hyaluronate, does on, the market) -> the market (7383ms) What is sodium chloride? cell interiors -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (sodium, does get into, cell interiors) -> cell interiors (7427ms) What is sodium chloride? accordance -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride, was in, accordance) -> accordance (7436ms) What is sodium chloride? the magic -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (pure sodium, did, the magic) -> the magic (7436ms) What is sodium chloride? good -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (sodium selenite and selenate, may do more harm than, good) -> good (7427ms) What is sodium chloride? the presence -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (A sodium rhodizonate test, was done to confirm, the presence) -> the presence (7436ms) What is sodium chloride? excess -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium chloride, is frequently eaten in, excess) -> excess (7401ms) What is sodium chloride? abundance -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (the sodium chloride, can be found in, abundance) -> abundance (7401ms) What is sodium chloride? equilibrium -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (solid sodium chloride, is in, equilibrium) -> equilibrium (7401ms) What is sodium chloride? Tartrazine -0.444444444444 What is sodium chloride? -> $x: ($x, describe, sodium) -> (Tartrazine, is described as, the sodium salt) -> Tartrazine (7445ms) What is sodium chloride? Urticaria -0.444444444444 What is sodium chloride? -> $x: ($x, describe, sodium) -> (Urticaria, was described with, acute sodium fluoride poisoning) -> Urticaria (7383ms) What is sodium chloride? iron and copper -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (Sodium and potassium, so do, iron and copper) -> iron and copper (7436ms) What is sodium chloride? risk -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (Sodium, does seem to boost, risk) -> risk (7419ms) What is sodium chloride? the maintenance -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (chloride , potassium and sodium, participate in, the maintenance) -> the maintenance (7383ms) What is sodium chloride? the other hand -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (Sodium lights, do on, the other hand) -> the other hand (7445ms) What is sodium chloride? every food -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Chloride Sodium chloride, is present in practically, every food) -> every food (7461ms) What is sodium chloride? a double increase -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (pure sodium chloride solution, resulted in, a double increase) -> a double increase (7419ms) What is sodium chloride? 250 ?C -0.444444444444 What is sodium chloride? -> $x: ($x, leave, sodium chloride) -> (250 ?C, leave, sodium chloride) -> 250 ?C (7392ms) What is sodium chloride? several years -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (High pressure sodium lights, do fade after, several years) -> several years (7383ms) What is sodium chloride? sufficient quantity -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (only sodium chloride, is present in, sufficient quantity) -> sufficient quantity (7410ms) What is sodium chloride? common use -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium carbonate and sodium chloride, are in, common use) -> common use (7392ms) What is sodium chloride? 98 C -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (the sodium, does n?t even approach, 98 C) -> 98 C (7410ms) What is sodium chloride? blood pressure levels -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (Low-sodium diets, did cut, blood pressure levels) -> blood pressure levels (7419ms) What is sodium chloride? large ingots -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium Chloride, is produced in, large ingots) -> large ingots (7445ms) What is sodium chloride? CANCEL TM & ? 2011 Burger King Corporation -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (fat sodium, DONE, CANCEL TM & ? 2011 Burger King Corporation) -> CANCEL TM & ? 2011 Burger King Corporation (7445ms) What is sodium chloride? a five times molar excess -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (sodium cyanoborohydride, is done with, a five times molar excess) -> a five times molar excess (7469ms) What is sodium chloride? Indigotine -0.444444444444 What is sodium chloride? -> $x: ($x, describe, sodium) -> (Indigotine, is described as, the sodium salt) -> Indigotine (7392ms) What is sodium chloride? the hummus -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (the Sodium bicarbonate, do to, the hummus) -> the hummus (7436ms) What is sodium chloride? a Salt Gram technique -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (sodium chloride, has been used in, a Salt Gram technique) -> a Salt Gram technique (7392ms) What is sodium chloride? skin care -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium Chloride, is a dangerous chemical in, skin care) -> skin care (7453ms) What is sodium chloride? solution -0.444444444444 What is sodium chloride? -> $x: (sodium chloride, in in, $x) -> (Sodium chloride, is present in, solution) -> solution (7401ms) What is sodium chloride? sulphate ions -0.444444444444 What is sodium chloride? -> $x: (sodium, do, $x) -> (sodium thiosulphate, do produce, sulphate ions) -> sulphate ions (7410ms) What is sodium chloride? soap -0.444444444445 What is sodium chloride? -> $x: ($x, involve, sodium chloride) -> (soap, involves removal of, sodium chloride) -> soap (7469ms) What is sodium chloride? PDT painting -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (PDT painting, is produced by, sodium silicate) -> PDT painting (7519ms) What is sodium chloride? qdss -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (qdss, can produce, sodium) -> qdss (7476ms) What is sodium chloride? the proper functioning -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is necessary for, the proper functioning) -> the proper functioning (7519ms) What is sodium chloride? a mass -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (a mass, produced cold cut with, high sodium) -> a mass (7564ms) What is sodium chloride? adults age 51 -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is recommended for, adults age 51) -> adults age 51 (7519ms) What is sodium chloride? anti-diuretic hormone -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (anti-diuretic hormone, can produce elevated levels of, sodium) -> anti-diuretic hormone (7564ms) What is sodium chloride? the function -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is important for, the function) -> the function (7556ms) What is sodium chloride? Americans -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (Americans, much can be done to reduce, sodium consumption) -> Americans (7535ms) What is sodium chloride? potassium moves -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (potassium moves, does, the sodium-potassium pump move potassium) -> potassium moves (7568ms) What is sodium chloride? two -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (two, did so, following metam sodium treatment) -> two (7499ms) What is sodium chloride? immune system function -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is a booster for, immune system function) -> immune system function (7556ms) What is sodium chloride? plant growth -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (plant growth, do, high pressure sodium and halide lights) -> plant growth (7512ms) What is sodium chloride? Electrolysis -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (Electrolysis, produces, gaseous chlorine and sodium hydroxide) -> Electrolysis (7548ms) What is sodium chloride? no carbs or sugars -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (no carbs or sugars, does contain, 1780 mg sodium?70 %) -> no carbs or sugars (7477ms) What is sodium chloride? similar mechanism -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (similar mechanism, produces, the sodium airglow) -> similar mechanism (7512ms) What is sodium chloride? the regulation -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is also important for, the regulation) -> the regulation (7535ms) What is sodium chloride? CMC Gum -0.44444444444500003 What is sodium chloride? -> $x: ($x, define, sodium) -> (CMC Gum, is mostly defined as, Sodium Carboxymethylcelluose) -> CMC Gum (7544ms) What is sodium chloride? The hepatorenal syndrome -0.44444444444500003 What is sodium chloride? -> $x: ($x, define, sodium) -> (The hepatorenal syndrome, is defined as, a urine sodium) -> The hepatorenal syndrome (7548ms) What is sodium chloride? hydrochloric acid production -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is necessary for, hydrochloric acid production) -> hydrochloric acid production (7499ms) What is sodium chloride? the vigorous reaction -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (the vigorous reaction, produces, sodium and hydroxide ions) -> the vigorous reaction (7491ms) What is sodium chloride? Al?nt ? Com -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (Al?nt ? Com, does here be any name for, any sodium) -> Al?nt ? Com (7519ms) What is sodium chloride? Calcium -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (Calcium, does the opposite of, sodium) -> Calcium (7469ms) What is sodium chloride? normal body functions -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is needed for, normal body functions) -> normal body functions (7560ms) What is sodium chloride? Vitamin C -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (Vitamin C, were done with, sodium ascorbate) -> Vitamin C (7524ms) What is sodium chloride? a French chemist -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (a French chemist, produced, sodium bicarbonate) -> a French chemist (7512ms) What is sodium chloride? British Columbia -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (British Columbia, produce only, sodium chlorate) -> British Columbia (7506ms) What is sodium chloride? saturn etc -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (saturn etc, Could do with having, a sodium filter) -> saturn etc (7525ms) What is sodium chloride? The company -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (The company, produced, sodium carbonate) -> The company (7506ms) What is sodium chloride? Yuanrun Chemical -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (Yuanrun Chemical, is producing, kinds of sodium citrate) -> Yuanrun Chemical (7560ms) What is sodium chloride? proper body function -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is actually necessary for, proper body function) -> proper body function (7476ms) What is sodium chloride? Chronic salt intake -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (Chronic salt intake, does, our sodium intake) -> Chronic salt intake (7539ms) What is sodium chloride? the purification -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is therefore essential for, the purification) -> the purification (7499ms) What is sodium chloride? normal functions -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is beneficial for, normal functions) -> normal functions (7505ms) What is sodium chloride? chlorine gas and sodium hydroxide -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (chlorine gas and sodium hydroxide, produces, sodium hypochlorite) -> chlorine gas and sodium hydroxide (7568ms) What is sodium chloride? a heart condition -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (a heart condition, may do well with, a low sodium senior diet) -> a heart condition (7491ms) What is sodium chloride? The body -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (The body, does require, some sodium) -> The body (7568ms) What is sodium chloride? nerve and muscle functioning -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is also required for, nerve and muscle functioning) -> nerve and muscle functioning (7560ms) What is sodium chloride? Gujarat Alkalies -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (Gujarat Alkalies, is also producing, Sodium Ferrocyanide) -> Gujarat Alkalies (7525ms) What is sodium chloride? two weeks -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (two weeks, so does, Naproxen Sodium) -> two weeks (7544ms) What is sodium chloride? HPS conversion bulbs -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (HPS conversion bulbs, produce, sodium light) -> HPS conversion bulbs (7476ms) What is sodium chloride? the hair follicle -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (the hair follicle, produces, sodium hydroxide) -> the hair follicle (7512ms) What is sodium chloride? the United States -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (the United States, produces, Sodium Caseinate) -> the United States (7564ms) What is sodium chloride? baking soda -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (baking soda, produces, a salt called sodium citrate) -> baking soda (7539ms) What is sodium chloride? fluid restoration -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is more important for, fluid restoration) -> fluid restoration (7469ms) What is sodium chloride? lakes -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (lakes, produces, sodium-rich salts) -> lakes (7499ms) What is sodium chloride? LR -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (LR, does have, some sodium-sparing effect) -> LR (7548ms) What is sodium chloride? nerve transmission -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is used for, nerve transmission) -> nerve transmission (7535ms) What is sodium chloride? SLS -0.44444444444500003 What is sodium chloride? -> $x: ($x, define, sodium) -> (SLS, is defined as, Sodium Laurel Sulfate) -> SLS (7560ms) What is sodium chloride? canned beans -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (canned beans, does n?t help to reduce, the sodium content) -> canned beans (7548ms) What is sodium chloride? disorders -0.44444444444500003 What is sodium chloride? -> $x: ($x, characterize, sodium) -> (disorders, are characterized by, hypertension or sodium wasting) -> disorders (7491ms) What is sodium chloride? The new standards -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (The new standards, produce as well as, less sodium) -> The new standards (7548ms) What is sodium chloride? cellular health -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is vital for, cellular health) -> cellular health (7484ms) What is sodium chloride? reactors -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is proposed for, reactors) -> reactors (7484ms) What is sodium chloride? daily nutrient requirements -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is sufficient for, daily nutrient requirements) -> daily nutrient requirements (7548ms) What is sodium chloride? Samuel Flynn Scott -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (Samuel Flynn Scott, Tracks produced, Sodium Ions) -> Samuel Flynn Scott (7525ms) What is sodium chloride? miso -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (miso, does naturally contain a high amount of, sodium) -> miso (7560ms) What is sodium chloride? Swheat Scoop -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (Swheat Scoop, does n?t contain, silica or sodium bentonite) -> Swheat Scoop (7535ms) What is sodium chloride? the Solvay component -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (the Solvay component, produces, sodium nitrate) -> the Solvay component (7564ms) What is sodium chloride? the Leblanc process -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (the Leblanc process, produced, sodium carbonate) -> the Leblanc process (7505ms) What is sodium chloride? Zero Cholesterol -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (Zero Cholesterol, Did n?t think having, less sodium) -> Zero Cholesterol (7560ms) What is sodium chloride? good health -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is essential for, good health) -> good health (7535ms) What is sodium chloride? the probe -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (the probe, are chemically altered to produce, sodium hydroxide) -> the probe (7484ms) What is sodium chloride? hypochlorite -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (hypochlorite, produces anywhere, sodium) -> hypochlorite (7505ms) What is sodium chloride? the functioning -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is also critical for, the functioning) -> the functioning (7564ms) What is sodium chloride? the respondents -0.44444444444500003 What is sodium chloride? -> $x: ($x, characterize, sodium) -> (the respondents, characterized, the sodium content) -> the respondents (7525ms) What is sodium chloride? the same way -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (the same way, do, sodium salts) -> the same way (7491ms) What is sodium chloride? The toothpaste -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (The toothpaste, does n?t contain, sodium lauryl sulfate) -> The toothpaste (7530ms) What is sodium chloride? Buckingham -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (Buckingham, produces, sodium chlorate) -> Buckingham (7544ms) What is sodium chloride? a project -0.44444444444500003 What is sodium chloride? -> $x: ($x, characterize, sodium) -> (a project, characterize, the sodium galactose transporter) -> a project (7539ms) What is sodium chloride? the food items -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (the food items, do contain, sodium) -> the food items (7484ms) What is sodium chloride? Demyelinated axons -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (Demyelinated axons, produce greater numbers of, sodium channels) -> Demyelinated axons (7544ms) What is sodium chloride? enough fruits and vegetables -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (enough fruits and vegetables, do consume high amounts of, sodium) -> enough fruits and vegetables (7556ms) What is sodium chloride? low serum sodium -0.44444444444500003 What is sodium chloride? -> $x: ($x, define, sodium) -> (low serum sodium, is defined as, the sodium level) -> low serum sodium (7491ms) What is sodium chloride? Roger -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (Roger, are doing, the sodium borohydride) -> Roger (7476ms) What is sodium chloride? exercise -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, are recommended for, exercise) -> exercise (7525ms) What is sodium chloride? a heavy -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (a heavy, does of, sodium) -> a heavy (7525ms) What is sodium chloride? The automated equipment -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (The automated equipment, produces, liquid sodium bicarbonate) -> The automated equipment (7491ms) What is sodium chloride? adults -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is adequate for, adults) -> adults (7505ms) What is sodium chloride? the proper workings -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is also essential for, the proper workings) -> the proper workings (7535ms) What is sodium chloride? Marisa Miller -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (Marisa Miller, does n?t like to eat too, much sodium) -> Marisa Miller (7544ms) What is sodium chloride? The petitioner -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (The petitioner, is producing, Sodium Nitrite) -> The petitioner (7544ms) What is sodium chloride? the known adverse effects -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is responsible for, the known adverse effects) -> the known adverse effects (7535ms) What is sodium chloride? the cell -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (the cell, does, sodium and instigates) -> the cell (7499ms) What is sodium chloride? Bilexys -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (Bilexys, is operating a pilot plant producing, sodium hydroxide) -> Bilexys (7530ms) What is sodium chloride? the recipe -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (the recipe, does n?t provide too, much sodium) -> the recipe (7498ms) What is sodium chloride? MALPRO -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (MALPRO, are doing our best to make, Sodium silicate) -> MALPRO (7544ms) What is sodium chloride? Human Health -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is Necessary for, Human Health) -> Human Health (7484ms) What is sodium chloride? sleep regulation -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is vital for, sleep regulation) -> sleep regulation (7506ms) What is sodium chloride? the stomach -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (the stomach, must also produce, sodium bicarbonate) -> the stomach (7505ms) What is sodium chloride? hydrogen -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (hydrogen, then produce, sodium borohydride) -> hydrogen (7560ms) What is sodium chloride? nerves and muscles -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is also needed for, nerves and muscles) -> nerves and muscles (7560ms) What is sodium chloride? healthy functioning -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is essential for, healthy functioning) -> healthy functioning (7568ms) What is sodium chloride? Canexus Canexus -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (Canexus Canexus, produces, sodium chlorate) -> Canexus Canexus (7498ms) What is sodium chloride? proper animal nutrition -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, are essential for, proper animal nutrition) -> proper animal nutrition (7552ms) What is sodium chloride? nioxin vitamins -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (nioxin vitamins, does have, sodium lauryl sulfate) -> nioxin vitamins (7525ms) What is sodium chloride? Government standards -0.44444444444500003 What is sodium chloride? -> $x: ($x, define, sodium) -> (Government standards, define, low sodium) -> Government standards (7512ms) What is sodium chloride? CPM -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (CPM, did correlate with, serum sodium levels) -> CPM (7560ms) What is sodium chloride? a broader spectrum -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (a broader spectrum, do, sodium lamps) -> a broader spectrum (7539ms) What is sodium chloride? muscle contractions -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is needed for, muscle contractions) -> muscle contractions (7525ms) What is sodium chloride? the hypothalamus -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (the hypothalamus, does an increase in, sodium) -> the hypothalamus (7484ms) What is sodium chloride? the Print Base kits -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (the Print Base kits, do contain, Sodium Alginate) -> the Print Base kits (7519ms) What is sodium chloride? the human body -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (the human body, does require, some sodium) -> the human body (7469ms) What is sodium chloride? cardiac lesions -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (cardiac lesions, produced by, sodium phosphate) -> cardiac lesions (7476ms) What is sodium chloride? cGMP molecules -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (cGMP molecules, so does the number of, sodium ions) -> cGMP molecules (7535ms) What is sodium chloride? overall health -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is necessary for, overall health) -> overall health (7506ms) What is sodium chloride? the strengthening -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is also essential for, the strengthening) -> the strengthening (7544ms) What is sodium chloride? human functioning -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is essential for, human functioning) -> human functioning (7525ms) What is sodium chloride? muscle contraction -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is necessary for, muscle contraction) -> muscle contraction (7535ms) What is sodium chloride? the procedure -0.44444444444500003 What is sodium chloride? -> $x: ($x, exactly be, sodium) -> (the procedure, is exactly the same as with, sodium hypochlorite) -> the procedure (7519ms) What is sodium chloride? Tronox -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (Tronox, produces, sodium chlorate) -> Tronox (7556ms) What is sodium chloride? Agriculture -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (Agriculture, have done little to reduce, sodium consumption) -> Agriculture (7560ms) What is sodium chloride? The Specialty Products segment -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (The Specialty Products segment, produces, sodium bicarbonate) -> The Specialty Products segment (7512ms) What is sodium chloride? Gourmet ?s products -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (Gourmet ?s products, are produced without, excess sodium) -> Gourmet ?s products (7539ms) What is sodium chloride? FMC Foret -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (FMC Foret, produces, Solid Sodium Silicate) -> FMC Foret (7548ms) What is sodium chloride? the company -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (the company, could produce, sodium) -> the company (7530ms) What is sodium chloride? the proper function -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is important for, the proper function) -> the proper function (7499ms) What is sodium chloride? The crackling effect -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (The crackling effect, was done using, sodium silacate) -> The crackling effect (7556ms) What is sodium chloride? bone loss -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (bone loss, has more to do with, a high sodium) -> bone loss (7476ms) What is sodium chloride? Organoclays -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (Organoclays, are produced using, sodium bentonite) -> Organoclays (7560ms) What is sodium chloride? overall heart health -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is important for, overall heart health) -> overall heart health (7564ms) What is sodium chloride? the sodium bicarbonate patients -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, was higher for, the sodium bicarbonate patients) -> the sodium bicarbonate patients (7469ms) What is sodium chloride? the transmission -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is also needed for, the transmission) -> the transmission (7564ms) What is sodium chloride? the sodium bicarbonate -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (the sodium bicarbonate, is added to produce, sodium ascorbate) -> the sodium bicarbonate (7505ms) What is sodium chloride? the lymphatic fluid balance -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is important for, the lymphatic fluid balance) -> the lymphatic fluid balance (7564ms) What is sodium chloride? SiO2 -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (SiO2, can produce, sodium orthosilicate) -> SiO2 (7539ms) What is sodium chloride? an arrangement -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (an arrangement, can be made to produce, sodium hypochlorite) -> an arrangement (7499ms) What is sodium chloride? Lee Prebble -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (Lee Prebble, Tracks produced, Sodium Ions) -> Lee Prebble (7544ms) What is sodium chloride? The cell -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (The cell, produces, 100 % pure Sodium Hypochlorite) -> The cell (7556ms) What is sodium chloride? nitrous oxide -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (nitrous oxide, is produced from, sodium nitrite) -> nitrous oxide (7544ms) What is sodium chloride? soy sauce -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (soy sauce, does contain, sodium) -> soy sauce (7564ms) What is sodium chloride? drinking -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is ideal for, drinking) -> drinking (7560ms) What is sodium chloride? strong muscles and nerves -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is very imperative for, strong muscles and nerves) -> strong muscles and nerves (7476ms) What is sodium chloride? fludrocortisone acetate -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (fludrocortisone acetate, produces marked, sodium retention) -> fludrocortisone acetate (7539ms) What is sodium chloride? qlass -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (qlass, can produce, sodium) -> qlass (7530ms) What is sodium chloride? Nitrate -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (Nitrate, produces kinds of, Sodium Nitrite) -> Nitrate (7499ms) What is sodium chloride? restaurants -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (restaurants, can produce foods with, less sodium) -> restaurants (7556ms) What is sodium chloride? the recipes -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (the recipes, do have, high sodium content) -> the recipes (7469ms) What is sodium chloride? the operation -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is essential for, the operation) -> the operation (7525ms) What is sodium chloride? hydration -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is essential for, hydration) -> hydration (7484ms) What is sodium chloride? SODIUM 275MG TABLET -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (SODIUM 275MG TABLET, does, Teva-Naproxen Sodium work) -> SODIUM 275MG TABLET (7564ms) What is sodium chloride? Pfanstiehl -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (Pfanstiehl, begins producing, sodium lactate solutions) -> Pfanstiehl (7556ms) What is sodium chloride? Henan Hongye Chemical Company Ltd.can -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (Henan Hongye Chemical Company Ltd.can, produce, 40000MT Sodium) -> Henan Hongye Chemical Company Ltd.can (7544ms) What is sodium chloride? Hyponatremia -0.44444444444500003 What is sodium chloride? -> $x: ($x, define, sodium) -> (Hyponatremia, was defined as, more than one serum sodium) -> Hyponatremia (7568ms) What is sodium chloride? brain and heart functions -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is additionally vital for, brain and heart functions) -> brain and heart functions (7484ms) What is sodium chloride? a high-sodium food -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, could be mistaken for, a high-sodium food) -> a high-sodium food (7539ms) What is sodium chloride? female rats providers -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (female rats providers, may do, peripheral warfarin sodium) -> female rats providers (7556ms) What is sodium chloride? Columbus -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (Columbus, does use, sodium nitrates) -> Columbus (7519ms) What is sodium chloride? the food industry -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (the food industry, has done little to, lower sodium levels) -> the food industry (7530ms) What is sodium chloride? recovery -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is also important for, recovery) -> recovery (7564ms) What is sodium chloride? absorption -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is ultimately responsible for, absorption) -> absorption (7530ms) What is sodium chloride? anufactures -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (anufactures, produces kinds of, Sodium Nitrite) -> anufactures (7484ms) What is sodium chloride? proper transmission -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is necessary for, proper transmission) -> proper transmission (7556ms) What is sodium chloride? aspiring surgeon -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (aspiring surgeon, exactly DOES, high glucose cause high sodium) -> aspiring surgeon (7560ms) What is sodium chloride? vine roots -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (vine roots, do absorb, ? sodium) -> vine roots (7476ms) What is sodium chloride? prolonged photosensitivity -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (prolonged photosensitivity, does, porfimer sodium) -> prolonged photosensitivity (7512ms) What is sodium chloride? crack -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (crack, might generally be produced using, sodium bicarbonate) -> crack (7519ms) What is sodium chloride? nerve cells -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, are required for, nerve cells) -> nerve cells (7519ms) What is sodium chloride? organizations -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (organizations, can do right now to reduce, sodium) -> organizations (7556ms) What is sodium chloride? regulation -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is necessary for, regulation) -> regulation (7530ms) What is sodium chloride? Africa -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (Africa, produce, their own sodium hypochlorite) -> Africa (7530ms) What is sodium chloride? normal metabolic function -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is necessary for, normal metabolic function) -> normal metabolic function (7544ms) What is sodium chloride? the work -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (the work, has already been done on, sodium reduction) -> the work (7530ms) What is sodium chloride? factory -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (factory, produced, sodium bicarbonate) -> factory (7564ms) What is sodium chloride? The digestion process -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (The digestion process, produces, a sodium aluminate solution) -> The digestion process (7560ms) What is sodium chloride? The electrolysis -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (The electrolysis, produces, sodium hypochlorite) -> The electrolysis (7535ms) What is sodium chloride? human metabolism -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, are essential for, human metabolism) -> human metabolism (7535ms) What is sodium chloride? muscle and nerve tissue -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is vital for, muscle and nerve tissue) -> muscle and nerve tissue (7530ms) What is sodium chloride? Malaysia -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (Malaysia, does n?t have, the sodium content) -> Malaysia (7530ms) What is sodium chloride? reduced sodium -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (*Sodium, is figured for, reduced sodium) -> reduced sodium (7484ms) What is sodium chloride? kidney problems -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is a precursor for, kidney problems) -> kidney problems (7512ms) What is sodium chloride? the treatment -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is beneficial for, the treatment) -> the treatment (7548ms) What is sodium chloride? A salty diet -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (A salty diet, can do, harm?sodium pulls water) -> A salty diet (7505ms) What is sodium chloride? Comments -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (Comments, does adding, sodium bisulifite) -> Comments (7544ms) What is sodium chloride? salts -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (salts, produce commercial grades of, sodium bicarbonate) -> salts (7512ms) What is sodium chloride? Canexus LP -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (Canexus LP, produces, sodium chlorate) -> Canexus LP (7535ms) What is sodium chloride? the hydrogen -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is exchanged for, the hydrogen) -> the hydrogen (7539ms) What is sodium chloride? tumor growth -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is necessary for, tumor growth) -> tumor growth (7512ms) What is sodium chloride? India -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (India, produces a technical grade of, Sodium Bicarbonate) -> India (7519ms) What is sodium chloride? the muscle contraction -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is essential for, the muscle contraction) -> the muscle contraction (7506ms) What is sodium chloride? healthy functioning cells -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is essential for, healthy functioning cells) -> healthy functioning cells (7564ms) What is sodium chloride? FMC -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (FMC, also produces, sodium bicarbonate) -> FMC (7512ms) What is sodium chloride? osteoporosis -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is a risk factor for, osteoporosis) -> osteoporosis (7469ms) What is sodium chloride? Chemistry CSBP Limited CSBP -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (Chemistry CSBP Limited CSBP, produces, Sodium Cyanide) -> Chemistry CSBP Limited CSBP (7535ms) What is sodium chloride? A Saskatoon , Saskatchewan Plant -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (A Saskatoon , Saskatchewan Plant, produces, sodium chlorate) -> A Saskatoon , Saskatchewan Plant (7556ms) What is sodium chloride? The reaction -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (The reaction, produces, sodium ions and hydrogen gas) -> The reaction (7476ms) What is sodium chloride? local salt resource and soduim salt -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (local salt resource and soduim salt, is to produce, sodium metal) -> local salt resource and soduim salt (7548ms) What is sodium chloride? shelf life -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (shelf life, does, sodium) -> shelf life (7535ms) What is sodium chloride? a simple acid base reaction -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (a simple acid base reaction, produces, sodium acetate) -> a simple acid base reaction (7548ms) What is sodium chloride? celery -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (celery, does contain, natural sodium) -> celery (7506ms) What is sodium chloride? the alanine-enhanced dynamics -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, was essential for, the alanine-enhanced dynamics) -> the alanine-enhanced dynamics (7556ms) What is sodium chloride? radiation -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (radiation, is produced from, sodium vapor) -> radiation (7505ms) What is sodium chloride? the correct fluid -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is critical for maintaining, the correct fluid) -> the correct fluid (7469ms) What is sodium chloride? IL1?-induced CRP expression -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (IL1?-induced CRP expression, did, sodium salicylate) -> IL1?-induced CRP expression (7519ms) What is sodium chloride? Bread -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (Bread, really does n?t contain a ginormous amount of, sodium) -> Bread (7484ms) What is sodium chloride? Clostridium acetobutylicum -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (Clostridium acetobutylicum, naturally produce, sodium butyrate) -> Clostridium acetobutylicum (7525ms) What is sodium chloride? creatine uptake -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is needed for, creatine uptake) -> creatine uptake (7539ms) What is sodium chloride? transport -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is needed for, transport) -> transport (7484ms) What is sodium chloride? the general population -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, are largely irrelevant for, the general population) -> the general population (7498ms) What is sodium chloride? 40mmol/l -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (40mmol/l, produces, a sodium loss) -> 40mmol/l (7476ms) What is sodium chloride? health--but certainly -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, is best for, health--but certainly) -> health--but certainly (7564ms) What is sodium chloride? The process -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (The process, produces, sodium hydroxide) -> The process (7539ms) What is sodium chloride? data -0.44444444444500003 What is sodium chloride? -> $x: ($x, define, sodium) -> (data, have defined the same range of, sodium intake) -> data (7519ms) What is sodium chloride? functioning -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is required for, functioning) -> functioning (7498ms) What is sodium chloride? food -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (food, is pretty easy to do, low sodium) -> food (7548ms) What is sodium chloride? Severe hyponatraemia -0.44444444444500003 What is sodium chloride? -> $x: ($x, define, sodium) -> (Severe hyponatraemia, is usually defined as, serum sodium) -> Severe hyponatraemia (7512ms) What is sodium chloride? Dr. Wall -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (Dr. Wall, produced, the sodium salt) -> Dr. Wall (7491ms) What is sodium chloride? The cherry flavors plant -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (The cherry flavors plant, would also produce, sodium cyanide) -> The cherry flavors plant (7530ms) What is sodium chloride? treatment perioperative -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is for, treatment perioperative) -> treatment perioperative (7560ms) What is sodium chloride? sweat rates -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (sweat rates, so does, the sodium) -> sweat rates (7539ms) What is sodium chloride? Com -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (Com, does also be any effort for, any sodium) -> Com (7534ms) What is sodium chloride? the Leonid meteors -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, was so unusual for, the Leonid meteors) -> the Leonid meteors (7491ms) What is sodium chloride? Thai Rayon -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (Thai Rayon, also produces, Anhydrous Sodium Sulphate) -> Thai Rayon (7491ms) What is sodium chloride? Testosterone -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (Testosterone, can produce increased, sodium reabsorption) -> Testosterone (7519ms) What is sodium chloride? the average active person -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (the average active person, does n?t need, the added sodium) -> the average active person (7548ms) What is sodium chloride? 2 million -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (sodium, are responsible for about, 2 million) -> 2 million (7491ms) What is sodium chloride? water fluoridation -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (water fluoridation, were done with, sodium fluoride) -> water fluoridation (7491ms) What is sodium chloride? The scrubbing -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (The scrubbing, is done by, sodium sulfite or sodium hydroxide) -> The scrubbing (7469ms) What is sodium chloride? bodily function -0.44444444444500003 What is sodium chloride? -> $x: (sodium, be for, $x) -> (Sodium, is critical for, bodily function) -> bodily function (7499ms) What is sodium chloride? Watercare -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (Watercare, produces, its own sodium hypochlorite) -> Watercare (7491ms) What is sodium chloride? frozen food -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (frozen food, does tend to be high in, sodium) -> frozen food (7548ms) What is sodium chloride? Williams ,G.M. Hypertension -0.44444444444500003 What is sodium chloride? -> $x: ($x, produce, sodium) -> (Williams ,G.M. Hypertension, produced by, sodium depletion) -> Williams ,G.M. Hypertension (7491ms) What is sodium chloride? an ?evolution diet ? -0.44444444444500003 What is sodium chloride? -> $x: ($x, do, sodium) -> (an ?evolution diet ?, do to, your cholesterol and sodium levels) -> an ?evolution diet ? (7544ms) What is sodium chloride? sodium hexametaphosphate -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (sodium hexametaphosphate, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20hexametaphosphate) -> sodium hexametaphosphate (7585ms) What is sodium chloride? SODIUM PHENYLBUTYRATE -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (SODIUM PHENYLBUTYRATE, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20phenylbutyrate) -> SODIUM PHENYLBUTYRATE (7587ms) What is sodium chloride? Science and Technology -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (Science and Technology, found, sodium acetate) -> Science and Technology (7575ms) What is sodium chloride? Sodium Orthovanadate -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (Sodium Orthovanadate, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20orthovanadate) -> Sodium Orthovanadate (7575ms) What is sodium chloride? goat?s -0.555555555555 What is sodium chloride? -> $x: ($x, refer, sodium) -> (goat?s, are referred to as, bioorganic sodium animals) -> goat?s (7577ms) What is sodium chloride? the same elements -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (the same elements, found in, seawater ? sodium) -> the same elements (7589ms) What is sodium chloride? A recent study -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (A recent study, found, sodium concentrations) -> A recent study (7587ms) What is sodium chloride? The bubbles -0.555555555555 What is sodium chloride? -> $x: ($x, create, sodium) -> (The bubbles, are created from, Sodium Coco Sulphate) -> The bubbles (7580ms) What is sodium chloride? CSPI -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (CSPI, found wide variances in, sodium content) -> CSPI (7583ms) What is sodium chloride? officials -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (officials, were scrambling to find, enough sodium) -> officials (7587ms) What is sodium chloride? the lemon -0.555555555555 What is sodium chloride? -> $x: ($x, create, sodium) -> (the lemon, creates, a sodium citrate solution) -> the lemon (7571ms) What is sodium chloride? Sodium tellurite -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (Sodium tellurite, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20tellurite) -> Sodium tellurite (7580ms) What is sodium chloride? Sodium-Chlorite -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (Sodium-Chlorite, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20chlorite) -> Sodium-Chlorite (7583ms) What is sodium chloride? white light -0.555555555555 What is sodium chloride? -> $x: ($x, hate, sodium) -> (white light, hated, the sodium yellow colored light) -> white light (7571ms) What is sodium chloride? proteins -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (proteins, is found in, sodium .otassium) -> proteins (7580ms) What is sodium chloride? Hong Kong -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (Hong Kong, found, sodium levels) -> Hong Kong (7587ms) What is sodium chloride? the main forms people -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (the main forms people, find, sodium) -> the main forms people (7575ms) What is sodium chloride? postmenopausal women -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (postmenopausal women, found increased, urinary sodium excretion) -> postmenopausal women (7585ms) What is sodium chloride? a little bit -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (a little bit, find, non-sodium alternatives) -> a little bit (7583ms) What is sodium chloride? SODIUM DIETHYLDITHIOCARBAMATE -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (SODIUM DIETHYLDITHIOCARBAMATE, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20diethyldithiocarbamate) -> SODIUM DIETHYLDITHIOCARBAMATE (7580ms) What is sodium chloride? the study -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (the study, also found ill effects from, high sodium) -> the study (7583ms) What is sodium chloride? sodium ferulate -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (sodium ferulate, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20ferulate) -> sodium ferulate (7568ms) What is sodium chloride? a much higher amount -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (a much higher amount, is found in, intracellular sodium) -> a much higher amount (7587ms) What is sodium chloride? Sodium uranate -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (Sodium uranate, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20uranate) -> Sodium uranate (7587ms) What is sodium chloride? Researchers -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (Researchers, found, that including serum sodium concentration) -> Researchers (7580ms) What is sodium chloride? researchers -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (researchers, found, an unusual persistent sodium current) -> researchers (7575ms) What is sodium chloride? SODIUM SORBATE -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (SODIUM SORBATE, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20sorbate) -> SODIUM SORBATE (7577ms) What is sodium chloride? the kids -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (the kids, find, sodium and potassium) -> the kids (7578ms) What is sodium chloride? Brazil nut -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (Brazil nut, was found to be just as powerful as, sodium selenite) -> Brazil nut (7571ms) What is sodium chloride? Arm & Hammer Super Washing Soda -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (Arm & Hammer Super Washing Soda, find, sodium carbonate) -> Arm & Hammer Super Washing Soda (7585ms) What is sodium chloride? Oklahoma -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (Oklahoma, finally found, enough sodium) -> Oklahoma (7585ms) What is sodium chloride? Amy 's chefs -0.555555555555 What is sodium chloride? -> $x: ($x, create, sodium) -> (Amy 's chefs, have created a line of Light in, Sodium) -> Amy 's chefs (7587ms) What is sodium chloride? Calx-beta domains -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (Calx-beta domains, are found, sodium-calcium exchangers) -> Calx-beta domains (7578ms) What is sodium chloride? The effects -0.555555555555 What is sodium chloride? -> $x: ($x, create, sodium) -> (The effects, are created from, sodium vapors) -> The effects (7571ms) What is sodium chloride? times -0.555555555555 What is sodium chloride? -> $x: (sodium, have use of, $x) -> (?Sodium, has been used millions of, times) -> times (7583ms) What is sodium chloride? convenience foods -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (convenience foods, find, lower sodium options) -> convenience foods (7568ms) What is sodium chloride? hyper/hyponatremia -0.555555555555 What is sodium chloride? -> $x: ($x, refer, sodium) -> (hyper/hyponatremia, refers to, high/low sodium) -> hyper/hyponatremia (7583ms) What is sodium chloride? Terlipressin -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (Terlipressin, has been found to reduce, serum sodium levels) -> Terlipressin (7587ms) What is sodium chloride? authorities -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (authorities, found nearly a pound of, sodium cyanide) -> authorities (7571ms) What is sodium chloride? sodium butyrate -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (sodium butyrate, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20butyrate) -> sodium butyrate (7587ms) What is sodium chloride? sodium selenide -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (sodium selenide, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20selenide) -> sodium selenide (7589ms) What is sodium chloride? Sodium Hypophosphite -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (Sodium Hypophosphite, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20hypophosphite) -> Sodium Hypophosphite (7571ms) What is sodium chloride? Sodium pyrosulfate -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (Sodium pyrosulfate, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20pyrosulfate) -> Sodium pyrosulfate (7571ms) What is sodium chloride? carbamazepine and indapamide -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (carbamazepine and indapamide, was found to have, serum sodium) -> carbamazepine and indapamide (7587ms) What is sodium chloride? bar soap -0.555555555555 What is sodium chloride? -> $x: ($x, create, sodium) -> (bar soap, is created using, sodium hydroxide) -> bar soap (7568ms) What is sodium chloride? Sodium-Hydrosulfide -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (Sodium-Hydrosulfide, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20hydrosulfide) -> Sodium-Hydrosulfide (7589ms) What is sodium chloride? sodium amalgam -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (sodium amalgam, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20amalgam) -> sodium amalgam (7587ms) What is sodium chloride? iodine -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (iodine, can also be found in, a nearly sodium-free source) -> iodine (7585ms) What is sodium chloride? special dietary concerns -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (special dietary concerns, will find, tasty low sodium) -> special dietary concerns (7585ms) What is sodium chloride? glymidine -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (glymidine, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Glymidine%20sodium) -> glymidine (7568ms) What is sodium chloride? Sodium decavanadate -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (Sodium decavanadate, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20decavanadate) -> Sodium decavanadate (7583ms) What is sodium chloride? Mexican Officials -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (Mexican Officials, Find Truck with, Deadly Sodium Cyanide) -> Mexican Officials (7583ms) What is sodium chloride? the terms -0.555555555555 What is sodium chloride? -> $x: ($x, refer, sodium) -> (the terms, refer to, sodium) -> the terms (7575ms) What is sodium chloride? Sodium Girl?s super readers -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (Sodium Girl?s super readers, found, a very low sodium brand) -> Sodium Girl?s super readers (7583ms) What is sodium chloride? sodium cobaltinitrite -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (sodium cobaltinitrite, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20cobaltinitrite) -> sodium cobaltinitrite (7568ms) What is sodium chloride? Urban Effects Filters -0.555555555555 What is sodium chloride? -> $x: ($x, create, sodium) -> (Urban Effects Filters, Create the look of, Sodium street) -> Urban Effects Filters (7575ms) What is sodium chloride? sodium and oxygen form sodium oxides -0.555555555555 What is sodium chloride? -> $x: ($x, create, sodium) -> (sodium and oxygen form sodium oxides, create, sodium hydroxide) -> sodium and oxygen form sodium oxides (7568ms) What is sodium chloride? The word ?sodium ? -0.555555555555 What is sodium chloride? -> $x: ($x, refer, sodium) -> (The word ?sodium ?, refers to, sodium hydroxide) -> The word ?sodium ? (7575ms) What is sodium chloride? SODIUM ETHOXIDE -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (SODIUM ETHOXIDE, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20ethoxide) -> SODIUM ETHOXIDE (7577ms) What is sodium chloride? sodium sesquicarbonate -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (sodium sesquicarbonate, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20sesquicarbonate) -> sodium sesquicarbonate (7580ms) What is sodium chloride? I?ve -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (I?ve, found, lower-sodium alternatives) -> I?ve (7571ms) What is sodium chloride? researcher Henry Bieler -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (researcher Henry Bieler, found signs of, sodium starvation) -> researcher Henry Bieler (7580ms) What is sodium chloride? SODIUM FLUOROSILICATE -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (SODIUM FLUOROSILICATE, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20fluorosilicate) -> SODIUM FLUOROSILICATE (7580ms) What is sodium chloride? Sodium Borohydride -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (Sodium Borohydride, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20borohydride) -> Sodium Borohydride (7580ms) What is sodium chloride? you?ll -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (you?ll, find, the ingredient sodium selenite) -> you?ll (7577ms) What is sodium chloride? Movie star Travel -0.555555555555 What is sodium chloride? -> $x: ($x, create, sodium) -> (Movie star Travel, were being created from, sodium shakers) -> Movie star Travel (7577ms) What is sodium chloride? Walnuts -0.555555555555 What is sodium chloride? -> $x: ($x, happen to, sodium) -> (Walnuts, just happen to be, sodium and cholesterol free) -> Walnuts (7571ms) What is sodium chloride? a cell -0.555555555555 What is sodium chloride? -> $x: ($x, refer, sodium) -> (a cell, is commonly referred to as, a sodium pump) -> a cell (7580ms) What is sodium chloride? the world soda water -0.555555555555 What is sodium chloride? -> $x: ($x, create, sodium) -> (the world soda water, is created by using, sodium bicarbonate) -> the world soda water (7585ms) What is sodium chloride? Sodium Dichloroisocyanurate -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (Sodium Dichloroisocyanurate, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20dichloroisocyanurate) -> Sodium Dichloroisocyanurate (7580ms) What is sodium chloride? the 90 wells -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (the 90 wells, were found to have naturally, high sodium levels) -> the 90 wells (7580ms) What is sodium chloride? GHB -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (GHB, may be found as, the sodium or potassium salt) -> GHB (7575ms) What is sodium chloride? south China -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (south China, was found to be using, industrial sodium nitrate) -> south China (7571ms) What is sodium chloride? investigators -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (investigators, found, a sodium-cyanide bomb) -> investigators (7571ms) What is sodium chloride? cent -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (cent, were found to have, high sodium levels) -> cent (7589ms) What is sodium chloride? Metham sodium -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (Metham sodium, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Metham%20sodium) -> Metham sodium (7585ms) What is sodium chloride? SODIUM IODATE -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (SODIUM IODATE, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20iodate) -> SODIUM IODATE (7575ms) What is sodium chloride? sodium ascorbate -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (sodium ascorbate, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20ascorbate) -> sodium ascorbate (7587ms) What is sodium chloride? Meniere -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (Meniere, have been struggling to find, no-sodium products) -> Meniere (7583ms) What is sodium chloride? Parnaparin -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (Parnaparin, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Parnaparin%20sodium) -> Parnaparin (7568ms) What is sodium chloride? Sodium Perrhenate -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (Sodium Perrhenate, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20perrhenate) -> Sodium Perrhenate (7585ms) What is sodium chloride? the clay -0.555555555555 What is sodium chloride? -> $x: ($x, refer, sodium) -> (the clay, is referred to as, sodium) -> the clay (7575ms) What is sodium chloride? Differences -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (Differences, were found in, total sodium space) -> Differences (7587ms) What is sodium chloride? The conditions -0.555555555555 What is sodium chloride? -> $x: ($x, create, sodium) -> (The conditions, are thereby created for, sodium) -> The conditions (7583ms) What is sodium chloride? SODIUM MOLYBDATE -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (SODIUM MOLYBDATE, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20molybdate) -> SODIUM MOLYBDATE (7583ms) What is sodium chloride? the hardest part -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (the hardest part, was finding a supplier for, sodium hydroxide) -> the hardest part (7575ms) What is sodium chloride? blood pH -0.555555555555 What is sodium chloride? -> $x: ($x, create, sodium) -> (blood pH, creates, magnesium , potassium , sodium) -> blood pH (7577ms) What is sodium chloride? the planet -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (the planet, has been found to contain, less sodium) -> the planet (7568ms) What is sodium chloride? The key -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (The key, here is to find, lower sodium options) -> The key (7577ms) What is sodium chloride? Sodium Polyacrylate -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (Sodium Polyacrylate, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20polyacrylate) -> Sodium Polyacrylate (7575ms) What is sodium chloride? ?Light ? -0.555555555555 What is sodium chloride? -> $x: ($x, refer, sodium) -> (?Light ?, can refer to, fat , calories or sodium) -> ?Light ? (7578ms) What is sodium chloride? SODIUM ALUMINATE -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (SODIUM ALUMINATE, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20aluminate) -> SODIUM ALUMINATE (7587ms) What is sodium chloride? Sodium apolate -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (Sodium apolate, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20apolate) -> Sodium apolate (7583ms) What is sodium chloride? 80 % -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (80 %, Find her away from, oily , high sodium) -> 80 % (7577ms) What is sodium chloride? SODIUM TRIPOLYPHOSPHATE -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (SODIUM TRIPOLYPHOSPHATE, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20triphosphate) -> SODIUM TRIPOLYPHOSPHATE (7577ms) What is sodium chloride? chlorine dioxide -0.555555555555 What is sodium chloride? -> $x: ($x, create, sodium) -> (chlorine dioxide, is created by mixing, sodium chlorite) -> chlorine dioxide (7585ms) What is sodium chloride? Sodium fluoride -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (Sodium fluoride, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20fluoride) -> Sodium fluoride (7587ms) What is sodium chloride? The bacon -0.555555555555 What is sodium chloride? -> $x: ($x, happen to, sodium) -> (The bacon, happened to be, low sodium) -> The bacon (7571ms) What is sodium chloride? the DASH-sodium study -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (the DASH-sodium study, have found reduced, sodium) -> the DASH-sodium study (7571ms) What is sodium chloride? Sodium cocoate -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (Sodium cocoate, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20cocoate) -> Sodium cocoate (7585ms) What is sodium chloride? doctors -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (doctors, found traces of, sodium) -> doctors (7580ms) What is sodium chloride? the standard -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (the standard, is found in, sodium-carbonate-bearing brines) -> the standard (7568ms) What is sodium chloride? Sodium Telluride -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (Sodium Telluride, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20telluride) -> Sodium Telluride (7583ms) What is sodium chloride? Perchlorate -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (Perchlorate, has been found in, sodium hypochlorite) -> Perchlorate (7585ms) What is sodium chloride? manufacturers -0.555555555555 What is sodium chloride? -> $x: ($x, create, sodium) -> (manufacturers, have created, low-sodium products) -> manufacturers (7575ms) What is sodium chloride? Sodium Selenate -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (Sodium Selenate, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20selenate) -> Sodium Selenate (7587ms) What is sodium chloride? sodium gluconate -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (sodium gluconate, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20gluconate) -> sodium gluconate (7585ms) What is sodium chloride? Sodium-Metavanadate -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (Sodium-Metavanadate, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sodium%20metavanadate) -> Sodium-Metavanadate (7577ms) What is sodium chloride? the initiative -0.555555555555 What is sodium chloride? -> $x: ($x, found, sodium) -> (the initiative, find, ways to... 2 comments salt sodium) -> the initiative (7578ms) What is sodium chloride? an adrenal tumor -0.555555555556 What is sodium chloride? -> $x: ($x, influence, sodium) -> (an adrenal tumor, influences, sodium retention) -> an adrenal tumor (7594ms) What is sodium chloride? Shampoo -0.555555555556 What is sodium chloride? -> $x: ($x, formulate, sodium chloride) -> (Shampoo, is formulated, Sodium-Chloride FREE and Sulfate FREE) -> Shampoo (7594ms) What is sodium chloride? sodium chloride -0.555555555556 What is sodium chloride? -> $x: ($x, influence, sodium) -> (sodium chloride, influences the amount of, sodium ions) -> sodium chloride (7593ms) What is sodium chloride? Magnetized water -0.555555555556 What is sodium chloride? -> $x: ($x, influence, sodium) -> (Magnetized water, increases the influence of, sub-caloric sodium) -> Magnetized water (7594ms) What is sodium chloride? canada Blood loss -0.555555555556 What is sodium chloride? -> $x: ($x, influence, sodium) -> (canada Blood loss, influences, sodium) -> canada Blood loss (7589ms) What is sodium chloride? endothelial function -0.555555555556 What is sodium chloride? -> $x: ($x, influence, sodium) -> (endothelial function, influences, the sodium-potassium balance) -> endothelial function (7595ms) What is sodium chloride? Naproxen -0.555555555556 What is sodium chloride? -> $x: ($x, formulate, sodium chloride) -> (Naproxen, formulated, contains sodium chloride) -> Naproxen (7595ms) What continent is Bolivia on? Submit Answer -0.8888888888840001 What continent is Bolivia on? -> $x: ($x, be population of, bolivium) -> (Submit Answer, is the population of, Bolivia) -> Submit Answer (894ms) What continent is Bolivia on? Argentina -0.999999999994 What continent is Bolivia on? -> $x: ($x, border, bolivium) -> (Argentina, is bordered by, Bolivia) -> Argentina (1244ms) What continent is Bolivia on? Rondonia -0.999999999994 What continent is Bolivia on? -> $x: ($x, border, bolivia) -> (Rondonia, borders, Bolivia) -> Rondonia (1249ms) What continent is Bolivia on? San Pedro de Atacama -0.999999999994 What continent is Bolivia on? -> $x: ($x, border, bolivia) -> (San Pedro de Atacama, cross the border into, Bolivia) -> San Pedro de Atacama (1205ms) What continent is Bolivia on? Lake Titicaca -0.999999999994 What continent is Bolivia on? -> $x: ($x, border, bolivia) -> (Lake Titicaca, straddles the border between, Bolivia and Peru) -> Lake Titicaca (1244ms) What continent is Bolivia on? Paraguay -0.999999999994 What continent is Bolivia on? -> $x: ($x, border, bolivia) -> (Paraguay, is bordered by, Bolivia) -> Paraguay (1244ms) What continent is Bolivia on? Madre de Dios -0.999999999994 What continent is Bolivia on? -> $x: ($x, border, bolivia) -> (Madre de Dios, borders, Brazil and Bolivia) -> Madre de Dios (1244ms) What continent is Bolivia on? 20-21 La Paz Travel -0.999999999994 What continent is Bolivia on? -> $x: ($x, border, bolivium) -> (20-21 La Paz Travel, cross the border into, Bolivia) -> 20-21 La Paz Travel (1204ms) What continent is Bolivia on? the Madeira River -0.999999999994 What continent is Bolivia on? -> $x: ($x, border, bolivium) -> (the Madeira River, will have cross-border effects in, Bolivia) -> the Madeira River (1244ms) What continent is Bolivia on? The lake -0.999999999994 What continent is Bolivia on? -> $x: ($x, border, bolivia) -> (The lake, is bordered by, each Bolivia and Peru) -> The lake (1244ms) What continent is Bolivia on? the Yungas -0.999999999994 What continent is Bolivia on? -> $x: ($x, border, bolivium) -> (the Yungas, are bordered by, Bolivia and Catamarca province) -> the Yungas (1244ms) What continent is Bolivia on? the Madre -0.999999999994 What continent is Bolivia on? -> $x: ($x, border, bolivium) -> (the Madre, is the natural border between, Peru and Bolivia) -> the Madre (1244ms) What continent is Bolivia on? a coastline -0.999999999994 What continent is Bolivia on? -> $x: ($x, border, bolivium) -> (a coastline, is bordered by, Bolivia) -> a coastline (1249ms) What continent is Bolivia on? the blue-throats -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivium) -> (the blue-throats, are found only in, north-central Bolivia) -> the blue-throats (1274ms) What continent is Bolivia on? Ceramic artifacts -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivia) -> (Ceramic artifacts, found during, a dig in Bolivia) -> Ceramic artifacts (1268ms) What continent is Bolivia on? Ms Higgins -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivium) -> (Ms Higgins, has already found support from, Bolivia) -> Ms Higgins (1253ms) What continent is Bolivia on? National Drug Control Policy -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivia) -> (National Drug Control Policy, found, Bolivia) -> National Drug Control Policy (1253ms) What continent is Bolivia on? President of Bolivia -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivium) -> (President of Bolivia, can be found on Wikipedia at, http://en.wikipedia.org/wiki/President%20of%20Bolivia) -> President of Bolivia (1268ms) What continent is Bolivia on? vuelta a bolivia -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivia) -> (vuelta a bolivia, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Vuelta%20a%20Bolivia) -> vuelta a bolivia (1261ms) What continent is Bolivia on? ecuadorica -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivium) -> (ecuadorica, also found in, Bolivia & Argentina) -> ecuadorica (1271ms) What continent is Bolivia on? Germond?s research -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivia) -> (Germond?s research, finds similar projects in, Bolivia) -> Germond?s research (1274ms) What continent is Bolivia on? the only known pathogenic arenavirus -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivia) -> (the only known pathogenic arenavirus, found in, Bolivia) -> the only known pathogenic arenavirus (1261ms) What continent is Bolivia on? Samaipata -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivium) -> (Samaipata, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Samaipata,%20Bolivia) -> Samaipata (1268ms) What continent is Bolivia on? an internet search -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivia) -> (an internet search, found, Sustainable Bolivia) -> an internet search (1274ms) What continent is Bolivia on? Larger populations -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivia) -> (Larger populations, are found in, Bolivia) -> Larger populations (1274ms) What continent is Bolivia on? the genera -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivium) -> (the genera, found in, Bolivia) -> the genera (1268ms) What continent is Bolivia on? Kansas -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivia) -> (Kansas, finds a kindred spirit in, Bolivia) -> Kansas (1271ms) What continent is Bolivia on? the handpumps -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivia) -> (the handpumps, Find, Bolivia) -> the handpumps (1268ms) What continent is Bolivia on? infant formulae -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivium) -> (infant formulae, were found in, Bolivia) -> infant formulae (1257ms) What continent is Bolivia on? Revolutionary Left Movement - New Majority -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivium) -> (Revolutionary Left Movement - New Majority, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Revolutionary%20Left%20Movement%20(Bolivia)) -> Revolutionary Left Movement - New Majority (1271ms) What continent is Bolivia on? Amy Stillman -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivium) -> (Amy Stillman, finds out from, Bolivia) -> Amy Stillman (1257ms) What continent is Bolivia on? two-toned quartz crystal -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivia) -> (two-toned quartz crystal, is only found in, Bolivia) -> two-toned quartz crystal (1268ms) What continent is Bolivia on? Sin Nombre -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivium) -> (Sin Nombre, have also been found in, Bolivia) -> Sin Nombre (1265ms) What continent is Bolivia on? jaguar scat -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivium) -> (jaguar scat, found in, Bolivia) -> jaguar scat (1265ms) What continent is Bolivia on? monkey -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivium) -> (monkey, found in, Bolivia) -> monkey (1274ms) What continent is Bolivia on? Brazil -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivium) -> (Brazil, also found in, Bolivia) -> Brazil (1271ms) What continent is Bolivia on? Llamas -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivia) -> (Llamas, found mainly in, Bolivia) -> Llamas (1268ms) What continent is Bolivia on? The neighborhood -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivium) -> (The neighborhood, found on, Bolivia Drive) -> The neighborhood (1268ms) What continent is Bolivia on? the local Quechua homebrew -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivia) -> (the local Quechua homebrew, found all over, Peru and Bolivia) -> the local Quechua homebrew (1271ms) What continent is Bolivia on? 70 % -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivia) -> (70 %, are found in, Bolivia) -> 70 % (1271ms) What continent is Bolivia on? C. brunneus -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivium) -> (C. brunneus, is also found in, Bolivia) -> C. brunneus (1274ms) What continent is Bolivia on? The species -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivia) -> (The species, found in, Bolivia , Brazil and Peru) -> The species (1271ms) What continent is Bolivia on? Pacha Mama -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivium) -> (Pacha Mama, can be found all over, Bolivia) -> Pacha Mama (1253ms) What continent is Bolivia on? Christ Palm -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivia) -> (Christ Palm, is found in, Argentina and Bolivia) -> Christ Palm (1265ms) What continent is Bolivia on? the most brutal examples -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivium) -> (the most brutal examples, could be found in, Bolivia ?) -> the most brutal examples (1261ms) What continent is Bolivia on? you?ll -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivium) -> (you?ll, find, the Bolivia) -> you?ll (1261ms) What continent is Bolivia on? hummingbird -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivium) -> (hummingbird, found in, Bolivia) -> hummingbird (1265ms) What continent is Bolivia on? RANGE Titi monkeys -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivia) -> (RANGE Titi monkeys, found in, Bolivia) -> RANGE Titi monkeys (1265ms) What continent is Bolivia on? ?Call -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivia) -> (?Call, Find cheap flights to, Bolivia) -> ?Call (1268ms) What continent is Bolivia on? Bolivia national football team -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivia) -> (Bolivia national football team, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Bolivia%20national%20football%20team) -> Bolivia national football team (1268ms) What continent is Bolivia on? Freire -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivia) -> (Freire, found political asylum in, Bolivia) -> Freire (1257ms) What continent is Bolivia on? the Amazonian rainforest -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivia) -> (the Amazonian rainforest, found in, northern Bolivia) -> the Amazonian rainforest (1268ms) What continent is Bolivia on? The Christ Palm -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivia) -> (The Christ Palm, is found in, Argentina or Bolivia) -> The Christ Palm (1261ms) What continent is Bolivia on? loans -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivium) -> (loans, finds, Bolivia?s Aymara Indian president) -> loans (1261ms) What continent is Bolivia on? the Military -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivium) -> (the Military, can be found in, Bolivia) -> the Military (1253ms) What continent is Bolivia on? Aymara speakers -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivia) -> (Aymara speakers, are found in, Bolivia) -> Aymara speakers (1257ms) What continent is Bolivia on? vivianite -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivia) -> (vivianite, are also found in, Bolivia) -> vivianite (1261ms) What continent is Bolivia on? Journalist siblings -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivium) -> (Journalist siblings, found slain in, Bolivia JamaicanTimes.com) -> Journalist siblings (1265ms) What continent is Bolivia on? A Chicco magazine -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivium) -> (A Chicco magazine, found in, Bolivia and Argentina) -> A Chicco magazine (1261ms) What continent is Bolivia on? the biggest cocaine factory -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivia) -> (the biggest cocaine factory, ever found in, Bolivia?the) -> the biggest cocaine factory (1274ms) What continent is Bolivia on? decent work -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivia) -> (decent work, is still so difficult to find in, Bolivia) -> decent work (1271ms) What continent is Bolivia on? Citrine -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivium) -> (Citrine, has been found in, areas of Bolivia) -> Citrine (1274ms) What continent is Bolivia on? bismuth -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivium) -> (bismuth, are found in, Bolivia) -> bismuth (1268ms) What continent is Bolivia on? The Bolivian gray titi monkey -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivia) -> (The Bolivian gray titi monkey, is found in, Bolivia and Brazil) -> The Bolivian gray titi monkey (1265ms) What continent is Bolivia on? Oil and gas deposits -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivia) -> (Oil and gas deposits, are found nearby in, Bolivia as well as) -> Oil and gas deposits (1261ms) What continent is Bolivia on? the Katrina cars -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivium) -> (the Katrina cars, found a new home in, Bolivia) -> the Katrina cars (1271ms) What continent is Bolivia on? Spectacular dinosaur tracks -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivia) -> (Spectacular dinosaur tracks, are found in, Bolivia) -> Spectacular dinosaur tracks (1271ms) What continent is Bolivia on? Similar breads -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivium) -> (Similar breads, are also found in, Bolivia) -> Similar breads (1271ms) What continent is Bolivia on? Wild rice species -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivium) -> (Wild rice species, found in, Trinidad Bolivia) -> Wild rice species (1257ms) What continent is Bolivia on? araca -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivia) -> (araca, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Araca%20(Bolivia)) -> araca (1271ms) What continent is Bolivia on? The largest deposits of Bismuth -0.999999999995 What continent is Bolivia on? -> $x: ($x, find, bolivia) -> (The largest deposits of Bismuth, are found in, Bolivia) -> The largest deposits of Bismuth (1257ms) What continent is Bolivia on? Responsibilities -1.1111111111060001 What continent is Bolivia on? -> $x: ($x, be part of, bolivia) -> (Responsibilities, was to become an integral part of, Bolivia) -> Responsibilities (1276ms) What continent is Bolivia on? Iquique -1.1111111111060001 What continent is Bolivia on? -> $x: ($x, be part of, bolivium) -> (Iquique, was a part of, Bolivia) -> Iquique (1276ms) What continent is Bolivia on? the Atacama Desert -1.1111111111060001 What continent is Bolivia on? -> $x: ($x, be part of, bolivia) -> (the Atacama Desert, was formally part of, Bolivia) -> the Atacama Desert (1276ms) What continent is Bolivia on? Exports -1.1111111111060001 What continent is Bolivia on? -> $x: ($x, be part of, bolivium) -> (Exports, are a major part of, the Bolivia?s economy) -> Exports (1276ms) What continent is Bolivia on? The Chacaltaya -1.1111111111060001 What continent is Bolivia on? -> $x: ($x, be part of, bolivium) -> (The Chacaltaya, is part of, Bolivia) -> The Chacaltaya (1274ms) What continent is Bolivia on? The Apolo area -1.1111111111060001 What continent is Bolivia on? -> $x: ($x, be part of, bolivium) -> (The Apolo area, is a fantastic part of, Bolivia) -> The Apolo area (1276ms) What continent is Bolivia on? the town -1.1111111111060001 What continent is Bolivia on? -> $x: ($x, be part of, bolivium) -> (the town, was a part of, Bolivia) -> the town (1276ms) What continent is Bolivia on? Coca -1.1111111111060001 What continent is Bolivia on? -> $x: ($x, be part of, bolivia) -> (Coca, is part of, Bolivia) -> Coca (1276ms) What continent is Bolivia on? Cities -1.1111111111060001 What continent is Bolivia on? -> $x: ($x, be part of, bolivium) -> (Cities, were an integral part of, colonial Bolivia) -> Cities (1276ms) What continent is Bolivia on? any team -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivium) -> (any team, include, the Bolivia football team) -> any team (1285ms) What continent is Bolivia on? Biodiversity -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivium) -> (Biodiversity, included, Bolivia) -> Biodiversity (1283ms) What continent is Bolivia on? indigenous people -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivia) -> (indigenous people, includes, Bolivia) -> indigenous people (1286ms) What continent is Bolivia on? the Inca Empire -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivium) -> (the Inca Empire, included, Peru and Bolivia) -> the Inca Empire (1289ms) What continent is Bolivia on? Good general references -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivium) -> (Good general references, include, Wikipedia > Bolivia) -> Good general references (1288ms) What continent is Bolivia on? Coverage -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivia) -> (Coverage, includes the whole of, Bolivia and Paraguay) -> Coverage (1288ms) What continent is Bolivia on? no formal agenda -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivia) -> (no formal agenda, included, Bolivia) -> no formal agenda (1288ms) What continent is Bolivia on? The countries -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivium) -> (The countries, included, Bolivia) -> The countries (1289ms) What continent is Bolivia on? a geographic zone -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivia) -> (a geographic zone, includes territories of, Peru and Bolivia) -> a geographic zone (1289ms) What continent is Bolivia on? May 11 -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivia) -> (May 11, include, Argentina , Aruba , Bolivia ,) -> May 11 (1289ms) What continent is Bolivia on? origin -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivia) -> (origin, include, Brazil , Argentina , Bolivia and Paraguay) -> origin (1288ms) What continent is Bolivia on? 174 votes -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivia) -> (174 votes, also included, Bolivia) -> 174 votes (1288ms) What continent is Bolivia on? U.S. influence -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivium) -> (U.S. influence, now includes, Bolivia , Ecuador , Nicaragua) -> U.S. influence (1285ms) What continent is Bolivia on? Examples -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivium) -> (Examples, include, Bolivia?s decision) -> Examples (1289ms) What continent is Bolivia on? the high Andes -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivium) -> (the high Andes, includes, Peru , Colombia , Ecuador and Bolivia) -> the high Andes (1283ms) What continent is Bolivia on? U.S. drug report -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivium) -> (U.S. drug report, includes, Bolivia La Prensa) -> U.S. drug report (1286ms) What continent is Bolivia on? Central America -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivium) -> (Central America, also included, Bolivia) -> Central America (1285ms) What continent is Bolivia on? Members -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivia) -> (Members, include, Bolivia) -> Members (1286ms) What continent is Bolivia on? Attractive markets -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivium) -> (Attractive markets, include, Mexico and Bolivia) -> Attractive markets (1289ms) What continent is Bolivia on? the four-day fixture -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivia) -> (the four-day fixture, included, Bolivia) -> the four-day fixture (1283ms) What continent is Bolivia on? Group A -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivium) -> (Group A, includes, Bolivia , Peru and Uruguay) -> Group A (1289ms) What continent is Bolivia on? 30 countries -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivium) -> (30 countries, includes, Bolivia , Ghana , Mali , and Mozambique) -> 30 countries (1286ms) What continent is Bolivia on? a career diplomat -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivia) -> (a career diplomat, included, Guatemala and Bolivia) -> a career diplomat (1285ms) What continent is Bolivia on? Early responders -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivium) -> (Early responders, included, Bolivia) -> Early responders (1289ms) What continent is Bolivia on? recent expeditions -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivium) -> (recent expeditions, include trips to, Bolivia) -> recent expeditions (1288ms) What continent is Bolivia on? a tour -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivia) -> (a tour, also includes visits to, Bolivia and Venezuela) -> a tour (1285ms) What continent is Bolivia on? an agenda -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivium) -> (an agenda, includes dialogue on, Bolivia?s demand) -> an agenda (1289ms) What continent is Bolivia on? Venezuela and Cuba -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivium) -> (Venezuela and Cuba, now includes, Bolivia , Ecuador , Nicaragua) -> Venezuela and Cuba (1288ms) What continent is Bolivia on? Smaller but important economies -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivium) -> (Smaller but important economies, include, Bolivia) -> Smaller but important economies (1281ms) What continent is Bolivia on? Buenos Aires -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivia) -> (Buenos Aires, includes, Colombia , Ecuador , Bolivia and Peru) -> Buenos Aires (1281ms) What continent is Bolivia on? Third World countries -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivium) -> (Third World countries, includes, Bolivia) -> Third World countries (1286ms) What continent is Bolivia on? The eastern lowlands -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivia) -> (The eastern lowlands, include all of, Bolivia) -> The eastern lowlands (1285ms) What continent is Bolivia on? a ten day conference -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivia) -> (a ten day conference, included representatives from, Bolivia) -> a ten day conference (1285ms) What continent is Bolivia on? Locations -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivia) -> (Locations, include, Burma , Ethiopia , Bolivia and Guatemala) -> Locations (1288ms) What continent is Bolivia on? Washington -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivia) -> (Washington, also continued to include, Burma and Bolivia) -> Washington (1289ms) What continent is Bolivia on? South America -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivium) -> (South America, had ever included, Bolivia) -> South America (1288ms) What continent is Bolivia on? the global Anglican Communion -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivia) -> (the global Anglican Communion, includes, Bolivia) -> the global Anglican Communion (1288ms) What continent is Bolivia on? past projects -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivium) -> (past projects, include, Bolivia?s water privatization debacle) -> past projects (1289ms) What continent is Bolivia on? The western Amazon -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivia) -> (The western Amazon, includes parts of, Bolivia) -> The western Amazon (1289ms) What continent is Bolivia on? 244 countries and regions -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivium) -> (244 countries and regions, include, Bolivia) -> 244 countries and regions (1288ms) What continent is Bolivia on? guerrilla warfare -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivia) -> (guerrilla warfare, include, Malaysia , Bolivia , Argentina ,) -> guerrilla warfare (1283ms) What continent is Bolivia on? The study -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivia) -> (The study, includes the countries of, Bolivia) -> The study (1285ms) What continent is Bolivia on? the destinations -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivium) -> (the destinations, can include, Bolivia and Ecuador) -> the destinations (1289ms) What continent is Bolivia on? An unofficial working group -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivia) -> (An unofficial working group, included a critique of, Bolivia) -> An unofficial working group (1283ms) What continent is Bolivia on? The Gaian League -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivia) -> (The Gaian League, might include such countries as, Bolivia) -> The Gaian League (1285ms) What continent is Bolivia on? Adventure & Atacama Marathon -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivium) -> (Adventure & Atacama Marathon, includes, Chile , Bolivia and Peru) -> Adventure & Atacama Marathon (1285ms) What continent is Bolivia on? grants -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivia) -> (grants, include nations such as, Bolivia) -> grants (1288ms) What continent is Bolivia on? aid cuts -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivia) -> (aid cuts, include, Bolivia) -> aid cuts (1288ms) What continent is Bolivia on? Neighboring countries -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivium) -> (Neighboring countries, include, Bolivia) -> Neighboring countries (1288ms) What continent is Bolivia on? experience -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivium) -> (experience, includes very influential work in, Bolivia) -> experience (1283ms) What continent is Bolivia on? Tahuantinsuyu -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivia) -> (Tahuantinsuyu, included, Peru and Bolivia) -> Tahuantinsuyu (1289ms) What continent is Bolivia on? Monday -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivium) -> (Monday, included, Bolivia) -> Monday (1283ms) What continent is Bolivia on? The fertile eastern lowlands -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivia) -> (The fertile eastern lowlands, include all of, Bolivia) -> The fertile eastern lowlands (1287ms) What continent is Bolivia on? Collasuyu -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivium) -> (Collasuyu, included, present day Bolivia) -> Collasuyu (1286ms) What continent is Bolivia on? the initiative -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivium) -> (the initiative, include, Bolivia and Uruguay) -> the initiative (1289ms) What continent is Bolivia on? The mission -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivia) -> (The mission, included, Bolivia) -> The mission (1289ms) What continent is Bolivia on? region -1.222222222218 What continent is Bolivia on? -> $x: ($x, include, bolivia) -> (region, includes parts of, Bolivia , Colombia and Peru) -> region (1285ms) What movie won the Academy Award for best picture in 1989? Driving Miss Daisy 0.33333333333299997 What movie won the Academy Award for best picture in 1989? -> $x: ($x, win best picture in, 1989) -> (Driving Miss Daisy, win best picture in, 1989) -> Driving Miss Daisy (600ms) What are brake pads made of? tough material 0.444444444441 What are brake pads made of? -> $x: (brake pad, be make out of, $x) -> (Brake pads and shoes, are made out of very, tough material) -> tough material (1251ms) What are brake pads made of? The brake 0.222222222221 What are brake pads made of? -> $x: ($x, make of, brake pad) -> (The brake, is made of, brake pads) -> The brake (1462ms) What are brake pads made of? fibers 0.222222222221 What are brake pads made of? -> $x: (brake pad, be make from, $x) -> (Non-asbestos organic brake pads, are made from, fibers) -> fibers (1251ms) What are brake pads made of? carbon-fibre 0.222222222221 What are brake pads made of? -> $x: (brake pad, be make from, $x) -> (The brake pads, are made from, carbon-fibre) -> carbon-fibre (1462ms) What are brake pads made of? Baer 0.222222222221 What are brake pads made of? -> $x: ($x, make of, brake pad) -> (Baer, makes a wide range of, ceramic brake pads) -> Baer (1252ms) What are brake pads made of? small pieces 0.222222222221 What are brake pads made of? -> $x: (brake pad, be make from, $x) -> (motorcycle brake pads, are made from, small pieces) -> small pieces (1462ms) What are brake pads made of? a combination 0.222222222221 What are brake pads made of? -> $x: (brake pad, be make from, $x) -> (The best brake pads, are made from, a combination) -> a combination (1251ms) What are brake pads made of? a variety 0.222222222221 What are brake pads made of? -> $x: (brake pad, be make from, $x) -> (Brake pads, are made from, a variety) -> a variety (1251ms) What are brake pads made of? now 0.222222222221 What are brake pads made of? -> $x: (brake pad, be make from, $x) -> (The brake pads, are made from carbon-fibre, now) -> now (1252ms) What are brake pads made of? the same material 0.222222222221 What are brake pads made of? -> $x: (brake pad, be make from, $x) -> (The brake pads, are made from, the same material) -> the same material (1462ms) What are brake pads made of? Brake dust 0.222222222221 What are brake pads made of? -> $x: ($x, make of, brake pad) -> (Brake dust, is made of, brake pad dust) -> Brake dust (1251ms) What are brake pads made of? soft Ferro Carbon material 0.222222222221 What are brake pads made of? -> $x: (brake pad, be make from, $x) -> (Hawk brake pads, are made from, soft Ferro Carbon material) -> soft Ferro Carbon material (1462ms) What are brake pads made of? ceramic fibers 0.222222222221 What are brake pads made of? -> $x: (brake pad, be make from, $x) -> (Ceramic Brake Pads, Are made from, ceramic fibers) -> ceramic fibers (1462ms) What are brake pads made of? several components 0.222222222221 What are brake pads made of? -> $x: (brake pad, be make from, $x) -> (Brake pads, are made from, several components) -> several components (1462ms) What are brake pads made of? ANNAT 0.222222222218 What are brake pads made of? -> $x: ($x, be in, brake pad) -> (ANNAT, is specialized in, auto brake pad) -> ANNAT (1502ms) What are brake pads made of? Asbestos fibers 0.222222222218 What are brake pads made of? -> $x: ($x, be in, brake pad) -> (Asbestos fibers, were once used in, automobile brake pads) -> Asbestos fibers (1833ms) What are brake pads made of? choices 0.222222222218 What are brake pads made of? -> $x: ($x, be in, brake pad) -> (choices, is in, the brake pads) -> choices (1747ms) What are brake pads made of? much life 0.222222222218 What are brake pads made of? -> $x: ($x, be in, brake pad) -> (much life, is left in, your brake pads) -> much life (1541ms) What are brake pads made of? thermocouples 0.222222222218 What are brake pads made of? -> $x: ($x, be in, brake pad) -> (thermocouples, were installed in, the front brake pads) -> thermocouples (1541ms) What are brake pads made of? drivers 0.222222222218 What are brake pads made of? -> $x: ($x, be in, brake pad) -> (drivers, is truly a milestone in, brake pad material development) -> drivers (1747ms) What are brake pads made of? asbestos 0.222222222218 What are brake pads made of? -> $x: ($x, be in, brake pad) -> (asbestos, was used in, brake and clutch pads) -> asbestos (1747ms) What are brake pads made of? soil or grit 0.222222222218 What are brake pads made of? -> $x: ($x, be in, brake pad) -> (soil or grit, is trapped in, the brake pad) -> soil or grit (1747ms) What are brake pads made of? the product 0.222222222218 What are brake pads made of? -> $x: ($x, be in, brake pad) -> (the product, is found in, brake pads) -> the product (1541ms) What are brake pads made of? Non-building uses 0.222222222218 What are brake pads made of? -> $x: ($x, be in, brake pad) -> (Non-building uses, were in, brake pads) -> Non-building uses (1747ms) What are brake pads made of? a set 0.222222222218 What are brake pads made of? -> $x: ($x, be in, brake pad) -> (a set, was used almost exclusively in, brake pads) -> a set (1747ms) What are brake pads made of? copper 0.222222222218 What are brake pads made of? -> $x: ($x, be in, brake pad) -> (copper, is its use in, brake linings/pads) -> copper (1502ms) What are brake pads made of? function 0.222222222218 What are brake pads made of? -> $x: ($x, be in, brake pad) -> (function, is left in, your brake pads) -> function (1747ms) What are brake pads made of? OES specifications 0.222222222218 What are brake pads made of? -> $x: ($x, be in, brake pad) -> (OES specifications, are also included in, most Remsa Brake pads) -> OES specifications (1502ms) What are brake pads made of? Hong Kong SAR] ANNAT 0.222222222218 What are brake pads made of? -> $x: ($x, be in, brake pad) -> (Hong Kong SAR] ANNAT, is specialized in, auto brake pad) -> Hong Kong SAR] ANNAT (1541ms) What are brake pads made of? heat 0.222222222218 What are brake pads made of? -> $x: ($x, be in, brake pad) -> (heat, is generated in, the brake pads) -> heat (1541ms) What are brake pads made of? White fibres 0.222222222218 What are brake pads made of? -> $x: ($x, be in, brake pad) -> (White fibres, were used in, brake pads) -> White fibres (1747ms) What are brake pads made of? material 0.222222222218 What are brake pads made of? -> $x: ($x, be in, brake pad) -> (material, can be caught in, the brake pads) -> material (1502ms) What are brake pads made of? friction materials 0.222222222218 What are brake pads made of? -> $x: ($x, be in, brake pad) -> (friction materials, are used in, brake pads today) -> friction materials (1502ms) What are brake pads made of? certain emissions 0.222222222218 What are brake pads made of? -> $x: ($x, be in, brake pad) -> (certain emissions, are also found in, brake pads) -> certain emissions (1502ms) What are brake pads made of? Asbestos 0.222222222218 What are brake pads made of? -> $x: ($x, be in, brake pad) -> (Asbestos, was once commonly used in, automotive brake pads) -> Asbestos (1541ms) What are brake pads made of? organic materials 0.111111111111 What are brake pads made of? -> $x: (brake pad, be make of, $x) -> (brake pads, are those made of, organic materials) -> organic materials (1885ms) What are brake pads made of? a relatively soft resinous composite 0.111111111111 What are brake pads made of? -> $x: (brake pad, be make of, $x) -> (Brake pads, are made of, a relatively soft resinous composite) -> a relatively soft resinous composite (1885ms) What are brake pads made of? a metal backing plate 0.111111111111 What are brake pads made of? -> $x: (brake pad, be make of, $x) -> (Brake pads, are made of, a metal backing plate) -> a metal backing plate (1885ms) What are brake pads made of? a compound 0.111111111111 What are brake pads made of? -> $x: (brake pad, be make of, $x) -> (Brembo front brake pads, are made of, a compound) -> a compound (1885ms) What are brake pads made of? hazardous materials 0.111111111111 What are brake pads made of? -> $x: (brake pad, be make of, $x) -> (brake pads, are made of very, hazardous materials) -> hazardous materials (1834ms) What are brake pads made of? exact fit 0.111111111111 What are brake pads made of? -> $x: (brake pad, be make of, $x) -> (These long lasting brake pads, are made to be of, exact fit) -> exact fit (1885ms) What are brake pads made of? a hard material 0.111111111111 What are brake pads made of? -> $x: (brake pad, be make of, $x) -> (The brake pads, appear to be made of, a hard material) -> a hard material (1885ms) What are brake pads made of? metal shavings 0.111111111111 What are brake pads made of? -> $x: (brake pad, be make of, $x) -> (the brake pads, are made of, metal shavings) -> metal shavings (1834ms) What are brake pads made of? a material 0.111111111111 What are brake pads made of? -> $x: (brake pad, be make of, $x) -> (the brake pads, to be made of, a material) -> a material (1885ms) What are brake pads made of? a sinter mixture 0.111111111111 What are brake pads made of? -> $x: (brake pad, be make of, $x) -> (The braking pads, are made of, a sinter mixture) -> a sinter mixture (1885ms) What are brake pads made of? crystal :eek 0.111111111111 What are brake pads made of? -> $x: (brake pad, be make of, $x) -> (your brake pads, are made of, crystal :eek) -> crystal :eek (1885ms) What are brake pads made of? different materials 0.111111111111 What are brake pads made of? -> $x: (brake pad, be make of, $x) -> (Truck disc brake pads, are made of, different materials) -> different materials (1833ms) What are brake pads made of? hard , semi-metallic materials 0.111111111111 What are brake pads made of? -> $x: (brake pad, be make of, $x) -> (Most brake pads, now are made of, hard , semi-metallic materials) -> hard , semi-metallic materials (1885ms) What are brake pads made of? friction lining 0.111111111111 What are brake pads made of? -> $x: (brake pad, be make of, $x) -> (Types Brake pads, are made of, friction lining) -> friction lining (1885ms) What are brake pads made of? non-asbestos material 0.111111111111 What are brake pads made of? -> $x: (brake pad, be make of, $x) -> (The AutoExe Sports Brake Pad, is made of, non-asbestos material) -> non-asbestos material (1834ms) What are brake pads made of? the integral components -0.0 What are brake pads made of? -> $x: (brake pad, be of, $x) -> (The brake pad, is one of, the integral components) -> the integral components (1911ms) What are brake pads made of? racing materials -0.0 What are brake pads made of? -> $x: (brake pad, be make, $x) -> (The yellow stuff brake pad, is made with, racing materials) -> racing materials (1916ms) What are brake pads made of? the potential outcomes -0.0 What are brake pads made of? -> $x: (brake pad, be of, $x) -> (brake pads, are only some of, the potential outcomes) -> the potential outcomes (1920ms) What are brake pads made of? the best -0.0 What are brake pads made of? -> $x: (brake pad, be of, $x) -> (ultra-efficient steel brake pads, are one of, the best) -> the best (1920ms) What are brake pads made of? value and interest -0.0 What are brake pads made of? -> $x: (brake pad, be of, $x) -> (the brake pads, are definitely something of, value and interest) -> value and interest (1918ms) What are brake pads made of? last a long time -0.0 What are brake pads made of? -> $x: (brake pad, do, $x) -> (brake pads, do, last a long time) -> last a long time (1920ms) What are brake pads made of? the wheel area -0.0 What are brake pads made of? -> $x: ($x, cause, brake pad) -> (the wheel area, can be caused by, worn brake pads) -> the wheel area (1923ms) What are brake pads made of? 14 percent -0.0 What are brake pads made of? -> $x: (brake pad, be make, $x) -> (The brake pads, were made, 14 percent) -> 14 percent (1924ms) What are brake pads made of? research -0.0 What are brake pads made of? -> $x: (brake pad, do, $x) -> (brake pads, did lots of, research) -> research (1911ms) What are brake pads made of? any carbon brake track wheel -0.0 What are brake pads made of? -> $x: (brake pad, be make, $x) -> (cork brake pads, are made to give, any carbon brake track wheel) -> any carbon brake track wheel (1916ms) What are brake pads made of? more work -0.0 What are brake pads made of? -> $x: (brake pad, do, $x) -> (a brake pad, called upon to do, more work) -> more work (1923ms) What are brake pads made of? owners -0.0 What are brake pads made of? -> $x: (brake pad, do, $x) -> (the brake pads and fluids, can be done quickly by, owners) -> owners (1920ms) What are brake pads made of? dust -0.0 What are brake pads made of? -> $x: (brake pad, be make, $x) -> ('s brake pad, was making, dust) -> dust (1921ms) What are brake pads made of? regular maintenance -0.0 What are brake pads made of? -> $x: (brake pad, be of, $x) -> (brake pads, should be considered a part of, regular maintenance) -> regular maintenance (1916ms) What are brake pads made of? the most common brake repair issues -0.0 What are brake pads made of? -> $x: (brake pad, be of, $x) -> (the brake pads, is one of, the most common brake repair issues) -> the most common brake repair issues (1906ms) What are brake pads made of? the past -0.0 What are brake pads made of? -> $x: (brake pad, be of, $x) -> (brake pads, is a thing of, the past) -> the past (1921ms) What are brake pads made of? when they are applied -0.0 What are brake pads made of? -> $x: (brake pad, do, $x) -> (All brake pads, do produce vibrations, when they are applied) -> when they are applied (1923ms) What are brake pads made of? the customer -0.0 What are brake pads made of? -> $x: ($x, be make, brake pad) -> (the customer, is free to make, their own brake pad selection) -> the customer (1909ms) What are brake pads made of? a allen key -0.0 What are brake pads made of? -> $x: (brake pad, do, $x) -> (the brake pads, is done by, a allen key) -> a allen key (1918ms) What are brake pads made of? a black art -0.0 What are brake pads made of? -> $x: (brake pad, be of, $x) -> (brake pad selection, is a bit of, a black art) -> a black art (1918ms) What are brake pads made of? rust and corrosion -0.0 What are brake pads made of? -> $x: (brake pad, be of, $x) -> (worn rear brake pads, was bits of, rust and corrosion) -> rust and corrosion (1906ms) What are brake pads made of? steel or copper -0.0 What are brake pads made of? -> $x: (brake pad, be of, $x) -> (brake pads, are containing tiny amounts of, steel or copper) -> steel or copper (1920ms) What are brake pads made of? compound -0.0 What are brake pads made of? -> $x: (brake pad, be of, $x) -> (Ceramic brake pads, are composed of, compound) -> compound (1923ms) What are brake pads made of? composite ceramic fibers -0.0 What are brake pads made of? -> $x: (brake pad, be make with, $x) -> (brake pads, are made with, composite ceramic fibers) -> composite ceramic fibers (1924ms) What are brake pads made of? the brake -0.0 What are brake pads made of? -> $x: (brake pad, be of, $x) -> (The brake pad, is the part of, the brake) -> the brake (1922ms) What are brake pads made of? the disc braking system -0.0 What are brake pads made of? -> $x: (brake pad, be of, $x) -> (Brake pads, are a part of, the disc braking system) -> the disc braking system (1920ms) What are brake pads made of? pollution -0.0 What are brake pads made of? -> $x: (brake pad, be of, $x) -> (worn-down tires and brake pads, are a major source of, pollution) -> pollution (1916ms) What are brake pads made of? a brake system -0.0 What are brake pads made of? -> $x: (brake pad, be of, $x) -> (brake pads, are only 1/4 of, a brake system) -> a brake system (1918ms) What are brake pads made of? fire trucks -0.0 What are brake pads made of? -> $x: (brake pad, be use for, $x) -> (the same brake pad technology, is widely used for, fire trucks) -> fire trucks (1914ms) What are brake pads made of? the many examples -0.0 What are brake pads made of? -> $x: (brake pad, be of, $x) -> (brake pads, are just a few of, the many examples) -> the many examples (1914ms) What are brake pads made of? the common reason?s -0.0 What are brake pads made of? -> $x: (brake pad, be of, $x) -> (the brake pad and rotor, is another of, the common reason?s) -> the common reason?s (1921ms) What are brake pads made of? a normal foot size -0.0 What are brake pads made of? -> $x: (brake pad, be of, $x) -> (the brake pad, is almost of, a normal foot size) -> a normal foot size (1906ms) What are brake pads made of? oil -0.0 What are brake pads made of? -> $x: (brake pad, be of, $x) -> (Brake pads and disc, must be free of, oil) -> oil (1914ms) What are brake pads made of? ceramic and copper -0.0 What are brake pads made of? -> $x: (brake pad, be of, $x) -> (Ceramic brakes and pads, are a mixture of, ceramic and copper) -> ceramic and copper (1921ms) What are brake pads made of? proper maintenance -0.0 What are brake pads made of? -> $x: (brake pad, do, $x) -> (brake pads, do require, proper maintenance) -> proper maintenance (1920ms) What are brake pads made of? the most important components -0.0 What are brake pads made of? -> $x: (brake pad, be of, $x) -> (The brake pad, is one of, the most important components) -> the most important components (1911ms) What are brake pads made of? the screws -0.0 What are brake pads made of? -> $x: (brake pad, be of, $x) -> (the brake pads, is an indication of, the screws) -> the screws (1909ms) What are brake pads made of? the most important upgrades -0.0 What are brake pads made of? -> $x: (brake pad, be of, $x) -> (brake pads, are one of, the most important upgrades) -> the most important upgrades (1906ms) What are brake pads made of? the first part -0.0 What are brake pads made of? -> $x: ($x, cause, brake pad) -> (the first part, is caused by, overheated brake pads) -> the first part (1911ms) What are brake pads made of? the most critical regions -0.0 What are brake pads made of? -> $x: (brake pad, be of, $x) -> (the rotors and brake pads, are one of, the most critical regions) -> the most critical regions (1909ms) What are brake pads made of? the whole brake system -0.0 What are brake pads made of? -> $x: (brake pad, be of, $x) -> (the brake pads, are just a part of, the whole brake system) -> the whole brake system (1918ms) What are brake pads made of? Excessive heat -0.0 What are brake pads made of? -> $x: ($x, cause, brake pad) -> (Excessive heat, can cause resins in, your brake pad) -> Excessive heat (1914ms) What are brake pads made of? focus -0.0 What are brake pads made of? -> $x: (brake pad, be of, $x) -> (Brake pads and discs, continue to be a key area of, focus) -> focus (1918ms) What are brake pads made of? the highest-volume parts -0.0 What are brake pads made of? -> $x: (brake pad, be of, $x) -> (Larry Carley Brake pads, are one of, the highest-volume parts) -> the highest-volume parts (1913ms) What are brake pads made of? the great reasons -0.0 What are brake pads made of? -> $x: (brake pad, be of, $x) -> (Brake pads, can be fashionable too One of, the great reasons) -> the great reasons (1923ms) What are brake pads made of? the most common types -0.0 What are brake pads made of? -> $x: (brake pad, be of, $x) -> (Brake pads, are one of, the most common types) -> the most common types (1916ms) What are brake pads made of? Grinding sounds -0.0 What are brake pads made of? -> $x: ($x, cause, brake pad) -> (Grinding sounds, may be caused by completely worn, brake pads) -> Grinding sounds (1916ms) What are brake pads made of? organic ingredients -0.0 What are brake pads made of? -> $x: (brake pad, be make, $x) -> (Brake pads, were originally made with, organic ingredients) -> organic ingredients (1923ms) What are brake pads made of? 4ETS -0.0 What are brake pads made of? -> $x: ($x, cause, brake pad) -> (4ETS, cause, premature brake pad wear) -> 4ETS (1921ms) What are brake pads made of? top-rated performance -0.0 What are brake pads made of? -> $x: (brake pad, be of, $x) -> (Rotex brake pads, are a combination of, top-rated performance) -> top-rated performance (1921ms) What are brake pads made of? the brakes and cables class -0.0 What are brake pads made of? -> $x: (brake pad, be of, $x) -> (the brake pads, is part of, the brakes and cables class) -> the brakes and cables class (1911ms) What are brake pads made of? the most crucial aspects -0.0 What are brake pads made of? -> $x: (brake pad, be of, $x) -> (the rotors and brake pads, are one of, the most crucial aspects) -> the most crucial aspects (1916ms) What are brake pads made of? the key components -0.0 What are brake pads made of? -> $x: (brake pad, be of, $x) -> (Brake pads, are one of, the key components) -> the key components (1920ms) What are brake pads made of? each piston -0.0 What are brake pads made of? -> $x: (brake pad, be use for, $x) -> (A separate brake pad, is used for, each piston) -> each piston (1914ms) What are brake pads made of? vibrations -0.0 What are brake pads made of? -> $x: (brake pad, do, $x) -> (All brake pads, do produce, vibrations) -> vibrations (1914ms) What are brake pads made of? the USA NOTES -0.0 What are brake pads made of? -> $x: (brake pad, make in, $x) -> (Brake pads, included Made in, the USA NOTES) -> the USA NOTES (1916ms) What are brake pads made of? the braking system -0.0 What are brake pads made of? -> $x: (brake pad, be of, $x) -> (Brake pads, are an integral element of, the braking system) -> the braking system (1923ms) What are brake pads made of? the disc rotors -0.0 What are brake pads made of? -> $x: (brake pad, do, $x) -> (brake pads, usually do wear out, the disc rotors) -> the disc rotors (1921ms) What are brake pads made of? steel and copper -0.0 What are brake pads made of? -> $x: (brake pad, be of, $x) -> (Low-metallic brake pads, are a mixed of, steel and copper) -> steel and copper (1923ms) What are brake pads made of? sintered copper -0.0 What are brake pads made of? -> $x: (brake pad, be of, $x) -> (These brake pads, are composed of, sintered copper) -> sintered copper (1924ms) What are brake pads made of? the rotors -0.0 What are brake pads made of? -> $x: (brake pad, do, $x) -> (brake pads, will do damage to, the rotors) -> the rotors (1918ms) What are brake pads made of? the components -0.0 What are brake pads made of? -> $x: (brake pad, be of, $x) -> (Brake pads, are one of, the components) -> the components (1918ms) What are brake pads made of? high temperature use -0.0 What are brake pads made of? -> $x: (brake pad, be of, $x) -> (The yellow stuff brake pad, is capable of, high temperature use) -> high temperature use (1909ms) What are brake pads made of? new parking brake -0.666666666667 What are brake pads made of? -> $x: ($x, pad, brake) -> (new parking brake, pads, the parking brakes) -> new parking brake (1924ms) What are brake pads made of? 4 comments car brake -0.666666666667 What are brake pads made of? -> $x: ($x, pad, brake) -> (4 comments car brake, pads, brake rotors) -> 4 comments car brake (1924ms) What are brake pads made of? Schwinn -0.666666666667 What are brake pads made of? -> $x: ($x, pad, brake) -> (Schwinn, padded, saddle and alloy linear pull brakes) -> Schwinn (1924ms) What are brake pads made of? Brake -0.666666666667 What are brake pads made of? -> $x: ($x, pad, brake) -> (Brake, pads, Brake shoes Shock absorbers and struts) -> Brake (1925ms) What are brake pads made of? the brake caliper -0.666666666667 What are brake pads made of? -> $x: ($x, pad, brake) -> (the brake caliper, forcing the pads against, the brake rotor) -> the brake caliper (1924ms) What are brake pads made of? a kit -0.666666666667 What are brake pads made of? -> $x: ($x, pad, brake) -> (a kit, refreshes the brakes pad surface under, braking) -> a kit (1924ms) How did Adolf Hitler die? the theories 0.7777777777730001 How did Adolf Hitler die? -> $x: (hitler, die of, $x) -> (HOW HITLER, DIED Some of, the theories) -> the theories (1643ms) How did Adolf Hitler die? breast cancer 0.7777777777730001 How did Adolf Hitler die? -> $x: (hitler, die of, $x) -> (Hitler 's mother, died of, breast cancer) -> breast cancer (1643ms) How did Adolf Hitler die? a self-inflicted gunshot wound 0.7777777777730001 How did Adolf Hitler die? -> $x: (hitler, die of, $x) -> (Adolph Hitler, would die of, a self-inflicted gunshot wound) -> a self-inflicted gunshot wound (1642ms) How did Adolf Hitler die? a lung hemorrhage 0.7777777777730001 How did Adolf Hitler die? -> $x: (hitler, die of, $x) -> (Hitler 's father, died suddenly of, a lung hemorrhage) -> a lung hemorrhage (1643ms) How did Adolf Hitler die? a stroke 0.7777777777730001 How did Adolf Hitler die? -> $x: (hitler, die of, $x) -> (Hitler, had died of, a stroke) -> a stroke (1642ms) How did Adolf Hitler die? old age 0.7777777777730001 How did Adolf Hitler die? -> $x: (hitler, die of, $x) -> (Hitler, died of, old age) -> old age (1642ms) How did Adolf Hitler die? measles 0.7777777777730001 How did Adolf Hitler die? -> $x: (hitler, die of, $x) -> (Hitler?s younger brother Edmund, died of, measles) -> measles (1643ms) How did Adolf Hitler die? natural causes 0.7777777777730001 How did Adolf Hitler die? -> $x: (hitler, die of, $x) -> (. Hitler, may die of, natural causes) -> natural causes (1841ms) How did Adolf Hitler die? the blade 0.555555555555 How did Adolf Hitler die? -> $x: (hitler, die on, $x) -> (Hitler?s enemies, had died on, the blade) -> the blade (2093ms) How did Adolf Hitler die? the same day 0.555555555555 How did Adolf Hitler die? -> $x: (hitler, die on, $x) -> (Adolph Hitler, apparently died on, the same day) -> the same day (1841ms) How did Adolf Hitler die? April 30 , 1945 0.555555555555 How did Adolf Hitler die? -> $x: (hitler, die on, $x) -> (Adolf Hitler, died on, April 30 , 1945) -> April 30 , 1945 (1841ms) How did Adolf Hitler die? May 1st 0.555555555555 How did Adolf Hitler die? -> $x: (hitler, die on, $x) -> (Adolf Hitler, died on, May 1st) -> May 1st (1841ms) How did Adolf Hitler die? April 30th 1945 0.555555555555 How did Adolf Hitler die? -> $x: (hitler, die on, $x) -> (Adolf Hitler, died on, April 30th 1945) -> April 30th 1945 (1841ms) How did Adolf Hitler die? April 30th 0.555555555555 How did Adolf Hitler die? -> $x: (hitler, die on, $x) -> (Hitler, died on, April 30th) -> April 30th (1841ms) How did Adolf Hitler die? June 1 , 1960 0.555555555555 How did Adolf Hitler die? -> $x: (hitler, die on, $x) -> (Paula Hitler, died on, June 1 , 1960) -> June 1 , 1960 (2093ms) How did Adolf Hitler die? 20 April 1889 0.555555555554 How did Adolf Hitler die? -> $x: (adolf hitler, be bear on, $x) -> (Adolf Hitler, was born on, 20 April 1889) -> 20 April 1889 (2559ms) How did Adolf Hitler die? April 20th 0.555555555554 How did Adolf Hitler die? -> $x: (adolf hitler, be bear on, $x) -> (Adolf Hitler, was born on, April 20th) -> April 20th (3194ms) How did Adolf Hitler die? April 20 , 1954 0.555555555554 How did Adolf Hitler die? -> $x: (adolf hitler, be bear on, $x) -> (Adolf Hitler, was born on, April 20 , 1954) -> April 20 , 1954 (2093ms) How did Adolf Hitler die? April 20,1889 0.555555555554 How did Adolf Hitler die? -> $x: (adolf hitler, be bear on, $x) -> (2251 Adolf Hitler Adolf Hitler, was born on, April 20,1889) -> April 20,1889 (3194ms) How did Adolf Hitler die? the 20th , 0.555555555554 How did Adolf Hitler die? -> $x: (adolf hitler, be bear on, $x) -> (Adolf Hitler, was born on, the 20th ,) -> the 20th , (3012ms) How did Adolf Hitler die? 20th April 1889 0.555555555554 How did Adolf Hitler die? -> $x: (adolf hitler, be bear on, $x) -> (Adolf Hitler, was born on, 20th April 1889) -> 20th April 1889 (2559ms) How did Adolf Hitler die? the 20th April 1889 0.555555555554 How did Adolf Hitler die? -> $x: (adolf hitler, be bear on, $x) -> (2011 Adolf Hitler, was born on, the 20th April 1889) -> the 20th April 1889 (2559ms) How did Adolf Hitler die? April 20th , 1889 0.555555555554 How did Adolf Hitler die? -> $x: (adolf hitler, be bear on, $x) -> (Adolf Hitler, was born on, April 20th , 1889) -> April 20th , 1889 (2601ms) How did Adolf Hitler die? Austrian soil 0.555555555554 How did Adolf Hitler die? -> $x: (adolf hitler, be bear on, $x) -> (Adolf Hitler, had been born on, Austrian soil) -> Austrian soil (2601ms) How did Adolf Hitler die? April 20th 1889 0.555555555554 How did Adolf Hitler die? -> $x: (adolf hitler, be bear on, $x) -> ('s Birthplace Adolf Hitler, was born on, April 20th 1889) -> April 20th 1889 (3012ms) How did Adolf Hitler die? 1889 0.555555555554 How did Adolf Hitler die? -> $x: (adolf hitler, be bear on, $x) -> (Adolf Hitler, is a person born on the date, 1889) -> 1889 (2559ms) How did Adolf Hitler die? 20th April 0.555555555554 How did Adolf Hitler die? -> $x: (adolf hitler, be bear on, $x) -> (Adolf Hitler, was born on, 20th April) -> 20th April (2093ms) How did Adolf Hitler die? 20th April , 1889 0.555555555554 How did Adolf Hitler die? -> $x: (adolf hitler, be bear on, $x) -> (Adolf Hitler, was born on, 20th April , 1889) -> 20th April , 1889 (2601ms) How did Adolf Hitler die? April 20 , 1889 0.555555555554 How did Adolf Hitler die? -> $x: (adolf hitler, be bear on, $x) -> (Contents Childhood Adolf Hitler, was born on, April 20 , 1889) -> April 20 , 1889 (3194ms) How did Adolf Hitler die? April 20 0.555555555554 How did Adolf Hitler die? -> $x: (adolf hitler, be bear on, $x) -> (Adolf Hitler, was born on, April 20) -> April 20 (2601ms) How did Adolf Hitler die? April 20 1889 0.555555555554 How did Adolf Hitler die? -> $x: (adolf hitler, be bear on, $x) -> (youth Adolf Hitler, was born on, April 20 1889) -> April 20 1889 (2093ms) How did Adolf Hitler die? 1960 0.555555555552 How did Adolf Hitler die? -> $x: (adolf hitler, die in, $x) -> (Adolf Hitler, died in, 1960) -> 1960 (3194ms) How did Adolf Hitler die? action 0.555555555552 How did Adolf Hitler die? -> $x: (adolf hitler, die in, $x) -> (April 30 Adolf Hitler, died in, action) -> action (3194ms) How did Adolf Hitler die? Berlin 0.555555555552 How did Adolf Hitler die? -> $x: (adolf hitler, die in, $x) -> (Adolf Hitler, died in, Berlin) -> Berlin (3194ms) How did Adolf Hitler die? Volkswagen Beetle 0.444444444443 How did Adolf Hitler die? -> $x: ($x, invent, adolf hitler) -> (Volkswagen Beetle, was invented by, Adolf Hitler) -> Volkswagen Beetle (5036ms) How did Adolf Hitler die? AES affiliates 0.444444444443 How did Adolf Hitler die? -> $x: ($x, influence, adolf hitler) -> (AES affiliates, influenced, Adolf Hitler) -> AES affiliates (3194ms) How did Adolf Hitler die? Miami Beach 0.444444444443 How did Adolf Hitler die? -> $x: (adolf hitler, live in, $x) -> (Adolf Hitler, living in, Miami Beach) -> Miami Beach (5037ms) How did Adolf Hitler die? the Thule Society 0.444444444443 How did Adolf Hitler die? -> $x: ($x, influence, adolf hitler) -> (the Thule Society, influenced, Adolf Hitler) -> the Thule Society (5036ms) How did Adolf Hitler die? Lueger 0.444444444443 How did Adolf Hitler die? -> $x: ($x, influence, adolf hitler) -> (Lueger, was a major influence on, the young Adolf Hitler) -> Lueger (4968ms) How did Adolf Hitler die? Leonding 0.444444444443 How did Adolf Hitler die? -> $x: (adolf hitler, live in, $x) -> (Adolf Hitler?s parents, had lived in, Leonding) -> Leonding (4051ms) How did Adolf Hitler die? Vienna 0.444444444443 How did Adolf Hitler die? -> $x: (adolf hitler, live in, $x) -> (the Events and Experiences Adolf Hitler, lived in, Vienna) -> Vienna (4968ms) How did Adolf Hitler die? Not least 0.444444444443 How did Adolf Hitler die? -> $x: ($x, influence, adolf hitler) -> (Not least, was their influence on, Adolf Hitler) -> Not least (5149ms) How did Adolf Hitler die? a french teenager 0.444444444443 How did Adolf Hitler die? -> $x: (adolf hitler, have affair with, $x) -> (Adolf Hitler, had an affair with, a french teenager) -> a french teenager (4967ms) How did Adolf Hitler die? Sch?nerer?s ideas 0.444444444443 How did Adolf Hitler die? -> $x: ($x, influence, adolf hitler) -> (Sch?nerer?s ideas, had a major influence on, Adolf Hitler) -> Sch?nerer?s ideas (4967ms) How did Adolf Hitler die? a ripe old age 0.444444444443 How did Adolf Hitler die? -> $x: (adolf hitler, live on, $x) -> (Adolf Hitler, lived on to, a ripe old age) -> a ripe old age (4967ms) How did Adolf Hitler die? seclusion 0.444444444443 How did Adolf Hitler die? -> $x: (adolf hitler, live in, $x) -> (Adolf Hitler, lived in, seclusion) -> seclusion (5036ms) How did Adolf Hitler die? a vocal anti-Semite 0.444444444443 How did Adolf Hitler die? -> $x: ($x, influence, adolf hitler) -> (a vocal anti-Semite, later influenced, Adolf Hitler) -> a vocal anti-Semite (4051ms) How did Adolf Hitler die? Denis Fahey 0.444444444443 How did Adolf Hitler die? -> $x: ($x, influence, adolf hitler) -> (Denis Fahey, Influenced, Adolf Hitler) -> Denis Fahey (4968ms) How did Adolf Hitler die? Binding?s and Hoche?s study 0.444444444443 How did Adolf Hitler die? -> $x: ($x, influence, adolf hitler) -> (Binding?s and Hoche?s study, influenced, Adolf Hitler) -> Binding?s and Hoche?s study (3194ms) How did Adolf Hitler die? Arthur de Gobineau 0.444444444443 How did Adolf Hitler die? -> $x: ($x, influence, adolf hitler) -> (Arthur de Gobineau, Influenced, Adolf Hitler) -> Arthur de Gobineau (5036ms) How did Adolf Hitler die? bunker number 0.444444444443 How did Adolf Hitler die? -> $x: (adolf hitler, live in, $x) -> (Adolf Hitler, lived in, bunker number) -> bunker number (4051ms) How did Adolf Hitler die? Liverpool 0.444444444443 How did Adolf Hitler die? -> $x: (adolf hitler, live in, $x) -> (Adolf Hitler, lived in, Liverpool) -> Liverpool (4968ms) How did Adolf Hitler die? the Nova Beetle 0.444444444443 How did Adolf Hitler die? -> $x: ($x, invent, adolf hitler) -> (the Nova Beetle, may be invented by, Adolf Adolf hitler) -> the Nova Beetle (4051ms) How did Adolf Hitler die? Upper Stanhope Street 0.444444444443 How did Adolf Hitler die? -> $x: (adolf hitler, live in, $x) -> (Adolf Hitler?s half-brother, lived in, Upper Stanhope Street) -> Upper Stanhope Street (5037ms) How did Adolf Hitler die? anti-Semitism 0.444444444443 How did Adolf Hitler die? -> $x: ($x, influence, adolf hitler) -> (anti-Semitism, influenced, Adolf Hitler) -> anti-Semitism (5036ms) How did Adolf Hitler die? Pre-emptive war 0.444444444443 How did Adolf Hitler die? -> $x: ($x, invent, adolf hitler) -> (Pre-emptive war, was invented by, Adolf Hitler) -> Pre-emptive war (5036ms) How did Adolf Hitler die? cancer 0.444444444443 How did Adolf Hitler die? -> $x: (hitler, die from, $x) -> (Klara Hitler, died from, cancer) -> cancer (4968ms) How did Adolf Hitler die? 1964 0.444444444442 How did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Hitler, Died in, 1964) -> 1964 (5149ms) How did Adolf Hitler die? Argentina 0.444444444442 How did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Hitler, Died in, Argentina) -> Argentina (5149ms) How did Adolf Hitler die? 1938 0.444444444442 How did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Hitler, had died in, 1938) -> 1938 (5251ms) How did Adolf Hitler die? the capital 0.444444444442 How did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Hitler, to die in, the capital) -> the capital (5251ms) How did Adolf Hitler die? argentina 0.444444444442 How did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (*** Hitler, died an old man in, argentina) -> argentina (5240ms) How did Adolf Hitler die? Munich 0.444444444442 How did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Hitler, died in, Munich) -> Munich (5240ms) How did Adolf Hitler die? a concentration camp 0.444444444442 How did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Hitler?s personal astrologer, would die in, a concentration camp) -> a concentration camp (5251ms) How did Adolf Hitler die? the bunker 0.444444444442 How did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Hitler, died in, the bunker) -> the bunker (5251ms) How did Adolf Hitler die? the bombing 0.444444444442 How did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Hitler, dies in, the bombing) -> the bombing (5240ms) How did Adolf Hitler die? the 60?s? 0.444444444442 How did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Proof Hitler, Died in, the 60?s?) -> the 60?s? (5251ms) How did Adolf Hitler die? 1945 0.444444444442 How did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Adolph Hitler, died in, 1945) -> 1945 (5261ms) How did Adolf Hitler die? a Paris movie theater 0.444444444442 How did Adolf Hitler die? -> $x: (hitler, die in, $x) -> ('s fantasia Hitler, dies in, a Paris movie theater) -> a Paris movie theater (5240ms) How did Adolf Hitler die? a bunker 0.444444444442 How did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Hitler, really die in, a bunker) -> a bunker (5251ms) How did Adolf Hitler die? South America 0.444444444442 How did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Hitler, died an old man in, South America) -> South America (5251ms) How did Adolf Hitler die? the final battle 0.444444444442 How did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Hitler Youth, died in, the final battle) -> the final battle (5240ms) How did Adolf Hitler die? the 60s 0.444444444442 How did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Hitler, died in, the 60s) -> the 60s (5251ms) How did Adolf Hitler die? the struggle 0.444444444442 How did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Hitler , millions more, died in, the struggle) -> the struggle (5251ms) How did Adolf Hitler die? 1903 0.444444444442 How did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Alois Hitler, died in, 1903) -> 1903 (5261ms) How did Adolf Hitler die? battle 0.444444444442 How did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Hitler, had died in, battle) -> battle (5240ms) How did Adolf Hitler die? the war 0.444444444442 How did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Hitler, might have died in, the war) -> the war (5261ms) How did Adolf Hitler die? 1907 0.444444444442 How did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Hitler?s mother, died in, 1907) -> 1907 (5251ms) How did Adolf Hitler die? accident 0.444444444442 How did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (taht Hitler, died in, accident) -> accident (5251ms) How did Adolf Hitler die? 1944 0.444444444442 How did Adolf Hitler die? -> $x: (hitler, die in, $x) -> (Hitler, would have died in, 1944) -> 1944 (5251ms) How did Adolf Hitler die? the real story 0.44444444444 How did Adolf Hitler die? -> $x: ($x, happen to, hitler) -> (the real story, happened to, Hitler?s Holy Lance) -> the real story (5261ms) How did Adolf Hitler die? the 1936 Olympics 0.44444444444 How did Adolf Hitler die? -> $x: ($x, happen to, hitler) -> (the 1936 Olympics, happened to, the British Hitler Oaks) -> the 1936 Olympics (5271ms) How did Adolf Hitler die? the Middle East 0.44444444444 How did Adolf Hitler die? -> $x: ($x, happen to, hitler) -> (the Middle East, happened to, Hitler) -> the Middle East (5261ms) How did Adolf Hitler die? the Americans and Russians LIED 0.44444444444 How did Adolf Hitler die? -> $x: ($x, happen to, hitler) -> (the Americans and Russians LIED, happened to, Hitler) -> the Americans and Russians LIED (5261ms) How did Adolf Hitler die? River 0.44444444444 How did Adolf Hitler die? -> $x: ($x, happen to, hitler) -> (River, happened to, the real Hitler) -> River (5271ms) How did Adolf Hitler die? the thought 0.44444444444 How did Adolf Hitler die? -> $x: ($x, happen to, hitler) -> (the thought, happened to, Mussolini and Hitler) -> the thought (5261ms) How did Adolf Hitler die? Yep 0.44444444444 How did Adolf Hitler die? -> $x: ($x, happen to, hitler) -> (Yep, happened to, Hitler) -> Yep (5261ms) How did Adolf Hitler die? the Second World War 0.44444444444 How did Adolf Hitler die? -> $x: ($x, happen to, hitler) -> (the Second World War, happened to, the English Hitler) -> the Second World War (5271ms) How did Adolf Hitler die? A recent TV program 0.44444444444 How did Adolf Hitler die? -> $x: ($x, happen to, hitler) -> (A recent TV program, Really Happened to, Adolph Hitler) -> A recent TV program (5261ms) How did Adolf Hitler die? little knowledge 0.44444444444 How did Adolf Hitler die? -> $x: ($x, happen to, hitler) -> (little knowledge, happened to, Hitler) -> little knowledge (5261ms) How did Adolf Hitler die? Israeli jews kill Palestinians 0.44444444444 How did Adolf Hitler die? -> $x: ($x, happen to, hitler) -> (Israeli jews kill Palestinians, happened to, Hitler) -> Israeli jews kill Palestinians (5271ms) How did Adolf Hitler die? the answer 0.44444444444 How did Adolf Hitler die? -> $x: ($x, happen to, hitler) -> (the answer, so happened to be, Hitler) -> the answer (5261ms) How did Adolf Hitler die? the questions 0.44444444444 How did Adolf Hitler die? -> $x: ($x, happen to, hitler) -> (the questions, happened to, Hitler) -> the questions (5271ms) How did Adolf Hitler die? Assef 0.44444444444 How did Adolf Hitler die? -> $x: ($x, happen to, hitler) -> (Assef, happens to be, the Hitler-enamored bully) -> Assef (5261ms) How did Adolf Hitler die? A gunman 0.44444444444 How did Adolf Hitler die? -> $x: ($x, happen to, hitler) -> (A gunman, happens to Look like, a Cambodian Hitler) -> A gunman (5261ms) How did Adolf Hitler die? conflicting reports 0.44444444444 How did Adolf Hitler die? -> $x: ($x, happen to, hitler) -> (conflicting reports, happened to, Hitler) -> conflicting reports (5261ms) How did Adolf Hitler die? AP Mel Brooks 0.333333333332 How did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (AP Mel Brooks, does an impression of, Adolf Hitler) -> AP Mel Brooks (5291ms) How did Adolf Hitler die? See eg 0.333333333332 How did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (See eg, Did, Adolf Hitler) -> See eg (5291ms) How did Adolf Hitler die? Americans 0.333333333332 How did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (Americans, did n?t act against, Adolf Hitler) -> Americans (5280ms) How did Adolf Hitler die? Chamberlain 0.333333333332 How did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (Chamberlain, did with, Adolf Hitler) -> Chamberlain (5291ms) How did Adolf Hitler die? 1939 0.333333333332 How did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (1939, did, Adolf Hitler call) -> 1939 (5281ms) How did Adolf Hitler die? the same Satanic rituals 0.333333333332 How did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (the same Satanic rituals, did, Adolf Hitler) -> the same Satanic rituals (5271ms) How did Adolf Hitler die? millions more Africans and Asians 0.333333333332 How did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (millions more Africans and Asians, did, Adolf Hitler) -> millions more Africans and Asians (5291ms) How did Adolf Hitler die? Israel 0.333333333332 How did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (Israel, did, Adolf Hitler) -> Israel (5271ms) How did Adolf Hitler die? 200-Foot Crash Watch Video 0.333333333332 How did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (200-Foot Crash Watch Video, Did, Adolf Hitler Have) -> 200-Foot Crash Watch Video (5291ms) How did Adolf Hitler die? a lot 0.333333333332 How did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (a lot, so did, Adolf Hitler) -> a lot (5271ms) How did Adolf Hitler die? Hamsun 0.333333333332 How did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (Hamsun, did meet with, Adolf Hitler) -> Hamsun (5291ms) How did Adolf Hitler die? the Germans 0.333333333332 How did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (the Germans, did during, Adolf Hitler) -> the Germans (5271ms) How did Adolf Hitler die? Pauline Smith 0.333333333332 How did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (Pauline Smith, was doing, the Adolf Hitler Fan Club) -> Pauline Smith (5281ms) How did Adolf Hitler die? Neville Chamberlain 0.333333333332 How did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (Neville Chamberlain, had done with, Adolf Hitler) -> Neville Chamberlain (5281ms) How did Adolf Hitler die? the Reichstag fire 0.333333333332 How did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (the Reichstag fire, did for, Adolf Hitler) -> the Reichstag fire (5271ms) How did Adolf Hitler die? Antartica 0.333333333332 How did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (Antartica, did manage to bring, Adolf Hitler) -> Antartica (5281ms) How did Adolf Hitler die? How many people 0.333333333332 How did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (How many people, did kill, Adolf Hitler) -> How many people (5281ms) How did Adolf Hitler die? April 29 2010 0.333333333332 How did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (April 29 2010, did, Adolf Hitler) -> April 29 2010 (5281ms) How did Adolf Hitler die? The SS 0.333333333332 How did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (The SS, did take an oath to, Adolf Hitler) -> The SS (5291ms) How did Adolf Hitler die? Mussolini 0.333333333332 How did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (Mussolini, had so much to do with, Adolf Hitler) -> Mussolini (5271ms) How did Adolf Hitler die? esiff 0.333333333332 How did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (esiff, do, Adolf Hitler) -> esiff (5281ms) How did Adolf Hitler die? a European-wide Empire 0.333333333332 How did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (a European-wide Empire, did, Adolf Hitler) -> a European-wide Empire (5271ms) How did Adolf Hitler die? Banned Books 0.333333333332 How did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (Banned Books, only did, Adolf Hitler worship Jesus Christ) -> Banned Books (5280ms) How did Adolf Hitler die? the neo-nazi criminals 0.333333333332 How did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (the neo-nazi criminals, do their evil deeds for, Adolf Hitler) -> the neo-nazi criminals (5291ms) How did Adolf Hitler die? One is 0.333333333332 How did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (One is, Did, Adolf Hitler order genocide) -> One is (5291ms) How did Adolf Hitler die? 24 hours 0.333333333332 How did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (24 hours, had nothing to do with, deterring Adolf Hitler) -> 24 hours (5271ms) How did Adolf Hitler die? values 0.333333333332 How did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (values, so did, Adolf Hitler) -> values (5291ms) How did Adolf Hitler die? the same rituals 0.333333333332 How did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (the same rituals, did, Adolf Hitler) -> the same rituals (5271ms) How did Adolf Hitler die? strong religious convictions 0.333333333332 How did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (strong religious convictions, did, Adolf Hitler) -> strong religious convictions (5280ms) How did Adolf Hitler die? the Waffen SS 0.333333333332 How did Adolf Hitler die? -> $x: (adolf hitler, end in, $x) -> (Adolf Hitler?all european pacifists, ended up in, the Waffen SS) -> the Waffen SS (5271ms) How did Adolf Hitler die? hist 0.333333333332 How did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (hist, did, Adolf Hitler collaborate) -> hist (5281ms) How did Adolf Hitler die? nowhere in??? Mein Kampf 0.333333333332 How did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (nowhere in??? Mein Kampf, does, Adolf Hitler call) -> nowhere in??? Mein Kampf (5281ms) How did Adolf Hitler die? 14 months 0.333333333332 How did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (14 months, did, Adolf Hitler) -> 14 months (5281ms) How did Adolf Hitler die? Germany 0.333333333332 How did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (Germany, once did, Adolf Hitler) -> Germany (5281ms) How did Adolf Hitler die? Indiana Jones 0.333333333332 How did Adolf Hitler die? -> $x: ($x, do, adolf hitler) -> (Indiana Jones, did n?t really meet, Adolf Hitler) -> Indiana Jones (5291ms) How did Adolf Hitler die? power 0.333333333331 How did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, did n?t come to, power) -> power (5301ms) How did Adolf Hitler die? the best 0.333333333331 How did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, did, the best) -> the best (5310ms) How did Adolf Hitler die? the carpet 0.333333333331 How did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, did n?t chew, the carpet) -> the carpet (5310ms) How did Adolf Hitler die? God?s love 0.333333333331 How did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, did of, God?s love) -> God?s love (5301ms) How did Adolf Hitler die? the implementation 0.333333333331 How did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, did have his inputs in, the implementation) -> the implementation (5310ms) How did Adolf Hitler die? post-World War 0.333333333331 How did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, did, post-World War) -> post-World War (5301ms) How did Adolf Hitler die? the German salute* 0.333333333331 How did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, *does, the German salute*) -> the German salute* (5310ms) How did Adolf Hitler die? GERMANY 0.333333333331 How did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (ADOLF HITLER, did the same thing in, GERMANY) -> GERMANY (5301ms) How did Adolf Hitler die? Mein Kampf 0.333333333331 How did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, did in, Mein Kampf) -> Mein Kampf (5291ms) How did Adolf Hitler die? September 1938 0.333333333331 How did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, did in, September 1938) -> September 1938 (5310ms) How did Adolf Hitler die? the unbelievable 0.333333333331 How did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, did, the unbelievable) -> the unbelievable (5310ms) How did Adolf Hitler die? what he did 0.333333333331 How did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, to do, what he did) -> what he did (5301ms) How did Adolf Hitler die? Joseph Stalin 0.333333333331 How did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, as did, Joseph Stalin) -> Joseph Stalin (5301ms) How did Adolf Hitler die? a great job 0.333333333331 How did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, did, a great job) -> a great job (5301ms) How did Adolf Hitler die? the 1930 0.333333333331 How did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, did in, the 1930) -> the 1930 (5310ms) How did Adolf Hitler die? LEGAL 0.333333333331 How did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, did was, LEGAL) -> LEGAL (5310ms) How did Adolf Hitler die? the cause 0.333333333331 How did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (" Adolf Hitler, did more for, the cause) -> the cause (5301ms) How did Adolf Hitler die? the German Protestant churches 0.333333333331 How did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, did, the German Protestant churches) -> the German Protestant churches (5301ms) How did Adolf Hitler die? World War II 0.333333333331 How did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, did during, World War II) -> World War II (5310ms) How did Adolf Hitler die? Jewish people 0.333333333331 How did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, did that to, Jewish people) -> Jewish people (5310ms) How did Adolf Hitler die? the 1930s 0.333333333331 How did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, tried to do in, the 1930s) -> the 1930s (5310ms) How did Adolf Hitler die? the Berlin Olympics 0.333333333331 How did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, tried to do the same with, the Berlin Olympics) -> the Berlin Olympics (5301ms) How did Adolf Hitler die? hate America 0.333333333331 How did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (the Adolf Hitlers and Osama bin Ladens, do, hate America) -> hate America (5291ms) How did Adolf Hitler die? Nazi Germany 0.333333333331 How did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, did in, Nazi Germany) -> Nazi Germany (5301ms) How did Adolf Hitler die? Jewish shopkeepers 0.333333333331 How did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, did, Jewish shopkeepers) -> Jewish shopkeepers (5291ms) How did Adolf Hitler die? Jews 0.333333333331 How did Adolf Hitler die? -> $x: (adolf hitler, do, $x) -> (Adolf Hitler, did, Jews) -> Jews (5291ms) How did Adolf Hitler die? Judenvernichtung 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (' ...berichtete Himmler Hitler ?ber, die, Judenvernichtung) -> Judenvernichtung (5319ms) How did Adolf Hitler die? a suicide 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, died, a suicide) -> a suicide (5346ms) How did Adolf Hitler die? Politik und die Reichswehr 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitlers Eintritt, die, Politik und die Reichswehr) -> Politik und die Reichswehr (5328ms) How did Adolf Hitler die? the day 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, died, the day) -> the day (5346ms) How did Adolf Hitler die? the city 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, died, the city) -> the city (5319ms) How did Adolf Hitler die? Judenausrottung 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Auffassung , da? Hitler weder, die, Judenausrottung) -> Judenausrottung (5337ms) How did Adolf Hitler die? F?hrung des Heeres ?bernahm 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, auch die, F?hrung des Heeres ?bernahm) -> F?hrung des Heeres ?bernahm (5319ms) How did Adolf Hitler die? Endl?sung 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler und, die, Endl?sung) -> Endl?sung (5346ms) How did Adolf Hitler die? 18 days 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, died, 18 days) -> 18 days (5354ms) How did Adolf Hitler die? a few years 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler?s private secretaries, died, a few years) -> a few years (5337ms) How did Adolf Hitler die? the sake 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, had to die for, the sake) -> the sake (5346ms) How did Adolf Hitler die? 1984 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, could have died as late as, 1984) -> 1984 (5346ms) How did Adolf Hitler die? age 56 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Adolf Hitler, died, age 56) -> age 56 (5337ms) How did Adolf Hitler die? a year 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, died little under, a year) -> a year (5337ms) How did Adolf Hitler die? WWII 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, died during, WWII) -> WWII (5346ms) How did Adolf Hitler die? forty years 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, died almost, forty years) -> forty years (5337ms) How did Adolf Hitler die? sixty years 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, died more than, sixty years) -> sixty years (5354ms) How did Adolf Hitler die? the age 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, has died at, the age) -> the age (5354ms) How did Adolf Hitler die? Sekret?rinnnen nur 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (' Hitler brauchte, die, Sekret?rinnnen nur) -> Sekret?rinnnen nur (5337ms) How did Adolf Hitler die? Entlosung 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler und, die, Entlosung) -> Entlosung (5363ms) How did Adolf Hitler die? speech door Goebbels 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (intellectuele capaciteiten van Hitler, die, speech door Goebbels) -> speech door Goebbels (5354ms) How did Adolf Hitler die? Sonder- und Ehrenh?ftlinge der SS 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitlers Hand, die, Sonder- und Ehrenh?ftlinge der SS) -> Sonder- und Ehrenh?ftlinge der SS (5328ms) How did Adolf Hitler die? a poor artist 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, probably would 've died, a poor artist) -> a poor artist (5328ms) How did Adolf Hitler die? Kenntnis darueber 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, die, Kenntnis darueber) -> Kenntnis darueber (5354ms) How did Adolf Hitler die? two decades 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, died, two decades) -> two decades (5346ms) How did Adolf Hitler die? ohne Warnung oder 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler konfrontierten, die, ohne Warnung oder) -> ohne Warnung oder (5337ms) How did Adolf Hitler die? several million times over 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, deserved to die horribly, several million times over) -> several million times over (5337ms) How did Adolf Hitler die? gedult hat 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, dies, gedult hat) -> gedult hat (5346ms) How did Adolf Hitler die? Danzig 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, would die for, Danzig) -> Danzig (5319ms) How did Adolf Hitler die? 37 years 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Adolf Hitler, died, 37 years) -> 37 years (5337ms) How did Adolf Hitler die? Ideen gab 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (der Hitler, die, Ideen gab) -> Ideen gab (5354ms) How did Adolf Hitler die? sei der erste brauchbare Entwurf 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, dies, sei der erste brauchbare Entwurf) -> sei der erste brauchbare Entwurf (5328ms) How did Adolf Hitler die? days 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, had died, days) -> days (5328ms) How did Adolf Hitler die? surrender 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, die rather than, surrender) -> surrender (5337ms) How did Adolf Hitler die? of it 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, died because, of it) -> of it (5346ms) How did Adolf Hitler die? decades 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, died, decades) -> decades (5354ms) How did Adolf Hitler die? an accidental byproduct 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, only died as, an accidental byproduct) -> an accidental byproduct (5354ms) How did Adolf Hitler die? Treue hielt 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (der Hitler, die, Treue hielt) -> Treue hielt (5337ms) How did Adolf Hitler die? Kunst 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, und die, Kunst) -> Kunst (5363ms) How did Adolf Hitler die? more than sixty years ago 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, died, more than sixty years ago) -> more than sixty years ago (5346ms) How did Adolf Hitler die? frightful deaths 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, died, frightful deaths) -> frightful deaths (5346ms) How did Adolf Hitler die? Macht 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, die, Macht) -> Macht (5346ms) How did Adolf Hitler die? Judenausrottung angeordnet noch von ihr 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (dass Hitler weder, die, Judenausrottung angeordnet noch von ihr) -> Judenausrottung angeordnet noch von ihr (5346ms) How did Adolf Hitler die? Helmuth Hu?bener Gruppe 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Jugendliche gegen Hitler, die, Helmuth Hu?bener Gruppe) -> Helmuth Hu?bener Gruppe (5319ms) How did Adolf Hitler die? childless 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, died, childless) -> childless (5328ms) How did Adolf Hitler die? an hour 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, died just over, an hour) -> an hour (5319ms) How did Adolf Hitler die? the Nazis 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitler, died under, the Nazis) -> the Nazis (5328ms) How did Adolf Hitler die? Kriegf?hrung 0.33333333333099996 How did Adolf Hitler die? -> $x: (hitler, die, $x) -> (Hitlers Weisungen, die, Kriegf?hrung) -> Kriegf?hrung (5319ms) How did Adolf Hitler die? 16.9.1910 0.33333333333000004 How did Adolf Hitler die? -> $x: (hitler, be bear on, $x) -> (Hitler 1, was born on, 16.9.1910) -> 16.9.1910 (5379ms) How did Adolf Hitler die? 4 20 0.33333333333000004 How did Adolf Hitler die? -> $x: (hitler, be bear on, $x) -> (7 hitler, was born on, 4 20) -> 4 20 (5371ms) How did Adolf Hitler die? 13 degrees East 0.33333333333000004 How did Adolf Hitler die? -> $x: (hitler, be bear on, $x) -> (42.00 N 44.12 E So Hitler, was born exactly on, 13 degrees East) -> 13 degrees East (5371ms) How did Adolf Hitler die? Easter 0.33333333333000004 How did Adolf Hitler die? -> $x: (hitler, be bear on, $x) -> (Hitler, was born on, Easter) -> Easter (5387ms) How did Adolf Hitler die? April 29 , 1945 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, marry, $x) -> (Braun and Hitler, were married on, April 29 , 1945) -> April 29 , 1945 (5418ms) How did Adolf Hitler die? a good place 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler and Hitlers Germany, look like, a good place) -> a good place (5404ms) How did Adolf Hitler die? a pretext 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Adolf Hitler, looks more like, a pretext) -> a pretext (5425ms) How did Adolf Hitler die? a military genius 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, looked like, a military genius) -> a military genius (5411ms) How did Adolf Hitler die? a piker 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a piker) -> a piker (5418ms) How did Adolf Hitler die? a bloody amateur 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a bloody amateur) -> a bloody amateur (5404ms) How did Adolf Hitler die? a Prussian military officer 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, looked very much like, a Prussian military officer) -> a Prussian military officer (5411ms) How did Adolf Hitler die? a bleeding heart 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a bleeding heart) -> a bleeding heart (5426ms) How did Adolf Hitler die? Charlie Chaplin 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, looks like, Charlie Chaplin) -> Charlie Chaplin (5425ms) How did Adolf Hitler die? such a BOSS 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (deviantART Hitler, looks like, such a BOSS) -> such a BOSS (5404ms) How did Adolf Hitler die? a rank amateur 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a rank amateur) -> a rank amateur (5425ms) How did Adolf Hitler die? Michael Cera 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitlers mom, looks like, Michael Cera) -> Michael Cera (5418ms) How did Adolf Hitler die? Jabba 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, looks like, Jabba) -> Jabba (5411ms) How did Adolf Hitler die? a civil ceremony in the bunker 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, marry, $x) -> (Hitler, married Eva Braun in, a civil ceremony in the bunker) -> a civil ceremony in the bunker (5426ms) How did Adolf Hitler die? rank amateurs 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler and Mussolini, look like, rank amateurs) -> rank amateurs (5426ms) How did Adolf Hitler die? Mother Teresa 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, Mother Teresa) -> Mother Teresa (5404ms) How did Adolf Hitler die? a saint?how wicked 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a saint?how wicked) -> a saint?how wicked (5433ms) How did Adolf Hitler die? a juvenile delinquent 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a juvenile delinquent) -> a juvenile delinquent (5404ms) How did Adolf Hitler die? the Wagner family 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, marry, $x) -> (Hitler, married into, the Wagner family) -> the Wagner family (5433ms) How did Adolf Hitler die? a Boy Scout 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a Boy Scout) -> a Boy Scout (5411ms) How did Adolf Hitler die? the same year 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, marry, $x) -> (Adolf Hitler, got married, the same year) -> the same year (5418ms) How did Adolf Hitler die? Jesus Christ 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, Jesus Christ) -> Jesus Christ (5425ms) How did Adolf Hitler die? a civil ceremony 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, marry, $x) -> (Hitler and Braun, finally married in, a civil ceremony) -> a civil ceremony (5411ms) How did Adolf Hitler die? a rookie boy scout 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a rookie boy scout) -> a rookie boy scout (5418ms) How did Adolf Hitler die? a Jewish woman 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, marry, $x) -> (Hitler, ,married, a Jewish woman) -> a Jewish woman (5418ms) How did Adolf Hitler die? a small time 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a small time) -> a small time (5396ms) How did Adolf Hitler die? Miss Lobjoie ? Hitler 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, looked exactly like, Miss Lobjoie ? Hitler) -> Miss Lobjoie ? Hitler (5433ms) How did Adolf Hitler die? a dilettante 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a dilettante) -> a dilettante (5432ms) How did Adolf Hitler die? Mother Theresa 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, Mother Theresa) -> Mother Theresa (5411ms) How did Adolf Hitler die? a teddy bear?s picnic 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (the Hitler gang, look like, a teddy bear?s picnic) -> a teddy bear?s picnic (5411ms) How did Adolf Hitler die? Loret 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, "looked exactly like, Loret) -> Loret (5411ms) How did Adolf Hitler die? a Saint 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a Saint) -> a Saint (5404ms) How did Adolf Hitler die? a Sunday school teacher 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a Sunday school teacher) -> a Sunday school teacher (5432ms) How did Adolf Hitler die? a Sunday School picnic 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, did look like, a Sunday School picnic) -> a Sunday School picnic (5396ms) How did Adolf Hitler die? the third time 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, marry, $x) -> (Alois Hitler, had married for, the third time) -> the third time (5404ms) How did Adolf Hitler die? Pok?mon critters 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler , Stalin and Ted Bundy, look like, Pok?mon critters) -> Pok?mon critters (5396ms) How did Adolf Hitler die? a Kitler 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, looks more like, a Kitler) -> a Kitler (5426ms) How did Adolf Hitler die? choirboys 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler , Stalin and Mao, look like, choirboys) -> choirboys (5432ms) How did Adolf Hitler die? easygoing surfer dudes 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler and Stalin, look like, easygoing surfer dudes) -> easygoing surfer dudes (5404ms) How did Adolf Hitler die? a bathrobe 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, looks like, a bathrobe) -> a bathrobe (5432ms) How did Adolf Hitler die? an amateur 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, an amateur) -> an amateur (5387ms) How did Adolf Hitler die? fair-minded humanitarians 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler and Stalin, look like, fair-minded humanitarians) -> fair-minded humanitarians (5418ms) How did Adolf Hitler die? I?ve 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Heir Hitler, Looks like, I?ve) -> I?ve (5404ms) How did Adolf Hitler die? a punk 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a punk) -> a punk (5432ms) How did Adolf Hitler die? Bowie 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look a tiiiny bit like, Bowie) -> Bowie (5411ms) How did Adolf Hitler die? a good little boy 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, will look like quite, a good little boy) -> a good little boy (5426ms) How did Adolf Hitler die? choir boys 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler and Stalin, look like, choir boys) -> choir boys (5404ms) How did Adolf Hitler die? Eva 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, marry, $x) -> (Hitler, reportedly married, Eva) -> Eva (5411ms) How did Adolf Hitler die? a pretty nice fellow 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a pretty nice fellow) -> a pretty nice fellow (5396ms) How did Adolf Hitler die? a fool 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a fool) -> a fool (5396ms) How did Adolf Hitler die? a second-rater 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a second-rater) -> a second-rater (5425ms) How did Adolf Hitler die? a cub scout 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a cub scout) -> a cub scout (5387ms) How did Adolf Hitler die? Clara Poltzl 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, marry, $x) -> (Alois Hitler, married, Clara Poltzl) -> Clara Poltzl (5433ms) How did Adolf Hitler die? Charlotte 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, looked exactly like, Charlotte) -> Charlotte (5404ms) How did Adolf Hitler die? Boy Scouts 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler & Stalin, look like, Boy Scouts) -> Boy Scouts (5411ms) How did Adolf Hitler die? amateurs 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler and Stalin, look like, amateurs) -> amateurs (5387ms) How did Adolf Hitler die? a civil rights leader 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a civil rights leader) -> a civil rights leader (5396ms) How did Adolf Hitler die? the tooth fairy 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, looks like, the tooth fairy) -> the tooth fairy (5425ms) How did Adolf Hitler die? Eva Braun 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, marry, $x) -> (Hitler, married, Eva Braun) -> Eva Braun (5433ms) How did Adolf Hitler die? a amateur 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a amateur) -> a amateur (5387ms) How did Adolf Hitler die? a guidance counselor 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a guidance counselor) -> a guidance counselor (5411ms) How did Adolf Hitler die? he was going to vanquish all of Europe 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, looked like, he was going to vanquish all of Europe) -> he was going to vanquish all of Europe (5411ms) How did Adolf Hitler die? a slacker 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a slacker) -> a slacker (5387ms) How did Adolf Hitler die? a humanitarian 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a humanitarian) -> a humanitarian (5426ms) How did Adolf Hitler die? a choirboy 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a choirboy) -> a choirboy (5425ms) How did Adolf Hitler die? Miss Lobjoie 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, looked exactly like, Miss Lobjoie) -> Miss Lobjoie (5396ms) How did Adolf Hitler die? a fairy tale 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (the fictive Hitler?s death programs, look like, a fairy tale) -> a fairy tale (5433ms) How did Adolf Hitler die? a good guy 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a good guy) -> a good guy (5433ms) How did Adolf Hitler die? child 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, child) -> child (5396ms) How did Adolf Hitler die? a few hours 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, marry, $x) -> (Hitler, were belatedly married only, a few hours) -> a few hours (5387ms) How did Adolf Hitler die? a chump 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a chump) -> a chump (5433ms) How did Adolf Hitler die? Klara Polzl 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, marry, $x) -> (1885 January 7 Alois Hitler, marries, Klara Polzl) -> Klara Polzl (5404ms) How did Adolf Hitler die? a choir boy 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (a Hitler, looked like, a choir boy) -> a choir boy (5418ms) How did Adolf Hitler die? April 29 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, marry, $x) -> (Hitler, were married on, April 29) -> April 29 (5396ms) How did Adolf Hitler die? Franziska Matzelsberger 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, marry, $x) -> (Alois Hitler, married, Franziska Matzelsberger) -> Franziska Matzelsberger (5418ms) How did Adolf Hitler die? Mr. Rogers 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, Mr. Rogers) -> Mr. Rogers (5418ms) How did Adolf Hitler die? a softy lefty 0.33333333333 How did Adolf Hitler die? -> $x: (hitler, look like, $x) -> (Hitler, look like, a softy lefty) -> a softy lefty (5418ms) How did Adolf Hitler die? a hospital 0.333333333328 How did Adolf Hitler die? -> $x: (adolf hitler, die, $x) -> (Adolf Hitler, dies at, a hospital) -> a hospital (5439ms) How did Adolf Hitler die? defending Christianity 0.333333333328 How did Adolf Hitler die? -> $x: (adolf hitler, die, $x) -> (Adolf Hitler, died while, defending Christianity) -> defending Christianity (5439ms) How did Adolf Hitler die? a Berlin hospital 0.333333333328 How did Adolf Hitler die? -> $x: (adolf hitler, die, $x) -> (Adolf Hitler, died at, a Berlin hospital) -> a Berlin hospital (5439ms) How did Adolf Hitler die? 93 0.333333333328 How did Adolf Hitler die? -> $x: (adolf hitler, die, $x) -> (Adolf Hitler, dies aged, 93) -> 93 (5439ms) How did Adolf Hitler die? the generals 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (the generals, had considerable influence with, Hitler) -> the generals (5461ms) How did Adolf Hitler die? the Reich Defence Council 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (the Reich Defence Council, had any influence on, Hitler) -> the Reich Defence Council (5461ms) How did Adolf Hitler die? Long Island 0.222222222219 How did Adolf Hitler die? -> $x: (hitler, live on, $x) -> (his nephew William Patrick ?Willy ? Hitler, live on, Long Island) -> Long Island (5450ms) How did Adolf Hitler die? several women 0.222222222219 How did Adolf Hitler die? -> $x: (hitler, have affair with, $x) -> (Hitler, had affairs with, several women) -> several women (5466ms) How did Adolf Hitler die? 1920-1922 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (1920-1922, had an influence on, Hitler) -> 1920-1922 (5450ms) How did Adolf Hitler die? a blaze 0.222222222219 How did Adolf Hitler die? -> $x: (hitler, go in, $x) -> (Hitler, went out in, a blaze) -> a blaze (5470ms) How did Adolf Hitler die? ??no other factor 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (??no other factor, influenced, Hitler more) -> ??no other factor (5456ms) How did Adolf Hitler die? Wagner 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (Wagner, influenced, Hitler) -> Wagner (5479ms) How did Adolf Hitler die? war 0.222222222219 How did Adolf Hitler die? -> $x: (hitler, have cause of, $x) -> (Hitler, would have been a reasonable cause of, war) -> war (5445ms) How did Adolf Hitler die? Lethal injection 0.222222222219 How did Adolf Hitler die? -> $x: ($x, invent, hitler) -> (Lethal injection, was invented by, Adolph Hitler) -> Lethal injection (5461ms) How did Adolf Hitler die? the U.S. 0.222222222219 How did Adolf Hitler die? -> $x: (hitler, live in, $x) -> (Hitler?s blood relatives, are living in, the U.S.) -> the U.S. (5466ms) How did Adolf Hitler die? 1938 Beck 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (1938 Beck, attempted to influence, Hitler) -> 1938 Beck (5475ms) How did Adolf Hitler die? Greece 0.222222222219 How did Adolf Hitler die? -> $x: ($x, invent, hitler) -> (Greece, was invented by, Hitler) -> Greece (5461ms) How did Adolf Hitler die? radio 0.222222222219 How did Adolf Hitler die? -> $x: (hitler, live on, $x) -> (Hitler, live on, radio) -> radio (5466ms) How did Adolf Hitler die? Paris 0.222222222219 How did Adolf Hitler die? -> $x: (hitler, go in, $x) -> (Hitler, does n?t go down well in, Paris) -> Paris (5461ms) How did Adolf Hitler die? Poland 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (Poland, directly influenced, Hitler) -> Poland (5466ms) How did Adolf Hitler die? south Austria 0.222222222219 How did Adolf Hitler die? -> $x: (hitler, live in, $x) -> (Adoph Hitler, lived in, south Austria) -> south Austria (5484ms) How did Adolf Hitler die? socialism 0.222222222219 How did Adolf Hitler die? -> $x: ($x, invent, hitler) -> (socialism, was invented by, Hitler) -> socialism (5484ms) How did Adolf Hitler die? streets 0.222222222219 How did Adolf Hitler die? -> $x: (hitler, live on, $x) -> (Hitler, started living on, streets) -> streets (5470ms) How did Adolf Hitler die? the Antarctic 0.222222222219 How did Adolf Hitler die? -> $x: (hitler, live in, $x) -> (Hitler, was living in, the Antarctic) -> the Antarctic (5450ms) How did Adolf Hitler die? SEL 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (SEL, had some influence with, Hitler) -> SEL (5455ms) How did Adolf Hitler die? the ideology 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (the ideology, so influenced, Hitler) -> the ideology (5445ms) How did Adolf Hitler die? Russell Square 0.222222222219 How did Adolf Hitler die? -> $x: (hitler, live in, $x) -> (Hitler?s Germany, was also living in, Russell Square) -> Russell Square (5456ms) How did Adolf Hitler die? Hanover 0.222222222219 How did Adolf Hitler die? -> $x: (hitler, go in, $x) -> (Hitler, went up in, Hanover) -> Hanover (5450ms) How did Adolf Hitler die? splendor 0.222222222219 How did Adolf Hitler die? -> $x: (hitler, live in, $x) -> (Mr. Hitler, lived in, splendor) -> splendor (5445ms) How did Adolf Hitler die? a time 0.222222222219 How did Adolf Hitler die? -> $x: (hitler, live in, $x) -> (neither Hitler nor Stalin, lived in, a time) -> a time (5479ms) How did Adolf Hitler die? Luther 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (Luther, was a huge influence on, Hitler) -> Luther (5466ms) How did Adolf Hitler die? antisemitism 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (antisemitism, was a major influence on, Hitler) -> antisemitism (5479ms) How did Adolf Hitler die? A Study 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (A Study, influenced, Hitler) -> A Study (5465ms) How did Adolf Hitler die? the breadline 0.222222222219 How did Adolf Hitler die? -> $x: (hitler, live on, $x) -> (Hitler, was living on, the breadline) -> the breadline (5479ms) How did Adolf Hitler die? a world 0.222222222219 How did Adolf Hitler die? -> $x: (hitler, live in, $x) -> (his underground bunker Hitler, lived in, a world) -> a world (5461ms) How did Adolf Hitler die? One writer 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (One writer, influenced, Hitler) -> One writer (5479ms) How did Adolf Hitler die? a shelter 0.222222222219 How did Adolf Hitler die? -> $x: (hitler, live in, $x) -> (Hitler, was forced to live in, a shelter) -> a shelter (5470ms) How did Adolf Hitler die? Madame Blavatsky 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (Madame Blavatsky, influenced, Hitler) -> Madame Blavatsky (5475ms) How did Adolf Hitler die? Ghana 0.222222222219 How did Adolf Hitler die? -> $x: (hitler, live in, $x) -> (Hitler, lived in, Ghana) -> Ghana (5461ms) How did Adolf Hitler die? The Galactic Empire 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (The Galactic Empire, has been also influenced by, Hitler) -> The Galactic Empire (5475ms) How did Adolf Hitler die? infamy in the history books 0.222222222219 How did Adolf Hitler die? -> $x: (hitler, go in, $x) -> (Hitler, has gone in, infamy in the history books) -> infamy in the history books (5461ms) How did Adolf Hitler die? impoverished conditions 0.222222222219 How did Adolf Hitler die? -> $x: (hitler, live in, $x) -> (Hitler, live in, impoverished conditions) -> impoverished conditions (5470ms) How did Adolf Hitler die? the Olympic torch ceremony 0.222222222219 How did Adolf Hitler die? -> $x: ($x, invent, hitler) -> (the Olympic torch ceremony, was invented by, Hitler) -> the Olympic torch ceremony (5450ms) How did Adolf Hitler die? Gun control 0.222222222219 How did Adolf Hitler die? -> $x: ($x, invent, hitler) -> (Gun control, was invented by, Adolph Hitler) -> Gun control (5461ms) How did Adolf Hitler die? Van den Bruck?s ideas 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (Van den Bruck?s ideas, influenced, Hitler) -> Van den Bruck?s ideas (5445ms) How did Adolf Hitler die? association 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (association, was a major influence on, Hitler) -> association (5450ms) How did Adolf Hitler die? turn 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (turn, influenced, Hitler) -> turn (5445ms) How did Adolf Hitler die? Nietzsche 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (Nietzsche, was the main influence in, Adolph Hitler?s life) -> Nietzsche (5470ms) How did Adolf Hitler die? Latin America 0.222222222219 How did Adolf Hitler die? -> $x: (hitler, live in, $x) -> (Hitler, was living in, Latin America) -> Latin America (5461ms) How did Adolf Hitler die? Schirach 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (Schirach, extended the influence of, the Hitler Youth) -> Schirach (5450ms) How did Adolf Hitler die? America 0.222222222219 How did Adolf Hitler die? -> $x: (hitler, live on, $x) -> (Hitler, will live on in, America) -> America (5479ms) How did Adolf Hitler die? Afrikaner Nationalism 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (Afrikaner Nationalism, had been deeply influenced by, Hitler) -> Afrikaner Nationalism (5450ms) How did Adolf Hitler die? comparative affluence 0.222222222219 How did Adolf Hitler die? -> $x: (hitler, live in, $x) -> (Hitler, lived in, comparative affluence) -> comparative affluence (5470ms) How did Adolf Hitler die? andy Catholicism 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (andy Catholicism, influenced, Hitler?s views) -> andy Catholicism (5455ms) How did Adolf Hitler die? anti-Semitic conspiracy theorists 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (anti-Semitic conspiracy theorists, would later influence, Hitler) -> anti-Semitic conspiracy theorists (5479ms) How did Adolf Hitler die? history 0.222222222219 How did Adolf Hitler die? -> $x: (hitler, go in, $x) -> (Hitler, went down in, history) -> history (5456ms) How did Adolf Hitler die? smoke 0.222222222219 How did Adolf Hitler die? -> $x: (hitler, go in, $x) -> (Hitler, had gone up in, smoke) -> smoke (5475ms) How did Adolf Hitler die? Antarctica 0.222222222219 How did Adolf Hitler die? -> $x: (hitler, live in, $x) -> (Hitler, supposedly lived in, Antarctica) -> Antarctica (5470ms) How did Adolf Hitler die? The intention 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (The intention, was to influence, Hitler) -> The intention (5479ms) How did Adolf Hitler die? Haeckel?s ideas 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (Haeckel?s ideas, were an important influence on, Hitler) -> Haeckel?s ideas (5465ms) How did Adolf Hitler die? the periphery 0.222222222219 How did Adolf Hitler die? -> $x: (hitler, live on, $x) -> (Hitler, was living a life on, the periphery) -> the periphery (5475ms) How did Adolf Hitler die? evolution 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (evolution, played an influence in, Hitler?s Aryan superiority) -> evolution (5479ms) How did Adolf Hitler die? a country 0.222222222219 How did Adolf Hitler die? -> $x: (hitler, live in, $x) -> (Hitler, lived in, a country) -> a country (5465ms) How did Adolf Hitler die? memeburn 0.222222222219 How did Adolf Hitler die? -> $x: (hitler, live on, $x) -> (Hitler movie Downfall, is now live on, memeburn) -> memeburn (5445ms) How did Adolf Hitler die? a man 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (a man, influenced, HITLER) -> a man (5450ms) How did Adolf Hitler die? the religious rhetoric 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (the religious rhetoric, influenced, Hitler) -> the religious rhetoric (5466ms) How did Adolf Hitler die? Stuck 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (Stuck, had a great influence on, Hitler) -> Stuck (5445ms) How did Adolf Hitler die? Theosophy 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (Theosophy, influenced, Hitler) -> Theosophy (5450ms) How did Adolf Hitler die? Darwin 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (Darwin, influenced, Hitler) -> Darwin (5461ms) How did Adolf Hitler die? the Goebbels 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (the Goebbels, was exercising a baleful influence on, Hitler) -> the Goebbels (5484ms) How did Adolf Hitler die? Agartha 0.222222222219 How did Adolf Hitler die? -> $x: (hitler, live in, $x) -> (Hitler, is currently living in, Agartha) -> Agartha (5470ms) How did Adolf Hitler die? the main factors 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (the main factors, influenced, Hitler) -> the main factors (5484ms) How did Adolf Hitler die? a hail 0.222222222219 How did Adolf Hitler die? -> $x: (hitler, go in, $x) -> (Hitler, could have literally gone down in, a hail) -> a hail (5466ms) How did Adolf Hitler die? Hanfstaengl 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (Hanfstaengl, might have also influenced, Hitler) -> Hanfstaengl (5455ms) How did Adolf Hitler die? a great European city 0.222222222219 How did Adolf Hitler die? -> $x: (hitler, live in, $x) -> (Hitler, lived in, a great European city) -> a great European city (5470ms) How did Adolf Hitler die? poverty 0.222222222219 How did Adolf Hitler die? -> $x: (hitler, live in, $x) -> (Hitler, is living in, poverty) -> poverty (5456ms) How did Adolf Hitler die? Crowley 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (Crowley, influenced, Hitler) -> Crowley (5461ms) How did Adolf Hitler die? infamy 0.222222222219 How did Adolf Hitler die? -> $x: (hitler, go in, $x) -> (Hitler, has rightfully gone down in, infamy) -> infamy (5479ms) How did Adolf Hitler die? a small farm 0.222222222219 How did Adolf Hitler die? -> $x: (hitler, live on, $x) -> (The Hitler family, lived on, a small farm) -> a small farm (5475ms) How did Adolf Hitler die? Dieter 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (Dieter, has been influenced by, Hitler) -> Dieter (5475ms) How did Adolf Hitler die? the death camps 0.222222222219 How did Adolf Hitler die? -> $x: (hitler, go in, $x) -> (Hitler, was going on in, the death camps) -> the death camps (5470ms) How did Adolf Hitler die? The racial theories 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (The racial theories, influenced, Hitler) -> The racial theories (5475ms) How did Adolf Hitler die? Lama priests 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (Lama priests, had gained influence over, Hitler) -> Lama priests (5456ms) How did Adolf Hitler die? no other forgery 0.222222222219 How did Adolf Hitler die? -> $x: ($x, influence, hitler) -> (no other forgery, had greater influence on, Hitler?s policy) -> no other forgery (5470ms) How did Adolf Hitler die? A Jewish doctor 0.11111111111 How did Adolf Hitler die? -> $x: ($x, kill, adolf hitler) -> (A Jewish doctor, killed, Adolf Hitler?s mother) -> A Jewish doctor (5484ms) How did Adolf Hitler die? Mao Zedong 0.11111111111 How did Adolf Hitler die? -> $x: ($x, kill, adolf hitler) -> (Mao Zedong, probably killed more people than, Adolf Hitler) -> Mao Zedong (5488ms) How did Adolf Hitler die? July 20th 0.11111111111 How did Adolf Hitler die? -> $x: ($x, kill, adolf hitler) -> (July 20th, Attempt to kill, Adolf Hitler) -> July 20th (5488ms) How did Adolf Hitler die? disabilities 0.11111111111 How did Adolf Hitler die? -> $x: ($x, kill, adolf hitler) -> (disabilities, were killed during, Adolf Hitler) -> disabilities (5488ms) How did Adolf Hitler die? Roger Friedman Jerry Maguire 0.11111111111 How did Adolf Hitler die? -> $x: ($x, kill, adolf hitler) -> (Roger Friedman Jerry Maguire, tried to kill, Adolf Hitler) -> Roger Friedman Jerry Maguire (5488ms) How did Adolf Hitler die? each year 0.11111111111 How did Adolf Hitler die? -> $x: ($x, kill, adolf hitler) -> (each year, were killed by, Adolf Hitler) -> each year (5484ms) How did Adolf Hitler die? a plan 0.11111111111 How did Adolf Hitler die? -> $x: ($x, kill, adolf hitler) -> (a plan, kill, Adolf Hitler) -> a plan (5484ms) How did Adolf Hitler die? Human Torch 0.11111111111 How did Adolf Hitler die? -> $x: ($x, kill, adolf hitler) -> (Human Torch, Characters killed, Adolf Hitler in popular culture) -> Human Torch (5484ms) How did Adolf Hitler die? a bomb 0.11111111111 How did Adolf Hitler die? -> $x: ($x, kill, adolf hitler) -> (a bomb, to kill, Adolf Hitler) -> a bomb (5488ms) How did Adolf Hitler die? May 1 , 1945 0.11111111111 How did Adolf Hitler die? -> $x: (adolf hitler, be dead on, $x) -> (Adolf Hitler, was pronounced dead on, May 1 , 1945) -> May 1 , 1945 (5484ms) How did Adolf Hitler die? INGRID HENNING 0.11111111111 How did Adolf Hitler die? -> $x: ($x, kill, adolf hitler) -> (INGRID HENNING, had the chance to kill, Adolf Hitler) -> INGRID HENNING (5484ms) How did Adolf Hitler die? ?to 0.11111111111 How did Adolf Hitler die? -> $x: ($x, kill, adolf hitler) -> (?to, kill, Adolf Hitler) -> ?to (5484ms) How did Adolf Hitler die? A man 0.11111111111 How did Adolf Hitler die? -> $x: ($x, kill, adolf hitler) -> (A man, once plotted to kill, Adolf Hitler) -> A man (5484ms) How did Adolf Hitler die? 1899 0.11111111110900002 How did Adolf Hitler die? -> $x: (adolf hitler, be bear in, $x) -> (Adolf Hitler, was born in, 1899) -> 1899 (5492ms) How did Adolf Hitler die? the small Austrian village 0.11111111110900002 How did Adolf Hitler die? -> $x: (adolf hitler, be bear in, $x) -> (Adolf Hitler, was born in, the small Austrian village) -> the small Austrian village (5488ms) How did Adolf Hitler die? Braunau 0.11111111110900002 How did Adolf Hitler die? -> $x: (adolf hitler, be bear in, $x) -> (Adolf Hitler, was born in, Braunau) -> Braunau (5492ms) How did Adolf Hitler die? the small Austrian town 0.11111111110900002 How did Adolf Hitler die? -> $x: (adolf hitler, be bear in, $x) -> (Adolf Hitler, was born in, the small Austrian town) -> the small Austrian town (5492ms) How did Adolf Hitler die? Braunauam Inn 0.11111111110900002 How did Adolf Hitler die? -> $x: (adolf hitler, be bear in, $x) -> (Adolf Hitler, was born in, Braunauam Inn) -> Braunauam Inn (5492ms) How did Adolf Hitler die? Austria 0.11111111110900002 How did Adolf Hitler die? -> $x: (adolf hitler, be bear in, $x) -> (Adolf Hitler, was born in, Austria) -> Austria (5492ms) How did Adolf Hitler die? an Austrian town 0.11111111110900002 How did Adolf Hitler die? -> $x: (adolf hitler, be bear in, $x) -> (Adolf Hitler, was born in, an Austrian town) -> an Austrian town (5492ms) How did Adolf Hitler die? Passau 0.11111111110900002 How did Adolf Hitler die? -> $x: (adolf hitler, be bear in, $x) -> (Adolf Hitler, is born in, Passau) -> Passau (5492ms) How did Adolf Hitler die? Braunau Am Inn 0.11111111110900002 How did Adolf Hitler die? -> $x: (adolf hitler, be bear in, $x) -> (Adolf Hitler, was born in, Braunau Am Inn) -> Braunau Am Inn (5492ms) How did Adolf Hitler die? the Austrian town of Braunau 0.11111111110900002 How did Adolf Hitler die? -> $x: (adolf hitler, be bear in, $x) -> (Adolf Hitler, was born in, the Austrian town of Braunau) -> the Austrian town of Braunau (5492ms) How did Adolf Hitler die? leadership roles 0.11111111110800001 How did Adolf Hitler die? -> $x: (hitler, end in, $x) -> (Mao , Stalin and Hitler, can end up in, leadership roles) -> leadership roles (5495ms) How did Adolf Hitler die? the same state 0.11111111110800001 How did Adolf Hitler die? -> $x: (hitler, end in, $x) -> (Gandhi and Hitler, end up in, the same state) -> the same state (5511ms) How did Adolf Hitler die? Hitchens 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Hitchens, did, Hitler) -> Hitchens (5504ms) How did Adolf Hitler die? the extent 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (the extent, did, Hitler) -> the extent (5495ms) How did Adolf Hitler die? European Jewry 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (European Jewry, did under, Hitler) -> European Jewry (5506ms) How did Adolf Hitler die? a Communist revolution ? 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (a Communist revolution ?, did, Hitler) -> a Communist revolution ? (5509ms) How did Adolf Hitler die? Darwinism 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, be cause of, hitler) -> (Darwinism, was the sole cause of, Hitler?s barbarism) -> Darwinism (5511ms) How did Adolf Hitler die? a kingdom 0.11111111110800001 How did Adolf Hitler die? -> $x: (hitler, end in, $x) -> (even Hitler, ends up in, a kingdom) -> a kingdom (5501ms) How did Adolf Hitler die? useless 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, be cause of, hitler) -> (useless, was the major cause of, Hitler) -> useless (5498ms) How did Adolf Hitler die? April 30 0.11111111110800001 How did Adolf Hitler die? -> $x: (hitler, be kill on, $x) -> (The Hitler, double was killed on, April 30) -> April 30 (5492ms) How did Adolf Hitler die? heaven 0.11111111110800001 How did Adolf Hitler die? -> $x: (hitler, end in, $x) -> (Could Hitler, end up in, heaven) -> heaven (5506ms) How did Adolf Hitler die? the same 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (the same, did, Hitler) -> the same (5511ms) How did Adolf Hitler die? Cause and Effect 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Cause and Effect, did, Hitler) -> Cause and Effect (5492ms) How did Adolf Hitler die? the war years 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (the war years, did, Hitler) -> the war years (5504ms) How did Adolf Hitler die? Zionism 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Zionism, Did, Hitler) -> Zionism (5501ms) How did Adolf Hitler die? political duplicity 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (political duplicity, did, Hitler) -> political duplicity (5495ms) How did Adolf Hitler die? the species 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (the species, did, Hitler) -> the species (5495ms) How did Adolf Hitler die? the Mein Kampf 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (the Mein Kampf, did, Hitler) -> the Mein Kampf (5506ms) How did Adolf Hitler die? the crowd 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (the crowd, did, Hitler) -> the crowd (5504ms) How did Adolf Hitler die? the evil 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (the evil, did, Hitler) -> the evil (5504ms) How did Adolf Hitler die? frankvmh 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (frankvmh, Did, Hitler) -> frankvmh (5504ms) How did Adolf Hitler die? Transcendent Faith 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Transcendent Faith, Did, Hitler) -> Transcendent Faith (5501ms) How did Adolf Hitler die? Harvard 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Harvard, did, Hitler) -> Harvard (5498ms) How did Adolf Hitler die? Black Reichswehr 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Black Reichswehr, did, Hitler) -> Black Reichswehr (5509ms) How did Adolf Hitler die? Saddam 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Saddam, did, Hitler) -> Saddam (5495ms) How did Adolf Hitler die? News 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (News, Did, Hitler) -> News (5501ms) How did Adolf Hitler die? Lebanese Journalist 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Lebanese Journalist, does, Hitler) -> Lebanese Journalist (5501ms) How did Adolf Hitler die? Europe 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Europe, did with, Hitler) -> Europe (5509ms) How did Adolf Hitler die? the moment 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (the moment, does, Hitler) -> the moment (5495ms) How did Adolf Hitler die? a Christian 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (a Christian, did, Hitler) -> a Christian (5509ms) How did Adolf Hitler die? the Gestapo 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (the Gestapo, did for, Hitler) -> the Gestapo (5498ms) How did Adolf Hitler die? over Italy and Germany 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (over Italy and Germany, did, Hitler) -> over Italy and Germany (5511ms) How did Adolf Hitler die? FAILas 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (FAILas, did, Hitler) -> FAILas (5511ms) How did Adolf Hitler die? MR IRVING 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (MR IRVING, Did, Hitler) -> MR IRVING (5504ms) How did Adolf Hitler die? User 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (User, Did, Hitler) -> User (5504ms) How did Adolf Hitler die? 150 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (150, did, Hitler) -> 150 (5511ms) How did Adolf Hitler die? next 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (next, do, Hitler) -> next (5498ms) How did Adolf Hitler die? the time 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (the time, did, Hitler) -> the time (5495ms) How did Adolf Hitler die? Goya 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Goya, so did, Hitler) -> Goya (5509ms) How did Adolf Hitler die? Christian 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Christian, Did, Hitler) -> Christian (5506ms) How did Adolf Hitler die? dreamgirl542 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (dreamgirl542, did, Hitler) -> dreamgirl542 (5498ms) How did Adolf Hitler die? the 7th Circle 0.11111111110800001 How did Adolf Hitler die? -> $x: (hitler, end in, $x) -> (Hitler, ended up in, the 7th Circle) -> the 7th Circle (5504ms) How did Adolf Hitler die? questions 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (questions, Did, Hitler) -> questions (5509ms) How did Adolf Hitler die? labor camps 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (labor camps, did, Hitler) -> labor camps (5501ms) How did Adolf Hitler die? September 1 , 1939 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (September 1 , 1939, did, Hitler) -> September 1 , 1939 (5498ms) How did Adolf Hitler die? htTweets 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (htTweets, Did, # Hitler) -> htTweets (5509ms) How did Adolf Hitler die? Germans 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Germans, did, Hitler) -> Germans (5506ms) How did Adolf Hitler die? ?How 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (?How, did, Hitler) -> ?How (5506ms) How did Adolf Hitler die? the Maginot line 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (the Maginot line, did to, Hitler) -> the Maginot line (5498ms) How did Adolf Hitler die? na farda 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (na farda, do, Hitler) -> na farda (5498ms) How did Adolf Hitler die? clones 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (clones, do, hitler) -> clones (5501ms) How did Adolf Hitler die? evil 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (evil, did, Hitler) -> evil (5495ms) How did Adolf Hitler die? Franklin Roosevelt 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Franklin Roosevelt, did, Hitler) -> Franklin Roosevelt (5492ms) How did Adolf Hitler die? One asks 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (One asks, then did, Hitler) -> One asks (5506ms) How did Adolf Hitler die? elections 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (elections, did, Hitler) -> elections (5495ms) How did Adolf Hitler die? the new Israel 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (the new Israel, did, Hitler) -> the new Israel (5506ms) How did Adolf Hitler die? Hitler?s Eyes 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Hitler?s Eyes, did, Hitler) -> Hitler?s Eyes (5501ms) How did Adolf Hitler die? Churchill 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Churchill, did, Hitler) -> Churchill (5498ms) How did Adolf Hitler die? the same reasons 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (the same reasons, did, Hitler) -> the same reasons (5498ms) How did Adolf Hitler die? Oprah Winfrey Germany 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, be cause of, hitler) -> (Oprah Winfrey Germany, was the cause of, Hitler) -> Oprah Winfrey Germany (5504ms) How did Adolf Hitler die? 1940 0.11111111110800001 How did Adolf Hitler die? -> $x: (hitler, end in, $x) -> (Hitler, wanted to end the war in, 1940) -> 1940 (5511ms) How did Adolf Hitler die? a detention camp 0.11111111110800001 How did Adolf Hitler die? -> $x: (hitler, end in, $x) -> (a former Hitler finance minister, ended up in, a detention camp) -> a detention camp (5509ms) How did Adolf Hitler die? Heaven 0.11111111110800001 How did Adolf Hitler die? -> $x: (hitler, end in, $x) -> (Hitler, end up in, Heaven) -> Heaven (5511ms) How did Adolf Hitler die? one militant state 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (one militant state, did, Hitler) -> one militant state (5498ms) How did Adolf Hitler die? Ferris 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Ferris, did, Hitler) -> Ferris (5495ms) How did Adolf Hitler die? practicing Satanism 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (practicing Satanism, did, Hitler) -> practicing Satanism (5504ms) How did Adolf Hitler die? scapegoats 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (scapegoats, did, Hitler) -> scapegoats (5506ms) How did Adolf Hitler die? the western front 0.11111111110800001 How did Adolf Hitler die? -> $x: (hitler, be kill on, $x) -> (Hitler, had been killed on, the western front) -> the western front (5501ms) How did Adolf Hitler die? a ditch 0.11111111110800001 How did Adolf Hitler die? -> $x: (hitler, end in, $x) -> (Hitler, ended up in, a ditch) -> a ditch (5511ms) How did Adolf Hitler die? TRANSCENDANT FAITH 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (TRANSCENDANT FAITH, Did, Hitler) -> TRANSCENDANT FAITH (5506ms) How did Adolf Hitler die? the bitter end 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (the bitter end, did, Hitler) -> the bitter end (5501ms) How did Adolf Hitler die? fiction 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (fiction, Did, Hitler) -> fiction (5495ms) How did Adolf Hitler die? the work 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (the work, did for, Hitler) -> the work (5506ms) How did Adolf Hitler die? true Norwegians 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (true Norwegians, so did, Hitler) -> true Norwegians (5504ms) How did Adolf Hitler die? no time 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (no time, did, Hitler) -> no time (5501ms) How did Adolf Hitler die? social thought 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (social thought, did, Hitler) -> social thought (5509ms) How did Adolf Hitler die? a two-front war 0.11111111110800001 How did Adolf Hitler die? -> $x: (hitler, end in, $x) -> (Hitler, ended in, a two-front war) -> a two-front war (5492ms) How did Adolf Hitler die? The question 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (The question, did, Hitler) -> The question (5504ms) How did Adolf Hitler die? 1923 0.11111111110800001 How did Adolf Hitler die? -> $x: (hitler, end in, $x) -> (Hitler?s putsch, ended in, 1923) -> 1923 (5498ms) How did Adolf Hitler die? the same ideas 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (the same ideas, did, Hitler) -> the same ideas (5509ms) How did Adolf Hitler die? Answer 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Answer, did, Hitler) -> Answer (5506ms) How did Adolf Hitler die? 5017 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (5017, did, Hitler) -> 5017 (5498ms) How did Adolf Hitler die? the World War II period 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (the World War II period, did, Hitler) -> the World War II period (5509ms) How did Adolf Hitler die? Obama 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Obama, did, Hitler) -> Obama (5509ms) How did Adolf Hitler die? 420 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (420, did, Hitler) -> 420 (5504ms) How did Adolf Hitler die? the drawing 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (the drawing, did, Hitler) -> the drawing (5495ms) How did Adolf Hitler die? Loading comments ? 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Loading comments ?, Did, Hitler) -> Loading comments ? (5509ms) How did Adolf Hitler die? Communist Russia 0.11111111110800001 How did Adolf Hitler die? -> $x: (hitler, end in, $x) -> (Hitler, ended up in, Communist Russia) -> Communist Russia (5509ms) How did Adolf Hitler die? page 7 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (page 7, does, Hitler) -> page 7 (5509ms) How did Adolf Hitler die? nobody 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (nobody, do to, Hitler) -> nobody (5506ms) How did Adolf Hitler die? Just how 0.11111111110800001 How did Adolf Hitler die? -> $x: ($x, do, hitler) -> (Just how, did, Hitler) -> Just how (5501ms) How did Adolf Hitler die? appeal 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, appeal) -> appeal (5514ms) How did Adolf Hitler die? Darwinism Devalue Human Life 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, Does, Darwinism Devalue Human Life) -> Darwinism Devalue Human Life (5513ms) How did Adolf Hitler die? nt care 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, nt care) -> nt care (5516ms) How did Adolf Hitler die? the Munich agreement effect Litvinov?s policy 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, the Munich agreement effect Litvinov?s policy) -> the Munich agreement effect Litvinov?s policy (5513ms) How did Adolf Hitler die? n?t 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, n?t) -> n?t (5519ms) How did Adolf Hitler die? the dirty work 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, do, the dirty work) -> the dirty work (5513ms) How did Adolf Hitler die? favor 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, favor) -> favor (5516ms) How did Adolf Hitler die? before 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, before) -> before (5518ms) How did Adolf Hitler die? the devil 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, the devil) -> the devil (5513ms) How did Adolf Hitler die? centuries centuries 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, centuries centuries) -> centuries centuries (5518ms) How did Adolf Hitler die? much evil 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, much evil) -> much evil (5519ms) How did Adolf Hitler die? much the same 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, much the same) -> much the same (5513ms) How did Adolf Hitler die? use theosophy 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, use theosophy) -> use theosophy (5516ms) How did Adolf Hitler die? what he did believing in a God s 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, what he did believing in a God s) -> what he did believing in a God s (5519ms) How did Adolf Hitler die? smite 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, smite) -> smite (5511ms) How did Adolf Hitler die? the Jews 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, the Jews) -> the Jews (5519ms) How did Adolf Hitler die? what he wanted 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, do, what he wanted) -> what he wanted (5514ms) How did Adolf Hitler die? a little 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, a little) -> a little (5513ms) How did Adolf Hitler die? what he believed was right 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, what he believed was right) -> what he believed was right (5514ms) How did Adolf Hitler die? back 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, back) -> back (5513ms) How did Adolf Hitler die? endorse Greater Albania 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, endorse Greater Albania) -> endorse Greater Albania (5514ms) How did Adolf Hitler die? Goering 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, Goering) -> Goering (5514ms) How did Adolf Hitler die? reference 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, reference) -> reference (5516ms) How did Adolf Hitler die? brown shirts 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, brown shirts) -> brown shirts (5514ms) How did Adolf Hitler die? n?t work 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, n?t work) -> n?t work (5514ms) How did Adolf Hitler die? paper 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, paper) -> paper (5511ms) How did Adolf Hitler die? much good 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, much good) -> much good (5513ms) How did Adolf Hitler die? promise 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, promise) -> promise (5516ms) How did Adolf Hitler die? Ronald and Nancy Reagan 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, Ronald and Nancy Reagan) -> Ronald and Nancy Reagan (5511ms) How did Adolf Hitler die? God 's work 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, God 's work) -> God 's work (5514ms) How did Adolf Hitler die? a lot of good 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, a lot of good) -> a lot of good (5519ms) How did Adolf Hitler die? God 's will 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, God 's will) -> God 's will (5516ms) How did Adolf Hitler die? a 180 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, a 180) -> a 180 (5519ms) How did Adolf Hitler die? good 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, good) -> good (5513ms) How did Adolf Hitler die? so 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, so) -> so (5511ms) How did Adolf Hitler die? etc 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, etc) -> etc (5516ms) How did Adolf Hitler die? Gandhi 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, Gandhi) -> Gandhi (5513ms) How did Adolf Hitler die? commit suicide 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, commit suicide) -> commit suicide (5519ms) How did Adolf Hitler die? wonders 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, wonders) -> wonders (5516ms) How did Adolf Hitler die? too 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, too) -> too (5513ms) How did Adolf Hitler die? indeed 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, indeed) -> indeed (5519ms) How did Adolf Hitler die? emphasize 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, emphasize) -> emphasize (5519ms) How did Adolf Hitler die? what he had to do 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, what he had to do) -> what he had to do (5511ms) How did Adolf Hitler die? much good for Germany 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, much good for Germany) -> much good for Germany (5519ms) How did Adolf Hitler die? however 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, however) -> however (5513ms) How did Adolf Hitler die? a more entertaining job 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, does, a more entertaining job) -> a more entertaining job (5519ms) How did Adolf Hitler die? once 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, once) -> once (5513ms) How did Adolf Hitler die? 25 years 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, 25 years) -> 25 years (5516ms) How did Adolf Hitler die? 70 years ago 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, 70 years ago) -> 70 years ago (5514ms) How did Adolf Hitler die? the same , 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, the same ,) -> the same , (5519ms) How did Adolf Hitler die? the Nazi salute 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, doing, the Nazi salute) -> the Nazi salute (5513ms) How did Adolf Hitler die? escape 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, escape) -> escape (5516ms) How did Adolf Hitler die? very little 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, very little) -> very little (5511ms) How did Adolf Hitler die? nt rise to power 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, nt rise to power) -> nt rise to power (5513ms) How did Adolf Hitler die? nt 0.111111111107 How did Adolf Hitler die? -> $x: (hitler, do, $x) -> (Hitler, did, nt) -> nt (5519ms) How did Adolf Hitler die? a secret Nazi ice bunker -2.9999891459908667E-12 How did Adolf Hitler die? -> $x: (hitler, be bury in, $x) -> (Hitler?s archives, may be buried in, a secret Nazi ice bunker) -> a secret Nazi ice bunker (5520ms) How did Adolf Hitler die? March 1920 -2.9999891459908667E-12 How did Adolf Hitler die? -> $x: (hitler, be from in, $x) -> (Hitler, was discharged from the army in, March 1920) -> March 1920 (5520ms) How did Adolf Hitler die? 1920 -2.9999891459908667E-12 How did Adolf Hitler die? -> $x: (hitler, be from in, $x) -> (Hitler, was discharged from the army in, 1920) -> 1920 (5520ms) How did Adolf Hitler die? an assassination attempt -2.9999891459908667E-12 How did Adolf Hitler die? -> $x: (hitler, be kill in, $x) -> (Hitler, is killed in, an assassination attempt) -> an assassination attempt (5520ms) How did Adolf Hitler die? the movie hall -2.9999891459908667E-12 How did Adolf Hitler die? -> $x: (hitler, be kill in, $x) -> (Hitler, was killed in, the movie hall) -> the movie hall (5520ms) How did Adolf Hitler die? wars -2.9999891459908667E-12 How did Adolf Hitler die? -> $x: (hitler, be from in, $x) -> (N To Hitler, from being harmed in, wars) -> wars (5520ms) How did Adolf Hitler die? a bombing raid -2.9999891459908667E-12 How did Adolf Hitler die? -> $x: (hitler, be kill in, $x) -> (Hitler, is killed in, a bombing raid) -> a bombing raid (5520ms) How did Adolf Hitler die? WWI -2.9999891459908667E-12 How did Adolf Hitler die? -> $x: (hitler, be kill in, $x) -> (Hitler, had been killed in, WWI) -> WWI (5520ms) How did Adolf Hitler die? the garden -2.9999891459908667E-12 How did Adolf Hitler die? -> $x: (hitler, be bury in, $x) -> (Hitler?s bombers, was found buried in, the garden) -> the garden (5520ms) How did Adolf Hitler die? a bomb blast -2.9999891459908667E-12 How did Adolf Hitler die? -> $x: (hitler, be kill in, $x) -> (June Hitler, is killed in, a bomb blast) -> a bomb blast (5520ms) How did Adolf Hitler die? ignominy and shame -2.9999891459908667E-12 How did Adolf Hitler die? -> $x: (hitler, be bury in, $x) -> (Hitler, is buried in, ignominy and shame) -> ignominy and shame (5520ms) How did Adolf Hitler die? New Year -0.111111111109 How did Adolf Hitler die? -> $x: (paulum, die on, $x) -> (Paula, died on, New Year) -> New Year (5521ms) How did Adolf Hitler die? April 28 -0.111111111109 How did Adolf Hitler die? -> $x: (paulum, die on, $x) -> (Sister Paula, died on, April 28) -> April 28 (5521ms) How did Adolf Hitler die? a cold December day -0.111111111109 How did Adolf Hitler die? -> $x: (paulum, die on, $x) -> (Paula, died on, a cold December day) -> a cold December day (5521ms) How did Adolf Hitler die? Saturday aged 91 -0.111111111109 How did Adolf Hitler die? -> $x: (nazi, die on, $x) -> (a Nazi death camp, died on, Saturday aged 91) -> Saturday aged 91 (5521ms) How did Adolf Hitler die? a train -0.111111111109 How did Adolf Hitler die? -> $x: (nazi, die on, $x) -> (Nazi occupation, later died on, a train) -> a train (5521ms) How did Adolf Hitler die? 24th March 2006 -0.111111111109 How did Adolf Hitler die? -> $x: (paulum, die on, $x) -> (Dr Paula Greeves, died on, 24th March 2006) -> 24th March 2006 (5521ms) How did Adolf Hitler die? the afternoon -0.111111111109 How did Adolf Hitler die? -> $x: (paulum, die on, $x) -> (Paula Danziger, died on, the afternoon) -> the afternoon (5521ms) How did Adolf Hitler die? June 6th 1944 -0.111111111109 How did Adolf Hitler die? -> $x: (nazi, die on, $x) -> (Nazi coastal troops, then died on, June 6th 1944) -> June 6th 1944 (5521ms) How did Adolf Hitler die? Jan . 4 -0.111111111109 How did Adolf Hitler die? -> $x: (nazi, die on, $x) -> (Nazi war criminals, died on, Jan . 4) -> Jan . 4 (5520ms) How did Adolf Hitler die? Tuesday -0.111111111109 How did Adolf Hitler die? -> $x: (paulum, die on, $x) -> (Paula Lerner Paula Lerner, died on, Tuesday) -> Tuesday (5520ms) How did Adolf Hitler die? Saturday -0.111111111109 How did Adolf Hitler die? -> $x: (nazi, die on, $x) -> (a Nazi death camp, died on, Saturday) -> Saturday (5521ms) How did Adolf Hitler die? December -0.111111111109 How did Adolf Hitler die? -> $x: (paulum, die on, $x) -> (Paula C. Dorner, died on, December) -> December (5521ms) How did Adolf Hitler die? December 2 , 2000 -0.111111111109 How did Adolf Hitler die? -> $x: (paulum, die on, $x) -> (--Paula Underwood Paula Underwood, died on, December 2 , 2000) -> December 2 , 2000 (5521ms) What movies did Meg Ryan star in? three movies -0.444444444442 What movies did Meg Ryan star in? -> $x: (meg ryan, be star in, $x) -> (actress Meg Ryan, have been co-stars in, three movies) -> three movies (567ms) What movies did Meg Ryan star in? LIFE -0.444444444442 What movies did Meg Ryan star in? -> $x: (meg ryan, star in, $x) -> (Meg Ryan, starred in the movie, LIFE) -> LIFE (567ms) Where is the highest point on earth? Kaba 1.444444444444 Where is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (Kaba, is the highest point on, earth) -> Kaba (2269ms) Where is the highest point on earth? Eden 1.444444444444 Where is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (Eden, is the highest point on, earth) -> Eden (2269ms) Where is the highest point on earth? Peak XV 1.444444444444 Where is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (Peak XV, was actually the highest point on, the earth) -> Peak XV (2487ms) Where is the highest point on earth? a whole 1.444444444444 Where is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (a whole, is the highest point on, earth') -> a whole (2403ms) Where is the highest point on earth? The mountain?s peak 1.444444444444 Where is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (The mountain?s peak, was the highest point on, Earth) -> The mountain?s peak (2487ms) Where is the highest point on earth? Highlights Mount Everest 1.444444444444 Where is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (Highlights Mount Everest, is the highest point on, Earth) -> Highlights Mount Everest (2268ms) Where is the highest point on earth? a Himalayan peak 1.444444444444 Where is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (a Himalayan peak, is the highest point on, earth) -> a Himalayan peak (2814ms) Where is the highest point on earth? Tibet ABC 1.444444444444 Where is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (Tibet ABC, is arguably the highest point on, earth) -> Tibet ABC (2403ms) Where is the highest point on earth? part 1.444444444444 Where is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (part, is the highest point on, earth) -> part (2403ms) Where is the highest point on earth? The mountain 1.444444444444 Where is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (The mountain, is the highest point on, earth) -> The mountain (2404ms) Where is the highest point on earth? the Sun ? 7 1.444444444444 Where is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (the Sun ? 7, is the highest point on, Earth) -> the Sun ? 7 (2487ms) Where is the highest point on earth? Cayambe 1.444444444444 Where is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (Cayambe, is the highest point on, earth) -> Cayambe (2487ms) Where is the highest point on earth? Mt Everest 1.444444444444 Where is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (Mt Everest, was the highest point on, Earth) -> Mt Everest (2487ms) Where is the highest point on earth? sea level 1.444444444444 Where is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (sea level, is the highest point on, earth) -> sea level (2403ms) Where is the highest point on earth? the Nepal-Tibet border 1.444444444444 Where is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (the Nepal-Tibet border, was the highest point on, earth) -> the Nepal-Tibet border (2269ms) Where is the highest point on earth? Mount Kilimanjaro 1.444444444444 Where is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (Mount Kilimanjaro, is the highest point on, earth) -> Mount Kilimanjaro (2487ms) Where is the highest point on earth? 29 ,035 feet 1.444444444444 Where is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (29 ,035 feet, is the highest point on, Earth) -> 29 ,035 feet (2487ms) Where is the highest point on earth? Physical Geography Extremes 1.444444444444 Where is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (Physical Geography Extremes, is the highest point on, earth) -> Physical Geography Extremes (2403ms) Where is the highest point on earth? Mount Everest 1.444444444444 Where is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (Mount Everest, is the highest point on, the Earth) -> Mount Everest (2403ms) Where is the highest point on earth? Everest 1.444444444444 Where is the highest point on earth? -> $x: ($x, be highest point on, earth) -> (Everest, is the highest point on, the Earth) -> Everest (2487ms) Where is the highest point on earth? the planets 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (the planets, range from, a few Earth masses) -> the planets (3439ms) Where is the highest point on earth? The Global 200 1.333333333333 Where is the highest point on earth? -> $x: ($x, rank, earth) -> (The Global 200, is a science-based global ranking of, the Earth) -> The Global 200 (3898ms) Where is the highest point on earth? The high-gain antenna 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (The high-gain antenna, was pointed to, Earth) -> The high-gain antenna (3906ms) Where is the highest point on earth? objects 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (objects, ranging to, asteroids relatively close to Earth) -> objects (3697ms) Where is the highest point on earth? the compass needle 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (the compass needle, point to, Earth) -> the compass needle (3864ms) Where is the highest point on earth? light 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (light, was pointing right at, Earth) -> light (3855ms) Where is the highest point on earth? Enlil 1.333333333333 Where is the highest point on earth? -> $x: ($x, rank, earth) -> (Enlil, Rank, king of heaven and earth) -> Enlil (3846ms) Where is the highest point on earth? The Jacquard patterns 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (The Jacquard patterns, range from, earth tones) -> The Jacquard patterns (3790ms) Where is the highest point on earth? the comparison 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (the comparison, pointed towards, Earth) -> the comparison (3731ms) Where is the highest point on earth? The OA rate 1.333333333333 Where is the highest point on earth? -> $x: ($x, be highest in, earth) -> (The OA rate, was highest in, the Earth sciences) -> The OA rate (3846ms) Where is the highest point on earth? the High Gain Antenna 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (the High Gain Antenna, will be pointed towards, earth) -> the High Gain Antenna (3006ms) Where is the highest point on earth? heaven 1.333333333333 Where is the highest point on earth? -> $x: ($x, rank, earth) -> (heaven, ranks higher than, earth) -> heaven (3461ms) Where is the highest point on earth? the navigation 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (the navigation, pointed towards, Earth) -> the navigation (3872ms) Where is the highest point on earth? Noah 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (Noah, points to, earth) -> Noah (3889ms) Where is the highest point on earth? the main antenna 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (the main antenna, pointed to, Earth) -> the main antenna (3461ms) Where is the highest point on earth? Scouts 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (Scouts, range throughout, the earth and report) -> Scouts (3906ms) Where is the highest point on earth? declining sunspot activity 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (declining sunspot activity, is pointing, Earth) -> declining sunspot activity (3855ms) Where is the highest point on earth? the story 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (the story, ranges across, Middle-earth) -> the story (3698ms) Where is the highest point on earth? Topics 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (Topics, range from, earth science) -> Topics (3855ms) Where is the highest point on earth? five-member review panel 1.333333333333 Where is the highest point on earth? -> $x: ($x, rank, earth) -> (five-member review panel, ranked, the Earth Link-Google package) -> five-member review panel (3461ms) Where is the highest point on earth? 1992 China 1.333333333333 Where is the highest point on earth? -> $x: ($x, rank, earth) -> (1992 China, sent a high ranking delegation to, the Earth Summit) -> 1992 China (3697ms) Where is the highest point on earth? topics 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (topics, ranging to, the earth) -> topics (3855ms) Where is the highest point on earth? top 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (top, pointed toward, Earth) -> top (2814ms) Where is the highest point on earth? GEOSCIENCES 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (GEOSCIENCES, examines the entire range of, earth science topics) -> GEOSCIENCES (3439ms) Where is the highest point on earth? the orbit 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (the orbit, ranges just beyond, Earth) -> the orbit (3864ms) Where is the highest point on earth? the most beautiful mountain 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (the most beautiful mountain, ranges on, earth) -> the most beautiful mountain (3881ms) Where is the highest point on earth? the rule 1.333333333333 Where is the highest point on earth? -> $x: ($x, rank, earth) -> (the rule, is the highest-ranking god on, earth) -> the rule (3872ms) Where is the highest point on earth? the Ranger spacecraft 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (the Ranger spacecraft, send close-range images back to, Earth) -> the Ranger spacecraft (2814ms) Where is the highest point on earth? the spacecraft 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (the spacecraft, points, its antenna toward Earth) -> the spacecraft (3872ms) Where is the highest point on earth? a naturally round stone 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (a naturally round stone, ranging in, natural earth tones) -> a naturally round stone (3881ms) Where is the highest point on earth? Laser 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (Laser, ranging to, a near-Earth satellite) -> Laser (3864ms) Where is the highest point on earth? researchers 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (researchers, range from just above, the earth) -> researchers (3846ms) Where is the highest point on earth? the Classroom 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (the Classroom, covers a range of, Earth) -> the Classroom (3889ms) Where is the highest point on earth? B rank 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (B rank, close range, earth type ninjutsu) -> B rank (3898ms) Where is the highest point on earth? the jet 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (the jet, is pointed toward, Earth) -> the jet (3789ms) Where is the highest point on earth? the high gain antenna 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (the high gain antenna, to point to, Earth) -> the high gain antenna (3889ms) Where is the highest point on earth? Denmark 1.333333333333 Where is the highest point on earth? -> $x: ($x, rate, earth) -> (Denmark, rated 43rd in, the UN?s Earth Sightseeing ratings) -> Denmark (3889ms) Where is the highest point on earth? the North 1.333333333333 Where is the highest point on earth? -> $x: ($x, rate, earth) -> (the North, is the first M-rated game set in, Middle Earth) -> the North (3846ms) Where is the highest point on earth? hubble 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (hubble, was pointed at, earth) -> hubble (3732ms) Where is the highest point on earth? contributions 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (contributions, range from, earth-shaking capillary growls) -> contributions (3855ms) Where is the highest point on earth? The colors 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (The colors, range from, earth tones) -> The colors (3846ms) Where is the highest point on earth? Explanations 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (Explanations, have ranged from, Earth) -> Explanations (3881ms) Where is the highest point on earth? the Moon 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (the Moon, always points toward, Earth) -> the Moon (3881ms) Where is the highest point on earth? Travel + Leisure 1.333333333333 Where is the highest point on earth? -> $x: ($x, rank, earth) -> (Travel + Leisure, has ranked, the top 500 hotels on earth) -> Travel + Leisure (3872ms) Where is the highest point on earth? the lens 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (the lens, pointed toward, earth) -> the lens (3898ms) Where is the highest point on earth? the tallest structural vantage 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (the tallest structural vantage, points on, earth) -> the tallest structural vantage (3889ms) Where is the highest point on earth? China ?s solar energy industry 1.333333333333 Where is the highest point on earth? -> $x: ($x, rank, earth) -> (China ?s solar energy industry, has ranked 1st in, the earth) -> China ?s solar energy industry (3898ms) Where is the highest point on earth? Women 1.333333333333 Where is the highest point on earth? -> $x: ($x, rank, earth) -> (Women, must therefore rank with, Mother Earth) -> Women (3898ms) Where is the highest point on earth? Environmental 1.333333333333 Where is the highest point on earth? -> $x: ($x, rank, earth) -> (Environmental, ranks, the earth impact) -> Environmental (3898ms) Where is the highest point on earth? the eyes of the Lord 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (the eyes of the Lord, range to, and fro throughout the earth) -> the eyes of the Lord (3906ms) Where is the highest point on earth? America.ClimateSouth Africa 1.333333333333 Where is the highest point on earth? -> $x: ($x, rank, earth) -> (America.ClimateSouth Africa, ranks high on, earth) -> America.ClimateSouth Africa (3855ms) Where is the highest point on earth? the longest mountain 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (the longest mountain, ranges on, earth) -> the longest mountain (3898ms) Where is the highest point on earth? the Lord 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (the Lord, range throughout, the earth) -> the Lord (3898ms) Where is the highest point on earth? the same side 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (the same side, pointed at, Earth) -> the same side (3889ms) Where is the highest point on earth? the beacon 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (the beacon, points, the way to Earth) -> the beacon (3057ms) Where is the highest point on earth? Waterloo 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (Waterloo, provides a range of, Earth science information) -> Waterloo (3855ms) Where is the highest point on earth? Subjects 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (Subjects, range from, Earth Science) -> Subjects (3006ms) Where is the highest point on earth? the scope 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (the scope, pointed toward, Earth) -> the scope (3906ms) Where is the highest point on earth? Westpac 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (Westpac, launched a new range of, Earth credit cards) -> Westpac (3057ms) Where is the highest point on earth? Colors 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (Colors, range from, neutral and earth tones) -> Colors (3864ms) Where is the highest point on earth? lavender street mcmahons 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (lavender street mcmahons, point, google earth) -> lavender street mcmahons (3864ms) Where is the highest point on earth? the longest continuous mountain 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (the longest continuous mountain, ranges on, Earth) -> the longest continuous mountain (3855ms) Where is the highest point on earth? Species 1.333333333333 Where is the highest point on earth? -> $x: ($x, rank, earth) -> (Species, Classifications at this rank, Earth-colored mouse) -> Species (3789ms) Where is the highest point on earth? the fourth 1.333333333333 Where is the highest point on earth? -> $x: ($x, rank, earth) -> (the fourth, ranked website on, Planet Earth) -> the fourth (2815ms) Where is the highest point on earth? reference 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (reference, is some point on, Earth) -> reference (3439ms) Where is the highest point on earth? Southern Mountain 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (Southern Mountain, ranges to, the beautiful earth tones) -> Southern Mountain (3898ms) Where is the highest point on earth? a large sunflower 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (a large sunflower, pointed at, Earth) -> a large sunflower (3439ms) Where is the highest point on earth? questions 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (questions, ranging to, Earths) -> questions (3697ms) Where is the highest point on earth? The CD-ROM 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (The CD-ROM, covers a wide range of, Earth science topics) -> The CD-ROM (3855ms) Where is the highest point on earth? The spacecraft 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (The spacecraft, pointed towards, Earth) -> The spacecraft (2814ms) Where is the highest point on earth? the century 1.333333333333 Where is the highest point on earth? -> $x: ($x, rank, earth) -> (the century, decimated the ranks of, Earth?s superhero community) -> the century (3906ms) Where is the highest point on earth? Apollo 's arrow 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (Apollo 's arrow, points, the way to Earth) -> Apollo 's arrow (3881ms) Where is the highest point on earth? the seven eyes of the Lord 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (the seven eyes of the Lord, range throughout, the earth) -> the seven eyes of the Lord (3864ms) Where is the highest point on earth? communications 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (communications, range with, Earth) -> communications (3006ms) Where is the highest point on earth? colors 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (colors, ranging from, natural earth tones) -> colors (3006ms) Where is the highest point on earth? No longer 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (No longer, increases the range of, your Earth Shock) -> No longer (3697ms) Where is the highest point on earth? Ares 1.333333333333 Where is the highest point on earth? -> $x: ($x, rank, earth) -> (Ares, joined the ranks of, Earth?s mightiest heroes) -> Ares (3006ms) Where is the highest point on earth? the same face 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (the same face, pointed towards, Earth) -> the same face (3898ms) Where is the highest point on earth? an axis 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (an axis, pointing to, Earth) -> an axis (3864ms) Where is the highest point on earth? the pulsar 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (the pulsar, was pointing at, Earth) -> the pulsar (3789ms) Where is the highest point on earth? Weapons 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (Weapons, are mixed ranging from, earth style weapons) -> Weapons (3872ms) Where is the highest point on earth? the same attachments 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (the same attachments, range from, 2? to 12? auger earth bits) -> the same attachments (3906ms) Where is the highest point on earth? materials 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (materials, ranging to, straw and earth) -> materials (3872ms) Where is the highest point on earth? The Atacama Desert 1.333333333333 Where is the highest point on earth? -> $x: ($x, rank, earth) -> (The Atacama Desert, ranks as, the driest desert on Earth) -> The Atacama Desert (3697ms) Where is the highest point on earth? Mountain 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (Mountain, ranges on, Earth) -> Mountain (3889ms) Where is the highest point on earth? right angles 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (right angles, always point away from, Earth) -> right angles (3872ms) Where is the highest point on earth? the least silent slew 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (the least silent slew, ranges on, Earth) -> the least silent slew (3731ms) Where is the highest point on earth? Silica 1.333333333333 Where is the highest point on earth? -> $x: ($x, rank, earth) -> (Silica, ranks as, one of the hardest elements on earth) -> Silica (3697ms) Where is the highest point on earth? motivational events 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (motivational events, ranging from, earth science) -> motivational events (3881ms) Where is the highest point on earth? the mountain 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (the mountain, ranges on, earth) -> the mountain (3889ms) Where is the highest point on earth? The contributions 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (The contributions, range from, practical , down-to-earth advice) -> The contributions (3881ms) Where is the highest point on earth? Modern geodetic datums 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (Modern geodetic datums, range from, flat-earth models) -> Modern geodetic datums (3881ms) Where is the highest point on earth? Perihelion 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (Perihelion, is the point in, Earth) -> Perihelion (3731ms) Where is the highest point on earth? a nine-foot-wide , dish-shaped antenna 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (a nine-foot-wide , dish-shaped antenna, pointed toward, Earth) -> a nine-foot-wide , dish-shaped antenna (3439ms) Where is the highest point on earth? Rosetta 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (Rosetta, will point to, Earth) -> Rosetta (3898ms) Where is the highest point on earth? human-caused climate change 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (human-caused climate change, has impacted a wide range of, Earth) -> human-caused climate change (3855ms) Where is the highest point on earth? a bomb 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (a bomb, is pointed towards, Earth) -> a bomb (3855ms) Where is the highest point on earth? the greatest mountain 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (the greatest mountain, ranges on, earth) -> the greatest mountain (3872ms) Where is the highest point on earth? contemporary neutrals 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (contemporary neutrals, ranges from, natural earth tones) -> contemporary neutrals (3906ms) Where is the highest point on earth? axial-helical antenna 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (axial-helical antenna, pointed towards, Earth) -> axial-helical antenna (3864ms) Where is the highest point on earth? the same side of the Moon 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (the same side of the Moon, points towards, Earth) -> the same side of the Moon (3789ms) Where is the highest point on earth? An alien telescope 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (An alien telescope, pointed at, Earth) -> An alien telescope (3697ms) Where is the highest point on earth? OSXPlanet 1.333333333333 Where is the highest point on earth? -> $x: ($x, rank, earth) -> (OSXPlanet, ranks right up there with, Google Earth) -> OSXPlanet (3461ms) Where is the highest point on earth? The subjects 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (The subjects, range from, earth education) -> The subjects (3789ms) Where is the highest point on earth? Modern estimates 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (Modern estimates, range from, 1 to 100 Earth masses) -> Modern estimates (3881ms) Where is the highest point on earth? The moon 1.333333333333 Where is the highest point on earth? -> $x: ($x, rank, earth) -> (The moon, is officially ranked as, the Earth) -> The moon (3881ms) Where is the highest point on earth? the nine days 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (the nine days, pointed toward, Earth) -> the nine days (3898ms) Where is the highest point on earth? the youngest mountain 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (the youngest mountain, ranges on, earth ?) -> the youngest mountain (3846ms) Where is the highest point on earth? Cultural highlights 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (Cultural highlights, range from, a down-to-earth local evening) -> Cultural highlights (3057ms) Where is the highest point on earth? Juicy Couture handbags 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (Juicy Couture handbags, range from, earth colors) -> Juicy Couture handbags (3906ms) Where is the highest point on earth? three receivers 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (three receivers, pointed towards, Earth) -> three receivers (3881ms) Where is the highest point on earth? the Moon Swirls 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (the Moon Swirls, are pointing toward, Earth) -> the Moon Swirls (3789ms) Where is the highest point on earth? fields 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (fields, ranging from, the earth sciences) -> fields (3006ms) Where is the highest point on earth? areas 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (areas, ranging from, earth science) -> areas (3855ms) Where is the highest point on earth? Himalayas 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (Himalayas, is the highest mountain range on, Earth) -> Himalayas (3846ms) Where is the highest point on earth? the approximate 50 to 60 degree F 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (the approximate 50 to 60 degree F, range, deep earth) -> the approximate 50 to 60 degree F (3906ms) Where is the highest point on earth? days 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (days, points to, earth) -> days (3864ms) Where is the highest point on earth? a cylinder 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (a cylinder, to be pointed toward, Earth) -> a cylinder (3439ms) Where is the highest point on earth? the camera 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (the camera, points toward, Earth) -> the camera (3855ms) Where is the highest point on earth? the most fabled mountain 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (the most fabled mountain, ranges on, earth) -> the most fabled mountain (3889ms) Where is the highest point on earth? a supermassive black hole 's jet 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (a supermassive black hole 's jet, to point towards, Earth) -> a supermassive black hole 's jet (3906ms) Where is the highest point on earth? a renowned garments 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (a renowned garments, range on, earth) -> a renowned garments (3731ms) Where is the highest point on earth? The arrow 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (The arrow, points to, earth) -> The arrow (3906ms) Where is the highest point on earth? 1995 1.333333333333 Where is the highest point on earth? -> $x: ($x, rank, earth) -> (1995, ranked, Earth sciences) -> 1995 (3872ms) Where is the highest point on earth? organizations 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (organizations, ranging from, Friends of the Earth) -> organizations (3846ms) Where is the highest point on earth? a color palette 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (a color palette, ranging from, muted earth tones) -> a color palette (3846ms) Where is the highest point on earth? the antenna 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (the antenna, pointed toward, Earth) -> the antenna (3898ms) Where is the highest point on earth? laser 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (laser, ranging from, Earth) -> laser (3889ms) Where is the highest point on earth? Seagrass 1.333333333333 Where is the highest point on earth? -> $x: ($x, rank, earth) -> (Seagrass, ranks among, Earth) -> Seagrass (3439ms) Where is the highest point on earth? Color Modifiers Kakishibu 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (Color Modifiers Kakishibu, alone gives a range of, earth tones) -> Color Modifiers Kakishibu (3789ms) Where is the highest point on earth? the antennas 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (the antennas, remain pointed toward, Earth) -> the antennas (3864ms) Where is the highest point on earth? the jets 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (the jets, are pointed towards, Earth) -> the jets (3461ms) Where is the highest point on earth? the eyes of the LORD 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (the eyes of the LORD, range throughout, the earth) -> the eyes of the LORD (3889ms) Where is the highest point on earth? the oldest mountain 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (the oldest mountain, ranges on, earth) -> the oldest mountain (3855ms) Where is the highest point on earth? 3D spatial relationships 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (3D spatial relationships, points on, earth) -> 3D spatial relationships (3846ms) Where is the highest point on earth? ROW Adventures 1.333333333333 Where is the highest point on earth? -> $x: ($x, rank, earth) -> (ROW Adventures, ranked second on, earth) -> ROW Adventures (3881ms) Where is the highest point on earth? The GPS antennas 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (The GPS antennas, are pointed to, Earth) -> The GPS antennas (2814ms) Where is the highest point on earth? the instrument 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (the instrument, pointed toward, Earth) -> the instrument (2814ms) Where is the highest point on earth? wooly mammoths 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (wooly mammoths, ranged, the Earth) -> wooly mammoths (3872ms) Where is the highest point on earth? the highest mountain 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (the highest mountain, ranges on, earth) -> the highest mountain (3789ms) Where is the highest point on earth? the oldest and loveliest mountain 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (the oldest and loveliest mountain, ranges on, earth) -> the oldest and loveliest mountain (3864ms) Where is the highest point on earth? the views 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (the views, range from, Young Earth) -> the views (3872ms) Where is the highest point on earth? orbits 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (orbits, ranging from, low Earth) -> orbits (3057ms) Where is the highest point on earth? the didgeridoo 1.333333333333 Where is the highest point on earth? -> $x: ($x, rank, earth) -> (the didgeridoo, ranks among, the Earth) -> the didgeridoo (3846ms) Where is the highest point on earth? TerraCycle 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (TerraCycle, offers a range of, earth-friendly fertilizers) -> TerraCycle (3881ms) Where is the highest point on earth? groups 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (groups, ranging from, Friends of the Earth) -> groups (3889ms) Where is the highest point on earth? Scientific Information 1.333333333333 Where is the highest point on earth? -> $x: ($x, rank, earth) -> (Scientific Information, ranks, Earth system science third) -> Scientific Information (3881ms) Where is the highest point on earth? the two jets 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (the two jets, pointed, straight to Earth) -> the two jets (3790ms) Where is the highest point on earth? The planets 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (The planets, range from, about 1.5 times the diameter of Earth) -> The planets (3898ms) Where is the highest point on earth? Life 1.333333333333 Where is the highest point on earth? -> $x: ($x, rank, earth) -> (Life, is ranked above, Earth) -> Life (3864ms) Where is the highest point on earth? a geomorphologist 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (a geomorphologist, studies a range of, Earth surface processes) -> a geomorphologist (3906ms) Where is the highest point on earth? the satellite 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (the satellite, pointing towards, Earth) -> the satellite (3461ms) Where is the highest point on earth? the table 1.333333333333 Where is the highest point on earth? -> $x: ($x, rank, earth) -> (the table, had the same rank in, the Western Earth Army) -> the table (3889ms) Where is the highest point on earth? the > > universe 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (the > > universe, are pointed away from, Earth) -> the > > universe (3872ms) Where is the highest point on earth? The University 1.333333333333 Where is the highest point on earth? -> $x: ($x, rank, earth) -> (The University, was ranked 34th for, its earth sciences program) -> The University (3881ms) Where is the highest point on earth? the high-gain antenna 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (the high-gain antenna, is pointed toward, Earth) -> the high-gain antenna (3846ms) Where is the highest point on earth? Geophysics 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (Geophysics, covers a broad range of, earth science) -> Geophysics (3898ms) Where is the highest point on earth? the beam 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (the beam, is pointing at, Earth) -> the beam (3906ms) Where is the highest point on earth? Hint 1.333333333333 Where is the highest point on earth? -> $x: ($x, rate, earth) -> (Hint, Reduce the rate of, the Earth) -> Hint (3846ms) Where is the highest point on earth? the answers 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (the answers, range from, " Mother Earth) -> the answers (3731ms) Where is the highest point on earth? the top 1.333333333333 Where is the highest point on earth? -> $x: ($x, rank, earth) -> (the top, ranked, Earth & Planetary Sciences department) -> the top (3864ms) Where is the highest point on earth? WR 104 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (WR 104, really is pointed at, Earth) -> WR 104 (3789ms) Where is the highest point on earth? The bulge 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (The bulge, to point toward, Earth) -> The bulge (3789ms) Where is the highest point on earth? radio jets 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (radio jets, pointed straight at, Earth) -> radio jets (3881ms) Where is the highest point on earth? the spacecraft?s antenna 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (the spacecraft?s antenna, was pointed away from, Earth) -> the spacecraft?s antenna (3889ms) Where is the highest point on earth? The NGSLR laser 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (The NGSLR laser, ranges to, Earth-orbiting satellites) -> The NGSLR laser (3006ms) Where is the highest point on earth? the oldest and most beautiful mountain 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (the oldest and most beautiful mountain, ranges on, earth) -> the oldest and most beautiful mountain (3461ms) Where is the highest point on earth? Europeans 1.333333333333 Where is the highest point on earth? -> $x: ($x, range, earth) -> (Europeans, ranged, the earth conquering) -> Europeans (3906ms) Where is the highest point on earth? the wettest 1.333333333333 Where is the highest point on earth? -> $x: ($x, point, earth) -> (the wettest, points on, earth) -> the wettest (3889ms) Where is the highest point on earth? Absolute temperature 1.0 Where is the highest point on earth? -> $x: ($x, be temperature of, earth) -> (Absolute temperature, is the temperature of, the earth) -> Absolute temperature (3914ms) Where is the highest point on earth? any forum 1.0 Where is the highest point on earth? -> $x: ($x, be temperature of, earth) -> (any forum, is the current temperature of, the Earth) -> any forum (3914ms) Where is the highest point on earth? atmospheric carbon dioxide 1.0 Where is the highest point on earth? -> $x: ($x, be temperature of, earth) -> (atmospheric carbon dioxide, is raising the temperature of, Earth) -> atmospheric carbon dioxide (3906ms) Where is the highest point on earth? Global warming 1.0 Where is the highest point on earth? -> $x: ($x, be temperature of, earth) -> (Global warming, is increasing the temperatures of, the Earth) -> Global warming (3914ms) Where is the highest point on earth? 29.783 km/s 1.0 Where is the highest point on earth? -> $x: ($x, be speed of, earth) -> (29.783 km/s, is the average orbital speed of, the Earth) -> 29.783 km/s (3914ms) Where is the highest point on earth? TEarth 1.0 Where is the highest point on earth? -> $x: ($x, be temperature of, earth) -> (TEarth, is the mean surface temperature of, Earth) -> TEarth (3914ms) Where is the highest point on earth? GPS 1.0 Where is the highest point on earth? -> $x: ($x, be speed of, earth) -> (GPS, is the speeding up of, the earth) -> GPS (3906ms) Where is the highest point on earth? a massive solar flare 1.0 Where is the highest point on earth? -> $x: ($x, be temperature of, earth) -> (a massive solar flare, are causing the temperature of, the Earth) -> a massive solar flare (3914ms) Where is the highest point on earth? heat 1.0 Where is the highest point on earth? -> $x: ($x, be temperature of, earth) -> (heat, are essential to maintaining the temperature of, the Earth) -> heat (3914ms) Where is the highest point on earth? satellites 1.0 Where is the highest point on earth? -> $x: ($x, be temperature of, earth) -> (satellites, are taking the temperature of, the Earth) -> satellites (3914ms) Where is the highest point on earth? industrialization 1.0 Where is the highest point on earth? -> $x: ($x, be temperature of, earth) -> (industrialization, is raising the temperature of, the earth) -> industrialization (3914ms) Where is the highest point on earth? greenhouse gases 1.0 Where is the highest point on earth? -> $x: ($x, be temperature of, earth) -> (greenhouse gases, is raising the temperature of, the earth) -> greenhouse gases (3914ms) Where is the highest point on earth? The Dead Sea 0.8888888888919999 Where is the highest point on earth? -> $x: ($x, be lowest point of, earth) -> (The Dead Sea, is the lowest point of, the Earth) -> The Dead Sea (3914ms) Where is the highest point on earth? Nostrebluc 0.888888888889 Where is the highest point on earth? -> $x: ($x, be point of, earth) -> (Nostrebluc, is the whole point of, this plant/earth/fire boost) -> Nostrebluc (3921ms) Where is the highest point on earth? extra packaging 0.888888888889 Where is the highest point on earth? -> $x: ($x, be point of, earth) -> (extra packaging, is really the point of, Earth Day) -> extra packaging (3914ms) Where is the highest point on earth? the sun 0.888888888889 Where is the highest point on earth? -> $x: ($x, be point of, earth) -> (the sun, were just a tiny point of, light and Earth) -> the sun (3921ms) Where is the highest point on earth? The body 0.888888888889 Where is the highest point on earth? -> $x: ($x, be point of, earth) -> (The body, is a sensitized point of, earth) -> The body (3922ms) Where is the highest point on earth? the 'lord 0.888888888889 Where is the highest point on earth? -> $x: ($x, be highest peak on, earth) -> (the 'lord, is the fourth highest peak on, earth) -> the 'lord (3922ms) Where is the highest point on earth? L2 0.888888888889 Where is the highest point on earth? -> $x: ($x, be point of, earth) -> (L2, is a Lagrange point of, the Earth-Sun system) -> L2 (3914ms) Where is the highest point on earth? The vernal equinox 0.888888888889 Where is the highest point on earth? -> $x: ($x, be point of, earth) -> (The vernal equinox, is the point of, the earth?s orbit) -> The vernal equinox (3922ms) Where is the highest point on earth? life 0.888888888889 Where is the highest point on earth? -> $x: ($x, be point of, earth) -> (life, is the point of, this Earth Experiment game) -> life (3921ms) Where is the highest point on earth? Imagination 0.888888888889 Where is the highest point on earth? -> $x: ($x, be point of, earth) -> (Imagination, is the whole point of, Middle-Earth) -> Imagination (3922ms) Where is the highest point on earth? a simple question 0.888888888889 Where is the highest point on earth? -> $x: ($x, be highest peak on, earth) -> (a simple question, is the highest peak on, earth) -> a simple question (3922ms) Where is the highest point on earth? Harrison Grey Okay 0.888888888889 Where is the highest point on earth? -> $x: ($x, be point of, earth) -> (Harrison Grey Okay, exactly is the point of, Earth-2) -> Harrison Grey Okay (3922ms) Where is the highest point on earth? Carl 3. 0.888888888889 Where is the highest point on earth? -> $x: ($x, be point of, earth) -> (Carl 3., was the starting point of, the earth) -> Carl 3. (3922ms) Where is the highest point on earth? eternal salvation 0.888888888889 Where is the highest point on earth? -> $x: ($x, be point of, earth) -> (eternal salvation, is the point of, this earth life) -> eternal salvation (3921ms) Where is the highest point on earth? Mount Qumulangma 0.888888888889 Where is the highest point on earth? -> $x: ($x, be highest peak of, earth) -> (Mount Qumulangma, is the highest peak of, the Earth) -> Mount Qumulangma (3922ms) Where is the highest point on earth? choice 0.888888888889 Where is the highest point on earth? -> $x: ($x, be point of, earth) -> (choice, is the first point of, Earth grounding) -> choice (3921ms) Where is the highest point on earth? The color 0.777777777781 Where is the highest point on earth? -> $x: ($x, function, earth) -> (The color, is a function of, the Earth?s atmosphere) -> The color (3936ms) Where is the highest point on earth? The current record 0.777777777781 Where is the highest point on earth? -> $x: ($x, be width of, earth) -> (The current record, is nearly the width of, the Earth) -> The current record (3949ms) Where is the highest point on earth? truth 0.777777777781 Where is the highest point on earth? -> $x: ($x, function, earth) -> (truth, be functioning on, earth) -> truth (3955ms) Where is the highest point on earth? Saturn INT-20 0.777777777781 Where is the highest point on earth? -> $x: ($x, function, earth) -> (Saturn INT-20, Rocket Function, Low Earth orbit) -> Saturn INT-20 (3955ms) Where is the highest point on earth? April 17 , 2012 0.777777777781 Where is the highest point on earth? -> $x: ($x, theme, earth) -> (April 17 , 2012, themed, ?One Earth) -> April 17 , 2012 (3949ms) Where is the highest point on earth? 20th August 0.777777777781 Where is the highest point on earth? -> $x: ($x, theme, earth) -> (20th August, had the theme of, ' One earth) -> 20th August (3949ms) Where is the highest point on earth? a solar condition 0.777777777781 Where is the highest point on earth? -> $x: ($x, will freeze, earth) -> (a solar condition, will have a freezing influence on, Earth) -> a solar condition (3955ms) Where is the highest point on earth? the Holy Spirit 0.777777777781 Where is the highest point on earth? -> $x: ($x, function, earth) -> (the Holy Spirit, now function on, earth) -> the Holy Spirit (3955ms) Where is the highest point on earth? Saturn I 0.777777777781 Where is the highest point on earth? -> $x: ($x, function, earth) -> (Saturn I, Rocket Function, Low Earth orbit) -> Saturn I (3929ms) Where is the highest point on earth? Mission Humans 0.777777777781 Where is the highest point on earth? -> $x: ($x, function, earth) -> (Mission Humans, are a function of, the living planet Earth) -> Mission Humans (3943ms) Where is the highest point on earth? Righteousness 0.777777777781 Where is the highest point on earth? -> $x: ($x, theme, earth) -> (Righteousness, shall be the dominant theme of, earth) -> Righteousness (3929ms) Where is the highest point on earth? Dirty 0.777777777781 Where is the highest point on earth? -> $x: ($x, theme, earth) -> (Dirty, is the theme for, the 7th annual Piedmont Earth Day Fair) -> Dirty (3943ms) Where is the highest point on earth? God 0.777777777781 Where is the highest point on earth? -> $x: ($x, function, earth) -> (God, function on, the earth) -> God (3955ms) Where is the highest point on earth? Polar Satellite Launch Vehicle 0.777777777781 Where is the highest point on earth? -> $x: ($x, function, earth) -> (Polar Satellite Launch Vehicle, Rocket Function, Low Earth orbit) -> Polar Satellite Launch Vehicle (3936ms) Where is the highest point on earth? Tree-planting 0.777777777781 Where is the highest point on earth? -> $x: ($x, theme, earth) -> (Tree-planting, seems to be a theme of, this Earth Day) -> Tree-planting (3942ms) Where is the highest point on earth? each system 0.777777777781 Where is the highest point on earth? -> $x: ($x, function, earth) -> (each system, functions on, Earth) -> each system (3929ms) Where is the highest point on earth? Saturn-Shuttle 0.777777777781 Where is the highest point on earth? -> $x: ($x, function, earth) -> (Saturn-Shuttle, Rocket Function, Low Earth orbit) -> Saturn-Shuttle (3949ms) Where is the highest point on earth? the Sun 0.777777777781 Where is the highest point on earth? -> $x: ($x, boil, earth) -> (the Sun, boiled, Earth) -> the Sun (3936ms) Where is the highest point on earth? Jack Vance 0.777777777781 Where is the highest point on earth? -> $x: ($x, theme, earth) -> (Jack Vance, used an identical theme for, The Dying Earth) -> Jack Vance (3936ms) Where is the highest point on earth? the heat 0.777777777781 Where is the highest point on earth? -> $x: ($x, boil, earth) -> (the heat, has boiled away, all the Earth?s water) -> the heat (3929ms) Where is the highest point on earth? redemption 0.777777777781 Where is the highest point on earth? -> $x: ($x, function, earth) -> (redemption, is functioning on, this earth) -> redemption (3943ms) Where is the highest point on earth? Energia 0.777777777781 Where is the highest point on earth? -> $x: ($x, function, earth) -> (Energia, Rocket Function, Low Earth orbit) -> Energia (3929ms) Where is the highest point on earth? Saturn V 0.777777777781 Where is the highest point on earth? -> $x: ($x, function, earth) -> (Saturn V, Rocket Function, Low Earth orbit) -> Saturn V (3936ms) Where is the highest point on earth? bodies 0.777777777781 Where is the highest point on earth? -> $x: ($x, function, earth) -> (bodies, can function on, earth) -> bodies (3929ms) Where is the highest point on earth? Jesus Christ 0.777777777781 Where is the highest point on earth? -> $x: ($x, function, earth) -> (Jesus Christ, did function on, this earth) -> Jesus Christ (3949ms) Where is the highest point on earth? The voyage 0.777777777781 Where is the highest point on earth? -> $x: ($x, theme, earth) -> (The voyage, explored the academic theme of, One Earth) -> The voyage (3936ms) Where is the highest point on earth? Earth Day 2012 0.777777777781 Where is the highest point on earth? -> $x: ($x, theme, earth) -> (Earth Day 2012, will explore the theme of, a healthy Earth) -> Earth Day 2012 (3949ms) Where is the highest point on earth? gemstone 0.777777777781 Where is the highest point on earth? -> $x: ($x, function, earth) -> (gemstone, serves an energetic function for, the Earth) -> gemstone (3955ms) Where is the highest point on earth? Eve 0.777777777781 Where is the highest point on earth? -> $x: ($x, function, earth) -> (Eve, represents your function in, this earth) -> Eve (3943ms) Where is the highest point on earth? the best way corporations 0.777777777781 Where is the highest point on earth? -> $x: ($x, function, earth) -> (the best way corporations, function everywhere in, the earth) -> the best way corporations (3936ms) Where is the highest point on earth? more and better ways 0.777777777781 Where is the highest point on earth? -> $x: ($x, function, earth) -> (more and better ways, function on, this earth) -> more and better ways (3943ms) Where is the highest point on earth? natural resources 0.777777777781 Where is the highest point on earth? -> $x: ($x, theme, earth) -> (natural resources, was the theme of, the 1992 Earth Summit) -> natural resources (3936ms) Where is the highest point on earth? The latter 0.777777777781 Where is the highest point on earth? -> $x: ($x, boil, earth) -> (The latter, boils down to, earth) -> The latter (3955ms) Where is the highest point on earth? networks 0.777777777781 Where is the highest point on earth? -> $x: ($x, theme, earth) -> (networks, will be an essential theme of, EarthCube) -> networks (3936ms) Where is the highest point on earth? huge solar flares 0.777777777781 Where is the highest point on earth? -> $x: ($x, boil, earth) -> (huge solar flares, boiled, the Earth) -> huge solar flares (3929ms) Where is the highest point on earth? the body 0.777777777781 Where is the highest point on earth? -> $x: ($x, function, earth) -> (the body, normally function on, Earth) -> the body (3955ms) Where is the highest point on earth? various little ponds 0.777777777781 Where is the highest point on earth? -> $x: ($x, boil, earth) -> (various little ponds, were then boiling naturally in, the earth) -> various little ponds (3955ms) Where is the highest point on earth? no business 0.777777777781 Where is the highest point on earth? -> $x: ($x, boil, earth) -> (no business, being a festering boil on, the earth) -> no business (3943ms) Where is the highest point on earth? SAGES - Scottish Alliance for Geoscience, Environment and Society 0.777777777781 Where is the highest point on earth? -> $x: ($x, theme, earth) -> (SAGES - Scottish Alliance for Geoscience, Environment and Society, Themes, SAGES Centre for Earth System Dynamics) -> SAGES - Scottish Alliance for Geoscience, Environment and Society (3949ms) Where is the highest point on earth? Indus 0.777777777781 Where is the highest point on earth? -> $x: ($x, theme, earth) -> (Indus, highlighted the theme of, Earth Day 2010) -> Indus (3949ms) Where is the highest point on earth? Green generation 0.777777777781 Where is the highest point on earth? -> $x: ($x, theme, earth) -> (Green generation, is the global theme for, Earth day) -> Green generation (3936ms) Where is the highest point on earth? the Kingdom 0.777777777781 Where is the highest point on earth? -> $x: ($x, function, earth) -> (the Kingdom, would function upon, earth) -> the Kingdom (3943ms) Where is the highest point on earth? Voskhod 0.777777777781 Where is the highest point on earth? -> $x: ($x, function, earth) -> (Voskhod, Rocket Function, Low Earth orbit) -> Voskhod (3949ms) Where is the highest point on earth? water 0.777777777781 Where is the highest point on earth? -> $x: ($x, boil, earth) -> (water, to boil, the Earth 's tides) -> water (3929ms) Where is the highest point on earth? Green? ? 0.777777777781 Where is the highest point on earth? -> $x: ($x, theme, earth) -> (Green? ?, is the theme for, Earth) -> Green? ? (3955ms) Where is the highest point on earth? Spiritual ecology 0.777777777781 Where is the highest point on earth? -> $x: ($x, theme, earth) -> (Spiritual ecology, is the theme of, the Earth Vision project) -> Spiritual ecology (3943ms) Where is the highest point on earth? The creatures 0.777777777781 Where is the highest point on earth? -> $x: ($x, function, earth) -> (The creatures, could only function on, earth) -> The creatures (3960ms) Where is the highest point on earth? Investment 0.777777777781 Where is the highest point on earth? -> $x: ($x, theme, earth) -> (Investment, is a central theme in, Earth Day 2000) -> Investment (3929ms) Where is the highest point on earth? 2001 National Land Cover Data metadata 0.777777777781 Where is the highest point on earth? -> $x: ($x, theme, earth) -> (2001 National Land Cover Data metadata, Theme keyword(s), Earth remote sensing) -> 2001 National Land Cover Data metadata (3943ms) Where is the highest point on earth? Trams 0.777777777781 Where is the highest point on earth? -> $x: ($x, function, earth) -> (Trams, would function as, Earth-friendly public transportation) -> Trams (3949ms) Where is the highest point on earth? an Earth analog environment 0.777777777781 Where is the highest point on earth? -> $x: ($x, function, earth) -> (an Earth analog environment, functions here on, Earth) -> an Earth analog environment (3936ms) Where is the highest point on earth? Envisat 0.777777777781 Where is the highest point on earth? -> $x: ($x, function, earth) -> (Envisat, functioning properly, earth observation satellite) -> Envisat (3929ms) Where is the highest point on earth? the links 0.777777777781 Where is the highest point on earth? -> $x: ($x, function, earth) -> (the links, functioned properly for, Google Earth integration) -> the links (3929ms) Where is the highest point on earth? The life-support 0.777777777781 Where is the highest point on earth? -> $x: ($x, function, earth) -> (The life-support, functions of, earth) -> The life-support (3929ms) Where is the highest point on earth? the planet 0.777777777781 Where is the highest point on earth? -> $x: ($x, be width of, earth) -> (the planet, is the width of, two to three Earths) -> the planet (3943ms) Where is the highest point on earth? the way gravity 0.777777777781 Where is the highest point on earth? -> $x: ($x, function, earth) -> (the way gravity, functions on, Earth) -> the way gravity (3943ms) Where is the highest point on earth? the same attractive force 0.777777777781 Where is the highest point on earth? -> $x: ($x, function, earth) -> (the same attractive force, functioned also on, earth) -> the same attractive force (3943ms) Where is the highest point on earth? Earth Day Network 0.777777777781 Where is the highest point on earth? -> $x: ($x, theme, earth) -> (Earth Day Network, has set the theme for, Earth Day 2012) -> Earth Day Network (3936ms) Where is the highest point on earth? The church 0.777777777781 Where is the highest point on earth? -> $x: ($x, function, earth) -> (The church, function on, earth) -> The church (3955ms) Where is the highest point on earth? Human Means 0.777777777781 Where is the highest point on earth? -> $x: ($x, theme, earth) -> (Human Means, would be the theme in, todays earth) -> Human Means (3955ms) Where is the highest point on earth? Fight As One 0.777777777781 Where is the highest point on earth? -> $x: ($x, theme, earth) -> (Fight As One, Theme Song For, The Avengers: Earth's Mightiest Heroes) -> Fight As One (3929ms) Where is the highest point on earth? Ego 0.777777777781 Where is the highest point on earth? -> $x: ($x, theme, earth) -> (Ego, is the theme of, A New Earth) -> Ego (3936ms) Where is the highest point on earth? the atmosphere 0.777777777781 Where is the highest point on earth? -> $x: ($x, boil, earth) -> (the atmosphere, would boil off, the Earth) -> the atmosphere (3949ms) Where is the highest point on earth? species extinction 0.777777777781 Where is the highest point on earth? -> $x: ($x, function, earth) -> (species extinction, alter the function of, Earth) -> species extinction (3929ms) Where is the highest point on earth? a radar pulse 0.777777777781 Where is the highest point on earth? -> $x: ($x, function, earth) -> (a radar pulse, is primarily a function of, earth conductivity) -> a radar pulse (3949ms) Where is the highest point on earth? World Culture 0.777777777781 Where is the highest point on earth? -> $x: ($x, theme, earth) -> (World Culture, Dolls with this theme, Spirit of the Earth Barbie) -> World Culture (3955ms) Where is the highest point on earth? the shadow 0.777777777781 Where is the highest point on earth? -> $x: ($x, be width of, earth) -> (the shadow, was also the width of, the Earth) -> the shadow (3929ms) Where is the highest point on earth? ideas 0.777777777781 Where is the highest point on earth? -> $x: ($x, theme, earth) -> (ideas, echoed Westwood?s political theme of, Earth Mother) -> ideas (3943ms) Where is the highest point on earth? smelling , tasting and touching 0.777777777781 Where is the highest point on earth? -> $x: ($x, function, earth) -> (smelling , tasting and touching, are functions of, Earth) -> smelling , tasting and touching (3936ms) Where is the highest point on earth? Saturn IB 0.777777777781 Where is the highest point on earth? -> $x: ($x, function, earth) -> (Saturn IB, Rocket Function, Low Earth orbit) -> Saturn IB (3955ms) Where is the highest point on earth? Beauty improvements 0.777777777781 Where is the highest point on earth? -> $x: ($x, function, earth) -> (Beauty improvements, improve the function of, Google Earth) -> Beauty improvements (3943ms) Where is the highest point on earth? New 0.777777777781 Where is the highest point on earth? -> $x: ($x, function, earth) -> (New, functions available in, EarthMediaCenter ? WebCam 1.5) -> New (3943ms) Where is the highest point on earth? The 2009 campaign 0.777777777781 Where is the highest point on earth? -> $x: ($x, theme, earth) -> (The 2009 campaign, is themed around, ?Vote Earth?) -> The 2009 campaign (3955ms) Where is the highest point on earth? Evil 0.777777777781 Where is the highest point on earth? -> $x: ($x, boil, earth) -> (Evil, boiled out of, Earth-Spine) -> Evil (3949ms) Where is the highest point on earth? the very way human beings 0.777777777781 Where is the highest point on earth? -> $x: ($x, function, earth) -> (the very way human beings, function on, this earth) -> the very way human beings (3949ms) Where is the highest point on earth? the students 0.7777777777789999 Where is the highest point on earth? -> $x: ($x, be highest point in, world) -> (the students, is the highest point in, the world) -> the students (3960ms) Where is the highest point on earth? the tallest 0.7777777777789999 Where is the highest point on earth? -> $x: ($x, be highest point in, world) -> (the tallest, will be the highest point in, the World) -> the tallest (3960ms) Where is the highest point on earth? Kilimanjaro 0.7777777777789999 Where is the highest point on earth? -> $x: ($x, be highest point in, world) -> (Kilimanjaro, is also the highest point in, the world) -> Kilimanjaro (3960ms) Where is the highest point on earth? The summit 0.7777777777789999 Where is the highest point on earth? -> $x: ($x, be highest point in, world) -> (The summit, is the highest point in, the world) -> The summit (3960ms) Where is the highest point on earth? Aconcagua 0.7777777777789999 Where is the highest point on earth? -> $x: ($x, be highest point in, world) -> (Aconcagua, is the highest point in, the world) -> Aconcagua (3960ms) Where is the highest point on earth? the highest peak 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (the highest peak, is the eighth highest mountain in, the world) -> the highest peak (3970ms) Where is the highest point on earth? 4 Mount Everest 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (4 Mount Everest, is the highest mountain in, the world) -> 4 Mount Everest (3984ms) Where is the highest point on earth? Missouri 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Missouri, was probably the highest mountain in, the world) -> Missouri (3970ms) Where is the highest point on earth? Khangchendzonga 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Khangchendzonga, is the third highest mountain in, the world) -> Khangchendzonga (3984ms) Where is the highest point on earth? Broad Peak 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Broad Peak, is the 12th highest mountain in, the world) -> Broad Peak (3985ms) Where is the highest point on earth? 8,516m 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (8,516m, is the fourth highest mountain in, the world) -> 8,516m (3980ms) Where is the highest point on earth? Lhotse 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Lhotse, is the fourth highest mountain in, the world) -> Lhotse (3970ms) Where is the highest point on earth? Dhaulagiri 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Dhaulagiri, is the sixth highest mountain in, the world) -> Dhaulagiri (3985ms) Where is the highest point on earth? 8,201m Cho Oyu 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (8,201m Cho Oyu, is the sixth highest mountain in, the world) -> 8,201m Cho Oyu (3984ms) Where is the highest point on earth? Medeo 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Medeo, is the highest mountain range in, the world) -> Medeo (3960ms) Where is the highest point on earth? Sikkim 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Sikkim, is the third highest mountain in, the world) -> Sikkim (3970ms) Where is the highest point on earth? 8,586m Kanchenjunga 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (8,586m Kanchenjunga, is the third highest mountain in, the world) -> 8,586m Kanchenjunga (3980ms) Where is the highest point on earth? mountain 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (mountain, is the ninth-highest mountain in, the world) -> mountain (3970ms) Where is the highest point on earth? sight 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (sight, are the highest mountains in, the world) -> sight (3960ms) Where is the highest point on earth? Strenuous Makalu 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Strenuous Makalu, is the fifth highest mountain in, the world) -> Strenuous Makalu (3980ms) Where is the highest point on earth? Cho-Oyu 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Cho-Oyu, is the sixth highest mountain in, the world) -> Cho-Oyu (3984ms) Where is the highest point on earth? 598 mtrs 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (598 mtrs, is third highest mountain in, the world) -> 598 mtrs (3975ms) Where is the highest point on earth? Manaslu 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Manaslu, is the eighth highest mountain in, the world) -> Manaslu (3984ms) Where is the highest point on earth? 10 days Annapurna 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (10 days Annapurna, is the 10th highest mountain in, the world) -> 10 days Annapurna (3970ms) Where is the highest point on earth? the border 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (the border, is the highest mountain in, the world) -> the border (3960ms) Where is the highest point on earth? China 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (China, is the highest mountain in, the world) -> China (3970ms) Where is the highest point on earth? 8167 meters 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (8167 meters, is 7th highest mountain in, the world) -> 8167 meters (3965ms) Where is the highest point on earth? 26,795 feet 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (26,795 feet, is the sixth highest mountain in, the world) -> 26,795 feet (3965ms) Where is the highest point on earth? the Gorkha massif 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (the Gorkha massif, is the eighth highest mountain in, the world) -> the Gorkha massif (3970ms) Where is the highest point on earth? Kanchenjunga 8586m 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Kanchenjunga 8586m, is the third highest mountain in, the world) -> Kanchenjunga 8586m (3980ms) Where is the highest point on earth? Kanchanjunga 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Kanchanjunga, is the third highest mountain in, the world) -> Kanchanjunga (3984ms) Where is the highest point on earth? two countries 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (two countries, is the third-highest mountain in, the world) -> two countries (3965ms) Where is the highest point on earth? peaks 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (peaks, is the highest mountain in, the world) -> peaks (3984ms) Where is the highest point on earth? Nepal Manaslu 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Nepal Manaslu, is the eighth highest mountain in, the world) -> Nepal Manaslu (3960ms) Where is the highest point on earth? the Peak XV 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (the Peak XV, is the highest mountain in, the world) -> the Peak XV (3980ms) Where is the highest point on earth? Tingri County 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Tingri County, is the highest mountain in, the world) -> Tingri County (3965ms) Where is the highest point on earth? K2 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (K2, is the second highest mountain in, the world) -> K2 (3975ms) Where is the highest point on earth? snow ? 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (snow ?, is the highest mountain range in, the world) -> snow ? (3965ms) Where is the highest point on earth? Santa Marta 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Santa Marta, is the highest coastal mountain range in, the world) -> Santa Marta (3985ms) Where is the highest point on earth? Nepal 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Nepal, is the seventh highest mountain in, the world) -> Nepal (3990ms) Where is the highest point on earth? user 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (user, is the highest mountain in, the world) -> user (3965ms) Where is the highest point on earth? Makalu Makalu 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Makalu Makalu, is the fifth highest mountain in, the world) -> Makalu Makalu (3975ms) Where is the highest point on earth? Nanga Parbat 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Nanga Parbat, is the ninth highest mountain in, the world) -> Nanga Parbat (3975ms) Where is the highest point on earth? Shishapangma 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Shishapangma, is the 14th highest mountain in, the world) -> Shishapangma (3975ms) Where is the highest point on earth? The Khumbu Valley 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (The Khumbu Valley, is the highest mountain in, the world) -> The Khumbu Valley (3970ms) Where is the highest point on earth? The mighty 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (The mighty, is the highest mountains in, the world) -> The mighty (3980ms) Where is the highest point on earth? ?Mountain 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (?Mountain, is the eighth highest mountain in, the world) -> ?Mountain (3970ms) Where is the highest point on earth? Cho Oyu Cho Oyu 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Cho Oyu Cho Oyu, is the sixth highest mountain in, the world) -> Cho Oyu Cho Oyu (3960ms) Where is the highest point on earth? The Himalayas 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (The Himalayas, are the highest mountain range in, the world) -> The Himalayas (3984ms) Where is the highest point on earth? Makalu 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Makalu, is the fifth highest mountain in, the world) -> Makalu (3965ms) Where is the highest point on earth? The Sierra Nevada 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (The Sierra Nevada, is the highest coastal mountain in, the world) -> The Sierra Nevada (3975ms) Where is the highest point on earth? Mauna Kea 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Mauna Kea, is the highest mountain in, the world) -> Mauna Kea (3980ms) Where is the highest point on earth? the Andes 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (the Andes, are the highest mountains in, the world) -> the Andes (3990ms) Where is the highest point on earth? The Andes 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (The Andes, is the second highest mountain range in, the world) -> The Andes (3970ms) Where is the highest point on earth? Everest Mount Everest 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Everest Mount Everest, is the highest mountain in, the world) -> Everest Mount Everest (3984ms) Where is the highest point on earth? Lamlam 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Lamlam, is arguably the highest mountain in, the world) -> Lamlam (3975ms) Where is the highest point on earth? May Mount Everest 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (May Mount Everest, is the highest mountain in, the world) -> May Mount Everest (3965ms) Where is the highest point on earth? Kangchenjunga 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Kangchenjunga, is the third highest mountain in, the world) -> Kangchenjunga (3975ms) Where is the highest point on earth? Cho Oyu 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Cho Oyu, is the sixth highest mountain in, the world) -> Cho Oyu (3980ms) Where is the highest point on earth? Kanchenjunga 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Kanchenjunga, is the third highest mountain in, the world) -> Kanchenjunga (3980ms) Where is the highest point on earth? The versoplane 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, universe) -> (The versoplane, is the highest mountain in, our unital universe) -> The versoplane (3970ms) Where is the highest point on earth? Mount Dhaulagiri 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Mount Dhaulagiri, is the seventh highest mountain in, the world) -> Mount Dhaulagiri (3975ms) Where is the highest point on earth? 8848 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (8848, is the highest mountain in, the world) -> 8848 (3975ms) Where is the highest point on earth? Karjiang 0.6666666666650001 Where is the highest point on earth? -> $x: ($x, be highest mountain in, world) -> (Karjiang, is the fourth highest unclimbed mountain in, the world) -> Karjiang (3980ms) Where is the highest point on earth? 6,960 meters 0.555555555555 Where is the highest point on earth? -> $x: ($x, be highest peak in, world) -> (6,960 meters, is the highest peak in, the world) -> 6,960 meters (3996ms) Where is the highest point on earth? Argentina 0.555555555555 Where is the highest point on earth? -> $x: ($x, be highest peak in, world) -> (Argentina, is the highest peak in, the world) -> Argentina (3990ms) Where is the highest point on earth? 8848 meters 0.555555555555 Where is the highest point on earth? -> $x: ($x, be highest peak in, world) -> (8848 meters, is the highest peak in, the world) -> 8848 meters (3996ms) Where is the highest point on earth? Straight 0.555555555555 Where is the highest point on earth? -> $x: ($x, be highest peak in, world) -> (Straight, ahead is the third highest peak in, the world) -> Straight (3996ms) Where is the highest point on earth? Namjagbarwa 0.555555555555 Where is the highest point on earth? -> $x: ($x, be highest peak in, world) -> (Namjagbarwa, is the fifteenth highest peak in, the world) -> Namjagbarwa (3996ms) Where is the highest point on earth? 8163m 0.555555555555 Where is the highest point on earth? -> $x: ($x, be highest peak in, world) -> (8163m, is the 8th highest peak in, the world) -> 8163m (3996ms) Where is the highest point on earth? Masherbrum 0.555555555555 Where is the highest point on earth? -> $x: ($x, be highest peak in, world) -> (Masherbrum, is the 22nd highest peak in, the world) -> Masherbrum (4000ms) Where is the highest point on earth? 8,611 meters 0.555555555555 Where is the highest point on earth? -> $x: ($x, be highest peak in, world) -> (8,611 meters, is the second highest peak in, the world) -> 8,611 meters (4000ms) Where is the highest point on earth? Goddess Third 0.555555555555 Where is the highest point on earth? -> $x: ($x, be highest peak in, world) -> (Goddess Third, is the highest peak in, the world) -> Goddess Third (3990ms) Where is the highest point on earth? the Universe 0.555555555555 Where is the highest point on earth? -> $x: ($x, be highest peak in, world) -> (the Universe, is the highest peak in, the world) -> the Universe (4000ms) Where is the highest point on earth? the main peak 0.555555555555 Where is the highest point on earth? -> $x: ($x, be highest peak in, world) -> (the main peak, is the highest peak in, the world) -> the main peak (4000ms) Where is the highest point on earth? 1955 Lhotse 0.555555555555 Where is the highest point on earth? -> $x: ($x, be highest peak in, world) -> (1955 Lhotse, was the highest unclimbed peak in, the world) -> 1955 Lhotse (4000ms) Where is the highest point on earth? ?Mt Everest 0.555555555555 Where is the highest point on earth? -> $x: ($x, be highest peak in, world) -> (?Mt Everest, is the highest peak in, the world) -> ?Mt Everest (3996ms) Where is the highest point on earth? ?Mt Everest 0.555555555555 Where is the highest point on earth? -> $x: ($x, be highest peak in, world) -> (?Mt Everest, is the highest peak in, the world) -> ?Mt Everest (3996ms) Where is the highest point on earth? 8848m Mount Everest 0.555555555555 Where is the highest point on earth? -> $x: ($x, be highest peak in, world) -> (8848m Mount Everest, is the highest peak in, the world) -> 8848m Mount Everest (4000ms) Where is the highest point on earth? the mighty Kanchenjunga 0.555555555555 Where is the highest point on earth? -> $x: ($x, be highest peak in, world) -> (the mighty Kanchenjunga, is the third highest peak in, the world) -> the mighty Kanchenjunga (4000ms) Where is the highest point on earth? Logan Pass 0.444444444444 Where is the highest point on earth? -> $x: ($x, be highest point on, the sun) -> (Logan Pass, is the highest point on, the Going-to-the Sun Road) -> Logan Pass (4008ms) When was Hiroshima bombed? a less recent one 0.5555555555530001 When was Hiroshima bombed? -> $x: ($x, be bomb, hiroshima) -> (a less recent one, was the bombing of, Hiroshima and Nagasaki) -> a less recent one (1102ms) When was Hiroshima bombed? a Sophie?s choice 0.5555555555530001 When was Hiroshima bombed? -> $x: ($x, be bomb, hiroshima) -> (a Sophie?s choice, is the bombing of, Hiroshima) -> a Sophie?s choice (1102ms) When was Hiroshima bombed? human DNA fragments 0.5555555555530001 When was Hiroshima bombed? -> $x: ($x, be bomb, hiroshima) -> (human DNA fragments, was the bombing of, Nagasaki and Hiroshima) -> human DNA fragments (1103ms) When was Hiroshima bombed? degree 0.5555555555530001 When was Hiroshima bombed? -> $x: ($x, be bomb, hiroshima) -> (degree, was the bombing of, Hiroshima) -> degree (1102ms) When was Hiroshima bombed? Kyoto 0.5555555555530001 When was Hiroshima bombed? -> $x: ($x, be bomb, hiroshima) -> (Kyoto, would probably have been bombed instead of, Hiroshima) -> Kyoto (1102ms) When was Hiroshima bombed? The A-bomb 0.333333333332 When was Hiroshima bombed? -> $x: ($x, happen to, hiroshima) -> (The A-bomb, happened to, Hiroshima?) -> The A-bomb (1230ms) When was Hiroshima bombed? inquiry 0.333333333332 When was Hiroshima bombed? -> $x: ($x, happen to, hiroshima) -> (inquiry, happened to, Hiroshima) -> inquiry (1230ms) When was Hiroshima bombed? the reality 0.333333333332 When was Hiroshima bombed? -> $x: ($x, happen to, hiroshima) -> (the reality, happened to, Hiroshima) -> the reality (1102ms) When was Hiroshima bombed? 6 August 0.333333333332 When was Hiroshima bombed? -> $x: ($x, happen to, hiroshima) -> (6 August, happened to be, Hiroshima Day) -> 6 August (1230ms) When was Hiroshima bombed? basically a museum 0.333333333332 When was Hiroshima bombed? -> $x: ($x, happen to, hiroshima) -> (basically a museum, happened to, Hiroshima city) -> basically a museum (1230ms) When was Hiroshima bombed? Yamaguchi 0.333333333332 When was Hiroshima bombed? -> $x: ($x, happen to, hiroshima) -> (Yamaguchi, happened to be in, Hiroshima) -> Yamaguchi (1230ms) When was Hiroshima bombed? the international community 0.333333333332 When was Hiroshima bombed? -> $x: ($x, happen to, hiroshima) -> (the international community, happened to, Hiroshima and Nagasaki) -> the international community (1230ms) When was Hiroshima bombed? the first non-Japanese doctor 0.333333333332 When was Hiroshima bombed? -> $x: ($x, happen to, hiroshima) -> (the first non-Japanese doctor, had happened to, Hiroshima) -> the first non-Japanese doctor (1230ms) When was Hiroshima bombed? The Tokyo bombing 0.333333333332 When was Hiroshima bombed? -> $x: ($x, happen to, hiroshima) -> (The Tokyo bombing, happened several months prior to, Hiroshima) -> The Tokyo bombing (1102ms) When was Hiroshima bombed? Fill 0.22222222222 When was Hiroshima bombed? -> $x: ($x, get, hiroshima) -> (Fill, get, Hiroshima) -> Fill (1310ms) When was Hiroshima bombed? Little Hiroshima I?ve 0.22222222222 When was Hiroshima bombed? -> $x: ($x, get, hiroshima) -> (Little Hiroshima I?ve, got, my own little Hiroshima right) -> Little Hiroshima I?ve (1310ms) When was Hiroshima bombed? women 0.22222222222 When was Hiroshima bombed? -> $x: ($x, get, hiroshima) -> (women, got in, Hiroshima and Nagasaki) -> women (1310ms) When was Hiroshima bombed? Madeline 0.22222222222 When was Hiroshima bombed? -> $x: ($x, get, hiroshima) -> (Madeline, got a cool set of, Hiroshima-themed colorforms) -> Madeline (1310ms) When was Hiroshima bombed? the first round Breton 0.22222222222 When was Hiroshima bombed? -> $x: ($x, get, hiroshima) -> (the first round Breton, got beaten by, Hiroshima) -> the first round Breton (1230ms) When was Hiroshima bombed? i cant 0.22222222222 When was Hiroshima bombed? -> $x: ($x, get, hiroshima) -> (i cant, get hit by, the Hiroshima bomb) -> i cant (1310ms) When was Hiroshima bombed? the 1st floor 0.22222222222 When was Hiroshima bombed? -> $x: ($x, get, hiroshima) -> (the 1st floor, get off at, the Hiroshima Bus Center) -> the 1st floor (1311ms) When was Hiroshima bombed? Nomura 0.22222222222 When was Hiroshima bombed? -> $x: ($x, get, hiroshima) -> (Nomura, played a key role in getting, Hiroshima) -> Nomura (1310ms) When was Hiroshima bombed? students 0.22222222222 When was Hiroshima bombed? -> $x: ($x, get, hiroshima) -> (students, get to visit, Hiroshima) -> students (1311ms) When was Hiroshima bombed? the Atom Bomb 0.111111111111 When was Hiroshima bombed? -> $x: ($x, be be, hiroshima) -> (the Atom Bomb, had been dropped on, Hiroshima) -> the Atom Bomb (1866ms) When was Hiroshima bombed? Akitakata 0.111111111111 When was Hiroshima bombed? -> $x: ($x, contain, hiroshima) -> (Akitakata, Contained by, Hiroshima Prefecture) -> Akitakata (2784ms) When was Hiroshima bombed? rad 0.111111111111 When was Hiroshima bombed? -> $x: ($x, be in, hiroshima) -> (rad, are higher in, Hiroshima) -> rad (2908ms) When was Hiroshima bombed? the connection 0.111111111111 When was Hiroshima bombed? -> $x: ($x, be be, hiroshima) -> (the connection, is, Hiroshima) -> the connection (1865ms) When was Hiroshima bombed? the local heroes 0.111111111111 When was Hiroshima bombed? -> $x: ($x, be in, hiroshima) -> (the local heroes, are in here in, Hiroshima) -> the local heroes (2784ms) When was Hiroshima bombed? No More Hiroshima 0.111111111111 When was Hiroshima bombed? -> $x: ($x, find, hiroshima) -> (No More Hiroshima, can be found on Wikipedia at, http://en.wikipedia.org/wiki/No%20More%20Hiroshima) -> No More Hiroshima (2784ms) When was Hiroshima bombed? The primary target 0.111111111111 When was Hiroshima bombed? -> $x: ($x, be be, hiroshima) -> (The primary target, was, Hiroshima) -> The primary target (1865ms) When was Hiroshima bombed? the Olympics 0.111111111111 When was Hiroshima bombed? -> $x: (hiroshima, be for, $x) -> (Kieta Hiroshima, is an athlete aiming for, the Olympics) -> the Olympics (2907ms) When was Hiroshima bombed? Mazda 0.111111111111 When was Hiroshima bombed? -> $x: ($x, be in, hiroshima) -> (Mazda, is headquartered in, Hiroshima) -> Mazda (2711ms) When was Hiroshima bombed? Hiroshima Institute of Technology 0.111111111111 When was Hiroshima bombed? -> $x: ($x, contain, hiroshima) -> (Hiroshima Institute of Technology, Contained by, Hiroshima) -> Hiroshima Institute of Technology (2367ms) When was Hiroshima bombed? Saeki-ku, Hiroshima 0.111111111111 When was Hiroshima bombed? -> $x: ($x, contain, hiroshima) -> (Saeki-ku, Hiroshima, Contains, Hiroshima Institute of Technology) -> Saeki-ku, Hiroshima (2367ms) When was Hiroshima bombed? Ch?goku region 0.111111111111 When was Hiroshima bombed? -> $x: ($x, contain, hiroshima) -> (Ch?goku region, Contains, Hiroshima Prefecture) -> Ch?goku region (2367ms) When was Hiroshima bombed? Nishi-ku, Hiroshima 0.111111111111 When was Hiroshima bombed? -> $x: ($x, contain, hiroshima) -> (Nishi-ku, Hiroshima, Contains, Hiroshima Sun Plaza) -> Nishi-ku, Hiroshima (2711ms) When was Hiroshima bombed? Japan vacations 0.111111111111 When was Hiroshima bombed? -> $x: ($x, find, hiroshima) -> (Japan vacations, Find, the best Hiroshima hotels) -> Japan vacations (1865ms) When was Hiroshima bombed? The lively chef-owner 0.111111111111 When was Hiroshima bombed? -> $x: ($x, be be, hiroshima) -> (The lively chef-owner, is from, Hiroshima) -> The lively chef-owner (2784ms) When was Hiroshima bombed? an Academy Award 0.111111111111 When was Hiroshima bombed? -> $x: (hiroshima, be for, $x) -> (Hiroshima, was nominated for, an Academy Award) -> an Academy Award (2907ms) When was Hiroshima bombed? nuclear holocaust 0.111111111111 When was Hiroshima bombed? -> $x: ($x, be be, hiroshima) -> (nuclear holocaust, were, Hiroshima) -> nuclear holocaust (1865ms) When was Hiroshima bombed? Hiroshima Jogakuin University 0.111111111111 When was Hiroshima bombed? -> $x: ($x, find, hiroshima) -> (Hiroshima Jogakuin University, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Hiroshima%20Jogakuin%20University) -> Hiroshima Jogakuin University (1865ms) When was Hiroshima bombed? teaching 0.111111111111 When was Hiroshima bombed? -> $x: ($x, be in, hiroshima) -> (teaching, will be done in, Hiroshima) -> teaching (2711ms) When was Hiroshima bombed? the cumulative effect 0.111111111111 When was Hiroshima bombed? -> $x: ($x, be be, hiroshima) -> (the cumulative effect, is, Hiroshima) -> the cumulative effect (2908ms) When was Hiroshima bombed? more than 0.111111111111 When was Hiroshima bombed? -> $x: ($x, kill, hiroshima) -> (more than, were killed in, Hiroshima) -> more than (2907ms) When was Hiroshima bombed? recent estimates 0.111111111111 When was Hiroshima bombed? -> $x: ($x, kill, hiroshima) -> (recent estimates, were killed in, Hiroshima) -> recent estimates (2784ms) When was Hiroshima bombed? Ingrid van Houten-Groeneveld 0.111111111111 When was Hiroshima bombed? -> $x: ($x, discover, hiroshima) -> (Ingrid van Houten-Groeneveld, Astronomical objects discovered, 2247 Hiroshima) -> Ingrid van Houten-Groeneveld (2784ms) When was Hiroshima bombed? Hiroshima 0.111111111111 When was Hiroshima bombed? -> $x: ($x, contain, hiroshima) -> (Hiroshima, Contains, Hiroshima Jogakuin University) -> Hiroshima (2367ms) When was Hiroshima bombed? The target 0.111111111111 When was Hiroshima bombed? -> $x: ($x, be be, hiroshima) -> (The target, was, Hiroshima) -> The target (2907ms) When was Hiroshima bombed? Tsutomu Yamaguchi 0.111111111111 When was Hiroshima bombed? -> $x: ($x, be be, hiroshima) -> (Tsutomu Yamaguchi, was in, Hiroshima) -> Tsutomu Yamaguchi (2907ms) When was Hiroshima bombed? Hijiyama University 0.111111111111 When was Hiroshima bombed? -> $x: ($x, contain, hiroshima) -> (Hijiyama University, Contained by, Hiroshima) -> Hijiyama University (2711ms) When was Hiroshima bombed? ONOMICHI 0.111111111111 When was Hiroshima bombed? -> $x: ($x, find, hiroshima) -> (ONOMICHI, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Onomichi,%20Hiroshima) -> ONOMICHI (2367ms) When was Hiroshima bombed? Hydrogen Bombs 0.111111111111 When was Hiroshima bombed? -> $x: ($x, be in, hiroshima) -> (Hydrogen Bombs, was organized in, Hiroshima) -> Hydrogen Bombs (2784ms) When was Hiroshima bombed? Hiroshima Peace Memorial Ceremony 0.111111111111 When was Hiroshima bombed? -> $x: ($x, find, hiroshima) -> (Hiroshima Peace Memorial Ceremony, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Hiroshima%20Peace%20Memorial%20Ceremony) -> Hiroshima Peace Memorial Ceremony (1865ms) When was Hiroshima bombed? the settlement 0.111111111111 When was Hiroshima bombed? -> $x: ($x, be be, hiroshima) -> (the settlement, was renamed, Hiroshima) -> the settlement (2711ms) When was Hiroshima bombed? the soul-searching 0.111111111111 When was Hiroshima bombed? -> $x: ($x, event, hiroshima) -> (the soul-searching, followed the event in, Hiroshima) -> the soul-searching (1866ms) When was Hiroshima bombed? Japan 0.111111111111 When was Hiroshima bombed? -> $x: ($x, contain, hiroshima) -> (Japan, Contains, Hiroshima Peace Memorial Museum) -> Japan (2784ms) When was Hiroshima bombed? 28 years 0.111111111111 When was Hiroshima bombed? -> $x: ($x, be in, hiroshima) -> (28 years, is very famous in, Hiroshima) -> 28 years (2711ms) When was Hiroshima bombed? one moment 0.111111111111 When was Hiroshima bombed? -> $x: (hiroshima, be for, $x) -> (Hiroshima, is famous for, one moment) -> one moment (2907ms) What are pomegranates? a dream -0.6666666666669999 What are pomegranates? -> $x: ($x, cause, pomegranate) -> (a dream, caused by, the flight of a bee around a pomegranate) -> a dream (1424ms) What are pomegranates? the superbug MRSA -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (the superbug MRSA, could be found in, the pomegranate) -> the superbug MRSA (2425ms) What are pomegranates? Gardein -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (Gardein, marinated in, Pomegranate Molasses) -> Gardein (2663ms) What are pomegranates? Pomegranate Cooler Method -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (Pomegranate Cooler Method, throw in, some pomegranate seeds) -> Pomegranate Cooler Method (4188ms) What are pomegranates? the different themes -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (the different themes, explored in, Pomegranates) -> the different themes (1637ms) What are pomegranates? the bittern -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (the bittern, also shall pass the night in, the pomegranates) -> the bittern (4269ms) What are pomegranates? the many antioxidants -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (the many antioxidants, can be found in, pomegranates) -> the many antioxidants (2425ms) What are pomegranates? serving and -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (serving and, stir in, the pomegranates seeds) -> serving and (4269ms) What are pomegranates? Three Views -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (Three Views, appeared in, The Pomegranate) -> Three Views (2840ms) What are pomegranates? the compounds -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (the compounds, found in, pomegranates) -> the compounds (3797ms) What are pomegranates? a razor blade -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (a razor blade, dipped in, pomegranate juice) -> a razor blade (2840ms) What are pomegranates? 12-ounce -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (12-ounce, come in, Raspberry Pomegranate) -> 12-ounce (1637ms) What are pomegranates? The phytochemicals -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (The phytochemicals, found in, pomegranates) -> The phytochemicals (3797ms) What are pomegranates? much Vitamin K -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (much Vitamin K, is in, pomegranates) -> much Vitamin K (3797ms) What are pomegranates? World of Darkness -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (World of Darkness, Works in this series, Pomegranates Full and Fine) -> World of Darkness (3838ms) What are pomegranates? hand -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (hand, painted in, a colorful pomegranate motif) -> hand (3838ms) What are pomegranates? ellagic acid -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (ellagic acid, found in, pomegranates) -> ellagic acid (4269ms) What are pomegranates? the sugars -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (the sugars, found in, pomegranate juice) -> the sugars (2840ms) What are pomegranates? golden raisins -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (golden raisins, tossed in, a unique Pomegranate Vinaigrette) -> golden raisins (2840ms) What are pomegranates? The 2010 holiday collection -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (The 2010 holiday collection, came in, Pomegranate & Cranberries) -> The 2010 holiday collection (4188ms) What are pomegranates? Pomegranate fruit -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (Pomegranate fruit, is also high in, vitamin C. One pomegranate) -> Pomegranate fruit (1637ms) What are pomegranates? blood flow to the heart -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (blood flow to the heart, improved in, the pomegranate group) -> blood flow to the heart (1637ms) What are pomegranates? the ingredients -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (the ingredients, contained in, pomegranate) -> the ingredients (1636ms) What are pomegranates? Ellagic Acid -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (Ellagic Acid, found in, raspberries and pomegranates) -> Ellagic Acid (2769ms) What are pomegranates? Speculative fiction -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (Speculative fiction, Books In This Genre, Pomegranates Full and Fine) -> Speculative fiction (3597ms) What are pomegranates? the heart and blood vessels -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (the heart and blood vessels, as do similar ones in, pomegranates) -> the heart and blood vessels (1425ms) What are pomegranates? An acid -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (An acid, found in, pomegranates) -> An acid (2769ms) What are pomegranates? Method -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (Method, dissolve sugar in, pomegranate juice) -> Method (2425ms) What are pomegranates? the polyphenols -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (the polyphenols, contained in, pomegranate) -> the polyphenols (3797ms) What are pomegranates? Olay Beauty -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (Olay Beauty, is available in, Pomegranate Splash) -> Olay Beauty (3797ms) What are pomegranates? Refreshers -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (Refreshers, come in, Raspberry Pomegranate) -> Refreshers (3797ms) What are pomegranates? The Pasta Shop -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (The Pasta Shop, is marinated in, pomegranate molasses) -> The Pasta Shop (2663ms) What are pomegranates? the hydroxylated polyphenols -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (the hydroxylated polyphenols, found in, one fresh pomegranate) -> the hydroxylated polyphenols (2769ms) What are pomegranates? beverages -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (beverages, are available in, Raspberry Pomegranate) -> beverages (2663ms) What are pomegranates? nutrients -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (nutrients, found in, online organic pomegranate) -> nutrients (2663ms) What are pomegranates? Know someone else -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (Know someone else, might be interested in, the Pomegranates) -> Know someone else (2425ms) What are pomegranates? Cook -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (Cook, toss in, some pomegranate seeds) -> Cook (4269ms) What are pomegranates? punicalagins -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (punicalagins, also found in, pomegranate benefit arterial health) -> punicalagins (3838ms) What are pomegranates? health benefits -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (health benefits, are seeing in, pomegranate juice) -> health benefits (1424ms) What are pomegranates? The seeds -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (The seeds, contained in, the pomegranate) -> The seeds (2425ms) What are pomegranates? the many seeds -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (the many seeds, found in, pomegranate fruits) -> the many seeds (4188ms) What are pomegranates? the main free-radical scavengers -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (the main free-radical scavengers, found in, pomegranates) -> the main free-radical scavengers (3797ms) What are pomegranates? a compass -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (a compass, rose in, fess two pomegranates) -> a compass (1425ms) What are pomegranates? the antioxidants -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (the antioxidants, really are in, Wonderful pomegranates) -> the antioxidants (3838ms) What are pomegranates? phytochemicals -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (phytochemicals, found in, abundance in pomegranates) -> phytochemicals (1637ms) What are pomegranates? religion -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (religion, has published in, The Pomegranate) -> religion (2840ms) What are pomegranates? Mexicans -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (Mexicans, take especial pride in, the pomegranates) -> Mexicans (3838ms) What are pomegranates? a day Ellagic acid -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (a day Ellagic acid, is found in, raspberries and pomegranates) -> a day Ellagic acid (1637ms) What are pomegranates? a phytochemical -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (a phytochemical, found in, pomegranate) -> a phytochemical (1424ms) What are pomegranates? 1/4 cup lime juice -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (1/4 cup lime juice, then fold in, pomegranate seeds) -> 1/4 cup lime juice (2840ms) What are pomegranates? the cancer-inhibiting anti-oxidants -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (the cancer-inhibiting anti-oxidants, found in, pomegranate seeds) -> the cancer-inhibiting anti-oxidants (3838ms) What are pomegranates? natural relief -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (natural relief, may lie in, the pomegranate) -> natural relief (4187ms) What are pomegranates? The antioxidant -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (The antioxidant, found in, Pomegranate) -> The antioxidant (2769ms) What are pomegranates? the natural pomegranate flavor -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (the natural pomegranate flavor, found in, XOOD Pomegranate) -> the natural pomegranate flavor (2663ms) What are pomegranates? polyphenols -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (polyphenols, found in, Pomegranate) -> polyphenols (2425ms) What are pomegranates? Studies -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (Studies, found in, pomegranates and raspberries) -> Studies (1636ms) What are pomegranates? The researchers -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (The researchers, compounds found in, pomegranate juice) -> The researchers (2769ms) What are pomegranates? cardio-protective antioxidants -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (cardio-protective antioxidants, found in, pomegranate) -> cardio-protective antioxidants (4187ms) What are pomegranates? Salmon -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (Salmon, marinated in, pomegranate molasses) -> Salmon (1425ms) What are pomegranates? the Pork -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (the Pork, braised in, Pomegranate Juice) -> the Pork (2840ms) What are pomegranates? eating antioxidants -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (eating antioxidants, found in, pomegranates) -> eating antioxidants (4269ms) What are pomegranates? The short-sleeve shirt -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (The short-sleeve shirt, is available in, pomegranate) -> The short-sleeve shirt (3797ms) What are pomegranates? Ellagic acid -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (Ellagic acid, is a phenolic compound present in, pomegranates) -> Ellagic acid (3838ms) What are pomegranates? MSRP -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (MSRP, is shown in, the Pomegranate decor) -> MSRP (4188ms) What are pomegranates? the most important nutrlent -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (the most important nutrlent, found in, pomegranates) -> the most important nutrlent (3597ms) What are pomegranates? BO'HEN -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (BO'HEN, must clearly mean "in, the pomegranates) -> BO'HEN (2840ms) What are pomegranates? resveratrol -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (resveratrol, is also found in, grapes and pomegranates) -> resveratrol (2425ms) What are pomegranates? One particular substance -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (One particular substance, found in, pomegranates) -> One particular substance (3597ms) What are pomegranates? an image -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (an image, stamped in, Purely Pomegranate) -> an image (3838ms) What are pomegranates? lamb or chicken kebab -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (lamb or chicken kebab, covered in, pomegranate molasses) -> lamb or chicken kebab (2663ms) What are pomegranates? Las Vegas -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (Las Vegas, put in, your pomegranate jelly) -> Las Vegas (3597ms) What are pomegranates? 3. Remove -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (3. Remove, stir in, 2 tsp pomegranate vinegar) -> 3. Remove (2663ms) What are pomegranates? Cathechins -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (Cathechins, found in, pomegranates) -> Cathechins (2769ms) What are pomegranates? Dr. Reid -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (Dr. Reid, has published in, The Pomegranate) -> Dr. Reid (4188ms) What are pomegranates? the ellagic acid -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (the ellagic acid, found in, pomegranate) -> the ellagic acid (3597ms) What are pomegranates? chicken thighs -0.777777777778 What are pomegranates? -> $x: ($x, in, pomegranate) -> (chicken thighs, braised in, pomegranate molasses) -> chicken thighs (2663ms) What are pomegranates? n?t -0.888888888889 What are pomegranates? -> $x: (pomegranate, do, $x) -> (pomegranate concentrate and vitamin D, does, n?t) -> n?t (4445ms) What are pomegranates? The report -0.888888888889 What are pomegranates? -> $x: ($x, describe, pomegranate) -> (The report, described, the thumb-sized pomegranate) -> The report (4270ms) What are pomegranates? the happy dance -0.888888888889 What are pomegranates? -> $x: (pomegranate, do, $x) -> (pomegranate juice, *does, the happy dance) -> the happy dance (4445ms) What are pomegranates? Israel -0.888888888889 What are pomegranates? -> $x: (pomegranate, do, $x) -> (That pomegranate, did come from, Israel) -> Israel (4269ms) What are pomegranates? leisurely -0.888888888889 What are pomegranates? -> $x: (pomegranate, do, $x) -> (the pomegranates, is best done, leisurely) -> leisurely (4269ms) What are pomegranates? the poorest -0.888888888889 What are pomegranates? -> $x: (pomegranate, do, $x) -> (7-10 Pomegranates, will do well in, the poorest) -> the poorest (4445ms) What are pomegranates? arthritis -0.888888888889 What are pomegranates? -> $x: (pomegranate, do, $x) -> (the pomegranate drinkers, did develop, arthritis) -> arthritis (4269ms) What are pomegranates? the body -0.888888888889 What are pomegranates? -> $x: (pomegranate, do, $x) -> (The pomegranate ,, does some amazing things for, the body) -> the body (4445ms) What are pomegranates? the demand -0.888888888889 What are pomegranates? -> $x: (pomegranate, do, $x) -> (pomegranates, so did, the demand) -> the demand (4444ms) What are pomegranates? midday strippers -0.888888888889 What are pomegranates? -> $x: (pomegranate, do, $x) -> (Berry Pomegranate, so do, midday strippers) -> midday strippers (4269ms) What are pomegranates? consumer demand -0.888888888889 What are pomegranates? -> $x: (pomegranate, do, $x) -> (pomegranate, so does, consumer demand) -> consumer demand (4445ms) What are pomegranates? well-drained ordinary soil -0.888888888889 What are pomegranates? -> $x: (pomegranate, do, $x) -> (The pomegranate, does best in, well-drained ordinary soil) -> well-drained ordinary soil (4445ms) What are pomegranates? good work -0.888888888889 What are pomegranates? -> $x: (pomegranate, do, $x) -> (the pomegranate, does, good work) -> good work (4444ms) What are pomegranates? mazes and tests -0.888888888889 What are pomegranates? -> $x: (pomegranate, do, $x) -> (The pomegranate drinkers, also did better in, mazes and tests) -> mazes and tests (4445ms) What are pomegranates? a farting pig man -0.888888888889 What are pomegranates? -> $x: (pomegranate, do, $x) -> (Pomegranates, does n?t have, a farting pig man) -> a farting pig man (4269ms) What are pomegranates? the winery -0.88888888889 What are pomegranates? -> $x: ($x, produce, pomegranate) -> (the winery, produces a number of, pomegranate wines) -> the winery (4477ms) What are pomegranates? PomX -0.88888888889 What are pomegranates? -> $x: ($x, do, pomegranate) -> (PomX, does n?t taste like, pomegranate juice) -> PomX (4477ms) What are pomegranates? eating -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (pomegranates, are just for, eating) -> eating (4456ms) What are pomegranates? crab-apples -0.88888888889 What are pomegranates? -> $x: ($x, do, pomegranate) -> (crab-apples, do the work of, pomegranates) -> crab-apples (4466ms) What are pomegranates? Israeli Contemporary Art, New York -0.88888888889 What are pomegranates? -> $x: ($x, produce, pomegranate) -> (Israeli Contemporary Art, New York, Exhibitions produced, Pomegranate: A Video by Ori Gersht) -> Israeli Contemporary Art, New York (4487ms) What are pomegranates? the whole cinematography -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranates, is a revelation for, the whole cinematography) -> the whole cinematography (4456ms) What are pomegranates? hundreds -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranates, have been used for, hundreds) -> hundreds (4487ms) What are pomegranates? health -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranates, is good for, health) -> health (4456ms) What are pomegranates? the humble and loyal Queen -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (good pomegranates, were for, the humble and loyal Queen) -> the humble and loyal Queen (4487ms) What are pomegranates? Limes -0.88888888889 What are pomegranates? -> $x: ($x, do, pomegranate) -> (Limes, do, pecans and pomegranates) -> Limes (4456ms) What are pomegranates? women -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (pomegranates, are great food too for, women) -> women (4498ms) What are pomegranates? 4,000 years -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranates, have been cultivated for over, 4,000 years) -> 4,000 years (4445ms) What are pomegranates? Turker Korkmaz -0.88888888889 What are pomegranates? -> $x: ($x, produce, pomegranate) -> (Turker Korkmaz, Films Produced, The Pomegranate) -> Turker Korkmaz (4487ms) What are pomegranates? the heart -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (pomegranates, are good for, the heart) -> the heart (4488ms) What are pomegranates? loose bowel motions -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (pomegranate, is used for, loose bowel motions) -> loose bowel motions (4456ms) What are pomegranates? Much more research -0.88888888889 What are pomegranates? -> $x: ($x, do, pomegranate) -> (Much more research, will need to be done before, pomegranates) -> Much more research (4466ms) What are pomegranates? millennia -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (The pomegranate, has been recognized for, millennia) -> millennia (4477ms) What are pomegranates? the patient -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranates, are for, the patient) -> the patient (4498ms) What are pomegranates? artherosclerosis -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (pomegranate, may be beneficial for, artherosclerosis) -> artherosclerosis (4477ms) What are pomegranates? sale -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (pomegranates, are displayed for, sale) -> sale (4445ms) What are pomegranates? a dose -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranate juice, is touted for, a dose) -> a dose (4498ms) What are pomegranates? substance -0.88888888889 What are pomegranates? -> $x: ($x, do, pomegranate) -> (substance, did taste a little like, pomegranate) -> substance (4487ms) What are pomegranates? real -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (pomegranate juice, is for, real) -> real (4477ms) What are pomegranates? a spiritual way -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (a pomegranate, is a metaphor for, a spiritual way) -> a spiritual way (4466ms) What are pomegranates? fresh fruit -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranates, can be grown for, fresh fruit) -> fresh fruit (4498ms) What are pomegranates? Molasses -0.88888888889 What are pomegranates? -> $x: ($x, produce, pomegranate) -> (Molasses, is produced from, carob , grape , date , pomegranate) -> Molasses (4487ms) What are pomegranates? The liqueur -0.88888888889 What are pomegranates? -> $x: ($x, do, pomegranate) -> (The liqueur, will do for, the lofty pomegranate) -> The liqueur (4466ms) What are pomegranates? inflammatory conditions -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranate, is good for, inflammatory conditions) -> inflammatory conditions (4456ms) What are pomegranates? medicinal purposes -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (The pomegranate, has been used for, medicinal purposes) -> medicinal purposes (4466ms) What are pomegranates? the captain -0.88888888889 What are pomegranates? -> $x: ($x, do, pomegranate) -> (the captain, did crack open, the Champaign and pomegranate juice) -> the captain (4466ms) What are pomegranates? large hedges -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (pomegranates, are also useful for, large hedges) -> large hedges (4456ms) What are pomegranates? natural dyeing -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranate juice, is used for, natural dyeing) -> natural dyeing (4487ms) What are pomegranates? hair -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranate oil, is wonderful oil for, hair) -> hair (4456ms) What are pomegranates? club soda -0.88888888889 What are pomegranates? -> $x: ($x, do, pomegranate) -> (club soda, do, a pomegranate-glazed salmon) -> club soda (4487ms) What are pomegranates? loads -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (pomegranates, is providing endless inspiration for, loads) -> loads (4498ms) What are pomegranates? excessive bile -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (A pomegranate, is an antidote for, excessive bile) -> excessive bile (4487ms) What are pomegranates? breast and skin cancer -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (pomegranate, has been indicated for, breast and skin cancer) -> breast and skin cancer (4456ms) What are pomegranates? five -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (pomegranates, have been cultivated for, five) -> five (4466ms) What are pomegranates? men -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranates, may be especially helpful for, men) -> men (4477ms) What are pomegranates? hand grenade -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (pomegranate, also is their word for, hand grenade) -> hand grenade (4456ms) What are pomegranates? the project -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (pomegranates, were planted for, the project) -> the project (4498ms) What are pomegranates? raisins -0.88888888889 What are pomegranates? -> $x: ($x, do, pomegranate) -> (raisins, have done, pomegranate pearls) -> raisins (4456ms) What are pomegranates? Li Rui -0.88888888889 What are pomegranates? -> $x: ($x, produce, pomegranate) -> (Li Rui, Films Produced, A Cherry on a Pomegranate Tree) -> Li Rui (4487ms) What are pomegranates? Southern Mississippi -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (pomegranate trees, are favorites for, Southern Mississippi) -> Southern Mississippi (4456ms) What are pomegranates? centuries -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (the pomegranate, has been trusted for, centuries) -> centuries (4498ms) What are pomegranates? Hani E. Cort -0.88888888889 What are pomegranates? -> $x: ($x, produce, pomegranate) -> (Hani E. Cort, Films Produced, Pomegranates and Myrrh) -> Hani E. Cort (4477ms) What are pomegranates? snacking -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranates, are perfect for, snacking) -> snacking (4456ms) What are pomegranates? a whole group -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (one pomegranate, will be sufficient for, a whole group) -> a whole group (4498ms) What are pomegranates? the heart and penis -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (pomegranate juice, is good for, the heart and penis) -> the heart and penis (4477ms) What are pomegranates? calendar -0.88888888889 What are pomegranates? -> $x: ($x, produce, pomegranate) -> (calendar, is produced by, Pomegranate) -> calendar (4487ms) What are pomegranates? the cover -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranates ?, was selected for, the cover) -> the cover (4466ms) What are pomegranates? the hard labour -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (the pomegranate, is renowned for, the hard labour) -> the hard labour (4477ms) What are pomegranates? righteousness -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (the pomegranate, is a symbol for, righteousness) -> righteousness (4456ms) What are pomegranates? me? dreams -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranates, were showing up everywhere for, me? dreams) -> me? dreams (4487ms) What are pomegranates? Sphaerus -0.88888888889 What are pomegranates? -> $x: ($x, do, pomegranate) -> (Sphaerus, did about, the pomegranates) -> Sphaerus (4487ms) What are pomegranates? part time work -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranate Market, is hiring for, part time work) -> part time work (4498ms) What are pomegranates? Pom Wonderful funds -0.88888888889 What are pomegranates? -> $x: ($x, do, pomegranate) -> (Pom Wonderful funds, has been done on, Wonderful pomegranates) -> Pom Wonderful funds (4487ms) What are pomegranates? fertility -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranates, also are use for, fertility) -> fertility (4445ms) What are pomegranates? health reasons -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (The pomegranate, is popular now for, health reasons) -> health reasons (4477ms) What are pomegranates? Kitchen Connaisseur -0.88888888889 What are pomegranates? -> $x: ($x, produce, pomegranate) -> (Kitchen Connaisseur, produces, the Pomegranate Chutney) -> Kitchen Connaisseur (4466ms) What are pomegranates? the Resnicks -0.88888888889 What are pomegranates? -> $x: ($x, do, pomegranate) -> (the Resnicks, did with, pomegranate) -> the Resnicks (4466ms) What are pomegranates? the cardiovascular system -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (pomegranates, are good for, the cardiovascular system) -> the cardiovascular system (4498ms) What are pomegranates? one?s -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranate, is both healing for, one?s) -> one?s (4466ms) What are pomegranates? the same reason -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranate seeds, are traditional for, the same reason) -> the same reason (4498ms) What are pomegranates? insomniacs -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranates, are also good for, insomniacs) -> insomniacs (4466ms) What are pomegranates? 1 bottle -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (1 pomegranate, is fine for, 1 bottle) -> 1 bottle (4445ms) What are pomegranates? the skin -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranate, is the perfect additive for, the skin) -> the skin (4498ms) What are pomegranates? effects -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (pomegranate seeds, were examined for, effects) -> effects (4498ms) What are pomegranates? vitiligo -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (pomegranate, is a good treatment for, vitiligo) -> vitiligo (4466ms) What are pomegranates? the salad -0.88888888889 What are pomegranates? -> $x: ($x, do, pomegranate) -> (the salad, did, the pomegranate seeds) -> the salad (4477ms) What are pomegranates? the eyes -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (a pomegranate, is a feast for, the eyes) -> the eyes (4466ms) What are pomegranates? Massoud Bakhshi -0.88888888889 What are pomegranates? -> $x: ($x, produce, pomegranate) -> (Massoud Bakhshi, Films Produced, Tehran Has No More Pomegranates!) -> Massoud Bakhshi (4456ms) What are pomegranates? kidney stones -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (Pomegranate, can be a medicine for, kidney stones) -> kidney stones (4487ms) What are pomegranates? day or night -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (the pomegranate, is perfect for, day or night) -> day or night (4498ms) What are pomegranates? Fairmont -0.88888888889 What are pomegranates? -> $x: ($x, produce, pomegranate) -> (Fairmont, Tracks produced, Pomegranate) -> Fairmont (4466ms) What are pomegranates? consumption -0.88888888889 What are pomegranates? -> $x: (pomegranate, be for, $x) -> (? Fresh pomegranates, are nearly ready for, consumption) -> consumption (4477ms) What are pomegranates? occasion -1.0 What are pomegranates? -> $x: ($x, found, pomegranate) -> (occasion, found, pomegranate juice) -> occasion (4508ms) What are pomegranates? 1072l?? -1.0 What are pomegranates? -> $x: ($x, found, pomegranate) -> (1072l??, find, Pomegranate plants) -> 1072l?? (4518ms) What are pomegranates? antioxidants -1.0 What are pomegranates? -> $x: ($x, found, pomegranate) -> (antioxidants, also found in, red wine and pomegranates) -> antioxidants (4508ms) What are pomegranates? Pomegranate -1.0 What are pomegranates? -> $x: ($x, found, pomegranate) -> (Pomegranate, can be found on, the JPL Pomegranate web page) -> Pomegranate (4528ms) What are pomegranates? new growth -1.0 What are pomegranates? -> $x: ($x, found, pomegranate) -> (new growth, found on, our baby pomegranate tree) -> new growth (4508ms) What are pomegranates? The manufacturer -1.0 What are pomegranates? -> $x: ($x, create, pomegranate) -> (The manufacturer, has created, a pomegranate pill) -> The manufacturer (4508ms) What are pomegranates? a Prince -1.0 What are pomegranates? -> $x: ($x, found, pomegranate) -> (a Prince, find his voice and a king find, his pomegranates) -> a Prince (4528ms) What are pomegranates? More information -1.0 What are pomegranates? -> $x: ($x, found, pomegranate) -> (More information, can be found on, Pomegranate) -> More information (4518ms) What are pomegranates? Pomegranate juice -1.0 What are pomegranates? -> $x: ($x, found, pomegranate) -> (Pomegranate juice, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Pomegranate%20juice) -> Pomegranate juice (4537ms) What are pomegranates? A house of pomegranates -1.0 What are pomegranates? -> $x: ($x, found, pomegranate) -> (A house of pomegranates, can be found on Wikipedia at, http://en.wikipedia.org/wiki/A%20House%20of%20Pomegranates) -> A house of pomegranates (4508ms) What are pomegranates? a king -1.0 What are pomegranates? -> $x: ($x, found, pomegranate) -> (a king, find, his pomegranates) -> a king (4528ms) What are pomegranates? summer and winter -1.0 What are pomegranates? -> $x: ($x, create, pomegranate) -> (summer and winter, were created with, pomegranates) -> summer and winter (4537ms) What are pomegranates? an Israeli team -1.0 What are pomegranates? -> $x: ($x, found, pomegranate) -> (an Israeli team, found evidence of, pomegranate) -> an Israeli team (4508ms) What are pomegranates? a place -1.0 What are pomegranates? -> $x: ($x, found, pomegranate) -> (a place, found, a magic pomegranate tree) -> a place (4508ms) What are pomegranates? ellagitannins -1.0 What are pomegranates? -> $x: ($x, found, pomegranate) -> (ellagitannins, found, only in pomegranate) -> ellagitannins (4508ms) What are pomegranates? The polyphenolic content -1.0 What are pomegranates? -> $x: ($x, found, pomegranate) -> (The polyphenolic content, found within, pomegranate) -> The polyphenolic content (4508ms) What are pomegranates? California -1.0 What are pomegranates? -> $x: ($x, create, pomegranate) -> (California, created, the refreshing Sonoma Pomegranate Sparkler) -> California (4528ms) What are pomegranates? Certain Biblical passages -1.0 What are pomegranates? -> $x: ($x, refer, pomegranate) -> (Certain Biblical passages, refer to, the pomegranate) -> Certain Biblical passages (4518ms) What are pomegranates? Jewish symbolism -1.0 What are pomegranates? -> $x: ($x, create, pomegranate) -> (Jewish symbolism, Exhibitions created about this subject, Pomegranate: A Video by Ori Gersht) -> Jewish symbolism (4518ms) What are pomegranates? rachael ray -1.0 What are pomegranates? -> $x: ($x, create, pomegranate) -> (rachael ray, created, this little pomegranate martini concoction) -> rachael ray (4518ms) What are pomegranates? first i -1.0 What are pomegranates? -> $x: ($x, found, pomegranate) -> (first i, found this beautiful design of, a stylized pomegranate) -> first i (4518ms) What are pomegranates? The punicic acid -1.0 What are pomegranates? -> $x: ($x, found, pomegranate) -> (The punicic acid, found, pomegranate seed oil) -> The punicic acid (4528ms) What are pomegranates? Ori Gersht -1.0 What are pomegranates? -> $x: ($x, create, pomegranate) -> (Ori Gersht, Exhibitions created about this subject, Pomegranate: A Video by Ori Gersht) -> Ori Gersht (4518ms) What are pomegranates? ancient Mesopotamia -1.0 What are pomegranates? -> $x: ($x, refer, pomegranate) -> (ancient Mesopotamia, refer to, pomegranates) -> ancient Mesopotamia (4537ms) What are pomegranates? The Cups -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (The Cups, are, pomegranates) -> The Cups (4555ms) What are pomegranates? Garnet -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (Garnet, is related to, the word Pomegranate) -> Garnet (4581ms) What are pomegranates? rosh -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (rosh, are, pomegranates) -> rosh (4598ms) What are pomegranates? The main ingredient in MaleExtra -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (The main ingredient in MaleExtra, is, pomegranate) -> The main ingredient in MaleExtra (4581ms) What are pomegranates? Wine -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (Wine, was made from, pomegranates) -> Wine (4645ms) What are pomegranates? Tweak Extreme -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (Tweak Extreme, was, Pomegranate) -> Tweak Extreme (4645ms) What are pomegranates? Kidd?s newest book -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (Kidd?s newest book, is Traveling with, Pomegranates) -> Kidd?s newest book (4613ms) What are pomegranates? Greece -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (Greece, is, pomegranates) -> Greece (4613ms) What are pomegranates? Morocco -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (Morocco, are, pomegranates) -> Morocco (4613ms) What are pomegranates? Short communication -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (Short communication, Be aware of, Pomegranates) -> Short communication (4589ms) What are pomegranates? The pricey fruits -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (The pricey fruits, are, pomegranates) -> The pricey fruits (4652ms) What are pomegranates? The Phoenicians -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (The Phoenicians, were the first to cultivate, the pomegranate) -> The Phoenicians (4573ms) What are pomegranates? 13 Your plants -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (13 Your plants, are an orchard of, pomegranates) -> 13 Your plants (4537ms) What are pomegranates? the winner -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (the winner, was, ?..pomegranate) -> the winner (4555ms) What are pomegranates? The pineapple -1.0000000000009999 What are pomegranates? -> $x: ($x, be in, pomegranate) -> (The pineapple, is cold marinated in, the pomegranate juice) -> The pineapple (4606ms) What are pomegranates? The garnet name -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (The garnet name, is believed to have come from, the pomegranate) -> The garnet name (4555ms) What are pomegranates? Additional study -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (Additional study, is needed to confirm, pomegranate) -> Additional study (4628ms) What are pomegranates? The easiest way -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (The easiest way, is to cut, the pomegranate) -> The easiest way (4645ms) What are pomegranates? The plants -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (The plants, are an orchard of, pomegranates) -> The plants (4589ms) What are pomegranates? POM Wonderful -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (POM Wonderful, is the largest grower of, pomegranates) -> POM Wonderful (4546ms) What are pomegranates? One of the most important foods -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (One of the most important foods, is, pomegranate) -> One of the most important foods (4581ms) What are pomegranates? weeks -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (weeks, were, pomegranates) -> weeks (4606ms) What are pomegranates? Jerusalem -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (Jerusalem, were engraved with, pomegranates) -> Jerusalem (4589ms) What are pomegranates? large fruits -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (large fruits, were like, pomegranates) -> large fruits (4598ms) What are pomegranates? two inches -1.0000000000009999 What are pomegranates? -> $x: (pomegranate, be about, $x) -> (the dwarf pomegranate, is about, two inches) -> two inches (4645ms) What are pomegranates? softness -1.0000000000009999 What are pomegranates? -> $x: (pomegranate, be about, $x) -> (Bright Pomegranate Red, is serious about, softness) -> softness (4555ms) What are pomegranates? the Christ Child -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (the Christ Child, are all depicted with, pomegranates) -> the Christ Child (4652ms) What are pomegranates? Genesis 10:10 -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (Genesis 10:10, is made from, pomegranates) -> Genesis 10:10 (4564ms) What are pomegranates? Love -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (Love, so are, pomegranates) -> Love (4606ms) What are pomegranates? The capitals -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (The capitals, were enriched by, pomegranates) -> The capitals (4628ms) What are pomegranates? Hera -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (Hera, is associated with are, pomegranates) -> Hera (4613ms) What are pomegranates? The botanical name -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (The botanical name, is similar to, the pomegranate?s) -> The botanical name (4598ms) What are pomegranates? POM -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (POM, is a wonderful way to get the great taste of, pomegranate) -> POM (4606ms) What are pomegranates? a fermented beverage -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (a fermented beverage, was being made of, pomegranate) -> a fermented beverage (4629ms) What are pomegranates? fireworks and crackers -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (fireworks and crackers, are called, ?pomegranates) -> fireworks and crackers (4652ms) What are pomegranates? The yellow one -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (The yellow one, is called, ?pomegranate?) -> The yellow one (4573ms) What are pomegranates? fact -1.0000000000009999 What are pomegranates? -> $x: ($x, be in, pomegranate) -> (fact, there are in, pomegranates or blueberries) -> fact (4546ms) What are pomegranates? two years -1.0000000000009999 What are pomegranates? -> $x: (pomegranate, be about, $x) -> (pomegranates, were discovered about, two years) -> two years (4546ms) What are pomegranates? no medical claims -1.0000000000009999 What are pomegranates? -> $x: ($x, can, pomegranate) -> (no medical claims, can be made for, pomegranate) -> no medical claims (4638ms) What are pomegranates? the perfect drinks -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (the perfect drinks, are always made with, pomegranate) -> the perfect drinks (4621ms) What are pomegranates? Good Quality Grenadine -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (Good Quality Grenadine, is supposed to be, pomegranate syrup) -> Good Quality Grenadine (4652ms) What are pomegranates? any fruit juice -1.0000000000009999 What are pomegranates? -> $x: ($x, can, pomegranate) -> (any fruit juice, can sub for, the pomegranate juice) -> any fruit juice (4589ms) What are pomegranates? The trendiest drinks -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (The trendiest drinks, to be, pomegranate and acai) -> The trendiest drinks (4613ms) What are pomegranates? Real Grenadine -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (Real Grenadine, is made from, Pomegranates) -> Real Grenadine (4628ms) What are pomegranates? the _ Frutte_ -1.0000000000009999 What are pomegranates? -> $x: ($x, consist of, pomegranate) -> (the _ Frutte_, consisted of, two rather old pomegranates) -> the _ Frutte_ (4645ms) What are pomegranates? 12? F. -1.0000000000009999 What are pomegranates? -> $x: (pomegranate, be about, $x) -> (Pomegranate, is hardy to about, 12? F.) -> 12? F. (4573ms) What are pomegranates? The purpose -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (The purpose, is to evaluate, pomegranate potential) -> The purpose (4652ms) What are pomegranates? ?Your shoots -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (?Your shoots, are an orchard of, pomegranates) -> ?Your shoots (4555ms) What are pomegranates? the museum?s floor -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (the museum?s floor, were, pomegranates) -> the museum?s floor (4598ms) What are pomegranates? last night -1.0000000000009999 What are pomegranates? -> $x: ($x, be in, pomegranate) -> (last night, were the chicken in, almond-pomegranate sauce) -> last night (4564ms) What are pomegranates? four times -1.0000000000009999 What are pomegranates? -> $x: (pomegranate, be about, $x) -> (pomegranate juice, were about, four times) -> four times (4589ms) What are pomegranates? the size of an apple or orange -1.0000000000009999 What are pomegranates? -> $x: (pomegranate, be about, $x) -> (The pomegranate, is about, the size of an apple or orange) -> the size of an apple or orange (4645ms) What are pomegranates? The ancient Egyptians -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (The ancient Egyptians, were buried with, pomegranates) -> The ancient Egyptians (4621ms) What are pomegranates? ?Mother Nature -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (?Mother Nature, has been kind to, the pomegranate season) -> ?Mother Nature (4638ms) What are pomegranates? Breakfast -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (Breakfast, could be limited to, Pomegranate herbal tea) -> Breakfast (4546ms) What are pomegranates? the list -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (the list, is, pomegranates) -> the list (4598ms) What are pomegranates? Second choice -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (Second choice, was to add, some pomegranate juice) -> Second choice (4546ms) What are pomegranates? Males -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (Males, are advised to take, pomegranate juice) -> Males (4564ms) What are pomegranates? The publisher -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (The publisher, is, Pomegranate) -> The publisher (4581ms) What are pomegranates? mouth -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (mouth, is helping to drive, the current Pomegranate trend) -> mouth (4645ms) What are pomegranates? Thy shoots -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (Thy shoots, are an orchard of, pomegranates) -> Thy shoots (4555ms) What are pomegranates? Kimiko -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (Kimiko, was surprised to see, the pomegranate tree) -> Kimiko (4613ms) What are pomegranates? Grenadine -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (Grenadine, is supposed to be, a pomegranate-flavored syrup) -> Grenadine (4598ms) What are pomegranates? Even expectant women -1.0000000000009999 What are pomegranates? -> $x: ($x, can, pomegranate) -> (Even expectant women, can safely drink, pomegranate juice) -> Even expectant women (4546ms) What are pomegranates? The LLAMA -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (The LLAMA, is as, POMEGRANATE) -> The LLAMA (4645ms) What are pomegranates? Shunyi -1.0000000000009999 What are pomegranates? -> $x: ($x, can, pomegranate) -> (Shunyi, can get their fix at, the Pomegranate) -> Shunyi (4613ms) What are pomegranates? 118 pounds -1.0000000000009999 What are pomegranates? -> $x: (pomegranate, be about, $x) -> (a 24 pomegranate old jezebel i, am about, 118 pounds) -> 118 pounds (4564ms) What are pomegranates? the size and shape -1.0000000000009999 What are pomegranates? -> $x: (pomegranate, be about, $x) -> (Pomegranates, are usually about, the size and shape) -> the size and shape (4564ms) What are pomegranates? What you need -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (What you need, is, pomegranates) -> What you need (4645ms) What are pomegranates? the sentiment -1.0000000000009999 What are pomegranates? -> $x: ($x, be in, pomegranate) -> (the sentiment, were first stamped in, Purely Pomegranate ink) -> the sentiment (4613ms) What are pomegranates? 1/2 -1.0000000000009999 What are pomegranates? -> $x: (pomegranate, be about, $x) -> (The pomegranate, is about, 1/2) -> 1/2 (4628ms) What are pomegranates? the best winter fruit -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (the best winter fruit, is, POMEGRANATES) -> the best winter fruit (4638ms) What are pomegranates? the pomegranate fruit -1.0000000000009999 What are pomegranates? -> $x: (pomegranate, be about, $x) -> (Pomegranates, is a book about, the pomegranate fruit) -> the pomegranate fruit (4628ms) What are pomegranates? the two groups -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (the two groups, was too small to, credit pomegranate seed oil) -> the two groups (4613ms) What are pomegranates? the papers -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (the papers, were a perfect match to, Purely Pomegranate) -> the papers (4629ms) What are pomegranates? Anar -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (Anar, is the word for, pomegranate) -> Anar (4638ms) What are pomegranates? Web consensus -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (Web consensus, seems to be, that pomegranates) -> Web consensus (4606ms) What are pomegranates? Hardee County -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (Hardee County, were attracted to, pomegranates) -> Hardee County (4621ms) What are pomegranates? the largest fruit -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (the largest fruit, is similar to, the Wonderful Pomegranate) -> the largest fruit (4555ms) What are pomegranates? the card -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (the card, are Purely, Pomegranate) -> the card (4573ms) What are pomegranates? The third flowering bonsai -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (The third flowering bonsai, is, pomegranate) -> The third flowering bonsai (4589ms) What are pomegranates? Also one -1.0000000000009999 What are pomegranates? -> $x: ($x, can, pomegranate) -> (Also one, can soak, pomegranate peels) -> Also one (4645ms) What are pomegranates? Azerbaijan?s trademark -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (Azerbaijan?s trademark, is, pomegranates) -> Azerbaijan?s trademark (4564ms) What are pomegranates? Male Excess -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (Male Excess, is, Pomegranate) -> Male Excess (4589ms) What are pomegranates? The market -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (The market, is flooded with, pomegranates) -> The market (4621ms) What are pomegranates? the gems -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (the gems, were thought to resemble, pomegranate seeds) -> the gems (4652ms) What are pomegranates? Guys -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (Guys, are advised to take, pomegranate juice) -> Guys (4564ms) What are pomegranates? a producer -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (a producer, was, Pomegranate) -> a producer (4573ms) What are pomegranates? The Virgin Mary -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (The Virgin Mary, has also been likened to, a pomegranate tree) -> The Virgin Mary (4589ms) What are pomegranates? 13 Your shoots -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (13 Your shoots, are an orchard of, pomegranates) -> 13 Your shoots (4645ms) What are pomegranates? no health claims -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (no health claims, are made regarding, pomegranate) -> no health claims (4638ms) What are pomegranates? The basic idea -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (The basic idea, is to concentrate, the pomegranate juice) -> The basic idea (4573ms) What are pomegranates? action and results -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (action and results, is key to, the Pomegranate formula) -> action and results (4621ms) What are pomegranates? the size -1.0000000000009999 What are pomegranates? -> $x: (pomegranate, be about, $x) -> (The pomegranate, is about, the size) -> the size (4629ms) What are pomegranates? Mexico -1.0000000000009999 What are pomegranates? -> $x: ($x, consist of, pomegranate) -> (Mexico, actually consisted of, pomegranate juice) -> Mexico (4537ms) What are pomegranates? the testing methods -1.0000000000009999 What are pomegranates? -> $x: ($x, can, pomegranate) -> (the testing methods, can distinguish, pomegranate juice) -> the testing methods (4652ms) What are pomegranates? the garden -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (the garden, is, pomegranates) -> the garden (4652ms) What are pomegranates? three -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (three, was supposed to be, pomegranate flavor) -> three (4589ms) What are pomegranates? the content level -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (the content level, is higher compared to, pomegranates) -> the content level (4606ms) What are pomegranates? a name -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (a name, is, Pomegranate) -> a name (4555ms) What are pomegranates? Acai juice -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (Acai juice, has been compared to, the pomegranate) -> Acai juice (4613ms) What are pomegranates? the rind -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (the rind, is a very beneficial way to eat, pomegranate) -> the rind (4546ms) What are pomegranates? ?Idolatry and Materiality -1.0000000000009999 What are pomegranates? -> $x: ($x, can, pomegranate) -> (?Idolatry and Materiality, can be perused at, The Pomegranate) -> ?Idolatry and Materiality (4606ms) What are pomegranates? the color -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (the color, is, pomegranate) -> the color (4564ms) What are pomegranates? such high ability pills -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (such high ability pills, are being formulated with, pomegranates) -> such high ability pills (4652ms) What are pomegranates? isoflavones -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (isoflavones, is, pomegranates) -> isoflavones (4645ms) What are pomegranates? shorter -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (shorter, are, pomegranates) -> shorter (4606ms) What are pomegranates? The name garnet -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (The name garnet, is believed to have come from, the pomegranate) -> The name garnet (4546ms) What are pomegranates? eggplant -1.0000000000009999 What are pomegranates? -> $x: ($x, can, pomegranate) -> (eggplant, can get, pomegranates) -> eggplant (4606ms) What are pomegranates? A suitable offering -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (A suitable offering, would be, Pomegranates) -> A suitable offering (4564ms) What are pomegranates? National -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (National, Be Kind to, Pomegranates Day) -> National (4546ms) What are pomegranates? the fresco -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (the fresco, is decorated with, pomegranates) -> the fresco (4555ms) What are pomegranates? course people -1.0000000000009999 What are pomegranates? -> $x: ($x, can, pomegranate) -> (course people, can be, neither pomegranates nor pigs) -> course people (4598ms) What are pomegranates? 13 Thy plants -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (13 Thy plants, are an orchard of, pomegranates) -> 13 Thy plants (4652ms) What are pomegranates? available -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (available, are, Pomegranate) -> available (4638ms) What are pomegranates? the arils -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (the arils, is to cut, the pomegranate) -> the arils (4645ms) What are pomegranates? A Ancient Egyptians -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (A Ancient Egyptians, were buried with, pomegranates) -> A Ancient Egyptians (4598ms) What are pomegranates? 613 seeds -1.0000000000009999 What are pomegranates? -> $x: (pomegranate, be about, $x) -> (a pomegranate, there are about, 613 seeds) -> 613 seeds (4564ms) What are pomegranates? the narcotic poppy -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (the narcotic poppy, may be transmuted to, a pomegranate) -> the narcotic poppy (4573ms) What are pomegranates? the seeds -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (the seeds, is to slice, the pomegranate) -> the seeds (4605ms) What are pomegranates? a poppy -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (a poppy, may be transmuted to, a pomegranate) -> a poppy (4555ms) What are pomegranates? The card stock colors -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (The card stock colors, are Purely, Pomegranate) -> The card stock colors (4598ms) What are pomegranates? Heckman -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (Heckman, is growing, pomegranates) -> Heckman (4581ms) What are pomegranates? 700 -1.0000000000009999 What are pomegranates? -> $x: (pomegranate, be about, $x) -> (Pomegranates, are filled with about, 700) -> 700 (4546ms) What are pomegranates? the flavors -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (the flavors, are oriented around, pomegranate) -> the flavors (4555ms) What are pomegranates? The well ?Cknown ones -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (The well ?Cknown ones, are, pomegranates) -> The well ?Cknown ones (4606ms) What are pomegranates? the bosom -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (the bosom, are compared to, two pomegranates) -> the bosom (4546ms) What are pomegranates? Pommy -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (Pommy, to be, short for pomegranate) -> Pommy (4555ms) What are pomegranates? the sky -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (the sky, was the color of, pomegranates) -> the sky (4638ms) What are pomegranates? Next on the list -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (Next on the list, is, pomegranates) -> Next on the list (4573ms) What are pomegranates? various languages -1.0000000000009999 What are pomegranates? -> $x: ($x, can, pomegranate) -> (various languages, can mean, the pomegranate fruit) -> various languages (4606ms) What are pomegranates? Eurotart -1.0000000000009999 What are pomegranates? -> $x: ($x, can, pomegranate) -> (Eurotart, can be swirled into, pomegranate raspberry sorbet) -> Eurotart (4581ms) What are pomegranates? The framed photo -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (The framed photo, is of, pomegranates) -> The framed photo (4645ms) What are pomegranates? The design -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (The design, is often, pomegranates) -> The design (4630ms) What are pomegranates? Thy plants -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (Thy plants, are a paradise of, pomegranates) -> Thy plants (4645ms) What are pomegranates? Persephone -1.0000000000009999 What are pomegranates? -> $x: ($x, be be, pomegranate) -> (Persephone, is associated with, pomegranates) -> Persephone (4546ms) What are pomegranates? the juice -1.0000000000009999 What are pomegranates? -> $x: ($x, be to, pomegranate) -> (the juice, was to attack, the pomegranate) -> the juice (4573ms) What are pomegranates? accord ing -1.111111111111 What are pomegranates? -> $x: ($x, represent, pomegranate) -> (accord ing, represent, pomegranates) -> accord ing (4652ms) What are pomegranates? fitness -1.111111111111 What are pomegranates? -> $x: ($x, side, pomegranate) -> (fitness, Here are the side effects of, Super Slim Pomegranate) -> fitness (4659ms) What are pomegranates? Red grape juice -1.111111111111 What are pomegranates? -> $x: ($x, be use of, pomegranate) -> (Red grape juice, could be used instead of, the pomegranate) -> Red grape juice (4652ms) What are pomegranates? the middle -1.111111111111 What are pomegranates? -> $x: ($x, represent, pomegranate) -> (the middle, represent, the pomegranate?s seeds) -> the middle (4659ms) What are pomegranates? The logo -1.111111111111 What are pomegranates? -> $x: ($x, represent, pomegranate) -> (The logo, represents, a pomegranate) -> The logo (4659ms) What are pomegranates? Sea -1.111111111111 What are pomegranates? -> $x: ($x, side, pomegranate) -> (Sea, is the side-project of, new Pomegranates member Dan Lyon) -> Sea (4659ms) What are pomegranates? Dr. Murad -1.111111111111 What are pomegranates? -> $x: ($x, develop, pomegranate) -> (Dr. Murad, develops, the Energizing Pomegranate Complex) -> Dr. Murad (4659ms) What are pomegranates? NASA JPL -1.111111111111 What are pomegranates? -> $x: ($x, develop, pomegranate) -> (NASA JPL, has developed, Pomegranate) -> NASA JPL (4659ms) What are pomegranates? Jeannette -1.111111111112 What are pomegranates? -> $x: ($x, discover, pomegranate) -> (Jeannette, discovered the delights of, pomegranates) -> Jeannette (4659ms) What are pomegranates? Tannin -1.111111111112 What are pomegranates? -> $x: ($x, could be, pomegranate) -> (Tannin, could have been obtained from, pomegranate rind) -> Tannin (4664ms) What are pomegranates? the news -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranate, has been in, the news) -> the news (4689ms) What are pomegranates? phytochemical compounds -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranates, are also rich in, phytochemical compounds) -> phytochemical compounds (4693ms) What are pomegranates? a group -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranate, promotes cardiovascular health In, a group) -> a group (4679ms) What are pomegranates? Florida -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranates, grow well in, Florida) -> Florida (4684ms) What are pomegranates? Authorities Concept Scheme -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranate, In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (4674ms) What are pomegranates? a new patent -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, are named in, a new patent) -> a new patent (4664ms) What are pomegranates? quercetin -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, are high in, quercetin) -> quercetin (4669ms) What are pomegranates? color -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, vary in, color) -> color (4679ms) What are pomegranates? parts -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranate, is now cultivated in, parts) -> parts (4689ms) What are pomegranates? right now -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, are in season, right now) -> right now (4693ms) What are pomegranates? bloom? -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (? ?pomegranates, are in, bloom?) -> bloom? (4664ms) What are pomegranates? late summer -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, make their entrance in, late summer) -> late summer (4664ms) What are pomegranates? Greek and Persian mythology -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, are in, Greek and Persian mythology) -> Greek and Persian mythology (4675ms) What are pomegranates? fiber -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, are also high in, fiber) -> fiber (4693ms) What are pomegranates? different sizes -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, come in, different sizes) -> different sizes (4674ms) What are pomegranates? markets -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, are in, markets) -> markets (4684ms) What are pomegranates? right -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranate, is in, right) -> right (4698ms) What are pomegranates? the Nogada -1.2222222222219998 What are pomegranates? -> $x: ($x, get, pomegranate) -> (the Nogada, get, a pomegranate) -> the Nogada (4664ms) What are pomegranates? candles -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranate, started popping up in, candles) -> candles (4684ms) What are pomegranates? the Middle East -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, are traditionally popular in, the Middle East) -> the Middle East (4689ms) What are pomegranates? hospitable climates -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranates, are now cultivated in, hospitable climates) -> hospitable climates (4674ms) What are pomegranates? the United States -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, are generally available in, the United States) -> the United States (4664ms) What are pomegranates? Greek mythos -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranate, is featured in, Greek mythos) -> Greek mythos (4693ms) What are pomegranates? shady areas -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranates, grew in, shady areas) -> shady areas (4689ms) What are pomegranates? Porter -1.2222222222219998 What are pomegranates? -> $x: ($x, get, pomegranate) -> (Porter, got a hold of, some pomegranate molasses) -> Porter (4684ms) What are pomegranates? a salad -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranates, is in, a salad) -> a salad (4698ms) What are pomegranates? the Caucasus -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranate, has been cultivated in, the Caucasus) -> the Caucasus (4664ms) What are pomegranates? the temple -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranates, depicted in, the temple) -> the temple (4693ms) What are pomegranates? the groceries -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranates, start appearing in, the groceries) -> the groceries (4664ms) What are pomegranates? Islamic art -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, are found in, Islamic art) -> Islamic art (4693ms) What are pomegranates? 2006 -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, began in, 2006) -> 2006 (4689ms) What are pomegranates? New York -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranate, is headquartered in, New York) -> New York (4698ms) What are pomegranates? Roman mosaics -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, were depicted in, Roman mosaics) -> Roman mosaics (4669ms) What are pomegranates? a glazed pot -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranates, look best in, a glazed pot) -> a glazed pot (4689ms) What are pomegranates? Punicosides -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranate, is especially high in, Punicosides) -> Punicosides (4689ms) What are pomegranates? the West -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranates, have become popular in, the West) -> the West (4684ms) What are pomegranates? super slim pomegranate -1.2222222222219998 What are pomegranates? -> $x: ($x, get, pomegranate) -> (super slim pomegranate, get, super slim pomegranate pills body) -> super slim pomegranate (4693ms) What are pomegranates? a wooden bowl -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, heaped in, a wooden bowl) -> a wooden bowl (4679ms) What are pomegranates? Ancient Greece -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, were used in, Ancient Greece) -> Ancient Greece (4669ms) What are pomegranates? 10 -1.2222222222219998 What are pomegranates? -> $x: ($x, get, pomegranate) -> (10, got, pomegranate juice) -> 10 (4684ms) What are pomegranates? the rest -1.2222222222219998 What are pomegranates? -> $x: ($x, get, pomegranate) -> (the rest, got, a Pomegranate Pick-Me-Up) -> the rest (4679ms) What are pomegranates? vitamin C and potassium -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, are high in, vitamin C and potassium) -> vitamin C and potassium (4674ms) What are pomegranates? season right -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, are in, season right) -> season right (4689ms) What are pomegranates? season & -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, were in, season &) -> season & (4669ms) What are pomegranates? bookstores today -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, arrives in, bookstores today) -> bookstores today (4669ms) What are pomegranates? insomnia -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranate, helps in controlling, insomnia) -> insomnia (4684ms) What are pomegranates? now -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranate, is in season, now) -> now (4698ms) What are pomegranates? birds -1.2222222222219998 What are pomegranates? -> $x: ($x, leave, pomegranate) -> (birds, is left of, last year?s pomegranates) -> birds (4674ms) What are pomegranates? early to -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, are harvested in, early to) -> early to (4698ms) What are pomegranates? association -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranate, works in, association) -> association (4669ms) What are pomegranates? turn -1.2222222222219998 What are pomegranates? -> $x: ($x, leave, pomegranate) -> (turn, left on, Pomegranate Rd.) -> turn (4684ms) What are pomegranates? Persia -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, originated in, Persia) -> Persia (4698ms) What are pomegranates? The designer -1.2222222222219998 What are pomegranates? -> $x: ($x, get, pomegranate) -> (The designer, got, a huge ceramic pomegranate) -> The designer (4698ms) What are pomegranates? paintings -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranates, were featured in, paintings) -> paintings (4689ms) What are pomegranates? I?ve -1.2222222222219998 What are pomegranates? -> $x: ($x, get, pomegranate) -> (I?ve, also got, a couple pomegranates) -> I?ve (4689ms) What are pomegranates? dry , hot climates -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, thrive in, dry , hot climates) -> dry , hot climates (4669ms) What are pomegranates? antioxidant flavonoids -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, are even richer in, antioxidant flavonoids) -> antioxidant flavonoids (4679ms) What are pomegranates? tj -1.2222222222219998 What are pomegranates? -> $x: ($x, get, pomegranate) -> (tj, got a couple of, pomegranates) -> tj (4698ms) What are pomegranates? Topical Terms Concept Scheme -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranate, In Scheme, Topical Terms Concept Scheme) -> Topical Terms Concept Scheme (4669ms) What are pomegranates? the province -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranates, grow everywhere in, the province) -> the province (4664ms) What are pomegranates? the prevention -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranates, help in, the prevention) -> the prevention (4679ms) What are pomegranates? potassium -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, are high in, potassium) -> potassium (4684ms) What are pomegranates? half | Design News Search -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranate, sliced in, half | Design News Search) -> half | Design News Search (4693ms) What are pomegranates? purple and scarlet -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranates, worked in, purple and scarlet) -> purple and scarlet (4698ms) What are pomegranates? The braising liquid -1.2222222222219998 What are pomegranates? -> $x: ($x, get, pomegranate) -> (The braising liquid, got, some additional pomegranate molasses) -> The braising liquid (4679ms) What are pomegranates? a natural remedy -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranate, can be used in, a natural remedy) -> a natural remedy (4674ms) What are pomegranates? The wife -1.2222222222219998 What are pomegranates? -> $x: ($x, get, pomegranate) -> (The wife, got, the Pomegranate salad) -> The wife (4674ms) What are pomegranates? the Don?t Pause supplement -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranate, extract in, the Don?t Pause supplement) -> the Don?t Pause supplement (4675ms) What are pomegranates? then that Travis -1.2222222222219998 What are pomegranates? -> $x: ($x, get, pomegranate) -> (then that Travis, almost got hit by, a flying pomegranate) -> then that Travis (4675ms) What are pomegranates? the garden of Eden -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranates, grew in, the garden of Eden) -> the garden of Eden (4669ms) What are pomegranates? No fruit -1.2222222222219998 What are pomegranates? -> $x: ($x, compare to, pomegranate) -> (No fruit, compares to, the pomegranate) -> No fruit (4664ms) What are pomegranates? Mr. S -1.2222222222219998 What are pomegranates? -> $x: ($x, get, pomegranate) -> (Mr. S, got to eat, a pomegranate) -> Mr. S (4664ms) What are pomegranates? healthy antioxidants -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, are high in, healthy antioxidants) -> healthy antioxidants (4679ms) What are pomegranates? a series -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranate, is enriched in, a series) -> a series (4669ms) What are pomegranates? the meantime -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranate, has been issued in, the meantime) -> the meantime (4669ms) What are pomegranates? season -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, will soon be in, season) -> season (4693ms) What are pomegranates? the Torah -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, appear in, the Torah) -> the Torah (4669ms) What are pomegranates? the fiber -1.2222222222219998 What are pomegranates? -> $x: ($x, get, pomegranate) -> (the fiber, get from, eating pomegranates) -> the fiber (4674ms) What are pomegranates? 2008 -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranate, opened in, 2008) -> 2008 (4684ms) What are pomegranates? i need -1.2222222222219998 What are pomegranates? -> $x: ($x, get, pomegranate) -> (i need, get, some pomegranate juice) -> i need (4693ms) What are pomegranates? a large range -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, can be used in, a large range) -> a large range (4689ms) What are pomegranates? burial chambers -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, were also placed in, burial chambers) -> burial chambers (4693ms) What are pomegranates? the bathtub -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranates, was in, the bathtub) -> the bathtub (4674ms) What are pomegranates? ruins -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranates, lie in, ruins) -> ruins (4689ms) What are pomegranates? Greek myths -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, figured prominently in, Greek myths) -> Greek myths (4698ms) What are pomegranates? April -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranate, begins in, April) -> April (4674ms) What are pomegranates? popularity -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranates, are growing in, popularity) -> popularity (4679ms) What are pomegranates? I?ll -1.2222222222219998 What are pomegranates? -> $x: ($x, get, pomegranate) -> (I?ll, be getting, my pomegranate) -> I?ll (4689ms) What are pomegranates? size and scope ? -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (Pomegranate, grows in, size and scope ?) -> size and scope ? (4674ms) What are pomegranates? the US. -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranates, were rarely eaten in, the US.) -> the US. (4684ms) What are pomegranates? the bloodstream -1.2222222222219998 What are pomegranates? -> $x: (pomegranate, in in, $x) -> (pomegranate, is absorbed in, the bloodstream) -> the bloodstream (4679ms) What are pomegranates? Pom Wonderful -1.2222222222219998 What are pomegranates? -> $x: ($x, get, pomegranate) -> (Pom Wonderful, got wind of, our little pomegranate celebration) -> Pom Wonderful (4684ms) What are pomegranates? publications -1.222222222223 What are pomegranates? -> $x: ($x, involve, pomegranate) -> (publications, involving, the pomegranate) -> publications (4698ms) What are pomegranates? The gloss -1.333333333334 What are pomegranates? -> $x: ($x, formulate, pomegranate) -> (The gloss, is formulated with, natural pomegranate) -> The gloss (4698ms) What are pomegranates? Herbasway ? -1.333333333334 What are pomegranates? -> $x: ($x, formulate, pomegranate) -> (Herbasway ?, has formulated, Pomegranate) -> Herbasway ? (4698ms) What are pomegranates? The grape crop -1.333333333334 What are pomegranates? -> $x: ($x, precede, pomegranate) -> (The grape crop, preceded, pomegranate cultivation) -> The grape crop (4698ms) What are pomegranates? The only brand -1.444444444445 What are pomegranates? -> $x: ($x, contain, pomegranate) -> (The only brand, to contain, 100 % authentic pomegranate juice) -> The only brand (4706ms) What are pomegranates? The colourful snacks -1.444444444445 What are pomegranates? -> $x: ($x, contain, pomegranate) -> (The colourful snacks, also contain, pomegranate powder) -> The colourful snacks (4702ms) What are pomegranates? The initial is -1.444444444445 What are pomegranates? -> $x: ($x, contain, pomegranate) -> (The initial is, contains, pomegranate extracts) -> The initial is (4706ms) What are pomegranates? NOW? Pomeratrol -1.444444444445 What are pomegranates? -> $x: ($x, contain, pomegranate) -> (NOW? Pomeratrol, contains, Pomegranate Extract) -> NOW? Pomeratrol (4702ms) What are pomegranates? VitalVMH -1.444444444445 What are pomegranates? -> $x: ($x, contain, pomegranate) -> (VitalVMH, contains natural extracts of, pomegranate , bilberry) -> VitalVMH (4702ms) What are pomegranates? each capsule -1.444444444445 What are pomegranates? -> $x: ($x, contain, pomegranate) -> (each capsule, contains, pomegranate powder* 250 mg) -> each capsule (4706ms) What are pomegranates? natural pills -1.444444444445 What are pomegranates? -> $x: ($x, contain, pomegranate) -> (natural pills, contain, Bioperene or Pomegranate 70 % Ellagen) -> natural pills (4702ms) What are pomegranates? I?m -1.444444444445 What are pomegranates? -> $x: ($x, fond, pomegranate) -> (I?m, especially fond of, the pomegranates and plums) -> I?m (4709ms) What are pomegranates? The perfect diet pills -1.444444444445 What are pomegranates? -> $x: ($x, contain, pomegranate) -> (The perfect diet pills, contains, slim pomegranate) -> The perfect diet pills (4706ms) What are pomegranates? Male Extra -1.444444444445 What are pomegranates? -> $x: ($x, contain, pomegranate) -> (Male Extra, contains, Pomegranate 70 % ellagic) -> Male Extra (4706ms) What are pomegranates? Berri Acai -1.444444444445 What are pomegranates? -> $x: ($x, contain, pomegranate) -> (Berri Acai, contain, pomegranate , blueberry , and acai flavors) -> Berri Acai (4702ms) What are pomegranates? Pomeratrol -1.444444444445 What are pomegranates? -> $x: ($x, contain, pomegranate) -> (Pomeratrol, contains, Pomegranate Extract) -> Pomeratrol (4702ms) What are pomegranates? the # 1 Health and Wellness Juice -1.444444444445 What are pomegranates? -> $x: ($x, contain, pomegranate) -> (the # 1 Health and Wellness Juice, contains, Pomegranate) -> the # 1 Health and Wellness Juice (4706ms) What are pomegranates? Each diet pill capsule -1.444444444445 What are pomegranates? -> $x: ($x, contain, pomegranate) -> (Each diet pill capsule, contains, Pomegranate) -> Each diet pill capsule (4702ms) What are pomegranates? Eastern Europeans -1.444444444445 What are pomegranates? -> $x: ($x, fond, pomegranate) -> (Eastern Europeans, are extremely fond of, salmon and pomegranate) -> Eastern Europeans (4706ms) What are pomegranates? MaleExtra -1.444444444445 What are pomegranates? -> $x: ($x, contain, pomegranate) -> (MaleExtra, also contains, Pomegranate 70 % Ellagic Acid) -> MaleExtra (4702ms) What are pomegranates? Energy Drink -1.444444444445 What are pomegranates? -> $x: ($x, contain, pomegranate) -> (Energy Drink, contains, real pomegranate juice) -> Energy Drink (4702ms) What are pomegranates? Red Defence -1.444444444445 What are pomegranates? -> $x: ($x, contain, pomegranate) -> (Red Defence, also contains, Pomegranate) -> Red Defence (4706ms) What are pomegranates? the market -1.444444444445 What are pomegranates? -> $x: ($x, contain, pomegranate) -> (the market, will contain, the ingredient Pomegranate) -> the market (4706ms) What are pomegranates? NOW? Pomeratrol -1.444444444445 What are pomegranates? -> $x: ($x, contain, pomegranate) -> (NOW? Pomeratrol, contains, Pomegranate Extract) -> NOW? Pomeratrol (4706ms) What are pomegranates? MonaVie -1.444444444445 What are pomegranates? -> $x: ($x, contain, pomegranate) -> (MonaVie, contains, pomegranate juice) -> MonaVie (4702ms) What are pomegranates? Performer5 -1.444444444445 What are pomegranates? -> $x: ($x, contain, pomegranate) -> (Performer5, also contains, Pomegranate 70 % Ellagic Acid) -> Performer5 (4702ms) What are pomegranates? The product -1.444444444445 What are pomegranates? -> $x: ($x, contain, pomegranate) -> (The product, contains, frozen pomegranate seeds) -> The product (4706ms) What are pomegranates? Cherry Crush -1.444444444445 What are pomegranates? -> $x: ($x, contain, pomegranate) -> (Cherry Crush, contains, cherry and pomegranate extracts) -> Cherry Crush (4706ms) What are pomegranates? the Covenant -1.444444444445 What are pomegranates? -> $x: ($x, contain, pomegranate) -> (the Covenant, contain, almonds and pomegranates) -> the Covenant (4706ms) What are pomegranates? a juice blend -1.444444444445 What are pomegranates? -> $x: ($x, contain, pomegranate) -> (a juice blend, contains, pomegranate , cherry , black currant) -> a juice blend (4702ms) What are pomegranates? 1936 -1.444444444445 What are pomegranates? -> $x: ($x, contain, pomegranate) -> (1936, contains, Pomegranate Seed) -> 1936 (4706ms) What are pomegranates? the supplements -1.444444444445 What are pomegranates? -> $x: ($x, contain, pomegranate) -> (the supplements, contain, the Pomegranate) -> the supplements (4706ms) What are pomegranates? The ultra-moisturising formula -1.444444444445 What are pomegranates? -> $x: ($x, contain, pomegranate) -> (The ultra-moisturising formula, contains, pomegranate oil) -> The ultra-moisturising formula (4702ms) What are pomegranates? the latter -1.5555555555549998 What are pomegranates? -> $x: ($x, concerned, pomegranate) -> (the latter, made concerning, its ?100 % Pomegranate? drink) -> the latter (4709ms) What are pomegranates? long -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranates, have been used, long) -> long (4718ms) What are pomegranates? the Moorish -1.777777777778 What are pomegranates? -> $x: ($x, inspired, pomegranate) -> (the Moorish, inspired, Crescent and the Pomegranate Blossom) -> the Moorish (4723ms) What are pomegranates? Middle Eastern cultures -1.777777777778 What are pomegranates? -> $x: (pomegranate, be in, $x) -> (pomegranates, are staples in, Middle Eastern cultures) -> Middle Eastern cultures (4731ms) What are pomegranates? a product -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranates, have been used as, a product) -> a product (4718ms) What are pomegranates? punicalagin -1.777777777778 What are pomegranates? -> $x: (pomegranate, be in, $x) -> (Pomegranates, are rich in, punicalagin) -> punicalagin (4732ms) What are pomegranates? vitamin C -1.777777777778 What are pomegranates? -> $x: (pomegranate, be in, $x) -> (pomegranates, are high in, vitamin C) -> vitamin C (4716ms) What are pomegranates? the sunniest -1.777777777778 What are pomegranates? -> $x: (pomegranate, be in, $x) -> (Pomegranates, should be planted in, the sunniest) -> the sunniest (4725ms) What are pomegranates? skin health -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranate, has been shown to promote, skin health) -> skin health (4709ms) What are pomegranates? recently -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (The pomegranate, has been acclaimed, recently) -> recently (4733ms) What are pomegranates? an array -1.777777777778 What are pomegranates? -> $x: (pomegranate, be in, $x) -> (Pomegranates, are already being used in, an array) -> an array (4734ms) What are pomegranates? a celebrity amongst fruits -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (the pomegranate, has been, a celebrity amongst fruits) -> a celebrity amongst fruits (4723ms) What are pomegranates? the excavated area -1.777777777778 What are pomegranates? -> $x: (pomegranate, be in, $x) -> (pomegranates, were found in, the excavated area) -> the excavated area (4732ms) What are pomegranates? Vitamin C -1.777777777778 What are pomegranates? -> $x: (pomegranate, be in, $x) -> (Pomegranates, are rich in, Vitamin C) -> Vitamin C (4732ms) What are pomegranates? clear skin -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranate, has traditionally been used to, clear skin) -> clear skin (4713ms) What are pomegranates? a treasure -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranates, have been regarded as, a treasure) -> a treasure (4723ms) What are pomegranates? numerous studies -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranate, has been shown in, numerous studies) -> numerous studies (4725ms) What are pomegranates? lower blood pressure -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranate juice, has been shown to, lower blood pressure) -> lower blood pressure (4729ms) What are pomegranates? erectile dysfunction -1.777777777778 What are pomegranates? -> $x: (pomegranate, be in, $x) -> (pomegranate, is effective in combating, erectile dysfunction) -> erectile dysfunction (4721ms) What are pomegranates? folic acid -1.777777777778 What are pomegranates? -> $x: (pomegranate, be in, $x) -> (Pomegranates, are high in, folic acid) -> folic acid (4734ms) What are pomegranates? Mediterranean countries -1.777777777778 What are pomegranates? -> $x: (pomegranate, be in, $x) -> (pomegranates, are eaten in, Mediterranean countries) -> Mediterranean countries (4731ms) What are pomegranates? vitamin C , B6 and potassium -1.777777777778 What are pomegranates? -> $x: (pomegranate, be in, $x) -> (Pomegranates, are rich in, vitamin C , B6 and potassium) -> vitamin C , B6 and potassium (4713ms) What are pomegranates? human diet -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranates, have been a part of, human diet) -> human diet (4732ms) What are pomegranates? History -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (Crimson Pomegranate, Has Been Prized Throughout, History) -> History (4729ms) What are pomegranates? the mixture -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranates, has also occasionally been added to, the mixture) -> the mixture (4716ms) What are pomegranates? ok -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranate, would have been, ok) -> ok (4734ms) What are pomegranates? scientific proof -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranate juice, has been validated through, scientific proof) -> scientific proof (4725ms) What are pomegranates? time -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranate, has been used since, time) -> time (4733ms) What are pomegranates? the oxidation -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranates, have been found to reduce, the oxidation) -> the oxidation (4734ms) What are pomegranates? good health -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranate, has been found to be important to, good health) -> good health (4729ms) What are pomegranates? a long time -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranates, have been around, a long time) -> a long time (4718ms) What are pomegranates? Jewish custom -1.777777777778 What are pomegranates? -> $x: (pomegranate, be in, $x) -> (Pomegranate, is significant in, Jewish custom) -> Jewish custom (4733ms) What are pomegranates? menopausal symptoms -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranates, have also been used to combat, menopausal symptoms) -> menopausal symptoms (4727ms) What are pomegranates? conventional folk remedies -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranates, have long been used in, conventional folk remedies) -> conventional folk remedies (4721ms) What are pomegranates? ancient times -1.777777777778 What are pomegranates? -> $x: (pomegranate, be in, $x) -> (pomegranates, were so important in, ancient times) -> ancient times (4733ms) What are pomegranates? traditional Chinese medicine -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranates, have been used in, traditional Chinese medicine) -> traditional Chinese medicine (4733ms) What are pomegranates? Afghan agriculture -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranates, have long been the pride of, Afghan agriculture) -> Afghan agriculture (4721ms) What are pomegranates? the food -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranate, has been known as, the food) -> the food (4723ms) What are pomegranates? folk-medicine -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranates, have been used in, folk-medicine) -> folk-medicine (4731ms) What are pomegranates? Egyptian tombs -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranate, has been found in, Egyptian tombs) -> Egyptian tombs (4733ms) What are pomegranates? ?bad ? LDL cholesterol -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranate, has been shown to reduce, ?bad ? LDL cholesterol) -> ?bad ? LDL cholesterol (4731ms) What are pomegranates? the Near East -1.777777777778 What are pomegranates? -> $x: (pomegranate, be in, $x) -> (pomegranates, were cultivated in, the Near East) -> the Near East (4732ms) What are pomegranates? cancer cells -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranate, has been known to kill, cancer cells) -> cancer cells (4732ms) What are pomegranates? Ancient times -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranates, have definitely been around since, Ancient times) -> Ancient times (4733ms) What are pomegranates? a superfruit -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranate, has been marketed as, a superfruit) -> a superfruit (4731ms) What are pomegranates? diarrhea -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranate, has been used traditionally to treat, diarrhea) -> diarrhea (4728ms) What are pomegranates? LDL oxidation -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranates, have also been reported to reduce, LDL oxidation) -> LDL oxidation (4732ms) What are pomegranates? a fruit -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranate, has long been recognized as, a fruit) -> a fruit (4728ms) What are pomegranates? a countless variety -1.777777777778 What are pomegranates? -> $x: (pomegranate, be in, $x) -> (pomegranates, are used in, a countless variety) -> a countless variety (4716ms) What are pomegranates? raw form -1.777777777778 What are pomegranates? -> $x: (pomegranate, be in, $x) -> (Pomegranate, can be consumed in, raw form) -> raw form (4732ms) What are pomegranates? every region -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranates, have been cultivated in almost, every region) -> every region (4733ms) What are pomegranates? the Mediterranean -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranates, have been grown in, the Mediterranean) -> the Mediterranean (4732ms) What are pomegranates? man -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranates, have been consumed by, man) -> man (4723ms) What are pomegranates? the top activity -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranate, was found to have, the top activity) -> the top activity (4709ms) What are pomegranates? scientific studies -1.777777777778 What are pomegranates? -> $x: (pomegranate, be in, $x) -> (Pomegranate, has been shown in, scientific studies) -> scientific studies (4733ms) What are pomegranates? a jewel -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranates, have been thought of as, a jewel) -> a jewel (4733ms) What are pomegranates? the middle-east -1.777777777778 What are pomegranates? -> $x: (pomegranate, be in, $x) -> (pomegranate, is widely used in, the middle-east) -> the middle-east (4734ms) What are pomegranates? Europe and Asia -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (the pomegranate, has been grown in, Europe and Asia) -> Europe and Asia (4723ms) What are pomegranates? a holy fruit -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranate, has been regarded as, a holy fruit) -> a holy fruit (4727ms) What are pomegranates? chronic dysentery and diarrhea -1.777777777778 What are pomegranates? -> $x: (pomegranate, be in, $x) -> (pomegranate, is useful in, chronic dysentery and diarrhea) -> chronic dysentery and diarrhea (4729ms) What are pomegranates? Punicalagin -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranates, would have to be, Punicalagin) -> Punicalagin (4727ms) What are pomegranates? atherosclerosis progression -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranate, has been shown to slow, atherosclerosis progression) -> atherosclerosis progression (4709ms) What are pomegranates? male libido -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranate, has been proven to improve, male libido) -> male libido (4734ms) What are pomegranates? diets -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranates, have been a constant mainly in, diets) -> diets (4728ms) What are pomegranates? more antioxidant properties -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranate juice, is said to have, more antioxidant properties) -> more antioxidant properties (4725ms) What are pomegranates? Asia -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranates, have been revered in, Asia) -> Asia (4729ms) What are pomegranates? nutritional darlings -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranates, have been, nutritional darlings) -> nutritional darlings (4716ms) What are pomegranates? comparison list -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranate, has been added to, comparison list) -> comparison list (4734ms) What are pomegranates? the hottest flavor -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranate, has been, the hottest flavor) -> the hottest flavor (4721ms) What are pomegranates? 1866 -1.777777777778 What are pomegranates? -> $x: ($x, number of, pomegranate) -> (1866, includes an impressive number of, pomegranate hedges) -> 1866 (4716ms) What are pomegranates? properties -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranates, have also been shown to have, properties) -> properties (4716ms) What are pomegranates? news -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranates, have been making, news) -> news (4733ms) What are pomegranates? prehistoric times -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranates, have been cultivated since, prehistoric times) -> prehistoric times (4716ms) What are pomegranates? the Asian community -1.777777777778 What are pomegranates? -> $x: (pomegranate, be in, $x) -> (?( Pomegranates, are big in, the Asian community) -> the Asian community (4723ms) What are pomegranates? systolic blood pressure -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranate, has been shown to reduce, systolic blood pressure) -> systolic blood pressure (4713ms) What are pomegranates? a number -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranate, has been shown to contain, a number) -> a number (4734ms) What are pomegranates? the West Indies -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (The Pomegranate, has been naturalized in, the West Indies) -> the West Indies (4725ms) What are pomegranates? Middle Eastern food -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranates, have long been a staple in, Middle Eastern food) -> Middle Eastern food (4709ms) What are pomegranates? studies -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranate, has also been shown in, studies) -> studies (4728ms) What are pomegranates? the Bikkurim -1.777777777778 What are pomegranates? -> $x: (pomegranate, be in, $x) -> (pomegranates, were included in, the Bikkurim) -> the Bikkurim (4733ms) What are pomegranates? a good source -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranate, has been shown to be, a good source) -> a good source (4728ms) What are pomegranates? blood flow -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranates, has is to improve, blood flow) -> blood flow (4713ms) What are pomegranates? Indian cookery -1.777777777778 What are pomegranates? -> $x: (pomegranate, be in, $x) -> (pomegranates, is used in, Indian cookery) -> Indian cookery (4726ms) What are pomegranates? a health supplement -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (Pomegranates, have been used as, a health supplement) -> a health supplement (4713ms) What are pomegranates? stories and legend -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranates, have been the stuff of, stories and legend) -> stories and legend (4731ms) What are pomegranates? penile blood flow -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranate, has been shown to increase, penile blood flow) -> penile blood flow (4716ms) What are pomegranates? a natural form -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (pomegranate juice, has been said to be, a natural form) -> a natural form (4729ms) What are pomegranates? U.S. National Library -1.777777777778 What are pomegranates? -> $x: (pomegranate, be have, $x) -> (the pomegranate, have been indexed at, U.S. National Library) -> U.S. National Library (4731ms) What are pomegranates? Singapore?s National Museum -1.777777777778 What are pomegranates? -> $x: (pomegranate, be in, $x) -> (Pomegranate, was presented in, Singapore?s National Museum) -> Singapore?s National Museum (4718ms) What year was the program first broadcast? Radio-Canada -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Radio-Canada, broadcasts, its programming) -> Radio-Canada (1819ms) What year was the program first broadcast? Nayarit -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Nayarit, broadcast, a program) -> Nayarit (1822ms) What year was the program first broadcast? CPB -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (CPB, broadcast, programs) -> CPB (1825ms) What year was the program first broadcast? Education , Culture and Sport -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Education , Culture and Sport, broadcasts, scholastic programs) -> Education , Culture and Sport (1819ms) What year was the program first broadcast? a radio -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (a radio, broadcast, television program) -> a radio (1821ms) What year was the program first broadcast? GFA Radio -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (GFA Radio, broadcasts, programs) -> GFA Radio (1822ms) What year was the program first broadcast? the BBC -0.111111111111 What year was the program first broadcast? -> $x: ($x, be broadcast of, program) -> (the BBC, are broadcasting a series of, special programs) -> the BBC (1821ms) What year was the program first broadcast? BBC -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (BBC, broadcast, the program) -> BBC (1825ms) What year was the program first broadcast? An Iraqi state TV anchor -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (An Iraqi state TV anchor, broadcast, programs) -> An Iraqi state TV anchor (1819ms) What year was the program first broadcast? radio -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (radio, broadcast, a program) -> radio (1825ms) What year was the program first broadcast? Channel 3 licence holders -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Channel 3 licence holders, broadcast, Gaelic programming) -> Channel 3 licence holders (1824ms) What year was the program first broadcast? the channel -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (the channel, broadcasts, the program) -> the channel (1824ms) What year was the program first broadcast? the CBS 60 Minutes -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (the CBS 60 Minutes, broadcast, a program) -> the CBS 60 Minutes (1822ms) What year was the program first broadcast? opportunities -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (opportunities, broadcast, programming) -> opportunities (1821ms) What year was the program first broadcast? MIT radio -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (MIT radio, broadcast, a program) -> MIT radio (1821ms) What year was the program first broadcast? The company -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (The company, broadcasts, poker programming) -> The company (1821ms) What year was the program first broadcast? Education -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Education, broadcasts, scholastic programs) -> Education (1821ms) What year was the program first broadcast? childrens -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (childrens, broadcast, programs) -> childrens (1825ms) What year was the program first broadcast? the United States -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (the United States, broadcast, NPR programs) -> the United States (1825ms) What year was the program first broadcast? JPR -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (JPR, broadcast, its programs) -> JPR (1824ms) What year was the program first broadcast? 10 short wave transmitters -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (10 short wave transmitters, broadcast, programs) -> 10 short wave transmitters (1821ms) What year was the program first broadcast? The channel -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (The channel, broadcasting, programming) -> The channel (1825ms) What year was the program first broadcast? companies Film & TV Connection -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (companies Film & TV Connection, broadcast, educational program) -> companies Film & TV Connection (1822ms) What year was the program first broadcast? Minnesota Public Radio -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Minnesota Public Radio, broadcast, a program) -> Minnesota Public Radio (1825ms) What year was the program first broadcast? stations -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (stations, broadcasting, their programming) -> stations (1825ms) What year was the program first broadcast? The station -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (The station, broadcast, a program) -> The station (1825ms) What year was the program first broadcast? free publicity -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (free publicity, broadcast, news programs) -> free publicity (1824ms) What year was the program first broadcast? Radio Prague -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Radio Prague, broadcasts, programs) -> Radio Prague (1822ms) What year was the program first broadcast? Sallie -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Sallie, broadcast, programs) -> Sallie (1819ms) What year was the program first broadcast? Trans World Radio -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Trans World Radio, broadcasts, radio programs) -> Trans World Radio (1821ms) What year was the program first broadcast? vote fraud -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (vote fraud, broadcast, news programs) -> vote fraud (1819ms) What year was the program first broadcast? The CBS and even 60 minutes -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (The CBS and even 60 minutes, broadcast, program) -> The CBS and even 60 minutes (1821ms) What year was the program first broadcast? a station -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (a station, broadcasting, religious programming) -> a station (1824ms) What year was the program first broadcast? ordinary people -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (ordinary people, broadcast, TV programming) -> ordinary people (1822ms) What year was the program first broadcast? The French network -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (The French network, broadcast, the programs) -> The French network (1824ms) What year was the program first broadcast? communities -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (communities, broadcast, television programming) -> communities (1819ms) What year was the program first broadcast? The project -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (The project, broadcast, radio programs) -> The project (1819ms) What year was the program first broadcast? overseas stations -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (overseas stations, broadcast, the program) -> overseas stations (1821ms) What year was the program first broadcast? Public Broadcasting -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Public Broadcasting, broadcast, programs) -> Public Broadcasting (1824ms) What year was the program first broadcast? A company -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (A company, broadcast, programs) -> A company (1819ms) What year was the program first broadcast? the network -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (the network, broadcast, the program) -> the network (1819ms) What year was the program first broadcast? WKAR -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (WKAR, broadcast, radio programs) -> WKAR (1819ms) What year was the program first broadcast? divers telegram companies -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (divers telegram companies, broadcast, German programming) -> divers telegram companies (1824ms) What year was the program first broadcast? VOA -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (VOA, broadcasts, programs) -> VOA (1822ms) What year was the program first broadcast? Beijing TV Station -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Beijing TV Station, broadcast, a program) -> Beijing TV Station (1822ms) What year was the program first broadcast? the Supreme Court -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (the Supreme Court, broadcast, the program) -> the Supreme Court (1822ms) What year was the program first broadcast? BBC Radio -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (BBC Radio, broadcast, 6 programs) -> BBC Radio (1824ms) What year was the program first broadcast? the licensee -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (the licensee, broadcasts, adult programming) -> the licensee (1825ms) What year was the program first broadcast? Frontline -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Frontline, broadcast, the program) -> Frontline (1824ms) What year was the program first broadcast? shortwave operations -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (shortwave operations, broadcast, programs) -> shortwave operations (1819ms) What year was the program first broadcast? Television channels -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Television channels, broadcast, special programs) -> Television channels (1819ms) What year was the program first broadcast? air talent -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (air talent, broadcast, additional programming) -> air talent (1821ms) What year was the program first broadcast? Public Broadcasting stations -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Public Broadcasting stations, broadcast, programs) -> Public Broadcasting stations (1821ms) What year was the program first broadcast? the East Coast -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (the East Coast, broadcast, the program) -> the East Coast (1822ms) What year was the program first broadcast? Dzimwe Community Radio -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Dzimwe Community Radio, broadcasts, its programs) -> Dzimwe Community Radio (1821ms) What year was the program first broadcast? KSER -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (KSER, broadcast, programming) -> KSER (1825ms) What year was the program first broadcast? the station -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (the station, broadcast, its programming) -> the station (1826ms) What year was the program first broadcast? The festival -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (The festival, broadcasted, four programs) -> The festival (1819ms) What year was the program first broadcast? The Arabic network -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (The Arabic network, broadcasts, its programs) -> The Arabic network (1822ms) What year was the program first broadcast? The Foundation -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (The Foundation, broadcast, three programs) -> The Foundation (1821ms) What year was the program first broadcast? Lightning -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Lightning, broadcast, its programs) -> Lightning (1822ms) What year was the program first broadcast? Local and public TV stations -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Local and public TV stations, broadcast, programs) -> Local and public TV stations (1825ms) What year was the program first broadcast? the television networks -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (the television networks, broadcast, emergency programming) -> the television networks (1819ms) What year was the program first broadcast? Fox -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Fox, broadcast, their programs) -> Fox (1826ms) What year was the program first broadcast? the times stations -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (the times stations, broadcast, the programs) -> the times stations (1819ms) What year was the program first broadcast? The radio station -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (The radio station, broadcasts, programs) -> The radio station (1822ms) What year was the program first broadcast? Xbox -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Xbox, broadcast, the program) -> Xbox (1824ms) What year was the program first broadcast? provincial radio and TV stations -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (provincial radio and TV stations, broadcast, programs) -> provincial radio and TV stations (1824ms) What year was the program first broadcast? the SAT-7 Pars network -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (the SAT-7 Pars network, broadcasts, Christian programming) -> the SAT-7 Pars network (1824ms) What year was the program first broadcast? facilities -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (facilities, broadcast, multiple programs) -> facilities (1825ms) What year was the program first broadcast? KEXP -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (KEXP, broadcast, programming) -> KEXP (1824ms) What year was the program first broadcast? the recent show -0.111111111111 What year was the program first broadcast? -> $x: ($x, be broadcast of, program) -> (the recent show, was a live broadcast of, the program) -> the recent show (1824ms) What year was the program first broadcast? programs -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (programs, broadcast, live programs) -> programs (1825ms) What year was the program first broadcast? the satellite -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (the satellite, broadcast, programs) -> the satellite (1819ms) What year was the program first broadcast? Detroit -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Detroit, broadcast, programs) -> Detroit (1826ms) What year was the program first broadcast? Bermel radio -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Bermel radio, broadcasts, programs) -> Bermel radio (1822ms) What year was the program first broadcast? NBC -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (NBC, broadcast, a program) -> NBC (1825ms) What year was the program first broadcast? out -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (out, broadcast, his program) -> out (1823ms) What year was the program first broadcast? Yamayska -0.111111111111 What year was the program first broadcast? -> $x: ($x, broadcast, program) -> (Yamayska, broadcast, radio programs) -> Yamayska (1824ms) What year was the program first broadcast? Crass Matthews -0.666666666658 What year was the program first broadcast? -> $x: ($x, first broadcast, program) -> (Crass Matthews, first broadcast the commercial on, his program) -> Crass Matthews (1826ms) What year was the program first broadcast? KXLY 4 -0.666666666658 What year was the program first broadcast? -> $x: ($x, first broadcast, program) -> (KXLY 4, was also first to broadcast, an HD program) -> KXLY 4 (1826ms) What year was the program first broadcast? United States -0.777777777779 What year was the program first broadcast? -> $x: (program, first broadcast, $x) -> (The program, was first broadcasted in, United States) -> United States (1826ms) What year was the program first broadcast? 1992 -0.777777777779 What year was the program first broadcast? -> $x: (program, first broadcast, $x) -> (Irwin?s Crocodile Hunter program, was first broadcast in, 1992) -> 1992 (1827ms) What year was the program first broadcast? October 2011 -0.777777777779 What year was the program first broadcast? -> $x: (program, first broadcast, $x) -> (This program, was first broadcast in, October 2011) -> October 2011 (1827ms) What year was the program first broadcast? the Boston area -0.777777777779 What year was the program first broadcast? -> $x: (program, first broadcast, $x) -> (The programs, were first broadcast in, the Boston area) -> the Boston area (1826ms) What year was the program first broadcast? 1963 -0.777777777779 What year was the program first broadcast? -> $x: (program, first broadcast, $x) -> (The television program, was first broadcasted in, 1963) -> 1963 (1827ms) What year was the program first broadcast? October 27 , 1957 -0.777777777779 What year was the program first broadcast? -> $x: (program, first broadcast, $x) -> (this program, was first broadcast on, October 27 , 1957) -> October 27 , 1957 (1827ms) What year was the program first broadcast? 1956 -0.777777777779 What year was the program first broadcast? -> $x: (program, first broadcast, $x) -> (the program, was first broadcast in, 1956) -> 1956 (1827ms) What year was the program first broadcast? 1928 -0.777777777779 What year was the program first broadcast? -> $x: (program, first broadcast, $x) -> (the program, was first broadcast in, 1928) -> 1928 (1827ms) What year was the program first broadcast? 1983 -0.777777777779 What year was the program first broadcast? -> $x: (program, first broadcast, $x) -> (the program, was first broadcast in, 1983) -> 1983 (1826ms) What year was the program first broadcast? March -0.777777777779 What year was the program first broadcast? -> $x: (program, first broadcast, $x) -> (The program, was first broadcasted in, March) -> March (1826ms) What year was the program first broadcast? UPN -0.777777777779 What year was the program first broadcast? -> $x: (program, first broadcast, $x) -> (the program, was first broadcast on, UPN) -> UPN (1826ms) What year was the program first broadcast? October 2001 -0.777777777779 What year was the program first broadcast? -> $x: (program, first broadcast, $x) -> (This program, was first broadcast in, October 2001) -> October 2001 (1827ms) What year was the program first broadcast? 1986 -0.777777777779 What year was the program first broadcast? -> $x: (program, first broadcast, $x) -> (The programs, were first broadcast in, 1986) -> 1986 (1827ms) What year was the program first broadcast? Saturday 27 June -0.777777777779 What year was the program first broadcast? -> $x: (program, first broadcast, $x) -> (The program, is first broadcast on, Saturday 27 June) -> Saturday 27 June (1826ms) What year was the program first broadcast? Aug. 5 , 1957 -0.777777777779 What year was the program first broadcast? -> $x: (program, first broadcast, $x) -> (the program, was first broadcast nationally on, Aug. 5 , 1957) -> Aug. 5 , 1957 (1826ms) What birthstone is turquoise? the month -1.4444444444559998 What birthstone is turquoise? -> $x: (turquoise, be birthstone of, $x) -> (December Birthstone Turquoise, is the birthstone of, the month) -> the month (502ms) What birthstone is turquoise? December -1.4444444444559998 What birthstone is turquoise? -> $x: (turquoise, be birthstone of, $x) -> (Turquoise, is the traditional birthstone of, December) -> December (502ms) What birthstone is turquoise? Sagittarius -1.4444444444559998 What birthstone is turquoise? -> $x: (turquoise, be birthstone of, $x) -> (Turquoise, is the birthstone of, Sagittarius) -> Sagittarius (502ms) How many events are part of the LPGA tour? Kingsmill Resort 0.666666666664 How many events are part of the LPGA tour? -> $x: ($x, be part of, lpga tour) -> (Kingsmill Resort, is thrilled to be part of, the 2012 LPGA Tour) -> Kingsmill Resort (686ms) How many events are part of the LPGA tour? the length -0.0 How many events are part of the LPGA tour? -> $x: ($x, find, lpga tour) -> (the length, found on, modern PGA and L.P.G.A Tour courses) -> the length (686ms) How many events are part of the LPGA tour? Wie -0.0 How many events are part of the LPGA tour? -> $x: ($x, find, lpga tour) -> (Wie, is nowhere to be found on, the LPGA Tour) -> Wie (686ms) How many events are part of the LPGA tour? Iowa -0.0 How many events are part of the LPGA tour? -> $x: ($x, produce, lpga tour) -> (Iowa, produced, an LPGA Tour Player) -> Iowa (686ms) What was Sammy Sosa's team? Todd Hollandsworth -0.333333333347 What was Sammy Sosa's team? -> $x: ($x, play for, sammy sosa) -> (Todd Hollandsworth, played for, Sammy Sosa) -> Todd Hollandsworth (741ms) What was Sammy Sosa's team? the hell -0.444444444458 What was Sammy Sosa's team? -> $x: ($x, happen to, sammy sosa) -> (the hell, has happened to, Sammy Sosa) -> the hell (741ms) What was Sammy Sosa's team? the Texas Rangers -1.6666666666780001 What was Sammy Sosa's team? -> $x: (sammy sosa, play for, $x) -> (Slugger Sammy Sosa, plays for, the Texas Rangers) -> the Texas Rangers (741ms) What was Sammy Sosa's team? the Cubs -1.6666666666780001 What was Sammy Sosa's team? -> $x: (sammy sosa, play for, $x) -> (Sammy Sosa, played for, the Cubs) -> the Cubs (741ms) What was Sammy Sosa's team? Cubs -1.6666666666780001 What was Sammy Sosa's team? -> $x: (sammy sosa, play for, $x) -> (sammy sosa, plays for the team, Cubs) -> Cubs (741ms) What city is Lake Washington by? Rainbow trout 0.22222222222199994 What city is Lake Washington by? -> $x: ($x, found, lake washington) -> (Rainbow trout, Found in, Lake Washington) -> Rainbow trout (728ms) What city is Lake Washington by? lake stevens 0.22222222222199994 What city is Lake Washington by? -> $x: ($x, found, lake washington) -> (lake stevens, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Lake%20Stevens,%20Washington) -> lake stevens (765ms) What city is Lake Washington by? fallen leaf lake 0.22222222222199994 What city is Lake Washington by? -> $x: ($x, found, lake washington) -> (fallen leaf lake, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Fallen%20Leaf%20Lake%20(Washington)) -> fallen leaf lake (765ms) What city is Lake Washington by? Cutthroat trout 0.22222222222199994 What city is Lake Washington by? -> $x: ($x, found, lake washington) -> (Cutthroat trout, Found in, Lake Washington) -> Cutthroat trout (765ms) What city is Lake Washington by? Smallmouth bass 0.22222222222199994 What city is Lake Washington by? -> $x: ($x, found, lake washington) -> (Smallmouth bass, Found in, Lake Washington) -> Smallmouth bass (765ms) What city is Lake Washington by? LAKE TAPPS 0.22222222222199994 What city is Lake Washington by? -> $x: ($x, found, lake washington) -> (LAKE TAPPS, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Lake%20Tapps%20(Washington)) -> LAKE TAPPS (765ms) What city is Lake Washington by? a Hell Diver 0.22222222222199994 What city is Lake Washington by? -> $x: ($x, found, lake washington) -> (a Hell Diver, found in, a Washington State lake) -> a Hell Diver (765ms) What city is Lake Washington by? lake river 0.22222222222199994 What city is Lake Washington by? -> $x: ($x, found, lake washington) -> (lake river, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Lake%20River%20(Washington)) -> lake river (728ms) What city is Lake Washington by? Sockeye salmon 0.22222222222199994 What city is Lake Washington by? -> $x: ($x, found, lake washington) -> (Sockeye salmon, Found in, Lake Washington) -> Sockeye salmon (765ms) What city is Lake Washington by? a Seattle bartender 0.22222222222199994 What city is Lake Washington by? -> $x: ($x, found, lake washington) -> (a Seattle bartender, finds a horny merman in, Lake Washington) -> a Seattle bartender (765ms) What city is Lake Washington by? 7 a.m. 0.22222222222199994 What city is Lake Washington by? -> $x: ($x, found, lake washington) -> (7 a.m., found, Lake Washington calm) -> 7 a.m. (765ms) What city is Lake Washington by? Lake Ketchum 0.22222222222199994 What city is Lake Washington by? -> $x: ($x, found, lake washington) -> (Lake Ketchum, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Lake%20Ketchum,%20Washington) -> Lake Ketchum (728ms) What city is Lake Washington by? Welcome Home ! Eden?s acorn 0.22222222222199994 What city is Lake Washington by? -> $x: ($x, found, lake washington) -> (Welcome Home ! Eden?s acorn, found floating in, Lake Washington) -> Welcome Home ! Eden?s acorn (728ms) What city is Lake Washington by? Banks Lake South 0.22222222222199994 What city is Lake Washington by? -> $x: ($x, found, lake washington) -> (Banks Lake South, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Banks%20Lake%20South,%20Washington) -> Banks Lake South (765ms) What city is Lake Washington by? Largemouth bass 0.22222222222199994 What city is Lake Washington by? -> $x: ($x, found, lake washington) -> (Largemouth bass, Found in, Lake Washington) -> Largemouth bass (765ms) What city is Lake Washington by? Lake Cavanaugh 0.22222222222199994 What city is Lake Washington by? -> $x: ($x, found, lake washington) -> (Lake Cavanaugh, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Lake%20Cavanaugh,%20Washington) -> Lake Cavanaugh (765ms) What city is Lake Washington by? medical lake 0.22222222222199994 What city is Lake Washington by? -> $x: ($x, found, lake washington) -> (medical lake, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Medical%20Lake,%20Washington) -> medical lake (765ms) What city is Lake Washington by? Washington Lake 0.22222222222199994 What city is Lake Washington by? -> $x: ($x, found, lake washington) -> (Washington Lake, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Washington%20Lake%20(Idaho)) -> Washington Lake (728ms) What city is Lake Washington by? Lake Forest Park 0.22222222222199994 What city is Lake Washington by? -> $x: ($x, found, lake washington) -> (Lake Forest Park, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Lake%20Forest%20Park,%20Washington) -> Lake Forest Park (728ms) What city is Lake Washington by? Coho salmon 0.22222222222199994 What city is Lake Washington by? -> $x: ($x, found, lake washington) -> (Coho salmon, Found in, Lake Washington) -> Coho salmon (766ms) What city is Lake Washington by? a body 0.22222222222199994 What city is Lake Washington by? -> $x: ($x, found, lake washington) -> (a body, was found at, the Lake Washington house) -> a body (765ms) What city is Lake Washington by? Curtis Lake 0.22222222222199994 What city is Lake Washington by? -> $x: ($x, found, lake washington) -> (Curtis Lake, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Curtis%20Lake%20(Clark%20County,%20Washington)) -> Curtis Lake (728ms) What city is Lake Washington by? MIA 0.22222222222199994 What city is Lake Washington by? -> $x: ($x, found, lake washington) -> (MIA, found a few days later at, his Lake Washington home) -> MIA (728ms) What city is Lake Washington by? Chinook salmon 0.22222222222199994 What city is Lake Washington by? -> $x: ($x, found, lake washington) -> (Chinook salmon, Found in, Lake Washington) -> Chinook salmon (728ms) What city is Lake Washington by? traction 0.22222222222199994 What city is Lake Washington by? -> $x: ($x, found, lake washington) -> (traction, was hard to find on, Lake Washington Boulevard) -> traction (728ms) What city is Lake Washington by? Washington Park Lake 0.22222222222199994 What city is Lake Washington by? -> $x: ($x, found, lake washington) -> (Washington Park Lake, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Washington%20Park%20Lake) -> Washington Park Lake (728ms) What city is Lake Washington by? kitsap lake 0.22222222222199994 What city is Lake Washington by? -> $x: ($x, found, lake washington) -> (kitsap lake, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Erlands%20Point%2DKitsap%20Lake,%20Washington) -> kitsap lake (765ms) What city is Lake Washington by? Lake Washington Ship Canal 0.22222222222199994 What city is Lake Washington by? -> $x: ($x, found, lake washington) -> (Lake Washington Ship Canal, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Lake%20Washington%20Ship%20Canal) -> Lake Washington Ship Canal (765ms) Which film won three awards at the festival? the subject 0.555555555555 Which film won three awards at the festival? -> $x: ($x, win three award at, festival) -> (the subject, won three awards at, the festival) -> the subject (467ms) Which film won three awards at the festival? Europe 0.555555555555 Which film won three awards at the festival? -> $x: ($x, win three award at, festival) -> (Europe, has won three awards at, international film festivals) -> Europe (467ms) Which film won three awards at the festival? ?Paper Dolls ? 0.555555555555 Which film won three awards at the festival? -> $x: ($x, win three award at, festival) -> (?Paper Dolls ?, won three awards at, the Berlin Film Festival) -> ?Paper Dolls ? (467ms) Which film won three awards at the festival? The film 0.555555555555 Which film won three awards at the festival? -> $x: ($x, win three award at, festival) -> (The film, won three awards at, the film festival) -> The film (467ms) What is the birthstone of October? Tourmaline 0.222222222219 What is the birthstone of October? -> $x: ($x, be birthstone of, october) -> (Tourmaline, is the birthstone of, October) -> Tourmaline (679ms) What is the birthstone of October? the 14th and 18th years 0.222222222219 What is the birthstone of October? -> $x: ($x, be birthstone of, october) -> (the 14th and 18th years, is the birthstone of, October) -> the 14th and 18th years (679ms) What is the birthstone of October? Coral 0.222222222219 What is the birthstone of October? -> $x: ($x, be birthstone of, october) -> (Coral, is the birthstone of, October and November) -> Coral (679ms) What is the birthstone of October? Opal 0.222222222219 What is the birthstone of October? -> $x: ($x, be birthstone of, october) -> (Opal, is one of the birthstones for, October) -> Opal (679ms) What is the birthstone of October? The opal 0.222222222219 What is the birthstone of October? -> $x: ($x, be birthstone of, october) -> (The opal, is the birthstone of, October) -> The opal (679ms) What is the birthstone of October? the 8th year 0.222222222219 What is the birthstone of October? -> $x: ($x, be birthstone of, october) -> (the 8th year, is the traditional birthstone of, October) -> the 8th year (679ms) When is the summer solstice? Damanhur 0.666666666667 When is the summer solstice? -> $x: (summer solstice, be celebrate in, $x) -> (the first summer solstice, was celebrated in, Damanhur) -> Damanhur (1306ms) When is the summer solstice? conjunction 0.666666666667 When is the summer solstice? -> $x: (summer, be celebrate in, $x) -> (Summer Festival 2002, was celebrated in, conjunction) -> conjunction (1224ms) When is the summer solstice? the first or 0.666666666667 When is the summer solstice? -> $x: (summer, be celebrate in, $x) -> (Summer birthdays, will be celebrated in, the first or) -> the first or (1151ms) When is the summer solstice? modern society 0.666666666667 When is the summer solstice? -> $x: (summer, be celebrate in, $x) -> (the Summer Solstice, is still celebrated in, modern society) -> modern society (1307ms) When is the summer solstice? June 0.666666666667 When is the summer solstice? -> $x: (summer, be celebrate in, $x) -> (Summer birthdays, will be celebrated in, June) -> June (1151ms) When is the summer solstice? town 0.666666666667 When is the summer solstice? -> $x: (summer, be celebrate in, $x) -> (Summer Arts Festival, are celebrated in, town) -> town (1224ms) When is the summer solstice? May 0.666666666667 When is the summer solstice? -> $x: (summer, be celebrate in, $x) -> (Summer birthdays, are celebrated in, May) -> May (1255ms) When is the summer solstice? Rome 0.666666666667 When is the summer solstice? -> $x: (summer, be celebrate in, $x) -> (Summer, was celebrated in, Rome) -> Rome (1306ms) When is the summer solstice? hill stations 0.666666666667 When is the summer solstice? -> $x: (summer, be celebrate in, $x) -> (The Summer Festival, is celebrated in, hill stations) -> hill stations (1255ms) When is the summer solstice? places 0.666666666667 When is the summer solstice? -> $x: (summer, be celebrate in, $x) -> (the summer solstice, is celebrated in, places) -> places (1224ms) When is the summer solstice? agricultural areas 0.666666666667 When is the summer solstice? -> $x: (summer, be celebrate in, $x) -> (summer, is celebrated in, agricultural areas) -> agricultural areas (1255ms) When is the summer solstice? Ireland 0.666666666667 When is the summer solstice? -> $x: (summer, be celebrate in, $x) -> (means summers end, was celebrated in, Ireland) -> Ireland (1255ms) When is the summer solstice? Mount Abu 0.666666666667 When is the summer solstice? -> $x: (summer, be celebrate in, $x) -> (Summer Festival, is celebrated in, Mount Abu) -> Mount Abu (1255ms) When is the summer solstice? the month 0.666666666667 When is the summer solstice? -> $x: (summer, be celebrate in, $x) -> (The Summer Festival, is celebrated every year in, the month) -> the month (1306ms) When is the summer solstice? Michigan 0.666666666667 When is the summer solstice? -> $x: (summer, be celebrate in, $x) -> (summer, is celebrated in, Michigan) -> Michigan (1255ms) When is the summer solstice? Dorothea Rockburne?s 0.666666666667 When is the summer solstice? -> $x: (summer, be celebrate in, $x) -> (The summer night, is celebrated in, Dorothea Rockburne?s) -> Dorothea Rockburne?s (1255ms) When is the summer solstice? December 0.666666666667 When is the summer solstice? -> $x: (summer solstice, be celebrate in, $x) -> (the Summer Solstice, is celebrated in, December) -> December (1306ms) When is the summer solstice? style 0.666666666667 When is the summer solstice? -> $x: (summer, be celebrate in, $x) -> (the Summer Reading Club, was celebrated in, style) -> style (1151ms) When is the summer solstice? the country 0.666666666667 When is the summer solstice? -> $x: (summer, be celebrate in, $x) -> (Summer, is highly celebrated in, the country) -> the country (1224ms) When is the summer solstice? Leo 0.222222222221 When is the summer solstice? -> $x: ($x, be in, summer solstice) -> (Leo, was in, the summer solstice) -> Leo (1843ms) When is the summer solstice? Egyptians 0.222222222221 When is the summer solstice? -> $x: ($x, be in, summer solstice) -> (Egyptians, were especially interested in, the summer solstice) -> Egyptians (1307ms) When is the summer solstice? The 9th , or last 0.222222222221 When is the summer solstice? -> $x: ($x, be in, summer solstice) -> (The 9th , or last, is held in, the summer and winter solstices) -> The 9th , or last (1306ms) When is the summer solstice? We?ll 0.222222222221 When is the summer solstice? -> $x: ($x, be in, summer solstice) -> (We?ll, be participating in, the 24 Hour Summer Solstice) -> We?ll (1307ms) When is the summer solstice? Monday 0.222222222221 When is the summer solstice? -> $x: ($x, be in, summer solstice) -> (Monday, was listed in, my Summer Solstice post) -> Monday (1843ms) When is the summer solstice? a clockwise direction 0.111111111111 When is the summer solstice? -> $x: ($x, do, summer solstice) -> (a clockwise direction, does, the Summer Solstice Sunrise) -> a clockwise direction (2166ms) When is the summer solstice? fourth 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (fourth, is, Summer Solstice) -> fourth (2166ms) When is the summer solstice? The winter solstice 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (The winter solstice, is the counterpart of, summer solstice) -> The winter solstice (2203ms) When is the summer solstice? the catastrophe 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (the catastrophe, was the 20+ year span from, summer solstice) -> the catastrophe (2205ms) When is the summer solstice? the leaves 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (the leaves, must be gathered before, Summer Solstice) -> the leaves (2085ms) When is the summer solstice? 22 June 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (22 June, may be subject to change due to, Summer Solstice) -> 22 June (2133ms) When is the summer solstice? June 21 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (June 21, is, Summer Solstice) -> June 21 (2206ms) When is the summer solstice? 21 June 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (21 June, is, the summer solstice) -> 21 June (2133ms) When is the summer solstice? June 20 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (June 20, was, Summer Solstice) -> June 20 (2181ms) When is the summer solstice? The celestial event 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (The celestial event, was, the summer solstice) -> The celestial event (2205ms) When is the summer solstice? the sun 0.111111111111 When is the summer solstice? -> $x: ($x, do, summer solstice) -> (the sun, does a month after, the summer solstice) -> the sun (2203ms) When is the summer solstice? The same 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (The same, is the case at, summer solstice) -> The same (2205ms) When is the summer solstice? Lee Welles Today 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Lee Welles Today, is, the Summer Solstice) -> Lee Welles Today (2041ms) When is the summer solstice? The deadline 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (The deadline, is, the Summer Solstice) -> The deadline (2203ms) When is the summer solstice? 10-Season Practice Tomorrow 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (10-Season Practice Tomorrow, is, Summer Solstice 2010) -> 10-Season Practice Tomorrow (2205ms) When is the summer solstice? the south 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (the south, is, summer solstice) -> the south (1932ms) When is the summer solstice? 21st December 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (21st December, is, Summer Solstice) -> 21st December (2040ms) When is the summer solstice? The ?slenska ?satr?arf?lagi? 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (The ?slenska ?satr?arf?lagi?, was founded on, summer solstice) -> The ?slenska ?satr?arf?lagi? (1932ms) When is the summer solstice? eight delicate characters 0.111111111111 When is the summer solstice? -> $x: ($x, date be, summer solstice) -> (eight delicate characters, is dated to, the summer solstice) -> eight delicate characters (2165ms) When is the summer solstice? the movie biz 0.111111111111 When is the summer solstice? -> $x: ($x, do, summer solstice) -> (the movie biz, does n?t wait for, the summer solstice) -> the movie biz (2165ms) When is the summer solstice? Druid Arthur Pendragon 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Druid Arthur Pendragon, was arrested on, Summer Solstice) -> Druid Arthur Pendragon (2166ms) When is the summer solstice? ?Ritusamhara? 4 times 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (?Ritusamhara? 4 times, now is the time for, Summer Solstice) -> ?Ritusamhara? 4 times (2133ms) When is the summer solstice? Steven Myhill-Jones Today 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Steven Myhill-Jones Today, is, the summer solstice) -> Steven Myhill-Jones Today (2133ms) When is the summer solstice? the year 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (the year, were, Summer Solstice) -> the year (2205ms) When is the summer solstice? June 21st 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (June 21st, was, the Summer Solstice) -> June 21st (2203ms) When is the summer solstice? the midsummer bondfires 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (the midsummer bondfires, are held outdoors on, Summer Solstice) -> the midsummer bondfires (2181ms) When is the summer solstice? the Winter Solstice 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (the Winter Solstice, is, the Summer Solstice) -> the Winter Solstice (2181ms) When is the summer solstice? Last night 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Last night, was, summer solstice) -> Last night (2040ms) When is the summer solstice? 270 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (270, is, southern summer solstice) -> 270 (2040ms) When is the summer solstice? The date 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (The date, was, the Summer Solstice time) -> The date (1932ms) When is the summer solstice? Europe 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Europe, is, the summer solstice) -> Europe (2205ms) When is the summer solstice? 21 june Today 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (21 june Today, is, Summer Solstice) -> 21 june Today (2203ms) When is the summer solstice? four times 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (four times, now is the time for, Summer Solstice) -> four times (2203ms) When is the summer solstice? each year 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (each year, is the start of, Summer Solstice) -> each year (2203ms) When is the summer solstice? The sun 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (The sun, has always been the symbol of, summer solstice) -> The sun (2165ms) When is the summer solstice? June 21 , 2011 Today 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (June 21 , 2011 Today, is, the Summer Solstice) -> June 21 , 2011 Today (2181ms) When is the summer solstice? Last week 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Last week, was, the summer solstice) -> Last week (2206ms) When is the summer solstice? Litha 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Litha, is, the Summer Solstice) -> Litha (2205ms) When is the summer solstice? Saturn 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Saturn, was close to, summer solstice) -> Saturn (2085ms) When is the summer solstice? The Southern Hemisphere December 22nd 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (The Southern Hemisphere December 22nd, is, the Summer Solstice) -> The Southern Hemisphere December 22nd (2203ms) When is the summer solstice? 11-9pm 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (11-9pm, will be celebrating, Summer Solstice) -> 11-9pm (1843ms) When is the summer solstice? the Dragon Boat Day 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (the Dragon Boat Day, usually is close to, summer solstice) -> the Dragon Boat Day (2181ms) When is the summer solstice? the longest day 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (the longest day, is known as, Summer Solstice) -> the longest day (2085ms) When is the summer solstice? ?Tuesday 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (?Tuesday, is, the Summer Solstice) -> ?Tuesday (2203ms) When is the summer solstice? Gemini and Cancer 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Gemini and Cancer, is, the Summer Solstice) -> Gemini and Cancer (2206ms) When is the summer solstice? ASR 0.111111111111 When is the summer solstice? -> $x: ($x, happen to, summer solstice) -> (ASR, happens to be, the summer solstice) -> ASR (2085ms) When is the summer solstice? SNWMF 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (SNWMF, is, a summer solstice) -> SNWMF (2040ms) When is the summer solstice? 2011 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (2011, was the first day of, Summer Solstice) -> 2011 (1843ms) When is the summer solstice? Yesterday 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Yesterday, was, the summer solstice) -> Yesterday (2205ms) When is the summer solstice? Tomorrow 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Tomorrow, is, the Summer Solstice) -> Tomorrow (2133ms) When is the summer solstice? Cancer 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Cancer, is, the Summer solstice sign) -> Cancer (2205ms) When is the summer solstice? the images 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (the images, is, the Summer Solstice) -> the images (2203ms) When is the summer solstice? the celestial equator 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (the celestial equator, is, the Summer Solstice) -> the celestial equator (2181ms) When is the summer solstice? June 21 , 2011 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (June 21 , 2011, is, Summer Solstice) -> June 21 , 2011 (1933ms) When is the summer solstice? June 20th 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (June 20th, is, Summer Solstice) -> June 20th (2206ms) When is the summer solstice? Mead 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Mead, is the traditional drink for, Summer Solstice) -> Mead (2205ms) When is the summer solstice? Father 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Father, was, Summer Solstice) -> Father (2203ms) When is the summer solstice? Wren Today 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Wren Today, is, Summer Solstice) -> Wren Today (2166ms) When is the summer solstice? Tuesday 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Tuesday, was, the Summer Solstice) -> Tuesday (2204ms) When is the summer solstice? the midsummer bonfires 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (the midsummer bonfires, are held outdoors on, Summer Solstice) -> the midsummer bonfires (2040ms) When is the summer solstice? Ashen divining rods 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Ashen divining rods, were cut on, Summer Solstice) -> Ashen divining rods (2040ms) When is the summer solstice? 9:28pm Today 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (9:28pm Today, is, the summer solstice) -> 9:28pm Today (2085ms) When is the summer solstice? any sundial 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (any sundial, is really only accurate at, Summer Solstice) -> any sundial (2205ms) When is the summer solstice? Summer Solstice June 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Summer Solstice June, is, the Summer Solstice) -> Summer Solstice June (2203ms) When is the summer solstice? June 20th or 21st 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (June 20th or 21st, is, the summer solstice) -> June 20th or 21st (2203ms) When is the summer solstice? garlic 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (garlic, was due on, Summer Solstice) -> garlic (2203ms) When is the summer solstice? June 25 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (June 25, is, the Summer Solstice Party) -> June 25 (2203ms) When is the summer solstice? Pagans 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Pagans, elsewhere will be celebrating, Summer Solstice) -> Pagans (2085ms) When is the summer solstice? Frankie Saturday 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Frankie Saturday, was, summer Solstice) -> Frankie Saturday (1932ms) When is the summer solstice? Santa Barbarans 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Santa Barbarans, will be celebrating, Summer Solstice) -> Santa Barbarans (1932ms) When is the summer solstice? The northernmost point 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (The northernmost point, is, the summer solstice) -> The northernmost point (2181ms) When is the summer solstice? July 22 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (July 22, was, the summer solstice) -> July 22 (2205ms) When is the summer solstice? Dec. 22 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Dec. 22, is, the summer solstice) -> Dec. 22 (2206ms) When is the summer solstice? meditation 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (meditation, will be on, SUMMER SOLSTICE) -> meditation (1932ms) When is the summer solstice? The Sun 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (The Sun, is, the Summer Solstice) -> The Sun (2040ms) When is the summer solstice? the climactic scene 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (the climactic scene, was based around, Summer Solstice) -> the climactic scene (2133ms) When is the summer solstice? 4:57 pm Today 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (4:57 pm Today, is, the summer solstice) -> 4:57 pm Today (2181ms) When is the summer solstice? The following day 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (The following day, was, the summer solstice) -> The following day (2205ms) When is the summer solstice? Alica Yesterday 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (Alica Yesterday, was, the summer solstice) -> Alica Yesterday (2085ms) When is the summer solstice? 10,000,000 Today 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (10,000,000 Today, is, the summer solstice) -> 10,000,000 Today (2181ms) When is the summer solstice? A fantastic thought 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (A fantastic thought, is news of, summer solstice) -> A fantastic thought (2205ms) When is the summer solstice? mistletoe 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (mistletoe, is sacred at, Summer Solstice) -> mistletoe (1843ms) When is the summer solstice? the most glitter and confetti 0.111111111111 When is the summer solstice? -> $x: ($x, be be, summer solstice) -> (the most glitter and confetti, is, Summer Solstice) -> the most glitter and confetti (1843ms) When is the summer solstice? the herb -0.0 When is the summer solstice? -> $x: ($x, be at, summer solstice) -> (the herb, was gathered at, both mid-summer and winter solstices) -> the herb (2206ms) When is the summer solstice? Mistletoe -0.0 When is the summer solstice? -> $x: ($x, be at, summer solstice) -> (Mistletoe, was gathered at, mid-summer and winter solstices) -> Mistletoe (2208ms) When is the summer solstice? winter -0.0 When is the summer solstice? -> $x: ($x, be at, summer solstice) -> (winter, are sown at, the Summer Solstice) -> winter (2206ms) When is the summer solstice? the Sun -0.0 When is the summer solstice? -> $x: ($x, be at, summer solstice) -> (the Sun, was directly overhead at, the summer solstice) -> the Sun (2206ms) When is the summer solstice? The Holly King -0.0 When is the summer solstice? -> $x: ($x, be at, summer solstice) -> (The Holly King, is the victor at, the Summer Solstice) -> The Holly King (2207ms) When is the summer solstice? the Lord -0.0 When is the summer solstice? -> $x: ($x, be at, summer solstice) -> (the Lord, is born at, the Summer Solstice) -> the Lord (2208ms) When is the summer solstice? the Baptist -0.0 When is the summer solstice? -> $x: ($x, be at, summer solstice) -> (the Baptist, was born at, the summer solstice) -> the Baptist (2206ms) When is the summer solstice? Oregon -0.0 When is the summer solstice? -> $x: (summer, be this year in, $x) -> (the summer, is so cold this year in, Oregon) -> Oregon (2207ms) When is the summer solstice? the journey -0.0 When is the summer solstice? -> $x: ($x, be at, summer solstice) -> (the journey, would be at, the summer solstice) -> the journey (2207ms) When is the summer solstice? John -0.0 When is the summer solstice? -> $x: ($x, be at, summer solstice) -> (John, would be born at, the Summer Solstice) -> John (2208ms) When is the summer solstice? heightened activity -0.0 When is the summer solstice? -> $x: ($x, be at, summer solstice) -> (heightened activity, were initiated at, the Summer Solstice) -> heightened activity (2207ms) When is the summer solstice? the creation -0.0 When is the summer solstice? -> $x: ($x, be at, summer solstice) -> (the creation, was at, the summer solstice) -> the creation (2207ms) When is the summer solstice? The lucky -0.0 When is the summer solstice? -> $x: ($x, be at, summer solstice) -> (The lucky, are born at, the Summer Solstice) -> The lucky (2206ms) When is the summer solstice? the highest point -0.0 When is the summer solstice? -> $x: ($x, be at, summer solstice) -> (the highest point, is at, the Summer Solstice) -> the highest point (2207ms) When is the summer solstice? Krittikas -0.0 When is the summer solstice? -> $x: ($x, be at, summer solstice) -> (Krittikas, were at, the Summer Solstice) -> Krittikas (2207ms) When is the summer solstice? photo -0.0 When is the summer solstice? -> $x: ($x, be at, summer solstice) -> (photo, was taken back at, the Summer Solstice Event) -> photo (2207ms) When is the summer solstice? Moscow -0.0 When is the summer solstice? -> $x: (summer, be this year in, $x) -> (The summer and autumn, were very nice this year in, Moscow) -> Moscow (2207ms) When is the summer solstice? mock battles -0.0 When is the summer solstice? -> $x: ($x, be at, summer solstice) -> (mock battles, are enacted at, the winter and summer solstices) -> mock battles (2206ms) When is the summer solstice? The start -0.0 When is the summer solstice? -> $x: ($x, be at, summer solstice) -> (The start, was at, a summer solstice) -> The start (2206ms) When is the summer solstice? the shadow -0.0 When is the summer solstice? -> $x: ($x, be at, summer solstice) -> (the shadow, is shortest at, the summer solstice) -> the shadow (2207ms) When is the summer solstice? The hot quality -0.0 When is the summer solstice? -> $x: ($x, be at, summer solstice) -> (The hot quality, is maximized at, the summer solstice) -> The hot quality (2206ms) When is the summer solstice? the days -0.888888888891 When is the summer solstice? -> $x: ($x, get, summer solstice) -> (the days, getting shorter after, the summer solstice) -> the days (2208ms) When is the summer solstice? the Pagan Police Group UK -1.0 When is the summer solstice? -> $x: ($x, form, summer solstice) -> (the Pagan Police Group UK, only formed at, the Summer Solstice) -> the Pagan Police Group UK (2208ms) When is the summer solstice? Suchi -1.0 When is the summer solstice? -> $x: ($x, form, summer solstice) -> (Suchi, formed, the summer solstice) -> Suchi (2208ms) When is the summer solstice? Kupala Night -1.0 When is the summer solstice? -> $x: ($x, event, summer solstice) -> (Kupala Night, Related Event, Summer solstice) -> Kupala Night (2208ms) Who is Paul Newman married to? Joanne Woodward 1.44444444444 Who is Paul Newman married to? -> $x: (paul newman, marry, $x) -> (Paul Newman, married, Joanne Woodward) -> Joanne Woodward (700ms) Who is Paul Newman married to? acclaimed actress Joanne Woodward 1.44444444444 Who is Paul Newman married to? -> $x: (paul newman, marry, $x) -> (Paul Newman, is married to, acclaimed actress Joanne Woodward) -> acclaimed actress Joanne Woodward (701ms) Who is Paul Newman married to? British author Roald Dahl 1.44444444444 Who is Paul Newman married to? -> $x: (paul newman, marry, $x) -> (Paul Newman, was married to, British author Roald Dahl) -> British author Roald Dahl (700ms) Who is Paul Newman married to? January 29 , 1958 1.44444444444 Who is Paul Newman married to? -> $x: (paul newman, marry, $x) -> (Paul Newman, married on, January 29 , 1958) -> January 29 , 1958 (700ms) Who is Paul Newman married to? 50 years 1.44444444444 Who is Paul Newman married to? -> $x: (paul newman, marry, $x) -> (Paul Newman, was married for, 50 years) -> 50 years (701ms) Who is Paul Newman married to? Westport 0.555555555555 Who is Paul Newman married to? -> $x: (paul newman, live in, $x) -> (Paul Newman, lived his private life in, Westport) -> Westport (700ms) Who is Paul Newman married to? Woodward -0.55555555555 Who is Paul Newman married to? -> $x: ($x, marry, paul newman) -> (Woodward, is married to, Paul Newman) -> Woodward (729ms) Who is Paul Newman married to? ty murray -0.55555555555 Who is Paul Newman married to? -> $x: ($x, marry, paul newman) -> (ty murray, marry, katie holmes pixie paul newman) -> ty murray (729ms) Where did the Hindenburg disaster occur? May -0.0 Where did the Hindenburg disaster occur? -> $x: (hindenburg disaster, occur, $x) -> (The Hindenburg Disaster, occurred in, May) -> May (684ms) When was the telegraph invented? Woods 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Woods, also invented, the Multiplex Telegraph) -> Woods (1203ms) When was the telegraph invented? Claud Chappe 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Claud Chappe, invented, the optical telegraph) -> Claud Chappe (1236ms) When was the telegraph invented? Cornell University 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Cornell University, is said to have invented, the telegraph pole) -> Cornell University (843ms) When was the telegraph invented? every new medium 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (every new medium, ever invented from, the telegraph right) -> every new medium (1218ms) When was the telegraph invented? the art 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (the art, invented, the hydraulic telegraph) -> the art (2361ms) When was the telegraph invented? the guy 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (the guy, invented, the telegraph) -> the guy (1203ms) When was the telegraph invented? Samuel Morse 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Samuel Morse, invented, the telegraph) -> Samuel Morse (2361ms) When was the telegraph invented? The guy 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (The guy, invented, the telegraph) -> The guy (1236ms) When was the telegraph invented? Italian Guglielmo Marconi 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Italian Guglielmo Marconi, invented, the wireless telegraph) -> Italian Guglielmo Marconi (1045ms) When was the telegraph invented? nature 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (nature, invented, a chemical telegraph) -> nature (1236ms) When was the telegraph invented? Sir Charles Wheatstone 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Sir Charles Wheatstone, co-invented, the telegraph) -> Sir Charles Wheatstone (1156ms) When was the telegraph invented? Edison 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Edison, invented, the quadruplex telegraph) -> Edison (1689ms) When was the telegraph invented? the American 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (the American, invented, the telegraph) -> the American (1156ms) When was the telegraph invented? Karl Friedrich Gauss 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Karl Friedrich Gauss, co-invented, the telegraph) -> Karl Friedrich Gauss (1080ms) When was the telegraph invented? Joseph Henry 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Joseph Henry, invented, the telegraph) -> Joseph Henry (2360ms) When was the telegraph invented? The manager 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (The manager, has invented a new system of, telegraph-signals) -> The manager (1471ms) When was the telegraph invented? Granville T. Woods 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Granville T. Woods, invented, the multiplex telegraph) -> Granville T. Woods (1080ms) When was the telegraph invented? the artist 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (the artist, also invented, the electric telegraph) -> the artist (1218ms) When was the telegraph invented? Morse 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Morse, invents, his telegraph) -> Morse (2361ms) When was the telegraph invented? Samuel F.B. Morse 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Samuel F.B. Morse, invented, the telegraph) -> Samuel F.B. Morse (1080ms) When was the telegraph invented? the who 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (the who, invented, the first telegraph) -> the who (1471ms) When was the telegraph invented? a handy resource 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (a handy resource, was invented during, each decade--telegraph) -> a handy resource (1471ms) When was the telegraph invented? the speed 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (the speed, invented, the telegraph) -> the speed (1203ms) When was the telegraph invented? George Phelps 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (George Phelps, invented, his telegraph instruments) -> George Phelps (1236ms) When was the telegraph invented? Marconi 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Marconi, invented, the telegraph) -> Marconi (1689ms) When was the telegraph invented? 1831 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (1831, had invented, a demonstration telegraph) -> 1831 (1156ms) When was the telegraph invented? Mr. Woods 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Mr. Woods, invented, the telegraph) -> Mr. Woods (843ms) When was the telegraph invented? nativist 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (nativist, invented, the telegraph) -> nativist (1156ms) When was the telegraph invented? Chicago 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Chicago, had also invented, an improved telegraph receiver) -> Chicago (1116ms) When was the telegraph invented? Samuel F. B. Morse 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Samuel F. B. Morse, invented, the first practical telegraph) -> Samuel F. B. Morse (1689ms) When was the telegraph invented? Steinhill 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Steinhill, had invented, the telegraph) -> Steinhill (1203ms) When was the telegraph invented? the telegraph 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (the telegraph, was invented until, the last telegraph) -> the telegraph (1116ms) When was the telegraph invented? a French engineer 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (a French engineer, invented, the Baudot telegraph code) -> a French engineer (1045ms) When was the telegraph invented? physicist 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (physicist, invented, the wireless telegraph) -> physicist (1045ms) When was the telegraph invented? the portrait painter 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (the portrait painter, invented, the first telegraph) -> the portrait painter (1079ms) When was the telegraph invented? Samuel Finley Breese Morse 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Samuel Finley Breese Morse, invented, the telegraph) -> Samuel Finley Breese Morse (1689ms) When was the telegraph invented? Elisha Gray 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Elisha Gray, invented, the Musical Telegraph) -> Elisha Gray (2361ms) When was the telegraph invented? Guglielmo Marconi 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Guglielmo Marconi, invented, the wireless telegraph) -> Guglielmo Marconi (1045ms) When was the telegraph invented? Joesph Henry 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Joesph Henry, invented, the telegraph) -> Joesph Henry (1236ms) When was the telegraph invented? Wheatstone 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Wheatstone, had invented, the telegraph) -> Wheatstone (1218ms) When was the telegraph invented? a Scottish watchmaker 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (a Scottish watchmaker, invented, the chemical telegraph) -> a Scottish watchmaker (1080ms) When was the telegraph invented? Samual Morse 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Samual Morse, invented, the telegraph) -> Samual Morse (1045ms) When was the telegraph invented? to 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (to, invented, the telegraph) -> to (1236ms) When was the telegraph invented? Henry 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Henry, had invented, the telegraph) -> Henry (1116ms) When was the telegraph invented? Bell 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (Bell, was trying to invent, a talking telegraph) -> Bell (1471ms) When was the telegraph invented? 1832 Samuel Morse 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (1832 Samuel Morse, invented, the telegraph) -> 1832 Samuel Morse (1218ms) When was the telegraph invented? A prominent artist and nativist 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (A prominent artist and nativist, invented, the telegraph) -> A prominent artist and nativist (1471ms) When was the telegraph invented? the current core curriculum 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (the current core curriculum, invented, the telegraph) -> the current core curriculum (1689ms) When was the telegraph invented? the American painter Morse 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (the American painter Morse, invented, the electric telegraph) -> the American painter Morse (1156ms) When was the telegraph invented? 1837 Samuel Morse 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (1837 Samuel Morse, invented, the electric telegraph) -> 1837 Samuel Morse (1689ms) When was the telegraph invented? a thousand men 1.8888888888830002 When was the telegraph invented? -> $x: ($x, invent, telegraph) -> (a thousand men, to invent, a telegraph) -> a thousand men (1689ms) When was the telegraph invented? The Victorian Internet 1.333333333329 When was the telegraph invented? -> $x: ($x, be history of, telegraph) -> (The Victorian Internet, is a history of, the telegraph) -> The Victorian Internet (2361ms) When was the telegraph invented? the most important 1.333333333329 When was the telegraph invented? -> $x: ($x, be history of, telegraph) -> (the most important, is the history of, Federal Telegraph) -> the most important (2360ms) When was the telegraph invented? 1793 and 1794 1.333333333329 When was the telegraph invented? -> $x: ($x, be history of, telegraph) -> (1793 and 1794, is a loving history of, the Chappe telegraph) -> 1793 and 1794 (2361ms) When was the telegraph invented? first 1.22222222222 When was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (the telegraph, was invented, first) -> first (2411ms) When was the telegraph invented? the nineteenth century 1.22222222222 When was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (the telegraph, was invented in, the nineteenth century) -> the nineteenth century (2401ms) When was the telegraph invented? long 1.22222222222 When was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (the telegraph, was invented, long) -> long (2397ms) When was the telegraph invented? more human interfaces 1.22222222222 When was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (telegraph machines, were invented with, more human interfaces) -> more human interfaces (2406ms) When was the telegraph invented? 1837 1.22222222222 When was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (The telegraph, was invented in, 1837) -> 1837 (2401ms) When was the telegraph invented? the last telegraph 1.22222222222 When was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (the telegraph, was invented until, the last telegraph) -> the last telegraph (2406ms) When was the telegraph invented? 15 years 1.22222222222 When was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (the telegraph, had only been invented, 15 years) -> 15 years (2397ms) When was the telegraph invented? England 1.22222222222 When was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (The electric telegraph, was originally invented in, England) -> England (2411ms) When was the telegraph invented? 1861 Gold 1.22222222222 When was the telegraph invented? -> $x: ($x, discover, telegraph) -> (1861 Gold, is discovered at, Telegraph Creek) -> 1861 Gold (2411ms) When was the telegraph invented? Herbalife 1.22222222222 When was the telegraph invented? -> $x: ($x, discover, telegraph) -> (Herbalife, can be discovered on, telegraph poles) -> Herbalife (2401ms) When was the telegraph invented? a couple 1.22222222222 When was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (Samuel Morse?s telegraph system, had been invented, a couple) -> a couple (2397ms) When was the telegraph invented? 1844 1.22222222222 When was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (The telegraph key, was invented in, 1844) -> 1844 (2406ms) When was the telegraph invented? the laptop 1.22222222222 When was the telegraph invented? -> $x: ($x, create, telegraph) -> (the laptop, creates blurry clouds of, telegraph-like coding) -> the laptop (2411ms) When was the telegraph invented? the time 1.22222222222 When was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (the telegraph, was invented, the time) -> the time (2406ms) When was the telegraph invented? France 1.22222222222 When was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (The optical telegraph, was invented in, France) -> France (2397ms) When was the telegraph invented? the 1830s 1.22222222222 When was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (the telegraph, was invented in, the 1830s) -> the 1830s (2401ms) When was the telegraph invented? America 1.22222222222 When was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (a telegraph, is invented in, America) -> America (2397ms) When was the telegraph invented? Alfred Vail 1.22222222222 When was the telegraph invented? -> $x: ($x, create, telegraph) -> (Alfred Vail, created, the Morse telegraph key) -> Alfred Vail (2401ms) When was the telegraph invented? 1794 1.22222222222 When was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (The OG telegraph system, was invented in, 1794) -> 1794 (2401ms) When was the telegraph invented? A simple job 1.22222222222 When was the telegraph invented? -> $x: ($x, create, telegraph) -> (A simple job, create, a telegraph) -> A simple job (2406ms) When was the telegraph invented? site 1.22222222222 When was the telegraph invented? -> $x: ($x, create, telegraph) -> (site, was created right into, a telegraph) -> site (2397ms) When was the telegraph invented? William Marconi 1.22222222222 When was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (The wireless telegraph, was invented by, William Marconi) -> William Marconi (2401ms) When was the telegraph invented? the eighteen hundreds people 1.22222222222 When was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (the telegraph, was invented in, the eighteen hundreds people) -> the eighteen hundreds people (2401ms) When was the telegraph invented? thirty years 1.22222222222 When was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (The telegraph, had been invented, thirty years) -> thirty years (2406ms) When was the telegraph invented? Claude Chappe 1.22222222222 When was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (The non-electric telegraph, was invented by, Claude Chappe) -> Claude Chappe (2406ms) When was the telegraph invented? Iraqi intelligence documents 1.22222222222 When was the telegraph invented? -> $x: ($x, discover, telegraph) -> (Iraqi intelligence documents, discovered by, The Telegraph) -> Iraqi intelligence documents (2397ms) When was the telegraph invented? students 1.22222222222 When was the telegraph invented? -> $x: ($x, create, telegraph) -> (students, can create, their own telegraph system) -> students (2406ms) When was the telegraph invented? 1832 1.22222222222 When was the telegraph invented? -> $x: (telegraph, be invent, $x) -> (The first electromagnetic telegraph, was invented in, 1832) -> 1832 (2406ms) When was the telegraph invented? the four suites 1.22222222222 When was the telegraph invented? -> $x: ($x, create, telegraph) -> (the four suites, are created from, old ironwood telegraph poles) -> the four suites (2401ms) When was the telegraph invented? von Siemens 1.22222222222 When was the telegraph invented? -> $x: ($x, create, telegraph) -> (von Siemens, created, the first telegraph) -> von Siemens (2410ms) When was the telegraph invented? Paris 0.888888888886 When was the telegraph invented? -> $x: (telegraph, be make in, $x) -> (Dyna telegraph instruments, were made in, Paris) -> Paris (2419ms) When was the telegraph invented? Williams 0.888888888886 When was the telegraph invented? -> $x: (telegraph, be make in, $x) -> (the first fire alarm telegraph equipment, was made in, Williams) -> Williams (2419ms) When was the telegraph invented? Issy 0.888888888886 When was the telegraph invented? -> $x: (telegraph, be make in, $x) -> (Jardillier telegraph instruments, were made in, Issy) -> Issy (2419ms) When was the telegraph invented? a series 0.5555555555530001 When was the telegraph invented? -> $x: (telegraph, be create in, $x) -> (Telegraph.co.uk Mr Marsh, will be created in, a series) -> a series (2419ms) When was the telegraph invented? the Thaindia News report -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (the Telegraph, does add to, the Thaindia News report) -> the Thaindia News report (2450ms) When was the telegraph invented? standards -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (the Sunday Telegraph, did much to raise, standards) -> standards (2451ms) When was the telegraph invented? Catholic Telegraph -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (Catholic Telegraph, can be found on Wikipedia at, http://en.wikipedia.org/wiki/The%20Catholic%20Telegraph) -> Catholic Telegraph (2453ms) When was the telegraph invented? Peterborough Evening Telegraph -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (Peterborough Evening Telegraph, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Peterborough%20Evening%20Telegraph) -> Peterborough Evening Telegraph (2449ms) When was the telegraph invented? a major write-up and interview -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, recently did, a major write-up and interview) -> a major write-up and interview (2453ms) When was the telegraph invented? a short telephone interview -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, did, a short telephone interview) -> a short telephone interview (2449ms) When was the telegraph invented? place -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (Essences telegraph testing, may be done in, place) -> place (2447ms) When was the telegraph invented? Facebook -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, do differently in, Facebook) -> Facebook (2446ms) When was the telegraph invented? the depot Ben -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (the depot Ben, found, a telegraph operator) -> the depot Ben (2453ms) When was the telegraph invented? SuDoku Assistant -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (SuDoku Assistant, found, The Daily Telegraph) -> SuDoku Assistant (2423ms) When was the telegraph invented? The article -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (The article, can be found in, The Daily Telegraph) -> The article (2453ms) When was the telegraph invented? The Independent and others -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, did, The Independent and others) -> The Independent and others (2451ms) When was the telegraph invented? a month -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (the Telegraph, has done this in, a month) -> a month (2441ms) When was the telegraph invented? Sheffield Telegraph -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (Sheffield Telegraph, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sheffield%20Telegraph) -> Sheffield Telegraph (2427ms) When was the telegraph invented? Granville Woods -0.444444444444 When was the telegraph invented? -> $x: ($x, develop, telegraph) -> (Granville Woods, developed, the railroad telegraph) -> Granville Woods (2434ms) When was the telegraph invented? a little ?extra editing ? -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (the St . John Telegraph, did, a little ?extra editing ?) -> a little ?extra editing ? (2427ms) When was the telegraph invented? 78-year-old Rich Busa -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Nashua Telegraph, did a profile on, 78-year-old Rich Busa) -> 78-year-old Rich Busa (2427ms) When was the telegraph invented? witches -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (Yorkshire Morning Telegraph, do, witches) -> witches (2454ms) When was the telegraph invented? an amazing competition -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, are doing, an amazing competition) -> an amazing competition (2451ms) When was the telegraph invented? Van Horne -0.444444444444 When was the telegraph invented? -> $x: ($x, develop, telegraph) -> (Van Horne, developed, a telegraph service) -> Van Horne (2436ms) When was the telegraph invented? a full investigative story -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (Telegraph, should do, a full investigative story) -> a full investigative story (2446ms) When was the telegraph invented? the data -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (the Telegraph, did to obtain, the data) -> the data (2427ms) When was the telegraph invented? more harm than good -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, may do, more harm than good) -> more harm than good (2446ms) When was the telegraph invented? William Cooke -0.444444444444 When was the telegraph invented? -> $x: ($x, develop, telegraph) -> (William Cooke, developed, the electric telegraph) -> William Cooke (2444ms) When was the telegraph invented? the story -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (the story, can be found in, the UK Telegraph) -> the story (2451ms) When was the telegraph invented? the Flies -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (the Flies, can be found in, the London Telegraph) -> the Flies (2423ms) When was the telegraph invented? the same -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, do, the same) -> the same (2439ms) When was the telegraph invented? trial and error -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (early telegraph systems, was done by, trial and error) -> trial and error (2436ms) When was the telegraph invented? horseback -0.444444444444 When was the telegraph invented? -> $x: (telegraph, start on, $x) -> (the Houston Daily Telegraph &, started out on, horseback) -> horseback (2449ms) When was the telegraph invented? Congress -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (Congress, found, the telegraph) -> Congress (2431ms) When was the telegraph invented? the pyramid -0.444444444444 When was the telegraph invented? -> $x: (telegraph, invent, $x) -> (telegraph, invented, the pyramid) -> the pyramid (2451ms) When was the telegraph invented? the Los Angeles Times -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, so did, the Los Angeles Times) -> the Los Angeles Times (2453ms) When was the telegraph invented? the top two web search spots -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, did though take, the top two web search spots) -> the top two web search spots (2451ms) When was the telegraph invented? the past -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (the past, can be found at, the Telegraph Station) -> the past (2450ms) When was the telegraph invented? Durango Telegraph -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (Durango Telegraph, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Durango%20Telegraph) -> Durango Telegraph (2427ms) When was the telegraph invented? one important hit -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (the Telegraph article, did get, one important hit) -> one important hit (2423ms) When was the telegraph invented? several countries -0.444444444444 When was the telegraph invented? -> $x: ($x, develop, telegraph) -> (several countries, developed, workable electric telegraphs) -> several countries (2444ms) When was the telegraph invented? Boston -0.444444444444 When was the telegraph invented? -> $x: ($x, develop, telegraph) -> (Boston, developed, the first telegraph based alarm system) -> Boston (2434ms) When was the telegraph invented? Josh Dzieza -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, so does, Josh Dzieza) -> Josh Dzieza (2423ms) When was the telegraph invented? Tony Blair -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (the Telegraph, Did, Tony Blair) -> Tony Blair (2446ms) When was the telegraph invented? different colours -0.444444444444 When was the telegraph invented? -> $x: (telegraph, come in in, $x) -> (The Daily Telegraph THEY, might come in, different colours) -> different colours (2426ms) When was the telegraph invented? comparative degrees of atheism -0.444444444444 When was the telegraph invented? -> $x: (telegraph, invent, $x) -> (Telegraph, invents, comparative degrees of atheism) -> comparative degrees of atheism (2449ms) When was the telegraph invented? line -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (telegraphs, did come back on, line) -> line (2444ms) When was the telegraph invented? a while -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (a while, eventually found, the disused submarine telegraph cable) -> a while (2444ms) When was the telegraph invented? greenock telegraph -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (greenock telegraph, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Greenock%20Telegraph) -> greenock telegraph (2446ms) When was the telegraph invented? the issue -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (the issue, can be found in, the Telegraph) -> the issue (2434ms) When was the telegraph invented? London -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (London, found coverage in, the Telegraph) -> London (2436ms) When was the telegraph invented? a related story -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, did, a related story) -> a related story (2451ms) When was the telegraph invented? Porthcurno Telegraph Museum -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (Porthcurno Telegraph Museum, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Porthcurno%20Telegraph%20Museum) -> Porthcurno Telegraph Museum (2447ms) When was the telegraph invented? fashion -0.444444444444 When was the telegraph invented? -> $x: (telegraph, come in in, $x) -> (the Telegraph newspaper, were coming back in, fashion) -> fashion (2451ms) When was the telegraph invented? Camellia Camellia -0.444444444444 When was the telegraph invented? -> $x: ($x, develop, telegraph) -> (Camellia Camellia, was jointly developed by, Nippon Telegraph) -> Camellia Camellia (2450ms) When was the telegraph invented? Frenchman Claude Chappe -0.444444444444 When was the telegraph invented? -> $x: ($x, develop, telegraph) -> (Frenchman Claude Chappe, developed, the optical telegraph) -> Frenchman Claude Chappe (2427ms) When was the telegraph invented? a little better -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, does, a little better) -> a little better (2427ms) When was the telegraph invented? Mr Holland?s case -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (Mr Holland?s case, can be found at, The Daily Telegraph) -> Mr Holland?s case (2436ms) When was the telegraph invented? More details -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (More details, can be found in, The Telegraph) -> More details (2423ms) When was the telegraph invented? yesterday -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Daily Telegraph, did, yesterday) -> yesterday (2434ms) When was the telegraph invented? the form -0.444444444444 When was the telegraph invented? -> $x: (telegraph, come in in, $x) -> (This telegraph, invariably comes in, the form) -> the form (2441ms) When was the telegraph invented? a evolutionary anthropologist -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (a evolutionary anthropologist, found, Daily Telegraph) -> a evolutionary anthropologist (2450ms) When was the telegraph invented? good comedy -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (the Telegraph?s article ? Science, does n?t make, good comedy) -> good comedy (2454ms) When was the telegraph invented? a telegram -0.444444444444 When was the telegraph invented? -> $x: (telegraph, come in in, $x) -> (a telegraph-peon, came in with, a telegram) -> a telegram (2431ms) When was the telegraph invented? Seve Ballesteros -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (Seve Ballesteros, find, Telegraph Sports European Golfer) -> Seve Ballesteros (2453ms) When was the telegraph invented? the best obits -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, always does, the best obits) -> the best obits (2423ms) When was the telegraph invented? the Commission -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (the Commission, found for, the Telegraph) -> the Commission (2447ms) When was the telegraph invented? The Pond -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (the Telegraph, surely does so across, The Pond) -> The Pond (2427ms) When was the telegraph invented? Grimsby Evening Telegraph -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (Grimsby Evening Telegraph, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Grimsby%20Telegraph) -> Grimsby Evening Telegraph (2431ms) When was the telegraph invented? railroaders -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (a telegraph set, did early, railroaders) -> railroaders (2454ms) When was the telegraph invented? a landscape -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (telegraph poles and wires, do in, a landscape) -> a landscape (2436ms) When was the telegraph invented? Privacy Policy -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (Privacy Policy, can be found at, www.telegraph.co.uk/subscriber) -> Privacy Policy (2434ms) When was the telegraph invented? prospectors -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (prospectors, found gold on, Telegraph Creek) -> prospectors (2450ms) When was the telegraph invented? Jewish Telegraph -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (Jewish Telegraph, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Jewish%20Telegraph) -> Jewish Telegraph (2441ms) When was the telegraph invented? VC. Officer -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (VC. Officer, found subject staggering along, Telegraph Road) -> VC. Officer (2431ms) When was the telegraph invented? affairs -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (the Telegraph, is doing a series on, affairs) -> affairs (2441ms) When was the telegraph invented? the River Severn -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (the River Severn, found their way into, the Telegraph Weekend) -> the River Severn (2436ms) When was the telegraph invented? Europe -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (the Telegraph, does little else on, Europe) -> Europe (2439ms) When was the telegraph invented? Edge -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, did n?t think much of, Edge) -> Edge (2436ms) When was the telegraph invented? screw -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (screw, found on, traditional telegraph) -> screw (2439ms) When was the telegraph invented? the 1830?s Samuel Morse -0.444444444444 When was the telegraph invented? -> $x: ($x, develop, telegraph) -> (the 1830?s Samuel Morse, developed, the telegraph) -> the 1830?s Samuel Morse (2441ms) When was the telegraph invented? a great job -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Daily Telegraph, did, a great job) -> a great job (2431ms) When was the telegraph invented? Ken Livingstone -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (Telegraph Hill, Well done to, Ken Livingstone) -> Ken Livingstone (2451ms) When was the telegraph invented? an article Tom -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (an article Tom, found over at, The Telegraph) -> an article Tom (2441ms) When was the telegraph invented? The interview -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (The interview, can be found on, the Telegraph website) -> The interview (2446ms) When was the telegraph invented? worms and spiders -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (worms and spiders, find on, Telegraph Hill) -> worms and spiders (2431ms) When was the telegraph invented? a guaranteed rental income -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (the Telegraph, Does the idea of, a guaranteed rental income) -> a guaranteed rental income (2451ms) When was the telegraph invented? a great article -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, did, a great article) -> a great article (2427ms) When was the telegraph invented? Barrett -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (Barrett, finds his way to, the Telegraph Room) -> Barrett (2441ms) When was the telegraph invented? each morning -0.444444444444 When was the telegraph invented? -> $x: (telegraph, come in in, $x) -> (telegraph reports, came in, each morning) -> each morning (2453ms) When was the telegraph invented? Britain -0.444444444444 When was the telegraph invented? -> $x: (telegraph, come in in, $x) -> (a Telegraph reporter, comes out this week in, Britain) -> Britain (2439ms) When was the telegraph invented? 1861 -0.444444444444 When was the telegraph invented? -> $x: (telegraph, begin in, $x) -> (the transcontinental telegraph, began operating in, 1861) -> 1861 (2439ms) When was the telegraph invented? telegraph records -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (telegraph records, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Telegraph%20Records) -> telegraph records (2447ms) When was the telegraph invented? Charles Wheatstone -0.444444444444 When was the telegraph invented? -> $x: ($x, develop, telegraph) -> (Charles Wheatstone, was developing, the telegraph) -> Charles Wheatstone (2447ms) When was the telegraph invented? Telegraph Creek Airport -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (Telegraph Creek Airport, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Telegraph%20Creek%20Airport) -> Telegraph Creek Airport (2419ms) When was the telegraph invented? the plank roads -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The telegraph lines, so did, the plank roads) -> the plank roads (2439ms) When was the telegraph invented? Shia -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, did an amazing interview with, Shia) -> Shia (2447ms) When was the telegraph invented? Connaught Telegraph -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (Connaught Telegraph, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Connaught%20Telegraph) -> Connaught Telegraph (2431ms) When was the telegraph invented? the nuclear/ET issue -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (the nuclear/ET issue, can be found below, the Telegraph article) -> the nuclear/ET issue (2431ms) When was the telegraph invented? a leaflet -0.444444444444 When was the telegraph invented? -> $x: ($x, distribute, telegraph) -> (a leaflet, had been distributed by, the Telegraph Hill Society) -> a leaflet (2449ms) When was the telegraph invented? Telegraph -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (Telegraph, Find a job with, Telegraph Jobs) -> Telegraph (2454ms) When was the telegraph invented? a profile -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Nashua Telegraph, did, a profile) -> a profile (2454ms) When was the telegraph invented? 1809 Samuel Soemmering -0.444444444444 When was the telegraph invented? -> $x: ($x, develop, telegraph) -> (1809 Samuel Soemmering, developed, the first telegraph) -> 1809 Samuel Soemmering (2444ms) When was the telegraph invented? the Triode -0.444444444444 When was the telegraph invented? -> $x: (telegraph, invent, $x) -> (Federal Telegraph, would invent, the Triode) -> the Triode (2454ms) When was the telegraph invented? men -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (TELEGRAPH, Do, men) -> men (2423ms) When was the telegraph invented? embarrassing innumeracy -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph article, does so with, embarrassing innumeracy) -> embarrassing innumeracy (2436ms) When was the telegraph invented? a Best Cult Books list -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph?s, done, a Best Cult Books list) -> a Best Cult Books list (2453ms) When was the telegraph invented? Sam Morse -0.444444444444 When was the telegraph invented? -> $x: ($x, develop, telegraph) -> (Sam Morse, developed, the electrical telegraph) -> Sam Morse (2434ms) When was the telegraph invented? The security innovator -0.444444444444 When was the telegraph invented? -> $x: ($x, develop, telegraph) -> (The security innovator, developed from, a tiny telegraph company) -> The security innovator (2451ms) When was the telegraph invented? derby evening telegraph -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (derby evening telegraph, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Derby%20Telegraph) -> derby evening telegraph (2449ms) When was the telegraph invented? 16 years -0.444444444444 When was the telegraph invented? -> $x: (telegraph, invent, $x) -> (the telegraph, invented, 16 years) -> 16 years (2436ms) When was the telegraph invented? I?ve -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (I?ve, found this piece from, the Daily Telegraph) -> I?ve (2434ms) When was the telegraph invented? the Times -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, does, the Times) -> the Times (2446ms) When was the telegraph invented? Liz Sly -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (Liz Sly, was found in, the Sunday Telegraph) -> Liz Sly (2454ms) When was the telegraph invented? the UK, -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (the Daily Telegraph, have done in, the UK,) -> the UK, (2447ms) When was the telegraph invented? the national marketplace -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (the telephone and telegraph, did for, the national marketplace) -> the national marketplace (2449ms) When was the telegraph invented? Switzerland -0.444444444444 When was the telegraph invented? -> $x: (telegraph, begin in, $x) -> (The first telegraph network, begins operating in, Switzerland) -> Switzerland (2441ms) When was the telegraph invented? Ireland -0.444444444444 When was the telegraph invented? -> $x: (telegraph, begin in, $x) -> (The Belfast Telegraph, began publication in, Ireland) -> Ireland (2431ms) When was the telegraph invented? 1868 -0.444444444444 When was the telegraph invented? -> $x: (telegraph, come in in, $x) -> (His first telegraph related patent, came in, 1868) -> 1868 (2444ms) When was the telegraph invented? the story--IPS cells -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (the Telegraph, did mention this in, the story--IPS cells) -> the story--IPS cells (2447ms) When was the telegraph invented? an unclassified cable -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (an unclassified cable, found, Colombo Telegraph) -> an unclassified cable (2436ms) When was the telegraph invented? public research funds -0.444444444444 When was the telegraph invented? -> $x: (telegraph, invent, $x) -> (Telegraph, invented with, public research funds) -> public research funds (2439ms) When was the telegraph invented? C. Wheatstone -0.444444444444 When was the telegraph invented? -> $x: ($x, develop, telegraph) -> (C. Wheatstone, develop, the first electric telegraph) -> C. Wheatstone (2450ms) When was the telegraph invented? The European -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (The European, is surprised to find, the telegraph) -> The European (2444ms) When was the telegraph invented? advertising campaigns -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (Telegraph, has done, advertising campaigns) -> advertising campaigns (2431ms) When was the telegraph invented? ten -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (the telegraph, did in, ten) -> ten (2453ms) When was the telegraph invented? a double-take -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Daily Telegraph FLEMINGTON racegoers, did, a double-take) -> a double-take (2434ms) When was the telegraph invented? Carr -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (the telegraph, as did, Carr) -> Carr (2444ms) When was the telegraph invented? 4 stores -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (4 stores, find, a telegraph office) -> 4 stores (2427ms) When was the telegraph invented? Unto Others J. -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph 02/13/10, Do, Unto Others J.) -> Unto Others J. (2434ms) When was the telegraph invented? the Frenchman Claude Chappe -0.444444444444 When was the telegraph invented? -> $x: ($x, develop, telegraph) -> (the Frenchman Claude Chappe, developed, the optical telegraph) -> the Frenchman Claude Chappe (2449ms) When was the telegraph invented? 1974 -0.444444444444 When was the telegraph invented? -> $x: (telegraph, begin in, $x) -> (the American Telephone and Telegraph Company, began in, 1974) -> 1974 (2439ms) When was the telegraph invented? the first wave -0.444444444444 When was the telegraph invented? -> $x: (telegraph, come in in, $x) -> (the telegraph, came in, the first wave) -> the first wave (2451ms) When was the telegraph invented? a nice job -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> ('s Telegraph, has done, a nice job) -> a nice job (2444ms) When was the telegraph invented? 1872 -0.444444444444 When was the telegraph invented? -> $x: (telegraph, begin in, $x) -> (the Overland Telegraph, began operations in, 1872) -> 1872 (2449ms) When was the telegraph invented? the SMH -0.444444444444 When was the telegraph invented? -> $x: (telegraph, start on, $x) -> (The Daily Telegraph, started on, the SMH) -> the SMH (2450ms) When was the telegraph invented? so -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, did, so) -> so (2454ms) When was the telegraph invented? Alexander Bain -0.444444444444 When was the telegraph invented? -> $x: (telegraph, invent, $x) -> (the chemical telegraph, invented by, Alexander Bain) -> Alexander Bain (2447ms) When was the telegraph invented? special -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, doing, special) -> special (2439ms) When was the telegraph invented? the newspaper industry -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (?The telegraph, did indeed reshape, the newspaper industry) -> the newspaper industry (2450ms) When was the telegraph invented? the nicknames -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, has done a survey on, the nicknames) -> the nicknames (2423ms) When was the telegraph invented? a little math -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, does, a little math) -> a little math (2449ms) When was the telegraph invented? call -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Daily Telegraph, did, call) -> call (2423ms) When was the telegraph invented? The first person -0.444444444444 When was the telegraph invented? -> $x: ($x, develop, telegraph) -> (The first person, developed, a telegraph) -> The first person (2446ms) When was the telegraph invented? the work -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (the Telegraph, were perfectly capable of doing, the work) -> the work (2423ms) When was the telegraph invented? You?ll -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (You?ll, find more details on, the Telegraph link) -> You?ll (2451ms) When was the telegraph invented? Alexander Graham Bell -0.444444444444 When was the telegraph invented? -> $x: (telephone and telegraph, do, $x) -> (the telegraph and telephone ?, did, Alexander Graham Bell) -> Alexander Graham Bell (2446ms) When was the telegraph invented? September -0.444444444444 When was the telegraph invented? -> $x: (telegraph, come in in, $x) -> (Telegraph Avenue, comes out in, September) -> September (2423ms) When was the telegraph invented? the Palestine Chronicle -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Palestine Telegraph, as did, the Palestine Chronicle) -> the Palestine Chronicle (2431ms) When was the telegraph invented? radium -0.444444444444 When was the telegraph invented? -> $x: (telegraph, invent, $x) -> (the telegraph operator, could easily have invented, radium) -> radium (2447ms) When was the telegraph invented? a feature -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, has done, a feature) -> a feature (2423ms) When was the telegraph invented? Telegraph Peak -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (Telegraph Peak, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Telegraph%20Peak%20(California)) -> Telegraph Peak (2434ms) When was the telegraph invented? a boat -0.444444444444 When was the telegraph invented? -> $x: (telegraph, come in in, $x) -> (The telegraph-boy, would have to come in, a boat) -> a boat (2439ms) When was the telegraph invented? the newspaper era -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (the telegraph, did n?t kill, the newspaper era) -> the newspaper era (2446ms) When was the telegraph invented? Oliver Heaviside -0.444444444444 When was the telegraph invented? -> $x: ($x, develop, telegraph) -> (Oliver Heaviside, developed, the Telegraph Equation) -> Oliver Heaviside (2453ms) When was the telegraph invented? handy -0.444444444444 When was the telegraph invented? -> $x: (telegraph, come in in, $x) -> (the fallen telegraph poles, come in, handy) -> handy (2450ms) When was the telegraph invented? an industry study -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Gazette Telegraph, did, an industry study) -> an industry study (2446ms) When was the telegraph invented? Darwin -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (Darwin, found gold while, digging holes for telegraph poles) -> Darwin (2449ms) When was the telegraph invented? the Blanket -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (the Belfast Telegraph as, did, the Blanket) -> the Blanket (2450ms) When was the telegraph invented? 1923 -0.444444444444 When was the telegraph invented? -> $x: (telegraph, begin in, $x) -> ('s first telegraph link, began operation late in, 1923) -> 1923 (2441ms) When was the telegraph invented? the banksters bidding -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (the telegraph, does, the banksters bidding) -> the banksters bidding (2454ms) When was the telegraph invented? the science -0.444444444444 When was the telegraph invented? -> $x: ($x, develop, telegraph) -> (the science, needed to develop, a telegraph system) -> the science (2450ms) When was the telegraph invented? the coalition -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, does like, the coalition) -> the coalition (2427ms) When was the telegraph invented? behaviour -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (behaviour, now found off, Telegraph Cove) -> behaviour (2444ms) When was the telegraph invented? an editorial -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (an editorial, found at, the Telegraph) -> an editorial (2431ms) When was the telegraph invented? a cod machine -0.444444444444 When was the telegraph invented? -> $x: (telegraph, invent, $x) -> (Daily Telegraph satirist, invented, a cod machine) -> a cod machine (2444ms) When was the telegraph invented? Pay phones -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (Pay phones, are found at, post offices and telegraphs) -> Pay phones (2427ms) When was the telegraph invented? the parrots -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (the parrots, apparently found, the Telegraph Hill neighborhood) -> the parrots (2453ms) When was the telegraph invented? TwinVQ Audio File -0.444444444444 When was the telegraph invented? -> $x: ($x, develop, telegraph) -> (TwinVQ Audio File, is developed by, the Nippon Telegraph) -> TwinVQ Audio File (2450ms) When was the telegraph invented? example -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph, do for, example) -> example (2453ms) When was the telegraph invented? the bodies -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (the bodies, were found near, 6 Mile and Telegraph) -> the bodies (2441ms) When was the telegraph invented? the use -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Daily Telegraph, did report on, the use) -> the use (2450ms) When was the telegraph invented? the Belfast press -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (the Belfast press, can be found in, the Belfast Telegraph) -> the Belfast press (2447ms) When was the telegraph invented? inventor -0.444444444444 When was the telegraph invented? -> $x: ($x, develop, telegraph) -> (inventor, developed, an electric telegraph) -> inventor (2447ms) When was the telegraph invented? Civilization -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The telegraph, really did mean The End of, Civilization) -> Civilization (2441ms) When was the telegraph invented? the components -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (the components, found in, a telegraph circuit) -> the components (2446ms) When was the telegraph invented? striders -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (Telegraph, did barefoot, striders) -> striders (2436ms) When was the telegraph invented? Terms and Conditions -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (Terms and Conditions, can be found at, telegraph.co.uk/isce2012) -> Terms and Conditions (2451ms) When was the telegraph invented? The full letter -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (The full letter, may also be found on, the Telegraph) -> The full letter (2423ms) When was the telegraph invented? the NRL -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (| 13 Mar 2012 Daily Telegraph, Does, the NRL) -> the NRL (2454ms) When was the telegraph invented? Islamorada and Marathon -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (a telegraph station, did, Islamorada and Marathon) -> Islamorada and Marathon (2441ms) When was the telegraph invented? everyting -0.444444444444 When was the telegraph invented? -> $x: (telegraph, do, $x) -> (The Telegraph companies, did, everyting) -> everyting (2423ms) When was the telegraph invented? text/html Scientists -0.444444444444 When was the telegraph invented? -> $x: ($x, find, telegraph) -> (text/html Scientists, found, the telegraph) -> text/html Scientists (2441ms) When was the telegraph invented? the eurozone -0.444444444444 When was the telegraph invented? -> $x: ($x, develop, telegraph) -> (the eurozone, needs to develop, this fiscal more Telegraph.co.uk) -> the eurozone (2450ms) When did he die? the technology 0.22222222222000002 When did he die? -> $x: ($x, discover, alexander graham bell) -> (the technology, was discovered by, Alexander Graham Bell) -> the technology (1473ms) When did he die? Telephone -0.0 When did he die? -> $x: ($x, invent, alexander graham bell) -> (Telephone, is invented by, Alexander Graham Bell) -> Telephone (1606ms) When did he die? The soundproof booth -0.0 When did he die? -> $x: ($x, invent, alexander graham bell) -> (The soundproof booth, was invented by, Alexander Graham Bell) -> The soundproof booth (1605ms) When did he die? the device -0.0 When did he die? -> $x: ($x, invent, alexander graham bell) -> (the device, invented by, Alexander Graham Bell) -> the device (1473ms) When did he die? The photophone -0.0 When did he die? -> $x: ($x, invent, alexander graham bell) -> (The photophone, is invented by, Alexander Graham Bell) -> The photophone (1493ms) When did he die? The telephone -0.0 When did he die? -> $x: ($x, invent, alexander graham bell) -> (The telephone, was famously invented by, Alexander Graham Bell) -> The telephone (1472ms) When did he die? The first telephone -0.0 When did he die? -> $x: ($x, invent, alexander graham bell) -> (The first telephone, was invented by, Alexander Graham Bell) -> The first telephone (1493ms) When did he die? the telephone -0.0 When did he die? -> $x: ($x, invent, alexander graham bell) -> (the telephone, was invented by, Alexander Bell Graham) -> the telephone (1605ms) When did he die? telephone technology -0.0 When did he die? -> $x: ($x, invent, alexander graham bell) -> (telephone technology, invented by, Alexander Graham Bell) -> telephone technology (1605ms) When did he die? a metal detector -0.0 When did he die? -> $x: ($x, invent, alexander graham bell) -> (a metal detector, invented by, Alexander Graham Bell) -> a metal detector (1606ms) When did he die? the first telephone -0.0 When did he die? -> $x: ($x, invent, alexander graham bell) -> (the first telephone, was invented by, Alexander Graham Bell) -> the first telephone (1493ms) When did he die? The phone -0.0 When did he die? -> $x: ($x, invent, alexander graham bell) -> (The phone, was invented by, Alexander Graham Bell) -> The phone (1493ms) When did he die? The Telephone -0.0 When did he die? -> $x: ($x, invent, alexander graham bell) -> (The Telephone, was originally invented by, Alexander Graham Bell) -> The Telephone (1472ms) When did he die? Twisted pair cable -0.0 When did he die? -> $x: ($x, invent, alexander graham bell) -> (Twisted pair cable, was invented by, Alexander Graham Bell) -> Twisted pair cable (1472ms) When did he die? a tuning fork -0.111111111111 When did he die? -> $x: ($x, inspire, alexander graham bell) -> (a tuning fork, inspired, Alexander Graham Bell) -> a tuning fork (1984ms) When did he die? money -0.111111111111 When did he die? -> $x: (alexander graham bell, be for, $x) -> (a young Alexander Graham Bell, was searching for, money) -> money (1654ms) When did he die? The Volta Bureau -0.111111111111 When did he die? -> $x: ($x, establish, alexander graham bell) -> (The Volta Bureau, was established by, Alexander Graham Bell) -> The Volta Bureau (2156ms) When did he die? sale -0.111111111111 When did he die? -> $x: (alexander graham bell, be for, $x) -> (~Alexander Graham Bell My first book, will be out for, sale) -> sale (1893ms) When did he die? the call -0.111111111111 When did he die? -> $x: (alexander graham bell, be for, $x) -> (Alexander Graham Bell, was waiting for, the call) -> the call (1893ms) When did he die? Keith -0.111111111111 When did he die? -> $x: ($x, inspired, alexander graham bell) -> (Keith, is inspired directly by, Alexander Graham Bell) -> Keith (1984ms) When did he die? turn -0.111111111111 When did he die? -> $x: ($x, inspire, alexander graham bell) -> (turn, inspired, Alexander Graham Bell) -> turn (1984ms) When did he die? 20 years -0.111111111111 When did he die? -> $x: (alexander graham bell, be for, $x) -> (Alexander Graham Bell, was given credit for nearly, 20 years) -> 20 years (1984ms) When did he die? the vistas -0.111111111111 When did he die? -> $x: ($x, inspire, alexander graham bell) -> (the vistas, inspired, Alexander Graham Bell) -> the vistas (2156ms) When did he die? Jobs -0.111111111111 When did he die? -> $x: ($x, do, alexander graham bell) -> (Jobs, Did, Alexander Graham Bell) -> Jobs (2156ms) When did he die? The Photophone -0.111111111111 When did he die? -> $x: ($x, develop, alexander graham bell) -> (The Photophone, was developed by, Alexander Graham Bell) -> The Photophone (1892ms) When did he die? fraud -0.111111111111 When did he die? -> $x: (alexander graham bell, be for, $x) -> (Alexander Graham Bell, was prosecuted for, fraud) -> fraud (1893ms) When did he die? the deaf -0.111111111111 When did he die? -> $x: (alexander graham bell, be for, $x) -> (Alexander Graham Bell, was a tutor for, the deaf) -> the deaf (2156ms) When did he die? the telegraph and telephone ? -0.111111111111 When did he die? -> $x: ($x, do, alexander graham bell) -> (the telegraph and telephone ?, did, Alexander Graham Bell) -> the telegraph and telephone ? (2156ms) When did he die? telephones -0.111111111111 When did he die? -> $x: (alexander graham bell, be for, $x) -> (Alexander Graham Bell, was arrested for selling, telephones) -> telephones (2156ms) When did he die? the invention -0.111111111111 When did he die? -> $x: (alexander graham bell, be for, $x) -> (Alexander Graham Bell, was granted the patent for, the invention) -> the invention (1892ms) When did he die? the development -0.111111111111 When did he die? -> $x: ($x, introduce, alexander graham bell) -> (the development, are introduced to, Alexander Graham Bell) -> the development (2156ms) When did he die? the tetra kites -0.111111111111 When did he die? -> $x: ($x, develop, alexander graham bell) -> (the tetra kites, developed by, Alexander Graham Bell) -> the tetra kites (1984ms) When did he die? event -0.111111111111 When did he die? -> $x: ($x, do, alexander graham bell) -> (event, did, Alexander Graham Bell patent) -> event (1655ms) When did he die? 1633 -0.333333333333 When did he die? -> $x: (bear and, die in, $x) -> (a Welsh-born English priest and poet, died in, 1633) -> 1633 (3115ms) When did he die? 1630 -0.333333333333 When did he die? -> $x: (johannes kepler, die in, $x) -> (Johannes Kepler, died in, 1630) -> 1630 (2239ms) When did he die? obscurity -0.333333333333 When did he die? -> $x: (teslum, die in, $x) -> (Tesla, died in, obscurity) -> obscurity (3115ms) When did he die? Boston -0.333333333333 When did he die? -> $x: (bear and, die in, $x) -> (Mom and Dad Anna Hientzen ~ Born, died in, Boston) -> Boston (2238ms) When did he die? a New York hotel room -0.333333333333 When did he die? -> $x: (teslum, die in, $x) -> (Tesla, died in, a New York hotel room) -> a New York hotel room (3164ms) When did he die? 1601 -0.333333333333 When did he die? -> $x: (brahe, die in, $x) -> (Tycho Brahe, died in, 1601) -> 1601 (3167ms) When did he die? NY hotel -0.333333333333 When did he die? -> $x: (teslum, die in, $x) -> (1943 Tesla, dies penniless in, NY hotel) -> NY hotel (3116ms) When did he die? New York -0.333333333333 When did he die? -> $x: (teslum, die in, $x) -> (January 7 Tesla, died in, New York) -> New York (3164ms) When did he die? recent weeks -0.333333333333 When did he die? -> $x: (bear and, die in, $x) -> (a chimpanzee , bears and pumas, have died in, recent weeks) -> recent weeks (2469ms) When did he die? 1924 -0.333333333333 When did he die? -> $x: (vladimir lenin, die in, $x) -> (Soviet leader Vladimir Ilich Lenin, died in, 1924) -> 1924 (3164ms) When did he die? a hotel suite in New York City -0.333333333333 When did he die? -> $x: (teslum, die in, $x) -> (Tesla, died in, a hotel suite in New York City) -> a hotel suite in New York City (2239ms) When did he die? severe debt and obscurity -0.333333333333 When did he die? -> $x: (teslum, die in, $x) -> (Tesla, die in, severe debt and obscurity) -> severe debt and obscurity (3115ms) When did he die? a New York hotel -0.333333333333 When did he die? -> $x: (teslum, die in, $x) -> (Tesla, died alone in, a New York hotel) -> a New York hotel (3164ms) When did he die? the hotel New Yorker -0.333333333333 When did he die? -> $x: (teslum, die in, $x) -> (Death and afterwards Tesla, died alone in, the hotel New Yorker) -> the hotel New Yorker (2961ms) When did he die? Nova Scotia -0.333333333333 When did he die? -> $x: (alexander graham bell, die in, $x) -> (Alexander Graham Bell, died in, Nova Scotia) -> Nova Scotia (2239ms) When did he die? Room # 3327 -0.333333333333 When did he die? -> $x: (teslum, die in, $x) -> (Tesla, died in, Room # 3327) -> Room # 3327 (3115ms) When did he die? a hotel room -0.333333333333 When did he die? -> $x: (teslum, die in, $x) -> (Tesla, died alone in, a hotel room) -> a hotel room (3167ms) When did he die? 1968 -0.333333333333 When did he die? -> $x: (bear and, die in, $x) -> (_and Born, died in, 1968) -> 1968 (2239ms) When did he die? 1943 -0.333333333333 When did he die? -> $x: (teslum, die in, $x) -> (Nikola Tesla, died in, 1943) -> 1943 (3167ms) When did he die? a hotel in New York -0.333333333333 When did he die? -> $x: (teslum, die in, $x) -> (Tesla, died in, a hotel in New York) -> a hotel in New York (2239ms) When did he die? 1922 -0.333333333333 When did he die? -> $x: (alexander graham bell, die in, $x) -> (Alexander Graham Bell, died in, 1922) -> 1922 (2961ms) When did he die? New York City -0.333333333333 When did he die? -> $x: (teslum, die in, $x) -> (Tesla, died in, New York City) -> New York City (3167ms) When did he die? Regensburg -0.333333333333 When did he die? -> $x: (johannes kepler, die in, $x) -> (Johannes Kepler, died in, Regensburg) -> Regensburg (3164ms) When did he die? Oxford -0.333333333333 When did he die? -> $x: (bear and, die in, $x) -> (Polish-born Oxford philosopher and historian, died in, Oxford) -> Oxford (2469ms) When did he die? 2001 -0.333333333333 When did he die? -> $x: (bear and, die in, $x) -> (The Russian-born designer and architect, died in, 2001) -> 2001 (2469ms) When did he die? a hotel -0.333333333333 When did he die? -> $x: (teslum, die in, $x) -> (Tesla, died penniless in, a hotel) -> a hotel (3167ms) When did he die? a plane crash -0.333333333333 When did he die? -> $x: (teslum, die in, $x) -> (Tesla Motors, died in, a plane crash) -> a plane crash (2961ms) When did he die? Prague -0.333333333333 When did he die? -> $x: (brahe, die in, $x) -> (Tycho Brahe, died in, Prague) -> Prague (3115ms) When did he die? the fire -0.333333333333 When did he die? -> $x: (teslum, die in, $x) -> (Nikola Tesla, died in, the fire) -> the fire (3164ms) When did he die? 1942 -0.333333333333 When did he die? -> $x: (teslum, die in, $x) -> (Tesla, died in, 1942) -> 1942 (3115ms) When did he die? January -0.333333333333 When did he die? -> $x: (nikola tesla, die in, $x) -> (Nikola Tesla, died in, January) -> January (3167ms) When did he die? poverty -0.333333333333 When did he die? -> $x: (teslum, die in, $x) -> (Tesla, died in, poverty) -> poverty (3167ms) When did he die? Baddek -0.333333333333 When did he die? -> $x: (alexander graham bell, die in, $x) -> (Alexander Graham Bell, died in, Baddek) -> Baddek (3164ms) When did he die? January 21,1924 -0.444444444444 When did he die? -> $x: (vladimir lenin, die on, $x) -> (Vladimir Illyich Lenin, died on, January 21,1924) -> January 21,1924 (3170ms) When did he die? an island -0.444444444444 When did he die? -> $x: (bear and, die on, $x) -> (Danish-born explorer and commander, died on, an island) -> an island (3172ms) When did he die? Nov. 15 , 1630 -0.444444444444 When did he die? -> $x: (johannes kepler, die on, $x) -> (annecdotes Johannes Kepler, dies on, Nov. 15 , 1630) -> Nov. 15 , 1630 (3170ms) When did he die? January 21 , 1924 -0.444444444444 When did he die? -> $x: (vladimir lenin, die on, $x) -> (Vladimir Lenin, died on, January 21 , 1924) -> January 21 , 1924 (3170ms) When did he die? February 29 -0.444444444444 When did he die? -> $x: (bear and, die on, $x) -> (both been born and, died on, February 29) -> February 29 (3170ms) When did he die? January 7 , 1943 -0.444444444444 When did he die? -> $x: (teslum, die on, $x) -> (Nikola Tesla, died on, January 7 , 1943) -> January 7 , 1943 (3172ms) When did he die? November 15 , 1630 -0.444444444444 When did he die? -> $x: (johannes kepler, die on, $x) -> (Johannes Kepler, died on, November 15 , 1630) -> November 15 , 1630 (3172ms) When did he die? October 24 , 1601 -0.444444444444 When did he die? -> $x: (tycho brahe, die on, $x) -> (Tycho Brahe, died on, October 24 , 1601) -> October 24 , 1601 (3172ms) When did he die? August 2 -0.444444444444 When did he die? -> $x: (alexander graham bell, die on, $x) -> (Alexander Graham Bell, died on, August 2) -> August 2 (3170ms) When did he die? 24 October 1601 11 days -0.444444444444 When did he die? -> $x: (brahe, die on, $x) -> (Tycho Brahe, died on, 24 October 1601 11 days) -> 24 October 1601 11 days (3170ms) When did he die? January 21 1924 -0.444444444444 When did he die? -> $x: (vladimir lenin, die on, $x) -> (Slavoj Zizek Vladimir Ilyich Lenin, died on, January 21 1924) -> January 21 1924 (3172ms) When did he die? the Titanic -0.444444444444 When did he die? -> $x: (teslum, die on, $x) -> (Tesla, died on, the Titanic) -> the Titanic (3170ms) When did he die? August 2 , 1922 -0.444444444444 When did he die? -> $x: (alexander graham bell, die on, $x) -> (Alexander Graham Bell, died on, August 2 , 1922) -> August 2 , 1922 (3170ms) When did he die? August 4 , 1922 -0.444444444444 When did he die? -> $x: (alexander graham bell, die on, $x) -> (Alexander Graham Bell, died on, August 4 , 1922) -> August 4 , 1922 (3167ms) When did he die? January 7th -0.444444444444 When did he die? -> $x: (nikola tesla, die on, $x) -> (Nikola Tesla, died on, January 7th) -> January 7th (3172ms) When did he die? the 8th -0.444444444444 When did he die? -> $x: (teslum, die on, $x) -> (Tesla, died on, the 8th) -> the 8th (3167ms) When did he die? 7 January 1943 -0.444444444444 When did he die? -> $x: (teslum, die on, $x) -> (121 Death Tesla, died on, 7 January 1943) -> 7 January 1943 (3172ms) When did he die? 8th November -0.444444444444 When did he die? -> $x: (bear and, die on, $x) -> (Sandy born and resident Edward Lawson, died on, 8th November) -> 8th November (3172ms) When did he die? August 4 -0.444444444444 When did he die? -> $x: (alexander graham bell, die on, $x) -> (Alexander Graham Bell, died on, August 4) -> August 4 (3170ms) When did he die? March 3 , 1847 -0.666666666667 When did he die? -> $x: (alexander graham bell, be on, $x) -> (1847 -1922 Alexander Graham Bell, was born on, March 3 , 1847) -> March 3 , 1847 (3176ms) When did he die? hearing aids -0.666666666667 When did he die? -> $x: (alexander graham bell, be on, $x) -> (Alexander Graham Bell, was originally working on, hearing aids) -> hearing aids (3174ms) When did he die? 1847 -0.666666666667 When did he die? -> $x: (alexander graham bell, be in, $x) -> (Alexander Graham Bell, was born in, 1847) -> 1847 (3178ms) When did he die? March 3 -0.666666666667 When did he die? -> $x: (alexander graham bell, be on, $x) -> (Alexander Graham Bell, was born on, March 3) -> March 3 (3176ms) When did he die? extensive use -0.666666666667 When did he die? -> $x: (alexander graham bell, be in, $x) -> (Alexander Graham Bell, were in, extensive use) -> extensive use (3178ms) When did he die? England -0.666666666667 When did he die? -> $x: (alexander graham bell, be in, $x) -> (Dr. Alexander Graham Bell, is now in, England) -> England (3172ms) When did he die? the phonograph -0.666666666667 When did he die? -> $x: (alexander graham bell, be on, $x) -> (Alexander Graham Bell, was also working on, the phonograph) -> the phonograph (3176ms) When did he die? 3rd March 1847 -0.666666666667 When did he die? -> $x: (alexander graham bell, be on, $x) -> (Alexander Graham Bell, was born on, 3rd March 1847) -> 3rd March 1847 (3176ms) When did he die? Baddeck -0.666666666667 When did he die? -> $x: (alexander graham bell, be in, $x) -> (The Alexander Graham Bell Museum, is dedicated in, Baddeck) -> Baddeck (3172ms) When did he die? Edinburgh -0.666666666667 When did he die? -> $x: (alexander graham bell, be in, $x) -> (Alexander Graham Bell, was born in, Edinburgh) -> Edinburgh (3178ms) When did he die? a little device -0.666666666667 When did he die? -> $x: (alexander graham bell, be on, $x) -> (Alexander Graham Bell, was working on, a little device) -> a little device (3176ms) When did he die? 3 March 1847 -0.666666666667 When did he die? -> $x: (alexander graham bell, be on, $x) -> (Alexander Graham Bell, was born on, 3 March 1847) -> 3 March 1847 (3176ms) When did he die? the field -0.666666666667 When did he die? -> $x: (alexander graham bell, be in, $x) -> (Alexander Graham Bell, was in, the field) -> the field (3174ms) When did he die? light bulbs -0.666666666667 When did he die? -> $x: (alexander graham bell, be on, $x) -> (Alexander Graham Bell?s, were working on, light bulbs) -> light bulbs (3176ms) When did he die? the New York City end -0.666666666667 When did he die? -> $x: (alexander graham bell, be on, $x) -> (Alexander Graham Bell, was on, the New York City end) -> the New York City end (3178ms) When did he die? the idea -0.666666666667 When did he die? -> $x: (alexander graham bell, be on, $x) -> (Alexander Graham Bell, had been working on, the idea) -> the idea (3176ms) When did he die? Berlin -0.666666666667 When did he die? -> $x: (alexander graham bell, be in, $x) -> (Alexander Graham Bell, was in, Berlin) -> Berlin (3176ms) When did he die? a device -0.666666666667 When did he die? -> $x: (alexander graham bell, be on, $x) -> (Alexander Graham Bell, was busy working on, a device) -> a device (3174ms) When did he die? a hearing aid -0.666666666667 When did he die? -> $x: (alexander graham bell, be on, $x) -> (Alexander Graham Bell, was working on, a hearing aid) -> a hearing aid (3174ms) When did he die? 1886 -0.666666666667 When did he die? -> $x: (alexander graham bell, be in, $x) -> (Alexander Graham Bell, was started in, 1886) -> 1886 (3174ms) When did he die? March 3rd -0.666666666667 When did he die? -> $x: (alexander graham bell, be on, $x) -> (Alexander Graham Bell, is Born on, March 3rd) -> March 3rd (3176ms) When did he die? doctors -0.666666666667 When did he die? -> $x: (alexander graham bell, be in, $x) -> (Alexander Graham Bell, was brought in by, doctors) -> doctors (3174ms) When did he die? Germany -0.666666666667 When did he die? -> $x: (alexander graham bell, be in, $x) -> (Alexander Graham Bell, was in, Germany) -> Germany (3178ms) When did he die? Scotland -0.666666666667 When did he die? -> $x: (alexander graham bell, be in, $x) -> (Alexander Graham Bell, was born in, Scotland) -> Scotland (3178ms) When did he die? The Grosvenors -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (The Grosvenors, are descendants of, Alexander Graham Bell) -> The Grosvenors (3182ms) When did he die? casual photographs -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (casual photographs, are, Alexander Graham Bell) -> casual photographs (3181ms) When did he die? the imagination -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (the imagination, is the story of, Alexander Graham Bell) -> the imagination (3178ms) When did he die? the principal researchers -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (the principal researchers, was, Alexander Graham Bell) -> the principal researchers (3181ms) When did he die? the Cold Crush -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (the Cold Crush, are, the Alexander Graham Bells) -> the Cold Crush (3178ms) When did he die? Canada -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (Canada, are, Alexander Graham Bell) -> Canada (3183ms) When did he die? Mr. Watson -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (Mr. Watson, was, Alexander Graham Bell) -> Mr. Watson (3182ms) When did he die? the cell phone -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (the cell phone, is to, Alexander Graham Bell) -> the cell phone (3180ms) When did he die? copper lines -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (copper lines, were actually installed by, Alexander Graham Bell) -> copper lines (3183ms) When did he die? the United Kingdom -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (the United Kingdom, was demonstrated by, Alexander Graham Bell) -> the United Kingdom (3183ms) When did he die? telephone service -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (telephone service, is of, Alexander Graham Bell vintage) -> telephone service (3180ms) When did he die? The journal -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (The journal, was financially supported by, Alexander Graham Bell) -> The journal (3181ms) When did he die? Brantford -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (Brantford, is linked with, Alexander Graham Bell) -> Brantford (3178ms) When did he die? quality sound reproduction -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (quality sound reproduction, was, Alexander Graham Bell) -> quality sound reproduction (3183ms) When did he die? The same -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (The same, could be said of, Alexander Graham Bell) -> The same (3178ms) When did he die? a household word -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (a household word, was, Alexander Graham Bell) -> a household word (3180ms) When did he die? The decibel -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (The decibel, is named after, Alexander Graham Bell) -> The decibel (3180ms) When did he die? Thomas Watson -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (Thomas Watson, was, Alexander Graham Bell) -> Thomas Watson (3181ms) When did he die? The quote -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (The quote, was from, Alexander Graham Bell) -> The quote (3178ms) When did he die? the best-known examples -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (the best-known examples, are, Alexander Graham Bell) -> the best-known examples (3184ms) When did he die? a patent for the telephone -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (a patent for the telephone, was issued to, Alexander Graham Bell) -> a patent for the telephone (3179ms) When did he die? the complex person -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (the complex person, was, Alexander Graham Bell) -> the complex person (3182ms) When did he die? AT&T -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (AT&T, was founded by, Alexander Graham Bell) -> AT&T (3184ms) When did he die? Alex -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (Alex, was named after, Alexander Graham Bell) -> Alex (3184ms) When did he die? each question -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (each question, is, Alexander Graham Bell) -> each question (3181ms) When did he die? the key innovators -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (the key innovators, were, Alexander Graham Bell) -> the key innovators (3183ms) When did he die? the list -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (the list, was, Alexander Graham Bell) -> the list (3182ms) When did he die? Eugenics and the state -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (Eugenics and the state, was, Alexander Graham Bell) -> Eugenics and the state (3181ms) When did he die? The answer -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (The answer, is, Alexander Graham Bell) -> The answer (3182ms) When did he die? the AT&T breakup -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (the AT&T breakup, was founded by, Alexander Graham Bell) -> the AT&T breakup (3184ms) When did he die? Science -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (Science, was revived by, Alexander Graham Bell) -> Science (3183ms) When did he die? The bel -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (The bel, was named after, Alexander Graham Bell) -> The bel (3180ms) When did he die? the week -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (the week, is from, Alexander Graham Bell) -> the week (3181ms) When did he die? a Bel -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (a Bel, was named after, Alexander Graham Bell) -> a Bel (3181ms) When did he die? the key people -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (the key people, was, Alexander Graham Bell ? Scotsman) -> the key people (3180ms) When did he die? the displays -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (the displays, are replicas of, Alexander Graham Bell) -> the displays (3183ms) When did he die? One favorite -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (One favorite, is, Alexander Graham Bell) -> One favorite (3182ms) When did he die? dyslexic figures -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (dyslexic figures, are, Alexander Graham Bell) -> dyslexic figures (3182ms) When did he die? telecommunication -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (telecommunication, are, Alexander Graham Bell) -> telecommunication (3183ms) When did he die? the left -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (the left, is, Alexander Graham Bell) -> the left (3182ms) When did he die? Among them -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (Among them, was, Alexander Graham Bell) -> Among them (3181ms) When did he die? Elisha Gray -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (Elisha Gray, was, Alexander Graham Bell) -> Elisha Gray (3182ms) When did he die? Deafdigest ? -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (Deafdigest ?, Was, Alexander Graham Bell really) -> Deafdigest ? (3180ms) When did he die? corrupt government officials -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (corrupt government officials, were behind, Alexander Graham Bell) -> corrupt government officials (3182ms) When did he die? a survivor -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (a survivor, is an expert on, Alexander Graham Bell) -> a survivor (3181ms) When did he die? The teacher -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (The teacher, was, Alexander Graham Bell) -> The teacher (3182ms) When did he die? Keller -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (Keller, was supported by, Alexander Graham Bell) -> Keller (3183ms) When did he die? use worldwide -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (use worldwide, was first patented by, Alexander Graham Bell) -> use worldwide (3181ms) When did he die? The phonautograph -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (The phonautograph, was one of, Alexander Graham Bell) -> The phonautograph (3180ms) When did he die? Antonio Meucci -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (Antonio Meucci, was to, Alexander Graham Bell) -> Antonio Meucci (3182ms) When did he die? The focus -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (The focus, is on, Alexander Graham Bell) -> The focus (3181ms) When did he die? the most famous early settler -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (the most famous early settler, was, Alexander Graham Bell) -> the most famous early settler (3183ms) When did he die? Bell -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (Bell, is, Dr. Alexander Graham Bell) -> Bell (3180ms) When did he die? a genius -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (a genius, is being, Alexander Graham Bell) -> a genius (3180ms) When did he die? The inventor of the telephone -1.0 When did he die? -> $x: ($x, be be, alexander graham bell) -> (The inventor of the telephone, is, Alexander Graham Bell) -> The inventor of the telephone (3181ms) When was the Hoover Dam constructed? 1931 1.4444444444409998 When was the Hoover Dam constructed? -> $x: (hoover dam, be construct in, $x) -> (The Hoover Dam, was constructed in, 1931) -> 1931 (685ms) When was the Hoover Dam constructed? concrete -0.33333333333000015 When was the Hoover Dam constructed? -> $x: (hoover dam, be construct of, $x) -> (The Hoover Dam, is constructed of, concrete) -> concrete (684ms) When was the Hoover Dam constructed? no structure -0.44444444444100006 When was the Hoover Dam constructed? -> $x: ($x, construct, hoover dam) -> (no structure, had ever been constructed like, the Hoover Dam) -> no structure (684ms) When was the Hoover Dam constructed? Bechtel -0.44444444444100006 When was the Hoover Dam constructed? -> $x: ($x, construct, hoover dam) -> (Bechtel, begins constructing, Hoover Dam) -> Bechtel (685ms) When was the Hoover Dam constructed? harness -0.44444444444100006 When was the Hoover Dam constructed? -> $x: (hoover dam, construct, $x) -> (the Hoover Dam, was constructed to, harness) -> harness (684ms) Who was Picasso? collage today 1.1111111111029999 Who was Picasso? -> $x: (pablo picasso, do, $x) -> (Pablo Picasso, is able to do with, collage today) -> collage today (1399ms) Who was Picasso? collages 1.1111111111029999 Who was Picasso? -> $x: (pablo picasso, do, $x) -> (Pablo Picasso, enjoyed doing, collages) -> collages (1343ms) Who was Picasso? a Raphael drawing 1.1111111111029999 Who was Picasso? -> $x: (pablo picasso, do, $x) -> (?Pablo Picasso, did this copy of, a Raphael drawing) -> a Raphael drawing (1292ms) Who was Picasso? the crazy oven mitt skull man 1.1111111111029999 Who was Picasso? -> $x: (pablo picasso, do, $x) -> (~Pablo Picasso omg i, do see, the crazy oven mitt skull man) -> the crazy oven mitt skull man (1399ms) Who was Picasso? dyslexia 1.1111111111029999 Who was Picasso? -> $x: (pablo picasso, do, $x) -> (Pablo Picasso, does, dyslexia) -> dyslexia (1399ms) Who was Picasso? jail time 1.1111111111029999 Who was Picasso? -> $x: (pablo picasso, do, $x) -> (? Pablo Picasso, did, jail time) -> jail time (1399ms) Who was Picasso? the ceiling 1.1111111111029999 Who was Picasso? -> $x: (pablo picasso, do, $x) -> (Pablo Picasso, is doing sketches on, the ceiling) -> the ceiling (1292ms) Who was Picasso? always 1.1111111111029999 Who was Picasso? -> $x: (pablo picasso, do, $x) -> (Pablo Picasso, am doing that, always) -> always (1343ms) Who was Picasso? paintings and drawings 1.1111111111029999 Who was Picasso? -> $x: (pablo picasso, do, $x) -> (Pablo Picasso, did, paintings and drawings) -> paintings and drawings (1292ms) Who was Picasso? what people say you cannot do 1.1111111111029999 Who was Picasso? -> $x: (pablo picasso, do, $x) -> (Pablo Picasso, is doing, what people say you cannot do) -> what people say you cannot do (1292ms) Who was Picasso? David Douglas Duncan 1.1111111111029999 Who was Picasso? -> $x: (pablo picasso, do, $x) -> (Pablo Picasso, did for, David Douglas Duncan) -> David Douglas Duncan (1343ms) Who was Picasso? CHEAP 1.1111111111029999 Who was Picasso? -> $x: (pablo picasso, do, $x) -> (-Pablo Picasso, DONE, CHEAP) -> CHEAP (1292ms) Who was Picasso? two colors 1.1111111111029999 Who was Picasso? -> $x: (pablo picasso, do, $x) -> (Pablo Picasso, do, two colors) -> two colors (1343ms) Who was Picasso? one peach 1.1111111111029999 Who was Picasso? -> $x: (pablo picasso, do, $x) -> (Pablo Picasso One, does a whole painting for, one peach) -> one peach (1343ms) Who was Picasso? memorial painting Guernica 1.1111111111029999 Who was Picasso? -> $x: (pablo picasso, do, $x) -> (Spanish painter Pablo Picasso, does, memorial painting Guernica) -> memorial painting Guernica (1292ms) Who was Picasso? art color life 1.1111111111029999 Who was Picasso? -> $x: (pablo picasso, do, $x) -> (Pablo Picasso, so does, art color life) -> art color life (1343ms) Who was Picasso? preschool 1.1111111111029999 Who was Picasso? -> $x: (pablo picasso, do, $x) -> (Pablo Picasso, did n?t go to, preschool) -> preschool (1343ms) Who was Picasso? painting 1.1111111111029999 Who was Picasso? -> $x: (pablo picasso, do, $x) -> (Pablo Picasso, did in, painting) -> painting (1399ms) Who was Picasso? powerful etchings 1.1111111111029999 Who was Picasso? -> $x: (pablo picasso, do, $x) -> (Pablo Picasso, did a number of, powerful etchings) -> powerful etchings (1399ms) Who was Picasso? art trades 1.1111111111029999 Who was Picasso? -> $x: (pablo picasso, do, $x) -> (Pablo Picasso amazing, do, art trades) -> art trades (1292ms) Who was Picasso? she has forgiven 1.1111111111029999 Who was Picasso? -> $x: (pablo picasso, do, $x) -> (Pablo Picasso, does know if, she has forgiven) -> she has forgiven (1292ms) Who was Picasso? Kate Winslet 0.9999999999939999 Who was Picasso? -> $x: ($x, happen to, picasso) -> (Kate Winslet, happened to own, Picasso) -> Kate Winslet (1399ms) Who was Picasso? variations 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did a complete series of, variations) -> variations (1926ms) Who was Picasso? Andy?s 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso?s landscape challenges, does, Andy?s) -> Andy?s (1620ms) Who was Picasso? Tiffany pendants 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, has done for, Tiffany pendants) -> Tiffany pendants (2722ms) Who was Picasso? a pencil 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, could do his work with, a pencil) -> a pencil (2722ms) Who was Picasso? beforehand 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, had done, beforehand) -> beforehand (2722ms) Who was Picasso? athletic ability 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, have to do with, athletic ability) -> athletic ability (2354ms) Who was Picasso? images 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did a series of, images) -> images (2690ms) Who was Picasso? the same theme 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did, the same theme) -> the same theme (2002ms) Who was Picasso? assistance 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did, assistance) -> assistance (2353ms) Who was Picasso? an excellent job 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso Fish, did, an excellent job) -> an excellent job (1620ms) Who was Picasso? the handkerchief 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, really did, the handkerchief) -> the handkerchief (2547ms) Who was Picasso? the end 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, must have done this at, the end) -> the end (1926ms) Who was Picasso? art 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did for, art) -> art (1926ms) Who was Picasso? two master works 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did to, two master works) -> two master works (2547ms) Who was Picasso? a > pencil 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, could do his work with, a > pencil) -> a > pencil (1450ms) Who was Picasso? the Second World War 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did the same thing during, the Second World War) -> the Second World War (1620ms) Who was Picasso? Guernica 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did called, Guernica) -> Guernica (2002ms) Who was Picasso? paint 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, is doing with, paint) -> paint (1488ms) Who was Picasso? lithographic prints 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did a series of, lithographic prints) -> lithographic prints (2548ms) Who was Picasso? van Gogh and Degas 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, does, van Gogh and Degas) -> van Gogh and Degas (2548ms) Who was Picasso? the drawings 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, were doing, the drawings) -> the drawings (2722ms) Who was Picasso? fine 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, is doing, fine) -> fine (2002ms) Who was Picasso? a brush 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did with, a brush) -> a brush (1450ms) Who was Picasso? the time 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, was doing at, the time) -> the time (2722ms) Who was Picasso? the painting 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did, the painting) -> the painting (2690ms) Who was Picasso? a shell 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did n?t crawl in, a shell) -> a shell (1451ms) Who was Picasso? a Greenish Period 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did n?t have, a Greenish Period) -> a Greenish Period (2690ms) Who was Picasso? Pablo Picasso 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, Do, Pablo Picasso) -> Pablo Picasso (1450ms) Who was Picasso? color printa 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did experiment with, color printa) -> color printa (2002ms) Who was Picasso? blue paintings or cubism series ? 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did, blue paintings or cubism series ?) -> blue paintings or cubism series ? (1488ms) Who was Picasso? a quick sketch 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did, a quick sketch) -> a quick sketch (2548ms) Who was Picasso? a quick-but-beautiful sketch 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, does, a quick-but-beautiful sketch) -> a quick-but-beautiful sketch (2002ms) Who was Picasso? frequent the community bar 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did, frequent the community bar) -> frequent the community bar (2690ms) Who was Picasso? over and over again 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did the same theme, over and over again) -> over and over again (2690ms) Who was Picasso? the Bellagio fountains 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did have a nice view of, the Bellagio fountains) -> the Bellagio fountains (2002ms) Who was Picasso? Monet 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, so did, Monet) -> Monet (2353ms) Who was Picasso? so much 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did, so much) -> so much (2690ms) Who was Picasso? the portrait 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did, the portrait) -> the portrait (1450ms) Who was Picasso? Francois Truffaut 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did, Francois Truffaut) -> Francois Truffaut (1488ms) Who was Picasso? a little sketch 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, does, a little sketch) -> a little sketch (1620ms) Who was Picasso? Cubism-looking 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, wanted to do with, Cubism-looking) -> Cubism-looking (1926ms) Who was Picasso? paint? ? 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did for, paint? ?) -> paint? ? (2690ms) Who was Picasso? light painting 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did, light painting) -> light painting (1620ms) Who was Picasso? 20 studies 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did over, 20 studies) -> 20 studies (1620ms) Who was Picasso? n?t act 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did, n?t act) -> n?t act (2547ms) Who was Picasso? so 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did, so) -> so (1926ms) Who was Picasso? years 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, has been doing for, years) -> years (1620ms) Who was Picasso? Berger 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso*, did, Berger) -> Berger (2002ms) Who was Picasso? n?t paint 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did, n?t paint) -> n?t paint (2002ms) Who was Picasso? cubist forms 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did n?t just launch into, cubist forms) -> cubist forms (2690ms) Who was Picasso? background 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did away with, background) -> background (2354ms) Who was Picasso? the scenery 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, was hired to do, the scenery) -> the scenery (1488ms) Who was Picasso? a series 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, may have done, a series) -> a series (1620ms) Who was Picasso? the officials 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did each of, the officials) -> the officials (1488ms) Who was Picasso? preparation 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did in, preparation) -> preparation (1926ms) Who was Picasso? the actual production 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, had nothing to do with, the actual production) -> the actual production (2690ms) Who was Picasso? 1907 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, had done, 1907) -> 1907 (2353ms) Who was Picasso? once 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did, once) -> once (2354ms) Who was Picasso? two paintings and 57 drawings 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, to do, two paintings and 57 drawings) -> two paintings and 57 drawings (1926ms) Who was Picasso? the drawing 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did, the drawing) -> the drawing (1451ms) Who was Picasso? 1950 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did n?t return until, 1950) -> 1950 (2548ms) Who was Picasso? works 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, was doing in, works) -> works (1488ms) Who was Picasso? Tiffany sale 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did regarding, Tiffany sale) -> Tiffany sale (2722ms) Who was Picasso? 40,000 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, did, 40,000) -> 40,000 (1488ms) Who was Picasso? every style 0.8888888888819999 Who was Picasso? -> $x: (picasso, do, $x) -> (Picasso, learned to do well in, every style) -> every style (2689ms) Who was Picasso? colorful abstract paintings 0.777777777773 Who was Picasso? -> $x: (pablo picasso, be know for, $x) -> (Pablo Picasso, is well known for, colorful abstract paintings) -> colorful abstract paintings (2722ms) Who was Picasso? Malaga city 0.666666666663 Who was Picasso? -> $x: ($x, be of, pablo picasso) -> (Malaga city, is the birthplace of, Pablo Picasso) -> Malaga city (2722ms) Who was Picasso? Wifredo Lam 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Wifredo Lam, Influenced By, Pablo Picasso) -> Wifredo Lam (2736ms) Who was Picasso? Pollock?s work 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Pollock?s work, reflected the influence of, Pablo Picasso) -> Pollock?s work (2722ms) Who was Picasso? ?douard Manet 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (?douard Manet, Influenced, Pablo Picasso) -> ?douard Manet (2743ms) Who was Picasso? Wallace Stevens 0.666666666663 Who was Picasso? -> $x: ($x, inspired, pablo picasso) -> (Wallace Stevens, was inspired by, Pablo Picasso) -> Wallace Stevens (2775ms) Who was Picasso? the exhibitions 0.666666666663 Who was Picasso? -> $x: ($x, be of, pablo picasso) -> (the exhibitions, was of, Pablo Picasso) -> the exhibitions (2761ms) Who was Picasso? Georges Braque 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Georges Braque, Influenced By, Pablo Picasso) -> Georges Braque (2750ms) Who was Picasso? Ellsworth Kelly 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Ellsworth Kelly, Influenced By, Pablo Picasso) -> Ellsworth Kelly (2736ms) Who was Picasso? Jean Auguste Dominique Ingres 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Jean Auguste Dominique Ingres, Influenced, Pablo Picasso) -> Jean Auguste Dominique Ingres (2722ms) Who was Picasso? Chaplin 0.666666666663 Who was Picasso? -> $x: ($x, be of, pablo picasso) -> (Chaplin, was visiting the studio of, his friend Pablo Picasso) -> Chaplin (2736ms) Who was Picasso? Analytic cubism 0.666666666663 Who was Picasso? -> $x: ($x, develop, pablo picasso) -> (Analytic cubism, was jointly developed by, Pablo Picasso) -> Analytic cubism (2750ms) Who was Picasso? the Three Musicians 0.666666666663 Who was Picasso? -> $x: ($x, create, pablo picasso) -> (the Three Musicians, was created by, Pablo Picasso) -> the Three Musicians (2755ms) Who was Picasso? David Smith 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (David Smith, Influenced By, Pablo Picasso) -> David Smith (2755ms) Who was Picasso? Norman Ollestad 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Norman Ollestad, Influenced By, Pablo Picasso) -> Norman Ollestad (2755ms) Who was Picasso? statge designs 0.666666666663 Who was Picasso? -> $x: ($x, be of, pablo picasso) -> (statge designs, were some of, the genres Pablo Picasso) -> statge designs (2729ms) Who was Picasso? Jan Matulka 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Jan Matulka, Influenced By, Pablo Picasso) -> Jan Matulka (2729ms) Who was Picasso? Wikipedia 0.666666666663 Who was Picasso? -> $x: ($x, do, pablo picasso) -> (Wikipedia, do, Pablo Picasso) -> Wikipedia (2755ms) Who was Picasso? La Rotonde 0.666666666663 Who was Picasso? -> $x: ($x, be of, pablo picasso) -> (La Rotonde, were the meeting place of, Pablo Picasso) -> La Rotonde (2736ms) Who was Picasso? Sara Murphy 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Sara Murphy, Influenced, Pablo Picasso) -> Sara Murphy (2729ms) Who was Picasso? Appel 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Appel, was influenced first by, Pablo Picasso) -> Appel (2761ms) Who was Picasso? Joan Mir? 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Joan Mir?, Influenced By, Pablo Picasso) -> Joan Mir? (2743ms) Who was Picasso? Antonia Gerstacker 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Antonia Gerstacker, Influenced By, Pablo Picasso) -> Antonia Gerstacker (2766ms) Who was Picasso? Byron Galvez 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Byron Galvez, Influenced By, Pablo Picasso) -> Byron Galvez (2722ms) Who was Picasso? Picasso 0.666666666663 Who was Picasso? -> $x: ($x, do, pablo picasso) -> (Picasso, Do, Pablo Picasso) -> Picasso (2750ms) Who was Picasso? the city 0.666666666663 Who was Picasso? -> $x: ($x, be of, pablo picasso) -> (the city, is the birthplace of, Pablo Picasso) -> the city (2761ms) Who was Picasso? Artists Cubism 0.666666666663 Who was Picasso? -> $x: ($x, initiate, pablo picasso) -> (Artists Cubism, Was initiated by, Pablo Picasso) -> Artists Cubism (2755ms) Who was Picasso? The same 0.666666666663 Who was Picasso? -> $x: ($x, be of, pablo picasso) -> (The same, can be said of, Pablo Picasso?s) -> The same (2761ms) Who was Picasso? Beaulieu 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Beaulieu, was certainly influenced by, Pablo Picasso) -> Beaulieu (2743ms) Who was Picasso? Karel Appel 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Karel Appel, Influenced By, Pablo Picasso) -> Karel Appel (2750ms) Who was Picasso? Dick Bruna 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Dick Bruna, Influenced By, Pablo Picasso) -> Dick Bruna (2736ms) Who was Picasso? Max Jacob 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Max Jacob, Influenced By, Pablo Picasso) -> Max Jacob (2750ms) Who was Picasso? Alexandra Nechita 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Alexandra Nechita, Influenced By, Pablo Picasso) -> Alexandra Nechita (2771ms) Who was Picasso? 15 km 0.666666666663 Who was Picasso? -> $x: (pablo picasso, be about, $x) -> (Pablo Ruiz Picasso Airport, is about, 15 km) -> 15 km (2766ms) Who was Picasso? Gwyneth Paltrow 0.666666666663 Who was Picasso? -> $x: ($x, play, pablo picasso) -> (Gwyneth Paltrow, is slated to play, Pablo Picasso) -> Gwyneth Paltrow (2743ms) Who was Picasso? A good example 0.666666666663 Who was Picasso? -> $x: ($x, find, pablo picasso) -> (A good example, can be found in, Pablo Picasso) -> A good example (2766ms) Who was Picasso? Yves Saint Laurent 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Yves Saint Laurent, Influenced By, Pablo Picasso) -> Yves Saint Laurent (2766ms) Who was Picasso? Gertrude Stein 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Gertrude Stein, Influenced By, Pablo Picasso) -> Gertrude Stein (2736ms) Who was Picasso? Vavenargues 0.666666666663 Who was Picasso? -> $x: ($x, be of, pablo picasso) -> (Vavenargues, was the last home of, Pablo Picasso) -> Vavenargues (2766ms) Who was Picasso? Piet Mondrian 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Piet Mondrian, Influenced By, Pablo Picasso) -> Piet Mondrian (2750ms) Who was Picasso? Andy Warhol 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Andy Warhol, demonstrate the influence of, Pablo Picasso) -> Andy Warhol (2771ms) Who was Picasso? the method 0.666666666663 Who was Picasso? -> $x: ($x, develop, pablo picasso) -> (the method, was developed by, Pablo Picasso) -> the method (2722ms) Who was Picasso? New York 0.666666666663 Who was Picasso? -> $x: ($x, be of, pablo picasso) -> (New York, is celebrating 100 years of, Pablo Picasso) -> New York (2729ms) Who was Picasso? Louise Nevelson 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Louise Nevelson, Influenced By, Pablo Picasso) -> Louise Nevelson (2729ms) Who was Picasso? the ?Three Musicians ? 0.666666666663 Who was Picasso? -> $x: ($x, create, pablo picasso) -> (the ?Three Musicians ?, was created by, Pablo Picasso) -> the ?Three Musicians ? (2771ms) Who was Picasso? 2012 0.666666666663 Who was Picasso? -> $x: (pablo picasso, be about, $x) -> (? Pablo Picasso, Much is being written about, 2012) -> 2012 (2775ms) Who was Picasso? Diego Rivera 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Diego Rivera, Influenced By, Pablo Picasso) -> Diego Rivera (2775ms) Who was Picasso? M?laga 0.666666666663 Who was Picasso? -> $x: ($x, here, pablo picasso) -> (M?laga, People born here, Pablo Picasso) -> M?laga (2736ms) Who was Picasso? the thriving popular culture 0.666666666663 Who was Picasso? -> $x: ($x, inspire, pablo picasso) -> (the thriving popular culture, inspired, Pablo Picasso) -> the thriving popular culture (2771ms) Who was Picasso? barren Keros 0.666666666663 Who was Picasso? -> $x: ($x, inspired, pablo picasso) -> (barren Keros, inspired such artists as, Pablo Picasso) -> barren Keros (2743ms) Who was Picasso? the rest 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (the rest, was to significantly influence, Pablo Picasso) -> the rest (2771ms) Who was Picasso? Francis Picabia 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Francis Picabia, Influenced By, Pablo Picasso) -> Francis Picabia (2761ms) Who was Picasso? Norman Mailer 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Norman Mailer, Influenced By, Pablo Picasso) -> Norman Mailer (2761ms) Who was Picasso? value 0.666666666663 Who was Picasso? -> $x: ($x, do, pablo picasso) -> (value, as did those of, a Pablo Picasso) -> value (2775ms) Who was Picasso? the ?Three Musicians ? 0.666666666663 Who was Picasso? -> $x: ($x, create, pablo picasso) -> (the ?Three Musicians ?, was created by, Pablo Picasso) -> the ?Three Musicians ? (2771ms) Who was Picasso? Charles Sheeler 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Charles Sheeler, Influenced By, Pablo Picasso) -> Charles Sheeler (2743ms) Who was Picasso? Joseph Campbell 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Joseph Campbell, Influenced By, Pablo Picasso) -> Joseph Campbell (2743ms) Who was Picasso? Vincent van Gogh 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Vincent van Gogh, Influenced, Pablo Picasso) -> Vincent van Gogh (2736ms) Who was Picasso? Ronnie Landfield 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Ronnie Landfield, Influenced By, Pablo Picasso) -> Ronnie Landfield (2756ms) Who was Picasso? Antonio Banderas 0.666666666663 Who was Picasso? -> $x: ($x, play, pablo picasso) -> (Antonio Banderas, will play, Pablo Picasso) -> Antonio Banderas (2755ms) Who was Picasso? The city 0.666666666663 Who was Picasso? -> $x: ($x, be of, pablo picasso) -> (The city, was the birthplace of, Pablo Picasso) -> The city (2743ms) Who was Picasso? Eug?ne Delacroix 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Eug?ne Delacroix, Influenced, Pablo Picasso) -> Eug?ne Delacroix (2750ms) Who was Picasso? Unique Art Course 0.666666666663 Who was Picasso? -> $x: ($x, do, pablo picasso) -> (Unique Art Course, do, Pablo Picasso) -> Unique Art Course (2771ms) Who was Picasso? Ch?teau of Vauvenargues 0.666666666663 Who was Picasso? -> $x: ($x, here, pablo picasso) -> (Ch?teau of Vauvenargues, People interred here, Pablo Picasso) -> Ch?teau of Vauvenargues (2736ms) Who was Picasso? The raid 0.666666666663 Who was Picasso? -> $x: ($x, inspired, pablo picasso) -> (The raid, inspired, Pablo Picasso?s) -> The raid (2766ms) Who was Picasso? Jos? de Almada Negreiros 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Jos? de Almada Negreiros, Influenced By, Pablo Picasso) -> Jos? de Almada Negreiros (2755ms) Who was Picasso? a surprising wealth 0.666666666663 Who was Picasso? -> $x: ($x, be of, pablo picasso) -> (a surprising wealth, was also the birthplace of, Pablo Picasso) -> a surprising wealth (2750ms) Who was Picasso? I?ve 0.666666666663 Who was Picasso? -> $x: ($x, play, pablo picasso) -> (I?ve, played, Pablo Picasso) -> I?ve (2766ms) Who was Picasso? Articles Cubism Cubism 0.666666666663 Who was Picasso? -> $x: ($x, develop, pablo picasso) -> (Articles Cubism Cubism, was developed by, Pablo Picasso) -> Articles Cubism Cubism (2722ms) Who was Picasso? Lasansky 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Lasansky, was markedly influenced by, Pablo Picasso) -> Lasansky (2755ms) Who was Picasso? Jackson Pollock 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Jackson Pollock, Influenced By, Pablo Picasso) -> Jackson Pollock (2736ms) Who was Picasso? pictures 0.666666666663 Who was Picasso? -> $x: ($x, do, pablo picasso) -> (pictures, do, ?-Pablo Picasso) -> pictures (2771ms) Who was Picasso? Jean-Michel Basquiat 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Jean-Michel Basquiat, Influenced By, Pablo Picasso) -> Jean-Michel Basquiat (2750ms) Who was Picasso? E. E. Cummings 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (E. E. Cummings, Influenced By, Pablo Picasso) -> E. E. Cummings (2729ms) Who was Picasso? Rodolfo Nieto 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Rodolfo Nieto, Influenced By, Pablo Picasso) -> Rodolfo Nieto (2761ms) Who was Picasso? Salvador Dal? 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Salvador Dal?, Influenced By, Pablo Picasso) -> Salvador Dal? (2736ms) Who was Picasso? outfit post 0.666666666663 Who was Picasso? -> $x: ($x, inspired, pablo picasso) -> (outfit post, is inspired by, Pablo Picasso?s Woman) -> outfit post (2750ms) Who was Picasso? prints and drawings 0.666666666663 Who was Picasso? -> $x: ($x, create, pablo picasso) -> (prints and drawings, created by, Pablo Picasso) -> prints and drawings (2736ms) Who was Picasso? Guillaume Apollinaire 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Guillaume Apollinaire, Influenced By, Pablo Picasso) -> Guillaume Apollinaire (2761ms) Who was Picasso? the theft 0.666666666663 Who was Picasso? -> $x: (pablo picasso, be about, $x) -> (Pablo Picasso, was questioned about, the theft) -> the theft (2761ms) Who was Picasso? Francisco Goya 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Francisco Goya, Influenced, Pablo Picasso) -> Francisco Goya (2771ms) Who was Picasso? Alfred Jarry 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Alfred Jarry, Influenced, Pablo Picasso) -> Alfred Jarry (2775ms) Who was Picasso? Johnston 0.666666666663 Who was Picasso? -> $x: ($x, inspired, pablo picasso) -> (Johnston, is inspired by, the Pablo Picasso quote) -> Johnston (2761ms) Who was Picasso? The painting ?Buste d'Homme? 0.666666666663 Who was Picasso? -> $x: ($x, be of, pablo picasso) -> (The painting ?Buste d'Homme?, is distinctive of, Pablo Picasso) -> The painting ?Buste d'Homme? (2766ms) Who was Picasso? surrealist painter 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (surrealist painter, was influenced by, Pablo Picasso) -> surrealist painter (2755ms) Who was Picasso? a pictorial device 0.666666666663 Who was Picasso? -> $x: ($x, found, pablo picasso) -> (a pictorial device, also found in, Pablo Picasso) -> a pictorial device (2771ms) Who was Picasso? 347 prints 0.666666666663 Who was Picasso? -> $x: ($x, create, pablo picasso) -> (347 prints, created by, 87-year-old Pablo Picasso) -> 347 prints (2729ms) Who was Picasso? Robert Stigers 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Robert Stigers, Influenced By, Pablo Picasso) -> Robert Stigers (2766ms) Who was Picasso? Henri de Toulouse-Lautrec 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Henri de Toulouse-Lautrec, Influenced, Pablo Picasso) -> Henri de Toulouse-Lautrec (2743ms) Who was Picasso? Keith Haring 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Keith Haring, Influenced By, Pablo Picasso) -> Keith Haring (2755ms) Who was Picasso? Deva Puri 0.666666666663 Who was Picasso? -> $x: ($x, be of, pablo picasso) -> (Deva Puri, is currently hosting an exhibition of, Pablo Picasso) -> Deva Puri (2750ms) Who was Picasso? Francisco Santos 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Francisco Santos, Influenced By, Pablo Picasso) -> Francisco Santos (2729ms) Who was Picasso? Malaga 0.666666666663 Who was Picasso? -> $x: ($x, be of, pablo picasso) -> (Malaga, was the birthplace of, Pablo Picasso) -> Malaga (2775ms) Who was Picasso? Artists 0.666666666663 Who was Picasso? -> $x: ($x, initiate, pablo picasso) -> (Artists, Was initiated by, Pablo Picasso) -> Artists (2771ms) Who was Picasso? You?ll 0.666666666663 Who was Picasso? -> $x: ($x, find, pablo picasso) -> (You?ll, find works by, Pablo Picasso) -> You?ll (2775ms) Who was Picasso? Cubism Cubism 0.666666666663 Who was Picasso? -> $x: ($x, develop, pablo picasso) -> (Cubism Cubism, was developed by, Pablo Picasso) -> Cubism Cubism (2755ms) Who was Picasso? Big Bear 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Big Bear, has been greatly influenced by, Pablo Picasso?s Cubism) -> Big Bear (2775ms) Who was Picasso? a cat 0.666666666663 Who was Picasso? -> $x: ($x, be of, pablo picasso) -> (a cat, was a gift of, Pablo Picasso) -> a cat (2771ms) Who was Picasso? Spain 0.666666666663 Who was Picasso? -> $x: ($x, be of, pablo picasso) -> (Spain, is the home of, the famed Pablo Picasso) -> Spain (2743ms) Who was Picasso? Joan Glass 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Joan Glass, Influenced By, Pablo Picasso) -> Joan Glass (2761ms) Who was Picasso? John D. Graham 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (John D. Graham, Influenced By, Pablo Picasso) -> John D. Graham (2775ms) Who was Picasso? Gerhard Gruber 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Gerhard Gruber, Influenced By, Pablo Picasso) -> Gerhard Gruber (2736ms) Who was Picasso? Richard?s work 0.666666666663 Who was Picasso? -> $x: ($x, inspire, pablo picasso) -> (Richard?s work, is inspired by, Pablo Picasso ?s visit) -> Richard?s work (2761ms) Who was Picasso? Bertolt Brecht 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Bertolt Brecht, Influenced By, Pablo Picasso) -> Bertolt Brecht (2771ms) Who was Picasso? Claudio Bravo 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Claudio Bravo, Influenced By, Pablo Picasso) -> Claudio Bravo (2743ms) Who was Picasso? the peak 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (the peak, influenced such artists as, Pablo Picasso) -> the peak (2771ms) Who was Picasso? Diego Vel?zquez 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Diego Vel?zquez, Influenced, Pablo Picasso) -> Diego Vel?zquez (2729ms) Who was Picasso? creation 0.666666666663 Who was Picasso? -> $x: ($x, be of, pablo picasso) -> (creation, is first an act of, Destruction ~Pablo Picasso) -> creation (2736ms) Who was Picasso? Ben Shahn 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Ben Shahn, Influenced By, Pablo Picasso) -> Ben Shahn (2775ms) Who was Picasso? beauty 0.666666666663 Who was Picasso? -> $x: (pablo picasso, be about, $x) -> (- Pablo Picasso, is about finding, beauty) -> beauty (2743ms) Who was Picasso? Henri Rousseau 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Henri Rousseau, Influenced, Pablo Picasso) -> Henri Rousseau (2729ms) Who was Picasso? The mask 0.666666666663 Who was Picasso? -> $x: ($x, inspire, pablo picasso) -> (The mask, is said to have inspired, artist Pablo Picasso) -> The mask (2766ms) Who was Picasso? Cubism 0.666666666663 Who was Picasso? -> $x: ($x, develop, pablo picasso) -> (Cubism, was developed by, Pablo Picasso) -> Cubism (2766ms) Who was Picasso? Wassily Kandinsky 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Wassily Kandinsky, Influenced By, Pablo Picasso) -> Wassily Kandinsky (2729ms) Who was Picasso? the role 0.666666666663 Who was Picasso? -> $x: ($x, play, pablo picasso) -> (the role, played by, Pablo Picasso) -> the role (2736ms) Who was Picasso? Paul Gauguin 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Paul Gauguin, Influenced, Pablo Picasso) -> Paul Gauguin (2743ms) Who was Picasso? conceptual art 0.666666666663 Who was Picasso? -> $x: ($x, be of, pablo picasso) -> (conceptual art, would be the cubist paintings of, Pablo Picasso) -> conceptual art (2766ms) Who was Picasso? Federico Cant? Garza 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Federico Cant? Garza, Influenced By, Pablo Picasso) -> Federico Cant? Garza (2771ms) Who was Picasso? Purvis Young 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Purvis Young, Influenced By, Pablo Picasso) -> Purvis Young (2729ms) Who was Picasso? Roberto Matta 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Roberto Matta, Influenced By, Pablo Picasso) -> Roberto Matta (2750ms) Who was Picasso? Paul C?zanne 0.666666666663 Who was Picasso? -> $x: ($x, influence, pablo picasso) -> (Paul C?zanne, Influenced, Pablo Picasso) -> Paul C?zanne (2766ms) Who was Picasso? the Cone wing 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, is now housed in, the Cone wing) -> the Cone wing (2788ms) Who was Picasso? the park 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (" Pablo Picasso, was sketching in, the park) -> the park (2788ms) Who was Picasso? Pisa 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, is in, Pisa) -> Pisa (2784ms) Who was Picasso? a restaurant 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, is sitting in, a restaurant) -> a restaurant (2788ms) Who was Picasso? spain 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, was born in, spain) -> spain (2775ms) Who was Picasso? Paris 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, was in, Paris) -> Paris (2788ms) Who was Picasso? the grandfather 0.555555555552 Who was Picasso? -> $x: (picasso, be know for, $x) -> (Picasso, is known for being, the grandfather) -> the grandfather (2784ms) Who was Picasso? 1949 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, was born in, 1949) -> 1949 (2784ms) Who was Picasso? One Response 0.555555555552 Who was Picasso? -> $x: ($x, happen to, pablo) -> (One Response, ever happened to, the gunboat San Pablo) -> One Response (2784ms) Who was Picasso? 1988 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, was published in, 1988) -> 1988 (2784ms) Who was Picasso? a shock ? 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso?, is in for, a shock ?) -> a shock ? (2784ms) Who was Picasso? 02:39:48 0.555555555552 Who was Picasso? -> $x: ($x, happen to, pablo) -> (02:39:48, happened to, Pablo Ramos) -> 02:39:48 (2788ms) Who was Picasso? a lot 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (his creative period Pablo Picasso, was acting in, a lot) -> a lot (2788ms) Who was Picasso? jail 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, was in, jail) -> jail (2796ms) Who was Picasso? the centre 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (the M?laga-born Pablo Picasso ?, is bang in, the centre) -> the centre (2788ms) Who was Picasso? the domain 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, is an inscrutable one in, the domain) -> the domain (2796ms) Who was Picasso? the south 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, is located in, the south) -> the south (2792ms) Who was Picasso? 1895 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, was born in, 1895) -> 1895 (2788ms) Who was Picasso? the 1970s 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, was similarly honored in, the 1970s) -> the 1970s (2784ms) Who was Picasso? PhotoShop CS2 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, was created in, PhotoShop CS2) -> PhotoShop CS2 (2792ms) Who was Picasso? Malaga Spain 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, was born in, Malaga Spain) -> Malaga Spain (2788ms) Who was Picasso? May 0.555555555552 Who was Picasso? -> $x: ($x, be in, pablo picasso) -> (May, was later honored in, Pablo Picasso) -> May (2788ms) Who was Picasso? life 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso Love, is the greatest refreshment in, life) -> life (2780ms) Who was Picasso? Mougins 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, was living in, Mougins) -> Mougins (2784ms) Who was Picasso? the range 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso paintings, are trading in, the range) -> the range (2796ms) Who was Picasso? PRINTS 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (pablo-picasso, is a visual artist in the field of, PRINTS) -> PRINTS (2780ms) Who was Picasso? an ad 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso?s work, was featured in, an ad) -> an ad (2796ms) Who was Picasso? southern Spain 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (The artist Pablo Picasso, was born in, southern Spain) -> southern Spain (2780ms) Who was Picasso? 1881 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, was born in, 1881) -> 1881 (2796ms) Who was Picasso? Mlaga 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, was born in, Mlaga) -> Mlaga (2796ms) Who was Picasso? Collection 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (pablo-picasso, is a visual artist in the field of, Collection) -> Collection (2792ms) Who was Picasso? advertising 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, are resurfacing in, advertising) -> advertising (2792ms) Who was Picasso? the movement 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, were foremost in introducing, the movement) -> the movement (2780ms) Who was Picasso? stinging and brilliant quips 0.555555555552 Who was Picasso? -> $x: (picasso, be know for, $x) -> (Picasso, was known for making, stinging and brilliant quips) -> stinging and brilliant quips (2784ms) Who was Picasso? the Museum 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso?s prints, was put on in, the Museum) -> the Museum (2792ms) Who was Picasso? October 1881 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Ruiz Picasso, was born in, October 1881) -> October 1881 (2796ms) Who was Picasso? 1982 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (The Spanish school Pablo Picasso, was founded in, 1982) -> 1982 (2792ms) Who was Picasso? M?laga 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, was born in, M?laga) -> M?laga (2792ms) Who was Picasso? revolt 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (? Pablo Picasso ?The whole world, is in, revolt) -> revolt (2784ms) Who was Picasso? PAINTING 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (pablo-picasso, is a visual artist in the field of, PAINTING) -> PAINTING (2793ms) Who was Picasso? Art 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (pablo-picasso, is a visual artist in the field of, Art) -> Art (2784ms) Who was Picasso? questioning 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, was brought in for, questioning) -> questioning (2784ms) Who was Picasso? sculpture 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (pablo-picasso, is a visual artist in the field of, sculpture) -> sculpture (2775ms) Who was Picasso? the case 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, was considered a suspect in, the case) -> the case (2788ms) Who was Picasso? the everyday 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picasso, is embedded in, the everyday) -> the everyday (2780ms) Who was Picasso? Scott Fitzgerald 0.555555555552 Who was Picasso? -> $x: ($x, be in, pablo picasso) -> (Scott Fitzgerald, is standing in, the corner?Pablo Picasso) -> Scott Fitzgerald (2775ms) Who was Picasso? periods 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (Pablo Picassos work, is categorized in, periods) -> periods (2788ms) Who was Picasso? Paintings 0.555555555552 Who was Picasso? -> $x: (pablo picasso, be in, $x) -> (pablo-picasso, is a visual artist in the field of, Paintings) -> Paintings (2792ms) Who was Picasso? NL West Report 0.555555555552 Who was Picasso? -> $x: ($x, happen to, pablo) -> (NL West Report, Happened to, Pablo Sandoval) -> NL West Report (2796ms) Who was Picasso? The composer 0.444444444442 Who was Picasso? -> $x: ($x, inspire, picasso) -> (The composer, was inspired by, four Picasso paintings) -> The composer (2824ms) Who was Picasso? The mise-en-scene 0.444444444442 Who was Picasso? -> $x: ($x, inspire, picasso) -> (The mise-en-scene, is inspired by, Picasso) -> The mise-en-scene (2825ms) Who was Picasso? Hoffer 0.444444444442 Who was Picasso? -> $x: ($x, influence, picasso) -> (Hoffer, was greatly influenced by, Rembrandt and Picasso) -> Hoffer (2809ms) Who was Picasso? Henry Moore 0.444444444442 Who was Picasso? -> $x: ($x, inspired, picasso) -> (Henry Moore, was inspired by, Picasso?s neo-classical work) -> Henry Moore (2823ms) Who was Picasso? eyes 0.444444444442 Who was Picasso? -> $x: ($x, influence, picasso) -> (eyes, show a direct influence from, Picasso?s Guernica) -> eyes (2823ms) Who was Picasso? the rough , 0.444444444442 Who was Picasso? -> $x: ($x, help, picasso) -> (the rough ,, help discover, the next Picasso) -> the rough , (2816ms) Who was Picasso? artists 0.444444444442 Who was Picasso? -> $x: ($x, influence, picasso) -> (artists, influenced by, Braque and Picasso) -> artists (2825ms) Who was Picasso? 2011 collection 0.444444444442 Who was Picasso? -> $x: ($x, inspired, picasso) -> (2011 collection, was inspired by, the famous ship thief Picasso) -> 2011 collection (2825ms) Who was Picasso? Reviewers 0.444444444442 Who was Picasso? -> $x: ($x, influence, picasso) -> (Reviewers, have noted influences of, Picasso) -> Reviewers (2825ms) Who was Picasso? color 0.444444444442 Who was Picasso? -> $x: ($x, influence, picasso) -> (color, was influenced by, Picasso and Matisse) -> color (2820ms) Who was Picasso? the prints 0.444444444442 Who was Picasso? -> $x: ($x, here, picasso) -> (the prints, here show little of, Picasso) -> the prints (2814ms) Who was Picasso? The exhibit 0.444444444442 Who was Picasso? -> $x: ($x, here, picasso) -> (The exhibit, is here from, the Mus?e National Picasso) -> The exhibit (2816ms) Who was Picasso? the Blue Guitar 0.444444444442 Who was Picasso? -> $x: ($x, inspire, picasso) -> (the Blue Guitar, was inspired by, Picasso) -> the Blue Guitar (2825ms) Who was Picasso? African masks 0.444444444442 Who was Picasso? -> $x: ($x, influence, picasso) -> (African masks, was an enormous influence on, Picasso) -> African masks (2816ms) Who was Picasso? The Manet composition 0.444444444442 Who was Picasso? -> $x: ($x, inspire, picasso) -> (The Manet composition, inspired, Picasso) -> The Manet composition (2821ms) Who was Picasso? instance Basquiat 0.444444444442 Who was Picasso? -> $x: ($x, influence, picasso) -> (instance Basquiat, was influenced by, Matisse and Picasso) -> instance Basquiat (2824ms) Who was Picasso? Lebrun 0.444444444442 Who was Picasso? -> $x: ($x, influence, picasso) -> (Lebrun, also acknowledged the influence of, Picasso) -> Lebrun (2824ms) Who was Picasso? the SPCA 0.444444444442 Who was Picasso? -> $x: ($x, kill, picasso) -> (the SPCA, killed, Picasso) -> the SPCA (2820ms) Who was Picasso? Anthony Hopkins 0.444444444442 Who was Picasso? -> $x: ($x, play, picasso) -> (Anthony Hopkins, played, Picasso) -> Anthony Hopkins (2820ms) Who was Picasso? the most infamous event 0.444444444442 Who was Picasso? -> $x: ($x, inspire, picasso) -> (the most infamous event, inspired, Picasso) -> the most infamous event (2812ms) Who was Picasso? Marseille 0.444444444442 Who was Picasso? -> $x: ($x, here, picasso) -> (Marseille, People born here, Olivier Widmaier Picasso) -> Marseille (2821ms) Who was Picasso? Liguria 0.444444444442 Who was Picasso? -> $x: ($x, here, picasso) -> (Liguria, People born here, Lamberto Picasso) -> Liguria (2809ms) Who was Picasso? Scott 0.444444444442 Who was Picasso? -> $x: ($x, play, picasso) -> (Scott, played, Picasso) -> Scott (2821ms) Who was Picasso? Pictured 0.444444444442 Who was Picasso? -> $x: ($x, here, picasso) -> (Pictured, here is my attempt at, a Picasso-esque self portrait) -> Pictured (2824ms) Who was Picasso? a touch 0.444444444442 Who was Picasso? -> $x: ($x, here, picasso) -> (a touch, here is, Picasso) -> a touch (2814ms) Who was Picasso? Ben Schrager 0.444444444442 Who was Picasso? -> $x: ($x, play, picasso) -> (Ben Schrager, played, Picasso) -> Ben Schrager (2816ms) Who was Picasso? Banderas 0.444444444442 Who was Picasso? -> $x: ($x, play, picasso) -> (Banderas, is the right man to play, Picasso) -> Banderas (2814ms) Who was Picasso? Casals 0.444444444442 Who was Picasso? -> $x: ($x, play, picasso) -> (Casals, played, the cello or Picasso) -> Casals (2800ms) Who was Picasso? African tribal art 0.444444444442 Who was Picasso? -> $x: ($x, inspire, picasso) -> (African tribal art, had so inspired, Picasso) -> African tribal art (2816ms) Who was Picasso? a bygone period 0.444444444442 Who was Picasso? -> $x: ($x, here, picasso) -> (a bygone period, enjoyed here by, Picasso) -> a bygone period (2809ms) Who was Picasso? a famous artist 0.444444444442 Who was Picasso? -> $x: ($x, help, picasso) -> (a famous artist, certainly helped, Picasso) -> a famous artist (2825ms) Who was Picasso? drawings 0.444444444442 Who was Picasso? -> $x: ($x, influence, picasso) -> (drawings, show the influence of, Picasso) -> drawings (2824ms) Who was Picasso? Marie-Therese Walter 0.444444444442 Who was Picasso? -> $x: ($x, inspire, picasso) -> (Marie-Therese Walter, inspired, Picasso paintings) -> Marie-Therese Walter (2825ms) Who was Picasso? Shaun 0.444444444442 Who was Picasso? -> $x: ($x, play, picasso) -> (Shaun, was playing Elvis in, the Steve Martin play Picasso) -> Shaun (2800ms) Who was Picasso? Siguenza 0.444444444442 Who was Picasso? -> $x: ($x, play, picasso) -> (Siguenza, plays, Picasso) -> Siguenza (2821ms) Who was Picasso? the young title character 0.444444444442 Who was Picasso? -> $x: ($x, play, picasso) -> (the young title character, plays, Picasso) -> the young title character (2825ms) Who was Picasso? the event 0.444444444442 Who was Picasso? -> $x: ($x, inspire, picasso) -> (the event, inspired, Picasso) -> the event (2825ms) Who was Picasso? the 20th century 0.444444444442 Who was Picasso? -> $x: ($x, influence, picasso) -> (the 20th century, was influenced by, Picasso) -> the 20th century (2816ms) Who was Picasso? Mir? 0.444444444442 Who was Picasso? -> $x: ($x, influence, picasso) -> (Mir?, was influenced by, Picasso) -> Mir? (2809ms) Who was Picasso? Pollock 0.444444444442 Who was Picasso? -> $x: ($x, influence, picasso) -> (Pollock, was influenced by, Picasso) -> Pollock (2823ms) Who was Picasso? Montevideo 0.444444444442 Who was Picasso? -> $x: ($x, here, picasso) -> (Montevideo, People born here, Francisco Picasso) -> Montevideo (2824ms) Who was Picasso? the Cycladic collection 0.444444444442 Who was Picasso? -> $x: ($x, inspire, picasso) -> (the Cycladic collection, inspired such artists as, Picasso) -> the Cycladic collection (2825ms) Who was Picasso? well-known city 0.444444444442 Who was Picasso? -> $x: ($x, inspire, picasso) -> (well-known city, inspires, Picasso) -> well-known city (2826ms) Who was Picasso? mac Finder 0.444444444442 Who was Picasso? -> $x: ($x, inspired, picasso) -> (mac Finder, was inspired by, Picasso...it) -> mac Finder (2814ms) Who was Picasso? Jon Lovitz 0.444444444442 Who was Picasso? -> $x: ($x, play, picasso) -> (Jon Lovitz, played, Picasso) -> Jon Lovitz (2816ms) Who was Picasso? Even more far-fetched 0.444444444442 Who was Picasso? -> $x: ($x, play, picasso) -> (Even more far-fetched, was playing, Picasso) -> Even more far-fetched (2824ms) Who was Picasso? young children 0.444444444442 Who was Picasso? -> $x: ($x, play, picasso) -> (young children, will play, Picasso) -> young children (2809ms) Who was Picasso? Dilema 0.444444444442 Who was Picasso? -> $x: ($x, inspire, picasso) -> (Dilema, is inspired by, Picasso) -> Dilema (2814ms) Who was Picasso? artwork 0.444444444442 Who was Picasso? -> $x: ($x, inspired, picasso) -> (artwork, were inspired by, Picasso?s greatest muse) -> artwork (2824ms) Who was Picasso? The most famous painting 0.444444444442 Who was Picasso? -> $x: ($x, here, picasso) -> (The most famous painting, here is, Picasso?s Guernica) -> The most famous painting (2825ms) Who was Picasso? Gauguin 0.444444444442 Who was Picasso? -> $x: ($x, influence, picasso) -> (Gauguin, influenced, Picasso) -> Gauguin (2820ms) Who was Picasso? Early works 0.444444444442 Who was Picasso? -> $x: ($x, influence, picasso) -> (Early works, were influenced by, Picasso) -> Early works (2816ms) Who was Picasso? Pablo Picasso Guernica 0.444444444442 Who was Picasso? -> $x: ($x, inspired, picasso) -> (Pablo Picasso Guernica, was inspired by, Picasso) -> Pablo Picasso Guernica (2812ms) Who was Picasso? Hockney 0.444444444442 Who was Picasso? -> $x: ($x, inspired, picasso) -> (Hockney, had been inspired by, Picasso?s art) -> Hockney (2809ms) Who was Picasso? the land 0.444444444442 Who was Picasso? -> $x: ($x, inspire, picasso) -> (the land, inspired, Picasso) -> the land (2825ms) Who was Picasso? the sites 0.444444444442 Who was Picasso? -> $x: ($x, inspired, picasso) -> (the sites, inspired artists as diverse as, Renoir and Picasso) -> the sites (2820ms) Who was Picasso? ASCII art 0.444444444442 Who was Picasso? -> $x: ($x, here, picasso) -> (ASCII art, here go, my Picasso skills) -> ASCII art (2825ms) Who was Picasso? Albert Einstein 0.444444444442 Who was Picasso? -> $x: ($x, play, picasso) -> (Albert Einstein, Plays Appears In, Picasso at the Lapin Agile) -> Albert Einstein (2816ms) Who was Picasso? major works 0.444444444442 Who was Picasso? -> $x: ($x, influence, picasso) -> (major works, influences on, Picasso) -> major works (2812ms) Who was Picasso? digital photographs 0.444444444442 Who was Picasso? -> $x: ($x, play, picasso) -> (digital photographs, get to play, Picasso) -> digital photographs (2800ms) Who was Picasso? Okamoto Taro?s 0.444444444442 Who was Picasso? -> $x: ($x, inspire, picasso) -> (Okamoto Taro?s, was inspired by, Picasso) -> Okamoto Taro?s (2800ms) Who was Picasso? The original title 0.444444444442 Who was Picasso? -> $x: ($x, play, picasso) -> (The original title, is a play on, Picasso) -> The original title (2809ms) Who was Picasso? American Abstract Expressionists 0.444444444442 Who was Picasso? -> $x: ($x, influence, picasso) -> (American Abstract Expressionists, was influenced by, Picasso) -> American Abstract Expressionists (2821ms) Who was Picasso? V?ster?s 0.444444444442 Who was Picasso? -> $x: ($x, here, picasso) -> (V?ster?s, People born here, Marie Picasso) -> V?ster?s (2812ms) Who was Picasso? The crucial role 0.444444444442 Who was Picasso? -> $x: ($x, play, picasso) -> (The crucial role, played by, Picasso) -> The crucial role (2820ms) Who was Picasso? gregarious social gatherings 0.444444444442 Who was Picasso? -> $x: ($x, play, picasso) -> (gregarious social gatherings, played a major part in, Picasso) -> gregarious social gatherings (2804ms) Who was Picasso? the Spanish town 0.444444444442 Who was Picasso? -> $x: ($x, inspire, picasso) -> (the Spanish town, inspired, Picasso?s greatest work) -> the Spanish town (2823ms) Who was Picasso? The artistic world 0.444444444442 Who was Picasso? -> $x: ($x, influence, picasso) -> (The artistic world, was widely influenced by, Picasso) -> The artistic world (2812ms) Who was Picasso? the UPA artists 0.444444444442 Who was Picasso? -> $x: ($x, inspire, picasso) -> (the UPA artists, were inspired by, Picasso) -> the UPA artists (2824ms) Who was Picasso? A 5 page paper 0.444444444442 Who was Picasso? -> $x: ($x, influence, picasso) -> (A 5 page paper, discusses the influence of, Picasso) -> A 5 page paper (2809ms) Who was Picasso? A great comparison 0.444444444442 Who was Picasso? -> $x: ($x, here, picasso) -> (A great comparison, can be seen here in, Picasso) -> A great comparison (2812ms) Who was Picasso? a famous painter 0.444444444442 Who was Picasso? -> $x: ($x, influence, picasso) -> (a famous painter, influenced, Picasso) -> a famous painter (2812ms) Who was Picasso? The setup 0.444444444442 Who was Picasso? -> $x: ($x, here, picasso) -> (The setup, here looked just as, Picasso) -> The setup (2825ms) Who was Picasso? French painter and artist 0.444444444442 Who was Picasso? -> $x: ($x, help, picasso) -> (French painter and artist, help, Picasso and Matisse) -> French painter and artist (2821ms) Who was Picasso? Design 0.444444444442 Who was Picasso? -> $x: ($x, inspire, picasso) -> (Design, was inspired by, Picasso) -> Design (2821ms) Who was Picasso? an example 0.444444444442 Who was Picasso? -> $x: ($x, inspired, picasso) -> (an example, is inspired by, Picasso) -> an example (2821ms) Who was Picasso? the best tourist destinations 0.444444444442 Who was Picasso? -> $x: ($x, here, picasso) -> (the best tourist destinations, here is, the Picasso museum) -> the best tourist destinations (2800ms) Who was Picasso? The subject 0.444444444442 Who was Picasso? -> $x: ($x, here, picasso) -> (The subject, here is, Picasso Vollard suite) -> The subject (2820ms) Who was Picasso? Barcelona 0.444444444442 Who was Picasso? -> $x: ($x, inspire, picasso) -> (Barcelona, inspired, Picasso) -> Barcelona (2824ms) Who was Picasso? ray bans 0.444444444442 Who was Picasso? -> $x: ($x, play, picasso) -> (ray bans, played by, Picassos blue man) -> ray bans (2823ms) How did John Quincy Adams die? a stroke 0.777777777776 How did John Quincy Adams die? -> $x: (john quincy adams, die of, $x) -> (President John Quincy Adams, dies of, a stroke) -> a stroke (1791ms) How did John Quincy Adams die? 11 Jul 1767 0.33333333333299997 How did John Quincy Adams die? -> $x: (john quincy adams, be bear on, $x) -> (President John Quincy Adams, was born on, 11 Jul 1767) -> 11 Jul 1767 (2362ms) How did John Quincy Adams die? the 4th 0.33333333333299997 How did John Quincy Adams die? -> $x: (john quincy adams, be bear on, $x) -> (President John Quincy Adams, is born on, the 4th) -> the 4th (1791ms) How did John Quincy Adams die? 1825 0.33333333333299997 How did John Quincy Adams die? -> $x: (john quincy adams, be bear on, $x) -> (john_quincy_adams, is a person born on the date, 1825) -> 1825 (1791ms) How did John Quincy Adams die? July 11 , 1767 0.33333333333299997 How did John Quincy Adams die? -> $x: (john quincy adams, be bear on, $x) -> (John Quincy Adams, was born on, July 11 , 1767) -> July 11 , 1767 (1791ms) How did John Quincy Adams die? July 1767 0.33333333333299997 How did John Quincy Adams die? -> $x: (john quincy adams, be bear on, $x) -> (John Quincy Adams, was born on, July 1767) -> July 1767 (1791ms) How did John Quincy Adams die? August 18 0.33333333333299997 How did John Quincy Adams die? -> $x: (john quincy adams, be bear on, $x) -> (President John Quincy Adams, is born on, August 18) -> August 18 (1791ms) How did John Quincy Adams die? different ways 0.333333333331 How did John Quincy Adams die? -> $x: (john quincy adams, die in, $x) -> (John Quincy Adams, died in very, different ways) -> different ways (2362ms) How did John Quincy Adams die? the Speaker?s room 0.333333333331 How did John Quincy Adams die? -> $x: (john quincy adams, die in, $x) -> (John Quincy Adams, died in, the Speaker?s room) -> the Speaker?s room (2362ms) How did John Quincy Adams die? 1848 0.333333333331 How did John Quincy Adams die? -> $x: (john quincy adams, die in, $x) -> (John Quincy Adams, died in, 1848) -> 1848 (2362ms) How did John Quincy Adams die? the Fourth 0.222222222224 How did John Quincy Adams die? -> $x: (thomas adams, die on, $x) -> (John Adams and Thomas Jefferson, died on, the Fourth) -> the Fourth (2493ms) How did John Quincy Adams die? the same day 0.222222222224 How did John Quincy Adams die? -> $x: (thomas adams, die on, $x) -> (the Thomas Jefferson and John Adams, died on, the same day) -> the same day (2416ms) How did John Quincy Adams die? July 4 , 1826. 0.222222222224 How did John Quincy Adams die? -> $x: (thomas adams, die on, $x) -> (John Adams and and Thomas Jefferson, died on, July 4 , 1826.) -> July 4 , 1826. (2362ms) How did John Quincy Adams die? July 4th , 1826 0.222222222224 How did John Quincy Adams die? -> $x: (thomas adams, die on, $x) -> (John Adams and Thomas Jefferson, died on, July 4th , 1826) -> July 4th , 1826 (2493ms) How did John Quincy Adams die? the same July 4th 0.222222222224 How did John Quincy Adams die? -> $x: (thomas adams, die on, $x) -> (John Adams and Thomas Jefferson, died on, the same July 4th) -> the same July 4th (2416ms) How did John Quincy Adams die? the 50th Anniversary 0.222222222224 How did John Quincy Adams die? -> $x: (thomas adams, die on, $x) -> (John Adams and Thomas Jefferson, died on, the 50th Anniversary) -> the 50th Anniversary (2493ms) How did John Quincy Adams die? February 23 0.222222222224 How did John Quincy Adams die? -> $x: (john quincy adams, die on, $x) -> (John Quincy Adams, died on, February 23) -> February 23 (2416ms) How did John Quincy Adams die? July 4 , 1826 0.222222222224 How did John Quincy Adams die? -> $x: (thomas adams, die on, $x) -> (both John Adams and Thomas Jefferson, died on, July 4 , 1826) -> July 4 , 1826 (2493ms) How did John Quincy Adams die? October 2 , 1803 0.222222222224 How did John Quincy Adams die? -> $x: (samuel adams, die on, $x) -> (Samuel Adams, died on, October 2 , 1803) -> October 2 , 1803 (2362ms) How did John Quincy Adams die? Russia 0.222222222222 How did John Quincy Adams die? -> $x: (john quincy adams, live in, $x) -> (John Quincy Adams, lived in, Russia) -> Russia (2493ms) How did John Quincy Adams die? Oregon 0.222222222222 How did John Quincy Adams die? -> $x: (john quincy adams, live in, $x) -> (John Quincy Adams Tice, lived in, Oregon) -> Oregon (2493ms) How did John Quincy Adams die? France 0.222222222222 How did John Quincy Adams die? -> $x: (john quincy adams, live in, $x) -> (John Quincy Adams, lived in, France) -> France (2493ms) How did John Quincy Adams die? Lowell four years 0.222222222222 How did John Quincy Adams die? -> $x: (john quincy adams, live in, $x) -> (John Quincy Adams Thayer, has lived in, Lowell four years) -> Lowell four years (2493ms) How did John Quincy Adams die? 2 July 1870 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam Lawyer, died on, 2 July 1870) -> 2 July 1870 (2609ms) How did John Quincy Adams die? a treadmill 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Douglas Adams, died on, a treadmill) -> a treadmill (5182ms) How did John Quincy Adams die? 8 Nov 1593 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam, died on, 8 Nov 1593) -> 8 Nov 1593 (5206ms) How did John Quincy Adams die? 13 Jan 1890 0.11111111111300004 How did John Quincy Adams die? -> $x: (john wesley, die on, $x) -> (John Wesley Slip, died on, 13 Jan 1890) -> 13 Jan 1890 (5223ms) How did John Quincy Adams die? the 50 th anniversary 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (John Adams, died on, the 50 th anniversary) -> the 50 th anniversary (2609ms) How did John Quincy Adams die? 22 April 1984 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Ansel Adams, died on, 22 April 1984) -> 22 April 1984 (5215ms) How did John Quincy Adams die? the same days 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (John Adams, died on, the same days) -> the same days (5215ms) How did John Quincy Adams die? 18 Jan 1658 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (William Adams, died on, 18 Jan 1658) -> 18 Jan 1658 (5206ms) How did John Quincy Adams die? the day 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam, did die on, the day) -> the day (5224ms) How did John Quincy Adams die? Friday morning 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Mr Adams, died on, Friday morning) -> Friday morning (5206ms) How did John Quincy Adams die? 4 July 1826 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (John Adams, died on, 4 July 1826) -> 4 July 1826 (2608ms) How did John Quincy Adams die? 3rd October 2011 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Anna Adams, died on, 3rd October 2011) -> 3rd October 2011 (5215ms) How did John Quincy Adams die? the 4th August 2003 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam, died on, the 4th August 2003) -> the 4th August 2003 (3744ms) How did John Quincy Adams die? 1 Mar 1787 in Otis 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Richard Adams, died on, 1 Mar 1787 in Otis) -> 1 Mar 1787 in Otis (5215ms) How did John Quincy Adams die? April 22 , 1984 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adams, died on, April 22 , 1984) -> April 22 , 1984 (5182ms) How did John Quincy Adams die? 29-Sep-1831 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Mary Adams, died on, 29-Sep-1831) -> 29-Sep-1831 (4468ms) How did John Quincy Adams die? 27 March 1918 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adams, died on, 27 March 1918) -> 27 March 1918 (5224ms) How did John Quincy Adams die? the basketball court 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam, was dying on, the basketball court) -> the basketball court (3301ms) How did John Quincy Adams die? September 23 , 1999 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam, died on, September 23 , 1999) -> September 23 , 1999 (3301ms) How did John Quincy Adams die? October 29 , 1873 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (George Adams, died on, October 29 , 1873) -> October 29 , 1873 (3744ms) How did John Quincy Adams die? April 4 , 2011 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam Dennis Adam Dennis, died on, April 4 , 2011) -> April 4 , 2011 (3484ms) How did John Quincy Adams die? Friday 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam Yauch, died on, Friday) -> Friday (5206ms) How did John Quincy Adams die? June 4 , 2000 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam, died on, June 4 , 2000) -> June 4 , 2000 (4468ms) How did John Quincy Adams die? August 10 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam, died on, August 10) -> August 10 (2609ms) How did John Quincy Adams die? 1 September 1996 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Brother Adam, died on, 1 September 1996) -> 1 September 1996 (5224ms) How did John Quincy Adams die? 9/11 31 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam K. Ruhalter, died on, 9/11 31) -> 9/11 31 (5206ms) How did John Quincy Adams die? August 28th 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam, died last year on, August 28th) -> August 28th (5206ms) How did John Quincy Adams die? May 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Douglas Adams, died on, May) -> May (5206ms) How did John Quincy Adams die? July 4 , 1826 , 50 years 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (John Adams, died on, July 4 , 1826 , 50 years) -> July 4 , 1826 , 50 years (3484ms) How did John Quincy Adams die? August 25 , 1862 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam Lemp, died on, August 25 , 1862) -> August 25 , 1862 (5215ms) How did John Quincy Adams die? March 1 , 1893 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam Goretski, died on, March 1 , 1893) -> March 1 , 1893 (3484ms) How did John Quincy Adams die? the very same day 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (John Adams, died on, the very same day) -> the very same day (5215ms) How did John Quincy Adams die? 20 Mar 1947 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Edith Jamison Adams, died on, 20 Mar 1947) -> 20 Mar 1947 (2609ms) How did John Quincy Adams die? same day 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Jefferson and Adams, dying on, same day) -> same day (5182ms) How did John Quincy Adams die? May 11 , 2001 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Douglas Adams, died on, May 11 , 2001) -> May 11 , 2001 (3198ms) How did John Quincy Adams die? August 17 , 1894 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Mr. J. Adam Lautz, died on, August 17 , 1894) -> August 17 , 1894 (5182ms) How did John Quincy Adams die? May 17 , 1967 0.11111111111300004 How did John Quincy Adams die? -> $x: (john wesley, die on, $x) -> (John Wesley Work, died on, May 17 , 1967) -> May 17 , 1967 (4468ms) How did John Quincy Adams die? April 24th , 1984 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adams, died on, April 24th , 1984) -> April 24th , 1984 (3744ms) How did John Quincy Adams die? Independence Day 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (John Adams, died on, Independence Day) -> Independence Day (3484ms) How did John Quincy Adams die? July 17 , 1790 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam Smith, died on, July 17 , 1790) -> July 17 , 1790 (5182ms) How did John Quincy Adams die? August 27 , 1864 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Hannah Adams, died on, August 27 , 1864) -> August 27 , 1864 (3301ms) How did John Quincy Adams die? July 4 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (John Adams, died on, July 4) -> July 4 (5206ms) How did John Quincy Adams die? 11 AUG 1894 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam, died on, 11 AUG 1894) -> 11 AUG 1894 (3301ms) How did John Quincy Adams die? August 30 , 1961 0.11111111111300004 How did John Quincy Adams die? -> $x: (john wesley, die on, $x) -> (John Wesley Dobbs, died on, August 30 , 1961) -> August 30 , 1961 (2608ms) How did John Quincy Adams die? 30 Aug 1885 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam Lightner, died on, 30 Aug 1885) -> 30 Aug 1885 (5223ms) How did John Quincy Adams die? August 15 , 1999 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adams County, died on, August 15 , 1999) -> August 15 , 1999 (5215ms) How did John Quincy Adams die? Thursday 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adams county, died on, Thursday) -> Thursday (4468ms) How did John Quincy Adams die? Sunday 3rd 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Anna Adams, died on, Sunday 3rd) -> Sunday 3rd (3301ms) How did John Quincy Adams die? 15 Dec 1926 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adams Co., died on, 15 Dec 1926) -> 15 Dec 1926 (5215ms) How did John Quincy Adams die? the same day as Thomas Jefferson 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adams, died on, the same day as Thomas Jefferson) -> the same day as Thomas Jefferson (3484ms) How did John Quincy Adams die? the floor 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adams, died on, the floor) -> the floor (5223ms) How did John Quincy Adams die? October 28 , 1818 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adams, died on, October 28 , 1818) -> October 28 , 1818 (5215ms) How did John Quincy Adams die? the Sultana 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam Schneider, died on, the Sultana) -> the Sultana (5206ms) How did John Quincy Adams die? the cross 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam, died on, the cross) -> the cross (5215ms) How did John Quincy Adams die? 10 October 1866 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam Darr, died on, 10 October 1866) -> 10 October 1866 (3198ms) How did John Quincy Adams die? the table 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam, dies on, the table) -> the table (5182ms) How did John Quincy Adams die? Saturday afternoon 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adams, had died on, Saturday afternoon) -> Saturday afternoon (3484ms) How did John Quincy Adams die? November 18 , 1830 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam Weishaupt, died on, November 18 , 1830) -> November 18 , 1830 (5215ms) How did John Quincy Adams die? a Friday 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam, died on, a Friday) -> a Friday (4468ms) How did John Quincy Adams die? the 50th anniversary 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (John Adams, died on, the 50th anniversary) -> the 50th anniversary (3198ms) How did John Quincy Adams die? May 20 , 2009 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Ted Adams, died on, May 20 , 2009) -> May 20 , 2009 (3301ms) How did John Quincy Adams die? crusade and Marjorie 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adam, died on, crusade and Marjorie) -> crusade and Marjorie (5215ms) How did John Quincy Adams die? 6 Dec 1908 aged 47 0.11111111111300004 How did John Quincy Adams die? -> $x: (john wesley, die on, $x) -> (John Wesley Potter, died on, 6 Dec 1908 aged 47) -> 6 Dec 1908 aged 47 (5206ms) How did John Quincy Adams die? July 4th 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Adams, died on, July 4th) -> July 4th (5206ms) How did John Quincy Adams die? the Cross 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (the Last Adam, died on, the Cross) -> the Cross (5182ms) How did John Quincy Adams die? a midnight 0.11111111111300004 How did John Quincy Adams die? -> $x: (adams, die on, $x) -> (Old Adam, died on, a midnight) -> a midnight (3198ms) How did John Quincy Adams die? cardiac arrest 0.11111111111200003 How did John Quincy Adams die? -> $x: (thomas adams, die from, $x) -> (16 High school sophomore Thomas Adams, died from, cardiac arrest) -> cardiac arrest (5223ms) How did John Quincy Adams die? Afghanistan 0.11111111111100003 How did John Quincy Adams die? -> $x: (thomas harris, die in, $x) -> (Navy Seal Joshua Thomas Harris, died serving in, Afghanistan) -> Afghanistan (5223ms) How did John Quincy Adams die? the same year 0.11111111111100003 How did John Quincy Adams die? -> $x: (thomas adams, die in, $x) -> (John Adams and Thomas Jefferson, died in, the same year) -> the same year (5224ms) How did John Quincy Adams die? 1803 0.11111111111100003 How did John Quincy Adams die? -> $x: (samuel adams, die in, $x) -> (Samuel Adams, died in, 1803) -> 1803 (5223ms) How did John Quincy Adams die? 1832.?Born 0.11111111111100003 How did John Quincy Adams die? -> $x: (thomas adams, die in, $x) -> (Thomas Boylston Adams, died in, 1832.?Born) -> 1832.?Born (5224ms) How did John Quincy Adams die? 1826 0.11111111111100003 How did John Quincy Adams die? -> $x: (thomas adams, die in, $x) -> (John Adams and Thomas Jefferson, died in, 1826) -> 1826 (5223ms) How did John Quincy Adams die? Masked Dispatches 0.111111111111 How did John Quincy Adams die? -> $x: ($x, do, john quincy adams) -> (Masked Dispatches, does, John Quincy Adams) -> Masked Dispatches (5232ms) How did John Quincy Adams die? any others 0.11111111111 How did John Quincy Adams die? -> $x: (john quincy adams, do, $x) -> (John Quincy Adams Possibly Related Reading, Do, any others) -> any others (5232ms) How did John Quincy Adams die? the 19th century 0.11111111111 How did John Quincy Adams die? -> $x: (john quincy adams, do, $x) -> (President John Quincy Adams, had done in, the 19th century) -> the 19th century (5232ms) How did John Quincy Adams die? the Barbary States 0.11111111111 How did John Quincy Adams die? -> $x: (john quincy adams, do, $x) -> (John Quincy Adams, did n?t have to deal with, the Barbary States) -> the Barbary States (5232ms) How did John Quincy Adams die? an alcohol related death 0.111111111107 How did John Quincy Adams die? -> $x: (john quincy adams, die, $x) -> (President John Quincy Adams, dies, an alcohol related death) -> an alcohol related death (5232ms) How did John Quincy Adams die? age 80 0.111111111107 How did John Quincy Adams die? -> $x: (john quincy adams, die, $x) -> (1848 John Quincy Adams, died at, age 80) -> age 80 (5232ms) How did John Quincy Adams die? two days later 0.111111111107 How did John Quincy Adams die? -> $x: (john quincy adams, die, $x) -> (John Quincy Adams, died, two days later) -> two days later (5232ms) How did John Quincy Adams die? complications 1.0000333894311098E-12 How did John Quincy Adams die? -> $x: (adams, die from, $x) -> (Adam, died from, complications) -> complications (5232ms) How did John Quincy Adams die? head-on crashes 1.0000333894311098E-12 How did John Quincy Adams die? -> $x: (adams, die from, $x) -> (Adam Petty, died months apart from, head-on crashes) -> head-on crashes (5241ms) How did John Quincy Adams die? acute lymphocytic leukemia 1.0000333894311098E-12 How did John Quincy Adams die? -> $x: (adams, die from, $x) -> (Adam Jernee, died from, acute lymphocytic leukemia) -> acute lymphocytic leukemia (5241ms) How did John Quincy Adams die? an improvised explosive device 1.0000333894311098E-12 How did John Quincy Adams die? -> $x: (adams, die from, $x) -> (Adams, died from, an improvised explosive device) -> an improvised explosive device (5241ms) How did John Quincy Adams die? a jump or fall 1.0000333894311098E-12 How did John Quincy Adams die? -> $x: (adams, die from, $x) -> (DC 20 April George Washington Adams, dies from, a jump or fall) -> a jump or fall (5241ms) How did John Quincy Adams die? mercuric cyanide poisoning 1.0000333894311098E-12 How did John Quincy Adams die? -> $x: (adams, die from, $x) -> (Mrs. Adams, had died from, mercuric cyanide poisoning) -> mercuric cyanide poisoning (5241ms) How did John Quincy Adams die? massive head injuries 1.0000333894311098E-12 How did John Quincy Adams die? -> $x: (adams, die from, $x) -> (Adam, died instantly from, massive head injuries) -> massive head injuries (5241ms) How did John Quincy Adams die? a poisonous bite 1.0000333894311098E-12 How did John Quincy Adams die? -> $x: (adams, die from, $x) -> (Adam de la Rupe, died from, a poisonous bite) -> a poisonous bite (5241ms) How did John Quincy Adams die? head injuries 1.0000333894311098E-12 How did John Quincy Adams die? -> $x: (adams, die from, $x) -> (Essex teenager Adam Gosling, died from, head injuries) -> head injuries (5241ms) How did John Quincy Adams die? Enoch?s arms 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, Enoch?s arms) -> Enoch?s arms (5274ms) How did John Quincy Adams die? every hypothesis 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, was to die in, every hypothesis) -> every hypothesis (5249ms) How did John Quincy Adams die? 1840 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam Poe, died in, 1840) -> 1840 (5249ms) How did John Quincy Adams die? the spirit 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, the spirit) -> the spirit (5281ms) How did John Quincy Adams die? 1791 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (john wesley, die in, $x) -> (John Wesley, died in, 1791) -> 1791 (5274ms) How did John Quincy Adams die? 1878 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, 1878) -> 1878 (5290ms) How did John Quincy Adams die? Franklin 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam Carson, died in, Franklin) -> Franklin (5266ms) How did John Quincy Adams die? a Los Angeles hospital 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died Wednesday in, a Los Angeles hospital) -> a Los Angeles hospital (5257ms) How did John Quincy Adams die? a racing accident 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, a racing accident) -> a racing accident (5257ms) How did John Quincy Adams die? 1988 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, 1988) -> 1988 (5290ms) How did John Quincy Adams die? the hospital 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died the next day in, the hospital) -> the hospital (5249ms) How did John Quincy Adams die? 1883 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (john wesley, die in, $x) -> (John Wesley, died in, 1883) -> 1883 (5249ms) How did John Quincy Adams die? Quincy 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (John Adams, dies in, Quincy) -> Quincy (5249ms) How did John Quincy Adams die? Camp Bucca 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, Camp Bucca) -> Camp Bucca (5241ms) How did John Quincy Adams die? 1984 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, 1984) -> 1984 (5274ms) How did John Quincy Adams die? May 2001 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, May 2001) -> May 2001 (5281ms) How did John Quincy Adams die? London 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, London) -> London (5266ms) How did John Quincy Adams die? the show 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, really die in, the show) -> the show (5274ms) How did John Quincy Adams die? August 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, August) -> August (5290ms) How did John Quincy Adams die? an X-15 accident 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, an X-15 accident) -> an X-15 accident (5266ms) How did John Quincy Adams die? early 2006 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, early 2006) -> early 2006 (5274ms) How did John Quincy Adams die? a shootout 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, a shootout) -> a shootout (5241ms) How did John Quincy Adams die? the year 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, the year) -> the year (5274ms) How did John Quincy Adams die? Braintree 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, Braintree) -> Braintree (5257ms) How did John Quincy Adams die? sin 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, sin) -> sin (5266ms) How did John Quincy Adams die? the Town 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, the Town) -> the Town (5281ms) How did John Quincy Adams die? 1963 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, 1963) -> 1963 (5249ms) How did John Quincy Adams die? Eve 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, Eve) -> Eve (5257ms) How did John Quincy Adams die? 1972 and 1991 respectively 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, 1972 and 1991 respectively) -> 1972 and 1991 respectively (5241ms) How did John Quincy Adams die? the jubilee year 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, the jubilee year) -> the jubilee year (5257ms) How did John Quincy Adams die? mid-October 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, mid-October) -> mid-October (5257ms) How did John Quincy Adams die? 1860 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, 1860) -> 1860 (5290ms) How did John Quincy Adams die? infancy 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, infancy) -> infancy (5274ms) How did John Quincy Adams die? Massachusetts 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (John Adams, dies in, Massachusetts) -> Massachusetts (5274ms) How did John Quincy Adams die? 1880 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (john wesley, die in, $x) -> (John Wesley Threatt, died in, 1880) -> 1880 (5274ms) How did John Quincy Adams die? 1790 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, 1790) -> 1790 (5281ms) How did John Quincy Adams die? the U.S. House 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, the U.S. House) -> the U.S. House (5249ms) How did John Quincy Adams die? 1748 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Deacon Adams, died in, 1748) -> 1748 (5281ms) How did John Quincy Adams die? 2000 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, 2000) -> 2000 (5290ms) How did John Quincy Adams die? prison 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, prison) -> prison (5266ms) How did John Quincy Adams die? July 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (john wesley, die in, $x) -> (John Wesley Barker, died suddenly in, July) -> July (5274ms) How did John Quincy Adams die? 2001 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, 2001) -> 2001 (5281ms) How did John Quincy Adams die? Michigan 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, Michigan) -> Michigan (5266ms) How did John Quincy Adams die? the garden 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, die there in, the garden) -> the garden (5274ms) How did John Quincy Adams die? Al Asad 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, Al Asad) -> Al Asad (5241ms) How did John Quincy Adams die? 1979 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, 1979) -> 1979 (5249ms) How did John Quincy Adams die? the Capitol Building 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, the Capitol Building) -> the Capitol Building (5266ms) How did John Quincy Adams die? office 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, office) -> office (5281ms) How did John Quincy Adams die? 1912 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died here in, 1912) -> 1912 (5281ms) How did John Quincy Adams die? seminary 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, seminary) -> seminary (5257ms) How did John Quincy Adams die? five different ways 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, five different ways) -> five different ways (5257ms) How did John Quincy Adams die? Paradise 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, Paradise) -> Paradise (5266ms) How did John Quincy Adams die? the recognition 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, the recognition) -> the recognition (5281ms) How did John Quincy Adams die? Franklin Co 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam Carson, died in, Franklin Co) -> Franklin Co (5249ms) How did John Quincy Adams die? a few days 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, would die in, a few days) -> a few days (5257ms) How did John Quincy Adams die? 1850 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, 1850) -> 1850 (5281ms) How did John Quincy Adams die? 2008 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, 2008) -> 2008 (5281ms) How did John Quincy Adams die? 2003 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam Hendelson, died in, 2003) -> 2003 (5257ms) How did John Quincy Adams die? January 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, January) -> January (5274ms) How did John Quincy Adams die? 1951 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, 1951) -> 1951 (5290ms) How did John Quincy Adams die? 1959 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, 1959) -> 1959 (5257ms) How did John Quincy Adams die? 1742 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, 1742) -> 1742 (5266ms) How did John Quincy Adams die? Christ 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, Christ) -> Christ (5281ms) How did John Quincy Adams die? Carmel 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, Carmel) -> Carmel (5249ms) How did John Quincy Adams die? 1906 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (john wesley, die in, $x) -> (John Wesley AULT, died in, 1906) -> 1906 (5281ms) How did John Quincy Adams die? 1792 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Robert Adam, died in, 1792) -> 1792 (5290ms) How did John Quincy Adams die? the process 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, the process) -> the process (5249ms) How did John Quincy Adams die? an accident 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, an accident) -> an accident (5266ms) How did John Quincy Adams die? 1900 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adams, died in, 1900) -> 1900 (5281ms) How did John Quincy Adams die? the Garden 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, the Garden) -> the Garden (5274ms) How did John Quincy Adams die? Topeka 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (john wesley, die in, $x) -> (John Wesley, died in, Topeka) -> Topeka (5266ms) How did John Quincy Adams die? 1562 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (Adam, died in, 1562) -> 1562 (5266ms) How did John Quincy Adams die? 1829 5.551115123125783E-17 How did John Quincy Adams die? -> $x: (adams, die in, $x) -> (John Adams, died in, 1829) -> 1829 (5290ms) How did John Quincy Adams die? 57 1823 -0.0 How did John Quincy Adams die? -> $x: (samuel adams, die, $x) -> (Samuel Adams Holyoke, dies at, 57 1823) -> 57 1823 (5297ms) How did John Quincy Adams die? five years -0.0 How did John Quincy Adams die? -> $x: (thomas adams, die, $x) -> (John Adams and Thomas Jefferson, died, five years) -> five years (5290ms) How did John Quincy Adams die? the crypt -0.0 How did John Quincy Adams die? -> $x: (john quincy adams, be bury in, $x) -> (John Quincy Adams, are buried in, the crypt) -> the crypt (5297ms) How did John Quincy Adams die? the home -0.0 How did John Quincy Adams die? -> $x: (thomas adams, die, $x) -> (cemetery # 44 Thomas J. Adams, died this morning at, the home) -> the home (5304ms) How did John Quincy Adams die? thirty-seven years -0.0 How did John Quincy Adams die? -> $x: (samuel adams, die, $x) -> (Samuel Adams, died at just, thirty-seven years) -> thirty-seven years (5290ms) How did John Quincy Adams die? sea -0.0 How did John Quincy Adams die? -> $x: (samuel adams, die, $x) -> (Captain Samuel Adams, had died at, sea) -> sea (5297ms) How did John Quincy Adams die? 4 March 1812 -0.0 How did John Quincy Adams die? -> $x: (thomas adams, die, $x) -> (Thomas Boylston Adams, dies, 4 March 1812) -> 4 March 1812 (5304ms) How did John Quincy Adams die? Sat -0.0 How did John Quincy Adams die? -> $x: (thomas adams, die, $x) -> (resident Thomas Adams, died, Sat) -> Sat (5304ms) How did John Quincy Adams die? hours -0.0 How did John Quincy Adams die? -> $x: (thomas adams, die, $x) -> (John Adams and Thomas Jefferson, died within, hours) -> hours (5304ms) How did John Quincy Adams die? 184 years -0.0 How did John Quincy Adams die? -> $x: (thomas adams, die, $x) -> (John Adams and Thomas Jefferson, died exactly, 184 years) -> 184 years (5297ms) How did John Quincy Adams die? 1885 -0.0 How did John Quincy Adams die? -> $x: (thomas adams, die, $x) -> (Thomas Adams WEST, died, 1885) -> 1885 (5297ms) How did John Quincy Adams die? Louisa Johnson -9.999778782798785E-13 How did John Quincy Adams die? -> $x: (john quincy adams, marry, $x) -> (John Quincy Adams, marries, Louisa Johnson) -> Louisa Johnson (5310ms) How did John Quincy Adams die? England -9.999778782798785E-13 How did John Quincy Adams die? -> $x: (john quincy adams, marry, $x) -> (U.S. President John Quincy Adams, was married in, England) -> England (5310ms) How did John Quincy Adams die? Louisa Catherine Johnson -9.999778782798785E-13 How did John Quincy Adams die? -> $x: (john quincy adams, marry, $x) -> (John Quincy Adams, married, Louisa Catherine Johnson) -> Louisa Catherine Johnson (5304ms) How did John Quincy Adams die? Ann Harrod -9.999778782798785E-13 How did John Quincy Adams die? -> $x: (thomas adams, marry, $x) -> (Thomas Boylston Adams, marries, Ann Harrod) -> Ann Harrod (5310ms) How did John Quincy Adams die? a non-relative -9.999778782798785E-13 How did John Quincy Adams die? -> $x: (john quincy adams, marry, $x) -> (John Quincy Adams, married, a non-relative) -> a non-relative (5310ms) How did John Quincy Adams die? Louisa..not John Adams -9.999778782798785E-13 How did John Quincy Adams die? -> $x: (john quincy adams, marry, $x) -> (2011 5:36 pm John QUINCY Adams, married, Louisa..not John Adams) -> Louisa..not John Adams (5310ms) How did John Quincy Adams die? Ambassador -9.999778782798785E-13 How did John Quincy Adams die? -> $x: (john quincy adams, marry, $x) -> (John Quincy Adams, was married while, Ambassador) -> Ambassador (5304ms) How did John Quincy Adams die? 1797 -9.999778782798785E-13 How did John Quincy Adams die? -> $x: (john quincy adams, marry, $x) -> (John Quincy Adams, was married in, 1797) -> 1797 (5304ms) How did John Quincy Adams die? a sudden cardiac event -0.11111111111 How did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Douglas Adams, died of, a sudden cardiac event) -> a sudden cardiac event (5310ms) How did John Quincy Adams die? an apparent heart attack -0.11111111111 How did John Quincy Adams die? -> $x: (adams, die of, $x) -> (The British-born Adams, died Friday of, an apparent heart attack) -> an apparent heart attack (5327ms) How did John Quincy Adams die? a drug overdose -0.11111111111 How did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Nick Adams, died of, a drug overdose) -> a drug overdose (5332ms) How did John Quincy Adams die? a cerebral hemorrhage -0.11111111111 How did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Adams, died of, a cerebral hemorrhage) -> a cerebral hemorrhage (5317ms) How did John Quincy Adams die? injuries -0.11111111111 How did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Ryan Adams, died of, injuries) -> injuries (5310ms) How did John Quincy Adams die? Leukemia -0.11111111111 How did John Quincy Adams die? -> $x: (john wesley, die of, $x) -> (John Wesley Pitts, died of, Leukemia) -> Leukemia (5322ms) How did John Quincy Adams die? a heart condition -0.11111111111 How did John Quincy Adams die? -> $x: (adams, die of, $x) -> (old Jesse Adams, died of, a heart condition) -> a heart condition (5317ms) How did John Quincy Adams die? multiple gunshot wounds -0.11111111111 How did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Adams, died of, multiple gunshot wounds) -> multiple gunshot wounds (5322ms) How did John Quincy Adams die? pneumonia -0.11111111111 How did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Adams, died Monday of, pneumonia) -> pneumonia (5322ms) How did John Quincy Adams die? a lung infection -0.11111111111 How did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Adams, died of, a lung infection) -> a lung infection (5322ms) How did John Quincy Adams die? 3 -0.11111111111 How did John Quincy Adams die? -> $x: (adams, die of, $x) -> (adam, is a person who died at the age of, 3) -> 3 (5327ms) How did John Quincy Adams die? yellow fever -0.11111111111 How did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Dr. James Bemis Adams, died of, yellow fever) -> yellow fever (5322ms) How did John Quincy Adams die? an apparent drug overdose -0.11111111111 How did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Adams, died of, an apparent drug overdose) -> an apparent drug overdose (5317ms) How did John Quincy Adams die? sudden cardiac arrest -0.11111111111 How did John Quincy Adams die? -> $x: (john wesley, die of, $x) -> (John Wesley Foster, died of, sudden cardiac arrest) -> sudden cardiac arrest (5322ms) How did John Quincy Adams die? AIDS -0.11111111111 How did John Quincy Adams die? -> $x: (adams, die of, $x) -> (17 April 1996 Adam O?Connor, died of, AIDS) -> AIDS (5317ms) How did John Quincy Adams die? Lou Gehrig?s Disease -0.11111111111 How did John Quincy Adams die? -> $x: (adams, die of, $x) -> (? Adams, died of, Lou Gehrig?s Disease) -> Lou Gehrig?s Disease (5310ms) How did John Quincy Adams die? a brain tumor -0.11111111111 How did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Adam, died of, a brain tumor) -> a brain tumor (5317ms) How did John Quincy Adams die? non-combat related injuries -0.11111111111 How did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Adams, died of, non-combat related injuries) -> non-combat related injuries (5310ms) How did John Quincy Adams die? a heart attack -0.11111111111 How did John Quincy Adams die? -> $x: (adams, die of, $x) -> (2001 Douglas Adams, died of, a heart attack) -> a heart attack (5332ms) How did John Quincy Adams die? frontotemporal dementia -0.11111111111 How did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Adams, died last year of, frontotemporal dementia) -> frontotemporal dementia (5327ms) How did John Quincy Adams die? a brain tumour -0.11111111111 How did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Adam, sadly died of, a brain tumour) -> a brain tumour (5310ms) How did John Quincy Adams die? a heart attack at the age of 49 -0.11111111111 How did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Adams, died of, a heart attack at the age of 49) -> a heart attack at the age of 49 (5322ms) How did John Quincy Adams die? an accidental prescription drug overdose -0.11111111111 How did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Adams, died of, an accidental prescription drug overdose) -> an accidental prescription drug overdose (5327ms) How did John Quincy Adams die? hyponatraemia -0.11111111111 How did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Adam Strain, had died of, hyponatraemia) -> hyponatraemia (5317ms) How did John Quincy Adams die? fright many times -0.11111111111 How did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Adam, actually died of, fright many times) -> fright many times (5322ms) How did John Quincy Adams die? leukaemia -0.11111111111 How did John Quincy Adams die? -> $x: (adams, die of, $x) -> (his long-time coach Adam Hunter, died of, leukaemia) -> leukaemia (5327ms) How did John Quincy Adams die? 1000 years -0.11111111111 How did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Adam, died short of, 1000 years) -> 1000 years (5317ms) How did John Quincy Adams die? cystitis -0.11111111111 How did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Adam, died of, cystitis) -> cystitis (5317ms) How did John Quincy Adams die? old age -0.11111111111 How did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Adam, died of, old age) -> old age (5327ms) How did John Quincy Adams die? opiate toxicity -0.11111111111 How did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Ada Adams, died two days later of, opiate toxicity) -> opiate toxicity (5327ms) How did John Quincy Adams die? a rare illness -0.11111111111 How did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Adam, also had died of, a rare illness) -> a rare illness (5327ms) How did John Quincy Adams die? sun stroke -0.11111111111 How did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Adam, died of, sun stroke) -> sun stroke (5322ms) How did John Quincy Adams die? natural causes -0.11111111111 How did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Easter Sunday 1995 Adam Harrington, died of, natural causes) -> natural causes (5317ms) How did John Quincy Adams die? cancer -0.11111111111 How did John Quincy Adams die? -> $x: (adams, die of, $x) -> (' Adam Yauch, dies of, cancer) -> cancer (5327ms) How did John Quincy Adams die? Lou Gherig -0.11111111111 How did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Adams, died of, Lou Gherig) -> Lou Gherig (5327ms) How did John Quincy Adams die? 8br -0.11111111111 How did John Quincy Adams die? -> $x: (adams, die of, $x) -> (Mr Ebenr Adams, Died the 31st day of, 8br) -> 8br (5322ms) How did John Quincy Adams die? first -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, dies, first) -> first (5351ms) How did John Quincy Adams die? the age of 81 -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adams, died at, the age of 81) -> the age of 81 (5337ms) How did John Quincy Adams die? shortly -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, shortly) -> shortly (5341ms) How did John Quincy Adams die? October 4 , 2003 -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (ADAMS, died, October 4 , 2003) -> October 4 , 2003 (5356ms) How did John Quincy Adams die? the day he sinned -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, the day he sinned) -> the day he sinned (5356ms) How did John Quincy Adams die? a substance -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, a substance) -> a substance (5332ms) How did John Quincy Adams die? when he was 930 -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, when he was 930) -> when he was 930 (5359ms) How did John Quincy Adams die? age 86 -0.11111111111099997 How did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley Slipp, died at, age 86) -> age 86 (5341ms) How did John Quincy Adams die? 22 Jan 1914 -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, 22 Jan 1914) -> 22 Jan 1914 (5332ms) How did John Quincy Adams die? 49 -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adams, died at, 49) -> 49 (5364ms) How did John Quincy Adams die? Sunday morning -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adams, died, Sunday morning) -> Sunday morning (5337ms) How did John Quincy Adams die? Jan -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, Jan) -> Jan (5351ms) How did John Quincy Adams die? 11/10/1933 -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adams, died, 11/10/1933) -> 11/10/1933 (5332ms) How did John Quincy Adams die? 19 Jun 1941 , bur -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (ADAMS, died, 19 Jun 1941 , bur) -> 19 Jun 1941 , bur (5364ms) How did John Quincy Adams die? 10 Jan 1871 Age 1 Yr 16 Da Son -0.11111111111099997 How did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley, Died, 10 Jan 1871 Age 1 Yr 16 Da Son) -> 10 Jan 1871 Age 1 Yr 16 Da Son (5364ms) How did John Quincy Adams die? May 22 , 1986 -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, May 22 , 1986) -> May 22 , 1986 (5351ms) How did John Quincy Adams die? October 21 , 1901 Peotone , IL , -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, October 21 , 1901 Peotone , IL ,) -> October 21 , 1901 Peotone , IL , (5332ms) How did John Quincy Adams die? March 25 , 1929 BETTIS -0.11111111111099997 How did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley, died, March 25 , 1929 BETTIS) -> March 25 , 1929 BETTIS (5356ms) How did John Quincy Adams die? 1920 -0.11111111111099997 How did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (JOHN WESLEY PHILLIPS, died before, 1920) -> 1920 (5364ms) How did John Quincy Adams die? Nov 28 , 1840 -0.11111111111099997 How did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley CLARK, died, Nov 28 , 1840) -> Nov 28 , 1840 (5360ms) How did John Quincy Adams die? Genesis 5:5 -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, Genesis 5:5) -> Genesis 5:5 (5346ms) How did John Quincy Adams die? a few hours later -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, a few hours later) -> a few hours later (5360ms) How did John Quincy Adams die? Nov 15 , 1953 -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, Nov 15 , 1953) -> Nov 15 , 1953 (5356ms) How did John Quincy Adams die? 15 Jun 1852 -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, 15 Jun 1852) -> 15 Jun 1852 (5337ms) How did John Quincy Adams die? when he was 930 years old -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, when he was 930 years old) -> when he was 930 years old (5364ms) How did John Quincy Adams die? June 29 , 1835 -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, June 29 , 1835) -> June 29 , 1835 (5346ms) How did John Quincy Adams die? only about fifty years before the birth of Noah -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, only about fifty years before the birth of Noah) -> only about fifty years before the birth of Noah (5360ms) How did John Quincy Adams die? yesterday -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adams, died, yesterday) -> yesterday (5346ms) How did John Quincy Adams die? Oct 1782/8 -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, Oct 1782/8) -> Oct 1782/8 (5360ms) How did John Quincy Adams die? thousands -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, thousands) -> thousands (5346ms) How did John Quincy Adams die? 2 March 1791 -0.11111111111099997 How did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley, died, 2 March 1791) -> 2 March 1791 (5341ms) How did John Quincy Adams die? February 28 , 1855 -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, February 28 , 1855) -> February 28 , 1855 (5352ms) How did John Quincy Adams die? 21 May 1945 , bur -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, 21 May 1945 , bur) -> 21 May 1945 , bur (5341ms) How did John Quincy Adams die? May 11th -0.11111111111099997 How did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley Hyatt, dies, May 11th) -> May 11th (5356ms) How did John Quincy Adams die? 930 years -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, 930 years) -> 930 years (5364ms) How did John Quincy Adams die? a long time -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, a long time) -> a long time (5332ms) How did John Quincy Adams die? Two years later -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, Two years later) -> Two years later (5356ms) How did John Quincy Adams die? the age -0.11111111111099997 How did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley, died at, the age) -> the age (5364ms) How did John Quincy Adams die? May 18 , 1964 SMITH -0.11111111111099997 How did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley, died, May 18 , 1964 SMITH) -> May 18 , 1964 SMITH (5360ms) How did John Quincy Adams die? July 4 , 1930 -0.11111111111099997 How did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley Linton, died, July 4 , 1930) -> July 4 , 1930 (5364ms) How did John Quincy Adams die? Dec. 21 , 1906 DODD , Lloyd Marion -0.11111111111099997 How did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley, died, Dec. 21 , 1906 DODD , Lloyd Marion) -> Dec. 21 , 1906 DODD , Lloyd Marion (5356ms) How did John Quincy Adams die? young -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, young) -> young (5351ms) How did John Quincy Adams die? 3 Mar 1825 -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, 3 Mar 1825) -> 3 Mar 1825 (5364ms) How did John Quincy Adams die? the day he disobeyed -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, the day he disobeyed) -> the day he disobeyed (5337ms) How did John Quincy Adams die? following a heart attack -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adams, died, following a heart attack) -> following a heart attack (5356ms) How did John Quincy Adams die? 29 Sep 1844 -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, 29 Sep 1844) -> 29 Sep 1844 (5352ms) How did John Quincy Adams die? the time -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, the time) -> the time (5351ms) How did John Quincy Adams die? Feb. 4 -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adams, died, Feb. 4) -> Feb. 4 (5360ms) How did John Quincy Adams die? 15 Jul 1887 -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, 15 Jul 1887) -> 15 Jul 1887 (5341ms) How did John Quincy Adams die? a long time ago -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, a long time ago) -> a long time ago (5332ms) How did John Quincy Adams die? Nov. 4 , 1861 -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, Nov. 4 , 1861) -> Nov. 4 , 1861 (5360ms) How did John Quincy Adams die? March 19 , 1882 -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, March 19 , 1882) -> March 19 , 1882 (5351ms) How did John Quincy Adams die? now -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, dying, now) -> now (5356ms) How did John Quincy Adams die? a martyr -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, a martyr) -> a martyr (5360ms) How did John Quincy Adams die? 13 Mar 1911 -0.11111111111099997 How did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley PILCHER, died, 13 Mar 1911) -> 13 Mar 1911 (5360ms) How did John Quincy Adams die? 7 May 1930 -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, 7 May 1930) -> 7 May 1930 (5337ms) How did John Quincy Adams die? Sunday -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adams, died, Sunday) -> Sunday (5346ms) How did John Quincy Adams die? July 4th , 1826 , several hours -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adams, died, July 4th , 1826 , several hours) -> July 4th , 1826 , several hours (5346ms) How did John Quincy Adams die? December 1804 -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, December 1804) -> December 1804 (5337ms) How did John Quincy Adams die? 9 Feb 1935 -0.11111111111099997 How did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley, died, 9 Feb 1935) -> 9 Feb 1935 (5346ms) How did John Quincy Adams die? May 1 , 1965 DODD -0.11111111111099997 How did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley & Rachel Kerns Weaver, died, May 1 , 1965 DODD) -> May 1 , 1965 DODD (5367ms) How did John Quincy Adams die? age 65 -0.11111111111099997 How did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley Slip, died at, age 65) -> age 65 (5360ms) How did John Quincy Adams die? 30 Dec 1857 -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, 30 Dec 1857) -> 30 Dec 1857 (5352ms) How did John Quincy Adams die? Oct 11 1941 -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, Oct 11 1941) -> Oct 11 1941 (5364ms) How did John Quincy Adams die? Sep. -0.11111111111099997 How did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley & Daisy Elvira King Hendrix, died, Sep.) -> Sep. (5341ms) How did John Quincy Adams die? 14 -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, 14) -> 14 (5364ms) How did John Quincy Adams die? 1/5/1824 -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, 1/5/1824) -> 1/5/1824 (5346ms) How did John Quincy Adams die? 930 years old -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, 930 years old) -> 930 years old (5332ms) How did John Quincy Adams die? finally -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, finally) -> finally (5346ms) How did John Quincy Adams die? 12 hours -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adams, died, 12 hours) -> 12 hours (5360ms) How did John Quincy Adams die? earlier this year -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adams, died, earlier this year) -> earlier this year (5360ms) How did John Quincy Adams die? a spiritual death -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, a spiritual death) -> a spiritual death (5356ms) How did John Quincy Adams die? later -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, later) -> later (5337ms) How did John Quincy Adams die? May 29 , 1755 -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, May 29 , 1755) -> May 29 , 1755 (5364ms) How did John Quincy Adams die? Oct. 11 , 1856 -0.11111111111099997 How did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley Wilson, died, Oct. 11 , 1856) -> Oct. 11 , 1856 (5356ms) How did John Quincy Adams die? 930 years later -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, 930 years later) -> 930 years later (5341ms) How did John Quincy Adams die? the first man -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, dies, the first man) -> the first man (5346ms) How did John Quincy Adams die? The day -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, The day) -> The day (5367ms) How did John Quincy Adams die? eventually -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, eventually) -> eventually (5347ms) How did John Quincy Adams die? instantly -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, instantly) -> instantly (5337ms) How did John Quincy Adams die? a young man -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, a young man) -> a young man (5364ms) How did John Quincy Adams die? the age of 88 -0.11111111111099997 How did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley, died at, the age of 88) -> the age of 88 (5347ms) How did John Quincy Adams die? 17 Oct 1894 -0.11111111111099997 How did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley KNISKERN-68257, died, 17 Oct 1894) -> 17 Oct 1894 (5351ms) How did John Quincy Adams die? ago -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, ago) -> ago (5364ms) How did John Quincy Adams die? February 5 , 1865 Muscatine , IA , -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, February 5 , 1865 Muscatine , IA ,) -> February 5 , 1865 Muscatine , IA , (5352ms) How did John Quincy Adams die? last year -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, last year) -> last year (5351ms) How did John Quincy Adams die? 13 Aug. -0.11111111111099997 How did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley ANDERSON, died, 13 Aug.) -> 13 Aug. (5364ms) How did John Quincy Adams die? 16 Jul 1943 -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, 16 Jul 1943) -> 16 Jul 1943 (5351ms) How did John Quincy Adams die? Jan . 1 , 1942 STRICKLIN -0.11111111111099997 How did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley, died, Jan . 1 , 1942 STRICKLIN) -> Jan . 1 , 1942 STRICKLIN (5337ms) How did John Quincy Adams die? 5 Aug 1853 -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, 5 Aug 1853) -> 5 Aug 1853 (5337ms) How did John Quincy Adams die? seven years -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adams, died, seven years) -> seven years (5352ms) How did John Quincy Adams die? 03/18/01 -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, 03/18/01) -> 03/18/01 (5356ms) How did John Quincy Adams die? June 9 , 1781 -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, June 9 , 1781) -> June 9 , 1781 (5364ms) How did John Quincy Adams die? 15 Jun 1825 -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, 15 Jun 1825) -> 15 Jun 1825 (5360ms) How did John Quincy Adams die? 26 Jan 1896 -0.11111111111099997 How did John Quincy Adams die? -> $x: (adams, die, $x) -> (Adam, died, 26 Jan 1896) -> 26 Jan 1896 (5360ms) How did John Quincy Adams die? Mar -0.11111111111099997 How did John Quincy Adams die? -> $x: (john wesley, die, $x) -> (John Wesley, died, Mar) -> Mar (5356ms) How did John Quincy Adams die? a typical business man -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looks like, a typical business man) -> a typical business man (5392ms) How did John Quincy Adams die? Elvis Presley -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam Lambert, totally looks like, Elvis Presley) -> Elvis Presley (5389ms) How did John Quincy Adams die? the ?faces -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Bryan Adams, looks like, the ?faces) -> the ?faces (5389ms) How did John Quincy Adams die? the stereotypical Protestant reasons -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, die for, $x) -> (John Adam, died for, the stereotypical Protestant reasons) -> the stereotypical Protestant reasons (5381ms) How did John Quincy Adams die? Virginia Best -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Ansel Adams, married, Virginia Best) -> Virginia Best (5392ms) How did John Quincy Adams die? 1955 -0.11111111111199995 How did John Quincy Adams die? -> $x: (john wesley, marry, $x) -> (John Wesley, married in, 1955) -> 1955 (5381ms) How did John Quincy Adams die? Van -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (( Adam, Look 's like, Van) -> Van (5371ms) How did John Quincy Adams die? Rebecca -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Rebecca) -> Rebecca (5391ms) How did John Quincy Adams die? the best -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (the Adam, still looks like, the best) -> the best (5391ms) How did John Quincy Adams die? Danny Elfman -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam Savage Totally, Looks Like, Danny Elfman) -> Danny Elfman (5384ms) How did John Quincy Adams die? Sara Hughling/ Huling -0.11111111111199995 How did John Quincy Adams die? -> $x: (john wesley, marry, $x) -> (John Wesley, married, Sara Hughling/ Huling) -> Sara Hughling/ Huling (5367ms) How did John Quincy Adams die? a deputy headmaster -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Gerry Adams, looks like, a deputy headmaster) -> a deputy headmaster (5374ms) How did John Quincy Adams die? Nancy Shockey -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Nancy Shockey) -> Nancy Shockey (5387ms) How did John Quincy Adams die? Alida Joslin Reynolds -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adams, married, Alida Joslin Reynolds) -> Alida Joslin Reynolds (5381ms) How did John Quincy Adams die? recently -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, got married, recently) -> recently (5374ms) How did John Quincy Adams die? Piers Anthony -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Douglas Adams, look like, Piers Anthony) -> Piers Anthony (5390ms) How did John Quincy Adams die? Mildred Kramer -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Mildred Kramer) -> Mildred Kramer (5387ms) How did John Quincy Adams die? the Queen -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looked like, the Queen) -> the Queen (5385ms) How did John Quincy Adams die? a monkey -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam Dunn, looks like, a monkey) -> a monkey (5383ms) How did John Quincy Adams die? a good player -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Charlie Adam, looked like, a good player) -> a good player (5379ms) How did John Quincy Adams die? Sarah Smith -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Charles Adams, marries, Sarah Smith) -> Sarah Smith (5390ms) How did John Quincy Adams die? total garbage -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (the newest Adam Sandler vehicle, looks like, total garbage) -> total garbage (5389ms) How did John Quincy Adams die? Jane Chambers -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam Ross, married, Jane Chambers) -> Jane Chambers (5387ms) How did John Quincy Adams die? Jerusha Balcom -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam Howe, married, Jerusha Balcom) -> Jerusha Balcom (5390ms) How did John Quincy Adams die? Liverpool players -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Charlie Adam, don?t look like, Liverpool players) -> Liverpool players (5376ms) How did John Quincy Adams die? angel -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looks like, angel) -> angel (5379ms) How did John Quincy Adams die? a surfer -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looks oddly like, a surfer) -> a surfer (5389ms) How did John Quincy Adams die? an old , balding , half-assed werewolf -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adams, look like, an old , balding , half-assed werewolf) -> an old , balding , half-assed werewolf (5379ms) How did John Quincy Adams die? the end times -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, be symptom of, $x) -> (Adam, is a symptom of, the end times) -> the end times (5391ms) How did John Quincy Adams die? Arab-Iraqi people -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam and Eve, may have looked like, Arab-Iraqi people) -> Arab-Iraqi people (5383ms) How did John Quincy Adams die? Dog -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, does n?t look like, Dog) -> Dog (5367ms) How did John Quincy Adams die? a Japanese girl -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adams, married, a Japanese girl) -> a Japanese girl (5389ms) How did John Quincy Adams die? Agnes 1562 -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Agnes 1562) -> Agnes 1562 (5389ms) How did John Quincy Adams die? a man who lives in Canada -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adams Heath, married, a man who lives in Canada) -> a man who lives in Canada (5379ms) How did John Quincy Adams die? a younger Will Ferrel -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam Dunn, looks like, a younger Will Ferrel) -> a younger Will Ferrel (5383ms) How did John Quincy Adams die? any -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adams, looked nothing like, any) -> any (5389ms) How did John Quincy Adams die? Abigail Smith -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adams, married, Abigail Smith) -> Abigail Smith (5391ms) How did John Quincy Adams die? God -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looks like, God) -> God (5390ms) How did John Quincy Adams die? a wee sissy girl -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Black Adam, look like, a wee sissy girl) -> a wee sissy girl (5367ms) How did John Quincy Adams die? Catherine COOK -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Catherine COOK) -> Catherine COOK (5371ms) How did John Quincy Adams die? Anna Mae Cerar -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Anna Mae Cerar) -> Anna Mae Cerar (5371ms) How did John Quincy Adams die? the same person -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Fisher and Adams, look like, the same person) -> the same person (5379ms) How did John Quincy Adams die? Margaret -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Margaret) -> Margaret (5390ms) How did John Quincy Adams die? 24 March 2007 -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married on, 24 March 2007) -> 24 March 2007 (5389ms) How did John Quincy Adams die? a cross -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Irksome supporting actor J. Todd Adams, looks like, a cross) -> a cross (5391ms) How did John Quincy Adams die? A Bombsy-Tit -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (AdamAndJoe, Looks Like, A Bombsy-Tit) -> A Bombsy-Tit (5371ms) How did John Quincy Adams die? the Big Brother 2011 Part -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looks like, the Big Brother 2011 Part) -> the Big Brother 2011 Part (5386ms) How did John Quincy Adams die? Tashi -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, marries, Tashi) -> Tashi (5381ms) How did John Quincy Adams die? a wide variety -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (an Adam, will look like on, a wide variety) -> a wide variety (5379ms) How did John Quincy Adams die? Catherine -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Catherine) -> Catherine (5381ms) How did John Quincy Adams die? Mr. Shaw -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Abigail Adams, married, Mr. Shaw) -> Mr. Shaw (5389ms) How did John Quincy Adams die? Michael -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, marries, Michael) -> Michael (5391ms) How did John Quincy Adams die? pros -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Laura and Adam, looked like, pros) -> pros (5371ms) How did John Quincy Adams die? he?d been blind-sided -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, still looked like, he?d been blind-sided) -> he?d been blind-sided (5367ms) How did John Quincy Adams die? a Sallie Davis -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, had married, a Sallie Davis) -> a Sallie Davis (5371ms) How did John Quincy Adams die? September 27 , 1865 -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Judge Adams, married, September 27 , 1865) -> September 27 , 1865 (5374ms) How did John Quincy Adams die? Abigail -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (John Adams, married, Abigail) -> Abigail (5374ms) How did John Quincy Adams die? jenna fischer -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (amy adams, looks like, jenna fischer) -> jenna fischer (5386ms) How did John Quincy Adams die? a mirror image -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, was like looking at, a mirror image) -> a mirror image (5379ms) How did John Quincy Adams die? Mary Dolberry -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Mary Dolberry) -> Mary Dolberry (5379ms) How did John Quincy Adams die? the Serpent -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, the Serpent) -> the Serpent (5376ms) How did John Quincy Adams die? a million bucks -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Oleta Adams, looks like, a million bucks) -> a million bucks (5389ms) How did John Quincy Adams die? Cathy Ames -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, marries, Cathy Ames) -> Cathy Ames (5376ms) How did John Quincy Adams die? the Baltic -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam Smith, looked like in, the Baltic) -> the Baltic (5387ms) How did John Quincy Adams die? Mary Ann Anderson William -0.11111111111199995 How did John Quincy Adams die? -> $x: (john wesley, marry, $x) -> (John Wesley, married, Mary Ann Anderson William) -> Mary Ann Anderson William (5387ms) How did John Quincy Adams die? the place -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adams County, looks like, the place) -> the place (5391ms) How did John Quincy Adams die? Mary Ann Anderson -0.11111111111199995 How did John Quincy Adams die? -> $x: (john wesley, marry, $x) -> (a John Wesley Chenoweth, married, Mary Ann Anderson) -> Mary Ann Anderson (5371ms) How did John Quincy Adams die? Sarah -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Sarah) -> Sarah (5392ms) How did John Quincy Adams die? a Ruth Mills Walden-born -0.11111111111199995 How did John Quincy Adams die? -> $x: (john wesley, marry, $x) -> (John Wesley McIntosh, married, a Ruth Mills Walden-born) -> a Ruth Mills Walden-born (5374ms) How did John Quincy Adams die? Molly Jane Sugart -0.11111111111199995 How did John Quincy Adams die? -> $x: (john wesley, marry, $x) -> (John Wesley Parker, married, Molly Jane Sugart) -> Molly Jane Sugart (5390ms) How did John Quincy Adams die? Sarah Louise Helmer ?daughter -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Sarah Louise Helmer ?daughter) -> Sarah Louise Helmer ?daughter (5385ms) How did John Quincy Adams die? an attractive wager -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam?s, looks like, an attractive wager) -> an attractive wager (5389ms) How did John Quincy Adams die? Marian Hooper -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Henry Adams, marries, Marian Hooper) -> Marian Hooper (5387ms) How did John Quincy Adams die? a certain penalty -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam El-Abd, looked like, a certain penalty) -> a certain penalty (5376ms) How did John Quincy Adams die? the original Adam -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looks exactly like, the original Adam) -> the original Adam (5391ms) How did John Quincy Adams die? a footloose millennial -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (an oxymoron Adam Hasler, looks like, a footloose millennial) -> a footloose millennial (5386ms) How did John Quincy Adams die? Harrirt Mudge -0.11111111111199995 How did John Quincy Adams die? -> $x: (john wesley, marry, $x) -> (the John Wesley, married, Harrirt Mudge) -> Harrirt Mudge (5385ms) How did John Quincy Adams die? Mark -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looks less like, Mark) -> Mark (5371ms) How did John Quincy Adams die? Mrs. Vazeille -0.11111111111199995 How did John Quincy Adams die? -> $x: (john wesley, marry, $x) -> (John Wesley, married, Mrs. Vazeille) -> Mrs. Vazeille (5381ms) How did John Quincy Adams die? the last starting-capable left tackle -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adams, looks like, the last starting-capable left tackle) -> the last starting-capable left tackle (5387ms) How did John Quincy Adams die? a dancer -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, look like, a dancer) -> a dancer (5374ms) How did John Quincy Adams die? Elizabeth Failing Oct. 4 , 1802 -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam Empie, married, Elizabeth Failing Oct. 4 , 1802) -> Elizabeth Failing Oct. 4 , 1802 (5379ms) How did John Quincy Adams die? Christianity -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, die for, $x) -> (Adam, is a do-or-die figure for, Christianity) -> Christianity (5386ms) How did John Quincy Adams die? a black ops agent -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looked around like, a black ops agent) -> a black ops agent (5387ms) How did John Quincy Adams die? John Hurst Adams -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Link Adams, married, John Hurst Adams) -> John Hurst Adams (5386ms) How did John Quincy Adams die? a great climber -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looks like, a great climber) -> a great climber (5379ms) How did John Quincy Adams die? Steve -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, marries, Steve) -> Steve (5391ms) How did John Quincy Adams die? a younger Whitney Houston -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Yolanda Adams, look like, a younger Whitney Houston) -> a younger Whitney Houston (5371ms) How did John Quincy Adams die? the innocent flower -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (-Adam Turla, Look like, the innocent flower) -> the innocent flower (5384ms) How did John Quincy Adams die? a doughy accountant -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam Brock, looks like, a doughy accountant) -> a doughy accountant (5381ms) How did John Quincy Adams die? a nice target -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam Dunn, looks like, a nice target) -> a nice target (5381ms) How did John Quincy Adams die? a mini-Forsberg -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam Deadmarsh, was looking like, a mini-Forsberg) -> a mini-Forsberg (5383ms) How did John Quincy Adams die? five people -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam Sandler, looks like, five people) -> five people (5391ms) How did John Quincy Adams die? hes -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looks like, hes) -> hes (5367ms) How did John Quincy Adams die? Arlene -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, marrying, Arlene) -> Arlene (5383ms) How did John Quincy Adams die? Fred Brewster -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Azalia Adams, married, Fred Brewster) -> Fred Brewster (5387ms) How did John Quincy Adams die? models -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looked like, models) -> models (5390ms) How did John Quincy Adams die? a tree toad -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Ansel Adams, shows the former looking like, a tree toad) -> a tree toad (5381ms) How did John Quincy Adams die? Alice Baker -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (William Adams, married, Alice Baker) -> Alice Baker (5371ms) How did John Quincy Adams die? the God -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looks like, the God) -> the God (5371ms) How did John Quincy Adams die? a cougar -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (John Adams, married, a cougar) -> a cougar (5386ms) How did John Quincy Adams die? non-cartoon Adam -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (cartoon Adam, looks exactly like, non-cartoon Adam) -> non-cartoon Adam (5379ms) How did John Quincy Adams die? the former Harriett Jane Baker -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adams, married, the former Harriett Jane Baker) -> the former Harriett Jane Baker (5387ms) How did John Quincy Adams die? a Thompson -0.11111111111199995 How did John Quincy Adams die? -> $x: (john wesley, marry, $x) -> (John Wesley Smith, married, a Thompson) -> a Thompson (5374ms) How did John Quincy Adams die? the kind -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam J. Morris, looks like, the kind) -> the kind (5390ms) How did John Quincy Adams die? a bit of an idiot -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, look like, a bit of an idiot) -> a bit of an idiot (5381ms) How did John Quincy Adams die? a girl -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looks like, a girl) -> a girl (5374ms) How did John Quincy Adams die? Mary Flowers -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Mary Flowers) -> Mary Flowers (5381ms) How did John Quincy Adams die? Lydia Berry Clements -0.11111111111199995 How did John Quincy Adams die? -> $x: (john wesley, marry, $x) -> (John Wesley II, was married to, Lydia Berry Clements) -> Lydia Berry Clements (5379ms) How did John Quincy Adams die? a pandering fool -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, look like, a pandering fool) -> a pandering fool (5367ms) How did John Quincy Adams die? human beings -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (adam, only looked like, human beings) -> human beings (5392ms) How did John Quincy Adams die? fellow actress Jackie Samantha Titone -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, fellow actress Jackie Samantha Titone) -> fellow actress Jackie Samantha Titone (5367ms) How did John Quincy Adams die? the next Ken Griffey Jr. -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam Jones, looked like, the next Ken Griffey Jr.) -> the next Ken Griffey Jr. (5384ms) How did John Quincy Adams die? Paul McCartney -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, Looks a little like, Paul McCartney) -> Paul McCartney (5389ms) How did John Quincy Adams die? a different player -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Flozell Adams, looked like, a different player) -> a different player (5367ms) How did John Quincy Adams die? Elizabeth Rausch -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (1899 Adam, married, Elizabeth Rausch) -> Elizabeth Rausch (5374ms) How did John Quincy Adams die? Fun -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam Black, Looks like, Fun) -> Fun (5389ms) How did John Quincy Adams die? former NFL player Tim Crawford -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Yolanda Adams, married, former NFL player Tim Crawford) -> former NFL player Tim Crawford (5381ms) How did John Quincy Adams die? a fool -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, look like, a fool) -> a fool (5387ms) How did John Quincy Adams die? 31 Oct 1875 -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (ADAM, married, 31 Oct 1875) -> 31 Oct 1875 (5383ms) How did John Quincy Adams die? Mark Linenthal -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adams, married, Mark Linenthal) -> Mark Linenthal (5376ms) How did John Quincy Adams die? Miss Abigail Smith -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adams, married, Miss Abigail Smith) -> Miss Abigail Smith (5390ms) How did John Quincy Adams die? WT ? Basically -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, is looking at here like, WT ? Basically) -> WT ? Basically (5376ms) How did John Quincy Adams die? the comment -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looked a little like, the comment) -> the comment (5381ms) How did John Quincy Adams die? John Adams -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adams, married, John Adams) -> John Adams (5371ms) How did John Quincy Adams die? Sarah Appleton JENNER -0.11111111111199995 How did John Quincy Adams die? -> $x: (john wesley, marry, $x) -> (GREELEY John Wesley SMITH, married, Sarah Appleton JENNER) -> Sarah Appleton JENNER (5391ms) How did John Quincy Adams die? Emma Dean -0.11111111111199995 How did John Quincy Adams die? -> $x: (john wesley, marry, $x) -> (John Wesley Powell, married, Emma Dean) -> Emma Dean (5386ms) How did John Quincy Adams die? Josephine Femc -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Josephine Femc) -> Josephine Femc (5389ms) How did John Quincy Adams die? Spokane native -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Spokane native) -> Spokane native (5390ms) How did John Quincy Adams die? Alan -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looked like, Alan) -> Alan (5391ms) How did John Quincy Adams die? Jane Belson -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adams, married, Jane Belson) -> Jane Belson (5391ms) How did John Quincy Adams die? Christine Becker February 12 , 1854 -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Christine Becker February 12 , 1854) -> Christine Becker February 12 , 1854 (5390ms) How did John Quincy Adams die? Martha A. Clark -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Martha A. Clark) -> Martha A. Clark (5367ms) How did John Quincy Adams die? Spencer Washington Sterms Wright -0.11111111111199995 How did John Quincy Adams die? -> $x: (john wesley, marry, $x) -> (John Wesley Beck, married, Spencer Washington Sterms Wright) -> Spencer Washington Sterms Wright (5391ms) How did John Quincy Adams die? Bridget Krantz -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Bridget Krantz) -> Bridget Krantz (5390ms) How did John Quincy Adams die? John Lonzo Anderson -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adams, married, John Lonzo Anderson) -> John Lonzo Anderson (5387ms) How did John Quincy Adams die? Lance -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looks alike like, Lance) -> Lance (5374ms) How did John Quincy Adams die? a child -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, look at me like, a child) -> a child (5376ms) How did John Quincy Adams die? Corstorphine girl Caroline Bertha Weierter -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Tommy Adams, married, Corstorphine girl Caroline Bertha Weierter) -> Corstorphine girl Caroline Bertha Weierter (5374ms) How did John Quincy Adams die? Margaret Pagan -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Margaret Pagan) -> Margaret Pagan (5371ms) How did John Quincy Adams die? a tard -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looks like, a tard) -> a tard (5376ms) How did John Quincy Adams die? HDR -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Ansel Adams, Looks like, HDR) -> HDR (5367ms) How did John Quincy Adams die? Elvis -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looked like, Elvis) -> Elvis (5387ms) How did John Quincy Adams die? a London merchant -0.11111111111199995 How did John Quincy Adams die? -> $x: (john wesley, marry, $x) -> (John Wesley, married the widow of, a London merchant) -> a London merchant (5392ms) How did John Quincy Adams die? a ninja -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam West, look like, a ninja) -> a ninja (5390ms) How did John Quincy Adams die? Nancy E. Waterman -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (South Adams, married, Nancy E. Waterman) -> Nancy E. Waterman (5383ms) How did John Quincy Adams die? the sins -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, die for, $x) -> (the second Adam, died for, the sins) -> the sins (5386ms) How did John Quincy Adams die? a guy -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adams, has always looked more like, a guy) -> a guy (5385ms) How did John Quincy Adams die? Speedy Gonzalez -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (ha-ha...Adam, looked like, Speedy Gonzalez) -> Speedy Gonzalez (5371ms) How did John Quincy Adams die? Joanna Jane CHAPMAN -0.11111111111199995 How did John Quincy Adams die? -> $x: (john wesley, marry, $x) -> (John Wesley WALKER, was married to, Joanna Jane CHAPMAN) -> Joanna Jane CHAPMAN (5387ms) How did John Quincy Adams die? a choir boy -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam Foote, look like, a choir boy) -> a choir boy (5383ms) How did John Quincy Adams die? a pitcher -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam Loewen sure, looks like, a pitcher) -> a pitcher (5381ms) How did John Quincy Adams die? one tough cookie -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Austin Adams, looks like, one tough cookie) -> one tough cookie (5371ms) How did John Quincy Adams die? Maria MAURER -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam H., married, Maria MAURER) -> Maria MAURER (5383ms) How did John Quincy Adams die? Barbara Wuest -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Barbara Wuest) -> Barbara Wuest (5391ms) How did John Quincy Adams die? a dotted box -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam, looks like.There is, a dotted box) -> a dotted box (5376ms) How did John Quincy Adams die? Jehovah -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, to marry, Jehovah) -> Jehovah (5392ms) How did John Quincy Adams die? the top -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Gomez Adams, looks like, the top) -> the top (5376ms) How did John Quincy Adams die? an egg -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (an enormous Adam, looks like, an egg) -> an egg (5392ms) How did John Quincy Adams die? a little baby -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam Kiernikovski David, look like, a little baby) -> a little baby (5383ms) How did John Quincy Adams die? Jaclyn Ferrall -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam Kalidonis Adam, married, Jaclyn Ferrall) -> Jaclyn Ferrall (5391ms) How did John Quincy Adams die? a kids -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adam Rose, Looks like, a kids) -> a kids (5381ms) How did John Quincy Adams die? Teresa -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, marry, $x) -> (Adam, married, Teresa) -> Teresa (5390ms) How did John Quincy Adams die? pea soup fog -0.11111111111199995 How did John Quincy Adams die? -> $x: (adams, look like, $x) -> (Adams County, is like looking at, pea soup fog) -> pea soup fog (5389ms) How did John Quincy Adams die? Sep 16 , 1847 -0.11111111111199995 How did John Quincy Adams die? -> $x: (john wesley, marry, $x) -> (John Wesley, was married, Sep 16 , 1847) -> Sep 16 , 1847 (5386ms) How did John Quincy Adams die? 1833 -0.111111111112 How did John Quincy Adams die? -> $x: (john quincy adams, be bear in, $x) -> (John Quincy Adams, was born in, 1833) -> 1833 (5392ms) How did John Quincy Adams die? the same house -0.111111111112 How did John Quincy Adams die? -> $x: (john quincy adams, be bear in, $x) -> (his son John Quincy Adams, was born in, the same house) -> the same house (5393ms) How did John Quincy Adams die? 1767 -0.111111111112 How did John Quincy Adams die? -> $x: (john quincy adams, be bear in, $x) -> (John Quincy Adams, was born in, 1767) -> 1767 (5393ms) How did John Quincy Adams die? 1815 -0.111111111112 How did John Quincy Adams die? -> $x: (john quincy adams, be bear in, $x) -> (John Quincy Adams, was born in, 1815) -> 1815 (5393ms) Who invented the game bowling? the U.S. 1.777777777776 Who invented the game bowling? -> $x: ($x, invent, bowling) -> (the U.S., is credited with inventing, nine-pin bowling) -> the U.S. (938ms) Who invented the game bowling? Aristarchus 1.777777777776 Who invented the game bowling? -> $x: ($x, invent, bowling) -> (Aristarchus, invented, a bowl-shaped sundial) -> Aristarchus (1591ms) Who invented the game bowling? color 1.777777777776 Who invented the game bowling? -> $x: ($x, invent, bowling) -> (color, invent, new bowling games) -> color (1591ms) Who invented the game bowling? 1939 1.777777777776 Who invented the game bowling? -> $x: ($x, invent, bowling) -> (1939, invented, the Westgate Bowl Production) -> 1939 (1591ms) Who invented the game bowling? the ancient Egyptians 1.777777777776 Who invented the game bowling? -> $x: ($x, invent, bowling) -> (the ancient Egyptians, invented, bowling) -> the ancient Egyptians (1591ms) Who invented the game bowling? the meantime dad 1.777777777776 Who invented the game bowling? -> $x: ($x, invent, bowling) -> (the meantime dad, had invented, self service bowling machine) -> the meantime dad (938ms) Who invented the game bowling? You?d 1.777777777776 Who invented the game bowling? -> $x: ($x, invent, bowling) -> (You?d, have to invent, a couple more bad bowl games) -> You?d (1591ms) Who invented the game bowling? nnNo matter 1.777777777776 Who invented the game bowling? -> $x: ($x, invent, bowling) -> (nnNo matter, invented, bowling) -> nnNo matter (1591ms) Who invented the game bowling? What religious leader 1.777777777776 Who invented the game bowling? -> $x: ($x, invent, bowling) -> (What religious leader, with inventing, nine-pin bowling) -> What religious leader (938ms) Who invented the game bowling? data 1.777777777776 Who invented the game bowling? -> $x: ($x, invent, bowling) -> (data, invented, bowling) -> data (1591ms) Who invented the game bowling? clever humans 1.777777777776 Who invented the game bowling? -> $x: ($x, invent, bowling) -> (clever humans, invented, the Brake-fast bowl) -> clever humans (938ms) Who invented the game bowling? ComfitPro 1.777777777776 Who invented the game bowling? -> $x: ($x, invent, bowling) -> (ComfitPro, have re-invented, the bowls bag) -> ComfitPro (938ms) Who invented the game bowling? the country 1.777777777776 Who invented the game bowling? -> $x: ($x, invent, bowling) -> (the country, invented, the Super Bowl) -> the country (938ms) Who invented the game bowling? Los Angeles 1.777777777776 Who invented the game bowling? -> $x: ($x, invent, bowling) -> (Los Angeles, invented, the Hollywood Bowl) -> Los Angeles (1591ms) Who invented the game bowling? Canada 1.333333333332 Who invented the game bowling? -> $x: (bowling, be invent in, $x) -> (5-pin bowling, apparently was invented in, Canada) -> Canada (3102ms) Who invented the game bowling? 1909 1.333333333332 Who invented the game bowling? -> $x: (bowling, be invent in, $x) -> (Five-pin bowling, was invented in, 1909) -> 1909 (3102ms) Who invented the game bowling? Toronto 1.333333333332 Who invented the game bowling? -> $x: (bowling, be invent in, $x) -> (Five-pin bowling, was invented in, Toronto) -> Toronto (3102ms) Who invented the game bowling? Worcester 1.333333333332 Who invented the game bowling? -> $x: (bowling, be invent in, $x) -> (Candlepin bowling, was invented in, Worcester) -> Worcester (3102ms) Who invented the game bowling? Super? 0.4444444444430001 Who invented the game bowling? -> $x: ($x, be create of, bowling) -> (Super?, Is the art of creating, a creative Super Bowl ad) -> Super? (3430ms) Who invented the game bowling? Live Maine lobster 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (Live Maine lobster, can now be part of, Super Bowl celebrations) -> Live Maine lobster (4739ms) Who invented the game bowling? sweeping anti-terror measures 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (sweeping anti-terror measures, have been part of, the Super Bowl) -> sweeping anti-terror measures (4511ms) Who invented the game bowling? Christina Aguilera 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (Christina Aguilera, had been part of, Super Bowl) -> Christina Aguilera (4727ms) Who invented the game bowling? The commercials 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (The commercials, is the best part of, the Super Bowl) -> The commercials (4635ms) Who invented the game bowling? the Indian states 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (the Indian states, are part of, the grain bowl) -> the Indian states (4727ms) Who invented the game bowling? a month 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (a month, was a part of, four bowl teams) -> a month (4635ms) Who invented the game bowling? The park 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (The park, is part of, the Rose Bowl complex) -> The park (4733ms) Who invented the game bowling? Making decisions 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (Making decisions, is such an important part of, bowling) -> Making decisions (4699ms) Who invented the game bowling? University 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (University, was part of, three Cotton Bowl teams) -> University (4474ms) Who invented the game bowling? the competition 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (the competition, is part of, Bug Bowl) -> the competition (4733ms) Who invented the game bowling? George 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (George, was a part of, the Titans ? Super Bowl team) -> George (4699ms) Who invented the game bowling? protests 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (protests, will be a part of, the Super Bowl scenery) -> protests (4635ms) Who invented the game bowling? The fragments 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (The fragments, are parts of, bowls) -> The fragments (4727ms) Who invented the game bowling? players 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (players, have been part of, the fast bowling camps) -> players (4473ms) Who invented the game bowling? 2 Drainboards 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (2 Drainboards, is part of, the Pro Bowl Series) -> 2 Drainboards (4699ms) Who invented the game bowling? Pagac 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (Pagac, was part of, 6 Rose Bowls) -> Pagac (4511ms) Who invented the game bowling? Mohawk 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (Mohawk, was part of, the Mud Bowl) -> Mohawk (4727ms) Who invented the game bowling? a non-factor 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (a non-factor, was a major part of, the SuperBowl) -> a non-factor (4564ms) Who invented the game bowling? Haley 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (Haley, was part of, five Super Bowl teams) -> Haley (4733ms) Who invented the game bowling? injuries 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (injuries, were part and parcel of, fast bowling) -> injuries (4699ms) Who invented the game bowling? THE BOWLS 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (THE BOWLS, Be a part of, The Bowls Project) -> THE BOWLS (4699ms) Who invented the game bowling? red 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (red, is part of, the bowl) -> red (4474ms) Who invented the game bowling? the miss Making adjustments 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (the miss Making adjustments, is part of, bowling) -> the miss Making adjustments (4727ms) Who invented the game bowling? Beautiful women 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (Beautiful women, have always been part of, the Super Bowl) -> Beautiful women (4733ms) Who invented the game bowling? Matthew 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (Matthew, was part of, the reading bowl) -> Matthew (4564ms) Who invented the game bowling? Kansas 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (Kansas, had been part of, the dust bowl) -> Kansas (4636ms) Who invented the game bowling? kids 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (kids, be a part of, Super Bowl XLVI) -> kids (4733ms) Who invented the game bowling? promotional swag bags 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (promotional swag bags, have been a part of, NCAA bowl games) -> promotional swag bags (4739ms) Who invented the game bowling? magic 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (magic, is a big part of, BloodBowl) -> magic (4733ms) Who invented the game bowling? UNF 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (UNF, was being part of, the Ethics Bowl) -> UNF (4727ms) Who invented the game bowling? the NFC 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (the NFC, should be a part of, the 2012 Pro Bowl) -> the NFC (4511ms) Who invented the game bowling? a wide variety 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (a wide variety, was such a part of, the Bowl) -> a wide variety (4564ms) Who invented the game bowling? Borges 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (Borges, was part of, four bowl teams) -> Borges (4727ms) Who invented the game bowling? Magic 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (Magic, is an integral part of, BloodBowl) -> Magic (4606ms) Who invented the game bowling? Raymond 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (Raymond, was part of, two BCS bowl victories) -> Raymond (4733ms) Who invented the game bowling? 14.5 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (14.5, was a crucial part of, the Super Bowl run) -> 14.5 (4733ms) Who invented the game bowling? taking photos 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (taking photos, is part of, my rice bowl) -> taking photos (4473ms) Who invented the game bowling? Celebrity-studded events 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (Celebrity-studded events, are part of, Super Bowl week) -> Celebrity-studded events (4727ms) Who invented the game bowling? a pair 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (a pair, was a part of, four bowl wins) -> a pair (4739ms) Who invented the game bowling? The effort 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (The effort, is part of, the ?Souper Bowl) -> The effort (4606ms) Who invented the game bowling? game jaw 1 or 2 Tempe 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (game jaw 1 or 2 Tempe, is part of, the four bowl rotation) -> game jaw 1 or 2 Tempe (4699ms) Who invented the game bowling? the fun 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (the fun, are all part of, the Rose Bowl experience) -> the fun (4727ms) Who invented the game bowling? Madonna 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (Madonna, was part of, the Super Bowl story) -> Madonna (4733ms) Who invented the game bowling? Patterson 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (Patterson, was a part of, six Tulsa bowl teams) -> Patterson (4733ms) Who invented the game bowling? seizures 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (seizures, appears to be part of, another ?Super Bowl Crackdown) -> seizures (4733ms) Who invented the game bowling? Drainboard 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (Drainboard, is part of, the Pro Bowl Series) -> Drainboard (4727ms) Who invented the game bowling? Protests 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (Protests, Should Be a Part of, Super Bowl Sunday) -> Protests (3430ms) Who invented the game bowling? an NFL wide receiver 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (an NFL wide receiver, was part of, the Super Bowl XXXII) -> an NFL wide receiver (4727ms) Who invented the game bowling? The painting 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (The painting, was part of, a Super Bowl XLV wager) -> The painting (4699ms) Who invented the game bowling? Peyton Manning 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (Peyton Manning, are also part of, the Gator Bowl Mystique) -> Peyton Manning (4727ms) Who invented the game bowling? the commercials 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (the commercials, are the best part of, the SuperBowl) -> the commercials (4727ms) Who invented the game bowling? Pioli 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (Pioli, was part of, multiple Super Bowls) -> Pioli (4564ms) Who invented the game bowling? scantily clad women 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (scantily clad women, were a big part of, the Super Bowl) -> scantily clad women (4733ms) Who invented the game bowling? Akile 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (Akile, is a part of, a bowling team) -> Akile (4564ms) Who invented the game bowling? 2010 Social media 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (2010 Social media, has been a part of, the Super Bowl) -> 2010 Social media (4699ms) Who invented the game bowling? the protrusions 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (the protrusions, are part of, the bowl) -> the protrusions (4733ms) Who invented the game bowling? The Four Bowl Utility Sink 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (The Four Bowl Utility Sink, is part of, the Pro Bowl Series) -> The Four Bowl Utility Sink (4474ms) Who invented the game bowling? The One Bowl Utility Sink 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (The One Bowl Utility Sink, is part of, the Pro Bowl Series) -> The One Bowl Utility Sink (4474ms) Who invented the game bowling? 2 days 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (2 days, is part of, a bowling league) -> 2 days (4699ms) Who invented the game bowling? Alcohol 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (Alcohol, is often part of, a super bowl party) -> Alcohol (4511ms) Who invented the game bowling? coaching 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (coaching, has been part of, five Super Bowl championships) -> coaching (4606ms) Who invented the game bowling? the Cougars 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (the Cougars, was a part of, four bowl games) -> the Cougars (4606ms) Who invented the game bowling? the coach 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (the coach, has been a part of, a Super Bowl winner) -> the coach (4636ms) Who invented the game bowling? The Three Bowl Utility Sink 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (The Three Bowl Utility Sink, is part of, the Pro Bowl Series) -> The Three Bowl Utility Sink (4511ms) Who invented the game bowling? ethics 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (ethics, is excited to be a part of, Ethics Bowl) -> ethics (4699ms) Who invented the game bowling? Watson 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (Watson, was a part of, two bowl teams) -> Watson (4635ms) Who invented the game bowling? the game 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (the game, is their favorite part of, the Super Bowl festivities) -> the game (4727ms) Who invented the game bowling? the TV commercials 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (the TV commercials, are the best part of, the Super Bowl) -> the TV commercials (4511ms) Who invented the game bowling? wire services 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (wire services, are part of, the Super Bowl crowd) -> wire services (4474ms) Who invented the game bowling? wings 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (wings, are a critical part of, the Super Bowl) -> wings (4564ms) Who invented the game bowling? Match play 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (Match play, is a traditional part of, major bowling tournaments) -> Match play (4636ms) Who invented the game bowling? a member 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (a member, has been a part of, 6 Super Bowls) -> a member (4635ms) Who invented the game bowling? the ads 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (the ads, were the best part of, the Super Bowl) -> the ads (4564ms) Who invented the game bowling? community 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (community, is a part of, the smaller bowl) -> community (4511ms) Who invented the game bowling? Clements 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (Clements, has been a part of, 12 bowl games) -> Clements (4699ms) Who invented the game bowling? Kobayashi vs. a bear 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (Kobayashi vs. a bear, was part of, The Glutton Bowl) -> Kobayashi vs. a bear (4727ms) Who invented the game bowling? the end zone 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (the end zone, is part of, Super Bowl lore) -> the end zone (4699ms) Who invented the game bowling? The five BCS games 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (The five BCS games, are part of, the overall bowl structure) -> The five BCS games (4606ms) Who invented the game bowling? Chute # 2 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (Chute # 2, are part of, the ?Daly Bowl) -> Chute # 2 (4733ms) Who invented the game bowling? The Two Bowl Utility Sink 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (The Two Bowl Utility Sink, is part of, the Pro Bowl Series) -> The Two Bowl Utility Sink (4606ms) Who invented the game bowling? conference 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (conference, is a major part of, the major bowls image) -> conference (4733ms) Who invented the game bowling? Meade Chopper 1 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (Meade Chopper 1, is now part of, the biggest bowl) -> Meade Chopper 1 (4733ms) Who invented the game bowling? six seasons 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (six seasons, was a part of, two Holiday Bowl appearances) -> six seasons (4564ms) Who invented the game bowling? The Myles family 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (The Myles family, has been a part of, Bowling Green) -> The Myles family (4727ms) Who invented the game bowling? a senior and 0.333333333333 Who invented the game bowling? -> $x: ($x, be part of, bowling) -> (a senior and, was a part of, two bowl teams) -> a senior and (4474ms) Who invented the game bowling? Rabbi Ain 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (Rabbi Ain, sported, a blue button-down bowling shirt) -> Rabbi Ain (4761ms) Who invented the game bowling? Penn State 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (Penn State, played for, the Rose Bowl) -> Penn State (4756ms) Who invented the game bowling? The Gators 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (The Gators, can still play for, a bowl game invitation) -> The Gators (4765ms) Who invented the game bowling? He?ll 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (He?ll, be playing for, a Super Bowl title) -> He?ll (4756ms) Who invented the game bowling? three-cocked hats 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (three-cocked hats, were playing, bowls) -> three-cocked hats (4765ms) Who invented the game bowling? funny watching people 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (funny watching people, play, bowling) -> funny watching people (4786ms) Who invented the game bowling? course 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (course, played for, their 1985 Super Bowl team) -> course (4786ms) Who invented the game bowling? Miami Dolphins 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (Miami Dolphins, is a sports team that won the, super bowl) -> Miami Dolphins (4793ms) Who invented the game bowling? Popped 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (Popped, played a game of, Bowling) -> Popped (4739ms) Who invented the game bowling? a ligula 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (a ligula, sported, a pointed oval bowl) -> a ligula (4761ms) Who invented the game bowling? a general rule consumers 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (a general rule consumers, are planning to play, bowling) -> a general rule consumers (4765ms) Who invented the game bowling? the villagers 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (the villagers, were now playing, bowls) -> the villagers (4786ms) Who invented the game bowling? philadelphia-eagles 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (philadelphia-eagles, is a sports team that won the, super bowl) -> philadelphia-eagles (4760ms) Who invented the game bowling? BUFFALO BILLS 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (BUFFALO BILLS, is a sports team that won the, super bowl) -> BUFFALO BILLS (4756ms) Who invented the game bowling? the improvising musicians 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (the improvising musicians, played with, bowls) -> the improvising musicians (4774ms) Who invented the game bowling? The Illini 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (The Illini, were playing for, a bowl berth) -> The Illini (4770ms) Who invented the game bowling? a chance 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (a chance, are playing for, our bowl life) -> a chance (4765ms) Who invented the game bowling? Calvin 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (Calvin, played, bowls) -> Calvin (4782ms) Who invented the game bowling? the Steelers 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (the Steelers, get ready to play for, a seventh Super Bowl title) -> the Steelers (4739ms) Who invented the game bowling? Redskins 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (Redskins, is a sports team that won the, super bowl) -> Redskins (4770ms) Who invented the game bowling? The semi-final losers 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (The semi-final losers, would play for, the Rose Bowl) -> The semi-final losers (4745ms) Who invented the game bowling? The Motivator 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (The Motivator, plays, bowls) -> The Motivator (4770ms) Who invented the game bowling? the Nittany Lions 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (the Nittany Lions, were still playing for, the Rose Bowl) -> the Nittany Lions (4790ms) Who invented the game bowling? a team 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (a team, plays really good in, bowling) -> a team (4793ms) Who invented the game bowling? John Frank 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (John Frank, played tight end for, the Super Bowl champion 49ers) -> John Frank (4765ms) Who invented the game bowling? a movie 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (a movie, played, bowling) -> a movie (4770ms) Who invented the game bowling? wether young people 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (wether young people, are playing, bowls) -> wether young people (4745ms) Who invented the game bowling? Eli 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (Eli, was playing for, a Super Bowl) -> Eli (4778ms) Who invented the game bowling? houston texans 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (houston texans, is a sports team that won the, super bowl) -> houston texans (4782ms) Who invented the game bowling? Corder 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (Corder, played for, Bowling Green) -> Corder (4790ms) Who invented the game bowling? Deyn 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (Deyn, sported, a black pudding-bowl cut) -> Deyn (4774ms) Who invented the game bowling? Octodad 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (Octodad, plays, bowling) -> Octodad (4774ms) Who invented the game bowling? Charles I. 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (Charles I., played, bowls) -> Charles I. (4778ms) Who invented the game bowling? movie 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (movie, play, bowling) -> movie (4782ms) Who invented the game bowling? 5123 times Game description 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (5123 times Game description, Want to play, bowling) -> 5123 times Game description (4756ms) Who invented the game bowling? the Online Games forum 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (the Online Games forum, enjoy playing, Bowling) -> the Online Games forum (4761ms) Who invented the game bowling? BILLS 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (BILLS, is a sports team that won the, super bowl) -> BILLS (4774ms) Who invented the game bowling? last Sunday 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (last Sunday, earn the right to play for, this year?s Super Bowl) -> last Sunday (4751ms) Who invented the game bowling? Bliss 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (Bliss, is a sports bar with, a bowling alley) -> Bliss (4756ms) Who invented the game bowling? Florida Intl Golden Panthers 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (Florida Intl Golden Panthers, is a sports team that won the, super bowl) -> Florida Intl Golden Panthers (4786ms) Who invented the game bowling? Facebook users 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (Facebook users, can play, bowling) -> Facebook users (4765ms) Who invented the game bowling? they?ve 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (they?ve, played well in, bowls) -> they?ve (4770ms) Who invented the game bowling? Louis Rams 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (Louis Rams, is a sports team that won the, super bowl) -> Louis Rams (4745ms) Who invented the game bowling? the winners 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (the winners, play for, the Bowl Championship Series) -> the winners (4761ms) Who invented the game bowling? the semifinals 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (the semifinals, be played in, bowls) -> the semifinals (4739ms) Who invented the game bowling? pittsburg steelers 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (pittsburg steelers, is a sports team that won the, super bowl) -> pittsburg steelers (4756ms) Who invented the game bowling? Hobbies and interests 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (Hobbies and interests, like playing, bowling) -> Hobbies and interests (4761ms) Who invented the game bowling? the genuine students 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (the genuine students, play, bowling) -> the genuine students (4778ms) Who invented the game bowling? fact 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (fact, be playing for, bowl eligibility) -> fact (4782ms) Who invented the game bowling? Guests 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (Guests, can also play, bowling) -> Guests (4786ms) Who invented the game bowling? members 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (members, enjoy playing, bowls) -> members (4786ms) Who invented the game bowling? 5:49:07 0.11111111111100003 Who invented the game bowling? -> $x: ($x, be history of, bowling) -> (5:49:07, AM The history of, the super bowl) -> 5:49:07 (4786ms) Who invented the game bowling? Weis 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (Weis, will call the plays for, the Hawaii Bowl) -> Weis (4778ms) Who invented the game bowling? Portugal Time 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (Portugal Time, went to play, bowling) -> Portugal Time (4778ms) Who invented the game bowling? the other three 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (the other three, played in, bowls) -> the other three (4745ms) Who invented the game bowling? Richard 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (Richard, has played, bowls) -> Richard (4765ms) Who invented the game bowling? 5216 times Game description 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (5216 times Game description, Want to play, bowling) -> 5216 times Game description (4745ms) Who invented the game bowling? Carlsbad 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (Carlsbad, love sports like, bowling and tennis) -> Carlsbad (4761ms) Who invented the game bowling? the teams 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (the teams, will play for, the Corn Bowl trophy) -> the teams (4793ms) Who invented the game bowling? Mary 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (Mary, started playing, bowls) -> Mary (4782ms) Who invented the game bowling? NY Jets 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (NY Jets, is a sports team that won the, super bowl) -> NY Jets (4770ms) Who invented the game bowling? Seattle Seahawks 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (Seattle Seahawks, is a sports team that won the, Super Bowl XL) -> Seattle Seahawks (4790ms) Who invented the game bowling? could?ve 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (could?ve, played an individual sport like, wrestling , bowling) -> could?ve (4782ms) Who invented the game bowling? atlanta falcons 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (atlanta falcons, is a sports team that won the, super bowl) -> atlanta falcons (4765ms) Who invented the game bowling? Manning 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (Manning, reportedly wants to play for, a Super Bowl contender) -> Manning (4782ms) Who invented the game bowling? one fairly well-known Hollywood star 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (one fairly well-known Hollywood star, sports, a Super Bowl ring) -> one fairly well-known Hollywood star (4765ms) Who invented the game bowling? Deans and friars 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (Deans and friars, played at, bowls) -> Deans and friars (4782ms) Who invented the game bowling? 2 pairs 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (2 pairs, played, bowling) -> 2 pairs (4786ms) Who invented the game bowling? Time Zone 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (Time Zone, played, bowling) -> Time Zone (4761ms) Who invented the game bowling? Dancing 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (Dancing, is like playing, bowling) -> Dancing (4751ms) Who invented the game bowling? Enberg 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (Enberg, was the play-by-play announcer for, the Rose Bowl) -> Enberg (4789ms) Who invented the game bowling? 5096 times Game description 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (5096 times Game description, Want to play, bowling) -> 5096 times Game description (4778ms) Who invented the game bowling? Which teams 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (Which teams, will play for, a BCS bowl game) -> Which teams (4765ms) Who invented the game bowling? Kampe 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (Kampe, was a two-sport athlete at, Bowling Green) -> Kampe (4774ms) Who invented the game bowling? Bocce ball 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (Bocce ball, is a sport similar to, bowling) -> Bocce ball (4790ms) Who invented the game bowling? Chicago bears 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (Chicago bears, is a sports team that won the, super bowl) -> Chicago bears (4782ms) Who invented the game bowling? GIANTS 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (GIANTS, is a sports team that won the, super bowl) -> GIANTS (4786ms) Who invented the game bowling? condition 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (condition, played, bowls) -> condition (4761ms) Who invented the game bowling? men 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (men, were playing, bowls) -> men (4786ms) Who invented the game bowling? the AFC West 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (the AFC West, will be playing for, the Super Bowl) -> the AFC West (4770ms) Who invented the game bowling? chiefs 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (chiefs, is a sports team that won the, super bowl) -> chiefs (4745ms) Who invented the game bowling? The unit 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (The unit, sports, a 6.7 litre stainless steel bowl) -> The unit (4778ms) Who invented the game bowling? I?ve 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (I?ve, played for, the World Bowl Championship) -> I?ve (4789ms) Who invented the game bowling? the field 0.11111111111100003 Who invented the game bowling? -> $x: ($x, be play of, bowling) -> (the field, is worthy of playing in, Super Bowl 45) -> the field (4745ms) Who invented the game bowling? a middle school student ,i 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (a middle school student ,i, sometimes played, bowling) -> a middle school student ,i (4745ms) Who invented the game bowling? Buccaneers 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (Buccaneers, is a sports team that won the, super bowl) -> Buccaneers (4774ms) Who invented the game bowling? BEAST 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (BEAST, was happily playing, bowling) -> BEAST (4774ms) Who invented the game bowling? children 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (children, want to play, bowling) -> children (4790ms) Who invented the game bowling? Cincinnati 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (Cincinnati, offers the sport for, all ages , bowling) -> Cincinnati (4751ms) Who invented the game bowling? Greenbay Packers 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (Greenbay Packers, is a sports team that won the, super bowl) -> Greenbay Packers (4745ms) Who invented the game bowling? the spa 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (the spa, play a game of, bowling) -> the spa (4778ms) Who invented the game bowling? Minnesota 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (Minnesota, is playing for, a Florida bowl) -> Minnesota (4774ms) Who invented the game bowling? countries everyone 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (countries everyone, wants to play, bowls) -> countries everyone (4745ms) Who invented the game bowling? a glass 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (a glass, play a game of, bowls) -> a glass (4770ms) Who invented the game bowling? the all-stars 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (the all-stars, play for, the Super Bowl teams) -> the all-stars (4786ms) Who invented the game bowling? Dallas Cowboys 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (Dallas Cowboys, is a sports team that won the, super bowl) -> Dallas Cowboys (4765ms) Who invented the game bowling? Sir Francis Drake 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (Sir Francis Drake, was playing, bowls) -> Sir Francis Drake (4782ms) Who invented the game bowling? the sauna 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (the sauna, play a game of, bowling) -> the sauna (4793ms) Who invented the game bowling? the girls 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (the girls, played, bowling) -> the girls (4778ms) Who invented the game bowling? the other sea captains 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (the other sea captains, were playing at, bowls) -> the other sea captains (4782ms) Who invented the game bowling? the Falcons 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (the Falcons, make a play for, Saints Pro Bowl guard Carl Nicks) -> the Falcons (4756ms) Who invented the game bowling? St Louis Rams 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (St Louis Rams, is a sports team that won the, super bowl) -> St Louis Rams (4774ms) Who invented the game bowling? UH 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (UH, would play for, a BCS bowl game) -> UH (4774ms) Who invented the game bowling? teams 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (teams, played, bowling) -> teams (4756ms) Who invented the game bowling? 4 teams 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (4 teams, are playing for, the Super Bowl) -> 4 teams (4782ms) Who invented the game bowling? Bowling 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (Bowling, is a kind of equipment for the sport, Bowling Shoes) -> Bowling (4790ms) Who invented the game bowling? Baltimore Colts 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (Baltimore Colts, is a sports team that won the, super bowl) -> Baltimore Colts (4751ms) Who invented the game bowling? tennessee titans 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (tennessee titans, is a sports team that won the, super bowl) -> tennessee titans (4745ms) Who invented the game bowling? the best teams 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (the best teams, play each other for, the NFL Super Bowl) -> the best teams (4790ms) Who invented the game bowling? a quiet person 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (a quiet person, play some sports like, golf and bowling) -> a quiet person (4751ms) Who invented the game bowling? minnesota-vikings 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (minnesota-vikings, is a sports team that won the, super bowl) -> minnesota-vikings (4778ms) Who invented the game bowling? Not everybody 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (Not everybody, 's just playing for, a bowl game) -> Not everybody (4751ms) Who invented the game bowling? Detroit Lions 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (Detroit Lions, is a sports team that won the, super bowl) -> Detroit Lions (4756ms) Who invented the game bowling? Browns 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (Browns, is a sports team that won the, super bowl) -> Browns (4765ms) Who invented the game bowling? new-england-patriots 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (new-england-patriots, is a sports team that won the, super bowl) -> new-england-patriots (4770ms) Who invented the game bowling? February 12 , 2012 | Sunday 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (February 12 , 2012 | Sunday, will play for, a BCS bowl game) -> February 12 , 2012 | Sunday (4782ms) Who invented the game bowling? Common hobbies 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (Common hobbies, include sports such as, bowling and basketball) -> Common hobbies (4778ms) Who invented the game bowling? Bowling Green State University 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (Bowling Green State University, Sports teams, Bowling Green Falcons men's basketball) -> Bowling Green State University (4778ms) Who invented the game bowling? UTEP 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (UTEP, is playing for, a bowl game) -> UTEP (4751ms) Who invented the game bowling? A veteran 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (A veteran, played for, a Super Bowl champion) -> A veteran (4790ms) Who invented the game bowling? A profesional girl 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (A profesional girl, playing, bowling) -> A profesional girl (4751ms) Who invented the game bowling? the Wildcats 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (the Wildcats, are still playing for, a nice bowl game) -> the Wildcats (4786ms) Who invented the game bowling? more people 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (more people, playing, bowls) -> more people (4770ms) Who invented the game bowling? The 1970s basketball star 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (The 1970s basketball star, played for, Bowling Green) -> The 1970s basketball star (4774ms) Who invented the game bowling? the house 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (the house, was playing, bowling) -> the house (4760ms) Who invented the game bowling? Reggie Bush 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (Reggie Bush, has played his last game for, the Super Bowl Champs) -> Reggie Bush (4782ms) Who invented the game bowling? Drake 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (Drake, to have played, bowls) -> Drake (4782ms) Who invented the game bowling? Bowling pin 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (Bowling pin, Sport used for, Bowling) -> Bowling pin (4790ms) Who invented the game bowling? State University 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (State University, is a sports team also known as, bowling green state falcons) -> State University (4765ms) Who invented the game bowling? Boccia 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (Boccia, is a sport similar to, indoor bowls) -> Boccia (4790ms) Who invented the game bowling? Bowls Ken Woods 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (Bowls Ken Woods, has been playing, bowls) -> Bowls Ken Woods (4778ms) Who invented the game bowling? 5220 times Game description 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (5220 times Game description, Want to play, bowling) -> 5220 times Game description (4790ms) Who invented the game bowling? the World League 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (the World League, played for, the World Bowl Championship) -> the World League (4739ms) Who invented the game bowling? 15 Oct 2006 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (15 Oct 2006, like playing, Bowling) -> 15 Oct 2006 (4778ms) Who invented the game bowling? BRUCE 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (BRUCE, likes to play, bowling) -> BRUCE (4770ms) Who invented the game bowling? Pats 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (Pats, is a sports team that won the, super bowl) -> Pats (4756ms) Who invented the game bowling? George Thomas 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (George Thomas, are playing, bowls) -> George Thomas (4751ms) Who invented the game bowling? Houston Oilers 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (Houston Oilers, is a sports team that won the, super bowl) -> Houston Oilers (4745ms) Who invented the game bowling? fingers 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (fingers, start playing, bowling) -> fingers (4751ms) Who invented the game bowling? a quarterback 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (a quarterback, played for, two Super Bowl-winning squads) -> a quarterback (4770ms) Who invented the game bowling? tenants 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (tenants, play, bowling) -> tenants (4745ms) Who invented the game bowling? Saints 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (Saints, will play for, Super Bowl) -> Saints (4790ms) Who invented the game bowling? 15 winners 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (15 winners, play for, the Super Bowl) -> 15 winners (4774ms) Who invented the game bowling? Vandy 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (Vandy, was playing for, bowl eligibility) -> Vandy (4756ms) Who invented the game bowling? so many people 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (so many people, are playing, Bowls) -> so many people (4745ms) Who invented the game bowling? the Lord Mayor 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (the Lord Mayor, was playing, bowls) -> the Lord Mayor (4761ms) Who invented the game bowling? cincinnati-bengals 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (cincinnati-bengals, is a sports team that won the, super bowl) -> cincinnati-bengals (4778ms) Who invented the game bowling? a strange company 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (a strange company, was playing at, bowls) -> a strange company (4751ms) Who invented the game bowling? Bowling ball 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (Bowling ball, Sport used for, Bowling) -> Bowling ball (4739ms) Who invented the game bowling? the old men 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (the old men, play, bowls) -> the old men (4765ms) Who invented the game bowling? 2010 Commonwealth Games 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (2010 Commonwealth Games, Sports, Bowls) -> 2010 Commonwealth Games (4786ms) Who invented the game bowling? jacksonville-jaguars 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (jacksonville-jaguars, is a sports team that won the, super bowl) -> jacksonville-jaguars (4789ms) Who invented the game bowling? Nelson and Queen Elizabeth 1st 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (Nelson and Queen Elizabeth 1st, played, bowls) -> Nelson and Queen Elizabeth 1st (4770ms) Who invented the game bowling? parks 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (parks, play, bowling) -> parks (4745ms) Who invented the game bowling? Ravens 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (Ravens, is a sports team that won the, super bowl) -> Ravens (4761ms) Who invented the game bowling? Denver broncos 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (Denver broncos, is a sports team that won the, super bowl) -> Denver broncos (4790ms) Who invented the game bowling? the Patriots and Giants 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (the Patriots and Giants, will play for, the Super Bowl) -> the Patriots and Giants (4774ms) Who invented the game bowling? verandas 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (verandas, sported, a table , mirror , bowl and towel) -> verandas (4774ms) Who invented the game bowling? oakland raiders 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (oakland raiders, is a sports team that won the, super bowl) -> oakland raiders (4782ms) Who invented the game bowling? the Wii 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (the Wii, can play remarkably like, bowling) -> the Wii (4786ms) Who invented the game bowling? Georgia 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play for, bowling) -> (Georgia, is playing for, its bowl life) -> Georgia (4786ms) Who invented the game bowling? Indianapolis Colts 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (Indianapolis Colts, is a sports team that won the, super bowl) -> Indianapolis Colts (4786ms) Who invented the game bowling? the last weekend 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (the last weekend, played, bowling) -> the last weekend (4774ms) Who invented the game bowling? friends 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (friends, ,play, bowling) -> friends (4770ms) Who invented the game bowling? Francis Drake 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (Francis Drake, played, bowls) -> Francis Drake (4765ms) Who invented the game bowling? WKU Hilltoppers basketball 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (WKU Hilltoppers basketball, Sports Team Location, Bowling Green) -> WKU Hilltoppers basketball (4760ms) Who invented the game bowling? the Greeks and Romans 0.11111111111100003 Who invented the game bowling? -> $x: ($x, play, bowling) -> (the Greeks and Romans, played some variation of, bowling) -> the Greeks and Romans (4774ms) Who invented the game bowling? Pittsburgh Steelers Sunday 0.11111111111100003 Who invented the game bowling? -> $x: ($x, sport, bowling) -> (Pittsburgh Steelers Sunday, is a sports team that won the, super bowl) -> Pittsburgh Steelers Sunday (4761ms) Who invented the game bowling? Abbas -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (Abbas, was then introduced into, the bowling attack) -> Abbas (4797ms) Who invented the game bowling? ?KFC -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (?KFC, has just introduced, the new Cheesy Bacon Bowl) -> ?KFC (4797ms) Who invented the game bowling? Cadillac -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (Cadillac, introduced, its famous 2008 Super Bowl ad) -> Cadillac (4793ms) Who invented the game bowling? sauce black pepper -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (sauce black pepper, was introduced in, a bowl) -> sauce black pepper (4800ms) Who invented the game bowling? Brunswick -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (Brunswick, introduced, 'Xtreme ' bowling) -> Brunswick (4793ms) Who invented the game bowling? wood -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (wood, have been introduced for, bowls and boards) -> wood (4793ms) Who invented the game bowling? Capitol Hill -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (Capitol Hill, was introduced to In, the Bowl) -> Capitol Hill (4797ms) Who invented the game bowling? Carter -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (Carter, was introduced to, bowling) -> Carter (4800ms) Who invented the game bowling? food items -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (food items, should either be introduced in, a smooth-sided bowl) -> food items (4797ms) Who invented the game bowling? Randy White -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (Randy White, is always introduced as, Super Bowl MVP.?) -> Randy White (4800ms) Who invented the game bowling? A Twenty20 Series -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (A Twenty20 Series, has been introduced to, the Rose Bowl) -> A Twenty20 Series (4797ms) Who invented the game bowling? Brunswick Bowling -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (Brunswick Bowling, introduced, a new line of bowling seating) -> Brunswick Bowling (4797ms) Who invented the game bowling? The new model -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (The new model, was introduced during, the Super Bowl) -> The new model (4800ms) Who invented the game bowling? IGBO -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (IGBO, was proud to introduce, its first ever bowling ball) -> IGBO (4797ms) Who invented the game bowling? the Nintendo Wii -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (the Nintendo Wii, introduced, its bowling game) -> the Nintendo Wii (4797ms) Who invented the game bowling? program -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (program, introduced the world to, our Coco Bowls) -> program (4793ms) Who invented the game bowling? MetLife -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (MetLife, introduced during, Super Bowl XLVI) -> MetLife (4797ms) Who invented the game bowling? Bowls Sweden -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (Bowls Sweden, are continuing to introduce, short mat bowling) -> Bowls Sweden (4797ms) Who invented the game bowling? the shredded potatoes -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (the shredded potatoes, are introduced to, the bowl) -> the shredded potatoes (4793ms) Who invented the game bowling? a high level -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (a high level, was introduced to, bowls) -> a high level (4797ms) Who invented the game bowling? the sailors -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (the sailors, were introduced to, lawn bowling) -> the sailors (4800ms) Who invented the game bowling? 2011 -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (2011, was introduced to, bowl) -> 2011 (4800ms) Who invented the game bowling? America Forward -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (America Forward, is introducing, Super Bowl Care Packages) -> America Forward (4800ms) Who invented the game bowling? playoff -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (playoff, is introduced into, the Football Bowl Subdivision) -> playoff (4793ms) Who invented the game bowling? Elton John -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (Elton John, is introduced at, the Hollywood Bowl) -> Elton John (4800ms) Who invented the game bowling? Caterpillar -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (Caterpillar, introduced, an open bowl scraper) -> Caterpillar (4800ms) Who invented the game bowling? New Orleans -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (New Orleans, were introduced to, bowl politics) -> New Orleans (4800ms) Who invented the game bowling? anticoagulated whole blood -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (anticoagulated whole blood, is introduced into, the bowl) -> anticoagulated whole blood (4802ms) Who invented the game bowling? the computer mouse -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (the computer mouse, was introduced during, Super Bowl XVIII) -> the computer mouse (4797ms) Who invented the game bowling? Students -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (Students, are introduced to, segmented bowls) -> Students (4797ms) Who invented the game bowling? a the Sunsilk campaign -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (a the Sunsilk campaign, will be introduced on, Super Bowl Sunday) -> a the Sunsilk campaign (4800ms) Who invented the game bowling? a whole new dimension -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (a whole new dimension, was introduced into, Super Bowl ads) -> a whole new dimension (4793ms) Who invented the game bowling? The teacher -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (The teacher, introduces, the bowl) -> The teacher (4800ms) Who invented the game bowling? Pocket God -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (Pocket God, has also introduced, a new Super Bowl skin pack) -> Pocket God (4797ms) Who invented the game bowling? A-Basin -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (A-Basin, will introduce, Montezuma Bowl) -> A-Basin (4800ms) Who invented the game bowling? a judgment -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (a judgment, rather introduces, the seven bowl judgments) -> a judgment (4800ms) Who invented the game bowling? the seventh trumpet -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (the seventh trumpet, introduces, the seven bowls) -> the seventh trumpet (4793ms) Who invented the game bowling? The meeting -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (The meeting, introduces the participants to, the Lobster Bowl) -> The meeting (4800ms) Who invented the game bowling? Wada Hiroaki -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (Wada Hiroaki, proudly introduces, this summer tea ceremony bowl) -> Wada Hiroaki (4793ms) Who invented the game bowling? Fripp -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (Fripp, introduced, a penalty-bowl) -> Fripp (4800ms) Who invented the game bowling? Gig Harbor -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (Gig Harbor, will be introduced to, The Empty Bowls Project) -> Gig Harbor (4793ms) Who invented the game bowling? The new luxury sedan -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (The new luxury sedan, was introduced to, Super Bowl TV viewers) -> The new luxury sedan (4793ms) Who invented the game bowling? Mustafa -0.22222222222299992 Who invented the game bowling? -> $x: ($x, introduce, bowling) -> (Mustafa, was originally introduced at, a Super Bowl commercial) -> Mustafa (4797ms) Who invented the game bowling? TIP -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (TIP, find, a bowl) -> TIP (4803ms) Who invented the game bowling? Hertfordshire Page 1 | Clubbz -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (Hertfordshire Page 1 | Clubbz, Find, Bowling Clubs) -> Hertfordshire Page 1 | Clubbz (4802ms) Who invented the game bowling? Tulip -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (Tulip, found, a small bowl) -> Tulip (4805ms) Who invented the game bowling? the dog -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (the dog, found, the bowl) -> the dog (4808ms) Who invented the game bowling? Sandhurst -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (Sandhurst, found, the bowling) -> Sandhurst (4805ms) Who invented the game bowling? Police -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (Police, found, a cereal bowl) -> Police (4810ms) Who invented the game bowling? the bundle -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (the bundle, found, a bowl) -> the bundle (4810ms) Who invented the game bowling? eight pigs -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (eight pigs, found, the bowl) -> eight pigs (4805ms) Who invented the game bowling? walk -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (walk, find, the bowl) -> walk (4812ms) Who invented the game bowling? Dantzler -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (Dantzler, found, a small plastic bowl) -> Dantzler (4805ms) Who invented the game bowling? i ll -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (i ll, found, datura bowl) -> i ll (4808ms) Who invented the game bowling? the single mother -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (the single mother, found, Bowling Green Technical College) -> the single mother (4813ms) Who invented the game bowling? two certificates -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (two certificates, enjoys finding, bowls) -> two certificates (4808ms) Who invented the game bowling? West Sussex Page 1 | Clubbz -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (West Sussex Page 1 | Clubbz, Find, Bowling Clubs) -> West Sussex Page 1 | Clubbz (4805ms) Who invented the game bowling? Vitamin C. History Archaeologists -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (Vitamin C. History Archaeologists, have found, bowls) -> Vitamin C. History Archaeologists (4808ms) Who invented the game bowling? heels -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (heels, found, the best bowl) -> heels (4808ms) Who invented the game bowling? close -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (close, Find, a bowling center / alley) -> close (4803ms) Who invented the game bowling? The archeologists -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (The archeologists, found, ceramic bowls) -> The archeologists (4805ms) Who invented the game bowling? Crudely inscribed names -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (Crudely inscribed names, have been found on, bowls) -> Crudely inscribed names (4813ms) Who invented the game bowling? MI -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (MI, found, Bowling Green) -> MI (4803ms) Who invented the game bowling? researchers -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (researchers, found, a bowl) -> researchers (4808ms) Who invented the game bowling? The Fox , you?ll -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (The Fox , you?ll, find, the Bowls Club) -> The Fox , you?ll (4810ms) Who invented the game bowling? the team -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (the team, found, a red bowl) -> the team (4803ms) Who invented the game bowling? TV audiences -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (TV audiences, find, Lawn Bowls) -> TV audiences (4810ms) Who invented the game bowling? back home -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (back home, found, the bowl) -> back home (4805ms) Who invented the game bowling? flowers -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (flowers, find, a bowl) -> flowers (4813ms) Who invented the game bowling? Bedfordshire Page 1 | Clubbz -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (Bedfordshire Page 1 | Clubbz, Find, Bowling Clubs) -> Bedfordshire Page 1 | Clubbz (4803ms) Who invented the game bowling? workers -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (workers, were found, bowling) -> workers (4808ms) Who invented the game bowling? O?Donnell?s home -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (O?Donnell?s home, had been found with, bowls) -> O?Donnell?s home (4803ms) Who invented the game bowling? a storage room -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (a storage room, manages to find, bowls) -> a storage room (4812ms) Who invented the game bowling? skiers and riders -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (skiers and riders, find, numerous bowls) -> skiers and riders (4803ms) Who invented the game bowling? Archeologists -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (Archeologists, found, ancient bowling balls) -> Archeologists (4805ms) Who invented the game bowling? the kitchen -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (the kitchen, found, my bowl) -> the kitchen (4805ms) Who invented the game bowling? Anjana Devi -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (Anjana Devi, found, the bowl and partook) -> Anjana Devi (4808ms) Who invented the game bowling? Wendy -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (Wendy, finds time for, bowling) -> Wendy (4803ms) Who invented the game bowling? the water -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (the water, Find, a suitable bowl) -> the water (4815ms) Who invented the game bowling? Visitors -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (Visitors, will find, bowls) -> Visitors (4810ms) Who invented the game bowling? the Archen -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (the Archen, found, a bowl) -> the Archen (4803ms) Who invented the game bowling? Tuesday morning -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (Tuesday morning, found, a small bowl) -> Tuesday morning (4812ms) Who invented the game bowling? Davin -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (Davin, was pleased to find, bowls) -> Davin (4808ms) Who invented the game bowling? Australia -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (Australia, will need to find a way to, bowl) -> Australia (4810ms) Who invented the game bowling? Robyn -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (Robyn, found, a large bowl) -> Robyn (4815ms) Who invented the game bowling? you?ll -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (you?ll, find, four ?expert only ? bowls) -> you?ll (4808ms) Who invented the game bowling? folks -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (folks, are finding, BOWLING) -> folks (4805ms) Who invented the game bowling? the middle -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (the middle, find, a bowl) -> the middle (4805ms) Who invented the game bowling? Nynaeve and Elayne -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (Nynaeve and Elayne, find, the bowl) -> Nynaeve and Elayne (4813ms) Who invented the game bowling? water -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (water, find, a plastic bowl) -> water (4808ms) Who invented the game bowling? Krista Hein -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (Krista Hein, found, a bowl) -> Krista Hein (4813ms) Who invented the game bowling? Lovi -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (Lovi, found, a bowl) -> Lovi (4815ms) Who invented the game bowling? Ill. -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (Ill., found, Bowling Green) -> Ill. (4805ms) Who invented the game bowling? somebody -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (somebody, found, a bowl) -> somebody (4808ms) Who invented the game bowling? Ned ? ? Hey ! ? Ned -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (Ned ? ? Hey ! ? Ned, finds, his empty bowl) -> Ned ? ? Hey ! ? Ned (4813ms) Who invented the game bowling? ephedra -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (ephedra, Find, The Dust Bowl) -> ephedra (4810ms) Who invented the game bowling? Bob -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (Bob, found, this bowl) -> Bob (4814ms) Who invented the game bowling? Cops -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (Cops, found, a bowl) -> Cops (4803ms) Who invented the game bowling? Designs -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (Designs, found on, bowls) -> Designs (4810ms) Who invented the game bowling? The jury -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (The jury, found, Bowling guilty) -> The jury (4805ms) Who invented the game bowling? balls -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (balls, find, the right bowling accessory) -> balls (4810ms) Who invented the game bowling? STEP 1 -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (STEP 1, Find, a bowl) -> STEP 1 (4808ms) Who invented the game bowling? Spongebob -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (Spongebob, found, a bowl) -> Spongebob (4810ms) Who invented the game bowling? continuous barking -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (continuous barking, found, two empty bowls) -> continuous barking (4810ms) Who invented the game bowling? Shazam and IntoNow -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (Shazam and IntoNow, found, the Super Bowl) -> Shazam and IntoNow (4810ms) Who invented the game bowling? the University -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (the University, found the origins of, bowling) -> the University (4814ms) Who invented the game bowling? You?ll -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (You?ll, find, a clear glass bowl) -> You?ll (4810ms) Who invented the game bowling? the ants -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (the ants, find, the bowl) -> the ants (4806ms) Who invented the game bowling? a bowling game -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (a bowling game, found, Brunswick Pro Bowling) -> a bowling game (4814ms) Who invented the game bowling? a quick comfort -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (a quick comfort, found, a bowl) -> a quick comfort (4813ms) Who invented the game bowling? a few times -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (a few times, find, your mixing bowl) -> a few times (4810ms) Who invented the game bowling? the same level -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (the same level, find, the bowling games) -> the same level (4802ms) Who invented the game bowling? police officers -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (police officers, found, Ben Bowling) -> police officers (4803ms) Who invented the game bowling? students -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (students, found, a bowl) -> students (4808ms) Who invented the game bowling? peking duck -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (peking duck, have already found their way in, bowls) -> peking duck (4810ms) Who invented the game bowling? mid-century modern textiles and wallpapers -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (mid-century modern textiles and wallpapers, found on, bowls) -> mid-century modern textiles and wallpapers (4808ms) Who invented the game bowling? I?ll -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (I?ll, find, a bowl) -> I?ll (4813ms) Who invented the game bowling? THE BOWL -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (THE BOWL, find, the largest bowl) -> THE BOWL (4805ms) Who invented the game bowling? The rich man -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (The rich man, found, the bowl of gold) -> The rich man (4813ms) Who invented the game bowling? kway chap and noodles -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (kway chap and noodles, find company with, bowls) -> kway chap and noodles (4805ms) Who invented the game bowling? skin divers -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (skin divers, found, a stone bowl) -> skin divers (4813ms) Who invented the game bowling? science -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (science, has found, bowling) -> science (4803ms) Who invented the game bowling? The dog lover -0.33333333333399995 Who invented the game bowling? -> $x: ($x, found, bowling) -> (The dog lover, will find, bowls) -> The dog lover (4803ms) Who invented the game bowling? Mum -0.555555555556 Who invented the game bowling? -> $x: ($x, play, ten pin) -> (Mum, loves to play, ten-pin bowling) -> Mum (4815ms) Who invented the game bowling? pubs and club -0.555555555556 Who invented the game bowling? -> $x: ($x, play, ten pin) -> (pubs and club, play together with, your friend ten pin bowling) -> pubs and club (4815ms) Who invented the game bowling? A game resembling ninepins -0.555555555556 Who invented the game bowling? -> $x: ($x, play, ten pin) -> (A game resembling ninepins, played with, ten pins) -> A game resembling ninepins (4815ms) Who invented the game bowling? a supermarket parking lot -0.555555555556 Who invented the game bowling? -> $x: ($x, play, ten pin) -> (a supermarket parking lot, played, shopping cart ten-pin) -> a supermarket parking lot (4815ms) Who invented the game bowling? the supermarket -0.555555555556 Who invented the game bowling? -> $x: ($x, play, ten pin) -> (the supermarket, plays, ten pin bowling) -> the supermarket (4815ms) Who invented the game bowling? Toy Story -0.555555555556 Who invented the game bowling? -> $x: ($x, play, ten pin) -> (Toy Story, has decided to play, ten pin bowling) -> Toy Story (4814ms) Who invented the game bowling? the ball.Cores -0.555555555556 Who invented the game bowling? -> $x: ($x, play, ten pin) -> (the ball.Cores, play an important role in, any ten pins game) -> the ball.Cores (4815ms) What do penguins eat? leopard seals 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (penguins, may be eaten by, leopard seals) -> leopard seals (4264ms) What do penguins eat? as much as they can 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (penguins, eat, as much as they can) -> as much as they can (3932ms) What do penguins eat? crustaceans 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (Emperor Penguins, mainly eat, crustaceans) -> crustaceans (3932ms) What do penguins eat? a turtle 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (the penguin, can eat, a turtle) -> a turtle (3932ms) What do penguins eat? the local fish 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (penguins, must eat, the local fish) -> the local fish (4112ms) What do penguins eat? Patrick?s head 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (the penguins, was eating, Patrick?s head) -> Patrick?s head (4112ms) What do penguins eat? piranhas 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (penguins, ate meat of, piranhas) -> piranhas (4428ms) What do penguins eat? the same basic foods 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (a less-efficient penguin, probably ate, the same basic foods) -> the same basic foods (4204ms) What do penguins eat? mostly small fish 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (Galapagos penguins, eat, mostly small fish) -> mostly small fish (4204ms) What do penguins eat? snow and ice 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (the Antarctic penguins, eat, snow and ice) -> snow and ice (4333ms) What do penguins eat? snow 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (Penguins, eat, snow) -> snow (4112ms) What do penguins eat? one pound 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (A penguin, may eat up to, one pound) -> one pound (2404ms) What do penguins eat? fishes 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (afrv3 Big penguins, have eaten, fishes) -> fishes (1807ms) What do penguins eat? seven fish 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (The penguins, eat five to, seven fish) -> seven fish (4333ms) What do penguins eat? a wider variety 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (Chinstrap penguins, will eat, a wider variety) -> a wider variety (1807ms) What do penguins eat? delicious treats 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (polar bears , seals and penguins, eat, delicious treats) -> delicious treats (3932ms) What do penguins eat? the wife 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (the penguin, eat, the wife) -> the wife (2404ms) What do penguins eat? the poor halibut 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (The penguins, are gonna eat, the poor halibut) -> the poor halibut (4264ms) What do penguins eat? lunch 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (penguins, eat for, lunch) -> lunch (3932ms) What do penguins eat? sardines 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (These penguins, eat, sardines) -> sardines (4264ms) What do penguins eat? breakfast 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (a penguin, eat for, breakfast) -> breakfast (3932ms) What do penguins eat? fish and krill 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (Penguins, eat, fish and krill) -> fish and krill (4333ms) What do penguins eat? a tub 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (the penguins, ate, a tub) -> a tub (2404ms) What do penguins eat? Mr. Popper?s goldfish 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (the penguin Captain Cook, eats, Mr. Popper?s goldfish) -> Mr. Popper?s goldfish (4428ms) What do penguins eat? fish 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (Penguins, love to eat, fish) -> fish (4428ms) What do penguins eat? small fish 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (South Georgia Island King penguins, eat, small fish) -> small fish (4204ms) What do penguins eat? usually 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (Penguins, like a swim after they eat, usually) -> usually (4204ms) What do penguins eat? the krill 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (the penguins, eat, the krill) -> the krill (4333ms) What do penguins eat? the llamas 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (My penguins, are eating, the llamas) -> the llamas (2404ms) What do penguins eat? the V&A Waterfront 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (penguins, eat along, the V&A Waterfront) -> the V&A Waterfront (4265ms) What do penguins eat? a fish 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (the penguins, ate, a fish) -> a fish (2404ms) What do penguins eat? krill and surface fish 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (Most penguins, eat, krill and surface fish) -> krill and surface fish (4264ms) What do penguins eat? the camera 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (the penguins, kept trying to eat, the camera) -> the camera (4264ms) What do penguins eat? the absence 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (penguins, eat in, the absence) -> the absence (4112ms) What do penguins eat? small amounts 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (King penguins, mainly eat fish with, small amounts) -> small amounts (4204ms) What do penguins eat? the ocean 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (penguins, only eat in, the ocean) -> the ocean (4333ms) What do penguins eat? any given month 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (How many penguins, will eat in, any given month) -> any given month (1807ms) What do penguins eat? apples 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (A snowboarding penguin, eats, apples) -> apples (4204ms) What do penguins eat? worms 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (the little blue penguin, eat, worms) -> worms (3425ms) What do penguins eat? fish and squid 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (a penguin, eats, fish and squid) -> fish and squid (3425ms) What do penguins eat? an ice cream cone 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (the penguin, came back eating, an ice cream cone) -> an ice cream cone (3425ms) What do penguins eat? an Orca or other sea mammal 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (the penguin, has been eaten by, an Orca or other sea mammal) -> an Orca or other sea mammal (3425ms) What do penguins eat? a banana 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (the penguins, ate, a banana) -> a banana (4264ms) What do penguins eat? twenty-five species 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (The penguin, is known to eat, twenty-five species) -> twenty-five species (4112ms) What do penguins eat? 9 fish 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (Six penguins, can eat, 9 fish) -> 9 fish (3425ms) What do penguins eat? the leopard seals 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (the adult penguins, were eaten by, the leopard seals) -> the leopard seals (3425ms) What do penguins eat? the Apple 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (The penguin, ate, the Apple) -> the Apple (4204ms) What do penguins eat? food 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (The penguins, eat, food) -> food (4428ms) What do penguins eat? fish , squid , and krill 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (Penguins, eat, fish , squid , and krill) -> fish , squid , and krill (3425ms) What do penguins eat? Panda 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (Penguin, eats, Panda) -> Panda (4264ms) What do penguins eat? a shark 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (the Penguin, was eaten by, a shark) -> a shark (1807ms) What do penguins eat? the snow 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (penguins, eat, the snow) -> the snow (4204ms) What do penguins eat? an Apple ?? 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (a penguin, eat, an Apple ??) -> an Apple ?? (3425ms) What do penguins eat? krill 0.777777777769 What do penguins eat? -> $x: (penguin, eat, $x) -> (The penguins, eat, krill) -> krill (4333ms) What do penguins eat? a Happy Dance 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (a penguin, do, a Happy Dance) -> a Happy Dance (4632ms) What do penguins eat? color pencils 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (Penguins, are done using, color pencils) -> color pencils (4622ms) What do penguins eat? a phenomenal job 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, did, a phenomenal job) -> a phenomenal job (4531ms) What do penguins eat? eyes 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (penguins, do have, eyes) -> eyes (4651ms) What do penguins eat? darkness fall 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (*huggles penguins*, Does, darkness fall) -> darkness fall (4651ms) What do penguins eat? the day 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (Penguins, Do Today is, the day) -> the day (4641ms) What do penguins eat? pushups 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (a penguin, did, pushups) -> pushups (4632ms) What do penguins eat? the classroom 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, was doing in, the classroom) -> the classroom (4531ms) What do penguins eat? the point 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, just did n?t see, the point) -> the point (4632ms) What do penguins eat? England 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, was doing in, England) -> England (4599ms) What do penguins eat? pro wrestling pwn Nascar 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (Club Penguin, Does, pro wrestling pwn Nascar) -> pro wrestling pwn Nascar (4622ms) What do penguins eat? yA HEAR THAT ANNA NICOLE DIED 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (Club Penguin, did, yA HEAR THAT ANNA NICOLE DIED) -> yA HEAR THAT ANNA NICOLE DIED (4632ms) What do penguins eat? an outstanding job 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, has done, an outstanding job) -> an outstanding job (4599ms) What do penguins eat? Parker?s stories 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, did publish a collection of, Parker?s stories) -> Parker?s stories (4599ms) What do penguins eat? a climate 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (penguins, do this in, a climate) -> a climate (4622ms) What do penguins eat? libraries 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, does this mean for, libraries) -> libraries (4632ms) What do penguins eat? an Amazon or Barnes & Noble 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, does n?t have the reach of, an Amazon or Barnes & Noble) -> an Amazon or Barnes & Noble (4622ms) What do penguins eat? issue 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, did, issue) -> issue (4651ms) What do penguins eat? great 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (penguins, here are doing, great) -> great (4642ms) What do penguins eat? a good job 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, have done, a good job) -> a good job (4622ms) What do penguins eat? an Australian Sea World 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (penguins, do at, an Australian Sea World) -> an Australian Sea World (4622ms) What do penguins eat? the dishes 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (a penguin, do, the dishes) -> the dishes (4622ms) What do penguins eat? the slender walk 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (penguins, are doing, the slender walk) -> the slender walk (4632ms) What do penguins eat? pecking 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (Penguins, do a lot of, pecking) -> pecking (4622ms) What do penguins eat? the duties 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (African Penguins, do, the duties) -> the duties (4642ms) What do penguins eat? the same and ice berg 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (80 penguins, do, the same and ice berg) -> the same and ice berg (4632ms) What do penguins eat? the packaging 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, did an excellent job with, the packaging) -> the packaging (4651ms) What do penguins eat? a hop 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (a penguin, do, a hop) -> a hop (4651ms) What do penguins eat? Parker?s stories 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, did publish a collection of, Parker?s stories) -> Parker?s stories (4632ms) What do penguins eat? a great job 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (Club Penguin, did, a great job) -> a great job (4632ms) What do penguins eat? eggs 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (penguins, do lay, eggs) -> eggs (4651ms) What do penguins eat? an indicator 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (penguins, are doing is thought to be, an indicator) -> an indicator (4599ms) What do penguins eat? the time 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, does at, the time) -> the time (4632ms) What do penguins eat? such an aggressive response 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (? Penguin, did n?t expect, such an aggressive response) -> such an aggressive response (4642ms) What do penguins eat? mate 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (penguins, do, mate) -> mate (4651ms) What do penguins eat? birds 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (Penguins, do have other properties of, birds) -> birds (4651ms) What do penguins eat? the death and penguins one 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (penguins, do, the death and penguins one) -> the death and penguins one (4651ms) What do penguins eat? Rock ! Sanjeev Gangaramany Black tuxes 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (Penguins, do indeed, Rock ! Sanjeev Gangaramany Black tuxes) -> Rock ! Sanjeev Gangaramany Black tuxes (4632ms) What do penguins eat? Antarctica today 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (Penguins, do exist far north of, Antarctica today) -> Antarctica today (4651ms) What do penguins eat? best ? waddling 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (penguins, do, best ? waddling) -> best ? waddling (4532ms) What do penguins eat? the obligations 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (African Penguins, do, the obligations) -> the obligations (4599ms) What do penguins eat? any excerpts 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, does n?t have, any excerpts) -> any excerpts (4642ms) What do penguins eat? the Activity 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (Penguins, do, the Activity) -> the Activity (4642ms) What do penguins eat? long-term relationships 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (penguin, do form, long-term relationships) -> long-term relationships (4642ms) What do penguins eat? Antarctica 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (penguins, are doing in, Antarctica) -> Antarctica (4599ms) What do penguins eat? a difference 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (penguins, can be done to make, a difference) -> a difference (4599ms) What do penguins eat? tricks 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (penguins, do, tricks) -> tricks (4622ms) What do penguins eat? a bound manuscript 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, wanted to do, a bound manuscript) -> a bound manuscript (4642ms) What do penguins eat? a dance 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (The penguin, do, a dance) -> a dance (4651ms) What do penguins eat? the air 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (penguin, do take to, the air) -> the air (4632ms) What do penguins eat? Time 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (Penguins, Are Doing, Time) -> Time (4622ms) What do penguins eat? a really great collab 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (Penguin Books, did, a really great collab) -> a really great collab (4532ms) What do penguins eat? so 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (The penguins, did, so) -> so (4599ms) What do penguins eat? the Hawiian dance 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (Penguins, can do, the Hawiian dance) -> the Hawiian dance (4622ms) What do penguins eat? knees 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (Penguins, DO have, knees) -> knees (4651ms) What do penguins eat? one step 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, did, one step) -> one step (4632ms) What do penguins eat? a thorough evaluation 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (This penguin, did, a thorough evaluation) -> a thorough evaluation (4641ms) What do penguins eat? an awesome job 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, did, an awesome job) -> an awesome job (4622ms) What do penguins eat? the anonymity 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (?penguin?, have something to do with, the anonymity) -> the anonymity (4599ms) What do penguins eat? the Heller option 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, did n?t pick up, the Heller option) -> the Heller option (4642ms) What do penguins eat? often 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (penguins, do, often) -> often (4651ms) What do penguins eat? experience 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (penguins, do have a lot of, experience) -> experience (4642ms) What do penguins eat? the nasty 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (penguins, do, the nasty) -> the nasty (4632ms) What do penguins eat? a green paperback 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, had done, a green paperback) -> a green paperback (4651ms) What do penguins eat? self-help titles 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, would look at doing, self-help titles) -> self-help titles (4642ms) What do penguins eat? mate for life 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (These penguins, do, mate for life) -> mate for life (4622ms) What do penguins eat? fly 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (*penguins, do, fly) -> fly (4599ms) What do penguins eat? a very dynamic cover 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (Penguin, did, a very dynamic cover) -> a very dynamic cover (4641ms) What do penguins eat? leadership 0.111111111109 What do penguins eat? -> $x: (penguin, do, $x) -> (penguins, have to do with, leadership) -> leadership (4642ms) What do penguins eat? miniature men -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (Ad?lie penguins, are like, miniature men) -> miniature men (4802ms) What do penguins eat? Pavel Mikoloski -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (Pavel Mikoloski, does a French documentary about, penguins) -> Pavel Mikoloski (4807ms) What do penguins eat? Each night tourists -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (Each night tourists, can visit, Phillip Island Penguin Parade) -> Each night tourists (4838ms) What do penguins eat? a big egg -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (a penguins, look like, a big egg) -> a big egg (4783ms) What do penguins eat? Apple -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (Apple, can just ignore, Anonymous Penguin) -> Apple (4720ms) What do penguins eat? a good game -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (Penguin Hunter, Looks like, a good game) -> a good game (4811ms) What do penguins eat? Aircraft -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (Aircraft, do have an effect on, penguins) -> Aircraft (4820ms) What do penguins eat? a dry suit -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (penguins, works like, a dry suit) -> a dry suit (4840ms) What do penguins eat? Long story -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (Long story, can talk to, penguins) -> Long story (4736ms) What do penguins eat? a fairly limited area -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (Penguins, live in, a fairly limited area) -> a fairly limited area (4712ms) What do penguins eat? care -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (penguins, still need, care) -> care (4816ms) What do penguins eat? important questions -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (important questions, did, the penguin look) -> important questions (4783ms) What do penguins eat? Environmentalists -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (Environmentalists, can change, a penguin 's direction) -> Environmentalists (4687ms) What do penguins eat? MORE SCREEN TIME -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (HIS PENGUINS, NEED, MORE SCREEN TIME) -> MORE SCREEN TIME (4798ms) What do penguins eat? ?Er -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (?Er, do, penguins order) -> ?Er (4704ms) What do penguins eat? Danny DeVito -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (The penguin, looks little like, Danny DeVito) -> Danny DeVito (4798ms) What do penguins eat? a little more luck -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (Penguins ? Sidney Crosby, needs, a little more luck) -> a little more luck (4838ms) What do penguins eat? a playoff berth -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (Penguins, need a point to clinch, a playoff berth) -> a playoff berth (4720ms) What do penguins eat? the days -0.0 What do penguins eat? -> $x: (penguin, feed in, $x) -> (penguins, be fed in, the days) -> the days (4816ms) What do penguins eat? Linux -0.0 What do penguins eat? -> $x: ($x, kill, penguin) -> (Linux, Kill, The Penguin) -> Linux (4830ms) What do penguins eat? the registrar -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (Penguin, is like going to, the registrar) -> the registrar (4712ms) What do penguins eat? the shootout -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (the shootout, does work well for, the Penguins) -> the shootout (4750ms) What do penguins eat? Correspondent -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (Correspondent, did, the Penguin misspelling) -> Correspondent (4660ms) What do penguins eat? Adventure World -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (Penguins, live in, Adventure World) -> Adventure World (4823ms) What do penguins eat? a great idea -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (The Penguin Olympics, seemed like, a great idea) -> a great idea (4750ms) What do penguins eat? the stupidity -0.0 What do penguins eat? -> $x: ($x, kill, penguin) -> (the stupidity, is killing, the Penguins) -> the stupidity (4793ms) What do penguins eat? Video -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (Video, Do, penguins) -> Video (4833ms) What do penguins eat? sharks and hawks -0.0 What do penguins eat? -> $x: ($x, kill, penguin) -> (sharks and hawks, kill, the penguins) -> sharks and hawks (4772ms) What do penguins eat? practice -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (practice, does n?t mean, the Penguins) -> practice (4660ms) What do penguins eat? One which -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (One which, has nothing to do with, penguins) -> One which (4840ms) What do penguins eat? natural predators -0.0 What do penguins eat? -> $x: (penguin, hunt, $x) -> (Little Penguins, are hunted by, natural predators) -> natural predators (4835ms) What do penguins eat? footballs -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (penguins, look like, footballs) -> footballs (4798ms) What do penguins eat? Leopard seals -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (Leopard seals, can eat, penguins) -> Leopard seals (4815ms) What do penguins eat? the picture -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (Your penguin, should look like, the picture) -> the picture (4765ms) What do penguins eat? food sources -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (food sources, can affect, penguin populations) -> food sources (4783ms) What do penguins eat? Alaska -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (penguins, live in, Alaska) -> Alaska (4811ms) What do penguins eat? Yeti -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (Yeti, can redirect, the penguin) -> Yeti (4687ms) What do penguins eat? humans -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (penguins, look like, humans) -> humans (4820ms) What do penguins eat? South Pole -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (Penguins, only live in, South Pole) -> South Pole (4660ms) What do penguins eat? survive -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (the penguins, need to, survive) -> survive (4820ms) What do penguins eat? Seabirds -0.0 What do penguins eat? -> $x: ($x, kill, penguin) -> (Seabirds, killed to, save penguins) -> Seabirds (4696ms) What do penguins eat? InvesTech Research -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (InvesTech Research, do, penguins) -> InvesTech Research (4704ms) What do penguins eat? the fish -0.0 What do penguins eat? -> $x: (penguin, feed on, $x) -> (a penguin, was feeding on, the fish) -> the fish (4720ms) What do penguins eat? the cold water and abundance of fish -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (Penguins, also like, the cold water and abundance of fish) -> the cold water and abundance of fish (4735ms) What do penguins eat? The mail -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (The mail, had nothing to do with, penguins) -> The mail (4743ms) What do penguins eat? a team -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (The Penguins, are looking like, a team) -> a team (4820ms) What do penguins eat? whittled Latest York -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (the Penguins, need, whittled Latest York) -> whittled Latest York (4807ms) What do penguins eat? small pelagic fish -0.0 What do penguins eat? -> $x: (penguin, feed on, $x) -> (African penguins, feed mainly on, small pelagic fish) -> small pelagic fish (4712ms) What do penguins eat? The lion -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (The lion, wants nothing to do with, Penguin) -> The lion (4743ms) What do penguins eat? love -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (Penguins, need too, love) -> love (4835ms) What do penguins eat? a well-oiled machine -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (this Penguin team, worked like, a well-oiled machine) -> a well-oiled machine (4827ms) What do penguins eat? a waltz -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (penguins, is meant to look like, a waltz) -> a waltz (4802ms) What do penguins eat? tourists -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (tourists, can watch, the penguins) -> tourists (4660ms) What do penguins eat? lines -0.0 What do penguins eat? -> $x: ($x, kill, penguin) -> (lines, kill, all the penguins) -> lines (4819ms) What do penguins eat? a desert climate -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (penguins, live in, a desert climate) -> a desert climate (4679ms) What do penguins eat? One trailer -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (One trailer, was done by, Penguin Publishing) -> One trailer (4793ms) What do penguins eat? much weight -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (much weight, does, the penguin gain) -> much weight (4840ms) What do penguins eat? Herzog -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (Herzog, finally does find, penguins) -> Herzog (4838ms) What do penguins eat? the gameplan -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (The Penguins, need to stick to, the gameplan) -> the gameplan (4669ms) What do penguins eat? the Southern hemisphere -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (Penguins, only live in, the Southern hemisphere) -> the Southern hemisphere (4816ms) What do penguins eat? the Antarctic -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (Penguins, live only in, the Antarctic) -> the Antarctic (4838ms) What do penguins eat? The Pittsburgh Penguins -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (The Pittsburgh Penguins, can be, the Kansas City Penguins) -> The Pittsburgh Penguins (4660ms) What do penguins eat? Crosby -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (the Penguins, need, Crosby) -> Crosby (4765ms) What do penguins eat? a round robin -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (Penguin, was sort of like, a round robin) -> a round robin (4735ms) What do penguins eat? Chet -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (penguins, is most like, Chet) -> Chet (4823ms) What do penguins eat? A&W Root beer -0.0 What do penguins eat? -> $x: (penguin, drink, $x) -> (the little penguin guys, drank, A&W Root beer) -> A&W Root beer (4679ms) What do penguins eat? door B -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (door B, can have, the penguin) -> door B (4765ms) What do penguins eat? Riddler -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (The Penguin 's stats, sucking like, Riddler) -> Riddler (4788ms) What do penguins eat? Penguin Pollan -0.0 What do penguins eat? -> $x: (penguin, drink, $x) -> (P. The Penguin Book, Drink, Penguin Pollan) -> Penguin Pollan (4788ms) What do penguins eat? The same -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (The same, can be said of, the penguin) -> The same (4743ms) What do penguins eat? the question -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (the question, did, the penguin) -> the question (4778ms) What do penguins eat? the offensive -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (The Penguins, need to remain on, the offensive) -> the offensive (4811ms) What do penguins eat? fish and crustaceans -0.0 What do penguins eat? -> $x: (penguin, feed on, $x) -> (Penguins, feed mainly on, fish and crustaceans) -> fish and crustaceans (4735ms) What do penguins eat? a lot of fun -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (The penguins, look like, a lot of fun) -> a lot of fun (4819ms) What do penguins eat? the children -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (the children, can have, a Penguin Family) -> the children (4704ms) What do penguins eat? a mural -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (a mural, does, a penguin) -> a mural (4736ms) What do penguins eat? a couple -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (These two penguins, acted like, a couple) -> a couple (4840ms) What do penguins eat? the nature reserves -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (penguins, living in, the nature reserves) -> the nature reserves (4833ms) What do penguins eat? the hardware requirements -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (the hardware requirements, can create, a fluffy stuffed penguin) -> the hardware requirements (4835ms) What do penguins eat? the idea and escapes -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (the penguins, does n?t like, the idea and escapes) -> the idea and escapes (4696ms) What do penguins eat? ice-cold Coca Cola -0.0 What do penguins eat? -> $x: (penguin, drink, $x) -> (?penguins ?, are drinking, ice-cold Coca Cola) -> ice-cold Coca Cola (4838ms) What do penguins eat? the Rangers -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (the Penguins, need to beat, the Rangers) -> the Rangers (4827ms) What do penguins eat? a bath -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (Penguins, need to take, a bath) -> a bath (4827ms) What do penguins eat? A fox -0.0 What do penguins eat? -> $x: ($x, kill, penguin) -> (A fox, may kill as many as, 30 or 40 penguins) -> A fox (4807ms) What do penguins eat? energy -0.0 What do penguins eat? -> $x: ($x, kill, penguin) -> (energy, kills, the penguins) -> energy (4728ms) What do penguins eat? the southern hemisphere -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (Penguins, actually live in, the southern hemisphere) -> the southern hemisphere (4838ms) What do penguins eat? Anchovy -0.0 What do penguins eat? -> $x: (penguin, feed on, $x) -> (African Penguins, fed mainly on, Anchovy) -> Anchovy (4835ms) What do penguins eat? FFFFFFF -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (her penguin, is like, FFFFFFF) -> FFFFFFF (4669ms) What do penguins eat? themselves -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (The penguins, need to do something to protect, themselves) -> themselves (4840ms) What do penguins eat? cheese -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (cheese, have anything to do with, Penguins) -> cheese (4793ms) What do penguins eat? jabberwacky -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (jabberwacky, does, a penguin talk) -> jabberwacky (4678ms) What do penguins eat? a fine smooth stone -0.0 What do penguins eat? -> $x: (penguin, hunt, $x) -> (The penguin, hunts, a fine smooth stone) -> a fine smooth stone (4778ms) What do penguins eat? God -0.0 What do penguins eat? -> $x: ($x, kill, penguin) -> (God, kills, a penguin) -> God (4783ms) What do penguins eat? help Life -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (its penguins, need, help Life) -> help Life (4811ms) What do penguins eat? exotic tourists -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (Penguins, might seem like, exotic tourists) -> exotic tourists (4783ms) What do penguins eat? an environment -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (antarctic penguins, live in, an environment) -> an environment (4757ms) What do penguins eat? Let?s -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (Let?s, do our best on, Club Penguin) -> Let?s (4660ms) What do penguins eat? Redmond -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (Redmond, can afford to ignore, the penguin) -> Redmond (4679ms) What do penguins eat? perator -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (perator, can considerably reduce the coefficient of, penguin) -> perator (4811ms) What do penguins eat? kids -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (kids, can create, a penguin) -> kids (4720ms) What do penguins eat? Murder -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (Murder, is being done for, Penguin Putnam) -> Murder (4736ms) What do penguins eat? a small seal -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (The penguins, look very much like, a small seal) -> a small seal (4827ms) What do penguins eat? umbrellas -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (umbrellas, have to do with, penguins) -> umbrellas (4735ms) What do penguins eat? Oil -0.0 What do penguins eat? -> $x: ($x, kill, penguin) -> (Oil, kills, penguins) -> Oil (4835ms) What do penguins eat? the team -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (The Penguins, looked like, the team) -> the team (4743ms) What do penguins eat? a little break -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (Penguin, needed, a little break) -> a little break (4687ms) What do penguins eat? professional wrestling Hulk Hogan -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (the Penguins fan, acted like, professional wrestling Hulk Hogan) -> professional wrestling Hulk Hogan (4750ms) What do penguins eat? cold , polar climate zones -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (Some penguins, live in, cold , polar climate zones) -> cold , polar climate zones (4778ms) What do penguins eat? Bingham -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (Bingham, did, another Penguin Tour) -> Bingham (4827ms) What do penguins eat? a time -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (a time, can enjoy, The Penguins) -> a time (4765ms) What do penguins eat? monster -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (monster, does n?t like, penguins) -> monster (4743ms) What do penguins eat? Interesting Facts and Information -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (Interesting Facts and Information, do, Penguin Tetra) -> Interesting Facts and Information (4783ms) What do penguins eat? a Hummer -0.0 What do penguins eat? -> $x: ($x, kill, penguin) -> (a Hummer, is tantamount to killing, baby penguins) -> a Hummer (4772ms) What do penguins eat? Maybe this performance -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (Maybe this performance, had something to do with, penguins) -> Maybe this performance (4757ms) What do penguins eat? igloos -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (penguins, live neither in, igloos) -> igloos (4833ms) What do penguins eat? the Zoo -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (the Zoo, is doing to ensure, penguin survival) -> the Zoo (4743ms) What do penguins eat? charset=UTF-8 -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (charset=UTF-8, Does, this penguin look) -> charset=UTF-8 (4696ms) What do penguins eat? a compelling case -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (a compelling case, did leading, the Penguins) -> a compelling case (4728ms) What do penguins eat? a winner -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (the penguin, looks like, a winner) -> a winner (4820ms) What do penguins eat? young , skilled players -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (the NHL Penguins, need, young , skilled players) -> young , skilled players (4807ms) What do penguins eat? a great cosplayer -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (a great cosplayer, also does, The Penguin) -> a great cosplayer (4833ms) What do penguins eat? the Revolution -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (the Revolution, would have done without, Penguin Books) -> the Revolution (4827ms) What do penguins eat? HBO... -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (HBO..., is doing is essentially following, the Penguins) -> HBO... (4833ms) What do penguins eat? pole -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (penguins, live in south, pole) -> pole (4728ms) What do penguins eat? Polar -0.0 What do penguins eat? -> $x: ($x, can eat, penguin) -> (Polar, bears can eat as, many as 86 penguins) -> Polar (4802ms) What do penguins eat? A-listers -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (penguins, were treated like, A-listers) -> A-listers (4660ms) What do penguins eat? burrows -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (Some penguins, live in, burrows) -> burrows (4765ms) What do penguins eat? 186 Reputation 33 -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (186 Reputation 33, does, Penguin) -> 186 Reputation 33 (4793ms) What do penguins eat? Jim Carrey -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (Jim Carrey, does a fine job with, the penguins) -> Jim Carrey (4807ms) What do penguins eat? the Flyers -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (the Penguins, simply need to keep, the Flyers) -> the Flyers (4830ms) What do penguins eat? A mystery disease -0.0 What do penguins eat? -> $x: ($x, kill, penguin) -> (A mystery disease, is killing off, yellow-eyed penguin chicks) -> A mystery disease (4778ms) What do penguins eat? classrooms -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (classrooms, can monitor, a penguin nest) -> classrooms (4765ms) What do penguins eat? world beaters -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (The Pittsburgh Penguins, looked like, world beaters) -> world beaters (4811ms) What do penguins eat? a year -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (a year, did, the Pittsburgh Penguins) -> a year (4783ms) What do penguins eat? the patient -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (the patient, can throw snowballs at, penguins) -> the patient (4840ms) What do penguins eat? nature -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (Penguin 4, like, nature) -> nature (4802ms) What do penguins eat? A huge amount -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (A huge amount, is done to protect, penguins) -> A huge amount (4696ms) What do penguins eat? the red bombs -0.0 What do penguins eat? -> $x: ($x, kill, penguin) -> (the red bombs, will kill, the penguin) -> the red bombs (4712ms) What do penguins eat? a penguin ? -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (Gourds Penguin Gourds, shaped like, a penguin ?) -> a penguin ? (4772ms) What do penguins eat? the highly entertaining documentary March -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (penguins, live in, the highly entertaining documentary March) -> the highly entertaining documentary March (4823ms) What do penguins eat? kinderartists -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (kinderartists, can paint, their penguin) -> kinderartists (4750ms) What do penguins eat? a scoring winger -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (The Penguins, need, a scoring winger) -> a scoring winger (4736ms) What do penguins eat? real people -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (These penguins, live like, real people) -> real people (4807ms) What do penguins eat? salt water -0.0 What do penguins eat? -> $x: (penguin, drink, $x) -> (the penguins, drink, salt water) -> salt water (4815ms) What do penguins eat? Door A -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (Door A, can have, the penguin) -> Door A (4728ms) What do penguins eat? an accountability team -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (The Penguins, seem like, an accountability team) -> an accountability team (4827ms) What do penguins eat? Players -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (Players, can create, a penguin) -> Players (4838ms) What do penguins eat? colonies -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (Humboldt Penguins, live in, colonies) -> colonies (4778ms) What do penguins eat? three games -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (three games, can eliminate, the Penguins) -> three games (4798ms) What do penguins eat? Wallace -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (The penguin, needs to use, Wallace) -> Wallace (4802ms) What do penguins eat? forest -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (The penguin, needs, forest) -> forest (4660ms) What do penguins eat? warm climates -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (These penguins, live in, warm climates) -> warm climates (4830ms) What do penguins eat? the North Pole -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (penguins, live in, the North Pole) -> the North Pole (4835ms) What do penguins eat? the whole 10Km -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (the whole 10Km, did n?t see, any penguins) -> the whole 10Km (4833ms) What do penguins eat? gift requests -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (gift requests, neither does, the penguin) -> gift requests (4833ms) What do penguins eat? the Southern Hemisphere -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (Penguins, live in, the Southern Hemisphere) -> the Southern Hemisphere (4838ms) What do penguins eat? the Antarctica -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (penguins, only live in, the Antarctica) -> the Antarctica (4802ms) What do penguins eat? New Zealand -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (These penguins, live in, New Zealand) -> New Zealand (4783ms) What do penguins eat? Younger guests -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (Younger guests, can enjoy, the Penguin Club) -> Younger guests (4720ms) What do penguins eat? a coat -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (penguins, need, a coat) -> a coat (4679ms) What do penguins eat? TonyTouch -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (TonyTouch, does, Penguin) -> TonyTouch (4712ms) What do penguins eat? the Senate -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (the penguins, look like, the Senate) -> the Senate (4827ms) What do penguins eat? Antarctic ocean waters -0.0 What do penguins eat? -> $x: (penguin, feed in, $x) -> (emperor penguins, feed in, Antarctic ocean waters) -> Antarctic ocean waters (4815ms) What do penguins eat? a backup goalie -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (The Pittsburgh Penguins, need, a backup goalie) -> a backup goalie (4811ms) What do penguins eat? 255 days -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (The penguins, need, 255 days) -> 255 days (4815ms) What do penguins eat? Tourists -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (Tourists, can view, penguins) -> Tourists (4788ms) What do penguins eat? Alan Wow -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (Alan Wow, did, all these Penguin apologists) -> Alan Wow (4793ms) What do penguins eat? Strong players -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (Strong players, can win, Penguin nearly) -> Strong players (4687ms) What do penguins eat? squid -0.0 What do penguins eat? -> $x: (penguin, feed on, $x) -> (the Penguins, were mainly feeding on, squid) -> squid (4712ms) What do penguins eat? games -0.0 What do penguins eat? -> $x: (penguin, have type of, $x) -> (Penguin games, have many many types of, games) -> games (4704ms) What do penguins eat? air -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (the penguins, need, air) -> air (4807ms) What do penguins eat? Penguins -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (Penguins, can make a penguin look like, their penguin) -> Penguins (4807ms) What do penguins eat? a yeti -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (a yeti, can hit, a penguin) -> a yeti (4765ms) What do penguins eat? a new bird -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (our little Penguin, looked like, a new bird) -> a new bird (4772ms) What do penguins eat? the continent -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (the continent, can affect, penguins) -> the continent (4798ms) What do penguins eat? a tap-in -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (the Penguins, seemed like, a tap-in) -> a tap-in (4743ms) What do penguins eat? pop singers -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (the penguins, sway like, pop singers) -> pop singers (4830ms) What do penguins eat? water and on land -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (Penguins, live in, water and on land) -> water and on land (4669ms) What do penguins eat? shoaling fish -0.0 What do penguins eat? -> $x: (penguin, feed on, $x) -> (The Emperor penguin, feeds primarily on, shoaling fish) -> shoaling fish (4830ms) What do penguins eat? large groups -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (Penguins, live in, large groups) -> large groups (4772ms) What do penguins eat? Visitors -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (Visitors, can watch, penguins) -> Visitors (4788ms) What do penguins eat? the Arctic -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (penguins, live in, the Arctic) -> the Arctic (4835ms) What do penguins eat? the rich , satisfying taste -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (Penguin Mini Modern Classics, like, the rich , satisfying taste) -> the rich , satisfying taste (4807ms) What do penguins eat? the South Pole -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (penguins, live in, the South Pole) -> the South Pole (4815ms) What do penguins eat? Dannay -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (Dannay, did, Penguin) -> Dannay (4819ms) What do penguins eat? an ambassador -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (African penguins, need, an ambassador) -> an ambassador (4696ms) What do penguins eat? butlers and bridegrooms -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (penguins, look like, butlers and bridegrooms) -> butlers and bridegrooms (4840ms) What do penguins eat? seal holes -0.0 What do penguins eat? -> $x: (penguin, feed in, $x) -> (penguins, will feed in, seal holes) -> seal holes (4802ms) What do penguins eat? little kids -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (little kids, can press, penguins) -> little kids (4788ms) What do penguins eat? Layci -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (Layci, did get, her penguin) -> Layci (4679ms) What do penguins eat? the mistakes -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (The Penguins, need to reduce, the mistakes) -> the mistakes (4798ms) What do penguins eat? ? Polar bears -0.0 What do penguins eat? -> $x: ($x, can eat, penguin) -> (? Polar bears, can eat as many as, 86 penguins) -> ? Polar bears (4840ms) What do penguins eat? snorkeling lessons or kids -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (snorkeling lessons or kids, can enjoy, ?Camp Penguin?s ?) -> snorkeling lessons or kids (4793ms) What do penguins eat? Antartica -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (the penguins, live in, Antartica) -> Antartica (4678ms) What do penguins eat? help -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (the Penguin, needed, help) -> help (4783ms) What do penguins eat? cats -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (Penguins, can purr like, cats) -> cats (4830ms) What do penguins eat? the New York Islanders -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (the New York Islanders, did against, the Penguins) -> the New York Islanders (4827ms) What do penguins eat? a crowded colony -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (Adelie Penguins, live in, a crowded colony) -> a crowded colony (4827ms) What do penguins eat? the wild ponies -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (The penguins, are like, the wild ponies) -> the wild ponies (4802ms) What do penguins eat? Ocean currents -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (Ocean currents, can carry, penguins) -> Ocean currents (4802ms) What do penguins eat? crap -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (other penguins, look like, crap) -> crap (4669ms) What do penguins eat? a Leopard -0.0 What do penguins eat? -> $x: ($x, kill, penguin) -> (a Leopard, killed, 50 penguins) -> a Leopard (4735ms) What do penguins eat? babysat -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (the penguins, need to be, babysat) -> babysat (4772ms) What do penguins eat? sea creatures -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (sea creatures, does, a penguin count) -> sea creatures (4838ms) What do penguins eat? 15 seconds -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (The Penguins, needed a total of, 15 seconds) -> 15 seconds (4712ms) What do penguins eat? parties -0.0 What do penguins eat? -> $x: (penguin, drink, $x) -> (pet penguins, serve drinks at, parties) -> parties (4833ms) What do penguins eat? the new kids -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (Penguins, are like, the new kids) -> the new kids (4720ms) What do penguins eat? four -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (penguins, gets like, four) -> four (4696ms) What do penguins eat? Sunday -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (Sunday, did, the Penguins) -> Sunday (4823ms) What do penguins eat? the Melbourne zoo -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (the penguins, will need to visit, the Melbourne zoo) -> the Melbourne zoo (4728ms) What do penguins eat? warmer climates -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (these penguins, live in, warmer climates) -> warmer climates (4807ms) What do penguins eat? the ice -0.0 What do penguins eat? -> $x: ($x, kill, penguin) -> (the ice, kill, all those evil penguins) -> the ice (4788ms) What do penguins eat? bare foot -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (bare foot, did, a penguin tour) -> bare foot (4783ms) What do penguins eat? representation -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (That penguin population, north needs, representation) -> representation (4793ms) What do penguins eat? large colonies -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (Penguins, live in, large colonies) -> large colonies (4827ms) What do penguins eat? The kids -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (The kids, do go back to, Club Penguin) -> The kids (4687ms) What do penguins eat? Second Life -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (Club Penguin, is more like, Second Life) -> Second Life (4830ms) What do penguins eat? the warmer climates -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (Humbolt penguins, live in, the warmer climates) -> the warmer climates (4788ms) What do penguins eat? every extra inch -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (That penguin, needs, every extra inch) -> every extra inch (4669ms) What do penguins eat? the tightly packed scrum -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (the tightly packed scrum, do, the penguins) -> the tightly packed scrum (4830ms) What do penguins eat? Weapons -0.0 What do penguins eat? -> $x: ($x, kill, penguin) -> (Weapons, Kill, penguins) -> Weapons (4736ms) What do penguins eat? eight-14 -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (eight-14, can use, penguin avatars) -> eight-14 (4696ms) What do penguins eat? Penguin Musume -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (Penguin Musume, has almost nothing to do with, penguins) -> Penguin Musume (4807ms) What do penguins eat? SecondLife -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (ClubPenguin, sounds like, SecondLife) -> SecondLife (4765ms) What do penguins eat? Consumers -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (Consumers, can also mail the books to, Penguin USA) -> Consumers (4783ms) What do penguins eat? keep their season alive -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (The Penguins, needed a win to, keep their season alive) -> keep their season alive (4743ms) What do penguins eat? a win -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (The Penguins, need, a win) -> a win (4811ms) What do penguins eat? bidding -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (bidding, is done, a penguin) -> bidding (4720ms) What do penguins eat? a place -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (The penguins, live in, a place) -> a place (4798ms) What do penguins eat? bandits -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (the Penguins, made out like, bandits) -> bandits (4823ms) What do penguins eat? an animatronic dinosaur -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (The baby penguin feet, are like, an animatronic dinosaur) -> an animatronic dinosaur (4830ms) What do penguins eat? 14 -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (14, can interact with, other ?penguins?) -> 14 (4743ms) What do penguins eat? Disney -0.0 What do penguins eat? -> $x: ($x, kill, penguin) -> (Disney, killed, Club Penguin) -> Disney (4835ms) What do penguins eat? an Apple -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (my Penguin, acted like, an Apple) -> an Apple (4840ms) What do penguins eat? Visitors Guests -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (Visitors Guests, can visit, the penguins) -> Visitors Guests (4778ms) What do penguins eat? flipper -0.0 What do penguins eat? -> $x: (penguin, have type of, $x) -> (Not all giant penguins, had the same type of, flipper) -> flipper (4833ms) What do penguins eat? children -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (children, can make, a penguin craft) -> children (4660ms) What do penguins eat? a disciplined 60 minutes -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (Penguins, will need to play, a disciplined 60 minutes) -> a disciplined 60 minutes (4835ms) What do penguins eat? hell -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (Penguins, may look like, hell) -> hell (4802ms) What do penguins eat? The Rangers -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (The Rangers, can stop, the Penguins) -> The Rangers (4823ms) What do penguins eat? ice -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (Adlie and emperor penguins, need, ice) -> ice (4835ms) What do penguins eat? antartica -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (penguins, live in, antartica) -> antartica (4704ms) What do penguins eat? any bookstore -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (any bookstore, can also be purchased online from, Penguin) -> any bookstore (4660ms) What do penguins eat? a definite contender -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (the Penguins, look like, a definite contender) -> a definite contender (4712ms) What do penguins eat? the company -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (the penguin, is like having, the company) -> the company (4827ms) What do penguins eat? aloof , smart birds -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (the penguins, seem like, aloof , smart birds) -> aloof , smart birds (4820ms) What do penguins eat? an ideal solution -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (penguin colonies, seemed like, an ideal solution) -> an ideal solution (4840ms) What do penguins eat? boat accidents -0.0 What do penguins eat? -> $x: ($x, kill, penguin) -> (boat accidents, kill, Little Penguins) -> boat accidents (4802ms) What do penguins eat? Lili -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (Lili, can now summon, penguins) -> Lili (4712ms) What do penguins eat? door C -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (door C, can have, the penguin) -> door C (4704ms) What do penguins eat? do -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (the penguins, like to, do) -> do (4802ms) What do penguins eat? the whole family -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (the whole family, can swim with, the Penguins) -> the whole family (4687ms) What do penguins eat? the old way -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (the penguins, liked, the old way) -> the old way (4835ms) What do penguins eat? water -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (Penguins, live in, water) -> water (4838ms) What do penguins eat? a conventional torch -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (the penguin, be carried like, a conventional torch) -> a conventional torch (4743ms) What do penguins eat? the kernel -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (The Penguin, needs to load, the kernel) -> the kernel (4765ms) What do penguins eat? the researchers -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (the researchers, did, modern penguins) -> the researchers (4811ms) What do penguins eat? wolf woods -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (wolf woods, do, the african penguins) -> wolf woods (4704ms) What do penguins eat? Jason Statham -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (Jason Statham, doing, the voice of Penguin) -> Jason Statham (4778ms) What do penguins eat? a team effort -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (the Penguins, needed, a team effort) -> a team effort (4802ms) What do penguins eat? no single explanation -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (no single explanation, can be given for, penguins) -> no single explanation (4704ms) What do penguins eat? one two days -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (The Penguins, looked like, one two days) -> one two days (4778ms) What do penguins eat? A:You -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (A:You, can get, cheap Pittsburgh Penguins Tickets) -> A:You (4840ms) What do penguins eat? Pinky -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (the penguins, sounds like, Pinky) -> Pinky (4820ms) What do penguins eat? alive -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (The Penguins, needed a win to keep their season, alive) -> alive (4704ms) What do penguins eat? the penguin rookeries and travelers -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (the penguin rookeries and travelers, can see, the penguins) -> the penguin rookeries and travelers (4750ms) What do penguins eat? the Galapagos Islands -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (penguins, live in, the Galapagos Islands) -> the Galapagos Islands (4798ms) What do penguins eat? supplies -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (the penguins, will need a number of, supplies) -> supplies (4823ms) What do penguins eat? the distance -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (Your penguin, needs to go, the distance) -> the distance (4750ms) What do penguins eat? stacks -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (stacks, did, the Penguin Classics) -> stacks (4793ms) What do penguins eat? a new arena -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (the Penguins, need, a new arena) -> a new arena (4669ms) What do penguins eat? the Ross Sea off Antarctica -0.0 What do penguins eat? -> $x: (penguin, hunt, $x) -> (Adelie penguins, hunt on, the Ross Sea off Antarctica) -> the Ross Sea off Antarctica (4720ms) What do penguins eat? Each aviary -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (Each aviary, can house up to approximately, 25 penguins) -> Each aviary (4838ms) What do penguins eat? a tuxedo -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (a tuxedo, can make one look a little like, a penguin) -> a tuxedo (4678ms) What do penguins eat? a burrow -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (Some penguins, live in, a burrow) -> a burrow (4757ms) What do penguins eat? a gold nose -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (the Emperor Penguin, needs, a gold nose) -> a gold nose (4802ms) What do penguins eat? guests -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (guests, can catch, a special penguin talk) -> guests (4765ms) What do penguins eat? somebody -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (somebody, can bring, a penguin) -> somebody (4807ms) What do penguins eat? martinis -0.0 What do penguins eat? -> $x: (penguin, drink, $x) -> (the penguins, drank, martinis) -> martinis (4783ms) What do penguins eat? the Humboldt penguins -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (African penguins, look much like, the Humboldt penguins) -> the Humboldt penguins (4823ms) What do penguins eat? airfare -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (the Penguin, needs, airfare) -> airfare (4687ms) What do penguins eat? the ship -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (The Penguins, need to turn, the ship) -> the ship (4660ms) What do penguins eat? the the ice berg -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (the the ice berg, can only carry, 50 penguins) -> the the ice berg (4772ms) What do penguins eat? Help yeti -0.0 What do penguins eat? -> $x: ($x, kill, penguin) -> (Help yeti, kill as, many penguins) -> Help yeti (4750ms) What do penguins eat? the Southern half -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (Penguins, live in, the Southern half) -> the Southern half (4678ms) What do penguins eat? arias -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (arias, does, that Penguin fit) -> arias (4750ms) What do penguins eat? a glass rinse -0.0 What do penguins eat? -> $x: (penguin, drink, $x) -> (Kaiser Penguin, has a drink with, a glass rinse) -> a glass rinse (4757ms) What do penguins eat? the seal -0.0 What do penguins eat? -> $x: ($x, kill, penguin) -> (the seal, was killing, the penguin) -> the seal (4820ms) What do penguins eat? A polar bear -0.0 What do penguins eat? -> $x: ($x, can eat, penguin) -> (A polar bear, can eat up, to 86 penguins) -> A polar bear (4720ms) What do penguins eat? different ocean habitats -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (penguins, live in, different ocean habitats) -> different ocean habitats (4838ms) What do penguins eat? a vacation -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (paranoid penguins, needs, a vacation) -> a vacation (4772ms) What do penguins eat? the garden -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (the garden, as do, live penguins) -> the garden (4793ms) What do penguins eat? Matt Cooke -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (Matt Cooke, did this season with, the Penguins) -> Matt Cooke (4704ms) What do penguins eat? travelers -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (travelers, can spot, penguins) -> travelers (4772ms) What do penguins eat? the world?s -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (Penguin, meets the needs of, the world?s) -> the world?s (4819ms) What do penguins eat? The youngest -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (The youngest, wanted to do, a penguin) -> The youngest (4728ms) What do penguins eat? an avatar -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (an avatar, can be in, cartoon penguin) -> an avatar (4783ms) What do penguins eat? little blobs -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (the penguins, have bodies like, little blobs) -> little blobs (4788ms) What do penguins eat? Antarctic krill -0.0 What do penguins eat? -> $x: (penguin, feed on, $x) -> (the Ad?lie penguin, is known to feed mainly on, Antarctic krill) -> Antarctic krill (4728ms) What do penguins eat? seven games -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (the Penguins, needed, seven games) -> seven games (4687ms) What do penguins eat? the Wells Fargo Center -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (the Penguins, need heading into, the Wells Fargo Center) -> the Wells Fargo Center (4798ms) What do penguins eat? tight-fitting wool sweaters -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (tight-fitting wool sweaters, can keep, the penguins) -> tight-fitting wool sweaters (4823ms) What do penguins eat? a name -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (our bedraggled little Adelie penguin, needed, a name) -> a name (4816ms) What do penguins eat? a duck -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (his penguin, looked more like, a duck) -> a duck (4704ms) What do penguins eat? The Breakdown -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (The Breakdown, Do, the Funky Penguin) -> The Breakdown (4750ms) What do penguins eat? a sketch i -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (a sketch i, did, baby penguins) -> a sketch i (4772ms) What do penguins eat? the human fishing industry -0.0 What do penguins eat? -> $x: ($x, kill, penguin) -> (the human fishing industry, directly kills, the penguins) -> the human fishing industry (4778ms) What do penguins eat? the care and attention -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (Baby penguins, need, the care and attention) -> the care and attention (4757ms) What do penguins eat? a UFC fight -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (Penguins, was more like, a UFC fight) -> a UFC fight (4838ms) What do penguins eat? last week -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (last week, did, Penguin) -> last week (4816ms) What do penguins eat? visitors -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (visitors, can feed, penguins) -> visitors (4840ms) What do penguins eat? more rocks -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (the penguins, need, more rocks) -> more rocks (4736ms) What do penguins eat? monkeys -0.0 What do penguins eat? -> $x: ($x, kill, penguin) -> (monkeys, kill the rest of, the penguins* Mat) -> monkeys (4765ms) What do penguins eat? a sweater -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (even penguins, need to put on, a sweater) -> a sweater (4788ms) What do penguins eat? him the most -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (the Penguins, needed, him the most) -> him the most (4816ms) What do penguins eat? the NHL -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (the NHL, can match, the Penguins depth) -> the NHL (4669ms) What do penguins eat? Africa -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (penguins, live in, Africa) -> Africa (4743ms) What do penguins eat? The Flyers -0.0 What do penguins eat? -> $x: ($x, kill, penguin) -> (The Flyers, got killed by, the Penguins) -> The Flyers (4798ms) What do penguins eat? North -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (Penguins, live in, North) -> North (4835ms) What do penguins eat? overtime -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (The Flyers and Penguins, needed, overtime) -> overtime (4833ms) What do penguins eat? arctic conditions -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (an arctic penguin, would need, arctic conditions) -> arctic conditions (4802ms) What do penguins eat? a rhyme -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (Penguin Pocket Rhyming Dictionary, Need, a rhyme) -> a rhyme (4793ms) What do penguins eat? a bit -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (this Pocket Penguin, felt like, a bit) -> a bit (4679ms) What do penguins eat? Blue Chicken -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (Blue Chicken, can be ordered from, Penguin Young Readers Group) -> Blue Chicken (4670ms) What do penguins eat? Curiosity -0.0 What do penguins eat? -> $x: ($x, kill, penguin) -> (Curiosity, killed, the Penguin) -> Curiosity (4835ms) What do penguins eat? Game 2 -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (The Penguins, need to move on to, Game 2) -> Game 2 (4820ms) What do penguins eat? even 80 % -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (even 80 %, still does more for, the Penguins) -> even 80 % (4743ms) What do penguins eat? The graphics -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (The graphics, were done using, Penguin) -> The graphics (4823ms) What do penguins eat? Theresa M. Evangelista -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (Theresa M. Evangelista, does covers for, Penguin books) -> Theresa M. Evangelista (4735ms) What do penguins eat? parsons -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (penguins, look like, parsons) -> parsons (4772ms) What do penguins eat? a semi -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (a penguin egg, looks like, a semi) -> a semi (4833ms) What do penguins eat? the man-made lake -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (Some Adelie penguins, liked, the man-made lake) -> the man-made lake (4743ms) What do penguins eat? any holiday goer -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (any holiday goer, can see, beautiful penguins) -> any holiday goer (4807ms) What do penguins eat? a quarterback -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (Penguins, need, a quarterback) -> a quarterback (4835ms) What do penguins eat? earth -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (earth, do, the Pittsburgh Penguins) -> earth (4765ms) What do penguins eat? a football -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (penguins, are basically shaped like, a football) -> a football (4823ms) What do penguins eat? Fleury -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (The Penguins, needed, Fleury) -> Fleury (4750ms) What do penguins eat? plumage -0.0 What do penguins eat? -> $x: (penguin, have type of, $x) -> (Penguins, have a different type of, plumage) -> plumage (4757ms) What do penguins eat? a thermostat -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (Penguin, really needs, a thermostat) -> a thermostat (4757ms) What do penguins eat? a cute , cuddly penguin -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (a Penguin, does n?t like, a cute , cuddly penguin) -> a cute , cuddly penguin (4696ms) What do penguins eat? Despres -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (Despres, has done for, the Penguins) -> Despres (4669ms) What do penguins eat? a walrus -0.0 What do penguins eat? -> $x: ($x, kill, penguin) -> (a walrus, kills, a dyslexic penguin) -> a walrus (4811ms) What do penguins eat? the floor -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (the floor, ,did, the penguin drink) -> the floor (4687ms) What do penguins eat? a hug -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (Mr. Glass Penguin, needs, a hug) -> a hug (4830ms) What do penguins eat? the door -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (the door, can just be, a penguin) -> the door (4728ms) What do penguins eat? a brand leader -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (Penguin, behaves like, a brand leader) -> a brand leader (4728ms) What do penguins eat? find a way -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (the Penguins, need to, find a way) -> find a way (4696ms) What do penguins eat? Pasturella -0.0 What do penguins eat? -> $x: ($x, kill, penguin) -> (Pasturella, has killed, penguins) -> Pasturella (4838ms) What do penguins eat? J.G. Weller -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (J.G. Weller, do, a British penguin) -> J.G. Weller (4669ms) What do penguins eat? a ninja -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (The penguin, should now look like, a ninja) -> a ninja (4811ms) What do penguins eat? a tale -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (a tale, do, penguins) -> a tale (4696ms) What do penguins eat? the parties -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (the parties, did n?t settle ?, Penguin) -> the parties (4679ms) What do penguins eat? a torpedo -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (Penguins, are shaped like, a torpedo) -> a torpedo (4811ms) What do penguins eat? 18-20 -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (penguin-chan, was like, 18-20) -> 18-20 (4679ms) What do penguins eat? One seagull -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (One seagull, did have a go at, one penguin) -> One seagull (4669ms) What do penguins eat? a Steve MacIntyre -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (The Penguins, longer feel the need to have, a Steve MacIntyre) -> a Steve MacIntyre (4704ms) What do penguins eat? the Northern Hemisphere -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (penguins, live naturally in, the Northern Hemisphere) -> the Northern Hemisphere (4840ms) What do penguins eat? Kids -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (Kids, can make, a little penguin friend) -> Kids (4833ms) What do penguins eat? groups -0.0 What do penguins eat? -> $x: (penguin, feed in, $x) -> (Penguins, feed in, groups) -> groups (4757ms) What do penguins eat? bird guano -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (Adelie penguin guano, smells like, bird guano) -> bird guano (4820ms) What do penguins eat? warm water -0.0 What do penguins eat? -> $x: (penguin, drink, $x) -> (penguins, to drink, warm water) -> warm water (4669ms) What do penguins eat? The molt -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (The molt, can give, individual penguins) -> The molt (4793ms) What do penguins eat? to -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (to, does, the ownerPenguin) -> to (4827ms) What do penguins eat? the rules -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (those penguins, need some education on, the rules) -> the rules (4696ms) What do penguins eat? naked humans -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (those penguins, look a lot like, naked humans) -> naked humans (4835ms) What do penguins eat? two victories -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (The Penguins, need, two victories) -> two victories (4807ms) What do penguins eat? an entitled , too cool -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (The Penguins, have acted like, an entitled , too cool) -> an entitled , too cool (4793ms) What do penguins eat? a completely different team -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (The Penguins, looked like, a completely different team) -> a completely different team (4743ms) What do penguins eat? hardware -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (?Penguin Mark ?, is needed on, hardware) -> hardware (4823ms) What do penguins eat? Flyers -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (28946 Penguins, Come Apart like, Flyers) -> Flyers (4783ms) What do penguins eat? a beer -0.0 What do penguins eat? -> $x: (penguin, drink, $x) -> (the penguin, drank, a beer) -> a beer (4720ms) What do penguins eat? cold climates -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (Penguins, live in very, cold climates) -> cold climates (4788ms) What do penguins eat? a less-efficient penguin -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (a penguin, swam like, a less-efficient penguin) -> a less-efficient penguin (4833ms) What do penguins eat? much more -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (much more, do, the penguins) -> much more (4669ms) What do penguins eat? the south and polar bears -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (penguins, live in, the south and polar bears) -> the south and polar bears (4807ms) What do penguins eat? ice and snow -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (ice and snow, Do, the penguin shuffle) -> ice and snow (4750ms) What do penguins eat? example -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (example, did Noah find, penguins) -> example (4765ms) What do penguins eat? Hogan -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (Hogan, did the same thing for, the Penguins) -> Hogan (4712ms) What do penguins eat? One to four players -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (One to four players, can play, Penguins & Friends) -> One to four players (4696ms) What do penguins eat? WoW -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (WoW, can even be put together with, Club Penguin) -> WoW (4840ms) What do penguins eat? cold places -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (Penguin, live in, cold places) -> cold places (4720ms) What do penguins eat? Table 52 -0.0 What do penguins eat? -> $x: ($x, kill, penguin) -> (Table 52, did n?t even kill, the penguins) -> Table 52 (4758ms) What do penguins eat? a good squad -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (the Penguins, actually looked like, a good squad) -> a good squad (4750ms) What do penguins eat? nuns -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (those penguins, look like, nuns) -> nuns (4823ms) What do penguins eat? Tux -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (That penguin, looks a lot like, Tux) -> Tux (4816ms) What do penguins eat? fries -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (The penguins feet, look like, fries) -> fries (4728ms) What do penguins eat? the floating ice -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (the floating ice, can hold at, most two penguins) -> the floating ice (4827ms) What do penguins eat? the largest penguins -0.0 What do penguins eat? -> $x: ($x, size be, penguin) -> (the largest penguins, was twice the size of, an Emperor penguin) -> the largest penguins (4712ms) What do penguins eat? petabytes -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (Growing penguins, need, petabytes) -> petabytes (4704ms) What do penguins eat? the wild -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (penguins, live in, the wild) -> the wild (4696ms) What do penguins eat? Huntress -0.0 What do penguins eat? -> $x: ($x, kill, penguin) -> (Huntress, nearly kills, Penguin) -> Huntress (4712ms) What do penguins eat? a better performance -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (The Penguins, will need, a better performance) -> a better performance (4798ms) What do penguins eat? 613 points -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (613 points, was done in, the Penguins) -> 613 points (4765ms) What do penguins eat? the south pole -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (Penguins, live in, the south pole) -> the south pole (4811ms) What do penguins eat? a late goal -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (the Penguins, needed, a late goal) -> a late goal (4793ms) What do penguins eat? a swim after they eat -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (Penguins, like, a swim after they eat) -> a swim after they eat (4823ms) What do penguins eat? comical little persons -0.0 What do penguins eat? -> $x: (penguin, like, $x) -> (penguins, seem more like, comical little persons) -> comical little persons (4820ms) What do penguins eat? medical attention -0.0 What do penguins eat? -> $x: (penguin, need, $x) -> (This penguin, needs, medical attention) -> medical attention (4811ms) What do penguins eat? a seal -0.0 What do penguins eat? -> $x: (penguin, hunt, $x) -> (the little penguin, is hunted by, a seal) -> a seal (4811ms) What do penguins eat? Polar bears -0.0 What do penguins eat? -> $x: ($x, can eat, penguin) -> (Polar bears, can eat, as many as 86 penguins) -> Polar bears (4840ms) What do penguins eat? concert -0.0 What do penguins eat? -> $x: (penguin, live in, $x) -> (Penguin Prison, live in, concert) -> concert (4816ms) What do penguins eat? Coke -0.0 What do penguins eat? -> $x: (penguin, drink, $x) -> (a penguin, drinking, Coke) -> Coke (4788ms) What do penguins eat? fun songs -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (fun songs, do, a few penguin dances) -> fun songs (4833ms) What do penguins eat? 67 people -0.0 What do penguins eat? -> $x: ($x, kill, penguin) -> (67 people, were killed by, penguins) -> 67 people (4772ms) What do penguins eat? only krissmonsta -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (only krissmonsta, can give orders to, the penguins) -> only krissmonsta (4712ms) What do penguins eat? The whale population -0.0 What do penguins eat? -> $x: ($x, do, penguin) -> (The whale population, so did, penguins) -> The whale population (4811ms) What do penguins eat? birders -0.0 What do penguins eat? -> $x: ($x, can, penguin) -> (birders, can spot, penguins) -> birders (4823ms) What do penguins eat? the warmer summer season -1.9999973899231804E-12 What do penguins eat? -> $x: (king penguin, do, $x) -> (the King penguins, do this during, the warmer summer season) -> the warmer summer season (4842ms) What do penguins eat? Camera crews -0.111111111111 What do penguins eat? -> $x: ($x, discover, penguin) -> (Camera crews, discovered, a colony of Adlie penguins) -> Camera crews (4844ms) What do penguins eat? Fairy Penguins -0.111111111111 What do penguins eat? -> $x: ($x, be type of, penguin) -> (Fairy Penguins, are the smallest type of, the penguin family) -> Fairy Penguins (4842ms) What do penguins eat? Adelie -0.111111111111 What do penguins eat? -> $x: ($x, be type of, penguin) -> (Adelie, is a type of, penguin) -> Adelie (4842ms) What do penguins eat? publishing the best books -0.111111111111 What do penguins eat? -> $x: (penguin, believe in, $x) -> (Penguin, believes in, publishing the best books) -> publishing the best books (4845ms) What do penguins eat? Wasn?t Puffle Handler -0.111111111111 What do penguins eat? -> $x: ($x, discover, penguin) -> (Wasn?t Puffle Handler, first discovered in, Club Penguin) -> Wasn?t Puffle Handler (4845ms) What do penguins eat? Terry Jones -0.111111111111 What do penguins eat? -> $x: ($x, discover, penguin) -> (Terry Jones, discovered, a colony of penguins) -> Terry Jones (4845ms) What do penguins eat? the Peninsula region -0.111111111111 What do penguins eat? -> $x: (king penguin, live in, $x) -> (King penguins, live in, the Peninsula region) -> the Peninsula region (4844ms) What do penguins eat? Film maker and writer -0.111111111111 What do penguins eat? -> $x: ($x, discover, penguin) -> (Film maker and writer, discovers, a colony of penguins) -> Film maker and writer (4844ms) What do penguins eat? a Bioteam -0.111111111111 What do penguins eat? -> $x: (penguin, be example of, $x) -> (penguins, are a great example of, a Bioteam) -> a Bioteam (4844ms) What do penguins eat? A Kororaa -0.111111111111 What do penguins eat? -> $x: ($x, be type of, penguin) -> (A Kororaa, is a type of, penguin) -> A Kororaa (4842ms) What do penguins eat? a similar sound -0.111111111111 What do penguins eat? -> $x: ($x, be type of, penguin) -> (a similar sound, is a type of, penguin) -> a similar sound (4845ms) What do penguins eat? the Bay -0.111111111111 What do penguins eat? -> $x: (king penguin, live in, $x) -> (King Penguins, live in, the Bay) -> the Bay (4845ms) What do penguins eat? Edinburgh Zoo -0.111111111111 What do penguins eat? -> $x: (king penguin, live in, $x) -> (a King Penguin, living in, Edinburgh Zoo) -> Edinburgh Zoo (4842ms) What do penguins eat? the shores -0.111111111111 What do penguins eat? -> $x: (king penguin, live in, $x) -> (King penguins, live in, the shores) -> the shores (4845ms) What do penguins eat? The King Penguin -0.111111111111 What do penguins eat? -> $x: ($x, be type of, penguin) -> (The King Penguin, is the second largest type of, penguin) -> The King Penguin (4844ms) What do penguins eat? Bonaire -0.111111111111 What do penguins eat? -> $x: ($x, discover, penguin) -> (Bonaire, had come to discover, The Lost Penguin) -> Bonaire (4845ms) What do penguins eat? Chinstrap and Emperor -0.111111111111 What do penguins eat? -> $x: ($x, be type of, penguin) -> (Chinstrap and Emperor, are types of, penguins) -> Chinstrap and Emperor (4845ms) What do penguins eat? one celebrity couple -0.111111111111 What do penguins eat? -> $x: (penguin, be example of, $x) -> (the Pittsburgh Penguins, are an example of, one celebrity couple) -> one celebrity couple (4844ms) What do penguins eat? hockey failure -0.111111111111 What do penguins eat? -> $x: (penguin, be example of, $x) -> (the Penguins, were a textbook example of, hockey failure) -> hockey failure (4845ms) What do penguins eat? Miss L -0.111111111111 What do penguins eat? -> $x: ($x, discover, penguin) -> (Miss L, has discovered the wonders of, Club Penguin) -> Miss L (4842ms) What do penguins eat? the Emperor penguin -0.111111111111 What do penguins eat? -> $x: (king penguin, like, $x) -> (The King penguin, looks somewhat like, the Emperor penguin) -> the Emperor penguin (4844ms) What do penguins eat? companies -0.111111111111 What do penguins eat? -> $x: (penguin, be example of, $x) -> (Club Penguin, are both examples of, companies) -> companies (4842ms) What do penguins eat? Tasmania -0.111111111111 What do penguins eat? -> $x: ($x, be habitat of, penguin) -> (Tasmania, is the habitat of, more than a million penguins) -> Tasmania (4842ms) What do penguins eat? monogamy -0.111111111111 What do penguins eat? -> $x: (penguin, be example of, $x) -> (penguins, are the really ideal example of, monogamy) -> monogamy (4845ms) What do penguins eat? writer Terry Jones -0.111111111111 What do penguins eat? -> $x: ($x, discover, penguin) -> (writer Terry Jones, discovered a colony of, penguins) -> writer Terry Jones (4842ms) What do penguins eat? the beaches -0.111111111111 What do penguins eat? -> $x: ($x, be type of, penguin) -> (the beaches, as are four types of, penguins) -> the beaches (4845ms) What do penguins eat? 1940s -0.111111111111 What do penguins eat? -> $x: (penguin, be example of, $x) -> (The Penguin Hotel, is a shining example of, 1940s) -> 1940s (4845ms) What do penguins eat? The book trade -0.111111111111 What do penguins eat? -> $x: ($x, discover, penguin) -> (The book trade, has also discovered, the penguin programs) -> The book trade (4844ms) What do penguins eat? an emperor -0.111111111111 What do penguins eat? -> $x: (king penguin, like, $x) -> (a king penguin, looks like, an emperor) -> an emperor (4844ms) What do penguins eat? the tuna fish -0.111111111112 What do penguins eat? -> $x: ($x, eat, penguin) -> (the tuna fish, ate, my penguin) -> the tuna fish (4845ms) What do penguins eat? the whale -0.111111111112 What do penguins eat? -> $x: ($x, eat, penguin) -> (the whale, eats, the penguin) -> the whale (4846ms) What do penguins eat? a Leopard seal -0.111111111112 What do penguins eat? -> $x: ($x, eat, penguin) -> (a Leopard seal, eating, a penguin) -> a Leopard seal (4846ms) What do penguins eat? a leopard seal -0.111111111112 What do penguins eat? -> $x: ($x, eat, penguin) -> (a leopard seal, eat, fourteen young penguins) -> a leopard seal (4846ms) What do penguins eat? Leopards Panthera -0.111111111112 What do penguins eat? -> $x: ($x, eat, penguin) -> (Leopards Panthera, pardus have eaten, adult penguins) -> Leopards Panthera (4847ms) What do penguins eat? polar -0.111111111112 What do penguins eat? -> $x: ($x, eat, penguin) -> (polar, bears don?t eat, penguins) -> polar (4848ms) What do penguins eat? an army of turtle -0.111111111112 What do penguins eat? -> $x: ($x, eat, penguin) -> (an army of turtle, eating, Penguin Overlords) -> an army of turtle (4848ms) What do penguins eat? The polar bears -0.111111111112 What do penguins eat? -> $x: ($x, eat, penguin) -> (The polar bears, ate, the penguin) -> The polar bears (4848ms) What do penguins eat? Fur seals -0.111111111112 What do penguins eat? -> $x: ($x, eat, penguin) -> (Fur seals, sometimes eat, penguins) -> Fur seals (4847ms) What do penguins eat? farrets -0.111111111112 What do penguins eat? -> $x: ($x, eat, penguin) -> (farrets, eat, fairy penguins) -> farrets (4848ms) What do penguins eat? person -0.111111111112 What do penguins eat? -> $x: ($x, eat, penguin) -> (person, eat, 4 or 5 penguins) -> person (4848ms) What do penguins eat? The leopard seals -0.111111111112 What do penguins eat? -> $x: ($x, eat, penguin) -> (The leopard seals, sometimes eat, penguins) -> The leopard seals (4848ms) What do penguins eat? Orcas -0.111111111112 What do penguins eat? -> $x: ($x, eat, penguin) -> (Orcas, eat, penguins) -> Orcas (4848ms) What do penguins eat? the seals -0.111111111112 What do penguins eat? -> $x: ($x, eat, penguin) -> (the seals, eat, the penguins) -> the seals (4847ms) What do penguins eat? the shark -0.111111111112 What do penguins eat? -> $x: ($x, eat, penguin) -> (the shark, ate, the penguin) -> the shark (4848ms) What do penguins eat? larger species -0.111111111112 What do penguins eat? -> $x: ($x, eat, penguin) -> (larger species, eat, penguins) -> larger species (4846ms) What do penguins eat? The leopard seal -0.111111111112 What do penguins eat? -> $x: ($x, eat, penguin) -> (The leopard seal, will also eat, penguins) -> The leopard seal (4847ms) What do penguins eat? zombie pigs -0.111111111112 What do penguins eat? -> $x: ($x, eat, penguin) -> (zombie pigs, attempted to eat, the penguin) -> zombie pigs (4846ms) What do penguins eat? the leopard seal -0.111111111112 What do penguins eat? -> $x: ($x, eat, penguin) -> (the leopard seal, ate, a mommy penguin) -> the leopard seal (4846ms) What do penguins eat? the humans -0.111111111112 What do penguins eat? -> $x: ($x, eat, penguin) -> (the humans, had suddenly decided to eat, Penguin) -> the humans (4848ms) What do penguins eat? the crew -0.111111111112 What do penguins eat? -> $x: ($x, eat, penguin) -> (the crew, were forced to eat, some 14,000 penguins) -> the crew (4847ms) What do penguins eat? the head -0.111111111112 What do penguins eat? -> $x: ($x, eat, penguin) -> (the head, is the main food eaten by, penguins) -> the head (4847ms) What do penguins eat? dont Polar Bears -0.111111111112 What do penguins eat? -> $x: ($x, eat, penguin) -> (dont Polar Bears, eat, penguins) -> dont Polar Bears (4847ms) What do penguins eat? don?t polar bears -0.111111111112 What do penguins eat? -> $x: ($x, eat, penguin) -> (don?t polar bears, eat, penguins) -> don?t polar bears (4849ms) What do penguins eat? A: Paige -0.111111111112 What do penguins eat? -> $x: ($x, eat, penguin) -> (A: Paige, eats, penguin meat) -> A: Paige (4846ms) What do penguins eat? polar bears -0.111111111112 What do penguins eat? -> $x: ($x, eat, penguin) -> (polar bears, eat, Penguins) -> polar bears (4848ms) What do penguins eat? the killer whale -0.111111111112 What do penguins eat? -> $x: ($x, eat, penguin) -> (the killer whale, eats, penguins and seals) -> the killer whale (4847ms) What do penguins eat? ? But -0.111111111112 What do penguins eat? -> $x: ($x, eat, penguin) -> (? But, eat, the penguin) -> ? But (4846ms) What do penguins eat? n't polar bears -0.111111111112 What do penguins eat? -> $x: ($x, eat, penguin) -> (n't polar bears, eat, penguins) -> n't polar bears (4847ms) What do penguins eat? Wylie -0.111111111112 What do penguins eat? -> $x: ($x, eat, penguin) -> (Wylie, even ate, a dead penguin) -> Wylie (4848ms) What do penguins eat? Pikes -0.111111111112 What do penguins eat? -> $x: ($x, eat, penguin) -> (Pikes, ate at, the Penguin) -> Pikes (4847ms) What do penguins eat? Mole Snakes Pseudapsis cana -0.111111111112 What do penguins eat? -> $x: ($x, eat, penguin) -> (Mole Snakes Pseudapsis cana, eat, penguin eggs) -> Mole Snakes Pseudapsis cana (4847ms) What do penguins eat? Tiger -0.111111111112 What do penguins eat? -> $x: ($x, eat, penguin) -> (Tiger, eats, Penguin) -> Tiger (4846ms) What do penguins eat? skuas -0.111111111112 What do penguins eat? -> $x: ($x, eat, penguin) -> (skuas, is to eat, penguin chicks) -> skuas (4846ms) What do penguins eat? dont polar bears -0.111111111112 What do penguins eat? -> $x: ($x, eat, penguin) -> (dont polar bears, eat, penguins) -> dont polar bears (4846ms) What do penguins eat? killer whales -0.111111111112 What do penguins eat? -> $x: ($x, eat, penguin) -> (killer whales, eat, the penguins) -> killer whales (4848ms) What do penguins eat? previous studies -0.111111111114 What do penguins eat? -> $x: (emperor penguin, do, $x) -> (many emperor penguins, did, previous studies) -> previous studies (4849ms) What do penguins eat? the city -0.222222222222 What do penguins eat? -> $x: ($x, can, yellow eyed penguin) -> (the city, can include tours of, Yellow Eyed Penguin Reserve) -> the city (4849ms) How many non-permanent members are in the Security Council? Turkey 0.222222222223 How many non-permanent members are in the Security Council? -> $x: ($x, be non permanent member of, security council) -> (Turkey, is a non-permanent member of, the Security Council) -> Turkey (614ms) How many non-permanent members are in the Security Council? Austria 0.222222222223 How many non-permanent members are in the Security Council? -> $x: ($x, be non permanent member of, security council) -> (Austria, is a non-permanent member of, the UN Security Council) -> Austria (614ms) How many non-permanent members are in the Security Council? Italy 0.222222222223 How many non-permanent members are in the Security Council? -> $x: ($x, be non permanent member of, security council) -> (Italy, is a non-permanent member of, the UN Security Council) -> Italy (614ms) How many non-permanent members are in the Security Council? sanctions 0.222222222223 How many non-permanent members are in the Security Council? -> $x: ($x, be non permanent member of, security council) -> (sanctions, is a non-permanent member of, the UN Security Council) -> sanctions (614ms) How many non-permanent members are in the Security Council? Tanzania 0.222222222223 How many non-permanent members are in the Security Council? -> $x: ($x, be non permanent member of, security council) -> (Tanzania, was a non-permanent member of, the UN Security Council) -> Tanzania (614ms) How many non-permanent members are in the Security Council? Colombia 0.222222222223 How many non-permanent members are in the Security Council? -> $x: ($x, be non permanent member of, security council) -> (Colombia, is a non-permanent member of, the UN Security Council) -> Colombia (614ms) How many non-permanent members are in the Security Council? India 0.222222222223 How many non-permanent members are in the Security Council? -> $x: ($x, be non permanent member of, security council) -> (India, is a non-permanent member of, the UN Security Council) -> India (614ms) What is Ursa Major? Fanzine 0.333333333333 What is Ursa Major? -> $x: ($x, in, ursa major) -> (Fanzine, Awards in this discipline, Ursa Major Award for Best Anthropomorphic Magazine) -> Fanzine (1549ms) What is Ursa Major? the seven stars 0.333333333333 What is Ursa Major? -> $x: ($x, in, ursa major) -> (the seven stars, contained in, Ursa Major) -> the seven stars (1570ms) What is Ursa Major? galaxy M82 0.333333333333 What is Ursa Major? -> $x: ($x, in, ursa major) -> (galaxy M82, is in, the Great Bear constellation Ursa Major) -> galaxy M82 (1678ms) What is Ursa Major? the galaxy 0.333333333333 What is Ursa Major? -> $x: ($x, in, ursa major) -> (the galaxy, lies in, the constellation Ursa Major) -> the galaxy (1296ms) What is Ursa Major? M82 These Galaxies 0.333333333333 What is Ursa Major? -> $x: ($x, in, ursa major) -> (M82 These Galaxies, are located in, Ursa Major) -> M82 These Galaxies (1270ms) What is Ursa Major? a spiral galaxy 0.333333333333 What is Ursa Major? -> $x: ($x, in, ursa major) -> (a spiral galaxy, located in, Ursa Major) -> a spiral galaxy (1520ms) What is Ursa Major? Short story 0.333333333333 What is Ursa Major? -> $x: ($x, in, ursa major) -> (Short story, Awards in this discipline, Ursa Major Award for Best Anthropomorphic Short Fiction) -> Short story (1490ms) What is Ursa Major? MS 81 0.333333333333 What is Ursa Major? -> $x: ($x, in, ursa major) -> (MS 81, is being positioned in, the Ursa Major constellation) -> MS 81 (1549ms) What is Ursa Major? the city 0.333333333333 What is Ursa Major? -> $x: ($x, in, ursa major) -> (the city, is the brightest star in, the constellation Ursa Major) -> the city (1570ms) What is Ursa Major? Film 0.333333333333 What is Ursa Major? -> $x: ($x, in, ursa major) -> (Film, Awards in this discipline, Ursa Major Award for Best Anthropomorphic Motion Picture) -> Film (1549ms) What is Ursa Major? The Big Dipper 0.333333333333 What is Ursa Major? -> $x: ($x, in, ursa major) -> (The Big Dipper, is in, the constellation Ursa Major) -> The Big Dipper (1678ms) What is Ursa Major? Literature 0.333333333333 What is Ursa Major? -> $x: ($x, in, ursa major) -> (Literature, Awards in this discipline, Ursa Major Award for Best Anthropomorphic Other Literary Work) -> Literature (1678ms) What is Ursa Major? Extrasolar Planets 0.333333333333 What is Ursa Major? -> $x: ($x, in, ursa major) -> (Extrasolar Planets, discovered in, ursa major) -> Extrasolar Planets (1549ms) What is Ursa Major? NGC4051 0.333333333333 What is Ursa Major? -> $x: ($x, in, ursa major) -> (NGC4051, is a spiral galaxy in, the constellation Ursa Major) -> NGC4051 (1678ms) What is Ursa Major? Comic strip 0.333333333333 What is Ursa Major? -> $x: ($x, in, ursa major) -> (Comic strip, Awards in this discipline, Ursa Major Award for Best Anthropomorphic Comic Strip) -> Comic strip (1296ms) What is Ursa Major? The comet 0.333333333333 What is Ursa Major? -> $x: ($x, in, ursa major) -> (The comet, was traveling in, the Ursa Major constellation) -> The comet (1520ms) What is Ursa Major? Speculative fiction 0.333333333333 What is Ursa Major? -> $x: ($x, in, ursa major) -> (Speculative fiction, Books In This Genre, Rockets in Ursa Major) -> Speculative fiction (1520ms) What is Ursa Major? Messier 101 0.333333333333 What is Ursa Major? -> $x: ($x, in, ursa major) -> (Messier 101, is located in, the constellation Ursa Major) -> Messier 101 (1490ms) What is Ursa Major? Visual arts 0.333333333333 What is Ursa Major? -> $x: ($x, in, ursa major) -> (Visual arts, Awards in this discipline, Ursa Major Award for Best Anthropomorphic Published Illustration) -> Visual arts (1550ms) What is Ursa Major? galaxies 0.333333333333 What is Ursa Major? -> $x: ($x, in, ursa major) -> (galaxies, located in, Ursa major) -> galaxies (1570ms) What is Ursa Major? M81 0.333333333333 What is Ursa Major? -> $x: ($x, in, ursa major) -> (M81, lies in, the constellation Ursa Major) -> M81 (1271ms) What is Ursa Major? Fiction 0.333333333333 What is Ursa Major? -> $x: ($x, in, ursa major) -> (Fiction, Awards in this discipline, Ursa Major Award for Best Anthropomorphic Other Literary Work) -> Fiction (1549ms) What is Ursa Major? 47 Ursae Majoris 0.333333333333 What is Ursa Major? -> $x: ($x, in, ursa major) -> (47 Ursae Majoris, is in, the constellation Ursa Major) -> 47 Ursae Majoris (1490ms) What is Ursa Major? Comic book 0.333333333333 What is Ursa Major? -> $x: ($x, in, ursa major) -> (Comic book, Awards in this discipline, Ursa Major Award for Best Anthropomorphic Dramatic Short Work or Series) -> Comic book (1520ms) What is Ursa Major? The galaxy 0.333333333333 What is Ursa Major? -> $x: ($x, in, ursa major) -> (The galaxy, is located in, the constellation Ursa Major) -> The galaxy (1520ms) What is Ursa Major? Illustration 0.333333333333 What is Ursa Major? -> $x: ($x, in, ursa major) -> (Illustration, Awards in this discipline, Ursa Major Award for Best Anthropomorphic Published Illustration) -> Illustration (1678ms) What is Ursa Major? a planetary nebula 0.333333333333 What is Ursa Major? -> $x: ($x, in, ursa major) -> (a planetary nebula, located in, Ursa Major) -> a planetary nebula (1270ms) What is Ursa Major? Rob 0.333333333333 What is Ursa Major? -> $x: ($x, in, ursa major) -> (Rob, was bouncing around in, Virgo/Ursa Major) -> Rob (1549ms) What is Ursa Major? Anthropomorphic Arts 0.333333333333 What is Ursa Major? -> $x: ($x, in, ursa major) -> (Anthropomorphic Arts, Awards in this discipline, Ursa Major Award for Best Anthropomorphic Other Literary Work) -> Anthropomorphic Arts (1570ms) What is Ursa Major? Heaven 0.333333333333 What is Ursa Major? -> $x: ($x, in, ursa major) -> (Heaven, lived in, the constellation Ursa Major) -> Heaven (1270ms) What is Ursa Major? Periodical literature 0.333333333333 What is Ursa Major? -> $x: ($x, in, ursa major) -> (Periodical literature, Awards in this discipline, Ursa Major Award for Best Anthropomorphic Magazine) -> Periodical literature (1271ms) What is Ursa Major? The system 0.333333333333 What is Ursa Major? -> $x: ($x, in, ursa major) -> (The system, is in, the constellation Ursa Major) -> The system (1491ms) What is Ursa Major? an irregular galaxy 0.333333333333 What is Ursa Major? -> $x: ($x, in, ursa major) -> (an irregular galaxy, located in, the constellation of Ursa Major) -> an irregular galaxy (1678ms) What is Ursa Major? M101 0.333333333333 What is Ursa Major? -> $x: ($x, in, ursa major) -> (M101, is found in, the Ursa Major constellation) -> M101 (1570ms) What is Ursa Major? Comet NEAT 0.333333333333 What is Ursa Major? -> $x: ($x, in, ursa major) -> (Comet NEAT, will be in, URSA MAJOR) -> Comet NEAT (1570ms) What is Ursa Major? Novel 0.333333333333 What is Ursa Major? -> $x: ($x, in, ursa major) -> (Novel, Awards in this discipline, Ursa Major Award for Best Anthropomorphic Novel) -> Novel (1520ms) What is Ursa Major? the Cherokee 0.22222222222200003 What is Ursa Major? -> $x: (ursa major, do, $x) -> (Ursa Major, as do, the Cherokee) -> the Cherokee (1678ms) What is Ursa Major? excellence 0.22222222222100002 What is Ursa Major? -> $x: (ursa major, be for, $x) -> (the Ursa Major Awards, are presented annually for, excellence) -> excellence (1694ms) What is Ursa Major? one week 0.22222222222100002 What is Ursa Major? -> $x: ($x, do, ursa major) -> (one week, left to do so on, the Ursa Major Awards website) -> one week (1694ms) What is Ursa Major? voting 0.22222222222100002 What is Ursa Major? -> $x: (ursa major, be for, $x) -> (The Ursa Major Awards, are now open for, voting) -> voting (1694ms) What is Ursa Major? Floex 0.22222222222100002 What is Ursa Major? -> $x: ($x, produce, ursa major) -> (Floex, Tracks produced, Ursa Major) -> Floex (1694ms) What is Ursa Major? 20 seconds 0.22222222222100002 What is Ursa Major? -> $x: (ursa major, be for, $x) -> (URSA Major, was seen for, 20 seconds) -> 20 seconds (1694ms) What is Ursa Major? John Little 0.22222222222100002 What is Ursa Major? -> $x: (ursa major, be for, $x) -> (Ursa Major, is a departure for, John Little) -> John Little (1694ms) What is Ursa Major? 2008 0.22222222222100002 What is Ursa Major? -> $x: (ursa major, be for, $x) -> (the Ursa Major nominations, are open for, 2008) -> 2008 (1694ms) What is Ursa Major? cubs 0.11111111111100003 What is Ursa Major? -> $x: ($x, refer, ursa major) -> (cubs, refers to, the constellation Ursa Major) -> cubs (1694ms) What is Ursa Major? Bill Mantlo 0.11111111111100003 What is Ursa Major? -> $x: ($x, create, ursa major) -> (Bill Mantlo, Fictional Characters Created, Ursa Major) -> Bill Mantlo (1712ms) What is Ursa Major? Sal Buscema 0.11111111111100003 What is Ursa Major? -> $x: ($x, create, ursa major) -> (Sal Buscema, Fictional Characters Created, Ursa Major) -> Sal Buscema (1712ms) What is Ursa Major? a clear night 0.11111111111100003 What is Ursa Major? -> $x: ($x, found, ursa major) -> (a clear night, find, the constellation Ursa Major) -> a clear night (1712ms) What is Ursa Major? Amelia 0.11111111111100003 What is Ursa Major? -> $x: ($x, refer, ursa major) -> (Amelia, also refers to, Ursa Major) -> Amelia (1712ms) What is Ursa Major? Iroquois legend 0.11111111111100003 What is Ursa Major? -> $x: ($x, refer, ursa major) -> (Iroquois legend, also refers to, Ursa Major) -> Iroquois legend (1712ms) What is Ursa Major? Cancer ] 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (Cancer ], is, Ursa Major) -> Cancer ] (1746ms) What is Ursa Major? one star 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (one star, was a member of, the Ursa Major) -> one star (1746ms) What is Ursa Major? course 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (course, are, Ursa Major) -> course (1880ms) What is Ursa Major? the lion 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (the lion, is, Ursa Major) -> the lion (1885ms) What is Ursa Major? Vermont ?We 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (Vermont ?We, are, Ursa Major) -> Vermont ?We (1746ms) What is Ursa Major? Cygnus 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (Cygnus, is above, Ursa Major) -> Cygnus (1881ms) What is Ursa Major? the teddy bear 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (the teddy bear, is, Ursa Major) -> the teddy bear (1887ms) What is Ursa Major? The big dipper 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (The big dipper, is part of, the Ursa Major constellation) -> The big dipper (1883ms) What is Ursa Major? the naked eye 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (the naked eye, were, the bears Ursa Major) -> the naked eye (1885ms) What is Ursa Major? Thuban 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (Thuban, is Alioth of, Ursa Major) -> Thuban (1883ms) What is Ursa Major? the ox thigh constellation M?htyw 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (the ox thigh constellation M?htyw, was, Ursa Major) -> the ox thigh constellation M?htyw (1746ms) What is Ursa Major? the brightest stars 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (the brightest stars, is somewhat similar to, Ursa Major) -> the brightest stars (1885ms) What is Ursa Major? dancing 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (dancing, was connected with, Ursa Major) -> dancing (1881ms) What is Ursa Major? Leo 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (Leo, is, Ursa Major) -> Leo (1887ms) What is Ursa Major? Examples 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (Examples, are, Ursa Major) -> Examples (1800ms) What is Ursa Major? the first cycle 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (the first cycle, were, Ursa Major) -> the first cycle (1800ms) What is Ursa Major? constellations 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (constellations, is depicted, either opposite Ursa Major) -> constellations (1885ms) What is Ursa Major? Truck 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (Truck, is operating under, the name Ursa Major) -> Truck (1883ms) What is Ursa Major? Ursa Minor 0.11111111111000002 What is Ursa Major? -> $x: ($x, be to, ursa major) -> (Ursa Minor, is to, Ursa Major) -> Ursa Minor (1889ms) What is Ursa Major? over 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (over, is, Ursa Major) -> over (1883ms) What is Ursa Major? PSP 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (PSP, are the stars of, Ursa Major) -> PSP (1746ms) What is Ursa Major? the northern sky 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (the northern sky, is, the constellation Ursa Major) -> the northern sky (1887ms) What is Ursa Major? The radio source 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (The radio source, was, first called Ursa Major) -> The radio source (1889ms) What is Ursa Major? Artemis 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (Artemis, was celebrated as, Ursa Major) -> Artemis (1887ms) What is Ursa Major? the most prominent constellations 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (the most prominent constellations, would be, Ursa Major) -> the most prominent constellations (1883ms) What is Ursa Major? the 2:00 p.m. 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (the 2:00 p.m., Are, the Ursa Major Awards) -> the 2:00 p.m. (1886ms) What is Ursa Major? Libra 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (Libra, is, Ursa Major) -> Libra (1889ms) What is Ursa Major? the Big Dipper 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (the Big Dipper, is a part of, Ursa Major) -> the Big Dipper (1889ms) What is Ursa Major? the ?Big Dipper 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (the ?Big Dipper, is also known as, Ursa Major) -> the ?Big Dipper (1880ms) What is Ursa Major? Polaris 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (Polaris, are, Ursa Major) -> Polaris (1885ms) What is Ursa Major? Cancer 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (Cancer, is, URSA MAJOR) -> Cancer (1886ms) What is Ursa Major? the two most obvious 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (the two most obvious, are probably, Ursa Major) -> the two most obvious (1889ms) What is Ursa Major? 41 Lyn 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (41 Lyn, is part of, Ursa Major) -> 41 Lyn (1883ms) What is Ursa Major? the left 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (the left, are the stars of, Ursa Major) -> the left (1889ms) What is Ursa Major? ?Kevin & Kell ? 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (?Kevin & Kell ?, was given, the Ursa Major Award) -> ?Kevin & Kell ? (1885ms) What is Ursa Major? the Most noticeable 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (the Most noticeable, are the stars of, Ursa Major) -> the Most noticeable (1889ms) What is Ursa Major? The Big Dip 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (The Big Dip, is actually part of, the constellation Ursa Major) -> The Big Dip (1800ms) What is Ursa Major? the northern horizon 0.11111111111000002 What is Ursa Major? -> $x: (ursa major, be about, $x) -> (Ursa Major, can be seen somewhere about, the northern horizon) -> the northern horizon (1885ms) What is Ursa Major? The full constellation 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (The full constellation, actually is, Ursa Major) -> The full constellation (1883ms) What is Ursa Major? the masque 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (the masque, is, Ursa Major) -> the masque (1883ms) What is Ursa Major? The constellation containing IC 2574 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (The constellation containing IC 2574, is, Ursa Major) -> The constellation containing IC 2574 (1885ms) What is Ursa Major? High above Leo 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (High above Leo, is, the constellation Ursa Major) -> High above Leo (1746ms) What is Ursa Major? Trixie 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (Trixie, is, the Ursa Major) -> Trixie (1885ms) What is Ursa Major? the Bear 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (the Bear, is the constellation of, Ursa Major) -> the Bear (1883ms) What is Ursa Major? the Black Thunder mine 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (the Black Thunder mine, is, ?Ursa Major?) -> the Black Thunder mine (1883ms) What is Ursa Major? battle 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (battle, was between, Ursa Major and Andromeda) -> battle (1887ms) What is Ursa Major? the beautiful Goddess Artemis 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (the beautiful Goddess Artemis, is, Ursa Major) -> the beautiful Goddess Artemis (1800ms) What is Ursa Major? M?htyw 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (M?htyw, is, Ursa Major) -> M?htyw (1712ms) What is Ursa Major? 10 * children 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (10 * children, must be accompanied by, adult Ursa Major-- Star) -> 10 * children (1800ms) What is Ursa Major? The official name 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (The official name, is, Ursa Major) -> The official name (1881ms) What is Ursa Major? the stellar constellations 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (the stellar constellations, is, Ursa Major) -> the stellar constellations (1889ms) What is Ursa Major? the constellation 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (the constellation, is, Ursa Major) -> the constellation (1883ms) What is Ursa Major? the horizon 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (the horizon, will be, Ursa Major) -> the horizon (1800ms) What is Ursa Major? The hounds 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (The hounds, are pursuing, Ursa Major) -> The hounds (1881ms) What is Ursa Major? the photo 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (the photo, is named, Ursa Major) -> the photo (1883ms) What is Ursa Major? the northeast 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (the northeast, is, Ursa Major) -> the northeast (1887ms) What is Ursa Major? the Plough 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (the Plough, is even more widely known as, Ursa Major) -> the Plough (1887ms) What is Ursa Major? the zodiac 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (the zodiac, is, Ursa Major) -> the zodiac (1889ms) What is Ursa Major? Bootes 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (Bootes, is next to, Ursa Major) -> Bootes (1887ms) What is Ursa Major? the video image 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (the video image, is, Ursa Major) -> the video image (1887ms) What is Ursa Major? First Woman 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (First Woman, were, Ursa Major) -> First Woman (1880ms) What is Ursa Major? The nearest open cluster 0.11111111111000002 What is Ursa Major? -> $x: ($x, be be, ursa major) -> (The nearest open cluster, is, the Ursa Major cluster) -> The nearest open cluster (1883ms) What is Ursa Major? Marvel Universe -0.11111111111099997 What is Ursa Major? -> $x: (ursa major, in in, $x) -> (Ursa Major, Appears In These Fictional Universes, Marvel Universe) -> Marvel Universe (1891ms) What is Ursa Major? Authorities Concept Scheme -0.11111111111099997 What is Ursa Major? -> $x: (ursa major, in in, $x) -> (Ursa Major, In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (1892ms) What is Ursa Major? the center -0.11111111111099997 What is Ursa Major? -> $x: (ursa major, in in, $x) -> (Ursa Major, is rising in, the center) -> the center (1890ms) What is Ursa Major? glorious brightness overhead -0.11111111111099997 What is Ursa Major? -> $x: (ursa major, in in, $x) -> (Ursa Major, circled in, glorious brightness overhead) -> glorious brightness overhead (1890ms) What is Ursa Major? Geographic Names Concept Scheme -0.11111111111099997 What is Ursa Major? -> $x: (ursa major, in in, $x) -> (Ursa Major, In Scheme, Geographic Names Concept Scheme) -> Geographic Names Concept Scheme (1890ms) What is Ursa Major? Regulus -0.11111111111099997 What is Ursa Major? -> $x: (ursa major, in in, $x) -> (Ursa Major, was in, Regulus) -> Regulus (1892ms) What is Ursa Major? literature and art -0.11111111111099997 What is Ursa Major? -> $x: (ursa major, in in, $x) -> (Ursa Major, has featured in, literature and art) -> literature and art (1891ms) What is Ursa Major? the North -0.11111111111099997 What is Ursa Major? -> $x: (ursa major, in in, $x) -> (Ursa Major, is high in, the North) -> the North (1889ms) What is Ursa Major? The negative attention -0.11111111111099997 What is Ursa Major? -> $x: ($x, get, ursa major) -> (The negative attention, had gotten a lot worse after, Ursa Major) -> The negative attention (1891ms) What is Ursa Major? the fall -0.11111111111099997 What is Ursa Major? -> $x: (ursa major, in in, $x) -> (the constellation Ursa Major, sets in, the fall) -> the fall (1890ms) What is Ursa Major? binoculars -0.11111111111099997 What is Ursa Major? -> $x: (ursa major, in in, $x) -> (Ursa Major, are very possible to see in, binoculars) -> binoculars (1890ms) What is Ursa Major? accordance -0.11111111111099997 What is Ursa Major? -> $x: (ursa major, in in, $x) -> (Cygnus and Ursa Major, is quite in, accordance) -> accordance (1892ms) What is Ursa Major? 1974 -0.11111111111099997 What is Ursa Major? -> $x: (ursa major, in in, $x) -> (Ursa Major, was adopted in, 1974) -> 1974 (1890ms) What is Ursa Major? late degrees -0.11111111111099997 What is Ursa Major? -> $x: (ursa major, in in, $x) -> (Ursa Major, were in, late degrees) -> late degrees (1891ms) What is Ursa Major? January -0.11111111111099997 What is Ursa Major? -> $x: (ursa major, in in, $x) -> (the next Ursa Major Awards, open in, January) -> January (1891ms) What is Ursa Major? the northern hemisphere -0.11111111111099997 What is Ursa Major? -> $x: (ursa major, in in, $x) -> (Ursa Major, can be seen in, the northern hemisphere) -> the northern hemisphere (1890ms) What is Ursa Major? the sky -0.11111111111099997 What is Ursa Major? -> $x: (ursa major, in in, $x) -> (Ursa Major, is low in, the sky) -> the sky (1892ms) What is Ursa Major? two months -0.11111111111099997 What is Ursa Major? -> $x: (ursa major, in in, $x) -> (the Ursa Major Awards, closes in, two months) -> two months (1890ms) What is Ursa Major? the north -0.11111111111099997 What is Ursa Major? -> $x: (ursa major, in in, $x) -> (Ursa Major, is almost overhead in, the north) -> the north (1892ms) What is Ursa Major? 28 years -0.666666666667 What is Ursa Major? -> $x: (ursa major, be have, $x) -> (parents Ursa Major, would have been, 28 years) -> 28 years (1894ms) What is peyote? The pendant -0.0 What is peyote? -> $x: ($x, in, peyote) -> (The pendant, is done in, peyote stitch) -> The pendant (1056ms) What is peyote? The beadwork -0.0 What is peyote? -> $x: ($x, in, peyote) -> (The beadwork, is done in Even, Count Tubular Peyote Stitch) -> The beadwork (1056ms) What is peyote? The flowers and leaves -0.0 What is peyote? -> $x: ($x, in, peyote) -> (The flowers and leaves, are done in, peyote stitch) -> The flowers and leaves (1533ms) What is peyote? The self-toggle -0.0 What is peyote? -> $x: ($x, in, peyote) -> (The self-toggle, is beaded in, peyote stitch) -> The self-toggle (1373ms) What is peyote? Castaneda -0.0 What is peyote? -> $x: ($x, in, peyote) -> (Castaneda, was specifically interested in, peyote) -> Castaneda (1056ms) What is peyote? full article Feds -0.0 What is peyote? -> $x: ($x, in, peyote) -> (full article Feds, may weigh in on, peyote case) -> full article Feds (935ms) What is peyote? bracelets -0.0 What is peyote? -> $x: ($x, in, peyote) -> (bracelets, are done in, Odd Count Flat Peyote) -> bracelets (1373ms) What is peyote? Classes -0.0 What is peyote? -> $x: ($x, in, peyote) -> (Classes, offered in, peyote) -> Classes (935ms) What is peyote? Native Americans -0.0 What is peyote? -> $x: ($x, in, peyote) -> (Native Americans, are involved in, the peyote cult) -> Native Americans (1056ms) What is peyote? the Catholic church -0.0 What is peyote? -> $x: ($x, in, peyote) -> (the Catholic church, found in, peyote) -> the Catholic church (996ms) What is peyote? Amulet Bags -0.0 What is peyote? -> $x: ($x, in, peyote) -> (Amulet Bags, are done in, an Even count Tubular Peyote) -> Amulet Bags (1574ms) What is peyote? The mescaline -0.0 What is peyote? -> $x: ($x, in, peyote) -> (The mescaline, is a substance contained in, peyote) -> The mescaline (935ms) What is peyote? mescaline -0.0 What is peyote? -> $x: ($x, in, peyote) -> (mescaline, was the active chemical in, the peyote cactus) -> mescaline (995ms) What is peyote? the hippie -0.0 What is peyote? -> $x: ($x, in, peyote) -> (the hippie, was in, a comatose peyote stare) -> the hippie (1056ms) What is peyote? The ends -0.0 What is peyote? -> $x: ($x, in, peyote) -> (The ends, have been handbeaded in, peyote stitch) -> The ends (935ms) What is peyote? plants -0.0 What is peyote? -> $x: ($x, in, peyote) -> (plants, used in, the peyote ceremony) -> plants (1533ms) What is peyote? the Native Americans -0.0 What is peyote? -> $x: ($x, in, peyote) -> (the Native Americans, believe in using, Peyote) -> the Native Americans (1373ms) What is peyote? The end caps -0.0 What is peyote? -> $x: ($x, in, peyote) -> (The end caps, are worked in, peyote stitch) -> The end caps (1373ms) What is peyote? a psychedelic phenethylamine -0.0 What is peyote? -> $x: ($x, in, peyote) -> (a psychedelic phenethylamine, found in, peyote) -> a psychedelic phenethylamine (1574ms) What is peyote? Beauty -0.0 What is peyote? -> $x: ($x, in, peyote) -> (Beauty, is found in, the all-night peyote ceremonies) -> Beauty (1373ms) What is peyote? the alkaloid -0.0 What is peyote? -> $x: ($x, in, peyote) -> (the alkaloid, found in, peyote) -> the alkaloid (1533ms) What is peyote? Patterns -0.0 What is peyote? -> $x: ($x, in, peyote) -> (Patterns, are worked in Even, Count Tubular Peyote Stitch) -> Patterns (996ms) What is peyote? Easter Egg earrings -0.0 What is peyote? -> $x: ($x, in, peyote) -> (Easter Egg earrings, are weaved in, flat vertical peyote) -> Easter Egg earrings (1574ms) What is peyote? Mescaline -0.0 What is peyote? -> $x: ($x, in, peyote) -> (Mescaline, is found in, the Peyote Cacti) -> Mescaline (1056ms) What is peyote? the hallucinogen -0.0 What is peyote? -> $x: ($x, in, peyote) -> (the hallucinogen, found in, peyote) -> the hallucinogen (935ms) What is peyote? The pawprint -0.0 What is peyote? -> $x: ($x, in, peyote) -> (The pawprint, was done in, two-drop peyote stitch) -> The pawprint (1373ms) What is peyote? The beadwork set -0.0 What is peyote? -> $x: ($x, in, peyote) -> (The beadwork set, is done in, Peyote or Comanche beadwork) -> The beadwork set (1534ms) What is peyote? Students -0.0 What is peyote? -> $x: ($x, in, peyote) -> (Students, must be proficient in, Peyote stitch) -> Students (1056ms) What is peyote? The beaded bail -0.0 What is peyote? -> $x: ($x, in, peyote) -> (The beaded bail, was crafted in, peyote) -> The beaded bail (1533ms) What is peyote? the psychedelic compound -0.0 What is peyote? -> $x: ($x, in, peyote) -> (the psychedelic compound, found in, the peyote cactus) -> the psychedelic compound (1373ms) What is peyote? The amulet bag -0.0 What is peyote? -> $x: ($x, in, peyote) -> (The amulet bag, is done in, a peyote stitch) -> The amulet bag (1373ms) What is peyote? The N-acetyl analogue -0.0 What is peyote? -> $x: ($x, in, peyote) -> (The N-acetyl analogue, has been found in, the peyote plant) -> The N-acetyl analogue (1533ms) What is peyote? a psychoactive compound -0.0 What is peyote? -> $x: ($x, in, peyote) -> (a psychoactive compound, found in, peyote cactus) -> a psychoactive compound (1534ms) What is peyote? a hallucinogen -0.0 What is peyote? -> $x: ($x, in, peyote) -> (a hallucinogen, found in, peyote) -> a hallucinogen (1574ms) What is peyote? the mescaline -0.0 What is peyote? -> $x: ($x, in, peyote) -> (the mescaline, found in, peyote) -> the mescaline (996ms) What is peyote? the Native American Church right -0.0 What is peyote? -> $x: ($x, in, peyote) -> (the Native American Church right, believe in using, Peyote) -> the Native American Church right (996ms) What is peyote? The strap -0.0 What is peyote? -> $x: ($x, in, peyote) -> (The strap, is done in, peyote stitch) -> The strap (995ms) What is peyote? the active chemical -0.0 What is peyote? -> $x: ($x, in, peyote) -> (the active chemical, found in, the Peyote cactus) -> the active chemical (935ms) What is peyote? an Easter Egg -0.0 What is peyote? -> $x: ($x, in, peyote) -> (an Easter Egg, is weaved in, flat vertical peyote) -> an Easter Egg (1533ms) What is peyote? a ritual setting -0.111111111111 What is peyote? -> $x: (peyote, do, $x) -> (peyote, is done in, a ritual setting) -> a ritual setting (1574ms) What is peyote? the manners -0.111111111111 What is peyote? -> $x: ($x, describe, peyote) -> (the manners, described for, peyote) -> the manners (1574ms) What is peyote? an outstanding job -0.111111111111 What is peyote? -> $x: (peyote, do, $x) -> (Los Peyotes, truly do, an outstanding job) -> an outstanding job (1574ms) What is peyote? vomitting -0.111111111111 What is peyote? -> $x: (peyote, do, $x) -> (Peyote, does does cause, vomitting) -> vomitting (1574ms) What is peyote? the switchplate covers -0.111111111112 What is peyote? -> $x: (peyote, be for, $x) -> (Odd Count Flat Peyote, is used for, the switchplate covers) -> the switchplate covers (2047ms) What is peyote? Beadwork -0.111111111112 What is peyote? -> $x: ($x, do, peyote) -> (Beadwork, do include, Peyote Beadwork Designs) -> Beadwork (1889ms) What is peyote? Dr. Hoffman -0.111111111112 What is peyote? -> $x: ($x, do, peyote) -> (Dr. Hoffman, was doing a lot of, peyote) -> Dr. Hoffman (2047ms) What is peyote? use -0.111111111112 What is peyote? -> $x: (peyote, be for, $x) -> (the peyote, is intended for, use) -> use (1934ms) What is peyote? a six bead start -0.111111111112 What is peyote? -> $x: (peyote, be for, $x) -> (My flat round peyote graph, is for, a six bead start) -> a six bead start (1934ms) What is peyote? Nancy -0.111111111112 What is peyote? -> $x: ($x, do, peyote) -> (Nancy, does, peyote) -> Nancy (1889ms) What is peyote? thousands -0.111111111112 What is peyote? -> $x: (peyote, be for, $x) -> (Peyote, has been used for, thousands) -> thousands (2047ms) What is peyote? social purposes -0.111111111112 What is peyote? -> $x: (peyote, be for, $x) -> (peyote, may now be used for, social purposes) -> social purposes (1889ms) What is peyote? a long time -0.111111111112 What is peyote? -> $x: (peyote, be for, $x) -> (The peyote cactus, has been used for, a long time) -> a long time (1785ms) What is peyote? NAC -0.111111111112 What is peyote? -> $x: (peyote, be for, $x) -> (peyote, can be legally harvested for, NAC) -> NAC (2047ms) What is peyote? the Native American Church -0.111111111112 What is peyote? -> $x: (peyote, be for, $x) -> (peyote, is legal for, the Native American Church) -> the Native American Church (1837ms) What is peyote? each person -0.111111111112 What is peyote? -> $x: (peyote, be for, $x) -> (Peyote, is optional for, each person) -> each person (2047ms) What is peyote? Oregon -0.111111111112 What is peyote? -> $x: ($x, do, peyote) -> (Oregon, does prohibit, the religious use of peyote) -> Oregon (1785ms) What is peyote? 10,000 years -0.111111111112 What is peyote? -> $x: (peyote, be for, $x) -> (Peyote, has been used for over, 10,000 years) -> 10,000 years (2047ms) What is peyote? rel=shortlink -0.111111111112 What is peyote? -> $x: ($x, do, peyote) -> (rel=shortlink, Keep doing, peyote stitch) -> rel=shortlink (1934ms) What is peyote? mental clarity -0.111111111112 What is peyote? -> $x: ($x, do, peyote) -> (mental clarity, does n?t come from taking, peyote) -> mental clarity (1785ms) What is peyote? divination -0.111111111112 What is peyote? -> $x: (peyote, be for, $x) -> (peyote, has been used for, divination) -> divination (1889ms) What is peyote? any time -0.111111111112 What is peyote? -> $x: (peyote, be for, $x) -> (More Peyote, may be called for at, any time) -> any time (1837ms) What is peyote? the tribal members -0.111111111112 What is peyote? -> $x: ($x, do, peyote) -> (the tribal members, do, peyote) -> the tribal members (1837ms) What is peyote? centuries -0.111111111112 What is peyote? -> $x: (peyote, be for, $x) -> (Peyote, has been used for, centuries) -> centuries (1837ms) What is peyote? trouble?unless -0.111111111112 What is peyote? -> $x: (peyote, be for, $x) -> (peyote stitchers, is asking for, trouble?unless) -> trouble?unless (1889ms) What is peyote? The Cuff -0.111111111112 What is peyote? -> $x: ($x, do, peyote) -> (The Cuff, is done with, Flat Peyote Stitch) -> The Cuff (1785ms) What is peyote? MCF7 -0.111111111112 What is peyote? -> $x: (peyote, be for, $x) -> (Peyote extracts, were toxic for, MCF7) -> MCF7 (1837ms) What is peyote? alcoholism -0.111111111112 What is peyote? -> $x: (peyote, be for, $x) -> (peyote, could be an effective treatment for, alcoholism) -> alcoholism (2047ms) What is peyote? added height and delight -0.111111111112 What is peyote? -> $x: (peyote, be for, $x) -> (peyote, was consumed for, added height and delight) -> added height and delight (1934ms) What is peyote? an adult -0.111111111112 What is peyote? -> $x: (peyote, be for, $x) -> (the peyote plant, is a normal dose for, an adult) -> an adult (1889ms) What is peyote? a very few kinds -0.111111111112 What is peyote? -> $x: (peyote, be for, $x) -> (Peyote, is allowed for just, a very few kinds) -> a very few kinds (1785ms) What is peyote? Omer -0.111111111112 What is peyote? -> $x: ($x, do, peyote) -> (Omer, did, his peyote song) -> Omer (2047ms) What is peyote? religious purposes -0.111111111112 What is peyote? -> $x: (peyote, be for, $x) -> (Peyote buttons, were chewed for, religious purposes) -> religious purposes (1837ms) What is peyote? American Indians -0.111111111112 What is peyote? -> $x: (peyote, be for, $x) -> (peyote, should be reserved for, American Indians) -> American Indians (1934ms) What is peyote? The chain -0.222222222222 What is peyote? -> $x: ($x, create, peyote) -> (The chain, is created with, peyote stitch links) -> The chain (2088ms) What is peyote? the legislature -0.222222222222 What is peyote? -> $x: ($x, create, peyote) -> (the legislature, created, the peyote exemption) -> the legislature (2088ms) What is peyote? officers -0.222222222222 What is peyote? -> $x: ($x, found, peyote) -> (officers, found about, 12000 peyote buttons) -> officers (2088ms) What is peyote? The bag -0.222222222222 What is peyote? -> $x: ($x, create, peyote) -> (The bag, was created using, the peyote technique) -> The bag (2088ms) What is peyote? the legend -0.222222222222 What is peyote? -> $x: ($x, found, peyote) -> (the legend, found, the peyote) -> the legend (2088ms) What is peyote? tenure -0.222222222222 What is peyote? -> $x: ($x, found, peyote) -> (tenure, is found dead from, a peyote overdose) -> tenure (2088ms) What is peyote? Darcy Horn -0.222222222222 What is peyote? -> $x: ($x, create, peyote) -> (Darcy Horn, created, a freeform peyote bracelet) -> Darcy Horn (2088ms) What is peyote? The shapes -0.222222222222 What is peyote? -> $x: ($x, create, peyote) -> (The shapes, are created with, peyote stitch and cylinder beads) -> The shapes (2088ms) What is peyote? The cuff -0.222222222222 What is peyote? -> $x: ($x, create, peyote) -> (The cuff, is created using, flat peyote stiche) -> The cuff (2088ms) What is peyote? The Cellini spiral -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (The Cellini spiral, is a modified version of, tubular peyote) -> The Cellini spiral (2119ms) What is peyote? veterinarian-husband -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (veterinarian-husband, is poisoned with, peyote) -> veterinarian-husband (2128ms) What is peyote? particularly their religion -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (particularly their religion, was centered around, Peyote) -> particularly their religion (2099ms) What is peyote? the leaves -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (the leaves, are made with, peyote stitch) -> the leaves (2099ms) What is peyote? The article -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (The article, had been about, peyote) -> The article (2114ms) What is peyote? whites -0.222222222223 What is peyote? -> $x: ($x, can, peyote) -> (whites, can use, peyote) -> whites (2114ms) What is peyote? One such example -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (One such example, would be the legal use of, peyote) -> One such example (2104ms) What is peyote? the story -0.222222222223 What is peyote? -> $x: ($x, be to, peyote) -> (the story, to have been written during, a peyote trip) -> the story (2128ms) What is peyote? loom bead weaving -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (loom bead weaving, is, Peyote Stitch) -> loom bead weaving (2124ms) What is peyote? seers -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (seers, were induced by, peyote) -> seers (2124ms) What is peyote? different patterns -0.222222222223 What is peyote? -> $x: ($x, can, peyote) -> (different patterns, can be made out of, peyote stitches) -> different patterns (2099ms) What is peyote? the bear wrestling competition -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (the bear wrestling competition, were, Peyote Pete) -> the bear wrestling competition (2104ms) What is peyote? stitches -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (stitches, were used such as, peyote) -> stitches (2124ms) What is peyote? issue -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (issue, was the ingestion of, peyote) -> issue (2124ms) What is peyote? the latter -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (the latter, is subbing for, peyote) -> the latter (2104ms) What is peyote? The body -0.222222222223 What is peyote? -> $x: ($x, consist of, peyote) -> (The body, consists of, a simple round peyote stitch) -> The body (2094ms) What is peyote? The drug -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (The drug, is known locally as, Peyote) -> The drug (2114ms) What is peyote? great importance -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (great importance, is still employed, ....? Peyote) -> great importance (2133ms) What is peyote? Ligusticum porteri -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (Ligusticum porteri, is called, Peyote) -> Ligusticum porteri (2124ms) What is peyote? the artists -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (the artists, are inspired by, peyote) -> the artists (2124ms) What is peyote? The large hill -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (The large hill, was a hill of, Peyote) -> The large hill (2114ms) What is peyote? Examples -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (Examples, are, Basic Peyote) -> Examples (2104ms) What is peyote? Peyotists -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (Peyotists, are endearingly called, " Peyote boys) -> Peyotists (2099ms) What is peyote? the Bible -0.222222222223 What is peyote? -> $x: ($x, be to, peyote) -> (the Bible, is set next to, the Peyote sacrament and holy altar) -> the Bible (2128ms) What is peyote? a Star Cactus -0.222222222223 What is peyote? -> $x: ($x, be to, peyote) -> (a Star Cactus, is directly related to, the Peyote cactus) -> a Star Cactus (2133ms) What is peyote? the most -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (the most, is, peyote stitch) -> the most (2114ms) What is peyote? Prem Das -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (Prem Das, had been an avid student of, peyote) -> Prem Das (2133ms) What is peyote? Quanah -0.222222222223 What is peyote? -> $x: ($x, be to, peyote) -> (Quanah, was introduced to, the peyote rite) -> Quanah (2119ms) What is peyote? the military -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (the military, were barred from using, peyote) -> the military (2124ms) What is peyote? questions -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (questions, is, Peyote) -> questions (2104ms) What is peyote? C13 -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (C13, was tripping on, peyote) -> C13 (2119ms) What is peyote? Christianity -0.222222222223 What is peyote? -> $x: ($x, influence, peyote) -> (Christianity, has influenced, the pre-Columbian Peyote religion) -> Christianity (2114ms) What is peyote? dreadlocks -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (dreadlocks, are, peyote satiates) -> dreadlocks (2104ms) What is peyote? Indians -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (Indians, should be permitted to use, Peyote) -> Indians (2128ms) What is peyote? Harvard Medical School -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (Harvard Medical School, is an expert on, peyote) -> Harvard Medical School (2094ms) What is peyote? Bolo cord -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (Bolo cord, is white intertwined nylon with, peyote) -> Bolo cord (2109ms) What is peyote? Festival day -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (Festival day, were, Peyote Patty) -> Festival day (2128ms) What is peyote? The outer beadwork -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (The outer beadwork, is, peyote stitch) -> The outer beadwork (2119ms) What is peyote? the first person -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (the first person, was given, peyote) -> the first person (2109ms) What is peyote? Whalen -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (Whalen, was experimenting with, peyote) -> Whalen (2133ms) What is peyote? The accent -0.222222222223 What is peyote? -> $x: ($x, can, peyote) -> (The accent, can be threaded with, the matching peyote tube) -> The accent (2099ms) What is peyote? a quill -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (a quill, is, peyote stitch) -> a quill (2133ms) What is peyote? MVPs -0.222222222223 What is peyote? -> $x: ($x, be to, peyote) -> (MVPs, were named to, Rat City ?s Wile E. Peyote) -> MVPs (2094ms) What is peyote? The main stitch -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (The main stitch, is, Tubular Peyote) -> The main stitch (2133ms) What is peyote? square -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (square, was on, peyote) -> square (2133ms) What is peyote? Citrus candies -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (Citrus candies, are loaded with, peyote) -> Citrus candies (2094ms) What is peyote? the church -0.222222222223 What is peyote? -> $x: ($x, can, peyote) -> (the church, can use, peyote) -> the church (2109ms) What is peyote? Prerequisite -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (Prerequisite, Must be proficient with, peyote) -> Prerequisite (2109ms) What is peyote? The hills -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (The hills, are covered with, peyote) -> The hills (2104ms) What is peyote? sure i -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (sure i, was on, peyote) -> sure i (2129ms) What is peyote? William -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (William, is on, peyote) -> William (2099ms) What is peyote? rituals -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (rituals, was outlawed, peyote) -> rituals (2104ms) What is peyote? the meetings -0.222222222223 What is peyote? -> $x: ($x, be to, peyote) -> (the meetings, were ascribed to, the peyote) -> the meetings (2093ms) What is peyote? Chris Prussing -0.222222222223 What is peyote? -> $x: ($x, be to, peyote) -> (Chris Prussing, was inspired to try, peyote) -> Chris Prussing (2109ms) What is peyote? Delica beads -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (Delica beads, are used widely for, peyote stitch) -> Delica beads (2094ms) What is peyote? tonight -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (tonight, is, Peyote Cody) -> tonight (2124ms) What is peyote? the most common -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (the most common, are, the peyote) -> the most common (2109ms) What is peyote? The Huichol Deer Dance -0.222222222223 What is peyote? -> $x: ($x, be to, peyote) -> (The Huichol Deer Dance, is tied to, the peyote?a vision-inducing) -> The Huichol Deer Dance (2119ms) What is peyote? Psychedelic kinds -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (Psychedelic kinds, are, Peyote) -> Psychedelic kinds (2119ms) What is peyote? a person -0.222222222223 What is peyote? -> $x: ($x, be to, peyote) -> (a person, is drawn to, the Peyote religion) -> a person (2133ms) What is peyote? Christ -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (Christ, is the Goddess of, peyote) -> Christ (2114ms) What is peyote? The strips -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (The strips, are, Peyote) -> The strips (2109ms) What is peyote? Design -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (Design, is stitched using, circular peyote) -> Design (2114ms) What is peyote? the 1870 -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (the 1870, have been relying on, peyote) -> the 1870 (2114ms) What is peyote? Parker -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (Parker, was given, peyote) -> Parker (2119ms) What is peyote? The most popular -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (The most popular, are, peyote stitch) -> The most popular (2099ms) What is peyote? The bead work -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (The bead work, is woven using, the peyote) -> The bead work (2133ms) What is peyote? the more well known ones -0.222222222223 What is peyote? -> $x: ($x, be be, peyote) -> (the more well known ones, are, Peyote) -> the more well known ones (2133ms) What is peyote? The ceremonies -0.333333333333 What is peyote? -> $x: ($x, develop, peyote) -> (The ceremonies, have developed around, peyote use) -> The ceremonies (2137ms) What is peyote? pot or cocaine -0.333333333334 What is peyote? -> $x: ($x, could be, peyote) -> (pot or cocaine, could actually be on, a month-long Peyote binge) -> pot or cocaine (2137ms) What is peyote? crevices -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (west Texas peyote, has even been found growing in, crevices) -> crevices (2140ms) What is peyote? the Plains tribes -0.444444444444 What is peyote? -> $x: ($x, get, peyote) -> (the Plains tribes, got, peyote) -> the Plains tribes (2144ms) What is peyote? ceremonies -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (peyote, was widely used in, ceremonies) -> ceremonies (2153ms) What is peyote? western Nevada -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (no Peyote meetings, were held in, western Nevada) -> western Nevada (2137ms) What is peyote? place -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (The peyote exception, has been in, place) -> place (2150ms) What is peyote? the TransPecos -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (peyote fields, were more abundant there than in, the TransPecos) -> the TransPecos (2144ms) What is peyote? Authorities Concept Scheme -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (Peyote, In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (2150ms) What is peyote? Aztec rituals -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (the Peyote Cacti, were used in, Aztec rituals) -> Aztec rituals (2144ms) What is peyote? Nevada -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (Peyote, may have been important in, Nevada) -> Nevada (2150ms) What is peyote? parts -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (Peyote, is grown in, parts) -> parts (2150ms) What is peyote? five states -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (Non-Indian Peyote use, is protected in, five states) -> five states (2141ms) What is peyote? the channel -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (The peyote strip, will sit in, the channel) -> the channel (2137ms) What is peyote? the memo -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (Peyote, appeared several times in, the memo) -> the memo (2147ms) What is peyote? detail -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (some flat peyote stitch, are covered in, detail) -> detail (2147ms) What is peyote? native religions -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (Peyote, firmly established in, native religions) -> native religions (2137ms) What is peyote? certain religious ceremonies -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (peyote, are used in, certain religious ceremonies) -> certain religious ceremonies (2153ms) What is peyote? Rock -0.444444444444 What is peyote? -> $x: ($x, get, peyote) -> (Rock, get your money 's worth out of, that peyote) -> Rock (2141ms) What is peyote? the religion -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (peyote and eagle, are the seminal players in, the religion) -> the religion (2150ms) What is peyote? the hot , dry climate -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (peyote, will only grow in, the hot , dry climate) -> the hot , dry climate (2150ms) What is peyote? jeopardy -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (Peyote, is in, jeopardy) -> jeopardy (2153ms) What is peyote? widespread use -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (peyote, was in, widespread use) -> widespread use (2144ms) What is peyote? jail -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> ('s peyote garden, could put her in, jail) -> jail (2153ms) What is peyote? the United States -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (peyote, grows in, the United States) -> the United States (2153ms) What is peyote? a formal , ceremonial way -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (Peyote, was always used in, a formal , ceremonial way) -> a formal , ceremonial way (2144ms) What is peyote? Redmond -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (peyote, was secretly legal in, Redmond) -> Redmond (2137ms) What is peyote? Native American religious rituals -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (Peyote, is common in, Native American religious rituals) -> Native American religious rituals (2137ms) What is peyote? flowers -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (peyote, are found in, flowers) -> flowers (2147ms) What is peyote? rows -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (Peyote cacti, are suspended in, rows) -> rows (2141ms) What is peyote? quest -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (peyote, is utilized in, quest) -> quest (2153ms) What is peyote? religious ceremonies -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (drug , peyote, is used in, religious ceremonies) -> religious ceremonies (2153ms) What is peyote? American Indian culture -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (peyote, plays a major role in, American Indian culture) -> American Indian culture (2153ms) What is peyote? the same manner -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (?Two-drop? peyote stitch, is worked in, the same manner) -> the same manner (2153ms) What is peyote? a band -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (peyote, stitched in, a band) -> a band (2141ms) What is peyote? Schedule 1 -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (Peyote, is also listed in, Schedule 1) -> Schedule 1 (2137ms) What is peyote? the 1970s -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (peyote, was spawned in, the 1970s) -> the 1970s (2150ms) What is peyote? Mexico border towns -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (Peyote, is nowhere to be found in, Mexico border towns) -> Mexico border towns (2137ms) What is peyote? the CSA -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (Both peyote and mescaline, are listed in, the CSA) -> the CSA (2153ms) What is peyote? Egyptian artifacts -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (The peyote stitch, can be seen in, Egyptian artifacts) -> Egyptian artifacts (2153ms) What is peyote? the southwestern U.S. and Mexico -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (The peyote cactus, grows in, the southwestern U.S. and Mexico) -> the southwestern U.S. and Mexico (2144ms) What is peyote? yarn paintings -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (peyote rituals, are recorded in, yarn paintings) -> yarn paintings (2147ms) What is peyote? Carol Wilcox Well?s -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (the twisted peyote spiral, was in, Carol Wilcox Well?s) -> Carol Wilcox Well?s (2141ms) What is peyote? settings -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (LSD and peyote, are obtained in, settings) -> settings (2141ms) What is peyote? the wider context -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (The peyote complex, is expertly set in, the wider context) -> the wider context (2150ms) What is peyote? Texas -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (Peyote, grows naturally in, Texas) -> Texas (2147ms) What is peyote? a pot or crock -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (The ground-up Peyote, is kept in, a pot or crock) -> a pot or crock (2150ms) What is peyote? the victim -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (peyote, are found in, the victim) -> the victim (2144ms) What is peyote? writings -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (his peyote experiences, have been printed in, writings) -> writings (2141ms) What is peyote? San Francisco -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (the Peyote case, recalled in, San Francisco) -> San Francisco (2144ms) What is peyote? Curtis -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (peyote, appeared in, Curtis) -> Curtis (2147ms) What is peyote? an alleged abridgment -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (peyote, resulted in, an alleged abridgment) -> an alleged abridgment (2141ms) What is peyote? the field -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (peyote, were collected in, the field) -> the field (2147ms) What is peyote? the desert -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (peyote, hung out in, the desert) -> the desert (2153ms) What is peyote? Topical Terms Concept Scheme -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (Peyote, In Scheme, Topical Terms Concept Scheme) -> Topical Terms Concept Scheme (2153ms) What is peyote? the province -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (the Native Indians Peyote, was utilized in, the province) -> the province (2147ms) What is peyote? Indian ceremonies -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (peyote, ought be allowed in, Indian ceremonies) -> Indian ceremonies (2150ms) What is peyote? a limited area -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (The peyote cactus, grows in, a limited area) -> a limited area (2150ms) What is peyote? Mexico -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (Peyote, grows in, Mexico) -> Mexico (2141ms) What is peyote? danger -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (the peyote, is increasingly in, danger) -> danger (2147ms) What is peyote? prescribed ways -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (Peyote, is used in, prescribed ways) -> prescribed ways (2141ms) What is peyote? fabulous Palm Springs -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (their new collection Peyote Poem, shot in, fabulous Palm Springs) -> fabulous Palm Springs (2150ms) What is peyote? Tony -0.444444444444 What is peyote? -> $x: ($x, get, peyote) -> (Tony, gets high on, Peyote) -> Tony (2144ms) What is peyote? spiritual ceremonies -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (Peyote, is used in, spiritual ceremonies) -> spiritual ceremonies (2147ms) What is peyote? February 1917 -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (Peyote, was outlawed also in, February 1917) -> February 1917 (2147ms) What is peyote? a hundred species -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (the peyote cactus, found in over, a hundred species) -> a hundred species (2147ms) What is peyote? industrial society -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (Peyote, became known in, industrial society) -> industrial society (2147ms) What is peyote? aperture number -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (Peyote pollen, varies greatly in, aperture number) -> aperture number (2147ms) What is peyote? least five different genera -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (peyote, had been included in at, least five different genera) -> least five different genera (2144ms) What is peyote? the saloon bar -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (peyote shamen, make an appearance in, the saloon bar) -> the saloon bar (2144ms) What is peyote? the playlists -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (The Peyote Kings, show up in, the playlists) -> the playlists (2144ms) What is peyote? the wild -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (Peyote, is mostly harvested in, the wild) -> the wild (2140ms) What is peyote? one area -0.444444444444 What is peyote? -> $x: (peyote, in in, $x) -> (Peyote, grows wild in, one area) -> one area (2137ms) What is peyote? a ritual -0.444444444445 What is peyote? -> $x: ($x, involve, peyote) -> (a ritual, involving, peyote) -> a ritual (2155ms) What is peyote? One case -0.444444444445 What is peyote? -> $x: ($x, involve, peyote) -> (One case, should involve, peyote bans) -> One case (2155ms) What is peyote? The 86-page book -0.666666666667 What is peyote? -> $x: ($x, contain, peyote) -> (The 86-page book, contains instructions for, flat peyote stitch) -> The 86-page book (2155ms) What is peyote? medicine -0.666666666667 What is peyote? -> $x: ($x, contain, peyote) -> (medicine, contains, peyote alkaloids) -> medicine (2155ms) What is peyote? the native peoples -1.0 What is peyote? -> $x: (peyote, be have, $x) -> (Peyote, has been used ceremonially by, the native peoples) -> the native peoples (2161ms) What is peyote? a resounding success -1.0 What is peyote? -> $x: (peyote, be have, $x) -> (Our peyote experiments, have been, a resounding success) -> a resounding success (2168ms) What is peyote? the religious rituals -1.0 What is peyote? -> $x: (peyote, be have, $x) -> (peyote, has been a part of, the religious rituals) -> the religious rituals (2158ms) What is peyote? a spiritual medicine -1.0 What is peyote? -> $x: (peyote, be have, $x) -> (Peyote, has been used ceremonially as, a spiritual medicine) -> a spiritual medicine (2161ms) What is peyote? 500 B.C. -1.0 What is peyote? -> $x: (peyote, be have, $x) -> (Peyote, have been found dating back to, 500 B.C.) -> 500 B.C. (2167ms) What is peyote? a lifeline -1.0 What is peyote? -> $x: (peyote, be have, $x) -> (The peyote religion, has been, a lifeline) -> a lifeline (2161ms) What is peyote? a source -1.0 What is peyote? -> $x: (peyote, be have, $x) -> (Peyote, has been used as, a source) -> a source (2157ms) What is peyote? the Indians -1.0 What is peyote? -> $x: (peyote, be have, $x) -> (The peyote cactus, has long been used by, the Indians) -> the Indians (2163ms) What is peyote? a treatment -1.0 What is peyote? -> $x: (peyote, be have, $x) -> (Healing Alcoholism Peyote, has been used as, a treatment) -> a treatment (2160ms) What is peyote? long as inhabitants -1.0 What is peyote? -> $x: (peyote, be have, $x) -> (Peyote Peyote, has been around as, long as inhabitants) -> long as inhabitants (2169ms) What is peyote? medicine men -1.0 What is peyote? -> $x: (peyote, be have, $x) -> (Peyote, has been used by, medicine men) -> medicine men (2158ms) What is peyote? the reservation -1.0 What is peyote? -> $x: (peyote, be have, $x) -> (peyote, have been recently brought into, the reservation) -> the reservation (2163ms) What is peyote? natives -1.0 What is peyote? -> $x: (peyote, be have, $x) -> (Peyote, has been used by, natives) -> natives (2160ms) What is peyote? indigenous peoples -1.0 What is peyote? -> $x: (peyote, be have, $x) -> (peyote, has been used by, indigenous peoples) -> indigenous peoples (2165ms) What is peyote? the effects -1.0 What is peyote? -> $x: (peyote, be have, $x) -> (the peyote group, might have been due to, the effects) -> the effects (2168ms) What is peyote? laws -1.0 What is peyote? -> $x: (peyote, be have, $x) -> (the Peyote Religion, has been suppressed by, laws) -> laws (2161ms) What is peyote? the month -1.0 What is peyote? -> $x: (peyote, be have, $x) -> (Coyote Peyote, has been the find of, the month) -> the month (2160ms) What is peyote? dream-like -1.0 What is peyote? -> $x: (peyote, be have, $x) -> (Peyote, have been described as very, dream-like) -> dream-like (2169ms) What is peyote? a part of traditional religious rites -1.0 What is peyote? -> $x: (peyote, be have, $x) -> (Peyote, has been used as, a part of traditional religious rites) -> a part of traditional religious rites (2161ms) What is peyote? SAI -1.0 What is peyote? -> $x: ($x, favor, peyote) -> (SAI, favored, peyote usage) -> SAI (2165ms) What is peyote? religious rights -1.0 What is peyote? -> $x: (peyote, be have, $x) -> (Hairstyles and peyote, have been blessed as, religious rights) -> religious rights (2155ms) What is peyote? commerce -1.0 What is peyote? -> $x: (peyote, be have, $x) -> (Peyote, has been an item of, commerce) -> commerce (2169ms) What is peyote? a controversial plant -1.0 What is peyote? -> $x: (peyote, be have, $x) -> (Peyote, has been, a controversial plant) -> a controversial plant (2160ms) What is peyote? 7000 years -1.0 What is peyote? -> $x: (peyote, be have, $x) -> (dried peyote, has been dated at approximately, 7000 years) -> 7000 years (2160ms) What is peyote? psychedelics -1.0 What is peyote? -> $x: (peyote, be have, $x) -> (Hemp and peyote, have been used as, psychedelics) -> psychedelics (2169ms) Where was the Andersonville Prison? Ira DeForest WARREN -0.111111111111 Where was the Andersonville Prison? -> $x: ($x, be be, andersonville prison) -> (Ira DeForest WARREN, was a prisoner in, Andersonville Prison) -> Ira DeForest WARREN (922ms) Where was the Andersonville Prison? the leading horseman -0.111111111111 Where was the Andersonville Prison? -> $x: ($x, be be, andersonville prison) -> (the leading horseman, is, the dreaded Andersonville Prison) -> the leading horseman (922ms) Where was the Andersonville Prison? the Union army -0.111111111111 Where was the Andersonville Prison? -> $x: ($x, be be, andersonville prison) -> (the Union army, was a prisoner at, Andersonville prison) -> the Union army (940ms) Where was the Andersonville Prison? variety -0.111111111111 Where was the Andersonville Prison? -> $x: ($x, be be, andersonville prison) -> (variety, are, Andersonville prison) -> variety (940ms) Where was the Andersonville Prison? the Civil war -0.111111111111 Where was the Andersonville Prison? -> $x: ($x, be be, andersonville prison) -> (the Civil war, was confined in, Andersonville prison) -> the Civil war (940ms) Where was the Andersonville Prison? 45,000 Union soldiers -0.111111111111 Where was the Andersonville Prison? -> $x: ($x, be be, andersonville prison) -> (45,000 Union soldiers, were confined at, Andersonville Prison) -> 45,000 Union soldiers (940ms) Where was the Andersonville Prison? prisoner -0.111111111111 Where was the Andersonville Prison? -> $x: ($x, be be, andersonville prison) -> (prisoner, was imprisoned in, the infamous Andersonville Prison) -> prisoner (922ms) Where was the Andersonville Prison? alive -0.111111111111 Where was the Andersonville Prison? -> $x: ($x, be be, andersonville prison) -> (alive, were taken to, Andersonville Prison) -> alive (940ms) Where was the Andersonville Prison? The carpenter -0.111111111111 Where was the Andersonville Prison? -> $x: ($x, be be, andersonville prison) -> (The carpenter, had once been a prisoner in, Andersonville prison) -> The carpenter (922ms) Where was the Andersonville Prison? Union sailors -0.111111111111 Where was the Andersonville Prison? -> $x: ($x, be be, andersonville prison) -> (Union sailors, were sent to, Andersonville prison) -> Union sailors (922ms) Where was the Andersonville Prison? The above Flag -0.111111111111 Where was the Andersonville Prison? -> $x: ($x, be be, andersonville prison) -> (The above Flag, was raised in, Andersonville Prison) -> The above Flag (940ms) Where was the Andersonville Prison? the bright drummer boy -0.111111111111 Where was the Andersonville Prison? -> $x: ($x, be be, andersonville prison) -> (the bright drummer boy, was in, Andersonville prison) -> the bright drummer boy (922ms) Where was the Andersonville Prison? Earthworks -0.111111111111 Where was the Andersonville Prison? -> $x: ($x, be be, andersonville prison) -> (Earthworks, were erected about, Andersonville prison) -> Earthworks (940ms) Where was the Andersonville Prison? Cushman -0.111111111111 Where was the Andersonville Prison? -> $x: ($x, be be, andersonville prison) -> (Cushman, was sent to, Andersonville Prison) -> Cushman (940ms) Where was the Andersonville Prison? Knapp -0.111111111111 Where was the Andersonville Prison? -> $x: ($x, be be, andersonville prison) -> (Knapp, was also a prisoner at, the Andersonville prison camp) -> Knapp (922ms) Where was the Andersonville Prison? Georgia -0.111111111111 Where was the Andersonville Prison? -> $x: ($x, be be, andersonville prison) -> (Georgia, was also the site of, the infamous Andersonville Prison) -> Georgia (940ms) Where was the Andersonville Prison? operation -0.777777777778 Where was the Andersonville Prison? -> $x: (andersonville prison, be in in, $x) -> (Andersonville Prison, was in, operation) -> operation (971ms) Where was the Andersonville Prison? Emigranten -0.777777777778 Where was the Andersonville Prison? -> $x: (andersonville prison, be in in, $x) -> (the dreaded Andersonville prison, was told in, Emigranten) -> Emigranten (971ms) When was the company founded? the top search results 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (their company, is found in, the top search results) -> the top search results (5674ms) When was the company founded? the simple phrase 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (a company, can be found in, the simple phrase) -> the simple phrase (7021ms) When was the company founded? Recess 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (more companies, are finding value in, Recess) -> Recess (5001ms) When was the company founded? any bar 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (company, could be found in, any bar) -> any bar (5674ms) When was the company founded? Google 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (your company, to be found in, Google) -> Google (7021ms) When was the company founded? 2002 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (The company, was found in, 2002) -> 2002 (5470ms) When was the company founded? the archive 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (H Company, can be found in, the archive) -> the archive (7021ms) When was the company founded? a cosmopolitan spot 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (your company, is found in, a cosmopolitan spot) -> a cosmopolitan spot (11414ms) When was the company founded? violation 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (the company, is found in, violation) -> violation (8387ms) When was the company founded? Glasgow 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (The company, can be found in, Glasgow) -> Glasgow (9450ms) When was the company founded? Kemptown 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (The company, can be found in, Kemptown) -> Kemptown (5470ms) When was the company founded? 1992 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (The company, was found in, 1992) -> 1992 (3905ms) When was the company founded? the Yellow Pages 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (companies, can be found in, the Yellow Pages) -> the Yellow Pages (8387ms) When was the company founded? the yellow pages 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (Companies, can be found in, the yellow pages) -> the yellow pages (7021ms) When was the company founded? April 1990 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (Company, was found in, April 1990) -> April 1990 (9450ms) When was the company founded? the United States 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (company, can be found in, the United States) -> the United States (5001ms) When was the company founded? Chinatowns 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (trading companies, are found in, Chinatowns) -> Chinatowns (11414ms) When was the company founded? Apr.1999 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (company, was found in, Apr.1999) -> Apr.1999 (3905ms) When was the company founded? a life 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (company, was likely a very good find in, a life) -> a life (3905ms) When was the company founded? section 172 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (the company, can be found in, section 172) -> section 172 (3777ms) When was the company founded? the wireless market 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (companies, will be found mostly in, the wireless market) -> the wireless market (6495ms) When was the company founded? the year 1917 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (The company, was found in, the year 1917) -> the year 1917 (7021ms) When was the company founded? the year 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (The company, was found in, the year) -> the year (11414ms) When was the company founded? potential clients 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (the company, was interested in finding, potential clients) -> potential clients (5674ms) When was the company founded? the industry 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (Companies, are finding gaps in, the industry) -> the industry (5001ms) When was the company founded? the monopoly 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (Companies, are finding holes in, the monopoly) -> the monopoly (12735ms) When was the company founded? the region 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (company, is found in, the region) -> the region (11414ms) When was the company founded? 1990 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (The company, was found in, 1990) -> 1990 (9450ms) When was the company founded? 1997 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (The company, is found in, 1997) -> 1997 (12735ms) When was the company founded? Croatian tourism official web site 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (companies, can be found in, Croatian tourism official web site) -> Croatian tourism official web site (5470ms) When was the company founded? Business Credit magazine 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (companies, can be found in, Business Credit magazine) -> Business Credit magazine (5674ms) When was the company founded? case 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (a company, is found In, case) -> case (3777ms) When was the company founded? China 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (The company, is found in, China) -> China (3905ms) When was the company founded? Shrewsbury 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (The company, can be found in, Shrewsbury) -> Shrewsbury (12735ms) When was the company founded? new talent 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (companies, are interested in finding, new talent) -> new talent (3905ms) When was the company founded? the April 5 , 2004 issue 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (companies, can be found in, the April 5 , 2004 issue) -> the April 5 , 2004 issue (11413ms) When was the company founded? the ROI. 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (Companies, are also finding rising in, the ROI.) -> the ROI. (3777ms) When was the company founded? places 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (?Companies, here are finding customers in, places) -> places (5470ms) When was the company founded? the annual report 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (these companies, are found in, the annual report) -> the annual report (3777ms) When was the company founded? major cities 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (companies, are simple to find in, major cities) -> major cities (11414ms) When was the company founded? the Companies Acts 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (companies, is to be found in, the Companies Acts) -> the Companies Acts (7021ms) When was the company founded? the UK, 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (company, can be found in, the UK,) -> the UK, (12735ms) When was the company founded? the need of reinvention 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (companies, are finding themselves in, the need of reinvention) -> the need of reinvention (3778ms) When was the company founded? the Jubara checkpoint 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (the company, are found in, the Jubara checkpoint) -> the Jubara checkpoint (5674ms) When was the company founded? the job postings 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (this company, can be found in, the job postings) -> the job postings (9451ms) When was the company founded? Hall 3 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (The company, can be found in, Hall 3) -> Hall 3 (5001ms) When was the company founded? the Important Links section 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (these companies, can be found in, the Important Links section) -> the Important Links section (9450ms) When was the company founded? restaurants 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (company, is easy to find in, restaurants) -> restaurants (6495ms) When was the company founded? new customers 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (companies, are interested in finding, new customers) -> new customers (8386ms) When was the company founded? the attached backgrounder 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (company, is found in, the attached backgrounder) -> the attached backgrounder (5470ms) When was the company founded? Yellow Pages 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (the company, can be found in, Yellow Pages) -> Yellow Pages (11414ms) When was the company founded? the Privacy Notice 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (companies, may be found in, the Privacy Notice) -> the Privacy Notice (8387ms) When was the company founded? 2001 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (The Company, was found in, 2001) -> 2001 (5470ms) When was the company founded? property 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (Companies, are also assisted in finding, property) -> property (8387ms) When was the company founded? the telephone directory 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (these companies, may be found in, the telephone directory) -> the telephone directory (3905ms) When was the company founded? Pennsylvania 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (the company, can be found in, Pennsylvania) -> Pennsylvania (7021ms) When was the company founded? the Newsroom 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (companies, can be found in, the Newsroom) -> the Newsroom (6495ms) When was the company founded? the dry winter 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (companies, are finding opportunity in, the dry winter) -> the dry winter (6495ms) When was the company founded? 1912 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (Company, was found in, 1912) -> 1912 (9450ms) When was the company founded? 1995 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (The company, was found in, 1995) -> 1995 (11413ms) When was the company founded? MadCat 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (companies, can be found in, MadCat) -> MadCat (5001ms) When was the company founded? the search engines 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (a company, to be found in, the search engines) -> the search engines (6495ms) When was the company founded? Amway 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (companies, are found in, Amway) -> Amway (6495ms) When was the company founded? violation risk 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (companies, found to be in, violation risk) -> violation risk (3777ms) When was the company founded? spite 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (companies, find outsourcing to be cost-effective in, spite) -> spite (12735ms) When was the company founded? newspapers 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (companies, can be found in, newspapers) -> newspapers (6495ms) When was the company founded? 935 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (the companies, were found in, 935) -> 935 (5674ms) When was the company founded? the Board 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (Companies, are found in, the Board) -> the Board (8386ms) When was the company founded? the telephone book 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (The companies, can be found in, the telephone book) -> the telephone book (5674ms) When was the company founded? India inspite 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (Company, is finding its great future in, India inspite) -> India inspite (3777ms) When was the company founded? nationwide retailers 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (The company, can be found in, nationwide retailers) -> nationwide retailers (3777ms) When was the company founded? the Amway catalogs 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (the companies, are found in, the Amway catalogs) -> the Amway catalogs (5470ms) When was the company founded? breach of their licence 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (companies, are found in, breach of their licence) -> breach of their licence (9450ms) When was the company founded? australia 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (Many companies, are found in, australia) -> australia (5001ms) When was the company founded? new partners and clients 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (Our company, is interested in finding, new partners and clients) -> new partners and clients (5470ms) When was the company founded? guidelines 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (companies, are different found in, guidelines) -> guidelines (5001ms) When was the company founded? a St . Catharines court 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (The company, was found guilty in, a St . Catharines court) -> a St . Catharines court (7021ms) When was the company founded? breach 2.44444444443 When was the company founded? -> $x: (company, be found in, $x) -> (companies, are found in, breach) -> breach (9450ms) When was the company founded? the second and third floor lounges 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (Computers, are found in, the second and third floor lounges) -> the second and third floor lounges (12920ms) When was the company founded? every setting 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computer systems, is found in almost, every setting) -> every setting (12895ms) When was the company founded? banks 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (Computers, can also be found in, banks) -> banks (12920ms) When was the company founded? room 16.1.10 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computer facilities, can be found in, room 16.1.10) -> room 16.1.10 (12970ms) When was the company founded? 90,3 % 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (A computer, is found in, 90,3 %) -> 90,3 % (12970ms) When was the company founded? community colleges 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (Computer Education, are found in, community colleges) -> community colleges (12895ms) When was the company founded? the Unofficial Cookie FAQ 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (your computer, can be found in, the Unofficial Cookie FAQ) -> the Unofficial Cookie FAQ (12920ms) When was the company founded? the majority 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (Computers, can now be found in, the majority) -> the majority (12920ms) When was the company founded? advance 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computer systems, should be found in, advance) -> advance (12945ms) When was the company founded? the Farc camp 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (the computers, were indeed found in, the Farc camp) -> the Farc camp (12990ms) When was the company founded? every aspect 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (Computers, can be found in almost, every aspect) -> every aspect (12990ms) When was the company founded? libraries 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computers, are normally found in, libraries) -> libraries (12920ms) When was the company founded? the first few pages 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computer labs, can be found in, the first few pages) -> the first few pages (12945ms) When was the company founded? the children 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computers, are often found in, the children) -> the children (12945ms) When was the company founded? every field 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computers, are found in, every field) -> every field (12990ms) When was the company founded? public places 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (( Computers, can sometimes be found in, public places) -> public places (12970ms) When was the company founded? the heart 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (Computers, can be found in, the heart) -> the heart (12920ms) When was the company founded? any 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (These computers, can be found in, any) -> any (12920ms) When was the company founded? everyday devices 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (Computers, can be found in, everyday devices) -> everyday devices (12895ms) When was the company founded? mountainous rural communities 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computers, are found in, mountainous rural communities) -> mountainous rural communities (12970ms) When was the company founded? the domain 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (this computer, has been found in, the domain) -> the domain (12735ms) When was the company founded? every nook 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computers, are found in, every nook) -> every nook (12970ms) When was the company founded? households 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computers, are more frequently found in, households) -> households (12970ms) When was the company founded? good working order 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computer, was found to be in, good working order) -> good working order (12945ms) When was the company founded? personal computers 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computer memory, is found in, personal computers) -> personal computers (12735ms) When was the company founded? a typical $ 299 Netbook 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (The computer, is found in, a typical $ 299 Netbook) -> a typical $ 299 Netbook (12990ms) When was the company founded? the northwest part 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (8 computers, can be found in, the northwest part) -> the northwest part (12920ms) When was the company founded? cell phones 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computers, are also found in, cell phones) -> cell phones (12945ms) When was the company founded? the User 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (the computer, is found in, the User) -> the User (12920ms) When was the company founded? the kitchen 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computers, was found Thursday in, the kitchen) -> the kitchen (12970ms) When was the company founded? secure labs 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computers, are found in, secure labs) -> secure labs (12895ms) When was the company founded? the largest 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computers, were only found in, the largest) -> the largest (12970ms) When was the company founded? offices 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computers, were really only found in, offices) -> offices (12895ms) When was the company founded? private homes 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computers, can be found in, private homes) -> private homes (12895ms) When was the company founded? a nearby pond 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (the computer, was found in, a nearby pond) -> a nearby pond (12991ms) When was the company founded? every household 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (The computer, is found in almost, every household) -> every household (12895ms) When was the company founded? the home 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (Computers, can be found in, the home) -> the home (12990ms) When was the company founded? a wide range 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computer programmers, can be found in, a wide range) -> a wide range (12990ms) When was the company founded? science labs 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computers, were found only in, science labs) -> science labs (12990ms) When was the company founded? 40 percent 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (a computer, could be found in, 40 percent) -> 40 percent (12945ms) When was the company founded? locations 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computer labs, can be found in, locations) -> locations (12970ms) When was the company founded? networks 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computers, can be found in, networks) -> networks (12990ms) When was the company founded? the Careers Database 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computer scientists, can be found in, the Careers Database) -> the Careers Database (12735ms) When was the company founded? ?v?r? home ju?t l?k? televisions 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (Computers, c?n be found in, ?v?r? home ju?t l?k? televisions) -> ?v?r? home ju?t l?k? televisions (12945ms) When was the company founded? Kirkwood Plaza 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (Computer Renaissance, can be found in, Kirkwood Plaza) -> Kirkwood Plaza (12970ms) When was the company founded? the Computer name box 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (your computer, will be found in, the Computer name box) -> the Computer name box (12970ms) When was the company founded? the Information Centre 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (Computer facilities, can be found in, the Information Centre) -> the Information Centre (12735ms) When was the company founded? schools 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (These computers, can be found in, schools) -> schools (12990ms) When was the company founded? radios 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (digital computers, is found in, radios) -> radios (12945ms) When was the company founded? airports 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computers, as may be found in, airports) -> airports (12945ms) When was the company founded? the market 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computer, can be found available in, the market) -> the market (12945ms) When was the company founded? the system registry 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computers, can also be found in, the system registry) -> the system registry (12970ms) When was the company founded? abundance 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computers, are found in, abundance) -> abundance (12945ms) When was the company founded? office 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computer, is often found in, office) -> office (12895ms) When was the company founded? every office 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (Computers, may be found in, every office) -> every office (12895ms) When was the company founded? the registry 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computers, are found in, the registry) -> the registry (12895ms) When was the company founded? the paper 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computer attacks, can be found in, the paper) -> the paper (12920ms) When was the company founded? 80 % 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computers, are found in over, 80 %) -> 80 % (12895ms) When was the company founded? metropolitan areas and cities 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computer forensics, are found in, metropolitan areas and cities) -> metropolitan areas and cities (12970ms) When was the company founded? a range 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (Computer Engineering, can be found in, a range) -> a range (12920ms) When was the company founded? net-land 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computers, can be found in, net-land) -> net-land (12945ms) When was the company founded? businesses and homes 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computers, are commonly found in, businesses and homes) -> businesses and homes (12920ms) When was the company founded? social history 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computers, are to be found in, social history) -> social history (12895ms) When was the company founded? the possession 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (laptop computer, are being found in, the possession) -> the possession (12895ms) When was the company founded? texts 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computers, can be found in, texts) -> texts (12735ms) When was the company founded? each elementary classroom 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (Computers, are found in, each elementary classroom) -> each elementary classroom (12945ms) When was the company founded? July 2006 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (The computer, was found in, July 2006) -> July 2006 (12735ms) When was the company founded? the classroom and research 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (Computers, can be found in, the classroom and research) -> the classroom and research (12945ms) When was the company founded? Silicon Valley 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computer science, are found in, Silicon Valley) -> Silicon Valley (12920ms) When was the company founded? banks and offices 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computers, were only found in, banks and offices) -> banks and offices (12990ms) When was the company founded? every layer 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (Computers, are now found in, every layer) -> every layer (12895ms) When was the company founded? the process 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (a computer, was found in, the process) -> the process (12945ms) When was the company founded? the wild 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computer viruses, are found "in, the wild) -> the wild (12920ms) When was the company founded? the entire houses 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (computers, are found in virtually, the entire houses) -> the entire houses (12970ms) When was the company founded? libraries and hotels 1.999999999989 When was the company founded? -> $x: (computer, be found in, $x) -> (Public computers, are found in, libraries and hotels) -> libraries and hotels (12920ms) When was the company founded? Riva FLV encoder 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (windows, can be found in, Riva FLV encoder) -> Riva FLV encoder (13107ms) When was the company founded? the park 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (butterflies, are commonly found here in, the park) -> the park (13353ms) When was the company founded? Youll 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Youll, find, companies) -> Youll (13417ms) When was the company founded? the arsenal 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (These strategies, are ?nowhere to be found in, the arsenal) -> the arsenal (13464ms) When was the company founded? a Dutch study 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (a strategy, found to be effective in, a Dutch study) -> a Dutch study (13510ms) When was the company founded? the common law 1.88888888888 When was the company founded? -> $x: (auditor, be found in, $x) -> (auditors, are found in, the common law) -> the common law (12990ms) When was the company founded? Fred Meyer?s natural foods fridge 1.88888888888 When was the company founded? -> $x: (kroger, be found in, $x) -> (Kroger, can be found in, Fred Meyer?s natural foods fridge) -> Fred Meyer?s natural foods fridge (13303ms) When was the company founded? JDeveloper 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (a window, can be found in, JDeveloper) -> JDeveloper (13303ms) When was the company founded? the Inside Connection product 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (the Inside Connection product, find, companies) -> the Inside Connection product (13479ms) When was the company founded? the north-east 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (?This butterfly, is found in, the north-east) -> the north-east (13252ms) When was the company founded? Company 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (True strategy, is only found in, Company) -> Company (13216ms) When was the company founded? the NAEPP guidelines 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (asthma strategies, are found in, the NAEPP guidelines) -> the NAEPP guidelines (13088ms) When was the company founded? the downloadable ebook 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (strategies, can be found in, the downloadable ebook) -> the downloadable ebook (13582ms) When was the company founded? a recent communication 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (their strategy, can be found in, a recent communication) -> a recent communication (13088ms) When was the company founded? an apparent suicide 1.88888888888 When was the company founded? -> $x: (secretary, be found in, $x) -> (secretary, is found drowned in, an apparent suicide) -> an apparent suicide (13106ms) When was the company founded? the System Preferences 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (your Windows, is found in, the System Preferences) -> the System Preferences (13539ms) When was the company founded? the posting on Fri Jul 04 1.88888888888 When was the company founded? -> $x: (ibm, be found in, $x) -> (IBM, can be found in, the posting on Fri Jul 04) -> the posting on Fri Jul 04 (13303ms) When was the company founded? Section 1 1.88888888888 When was the company founded? -> $x: (auditor, be found in, $x) -> (the Auditor General, can be found in, Section 1) -> Section 1 (13623ms) When was the company founded? the matters 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (the employees, were found involved in, the matters) -> the matters (13234ms) When was the company founded? the recent simulation studies 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (No strategy, can be found in, the recent simulation studies) -> the recent simulation studies (13448ms) When was the company founded? Moving company 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Moving company, finds, company) -> Moving company (13385ms) When was the company founded? an unpublished opinion 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (firm employees, can be found in, an unpublished opinion) -> an unpublished opinion (13662ms) When was the company founded? the local press 1.88888888888 When was the company founded? -> $x: (advertisement, be found in, $x) -> (Advertisements, can also be found in, the local press) -> the local press (13337ms) When was the company founded? the Manager 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (new employees, can be found in, the Manager) -> the Manager (13649ms) When was the company founded? gg_arguments-->0 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (the window, can be found in, gg_arguments-->0) -> gg_arguments-->0 (13161ms) When was the company founded? Sect 1.88888888888 When was the company founded? -> $x: (auditor, be found in, $x) -> (an independent Public Auditor, are found in, Sect) -> Sect (13125ms) When was the company founded? federal court 1.88888888888 When was the company founded? -> $x: (director, be found in, $x) -> (its directors, were found liable in, federal court) -> federal court (13234ms) When was the company founded? the lower part 1.88888888888 When was the company founded? -> $x: (director, be found in, $x) -> (The program directors survey, can be found in, the lower part) -> the lower part (13088ms) When was the company founded? the U.S. 1.88888888888 When was the company founded? -> $x: (coca cola, be found in, $x) -> (Mexican-made Coca-Cola, can sometimes be found in, the U.S.) -> the U.S. (13069ms) When was the company founded? every form 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (butterflies, can be found in nearly, every form) -> every form (13464ms) When was the company founded? the 1860 and 1870 Henry Co. 1.88888888888 When was the company founded? -> $x: (mcdonald, be found in, $x) -> (James McDonald, was found in, the 1860 and 1870 Henry Co.) -> the 1860 and 1870 Henry Co. (13554ms) When was the company founded? the Funds 1.88888888888 When was the company founded? -> $x: (director, be found in, $x) -> (' Directors and Officers, may be found in, the Funds) -> the Funds (13252ms) When was the company founded? Canada 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (this butterfly, have been found in, Canada) -> Canada (13464ms) When was the company founded? the free venue 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (the free venue, finding, company) -> the free venue (13143ms) When was the company founded? two 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (these strategies, are found in, two) -> two (13303ms) When was the company founded? misconduct 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (the employee, was found to have engaged in, misconduct) -> misconduct (13050ms) When was the company founded? the Downloads section 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Windows, can be found in, the Downloads section) -> the Downloads section (13609ms) When was the company founded? the download 1.88888888888 When was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft Word OpenOffice, can be found in, the download) -> the download (13320ms) When was the company founded? practice 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (the employees, would be found to work well in, practice) -> practice (13088ms) When was the company founded? Section 3.5 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (window functions, can be found in, Section 3.5) -> Section 3.5 (13568ms) When was the company founded? a whole bunch 1.88888888888 When was the company founded? -> $x: (microsoft, be found in, $x) -> (Ex-Microsoft Employee, was found in, a whole bunch) -> a whole bunch (13251ms) When was the company founded? the Employee Directory 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (employees, can be found in, the Employee Directory) -> the Employee Directory (13385ms) When was the company founded? the hundreds 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (employees, can be found in, the hundreds) -> the hundreds (13337ms) When was the company founded? lending 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (lending, finding, company) -> lending (13464ms) When was the company founded? higher altitudes 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (butterflies, are found in, higher altitudes) -> higher altitudes (13088ms) When was the company founded? SoHo 1.88888888888 When was the company founded? -> $x: (adidas, be found in, $x) -> (The Adidas Originals Store, is found in, SoHo) -> SoHo (13479ms) When was the company founded? recycled packaging ? 1.88888888888 When was the company founded? -> $x: (nike, be found in, $x) -> (Nike shoes, can be found in, recycled packaging ?) -> recycled packaging ? (13125ms) When was the company founded? text 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Windows, is found in, text) -> text (13180ms) When was the company founded? various places 1.88888888888 When was the company founded? -> $x: (advertisement, be found in, $x) -> (text/html Advertisements, can be found in, various places) -> various places (13688ms) When was the company founded? Meghalaya 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (butterflies, are found in, Meghalaya) -> Meghalaya (13525ms) When was the company founded? the entrance areas 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Windows, are predominately found in, the entrance areas) -> the entrance areas (13069ms) When was the company founded? steamy low valleys 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (butterfly, are found in, steamy low valleys) -> steamy low valleys (13353ms) When was the company founded? a novice 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (a novice, find, companies) -> a novice (13353ms) When was the company founded? the adaptability 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (survival strategy, can best be found in, the adaptability) -> the adaptability (13216ms) When was the company founded? such conduct 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (Any employee, is found to have engaged in, such conduct) -> such conduct (13069ms) When was the company founded? the CKUA Employee Privacy Statement 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (our employees, is found in, the CKUA Employee Privacy Statement) -> the CKUA Employee Privacy Statement (13286ms) When was the company founded? west Houston 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (a restaurant employee, was found in far, west Houston) -> west Houston (13495ms) When was the company founded? damp basements 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (window wells, are found in, damp basements) -> damp basements (13623ms) When was the company founded? the System Documentation 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Windows, can be found in, the System Documentation) -> the System Documentation (13069ms) When was the company founded? woodland 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (These butterflies, can be found in, woodland) -> woodland (13216ms) When was the company founded? great numbers 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (butterflies, can often be found in, great numbers) -> great numbers (13269ms) When was the company founded? Poland 1.88888888888 When was the company founded? -> $x: (advertisement, be found in, $x) -> (This wonderful advertisement, was found in, Poland) -> Poland (13554ms) When was the company founded? homes 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Picture windows, are often found in, homes) -> homes (13216ms) When was the company founded? non-compliance 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (employees, were found to be in, non-compliance) -> non-compliance (13106ms) When was the company founded? the United Kingdom 1.88888888888 When was the company founded? -> $x: (coca cola, be found in, $x) -> (Coca-Cola water, was found to be in, the United Kingdom) -> the United Kingdom (13286ms) When was the company founded? Jones 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (large windows, are found in, Jones) -> Jones (13582ms) When was the company founded? older training 1.88888888888 When was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft Visual C++, are found packaged in, older training) -> older training (13010ms) When was the company founded? an array 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Replacement windows, can be found in, an array) -> an array (13433ms) When was the company founded? Windows 1.88888888888 When was the company founded? -> $x: (microsoft, be found in, $x) -> (Other important Microsoft files, can be found in, Windows) -> Windows (13448ms) When was the company founded? telephone number 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (telephone number, Find, companies) -> telephone number (13433ms) When was the company founded? such notable American edifices 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Zettler windows, can be found in, such notable American edifices) -> such notable American edifices (13433ms) When was the company founded? Primate Eye 1.88888888888 When was the company founded? -> $x: (secretary, be found in, $x) -> (the membership secretary, can be found in, Primate Eye) -> Primate Eye (13069ms) When was the company founded? suede 1.88888888888 When was the company founded? -> $x: (adidas, be found in, $x) -> (Adidas Mickey Shoes, can be found in, suede) -> suede (13251ms) When was the company founded? the free conference and venue 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (the free conference and venue, finding, company) -> the free conference and venue (13353ms) When was the company founded? coastal areas 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (this butterfly, is often found in, coastal areas) -> coastal areas (13417ms) When was the company founded? Central Park 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (a gallery employee, is found strangled in, Central Park) -> Central Park (13433ms) When was the company founded? the Film menu 1.88888888888 When was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft Word, is found in, the Film menu) -> the Film menu (13554ms) When was the company founded? more upscale neighborhoods 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (wood windows, is generally found in, more upscale neighborhoods) -> more upscale neighborhoods (13568ms) When was the company founded? the southern parts 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (the butterfly, is found in, the southern parts) -> the southern parts (13069ms) When was the company founded? notes 1.88888888888 When was the company founded? -> $x: (ibm, be found in, $x) -> (IBM BlueGene/L, can also be found in, notes) -> notes (13353ms) When was the company founded? the official site 1.88888888888 When was the company founded? -> $x: (advertisement, be found in, $x) -> (advertisement videos, can be found in, the official site) -> the official site (13510ms) When was the company founded? any highly organized structure 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (this strategy, could be found in, any highly organized structure) -> any highly organized structure (13353ms) When was the company founded? the Indian sub-continent 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (butterflies, are found in, the Indian sub-continent) -> the Indian sub-continent (13464ms) When was the company founded? wet thick forests 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (This butterfly, is generally found in, wet thick forests) -> wet thick forests (13675ms) When was the company founded? New Delhi 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (New Delhi, Find, Company) -> New Delhi (13675ms) When was the company founded? gardens and parks 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (urban butterflies, are found in, gardens and parks) -> gardens and parks (13303ms) When was the company founded? the structured workflow 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (the employees, can be found in, the structured workflow) -> the structured workflow (13197ms) When was the company founded? the cities 1.88888888888 When was the company founded? -> $x: (coca cola, be found in, $x) -> (Coca Cola, can be found everywhere in, the cities) -> the cities (13582ms) When was the company founded? wooded areas 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (This butterfly, is found in, wooded areas) -> wooded areas (13401ms) When was the company founded? Corel 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Corel, found, companies) -> Corel (13582ms) When was the company founded? the Corridor Guidance 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (These strategies, can be found in, the Corridor Guidance) -> the Corridor Guidance (13609ms) When was the company founded? the city 1.88888888888 When was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft, can be found in, the city) -> the city (13286ms) When was the company founded? dust 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (Employees, were found covered in, dust) -> dust (13433ms) When was the company founded? the Jeepney Journal 1.88888888888 When was the company founded? -> $x: (advertisement, be found in, $x) -> (advertisements, can be found in, the Jeepney Journal) -> the Jeepney Journal (13197ms) When was the company founded? Andrea 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Andrea, found, company) -> Andrea (13197ms) When was the company founded? Word 1.88888888888 When was the company founded? -> $x: (microsoft, be found in, $x) -> (The Microsoft Office Button, is found in, Word) -> Word (13525ms) When was the company founded? the ponerines 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (Another strategy, is found in, the ponerines) -> the ponerines (13554ms) When was the company founded? northern Australia 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (The butterfly, is found mainly in, northern Australia) -> northern Australia (13125ms) When was the company founded? MS Office 1.88888888888 When was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft applications, could be found in, MS Office) -> MS Office (13030ms) When was the company founded? local newspapers 1.88888888888 When was the company founded? -> $x: (advertisement, be found in, $x) -> (Private Advertisements, can be found in, local newspapers) -> local newspapers (13269ms) When was the company founded? Dallas 1.88888888888 When was the company founded? -> $x: (mcdonald, be found in, $x) -> (This McDonald?s outlet, can be found in, Dallas) -> Dallas (13479ms) When was the company founded? the following sites 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Windows 7, can be found in, the following sites) -> the following sites (13050ms) When was the company founded? Page 1 of 23 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Page 1 of 23, found, companies) -> Page 1 of 23 (13448ms) When was the company founded? United States 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (United States, Find, Company) -> United States (13088ms) When was the company founded? research t? 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (research t?, find, companies) -> research t? (13554ms) When was the company founded? a book 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (a book, finding, company) -> a book (13433ms) When was the company founded? every European country 1.88888888888 When was the company founded? -> $x: (mcdonald, be found in, $x) -> (a McDonalds, can be found in, every European country) -> every European country (13539ms) When was the company founded? numerous formats 1.88888888888 When was the company founded? -> $x: (barbie, be found in, $x) -> (Barbie games, can be found in, numerous formats) -> numerous formats (13568ms) When was the company founded? Thailand 1.88888888888 When was the company founded? -> $x: (mcdonald, be found in, $x) -> (McDonald?s, can be found in, Thailand) -> Thailand (13125ms) When was the company founded? the said Leavitt Act 1.88888888888 When was the company founded? -> $x: (secretary, be found in, $x) -> (the Secretary, is found in, the said Leavitt Act) -> the said Leavitt Act (13030ms) When was the company founded? selection 1.88888888888 When was the company founded? -> $x: (adidas, be found in, $x) -> (Adidas Adi Rise Mid Shoes, can be found in, selection) -> selection (13050ms) When was the company founded? a written employment contract 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (an employee, may be found in, a written employment contract) -> a written employment contract (13050ms) When was the company founded? the store 1.88888888888 When was the company founded? -> $x: (chanel, be found in, $x) -> (Chanel S Several loose emblems, were found in, the store) -> the store (13011ms) When was the company founded? the ambulatory 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (this window, is found in, the ambulatory) -> the ambulatory (13385ms) When was the company founded? the words 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (a good strategy, are found in, the words) -> the words (13011ms) When was the company founded? the explosion 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (employees, are finding new freedom in, the explosion) -> the explosion (13369ms) When was the company founded? more detail 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (these strategies, can be found in, more detail) -> more detail (13479ms) When was the company founded? the nature reserves 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (The butterfly, can be found occasionally in, the nature reserves) -> the nature reserves (13479ms) When was the company founded? woods 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (The butterfly, is found in, woods) -> woods (13568ms) When was the company founded? Tunisia 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Tunisia, Find, Company) -> Tunisia (13675ms) When was the company founded? ? News 1.88888888888 When was the company founded? -> $x: (director, be found in, $x) -> (NCRR Director, can be found in, ? News) -> ? News (13385ms) When was the company founded? the U. S. 1.88888888888 When was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft Office Accounting 2007, can be found in, the U. S.) -> the U. S. (13401ms) When was the company founded? numerous sizes and designs 1.88888888888 When was the company founded? -> $x: (nike, be found in, $x) -> (Nike dunks, can be found in, numerous sizes and designs) -> numerous sizes and designs (13662ms) When was the company founded? number 1.88888888888 When was the company founded? -> $x: (insurance company, be found in, $x) -> (Car insurance companies, are found in, number) -> number (13495ms) When was the company founded? every market 1.88888888888 When was the company founded? -> $x: (mcdonald, be found in, $x) -> (McDonald franchises, can be found in, every market) -> every market (13143ms) When was the company founded? an 1806 newspaper 1.88888888888 When was the company founded? -> $x: (advertisement, be found in, $x) -> (This advertisements, was found in, an 1806 newspaper) -> an 1806 newspaper (13030ms) When was the company founded? old houses 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (windows, are usually found in, old houses) -> old houses (13636ms) When was the company founded? cli folder 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Windows CLI, can be found in, cli folder) -> cli folder (13353ms) When was the company founded? a little bit 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (a little bit, find, companies) -> a little bit (13401ms) When was the company founded? different panel sizes 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Window shades, can be found in, different panel sizes) -> different panel sizes (13401ms) When was the company founded? the collection Bad Behavior 1.88888888888 When was the company founded? -> $x: (secretary, be found in, $x) -> (Secretary, is to be found in, the collection Bad Behavior) -> the collection Bad Behavior (13675ms) When was the company founded? a lot 1.88888888888 When was the company founded? -> $x: (nike, be found in, $x) -> (Nike air jordan Shoe, can be found in, a lot) -> a lot (13510ms) When was the company founded? Mumbai 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Mumbai, Find, Company) -> Mumbai (13216ms) When was the company founded? any good book 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (These strategies, can be found in, any good book) -> any good book (13433ms) When was the company founded? Staten Island 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (butterflies, can be found in, Staten Island) -> Staten Island (13369ms) When was the company founded? the edit menu 1.88888888888 When was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft Explorer, can be found in, the edit menu) -> the edit menu (13609ms) When was the company founded? southern Asia Sun 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (The butterfly, is found in, southern Asia Sun) -> southern Asia Sun (13448ms) When was the company founded? Windows Server 2008 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Windows Vista, are usually found in, Windows Server 2008) -> Windows Server 2008 (13030ms) When was the company founded? The Chamber Network newsletter 1.88888888888 When was the company founded? -> $x: (director, be found in, $x) -> (Directors, can be found in, The Chamber Network newsletter) -> The Chamber Network newsletter (13675ms) When was the company founded? a paper 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (messaging strategies, can be found in, a paper) -> a paper (13010ms) When was the company founded? the excellent e-book 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (A complete strategy, is found in, the excellent e-book) -> the excellent e-book (13525ms) When was the company founded? the centre 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (permanent employees, are more commonly found in, the centre) -> the centre (13337ms) When was the company founded? jungles 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (This butterfly, is generally found in, jungles) -> jungles (13106ms) When was the company founded? Belarus 1.88888888888 When was the company founded? -> $x: (director, be found in, $x) -> (its missing director, has been found dead in, Belarus) -> Belarus (13369ms) When was the company founded? the same locations 1.88888888888 When was the company founded? -> $x: (director, be found in, $x) -> (zoo director Jim Anderson, will be found in, the same locations) -> the same locations (13197ms) When was the company founded? numerous sizes and styles 1.88888888888 When was the company founded? -> $x: (nike, be found in, $x) -> (Nike dunks, can be found in, numerous sizes and styles) -> numerous sizes and styles (13539ms) When was the company founded? a small business 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (employees, are a rare find in, a small business) -> a small business (13088ms) When was the company founded? new ways 1.88888888888 When was the company founded? -> $x: (microsoft, be found in, $x) -> (Problem Microsoft, was interested in finding, new ways) -> new ways (13675ms) When was the company founded? Goetia 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (the window, can be found in, Goetia) -> Goetia (13479ms) When was the company founded? time 1.88888888888 When was the company founded? -> $x: (director, be found in, $x) -> (a director, be found in, time) -> time (13649ms) When was the company founded? the Eligibility and Election 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (new employees, is found in, the Eligibility and Election) -> the Eligibility and Election (13234ms) When was the company founded? non-migratory populations 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (these butterflies, are also found in, non-migratory populations) -> non-migratory populations (13286ms) When was the company founded? maria 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (These strategies, be found in, maria) -> maria (13649ms) When was the company founded? Part II 1.88888888888 When was the company founded? -> $x: (thomas watson, be found in, $x) -> (Thomas Watson, can be found in, Part II) -> Part II (13303ms) When was the company founded? 75 % 1.88888888888 When was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft, is found in, 75 %) -> 75 % (13448ms) When was the company founded? the Reimbursement 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (employees, can be found in, the Reimbursement) -> the Reimbursement (13649ms) When was the company founded? Chapter 18 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (Employees, are found in, Chapter 18) -> Chapter 18 (13030ms) When was the company founded? the file 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (this window, can be found in, the file) -> the file (13595ms) When was the company founded? the backseat 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (The employee, was found in, the backseat) -> the backseat (13464ms) When was the company founded? every business 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (virtual employees, can be found in almost, every business) -> every business (13636ms) When was the company founded? sheds and attics 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (Peacock butterflies, are often to be found in, sheds and attics) -> sheds and attics (13143ms) When was the company founded? 1072n 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (1072n, find, companies) -> 1072n (13143ms) When was the company founded? good numbers 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (butterflies, can still be found in, good numbers) -> good numbers (13554ms) When was the company founded? a dumpster 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (Hire employees, was found in, a dumpster) -> a dumpster (13286ms) When was the company founded? the Microsoft Windows Help file 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Windows, can be found in, the Microsoft Windows Help file) -> the Microsoft Windows Help file (13320ms) When was the company founded? tropical rain forests 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> ('s butterflies, are found in, tropical rain forests) -> tropical rain forests (13369ms) When was the company founded? jobs 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (employees, were disproportionately found in, jobs) -> jobs (13525ms) When was the company founded? an irrigation canal 1.88888888888 When was the company founded? -> $x: (hersheys, be found in, $x) -> (Hershey, was found in, an irrigation canal) -> an irrigation canal (13353ms) When was the company founded? Women 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Women, found, companies) -> Women (13161ms) When was the company founded? The research 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (The research, found, companies) -> The research (13030ms) When was the company founded? area newspapers 1.88888888888 When was the company founded? -> $x: (advertisement, be found in, $x) -> (Many advertisements, can be found in, area newspapers) -> area newspapers (13433ms) When was the company founded? front 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (several windows, can be found in, front) -> front (13088ms) When was the company founded? the councils section 1.88888888888 When was the company founded? -> $x: (company member, be found in, $x) -> (member companies, can be found in, the councils section) -> the councils section (13125ms) When was the company founded? a package 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (Butterfly, was found rather conveniently in, a package) -> a package (13303ms) When was the company founded? wet areas 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (This butterfly, is typically found in, wet areas) -> wet areas (13568ms) When was the company founded? the clearings 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (Butterflies, are found in, the clearings) -> the clearings (13161ms) When was the company founded? the Online Books 1.88888888888 When was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft SQL Server, can be found in, the Online Books) -> the Online Books (13286ms) When was the company founded? the first command 1.88888888888 When was the company founded? -> $x: (reliance, be found in, $x) -> (this self-reliance, is found in, the first command) -> the first command (13180ms) When was the company founded? any industry 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (Quality employees, are difficult to find in, any industry) -> any industry (13234ms) When was the company founded? nature 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (allocation strategy, is commonly found in, nature) -> nature (13609ms) When was the company founded? the street 1.88888888888 When was the company founded? -> $x: (director, be found in, $x) -> (The 'Kony 2012' director, was found naked in, the street) -> the street (13582ms) When was the company founded? Dennis Barbour 1.88888888888 When was the company founded? -> $x: (director, be found in, $x) -> (This director, was found in, Dennis Barbour) -> Dennis Barbour (13161ms) When was the company founded? Expression Blend 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Windows 8, can be found in, Expression Blend) -> Expression Blend (13050ms) When was the company founded? the database 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (A temporary employee, is then found in, the database) -> the database (13623ms) When was the company founded? orinoco-fwutils 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Windows drivers, can be found in, orinoco-fwutils) -> orinoco-fwutils (13353ms) When was the company founded? the SWTOR credits guideline 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (The strategies, can be found in, the SWTOR credits guideline) -> the SWTOR credits guideline (13269ms) When was the company founded? the Toronto Star 1.88888888888 When was the company founded? -> $x: (advertisement, be found in, $x) -> (Advertisements, can be found in, the Toronto Star) -> the Toronto Star (13180ms) When was the company founded? a vast number 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Tinted windows, can be found in, a vast number) -> a vast number (13106ms) When was the company founded? Conflict 1.88888888888 When was the company founded? -> $x: (director, be found in, $x) -> (Any Director, found to be in, Conflict) -> Conflict (13464ms) When was the company founded? disabilities 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (disabilities, find, companies) -> disabilities (13417ms) When was the company founded? the Common Files 1.88888888888 When was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft, can be found in, the Common Files) -> the Common Files (13448ms) When was the company founded? Hatch Act regulations 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (federal employees, can also be found in, Hatch Act regulations) -> Hatch Act regulations (13252ms) When was the company founded? New York 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (employees, can also be found in, New York) -> New York (13510ms) When was the company founded? the docutils 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (My strategy, can be found in, the docutils) -> the docutils (13510ms) When was the company founded? drier habitats 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (This butterfly, is generally found in, drier habitats) -> drier habitats (13385ms) When was the company founded? any Indian Grocery Store 1.88888888888 When was the company founded? -> $x: (amul, be found in, $x) -> (Amul ghee, can be found in, any Indian Grocery Store) -> any Indian Grocery Store (13286ms) When was the company founded? the App Store 1.88888888888 When was the company founded? -> $x: (nike, be found in, $x) -> (Nike+ GPS, can be found in, the App Store) -> the App Store (13125ms) When was the company founded? dozens 1.88888888888 When was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft?s music player, is found in, dozens) -> dozens (13050ms) When was the company founded? the gold 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (the employees, is to be found in, the gold) -> the gold (13385ms) When was the company founded? Turkey 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Turkey, Find, Company) -> Turkey (13369ms) When was the company founded? contempt 1.88888888888 When was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft, is found in, contempt) -> contempt (13596ms) When was the company founded? the Decision Guides 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (New employees, can be found in, the Decision Guides) -> the Decision Guides (13069ms) When was the company founded? the publishing archives 1.88888888888 When was the company founded? -> $x: (director, be found in, $x) -> (playwrights and directors, are found in, the publishing archives) -> the publishing archives (13479ms) When was the company founded? the following cases 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (strategy, can be found in, the following cases) -> the following cases (13050ms) When was the company founded? society 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (Butterflies, are found everywhere in, society) -> society (13107ms) When was the company founded? North America 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (Monarch butterflies, are found in, North America) -> North America (13180ms) When was the company founded? footwear shops 1.88888888888 When was the company founded? -> $x: (nike, be found in, $x) -> (Nike Air Jordans, can be found in leading, footwear shops) -> footwear shops (13554ms) When was the company founded? Ch 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (deposition strategy, can be found in, Ch) -> Ch (13609ms) When was the company founded? Misery 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Misery, finds, company) -> Misery (13510ms) When was the company founded? a haystack 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Windows, can be like finding a needle in, a haystack) -> a haystack (13143ms) When was the company founded? the age 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (Butterfly, was found in, the age) -> the age (13180ms) When was the company founded? the Park 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (butterflies, are also found in, the Park) -> the Park (13448ms) When was the company founded? One of my clients 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (One of my clients, found, companies) -> One of my clients (13197ms) When was the company founded? Nicaragua 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (this strategy, was found in, Nicaragua) -> Nicaragua (13010ms) When was the company founded? Singapore 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Singapore, Find, Company) -> Singapore (13595ms) When was the company founded? casinos 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (These strategies, be found in, casinos) -> casinos (13011ms) When was the company founded? Europe 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (These butterflies, are most commonly found in, Europe) -> Europe (13125ms) When was the company founded? Italy 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Italy, Find, Company) -> Italy (13030ms) When was the company founded? the Media section 1.88888888888 When was the company founded? -> $x: (advertisement, be found in, $x) -> (These advertisements, can be found in, the Media section) -> the Media section (13568ms) When was the company founded? magazines 1.88888888888 When was the company founded? -> $x: (advertisement, be found in, $x) -> (their advertisements, can be found in, magazines) -> magazines (13180ms) When was the company founded? a new employee retention guide 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (employee turnover, are found in, a new employee retention guide) -> a new employee retention guide (13539ms) When was the company founded? Fresno 1.88888888888 When was the company founded? -> $x: (advertisement, be found in, $x) -> (The advertisement, can be found in, Fresno) -> Fresno (13385ms) When was the company founded? the Sudan 1.88888888888 When was the company founded? -> $x: (secretary, be found in, $x) -> (Secretary Bird, is found in, the Sudan) -> the Sudan (13649ms) When was the company founded? the Content Catalog 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Windows Phone, can be found in, the Content Catalog) -> the Content Catalog (13417ms) When was the company founded? open sunny areas 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (These butterflies, are found in, open sunny areas) -> open sunny areas (13337ms) When was the company founded? the widely known project 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Windows, can also be found in, the widely known project) -> the widely known project (13286ms) When was the company founded? the section 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (Place strategy, are found in, the section) -> the section (13050ms) When was the company founded? any music teacher 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (Wands strategy, can be found in, any music teacher) -> any music teacher (13464ms) When was the company founded? distinctive colors 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (butterflies, could possibly be found out in, distinctive colors) -> distinctive colors (13401ms) When was the company founded? the typical parenting book 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (the strategies, can also be found in, the typical parenting book) -> the typical parenting book (13568ms) When was the company founded? every country 1.88888888888 When was the company founded? -> $x: (mcdonald, be found in, $x) -> (McDonalds and Citigroup, can be found in almost, every country) -> every country (13269ms) When was the company founded? the NetCOBOL Installation Guide 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Windows ?, can be found in, the NetCOBOL Installation Guide) -> the NetCOBOL Installation Guide (13320ms) When was the company founded? the Windows directory 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Windows 95, is usually found in, the Windows directory) -> the Windows directory (13161ms) When was the company founded? several sizes and styles 1.88888888888 When was the company founded? -> $x: (nike, be found in, $x) -> (Nike dunks, can be found in, several sizes and styles) -> several sizes and styles (13596ms) When was the company founded? the caves 1.88888888888 When was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft FS, has been found in, the caves) -> the caves (13596ms) When was the company founded? sub-Saharan Africa 1.88888888888 When was the company founded? -> $x: (secretary, be found in, $x) -> (Secretary bird, is only found in, sub-Saharan Africa) -> sub-Saharan Africa (13479ms) When was the company founded? the Arctic regions 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (Butterflies, are even found in, the Arctic regions) -> the Arctic regions (13251ms) When was the company founded? funding 1.88888888888 When was the company founded? -> $x: (director, be found in, $x) -> (ECSE/Regional Directors, have also been key in finding, funding) -> funding (13050ms) When was the company founded? the genera oncidium 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (Butterfly orchids, are found in, the genera oncidium) -> the genera oncidium (13675ms) When was the company founded? the Resources section 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (legal strategies, can be found in, the Resources section) -> the Resources section (13649ms) When was the company founded? a variety 1.88888888888 When was the company founded? -> $x: (nike, be found in, $x) -> (Nike dunks, can be found in, a variety) -> a variety (13554ms) When was the company founded? Appendix B. 1.88888888888 When was the company founded? -> $x: (director, be found in, $x) -> (Directors, can be found in, Appendix B.) -> Appendix B. (13216ms) When was the company founded? a small lobby 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (windows, can be found in, a small lobby) -> a small lobby (13088ms) When was the company founded? the open grassland areas 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (butterflies, are found in, the open grassland areas) -> the open grassland areas (13433ms) When was the company founded? different parts 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (window glass, has been found in, different parts) -> different parts (13143ms) When was the company founded? churches 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Rose windows, can be found in, churches) -> churches (13369ms) When was the company founded? May 1.88888888888 When was the company founded? -> $x: (advertisement, be found in, $x) -> (this same advertisement, is found in, May) -> May (13401ms) When was the company founded? aid 1.88888888888 When was the company founded? -> $x: (director, be found in, $x) -> (directors, shall find will be in, aid) -> aid (13234ms) When was the company founded? browse menu 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (browse menu, Find, companies) -> browse menu (13180ms) When was the company founded? several different colorings 1.88888888888 When was the company founded? -> $x: (adidas, be found in, $x) -> (Adidas gazelles, can be found in, several different colorings) -> several different colorings (13180ms) When was the company founded? the Auditor-Controller 1.88888888888 When was the company founded? -> $x: (auditor, be found in, $x) -> (Accountant-Auditor, is found only in, the Auditor-Controller) -> the Auditor-Controller (13675ms) When was the company founded? southern Japan 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (Butterflies, were once found only in, southern Japan) -> southern Japan (13433ms) When was the company founded? LASER BUDDY NEWS SERVICE 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (LASER BUDDY NEWS SERVICE, Find, Companies) -> LASER BUDDY NEWS SERVICE (13448ms) When was the company founded? the sections 1.88888888888 When was the company founded? -> $x: (limited company, be found in, $x) -> (Private Limited Companies, can be found in, the sections) -> the sections (13568ms) When was the company founded? numerous 1.88888888888 When was the company founded? -> $x: (chanel, be found in, $x) -> (Chanel bags, can be found in, numerous) -> numerous (13161ms) When was the company founded? Moving business CA 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Moving business CA, finds, company) -> Moving business CA (13180ms) When was the company founded? the Fortune 500 1.88888888888 When was the company founded? -> $x: (insurance company, be found in, $x) -> (so many insurance companies, can be found in, the Fortune 500) -> the Fortune 500 (13385ms) When was the company founded? the desert north 1.88888888888 When was the company founded? -> $x: (mcdonald, be found in, $x) -> (McDonald?s body, was found in, the desert north) -> the desert north (13662ms) When was the company founded? Appendix 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (the strategy, is found in, Appendix) -> Appendix (13554ms) When was the company founded? Microsoft knowledgebase article 967715 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Windows, can be found in, Microsoft knowledgebase article 967715) -> Microsoft knowledgebase article 967715 (13337ms) When was the company founded? the Personalization menu 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Windows 7, can be found in, the Personalization menu) -> the Personalization menu (13464ms) When was the company founded? Section 25504 1.88888888888 When was the company founded? -> $x: (director, be found in, $x) -> (directors, can be found in, Section 25504) -> Section 25504 (13401ms) When was the company founded? the Media Center 1.88888888888 When was the company founded? -> $x: (director, be found in, $x) -> ('s Director, can be found in, the Media Center) -> the Media Center (13448ms) When was the company founded? various sizes 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Window coverings, can be found in, various sizes) -> various sizes (13636ms) When was the company founded? different panel measurements 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Window shades, can be found in, different panel measurements) -> different panel measurements (13495ms) When was the company founded? Menegroth 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (this window, was to be found in, Menegroth) -> Menegroth (13088ms) When was the company founded? the right approach 1.88888888888 When was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft, are taking a lead in finding, the right approach) -> the right approach (13540ms) When was the company founded? the laundry room 1.88888888888 When was the company founded? -> $x: (secretary, be found in, $x) -> (a 32-year-old legal secretary, is found in, the laundry room) -> the laundry room (13675ms) When was the company founded? an English country garden 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (' butterfly, was found in, an English country garden) -> an English country garden (13540ms) When was the company founded? Christmas Ornaments 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Christmas Ornaments, Find, companies) -> Christmas Ornaments (13269ms) When was the company founded? Service List Filter 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Service List Filter, Find, company) -> Service List Filter (13088ms) When was the company founded? the newspaper 1.88888888888 When was the company founded? -> $x: (advertisement, be found in, $x) -> (sale advertisements, are found in, the newspaper) -> the newspaper (13197ms) When was the company founded? the water 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (The butterfly, was found floating in, the water) -> the water (13069ms) When was the company founded? the roadside flowers 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (White Butterflies, were found in, the roadside flowers) -> the roadside flowers (13539ms) When was the company founded? Rome 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Rome, Find, Company) -> Rome (13554ms) When was the company founded? South Dakota 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (South Dakota, Find, companies) -> South Dakota (13050ms) When was the company founded? the first place 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (any linking strategy, is being found in, the first place) -> the first place (13510ms) When was the company founded? Exclusive B2B opportunities 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Exclusive B2B opportunities, find, companies) -> Exclusive B2B opportunities (13234ms) When was the company founded? 100 countries 1.88888888888 When was the company founded? -> $x: (mcdonald, be found in, $x) -> (McDonald?s restaurants, are found in over, 100 countries) -> 100 countries (13069ms) When was the company founded? 2002 Annual Report 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (its strategy, can be found in, 2002 Annual Report) -> 2002 Annual Report (13479ms) When was the company founded? the event 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (an employee, is found In, the event) -> the event (13337ms) When was the company founded? a Auto motor sport magazine 1.88888888888 When was the company founded? -> $x: (audi, be found in, $x) -> (Audi A3, is found in, a Auto motor sport magazine) -> a Auto motor sport magazine (13609ms) When was the company founded? basements 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Hopper windows, are typically found in, basements) -> basements (13649ms) When was the company founded? older homes 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (window, is often found in, older homes) -> older homes (13269ms) When was the company founded? 1 Corinthians 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (this strategy, is found in, 1 Corinthians) -> 1 Corinthians (13143ms) When was the company founded? the upper left corner 1.88888888888 When was the company founded? -> $x: (microsoft, be found in, $x) -> (The Microsoft Office Button, is found in, the upper left corner) -> the upper left corner (13030ms) When was the company founded? the Guardian 1.88888888888 When was the company founded? -> $x: (advertisement, be found in, $x) -> (Advertisement More English wit, can be found in, the Guardian) -> the Guardian (13417ms) When was the company founded? Deborah Brake 1.88888888888 When was the company founded? -> $x: (reliance, be found in, $x) -> (reliance, can be found in, Deborah Brake) -> Deborah Brake (13649ms) When was the company founded? Paraguay 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Paraguay, Find, Company) -> Paraguay (13197ms) When was the company founded? association 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (This butterfly, is generally found in, association) -> association (13417ms) When was the company founded? Young 2001 , p 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (a Window ?, can be found in, Young 2001 , p) -> Young 2001 , p (13554ms) When was the company founded? medical journals 1.88888888888 When was the company founded? -> $x: (advertisement, be found in, $x) -> (Advertisements, are found in, medical journals) -> medical journals (13636ms) When was the company founded? the columns 1.88888888888 When was the company founded? -> $x: (advertisement, be found in, $x) -> (a Spanish advertisement, could be found in, the columns) -> the columns (13161ms) When was the company founded? Whole Foods 1.88888888888 When was the company founded? -> $x: (coca cola, be found in, $x) -> (Coca-Cola brands, can be found in, Whole Foods) -> Whole Foods (13385ms) When was the company founded? Black 1.88888888888 When was the company founded? -> $x: (mcdonald, be found in, $x) -> (McDonald, is found in, Black) -> Black (13622ms) When was the company founded? Directory Description 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Directory Description, Find, companies) -> Directory Description (13353ms) When was the company founded? insurance 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (insurance, finding, companies) -> insurance (13125ms) When was the company founded? stores 1.88888888888 When was the company founded? -> $x: (nike, be found in, $x) -> (Nike rajon rondo shoes, are found in, stores) -> stores (13216ms) When was the company founded? managerial 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> ('s employees, are found in, managerial) -> managerial (13636ms) When was the company founded? the County Court 1.88888888888 When was the company founded? -> $x: (director, be found in, $x) -> (a former director, has been found guilty in, the County Court) -> the County Court (13143ms) When was the company founded? Companies 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Companies, find, company) -> Companies (13525ms) When was the company founded? every last detail 1.88888888888 When was the company founded? -> $x: (audus, be found in, $x) -> (the Audi A1, is found in, every last detail) -> every last detail (13448ms) When was the company founded? woodlands 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (This butterfly, is commonly found in, woodlands) -> woodlands (13180ms) When was the company founded? an area 1.88888888888 When was the company founded? -> $x: (advertisement, be found in, $x) -> (Sarasota advertisement real estate, is found in, an area) -> an area (13582ms) When was the company founded? numerous names 1.88888888888 When was the company founded? -> $x: (nike, be found in, $x) -> (the Ancient Greek nike, can be found in, numerous names) -> numerous names (13582ms) When was the company founded? one place 1.88888888888 When was the company founded? -> $x: (insurance company, be found in, $x) -> (insurance companies, can be found all in, one place) -> one place (13337ms) When was the company founded? the user-friendly menus 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (a strategy, can be easily found in, the user-friendly menus) -> the user-friendly menus (13369ms) When was the company founded? exclusive Genuine Denim jeans 1.88888888888 When was the company founded? -> $x: (nike, be found in, $x) -> (the Nike products, are found in, exclusive Genuine Denim jeans) -> exclusive Genuine Denim jeans (13286ms) When was the company founded? the Centre 1.88888888888 When was the company founded? -> $x: (director, be found in, $x) -> (the same directors, can be found in, the Centre) -> the Centre (13234ms) When was the company founded? America 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (America, found, companies) -> America (13595ms) When was the company founded? Australia 1.88888888888 When was the company founded? -> $x: (secretary, be found in, $x) -> (these secretaries, is to find legal jobs in, Australia) -> Australia (13385ms) When was the company founded? spam emails 1.88888888888 When was the company founded? -> $x: (advertisement, be found in, $x) -> (The job advertisements, can be found in, spam emails) -> spam emails (13510ms) When was the company founded? the licensing aspects 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Window 8, might be found in, the licensing aspects) -> the licensing aspects (13030ms) When was the company founded? Costa Rica 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (butterflies, are found in, Costa Rica) -> Costa Rica (13143ms) When was the company founded? investors 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (investors, find, companies) -> investors (13525ms) When was the company founded? users 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (users, find, companies) -> users (13369ms) When was the company founded? KDE 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (KDE, find, companies) -> KDE (13401ms) When was the company founded? sexual harassment 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (employee who, is found to have engaged in, sexual harassment) -> sexual harassment (13525ms) When was the company founded? New Hampshire 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (New Hampshire, Find, companies) -> New Hampshire (13320ms) When was the company founded? Victorian homes 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (These windows, are often found in, Victorian homes) -> Victorian homes (13525ms) When was the company founded? flagrant violation 1.88888888888 When was the company founded? -> $x: (director, be found in, $x) -> (Any Director, found to be in, flagrant violation) -> flagrant violation (13011ms) When was the company founded? a new job 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (redundant employees, are helped in finding, a new job) -> a new job (13510ms) When was the company founded? a failure 1.88888888888 When was the company founded? -> $x: (insurance company, be found in, $x) -> (the insurance company, was found in, a failure) -> a failure (13161ms) When was the company founded? concerted activity 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (an employee, was found to have engaged in, concerted activity) -> concerted activity (13649ms) When was the company founded? social networking sites 1.88888888888 When was the company founded? -> $x: (advertisement, be found in, $x) -> (advertisements, are found in, social networking sites) -> social networking sites (13662ms) When was the company founded? the Senator?s apartment 1.88888888888 When was the company founded? -> $x: (secretary, be found in, $x) -> (a Senator?s secretary, is found dead in, the Senator?s apartment) -> the Senator?s apartment (13197ms) When was the company founded? the simplicity 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Windows Server, can be found in, the simplicity) -> the simplicity (13011ms) When was the company founded? wet meadows 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (The butterfly, is often found in, wet meadows) -> wet meadows (13125ms) When was the company founded? the register 1.88888888888 When was the company founded? -> $x: (director, be found in, $x) -> (company directors, can be found in, the register) -> the register (13582ms) When was the company founded? Google Maps 1.88888888888 When was the company founded? -> $x: (local company, be found in, $x) -> (your ?local? based company, is found in, Google Maps) -> Google Maps (13568ms) When was the company founded? a 6-square-mile area 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (the butterfly, has only been found in, a 6-square-mile area) -> a 6-square-mile area (13417ms) When was the company founded? various altitudes 1.88888888888 When was the company founded? -> $x: (nike, be found in, $x) -> (Nike Soccer Shoes, can be found in, various altitudes) -> various altitudes (13479ms) When was the company founded? publications 1.88888888888 When was the company founded? -> $x: (advertisement, be found in, $x) -> (many colour advertisements, are found in, publications) -> publications (13495ms) When was the company founded? several cases 1.88888888888 When was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft, has been found guilty recently in, several cases) -> several cases (13662ms) When was the company founded? Bermuda 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (' employees, are to be found in, Bermuda) -> Bermuda (13662ms) When was the company founded? The Information Toolkit 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (this strategy, can be found in, The Information Toolkit) -> The Information Toolkit (13216ms) When was the company founded? possession 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (an employee/student, is found in, possession) -> possession (13636ms) When was the company founded? the Copyright section 1.88888888888 When was the company founded? -> $x: (dell, be found in, $x) -> (Dell , Bryan and T-Duck, can be found in, the Copyright section) -> the Copyright section (13369ms) When was the company founded? an order 1.88888888888 When was the company founded? -> $x: (nike, be found in, $x) -> (this Nike SWOOSH, was found in, an order) -> an order (13401ms) When was the company founded? a small conference room 1.88888888888 When was the company founded? -> $x: (auditor, be found in, $x) -> (the auditor, are found together in, a small conference room) -> a small conference room (13143ms) When was the company founded? abandoned churches and schools 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (glass windows, can be found in, abandoned churches and schools) -> abandoned churches and schools (13596ms) When was the company founded? the Shop Floor module 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (The employee number, can be found in, the Shop Floor module) -> the Shop Floor module (13622ms) When was the company founded? specific areas 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (butterflies, are found in, specific areas) -> specific areas (13595ms) When was the company founded? the interview 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (this strategy, can be can be found in, the interview) -> the interview (13495ms) When was the company founded? Victoria 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (butterfly species, are found in, Victoria) -> Victoria (13050ms) When was the company founded? D102 1.88888888888 When was the company founded? -> $x: (secretary, be found in, $x) -> (the Biology Department Secretary, can be found in, D102) -> D102 (13417ms) When was the company founded? the Start Menu 1.88888888888 When was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft Sound Recorder, can be found in, the Start Menu) -> the Start Menu (13662ms) When was the company founded? Maya architecture 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (True windows, are rarely found in, Maya architecture) -> Maya architecture (13582ms) When was the company founded? literate programming 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (this strategy, are found in, literate programming) -> literate programming (13662ms) When was the company founded? the 2003 MA Buffer Zone Manual 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (This strategy, can be found in, the 2003 MA Buffer Zone Manual) -> the 2003 MA Buffer Zone Manual (13320ms) When was the company founded? sippy cups 1.88888888888 When was the company founded? -> $x: (advertisement, be found in, $x) -> (advertisement BPA, is found in, sippy cups) -> sippy cups (13662ms) When was the company founded? an A.T. Kearney study 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (an A.T. Kearney study, finds, companies) -> an A.T. Kearney study (13125ms) When was the company founded? aggregations 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (This butterfly, is sometimes found in, aggregations) -> aggregations (13525ms) When was the company founded? low 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (This butterfly, is found in, low) -> low (13369ms) When was the company founded? the middle 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (a truck company employee, is found in, the middle) -> the middle (13433ms) When was the company founded? several designs and sizes 1.88888888888 When was the company founded? -> $x: (nike, be found in, $x) -> (Nike dunks, can be found in, several designs and sizes) -> several designs and sizes (13595ms) When was the company founded? plastics 1.88888888888 When was the company founded? -> $x: (advertisement, be found in, $x) -> (advertisement Phthalates, are found in, plastics) -> plastics (13197ms) When was the company founded? 2010 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (2010, finds, companies) -> 2010 (13479ms) When was the company founded? Indianapolis 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Indianapolis, Find, Company) -> Indianapolis (13525ms) When was the company founded? the S class 1.88888888888 When was the company founded? -> $x: (audi, be found in, $x) -> (Audi, is found in, the S class) -> the S class (13269ms) When was the company founded? the chapter 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (teaching strategies, can be found in, the chapter) -> the chapter (13320ms) When was the company founded? Search Techniques Dialog Search Tip 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Search Techniques Dialog Search Tip, Find, companies) -> Search Techniques Dialog Search Tip (13143ms) When was the company founded? corruption 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (183 employees, were found involved in, corruption) -> corruption (13337ms) When was the company founded? open areas 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (The butterflies, are normally found in, open areas) -> open areas (13234ms) When was the company founded? the far north 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (Butterflies and bees, are found in, the far north) -> the far north (13479ms) When was the company founded? Guillermo Del Toro 1.88888888888 When was the company founded? -> $x: (director, be found in, $x) -> (a director, had been found in, Guillermo Del Toro) -> Guillermo Del Toro (13337ms) When was the company founded? MSKB 246817 1.88888888888 When was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft, can be found in, MSKB 246817) -> MSKB 246817 (13234ms) When was the company founded? 27 hospitals 1.88888888888 When was the company founded? -> $x: (mcdonald, be found in, $x) -> (McDonald, is found in, 27 hospitals) -> 27 hospitals (13417ms) When was the company founded? an entire apartment 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (one window, was found in, an entire apartment) -> an entire apartment (13269ms) When was the company founded? the following May issue 1.88888888888 When was the company founded? -> $x: (director, be found in, $x) -> (technical director, may be found in, the following May issue) -> the following May issue (13675ms) When was the company founded? the left navigation area 1.88888888888 When was the company founded? -> $x: (secretary, be found in, $x) -> (Legal Secretary, can be found in, the left navigation area) -> the left navigation area (13636ms) When was the company founded? the help articles 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (Success strategies, can be found in, the help articles) -> the help articles (13464ms) When was the company founded? Soft Ground 1.88888888888 When was the company founded? -> $x: (adidas, be found in, $x) -> (The Adidas F10, can be found in, Soft Ground) -> Soft Ground (13252ms) When was the company founded? Section 13 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (asbestos employees, can be found in, Section 13) -> Section 13 (13479ms) When was the company founded? chapter 5 1.88888888888 When was the company founded? -> $x: (auditor, be found in, $x) -> (the Public Auditor, are found in, chapter 5) -> chapter 5 (13623ms) When was the company founded? a park 1.88888888888 When was the company founded? -> $x: (mcdonald, be found in, $x) -> (McDonald, was found alone in, a park) -> a park (13649ms) When was the company founded? wet 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (This butterfly, is generally found in, wet) -> wet (13011ms) When was the company founded? the north choir clearstorey 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (such windows, are to be found in, the north choir clearstorey) -> the north choir clearstorey (13688ms) When was the company founded? the installation guide 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Windows, can be found in, the installation guide) -> the installation guide (13252ms) When was the company founded? customers 1.88888888888 When was the company founded? -> $x: (advertisement, be found in, $x) -> (Advertisement, is always powerful in finding, customers) -> customers (13286ms) When was the company founded? Nepal 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (butterflies, are found in, Nepal) -> Nepal (13622ms) When was the company founded? Part One 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (The strategies, are found in, Part One) -> Part One (13622ms) When was the company founded? the trunk 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (Store employee Abdel Hamdan, was found safe in, the trunk) -> the trunk (13353ms) When was the company founded? the document monitor .xml 1.88888888888 When was the company founded? -> $x: (dell, be found in, $x) -> (Dell, is found in, the document monitor .xml) -> the document monitor .xml (13353ms) When was the company founded? the opt directory 1.88888888888 When was the company founded? -> $x: (director, be found in, $x) -> (The portal director, can be found in, the opt directory) -> the opt directory (13320ms) When was the company founded? a probe 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (a probe, found, companies) -> a probe (13106ms) When was the company founded? the collections 1.88888888888 When was the company founded? -> $x: (chanel, be found in, $x) -> (Chanel, can be found in, the collections) -> the collections (13596ms) When was the company founded? NYC. 1.88888888888 When was the company founded? -> $x: (director, be found in, $x) -> (my brilliant director friend, is normally found in, NYC.) -> NYC. (13320ms) When was the company founded? Appendix I. 1.88888888888 When was the company founded? -> $x: (director, be found in, $x) -> (the Library Director, can be found in, Appendix I.) -> Appendix I. (13353ms) When was the company founded? oakwoods 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (butterflies, are found in, oakwoods) -> oakwoods (13554ms) When was the company founded? free conference venue 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (free conference venue, finding, company) -> free conference venue (13568ms) When was the company founded? Business Directory 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Business Directory, Find, companies) -> Business Directory (13636ms) When was the company founded? an incorrect?and 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (employees, were found in, an incorrect?and) -> an incorrect?and (13568ms) When was the company founded? Section 13.3 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (locking strategies, can be found in, Section 13.3) -> Section 13.3 (13675ms) When was the company founded? the /nt directory 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Windows NT, can be found in, the /nt directory) -> the /nt directory (13161ms) When was the company founded? the biggest problems 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (the biggest problems, find, companies) -> the biggest problems (13385ms) When was the company founded? Appendix 1 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (employee evaluations, is found in, Appendix 1) -> Appendix 1 (13623ms) When was the company founded? corporations 1.88888888888 When was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft, is typically found in, corporations) -> corporations (13568ms) When was the company founded? various types 1.88888888888 When was the company founded? -> $x: (nike, be found in, $x) -> (Nike Men Shoes, can be found in, various types) -> various types (13622ms) When was the company founded? Japanese addresses 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Windows, so is often found in, Japanese addresses) -> Japanese addresses (13234ms) When was the company founded? Article A 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (employee, are found in, Article A) -> Article A (13069ms) When was the company founded? Connecticut 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Connecticut, Find, companies) -> Connecticut (13161ms) When was the company founded? every habitat 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (Butterflies, are to be found in nearly, every habitat) -> every habitat (13088ms) When was the company founded? Section 4.2.8 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (window functions, can be found in, Section 4.2.8) -> Section 4.2.8 (13595ms) When was the company founded? the File menu 1.88888888888 When was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft Word, is found in, the File menu) -> the File menu (13662ms) When was the company founded? Mexico 1.88888888888 When was the company founded? -> $x: (coca cola, be found in, $x) -> (Glass Coca-Cola bottles, are very hard to find in, Mexico) -> Mexico (13369ms) When was the company founded? the links 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (these strategies, can be found in, the links) -> the links (13320ms) When was the company founded? 90 percent 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Windows, is found in about, 90 percent) -> 90 percent (13337ms) When was the company founded? Tulsa 1.88888888888 When was the company founded? -> $x: (coca cola, be found in, $x) -> (kosher-for-Passover Coca-Cola, can be found in, Tulsa) -> Tulsa (13106ms) When was the company founded? Kensington 1.88888888888 When was the company founded? -> $x: (mcdonald, be found in, $x) -> (Tim McDonald, is finding the vacant land in, Kensington) -> Kensington (13662ms) When was the company founded? NICHCY 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (helpful strategies, can be found in, NICHCY) -> NICHCY (13286ms) When was the company founded? the next section 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (school employees, can be found in, the next section) -> the next section (13636ms) When was the company founded? different asset classes 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (Strategy funds, can also be found in, different asset classes) -> different asset classes (13417ms) When was the company founded? Georgian and Victorian homes 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (window design, is often found in, Georgian and Victorian homes) -> Georgian and Victorian homes (13510ms) When was the company founded? IT and finance 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (strategy, can be found in, IT and finance) -> IT and finance (13433ms) When was the company founded? secs 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (state employees, are found in, secs) -> secs (13286ms) When was the company founded? A lonely little boy 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (A lonely little boy, finds, company) -> A lonely little boy (13595ms) When was the company founded? deposits 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (Butterfly fossils, have been found in, deposits) -> deposits (13595ms) When was the company founded? Saint Mary 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (The windows, are found in, Saint Mary) -> Saint Mary (13609ms) When was the company founded? SAM Broadcaster 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (This window, is found in, SAM Broadcaster) -> SAM Broadcaster (13479ms) When was the company founded? the forest 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (butterflies, can be found in, the forest) -> the forest (13464ms) When was the company founded? consumers 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (consumers, find, companies) -> consumers (13636ms) When was the company founded? the planet 1.88888888888 When was the company founded? -> $x: (coca cola, be found in, $x) -> (Coca Cola, can be found everywhere in, the planet) -> the planet (13353ms) When was the company founded? numerous dimensions 1.88888888888 When was the company founded? -> $x: (nike, be found in, $x) -> (Nike dunks, can be found in, numerous dimensions) -> numerous dimensions (13495ms) When was the company founded? 1110ll 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (1110ll, find, companies) -> 1110ll (13286ms) When was the company founded? the living room area 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (A window, was found damaged in, the living room area) -> the living room area (13636ms) When was the company founded? copies 1.88888888888 When was the company founded? -> $x: (advertisement, be found in, $x) -> (These advertisements, are found in, copies) -> copies (13369ms) When was the company founded? California 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (The butterfly, is found only in, California) -> California (13216ms) When was the company founded? more plants 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (strategy, is found in, more plants) -> more plants (13539ms) When was the company founded? the original conference venue 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (the original conference venue, finding, company) -> the original conference venue (13464ms) When was the company founded? the wealth 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (this strategy, is found in, the wealth) -> the wealth (13269ms) When was the company founded? about 90 percent of all computer desktops 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Windows, is found in, about 90 percent of all computer desktops) -> about 90 percent of all computer desktops (13161ms) When was the company founded? the link 1.88888888888 When was the company founded? -> $x: (adidas, be found in, $x) -> (the Adidas Barricade IV tennis shoes, can be found in, the link) -> the link (13106ms) When was the company founded? the rainforests 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (Morpho butterflies, are found in, the rainforests) -> the rainforests (13197ms) When was the company founded? downloads 1.88888888888 When was the company founded? -> $x: (ibm, be found in, $x) -> (IBM, can be found in, downloads) -> downloads (13088ms) When was the company founded? Michael Tracy 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (company strategy, can be found in, Michael Tracy) -> Michael Tracy (13623ms) When was the company founded? Location 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Location, Find, companies) -> Location (13180ms) When was the company founded? the OMRS Journal 1.88888888888 When was the company founded? -> $x: (secretary, be found in, $x) -> (the Branch Secretary, can be found in, the OMRS Journal) -> the OMRS Journal (13609ms) When was the company founded? the downloads section 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (strategy, can be found in, the downloads section) -> the downloads section (13479ms) When was the company founded? Business owners 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Business owners, find, ... Company) -> Business owners (13303ms) When was the company founded? Bain 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Bain, found, companies) -> Bain (13030ms) When was the company founded? April 2000 1.88888888888 When was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft, was found guilty in, April 2000) -> April 2000 (13609ms) When was the company founded? the brushy fields 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (butterfly species, can be found in, the brushy fields) -> the brushy fields (13197ms) When was the company founded? section 115 1.88888888888 When was the company founded? -> $x: (director, be found in, $x) -> (Directors, is found in, section 115) -> section 115 (13675ms) When was the company founded? Paradise 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Paradise, Found, Company) -> Paradise (13030ms) When was the company founded? the 04/26/97 Feature 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (The first butterfly chart, is found in, the 04/26/97 Feature) -> the 04/26/97 Feature (13417ms) When was the company founded? The study 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (The study, found, companies) -> The study (13636ms) When was the company founded? Standard 5A3 1.88888888888 When was the company founded? -> $x: (director, be found in, $x) -> (the program director, are found in, Standard 5A3) -> Standard 5A3 (13539ms) When was the company founded? gallbladder 1.88888888888 When was the company founded? -> $x: (secretary, be found in, $x) -> (the secretary tubules, be found in, gallbladder) -> gallbladder (12990ms) When was the company founded? the City 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (all employees, are found in, the City) -> the City (13143ms) When was the company founded? a letter 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (Butterfly, was found in, a letter) -> a letter (13143ms) When was the company founded? mature economies 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (entrepreneurial employees, are found in, mature economies) -> mature economies (13320ms) When was the company founded? LogicIrpDispatcher 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Windows, can be found in, LogicIrpDispatcher) -> LogicIrpDispatcher (13161ms) When was the company founded? Viewers 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Viewers, find, company) -> Viewers (13125ms) When was the company founded? the same presentation 1.88888888888 When was the company founded? -> $x: (barbie, be found in, $x) -> (the Barbie 2010, can be found in, the same presentation) -> the same presentation (13385ms) When was the company founded? entrepreneurs 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (entrepreneurs, found, companies) -> entrepreneurs (13582ms) When was the company founded? portions 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (The butterfly, can be found in, portions) -> portions (13662ms) When was the company founded? the adoption 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (the strategy, may be found in, the adoption) -> the adoption (13125ms) When was the company founded? Africa 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (This butterfly, is found in, Africa) -> Africa (13286ms) When was the company founded? the concept 1.88888888888 When was the company founded? -> $x: (company law, be found in, $x) -> (company law, can be found in, the concept) -> the concept (13320ms) When was the company founded? the back 1.88888888888 When was the company founded? -> $x: (advertisement, be found in, $x) -> (Advertisements, were often found in, the back) -> the back (13269ms) When was the company founded? the Ile de France 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (rose windows, are to be found in, the Ile de France) -> the Ile de France (13216ms) When was the company founded? the Native American Legend 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (butterflies, can be found in, the Native American Legend) -> the Native American Legend (13448ms) When was the company founded? subsidiary decisions 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (strategy, is found more in, subsidiary decisions) -> subsidiary decisions (13180ms) When was the company founded? Asia 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (this butterfly, can be found only in, Asia) -> Asia (13234ms) When was the company founded? the resourceful side 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (Alternate strategies, might be found in, the resourceful side) -> the resourceful side (13252ms) When was the company founded? the work 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (strategy, may be found in, the work) -> the work (13675ms) When was the company founded? You?ll 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (You?ll, find, company) -> You?ll (13479ms) When was the company founded? Insert option 1.88888888888 When was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft Word, is found in, Insert option) -> Insert option (13495ms) When was the company founded? belief 1.88888888888 When was the company founded? -> $x: (nike, be found in, $x) -> (The Nike SB dive brands, can be found in, belief) -> belief (13369ms) When was the company founded? meadows 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (Monarch butterflies, are found in, meadows) -> meadows (13030ms) When was the company founded? stores coast 1.88888888888 When was the company founded? -> $x: (nike, be found in, $x) -> (Nike basketball kicks, are found in, stores coast) -> stores coast (13050ms) When was the company founded? the libero extension 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (this window, can be found in, the libero extension) -> the libero extension (13010ms) When was the company founded? East Perth 1.88888888888 When was the company founded? -> $x: (audus, be found in, $x) -> (The stolen Audi, was found burning in, East Perth) -> East Perth (13554ms) When was the company founded? the company accounts 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (employees, can be found in, the company accounts) -> the company accounts (13662ms) When was the company founded? downtown areas 1.88888888888 When was the company founded? -> $x: (mcdonald, be found in, $x) -> (KFC and McDonalds, can be found in, downtown areas) -> downtown areas (13353ms) When was the company founded? English pubs 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (windows, can still sometimes be found in, English pubs) -> English pubs (13011ms) When was the company founded? a position 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (more employees, are finding themselves in, a position) -> a position (13582ms) When was the company founded? Appendices 1 , 2 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (management strategies, can be found in, Appendices 1 , 2) -> Appendices 1 , 2 (13525ms) When was the company founded? the bag 1.88888888888 When was the company founded? -> $x: (nike, be found in, $x) -> (Nike Golf equipment, can be found in, the bag) -> the bag (13197ms) When was the company founded? one vault 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (Three employees, were found in, one vault) -> one vault (13030ms) When was the company founded? the Human Resources Manual 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (SPA employees, are found in, the Human Resources Manual) -> the Human Resources Manual (13106ms) When was the company founded? the directors 1.88888888888 When was the company founded? -> $x: (auditor, be found in, $x) -> (its auditors, may be found in, the directors) -> the directors (13609ms) When was the company founded? the Sunday edition 1.88888888888 When was the company founded? -> $x: (advertisement, be found in, $x) -> (Some bid advertisements, may be found in, the Sunday edition) -> the Sunday edition (13269ms) When was the company founded? the meantime 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (employees, have been found in, the meantime) -> the meantime (13622ms) When was the company founded? big cities 1.88888888888 When was the company founded? -> $x: (nike, be found in, $x) -> (Official Nike stores, are found in, big cities) -> big cities (13401ms) When was the company founded? the relevant award 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (employee, can be found in, the relevant award) -> the relevant award (13495ms) When was the company founded? InsteantGet 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (windows explorer, could be found in, InsteantGet) -> InsteantGet (13662ms) When was the company founded? the cellar 1.88888888888 When was the company founded? -> $x: (mcdonald, be found in, $x) -> (McDonald, was found in, the cellar) -> the cellar (13401ms) When was the company founded? the front pages 1.88888888888 When was the company founded? -> $x: (local company, be found in, $x) -> (local phone companies, should be found in, the front pages) -> the front pages (13417ms) When was the company founded? a redesigned user interface 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Windows 7, can be found in, a redesigned user interface) -> a redesigned user interface (13385ms) When was the company founded? the ANSI Constitution 1.88888888888 When was the company founded? -> $x: (director, be found in, $x) -> (Directors, can be found in, the ANSI Constitution) -> the ANSI Constitution (13417ms) When was the company founded? the biggest markets 1.88888888888 When was the company founded? -> $x: (director, be found in, $x) -> (news directors, are most commonly found in, the biggest markets) -> the biggest markets (13688ms) When was the company founded? Metro 1.88888888888 When was the company founded? -> $x: (microsoft, be found in, $x) -> (Microsoft?s Ribbon, can be found nowhere in, Metro) -> Metro (13623ms) When was the company founded? the vast majority 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Windows Server, are found in, the vast majority) -> the vast majority (13525ms) When was the company founded? also information 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (also information, found, company) -> also information (13609ms) When was the company founded? a study 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (a study, found, companies) -> a study (13143ms) When was the company founded? the Windows root directory 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Windows, will be found in, the Windows root directory) -> the Windows root directory (13050ms) When was the company founded? 1923 1.88888888888 When was the company founded? -> $x: (insurance company, be found in, $x) -> (The national health insurance company, was found in, 1923) -> 1923 (13069ms) When was the company founded? Article VI 1.88888888888 When was the company founded? -> $x: (director, be found in, $x) -> (Directors, can also be found in, Article VI) -> Article VI (13401ms) When was the company founded? Erie 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Erie, Find, Company) -> Erie (13649ms) When was the company founded? metallic silver paint 1.88888888888 When was the company founded? -> $x: (mcdonald, be found in, $x) -> (McDonald?s, were found covered in, metallic silver paint) -> metallic silver paint (13011ms) When was the company founded? Harvey 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Harvey, found, company) -> Harvey (13011ms) When was the company founded? interviews 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (interviews, find, companies) -> interviews (13401ms) When was the company founded? certain scenarios 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (further strategies, is often found in, certain scenarios) -> certain scenarios (13649ms) When was the company founded? Nucleus 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Nucleus, found, companies) -> Nucleus (13069ms) When was the company founded? do-it-yourself books 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (Arbor strategies, can be found in, do-it-yourself books) -> do-it-yourself books (13320ms) When was the company founded? the management section 1.88888888888 When was the company founded? -> $x: (director, be found in, $x) -> (all the directors, can be found in, the management section) -> the management section (13582ms) When was the company founded? India 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (? strategy, can be found in, India) -> India (13234ms) When was the company founded? students 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (students, find, company) -> students (13303ms) When was the company founded? Chapter 8 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (these strategies, may be found in, Chapter 8) -> Chapter 8 (13464ms) When was the company founded? the JAC Internal Web. 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (any employee, can be found in, the JAC Internal Web.) -> the JAC Internal Web. (13675ms) When was the company founded? Muskegon 1.88888888888 When was the company founded? -> $x: (advertisement, be found in, $x) -> (The following advertisement, was found in, Muskegon) -> Muskegon (13448ms) When was the company founded? the south central region 1.88888888888 When was the company founded? -> $x: (dell, be found in, $x) -> (The Dells, can be found in, the south central region) -> the south central region (13303ms) When was the company founded? the document 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (maintenance windows, can be found in, the document) -> the document (12990ms) When was the company founded? A recent report 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (A recent report, finds, companies) -> A recent report (13582ms) When was the company founded? Japan 1.88888888888 When was the company founded? -> $x: (mcdonald, be found in, $x) -> (McDonalds shops, can easily be found in, Japan) -> Japan (13433ms) When was the company founded? Immigrants 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Immigrants, found, companies) -> Immigrants (13464ms) When was the company founded? several designs 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Window shades, can be found in, several designs) -> several designs (13010ms) When was the company founded? teeth , bone and plant stems 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (strategies, are also found in, teeth , bone and plant stems) -> teeth , bone and plant stems (13069ms) When was the company founded? europe 1.88888888888 When was the company founded? -> $x: (audi, be found in, $x) -> (the audi a3, was found in, europe) -> europe (13636ms) When was the company founded? several places 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (this strategy, can be found in, several places) -> several places (13197ms) When was the company founded? bathroom 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (WINDOW, is often found in, bathroom) -> bathroom (13337ms) When was the company founded? tough times 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (tough times, find, companies) -> tough times (13609ms) When was the company founded? Kids 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Kids, find, company) -> Kids (13269ms) When was the company founded? Moving business California 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Moving business California, finds, company) -> Moving business California (13216ms) When was the company founded? such multitudes 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (Butterflies, were found in, such multitudes) -> such multitudes (13286ms) When was the company founded? diverse likes 1.88888888888 When was the company founded? -> $x: (chanel, be found in, $x) -> (chanel earrings, can be found in, diverse likes) -> diverse likes (13385ms) When was the company founded? Tarantella 1.88888888888 When was the company founded? -> $x: (director, be found in, $x) -> ('s directors and officers, can be found in, Tarantella) -> Tarantella (13510ms) When was the company founded? the most remote villages 1.88888888888 When was the company founded? -> $x: (coca cola, be found in, $x) -> (Coca Cola, could be found even in, the most remote villages) -> the most remote villages (13582ms) When was the company founded? RFC 1519 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (this strategy, may be found in, RFC 1519) -> RFC 1519 (13622ms) When was the company founded? Marketplace 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Windows Phone, can be found in, Marketplace) -> Marketplace (13125ms) When was the company founded? coniferous forests 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (This butterfly, is most commonly found in, coniferous forests) -> coniferous forests (13303ms) When was the company founded? alleged fraud 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (government employees, are found in, alleged fraud) -> alleged fraud (13269ms) When was the company founded? a number 1.88888888888 When was the company founded? -> $x: (insurance company, be found in, $x) -> (Insurance companies, can be found in, a number) -> a number (13595ms) When was the company founded? Moving company CA 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Moving company CA, finds, company) -> Moving company CA (13143ms) When was the company founded? bulletin boards and walls 1.88888888888 When was the company founded? -> $x: (advertisement, be found in, $x) -> (print advertisements, can be found in, bulletin boards and walls) -> bulletin boards and walls (13675ms) When was the company founded? Series IX 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (this strategy, can be found in, Series IX) -> Series IX (13216ms) When was the company founded? a weird loner 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (a weird loner, finds, company) -> a weird loner (13539ms) When was the company founded? the Plitvice Lakes area 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (butterflies, are also found in, the Plitvice Lakes area) -> the Plitvice Lakes area (13636ms) When was the company founded? the original style 1.88888888888 When was the company founded? -> $x: (nike, be found in, $x) -> (this nike air jordan, can be found in, the original style) -> the original style (13525ms) When was the company founded? 6 other districts 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (employees, are also found in, 6 other districts) -> 6 other districts (13088ms) When was the company founded? Debt-Proof Your Marriage 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (this strategy, can be found in, Debt-Proof Your Marriage) -> Debt-Proof Your Marriage (13662ms) When was the company founded? networking 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (these strategies, can be found in, networking) -> networking (13582ms) When was the company founded? the summer issue 1.88888888888 When was the company founded? -> $x: (director, be found in, $x) -> (Executive Director, can be found in, the summer issue) -> the summer issue (13252ms) When was the company founded? cold climates 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (storm windows, are often found in, cold climates) -> cold climates (13495ms) When was the company founded? new businesses 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (new businesses, find, companies) -> new businesses (13197ms) When was the company founded? one small car 1.88888888888 When was the company founded? -> $x: (audus, be found in, $x) -> (classic Audi refinement, can now be found in, one small car) -> one small car (13252ms) When was the company founded? the Reserve 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (butterflies, are found in, the Reserve) -> the Reserve (13510ms) When was the company founded? System Tools 1.88888888888 When was the company founded? -> $x: (microsoft, be found in, $x) -> (The Microsoft Backup utility, can be found in, System Tools) -> System Tools (13180ms) When was the company founded? Finnfirma 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Finnfirma, Find, Companies) -> Finnfirma (13554ms) When was the company founded? an appropriate site 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (office employees, were helpful in finding, an appropriate site) -> an appropriate site (13609ms) When was the company founded? parks 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (This butterfly, is found in, parks) -> parks (13303ms) When was the company founded? American newspapers 1.88888888888 When was the company founded? -> $x: (advertisement, be found in, $x) -> (Many print advertisements, can be found in, American newspapers) -> American newspapers (13510ms) When was the company founded? wide selection 1.88888888888 When was the company founded? -> $x: (chanel, be found in, $x) -> (Chanel Bags online, can be found in, wide selection) -> wide selection (13417ms) When was the company founded? AIIM 1.88888888888 When was the company founded? -> $x: (company member, be found in, $x) -> (All active member companies, can be found in, AIIM) -> AIIM (13088ms) When was the company founded? the Appendix 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (strategy, can be found in, the Appendix) -> the Appendix (13107ms) When was the company founded? Section 12.3 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (locking strategies, can be found in, Section 12.3) -> Section 12.3 (13216ms) When was the company founded? the Jobs section 1.88888888888 When was the company founded? -> $x: (advertisement, be found in, $x) -> (current job advertisements, can be found in, the Jobs section) -> the Jobs section (13161ms) When was the company founded? the Club Newsletter 1.88888888888 When was the company founded? -> $x: (secretary, be found in, $x) -> (Branches Secretaries, can be found in, the Club Newsletter) -> the Club Newsletter (13107ms) When was the company founded? Hayley 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (' butterfly, was found in, Hayley) -> Hayley (13495ms) When was the company founded? economics textbooks 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (this strategy, cannot be found in, economics textbooks) -> economics textbooks (13337ms) When was the company founded? Adjustors 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Adjustors, find, company) -> Adjustors (13539ms) When was the company founded? more than 200 countries 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Windows Mobile, can be found in, more than 200 countries) -> more than 200 countries (13539ms) When was the company founded? the Program Files directory 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Windows, is typically found in, the Program Files directory) -> the Program Files directory (13303ms) When was the company founded? the basement 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (windows, is found in, the basement) -> the basement (13385ms) When was the company founded? Control Panel 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Windows Update, can be found in, Control Panel) -> Control Panel (13540ms) When was the company founded? the latest 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Windows 8, will be found in, the latest) -> the latest (13269ms) When was the company founded? The Open Conspiracy 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (tactical strategy, may be found in, The Open Conspiracy) -> The Open Conspiracy (13675ms) When was the company founded? a forest 1.88888888888 When was the company founded? -> $x: (secretary, be found in, $x) -> (his secretary Arajaris Campos, are found in, a forest) -> a forest (13495ms) When was the company founded? a multitude 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (glass windows, are still found in, a multitude) -> a multitude (13337ms) When was the company founded? Property 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Property, finding, company) -> Property (13554ms) When was the company founded? the same localities 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (This butterfly, can be found in, the same localities) -> the same localities (13106ms) When was the company founded? the way people 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (the way people, find, companies) -> the way people (13180ms) When was the company founded? Istanbul 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Istanbul, Find, Company) -> Istanbul (13125ms) When was the company founded? the exhibit 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (the exhibit, found, companies) -> the exhibit (13216ms) When was the company founded? Hill et al 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (this strategy, can be found in, Hill et al) -> Hill et al (13106ms) When was the company founded? the finest specialty stores 1.88888888888 When was the company founded? -> $x: (chanel, be found in, $x) -> (Chanel bags, can be found in, the finest specialty stores) -> the finest specialty stores (13030ms) When was the company founded? a few chapels 1.88888888888 When was the company founded? -> $x: (microsoft windows, be found in, $x) -> (microsoft windows, are still found in quite, a few chapels) -> a few chapels (13609ms) When was the company founded? Ohio 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Ohio, Find, Company) -> Ohio (13649ms) When was the company founded? William Langland?s depiction 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (this strategy, is found in, William Langland?s depiction) -> William Langland?s depiction (13609ms) When was the company founded? flagstone buildings 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (windows, are often found in, flagstone buildings) -> flagstone buildings (13252ms) When was the company founded? the file docs 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Windows, can be found in, the file docs) -> the file docs (13106ms) When was the company founded? the official website 1.88888888888 When was the company founded? -> $x: (advertisement, be found in, $x) -> (advertisement videos, can be found in, the official website) -> the official website (13303ms) When was the company founded? the same location 1.88888888888 When was the company founded? -> $x: (employee, be found in, $x) -> (an employee, was found in, the same location) -> the same location (13180ms) When was the company founded? solutions 1.88888888888 When was the company founded? -> $x: (director, be found in, $x) -> (the Director, is deeply involved in finding, solutions) -> solutions (13495ms) When was the company founded? a form 1.88888888888 When was the company founded? -> $x: (windows, be found in, $x) -> (Windows Commander, can be found in, a form) -> a form (13595ms) When was the company founded? hedge funds 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (strategies, are most typically found in, hedge funds) -> hedge funds (13269ms) When was the company founded? every part 1.88888888888 When was the company founded? -> $x: (local company, be found in, $x) -> (both local and offshore companies, are found in, every part) -> every part (13252ms) When was the company founded? the Annex 1.88888888888 When was the company founded? -> $x: (advertisement, be found in, $x) -> (an advertisement, can be found in, the Annex) -> the Annex (13568ms) When was the company founded? the Woodcroft area 1.88888888888 When was the company founded? -> $x: (kroger, be found in, $x) -> (Another Kroger, can be found in, the Woodcroft area) -> the Woodcroft area (13320ms) When was the company founded? Appendix C 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (The search strategies, can be found in, Appendix C) -> Appendix C (13448ms) When was the company founded? necessity 1.88888888888 When was the company founded? -> $x: (director, be found in, $x) -> (many museum directors, are finding virtue in, necessity) -> necessity (13495ms) When was the company founded? different types 1.88888888888 When was the company founded? -> $x: (strategy, be found in, $x) -> (This strategy, is also found in, different types) -> different types (13582ms) When was the company founded? the Sertoma Butterfly House 1.88888888888 When was the company founded? -> $x: (butterfly, be found in, $x) -> (This butterfly, can be found in, the Sertoma Butterfly House) -> the Sertoma Butterfly House (13161ms) When was the company founded? Rhode Island 1.88888888888 When was the company founded? -> $x: ($x, found, company) -> (Rhode Island, Find, companies) -> Rhode Island (13197ms) When was the company founded? ChangSha Hunan 1.555555555546 When was the company founded? -> $x: (parent company, be found in, $x) -> (The parent company, is found in, ChangSha Hunan) -> ChangSha Hunan (13688ms) When was the company founded? emails 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (emails, found on, computers) -> emails (13716ms) When was the company founded? Police 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (Police, found, computers) -> Police (13716ms) When was the company founded? Islamabad 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (Islamabad, found, computers) -> Islamabad (13728ms) When was the company founded? use 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (use, Find, Computer) -> use (13688ms) When was the company founded? a plain text editor program 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (a plain text editor program, found on, computers) -> a plain text editor program (13688ms) When was the company founded? personal belief 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (personal belief, found on, computers) -> personal belief (13700ms) When was the company founded? Coalition forces 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (Coalition forces, also found, computers) -> Coalition forces (13728ms) When was the company founded? Latin and Chemistry 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (Latin and Chemistry, found, computers) -> Latin and Chemistry (13728ms) When was the company founded? online shoppers 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (online shoppers, find, computers) -> online shoppers (13728ms) When was the company founded? industrial batteries 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (industrial batteries, found in, computers) -> industrial batteries (13728ms) When was the company founded? The company 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (The company, finds, computers) -> The company (13728ms) When was the company founded? data-storage mechanism 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (data-storage mechanism, found in, computers) -> data-storage mechanism (13716ms) When was the company founded? No web sites 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (No web sites, found in, Computers) -> No web sites (13740ms) When was the company founded? hazardous materials 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (hazardous materials, found in, computers) -> hazardous materials (13728ms) When was the company founded? ? NASA 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (? NASA, found, computers) -> ? NASA (13728ms) When was the company founded? the students 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (the students, find, computers) -> the students (13728ms) When was the company founded? Porn 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (Porn, found on, computer) -> Porn (13740ms) When was the company founded? free sites 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (free sites, find, computer) -> free sites (13716ms) When was the company founded? Old grey bastard 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (Old grey bastard, finds, computer) -> Old grey bastard (13728ms) When was the company founded? Python Angel 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (Python Angel, Find, computer) -> Python Angel (13703ms) When was the company founded? child pornography 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (child pornography, found on, computers) -> child pornography (13716ms) When was the company founded? the newer SATA connections 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (the newer SATA connections, found on, computers) -> the newer SATA connections (13740ms) When was the company founded? Dialog 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (Dialog, find, computers) -> Dialog (13700ms) When was the company founded? Desktop 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (Desktop, cannot find, computer) -> Desktop (13740ms) When was the company founded? Start 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (Start, Find, -> Computer) -> Start (13716ms) When was the company founded? December 2010 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (December 2010, found, computers) -> December 2010 (13716ms) When was the company founded? the terrorists 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (the terrorists, also found, computers) -> the terrorists (13703ms) When was the company founded? mercury and lead 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (mercury and lead, found in, computers) -> mercury and lead (13700ms) When was the company founded? Positive Most people 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (Positive Most people, find, computers) -> Positive Most people (13700ms) When was the company founded? authorities 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (authorities, found, computers) -> authorities (13740ms) When was the company founded? autism 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (autism, find, computers) -> autism (13728ms) When was the company founded? PGN] Bargain Harold 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (PGN] Bargain Harold, finds, computers) -> PGN] Bargain Harold (13728ms) When was the company founded? the type 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (the type, found in, computers) -> the type (13716ms) When was the company founded? the most common operating systems 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (the most common operating systems, found on, computers) -> the most common operating systems (13700ms) When was the company founded? Viagra Viagra Edinburgh Search 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (Viagra Viagra Edinburgh Search, Find, Computer) -> Viagra Viagra Edinburgh Search (13700ms) When was the company founded? deputies 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (deputies, found, computers) -> deputies (13688ms) When was the company founded? Sunday 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (Sunday, found, computers) -> Sunday (13716ms) When was the company founded? the 1920s or 1930s 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (the 1920s or 1930s, often find, computers) -> the 1920s or 1930s (13740ms) When was the company founded? integrated circuits 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (integrated circuits, found in, computers) -> integrated circuits (13688ms) When was the company founded? the microchips 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (the microchips, found in, computers) -> the microchips (13688ms) When was the company founded? private files 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (private files, found on, computers) -> private files (13716ms) When was the company founded? the techy type 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (the techy type, might find, computers) -> the techy type (13716ms) When was the company founded? the digital code 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (the digital code, found in, computers) -> the digital code (13740ms) When was the company founded? 9 results 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (9 results, found in, Computers) -> 9 results (13740ms) When was the company founded? a dozen sites 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (a dozen sites, find, computers) -> a dozen sites (13700ms) When was the company founded? the tiny electronic circuits 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (the tiny electronic circuits, found in, computers) -> the tiny electronic circuits (13700ms) When was the company founded? computer* 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (computer*, will find, computer) -> computer* (13716ms) When was the company founded? investigators 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (investigators, found, computers) -> investigators (13728ms) When was the company founded? The Lingo 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (The Lingo, Find, computer) -> The Lingo (13688ms) When was the company founded? Officers 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (Officers, found, computers) -> Officers (13740ms) When was the company founded? the USB ports 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (the USB ports, found on, computers) -> the USB ports (13716ms) When was the company founded? private Sorry no results 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (private Sorry no results, found for, Computer) -> private Sorry no results (13740ms) When was the company founded? circuitry 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (circuitry, found in, computer) -> circuitry (13688ms) When was the company founded? software 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (software, finds, computers) -> software (13716ms) When was the company founded? Asperger?s Syndrome 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (Asperger?s Syndrome, can find, computers) -> Asperger?s Syndrome (13740ms) When was the company founded? malware 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (malware, found in, computers) -> malware (13740ms) When was the company founded? p.s 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (p.s, find on, computer) -> p.s (13740ms) When was the company founded? DRAM 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (DRAM, found in, computers) -> DRAM (13728ms) When was the company founded? files 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (files, found on, computer) -> files (13728ms) When was the company founded? a utility 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (a utility, to find, computers) -> a utility (13700ms) When was the company founded? a bit 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (a bit, find, computers) -> a bit (13700ms) When was the company founded? Investigators 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (Investigators, found, computers) -> Investigators (13688ms) When was the company founded? digital equipment 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (digital equipment, find, computers) -> digital equipment (13700ms) When was the company founded? Even kinesthetic learners 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (Even kinesthetic learners, find, computers) -> Even kinesthetic learners (13716ms) When was the company founded? microprocessors 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (microprocessors, found in, computers) -> microprocessors (13688ms) When was the company founded? an agentless toolkit 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (an agentless toolkit, finds, computers) -> an agentless toolkit (13740ms) When was the company founded? the standard 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (the standard, Find, Computer) -> the standard (13740ms) When was the company founded? the information 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (the information, found on, computers) -> the information (13700ms) When was the company founded? the submenu 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (the submenu, Find, Computers) -> the submenu (13728ms) When was the company founded? Changed 1.4444444444389999 When was the company founded? -> $x: ($x, found, computer) -> (Changed, Find, computers) -> Changed (13688ms) When was the company founded? the default disk copy utility 1.33333333333 When was the company founded? -> $x: ($x, found, windows) -> (the default disk copy utility, found in, Windows) -> the default disk copy utility (13813ms) When was the company founded? the jury 1.33333333333 When was the company founded? -> $x: ($x, found, mcdonald) -> (the jury, found out, that McDonald) -> the jury (13796ms) When was the company founded? the extra signing key 1.33333333333 When was the company founded? -> $x: ($x, found, microsoft) -> (the extra signing key, found in, Microsoft) -> the extra signing key (13838ms) When was the company founded? HSI special agents 1.33333333333 When was the company founded? -> $x: ($x, found, reebok) -> (HSI special agents, found, Reebok) -> HSI special agents (13830ms) When was the company founded? 01159 665 599 1.33333333333 When was the company founded? -> $x: ($x, found, local company) -> (01159 665 599, Find, more local companies) -> 01159 665 599 (13796ms) When was the company founded? the collaborative aspects 1.33333333333 When was the company founded? -> $x: ($x, found, reliance) -> (the collaborative aspects, found, an increased reliance) -> the collaborative aspects (13805ms) When was the company founded? The boss 1.33333333333 When was the company founded? -> $x: ($x, found, secretary) -> (The boss, found, his manager screwing his secretary) -> The boss (13813ms) When was the company founded? President-elect Barack Obama 1.33333333333 When was the company founded? -> $x: ($x, found, secretary) -> (President-elect Barack Obama, finds, a new commerce secretary) -> President-elect Barack Obama (13822ms) When was the company founded? Lower Hutt secretary jobs 1.33333333333 When was the company founded? -> $x: ($x, found, secretary) -> (Lower Hutt secretary jobs, Find, secretary jobs) -> Lower Hutt secretary jobs (13759ms) When was the company founded? the front 1.33333333333 When was the company founded? -> $x: ($x, found, windows) -> (the front, Find, window) -> the front (13813ms) When was the company founded? The mathematical model 1.33333333333 When was the company founded? -> $x: ($x, found, strategy) -> (The mathematical model, was then used to find out, strategy) -> The mathematical model (13813ms) When was the company founded? Users 1.33333333333 When was the company founded? -> $x: ($x, found, microsoft) -> (Users, find, Microsoft) -> Users (13769ms) When was the company founded? peer debriefing sessions 1.33333333333 When was the company founded? -> $x: ($x, found, strategy) -> (peer debriefing sessions, will find, strategies) -> peer debriefing sessions (13759ms) When was the company founded? Jacs? 1.33333333333 When was the company founded? -> $x: ($x, found, windows) -> (Jacs?, finds, Windows) -> Jacs? (13750ms) When was the company founded? the features 1.33333333333 When was the company founded? -> $x: ($x, found, windows) -> (the features, found in, Windows) -> the features (13805ms) When was the company founded? the 'search ' 1.33333333333 When was the company founded? -> $x: ($x, found, windows) -> (the 'search ', 'find, ' windows) -> the 'search ' (13787ms) When was the company founded? Crundwell 1.33333333333 When was the company founded? -> $x: ($x, found, strategy) -> (Crundwell, is also charged with finding, strategies) -> Crundwell (13854ms) When was the company founded? the amounts 1.33333333333 When was the company founded? -> $x: ($x, found, secretary) -> (the amounts, found necessary by, the Secretary) -> the amounts (13769ms) When was the company founded? new vulnerabilities 1.33333333333 When was the company founded? -> $x: ($x, found, microsoft windows) -> (new vulnerabilities, found in, Microsoft Windows) -> new vulnerabilities (13805ms) When was the company founded? SQLXML works 1.33333333333 When was the company founded? -> $x: ($x, found, microsoft) -> (SQLXML works, can be found in, Microsoft) -> SQLXML works (13796ms) When was the company founded? The court 1.33333333333 When was the company founded? -> $x: ($x, found, reliance) -> (The court, found, Reliance Standard?s decision) -> The court (13778ms) When was the company founded? Footwear Clearance Refine Your Search 1.33333333333 When was the company founded? -> $x: ($x, found, nike) -> (Footwear Clearance Refine Your Search, Find, Nike 6.0 Gear) -> Footwear Clearance Refine Your Search (13838ms) When was the company founded? Mini 1.33333333333 When was the company founded? -> $x: ($x, found, reliance) -> (Mini, also finds, pedestrian the modern reliance) -> Mini (13787ms) When was the company founded? The only bluetooth mouse I?ve 1.33333333333 When was the company founded? -> $x: ($x, found, microsoft) -> (The only bluetooth mouse I?ve, found from, Microsoft) -> The only bluetooth mouse I?ve (13846ms) When was the company founded? You?ll 1.33333333333 When was the company founded? -> $x: ($x, found, strategy) -> (You?ll, also find, strategies) -> You?ll (13813ms) When was the company founded? Mark R. Warner 1.33333333333 When was the company founded? -> $x: ($x, found, public company) -> (Mark R. Warner, has helped found, four public companies) -> Mark R. Warner (13830ms) When was the company founded? specific listings 1.33333333333 When was the company founded? -> $x: ($x, found, local company) -> (specific listings, find, local companies) -> specific listings (13830ms) When was the company founded? Visit 1.33333333333 When was the company founded? -> $x: ($x, found, mcdonald) -> (Visit, find out more about, McDonald?s) -> Visit (13778ms) When was the company founded? the Media Manager 1.33333333333 When was the company founded? -> $x: ($x, found, windows) -> (the Media Manager, Find, window) -> the Media Manager (13830ms) When was the company founded? The survey 1.33333333333 When was the company founded? -> $x: ($x, found, reliance) -> (The survey, also found, a high reliance) -> The survey (13846ms) When was the company founded? the POCT testing 1.33333333333 When was the company founded? -> $x: ($x, found, reliance) -> (the POCT testing, is found in, the greater reliance) -> the POCT testing (13822ms) When was the company founded? New Hardware 1.33333333333 When was the company founded? -> $x: ($x, found, windows) -> (New Hardware, Found, window) -> New Hardware (13822ms) When was the company founded? 2. INTERNET INFO 1.33333333333 When was the company founded? -> $x: ($x, found, microsoft) -> (2. INTERNET INFO, find more information about, Microsoft) -> 2. INTERNET INFO (13822ms) When was the company founded? hologram companies 1.33333333333 When was the company founded? -> $x: ($x, found, local company) -> (hologram companies, Find, local hologram companies) -> hologram companies (13759ms) When was the company founded? The new initiatives 1.33333333333 When was the company founded? -> $x: ($x, found, secretary) -> (The new initiatives, have found a champion in, Secretary) -> The new initiatives (13854ms) When was the company founded? The judge 1.33333333333 When was the company founded? -> $x: ($x, found, microsoft) -> (The judge, found, Microsoft) -> The judge (13813ms) When was the company founded? the image formats 1.33333333333 When was the company founded? -> $x: ($x, found, microsoft window) -> (the image formats, found on, Microsoft Windows environments) -> the image formats (13796ms) When was the company founded? the best file launcher I?ve 1.33333333333 When was the company founded? -> $x: ($x, found, windows) -> (the best file launcher I?ve, found for, Windows) -> the best file launcher I?ve (13769ms) When was the company founded? The concept 1.33333333333 When was the company founded? -> $x: ($x, found, microsoft window) -> (The concept, is also found in, Microsoft Windows) -> The concept (13750ms) When was the company founded? Eugene 1.33333333333 When was the company founded? -> $x: ($x, found, reliance) -> (Eugene, finds, adventure and self-reliance) -> Eugene (13846ms) When was the company founded? Phil Knight 1.33333333333 When was the company founded? -> $x: ($x, found, nike) -> (Phil Knight, went on to found, Nike) -> Phil Knight (13830ms) When was the company founded? the winners 1.33333333333 When was the company founded? -> $x: ($x, found, reliance) -> (the winners, find, an over-reliance) -> the winners (13796ms) When was the company founded? One roots 1.33333333333 When was the company founded? -> $x: ($x, found, mcdonald) -> (One roots, finds, a McDonald) -> One roots (13769ms) When was the company founded? The customers 1.33333333333 When was the company founded? -> $x: ($x, found, nike) -> (The customers, are able to find a lot of, Nike dunks) -> The customers (13822ms) When was the company founded? PR 1.33333333333 When was the company founded? -> $x: ($x, found, webkinz) -> (PR, Find, all your favourite Webkinz online) -> PR (13796ms) When was the company founded? More info? US appeals court 1.33333333333 When was the company founded? -> $x: ($x, found, tobacco company) -> (More info? US appeals court, finds, tobacco companies) -> More info? US appeals court (13813ms) When was the company founded? content 1.33333333333 When was the company founded? -> $x: ($x, found, reliance) -> (content, is found in, total , complete , and utter reliance) -> content (13778ms) When was the company founded? Nike Men Shoes 1.33333333333 When was the company founded? -> $x: ($x, found, nike) -> (Nike Men Shoes, Find, the cheapest hot sale nike shoes) -> Nike Men Shoes (13813ms) When was the company founded? the soul 1.33333333333 When was the company founded? -> $x: ($x, found, windows) -> (the soul, finds, windows) -> the soul (13759ms) When was the company founded? the trainees 1.33333333333 When was the company founded? -> $x: ($x, found, secretary) -> (the trainees, are finding work as, secretaries) -> the trainees (13830ms) When was the company founded? Locate Local Companies/Organizations 1.33333333333 When was the company founded? -> $x: ($x, found, local company) -> (Locate Local Companies/Organizations, Find, local companies) -> Locate Local Companies/Organizations (13838ms) When was the company founded? The NYSE 1.33333333333 When was the company founded? -> $x: ($x, found, mcdonald) -> (The NYSE, found, that McDonald) -> The NYSE (13796ms) When was the company founded? The video 1.33333333333 When was the company founded? -> $x: ($x, found, reebok) -> (The video, was found, when searching for reebok realflex) -> The video (13759ms) When was the company founded? August 1.33333333333 When was the company founded? -> $x: ($x, found, nike) -> (August, found at, Nike chain stores) -> August (13813ms) When was the company founded? even more Webkinz A Ganz Website 1.33333333333 When was the company founded? -> $x: ($x, found, webkinz) -> (even more Webkinz A Ganz Website, Find, webkinz) -> even more Webkinz A Ganz Website (13838ms) When was the company founded? Kayaking 1.33333333333 When was the company founded? -> $x: ($x, found, local company) -> (Kayaking, find, a local whitewater company) -> Kayaking (13796ms) When was the company founded? Ray Kroc 1.33333333333 When was the company founded? -> $x: ($x, found, mcdonald) -> (Ray Kroc, first found, McDonalds) -> Ray Kroc (13759ms) When was the company founded? even more Ganz Webkinz 1.33333333333 When was the company founded? -> $x: ($x, found, webkinz) -> (even more Ganz Webkinz, Find, webkinz) -> even more Ganz Webkinz (13822ms) When was the company founded? Baha 1.33333333333 When was the company founded? -> $x: ($x, found, public company) -> (Baha, found, three public companies) -> Baha (13822ms) When was the company founded? the TTF?s Tourism Sentiment survey 1.33333333333 When was the company founded? -> $x: ($x, found, reliance) -> (the TTF?s Tourism Sentiment survey, found, Tasmania?s reliance) -> the TTF?s Tourism Sentiment survey (13822ms) When was the company founded? Streakfury 1.33333333333 When was the company founded? -> $x: ($x, found, nike) -> (Streakfury, found a pair of, Nikes) -> Streakfury (13778ms) When was the company founded? Shari?ah 1.33333333333 When was the company founded? -> $x: ($x, found, reliance) -> (Shari?ah, is found in, Reliance O.25) -> Shari?ah (13778ms) When was the company founded? the reader 1.33333333333 When was the company founded? -> $x: ($x, found, windows) -> (the reader, finds, windows) -> the reader (13768ms) When was the company founded? a financial plan 1.33333333333 When was the company founded? -> $x: ($x, found, strategy) -> (a financial plan, find, strategies) -> a financial plan (13796ms) When was the company founded? the Advanced 1.33333333333 When was the company founded? -> $x: ($x, found, windows) -> (the Advanced, find, window) -> the Advanced (13759ms) When was the company founded? September 10 , 2009 1.33333333333 When was the company founded? -> $x: ($x, found, windows) -> (September 10 , 2009, Find, Window) -> September 10 , 2009 (13787ms) When was the company founded? previous studies 1.33333333333 When was the company founded? -> $x: ($x, found, mnc) -> (previous studies, found single high doses of, MNC) -> previous studies (13830ms) When was the company founded? More information 1.33333333333 When was the company founded? -> $x: ($x, found, secretary) -> (More information, can be found at, the Secretary) -> More information (13813ms) When was the company founded? Sure , you?ll 1.33333333333 When was the company founded? -> $x: ($x, found, secretary) -> (Sure , you?ll, find, the secretary) -> Sure , you?ll (13778ms) When was the company founded? CameronMcintyre i 1.33333333333 When was the company founded? -> $x: ($x, found, windows) -> (CameronMcintyre i, found, windows) -> CameronMcintyre i (13838ms) When was the company founded? 4 October 1957 1.33333333333 When was the company founded? -> $x: ($x, found, secretary) -> (4 October 1957, found, the newly appointed Secretary) -> 4 October 1957 (13778ms) When was the company founded? several fonts 1.33333333333 When was the company founded? -> $x: ($x, found, microsoft windows) -> (several fonts, are found in, Microsoft Windows) -> several fonts (13846ms) When was the company founded? New Zealand 1.33333333333 When was the company founded? -> $x: ($x, found, local company) -> (New Zealand, Find, local member companies) -> New Zealand (13787ms) When was the company founded? McHargue 1.33333333333 When was the company founded? -> $x: ($x, found, mcdonald) -> (McHargue, found, an open Vance McDonald) -> McHargue (13769ms) When was the company founded? Grow 1.33333333333 When was the company founded? -> $x: ($x, found, nike) -> (Grow, found at, Nike Sportswear chain stores) -> Grow (13846ms) When was the company founded? innovation 1.33333333333 When was the company founded? -> $x: ($x, found, strategy) -> (innovation, is to find, strategies) -> innovation (13769ms) When was the company founded? click 1.33333333333 When was the company founded? -> $x: ($x, found, windows) -> (click, then find, Windows) -> click (13846ms) When was the company founded? Bond 1.33333333333 When was the company founded? -> $x: ($x, found, secretary) -> (Bond, finds, that Goldfinger?s secretary) -> Bond (13813ms) When was the company founded? a jury 1.33333333333 When was the company founded? -> $x: ($x, found, mcdonald) -> (a jury, finds, McDonald guilty) -> a jury (13787ms) When was the company founded? builders 1.33333333333 When was the company founded? -> $x: ($x, found, local company) -> (builders, can be found in, local company directories) -> builders (13769ms) When was the company founded? small enterprises 1.33333333333 When was the company founded? -> $x: ($x, found, reliance) -> (small enterprises, found, a reliance) -> small enterprises (13854ms) When was the company founded? The answers 1.33333333333 When was the company founded? -> $x: ($x, found, nike) -> (The answers, can be found for, Nike) -> The answers (13805ms) When was the company founded? Allen and Gates 1.33333333333 When was the company founded? -> $x: ($x, found, microsoft) -> (Allen and Gates, found, Microsoft) -> Allen and Gates (13846ms) When was the company founded? President Andrew Jackson 1.33333333333 When was the company founded? -> $x: ($x, found, secretary) -> (President Andrew Jackson, finally had found, a Secretary) -> President Andrew Jackson (13846ms) When was the company founded? a California jury 1.33333333333 When was the company founded? -> $x: ($x, found, tobacco company) -> (a California jury, found, the tobacco company) -> a California jury (13822ms) When was the company founded? Filing forms and requirements 1.33333333333 When was the company founded? -> $x: ($x, found, secretary) -> (Filing forms and requirements, can be found at, the Secretary) -> Filing forms and requirements (13846ms) When was the company founded? the only one 1.33333333333 When was the company founded? -> $x: ($x, found, mcdonald) -> (the only one, found, Audra McDonald?s Bess jarring) -> the only one (13759ms) When was the company founded? the student jury 1.33333333333 When was the company founded? -> $x: ($x, found, mcdonald) -> (the student jury, found, McDonald?s partially negligent) -> the student jury (13787ms) When was the company founded? the three I 1.33333333333 When was the company founded? -> $x: ($x, found, reliance) -> (the three I, find value in, Reliance Capital) -> the three I (13854ms) When was the company founded? you?ll 1.33333333333 When was the company founded? -> $x: ($x, found, windows) -> (you?ll, find, Windows) -> you?ll (13830ms) When was the company founded? PDA Software 1.33333333333 When was the company founded? -> $x: ($x, found, microsoft window) -> (PDA Software, Find, Microsoft Windows Mobile software) -> PDA Software (13854ms) When was the company founded? The Ultimate Troubleshooter task 1.33333333333 When was the company founded? -> $x: ($x, found, windows) -> (The Ultimate Troubleshooter task, found on, Windows) -> The Ultimate Troubleshooter task (13805ms) When was the company founded? The Wartime Contracting Commission 1.33333333333 When was the company founded? -> $x: ($x, found, reliance) -> (The Wartime Contracting Commission, found, U.S. reliance) -> The Wartime Contracting Commission (13830ms) When was the company founded? internal reports 1.33333333333 When was the company founded? -> $x: ($x, found, mcdonald) -> (internal reports, consistently find, McDonald?s) -> internal reports (13787ms) When was the company founded? amicus brief 1.33333333333 When was the company founded? -> $x: ($x, found, secretary) -> (amicus brief, can be found on, the Secretary) -> amicus brief (13838ms) When was the company founded? Just 1.33333333333 When was the company founded? -> $x: ($x, found, strategy) -> (Just, find, strategies) -> Just (13769ms) When was the company founded? information technology professionals 1.33333333333 When was the company founded? -> $x: ($x, found, microsoft) -> (information technology professionals, found, Microsoft) -> information technology professionals (13813ms) When was the company founded? regional child 1.33333333333 When was the company founded? -> $x: ($x, found, strategy) -> (regional child, find, strategies) -> regional child (13846ms) When was the company founded? Security Company Directory 1.33333333333 When was the company founded? -> $x: ($x, found, local company) -> (Security Company Directory, Find, A Local Security Company) -> Security Company Directory (13822ms) When was the company founded? the judge 1.33333333333 When was the company founded? -> $x: ($x, found, mcdonald) -> (the judge, has found, McDonald) -> the judge (13805ms) When was the company founded? Danger 1.33333333333 When was the company founded? -> $x: ($x, found, public company) -> (Danger, found a job at, a downtown public-relations company) -> Danger (13787ms) When was the company founded? a character 1.33333333333 When was the company founded? -> $x: ($x, found, reliance) -> (a character, midway finds, her confidence and self-reliance) -> a character (13796ms) When was the company founded? the outcome?ITC issues 1.33333333333 When was the company founded? -> $x: ($x, found, microsoft) -> (the outcome?ITC issues, finds, Microsoft) -> the outcome?ITC issues (13846ms) When was the company founded? the early days 1.33333333333 When was the company founded? -> $x: ($x, found, nike) -> (the early days, found, the Nike Air Nike Air Max 87 Max) -> the early days (13830ms) When was the company founded? 01179 444 121 1.33333333333 When was the company founded? -> $x: ($x, found, local company) -> (01179 444 121, Find, more local companies) -> 01179 444 121 (13838ms) When was the company founded? the glass 1.33333333333 When was the company founded? -> $x: ($x, found, windows) -> (the glass, found in, windows) -> the glass (13805ms) When was the company founded? Sargent 1.33333333333 When was the company founded? -> $x: ($x, found, secretary) -> (Sargent, found, him secretary of transportation) -> Sargent (13778ms) When was the company founded? refuge 1.33333333333 When was the company founded? -> $x: ($x, found, reliance) -> (refuge, have found, the reliance) -> refuge (13838ms) When was the company founded? Bell J 1.33333333333 When was the company founded? -> $x: ($x, found, mcdonald) -> (Bell J, found for, McDonald?s) -> Bell J (13838ms) When was the company founded? braille 1.33333333333 When was the company founded? -> $x: ($x, found, windows) -> (braille, found in, Windows) -> braille (13830ms) When was the company founded? The goal 1.33333333333 When was the company founded? -> $x: ($x, found, strategy) -> (The goal, is to find, strategies) -> The goal (13838ms) When was the company founded? you?ll 1.33333333333 When was the company founded? -> $x: ($x, found, strategy) -> (you?ll, find career opportunities in, strategy) -> you?ll (13854ms) When was the company founded? 30 % 1.33333333333 When was the company founded? -> $x: ($x, found, public company) -> (30 %, are found in, public and private companies) -> 30 % (13805ms) When was the company founded? a year or two before 1.33333333333 When was the company founded? -> $x: ($x, found, local company) -> (a year or two before, found work in, a local company) -> a year or two before (13778ms) When was the company founded? the ExplorerBar steer 1.33333333333 When was the company founded? -> $x: ($x, found, microsoft window) -> (the ExplorerBar steer, found in, Microsoft Windows) -> the ExplorerBar steer (13768ms) When was the company founded? Overspark 1.33333333333 When was the company founded? -> $x: ($x, found, nike) -> (Overspark, found, a pair of Nikes) -> Overspark (13769ms) When was the company founded? Hard 1.33333333333 When was the company founded? -> $x: ($x, found, local company) -> (Hard, find their work in, local companies) -> Hard (13750ms) When was the company founded? The required form 1.33333333333 When was the company founded? -> $x: ($x, found, secretary) -> (The required form, can be found on, the Secretary) -> The required form (13796ms) When was the company founded? Dial-Up Networking 1.33333333333 When was the company founded? -> $x: ($x, found, microsoft window) -> (Dial-Up Networking, tries to find, a Microsoft Windows Network) -> Dial-Up Networking (13854ms) When was the company founded? Carolina Group 1.33333333333 When was the company founded? -> $x: ($x, found, tobacco company) -> (Carolina Group, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Lorillard%20Tobacco%20Company) -> Carolina Group (13759ms) When was the company founded? Judge 1.33333333333 When was the company founded? -> $x: ($x, found, mcdonald) -> (Judge, finds, McDonald) -> Judge (13787ms) When was the company founded? the hackers 1.33333333333 When was the company founded? -> $x: ($x, found, microsoft) -> (the hackers, found, Microsoft) -> the hackers (13778ms) When was the company founded? a big believer 1.33333333333 When was the company founded? -> $x: ($x, found, reliance) -> (a big believer, find, the typical American?s reliance) -> a big believer (13778ms) When was the company founded? Bishop 1.33333333333 When was the company founded? -> $x: ($x, found, mcdonald) -> (Bishop, found, speedster Darnell McDonald) -> Bishop (13822ms) When was the company founded? guests 1.33333333333 When was the company founded? -> $x: ($x, found, mcdonald) -> (guests, will find, McDonald) -> guests (13854ms) When was the company founded? the underlying messages 1.33333333333 When was the company founded? -> $x: ($x, found, windows) -> (the underlying messages, find, windows) -> the underlying messages (13822ms) When was the company founded? Judge Joao Ghisleni Filho 1.33333333333 When was the company founded? -> $x: ($x, found, mcdonald) -> (Judge Joao Ghisleni Filho, find, that McDonald) -> Judge Joao Ghisleni Filho (13787ms) When was the company founded? the IPS tab 1.33333333333 When was the company founded? -> $x: ($x, found, microsoft window) -> (the IPS tab, find, the Microsoft Windows Win32k) -> the IPS tab (13838ms) When was the company founded? companies 1.33333333333 When was the company founded? -> $x: ($x, found, strategy) -> (companies, are scrambling to find, strategies) -> companies (13759ms) When was the company founded? the counter 1.33333333333 When was the company founded? -> $x: ($x, found, mcdonald) -> (the counter, you?ll find, Bob McDonald) -> the counter (13805ms) When was the company founded? share subscription 1.33333333333 When was the company founded? -> $x: ($x, found, public company) -> (share subscription, may found, a public limited company) -> share subscription (13854ms) When was the company founded? quantitative reconciliations 1.33333333333 When was the company founded? -> $x: ($x, found, nike) -> (quantitative reconciliations, can also be found at, Nike) -> quantitative reconciliations (13830ms) When was the company founded? The solution 1.33333333333 When was the company founded? -> $x: ($x, found, strategy) -> (The solution, must be found in, strategies) -> The solution (13796ms) When was the company founded? CA 1.33333333333 When was the company founded? -> $x: ($x, found, local company) -> (CA, Find, Local Tracy Decks Builders & Fencing Companies) -> CA (13838ms) When was the company founded? the business center 1.33333333333 When was the company founded? -> $x: ($x, found, local company) -> (the business center, found, a local computer repair company) -> the business center (13813ms) When was the company founded? Warren 1.33333333333 When was the company founded? -> $x: ($x, found, nike) -> (Warren, found, a pair of Nikes) -> Warren (13813ms) When was the company founded? R.J. Reynolds Tobacco Company 1.33333333333 When was the company founded? -> $x: ($x, found, tobacco company) -> (R.J. Reynolds Tobacco Company, can be found on Wikipedia at, http://en.wikipedia.org/wiki/R%2E%20J%2E%20Reynolds%20Tobacco%20Company) -> R.J. Reynolds Tobacco Company (13778ms) When was the company founded? WAVE 1.33333333333 When was the company founded? -> $x: ($x, found, windows) -> (WAVE, Find, window) -> WAVE (13750ms) When was the company founded? The jury 1.33333333333 When was the company founded? -> $x: ($x, found, mcdonald) -> (The jury, found, McDonalds) -> The jury (13822ms) When was the company founded? Nike Free 5.0 Sale Items 1.33333333333 When was the company founded? -> $x: ($x, found, nike) -> (Nike Free 5.0 Sale Items, found in, a Nike Outlet Store) -> Nike Free 5.0 Sale Items (13796ms) When was the company founded? the Copy 1.33333333333 When was the company founded? -> $x: ($x, found, windows) -> (the Copy, Find, windows) -> the Copy (13759ms) When was the company founded? high priority 1.33333333333 When was the company founded? -> $x: ($x, found, microsoft window) -> (high priority, were found in, Microsoft Windows) -> high priority (13805ms) When was the company founded? the viewer 1.33333333333 When was the company founded? -> $x: ($x, found, windows) -> (the viewer, find, window) -> the viewer (13838ms) When was the company founded? ?where 1.33333333333 When was the company founded? -> $x: ($x, found, nike) -> (?where, find, the Nike Air Yeezys online) -> ?where (13854ms) When was the company founded? Deputies 1.33333333333 When was the company founded? -> $x: ($x, found, mcdonald) -> (Deputies, found, McDonald) -> Deputies (13759ms) When was the company founded? Baton Rouge secretary jobs 1.33333333333 When was the company founded? -> $x: ($x, found, secretary) -> (Baton Rouge secretary jobs, Find, secretary jobs) -> Baton Rouge secretary jobs (13787ms) When was the company founded? Description 1.33333333333 When was the company founded? -> $x: ($x, found, local company) -> (Description, Find, a cheap local moving company or truck rentals) -> Description (13769ms) When was the company founded? police 1.33333333333 When was the company founded? -> $x: ($x, found, mcdonald) -> (police, found, McDonald and Goris) -> police (13778ms) When was the company founded? the destinations 1.33333333333 When was the company founded? -> $x: ($x, found, local company) -> (the destinations, then find, local companies) -> the destinations (13854ms) When was the company founded? An Iowa woman 1.33333333333 When was the company founded? -> $x: ($x, found, mcdonald) -> (An Iowa woman, found, a McDonald) -> An Iowa woman (13846ms) When was the company founded? the functionality 1.33333333333 When was the company founded? -> $x: ($x, found, microsoft) -> (the functionality, found in, Microsoft) -> the functionality (13796ms) When was the company founded? Judge Jackson 1.33333333333 When was the company founded? -> $x: ($x, found, microsoft) -> (Judge Jackson, found, Microsoft) -> Judge Jackson (13846ms) When was the company founded? durable operation 1.33333333333 When was the company founded? -> $x: ($x, found, nike) -> (durable operation, find, Nike Shox R2 Sale turbine) -> durable operation (13769ms) When was the company founded? a user account 1.33333333333 When was the company founded? -> $x: ($x, found, microsoft window) -> (a user account, typically found on, Microsoft Windows) -> a user account (13750ms) When was the company founded? network 1.33333333333 When was the company founded? -> $x: ($x, found, local company) -> (network, to find, local Cheap Moving Companies) -> network (13787ms) When was the company founded? the Court 1.33333333333 When was the company founded? -> $x: ($x, found, reliance) -> (the Court, found, reliance) -> the Court (13778ms) When was the company founded? no results 1.33333333333 When was the company founded? -> $x: ($x, found, windows) -> (no results, found for, windows) -> no results (13854ms) When was the company founded? Wang Jianping 1.33333333333 When was the company founded? -> $x: ($x, found, secretary) -> (Wang Jianping, find, old secretary Yu Deming) -> Wang Jianping (13750ms) When was the company founded? remote code execution flaws 1.33333333333 When was the company founded? -> $x: ($x, found, windows) -> (remote code execution flaws, found in, Windows) -> remote code execution flaws (13805ms) When was the company founded? the user interface 1.33333333333 When was the company founded? -> $x: ($x, found, microsoft windows) -> (the user interface, found in, Microsoft Windows) -> the user interface (13838ms) When was the company founded? Obama 1.33333333333 When was the company founded? -> $x: ($x, found, secretary) -> (Obama, find, a Secretary) -> Obama (13787ms) When was the company founded? Several attempts 1.33333333333 When was the company founded? -> $x: ($x, found, local company) -> (Several attempts, were made to find, a local company) -> Several attempts (13787ms) When was the company founded? APIs 1.33333333333 When was the company founded? -> $x: ($x, found, microsoft window) -> (APIs, found in, Microsoft Windows) -> APIs (13787ms) When was the company founded? Scientists today 1.33333333333 When was the company founded? -> $x: ($x, found, reliance) -> (Scientists today, find, that reliance) -> Scientists today (13805ms) When was the company founded? The poll 1.33333333333 When was the company founded? -> $x: ($x, found, secretary) -> (The poll, finds, Secretary) -> The poll (13854ms) When was the company founded? the app 1.33333333333 When was the company founded? -> $x: ($x, found, nike) -> (the app, can be found via, NikeID) -> the app (13759ms) When was the company founded? Address 1.33333333333 When was the company founded? -> $x: ($x, found, local company) -> (Address, Find, more local companies) -> Address (13796ms) When was the company founded? the neighboring country-houses 1.33333333333 When was the company founded? -> $x: ($x, found, secretary) -> (the neighboring country-houses, found, the Home Secretary) -> the neighboring country-houses (13805ms) When was the company founded? Fanuzzi 1.33333333333 When was the company founded? -> $x: ($x, found, mcdonald) -> (Fanuzzi, found, junior wide receiver Vance McDonald) -> Fanuzzi (13830ms) When was the company founded? the INBiz portal 1.33333333333 When was the company founded? -> $x: ($x, found, secretary) -> (the INBiz portal, found on, the Secretary) -> the INBiz portal (13838ms) When was the company founded? You?ll 1.33333333333 When was the company founded? -> $x: ($x, found, nike) -> (You?ll, find, Nike golf clubs) -> You?ll (13768ms) When was the company founded? Boxes 1.33333333333 When was the company founded? -> $x: ($x, found, local company) -> (Boxes, Find, Local Storage Companies) -> Boxes (13830ms) When was the company founded? welcome 1.33333333333 When was the company founded? -> $x: ($x, found, local company) -> (welcome, find, local debt collection companies) -> welcome (13846ms) When was the company founded? the mall 1.33333333333 When was the company founded? -> $x: ($x, found, reebok) -> (the mall, find, Reebok Easytones) -> the mall (13854ms) When was the company founded? the *nix goodies 1.33333333333 When was the company founded? -> $x: ($x, found, microsoft windows) -> (the *nix goodies, found in, Microsoft?s Windows Services) -> the *nix goodies (13822ms) When was the company founded? the same Terminator 2 trailer clip 1.33333333333 When was the company founded? -> $x: ($x, found, microsoft) -> (the same Terminator 2 trailer clip, found at, Microsoft) -> the same Terminator 2 trailer clip (13830ms) When was the company founded? anglers 1.33333333333 When was the company founded? -> $x: ($x, found, local company) -> (anglers, will find products by, local companies) -> anglers (13769ms) When was the company founded? the report 1.33333333333 When was the company founded? -> $x: ($x, found, mcdonald) -> (the report, found, McDonald?s 13 websites) -> the report (13846ms) When was the company founded? I?ll 1.33333333333 When was the company founded? -> $x: ($x, found, secretary) -> (I?ll, find, a secretary) -> I?ll (13778ms) When was the company founded? types 1.33333333333 When was the company founded? -> $x: ($x, found, nike) -> (types, can be found, Nike) -> types (13769ms) When was the company founded? the NWP 1.33333333333 When was the company founded? -> $x: ($x, found, strategy) -> (the NWP, found, this strategy) -> the NWP (13759ms) When was the company founded? Benbrook 1.33333333333 When was the company founded? -> $x: ($x, found, reliance) -> (Benbrook, finds, that ?reliance) -> Benbrook (13796ms) When was the company founded? A Ganz Website 1.33333333333 When was the company founded? -> $x: ($x, found, webkinz) -> (A Ganz Website, Find, webkinz) -> A Ganz Website (13759ms) When was the company founded? a Need 1.33333333333 When was the company founded? -> $x: ($x, found, local company) -> (a Need, Find, a local company) -> a Need (13813ms) When was the company founded? Windows Hunter 1.33333333333 When was the company founded? -> $x: ($x, found, windows) -> (Windows Hunter, allows finding, windows) -> Windows Hunter (13822ms) What is pastrami made of? 100 % brisket 0.222222222221 What is pastrami made of? -> $x: (pastrami, be make from, $x) -> (Our pastrami, is made from, 100 % brisket) -> 100 % brisket (912ms) What is pastrami made of? beef brisket 0.222222222221 What is pastrami made of? -> $x: (pastrami, be make from, $x) -> (Pastrami, is made from, beef brisket) -> beef brisket (912ms) What is pastrami made of? a cut 0.222222222221 What is pastrami made of? -> $x: (pastrami, be make from, $x) -> ('s blog Pastrami, is most commonly made from, a cut) -> a cut (912ms) What is pastrami made of? brisket or beef navel 0.222222222221 What is pastrami made of? -> $x: (pastrami, be make from, $x) -> (Traditional pastrami, is made from, brisket or beef navel) -> brisket or beef navel (912ms) What is pastrami made of? gourmet meats 0.222222222221 What is pastrami made of? -> $x: (pastrami, be make from, $x) -> (The Reuben and Hot Pastrami, are made from, gourmet meats) -> gourmet meats (912ms) What is pastrami made of? the forequarter 0.222222222221 What is pastrami made of? -> $x: (pastrami, be make from, $x) -> (Pastrami, is traditionally made from, the forequarter) -> the forequarter (1001ms) What is pastrami made of? beef 0.222222222221 What is pastrami made of? -> $x: (pastrami, be make from, $x) -> (pastrami, is made from, beef) -> beef (912ms) What is pastrami made of? the hot dog 0.222222222218 What is pastrami made of? -> $x: ($x, be in, pastrami) -> (the hot dog, is wrapped in, pastrami) -> the hot dog (1001ms) What is pastrami made of? pulled pork 0.222222222218 What is pastrami made of? -> $x: ($x, be in, pastrami) -> (pulled pork, was slow cooked in, pastrami spices) -> pulled pork (1001ms) What is pastrami made of? We?ll 0.222222222218 What is pastrami made of? -> $x: ($x, be in, pastrami) -> (We?ll, be specializing in, Hot Smoked Pastrami Sandwiches) -> We?ll (1001ms) What is pastrami made of? Bacterial contamination 0.222222222218 What is pastrami made of? -> $x: ($x, be in, pastrami) -> (Bacterial contamination, is a lot more widespread in, pastrami) -> Bacterial contamination (1001ms) What is pastrami made of? the Rachel -0.0 What is pastrami made of? -> $x: ($x, be make, pastrami) -> (the Rachel, is made with, pastrami) -> the Rachel (1018ms) What is pastrami made of? Carnegie Deli -0.0 What is pastrami made of? -> $x: (pastrami, do, $x) -> (the Pastrami, does n?t match up to, Carnegie Deli) -> Carnegie Deli (1051ms) What is pastrami made of? the same -0.0 What is pastrami made of? -> $x: (pastrami, do, $x) -> (pastrami, can do, the same) -> the same (1089ms) What is pastrami made of? 6 ounces -0.0 What is pastrami made of? -> $x: (pastrami, be make, $x) -> (Our standard pastrami sandwich, is made with, 6 ounces) -> 6 ounces (1051ms) What is pastrami made of? the opposite -0.0 What is pastrami made of? -> $x: (pastrami, do, $x) -> (pastrami, does exactly, the opposite) -> the opposite (1088ms) What is pastrami made of? meat -0.0 What is pastrami made of? -> $x: (pastrami, be of, $x) -> (beef pastrami, is a type of, meat) -> meat (1051ms) What is pastrami made of? a raffle -0.0 What is pastrami made of? -> $x: (pastrami, be of, $x) -> (The titular pastramis, are part of, a raffle) -> a raffle (1051ms) What is pastrami made of? the best anywhere -0.0 What is pastrami made of? -> $x: (pastrami, be of, $x) -> (their pastrami, is arguably some of, the best anywhere) -> the best anywhere (1089ms) What is pastrami made of? Chef Aaron McCargo Jr -0.0 What is pastrami made of? -> $x: ($x, be make, pastrami) -> (Chef Aaron McCargo Jr, is making, Pastrami) -> Chef Aaron McCargo Jr (1001ms) What is pastrami made of? electrolytes -0.0 What is pastrami made of? -> $x: (pastrami, be of, $x) -> (Turkey pastrami, is a great source of, electrolytes) -> electrolytes (1018ms) What is pastrami made of? man -0.0 What is pastrami made of? -> $x: (pastrami, be of, $x) -> (Pastrami, is the very triumph of, man) -> man (1018ms) What is pastrami made of? the premises -0.0 What is pastrami made of? -> $x: (pastrami, be make, $x) -> (the corned beef and pastrami, will be made on, the premises) -> the premises (1018ms) What is pastrami made of? the options -0.0 What is pastrami made of? -> $x: (pastrami, be of, $x) -> (succulent pastrami, will be just a few of, the options) -> the options (1089ms) What is pastrami made of? any pastrami I?ve -0.0 What is pastrami made of? -> $x: (pastrami, do, $x) -> (their pastrami sandwich, did n?t look like, any pastrami I?ve) -> any pastrami I?ve (1101ms) What is pastrami made of? a brisket -0.0 What is pastrami made of? -> $x: (pastrami, be of, $x) -> (The real pastrami, is composed of, a brisket) -> a brisket (1018ms) What is pastrami made of? a pound -0.0 What is pastrami made of? -> $x: (pastrami, be make with, $x) -> (hot pastrami sandwich, is made with over, a pound) -> a pound (1089ms) What is pastrami made of? the general ugliness -0.0 What is pastrami made of? -> $x: (pastrami, be of, $x) -> (a pastrami, was once again reminded of, the general ugliness) -> the general ugliness (1052ms) What is pastrami made of? choice -0.0 What is pastrami made of? -> $x: (pastrami, be of, $x) -> (Pastrami or Roast Beef, are the meats of, choice) -> choice (1051ms) Where are the National Archives? Record Group 127 0.222222222222 Where are the National Archives? -> $x: (national archives, be find in, $x) -> (the National Archives, are found in, Record Group 127) -> Record Group 127 (1037ms) Where are the National Archives? the database 0.222222222222 Where are the National Archives? -> $x: (national archives, be find in, $x) -> (the National Archives, is found in, the database) -> the database (1037ms) Where are the National Archives? the north-east 0.111111111109 Where are the National Archives? -> $x: (national archives, be locate in, $x) -> (The National Archive, is located in, the north-east) -> the north-east (1229ms) Where are the National Archives? Parkes 0.111111111109 Where are the National Archives? -> $x: (national archives, be locate in, $x) -> (The National Archives, is located in, Parkes) -> Parkes (1229ms) Where are the National Archives? the centre 0.111111111109 Where are the National Archives? -> $x: (national archives, be locate in, $x) -> (The National Archives, are located in, the centre) -> the centre (1229ms) Where are the National Archives? Rio 0.111111111109 Where are the National Archives? -> $x: (national archives, be locate in, $x) -> (National Archives, are both located in, Rio) -> Rio (1037ms) Where are the National Archives? Washington DC 0.111111111109 Where are the National Archives? -> $x: (national archives, be locate in, $x) -> (The National Archives, are located in, Washington DC) -> Washington DC (1037ms) Where are the National Archives? an area 0.111111111109 Where are the National Archives? -> $x: (national archives, be locate in, $x) -> (The National Archives, is located in, an area) -> an area (1037ms) Where are the National Archives? Pune 0.111111111109 Where are the National Archives? -> $x: (national archives, be locate in, $x) -> (National Film Archives, are also located in, Pune) -> Pune (1229ms) Where are the National Archives? Dar es Salaam 0.111111111109 Where are the National Archives? -> $x: (national archives, be locate in, $x) -> (The national archives, are also located in, Dar es Salaam) -> Dar es Salaam (1037ms) Where are the National Archives? the some premises 0.111111111109 Where are the National Archives? -> $x: (national archives, be locate in, $x) -> (The National Archives office, is located in, the some premises) -> the some premises (1037ms) Where are the National Archives? Tripoli 0.111111111109 Where are the National Archives? -> $x: (national archives, be locate in, $x) -> (The National Archives, are located in, Tripoli) -> Tripoli (1229ms) Where are the National Archives? The 26th copy -0.0 Where are the National Archives? -> $x: ($x, discover, national archives) -> (The 26th copy, was discovered in, The National Archives) -> The 26th copy (2680ms) Where are the National Archives? Tupac Shakur -0.0 Where are the National Archives? -> $x: ($x, create, national archives) -> (Tupac Shakur, be created at, the National Archives) -> Tupac Shakur (2854ms) Where are the National Archives? five months -0.0 Where are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archives, has been functional for over, five months) -> five months (2854ms) Where are the National Archives? Bill -0.0 Where are the National Archives? -> $x: ($x, go, national archives) -> (Bill, went to, the National Archives) -> Bill (2867ms) Where are the National Archives? ?.we -0.0 Where are the National Archives? -> $x: ($x, go, national archives) -> (?.we, even went to, the national archives) -> ?.we (2834ms) Where are the National Archives? a fantastic job -0.0 Where are the National Archives? -> $x: (national archives, do, $x) -> (The National Archives, are doing, a fantastic job) -> a fantastic job (2867ms) Where are the National Archives? any legislative change -0.0 Where are the National Archives? -> $x: ($x, do, national archives) -> (any legislative change, be done in, the National Archives Act) -> any legislative change (2812ms) Where are the National Archives? the preservation -0.0 Where are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archives, has been a champion for, the preservation) -> the preservation (2790ms) Where are the National Archives? The list -0.0 Where are the National Archives? -> $x: ($x, found, national archives) -> (The list, may be found in, National Archives) -> The list (2844ms) Where are the National Archives? Canada -0.0 Where are the National Archives? -> $x: ($x, go, national archives) -> (Canada, has offered to go to, the National Archives) -> Canada (2790ms) Where are the National Archives? two -0.0 Where are the National Archives? -> $x: ($x, found, national archives) -> (two, can be found in, the National Archives) -> two (2819ms) Where are the National Archives? Mobile -0.0 Where are the National Archives? -> $x: ($x, contain, national archives) -> (Mobile, Contains, National African American Archives and Museum) -> Mobile (2790ms) Where are the National Archives? nearby Roubaix -0.0 Where are the National Archives? -> $x: ($x, found, national archives) -> (nearby Roubaix, are found, the National Archives) -> nearby Roubaix (2834ms) Where are the National Archives? a good place -0.0 Where are the National Archives? -> $x: ($x, create, national archives) -> (a good place, create, this digital national archive) -> a good place (1782ms) Where are the National Archives? The plan -0.0 Where are the National Archives? -> $x: ($x, develop, national archives) -> (The plan, was developed by, the National Archives) -> The plan (2854ms) Where are the National Archives? The Executive Order -0.0 Where are the National Archives? -> $x: ($x, establish, national archives) -> (The Executive Order, establishes within, the National Archives) -> The Executive Order (2844ms) Where are the National Archives? certified copies -0.0 Where are the National Archives? -> $x: ($x, find, national archives) -> (certified copies, found in, the National Archives) -> certified copies (2858ms) Where are the National Archives? The scholarship -0.0 Where are the National Archives? -> $x: ($x, fund, national archives) -> (The scholarship, is funded by, the National Archives) -> The scholarship (2844ms) Where are the National Archives? the center -0.0 Where are the National Archives? -> $x: ($x, establish, national archives) -> (the center, has established, a national archive) -> the center (2812ms) Where are the National Archives? The tool -0.0 Where are the National Archives? -> $x: ($x, develop, national archives) -> (The tool, was developed by, the National Archives) -> The tool (2873ms) Where are the National Archives? Boulevard 9 -0.0 Where are the National Archives? -> $x: (national archives, be situate in, $x) -> (the National Archives, are situated in, Boulevard 9) -> Boulevard 9 (2812ms) Where are the National Archives? United Kingdom -0.0 Where are the National Archives? -> $x: ($x, contain, national archives) -> (United Kingdom, Contains, The National Archives) -> United Kingdom (2858ms) Where are the National Archives? England -0.0 Where are the National Archives? -> $x: (national archives, be for, $x) -> (The National Archives, is also the official archive for, England) -> England (2680ms) Where are the National Archives? a wonderful job -0.0 Where are the National Archives? -> $x: (national archives, do, $x) -> (The Anglican Church National Archives, did, a wonderful job) -> a wonderful job (2849ms) Where are the National Archives? a team -0.0 Where are the National Archives? -> $x: ($x, go, national archives) -> (a team, went to, the National Archive) -> a team (2854ms) Where are the National Archives? the legislation -0.0 Where are the National Archives? -> $x: ($x, create, national archives) -> (the legislation, creating, the National Archives) -> the legislation (2867ms) Where are the National Archives? research -0.0 Where are the National Archives? -> $x: (national archives, do, $x) -> (National Archives, can be used to do, research) -> research (2844ms) Where are the National Archives? 1812 -0.0 Where are the National Archives? -> $x: ($x, found, national archives) -> (1812, can be found at, the National Archives) -> 1812 (2867ms) Where are the National Archives? an original exhibition -0.0 Where are the National Archives? -> $x: ($x, develop, national archives) -> (an original exhibition, developed by, the National Archives) -> an original exhibition (2805ms) Where are the National Archives? Institute graduates -0.0 Where are the National Archives? -> $x: ($x, do, national archives) -> (Institute graduates, do so at, the National Archives) -> Institute graduates (2834ms) Where are the National Archives? records -0.0 Where are the National Archives? -> $x: ($x, find, national archives) -> (records, found in, the National Archives) -> records (2839ms) Where are the National Archives? Film -0.0 Where are the National Archives? -> $x: ($x, fund, national archives) -> (Film, is a jointly funded project by, The National Archives) -> Film (2147ms) Where are the National Archives? lighthouse records -0.0 Where are the National Archives? -> $x: ($x, found, national archives) -> (lighthouse records, found in, the National Archives) -> lighthouse records (2854ms) Where are the National Archives? Lovell?s daughter -0.0 Where are the National Archives? -> $x: ($x, found, national archives) -> (Lovell?s daughter, recently found in, the National Archives) -> Lovell?s daughter (2839ms) Where are the National Archives? The index -0.0 Where are the National Archives? -> $x: ($x, develop, national archives) -> (The index, was developed by, the National Archives) -> The index (2827ms) Where are the National Archives? Further research -0.0 Where are the National Archives? -> $x: ($x, do, national archives) -> (Further research, has yet to be done in, the National Archives) -> Further research (2284ms) Where are the National Archives? Worked ? -0.0 Where are the National Archives? -> $x: ($x, create, national archives) -> (Worked ?, was created by, the National Archives) -> Worked ? (1782ms) Where are the National Archives? The sample -0.0 Where are the National Archives? -> $x: ($x, comprise, national archives) -> (The sample, comprised, national , regional and local archives) -> The sample (2819ms) Where are the National Archives? hard copies -0.0 Where are the National Archives? -> $x: (national archives, do, $x) -> (the National Archives, is still doing so using, hard copies) -> hard copies (2858ms) Where are the National Archives? Congress -0.0 Where are the National Archives? -> $x: ($x, establish, national archives) -> (Congress, established, the National Archives) -> Congress (2844ms) Where are the National Archives? Kevin Sim -0.0 Where are the National Archives? -> $x: ($x, discover, national archives) -> (Kevin Sim, discovered a letter in, the National Archives) -> Kevin Sim (2863ms) Where are the National Archives? the 5 references -0.0 Where are the National Archives? -> $x: ($x, found, national archives) -> (the 5 references, can be found at, the national Archives) -> the 5 references (2858ms) Where are the National Archives? CW Enterprise -0.0 Where are the National Archives? -> $x: ($x, do, national archives) -> (CW Enterprise, does research at, the National Archives) -> CW Enterprise (2798ms) Where are the National Archives? Broderick -0.0 Where are the National Archives? -> $x: ($x, go, national archives) -> (Broderick, goes to, the National Archives facility) -> Broderick (2844ms) Where are the National Archives? Image credits -0.0 Where are the National Archives? -> $x: ($x, go, national archives) -> (Image credits, go to, the National Archives) -> Image credits (2858ms) Where are the National Archives? A booklet -0.0 Where are the National Archives? -> $x: ($x, discover, national archives) -> (A booklet, recently discovered in, the National Archives) -> A booklet (2858ms) Where are the National Archives? the song -0.0 Where are the National Archives? -> $x: ($x, go, national archives) -> (the song, will now go to, the national folk song archives) -> the song (2805ms) Where are the National Archives? further info -0.0 Where are the National Archives? -> $x: (national archives, be for, $x) -> (The National Archives, may be a source for, further info) -> further info (2839ms) Where are the National Archives? the express purpose -0.0 Where are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archives, is for, the express purpose) -> the express purpose (2844ms) Where are the National Archives? the study -0.0 Where are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archives, is a center for, the study) -> the study (2774ms) Where are the National Archives? SHAMROCK -0.0 Where are the National Archives? -> $x: ($x, found, national archives) -> (SHAMROCK, had been found in, the National Archives) -> SHAMROCK (2834ms) Where are the National Archives? family historians -0.0 Where are the National Archives? -> $x: ($x, find, national archives) -> (family historians, find, these National Archives microfilms) -> family historians (2863ms) Where are the National Archives? Further information -0.0 Where are the National Archives? -> $x: ($x, found, national archives) -> (Further information, might be found at, the National Archive) -> Further information (2790ms) Where are the National Archives? 2012 New Lincoln -0.0 Where are the National Archives? -> $x: ($x, found, national archives) -> (2012 New Lincoln, found in, the National Archives) -> 2012 New Lincoln (2854ms) Where are the National Archives? the United States -0.0 Where are the National Archives? -> $x: ($x, establish, national archives) -> (the United States, established, its National Archives) -> the United States (2774ms) Where are the National Archives? ? Lisa Hill *These links -0.0 Where are the National Archives? -> $x: ($x, go, national archives) -> (? Lisa Hill *These links, go to, the National Archives timeline) -> ? Lisa Hill *These links (2681ms) Where are the National Archives? Ph.D. candidates -0.0 Where are the National Archives? -> $x: (national archives, be for, $x) -> (The National Archives, is looking for, Ph.D. candidates) -> Ph.D. candidates (2790ms) Where are the National Archives? researchers -0.0 Where are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archives, are rich sources for, researchers) -> researchers (2819ms) Where are the National Archives? Bangladesh -0.0 Where are the National Archives? -> $x: ($x, establish, national archives) -> (Bangladesh, established, National Archives) -> Bangladesh (2844ms) Where are the National Archives? Prince George's County -0.0 Where are the National Archives? -> $x: ($x, contain, national archives) -> (Prince George's County, Contains, National Archives at College Park) -> Prince George's County (2849ms) Where are the National Archives? The next step -0.0 Where are the National Archives? -> $x: ($x, go, national archives) -> (The next step, was to go to, the National Archives) -> The next step (2782ms) Where are the National Archives? 20740 -0.0 Where are the National Archives? -> $x: ($x, contain, national archives) -> (20740, Contains, National Archives at College Park) -> 20740 (2827ms) Where are the National Archives? Reporter Jonathon Keats -0.0 Where are the National Archives? -> $x: ($x, go, national archives) -> (Reporter Jonathon Keats, went to, the National Archives) -> Reporter Jonathon Keats (2863ms) Where are the National Archives? LNWR20 -0.0 Where are the National Archives? -> $x: ($x, found, national archives) -> (LNWR20, found at, The National Archives below) -> LNWR20 (2774ms) Where are the National Archives? The program -0.0 Where are the National Archives? -> $x: ($x, fund, national archives) -> (The program, is funded jointly by, the National Archives) -> The program (2680ms) Where are the National Archives? Office -0.0 Where are the National Archives? -> $x: ($x, create, national archives) -> (Office, was created by, the National Archives) -> Office (2798ms) Where are the National Archives? DROID -0.0 Where are the National Archives? -> $x: ($x, develop, national archives) -> (DROID, was developed by, The National Archives) -> DROID (2854ms) Where are the National Archives? 35 mm microfilm -0.0 Where are the National Archives? -> $x: ($x, found, national archives) -> (35 mm microfilm, See Finding, Aid National Archives) -> 35 mm microfilm (2284ms) Where are the National Archives? ISO 16175 -0.0 Where are the National Archives? -> $x: ($x, replace, national archives) -> (ISO 16175, replace, National Archives products Specifications) -> ISO 16175 (2854ms) Where are the National Archives? A letter -0.0 Where are the National Archives? -> $x: ($x, find, national archives) -> (A letter, found in, the Washington National Archives) -> A letter (2844ms) Where are the National Archives? 150 files -0.0 Where are the National Archives? -> $x: ($x, do, national archives) -> (150 files, will be done accessible during, the National Archive) -> 150 files (2863ms) Where are the National Archives? a clever web developer -0.0 Where are the National Archives? -> $x: (national archives, be for, $x) -> (national archives, are looking for, a clever web developer) -> a clever web developer (2854ms) Where are the National Archives? filmmakers -0.0 Where are the National Archives? -> $x: ($x, do, national archives) -> (filmmakers, have done at, the National Archives) -> filmmakers (2774ms) Where are the National Archives? Washington, D.C. -0.0 Where are the National Archives? -> $x: ($x, contain, national archives) -> (Washington, D.C., Contains, National Archives Building) -> Washington, D.C. (2827ms) Where are the National Archives? A search -0.0 Where are the National Archives? -> $x: ($x, do, national archives) -> (A search, was also done at, the National Archives) -> A search (2241ms) Where are the National Archives? Freeman -0.0 Where are the National Archives? -> $x: ($x, find, national archives) -> (Freeman, was found in, the National Archives) -> Freeman (2849ms) Where are the National Archives? sale -0.0 Where are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archives, was put up for, sale) -> sale (2839ms) Where are the National Archives? Details -0.0 Where are the National Archives? -> $x: ($x, find, national archives) -> (Details, are found in, National Archives) -> Details (2597ms) Where are the National Archives? the records -0.0 Where are the National Archives? -> $x: (national archives, be for, $x) -> (The National Archives, is the repository for, the records) -> the records (2839ms) Where are the National Archives? Iowa -0.0 Where are the National Archives? -> $x: ($x, go, national archives) -> (Iowa, can now go to, the National Archives rotunda) -> Iowa (2812ms) Where are the National Archives? The letter -0.0 Where are the National Archives? -> $x: ($x, discover, national archives) -> (The letter, was discovered in, the U.S. National Archives) -> The letter (2241ms) Where are the National Archives? the Land Entry Case Files -0.0 Where are the National Archives? -> $x: ($x, found, national archives) -> (the Land Entry Case Files, are found at, the National Archives) -> the Land Entry Case Files (2863ms) Where are the National Archives? The response -0.0 Where are the National Archives? -> $x: ($x, find, national archives) -> (The response, can be found in, the National Archives) -> The response (2284ms) Where are the National Archives? Gaston County -0.0 Where are the National Archives? -> $x: ($x, produce, national archives) -> (Gaston County, has been produced by, the The National Archives) -> Gaston County (2849ms) Where are the National Archives? interview -0.0 Where are the National Archives? -> $x: (national archives, be for, $x) -> (BFI National Archive, is available for, interview) -> interview (2790ms) Where are the National Archives? half -0.0 Where are the National Archives? -> $x: (national archives, be for, $x) -> (The National Archives, have been plundered for, half) -> half (2774ms) Where are the National Archives? The only document -0.0 Where are the National Archives? -> $x: ($x, find, national archives) -> (The only document, found in, the National Archives) -> The only document (2819ms) Where are the National Archives? further information -0.0 Where are the National Archives? -> $x: ($x, go, national archives) -> (further information, go to, the National Archives web site) -> further information (1782ms) Where are the National Archives? National Archives at College Park -0.0 Where are the National Archives? -> $x: ($x, contain, national archives) -> (National Archives at College Park, Contains, National Archives Archeological Site) -> National Archives at College Park (2858ms) Where are the National Archives? The following map -0.0 Where are the National Archives? -> $x: ($x, find, national archives) -> (The following map, found in, the National Archives) -> The following map (2849ms) Where are the National Archives? the policy -0.0 Where are the National Archives? -> $x: ($x, develop, national archives) -> (the policy, has been developed by, The National Archives) -> the policy (2844ms) Where are the National Archives? Twain -0.0 Where are the National Archives? -> $x: ($x, go, national archives) -> (Twain, went to, the National Archives) -> Twain (2805ms) Where are the National Archives? General -0.0 Where are the National Archives? -> $x: ($x, help, national archives) -> (General, help with, Scottish research National Archives) -> General (2867ms) Where are the National Archives? The project -0.0 Where are the National Archives? -> $x: ($x, develop, national archives) -> (The project, has developed, Thailand?s national digital archives) -> The project (2812ms) Where are the National Archives? Files -0.0 Where are the National Archives? -> $x: ($x, found, national archives) -> (Files, found in, the National Archives) -> Files (2827ms) Where are the National Archives? the Congress -0.0 Where are the National Archives? -> $x: ($x, create, national archives) -> (the Congress, created, the National Archives) -> the Congress (1782ms) Where are the National Archives? Hindu sacred music -0.0 Where are the National Archives? -> $x: ($x, find, national archives) -> (Hindu sacred music, may be found in, the National Sound Archive) -> Hindu sacred music (2812ms) Where are the National Archives? The Pledge -0.0 Where are the National Archives? -> $x: ($x, found, national archives) -> (The Pledge, was found at, The National Archives) -> The Pledge (2827ms) Where are the National Archives? the program -0.0 Where are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archives, will be guest speaker for, the program) -> the program (2863ms) Where are the National Archives? specific information -0.0 Where are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archives, is looking for, specific information) -> specific information (2812ms) Where are the National Archives? The encasement -0.0 Where are the National Archives? -> $x: ($x, design, national archives) -> (The encasement, was designed by, the National Archives) -> The encasement (2863ms) Where are the National Archives? John Russell Pope -0.0 Where are the National Archives? -> $x: ($x, design, national archives) -> (John Russell Pope, Structures Designed, National Archives Building) -> John Russell Pope (2782ms) Where are the National Archives? the means -0.0 Where are the National Archives? -> $x: ($x, establish, national archives) -> (the means, established by, the National Archives) -> the means (2854ms) Where are the National Archives? indexes -0.0 Where are the National Archives? -> $x: ($x, found, national archives) -> (indexes, can be found at, the National Archives) -> indexes (2782ms) Where are the National Archives? Eddie Wong -0.0 Where are the National Archives? -> $x: ($x, go, national archives) -> (Eddie Wong, then went to, the National Archives) -> Eddie Wong (2863ms) Where are the National Archives? Sunday -0.0 Where are the National Archives? -> $x: ($x, go, national archives) -> (Sunday, Went to, the National Archives) -> Sunday (2827ms) Where are the National Archives? a nationwide tour -0.0 Where are the National Archives? -> $x: ($x, go, national archives) -> (a nationwide tour, went from, the National Archives) -> a nationwide tour (2849ms) Where are the National Archives? a conspiracy -0.0 Where are the National Archives? -> $x: (national archives, do, $x) -> (The U.S. National Archives, Does, a conspiracy) -> a conspiracy (2596ms) Where are the National Archives? the two organisations -0.0 Where are the National Archives? -> $x: ($x, establish, national archives) -> (the two organisations, have established, the National Archives) -> the two organisations (2798ms) Where are the National Archives? an original manuscript map -0.0 Where are the National Archives? -> $x: ($x, found, national archives) -> (an original manuscript map, found in, the National Archives) -> an original manuscript map (2873ms) Where are the National Archives? Steve -0.0 Where are the National Archives? -> $x: ($x, do, national archives) -> (Steve, will be doing research at, the National Archives) -> Steve (2597ms) Where are the National Archives? Miami reporter John Buchanan -0.0 Where are the National Archives? -> $x: ($x, go, national archives) -> (Miami reporter John Buchanan, went to, the National Archives) -> Miami reporter John Buchanan (2782ms) Where are the National Archives? databases -0.0 Where are the National Archives? -> $x: ($x, create, national archives) -> (databases, created by, the National Archives of Canada) -> databases (2873ms) Where are the National Archives? public access -0.0 Where are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archives, are available for, public access) -> public access (2798ms) Where are the National Archives? The Archives Act -0.0 Where are the National Archives? -> $x: ($x, establish, national archives) -> (The Archives Act, establishes, the National Archives) -> The Archives Act (2854ms) Where are the National Archives? a US government report -0.0 Where are the National Archives? -> $x: ($x, find, national archives) -> (a US government report, found at, the National Archives) -> a US government report (2812ms) Where are the National Archives? the dinosaurs and mammals -0.0 Where are the National Archives? -> $x: ($x, go, national archives) -> (the dinosaurs and mammals, then went to, the National Archives) -> the dinosaurs and mammals (2839ms) Where are the National Archives? briefly talk -0.0 Where are the National Archives? -> $x: ($x, go, national archives) -> (briefly talk, is going on at, the National Archives) -> briefly talk (2782ms) Where are the National Archives? The exhibition -0.0 Where are the National Archives? -> $x: ($x, create, national archives) -> (The exhibition, was created by, the National Archives) -> The exhibition (2844ms) Where are the National Archives? inclusion -0.0 Where are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archives, was chosen for, inclusion) -> inclusion (2819ms) Where are the National Archives? National Archives Archeological Site -0.0 Where are the National Archives? -> $x: ($x, contain, national archives) -> (National Archives Archeological Site, Contained by, National Archives at College Park) -> National Archives Archeological Site (2858ms) Where are the National Archives? Seven Stories -0.0 Where are the National Archives? -> $x: ($x, create, national archives) -> (Seven Stories, is to create, a national archive) -> Seven Stories (2774ms) Where are the National Archives? tools -0.0 Where are the National Archives? -> $x: ($x, develop, national archives) -> (tools, developed by, the National Archives) -> tools (2284ms) Where are the National Archives? the inclusion -0.0 Where are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archives, was one major reason for, the inclusion) -> the inclusion (2844ms) Where are the National Archives? the army -0.0 Where are the National Archives? -> $x: ($x, go, national archives) -> (the army, went to, the National Archives) -> the army (2798ms) Where are the National Archives? Can't -0.0 Where are the National Archives? -> $x: ($x, go, national archives) -> (Can't, go to, the National Archives downtown) -> Can't (2839ms) Where are the National Archives? An exhibition -0.0 Where are the National Archives? -> $x: ($x, produce, national archives) -> (An exhibition, produced for, the 2007 National Archives Campaign) -> An exhibition (2863ms) Where are the National Archives? the perspective -0.0 Where are the National Archives? -> $x: ($x, find, national archives) -> (the perspective, can be found at, the National Archives) -> the perspective (2844ms) Where are the National Archives? DDI -0.0 Where are the National Archives? -> $x: ($x, develop, national archives) -> (DDI, have developed, National Data Archives) -> DDI (2849ms) Where are the National Archives? August 2003 -0.0 Where are the National Archives? -> $x: ($x, develop, national archives) -> (August 2003, has been developed by, the National Archives) -> August 2003 (2827ms) Where are the National Archives? the tiny Selective Service System -0.0 Where are the National Archives? -> $x: (national archives, do, $x) -> (The National Archives, did, the tiny Selective Service System) -> the tiny Selective Service System (2849ms) Where are the National Archives? Ireland -0.0 Where are the National Archives? -> $x: ($x, contain, national archives) -> (Ireland, Contains, National Photographic Archive) -> Ireland (2867ms) Where are the National Archives? George Bigelow Rogers -0.0 Where are the National Archives? -> $x: ($x, design, national archives) -> (George Bigelow Rogers, Structures Designed, National African American Archives and Museum) -> George Bigelow Rogers (2819ms) Where are the National Archives? an exhibition -0.0 Where are the National Archives? -> $x: ($x, create, national archives) -> (an exhibition, created by, the National Archives) -> an exhibition (2782ms) Where are the National Archives? pictures -0.0 Where are the National Archives? -> $x: ($x, go, national archives) -> (pictures, has just gone online from, the National Archives) -> pictures (2849ms) Where are the National Archives? The original petitions -0.0 Where are the National Archives? -> $x: ($x, find, national archives) -> (The original petitions, can be found in, the National Archives) -> The original petitions (2839ms) Where are the National Archives? what it says on the tin -0.0 Where are the National Archives? -> $x: (national archives, do, $x) -> (The National Archive, does, what it says on the tin) -> what it says on the tin (2858ms) Where are the National Archives? Washington -0.0 Where are the National Archives? -> $x: ($x, establish, national archives) -> (Washington, established, the National Archives) -> Washington (2790ms) Where are the National Archives? The proposal -0.0 Where are the National Archives? -> $x: ($x, create, national archives) -> (The proposal, would create, a national imaging archive) -> The proposal (1782ms) Where are the National Archives? act -0.0 Where are the National Archives? -> $x: (national archives, do, $x) -> (the Belgian National Archive, did, act) -> act (2790ms) Where are the National Archives? the last three voyages -0.0 Where are the National Archives? -> $x: ($x, found, national archives) -> (the last three voyages, can be found in, National Archives) -> the last three voyages (2867ms) Where are the National Archives? 35mm microfilm -0.0 Where are the National Archives? -> $x: ($x, found, national archives) -> (35mm microfilm, See Finding, Aid National Archives) -> 35mm microfilm (2849ms) Where are the National Archives? a George Willingham -0.0 Where are the National Archives? -> $x: (national archives, do, $x) -> (the National Archives, do have a will for, a George Willingham) -> a George Willingham (2596ms) Where are the National Archives? Brianna -0.0 Where are the National Archives? -> $x: ($x, get, national archives) -> (Brianna, get an internship at, the National Archives) -> Brianna (2014ms) Where are the National Archives? free -0.0 Where are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archives, can be viewed for, free) -> free (2867ms) Where are the National Archives? The 1852 map -0.0 Where are the National Archives? -> $x: ($x, discover, national archives) -> (The 1852 map, was discovered in, the National Archives) -> The 1852 map (2782ms) Where are the National Archives? Canberra -0.0 Where are the National Archives? -> $x: ($x, contain, national archives) -> (Canberra, Contains, National Film and Sound Archive) -> Canberra (2867ms) Where are the National Archives? The films -0.0 Where are the National Archives? -> $x: ($x, discover, national archives) -> (The films, were discovered in, the National Archives) -> The films (2798ms) Where are the National Archives? information -0.0 Where are the National Archives? -> $x: ($x, find, national archives) -> (information, found in, the National Archives) -> information (2849ms) Where are the National Archives? the plans -0.0 Where are the National Archives? -> $x: ($x, found, national archives) -> (the plans, found its way into, the National Archives) -> the plans (2854ms) Where are the National Archives? documents -0.0 Where are the National Archives? -> $x: ($x, discover, national archives) -> (documents, discover some of, the National Archives) -> documents (2863ms) Where are the National Archives? a document -0.0 Where are the National Archives? -> $x: ($x, find, national archives) -> (a document, found in, the National Archives) -> a document (2867ms) Where are the National Archives? Harvey Girls -0.0 Where are the National Archives? -> $x: (national archives, do, $x) -> (the National Archives, does its show on, Harvey Girls) -> Harvey Girls (2858ms) Where are the National Archives? the best photos -0.0 Where are the National Archives? -> $x: ($x, find, national archives) -> (the best photos, found in, the National Geographic archives) -> the best photos (2863ms) Where are the National Archives? 1941-1 -0.0 Where are the National Archives? -> $x: ($x, go, national archives) -> (1941-1, go to, the National Archives search) -> 1941-1 (2680ms) Where are the National Archives? massive work -0.0 Where are the National Archives? -> $x: (national archives, do, $x) -> (the National Archives, have done, massive work) -> massive work (1707ms) Where are the National Archives? the District -0.0 Where are the National Archives? -> $x: ($x, find, national archives) -> (the District, can be found in, the National Archives) -> the District (2873ms) Where are the National Archives? the Archives -0.0 Where are the National Archives? -> $x: ($x, contain, national archives) -> (the Archives, contain, the National AIDS Archive Collection) -> the Archives (2867ms) Where are the National Archives? reference purposes -0.0 Where are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archives, are available for, reference purposes) -> reference purposes (2241ms) Where are the National Archives? Lenient Sentence data -0.0 Where are the National Archives? -> $x: ($x, found, national archives) -> (Lenient Sentence data, can be found at, The National Archives) -> Lenient Sentence data (2867ms) Where are the National Archives? Kurlansky -0.0 Where are the National Archives? -> $x: ($x, find, national archives) -> (Kurlansky, found in, the National Archives) -> Kurlansky (2805ms) Where are the National Archives? A little tidbit -0.0 Where are the National Archives? -> $x: ($x, find, national archives) -> (A little tidbit, found at, the National Archives) -> A little tidbit (2858ms) Where are the National Archives? the government -0.0 Where are the National Archives? -> $x: ($x, go, national archives) -> (the government, is going back through, the National Archives) -> the government (2849ms) Where are the National Archives? the acquisition -0.0 Where are the National Archives? -> $x: (national archives, be for, $x) -> (The National Archives, has been responsible for, the acquisition) -> the acquisition (2805ms) Where are the National Archives? prisons -0.0 Where are the National Archives? -> $x: ($x, find, national archives) -> (prisons, were found in, the National Archives) -> prisons (2819ms) Where are the National Archives? NZSG members -0.0 Where are the National Archives? -> $x: ($x, go, national archives) -> (NZSG members, can go into, the National Archive site and search) -> NZSG members (2819ms) Where are the National Archives? the monitoring -0.0 Where are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archive, is responsible for, the monitoring) -> the monitoring (2013ms) Where are the National Archives? copies -0.0 Where are the National Archives? -> $x: ($x, go, national archives) -> (copies, go to, the National Archives and Records Administration) -> copies (2849ms) Where are the National Archives? 1940 -0.0 Where are the National Archives? -> $x: ($x, define, national archives) -> (1940, are defined on, the original National Archives) -> 1940 (1229ms) Where are the National Archives? compensation -0.0 Where are the National Archives? -> $x: ($x, found, national archives) -> (compensation, can be found at, the National Archives) -> compensation (2867ms) Where are the National Archives? ?Files -0.0 Where are the National Archives? -> $x: ($x, find, national archives) -> (?Files, found in, the National Archives) -> ?Files (2790ms) Where are the National Archives? experts -0.0 Where are the National Archives? -> $x: ($x, find, national archives) -> (experts, cannot be found in, the National Archives) -> experts (2873ms) Where are the National Archives? the National Archives -0.0 Where are the National Archives? -> $x: ($x, go, national archives) -> (the National Archives, go to, the National Archives Website) -> the National Archives (1707ms) Where are the National Archives? a period -0.0 Where are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archives, will be stored for, a period) -> a period (2819ms) Where are the National Archives? The document -0.0 Where are the National Archives? -> $x: ($x, found, national archives) -> (The document, was found at, the National Archives) -> The document (2873ms) Where are the National Archives? Newsnight -0.0 Where are the National Archives? -> $x: ($x, produce, national archives) -> (Newsnight, produced documents from, the National Archives) -> Newsnight (1229ms) Where are the National Archives? decades -0.0 Where are the National Archives? -> $x: ($x, go, national archives) -> (decades, have been able to go to, the National Archives) -> decades (2839ms) Where are the National Archives? aerial photographs -0.0 Where are the National Archives? -> $x: ($x, contain, national archives) -> (aerial photographs, contained within, the National Archives) -> aerial photographs (2812ms) Where are the National Archives? telephone 1300 886 881 -0.0 Where are the National Archives? -> $x: ($x, go, national archives) -> (telephone 1300 886 881, go to, the National Archives website) -> telephone 1300 886 881 (2774ms) Where are the National Archives? an account -0.0 Where are the National Archives? -> $x: ($x, found, national archives) -> (an account, found in, The National Archives) -> an account (2834ms) Where are the National Archives? Passenger lists -0.0 Where are the National Archives? -> $x: ($x, find, national archives) -> (Passenger lists, can be found at, the National Archives) -> Passenger lists (2834ms) Where are the National Archives? Next up?Jeff and Benjie -0.0 Where are the National Archives? -> $x: ($x, go, national archives) -> (Next up?Jeff and Benjie, go to, the National Archives) -> Next up?Jeff and Benjie (2819ms) Where are the National Archives? the Museum -0.0 Where are the National Archives? -> $x: ($x, contain, national archives) -> (the Museum, contain WRA photographs from, the National Archives) -> the Museum (2790ms) Where are the National Archives? a letter -0.0 Where are the National Archives? -> $x: ($x, find, national archives) -> (a letter, found in, the National Archives) -> a letter (2284ms) Where are the National Archives? guys -0.0 Where are the National Archives? -> $x: ($x, get, national archives) -> (guys, can get documents in, our national archives) -> guys (2680ms) Where are the National Archives? D.C. -0.0 Where are the National Archives? -> $x: ($x, do, national archives) -> (D.C., do research in, the National Archives) -> D.C. (2839ms) Where are the National Archives? various genealogical sources -0.0 Where are the National Archives? -> $x: ($x, find, national archives) -> (various genealogical sources, found in, the National Archives) -> various genealogical sources (2863ms) Where are the National Archives? the Executive Order -0.0 Where are the National Archives? -> $x: ($x, go, national archives) -> (the Executive Order, goes to, the National Archives) -> the Executive Order (1707ms) Where are the National Archives? The public -0.0 Where are the National Archives? -> $x: ($x, help, national archives) -> (The public, is invited to help, the National Archives) -> The public (2849ms) Where are the National Archives? any violations -0.0 Where are the National Archives? -> $x: (national archives, be for, $x) -> (The National Archives, cannot be responsible for, any violations) -> any violations (2827ms) Where are the National Archives? Africa -0.0 Where are the National Archives? -> $x: ($x, have create, national archives) -> (Africa, has been able to create, valuable national data archives) -> Africa (2827ms) Where are the National Archives? old indexes -0.0 Where are the National Archives? -> $x: ($x, found, national archives) -> (old indexes, found at, The National Archives) -> old indexes (2805ms) Where are the National Archives? the documents -0.0 Where are the National Archives? -> $x: ($x, find, national archives) -> (the documents, find at, the National Archives) -> the documents (2873ms) Where are the National Archives? You?ll -0.0 Where are the National Archives? -> $x: ($x, go, national archives) -> (You?ll, also need to go to, the National Archives) -> You?ll (2782ms) Where are the National Archives? southern Jutland -0.0 Where are the National Archives? -> $x: ($x, find, national archives) -> (southern Jutland, can be found at, the National Archive) -> southern Jutland (2849ms) Where are the National Archives? Mr. Pohanka -0.0 Where are the National Archives? -> $x: ($x, do, national archives) -> (Mr. Pohanka, was doing research at, the National Archives) -> Mr. Pohanka (2798ms) Where are the National Archives? risk management -0.0 Where are the National Archives? -> $x: ($x, contain, national archives) -> (risk management, is contained in, the National Archives version) -> risk management (2819ms) Where are the National Archives? office ? -0.0 Where are the National Archives? -> $x: ($x, find, national archives) -> (office ?, found at, the National Archives) -> office ? (2241ms) Where are the National Archives? every other tourist -0.0 Where are the National Archives? -> $x: (national archives, do, $x) -> (the National Archives, so did, every other tourist) -> every other tourist (2863ms) Where are the National Archives? scrutiny -0.0 Where are the National Archives? -> $x: (national archives, be for, $x) -> (The National Archives and copies, are available for, scrutiny) -> scrutiny (2241ms) Where are the National Archives? The memorandum -0.0 Where are the National Archives? -> $x: ($x, find, national archives) -> (The memorandum, was found in, the National Archives) -> The memorandum (2867ms) Where are the National Archives? the trial -0.0 Where are the National Archives? -> $x: ($x, found, national archives) -> (the trial, found in, the National Archives) -> the trial (2812ms) Where are the National Archives? Record -0.0 Where are the National Archives? -> $x: ($x, find, national archives) -> (Record, found at, National Archives) -> Record (2867ms) Where are the National Archives? Romanian Banat -0.0 Where are the National Archives? -> $x: ($x, find, national archives) -> (Romanian Banat, can be found in, the National Archives) -> Romanian Banat (2863ms) Where are the National Archives? interviews -0.0 Where are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archives expert, will be available for, interviews) -> interviews (2805ms) Where are the National Archives? Maryland -0.0 Where are the National Archives? -> $x: ($x, contain, national archives) -> (Maryland, Contains, National Archives Site) -> Maryland (2798ms) Where are the National Archives? 1942 -0.0 Where are the National Archives? -> $x: ($x, find, national archives) -> (1942, was found in, the National Archives) -> 1942 (2839ms) Where are the National Archives? A leaflet -0.0 Where are the National Archives? -> $x: ($x, produce, national archives) -> (A leaflet, produced by, the The National Archives) -> A leaflet (2774ms) Where are the National Archives? The center?s design -0.0 Where are the National Archives? -> $x: ($x, contain, national archives) -> (The center?s design, contains, a national archive) -> The center?s design (2863ms) Where are the National Archives? declassified orders -0.0 Where are the National Archives? -> $x: ($x, found, national archives) -> (declassified orders, now found in, the National Archives) -> declassified orders (2873ms) Where are the National Archives? operations -0.0 Where are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archives, would be responsible for, operations) -> operations (2774ms) Where are the National Archives? Obama -0.0 Where are the National Archives? -> $x: ($x, go, national archives) -> (Obama, went to, the National Archives) -> Obama (2867ms) Where are the National Archives? the beginning -0.0 Where are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archive fonds, are expected for, the beginning) -> the beginning (2858ms) Where are the National Archives? 1901 -0.0 Where are the National Archives? -> $x: ($x, find, national archives) -> (1901, can be found on, the National Archives) -> 1901 (2827ms) Where are the National Archives? the contact group -0.0 Where are the National Archives? -> $x: (national archives, do, $x) -> (the National Archives, does, the contact group) -> the contact group (2241ms) Where are the National Archives? microfilm -0.0 Where are the National Archives? -> $x: ($x, find, national archives) -> (microfilm, can be found in, the National Archives) -> microfilm (2147ms) Where are the National Archives? renovation -0.0 Where are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archives, has been closed for, renovation) -> renovation (2834ms) Where are the National Archives? Papers -0.0 Where are the National Archives? -> $x: ($x, found, national archives) -> (Papers, found at, the National Archives show) -> Papers (2782ms) Where are the National Archives? military records -0.0 Where are the National Archives? -> $x: ($x, go, national archives) -> (military records, go to, the National Archives extra) -> military records (2596ms) Where are the National Archives? the order -0.0 Where are the National Archives? -> $x: ($x, find, national archives) -> (the order, can be found in, the National Archives) -> the order (2854ms) Where are the National Archives? Grandpa -0.0 Where are the National Archives? -> $x: (national archives, do, $x) -> (the National Archives, did with, Grandpa) -> Grandpa (1526ms) Where are the National Archives? The principles -0.0 Where are the National Archives? -> $x: ($x, develop, national archives) -> (The principles, were developed by, the National Archives) -> The principles (2834ms) Where are the National Archives? lovely art -0.0 Where are the National Archives? -> $x: ($x, go, national archives) -> (lovely art, tried to go to, the National Archives exhibits) -> lovely art (2819ms) Where are the National Archives? The other goal -0.0 Where are the National Archives? -> $x: ($x, go, national archives) -> (The other goal, was to go to, the Hungarian National Archives) -> The other goal (2798ms) Where are the National Archives? Archives -0.0 Where are the National Archives? -> $x: ($x, find, national archives) -> (Archives, can be found at, The National Library Archive) -> Archives (2854ms) Where are the National Archives? Kellermans statements -0.0 Where are the National Archives? -> $x: ($x, found, national archives) -> (Kellermans statements, found in, the National Archives) -> Kellermans statements (2839ms) Where are the National Archives? the gallery -0.0 Where are the National Archives? -> $x: ($x, get, national archives) -> (the gallery, finally get to, the National Archives) -> the gallery (2873ms) Where are the National Archives? business -0.0 Where are the National Archives? -> $x: (national archives, be for, $x) -> (the National Archives, will continue to be open for, business) -> business (2147ms) Where are the National Archives? Garsia whose names -0.0 Where are the National Archives? -> $x: ($x, find, national archives) -> (Garsia whose names, were found in, the National Archives) -> Garsia whose names (2834ms) Where are the National Archives? family research -0.0 Where are the National Archives? -> $x: ($x, do, national archives) -> (family research, does, its National Archives collect) -> family research (2834ms) Where are the National Archives? The details -0.0 Where are the National Archives? -> $x: ($x, discover, national archives) -> (The details, were discovered from, the National Archives) -> The details (2839ms) Where are the National Archives? The film -0.0 Where are the National Archives? -> $x: ($x, introduce, national archives) -> (The film, introduces a visitor to, the National Archives) -> The film (2798ms) Where are the National Archives? The documents -0.0 Where are the National Archives? -> $x: ($x, found, national archives) -> (The documents, were found in, the National Archives) -> The documents (2863ms) Where are the National Archives? the 1935 electoral rolls -0.0 Where are the National Archives? -> $x: ($x, find, national archives) -> (the 1935 electoral rolls, are found in, the National Archives) -> the 1935 electoral rolls (2790ms) Where are the National Archives? Lincoln County -0.0 Where are the National Archives? -> $x: ($x, produce, national archives) -> (Lincoln County, has been produced by, the The National Archives) -> Lincoln County (2858ms) Where are the National Archives? the summer -0.0 Where are the National Archives? -> $x: (national archives, be for, $x) -> (The National Archives, are planned for, the summer) -> the summer (2147ms) Where are the National Archives? AEC headquarters records -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (AEC headquarters records, are divided between, National Archives) -> AEC headquarters records (2892ms) Where are the National Archives? a listing -0.111111111111 Where are the National Archives? -> $x: ($x, be located in, national archives) -> (a listing, is located in, the National Archives Depository) -> a listing (2902ms) Where are the National Archives? war -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (war, are in, the National Archives) -> war (2882ms) Where are the National Archives? the principal research repositories -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (the principal research repositories, are, National Archives) -> the principal research repositories (2895ms) Where are the National Archives? the manuscript version -0.111111111111 Where are the National Archives? -> $x: ($x, be located in, national archives) -> (the manuscript version, is located in, the US National Archives) -> the manuscript version (2877ms) Where are the National Archives? The Presbyterian Historical Society -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (The Presbyterian Historical Society, is, the National Archives) -> The Presbyterian Historical Society (2902ms) Where are the National Archives? Data -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (Data, can be submitted to, national archives) -> Data (2886ms) Where are the National Archives? Discovery -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (Discovery, is, The National Archives) -> Discovery (2877ms) Where are the National Archives? Sound Archive -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (Sound Archive, is, the national audiovisual archive) -> Sound Archive (2892ms) Where are the National Archives? 2007 -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (2007, is filed under, National Archives) -> 2007 (2877ms) Where are the National Archives? Contents INTRODUCTION -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (Contents INTRODUCTION, is, the National Archives) -> Contents INTRODUCTION (2889ms) Where are the National Archives? The report -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (The report, is in, the National Archives) -> The report (2877ms) Where are the National Archives? The original document -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (The original document, is in, the National Archives) -> The original document (2897ms) Where are the National Archives? Temple Bar -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (Temple Bar, are, the National Photographic Archive) -> Temple Bar (2886ms) Where are the National Archives? 34 -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (34, will be sent to, National Archives) -> 34 (2873ms) Where are the National Archives? heaven -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (heaven, was, the National Archives) -> heaven (2900ms) Where are the National Archives? The Archives Shop -0.111111111111 Where are the National Archives? -> $x: ($x, be located in, national archives) -> (The Archives Shop, is located in, the National Archives Building) -> The Archives Shop (2900ms) Where are the National Archives? The original manuscript -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (The original manuscript, is in, the French national archives) -> The original manuscript (2897ms) Where are the National Archives? 26 paintings -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (26 paintings, are in, the National Archives) -> 26 paintings (2886ms) Where are the National Archives? Dr. Deming -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (Dr. Deming, are in, the National Archives) -> Dr. Deming (2900ms) Where are the National Archives? ICPSR -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (ICPSR, can also be accessed from, National Archive) -> ICPSR (2877ms) Where are the National Archives? January 1863 -0.111111111111 Where are the National Archives? -> $x: ($x, be located in, national archives) -> (January 1863, is located in, the National Archives) -> January 1863 (2895ms) Where are the National Archives? The Telegram -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (The Telegram, is in, national archives) -> The Telegram (2902ms) Where are the National Archives? 610 Reproductions -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (610 Reproductions, may also be available at, National Archives) -> 610 Reproductions (2904ms) Where are the National Archives? The memo -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (The memo, is in, the National Archives) -> The memo (2900ms) Where are the National Archives? A copy -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (A copy, is in, the National Archives) -> A copy (2902ms) Where are the National Archives? EDC -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (EDC, is, a national archive) -> EDC (2895ms) Where are the National Archives? The original letter book -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (The original letter book, is in, the National Archives) -> The original letter book (2892ms) Where are the National Archives? recorded oral arguments -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (recorded oral arguments, are in, the National Archives) -> recorded oral arguments (2877ms) Where are the National Archives? JFK -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (JFK, are in, the National Archives) -> JFK (2892ms) Where are the National Archives? Frank Capra -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (Frank Capra, are in, the National Archives today) -> Frank Capra (2900ms) Where are the National Archives? the models -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (the models, are in, the National Archives) -> the models (2886ms) Where are the National Archives? the originals of which -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (the originals of which, are in, the National Archives) -> the originals of which (2895ms) Where are the National Archives? The records or copies -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (The records or copies, are in, the National Archives) -> The records or copies (2892ms) Where are the National Archives? the workshops -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (the workshops, is, the European National Archives) -> the workshops (2900ms) Where are the National Archives? the tract books -0.111111111111 Where are the National Archives? -> $x: ($x, be located in, national archives) -> (the tract books, are located in, the National Archives Building) -> the tract books (2900ms) Where are the National Archives? a Pose?with Lee Lin Chin -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (a Pose?with Lee Lin Chin, is, a National Archives) -> a Pose?with Lee Lin Chin (2892ms) Where are the National Archives? the Ballantyne collection -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (the Ballantyne collection, is in, the National Archives) -> the Ballantyne collection (2895ms) Where are the National Archives? the next step -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (the next step, was, the National Archives) -> the next step (2882ms) Where are the National Archives? the Natural History Museum -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (the Natural History Museum, is, the National Archives) -> the Natural History Museum (2904ms) Where are the National Archives? Army Medical Services research -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (Army Medical Services research, is, the National Archives) -> Army Medical Services research (2882ms) Where are the National Archives? An official copy -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (An official copy, is in, the National Archives) -> An official copy (2873ms) Where are the National Archives? The original print -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (The original print, is in, National Archives) -> The original print (2902ms) Where are the National Archives? agency makes -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (agency makes, will be retained as, national archives) -> agency makes (2886ms) Where are the National Archives? the French Army -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (the French Army, is in, the National Archives) -> the French Army (2882ms) Where are the National Archives? The only other known copy -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (The only other known copy, is in, the National Archives) -> The only other known copy (2886ms) Where are the National Archives? Navy Memorial -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (Navy Memorial, is right by, National Archives) -> Navy Memorial (2900ms) Where are the National Archives? the Confederate Army -0.111111111111 Where are the National Archives? -> $x: ($x, be located in, national archives) -> (the Confederate Army, are located in, the National Archives) -> the Confederate Army (2895ms) Where are the National Archives? the Civil war -0.111111111111 Where are the National Archives? -> $x: ($x, be located in, national archives) -> (the Civil war, are located in, the National Archives) -> the Civil war (2900ms) Where are the National Archives? fact -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (fact, is in, the National Archives) -> fact (2873ms) Where are the National Archives? the Creek Removal -0.111111111111 Where are the National Archives? -> $x: ($x, be located in, national archives) -> (the Creek Removal, are also located in, the National Archives) -> the Creek Removal (2882ms) Where are the National Archives? The bulletins -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (The bulletins, are in, the National Archives) -> The bulletins (2889ms) Where are the National Archives? NATF Form 84 -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (NATF Form 84, is, the National Archives) -> NATF Form 84 (2900ms) Where are the National Archives? military service -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (military service, are, the National Archives) -> military service (2902ms) Where are the National Archives? The originals -0.111111111111 Where are the National Archives? -> $x: ($x, be located in, national archives) -> (The originals, are located in, the National Archives) -> The originals (2897ms) Where are the National Archives? Bourdamis -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (Bourdamis, is, national archives chair) -> Bourdamis (2886ms) Where are the National Archives? Land-entry case files -0.111111111111 Where are the National Archives? -> $x: ($x, be located in, national archives) -> (Land-entry case files, are located in, the National Archives) -> Land-entry case files (2902ms) Where are the National Archives? NGDC -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (NGDC, is, the National Archive) -> NGDC (2889ms) Where are the National Archives? only 20 -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (only 20, are in, the National Archives) -> only 20 (2900ms) Where are the National Archives? the Poor Law Board -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (the Poor Law Board, are in, The National Archives) -> the Poor Law Board (2889ms) Where are the National Archives? Source -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (Source, is, National Archives) -> Source (2892ms) Where are the National Archives? the materials -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (the materials, be sent to, National Archives) -> the materials (2882ms) Where are the National Archives? May -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (May, is, National Photo Month Archives) -> May (2877ms) Where are the National Archives? 13 RecordSearch -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (13 RecordSearch, is, the National Archives) -> 13 RecordSearch (2897ms) Where are the National Archives? Orders -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (Orders, were obtained from, National Archives) -> Orders (2886ms) Where are the National Archives? Archival Training -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (Archival Training, was set up in, National Archives) -> Archival Training (2895ms) Where are the National Archives? BR?s reply -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (BR?s reply, is in, the National Archives) -> BR?s reply (2897ms) Where are the National Archives? foreign policy -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (foreign policy, is, the National Security Archive) -> foreign policy (2902ms) Where are the National Archives? requests -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (requests, are also 'retain as, national archives) -> requests (2904ms) Where are the National Archives? the Tokyo Trial -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (the Tokyo Trial, are presently stored in, national archives) -> the Tokyo Trial (2902ms) Where are the National Archives? the event -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (the event, are, the National Archives) -> the event (2904ms) Where are the National Archives? any Roswell files -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (any Roswell files, was, the National Archives) -> any Roswell files (2895ms) Where are the National Archives? research genealogy -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (research genealogy, are, the National Archives) -> research genealogy (2892ms) Where are the National Archives? the extant records -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (the extant records, are in, the National Archives) -> the extant records (2882ms) Where are the National Archives? important digital records -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (important digital records, are preserved as, national archives) -> important digital records (2900ms) Where are the National Archives? Metro?s work -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (Metro?s work, is in, the national Design Archives) -> Metro?s work (2889ms) Where are the National Archives? 615 Reproductions -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (615 Reproductions, may also be available at, National Archives) -> 615 Reproductions (2889ms) Where are the National Archives? LMA -0.111111111111 Where are the National Archives? -> $x: ($x, be involve in, national archives) -> (LMA, has also been involved in, The National Archives) -> LMA (2904ms) Where are the National Archives? The Emancipation Proclamation -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (The Emancipation Proclamation, is in, the National Archives) -> The Emancipation Proclamation (2892ms) Where are the National Archives? 605 Reproductions -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (605 Reproductions, may also be available at, National Archives) -> 605 Reproductions (2873ms) Where are the National Archives? The Pennsylvania lists -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (The Pennsylvania lists, are in, the National Archives) -> The Pennsylvania lists (2877ms) Where are the National Archives? The Swenson Center -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (The Swenson Center, is, a national archives) -> The Swenson Center (2877ms) Where are the National Archives? early drafts -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (early drafts, are in, National Archives) -> early drafts (2895ms) Where are the National Archives? the company -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (the company, was given by, National Archives) -> the company (2877ms) Where are the National Archives? the First World War -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (the First World War, are held by, National Archives) -> the First World War (2889ms) Where are the National Archives? the original logs -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (the original logs, are in, the National Archives) -> the original logs (2900ms) Where are the National Archives? mankind -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (mankind, is in, the national archive) -> mankind (2886ms) Where are the National Archives? the images -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (the images, have been provided to, NATIONAL ARCHIVES) -> the images (2882ms) Where are the National Archives? the originals -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (the originals, are in, The National Archives) -> the originals (2897ms) Where are the National Archives? Collection -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (Collection, was donated by, National Archives) -> Collection (2892ms) Where are the National Archives? the head -0.111111111111 Where are the National Archives? -> $x: ($x, be located in, national archives) -> (the head, are now located in, National Archives II) -> the head (2882ms) Where are the National Archives? Paul Rudolph -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (Paul Rudolph, is in, the National Archives) -> Paul Rudolph (2902ms) Where are the National Archives? The slowest federal agency -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (The slowest federal agency, is, the National Archives) -> The slowest federal agency (2877ms) Where are the National Archives? the Kirk Session records -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (the Kirk Session records, are in, the National Archives) -> the Kirk Session records (2897ms) Where are the National Archives? Walter Cronkite -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (Walter Cronkite, is in, the National Archives) -> Walter Cronkite (2892ms) Where are the National Archives? material -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (material, is, the National Archives collection) -> material (2877ms) Where are the National Archives? Irish newspapers -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (Irish newspapers, are in, the National Archives) -> Irish newspapers (2895ms) Where are the National Archives? government research -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (government research, is, the National Archives) -> government research (2895ms) Where are the National Archives? 765 Reproductions -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (765 Reproductions, may also be available at, National Archives) -> 765 Reproductions (2897ms) Where are the National Archives? the 1969?1972 -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (the 1969?1972, are primarily in, National Archives) -> the 1969?1972 (2895ms) Where are the National Archives? 1982 -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (1982, is in, the National Archives) -> 1982 (2897ms) Where are the National Archives? The MS -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (The MS, is in, the National Archives) -> The MS (2886ms) Where are the National Archives? The log -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (The log, is in, the National Archives) -> The log (2873ms) Where are the National Archives? JTF-FA -0.111111111111 Where are the National Archives? -> $x: ($x, be located in, national archives) -> (JTF-FA, have been located in, the National Archives) -> JTF-FA (2902ms) Where are the National Archives? the source -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (the source, is, the National Archives) -> the source (2892ms) Where are the National Archives? National -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (National, is, the national audiovisual archive) -> National (2897ms) Where are the National Archives? metadata -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (metadata, is 'retain as, national archives) -> metadata (2873ms) Where are the National Archives? comprehensive Listing -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (comprehensive Listing, are retired to, National Archives) -> comprehensive Listing (2892ms) Where are the National Archives? nearby -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (nearby, are, National African American Archives) -> nearby (2897ms) Where are the National Archives? 620 Reproductions -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (620 Reproductions, may also be available at, National Archives) -> 620 Reproductions (2902ms) Where are the National Archives? Oswald?s rifle -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (Oswald?s rifle, is in, the National Archives) -> Oswald?s rifle (2889ms) Where are the National Archives? October -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (October, is, National Archives Month) -> October (2892ms) Where are the National Archives? passenger lists -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (passenger lists, were indexed by, National Archives) -> passenger lists (2895ms) Where are the National Archives? Chalmers -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (Chalmers, are in, the National Archives) -> Chalmers (2889ms) Where are the National Archives? W.W.II -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (W.W.II, are maintained at, National Archives) -> W.W.II (2882ms) Where are the National Archives? the approval -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (the approval, has to be provided to, NATIONAL ARCHIVES) -> the approval (2902ms) Where are the National Archives? Records -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (Records, are from, National Archives) -> Records (2902ms) Where are the National Archives? the book stacks and library offices -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (the book stacks and library offices, are, the National Archives) -> the book stacks and library offices (2897ms) Where are the National Archives? Jan . 1 , 1863 ? -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (Jan . 1 , 1863 ?, is in, the National Archives) -> Jan . 1 , 1863 ? (2895ms) Where are the National Archives? Copies -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (Copies, are also in, National Archives) -> Copies (2900ms) Where are the National Archives? the exhibit -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (the exhibit, is in, the National Archives) -> the exhibit (2886ms) Where are the National Archives? bullet -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (bullet, is in, the National Archives) -> bullet (2897ms) Where are the National Archives? The next stop -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (The next stop, was, the National Archives) -> The next stop (2900ms) Where are the National Archives? a copy -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (a copy, is deposited with, national archives) -> a copy (2873ms) Where are the National Archives? the remaining records -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (the remaining records, is, the National Archives) -> the remaining records (2889ms) Where are the National Archives? Selective Service System records -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (Selective Service System records, are in, the National Archives) -> Selective Service System records (2882ms) Where are the National Archives? The Records -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (The Records, are in, the National Archives) -> The Records (2877ms) Where are the National Archives? papers -0.111111111111 Where are the National Archives? -> $x: ($x, be in, national archives) -> (papers, are in, the National Archives) -> papers (2882ms) Where are the National Archives? Laboratories -0.111111111111 Where are the National Archives? -> $x: ($x, be be, national archives) -> (Laboratories, were used by, national archives) -> Laboratories (2902ms) Where are the National Archives? the USA -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, are made in, the USA) -> the USA (2908ms) Where are the National Archives? the 2001 Census -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, was first introduced in, the 2001 Census) -> the 2001 Census (2910ms) Where are the National Archives? Florida -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives Workshop, was held in, Florida) -> Florida (2909ms) Where are the National Archives? categories -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (National archives, were valued in, categories) -> categories (2909ms) Where are the National Archives? absentia -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Security Archive, was cited in, absentia) -> absentia (2910ms) Where are the National Archives? Paris -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (The French National Archives, are in, Paris) -> Paris (2908ms) Where are the National Archives? the classroom -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, might be useful in, the classroom) -> the classroom (2908ms) Where are the National Archives? negotiations -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (The National Archives, is currently in, negotiations) -> negotiations (2909ms) Where are the National Archives? 1992 -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, was established in, 1992) -> 1992 (2910ms) Where are the National Archives? jeopardy -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (The national archive, was in, jeopardy) -> jeopardy (2907ms) Where are the National Archives? two different buildings -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (The National Archives, is housed in, two different buildings) -> two different buildings (2910ms) Where are the National Archives? PDF. -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (The national archives, are particularly interested in, PDF.) -> PDF. (2908ms) Where are the National Archives? April 2003 -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (The National Archives, was launched in, April 2003) -> April 2003 (2908ms) Where are the National Archives? cooperative projects -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archive, are involved in, cooperative projects) -> cooperative projects (2909ms) Where are the National Archives? the form -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, have been in, the form) -> the form (2906ms) Where are the National Archives? 1970 -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, was in, 1970) -> 1970 (2910ms) Where are the National Archives? a project -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (The Dutch National Archives, are involved in, a project) -> a project (2905ms) Where are the National Archives? 1934 -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, was established in, 1934) -> 1934 (2910ms) Where are the National Archives? October 2000 -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (The National Obituary Archive?, was launched in, October 2000) -> October 2000 (2910ms) Where are the National Archives? the article -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (The National Archives, is mentioned in, the article) -> the article (2910ms) Where are the National Archives? progress -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, is now in, progress) -> progress (2909ms) Where are the National Archives? an accessible style -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, is written in, an accessible style) -> an accessible style (2908ms) Where are the National Archives? the same building -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (The National Archives, were in, the same building) -> the same building (2909ms) Where are the National Archives? 1838 -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, was created in, 1838) -> 1838 (2908ms) Where are the National Archives? 1997 -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, was established in, 1997) -> 1997 (2905ms) Where are the National Archives? memory -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (The National Archives award, is named in, memory) -> memory (2905ms) Where are the National Archives? 1882 -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (The National Archives, were founded in, 1882) -> 1882 (2908ms) Where are the National Archives? 1985 -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (The National Security Archive, was founded in, 1985) -> 1985 (2908ms) Where are the National Archives? Kew -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (The National Archives, are based in, Kew) -> Kew (2907ms) Where are the National Archives? a constant battle -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, is engaged in, a constant battle) -> a constant battle (2910ms) Where are the National Archives? R. J. Whitwell -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, has been translated in, R. J. Whitwell) -> R. J. Whitwell (2907ms) Where are the National Archives? 1998 -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (The National Archives, was established in, 1998) -> 1998 (2909ms) Where are the National Archives? Fact Sheet 1 -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, are given in, Fact Sheet 1) -> Fact Sheet 1 (2909ms) Where are the National Archives? an 18th century mansion -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (The national archives, are stored in, an 18th century mansion) -> an 18th century mansion (2910ms) Where are the National Archives? the Regional Archives -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, are kept in, the Regional Archives) -> the Regional Archives (2907ms) Where are the National Archives? the middle -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, is hidden away in, the middle) -> the middle (2908ms) Where are the National Archives? 1922 -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (the Irish national archives, were burnt in, 1922) -> 1922 (2907ms) Where are the National Archives? the Squadron -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (National Archives, else was in, the Squadron) -> the Squadron (2909ms) Where are the National Archives? an iconic building -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (the national archives, are usually housed in, an iconic building) -> an iconic building (2908ms) Where are the National Archives? an extremely poor state -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (the national archive, is in, an extremely poor state) -> an extremely poor state (2910ms) Where are the National Archives? accordance -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, shall be authenticated in, accordance) -> accordance (2905ms) Where are the National Archives? the 60s -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Film Archive, was created in, the 60s) -> the 60s (2909ms) Where are the National Archives? the theft -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, has been charged in, the theft) -> the theft (2907ms) Where are the National Archives? charge -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Music Archives, was in, charge) -> charge (2910ms) Where are the National Archives? Record Group 59 -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, are contained in, Record Group 59) -> Record Group 59 (2910ms) Where are the National Archives? Sucre -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (The National Archives, are in, Sucre) -> Sucre (2907ms) Where are the National Archives? 1953 -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (The National Literary Archives, were opened in, 1953) -> 1953 (2905ms) Where are the National Archives? research guides -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, are described in, research guides) -> research guides (2904ms) Where are the National Archives? the Gelman Library -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Security Archive, is housed in, the Gelman Library) -> the Gelman Library (2910ms) Where are the National Archives? Prague -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, is in, Prague) -> Prague (2909ms) Where are the National Archives? Belmopan -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (Its national archives, are in, Belmopan) -> Belmopan (2907ms) Where are the National Archives? the development -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archive, is currently involved in, the development) -> the development (2904ms) Where are the National Archives? a series -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, is the latest in, a series) -> a series (2909ms) Where are the National Archives? scandal -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (The National Archives, was embroiled in, scandal) -> scandal (2909ms) Where are the National Archives? the cellar -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (The National Archives, are housed in, the cellar) -> the cellar (2910ms) Where are the National Archives? the possession -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, was in, the possession) -> the possession (2910ms) Where are the National Archives? 2003 -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (The National Archives, were created in, 2003) -> 2003 (2910ms) Where are the National Archives? much better condition -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, are in, much better condition) -> much better condition (2904ms) Where are the National Archives? court -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (The National Security Archive, is in, court) -> court (2904ms) Where are the National Archives? essence -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (The National Archives Experience, is in, essence) -> essence (2910ms) Where are the National Archives? 1936 -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives building, was erected in, 1936) -> 1936 (2904ms) Where are the National Archives? the process -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (The national archives, are in, the process) -> the process (2907ms) Where are the National Archives? 1935 -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (The BFI National Archive, was founded in, 1935) -> 1935 (2909ms) Where are the National Archives? the business -0.111111111112 Where are the National Archives? -> $x: (national archives, be in in, $x) -> (the National Archives, be in, the business) -> the business (2907ms) Where are the National Archives? federal records -0.222222222222 Where are the National Archives? -> $x: ($x, become of, national archives) -> (federal records, become part of, the National Archives holdings) -> federal records (2910ms) Where are the National Archives? the registry -0.222222222222 Where are the National Archives? -> $x: ($x, become of, national archives) -> (the registry, will become part of, the National Archives) -> the registry (2910ms) Where are the National Archives? Timothy -0.222222222222 Where are the National Archives? -> $x: ($x, become of, national archives) -> (Timothy, Will Become of, The National Sound Archive) -> Timothy (2910ms) What countries supplied aid? the diet 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (the diet, works with, the aid) -> the diet (3321ms) What countries supplied aid? Miriam 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (Miriam, worked with, Legal Aid) -> Miriam (2270ms) What countries supplied aid? the corruption 1.4444444444459998 What countries supplied aid? -> $x: ($x, surround, aid) -> (the corruption, surrounding, the distribution of aid) -> the corruption (3369ms) What countries supplied aid? four employees 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (four employees, chose to work with, AIDS agencies) -> four employees (3265ms) What countries supplied aid? OLAF pro bono staff 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (OLAF pro bono staff, works with, legal aid) -> OLAF pro bono staff (3390ms) What countries supplied aid? Less developed countries 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (Less developed countries, found new sources of, aid finance) -> Less developed countries (3373ms) What countries supplied aid? Congressional Budget Office 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (Congressional Budget Office, rates, aid) -> Congressional Budget Office (3386ms) What countries supplied aid? Bangalore 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (Bangalore, is working with, AID) -> Bangalore (3264ms) What countries supplied aid? The Kenyan government 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (The Kenyan government, is working with, aid groups) -> The Kenyan government (3321ms) What countries supplied aid? 24 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (24, have the highest rate of, HIV/AIDS infection) -> 24 (3390ms) What countries supplied aid? the Pastoral Solidarity Fund 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (the Pastoral Solidarity Fund, represents, direct aid) -> the Pastoral Solidarity Fund (3185ms) What countries supplied aid? ODRAP 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (ODRAP, is a source of, financial aid) -> ODRAP (2270ms) What countries supplied aid? The Pell grant 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (The Pell grant, is the most important source of, aid) -> The Pell grant (3348ms) What countries supplied aid? town or city clubs 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (town or city clubs, are some other possible sources of, aid) -> town or city clubs (3321ms) What countries supplied aid? Louisiana 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (Louisiana, has the fifth highest rate of, AIDS cases) -> Louisiana (3291ms) What countries supplied aid? a health care career 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (a health care career, find sources of, financial aid) -> a health care career (3386ms) What countries supplied aid? NASTAD 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (NASTAD, represents, the AIDS directors) -> NASTAD (3343ms) What countries supplied aid? Florida 1.4444444444459998 What countries supplied aid? -> $x: ($x, rank be, aid) -> (Florida, is ranked second for, total pediatric HIV/AIDS cases) -> Florida (3299ms) What countries supplied aid? the prosthesis 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (the prosthesis, represents, an important aid) -> the prosthesis (3390ms) What countries supplied aid? banks 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (banks, provide another source of, financial aid) -> banks (3364ms) What countries supplied aid? Jack 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (Jack, worked with, Legal Aid) -> Jack (3335ms) What countries supplied aid? al Shabab 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (al Shabab, worked with, aid groups) -> al Shabab (3369ms) What countries supplied aid? the U.S. 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (the U.S., were their main source of, aid) -> the U.S. (3382ms) What countries supplied aid? Ms Rees 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (Ms Rees, worked with, Legal Aid) -> Ms Rees (3291ms) What countries supplied aid? Canada 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (Canada, has the highest rate of, AIDS) -> Canada (3348ms) What countries supplied aid? Scholarships Scholarships 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (Scholarships Scholarships, are a great source of, aid) -> Scholarships Scholarships (3335ms) What countries supplied aid? the taboo 1.4444444444459998 What countries supplied aid? -> $x: ($x, surround, aid) -> (the taboo, surrounding, Aids) -> the taboo (3354ms) What countries supplied aid? Castro 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (Castro, lost a valuable source of, aid) -> Castro (3328ms) What countries supplied aid? The technological visionary 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (The technological visionary, work with, the aid) -> The technological visionary (3354ms) What countries supplied aid? Magnum cash advance 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (Magnum cash advance, is a source of, financial aid) -> Magnum cash advance (3321ms) What countries supplied aid? the operating systems 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (the operating systems, work with, accessibility aids) -> the operating systems (2270ms) What countries supplied aid? Nevada 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (Nevada, has a higher rate of, HIV/AIDS) -> Nevada (3378ms) What countries supplied aid? Hamas 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (Hamas, has tried to find alternative sources of, aid) -> Hamas (2296ms) What countries supplied aid? U.S. 1.4444444444459998 What countries supplied aid? -> $x: ($x, rule on, aid) -> (U.S., eases rules on, federal aid) -> U.S. (3390ms) What countries supplied aid? The department 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (The department, works with, financial aid) -> The department (3306ms) What countries supplied aid? tuition 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (tuition, seek alternative sources of, aid) -> tuition (2417ms) What countries supplied aid? The three colors 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (The three colors, represent different levels of, aid) -> The three colors (3062ms) What countries supplied aid? post secondary schools 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (post secondary schools, are public sources of, aid) -> post secondary schools (3328ms) What countries supplied aid? the iPhone 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (the iPhone, works with, hearing aids) -> the iPhone (2983ms) What countries supplied aid? the Corps 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (the Corps, represents a genuine innovation in, humanitarian aid) -> the Corps (3364ms) What countries supplied aid? high-risk groups 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (high-risk groups, generally had low rates of, HIV/AIDS awareness) -> high-risk groups (3378ms) What countries supplied aid? UPS 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (UPS, is working with, AID) -> UPS (2329ms) What countries supplied aid? Hispanics 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (Hispanics, have disproportionately higher rates of, HIV/AIDS) -> Hispanics (3369ms) What countries supplied aid? A hearing loop system 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (A hearing loop system, works with, hearing aids) -> A hearing loop system (3354ms) What countries supplied aid? ?Barb Paynter 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (?Barb Paynter, worked with, Legal Aid) -> ?Barb Paynter (3382ms) What countries supplied aid? The Myconostica product 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (The Myconostica product, represents, an important aid) -> The Myconostica product (3369ms) What countries supplied aid? an audiologist 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (an audiologist, worked with, hearing aid) -> an audiologist (3314ms) What countries supplied aid? the stigma , prejudice and fear 1.4444444444459998 What countries supplied aid? -> $x: ($x, surround, aid) -> (the stigma , prejudice and fear, surrounded, HIV/AIDS) -> the stigma , prejudice and fear (3343ms) What countries supplied aid? a firebrand 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (a firebrand, come to work with, the aid) -> a firebrand (3306ms) What countries supplied aid? detail 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (detail, also includes sources of, nonfederal aid) -> detail (2983ms) What countries supplied aid? The guide 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (The guide, also includes sources of, nonfederal aid) -> The guide (3369ms) What countries supplied aid? an air compressor 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (an air compressor, works with, the aid) -> an air compressor (3359ms) What countries supplied aid? the silence 1.4444444444459998 What countries supplied aid? -> $x: ($x, surround, aid) -> (the silence, surrounding, the AIDS epidemic) -> the silence (2356ms) What countries supplied aid? United States 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (United States, became principal source of, aid) -> United States (3343ms) What countries supplied aid? prejudice 1.4444444444459998 What countries supplied aid? -> $x: ($x, surround, aid) -> (prejudice, has surrounded, HIV/AIDS) -> prejudice (3382ms) What countries supplied aid? less reliability 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (less reliability, represents, unfair government aid) -> less reliability (3382ms) What countries supplied aid? the children 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (the children, rated, the study hearing aids) -> the children (2417ms) What countries supplied aid? medical breakthroughs 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (medical breakthroughs, have decreased the rate of, AIDS deaths) -> medical breakthroughs (3364ms) What countries supplied aid? Dharmendar ji 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (Dharmendar ji, worked with, AID) -> Dharmendar ji (3135ms) What countries supplied aid? women 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (women, represented 8 % of, AIDS diagnoses) -> women (3335ms) What countries supplied aid? Site 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (Site, should work with, aid) -> Site (3343ms) What countries supplied aid? Turbo Mnemonics 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (Turbo Mnemonics, represents just, the memory aids portion) -> Turbo Mnemonics (3359ms) What countries supplied aid? Education 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (Education, is the largest source of, aid) -> Education (3382ms) What countries supplied aid? the U.N.?s politics and honesty 1.4444444444459998 What countries supplied aid? -> $x: ($x, surround, aid) -> (the U.N.?s politics and honesty, surround, the AIDS issue) -> the U.N.?s politics and honesty (3328ms) What countries supplied aid? dental caries home remedies 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (dental caries home remedies, represent only, first aid help) -> dental caries home remedies (2296ms) What countries supplied aid? micronutrients 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (micronutrients, represents a radical change for, food aid) -> micronutrients (3373ms) What countries supplied aid? red 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (red, represents, Aids) -> red (3369ms) What countries supplied aid? Peter 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (Peter, currently works actively with, AID Chennai) -> Peter (3335ms) What countries supplied aid? the story-making activities 1.4444444444459998 What countries supplied aid? -> $x: ($x, surround, aid) -> (the story-making activities, have surrounded, the AIDS epidemic) -> the story-making activities (3299ms) What countries supplied aid? The research and teaching environment 1.4444444444459998 What countries supplied aid? -> $x: ($x, surround, aid) -> (The research and teaching environment, surrounds, AIDS) -> The research and teaching environment (3348ms) What countries supplied aid? ECSI 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (ECSI, is your source for, first aid) -> ECSI (3314ms) What countries supplied aid? God 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (God, is often represented symbolically through, the aid) -> God (2296ms) What countries supplied aid? year 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (year, have lower death rates from, AIDS) -> year (3373ms) What countries supplied aid? the myths 1.4444444444459998 What countries supplied aid? -> $x: ($x, surround, aid) -> (the myths, surrounding, financial aid) -> the myths (2329ms) What countries supplied aid? the state 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (the state, had the eighth highest rate of, AIDS) -> the state (3373ms) What countries supplied aid? illnesses 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (illnesses, represent, an increasingly important aid) -> illnesses (3306ms) What countries supplied aid? a hold 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (a hold, received an additional source of, aid) -> a hold (3185ms) What countries supplied aid? the first time 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (the first time, sourced through, Farm Aid) -> the first time (3359ms) What countries supplied aid? Public Health Nurse 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (Public Health Nurse, works with, AIDs patients) -> Public Health Nurse (3373ms) What countries supplied aid? Induction loop systems 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (Induction loop systems, work with, hearing aids) -> Induction loop systems (2296ms) What countries supplied aid? car dealers insurance 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (car dealers insurance, can represent, a fantastic aid) -> car dealers insurance (2329ms) What countries supplied aid? The Fast Payday Loan 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (The Fast Payday Loan, represents, a great financial aid) -> The Fast Payday Loan (2356ms) What countries supplied aid? The Somalia 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (The Somalia, has lowest rate of, HIV AIDS) -> The Somalia (3373ms) What countries supplied aid? the pantry 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (the pantry, find other sources of, aid) -> the pantry (3335ms) What countries supplied aid? the Student 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (the Student, represents, the total unearned aid) -> the Student (3062ms) What countries supplied aid? Prostitution and drug use 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (Prostitution and drug use, generate high rates of, HIV and AIDS) -> Prostitution and drug use (3348ms) What countries supplied aid? two commenters 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (two commenters, representing, financial aid administrators) -> two commenters (3348ms) What countries supplied aid? The federal government 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (The federal government, is the largest source of, aid) -> The federal government (3343ms) What countries supplied aid? Joseph 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (Joseph, has worked with, Irish Aid) -> Joseph (3335ms) What countries supplied aid? scholarships 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (scholarships, are a great source of, aid) -> scholarships (3348ms) What countries supplied aid? the cordless microphone 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (the cordless microphone, works with, the aid) -> the cordless microphone (3390ms) What countries supplied aid? bad credit 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (bad credit, represent, a great financial aid) -> bad credit (2296ms) What countries supplied aid? The funding 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (The funding, represents, the Municipal Aid portion) -> The funding (3306ms) What countries supplied aid? The BCGEU 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (The BCGEU, represents, most legal aid workers) -> The BCGEU (3359ms) What countries supplied aid? Old Normanton 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (Old Normanton, worked with, Aids sufferers) -> Old Normanton (3306ms) What countries supplied aid? MCC 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (MCC, is working with, AIDs) -> MCC (3382ms) What countries supplied aid? the Memorial 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (the Memorial, worked with, the aid) -> the Memorial (3314ms) What countries supplied aid? the Diversity Foundation 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (the Diversity Foundation, has been a rare source of, aid) -> the Diversity Foundation (3364ms) What countries supplied aid? oatmeal 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (oatmeal, is a wonderful source to, aid) -> oatmeal (3369ms) What countries supplied aid? The District 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (The District, has the highest rate of, AIDS cases) -> The District (3354ms) What countries supplied aid? Financial Aid College Aid 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (Financial Aid College Aid, is your source for, financial aid) -> Financial Aid College Aid (3354ms) What countries supplied aid? Colleges and Universities 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (Colleges and Universities, have their own sources of, aid) -> Colleges and Universities (2417ms) What countries supplied aid? a population 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (a population, has a rate of, 128 AIDS cases) -> a population (3386ms) What countries supplied aid? the Kama Sutra 1.4444444444459998 What countries supplied aid? -> $x: ($x, use to be call, aid) -> (the Kama Sutra, used to be called, ?marital aids) -> the Kama Sutra (2417ms) What countries supplied aid? the financial aid office 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (the financial aid office, is there may be other sources of, aid) -> the financial aid office (3369ms) What countries supplied aid? each school 1.4444444444459998 What countries supplied aid? -> $x: ($x, rank be, aid) -> (each school, was ranked based on, cost and financial aid) -> each school (3378ms) What countries supplied aid? fact 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (fact, demonstrated a higher rate of, AIDS-associated events) -> fact (3291ms) What countries supplied aid? USAID 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (USAID, has been working closely with, AID) -> USAID (3328ms) What countries supplied aid? the Instant Payday Loan 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (the Instant Payday Loan, represents, a great financial aid) -> the Instant Payday Loan (3359ms) What countries supplied aid? Historically Black Colleges 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (Historically Black Colleges, represented, AID) -> Historically Black Colleges (3314ms) What countries supplied aid? Use 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (Use, works with, AIDS) -> Use (3348ms) What countries supplied aid? Mankell 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (Mankell, works with, AIDS charities) -> Mankell (3359ms) What countries supplied aid? Duvont? 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (Duvont?, worked with, AIDS orphans) -> Duvont? (3063ms) What countries supplied aid? The Migo 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (The Migo, works with, hearing aids) -> The Migo (2563ms) What countries supplied aid? trade talks 1.4444444444459998 What countries supplied aid? -> $x: ($x, rule on, aid) -> (trade talks, include new rules on, food aid) -> trade talks (3343ms) What countries supplied aid? a financial plan 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (a financial plan, identify sources of, financial aid) -> a financial plan (3306ms) What countries supplied aid? issues 1.4444444444459998 What countries supplied aid? -> $x: ($x, surround, aid) -> (issues, surrounding, Aids) -> issues (3359ms) What countries supplied aid? New York 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (New York, represent, Texas RioGrande Legal Aid) -> New York (3265ms) What countries supplied aid? APHCA 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (APHCA, represents, AIDS Action Coalition) -> APHCA (2270ms) What countries supplied aid? Mr. Sockabasin 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (Mr. Sockabasin, works with, the aid) -> Mr. Sockabasin (3291ms) What countries supplied aid? Fond des N?gres 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (Fond des N?gres, works with, AIDS orphans) -> Fond des N?gres (3328ms) What countries supplied aid? header 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (header, represents a group of, navigational aids) -> header (3364ms) What countries supplied aid? the agency 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (the agency, represents, Mutual Aid Exchange) -> the agency (3299ms) What countries supplied aid? the first figure 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (the first figure, represents the minimum amount of, gift aid) -> the first figure (2563ms) What countries supplied aid? the armed forces 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (the armed forces, have the highest rate of, HIV/AIDS incidents) -> the armed forces (3348ms) What countries supplied aid? need 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (need, have exhausted all other sources of, aid) -> need (3369ms) What countries supplied aid? the practice 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (the practice, lowered rates of, hepatitis and AIDS) -> the practice (2983ms) What countries supplied aid? A picket line 1.4444444444459998 What countries supplied aid? -> $x: ($x, surround, aid) -> (A picket line, surrounded, the financial aid officer) -> A picket line (3299ms) What countries supplied aid? AIDS Use 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (AIDS Use, works with, AIDS) -> AIDS Use (3348ms) What countries supplied aid? The Institute 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (The Institute, offers several sources of, aid) -> The Institute (3354ms) What countries supplied aid? workers states 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (workers states, was a source of, material aid) -> workers states (3386ms) What countries supplied aid? Koan study 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (Koan study, represents, a provisional teaching aid) -> Koan study (2563ms) What countries supplied aid? the other people 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (the other people, work with, legal aid) -> the other people (3348ms) What countries supplied aid? Scholarships 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (Scholarships, are Outstanding Source of, Financial Aid) -> Scholarships (3378ms) What countries supplied aid? African Americans 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (African Americans, have the highest rate of, new HIV/AIDS cases) -> African Americans (3359ms) What countries supplied aid? Uganda 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (Uganda, had the highest rate of, AIDS) -> Uganda (3306ms) What countries supplied aid? Ellis 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (Ellis, would represent, another band-aid) -> Ellis (3386ms) What countries supplied aid? AI/AN 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (AI/AN, have the third highest rate of, AIDS diagnosis) -> AI/AN (3343ms) What countries supplied aid? Burke 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (Burke, work with, AIDS orphans) -> Burke (3185ms) What countries supplied aid? The European Commission 1.4444444444459998 What countries supplied aid? -> $x: ($x, rule on, aid) -> (The European Commission, should relax rules on, state aid) -> The European Commission (3299ms) What countries supplied aid? the agency help applicants 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (the agency help applicants, locate sources of, financial aid) -> the agency help applicants (3373ms) What countries supplied aid? one time 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (one time, had the highest rate of, HIV/AIDS) -> one time (3390ms) What countries supplied aid? Mother Theresa 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (Mother Theresa, work mostly with, AIDS) -> Mother Theresa (3314ms) What countries supplied aid? the time 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (the time, had the highest cumulative incidence rates of, AIDS) -> the time (3354ms) What countries supplied aid? value 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (value, provide a perpetual source of, aid) -> value (3299ms) What countries supplied aid? Mark 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (Mark, also represents clients in, state aid) -> Mark (3390ms) What countries supplied aid? IV drug users 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (IV drug users, have the same rates of, AIDS cases) -> IV drug users (3343ms) What countries supplied aid? the region 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (the region, also has the highest death rate from, Aids) -> the region (3299ms) What countries supplied aid? Discovery Health 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (Discovery Health, was rated, the top medical aid brand) -> Discovery Health (3321ms) What countries supplied aid? a headset 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (a headset, works with, hearing aids) -> a headset (3336ms) What countries supplied aid? Newcastle Chris 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (Newcastle Chris, has been working with, Planning Aid) -> Newcastle Chris (3299ms) What countries supplied aid? the 40th district 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (the 40th district, have high rates of, HIV and AIDS) -> the 40th district (3369ms) What countries supplied aid? the neck area 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (the neck area, is a source of, great aid) -> the neck area (3135ms) What countries supplied aid? Thika District 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (Thika District, has the highest rate of, HIV/AIDS) -> Thika District (3321ms) What countries supplied aid? the boy 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (the boy, worked with, AIDS patients) -> the boy (3359ms) What countries supplied aid? expense support 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (expense support, represents, financial aid) -> expense support (2270ms) What countries supplied aid? a trade group 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (a trade group, representing, financial aid professionals) -> a trade group (3291ms) What countries supplied aid? Nradreg 1.4444444444459998 What countries supplied aid? -> $x: ($x, surround, aid) -> (Nradreg, has surrounded a group of, humanitarian aid workers) -> Nradreg (3378ms) What countries supplied aid? Arekibo 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (Arekibo, have been working with, Irish Aid) -> Arekibo (3386ms) What countries supplied aid? the office 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (the office, represents, two Pontifical Mission Aid Societies) -> the office (3321ms) What countries supplied aid? Donors 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (Donors, can rate, the aid projects online) -> Donors (3314ms) What countries supplied aid? Gays 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (Gays, have higher rates of, AIDS infections) -> Gays (2983ms) What countries supplied aid? a burned church 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (a burned church, worked with, AIDS patients) -> a burned church (3364ms) What countries supplied aid? China 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (China, is another source of, unconditional aid) -> China (3321ms) What countries supplied aid? Vermont 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (Vermont, has the lowest rate of, new AIDS cases) -> Vermont (3369ms) What countries supplied aid? EFTA Surveillance Authority 1.4444444444459998 What countries supplied aid? -> $x: ($x, rule on, aid) -> (EFTA Surveillance Authority, adopts rules on, aid) -> EFTA Surveillance Authority (2356ms) What countries supplied aid? France 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (France, was almost the only source of, aid) -> France (3369ms) What countries supplied aid? the Crown and Olney 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (the Crown and Olney, was represented by, Legal Aid) -> the Crown and Olney (3364ms) What countries supplied aid? Swaziland 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (Swaziland, has the highest rate of, HIV/AIDS) -> Swaziland (3382ms) What countries supplied aid? the Bank 1.4444444444459998 What countries supplied aid? -> $x: ($x, rank be, aid) -> (the Bank, was ranked number one for, aid transparency) -> the Bank (3321ms) What countries supplied aid? Algeria 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (Algeria, sought an alternative source of, aid) -> Algeria (3306ms) What countries supplied aid? Each tool 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (Each tool, represents, a useful production aid) -> Each tool (3062ms) What countries supplied aid? Walgreens 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (Walgreens, is also working with, AIDS United) -> Walgreens (3314ms) What countries supplied aid? Texas 1.4444444444459998 What countries supplied aid? -> $x: ($x, rank be, aid) -> (Texas, was ranked 47th in, state education aid) -> Texas (3390ms) What countries supplied aid? the x-axis 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (the x-axis, represent, aid years) -> the x-axis (3314ms) What countries supplied aid? a nurse 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (a nurse, working with, AIDS patients) -> a nurse (3062ms) What countries supplied aid? Knowing 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (Knowing, are the sources of, financial aid) -> Knowing (3265ms) What countries supplied aid? A Portuguese national , AM 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (A Portuguese national , AM, has been working with, various aid) -> A Portuguese national , AM (3354ms) What countries supplied aid? Zambia?s poverty 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (Zambia?s poverty, is the high rate of, HIV and AIDS) -> Zambia?s poverty (3354ms) What countries supplied aid? Ward 8 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (Ward 8, has the highest rate of, new HIV/AIDS cases) -> Ward 8 (3314ms) What countries supplied aid? America 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (America, has the highest rate of, AIDS) -> America (3359ms) What countries supplied aid? The adjustment probe 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (The adjustment probe, represents, an essential aid) -> The adjustment probe (3369ms) What countries supplied aid? Australia 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (Australia, has very low rates of, HIV/AIDS) -> Australia (2417ms) What countries supplied aid? Senegal 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (Senegal, struck the 1st cut-rate deal for, AIDS drugs) -> Senegal (3328ms) What countries supplied aid? 0. Zero cards 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (0. Zero cards, represent on, the ground aid) -> 0. Zero cards (3386ms) What countries supplied aid? Ukraine 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (Ukraine, has the highest rate of, AIDS infection) -> Ukraine (3335ms) What countries supplied aid? gay men 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (gay men, represent a minority of, AIDS cases) -> gay men (3321ms) What countries supplied aid? abstinence education 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (abstinence education, has lowered the rate of, AIDS infection) -> abstinence education (3185ms) What countries supplied aid? men 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (men, represent the majority of, AIDS diagnoses) -> men (3382ms) What countries supplied aid? the World Bank 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (the World Bank, was the main source of, aid) -> the World Bank (3364ms) What countries supplied aid? homosexuality 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (homosexuality, has the highest rate of, HIV/AIDS) -> homosexuality (3343ms) What countries supplied aid? The Director 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (The Director, represents the university on, financial aid) -> The Director (3382ms) What countries supplied aid? the range 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (the range, represents, the maximum gift aid students) -> the range (3264ms) What countries supplied aid? Smitha 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (Smitha, has been working with, AID Chennai) -> Smitha (3373ms) What countries supplied aid? 3 Hernandez 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (3 Hernandez, had also worked with, AID.) -> 3 Hernandez (3378ms) What countries supplied aid? a practicing homeopath 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (a practicing homeopath, will be working with, AIDS sufferers) -> a practicing homeopath (3364ms) What countries supplied aid? organisation 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (organisation, working with, foreign aid) -> organisation (3135ms) What countries supplied aid? employers 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (employers, can be sources of, financial aid) -> employers (3328ms) What countries supplied aid? An estimated award 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (An estimated award, represents, your financial aid office) -> An estimated award (3382ms) What countries supplied aid? President Mbeki 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (President Mbeki, was the source of, Aids) -> President Mbeki (3314ms) What countries supplied aid? government 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (government, is the source of, charitable aid) -> government (3306ms) What countries supplied aid? shoes 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (shoes, will represent, the daily AIDS deaths) -> shoes (2270ms) What countries supplied aid? new infections 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (new infections, outpaces the rate of, AIDS-related deaths) -> new infections (3369ms) What countries supplied aid? the precis parts sources 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (the precis parts sources, so work with, aid) -> the precis parts sources (3185ms) What countries supplied aid? uncircumcised men 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (uncircumcised men, have higher rates of, HIV and AIDS) -> uncircumcised men (3185ms) What countries supplied aid? CCE 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (CCE, works with, Financial Aid) -> CCE (3291ms) What countries supplied aid? HIV 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (HIV, represent the true causes of, AIDS) -> HIV (2563ms) What countries supplied aid? Doctors Zyban 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (Doctors Zyban, represents, the most recommended stop smoking aid) -> Doctors Zyban (2329ms) What countries supplied aid? The integer 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (The integer, represents, AID) -> The integer (3306ms) What countries supplied aid? an organisation 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (an organisation, works with, AIDS sufferers) -> an organisation (3328ms) What countries supplied aid? New York City 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (New York City, has the highest rates of, HIV and AIDS infection) -> New York City (3378ms) What countries supplied aid? Washington 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (Washington, has the highest rate of, new AIDS cases) -> Washington (3382ms) What countries supplied aid? Bhagwati 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (Bhagwati, represented, the only international aid) -> Bhagwati (2983ms) What countries supplied aid? Marla 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (Marla, worked with, AIDS victims) -> Marla (3062ms) What countries supplied aid? a major aim 1.4444444444459998 What countries supplied aid? -> $x: ($x, surround, aid) -> (a major aim, is going to be surrounded by, aid) -> a major aim (3354ms) What countries supplied aid? the media 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (the media, represent, both AIDS and homosexuality) -> the media (3382ms) What countries supplied aid? the main essay 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (the main essay, worked with, the aid) -> the main essay (2563ms) What countries supplied aid? work-study 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (work-study, is a source of, financial aid) -> work-study (2563ms) What countries supplied aid? civic groups 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (civic groups, are additional sources of, aid) -> civic groups (3359ms) What countries supplied aid? The farmers 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (The farmers, work with, AID) -> The farmers (3364ms) What countries supplied aid? A material discipline 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (A material discipline, represents, ? and aids) -> A material discipline (2296ms) What countries supplied aid? the communities 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (the communities, work with, aid agencies) -> the communities (3343ms) What countries supplied aid? Oregon you?ll 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (Oregon you?ll, find several sources of, financial aid) -> Oregon you?ll (3265ms) What countries supplied aid? the island 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (the island, provide the most direct source of, aid) -> the island (3314ms) What countries supplied aid? IV drug abusers 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (IV drug abusers, represent, the largest AIDS patient groups) -> IV drug abusers (3343ms) What countries supplied aid? Each school 1.4444444444459998 What countries supplied aid? -> $x: ($x, rank be, aid) -> (Each school, was then ranked based on, cost and financial aid) -> Each school (3299ms) What countries supplied aid? satan 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (satan, is the source of, AIDS) -> satan (3373ms) What countries supplied aid? sufficient experience 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (sufficient experience, can represent, legal aid clients) -> sufficient experience (3364ms) What countries supplied aid? Grit 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (Grit, continues her work with, Legal Aid) -> Grit (3364ms) What countries supplied aid? ignorant and 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (ignorant and, have a high rate of, contracting Aids) -> ignorant and (3335ms) What countries supplied aid? the middle-east 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (the middle-east, have very low rates of, HIV/AIDS) -> the middle-east (3354ms) What countries supplied aid? lawyers 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (lawyers, representing, legal aid clients) -> lawyers (3321ms) What countries supplied aid? Combination therapies 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (Combination therapies, dramatically cut the rate of, AIDS deaths) -> Combination therapies (3354ms) What countries supplied aid? The Payday Advance 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (The Payday Advance, represents only, a short term aid) -> The Payday Advance (3306ms) What countries supplied aid? A long-standing issue 1.4444444444459998 What countries supplied aid? -> $x: ($x, surround, aid) -> (A long-standing issue, surrounding, aid) -> A long-standing issue (3373ms) What countries supplied aid? Theraplay therapists 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (Theraplay therapists, are working with, Aids orphans) -> Theraplay therapists (3335ms) What countries supplied aid? the structure 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (the structure, represents, the AIDS awareness symbol) -> the structure (2355ms) What countries supplied aid? the stigma 1.4444444444459998 What countries supplied aid? -> $x: ($x, surround, aid) -> (the stigma, surrounding, hearing aids) -> the stigma (3373ms) What countries supplied aid? The EU 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (The EU, is a key source of, aid) -> The EU (3306ms) What countries supplied aid? HIV/AIDS 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (HIV/AIDS, has reduced the rate of, new HIV/AIDS infections) -> HIV/AIDS (3321ms) What countries supplied aid? federal student aid 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (federal student aid, investigate other sources of, aid) -> federal student aid (3314ms) What countries supplied aid? the District 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (the District, has the highest rate of, AIDS) -> the District (3382ms) What countries supplied aid? No credit check payday loans 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (No credit check payday loans, are a source of, instant aid) -> No credit check payday loans (3359ms) What countries supplied aid? The Bronx 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (The Bronx, has the highest death rate from, AIDS) -> The Bronx (3335ms) What countries supplied aid? Baja California 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (Baja California, has the second highest rates of, AIDS) -> Baja California (2270ms) What countries supplied aid? Blacks and Hispanics 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (Blacks and Hispanics, have higher rates of, AIDS) -> Blacks and Hispanics (3321ms) What countries supplied aid? a white background 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (a white background, has represented, medical aid) -> a white background (3135ms) What countries supplied aid? the truck 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (the truck, actually represents, AIDS) -> the truck (3264ms) What countries supplied aid? The writer 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (The writer, represents, the Women?s Aid Orgnaisation) -> The writer (3328ms) What countries supplied aid? taboos 1.4444444444459998 What countries supplied aid? -> $x: ($x, surround, aid) -> (taboos, still surround, the Aids epidemic) -> taboos (2417ms) What countries supplied aid? One Namor 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (One Namor, had exhausted other possible sources of, aid) -> One Namor (3348ms) What countries supplied aid? central banks 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (central banks, cut rates to, aid world economy) -> central banks (3369ms) What countries supplied aid? outside organizations 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (outside organizations, can provide an additional source of, aid) -> outside organizations (3135ms) What countries supplied aid? Honduras 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (Honduras, has the highest rate of, HIV/AIDS infection) -> Honduras (3386ms) What countries supplied aid? Direct Relief 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (Direct Relief, is sourcing, appropriate aid) -> Direct Relief (3378ms) What countries supplied aid? Oxfam teams 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (Oxfam teams, worked with, aid groups) -> Oxfam teams (3382ms) What countries supplied aid? 19 years 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (19 years, .It has an extremely high rate of, HIV/AIDS) -> 19 years (3321ms) What countries supplied aid? reading materials 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (reading materials, are a superb source of, aid) -> reading materials (3265ms) What countries supplied aid? The budget 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (The budget, represents the maximum amount of, financial aid) -> The budget (3291ms) What countries supplied aid? South Africa 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (South Africa, has the highest rate of, HIV/AIDS) -> South Africa (3291ms) What countries supplied aid? UCSD 1.4444444444459998 What countries supplied aid? -> $x: ($x, rank be, aid) -> (UCSD, is ranked among, the top ten AIDS programs) -> UCSD (3386ms) What countries supplied aid? D.C. 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (D.C., has the highest rate of, new AIDS cases) -> D.C. (2329ms) What countries supplied aid? the public 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (the public, may represent the only honest source of, aid) -> the public (3390ms) What countries supplied aid? the issues 1.4444444444459998 What countries supplied aid? -> $x: ($x, surround, aid) -> (the issues, surrounding, the AIDs epidemic) -> the issues (3343ms) What countries supplied aid? Africa 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (Africa, suffers high rates of, HIV/AIDS) -> Africa (3364ms) What countries supplied aid? ANGLABHARTI 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (ANGLABHARTI, represents, a machine-aided translation methodology) -> ANGLABHARTI (3135ms) What countries supplied aid? Luwero 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (Luwero, has the highest rate of, HIV/AIDS) -> Luwero (3343ms) What countries supplied aid? Eight Israeli warships 1.4444444444459998 What countries supplied aid? -> $x: ($x, surround, aid) -> (Eight Israeli warships, are surrounding, the Libyan aid ship) -> Eight Israeli warships (3364ms) What countries supplied aid? the resident expert 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (the resident expert, has represented, AIDS.gov) -> the resident expert (3299ms) What countries supplied aid? Columbia 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (Columbia, has the highest rate of, AIDS) -> Columbia (3354ms) What countries supplied aid? Ukraine not 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (Ukraine not, only has the highest rate of, AIDS infection) -> Ukraine not (3314ms) What countries supplied aid? sculptors 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (sculptors, have worked with, the aid) -> sculptors (3321ms) What countries supplied aid? the fuzzy random fields 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (the fuzzy random fields, are represented with, the aid) -> the fuzzy random fields (3378ms) What countries supplied aid? Computer simulations 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (Computer simulations, represent, an important aid) -> Computer simulations (3306ms) What countries supplied aid? the administration 1.4444444444459998 What countries supplied aid? -> $x: ($x, rule on, aid) -> (the administration, changed the rules on, financial aid) -> the administration (2563ms) What countries supplied aid? the quiet countryside 1.4444444444459998 What countries supplied aid? -> $x: ($x, surround, aid) -> (the quiet countryside, surrounding, the birthplace of Kool-Aid) -> the quiet countryside (3314ms) What countries supplied aid? Mr/Mrs AIDS 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (Mr/Mrs AIDS, represents, HIV/AIDS) -> Mr/Mrs AIDS (3185ms) What countries supplied aid? IMF attention 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (IMF attention, represents the transition of, AIDS) -> IMF attention (2417ms) What countries supplied aid? The Authority 1.4444444444459998 What countries supplied aid? -> $x: ($x, rule on, aid) -> (The Authority, adopts temporary rules on, state aid) -> The Authority (2329ms) What countries supplied aid? 1.1 million 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (1.1 million, has the highest rate of, HIV/Aids) -> 1.1 million (3306ms) What countries supplied aid? Asians 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (Asians, Have the Lowest Rate of, AIDS) -> Asians (3386ms) What countries supplied aid? South Carolina 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (South Carolina, worked with, Legal Aid) -> South Carolina (3373ms) What countries supplied aid? Spain 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (Spain, has much higher statistical rate of, AIDS) -> Spain (3386ms) What countries supplied aid? rice 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (rice, represents the spirit of, mutual aid) -> rice (3299ms) What countries supplied aid? the second curve 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (the second curve, represented the transition to, AIDS) -> the second curve (3343ms) What countries supplied aid? Antoine Douaihy 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (Antoine Douaihy, works with, AIDS patients) -> Antoine Douaihy (2296ms) What countries supplied aid? homosexuals 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (homosexuals, have higher rates of, AIDS) -> homosexuals (2296ms) What countries supplied aid? Maryland 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (Maryland, represented, AID) -> Maryland (3382ms) What countries supplied aid? 2003 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (2003, represent, incompatible state aid) -> 2003 (3335ms) What countries supplied aid? the Student Aid Summary 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (the Student Aid Summary, lists all the sources of, aid) -> the Student Aid Summary (3386ms) What countries supplied aid? W&J 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (W&J, is the largest source of, aid) -> W&J (3328ms) What countries supplied aid? KwaZulu-Natal 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (KwaZulu-Natal, has the second-highest rate of, Aids infection) -> KwaZulu-Natal (3328ms) What countries supplied aid? the first number 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (the first number, represents, legal aid lawyers) -> the first number (3299ms) What countries supplied aid? Haiti 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (Haiti, has the highest rates of, AIDS) -> Haiti (3348ms) What countries supplied aid? students 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (students, find additional sources of, financial aid) -> students (2417ms) What countries supplied aid? A non-rated handset 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (A non-rated handset, may work with, hearing aids) -> A non-rated handset (3348ms) What countries supplied aid? DC 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (DC, has the highest rate of, new AIDS cases) -> DC (3359ms) What countries supplied aid? Moody 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (Moody, has rated, unemployment insurance and state aid) -> Moody (3343ms) What countries supplied aid? the Rapid Review Series-highly 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (the Rapid Review Series-highly, rated in, the First Aid) -> the Rapid Review Series-highly (3378ms) What countries supplied aid? a proposal 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (a proposal, is required to work with, AID.) -> a proposal (2270ms) What countries supplied aid? The crew 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (The crew, also works with, the aid) -> The crew (3062ms) What countries supplied aid? a student 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (a student, may work with are, Water Aid) -> a student (3265ms) What countries supplied aid? Size 1 & 2 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (Size 1 & 2, are rated, body weight/direct aid) -> Size 1 & 2 (3369ms) What countries supplied aid? a woman 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (a woman, worked out with, the aid) -> a woman (2563ms) What countries supplied aid? a local organisation 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (a local organisation, works with, AIDS orphans) -> a local organisation (3328ms) What countries supplied aid? Chronic 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (Chronic, works with, Medical Aid) -> Chronic (3348ms) What countries supplied aid? The HRT 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (The HRT, works with, the aid) -> The HRT (3386ms) What countries supplied aid? trade associations 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (trade associations, representing, the recipients of aid) -> trade associations (3373ms) What countries supplied aid? Zero 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (Zero, rated, disability aids) -> Zero (3378ms) What countries supplied aid? a mixed touch football team 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (a mixed touch football team, represented, Legal Aid Queensland) -> a mixed touch football team (3314ms) What countries supplied aid? Advocacy Jennifer McCloy 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (Advocacy Jennifer McCloy, represented, ChinaAid) -> Advocacy Jennifer McCloy (3386ms) What countries supplied aid? 1990 and 2000 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (1990 and 2000, represented 7 % of, bilateral aid) -> 1990 and 2000 (3378ms) What countries supplied aid? 4+3+2 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (4+3+2, worked with, the aid) -> 4+3+2 (3328ms) What countries supplied aid? Patrick 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (Patrick, works with, aid agencies) -> Patrick (3291ms) What countries supplied aid? Cambodia 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (Cambodia, has a very high rate of, AIDS) -> Cambodia (3359ms) What countries supplied aid? rates 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (rates, put the rate of, new HIV/AIDS infections) -> rates (3291ms) What countries supplied aid? Tammy Howze 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (Tammy Howze, worked with, Legal Aid) -> Tammy Howze (3135ms) What countries supplied aid? Lazaris 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (Lazaris, worked with, AIDS patients) -> Lazaris (3299ms) What countries supplied aid? the lexicographers 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (the lexicographers, began their work with, the aid) -> the lexicographers (2356ms) What countries supplied aid? words 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (words, Work with, visual aids) -> words (3364ms) What countries supplied aid? 20.3 million ? 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (20.3 million ?, represents, aid) -> 20.3 million ? (3378ms) What countries supplied aid? The region 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (The region, has the highest rates of, HIV/AIDS infection) -> The region (3386ms) What countries supplied aid? Touriya 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (Touriya, began working with, Aid) -> Touriya (3328ms) What countries supplied aid? the organisation 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (the organisation, also works with, AIDS victims) -> the organisation (3335ms) What countries supplied aid? two health professionals 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (two health professionals, have worked with, AIDS sufferers) -> two health professionals (3354ms) What countries supplied aid? the right areas assets 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (the right areas assets, s work with, aid) -> the right areas assets (3378ms) What countries supplied aid? PPPPP 601 Scholarships 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (PPPPP 601 Scholarships, are Excellent Source of, Financial Aid) -> PPPPP 601 Scholarships (3299ms) What countries supplied aid? the Netherlands 1.4444444444459998 What countries supplied aid? -> $x: ($x, rank be, aid) -> (the Netherlands, have been ranked as, the top four aid donors) -> the Netherlands (3354ms) What countries supplied aid? A friend 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (A friend, is a fine source of, aid) -> A friend (3185ms) What countries supplied aid? Morrisania 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (Morrisania, have the highest rate of, new AIDS cases) -> Morrisania (3373ms) What countries supplied aid? public funding 1.4444444444459998 What countries supplied aid? -> $x: ($x, use to be call, aid) -> (public funding, used to be called, legal aid) -> public funding (3378ms) What countries supplied aid? Black teens 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (Black teens, represented 68 % of, AIDS diagnoses) -> Black teens (3348ms) What countries supplied aid? Nigeria 1.4444444444459998 What countries supplied aid? -> $x: ($x, rank be, aid) -> (Nigeria, is ranked third in, global HIV/AIDS infection) -> Nigeria (3291ms) What countries supplied aid? Hatis headsets 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (Hatis headsets, work with, hearing aids) -> Hatis headsets (3386ms) What countries supplied aid? picture 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (picture, represents, aid) -> picture (3291ms) What countries supplied aid? The World Bank 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (The World Bank, should become the principal source of, aid) -> The World Bank (3291ms) What countries supplied aid? several physicians 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (several physicians, work with, AIDS patients) -> several physicians (3335ms) What countries supplied aid? the country 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (the country, had the highest death rate from, AIDS) -> the country (3359ms) What countries supplied aid? relations and friends 1.4444444444459998 What countries supplied aid? -> $x: ($x, source, aid) -> (relations and friends, are potential sources of, aid) -> relations and friends (3373ms) What countries supplied aid? Tsunami-hit nations 1.4444444444459998 What countries supplied aid? -> $x: ($x, work with, aid) -> (Tsunami-hit nations, have worked with, aid agencies) -> Tsunami-hit nations (3306ms) What countries supplied aid? each shirt 1.4444444444459998 What countries supplied aid? -> $x: ($x, represent, aid) -> (each shirt, represents, aid items) -> each shirt (3291ms) What countries supplied aid? great concern 1.4444444444459998 What countries supplied aid? -> $x: ($x, rate, aid) -> (great concern, is the high rate of, HIV/AIDS) -> great concern (3359ms) What countries supplied aid? brush tool 1.11111111111 What countries supplied aid? -> $x: ($x, represent, band aid) -> (brush tool, is represented by, a band aid) -> brush tool (3390ms) What countries supplied aid? Finger Cots 1.11111111111 What countries supplied aid? -> $x: ($x, work with, band aid) -> (Finger Cots, work well with, Finger Blue Band Aids) -> Finger Cots (3390ms) What countries supplied aid? OYO 1.11111111111 What countries supplied aid? -> $x: ($x, work with, aid awareness) -> (OYO, will continue to work with, AIDS Awareness Clubs) -> OYO (3390ms) What countries supplied aid? DanChurchAid 1.11111111111 What countries supplied aid? -> $x: ($x, work with, aid awareness) -> (DanChurchAid, works with, HIV/AIDS awareness) -> DanChurchAid (3390ms) What countries supplied aid? Gender-based violence 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (Gender-based violence, also affects the rate of, HIV infections) -> Gender-based violence (3420ms) What countries supplied aid? ?Both cities 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (?Both cities, also have high rates of, HIV infection) -> ?Both cities (3416ms) What countries supplied aid? Volunteers 0.777777777778 What countries supplied aid? -> $x: ($x, work with, hiv and aid) -> (Volunteers, can work with, this Kenyan HIV and AIDS charity) -> Volunteers (3416ms) What countries supplied aid? a Dr 0.777777777778 What countries supplied aid? -> $x: ($x, work with, hiv and aid) -> (a Dr, worked with, AIDs and HIV patients) -> a Dr (3407ms) What countries supplied aid? SGR lawyers 0.777777777778 What countries supplied aid? -> $x: ($x, work with, legal aid) -> (SGR lawyers, have worked closely with, Atlanta Legal Aid) -> SGR lawyers (3405ms) What countries supplied aid? Botswana 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (Botswana, has the second-highest rate of, HIV infection) -> Botswana (3412ms) What countries supplied aid? The U.S. 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (The U.S., has a high rate of, HIV infection) -> The U.S. (3410ms) What countries supplied aid? Legal Services 0.777777777778 What countries supplied aid? -> $x: ($x, work with, legal aid) -> (Legal Services, has worked with, legal aid advocates) -> Legal Services (3419ms) What countries supplied aid? UNAIDS 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (UNAIDS, recently reported the global rates of, HIV infection) -> UNAIDS (3416ms) What countries supplied aid? practice 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (practice, are even higher rates of, HIV infection) -> practice (3403ms) What countries supplied aid? Latonya 0.777777777778 What countries supplied aid? -> $x: ($x, work with, legal aid) -> (Latonya, has also worked with, the Legal Aid Foundation) -> Latonya (3408ms) What countries supplied aid? married women 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (married women, have higher rates of, HIV infection) -> married women (3410ms) What countries supplied aid? color 0.777777777778 What countries supplied aid? -> $x: ($x, represent, hiv infection) -> (color, now represent the majority of, new HIV infections) -> color (3419ms) What countries supplied aid? eight countries 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (eight countries, found a higher rate of, HIV infection) -> eight countries (3408ms) What countries supplied aid? Trustees 0.777777777778 What countries supplied aid? -> $x: ($x, represent, legal aid) -> (Trustees, is represented on, the Legal Aid) -> Trustees (3398ms) What countries supplied aid? minorities 0.777777777778 What countries supplied aid? -> $x: ($x, represent, hiv infection) -> (minorities, represent 67 % of, new HIV infections) -> minorities (3410ms) What countries supplied aid? humans 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (humans, affected the rate of, HIV infection) -> humans (3419ms) What countries supplied aid? the medicines 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (the medicines, increase the rate of, HIV infections) -> the medicines (3416ms) What countries supplied aid? Georgia School 0.777777777778 What countries supplied aid? -> $x: ($x, work with, legal aid) -> (Georgia School, went to work with, the Legal Aid Office) -> Georgia School (3419ms) What countries supplied aid? methamphetamine 0.777777777778 What countries supplied aid? -> $x: ($x, source, hiv infection) -> (methamphetamine, may be a primary source of, new HIV infections) -> methamphetamine (3417ms) What countries supplied aid? Such young women 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (Such young women, have higher rates of, HIV infection) -> Such young women (3407ms) What countries supplied aid? test results 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (test results, showed a higher rate of, HIV infection) -> test results (3398ms) What countries supplied aid? The NCBA 0.777777777778 What countries supplied aid? -> $x: ($x, represent, legal aid) -> (The NCBA, is represented on, the Legal Aid) -> The NCBA (3412ms) What countries supplied aid? more injections 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (more injections, had higher rates of, HIV infection) -> more injections (3401ms) What countries supplied aid? Jennifer Hardy/CRS Jordan 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv and aid) -> (Jennifer Hardy/CRS Jordan, has a very low rate of, HIV and AIDS) -> Jennifer Hardy/CRS Jordan (3403ms) What countries supplied aid? Alaska Natives 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (Alaska Natives, have the third highest rate of, HIV infection) -> Alaska Natives (3418ms) What countries supplied aid? Ciudad Juarez 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (Ciudad Juarez, have a high rate of, HIV infection) -> Ciudad Juarez (3414ms) What countries supplied aid? male genital secretions 0.777777777778 What countries supplied aid? -> $x: ($x, source, hiv infection) -> (male genital secretions, is the primary source of, HIV infection) -> male genital secretions (3421ms) What countries supplied aid? ?Women 0.777777777778 What countries supplied aid? -> $x: ($x, represent, hiv infection) -> (?Women, represent the majority of, new HIV infections) -> ?Women (3412ms) What countries supplied aid? The NCAWA 0.777777777778 What countries supplied aid? -> $x: ($x, represent, legal aid) -> (The NCAWA, is represented on, the Legal Aid) -> The NCAWA (3414ms) What countries supplied aid? a combination vaccine 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (a combination vaccine, lowered the rate of, HIV infection) -> a combination vaccine (3419ms) What countries supplied aid? Kapiri 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (Kapiri, has high rates of, HIV infection) -> Kapiri (3398ms) What countries supplied aid? accurate information 0.777777777778 What countries supplied aid? -> $x: ($x, source, hiv infection) -> (accurate information, address the sources of, HIV infection) -> accurate information (3410ms) What countries supplied aid? no children 0.777777777778 What countries supplied aid? -> $x: ($x, represent, legal aid) -> (no children, were represented under, the Legal Aid Scheme) -> no children (3417ms) What countries supplied aid? PNG 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (PNG, has the highest rates of, HIV infection) -> PNG (3408ms) What countries supplied aid? female sex workers 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (female sex workers, have a higher rate of, HIV infection) -> female sex workers (3394ms) What countries supplied aid? the twin problems 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (the twin problems, now has the highest rate of, HIV infection) -> the twin problems (3421ms) What countries supplied aid? Priti Patel 0.777777777778 What countries supplied aid? -> $x: ($x, work with, hiv and aid) -> (Priti Patel, works with, the HIV and AIDS programme) -> Priti Patel (3419ms) What countries supplied aid? given zidovudine 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (given zidovudine, had a higher cumulative rate of, HIV infection) -> given zidovudine (3414ms) What countries supplied aid? the students 0.777777777778 What countries supplied aid? -> $x: ($x, work with, teaching material) -> (the students, worked with, the teaching materials) -> the students (3414ms) What countries supplied aid? age 24 0.777777777778 What countries supplied aid? -> $x: ($x, represent, hiv infection) -> (age 24, represent a major proportion of, HIV infections) -> age 24 (3422ms) What countries supplied aid? PEP 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (PEP, reduced the rate of, HIV infection) -> PEP (3414ms) What countries supplied aid? CIAO 0.777777777778 What countries supplied aid? -> $x: ($x, source, teaching material) -> (CIAO, is also widely-recognized source for, teaching materials) -> CIAO (3422ms) What countries supplied aid? Raye Blair 0.777777777778 What countries supplied aid? -> $x: ($x, work with, legal aid) -> (Raye Blair, works with, Jacksonville Area Legal Aid) -> Raye Blair (3421ms) What countries supplied aid? The author 0.777777777778 What countries supplied aid? -> $x: ($x, represent, legal aid) -> (The author, was represented by, a different legal aid lawyer) -> The author (3416ms) What countries supplied aid? ACTO 0.777777777778 What countries supplied aid? -> $x: ($x, work with, legal aid) -> (ACTO, works with, community legal aid clinics) -> ACTO (3401ms) What countries supplied aid? Black women 0.777777777778 What countries supplied aid? -> $x: ($x, represent, hiv infection) -> (Black women, represent the majority of, new HIV infections) -> Black women (3422ms) What countries supplied aid? a vaccine 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (a vaccine, has reduced the rate of, HIV infection) -> a vaccine (3412ms) What countries supplied aid? Women 0.777777777778 What countries supplied aid? -> $x: ($x, represent, hiv infection) -> (Women, represented just 2 percent of, HIV infections) -> Women (3420ms) What countries supplied aid? prostitution 0.777777777778 What countries supplied aid? -> $x: ($x, source, hiv infection) -> (prostitution, was the main source of, HIV infection) -> prostitution (3421ms) What countries supplied aid? minority Americans 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (minority Americans, have higher rates of, HIV infection) -> minority Americans (3421ms) What countries supplied aid? Older men 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (Older men, have higher rates of, HIV infection) -> Older men (3421ms) What countries supplied aid? the Bronx 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (the Bronx, has the highest rate of, HIV infection) -> the Bronx (3394ms) What countries supplied aid? The transgender community 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (The transgender community, has high rates of, HIV infection) -> The transgender community (3421ms) What countries supplied aid? Members 0.777777777778 What countries supplied aid? -> $x: ($x, represent, legal aid) -> (Members, used to represent, Area Legal Aid Committees) -> Members (3401ms) What countries supplied aid? black MSM 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (black MSM, have twice the rate of, HIV infections) -> black MSM (3401ms) What countries supplied aid? Larry 0.777777777778 What countries supplied aid? -> $x: ($x, work with, legal aid) -> (Larry, worked with, Legal Aid staff and attorneys) -> Larry (3419ms) What countries supplied aid? Latinos 0.777777777778 What countries supplied aid? -> $x: ($x, represent, hiv infection) -> (Latinos, represent almost 20 percent of, new HIV infections) -> Latinos (3407ms) What countries supplied aid? Zimba-bwe 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (Zimba-bwe, will compare rates of, HIV infection) -> Zimba-bwe (3420ms) What countries supplied aid? volunteers 0.777777777778 What countries supplied aid? -> $x: ($x, work with, legal aid) -> (volunteers, could work with, Legal Aid) -> volunteers (3421ms) What countries supplied aid? communities 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (communities, also have the highest rate of, HIV infection) -> communities (3401ms) What countries supplied aid? Lawyers 0.777777777778 What countries supplied aid? -> $x: ($x, work with, legal aid) -> (Lawyers, work with, Legal Aid Ontario) -> Lawyers (3420ms) What countries supplied aid? drug use 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (drug use, have higher rates of, HIV infection) -> drug use (3420ms) What countries supplied aid? The NCABL 0.777777777778 What countries supplied aid? -> $x: ($x, represent, legal aid) -> (The NCABL, is represented on, the Legal Aid) -> The NCABL (3419ms) What countries supplied aid? urine and saliva 0.777777777778 What countries supplied aid? -> $x: ($x, source, hiv infection) -> (urine and saliva, are very unlikely sources for, HIV infection) -> urine and saliva (3407ms) What countries supplied aid? Makete district 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (Makete district, has highest rate of, HIV infection) -> Makete district (3419ms) What countries supplied aid? Keith 0.777777777778 What countries supplied aid? -> $x: ($x, work with, legal aid) -> (Keith, currently works with, the Jacksonville Area Legal Aid) -> Keith (3417ms) What countries supplied aid? Cleveland Marshall College 0.777777777778 What countries supplied aid? -> $x: ($x, work with, legal aid) -> (Cleveland Marshall College, worked with, the Legal Aid Society) -> Cleveland Marshall College (3410ms) What countries supplied aid? The United States 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (The United States, has the highest rate of, HIV infection) -> The United States (3420ms) What countries supplied aid? Blacks 0.777777777778 What countries supplied aid? -> $x: ($x, represent, hiv infection) -> (Blacks, represent 44 % of, new HIV infections) -> Blacks (3414ms) What countries supplied aid? AIDS 0.777777777778 What countries supplied aid? -> $x: ($x, represent, hiv infection) -> (AIDS, represents an advanced stage of, HIV infection) -> AIDS (3401ms) What countries supplied aid? wedlock Botswana 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (wedlock Botswana, has the highest rate of, HIV infection) -> wedlock Botswana (3420ms) What countries supplied aid? The web 0.777777777778 What countries supplied aid? -> $x: ($x, source, teaching material) -> (The web, has been a such wonderful source of, teaching materials) -> The web (3417ms) What countries supplied aid? imprisonment 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (imprisonment, also have the highest rates of, HIV infection) -> imprisonment (3401ms) What countries supplied aid? drug users 0.777777777778 What countries supplied aid? -> $x: ($x, represent, hiv infection) -> (drug users, represent 12 % of, annual new HIV infections) -> drug users (3394ms) What countries supplied aid? Tom 0.777777777778 What countries supplied aid? -> $x: ($x, work with, legal aid) -> (Tom, worked with, Polk County Legal Aid) -> Tom (3412ms) What countries supplied aid? the highest unmet need 0.777777777778 What countries supplied aid? -> $x: ($x, represent, hiv infection) -> (the highest unmet need, represents half of, new HIV infections) -> the highest unmet need (3408ms) What countries supplied aid? agitprop 0.777777777778 What countries supplied aid? -> $x: ($x, work with, visual aid) -> (agitprop, works much better with, visual aids) -> agitprop (3394ms) What countries supplied aid? 25 0.777777777778 What countries supplied aid? -> $x: ($x, represent, hiv infection) -> (25, represented half of, all new HIV infection cases) -> 25 (3401ms) What countries supplied aid? San Francisco 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (San Francisco, has significantly lower rates of, HIV infection) -> San Francisco (3416ms) What countries supplied aid? AIDSVAX? B/E 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (AIDSVAX? B/E, lowered the rate of, HIV infection) -> AIDSVAX? B/E (3412ms) What countries supplied aid? Hope Townes 0.777777777778 What countries supplied aid? -> $x: ($x, work with, legal aid) -> (Hope Townes, works with, the Virginia Legal Aid Society) -> Hope Townes (3420ms) What countries supplied aid? The NCAJ 0.777777777778 What countries supplied aid? -> $x: ($x, represent, legal aid) -> (The NCAJ, is represented on, the Legal Aid) -> The NCAJ (3403ms) What countries supplied aid? The NCADA 0.777777777778 What countries supplied aid? -> $x: ($x, represent, legal aid) -> (The NCADA, is represented on, the Legal Aid) -> The NCADA (3410ms) What countries supplied aid? The Caribbean 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (The Caribbean, has the highest rates of, HIV infection) -> The Caribbean (3421ms) What countries supplied aid? an unplugged drain 0.777777777778 What countries supplied aid? -> $x: ($x, represent, hiv infection) -> (an unplugged drain, represents, HIV infection) -> an unplugged drain (3394ms) What countries supplied aid? the museum 0.777777777778 What countries supplied aid? -> $x: ($x, source, teaching material) -> (the museum, is a valuable source for, teaching materials) -> the museum (3412ms) What countries supplied aid? 13 to 29 0.777777777778 What countries supplied aid? -> $x: ($x, represent, hiv infection) -> (13 to 29, represent, more new HIV infections) -> 13 to 29 (3416ms) What countries supplied aid? the author 0.777777777778 What countries supplied aid? -> $x: ($x, represent, legal aid) -> (the author, was represented by, a legal aid lawyer) -> the author (3421ms) What countries supplied aid? B/E 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (B/E, lowered the rate of, HIV infection) -> B/E (3401ms) What countries supplied aid? HIV risk ' Circumcision 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (HIV risk ' Circumcision, can reduce the rate of, HIV infections) -> HIV risk ' Circumcision (3417ms) What countries supplied aid? John 0.777777777778 What countries supplied aid? -> $x: ($x, work with, legal aid) -> (John, worked with, the Legal Aid Foundation) -> John (3410ms) What countries supplied aid? Chicago 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (Chicago, have high rates of, HIV infection) -> Chicago (3417ms) What countries supplied aid? the Sahara 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (the Sahara, have the highest rates of, HIV infection) -> the Sahara (3398ms) What countries supplied aid? The City Council 0.777777777778 What countries supplied aid? -> $x: ($x, work with, legal aid) -> (The City Council, was proud to work with, The Legal Aid Society) -> The City Council (3394ms) What countries supplied aid? nevirapine 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (nevirapine, reduces the rate of, HIV infection) -> nevirapine (3418ms) What countries supplied aid? AFP Swaziland 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (AFP Swaziland, has the world 's highest rate of, HIV infection) -> AFP Swaziland (3410ms) What countries supplied aid? Kenya 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (Kenya, has a high rate of, HIV infection) -> Kenya (3420ms) What countries supplied aid? The ministry 0.777777777778 What countries supplied aid? -> $x: ($x, work with, legal aid) -> (The ministry, work with, Legal Aid Ontario) -> The ministry (3418ms) What countries supplied aid? the U.S. House 0.777777777778 What countries supplied aid? -> $x: ($x, work with, legal aid) -> (the U.S. House, has worked with, the Legal Aid Society) -> the U.S. House (3419ms) What countries supplied aid? MSM 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (MSM, often have much higher rates of, HIV infection) -> MSM (3421ms) What countries supplied aid? Marie Lucie 0.777777777778 What countries supplied aid? -> $x: ($x, work with, hiv and aid) -> (Marie Lucie, works with, HIV-positive and AIDS patients) -> Marie Lucie (3421ms) What countries supplied aid? The Haldane Society 0.777777777778 What countries supplied aid? -> $x: ($x, work with, legal aid) -> (The Haldane Society, is working with, Young Legal Aid Lawyers) -> The Haldane Society (3421ms) What countries supplied aid? sex workers 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (sex workers, reduce their rate of, HIV infections) -> sex workers (3412ms) What countries supplied aid? married adolescents 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (married adolescents, have higher rates of, HIV infection) -> married adolescents (3407ms) What countries supplied aid? the UK 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (the UK, have higher rates of, HIV infection) -> the UK (3416ms) What countries supplied aid? bear 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (bear, have higher rates of, HIV infection) -> bear (3407ms) What countries supplied aid? recruiting or retention 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (recruiting or retention, increased the rate of, HIV infection) -> recruiting or retention (3398ms) What countries supplied aid? young people 0.777777777778 What countries supplied aid? -> $x: ($x, represent, hiv infection) -> (young people, represent 13 percent of, all new HIV infections) -> young people (3420ms) What countries supplied aid? condoms 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (condoms, had dramatically reduced the rate of, HIV infection) -> condoms (3416ms) What countries supplied aid? the population 0.777777777778 What countries supplied aid? -> $x: ($x, represent, hiv infection) -> (the population, represent nearly half of, new HIV infections) -> the population (3416ms) What countries supplied aid? Students 0.777777777778 What countries supplied aid? -> $x: ($x, work with, legal aid) -> (Students, also work with, other legal aid attorneys) -> Students (3403ms) What countries supplied aid? Circumcision 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (Circumcision, can cut the rate of, HIV infection) -> Circumcision (3408ms) What countries supplied aid? nHaiti 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (nHaiti, has the highest rate of, HIV infection) -> nHaiti (3410ms) What countries supplied aid? black men and women 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (black men and women, have higher rates of, HIV infection) -> black men and women (3412ms) What countries supplied aid? the eastern coast 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (the eastern coast, have highest rates of, HIV infection) -> the eastern coast (3401ms) What countries supplied aid? Notre Dame 0.777777777778 What countries supplied aid? -> $x: ($x, work with, legal aid) -> (Notre Dame, works with, the Notre Dame Legal Aid Clinic) -> Notre Dame (3421ms) What countries supplied aid? The four homeowners 0.777777777778 What countries supplied aid? -> $x: ($x, represent, legal aid) -> (The four homeowners, are represented by, The Legal Aid Society) -> The four homeowners (3410ms) What countries supplied aid? The study 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (The study, found a rate of, HIV infection) -> The study (3421ms) What countries supplied aid? 15-24 0.777777777778 What countries supplied aid? -> $x: ($x, represent, hiv infection) -> (15-24, represent 45 percent of, all new HIV infections) -> 15-24 (3419ms) What countries supplied aid? African-Americans 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (African-Americans, have the highest rates of, HIV infection) -> African-Americans (3416ms) What countries supplied aid? The petitioners 0.777777777778 What countries supplied aid? -> $x: ($x, represent, legal aid) -> (The petitioners, are represented by, Bay Area Legal Aid) -> The petitioners (3412ms) What countries supplied aid? blacks 0.777777777778 What countries supplied aid? -> $x: ($x, represent, hiv infection) -> (blacks, represented 36 % of, new HIV infections) -> blacks (3394ms) What countries supplied aid? Gatlin 0.777777777778 What countries supplied aid? -> $x: ($x, work with, legal aid) -> (Gatlin, worked extensively with, the Queen?s Legal Aid clinic) -> Gatlin (3420ms) What countries supplied aid? La Raza Ms. Gallegos 0.777777777778 What countries supplied aid? -> $x: ($x, work with, legal aid) -> (La Raza Ms. Gallegos, worked with, the Alameda County Legal Aid) -> La Raza Ms. Gallegos (3401ms) What countries supplied aid? Not people 0.777777777778 What countries supplied aid? -> $x: ($x, work with, hiv and aid) -> (Not people, work with, HIV and AIDS) -> Not people (3414ms) What countries supplied aid? Dr. Levy?s 0.777777777778 What countries supplied aid? -> $x: ($x, work with, hiv and aid) -> (Dr. Levy?s, continued work with, HIV and AIDS) -> Dr. Levy?s (3401ms) What countries supplied aid? same-sex marriage 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (same-sex marriage, raises the rate of, HIV infection) -> same-sex marriage (3416ms) What countries supplied aid? Janes 0.777777777778 What countries supplied aid? -> $x: ($x, work with, legal aid) -> (Janes, worked with, different legal aid programs) -> Janes (3410ms) What countries supplied aid? ?D.O.?d ? 0.777777777778 What countries supplied aid? -> $x: ($x, represent, legal aid) -> (?D.O.?d ?, are represented by, legal aid lawyers) -> ?D.O.?d ? (3421ms) What countries supplied aid? the mother 0.777777777778 What countries supplied aid? -> $x: ($x, represent, legal aid) -> (the mother, was represented by, a Legal Aid lawyer) -> the mother (3417ms) What countries supplied aid? court 0.777777777778 What countries supplied aid? -> $x: ($x, represent, legal aid) -> (court, is represented by, the Legal Aid Society) -> court (3414ms) What countries supplied aid? Berardelli 0.777777777778 What countries supplied aid? -> $x: ($x, represent, legal aid) -> (Berardelli, was represented by, a legal aid attorney) -> Berardelli (3403ms) What countries supplied aid? a needle 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (a needle, had higher rates of, HIV infection) -> a needle (3421ms) What countries supplied aid? assets 0.777777777778 What countries supplied aid? -> $x: ($x, represent, legal aid) -> (assets, was represented by, a Legal Aid attorney) -> assets (3408ms) What countries supplied aid? Baltimore 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (Baltimore, had the highest rates of, HIV infection) -> Baltimore (3419ms) What countries supplied aid? Rehmah 0.777777777778 What countries supplied aid? -> $x: ($x, work with, legal aid) -> (Rehmah, has previously worked with, the AGHS Legal Aid Cell) -> Rehmah (3414ms) What countries supplied aid? 13 and 29 0.777777777778 What countries supplied aid? -> $x: ($x, represent, hiv infection) -> (13 and 29, represent 34 % of, new HIV infections) -> 13 and 29 (3407ms) What countries supplied aid? Ottawa 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (Ottawa, has the highest new rate of, HIV infections) -> Ottawa (3416ms) What countries supplied aid? N-9 gel 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (N-9 gel, had a higher rate of, HIV infection) -> N-9 gel (3401ms) What countries supplied aid? NC. NC GALA 0.777777777778 What countries supplied aid? -> $x: ($x, represent, legal aid) -> (NC. NC GALA, is represented on, the Legal Aid) -> NC. NC GALA (3419ms) What countries supplied aid? new AIDS 0.777777777778 What countries supplied aid? -> $x: ($x, represent, hiv infection) -> (new AIDS, accurately represent trends in, new HIV infections) -> new AIDS (3416ms) What countries supplied aid? needles 0.777777777778 What countries supplied aid? -> $x: ($x, source, hiv infection) -> (needles, remain a major source of, HIV infection) -> needles (3414ms) What countries supplied aid? heterosexual sex 0.777777777778 What countries supplied aid? -> $x: ($x, source, hiv infection) -> (heterosexual sex, is the source of virtually, all HIV infection) -> heterosexual sex (3401ms) What countries supplied aid? either 0.777777777778 What countries supplied aid? -> $x: ($x, source, hiv and aid) -> (either, are potential sources of, STDs and HIV/Aids) -> either (3421ms) What countries supplied aid? urban areas 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (urban areas, have high rates of, HIV infection) -> urban areas (3421ms) What countries supplied aid? The country 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (The country, has quite a low rate of, HIV infection) -> The country (3412ms) What countries supplied aid? one half 0.777777777778 What countries supplied aid? -> $x: ($x, source, hiv infection) -> (one half, was the most frequent source of, new HIV infections) -> one half (3394ms) What countries supplied aid? the gel 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (the gel, actually increased the rate of, HIV infection) -> the gel (3421ms) What countries supplied aid? the reports key findings 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (the reports key findings, include The rate of, HIV infection) -> the reports key findings (3418ms) What countries supplied aid? antibody response 0.777777777778 What countries supplied aid? -> $x: ($x, rate, hiv infection) -> (antibody response, had the lowest rate of, HIV infection) -> antibody response (3421ms) What countries supplied aid? the many issues 0.777777777778 What countries supplied aid? -> $x: ($x, surround, hiv infection) -> (the many issues, surrounding, HIV infection) -> the many issues (3421ms) What countries supplied aid? PILI 0.777777777778 What countries supplied aid? -> $x: ($x, work with, legal aid) -> (PILI, also works with, legal aid) -> PILI (3403ms) What companies has BAT owned? Grassley -0.999999999994 What companies has BAT owned? -> $x: ($x, have bat, general) -> (Grassley, has gone to bat for, the Inspector General) -> Grassley (584ms) Where does chocolate come from? the cold 0.66666666667 Where does chocolate come from? -> $x: (chocolate, come from in, $x) -> ($ 1 Hot Chocolate or Hot Mocha, Come in from, the cold) -> the cold (1262ms) Where does chocolate come from? the Gallery Room 0.66666666667 Where does chocolate come from? -> $x: (chocolate, come from in, $x) -> (chocolate, comes from in, the Gallery Room) -> the Gallery Room (1262ms) Where does chocolate come from? money 0.666666666664 Where does chocolate come from? -> $x: (chocolate bar, be make of, $x) -> (chocolate bars, is a widespread way of making, money) -> money (1262ms) Where does chocolate come from? the beans 0.666666666664 Where does chocolate come from? -> $x: (chocolate bar, be make of, $x) -> (Each chocolate bar, is made out of, the beans) -> the beans (1262ms) Where does chocolate come from? the surrounding farms 0.555555555561 Where does chocolate come from? -> $x: (milk, come from in, $x) -> (milk, were coming in from, the surrounding farms) -> the surrounding farms (1262ms) Where does chocolate come from? EQLive 0.555555555561 Where does chocolate come from? -> $x: (milk, come from in, $x) -> (all the milk, came from in, EQLive) -> EQLive (1262ms) Where does chocolate come from? the parlor 0.555555555561 Where does chocolate come from? -> $x: (milk, come from in, $x) -> (the milk, comes in from, the parlor) -> the parlor (1262ms) Where does chocolate come from? the country-side 0.555555555561 Where does chocolate come from? -> $x: (milk, come from in, $x) -> (milk and legumes, came in from, the country-side) -> the country-side (1475ms) Where does chocolate come from? the town 0.555555555561 Where does chocolate come from? -> $x: (milk, come from in, $x) -> (the milk, came from in, the town) -> the town (1475ms) Where does chocolate come from? Daniel Peters 0.555555555555 Where does chocolate come from? -> $x: ($x, produce, chocolate bar) -> (Daniel Peters, produced, the first milk chocolate bar) -> Daniel Peters (1541ms) Where does chocolate come from? the pocket 0.555555555555 Where does chocolate come from? -> $x: ($x, produce, chocolate bar) -> (the pocket, produced, an enormous chocolate bar) -> the pocket (1475ms) Where does chocolate come from? The company 0.555555555555 Where does chocolate come from? -> $x: ($x, produce, chocolate bar) -> (The company, produces a line of, single-origin chocolate bars) -> The company (1541ms) Where does chocolate come from? a company 0.555555555555 Where does chocolate come from? -> $x: ($x, produce, chocolate bar) -> (a company, be allowed to produce, a Fair Trade chocolate bar) -> a company (1541ms) Where does chocolate come from? a dozen firms 0.555555555555 Where does chocolate come from? -> $x: ($x, produce, chocolate bar) -> (a dozen firms, are producing, chocolate bars) -> a dozen firms (1541ms) Where does chocolate come from? Lancaster 0.555555555555 Where does chocolate come from? -> $x: ($x, produce, chocolate bar) -> (Lancaster, started producing, chocolate bars) -> Lancaster (1541ms) Where does chocolate come from? pany 0.555555555555 Where does chocolate come from? -> $x: ($x, produce, chocolate bar) -> (pany, primarily produces, chocolate bars) -> pany (1541ms) Where does chocolate come from? confectionary firms 0.555555555555 Where does chocolate come from? -> $x: ($x, produce, chocolate bar) -> (confectionary firms, start producing, mini-chocolate bars) -> confectionary firms (1541ms) Where does chocolate come from? the company 0.555555555555 Where does chocolate come from? -> $x: ($x, produce, chocolate bar) -> (the company, once produced, chocolate bars) -> the company (1475ms) Where does chocolate come from? Mars 0.555555555555 Where does chocolate come from? -> $x: ($x, produce, chocolate bar) -> (Mars, also produces, Dove chocolate bars) -> Mars (1475ms) Where does chocolate come from? The trio 0.555555555555 Where does chocolate come from? -> $x: ($x, produce, chocolate bar) -> (The trio, were involved in producing, chocolate bars) -> The trio (1475ms) Where does chocolate come from? Nestl? 0.555555555555 Where does chocolate come from? -> $x: ($x, produce, chocolate bar) -> (Nestl?, produced a series of, milk chocolate bars) -> Nestl? (1475ms) Where does chocolate come from? favourite mass 0.555555555555 Where does chocolate come from? -> $x: ($x, produce, chocolate bar) -> (favourite mass, produced, chocolate bars) -> favourite mass (1541ms) Who was the captain of the Titanic? Rosenthal 1.9999999999890001 Who was the captain of the Titanic? -> $x: ($x, be captain of, titanic) -> (Rosenthal, is the captain of, the Titanic) -> Rosenthal (861ms) Who was the captain of the Titanic? Dick Clark 1.9999999999890001 Who was the captain of the Titanic? -> $x: ($x, be captain of, titanic) -> (Dick Clark, was the captain of, the Titanic) -> Dick Clark (861ms) Who was the captain of the Titanic? The most famous 1.9999999999890001 Who was the captain of the Titanic? -> $x: ($x, be captain of, titanic) -> (The most famous, is the captain of, the Titanic) -> The most famous (861ms) Who was the captain of the Titanic? Captain Edward John Smith 1.9999999999890001 Who was the captain of the Titanic? -> $x: ($x, be captain of, titanic) -> (Captain Edward John Smith, was the captain of, the Titanic) -> Captain Edward John Smith (861ms) Who was the captain of the Titanic? Christopher 1.9999999999890001 Who was the captain of the Titanic? -> $x: ($x, be captain of, titanic) -> (Christopher, Is Captain Of, The Titanic Important) -> Christopher (861ms) Who was the captain of the Titanic? deviantART More 1.9999999999890001 Who was the captain of the Titanic? -> $x: ($x, be captain of, titanic) -> (deviantART More, is the captain of, the Titanic richer) -> deviantART More (861ms) Who was the captain of the Titanic? Edward Smith 1.9999999999890001 Who was the captain of the Titanic? -> $x: ($x, be captain of, titanic) -> (Edward Smith, was the captain of, the Titanic) -> Edward Smith (861ms) Who was the captain of the Titanic? Edward J. Smith 1.9999999999890001 Who was the captain of the Titanic? -> $x: ($x, be captain of, titanic) -> (Edward J. Smith, was the captain of, the Titanic) -> Edward J. Smith (861ms) Who was the captain of the Titanic? deviantART Details 1.9999999999890001 Who was the captain of the Titanic? -> $x: ($x, be captain of, titanic) -> (deviantART Details, is the captain of, the Titanic richer) -> deviantART Details (861ms) Who was the captain of the Titanic? ugly ;A 1.9999999999890001 Who was the captain of the Titanic? -> $x: ($x, be captain of, titanic) -> (ugly ;A, is the captain of, the Titanic richer) -> ugly ;A (861ms) Who was the captain of the Titanic? Bush 1.9999999999890001 Who was the captain of the Titanic? -> $x: ($x, be captain of, titanic) -> (Bush, were captain of, the Titanic) -> Bush (861ms) Who was the captain of the Titanic? Obama 1.9999999999890001 Who was the captain of the Titanic? -> $x: ($x, be captain of, titanic) -> (Obama, was the captain of, the Titanic) -> Obama (861ms) Who was the captain of the Titanic? Woody 1.9999999999890001 Who was the captain of the Titanic? -> $x: ($x, be captain of, titanic) -> (Woody, were Captain of, the Titanic) -> Woody (861ms) Who was the captain of the Titanic? Sigrid Elisabeth Andersson 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Sigrid Elisabeth Andersson, Killed in disaster, Sinking of the Titanic) -> Sigrid Elisabeth Andersson (867ms) Who was the captain of the Titanic? Jacques Futrelle 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Jacques Futrelle, Killed in disaster, Sinking of the Titanic) -> Jacques Futrelle (867ms) Who was the captain of the Titanic? Ebba Iris Alfrida Andersson 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Ebba Iris Alfrida Andersson, Killed in disaster, Sinking of the Titanic) -> Ebba Iris Alfrida Andersson (866ms) Who was the captain of the Titanic? Ilmari Rudolf Alhom?ki 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Ilmari Rudolf Alhom?ki, Killed in disaster, Sinking of the Titanic) -> Ilmari Rudolf Alhom?ki (863ms) Who was the captain of the Titanic? Benjamin Guggenheim 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Benjamin Guggenheim, Killed in disaster, Sinking of the Titanic) -> Benjamin Guggenheim (867ms) Who was the captain of the Titanic? George Dunton Widener 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (George Dunton Widener, Killed in disaster, Sinking of the Titanic) -> George Dunton Widener (864ms) Who was the captain of the Titanic? Samuel Abelson 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Samuel Abelson, Killed in disaster, Sinking of the Titanic) -> Samuel Abelson (867ms) Who was the captain of the Titanic? Sidney Leslie Goodwin 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Sidney Leslie Goodwin, Killed in disaster, Sinking of the Titanic) -> Sidney Leslie Goodwin (867ms) Who was the captain of the Titanic? Presumption 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Presumption, killed, the Titanic) -> Presumption (867ms) Who was the captain of the Titanic? One such example 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, be captain, titanic) -> (One such example, might have been the captain on, the Titanic) -> One such example (867ms) Who was the captain of the Titanic? Bessie Waldo Allison 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Bessie Waldo Allison, Killed in disaster, Sinking of the Titanic) -> Bessie Waldo Allison (863ms) Who was the captain of the Titanic? William Neal Thomas Ford 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (William Neal Thomas Ford, Killed in disaster, Sinking of the Titanic) -> William Neal Thomas Ford (861ms) Who was the captain of the Titanic? Jack Phillips 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Jack Phillips, Killed in disaster, Sinking of the Titanic) -> Jack Phillips (861ms) Who was the captain of the Titanic? Walter Donald Douglas 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Walter Donald Douglas, Killed in disaster, Sinking of the Titanic) -> Walter Donald Douglas (864ms) Who was the captain of the Titanic? John James Borebank 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (John James Borebank, Killed in disaster, Sinking of the Titanic) -> John James Borebank (864ms) Who was the captain of the Titanic? Sleiman Attala 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Sleiman Attala, Killed in disaster, Sinking of the Titanic) -> Sleiman Attala (864ms) Who was the captain of the Titanic? Charles Edward Goodwin 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Charles Edward Goodwin, Killed in disaster, Sinking of the Titanic) -> Charles Edward Goodwin (866ms) Who was the captain of the Titanic? Archibald Butt 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Archibald Butt, Killed in disaster, Sinking of the Titanic) -> Archibald Butt (863ms) Who was the captain of the Titanic? Isidor Straus 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Isidor Straus, Killed in disaster, Sinking of the Titanic) -> Isidor Straus (864ms) Who was the captain of the Titanic? John Jacob Astor IV 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (John Jacob Astor IV, Killed in disaster, Sinking of the Titanic) -> John Jacob Astor IV (867ms) Who was the captain of the Titanic? Sigvard Harald Elias Andersson 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Sigvard Harald Elias Andersson, Killed in disaster, Sinking of the Titanic) -> Sigvard Harald Elias Andersson (864ms) Who was the captain of the Titanic? Washington A Roebling, II 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Washington A Roebling, II, Killed in disaster, Sinking of the Titanic) -> Washington A Roebling, II (864ms) Who was the captain of the Titanic? Michel Navratil 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Michel Navratil, Killed in disaster, Sinking of the Titanic) -> Michel Navratil (864ms) Who was the captain of the Titanic? Ren? Pernot 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Ren? Pernot, Killed in disaster, Sinking of the Titanic) -> Ren? Pernot (864ms) Who was the captain of the Titanic? Catherine Buckley 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Catherine Buckley, Killed in disaster, Sinking of the Titanic) -> Catherine Buckley (863ms) Who was the captain of the Titanic? Clarence Gustaf Asplund 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Clarence Gustaf Asplund, Killed in disaster, Sinking of the Titanic) -> Clarence Gustaf Asplund (868ms) Who was the captain of the Titanic? Gilbert Sigvard Emanuel Danbom 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Gilbert Sigvard Emanuel Danbom, Killed in disaster, Sinking of the Titanic) -> Gilbert Sigvard Emanuel Danbom (867ms) Who was the captain of the Titanic? Albert Karvin Andersen 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Albert Karvin Andersen, Killed in disaster, Sinking of the Titanic) -> Albert Karvin Andersen (863ms) Who was the captain of the Titanic? The Postman 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (The Postman, was promptly killed by, both Titanic and attacks) -> The Postman (867ms) Who was the captain of the Titanic? Downton Abbey 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Downton Abbey, are killed on, the Titanic) -> Downton Abbey (866ms) Who was the captain of the Titanic? Andersson, Ellis Anna Maria 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Andersson, Ellis Anna Maria, Killed in disaster, Sinking of the Titanic) -> Andersson, Ellis Anna Maria (867ms) Who was the captain of the Titanic? Akar Boulos 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Akar Boulos, Killed in disaster, Sinking of the Titanic) -> Akar Boulos (867ms) Who was the captain of the Titanic? William McMaster Murdoch 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (William McMaster Murdoch, Killed in disaster, Sinking of the Titanic) -> William McMaster Murdoch (868ms) Who was the captain of the Titanic? Ida Straus 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Ida Straus, Killed in disaster, Sinking of the Titanic) -> Ida Straus (863ms) Who was the captain of the Titanic? Cancer 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Cancer, kills, a Titanic) -> Cancer (867ms) Who was the captain of the Titanic? William Edward Hipkins 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (William Edward Hipkins, Killed in disaster, Sinking of the Titanic) -> William Edward Hipkins (866ms) Who was the captain of the Titanic? Eugene Joseph Abbott 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Eugene Joseph Abbott, Killed in disaster, Sinking of the Titanic) -> Eugene Joseph Abbott (867ms) Who was the captain of the Titanic? Seman Bestros 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Seman Bestros, Killed in disaster, Sinking of the Titanic) -> Seman Bestros (867ms) Who was the captain of the Titanic? Eino Viljami Panula 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Eino Viljami Panula, Killed in disaster, Sinking of the Titanic) -> Eino Viljami Panula (867ms) Who was the captain of the Titanic? Wallace Hartley 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Wallace Hartley, Killed in disaster, Sinking of the Titanic) -> Wallace Hartley (867ms) Who was the captain of the Titanic? Helen Loraine Allison 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Helen Loraine Allison, Killed in disaster, Sinking of the Titanic) -> Helen Loraine Allison (863ms) Who was the captain of the Titanic? William Thomas Stead 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (William Thomas Stead, Killed in disaster, Sinking of the Titanic) -> William Thomas Stead (867ms) Who was the captain of the Titanic? ?Full 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, captain, titanic) -> (?Full, says the captain of, the Titanic) -> ?Full (866ms) Who was the captain of the Titanic? Nourelain Boulos 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Nourelain Boulos, Killed in disaster, Sinking of the Titanic) -> Nourelain Boulos (866ms) Who was the captain of the Titanic? Francis Davis Millet 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Francis Davis Millet, Killed in disaster, Sinking of the Titanic) -> Francis Davis Millet (864ms) Who was the captain of the Titanic? Filip Oscar Asplund 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Filip Oscar Asplund, Killed in disaster, Sinking of the Titanic) -> Filip Oscar Asplund (864ms) Who was the captain of the Titanic? the Stratosphere Tower 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (the Stratosphere Tower, killed, the Titanic) -> the Stratosphere Tower (867ms) Who was the captain of the Titanic? Thomas Byles 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Thomas Byles, Killed in disaster, Sinking of the Titanic) -> Thomas Byles (864ms) Who was the captain of the Titanic? Ingeborg Constantia Andersson 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Ingeborg Constantia Andersson, Killed in disaster, Sinking of the Titanic) -> Ingeborg Constantia Andersson (863ms) Who was the captain of the Titanic? Dollina Margaret Ford 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Dollina Margaret Ford, Killed in disaster, Sinking of the Titanic) -> Dollina Margaret Ford (863ms) Who was the captain of the Titanic? John Thayer 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (John Thayer, Killed in disaster, Sinking of the Titanic) -> John Thayer (866ms) Who was the captain of the Titanic? Felix Rojj Asplund 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Felix Rojj Asplund, Killed in disaster, Sinking of the Titanic) -> Felix Rojj Asplund (866ms) Who was the captain of the Titanic? Charles Melville Hays 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Charles Melville Hays, Killed in disaster, Sinking of the Titanic) -> Charles Melville Hays (867ms) Who was the captain of the Titanic? Thomas Andrews 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Thomas Andrews, Killed in disaster, Sinking of the Titanic) -> Thomas Andrews (863ms) Who was the captain of the Titanic? Edward Watson Ford 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Edward Watson Ford, Killed in disaster, Sinking of the Titanic) -> Edward Watson Ford (864ms) Who was the captain of the Titanic? Robina Maggie Ford 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Robina Maggie Ford, Killed in disaster, Sinking of the Titanic) -> Robina Maggie Ford (866ms) Who was the captain of the Titanic? Bertram Frank Dean 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Bertram Frank Dean, Killed in disaster, Sinking of the Titanic) -> Bertram Frank Dean (867ms) Who was the captain of the Titanic? Anthony Abbing 1.55555555555 Who was the captain of the Titanic? -> $x: ($x, kill, titanic) -> (Anthony Abbing, Killed in disaster, Sinking of the Titanic) -> Anthony Abbing (864ms) What is the tallest statue in the world? Confidence 1.11111111111 What is the tallest statue in the world? -> $x: ($x, be limitation of, world) -> (Confidence, is a limitation of, an egoic world) -> Confidence (960ms) What is the tallest statue in the world? exhibits 1.11111111111 What is the tallest statue in the world? -> $x: ($x, be statue of, world) -> (exhibits, were life-size statues of, the world) -> exhibits (960ms) What is the tallest statue in the world? the material world 1.11111111111 What is the tallest statue in the world? -> $x: ($x, be limitation of, world) -> (the material world, is a limitation of, the four-dimension world) -> the material world (960ms) What is the tallest statue in the world? A subject 1.11111111111 What is the tallest statue in the world? -> $x: ($x, be limitation of, world) -> (A subject, is a limitation of, the world ?) -> A subject (960ms) What is the tallest statue in the world? the range 1.11111111111 What is the tallest statue in the world? -> $x: ($x, be limitation of, world) -> (the range, are the limitations of, the plant world) -> the range (960ms) What is the tallest statue in the world? 26783 feet 0.999999999995 What is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (26783 feet, is the eighth tallest mountain in, the World) -> 26783 feet (2333ms) What is the tallest statue in the world? Hawaii 0.999999999995 What is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (Hawaii, is the tallest mountain in, the world) -> Hawaii (2408ms) What is the tallest statue in the world? the bottom 0.999999999995 What is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (the bottom, is the tallest mountain in, the world) -> the bottom (2408ms) What is the tallest statue in the world? the ocean floor Mauna Kea 0.999999999995 What is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (the ocean floor Mauna Kea, is the tallest mountain in, the world) -> the ocean floor Mauna Kea (960ms) What is the tallest statue in the world? the Himalayas 0.999999999995 What is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (the Himalayas, are the tallest mountain range in, the world) -> the Himalayas (2333ms) What is the tallest statue in the world? the same island 0.999999999995 What is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (the same island, is actually the tallest mountain in, the world) -> the same island (1082ms) What is the tallest statue in the world? factual questions 0.999999999995 What is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (factual questions, is the second tallest mountain in, the world) -> factual questions (2333ms) What is the tallest statue in the world? Mount Kinabalu 0.999999999995 What is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (Mount Kinabalu, is the 20th tallest mountain in, the world) -> Mount Kinabalu (2333ms) What is the tallest statue in the world? Kilimanjaro 0.999999999995 What is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (Kilimanjaro, is the tallest freestanding mountain in, the world) -> Kilimanjaro (2333ms) What is the tallest statue in the world? Maunakea 0.999999999995 What is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (Maunakea, is the tallest mountain in, the world) -> Maunakea (1488ms) What is the tallest statue in the world? K2 0.999999999995 What is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (K2, is the Second Tallest Mountain in, the World) -> K2 (1582ms) What is the tallest statue in the world? natural language 0.999999999995 What is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (natural language, is the tallest mountain in, the world) -> natural language (1582ms) What is the tallest statue in the world? 19,340 feet 0.999999999995 What is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (19,340 feet, is the tallest free-standing mountain in, the world) -> 19,340 feet (2333ms) What is the tallest statue in the world? The Himalayas 0.999999999995 What is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (The Himalayas, are the tallest mountains in, the world) -> The Himalayas (2333ms) What is the tallest statue in the world? Africa 0.999999999995 What is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (Africa, is the tallest freestanding mountain in, the world) -> Africa (1488ms) What is the tallest statue in the world? Mt Everest 0.999999999995 What is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (Mt Everest, is the tallest mountain in, the world) -> Mt Everest (2408ms) What is the tallest statue in the world? the Aconcagua 0.999999999995 What is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (the Aconcagua, is the second tallest mountain in, the world) -> the Aconcagua (1582ms) What is the tallest statue in the world? Mauna Kea 0.999999999995 What is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (Mauna Kea, is the tallest mountain in, the world) -> Mauna Kea (1582ms) What is the tallest statue in the world? Mauna Loa 0.999999999995 What is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (Mauna Loa, is the tallest mountain in, the world) -> Mauna Loa (2408ms) What is the tallest statue in the world? Mount Everest 0.999999999995 What is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (Mount Everest, was the tallest mountain in, the world) -> Mount Everest (2408ms) What is the tallest statue in the world? Kanchenjunga 0.999999999995 What is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (Kanchenjunga, is the third-tallest mountain in, the world) -> Kanchenjunga (1582ms) What is the tallest statue in the world? Tyre 0.999999999995 What is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (Tyre, was the tallest unclimbed mountain in, the world) -> Tyre (2408ms) What is the tallest statue in the world? Everest 0.999999999995 What is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (Everest, is the tallest mountain in, the world) -> Everest (2408ms) What is the tallest statue in the world? 13,796 foot Mauna Kea 0.999999999995 What is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (13,796 foot Mauna Kea, be the tallest mountains in, the world) -> 13,796 foot Mauna Kea (1082ms) What is the tallest statue in the world? the Big Island 0.999999999995 What is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (the Big Island, is the tallest mountain in, the world) -> the Big Island (1082ms) What is the tallest statue in the world? McKinley 0.999999999995 What is the tallest statue in the world? -> $x: ($x, be tallest mountain in, world) -> (McKinley, is the tallest mountain in, the world) -> McKinley (1488ms) What is the tallest statue in the world? the highest peak 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (the highest peak, is the eighth highest mountain in, the world) -> the highest peak (2509ms) What is the tallest statue in the world? 4 Mount Everest 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (4 Mount Everest, is the highest mountain in, the world) -> 4 Mount Everest (2524ms) What is the tallest statue in the world? Missouri 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Missouri, was probably the highest mountain in, the world) -> Missouri (2509ms) What is the tallest statue in the world? Khangchendzonga 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Khangchendzonga, is the third highest mountain in, the world) -> Khangchendzonga (2524ms) What is the tallest statue in the world? Broad Peak 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Broad Peak, is the 12th highest mountain in, the world) -> Broad Peak (2524ms) What is the tallest statue in the world? 8,516m 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (8,516m, is the fourth highest mountain in, the world) -> 8,516m (2519ms) What is the tallest statue in the world? Lhotse 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Lhotse, is the fourth highest mountain in, the world) -> Lhotse (2509ms) What is the tallest statue in the world? Dhaulagiri 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Dhaulagiri, is the sixth highest mountain in, the world) -> Dhaulagiri (2524ms) What is the tallest statue in the world? 8,201m Cho Oyu 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (8,201m Cho Oyu, is the sixth highest mountain in, the world) -> 8,201m Cho Oyu (2524ms) What is the tallest statue in the world? Medeo 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Medeo, is the highest mountain range in, the world) -> Medeo (2437ms) What is the tallest statue in the world? Sikkim 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Sikkim, is the third highest mountain in, the world) -> Sikkim (2492ms) What is the tallest statue in the world? 8,586m Kanchenjunga 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (8,586m Kanchenjunga, is the third highest mountain in, the world) -> 8,586m Kanchenjunga (2514ms) What is the tallest statue in the world? mountain 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (mountain, is the ninth-highest mountain in, the world) -> mountain (2509ms) What is the tallest statue in the world? sight 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (sight, are the highest mountains in, the world) -> sight (2437ms) What is the tallest statue in the world? Strenuous Makalu 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Strenuous Makalu, is the fifth highest mountain in, the world) -> Strenuous Makalu (2514ms) What is the tallest statue in the world? Cho-Oyu 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Cho-Oyu, is the sixth highest mountain in, the world) -> Cho-Oyu (2524ms) What is the tallest statue in the world? 598 mtrs 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (598 mtrs, is third highest mountain in, the world) -> 598 mtrs (2514ms) What is the tallest statue in the world? Manaslu 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Manaslu, is the eighth highest mountain in, the world) -> Manaslu (2524ms) What is the tallest statue in the world? 10 days Annapurna 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (10 days Annapurna, is the 10th highest mountain in, the world) -> 10 days Annapurna (2492ms) What is the tallest statue in the world? the border 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (the border, is the highest mountain in, the world) -> the border (2408ms) What is the tallest statue in the world? China 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (China, is the highest mountain in, the world) -> China (2492ms) What is the tallest statue in the world? 8167 meters 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (8167 meters, is 7th highest mountain in, the world) -> 8167 meters (2492ms) What is the tallest statue in the world? 26,795 feet 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (26,795 feet, is the sixth highest mountain in, the world) -> 26,795 feet (2492ms) What is the tallest statue in the world? the Gorkha massif 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (the Gorkha massif, is the eighth highest mountain in, the world) -> the Gorkha massif (2509ms) What is the tallest statue in the world? Kanchenjunga 8586m 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Kanchenjunga 8586m, is the third highest mountain in, the world) -> Kanchenjunga 8586m (2519ms) What is the tallest statue in the world? Kanchanjunga 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Kanchanjunga, is the third highest mountain in, the world) -> Kanchanjunga (2524ms) What is the tallest statue in the world? two countries 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (two countries, is the third-highest mountain in, the world) -> two countries (2474ms) What is the tallest statue in the world? peaks 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (peaks, is the highest mountain in, the world) -> peaks (2524ms) What is the tallest statue in the world? Nepal Manaslu 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Nepal Manaslu, is the eighth highest mountain in, the world) -> Nepal Manaslu (2437ms) What is the tallest statue in the world? the Peak XV 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (the Peak XV, is the highest mountain in, the world) -> the Peak XV (2519ms) What is the tallest statue in the world? Tingri County 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Tingri County, is the highest mountain in, the world) -> Tingri County (2492ms) What is the tallest statue in the world? snow ? 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (snow ?, is the highest mountain range in, the world) -> snow ? (2492ms) What is the tallest statue in the world? Santa Marta 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Santa Marta, is the highest coastal mountain range in, the world) -> Santa Marta (2519ms) What is the tallest statue in the world? Nepal 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Nepal, is the seventh highest mountain in, the world) -> Nepal (2524ms) What is the tallest statue in the world? user 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (user, is the highest mountain in, the world) -> user (2492ms) What is the tallest statue in the world? Makalu Makalu 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Makalu Makalu, is the fifth highest mountain in, the world) -> Makalu Makalu (2514ms) What is the tallest statue in the world? Nanga Parbat 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Nanga Parbat, is the ninth highest mountain in, the world) -> Nanga Parbat (2509ms) What is the tallest statue in the world? Shishapangma 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Shishapangma, is the 14th highest mountain in, the world) -> Shishapangma (2509ms) What is the tallest statue in the world? The Khumbu Valley 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (The Khumbu Valley, is the highest mountain in, the world) -> The Khumbu Valley (2509ms) What is the tallest statue in the world? The mighty 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (The mighty, is the highest mountains in, the world) -> The mighty (2519ms) What is the tallest statue in the world? Himalayas 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Himalayas, are the highest mountains in, the world) -> Himalayas (2509ms) What is the tallest statue in the world? ?Mountain 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (?Mountain, is the eighth highest mountain in, the world) -> ?Mountain (2509ms) What is the tallest statue in the world? Cho Oyu Cho Oyu 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Cho Oyu Cho Oyu, is the sixth highest mountain in, the world) -> Cho Oyu Cho Oyu (2437ms) What is the tallest statue in the world? Makalu 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Makalu, is the fifth highest mountain in, the world) -> Makalu (2474ms) What is the tallest statue in the world? The Sierra Nevada 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (The Sierra Nevada, is the highest coastal mountain in, the world) -> The Sierra Nevada (2514ms) What is the tallest statue in the world? Aconcagua 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Aconcagua, is the highest mountain in, the world) -> Aconcagua (2514ms) What is the tallest statue in the world? the Andes 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (the Andes, are the highest mountains in, the world) -> the Andes (2524ms) What is the tallest statue in the world? The Andes 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (The Andes, is the second highest mountain range in, the world) -> The Andes (2509ms) What is the tallest statue in the world? Mount Kilimanjaro 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Mount Kilimanjaro, is the fourth highest mountain in, the world) -> Mount Kilimanjaro (2524ms) What is the tallest statue in the world? Everest Mount Everest 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Everest Mount Everest, is the highest mountain in, the world) -> Everest Mount Everest (2519ms) What is the tallest statue in the world? Lamlam 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Lamlam, is arguably the highest mountain in, the world) -> Lamlam (2509ms) What is the tallest statue in the world? May Mount Everest 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (May Mount Everest, is the highest mountain in, the world) -> May Mount Everest (2474ms) What is the tallest statue in the world? 29 ,035 feet 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (29 ,035 feet, is the highest mountain in, the world) -> 29 ,035 feet (2519ms) What is the tallest statue in the world? Kangchenjunga 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Kangchenjunga, is the third highest mountain in, the world) -> Kangchenjunga (2514ms) What is the tallest statue in the world? Cho Oyu 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Cho Oyu, is the sixth highest mountain in, the world) -> Cho Oyu (2519ms) What is the tallest statue in the world? Mount Dhaulagiri 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Mount Dhaulagiri, is the seventh highest mountain in, the world) -> Mount Dhaulagiri (2514ms) What is the tallest statue in the world? 8848 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (8848, is the highest mountain in, the world) -> 8848 (2514ms) What is the tallest statue in the world? Karjiang 0.666666666663 What is the tallest statue in the world? -> $x: ($x, be highest mountain in, world) -> (Karjiang, is the fourth highest unclimbed mountain in, the world) -> Karjiang (2519ms) What is the tallest statue in the world? The Empire State Building 0.5555555555530001 What is the tallest statue in the world? -> $x: ($x, be first building in, world) -> (The Empire State Building, was the first building in, the world) -> The Empire State Building (2529ms) What is the tallest statue in the world? the Ismaili Imamat 0.5555555555530001 What is the tallest statue in the world? -> $x: ($x, be first building in, world) -> (the Ismaili Imamat, is the first building in, the world) -> the Ismaili Imamat (2529ms) What is the tallest statue in the world? the Capitol 0.5555555555530001 What is the tallest statue in the world? -> $x: ($x, be first building in, world) -> (the Capitol, was the first public building in, the New World) -> the Capitol (2529ms) What is the tallest statue in the world? The Bourse 0.5555555555530001 What is the tallest statue in the world? -> $x: ($x, be first building in, world) -> (The Bourse, was the first building in, the world) -> The Bourse (2529ms) What is the tallest statue in the world? Strata 0.5555555555530001 What is the tallest statue in the world? -> $x: ($x, be first building in, world) -> (Strata, is the first building in, the world) -> Strata (2529ms) What is the tallest statue in the world? The Savoy Theatre 0.5555555555530001 What is the tallest statue in the world? -> $x: ($x, be first building in, world) -> (The Savoy Theatre, was the first public building in, the world) -> The Savoy Theatre (2529ms) What is the tallest statue in the world? Notre Dame 0.5555555555530001 What is the tallest statue in the world? -> $x: ($x, be first building in, world) -> (Notre Dame, was the first building in, the world) -> Notre Dame (2529ms) What is the tallest statue in the world? The Green Business Centre 0.5555555555530001 What is the tallest statue in the world? -> $x: ($x, be first building in, world) -> (The Green Business Centre, is the first building in, the world) -> The Green Business Centre (2529ms) What is the tallest statue in the world? Italy 0.44444444444200004 What is the tallest statue in the world? -> $x: ($x, be tallest waterfall in, world) -> (Italy, is the tallest man-made waterfall in, the world) -> Italy (2529ms) What is the tallest statue in the world? Venezuela 0.44444444444200004 What is the tallest statue in the world? -> $x: ($x, be tallest waterfall in, world) -> (Venezuela, is the tallest waterfall in, the world) -> Venezuela (2529ms) What is the tallest statue in the world? Angel Falls 0.44444444444200004 What is the tallest statue in the world? -> $x: ($x, be tallest waterfall in, world) -> (Angel Falls, is the tallest waterfall in, the world) -> Angel Falls (2529ms) What is the tallest statue in the world? The Chrysler Building 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (The Chrysler Building, was the tallest building in, the world) -> The Chrysler Building (2546ms) What is the tallest statue in the world? the background 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the background, is the tallest building in, the world) -> the background (2551ms) What is the tallest statue in the world? the World Trade Center 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the World Trade Center, was the tallest building in, the world) -> the World Trade Center (2534ms) What is the tallest statue in the world? the Singer Building 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the Singer Building, was the tallest building in, the world) -> the Singer Building (2551ms) What is the tallest statue in the world? ?The Burj Khalifa 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (?The Burj Khalifa, is the tallest building in, the world) -> ?The Burj Khalifa (2533ms) What is the tallest statue in the world? Paris 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Paris, was the tallest building in, the world) -> Paris (2546ms) What is the tallest statue in the world? the Burj Dubai Tower 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the Burj Dubai Tower, is the tallest building in, the world) -> the Burj Dubai Tower (2551ms) What is the tallest statue in the world? the tower 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the tower, was the tallest building in, the world) -> the tower (2538ms) What is the tallest statue in the world? Chicago?s Sears Tower 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Chicago?s Sears Tower, was the tallest building in, the world) -> Chicago?s Sears Tower (2546ms) What is the tallest statue in the world? Tall 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Tall, is the Tallest Building in, the World) -> Tall (2554ms) What is the tallest statue in the world? The spire tower 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (The spire tower, will be tallest building in, the world) -> The spire tower (2533ms) What is the tallest statue in the world? the 52-floor skyscraper 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the 52-floor skyscraper, was the tallest building in, the world) -> the 52-floor skyscraper (2542ms) What is the tallest statue in the world? Lower Manhattan 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Lower Manhattan, was the tallest building in, the world) -> Lower Manhattan (2542ms) What is the tallest statue in the world? Toronto 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Toronto, was the tallest building in, the world) -> Toronto (2554ms) What is the tallest statue in the world? The Eiffel Tower 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (The Eiffel Tower, was the tallest building in, the world) -> The Eiffel Tower (2546ms) What is the tallest statue in the world? 102 stories 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (102 stories, was the tallest building in, the world) -> 102 stories (2542ms) What is the tallest statue in the world? the question 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the question, is the tallest building in, the world) -> the question (2546ms) What is the tallest statue in the world? the pyramid 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the pyramid, was the tallest building in, the world) -> the pyramid (2546ms) What is the tallest statue in the world? Taiwan 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Taiwan, was the tallest building in, the world) -> Taiwan (2551ms) What is the tallest statue in the world? Oleviste Kirik 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Oleviste Kirik, was the tallest building in, the world) -> Oleviste Kirik (2538ms) What is the tallest statue in the world? 2004 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (2004, is the tallest building in, the world) -> 2004 (2542ms) What is the tallest statue in the world? 826 metres 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (826 metres, is the tallest building in, the world) -> 826 metres (2538ms) What is the tallest statue in the world? the form 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the form, is the tallest building in, the world) -> the form (2554ms) What is the tallest statue in the world? Taipei 101 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Taipei 101, was the tallest building in, the world) -> Taipei 101 (2538ms) What is the tallest statue in the world? the pagoda 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the pagoda, was the tallest building in, the world) -> the pagoda (2538ms) What is the tallest statue in the world? Burj Kalifa 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Burj Kalifa, is the tallest building in, the world) -> Burj Kalifa (2538ms) What is the tallest statue in the world? Burj Khalifa 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Burj Khalifa, is tallest building in, the world) -> Burj Khalifa (2550ms) What is the tallest statue in the world? New York 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (New York, was the tallest building in, the world) -> New York (2529ms) What is the tallest statue in the world? The Sears Tower 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (The Sears Tower, was the tallest building in, the world) -> The Sears Tower (2533ms) What is the tallest statue in the world? The Cathedral 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (The Cathedral, was the tallest building in, the world) -> The Cathedral (2542ms) What is the tallest statue in the world? City Hall 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (City Hall, was the tallest building in, the world) -> City Hall (2538ms) What is the tallest statue in the world? Giza 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Giza, was the tallest building in, the world) -> Giza (2554ms) What is the tallest statue in the world? The Burj 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (The Burj, is the tallest building in, the world) -> The Burj (2547ms) What is the tallest statue in the world? one time 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (one time, was the tallest building in, the world) -> one time (2554ms) What is the tallest statue in the world? the Great Pyramid 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the Great Pyramid, was the tallest building in, the world) -> the Great Pyramid (2551ms) What is the tallest statue in the world? CN Tower 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (CN Tower, is the tallest building in, the world) -> CN Tower (2534ms) What is the tallest statue in the world? the Eiffel Tower 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the Eiffel Tower, was the tallest building in, the world) -> the Eiffel Tower (2538ms) What is the tallest statue in the world? 2. Lublianka 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (2. Lublianka, is the tallest building in, the world) -> 2. Lublianka (2534ms) What is the tallest statue in the world? The Washington Monument 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (The Washington Monument, was the tallest building in, the world) -> The Washington Monument (2550ms) What is the tallest statue in the world? the Chrysler 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the Chrysler, was the tallest building in, the world) -> the Chrysler (2538ms) What is the tallest statue in the world? 1931 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (1931, was the tallest building in, the world) -> 1931 (2538ms) What is the tallest statue in the world? a century 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (a century, was the tallest building in, the world) -> a century (2529ms) What is the tallest statue in the world? the Petronis Towers 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the Petronis Towers, were the tallest building in, the world) -> the Petronis Towers (2542ms) What is the tallest statue in the world? the Chrysler Building 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the Chrysler Building, was the tallest building in, the world) -> the Chrysler Building (2529ms) What is the tallest statue in the world? the destruction 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the destruction, was the tallest building in, the world) -> the destruction (2551ms) What is the tallest statue in the world? The Woolworth Building 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (The Woolworth Building, was the tallest building in, the world) -> The Woolworth Building (2546ms) What is the tallest statue in the world? Chicago 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Chicago, is the tallest building in, the world) -> Chicago (2551ms) What is the tallest statue in the world? Taipei 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Taipei, was the tallest building in, the world) -> Taipei (2551ms) What is the tallest statue in the world? New York City 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (New York City, was the tallest building in, the world) -> New York City (2542ms) What is the tallest statue in the world? Burj Dubai 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Burj Dubai, is the tallest building in, the world) -> Burj Dubai (2546ms) What is the tallest statue in the world? the Sears tower 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the Sears tower, was the tallest building in, the world) -> the Sears tower (2554ms) What is the tallest statue in the world? The Burj Khalifa 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (The Burj Khalifa, is the tallest building in, the world) -> The Burj Khalifa (2554ms) What is the tallest statue in the world? worship 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (worship, was the tallest building in, the world) -> worship (2542ms) What is the tallest statue in the world? Dubai 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Dubai, is the tallest building in, the world) -> Dubai (2546ms) What is the tallest statue in the world? Jeanne Gang 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Jeanne Gang, is the tallest building in, the world) -> Jeanne Gang (2542ms) What is the tallest statue in the world? Taipei 101 Taipei 101 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Taipei 101 Taipei 101, is the tallest building in, the world) -> Taipei 101 Taipei 101 (2533ms) What is the tallest statue in the world? The Burj Khalifa tower 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (The Burj Khalifa tower, is the tallest building in, the world) -> The Burj Khalifa tower (2554ms) What is the tallest statue in the world? the cathedral 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the cathedral, was the tallest building in, the world) -> the cathedral (2538ms) What is the tallest statue in the world? The Park Row Building 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (The Park Row Building, was the tallest building in, the world) -> The Park Row Building (2546ms) What is the tallest statue in the world? 305 meters 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (305 meters, was the tallest building in, the world) -> 305 meters (2554ms) What is the tallest statue in the world? D.C. 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (D.C., was the tallest building in, the world) -> D.C. (2546ms) What is the tallest statue in the world? the Fuller Building 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the Fuller Building, was the tallest building in, the world) -> the Fuller Building (2551ms) What is the tallest statue in the world? Malaysia 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Malaysia, is the tallest building in, the world) -> Malaysia (2546ms) What is the tallest statue in the world? The Burj Dubai 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (The Burj Dubai, is the tallest building in, the world) -> The Burj Dubai (2542ms) What is the tallest statue in the world? Taipei 101 building 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Taipei 101 building, was the tallest building in, the world) -> Taipei 101 building (2542ms) What is the tallest statue in the world? 1889 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (1889, was the tallest building in, the world) -> 1889 (2538ms) What is the tallest statue in the world? the building 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the building, was the tallest building in, the world) -> the building (2534ms) What is the tallest statue in the world? the construction 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the construction, was the tallest building in, the world) -> the construction (2534ms) What is the tallest statue in the world? Library What 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Library What, is the tallest building in, the world) -> Library What (2550ms) What is the tallest statue in the world? The Art Deco tower 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (The Art Deco tower, was the tallest building in, the world) -> The Art Deco tower (2546ms) What is the tallest statue in the world? the Petronas Twin Towers 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the Petronas Twin Towers, was the tallest building in, the world) -> the Petronas Twin Towers (2538ms) What is the tallest statue in the world? Egypt 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (Egypt, was the tallest building in, the world) -> Egypt (2542ms) What is the tallest statue in the world? the early 20th century 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the early 20th century, was the tallest building in, the world) -> the early 20th century (2542ms) What is the tallest statue in the world? the tallest building 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the tallest building, was the tallest building in, the world) -> the tallest building (2529ms) What is the tallest statue in the world? a close 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (a close, was the tallest building in, the world) -> a close (2546ms) What is the tallest statue in the world? the XVI century 0.444444444441 What is the tallest statue in the world? -> $x: ($x, be tallest building in, world) -> (the XVI century, was the tallest building in, the world) -> the XVI century (2533ms) What is the tallest statue in the world? The American soldiers 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (The American soldiers, are the tallest in, the world) -> The American soldiers (2567ms) What is the tallest statue in the world? Aqua 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be third tallest building in, world) -> (Aqua, is the third tallest building in, the world) -> Aqua (2565ms) What is the tallest statue in the world? The Dutch 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (The Dutch, are the tallest people in, the world) -> The Dutch (2557ms) What is the tallest statue in the world? the Washington Monument 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest structure in, world) -> (the Washington Monument, was the tallest structure in, the world) -> the Washington Monument (2560ms) What is the tallest statue in the world? Americans 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (Americans, were the tallest people in, the world) -> Americans (2572ms) What is the tallest statue in the world? Tokyo Sky Tree 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest tower in, world) -> (Tokyo Sky Tree, is the tallest tower in, the world) -> Tokyo Sky Tree (2554ms) What is the tallest statue in the world? the pyramids 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest structure in, world) -> (the pyramids, were the tallest man-made structure in, the world) -> the pyramids (2570ms) What is the tallest statue in the world? Lincoln Cathedral 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest structure in, world) -> (Lincoln Cathedral, was the tallest structure in, the world) -> Lincoln Cathedral (2575ms) What is the tallest statue in the world? the Bicentennial Tree lookout 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (the Bicentennial Tree lookout, is the tallest in, the world) -> the Bicentennial Tree lookout (2562ms) What is the tallest statue in the world? The landmark CN Tower 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (The landmark CN Tower, is the tallest structure in, the world) -> The landmark CN Tower (2572ms) What is the tallest statue in the world? futuristic Kuala Lumpur 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (futuristic Kuala Lumpur, are the tallest in, the world) -> futuristic Kuala Lumpur (2557ms) What is the tallest statue in the world? The left one 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest of, world) -> (The left one, is the tallest of, the world) -> The left one (2574ms) What is the tallest statue in the world? Khufu 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest structure in, world) -> (Khufu, was the tallest structure in, the world) -> Khufu (2570ms) What is the tallest statue in the world? Tree 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest tree in, world) -> (Tree, is the sixth tallest tree in, the world) -> Tree (2560ms) What is the tallest statue in the world? Dutch people 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (Dutch people, are the tallest in, the world) -> Dutch people (2575ms) What is the tallest statue in the world? ?If Germans 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (?If Germans, were the tallest people in, the world) -> ?If Germans (2570ms) What is the tallest statue in the world? evergreen conifer 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest tree in, world) -> (evergreen conifer, is the tallest tree in, the world) -> evergreen conifer (2574ms) What is the tallest statue in the world? 2,717 feet 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest structure in, world) -> (2,717 feet, is the tallest manmade structure in, the world) -> 2,717 feet (2575ms) What is the tallest statue in the world? Montreal 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest tower in, world) -> (Montreal, is the tallest inclined tower in, the world) -> Montreal (2565ms) What is the tallest statue in the world? a former Almohad minaret 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest tower in, world) -> (a former Almohad minaret, was the tallest tower in, the world) -> a former Almohad minaret (2567ms) What is the tallest statue in the world? the 33-story hotel 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (the 33-story hotel, was the tallest in, the world) -> the 33-story hotel (2562ms) What is the tallest statue in the world? the most iconic buildings 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (the most iconic buildings, were the tallest in, the world) -> the most iconic buildings (2575ms) What is the tallest statue in the world? the designs 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest structure in, world) -> (the designs, would be the tallest structures in, the world) -> the designs (2575ms) What is the tallest statue in the world? American men 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (American men, were the tallest in, the world) -> American men (2574ms) What is the tallest statue in the world? The Redwood 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest tree in, world) -> (The Redwood, is the tallest tree in, the world) -> The Redwood (2562ms) What is the tallest statue in the world? the Empire State Building 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (the Empire State Building, was the tallest in, the world) -> the Empire State Building (2567ms) What is the tallest statue in the world? which mountain 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (which mountain, is the tallest in, the world) -> which mountain (2567ms) What is the tallest statue in the world? the Majagual Forest 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (the Majagual Forest, are the tallest in, the world) -> the Majagual Forest (2573ms) What is the tallest statue in the world? 625 feet 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (625 feet, was the tallest in, the world) -> 625 feet (2567ms) What is the tallest statue in the world? the Petronas towers 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (the Petronas towers, were the tallest buildings in, the world) -> the Petronas towers (2575ms) What is the tallest statue in the world? a height 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (a height, was the tallest in, the world) -> a height (2557ms) What is the tallest statue in the world? the Coast Redwoods 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest tree in, world) -> (the Coast Redwoods, are the tallest trees in, the world) -> the Coast Redwoods (2562ms) What is the tallest statue in the world? Karri 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest tree in, world) -> (Karri, is the third tallest tree in, the world) -> Karri (2574ms) What is the tallest statue in the world? only two years 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest structure in, world) -> (only two years, was the tallest structure in, the world) -> only two years (2562ms) What is the tallest statue in the world? The Petronas Towers 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest skyscraper in, world) -> (The Petronas Towers, were the tallest skyscrapers in, the world) -> The Petronas Towers (2569ms) What is the tallest statue in the world? The Jin Mao Tower 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be third tallest building in, world) -> (The Jin Mao Tower, is the third tallest building in, the world) -> The Jin Mao Tower (2572ms) What is the tallest statue in the world? the temple 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (the temple, is the tallest in, the whole world) -> the temple (2575ms) What is the tallest statue in the world? the Montreal Tower 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest tower in, world) -> (the Montreal Tower, is the tallest inclined tower in, the world) -> the Montreal Tower (2573ms) What is the tallest statue in the world? the Phra Pathom Chedi 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (the Phra Pathom Chedi, is the tallest in, the world) -> the Phra Pathom Chedi (2573ms) What is the tallest statue in the world? The temple tower 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (The temple tower, is the tallest in, the world) -> The temple tower (2557ms) What is the tallest statue in the world? California redwood 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest tree in, world) -> (California redwood, is the tallest tree in, the world) -> California redwood (2572ms) What is the tallest statue in the world? The monument 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest structure in, world) -> (The monument, was the tallest structure in, the world) -> The monument (2560ms) What is the tallest statue in the world? large chunks 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest structure in, world) -> (large chunks, had once been the tallest structures in, the world) -> large chunks (2575ms) What is the tallest statue in the world? the Burj Khalifa 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest tower in, world) -> (the Burj Khalifa, is the tallest tower in, the world) -> the Burj Khalifa (2575ms) What is the tallest statue in the world? Geneva 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (Geneva, is the tallest in, the world) -> Geneva (2569ms) What is the tallest statue in the world? ? Eucalyptus Tree Sap ? 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest tree in, world) -> (? Eucalyptus Tree Sap ?, Is the tallest tree in, the world) -> ? Eucalyptus Tree Sap ? (2560ms) What is the tallest statue in the world? parking planning 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest tower in, world) -> (parking planning, will be the tallest tower in, the world) -> parking planning (2557ms) What is the tallest statue in the world? the CN Tower 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (the CN Tower, was the tallest in, the world) -> the CN Tower (2572ms) What is the tallest statue in the world? Kingdom Centre 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest skyscraper in, world) -> (Kingdom Centre, is the tallest skyscraper in, the world) -> Kingdom Centre (2575ms) What is the tallest statue in the world? Jeddah 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest skyscraper in, world) -> (Jeddah, will be the tallest skyscraper in, the world) -> Jeddah (2570ms) What is the tallest statue in the world? the Sears Tower 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest skyscraper in, world) -> (the Sears Tower, is the ninth tallest skyscraper in, the world) -> the Sears Tower (2560ms) What is the tallest statue in the world? The giraffe 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (The giraffe, is the tallest animal in, the world) -> The giraffe (2557ms) What is the tallest statue in the world? Q1 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest tower in, world) -> (Q1, is the tallest residential tower in, the world) -> Q1 (2560ms) What is the tallest statue in the world? 350ft Coastal Redwoods 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest tree in, world) -> (350ft Coastal Redwoods, are the tallest trees in, the world) -> 350ft Coastal Redwoods (2570ms) What is the tallest statue in the world? the new Burj Dubai 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest tower in, world) -> (the new Burj Dubai, is now the tallest tower in, the world) -> the new Burj Dubai (2575ms) What is the tallest statue in the world? France 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (France, was the tallest in, the world) -> France (2575ms) What is the tallest statue in the world? The cathedral 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (The cathedral, was the tallest structure in, the world) -> The cathedral (2574ms) What is the tallest statue in the world? Milad tower 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest tower in, world) -> (Milad tower, is the fourth tallest tower in, the world) -> Milad tower (2573ms) What is the tallest statue in the world? The coastal redwoods 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest tree in, world) -> (The coastal redwoods, are the tallest trees in, the world) -> The coastal redwoods (2562ms) What is the tallest statue in the world? The Coast Redwood 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest tree in, world) -> (The Coast Redwood, is the tallest tree in, the world) -> The Coast Redwood (2574ms) What is the tallest statue in the world? the Tower 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest structure in, world) -> (the Tower, was the tallest man-made structure in, the world) -> the Tower (2573ms) What is the tallest statue in the world? Redwood trees 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest tree in, world) -> (Redwood trees, are the tallest trees in, the world) -> Redwood trees (2567ms) What is the tallest statue in the world? France travelers 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest structure in, world) -> (France travelers, was the tallest structure in, the world) -> France travelers (2575ms) What is the tallest statue in the world? a short time 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (a short time, was the tallest in, the world) -> a short time (2569ms) What is the tallest statue in the world? the monument 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest structure in, world) -> (the monument, was the tallest structure in, the world) -> the monument (2574ms) What is the tallest statue in the world? the mountain 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (the mountain, was the tallest in, the world) -> the mountain (2562ms) What is the tallest statue in the world? the Olympic Stadium 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest tower in, world) -> (the Olympic Stadium, is the tallest inclined tower in, the world) -> the Olympic Stadium (2574ms) What is the tallest statue in the world? Redwoods 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest tree in, world) -> (Redwoods, are the tallest trees in, the world) -> Redwoods (2570ms) What is the tallest statue in the world? the redwoods 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest tree in, world) -> (the redwoods, are the tallest trees in, the world) -> the redwoods (2569ms) What is the tallest statue in the world? 101 metres 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (101 metres, was the tallest in, the world) -> 101 metres (2575ms) What is the tallest statue in the world? the main square 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest structure in, world) -> (the main square, were once the tallest structures in, the world) -> the main square (2574ms) What is the tallest statue in the world? The CN Tower 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest tower in, world) -> (The CN Tower, is the tallest tower in, the world) -> The CN Tower (2575ms) What is the tallest statue in the world? The Great Pyramid 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest structure in, world) -> (The Great Pyramid, was the tallest structure in, the world) -> The Great Pyramid (2572ms) What is the tallest statue in the world? World One 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest tower in, world) -> (World One, will be the tallest residential tower in, the world) -> World One (2557ms) What is the tallest statue in the world? Shanghai 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be third tallest building in, world) -> (Shanghai, is the third tallest building in, the world) -> Shanghai (2560ms) What is the tallest statue in the world? The tower 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest tower in, world) -> (The tower, will be the second tallest tower in, the world) -> The tower (2569ms) What is the tallest statue in the world? The obelisk 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest structure in, world) -> (The obelisk, was the tallest man-made structure in, the world) -> The obelisk (2565ms) What is the tallest statue in the world? 450 feet 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (450 feet, is the tallest in, the world) -> 450 feet (2557ms) What is the tallest statue in the world? Bamboo 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (Bamboo, is the tallest grass in, the World) -> Bamboo (2573ms) What is the tallest statue in the world? Essentials 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (Essentials, are the tallest in, the world) -> Essentials (2562ms) What is the tallest statue in the world? the Petrona towers 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (the Petrona towers, were the tallest in, the world) -> the Petrona towers (2573ms) What is the tallest statue in the world? 4,000-ft sea cliffs 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (4,000-ft sea cliffs, are the tallest in, the world) -> 4,000-ft sea cliffs (2562ms) What is the tallest statue in the world? Gilgit-Bultistan 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest of, world) -> (Gilgit-Bultistan, is the 11th tallest mountain of, the world) -> Gilgit-Bultistan (2560ms) What is the tallest statue in the world? NYC 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest skyscraper in, world) -> (NYC, was once the tallest skyscraper in, the world) -> NYC (2575ms) What is the tallest statue in the world? 4 Responses 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest skyscraper in, world) -> (4 Responses, is the tallest skyscraper in, the world) -> 4 Responses (2567ms) What is the tallest statue in the world? The 210-meter minaret 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (The 210-meter minaret, is the tallest in, the world) -> The 210-meter minaret (2573ms) What is the tallest statue in the world? Willis Tower 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be third tallest building in, world) -> (Willis Tower, is the third tallest building in, the world) -> Willis Tower (2557ms) What is the tallest statue in the world? the blue-gum , 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest tree in, world) -> (the blue-gum ,, is the tallest man-planted tree in, the world) -> the blue-gum , (2574ms) What is the tallest statue in the world? The skyscraper 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest skyscraper in, world) -> (The skyscraper, will be the tallest skyscraper in, the world) -> The skyscraper (2562ms) What is the tallest statue in the world? ?If Germans 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (?If Germans, were the tallest people in, the world) -> ?If Germans (2567ms) What is the tallest statue in the world? Muir Woods 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest tree in, world) -> (Muir Woods, are the tallest trees in, the world) -> Muir Woods (2573ms) What is the tallest statue in the world? The Tokyo Sky Tree 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest tower in, world) -> (The Tokyo Sky Tree, is currently the tallest tower in, the world) -> The Tokyo Sky Tree (2565ms) What is the tallest statue in the world? The Irish Wolfhound 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (The Irish Wolfhound, is the tallest dog in, the world) -> The Irish Wolfhound (2562ms) What is the tallest statue in the world? the Space Needle 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest tower in, world) -> (the Space Needle, once was the tallest tower in, the world) -> the Space Needle (2569ms) What is the tallest statue in the world? 212 feet 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest structure in, world) -> (212 feet, is the tallest ancient structure in, the New World) -> 212 feet (2572ms) What is the tallest statue in the world? 2008 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest skyscraper in, world) -> (2008, will be the tallest skyscraper in, the world) -> 2008 (2575ms) What is the tallest statue in the world? The 553-m control tower 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (The 553-m control tower, is the tallest in, the world) -> The 553-m control tower (2567ms) What is the tallest statue in the world? The minaret 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (The minaret, is the tallest in, the world) -> The minaret (2572ms) What is the tallest statue in the world? The coastal redwood 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest tree in, world) -> (The coastal redwood, is the tallest tree species in, the world) -> The coastal redwood (2570ms) What is the tallest statue in the world? The towers 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (The towers, were the tallest in, the world) -> The towers (2562ms) What is the tallest statue in the world? The monument rising 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (The monument rising, is tallest monument in, the world) -> The monument rising (2572ms) What is the tallest statue in the world? The new one 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest tower in, world) -> (The new one, will be the tallest tower in, the world) -> The new one (2567ms) What is the tallest statue in the world? The lighthouse 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest structure in, world) -> (The lighthouse, was the tallest structure in, the ancient world) -> The lighthouse (2554ms) What is the tallest statue in the world? The Ferris wheel 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (The Ferris wheel, is the tallest in, the world) -> The Ferris wheel (2567ms) What is the tallest statue in the world? Merdeka Square 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest in, world) -> (Merdeka Square, is the tallest in, the world) -> Merdeka Square (2567ms) What is the tallest statue in the world? Milad Tower 0.333333333331 What is the tallest statue in the world? -> $x: ($x, be tallest tower in, world) -> (Milad Tower, is the fiveth tallest tower in, the world) -> Milad Tower (2567ms) What is a stratocaster? The Facelift -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (The Facelift, has been developed to fit, Stratocaster ?) -> The Facelift (1229ms) What is a stratocaster? quite small -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (quite small, is carved with, a Stratocaster) -> quite small (1469ms) What is a stratocaster? the exact same tools -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (the exact same tools, can be used to talk about, Stratocasters) -> the exact same tools (1606ms) What is a stratocaster? The Violater -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (The Violater, is, an incredibly built Stratocaster) -> The Violater (1808ms) What is a stratocaster? The internet -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (The internet, is, the new Stratocaster) -> The internet (1808ms) What is a stratocaster? headstock -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (headstock, are made from, genuine Stratocaster wooden blanks) -> headstock (1606ms) What is a stratocaster? the Day One day -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (the Day One day, there was, this Fender Stratocaster) -> the Day One day (1622ms) What is a stratocaster? Fender -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (Fender, is introducing, a Blacktop Stratocaster HSH) -> Fender (1564ms) What is a stratocaster? Guitar -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (Guitar, is, a Fender Stratocaster) -> Guitar (1564ms) What is a stratocaster? The Jimi Hendrix Gibson -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (The Jimi Hendrix Gibson, Will be, a Stratocaster) -> The Jimi Hendrix Gibson (1469ms) What is a stratocaster? DAN PATLANSKY -0.0 What is a stratocaster? -> $x: ($x, do, stratocaster) -> (DAN PATLANSKY, can do with, a six-string Fender Stratocaster) -> DAN PATLANSKY (955ms) What is a stratocaster? electric guitar -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (electric guitar, is, the ubiquitous Fender Stratocaster) -> electric guitar (1521ms) What is a stratocaster? the most popular guitars -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (the most popular guitars, are, the Fender Stratocaster) -> the most popular guitars (1808ms) What is a stratocaster? The award -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (The award, is, an engraved Fender Stratocaster) -> The award (1521ms) What is a stratocaster? an outfit -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (an outfit, is tuning up, his stratocaster) -> an outfit (1564ms) What is a stratocaster? the end -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (the end, is on, a Stratocaster) -> the end (1230ms) What is a stratocaster? the first Van Halen record -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (the first Van Halen record, was, a 1959 Fender Stratocaster) -> the first Van Halen record (1622ms) What is a stratocaster? The most common guitars -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (The most common guitars, are, the Fender Stratocaster coil) -> The most common guitars (1521ms) What is a stratocaster? The bobbin -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (The bobbin, is quite large compared to, Stratocasters) -> The bobbin (1469ms) What is a stratocaster? Leo Fender -0.0 What is a stratocaster? -> $x: ($x, create, stratocaster) -> (Leo Fender, create, the Stratocaster) -> Leo Fender (955ms) What is a stratocaster? ?One day -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (?One day, there was, this Fender Stratocaster) -> ?One day (1564ms) What is a stratocaster? Barcus-Berry -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (Barcus-Berry, is like, the Fender Stratocaster) -> Barcus-Berry (1546ms) What is a stratocaster? the same 21-fret neck -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (the same 21-fret neck, was used by, Fender Stratocaster models) -> the same 21-fret neck (1622ms) What is a stratocaster? Jimi Hendrix -0.0 What is a stratocaster? -> $x: ($x, do, stratocaster) -> (Jimi Hendrix, used to do this with, his Fender Stratocasters) -> Jimi Hendrix (955ms) What is a stratocaster? Disciple KR -0.0 What is a stratocaster? -> $x: ($x, in, stratocaster) -> (Disciple KR, sent in, this righteous Fender Stratocaster) -> Disciple KR (871ms) What is a stratocaster? rel=shortlink -0.0 What is a stratocaster? -> $x: ($x, do, stratocaster) -> (rel=shortlink, can do with, a six-string Fender Stratocaster) -> rel=shortlink (955ms) What is a stratocaster? guitar pack -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (guitar pack, is ranging from, classic Fender Stratocaster) -> guitar pack (1546ms) What is a stratocaster? Featured artist -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (Featured artist, is, = StratocasterUK) -> Featured artist (1230ms) What is a stratocaster? the guitar player -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (the guitar player, was playing, a Fender Stratocaster) -> the guitar player (1521ms) What is a stratocaster? Dweezil -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (Dweezil, is holding, a burned Stratocaster) -> Dweezil (1808ms) What is a stratocaster? The first two guitar solos -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (The first two guitar solos, were played on, a Stratocaster) -> The first two guitar solos (1564ms) What is a stratocaster? Slowhand -0.0 What is a stratocaster? -> $x: ($x, in, stratocaster) -> (Slowhand, plugs in, his Stratocaster) -> Slowhand (871ms) What is a stratocaster? the company -0.0 What is a stratocaster? -> $x: ($x, create, stratocaster) -> (the company, created, the Telecaster and Stratocaster guitars) -> the company (955ms) What is a stratocaster? every other electric guitar -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (every other electric guitar, is a footnote to, the Stratocaster) -> every other electric guitar (1546ms) What is a stratocaster? the rhythm guitars -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (the rhythm guitars, were mostly played on, Stratocasters) -> the rhythm guitars (1230ms) What is a stratocaster? the popularity list -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (the popularity list, is, the Fender Stratocaster) -> the popularity list (1564ms) What is a stratocaster? the late '60s -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (the late '60s, were playing, Stratocasters) -> the late '60s (1230ms) What is a stratocaster? the Number One guitar -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (the Number One guitar, was, his most famous Stratocaster) -> the Number One guitar (1521ms) What is a stratocaster? 22 frets -0.0 What is a stratocaster? -> $x: ($x, in, stratocaster) -> (22 frets, included in, the Stratocaster) -> 22 frets (871ms) What is a stratocaster? Freddie Tavares -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (Freddie Tavares, has been manufactured since, The Stratocaster) -> Freddie Tavares (1564ms) What is a stratocaster? The black guitar -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (The black guitar, is definitely, a Fender Stratocaster) -> The black guitar (1521ms) What is a stratocaster? the top five -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (the top five, is, the 1996 Fender Stratocaster) -> the top five (1521ms) What is a stratocaster? Dimensions -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (Dimensions, Are For, A Fender Stratocaster Guitar) -> Dimensions (1622ms) What is a stratocaster? the day Bob Dylan -0.0 What is a stratocaster? -> $x: ($x, in, stratocaster) -> (the day Bob Dylan, plugged in, his Stratocaster) -> the day Bob Dylan (871ms) What is a stratocaster? the auction -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (the auction, was, a 1957 Fender Stratocaster) -> the auction (1469ms) What is a stratocaster? mass produced and famous -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (mass produced and famous, was, the Fender Stratocaster) -> mass produced and famous (1606ms) What is a stratocaster? the game -0.0 What is a stratocaster? -> $x: ($x, do, stratocaster) -> (the game, does, the Fender Stratocaster) -> the game (955ms) What is a stratocaster? The pinball machine -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (The pinball machine, was, a Fender Stratocaster guitar) -> The pinball machine (1469ms) What is a stratocaster? the electric guitars -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (the electric guitars, is, the Fender Stratocaster) -> the electric guitars (1808ms) What is a stratocaster? the instrument -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (the instrument, is either, a Fender Stratocaster) -> the instrument (1564ms) What is a stratocaster? the track -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (the track, was, a 1972 Fender Stratocaster) -> the track (1546ms) What is a stratocaster? The guitar -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (The guitar, was based on, Fender Stratocaster) -> The guitar (1622ms) What is a stratocaster? Squier Deluxe Hot Rails Stratocaster -0.0 What is a stratocaster? -> $x: ($x, found, stratocaster) -> (Squier Deluxe Hot Rails Stratocaster, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Squier%20Deluxe%20Hot%20Rails%20Stratocaster) -> Squier Deluxe Hot Rails Stratocaster (1230ms) What is a stratocaster? Stevie Ray -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (Stevie Ray, was well-known for playing, Stratocasters) -> Stevie Ray (1622ms) What is a stratocaster? red strat -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (red strat, is, my 1959 Stratocaster) -> red strat (1807ms) What is a stratocaster? The Musket -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (The Musket, was tested on, two different Stratocasters) -> The Musket (1622ms) What is a stratocaster? example -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (example, is based on, the Fender Stratocaster) -> example (1606ms) What is a stratocaster? the word -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (the word, was, ?Stratocaster ! ?) -> the word (1606ms) What is a stratocaster? The Broadcaster -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (The Broadcaster, was renamed, the Stratocaster) -> The Broadcaster (1808ms) What is a stratocaster? the most widely known guitar -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (the most widely known guitar, would be, the Fender Stratocaster) -> the most widely known guitar (1469ms) What is a stratocaster? date -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (date, is, the Fender Stratocaster) -> date (1546ms) What is a stratocaster? Dick Dale -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (Dick Dale, is, a prominent Stratocaster player) -> Dick Dale (1606ms) What is a stratocaster? Ike Willis -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (Ike Willis, is putting, his Fender Stratocaster) -> Ike Willis (1230ms) What is a stratocaster? choice -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (choice, has been, a Fender Stratocaster) -> choice (1546ms) What is a stratocaster? The Fantasy -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (The Fantasy, is a near perfect combination of, Stratocaster) -> The Fantasy (1622ms) What is a stratocaster? Holly -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (Holly, is reputed to be, the first Stratocaster) -> Holly (1606ms) What is a stratocaster? The pedal -0.0 What is a stratocaster? -> $x: ($x, be be, stratocaster) -> (The pedal, was tested on, two different Stratocaster setups) -> The pedal (1546ms) What is a stratocaster? beginners -0.111111111111 What is a stratocaster? -> $x: (stratocaster, be for, $x) -> (the Squier Stratocaster, is a great guitar for, beginners) -> beginners (1898ms) What is a stratocaster? greatness -0.111111111111 What is a stratocaster? -> $x: (stratocaster, be for, $x) -> (the Stratocaster, was poised for, greatness) -> greatness (1898ms) What is a stratocaster? sale -0.111111111111 What is a stratocaster? -> $x: (stratocaster, be for, $x) -> (collectible Stratocaster, is for, sale) -> sale (1898ms) What is a stratocaster? the money -0.111111111111 What is a stratocaster? -> $x: (stratocaster, be for, $x) -> (the Squier Stratocaster, is great value for, the money) -> the money (1898ms) What is a stratocaster? a Woman -0.111111111111 What is a stratocaster? -> $x: (stratocaster, be for, $x) -> (Stratocaster68 Stratocaster68, is a guy looking for, a Woman) -> a Woman (1909ms) What is a stratocaster? a jazz guitarist -0.111111111111 What is a stratocaster? -> $x: (stratocaster, be for, $x) -> (a Stratocaster, seems to be unusual for, a jazz guitarist) -> a jazz guitarist (1898ms) What is a stratocaster? the Private collection -0.111111111111 What is a stratocaster? -> $x: (stratocaster, be for, $x) -> (Model Fender Stratocaster, was made for, the Private collection) -> the Private collection (1898ms) What is a stratocaster? raffle participants -0.111111111111 What is a stratocaster? -> $x: ($x, can, stratocaster) -> (raffle participants, can win, a Fender Stratocaster) -> raffle participants (1898ms) What is a stratocaster? the most money -0.111111111111 What is a stratocaster? -> $x: (stratocaster, be for, $x) -> ('s Fender Stratocaster, was sold for, the most money) -> the most money (1898ms) What is a stratocaster? the crafty girl -0.111111111111 What is a stratocaster? -> $x: ($x, can, stratocaster) -> (the crafty girl, can knit, a stratocaster) -> the crafty girl (1898ms) What is a stratocaster? the dashboard lights -0.111111111111 What is a stratocaster? -> $x: (stratocaster, do, $x) -> (the Stratocaster, works as do, the dashboard lights) -> the dashboard lights (1898ms) What is a stratocaster? guitarists -0.111111111111 What is a stratocaster? -> $x: (stratocaster, be for, $x) -> (The Fender American Deluxe Stratocaster HSS, is for, guitarists) -> guitarists (1898ms) What is a stratocaster? Ritchie Blackmore -0.111111111111 What is a stratocaster? -> $x: (stratocaster, do, $x) -> (a Stratocaster, did, Ritchie Blackmore) -> Ritchie Blackmore (1808ms) What is a stratocaster? a record $ 497,500 -0.111111111111 What is a stratocaster? -> $x: (stratocaster, be for, $x) -> (His 1956 Fender Stratocaster, was sold for, a record $ 497,500) -> a record $ 497,500 (1898ms) What is a stratocaster? the pickguards -0.222222222222 What is a stratocaster? -> $x: ($x, contain, stratocaster) -> (the pickguards, contained on, the traditional stratocaster) -> the pickguards (1909ms) What is a stratocaster? the body -0.222222222223 What is a stratocaster? -> $x: ($x, be to, stratocaster) -> (the body, tends to be heavy than even, a USA Stratocaster) -> the body (1909ms) What is a stratocaster? Yoshihiko Satoh -0.222222222223 What is a stratocaster? -> $x: ($x, consist of, stratocaster) -> (Yoshihiko Satoh, consists of, 12 stratocaster necks) -> Yoshihiko Satoh (1909ms) What is a stratocaster? the transition -0.222222222223 What is a stratocaster? -> $x: (stratocaster, be about, $x) -> (Stratocaster history, is about, the transition) -> the transition (1909ms) What is a stratocaster? legends -0.222222222223 What is a stratocaster? -> $x: ($x, be to, stratocaster) -> (legends, could easily be compared to, the Fender Stratocaster) -> legends (1909ms) What is a stratocaster? appearance -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (Stratocaster, is quite similar in, appearance) -> appearance (1912ms) What is a stratocaster? the U.S. -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (The Robert Cray Custom Shop Stratocaster, is made in, the U.S.) -> the U.S. (1913ms) What is a stratocaster? Authorities Concept Scheme -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (Stratocaster, In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (1912ms) What is a stratocaster? The new American Standard -0.444444444444 What is a stratocaster? -> $x: ($x, leave, stratocaster) -> (The new American Standard, left-handed, Stratocaster guitars) -> The new American Standard (1913ms) What is a stratocaster? 2002 -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (these Stratocasters, was added in, 2002) -> 2002 (1915ms) What is a stratocaster? 2007 -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (the Limited Edition John Mayer Stratocaster, appeared in, 2007) -> 2007 (1913ms) What is a stratocaster? the making -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (no innocent Stratocasters, were injured in, the making) -> the making (1911ms) What is a stratocaster? love -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> ('70s Replica American Stratocaster, fell in, love) -> love (1914ms) What is a stratocaster? worn Lake Placid Blue -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (a 2009 Fender Stratocaster, finished in, worn Lake Placid Blue) -> worn Lake Placid Blue (1915ms) What is a stratocaster? March 2012 -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (the VG Stratocaster G-5, will be available in, March 2012) -> March 2012 (1915ms) What is a stratocaster? 1988 -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (the Eric Clapton Stratocaster, was launched only in, 1988) -> 1988 (1914ms) What is a stratocaster? retail stores -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (a blonde ?50s Mary Kaye Stratocaster, arrived in, retail stores) -> retail stores (1913ms) What is a stratocaster? black -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (Stratocaster, painted in, black) -> black (1912ms) What is a stratocaster? January 1994 -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (the Fender Stratocaster Guitar, went out in, January 1994) -> January 1994 (1911ms) What is a stratocaster? 2004 -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (?54 Anniversary Custom Fender Stratocaster, was built in, 2004) -> 2004 (1913ms) What is a stratocaster? yesterday -0.444444444444 What is a stratocaster? -> $x: ($x, get, stratocaster) -> (yesterday, got, a low-end ultra-budget Squier Stratocaster) -> yesterday (1913ms) What is a stratocaster? 1954 -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (The Fender Stratocaster, was released in, 1954) -> 1954 (1915ms) What is a stratocaster? spring 1954 -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (The Stratocaster, was first introduced in, spring 1954) -> spring 1954 (1911ms) What is a stratocaster? American Standard -0.444444444444 What is a stratocaster? -> $x: ($x, leave, stratocaster) -> (American Standard, Left, Handed Stratocaster Electric Guitar) -> American Standard (1913ms) What is a stratocaster? design -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (The Stratocaster, is indeed versatile yet so simple in, design) -> design (1914ms) What is a stratocaster? a classic sunburst finish -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (The VG Stratocaster, is available in, a classic sunburst finish) -> a classic sunburst finish (1912ms) What is a stratocaster? collaboration -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (The Stratocaster, was largely developed in, collaboration) -> collaboration (1913ms) What is a stratocaster? the raffle -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (a Fender Squire Stratocaster guitar, was won in, the raffle) -> the raffle (1912ms) What is a stratocaster? a Roland GK -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (The GK-Ready Stratocaster GC-1, builds in, a Roland GK) -> a Roland GK (1911ms) What is a stratocaster? 7 pounds -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (an authentic Fender Stratocaster, weighs in at about, 7 pounds) -> 7 pounds (1915ms) What is a stratocaster? honor -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (This Stratocaster, was made in, honor) -> honor (1914ms) What is a stratocaster? Guitar Hero -0.444444444444 What is a stratocaster? -> $x: ($x, get, stratocaster) -> (Guitar Hero, got his hands on, a real Stratocaster?and) -> Guitar Hero (1914ms) What is a stratocaster? Japan serial # E774974 -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (a Fender Stratocaster, made in, Japan serial # E774974) -> Japan serial # E774974 (1914ms) What is a stratocaster? production -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (the Stratocaster, has been in, production) -> production (1915ms) What is a stratocaster? 1990 -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (Fender Stratocaster, Inducted in, 1990) -> 1990 (1913ms) What is a stratocaster? 1956 -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (a Fender Stratocaster, made in, 1956) -> 1956 (1914ms) What is a stratocaster? a local pawnshop -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (a used Stratocaster, had caught his eye in, a local pawnshop) -> a local pawnshop (1913ms) What is a stratocaster? the world cant -0.444444444444 What is a stratocaster? -> $x: ($x, get, stratocaster) -> (the world cant, get enough of, the Fender Stratocaster) -> the world cant (1914ms) What is a stratocaster? Topical Terms Concept Scheme -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (Stratocaster, In Scheme, Topical Terms Concept Scheme) -> Topical Terms Concept Scheme (1911ms) What is a stratocaster? the middle -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (The Squier Stratocaster, sits right in, the middle) -> the middle (1915ms) What is a stratocaster? Korea brand new strings -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (Fender Stratocaster, made in, Korea brand new strings) -> Korea brand new strings (1914ms) What is a stratocaster? 1974 -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (Stratocaster* type guitars, was originally developed in, 1974) -> 1974 (1915ms) What is a stratocaster? July -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (the Monterey and Tribute Stratocasters, occurred in, July) -> July (1915ms) What is a stratocaster? Mexico -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (a Red Fender Stratocaster, was made in, Mexico) -> Mexico (1913ms) What is a stratocaster? the late 1960s -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (Fender Stratocaster models, manufactured in, the late 1960s) -> the late 1960s (1915ms) What is a stratocaster? partnership -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (Jim Root Stratocaster, is designed in, partnership) -> partnership (1913ms) What is a stratocaster? Dot Position Inlays -0.444444444444 What is a stratocaster? -> $x: ($x, get, stratocaster) -> (Dot Position Inlays, Get, Your Squire Standard Stratocaster) -> Dot Position Inlays (1912ms) What is a stratocaster? the 80s -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (the original 12-string Stratocaster model, released in, the 80s) -> the 80s (1912ms) What is a stratocaster? a range -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (This silver Stratocaster ring, is available in, a range) -> a range (1915ms) What is a stratocaster? early 1980 -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (This stratocaster model, was maybe made in, early 1980) -> early 1980 (1913ms) What is a stratocaster? Moscow -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (one Fender Stratocaster, was known to exist in, Moscow) -> Moscow (1913ms) What is a stratocaster? Notice -0.444444444444 What is a stratocaster? -> $x: ($x, get, stratocaster) -> (Notice, Get, Your Fender Jeff Beck Stratocaster Today) -> Notice (1914ms) What is a stratocaster? DuPont Duco colors -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (Stratocaster guitars, are available in, DuPont Duco colors) -> DuPont Duco colors (1912ms) What is a stratocaster? Case -0.444444444444 What is a stratocaster? -> $x: ($x, get, stratocaster) -> (Case, Get, Your Fender American Deluxe Stratocaster) -> Case (1911ms) What is a stratocaster? American Vintage 62 -0.444444444444 What is a stratocaster? -> $x: ($x, leave, stratocaster) -> (American Vintage 62, Left, Handed Stratocaster Electric Guitar) -> American Vintage 62 (1912ms) What is a stratocaster? 1962 -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (An amazing Pre-L Stratocaster, built in, 1962) -> 1962 (1914ms) What is a stratocaster? the 1960s -0.444444444444 What is a stratocaster? -> $x: (stratocaster, in in, $x) -> (The Stratocaster, really came in, the 1960s) -> the 1960s (1913ms) What is the richest country in the world? Barbados 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Barbados, is the 51st richest country in, the world) -> Barbados (958ms) What is the richest country in the world? the Vatican 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (the Vatican, is probably the richest country in, the world) -> the Vatican (958ms) What is the richest country in the world? Argentina 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Argentina, was the richest country in, the world) -> Argentina (1348ms) What is the richest country in the world? Great Britain 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Great Britain, was the richest country in, the world) -> Great Britain (1338ms) What is the richest country in the world? The U.S. 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (The U.S., is the richest country in, the world) -> The U.S. (1135ms) What is the richest country in the world? the USA 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (the USA, is the richest country in, the world) -> the USA (1153ms) What is the richest country in the world? 2000 Ireland 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (2000 Ireland, was the sixth-richest country in, the world) -> 2000 Ireland (1296ms) What is the richest country in the world? The Scandinavians 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (The Scandinavians, are the richest countries in, the world) -> The Scandinavians (818ms) What is the richest country in the world? the U.S. 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (the U.S., is the richest country in, the world) -> the U.S. (1258ms) What is the richest country in the world? Canada 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Canada, is the richest country in, the world) -> Canada (1258ms) What is the richest country in the world? Qatar 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Qatar, is the richest country in, the world) -> Qatar (1338ms) What is the richest country in the world? England 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (England, was already the richest country in, the world) -> England (1180ms) What is the richest country in the world? Kazakhstan 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Kazakhstan, is the second richest country in, the world) -> Kazakhstan (1348ms) What is the richest country in the world? up all 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (up all, probably is the richest country in, the world) -> up all (1045ms) What is the richest country in the world? Economy Austria 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Economy Austria, is the 12th richest country in, the world) -> Economy Austria (1045ms) What is the richest country in the world? the question 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (the question, is the richest country in, the world) -> the question (1135ms) What is the richest country in the world? Kuwait 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Kuwait, is the eleventh richest country in, the world) -> Kuwait (1338ms) What is the richest country in the world? the United States 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (the United States, is still the richest country in, the world) -> the United States (1180ms) What is the richest country in the world? EverQuest 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (EverQuest, is the 77th richest country in, the world) -> EverQuest (1135ms) What is the richest country in the world? the Soviet Union 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (the Soviet Union, is the richest country in, the world) -> the Soviet Union (1180ms) What is the richest country in the world? Austria 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Austria, is the 12th richest country in, the world) -> Austria (1338ms) What is the richest country in the world? The Dutch Republic 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (The Dutch Republic, was the richest country in, the World) -> The Dutch Republic (884ms) What is the richest country in the world? 2005 america 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (2005 america, is the richest country in, the world) -> 2005 america (1348ms) What is the richest country in the world? We?ve 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (We?ve, been the richest country in, the world) -> We?ve (1019ms) What is the richest country in the world? Russia 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Russia, was the richest country in, the world) -> Russia (1259ms) What is the richest country in the world? New Zealand 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (New Zealand, was the second richest country in, the world) -> New Zealand (1180ms) What is the richest country in the world? Singapore 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Singapore, is the third richest country in, the world) -> Singapore (1180ms) What is the richest country in the world? the nation 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (the nation, was the richest country in, the world) -> the nation (1297ms) What is the richest country in the world? The United States 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (The United States, is probably the richest country in, the world) -> The United States (1338ms) What is the richest country in the world? Britain 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Britain, was the richest country in, the world) -> Britain (1338ms) What is the richest country in the world? Brazil 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Brazil, is probably the richest country in, the world) -> Brazil (958ms) What is the richest country in the world? China 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (China, is the second richest country in, the world) -> China (1297ms) What is the richest country in the world? amerca 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (amerca, is the richest country in, the world) -> amerca (1348ms) What is the richest country in the world? America 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (America, is the richest country in, the world but people) -> America (1338ms) What is the richest country in the world? Australia 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Australia, is the richest country in, the world) -> Australia (1259ms) What is the richest country in the world? Luxembourg 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Luxembourg, was the richest country in, the world) -> Luxembourg (1259ms) What is the richest country in the world? Congo 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Congo, is the richest country in, the world) -> Congo (1338ms) What is the richest country in the world? Bermuda 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Bermuda, is the richest country in, the world) -> Bermuda (1297ms) What is the richest country in the world? The UAE 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (The UAE, is the second richest country in, the world) -> The UAE (958ms) What is the richest country in the world? The Vatican 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (The Vatican, is the richest country in, the world) -> The Vatican (1153ms) What is the richest country in the world? Nepal 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Nepal, is a second richest country in, the world) -> Nepal (1296ms) What is the richest country in the world? the UK 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (the UK, is the fifth richest country in, the world) -> the UK (1348ms) What is the richest country in the world? The USA 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (The USA, IS the richest country in, the world) -> The USA (1180ms) What is the richest country in the world? lux 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (lux, is the richest country in, the world) -> lux (1297ms) What is the richest country in the world? Norway 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Norway, is the third richest country in, the world) -> Norway (1348ms) What is the richest country in the world? the 20th century America 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (the 20th century America, was the richest country in, the world) -> the 20th century America (1338ms) What is the richest country in the world? U.A.E 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (U.A.E, is richest country in, the world) -> U.A.E (819ms) What is the richest country in the world? Haiti 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Haiti, was the richest country in, the world) -> Haiti (1019ms) What is the richest country in the world? India 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (India, is the richest country in, the world) -> India (1348ms) What is the richest country in the world? Japan 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Japan, is the third richest country in, the world) -> Japan (1135ms) What is the richest country in the world? the US today 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (the US today, is the richest country in, the world) -> the US today (958ms) What is the richest country in the world? Scotland 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Scotland, would be the sixth richest country in, the world) -> Scotland (1153ms) What is the richest country in the world? Amercia 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Amercia, is the richest country in, the world) -> Amercia (1338ms) What is the richest country in the world? Iceland 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Iceland, is the 5th richest country in, the world) -> Iceland (1019ms) What is the richest country in the world? Britain today 2.777777777765 What is the richest country in the world? -> $x: ($x, be richest country in, world) -> (Britain today, may be the fourth richest country in, the world) -> Britain today (1019ms) What is the richest country in the world? Baghdad 2.444444444435 What is the richest country in the world? -> $x: ($x, be richest city in, world) -> (Baghdad, was the richest city in, the world) -> Baghdad (1348ms) What is the richest country in the world? the city 2.444444444435 What is the richest country in the world? -> $x: ($x, be richest city in, world) -> (the city, is the 10th richest city in, the world) -> the city (1349ms) What is the richest country in the world? Abu Dhabi 2.444444444435 What is the richest country in the world? -> $x: ($x, be richest city in, world) -> (Abu Dhabi, is the richest city in, the world) -> Abu Dhabi (1349ms) What is the richest country in the world? London 2.444444444435 What is the richest country in the world? -> $x: ($x, be richest city in, world) -> (London, is the sixth richest city in, the world) -> London (1349ms) What is the richest country in the world? New York city 2.444444444435 What is the richest country in the world? -> $x: ($x, be richest city in, world) -> (New York city, is the richest city in, the world) -> New York city (1348ms) What is the richest country in the world? Melbourne 2.444444444435 What is the richest country in the world? -> $x: ($x, be richest city in, world) -> (Melbourne, was the richest city in, the world) -> Melbourne (1349ms) What is the richest country in the world? Sao Paulo 2.444444444435 What is the richest country in the world? -> $x: ($x, be richest city in, world) -> (Sao Paulo, is the 10th richest city in, the world) -> Sao Paulo (1349ms) What is the richest country in the world? Timbuktu 2.444444444435 What is the richest country in the world? -> $x: ($x, be richest city in, world) -> (Timbuktu, was the richest city in, the world) -> Timbuktu (1348ms) What is the richest country in the world? S?o Paulo 2.444444444435 What is the richest country in the world? -> $x: ($x, be richest city in, world) -> (S?o Paulo, is the 19th richest city in, the world) -> S?o Paulo (1348ms) What is the richest country in the world? Sao Paulo Brazil 2.444444444435 What is the richest country in the world? -> $x: ($x, be richest city in, world) -> (Sao Paulo Brazil, is the 19th richest city in, the world) -> Sao Paulo Brazil (1348ms) What is the richest country in the world? Philadelphia 2.444444444435 What is the richest country in the world? -> $x: ($x, be richest city in, world) -> (Philadelphia, was the richest city in, the world) -> Philadelphia (1348ms) What is the richest country in the world? THE BUZZ Abu Dhabi 2.444444444435 What is the richest country in the world? -> $x: ($x, be richest city in, world) -> (THE BUZZ Abu Dhabi, is the richest city in, the world) -> THE BUZZ Abu Dhabi (1349ms) What is the richest country in the world? Amsterdam 2.444444444435 What is the richest country in the world? -> $x: ($x, be richest city in, world) -> (Amsterdam, was the richest city in, world) -> Amsterdam (1349ms) What is the richest country in the world? Economy S?o Paulo 2.444444444435 What is the richest country in the world? -> $x: ($x, be richest city in, world) -> (Economy S?o Paulo, is the 10th richest city in, the world) -> Economy S?o Paulo (1349ms) What is the richest country in the world? Babylon 2.444444444435 What is the richest country in the world? -> $x: ($x, be richest city in, world) -> (Babylon, was the richest city in, the ancient world) -> Babylon (1349ms) What is the richest country in the world? 1750 2.333333333321 What is the richest country in the world? -> $x: ($x, be richest part of, world) -> (1750, was the richest part of, the world) -> 1750 (1349ms) What is the richest country in the world? Enlarge Today East Asia 2.333333333321 What is the richest country in the world? -> $x: ($x, be richest part of, world) -> (Enlarge Today East Asia, is the richest part of, the world) -> Enlarge Today East Asia (1350ms) What is the richest country in the world? ?The tropics 2.333333333321 What is the richest country in the world? -> $x: ($x, be richest part of, world) -> (?The tropics, are the richest part of, the world) -> ?The tropics (1349ms) What is the richest country in the world? Per? 2.333333333321 What is the richest country in the world? -> $x: ($x, be richest part of, world) -> (Per?, was the richest part of, the world) -> Per? (1349ms) What is the richest country in the world? Chester 0.666666666659 What is the richest country in the world? -> $x: ($x, be richest city in, britain) -> (Chester, is arguably the richest city in, Britain) -> Chester (1350ms) Who is Anubis? a roundhouse kick 0.44444444444 Who is Anubis? -> $x: (anubis, do, $x) -> (Anubis, did, a roundhouse kick) -> a roundhouse kick (955ms) Who is Anubis? a four claw combination attack 0.44444444444 Who is Anubis? -> $x: (anubis, do, $x) -> (Anubis, did, a four claw combination attack) -> a four claw combination attack (1012ms) Who is Anubis? cuddles 0.44444444444 Who is Anubis? -> $x: (anubis, do, $x) -> (Anubis, did get, cuddles) -> cuddles (955ms) Who is Anubis? a sketch 0.44444444444 Who is Anubis? -> $x: (anubis, do, $x) -> (Anubis, did, a sketch) -> a sketch (955ms) Who is Anubis? Han Xian 0.44444444444 Who is Anubis? -> $x: (anubis, do, $x) -> (? _lunar_anubis, did, Han Xian) -> Han Xian (955ms) Who is Anubis? Osiris/Andjety/Khentamenthes 0.44444444444 Who is Anubis? -> $x: (anubis, do, $x) -> (Horus/Anubis/Wepwawet, does for, Osiris/Andjety/Khentamenthes) -> Osiris/Andjety/Khentamenthes (955ms) Who is Anubis? various moves 0.44444444444 Who is Anubis? -> $x: (anubis, do, $x) -> (Anubis, did a bunch of, various moves) -> various moves (955ms) Who is Anubis? the lines 0.44444444444 Who is Anubis? -> $x: (anubis, do, $x) -> (* FireofAnubis, does, the lines) -> the lines (955ms) Who is Anubis? Osiris become king 0.44444444444 Who is Anubis? -> $x: (anubis, do, $x) -> (the god Anubis, did, Osiris become king) -> Osiris become king (955ms) Who is Anubis? House of Anubis -0.0 Who is Anubis? -> $x: ($x, find, anubis) -> (House of Anubis, can be found on Wikipedia at, http://en.wikipedia.org/wiki/House%20of%20Anubis) -> House of Anubis (1571ms) Who is Anubis? Het Huis Anubis -0.0 Who is Anubis? -> $x: ($x, found, anubis) -> (Het Huis Anubis, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Het%20Huis%20Anubis) -> Het Huis Anubis (3034ms) Who is Anubis? Christopher -0.0 Who is Anubis? -> $x: ($x, be of, anubis) -> (Christopher, was a successor of, Anubis , Hermes and Hercules) -> Christopher (1343ms) Who is Anubis? filho -0.0 Who is Anubis? -> $x: ($x, do, anubis) -> (filho, do verdadeiro, Anubis com uma mortal) -> filho (3038ms) Who is Anubis? Cornelis Johannes van Houten -0.0 Who is Anubis? -> $x: ($x, discover, anubis) -> (Cornelis Johannes van Houten, Astronomical objects discovered, 1912 Anubis) -> Cornelis Johannes van Houten (3034ms) Who is Anubis? Tom Gehrels -0.0 Who is Anubis? -> $x: ($x, discover, anubis) -> (Tom Gehrels, Astronomical objects discovered, 1912 Anubis) -> Tom Gehrels (1012ms) Who is Anubis? Heckenheinrich -0.0 Who is Anubis? -> $x: ($x, do, anubis) -> (Heckenheinrich, did, the Anubis guy) -> Heckenheinrich (1571ms) Who is Anubis? 2005 -0.0 Who is Anubis? -> $x: ($x, form, anubis) -> (2005, formed, Anubis Associates) -> 2005 (3034ms) Who is Anubis? the gravedigger -0.0 Who is Anubis? -> $x: ($x, be of, anubis) -> (the gravedigger, is also somewhat of, an Anubis character) -> the gravedigger (1308ms) Who is Anubis? Ti -0.0 Who is Anubis? -> $x: ($x, be of, anubis) -> (Ti, was a result of, the God , Anubis ,) -> Ti (1205ms) Who is Anubis? The statue -0.0 Who is Anubis? -> $x: ($x, be of, anubis) -> (The statue, is of, Anubis) -> The statue (1205ms) Who is Anubis? Layla -0.0 Who is Anubis? -> $x: ($x, be of, anubis) -> (Layla, is the daughter of, Anubis) -> Layla (1205ms) Who is Anubis? black -0.0 Who is Anubis? -> $x: ($x, be of, anubis) -> (black, was the color of, death and Anubis) -> black (1571ms) Who is Anubis? the other XD -0.0 Who is Anubis? -> $x: (anubis, be about, $x) -> (Anubis, was about to go to, the other XD) -> the other XD (3034ms) Who is Anubis? Data Design Interactive -0.0 Who is Anubis? -> $x: ($x, develop, anubis) -> (Data Design Interactive, Games Developed, Anubis II) -> Data Design Interactive (3034ms) Who is Anubis? Yugi and Tea -0.0 Who is Anubis? -> $x: ($x, find, anubis) -> (Yugi and Tea, find the tomb of, Anubis exhibit) -> Yugi and Tea (3034ms) Who is Anubis? Das Haus Anubis -0.0 Who is Anubis? -> $x: ($x, find, anubis) -> (Das Haus Anubis, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Das%20Haus%20Anubis) -> Das Haus Anubis (1571ms) Who is Anubis? the king -0.0 Who is Anubis? -> $x: ($x, be of, anubis) -> (the king, was a figure of, Anubis) -> the king (1342ms) Who is Anubis? Tim Powers -0.0 Who is Anubis? -> $x: ($x, do, anubis) -> (Tim Powers, were doing with, ?The Anubis Gate?) -> Tim Powers (3034ms) Who is Anubis? The Anubis Gates -0.0 Who is Anubis? -> $x: ($x, find, anubis) -> (The Anubis Gates, can be found on Wikipedia at, http://en.wikipedia.org/wiki/The%20Anubis%20Gates) -> The Anubis Gates (1571ms) Who is Anubis? the North -0.0 Who is Anubis? -> $x: ($x, be of, anubis) -> (the North, are the chapel of, Anubis) -> the North (3034ms) Who is Anubis? the cat -0.0 Who is Anubis? -> $x: ($x, be of, anubis) -> (the cat, is proud of, Anubis) -> the cat (1261ms) Who is Anubis? Hans Bourlon -0.0 Who is Anubis? -> $x: ($x, create, anubis) -> (Hans Bourlon, TV programs Created, House of Anubis) -> Hans Bourlon (1261ms) Who is Anubis? Nightmare -0.0 Who is Anubis? -> $x: ($x, be of, anubis) -> (Nightmare, is a form of, Anubis) -> Nightmare (1342ms) Who is Anubis? Seth -0.0 Who is Anubis? -> $x: ($x, be of, anubis) -> (Seth, [is] mother of, Anubis) -> Seth (1205ms) Who is Anubis? Paulo S. L. M. Barreto -0.0 Who is Anubis? -> $x: ($x, create, anubis) -> (Paulo S. L. M. Barreto, Ciphers created, Anubis) -> Paulo S. L. M. Barreto (3034ms) Who is Anubis? Anubis II -0.0 Who is Anubis? -> $x: ($x, find, anubis) -> (Anubis II, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Anubis%20II) -> Anubis II (3038ms) Who is Anubis? Musical theatre -0.0 Who is Anubis? -> $x: ($x, play, anubis) -> (Musical theatre, Plays In This Genre, Anubis Legende van het Spooktheater) -> Musical theatre (1075ms) Who is Anubis? The bottom one -0.0 Who is Anubis? -> $x: ($x, be of, anubis) -> (The bottom one, is of of, Anubis) -> The bottom one (1205ms) Who is Anubis? each body -0.0 Who is Anubis? -> $x: ($x, find, anubis) -> (each body, is found a little statue of, Anubis) -> each body (3034ms) Who is Anubis? the list -0.0 Who is Anubis? -> $x: ($x, be of, anubis) -> (the list, is The House of, Anubis) -> the list (1308ms) Who is Anubis? deviantART Details -0.0 Who is Anubis? -> $x: ($x, here, anubis) -> (deviantART Details, Here is another picture of, Anubis) -> deviantART Details (3034ms) Who is Anubis? Horus -0.0 Who is Anubis? -> $x: ($x, kill, anubis) -> (Horus, was killed by, Anubis) -> Horus (1342ms) Who is Anubis? the development sketches -0.0 Who is Anubis? -> $x: ($x, do, anubis) -> (the development sketches, i did for, the Anubis) -> the development sketches (1308ms) Who is Anubis? The Kerux -0.0 Who is Anubis? -> $x: ($x, be of, anubis) -> (The Kerux, is the principal form of, Anubis) -> The Kerux (1205ms) Who is Anubis? rich woodwork -0.0 Who is Anubis? -> $x: ($x, be of, anubis) -> (rich woodwork, is the home of, Anubis) -> rich woodwork (1261ms) Who is Anubis? Vincent Rijmen -0.0 Who is Anubis? -> $x: ($x, create, anubis) -> (Vincent Rijmen, Ciphers created, Anubis) -> Vincent Rijmen (1261ms) Who is Anubis? Isis -0.0 Who is Anubis? -> $x: ($x, find, anubis) -> (Isis, finds, Anubis) -> Isis (1571ms) Who is Anubis? a pic i -0.0 Who is Anubis? -> $x: ($x, do, anubis) -> (a pic i, did of, mirage and Anubis) -> a pic i (1308ms) Who is Anubis? creature -0.0 Who is Anubis? -> $x: ($x, be of, anubis) -> (creature, is based of, Anubis) -> creature (1261ms) Who is Anubis? Ingrid van Houten-Groeneveld -0.0 Who is Anubis? -> $x: ($x, discover, anubis) -> (Ingrid van Houten-Groeneveld, Astronomical objects discovered, 1912 Anubis) -> Ingrid van Houten-Groeneveld (3034ms) Who is Anubis? The job -0.0 Who is Anubis? -> $x: ($x, be of, anubis) -> (The job, is of, Anubis) -> The job (3038ms) Who is Anubis? deviantART Sinubians -0.0 Who is Anubis? -> $x: ($x, be of, anubis) -> (deviantART Sinubians, are some sort of, Anubis-like creatures) -> deviantART Sinubians (1261ms) Who is Anubis? Osiris and -0.0 Who is Anubis? -> $x: ($x, give birth to, anubis) -> (Osiris and, subsequently gave birth to, Anubis) -> Osiris and (3034ms) Who is Anubis? Search -0.0 Who is Anubis? -> $x: ($x, play, anubis) -> (Search, play anything from, Anubis .fm?s catalogue) -> Search (1075ms) Who is Anubis? Daniel -0.0 Who is Anubis? -> $x: ($x, kill, anubis) -> (Daniel, killed, Anubis) -> Daniel (3034ms) Who is Anubis? Gert Verhulst -0.0 Who is Anubis? -> $x: ($x, create, anubis) -> (Gert Verhulst, TV programs Created, House of Anubis) -> Gert Verhulst (1261ms) Who is Anubis? The Arcanum Veritas -0.0 Who is Anubis? -> $x: ($x, be of, anubis) -> (The Arcanum Veritas, is property of, Anubis Books) -> The Arcanum Veritas (1261ms) Who is Anubis? the mask -0.0 Who is Anubis? -> $x: ($x, be of, anubis) -> (the mask, was reminiscent of, the ancient Egyptian god Anubis) -> the mask (1308ms) Who is Anubis? The mask -0.0 Who is Anubis? -> $x: ($x, inspire, anubis) -> (The mask, is inspired by, Anubis) -> The mask (1342ms) Who is Anubis? The closing track -0.0 Who is Anubis? -> $x: ($x, here, anubis) -> (The closing track, here shows, Anubis Gate) -> The closing track (1342ms) Who is Anubis? P. Craig Russell -0.0 Who is Anubis? -> $x: ($x, create, anubis) -> (P. Craig Russell, Fictional Characters Created, Anubis) -> P. Craig Russell (1308ms) Who is Anubis? a giant rat demon -0.0 Who is Anubis? -> $x: ($x, kill, anubis) -> (a giant rat demon, killed, Anubis?s demons) -> a giant rat demon (1012ms) Who is Anubis? the room -0.0 Who is Anubis? -> $x: ($x, be of, anubis) -> (the room, was the protective black figure of, Anubis) -> the room (1205ms) Who is Anubis? Submitted -0.0 Who is Anubis? -> $x: ($x, do, anubis) -> (Submitted, Finally got the chance to do, Anubis) -> Submitted (3034ms) Who is Anubis? the family -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, was given a place in, the family) -> the family (3045ms) Who is Anubis? the Pyramid Texts -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, is alluded to in, the Pyramid Texts) -> the Pyramid Texts (3045ms) Who is Anubis? ancient Egyptian mythology -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, was an important figure in, ancient Egyptian mythology) -> ancient Egyptian mythology (3048ms) Who is Anubis? a brief absence -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Our Anubis pet urn, is back in stock after, a brief absence) -> a brief absence (3042ms) Who is Anubis? the Best Drama category -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, is nominated in, the Best Drama category) -> the Best Drama category (3042ms) Who is Anubis? power -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (The Goa?uld System lord Anubis, was rising in, power) -> power (3038ms) Who is Anubis? the Ankhu series -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, is in, the Ankhu series) -> the Ankhu series (3042ms) Who is Anubis? color -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, is Blue in, color) -> color (3038ms) Who is Anubis? the same style -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, were painted in, the same style) -> the same style (3042ms) Who is Anubis? the embalming -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (The God Anubis, is represented here in, the embalming) -> the embalming (3045ms) Who is Anubis? statuary -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, is often portrayed in, statuary) -> statuary (3045ms) Who is Anubis? the Molecular World -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, is found in, the Molecular World) -> the Molecular World (3045ms) Who is Anubis? a duel -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Anubis and Sobak, are in, a duel) -> a duel (3038ms) Who is Anubis? the movies -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Anubis Anubis, is featured in, the movies) -> the movies (3038ms) Who is Anubis? sight -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, is nowhere in, sight) -> sight (3042ms) Who is Anubis? a lab -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, was born in, a lab) -> a lab (3042ms) Who is Anubis? Egyptian -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Anubis ? name, was vocalized in, Egyptian) -> Egyptian (3038ms) Who is Anubis? residence -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Anubis and Chrome, are still in, residence) -> residence (3042ms) Who is Anubis? South Korea -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (The Anubis Gates, has recently been released in, South Korea) -> South Korea (3038ms) Who is Anubis? classic bronze -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, is presented here in, classic bronze) -> classic bronze (3045ms) Who is Anubis? January 2008 -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (The Anubis Gates, is due to be published in, January 2008) -> January 2008 (3042ms) Who is Anubis? T??b.t -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, is in, T??b.t) -> T??b.t (3045ms) Who is Anubis? Rome -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, was maintained in, Rome) -> Rome (3042ms) Who is Anubis? Egyptian tombs -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Anubis images, were placed in, Egyptian tombs) -> Egyptian tombs (3048ms) Who is Anubis? gold and silver colour -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, is hand finished in, gold and silver colour) -> gold and silver colour (3042ms) Who is Anubis? the Empire -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, was the dominant force in, the Empire) -> the Empire (3045ms) Who is Anubis? Tutankhamen -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, was located in, Tutankhamen) -> Tutankhamen (3042ms) Who is Anubis? a niche -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Anubis Gate, is in, a niche) -> a niche (3038ms) Who is Anubis? the act -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, is here shown in, the act) -> the act (3038ms) Who is Anubis? funerary contexts -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, is depicted in, funerary contexts) -> funerary contexts (3042ms) Who is Anubis? a tree -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Starivile and Anubis, were sleeping in, a tree) -> a tree (3038ms) Who is Anubis? myths -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, was given an important role in, myths) -> myths (3038ms) Who is Anubis? tomb paintings -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, was a common figure in, tomb paintings) -> tomb paintings (3045ms) Who is Anubis? the sand dune pasture -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, had been loose in, the sand dune pasture) -> the sand dune pasture (3042ms) Who is Anubis? the samples -0.111111111111 Who is Anubis? -> $x: ($x, be in, anubis) -> (the samples, were executed in, Anubis) -> the samples (3045ms) Who is Anubis? Stephen King -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, is a primary character in, Stephen King) -> Stephen King (3042ms) Who is Anubis? the UK -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, is produced in, the UK) -> the UK (3048ms) Who is Anubis? charge -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, was in, charge) -> charge (3038ms) Who is Anubis? stock -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Our Anubis pet urn, is back in, stock) -> stock (3048ms) Who is Anubis? the weighing -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, was still closely involved in, the weighing) -> the weighing (3045ms) Who is Anubis? central Egypt -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Anubis Asyut, is a site in, central Egypt) -> central Egypt (3045ms) Who is Anubis? human form -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, was shown in, human form) -> human form (3048ms) Who is Anubis? the duel arena -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, is wearing outside in, the duel arena) -> the duel arena (3045ms) Who is Anubis? the owner -0.111111111111 Who is Anubis? -> $x: ($x, be in, anubis) -> (the owner, was also very slight in, build and Anubis) -> the owner (3045ms) Who is Anubis? Egypt -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Anubis cartouche pendant, is handmade in, Egypt) -> Egypt (3045ms) Who is Anubis? cruciform -0.111111111111 Who is Anubis? -> $x: (anubis, be in, $x) -> (Anubis, is depicted in, cruciform) -> cruciform (3042ms) Who is Anubis? capable of -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, capable of) -> capable of (3055ms) Who is Anubis? Stargate -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (Stargate, was destroyed by, Anubis) -> Stargate (3059ms) Who is Anubis? Set -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, Set) -> Set (3063ms) Who is Anubis? A strange fetish -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (A strange fetish, was linked to, Anubis) -> A strange fetish (3051ms) Who is Anubis? the guardian god -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, the guardian god) -> the guardian god (3059ms) Who is Anubis? the Egyptian God of the dead -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, the Egyptian God of the dead) -> the Egyptian God of the dead (3063ms) Who is Anubis? Netcheh-netcheh -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, were, Netcheh-netcheh) -> Netcheh-netcheh (3064ms) Who is Anubis? the best -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, the best) -> the best (3051ms) Who is Anubis? Sekhmet -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (Sekhmet, is, Anubis) -> Sekhmet (3048ms) Who is Anubis? the god of embalming rituals -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, the god of embalming rituals) -> the god of embalming rituals (3065ms) Who is Anubis? the patron -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, the patron) -> the patron (3059ms) Who is Anubis? the most important god -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, the most important god) -> the most important god (3059ms) Who is Anubis? a jackel -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, a jackel) -> a jackel (3053ms) Who is Anubis? the TACs and Jackalhound -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (the TACs and Jackalhound, was, Anubis) -> the TACs and Jackalhound (3064ms) Who is Anubis? the sketch -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (the sketch, is, Anubis) -> the sketch (3063ms) Who is Anubis? the elder -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (the elder, was, Anubis) -> the elder (3059ms) Who is Anubis? Jim -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (Jim, is, Anubis) -> Jim (3063ms) Who is Anubis? The child -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (The child, was, Anubis) -> The child (3050ms) Who is Anubis? right -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, right) -> right (3061ms) Who is Anubis? B. C. Greek -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (B. C. Greek, is usually held to be, Anubis) -> B. C. Greek (3048ms) Who is Anubis? ?the barker -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, ?the barker) -> ?the barker (3048ms) Who is Anubis? nowhere -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, nowhere) -> nowhere (3061ms) Who is Anubis? Jonas -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (Jonas, is captured by, Anubis) -> Jonas (3059ms) Who is Anubis? Nickipedia -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, Nickipedia) -> Nickipedia (3055ms) Who is Anubis? the son of Nephthys and Osiris -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, the son of Nephthys and Osiris) -> the son of Nephthys and Osiris (3058ms) Who is Anubis? every jackal -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (every jackal, was actually, Anubis) -> every jackal (3058ms) Who is Anubis? the statue -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (the statue, is, Anubis) -> the statue (3064ms) Who is Anubis? Bastet -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (Bastet, is taunting, Anubis) -> Bastet (3064ms) Who is Anubis? a powerful Goa'uld System Lord -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, a powerful Goa'uld System Lord) -> a powerful Goa'uld System Lord (3064ms) Who is Anubis? the Greek name for a jackal-headed god -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, the Greek name for a jackal-headed god) -> the Greek name for a jackal-headed god (3063ms) Who is Anubis? a great Blues -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (ANUBIS, are, a great Blues) -> a great Blues (3061ms) Who is Anubis? the most powerful and dangerous Goa'uld -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, the most powerful and dangerous Goa'uld) -> the most powerful and dangerous Goa'uld (3055ms) Who is Anubis? a long-form mystery series -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, a long-form mystery series) -> a long-form mystery series (3058ms) Who is Anubis? the lord of the dead -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, the lord of the dead) -> the lord of the dead (3064ms) Who is Anubis? a lunar power -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, a lunar power) -> a lunar power (3051ms) Who is Anubis? a rather stern deity -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, a rather stern deity) -> a rather stern deity (3064ms) Who is Anubis? the deity -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, the deity) -> the deity (3056ms) Who is Anubis? a kind god -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, a kind god) -> a kind god (3061ms) Who is Anubis? a psychopomp -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, a psychopomp) -> a psychopomp (3048ms) Who is Anubis? the Gardevoir -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (the Gardevoir, was surprised to see, Anubis) -> the Gardevoir (3051ms) Who is Anubis? god of embalming -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, god of embalming) -> god of embalming (3055ms) Who is Anubis? a Manga -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, a Manga) -> a Manga (3048ms) Who is Anubis? Inpu -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, Inpu) -> Inpu (3053ms) Who is Anubis? the film -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (the film, is called, " Anubis) -> the film (3064ms) Who is Anubis? The jackal-headed god -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (The jackal-headed god, was, Anubis) -> The jackal-headed god (3061ms) Who is Anubis? a Messenger -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, a Messenger) -> a Messenger (3058ms) Who is Anubis? the jackal-headed God -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, the jackal-headed God) -> the jackal-headed God (3063ms) Who is Anubis? back -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, back) -> back (3062ms) Who is Anubis? the guardian of the dead -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, the guardian of the dead) -> the guardian of the dead (3064ms) Who is Anubis? a very mysterious god -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, a very mysterious god) -> a very mysterious god (3064ms) Who is Anubis? a jackal headed god -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, a jackal headed god) -> a jackal headed god (3059ms) Who is Anubis? the feline goddess Bastet -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (the feline goddess Bastet, is, Anubis) -> the feline goddess Bastet (3065ms) Who is Anubis? the god of death -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, the god of death) -> the god of death (3065ms) Who is Anubis? a dog -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, a dog) -> a dog (3064ms) Who is Anubis? silent -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, silent) -> silent (3062ms) Who is Anubis? a jointly American/British/Belgian produced -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, a jointly American/British/Belgian produced) -> a jointly American/British/Belgian produced (3053ms) Who is Anubis? animal form -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (animal form, are, Anubis) -> animal form (3062ms) Who is Anubis? an ancient one -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, an ancient one) -> an ancient one (3064ms) Who is Anubis? a protector -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, a protector) -> a protector (3063ms) Who is Anubis? Sirius -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (Sirius, is also, Anubis) -> Sirius (3064ms) Who is Anubis? a Egyptian God -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, a Egyptian God) -> a Egyptian God (3058ms) Who is Anubis? the God of mummification -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, the God of mummification) -> the God of mummification (3055ms) Who is Anubis? ?the deceased -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (?the deceased, is led by, Anubis) -> ?the deceased (3051ms) Who is Anubis? determined to destroy Yugi and take over the world -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, determined to destroy Yugi and take over the world) -> determined to destroy Yugi and take over the world (3056ms) Who is Anubis? the son of Nephthys -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, the son of Nephthys) -> the son of Nephthys (3061ms) Who is Anubis? The answer -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (The answer, is, Anubis) -> The answer (3064ms) Who is Anubis? an Egyptian god of death and the underworld -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, an Egyptian god of death and the underworld) -> an Egyptian god of death and the underworld (3048ms) Who is Anubis? the supreme hierarch -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, the supreme hierarch) -> the supreme hierarch (3050ms) Who is Anubis? ?My name -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (?My name, is, Anubis !) -> ?My name (3065ms) Who is Anubis? the god of the underworld -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, the god of the underworld) -> the god of the underworld (3053ms) Who is Anubis? the jackal -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, the jackal) -> the jackal (3051ms) Who is Anubis? a ?dead person -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (a ?dead person, would be recognised by, Anubis) -> a ?dead person (3058ms) Who is Anubis? amazing -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, amazing) -> amazing (3060ms) Who is Anubis? happy -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, happy) -> happy (3063ms) Who is Anubis? the jackal headed god -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, the jackal headed god) -> the jackal headed god (3060ms) Who is Anubis? CRS -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (CRS, is accessible through, ANUBIS) -> CRS (3053ms) Who is Anubis? Torian -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (Torian, is really, Anubis) -> Torian (3059ms) Who is Anubis? Hitch Partner -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (Hitch Partner, is, Anubis) -> Hitch Partner (3058ms) Who is Anubis? Osiris -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, Osiris) -> Osiris (3061ms) Who is Anubis? the main god -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (the main god, is, Anubis) -> the main god (3064ms) Who is Anubis? a well respected master builder -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, a well respected master builder) -> a well respected master builder (3053ms) Who is Anubis? the God -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (the God, is, Anubis) -> the God (3063ms) Who is Anubis? the jackal-god -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, the jackal-god) -> the jackal-god (3061ms) Who is Anubis? question -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (question, is, Anubis) -> question (3048ms) Who is Anubis? evil -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, evil) -> evil (3065ms) Who is Anubis? the Dark God -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, the Dark God) -> the Dark God (3059ms) Who is Anubis? Doc -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (Doc, is, Anubis) -> Doc (3050ms) Who is Anubis? the more quiet and serious kind -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, the more quiet and serious kind) -> the more quiet and serious kind (3048ms) Who is Anubis? a powerful one -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, a powerful one) -> a powerful one (3064ms) Who is Anubis? the left one -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (the left one, is, Anubis) -> the left one (3063ms) Who is Anubis? an Ancient -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, an Ancient) -> an Ancient (3053ms) Who is Anubis? mine and my copyright is on the art -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, mine and my copyright is on the art) -> mine and my copyright is on the art (3051ms) Who is Anubis? the left -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (the left, was, Anubis) -> the left (3057ms) Who is Anubis? Westerners -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (Westerners, were originally, Anubis) -> Westerners (3058ms) Who is Anubis? the earth -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (the earth, was, Anubis) -> the earth (3055ms) Who is Anubis? the god of the dead -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, the god of the dead) -> the god of the dead (3062ms) Who is Anubis? the jackal-headed god -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, the jackal-headed god) -> the jackal-headed god (3065ms) Who is Anubis? the son of Osiris -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, the son of Osiris) -> the son of Osiris (3063ms) Who is Anubis? a notification service -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, a notification service) -> a notification service (3053ms) Who is Anubis? a jackal god -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, a jackal god) -> a jackal god (3063ms) Who is Anubis? an older brother -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (an older brother, is like, Anubis) -> an older brother (3053ms) Who is Anubis? The middle -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (The middle, is, Anubis) -> The middle (3063ms) Who is Anubis? the Giza Sphinx -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (the Giza Sphinx, was originally, Anubis) -> the Giza Sphinx (3053ms) Who is Anubis? the ceremony -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, the ceremony) -> the ceremony (3051ms) Who is Anubis? three -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, three) -> three (3058ms) Who is Anubis? a nice theme -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, a nice theme) -> a nice theme (3053ms) Who is Anubis? The next one -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (The next one, is, Anubis) -> The next one (3064ms) Who is Anubis? surprised -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, surprised) -> surprised (3061ms) Who is Anubis? the game -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (the game, is, Anubis) -> the game (3063ms) Who is Anubis? Goa?uld?d -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (Goa?uld?d, was, Anubis) -> Goa?uld?d (3061ms) Who is Anubis? Red Leader -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (Red Leader, was once, Anubis) -> Red Leader (3061ms) Who is Anubis? ?the statue ? -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (?the statue ?, was, Anubis) -> ?the statue ? (3055ms) Who is Anubis? the hearts of the dead -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (the hearts of the dead, were weighed by, Anubis) -> the hearts of the dead (3058ms) Who is Anubis? the shaman priest -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, the shaman priest) -> the shaman priest (3063ms) Who is Anubis? vulnerable -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, vulnerable) -> vulnerable (3051ms) Who is Anubis? the Sphinx -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (the Sphinx, was, Anubis) -> the Sphinx (3058ms) Who is Anubis? Sirius A -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, Sirius A) -> Sirius A (3063ms) Who is Anubis? a crouching wild dog -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, a crouching wild dog) -> a crouching wild dog (3061ms) Who is Anubis? one of my favorites -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, one of my favorites) -> one of my favorites (3048ms) Who is Anubis? the same reason -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (the same reason, was, Anubis) -> the same reason (3056ms) Who is Anubis? Earth -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (Earth, is safe from, Anubis) -> Earth (3059ms) Who is Anubis? the peasant -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (the peasant, is the recourse to, Anubis) -> the peasant (3063ms) Who is Anubis? a forbidding place -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, a forbidding place) -> a forbidding place (3059ms) Who is Anubis? an old , very powerful System Lord -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, an old , very powerful System Lord) -> an old , very powerful System Lord (3063ms) Who is Anubis? the son of Osiris and Nephthys -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, the son of Osiris and Nephthys) -> the son of Osiris and Nephthys (3051ms) Who is Anubis? the horizon -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (the horizon, is, Anubis) -> the horizon (3059ms) Who is Anubis? the god -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, the god) -> the god (3055ms) Who is Anubis? The circle of the horizon -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (The circle of the horizon, is, Anubis) -> The circle of the horizon (3056ms) Who is Anubis? Hunefer -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (Hunefer, is held up by, Anubis) -> Hunefer (3064ms) Who is Anubis? a jackal headed -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, a jackal headed) -> a jackal headed (3063ms) Who is Anubis? programs -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (programs, are used by, Anubis) -> programs (3057ms) Who is Anubis? an RPM -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (an RPM, is, anubis) -> an RPM (3055ms) Who is Anubis? the Ancient Egyptian god -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, the Ancient Egyptian god) -> the Ancient Egyptian god (3061ms) Who is Anubis? Nova -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (Nova, was, Anubis) -> Nova (3061ms) Who is Anubis? Anunnaki -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (Anunnaki, is remarkably like, Anubis) -> Anunnaki (3063ms) Who is Anubis? a veritable scout -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, a veritable scout) -> a veritable scout (3059ms) Who is Anubis? Atete -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (Atete, is technically, Anubis) -> Atete (3059ms) Who is Anubis? such a strong fighter -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, was, such a strong fighter) -> such a strong fighter (3058ms) Who is Anubis? Omega Psi Phi -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (Omega Psi Phi, is associated with, Anubis) -> Omega Psi Phi (3063ms) Who is Anubis? an extremely ancient deity -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, an extremely ancient deity) -> an extremely ancient deity (3064ms) Who is Anubis? the Baptizer -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (the Baptizer, is, Anubis) -> the Baptizer (3063ms) Who is Anubis? a bit severe -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, a bit severe) -> a bit severe (3053ms) Who is Anubis? the Mesqet -0.222222222222 Who is Anubis? -> $x: ($x, be be, anubis) -> (the Mesqet, is, Anubis) -> the Mesqet (3053ms) Who is Anubis? a lovely little book -0.222222222222 Who is Anubis? -> $x: (anubis, be be, $x) -> (Anubis, is, a lovely little book) -> a lovely little book (3064ms) When did Hawaii become a state? the USA 1.999999999998 When did Hawaii become a state? -> $x: (hawaii, become state in, $x) -> (Hawaii, became the 50th state in, the USA) -> the USA (2559ms) When did Hawaii become a state? the U.S. 1.999999999998 When did Hawaii become a state? -> $x: (hawaii, become state in, $x) -> (Hawaii, has become the first state in, the U.S.) -> the U.S. (2833ms) When did Hawaii become a state? U.S. 1.999999999998 When did Hawaii become a state? -> $x: (hawaii, become state in, $x) -> (Hawai'i, became the 50th state in, U.S.) -> U.S. (2559ms) When did Hawaii become a state? the United States 1.999999999998 When did Hawaii become a state? -> $x: (hawaii, become state in, $x) -> (Hawaii, became the first state in, the United States) -> the United States (2394ms) When did Hawaii become a state? August 1.999999999998 When did Hawaii become a state? -> $x: (hawaii, become state in, $x) -> (Hawaii, became the 50th state in, August) -> August (2833ms) When did Hawaii become a state? country 1.999999999998 When did Hawaii become a state? -> $x: (hawaii, become state in, $x) -> (Hawaii, became the fiftieth state in, country) -> country (1484ms) When did Hawaii become a state? the nation 1.999999999998 When did Hawaii become a state? -> $x: (hawaii, become state in, $x) -> (Hawaii, became the first state in, the nation) -> the nation (2833ms) When did Hawaii become a state? 1963 1.999999999998 When did Hawaii become a state? -> $x: (hawaii, become state in, $x) -> (Hawaii, became a state in, 1963) -> 1963 (2721ms) When did Hawaii become a state? 1898 1.999999999998 When did Hawaii become a state? -> $x: (hawaii, become state in, $x) -> (Hawaii, became a territory of the United States in, 1898) -> 1898 (2394ms) When did Hawaii become a state? August of 1959 1.999999999998 When did Hawaii become a state? -> $x: (hawaii, become state in, $x) -> (Hawaii, became a state in, August of 1959) -> August of 1959 (2722ms) When did Hawaii become a state? August 1959 1.999999999998 When did Hawaii become a state? -> $x: (hawaii, become state in, $x) -> (Hawaii, became a state in, August 1959) -> August 1959 (2559ms) When did Hawaii become a state? America 1.999999999998 When did Hawaii become a state? -> $x: (hawaii, become state in, $x) -> (Hawai?i, became the first state in, America) -> America (2768ms) When did Hawaii become a state? 16 years 1.999999999998 When did Hawaii become a state? -> $x: (hawaii, become state in, $x) -> (Hawaii, became the first state in, 16 years) -> 16 years (2768ms) When did Hawaii become a state? the Union 1.999999999998 When did Hawaii become a state? -> $x: (hawaii, become state in, $x) -> (1959 Hawaii, becomes the 50th state in, the Union) -> the Union (2768ms) When did Hawaii become a state? 1959 1.999999999998 When did Hawaii become a state? -> $x: (hawaii, become state in, $x) -> (Hawaii, became officially known as the " Aloha State in, 1959) -> 1959 (2833ms) When did Hawaii become a state? 1900 1.999999999998 When did Hawaii become a state? -> $x: (hawaii, become state in, $x) -> (Hawaii, became a territory of the United States in, 1900) -> 1900 (1484ms) When did Hawaii become a state? August 21 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, become state on, $x) -> (Hawaii, became the 50th state on, August 21) -> August 21 (3423ms) When did Hawaii become a state? a vacation rental 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, Find, a vacation rental) -> a vacation rental (3328ms) When did Hawaii become a state? 67 percent 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, found almost, 67 percent) -> 67 percent (3271ms) When did Hawaii become a state? 200 places 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, found approximately, 200 places) -> 200 places (3486ms) When did Hawaii become a state? Kailua Kona 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (text/html Kailua Kona Hawaii Hotels, Find hotels in, Kailua Kona) -> Kailua Kona (3370ms) When did Hawaii become a state? the Society Islands 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, is found in, the Society Islands) -> the Society Islands (3410ms) When did Hawaii become a state? Maui 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii, headed for, Maui) -> Maui (3328ms) When did Hawaii become a state? Hakalau 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (The Akepa and Hawaii Creeper, are found in, Hakalau) -> Hakalau (3356ms) When did Hawaii become a state? Marcos guilty 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, found, Marcos guilty) -> Marcos guilty (3474ms) When did Hawaii become a state? the island paradise 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, find, the island paradise) -> the island paradise (3397ms) When did Hawaii become a state? HIV. 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, live with, $x) -> (Hawai'i, is also living with, HIV.) -> HIV. (3423ms) When did Hawaii become a state? the other islands 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, size, $x) -> (Hawaii, is twice the size of, the other islands) -> the other islands (3397ms) When did Hawaii become a state? shore Friday 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii Marine Center research trip, headed back to, shore Friday) -> shore Friday (3449ms) When did Hawaii become a state? the EasyGreen 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, found, the EasyGreen) -> the EasyGreen (3498ms) When did Hawaii become a state? Florida 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii, was first found in, Florida) -> Florida (3486ms) When did Hawaii become a state? a national public TV airing 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, head, $x) -> (two Hawaii shows, headed for, a national public TV airing) -> a national public TV airing (3436ms) When did Hawaii become a state? UOP Friday 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii, heads up to, UOP Friday) -> UOP Friday (3423ms) When did Hawaii become a state? mortgage refinancing resources 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found, $x) -> (hawaii, find, mortgage refinancing resources) -> mortgage refinancing resources (3449ms) When did Hawaii become a state? Hana 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (the old , real Hawaii, can still be found in heavenly, Hana) -> Hana (3256ms) When did Hawaii become a state? Scott Sheppard Ananke Daughter 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii, headed by, Scott Sheppard Ananke Daughter) -> Scott Sheppard Ananke Daughter (3314ms) When did Hawaii become a state? favor 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (the Hawaii state court, found in, favor) -> favor (3356ms) When did Hawaii become a state? dancers 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, find, dancers) -> dancers (3383ms) When did Hawaii become a state? a star 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, have found, a star) -> a star (3423ms) When did Hawaii become a state? love 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, have found, love) -> love (3486ms) When did Hawaii become a state? Hawaii 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii Jobs, Find Jobs in, Hawaii) -> Hawaii (3384ms) When did Hawaii become a state? a practice and game schedule 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, find, a practice and game schedule) -> a practice and game schedule (3300ms) When did Hawaii become a state? Google Scholar 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii, found significant gaps in, Google Scholar) -> Google Scholar (3474ms) When did Hawaii become a state? hundreds 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, head, $x) -> (our Hawaii State Chairman, has been heading up, hundreds) -> hundreds (3370ms) When did Hawaii become a state? the Aloha state physicians 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, found, the Aloha state physicians) -> the Aloha state physicians (3436ms) When did Hawaii become a state? Northern Ireland 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, size, $x) -> (Hawaii, is the size of, Northern Ireland) -> Northern Ireland (3474ms) When did Hawaii become a state? Chapter 667 et 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii non-judicial foreclosures, are found in, Chapter 667 et) -> Chapter 667 et (3410ms) When did Hawaii become a state? Scott Sheppard Named 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii, headed by, Scott Sheppard Named) -> Scott Sheppard Named (3449ms) When did Hawaii become a state? sea glass 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, Find out all about, sea glass) -> sea glass (3370ms) When did Hawaii become a state? Kaanapali 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii Kaanapali Hotels, Find hotels in, Kaanapali) -> Kaanapali (3410ms) When did Hawaii become a state? the Hawaii Charging Station Database 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, can be found on, the Hawaii Charging Station Database) -> the Hawaii Charging Station Database (3449ms) When did Hawaii become a state? cheap vibrox 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (hawaii, find, cheap vibrox) -> cheap vibrox (3384ms) When did Hawaii become a state? the true beauty 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, finds, the true beauty) -> the true beauty (3474ms) When did Hawaii become a state? energy 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, price, $x) -> (?Hawai?i Island residents, pay high prices for, energy) -> energy (3410ms) When did Hawaii become a state? reviews 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, | Find, reviews) -> reviews (3449ms) When did Hawaii become a state? CNA Schools 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, Find, CNA Schools) -> CNA Schools (3423ms) When did Hawaii become a state? a Christmas tree and winter events 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, Find, a Christmas tree and winter events) -> a Christmas tree and winter events (3486ms) When did Hawaii become a state? Scott Sheppard Daughter 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii, headed by, Scott Sheppard Daughter) -> Scott Sheppard Daughter (3342ms) When did Hawaii become a state? one study 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii, were found in, one study) -> one study (3449ms) When did Hawaii become a state? Eugene 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii, are both headed to, Eugene) -> Eugene (3449ms) When did Hawaii become a state? Mars and Venus 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, are found on, Mars and Venus) -> Mars and Venus (3498ms) When did Hawaii become a state? a zoomorphic figurine 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, found, a zoomorphic figurine) -> a zoomorphic figurine (3342ms) When did Hawaii become a state? foreclosure properties houses 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, find in, foreclosure properties houses) -> foreclosure properties houses (3423ms) When did Hawaii become a state? the centre 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (the 2-star Hawaii Apartments, can be found in, the centre) -> the centre (3370ms) When did Hawaii become a state? ungrazed , wet mixed forests 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (The Hawaii Creeper, is found in, ungrazed , wet mixed forests) -> ungrazed , wet mixed forests (3328ms) When did Hawaii become a state? exclusive Hawaii travel deals 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, Find, exclusive Hawaii travel deals) -> exclusive Hawaii travel deals (3436ms) When did Hawaii become a state? a Chapter Christian Motorcyclists Association 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, Find, a Chapter Christian Motorcyclists Association) -> a Chapter Christian Motorcyclists Association (3449ms) When did Hawaii become a state? the central Pacific Ocean 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Canada and Hawaii, is found in, the central Pacific Ocean) -> the central Pacific Ocean (3498ms) When did Hawaii become a state? Hakalau Forest 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (The Akepa and Hawaii Creeper, are found in, Hakalau Forest) -> Hakalau Forest (3271ms) When did Hawaii become a state? re-election 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, head, $x) -> (the Hawaii Legislature, appear headed to, re-election) -> re-election (3286ms) When did Hawaii become a state? first Europeans 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, found by, first Europeans) -> first Europeans (3370ms) When did Hawaii become a state? negligent 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, was found, negligent) -> negligent (3410ms) When did Hawaii become a state? flight and cheap flight cyprus 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (hawaii, fast find, flight and cheap flight cyprus) -> flight and cheap flight cyprus (3498ms) When did Hawaii become a state? the colorful waters 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, can be found in, the colorful waters) -> the colorful waters (3474ms) When did Hawaii become a state? an illustration 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, size, $x) -> (Hawaii, has a postage-sized stamp with, an illustration) -> an illustration (3397ms) When did Hawaii become a state? the same day 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii, Find cash in, the same day) -> the same day (3356ms) When did Hawaii become a state? New York 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii, try to find work in, New York) -> New York (3356ms) When did Hawaii become a state? flight 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (hawaii, fast find, flight) -> flight (3474ms) When did Hawaii become a state? success 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, has found, success) -> success (3498ms) When did Hawaii become a state? offices 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii, can be found in, offices) -> offices (3436ms) When did Hawaii become a state? Oahu Maui Hawaii and Kauai 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, can be found on, Oahu Maui Hawaii and Kauai) -> Oahu Maui Hawaii and Kauai (3328ms) When did Hawaii become a state? Italy 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii, is heading to, Italy) -> Italy (3461ms) When did Hawaii become a state? the chilly Atlantic shores 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, found its way to, the chilly Atlantic shores) -> the chilly Atlantic shores (3449ms) When did Hawaii become a state? August 21 , 1959 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, become state on, $x) -> (Hawaii, formally became a state on, August 21 , 1959) -> August 21 , 1959 (3436ms) When did Hawaii become a state? the beautiful island 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Kaanapali Hawaii, can be found in, the beautiful island) -> the beautiful island (3486ms) When did Hawaii become a state? the internet 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, found on, the internet) -> the internet (3357ms) When did Hawaii become a state? Golf Magazine?s list 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (eight Hawaii courses, can be found in, Golf Magazine?s list) -> Golf Magazine?s list (3474ms) When did Hawaii become a state? Scott Sheppard Mother 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii, headed by, Scott Sheppard Mother) -> Scott Sheppard Mother (3449ms) When did Hawaii become a state? town 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii and I?m, headed out of, town) -> town (3449ms) When did Hawaii become a state? high surf 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii 's North Shore, had to head, high surf) -> high surf (3328ms) When did Hawaii become a state? the North Shore 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, are found on, the North Shore) -> the North Shore (3449ms) When did Hawaii become a state? childhood leukaemia 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, found a cluster of, childhood leukaemia) -> childhood leukaemia (3498ms) When did Hawaii become a state? Scott Sheppard Lover 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii, headed by, Scott Sheppard Lover) -> Scott Sheppard Lover (3342ms) When did Hawaii become a state? the Monthly Precipitation Summaries 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii, can be found in, the Monthly Precipitation Summaries) -> the Monthly Precipitation Summaries (3474ms) When did Hawaii become a state? the cover story 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawai?i Space Grant, can be found in, the cover story) -> the cover story (3300ms) When did Hawaii become a state? flight etc 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (hawaii, fast find, flight etc) -> flight etc (3300ms) When did Hawaii become a state? senior care options 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, find, senior care options) -> senior care options (3256ms) When did Hawaii become a state? Scott Sheppard Carme 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii, headed by, Scott Sheppard Carme) -> Scott Sheppard Carme (3271ms) When did Hawaii become a state? the yearly average 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, found an increase in, the yearly average) -> the yearly average (3461ms) When did Hawaii become a state? association 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (hawaii, find details of, association) -> association (3449ms) When did Hawaii become a state? Honolulu 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii, Find doctors in, Honolulu) -> Honolulu (3410ms) When did Hawaii become a state? Chapter 12 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawai'i, are found in, Chapter 12) -> Chapter 12 (3461ms) When did Hawaii become a state? podcasts 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, can be found on, podcasts) -> podcasts (3410ms) When did Hawaii become a state? the green east coast 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, found concerning, the green east coast) -> the green east coast (3410ms) When did Hawaii become a state? Australia 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii, was also headed to, Australia) -> Australia (3410ms) When did Hawaii become a state? adverse event rates 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, found, adverse event rates) -> adverse event rates (3356ms) When did Hawaii become a state? New Cars Hawaii | New 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, Find, New Cars Hawaii | New) -> New Cars Hawaii | New (3486ms) When did Hawaii become a state? Aug. 21 , 1959 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, become state on, $x) -> (Hawaii, became the 50th state on, Aug. 21 , 1959) -> Aug. 21 , 1959 (3436ms) When did Hawaii become a state? the top resorts 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, is found at, the top resorts) -> the top resorts (3423ms) When did Hawaii become a state? the attack 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii, might have headed off, the attack) -> the attack (3397ms) When did Hawaii become a state? Scott Sheppard One 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii, headed by, Scott Sheppard One) -> Scott Sheppard One (3383ms) When did Hawaii become a state? the NWHI 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, is found in, the NWHI) -> the NWHI (3486ms) When did Hawaii become a state? Honolulu HI 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, are found in, Honolulu HI) -> Honolulu HI (3474ms) When did Hawaii become a state? beautiful beaches 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, will find, beautiful beaches) -> beautiful beaches (3342ms) When did Hawaii become a state? flight or cheap flight cyprus etc 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found, $x) -> (hawaii, fast find, flight or cheap flight cyprus etc) -> flight or cheap flight cyprus etc (3498ms) When did Hawaii become a state? Delaware 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, size, $x) -> (Hawai?i Island, is twice the size of, Delaware) -> Delaware (3486ms) When did Hawaii become a state? Kihei Vacation Rentals 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, Find, Kihei Vacation Rentals) -> Kihei Vacation Rentals (3410ms) When did Hawaii become a state? several ways 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, can be found, several ways) -> several ways (3397ms) When did Hawaii become a state? Norm Chow 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii Warriors football, Current head coach, Norm Chow) -> Norm Chow (3397ms) When did Hawaii become a state? the Japanese attack 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, price, $x) -> (Hawaii, paid a high price for, the Japanese attack) -> the Japanese attack (3474ms) When did Hawaii become a state? a special issue 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii, can be found in, a special issue) -> a special issue (3461ms) When did Hawaii become a state? Address and Phone number 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, Find, Address and Phone number) -> Address and Phone number (3486ms) When did Hawaii become a state? Aug. 21 , 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, become state on, $x) -> (( Hawaii, became a state on, Aug. 21 ,) -> Aug. 21 , (3357ms) When did Hawaii become a state? a major roadblock 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii, could be headed toward, a major roadblock) -> a major roadblock (3271ms) When did Hawaii become a state? awards 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, invent, $x) -> (Hawaii And GSA, invented, awards) -> awards (3286ms) When did Hawaii become a state? the island 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, is found on, the island) -> the island (3423ms) When did Hawaii become a state? Kauai 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, are found in, Kauai) -> Kauai (3449ms) When did Hawaii become a state? Steve McGarrett 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, head, $x) -> (the Hawaii State Police, headed by, Steve McGarrett) -> Steve McGarrett (3328ms) When did Hawaii become a state? a physician 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, find, a physician) -> a physician (3498ms) When did Hawaii become a state? the next largest island 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, size be, $x) -> (Hawaii, is five times the size of, the next largest island) -> the next largest island (3449ms) When did Hawaii become a state? Similar Art 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, Find, Similar Art) -> Similar Art (3436ms) When did Hawaii become a state? amazement 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, head, $x) -> (hawaii, just shook my head in, amazement) -> amazement (3397ms) When did Hawaii become a state? Fort 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Bankruptcy Hawaii American Home Guides, find new homes in, Fort) -> Fort (3271ms) When did Hawaii become a state? Connecticut 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, size, $x) -> (Hawaii, is about the size of, Connecticut) -> Connecticut (3356ms) When did Hawaii become a state? HI. 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (HI , Hawaii people search, find people in, HI.) -> HI. (3328ms) When did Hawaii become a state? Scott Sheppard Pasipha? One 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii, headed by, Scott Sheppard Pasipha? One) -> Scott Sheppard Pasipha? One (3300ms) When did Hawaii become a state? the Annie Armstrong 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, head, $x) -> (1980 Hawaii Baptists, headed, the Annie Armstrong) -> the Annie Armstrong (3314ms) When did Hawaii become a state? the wet forests 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (The Hawaii plant, is found only in, the wet forests) -> the wet forests (3383ms) When did Hawaii become a state? the northeastern slopes 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, found the bird on, the northeastern slopes) -> the northeastern slopes (3461ms) When did Hawaii become a state? a vacation 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii, is a great place to head to for, a vacation) -> a vacation (3300ms) When did Hawaii become a state? the Hawaii Revised Statutes 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii Firearm laws, are found in, the Hawaii Revised Statutes) -> the Hawaii Revised Statutes (3449ms) When did Hawaii become a state? runners 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, found, runners) -> runners (3342ms) When did Hawaii become a state? California 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii, was found in, California) -> California (3286ms) When did Hawaii become a state? the validity 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, finds against, the validity) -> the validity (3397ms) When did Hawaii become a state? Dentistry Jobs 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, Find, Dentistry Jobs) -> Dentistry Jobs (3314ms) When did Hawaii become a state? Scott Sheppard 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii, headed by, Scott Sheppard) -> Scott Sheppard (3271ms) When did Hawaii become a state? every available habitat 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawai'i, can be found in, every available habitat) -> every available habitat (3461ms) When did Hawaii become a state? the Hawaiian islands 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawai'i, are found only in, the Hawaiian islands) -> the Hawaiian islands (3384ms) When did Hawaii become a state? the Hawaiian Islands 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawai?i, are found only in, the Hawaiian Islands) -> the Hawaiian Islands (3356ms) When did Hawaii become a state? flight or cheap flight cyprus 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (hawaii, fast find, flight or cheap flight cyprus) -> flight or cheap flight cyprus (3383ms) When did Hawaii become a state? the islands 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, are found all over, the islands) -> the islands (3342ms) When did Hawaii become a state? local honolulu gas prices & gas stations 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (hawaii, find, local honolulu gas prices & gas stations) -> local honolulu gas prices & gas stations (3384ms) When did Hawaii become a state? Maui vacation information 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, find, Maui vacation information) -> Maui vacation information (3474ms) When did Hawaii become a state? ongoing degradation 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, price, $x) -> (Hawai'i, pays the price with, ongoing degradation) -> ongoing degradation (3256ms) When did Hawaii become a state? various boutiques 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Tiare Hawaii, can be found in, various boutiques) -> various boutiques (3486ms) When did Hawaii become a state? certain other states 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, is found in, certain other states) -> certain other states (3474ms) When did Hawaii become a state? Holistic Health Services 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, Find, Holistic Health Services) -> Holistic Health Services (3356ms) When did Hawaii become a state? an archipelago 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii, is found in, an archipelago) -> an archipelago (3370ms) When did Hawaii become a state? William Cutler 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Integral?s Hawaii office, is headed by, William Cutler) -> William Cutler (3498ms) When did Hawaii become a state? retirement 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, head, $x) -> (West Hawai?i, is headed for, retirement) -> retirement (3436ms) When did Hawaii become a state? hotels 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, Find, hotels) -> hotels (3436ms) When did Hawaii become a state? Hawaii?s mountain 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii colleague, found in, Hawaii?s mountain) -> Hawaii?s mountain (3328ms) When did Hawaii become a state? www 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, can be found at, www) -> www (3486ms) When did Hawaii become a state? 1957 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, invent, $x) -> (The Blue Hawai?i drink, was invented in, 1957) -> 1957 (3256ms) When did Hawaii become a state? too low 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, price, $x) -> (Hawaii Kai house, priced, too low) -> too low (3328ms) When did Hawaii become a state? the Hana district 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii, are found in, the Hana district) -> the Hana district (3300ms) When did Hawaii become a state? the basis 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, reported these finding on, the basis) -> the basis (3486ms) When did Hawaii become a state? relationships 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, have found, relationships) -> relationships (3423ms) When did Hawaii become a state? a Louisiana serial killer 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, helps find, a Louisiana serial killer) -> a Louisiana serial killer (3423ms) When did Hawaii become a state? THANE JOSEF MESSINGER 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, can be found in, THANE JOSEF MESSINGER) -> THANE JOSEF MESSINGER (3474ms) When did Hawaii become a state? August 21st 1959 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, become state on, $x) -> (Hawaii, became the 50th state on, August 21st 1959) -> August 21st 1959 (3436ms) When did Hawaii become a state? the federal shortfall 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii, might have a head start on, the federal shortfall) -> the federal shortfall (3314ms) When did Hawaii become a state? the Pacific 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii Queen Elizabeth, headed south west across, the Pacific) -> the Pacific (3423ms) When did Hawaii become a state? April 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii, can be found in, April) -> April (3328ms) When did Hawaii become a state? the gallery 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, can be found in, the gallery) -> the gallery (3461ms) When did Hawaii become a state? online 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, found, online) -> online (3423ms) When did Hawaii become a state? Scott Sheppard Carme One 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, head, $x) -> (Hawaii, headed by, Scott Sheppard Carme One) -> Scott Sheppard Carme One (3300ms) When did Hawaii become a state? Bariatric Surgeons 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found, $x) -> (Hawaii, Find, Bariatric Surgeons) -> Bariatric Surgeons (3410ms) When did Hawaii become a state? surf cam 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, live with, $x) -> (Hawaii, live with, surf cam) -> surf cam (3486ms) When did Hawaii become a state? gasoline 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, price, $x) -> (I. Hawaii, already has imposed price controls on, gasoline) -> gasoline (3397ms) When did Hawaii become a state? performance venues 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii, is important in finding, performance venues) -> performance venues (3436ms) When did Hawaii become a state? the Big Island 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, find, $x) -> (Hawaii, is found on, the Big Island) -> the Big Island (3410ms) When did Hawaii become a state? Los Angeles 0.999999999998 When did Hawaii become a state? -> $x: (hawaii, found in, $x) -> (Hawaii, was found in, Los Angeles) -> Los Angeles (3370ms) When did Hawaii become a state? planes 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (planes, headed back to, Hawaii) -> planes (3606ms) When did Hawaii become a state? fruit trees 0.666666666666 When did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (fruit trees, found in, Hawaii) -> fruit trees (3666ms) When did Hawaii become a state? Eurasian pine adelgid 0.666666666666 When did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (Eurasian pine adelgid, found in, Hawaii) -> Eurasian pine adelgid (3666ms) When did Hawaii become a state? lucky folks 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (lucky folks, headed to, Hawaii) -> lucky folks (3598ms) When did Hawaii become a state? music 0.666666666666 When did Hawaii become a state? -> $x: ($x, found, hawaii) -> (music, found in, Hawaii) -> music (3652ms) When did Hawaii become a state? Slack Key guitar 0.666666666666 When did Hawaii become a state? -> $x: ($x, invent, hawaii) -> (Slack Key guitar, was invented in, Hawaii) -> Slack Key guitar (3637ms) When did Hawaii become a state? the marine life 0.666666666666 When did Hawaii become a state? -> $x: ($x, find, hawaii) -> (the marine life, found in, Hawaii) -> the marine life (3686ms) When did Hawaii become a state? Vancouver Island 0.666666666666 When did Hawaii become a state? -> $x: ($x, size be, hawaii) -> (Vancouver Island, is twice the size of, Hawaii) -> Vancouver Island (3606ms) When did Hawaii become a state? the strike force 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (the strike force, headed for, Hawaii) -> the strike force (3630ms) When did Hawaii become a state? Historically 0.666666666666 When did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (Historically, found in, Hawaii) -> Historically (3581ms) When did Hawaii become a state? The original lamps 0.666666666666 When did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (The original lamps, were found in, Hawaii) -> The original lamps (3659ms) When did Hawaii become a state? Jack 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Jack, heads for, Hawaii) -> Jack (3659ms) When did Hawaii become a state? The highest resort room prices 0.666666666666 When did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (The highest resort room prices, were found in, Hawaii) -> The highest resort room prices (3537ms) When did Hawaii become a state? historic ship 0.666666666666 When did Hawaii become a state? -> $x: ($x, found, hawaii) -> (historic ship, found in, hawaii) -> historic ship (3680ms) When did Hawaii become a state? Asian companies 0.666666666666 When did Hawaii become a state? -> $x: ($x, find, hawaii) -> (Asian companies, find, Hawaii) -> Asian companies (3680ms) When did Hawaii become a state? A UCLA professor 0.666666666666 When did Hawaii become a state? -> $x: ($x, size, hawaii) -> (A UCLA professor, sizes up, Hawaii?s best art) -> A UCLA professor (3590ms) When did Hawaii become a state? plant 0.666666666666 When did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (plant, found in, Hawaii) -> plant (3673ms) When did Hawaii become a state? the Lincoln 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (the Lincoln, is heading to, Hawaii) -> the Lincoln (3622ms) When did Hawaii become a state? Alaska 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Alaska, headed toward, Hawaii) -> Alaska (3528ms) When did Hawaii become a state? an airplane 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (an airplane, headed to, Hawaii) -> an airplane (3614ms) When did Hawaii become a state? heliconia diseases 0.666666666666 When did Hawaii become a state? -> $x: ($x, found, hawaii) -> (heliconia diseases, found in, Hawaii) -> heliconia diseases (3537ms) When did Hawaii become a state? Akule 0.666666666666 When did Hawaii become a state? -> $x: ($x, found, hawaii) -> (Akule, found near, Hawaii) -> Akule (3637ms) When did Hawaii become a state? Arlington 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Arlington, headed for, Hawaii) -> Arlington (3581ms) When did Hawaii become a state? intellect stand 0.666666666666 When did Hawaii become a state? -> $x: ($x, find, hawaii) -> (intellect stand, find, Hawaii) -> intellect stand (3666ms) When did Hawaii become a state? the fish 0.666666666666 When did Hawaii become a state? -> $x: ($x, find, hawaii) -> (the fish, found in, Hawaii) -> the fish (3666ms) When did Hawaii become a state? sharks 0.666666666666 When did Hawaii become a state? -> $x: ($x, found, hawaii) -> (sharks, found around, Hawaii) -> sharks (3555ms) When did Hawaii become a state? I?m 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (I?m, headed for, Hawaii) -> I?m (3680ms) When did Hawaii become a state? cuisine 0.666666666666 When did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (cuisine, can be found in, Hawaii) -> cuisine (3517ms) When did Hawaii become a state? the affected area 0.666666666666 When did Hawaii become a state? -> $x: ($x, size be, hawaii) -> (the affected area, may be twice the size of, Hawaii) -> the affected area (3606ms) When did Hawaii become a state? the largest petroglyph field 0.666666666666 When did Hawaii become a state? -> $x: ($x, find, hawaii) -> (the largest petroglyph field, found in, Hawaii) -> the largest petroglyph field (3652ms) When did Hawaii become a state? Mormons 0.666666666666 When did Hawaii become a state? -> $x: ($x, find, hawaii) -> (Mormons, found within, hawaii) -> Mormons (3693ms) When did Hawaii become a state? The salad bar 0.666666666666 When did Hawaii become a state? -> $x: ($x, invent, hawaii) -> (The salad bar, was invented in, Hawaii) -> The salad bar (3508ms) When did Hawaii become a state? The gang 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (The gang, heads to, Hawaii) -> The gang (3673ms) When did Hawaii become a state? Yorktown 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Yorktown, headed for, Hawaii) -> Yorktown (3614ms) When did Hawaii become a state? the stinker 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (the stinker, headed to, Hawaii) -> the stinker (3673ms) When did Hawaii become a state? every variety imaginable 0.666666666666 When did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (every variety imaginable, can be found in, Hawaii) -> every variety imaginable (3686ms) When did Hawaii become a state? the coral 0.666666666666 When did Hawaii become a state? -> $x: ($x, find, hawaii) -> (the coral, found in, Hawaii) -> the coral (3666ms) When did Hawaii become a state? a few years 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (a few years, are headed back to, Hawaii) -> a few years (3630ms) When did Hawaii become a state? the healthy , active lifestyle 0.666666666666 When did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (the healthy , active lifestyle, found in, Hawaii) -> the healthy , active lifestyle (3686ms) When did Hawaii become a state? Puerto Vallarta 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Puerto Vallarta, headed for, Hawaii) -> Puerto Vallarta (3622ms) When did Hawaii become a state? Peter 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Peter, heads off to, Hawaii) -> Peter (3637ms) When did Hawaii become a state? the species 0.666666666666 When did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (the species, found in, Hawaii) -> the species (3680ms) When did Hawaii become a state? a teapot ? 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (a teapot ?, headed to, hawaii) -> a teapot ? (3527ms) When did Hawaii become a state? youre 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (youre, headed to, Hawaii) -> youre (3680ms) When did Hawaii become a state? Acropora corals 0.666666666666 When did Hawaii become a state? -> $x: ($x, find, hawaii) -> (Acropora corals, found in, Hawaii) -> Acropora corals (3659ms) When did Hawaii become a state? flowers 0.666666666666 When did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (flowers, found in, Hawaii) -> flowers (3652ms) When did Hawaii become a state? Nancy 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Nancy, is heading to, Hawaii) -> Nancy (3498ms) When did Hawaii become a state? Austin?s best athletes 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Austin?s best athletes, are headed to, Hawaii) -> Austin?s best athletes (3637ms) When did Hawaii become a state? Surfboards 0.666666666666 When did Hawaii become a state? -> $x: ($x, invent, hawaii) -> (Surfboards, were invented in, Hawaii) -> Surfboards (3666ms) When did Hawaii become a state? Shannon Calloway 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Shannon Calloway, is heading to, Hawaii) -> Shannon Calloway (3598ms) When did Hawaii become a state? numerous Acropora corals 0.666666666666 When did Hawaii become a state? -> $x: ($x, find, hawaii) -> (numerous Acropora corals, found in, Hawaii) -> numerous Acropora corals (3666ms) When did Hawaii become a state? critters and fish 0.666666666666 When did Hawaii become a state? -> $x: ($x, find, hawaii) -> (critters and fish, found on, Hawaii) -> critters and fish (3686ms) When did Hawaii become a state? Wednesday 0.666666666666 When did Hawaii become a state? -> $x: ($x, price, hawaii) -> (Wednesday, has the highest average price in, Hawaii) -> Wednesday (3528ms) When did Hawaii become a state? the tsunami 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (the tsunami, headed for, Hawaii) -> the tsunami (3564ms) When did Hawaii become a state? the first ship 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (the first ship, headed for, Hawaii) -> the first ship (3546ms) When did Hawaii become a state? the nivosus Monarch 0.666666666666 When did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (the nivosus Monarch, found in, Hawaii) -> the nivosus Monarch (3637ms) When did Hawaii become a state? THE STEEL GUITAR 0.666666666666 When did Hawaii become a state? -> $x: ($x, invent, hawaii) -> (THE STEEL GUITAR, was invented in, Hawaii) -> THE STEEL GUITAR (3546ms) When did Hawaii become a state? the airline industry 0.666666666666 When did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (the airline industry, found in, Hawaii) -> the airline industry (3680ms) When did Hawaii become a state? The Jameses 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (The Jameses, headed for, Hawaii) -> The Jameses (3598ms) When did Hawaii become a state? The Burritos 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (The Burritos, headed to, Hawaii) -> The Burritos (3555ms) When did Hawaii become a state? Clinton 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Clinton, headed to, Hawaii) -> Clinton (3622ms) When did Hawaii become a state? several Acropora corals 0.666666666666 When did Hawaii become a state? -> $x: ($x, found, hawaii) -> (several Acropora corals, found in, Hawaii) -> several Acropora corals (3686ms) When did Hawaii become a state? natural phenomena 0.666666666666 When did Hawaii become a state? -> $x: ($x, find, hawaii) -> (natural phenomena, found in, Hawaii) -> natural phenomena (3686ms) When did Hawaii become a state? Starchy cooking bananas 0.666666666666 When did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (Starchy cooking bananas, are also found in, Hawaii) -> Starchy cooking bananas (3537ms) When did Hawaii become a state? the rich diverse cultures 0.666666666666 When did Hawaii become a state? -> $x: ($x, found, hawaii) -> (the rich diverse cultures, found in, Hawaii) -> the rich diverse cultures (3673ms) When did Hawaii become a state? One dead turtle 0.666666666666 When did Hawaii become a state? -> $x: ($x, found, hawaii) -> (One dead turtle, found off, Hawaii) -> One dead turtle (3573ms) When did Hawaii become a state? Pier 6 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Pier 6, headed for, Hawaii) -> Pier 6 (3564ms) When did Hawaii become a state? f lowers 0.666666666666 When did Hawaii become a state? -> $x: ($x, find, hawaii) -> (f lowers, found in, Hawaii) -> f lowers (3645ms) When did Hawaii become a state? the native plants 0.666666666666 When did Hawaii become a state? -> $x: ($x, found, hawaii) -> (the native plants, found in, Hawaii) -> the native plants (3666ms) When did Hawaii become a state? the only land mammal 0.666666666666 When did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (the only land mammal, is found exclusively in, Hawaii) -> the only land mammal (3537ms) When did Hawaii become a state? a common Garden Spider 0.666666666666 When did Hawaii become a state? -> $x: ($x, found, hawaii) -> (a common Garden Spider, found in, Hawaii) -> a common Garden Spider (3686ms) When did Hawaii become a state? the FBI 0.666666666666 When did Hawaii become a state? -> $x: ($x, price, hawaii) -> (the FBI, simply took a lower-priced flight to, Hawaii Werksman) -> the FBI (3686ms) When did Hawaii become a state? The Japanese naval fleet 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (The Japanese naval fleet, heads to, Hawaii) -> The Japanese naval fleet (3546ms) When did Hawaii become a state? 1.5 times larger 0.666666666666 When did Hawaii become a state? -> $x: ($x, size, hawaii) -> (1.5 times larger, 1/4 the size of, Hawaii) -> 1.5 times larger (3659ms) When did Hawaii become a state? Maui Activity Center 0.666666666666 When did Hawaii become a state? -> $x: ($x, price, hawaii) -> (Maui Activity Center, offers great pricing on, Hawaii) -> Maui Activity Center (3645ms) When did Hawaii become a state? the beautiful plant life 0.666666666666 When did Hawaii become a state? -> $x: ($x, find, hawaii) -> (the beautiful plant life, found in, Hawaii) -> the beautiful plant life (3680ms) When did Hawaii become a state? the type 0.666666666666 When did Hawaii become a state? -> $x: ($x, found, hawaii) -> (the type, found in, Hawaii) -> the type (3637ms) When did Hawaii become a state? the culture and values 0.666666666666 When did Hawaii become a state? -> $x: ($x, find, hawaii) -> (the culture and values, found in, Hawaii) -> the culture and values (3614ms) When did Hawaii become a state? the sea turtles 0.666666666666 When did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (the sea turtles, found in, Hawaii) -> the sea turtles (3659ms) When did Hawaii become a state? Nov 1 , 2011 | Pesky ants 0.666666666666 When did Hawaii become a state? -> $x: ($x, find, hawaii) -> (Nov 1 , 2011 | Pesky ants, found in, Hawaii) -> Nov 1 , 2011 | Pesky ants (3673ms) When did Hawaii become a state? a Tsunami 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (a Tsunami, was heading to, Hawaii) -> a Tsunami (3659ms) When did Hawaii become a state? The other two-thirds 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (The other two-thirds, will head toward, Hawaii) -> The other two-thirds (3555ms) When did Hawaii become a state? Timberline 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Timberline, is headed to, Hawaii) -> Timberline (3652ms) When did Hawaii become a state? 1997 0.666666666666 When did Hawaii become a state? -> $x: ($x, size, hawaii) -> (1997, covered an area the size of, Hawaii) -> 1997 (3606ms) When did Hawaii become a state? The CDC 0.666666666666 When did Hawaii become a state? -> $x: ($x, find, hawaii) -> (The CDC, also found, Hawaii) -> The CDC (3590ms) When did Hawaii become a state? ordinary seedling carambolas 0.666666666666 When did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (ordinary seedling carambolas, found in, Hawaii) -> ordinary seedling carambolas (3622ms) When did Hawaii become a state? The sport 0.666666666666 When did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (The sport, finds its origins in, Hawaii) -> The sport (3573ms) When did Hawaii become a state? the loveliest flowers 0.666666666666 When did Hawaii become a state? -> $x: ($x, found, hawaii) -> (the loveliest flowers, found in, Hawaii) -> the loveliest flowers (3622ms) When did Hawaii become a state? A rich fatty nut 0.666666666666 When did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (A rich fatty nut, found in, Hawaii) -> A rich fatty nut (3606ms) When did Hawaii become a state? The Colorado Rapids 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (The Colorado Rapids, are heading to, Hawaii) -> The Colorado Rapids (3686ms) When did Hawaii become a state? the beautiful flower 0.666666666666 When did Hawaii become a state? -> $x: ($x, find, hawaii) -> (the beautiful flower, found in, Hawaii) -> the beautiful flower (3645ms) When did Hawaii become a state? the largest limestone cave 0.666666666666 When did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (the largest limestone cave, found in, Hawaii) -> the largest limestone cave (3598ms) When did Hawaii become a state? Rent 0.666666666666 When did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (Rent, Find Apartments in, Hawaii) -> Rent (3537ms) When did Hawaii become a state? President Obama 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (President Obama, heads to, Hawaii) -> President Obama (3686ms) When did Hawaii become a state? Marcos 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Marcos, headed for, Hawaii) -> Marcos (3537ms) When did Hawaii become a state? Copic Certification Classes 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Copic Certification Classes, are headed to, Hawaii) -> Copic Certification Classes (3581ms) When did Hawaii become a state? Sharp Seniors 0.666666666666 When did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (Sharp Seniors, found 541 Communities in, Hawaii) -> Sharp Seniors (3508ms) When did Hawaii become a state? Office Communications Server2007R2 0.666666666666 When did Hawaii become a state? -> $x: ($x, find, hawaii) -> (Office Communications Server2007R2, can find, hawaii) -> Office Communications Server2007R2 (3692ms) When did Hawaii become a state? The beaches 0.666666666666 When did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (The beaches, found in, Hawaii) -> The beaches (3680ms) When did Hawaii become a state? Holly ? Finding Jesus 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Holly ? Finding Jesus, headed off to, Hawaii) -> Holly ? Finding Jesus (3573ms) When did Hawaii become a state? Disney 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Disney, is heading to, Hawaii) -> Disney (3581ms) When did Hawaii become a state? 8,800 native species 0.666666666666 When did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (8,800 native species, found only in, Hawaii) -> 8,800 native species (3644ms) When did Hawaii become a state? the president 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (the president, headed to, Hawaii) -> the president (3564ms) When did Hawaii become a state? various beautify flowers 0.666666666666 When did Hawaii become a state? -> $x: ($x, found, hawaii) -> (various beautify flowers, found in, Hawaii) -> various beautify flowers (3666ms) When did Hawaii become a state? The main Game fish 0.666666666666 When did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (The main Game fish, found in, Hawaii) -> The main Game fish (3673ms) When did Hawaii become a state? Hes 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Hes, headed to, Hawaii) -> Hes (3537ms) When did Hawaii become a state? the beauty 0.666666666666 When did Hawaii become a state? -> $x: ($x, find, hawaii) -> (the beauty, found in, Hawaii) -> the beauty (3673ms) When did Hawaii become a state? the stunning natural beauty 0.666666666666 When did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (the stunning natural beauty, found in, Hawaii) -> the stunning natural beauty (3680ms) When did Hawaii become a state? A related species 0.666666666666 When did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (A related species, is found in, Hawaii) -> A related species (3590ms) When did Hawaii become a state? the whole family 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (the whole family, headed to, Hawaii) -> the whole family (3645ms) When did Hawaii become a state? the spiritual traditions 0.666666666666 When did Hawaii become a state? -> $x: ($x, find, hawaii) -> (the spiritual traditions, found in, Hawaii) -> the spiritual traditions (3652ms) When did Hawaii become a state? the Japanese carriers 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (the Japanese carriers, were heading toward, Hawaii) -> the Japanese carriers (3546ms) When did Hawaii become a state? the plants and animals 0.666666666666 When did Hawaii become a state? -> $x: ($x, found, hawaii) -> (the plants and animals, found in, Hawaii) -> the plants and animals (3680ms) When did Hawaii become a state? coral species 0.666666666666 When did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (coral species, found in, Hawaii) -> coral species (3573ms) When did Hawaii become a state? the Happy Talk Lounge 0.666666666666 When did Hawaii become a state? -> $x: ($x, price, hawaii) -> (the Happy Talk Lounge, had decent prices for, Hawaii) -> the Happy Talk Lounge (3629ms) When did Hawaii become a state? Were 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Were, headed to, Hawaii) -> Were (3645ms) When did Hawaii become a state? the breathtaking beauty 0.666666666666 When did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (the breathtaking beauty, found in, Hawaii) -> the breathtaking beauty (3686ms) When did Hawaii become a state? the size 0.666666666666 When did Hawaii become a state? -> $x: ($x, size, hawaii) -> (the size, 1/4 the size of, Hawaii) -> the size (3666ms) When did Hawaii become a state? airfare 0.666666666666 When did Hawaii become a state? -> $x: ($x, price, hawaii) -> (airfare, is priced to, Hawaii) -> airfare (3528ms) When did Hawaii become a state? the ethnic influences 0.666666666666 When did Hawaii become a state? -> $x: ($x, find, hawaii) -> (the ethnic influences, found in, Hawaii) -> the ethnic influences (3673ms) When did Hawaii become a state? Kalil 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Kalil, is headed to, Hawaii) -> Kalil (3686ms) When did Hawaii become a state? grasses 0.666666666666 When did Hawaii become a state? -> $x: ($x, found, hawaii) -> (grasses, found in, Hawaii) -> grasses (3537ms) When did Hawaii become a state? Mexico 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Mexico, headed for, Hawaii) -> Mexico (3498ms) When did Hawaii become a state? 4 properties 0.666666666666 When did Hawaii become a state? -> $x: ($x, find, hawaii) -> (4 properties, found, Hawaii) -> 4 properties (3680ms) When did Hawaii become a state? San Diego 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (San Diego, then headed for, Hawaii) -> San Diego (3693ms) When did Hawaii become a state? Surfing 0.666666666666 When did Hawaii become a state? -> $x: ($x, invent, hawaii) -> (Surfing, was invented in, Hawaii) -> Surfing (3686ms) When did Hawaii become a state? an animal 0.666666666666 When did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (an animal, found in, Hawaii) -> an animal (3686ms) When did Hawaii become a state? Final 3 teams 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Final 3 teams, head to, Hawaii) -> Final 3 teams (3590ms) When did Hawaii become a state? the trees 0.666666666666 When did Hawaii become a state? -> $x: ($x, find, hawaii) -> (the trees, found in, Hawaii) -> the trees (3622ms) When did Hawaii become a state? The contestants 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (The contestants, head to, Hawaii) -> The contestants (3666ms) When did Hawaii become a state? More Aussies 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (More Aussies, are heading to, Hawaii) -> More Aussies (3564ms) When did Hawaii become a state? the 2011 I 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (the 2011 I, headed to, Hawaii) -> the 2011 I (3630ms) When did Hawaii become a state? the only bats 0.666666666666 When did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (the only bats, found in, Hawaii) -> the only bats (3629ms) When did Hawaii become a state? Ill 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Ill, be heading to, Hawaii) -> Ill (3564ms) When did Hawaii become a state? travelers 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (travelers, heading to, Hawaii) -> travelers (3598ms) When did Hawaii become a state? the Endangered Species Act?26 percent?are 0.666666666666 When did Hawaii become a state? -> $x: ($x, find, hawaii) -> (the Endangered Species Act?26 percent?are, found in, Hawaii) -> the Endangered Species Act?26 percent?are (3693ms) When did Hawaii become a state? Cam Newton 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Cam Newton, is headed to, Hawaii) -> Cam Newton (3637ms) When did Hawaii become a state? the only bat 0.666666666666 When did Hawaii become a state? -> $x: ($x, found, hawaii) -> (the only bat, found in, Hawaii) -> the only bat (3630ms) When did Hawaii become a state? two and one 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (two and one, is heading for, Hawaii) -> two and one (3546ms) When did Hawaii become a state? youd 0.666666666666 When did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (youd, find in, Hawaii) -> youd (3666ms) When did Hawaii become a state? Vance 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Vance, headed for, Hawaii) -> Vance (3630ms) When did Hawaii become a state? a map 0.666666666666 When did Hawaii become a state? -> $x: ($x, find, hawaii) -> (a map, find, Hawaii) -> a map (3652ms) When did Hawaii become a state? the couple 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (the couple, is headed for, Hawaii) -> the couple (3606ms) When did Hawaii become a state? a tropical plant 0.666666666666 When did Hawaii become a state? -> $x: ($x, found, hawaii) -> (a tropical plant, found in, Hawaii) -> a tropical plant (3652ms) When did Hawaii become a state? the scenic beauty 0.666666666666 When did Hawaii become a state? -> $x: ($x, found, hawaii) -> (the scenic beauty, found in, Hawaii) -> the scenic beauty (3622ms) When did Hawaii become a state? the finest quality 0.666666666666 When did Hawaii become a state? -> $x: ($x, find, hawaii) -> (the finest quality, found in, Hawaii) -> the finest quality (3666ms) When did Hawaii become a state? the pukas 0.666666666666 When did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (the pukas, were found here in, Hawaii) -> the pukas (3517ms) When did Hawaii become a state? President Hu Jintao 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (President Hu Jintao, heads to, Hawaii) -> President Hu Jintao (3659ms) When did Hawaii become a state? a boat 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (a boat, heading to, Hawaii) -> a boat (3673ms) When did Hawaii become a state? the volcanoes 0.666666666666 When did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (the volcanoes, found in, Hawaii) -> the volcanoes (3680ms) When did Hawaii become a state? The ship 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (The ship, headed for, Hawaii) -> The ship (3590ms) When did Hawaii become a state? Elvis 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Elvis, headed to, Hawaii) -> Elvis (3606ms) When did Hawaii become a state? the beaked whales 0.666666666666 When did Hawaii become a state? -> $x: ($x, found, hawaii) -> (the beaked whales, found in, Hawaii) -> the beaked whales (3622ms) When did Hawaii become a state? the largest lizards 0.666666666666 When did Hawaii become a state? -> $x: ($x, find, hawaii) -> (the largest lizards, found in, Hawaii) -> the largest lizards (3630ms) When did Hawaii become a state? Roy Yamaguchi 0.666666666666 When did Hawaii become a state? -> $x: ($x, invent, hawaii) -> (Roy Yamaguchi, invented, Hawaii) -> Roy Yamaguchi (3573ms) When did Hawaii become a state? Rent listings 0.666666666666 When did Hawaii become a state? -> $x: ($x, find, hawaii) -> (Rent listings, found in, Hawaii) -> Rent listings (3686ms) When did Hawaii become a state? a debate plant 0.666666666666 When did Hawaii become a state? -> $x: ($x, found, hawaii) -> (a debate plant, found in, hawaii) -> a debate plant (3652ms) When did Hawaii become a state? Thuringia 0.666666666666 When did Hawaii become a state? -> $x: ($x, size be, hawaii) -> (Thuringia, is a similar size to, Hawaii) -> Thuringia (3564ms) When did Hawaii become a state? the largest Nudibranch 0.666666666666 When did Hawaii become a state? -> $x: ($x, find, hawaii) -> (the largest Nudibranch, found in, Hawaii) -> the largest Nudibranch (3546ms) When did Hawaii become a state? Obama 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Obama, heading to, Hawaii) -> Obama (3659ms) When did Hawaii become a state? Hawaii?s schools 0.666666666666 When did Hawaii become a state? -> $x: ($x, found, hawaii) -> (Hawaii?s schools, found, Hawaii) -> Hawaii?s schools (3622ms) When did Hawaii become a state? the best flower place I?ve 0.666666666666 When did Hawaii become a state? -> $x: ($x, found, hawaii) -> (the best flower place I?ve, found in, Hawaii) -> the best flower place I?ve (3673ms) When did Hawaii become a state? Ralisia 0.666666666666 When did Hawaii become a state? -> $x: ($x, find, hawaii) -> (Ralisia, found in, Hawaii) -> Ralisia (3590ms) When did Hawaii become a state? Jerry and Soozi Pate 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Jerry and Soozi Pate, were headed to, Hawaii) -> Jerry and Soozi Pate (3555ms) When did Hawaii become a state? hula 0.666666666666 When did Hawaii become a state? -> $x: ($x, found, hawaii) -> (hula, found in, Hawaii) -> hula (3598ms) When did Hawaii become a state? American Samoa Togiola Tulafono 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (American Samoa Togiola Tulafono, has headed to, Hawaii) -> American Samoa Togiola Tulafono (3645ms) When did Hawaii become a state? The Serengeti National park 0.666666666666 When did Hawaii become a state? -> $x: ($x, size, hawaii) -> (The Serengeti National park, is almost the size of, Hawaii) -> The Serengeti National park (3692ms) When did Hawaii become a state? food 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (food, is headed in, Hawaii) -> food (3659ms) When did Hawaii become a state? the ice form 0.666666666666 When did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (the ice form, is primarily found in, Hawaii) -> the ice form (3598ms) When did Hawaii become a state? The proposed island 0.666666666666 When did Hawaii become a state? -> $x: ($x, size, hawaii) -> (The proposed island, would be the size of, Hawaii) -> The proposed island (3673ms) When did Hawaii become a state? sad devastation 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (sad devastation, is headed towards, Hawaii) -> sad devastation (3546ms) When did Hawaii become a state? a tsunami 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (a tsunami, is heading for, Hawaii) -> a tsunami (3573ms) When did Hawaii become a state? out 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (out, is headed to, Hawaii) -> out (3555ms) When did Hawaii become a state? The two species 0.666666666666 When did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (The two species, found in, Hawaii) -> The two species (3680ms) When did Hawaii become a state? a plane 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (a plane, heading to, Hawaii) -> a plane (3590ms) When did Hawaii become a state? a plant 0.666666666666 When did Hawaii become a state? -> $x: ($x, find, hawaii) -> (a plant, found in, Hawaii) -> a plant (3637ms) When did Hawaii become a state? the other flowers 0.666666666666 When did Hawaii become a state? -> $x: ($x, found in, hawaii) -> (the other flowers, found in, Hawaii) -> the other flowers (3686ms) When did Hawaii become a state? Boner 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Boner, headed to, Hawaii) -> Boner (3680ms) When did Hawaii become a state? Stanford 0.666666666666 When did Hawaii become a state? -> $x: ($x, head, hawaii) -> (Stanford, headed for, Hawaii) -> Stanford (3528ms) When did Hawaii become a state? U.S.A. 0.44444444445199993 When did Hawaii become a state? -> $x: (hawaii, be state of, $x) -> (Hawaii, is the 50th state of, U.S.A.) -> U.S.A. (3693ms) When did Hawaii become a state? The Union 0.44444444445199993 When did Hawaii become a state? -> $x: (hawaii, be state of, $x) -> (' Hawaii, Is A State Of, The Union) -> The Union (3698ms) When did Hawaii become a state? Hawaii Dept 0.44444444445199993 When did Hawaii become a state? -> $x: (hawaii, be state of, $x) -> (all green coffee leaving Hawaii, must be State of, Hawaii Dept) -> Hawaii Dept (3693ms) When did Hawaii become a state? mind 0.44444444445199993 When did Hawaii become a state? -> $x: (hawaii, be state of, $x) -> (your Hawaii beach vacation, is all a state of, mind) -> mind (3703ms) When did Hawaii become a state? the art 0.44444444445199993 When did Hawaii become a state? -> $x: (hawaii, be state of, $x) -> (these Hawaii Helicopter Tours, are state of, the art) -> the art (3698ms) When did Hawaii become a state? United States 0.44444444445199993 When did Hawaii become a state? -> $x: (hawaii, be state of, $x) -> (Hawaii, is the only state of, United States) -> United States (3707ms) When did Hawaii become a state? the usa 0.44444444445199993 When did Hawaii become a state? -> $x: (hawaii, be state of, $x) -> (Hawaii, being the 50th State of, the usa) -> the usa (3693ms) When did Hawaii become a state? kaneohe 0.44444444445199993 When did Hawaii become a state? -> $x: (hawaii, be state of, $x) -> (HAWAII, is the capital city of the state or province, kaneohe) -> kaneohe (3707ms) When did Hawaii become a state? now 0.44444444445199993 When did Hawaii become a state? -> $x: (hawaii, be state of, $x) -> (Hawaii, is part of the United States, now) -> now (3703ms) When did Hawaii become a state? the union 0.44444444445199993 When did Hawaii become a state? -> $x: (hawaii, be state of, $x) -> (Hawaii, is the 50th state of, the union) -> the union (3703ms) When did Hawaii become a state? islands 0.44444444445199993 When did Hawaii become a state? -> $x: (hawaii, be state of, $x) -> (Hawaii, is a state comprised of, islands) -> islands (3703ms) When did Hawaii become a state? fresh produce 0.44444444445199993 When did Hawaii become a state? -> $x: (hawaii, be state of, $x) -> (Hawaii, is a state full of, fresh produce) -> fresh produce (3703ms) When did Hawaii become a state? the USA , right 0.44444444445199993 When did Hawaii become a state? -> $x: (hawaii, be state of, $x) -> (Hawaii, is the 50th state of, the USA , right) -> the USA , right (3693ms) When did Hawaii become a state? the 50 United States 0.44444444445199993 When did Hawaii become a state? -> $x: (hawaii, be state of, $x) -> (Hawaii, is the last state of, the 50 United States) -> the 50 United States (3703ms) When did Hawaii become a state? USA 0.44444444445199993 When did Hawaii become a state? -> $x: (hawaii, be state of, $x) -> (Hawaii USA, is the state of, USA) -> USA (3698ms) When did Hawaii become a state? rugged slopes 0.44444444445199993 When did Hawaii become a state? -> $x: (hawaii, be state of, $x) -> (Hawaii, is a state of, rugged slopes) -> rugged slopes (3698ms) When did Hawaii become a state? the US. 0.44444444445199993 When did Hawaii become a state? -> $x: (hawaii, be state of, $x) -> (Hawaii, is the 50th state of, the US.) -> the US. (3707ms) When did Hawaii become a state? choice 0.44444444445199993 When did Hawaii become a state? -> $x: (hawaii, be state of, $x) -> (Hawaii, has been the state of, choice) -> choice (3707ms) When did Hawaii become a state? The united states 0.44444444445199993 When did Hawaii become a state? -> $x: (hawaii, be state of, $x) -> (THAT HAWAII, IS A STATE OF, The united states) -> The united states (3698ms) When did Hawaii become a state? Roger B. Evans 0.22222222222099997 When did Hawaii become a state? -> $x: ($x, found, state of hawaii) -> (Roger B. Evans, can be found on Wikipedia at, http://en.wikipedia.org/wiki/United%20States%20House%20of%20Representatives%20elections%20in%20Hawaii,%202008) -> Roger B. Evans (3707ms) When did Hawaii become a state? the best beaches -0.0 When did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai Water Safety Task Force, Find, the best beaches) -> the best beaches (3766ms) When did Hawaii become a state? http://en.wikipedia.org/wiki/Spelaeorchestia -0.0 When did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai Cave Amphipod, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Spelaeorchestia) -> http://en.wikipedia.org/wiki/Spelaeorchestia (3766ms) When did Hawaii become a state? Viator Links & -0.0 When did Hawaii become a state? -> $x: (kauai, found, $x) -> (More Kauai Resources, Find Things to Do, Viator Links &) -> Viator Links & (3767ms) When did Hawaii become a state? http://en.wikipedia.org/wiki/Kaua%CA%BBi%20%CA%BBAkialoa -0.0 When did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai 'Akialoa, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Kaua%CA%BBi%20%CA%BBAkialoa) -> http://en.wikipedia.org/wiki/Kaua%CA%BBi%20%CA%BBAkialoa (3767ms) When did Hawaii become a state? pattern -0.0 When did Hawaii become a state? -> $x: (kauai, found, $x) -> (more Kauai, found, pattern) -> pattern (3766ms) When did Hawaii become a state? an underwater paradise -0.0 When did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai, find, an underwater paradise) -> an underwater paradise (3766ms) When did Hawaii become a state? Holoholoku -0.0 When did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kaua'i, can be found at, Holoholoku) -> Holoholoku (3767ms) When did Hawaii become a state? cheap car rental rates -0.0 When did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai car rental discounts, find, cheap car rental rates) -> cheap car rental rates (3767ms) When did Hawaii become a state? residential homes -0.0 When did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai real estate listings, find, residential homes) -> residential homes (3766ms) When did Hawaii become a state? the beaten path -0.0 When did Hawaii become a state? -> $x: (kauai, found, $x) -> (Our Kauai rentals, are found off, the beaten path) -> the beaten path (3767ms) When did Hawaii become a state? http://en.wikipedia.org/wiki/Kauai%20County,%20Hawaii -0.0 When did Hawaii become a state? -> $x: (kauai, found, $x) -> (kauai county, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Kauai%20County,%20Hawaii) -> http://en.wikipedia.org/wiki/Kauai%20County,%20Hawaii (3767ms) When did Hawaii become a state? Kapaa Kauai -0.0 When did Hawaii become a state? -> $x: (kauai, found in, $x) -> (text/html Kapaa Kauai Hotels, Find hotels in, Kapaa Kauai) -> Kapaa Kauai (3767ms) When did Hawaii become a state? vacation rentals & condos -0.0 When did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai Island, find special deals on, vacation rentals & condos) -> vacation rentals & condos (3767ms) When did Hawaii become a state? http://en.wikipedia.org/wiki/Kauai%20County%20Police%20Department -0.0 When did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai County Police Department, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Kauai%20County%20Police%20Department) -> http://en.wikipedia.org/wiki/Kauai%20County%20Police%20Department (3767ms) When did Hawaii become a state? patrolling -0.0 When did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai, was found, patrolling) -> patrolling (3766ms) When did Hawaii become a state? the booking letters -0.0 When did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai, will be found on, the booking letters) -> the booking letters (3766ms) When did Hawaii become a state? trout -0.0 When did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai visitors, find, trout) -> trout (3766ms) When did Hawaii become a state? http://en.wikipedia.org/wiki/Kaua%CA%BBi%20%CA%BB%C5%8C%CA%BB%C5%8D -0.0 When did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai Oo, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Kaua%CA%BBi%20%CA%BB%C5%8C%CA%BB%C5%8D) -> http://en.wikipedia.org/wiki/Kaua%CA%BBi%20%CA%BB%C5%8C%CA%BB%C5%8D (3767ms) When did Hawaii become a state? Rentalo.com -0.0 When did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai lodgings, can be found on, Rentalo.com) -> Rentalo.com (3767ms) When did Hawaii become a state? the midst -0.0 When did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai, found in, the midst) -> the midst (3767ms) When did Hawaii become a state? resorts -0.0 When did Hawaii become a state? -> $x: (kauai, found in, $x) -> (Kauai, can be found in, resorts) -> resorts (3766ms) When did Hawaii become a state? http://en.wikipedia.org/wiki/Kaua%CA%BBi%20cave%20wolf%20spider -0.0 When did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai cave wolf spider, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Kaua%CA%BBi%20cave%20wolf%20spider) -> http://en.wikipedia.org/wiki/Kaua%CA%BBi%20cave%20wolf%20spider (3766ms) When did Hawaii become a state? Oahu -0.0 When did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai, can also be found on, Oahu) -> Oahu (3767ms) When did Hawaii become a state? the beaches -0.0 When did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai shells, can also be found on, the beaches) -> the beaches (3766ms) When did Hawaii become a state? NOAA biologists -0.0 When did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai pup, was found by, NOAA biologists) -> NOAA biologists (3767ms) When did Hawaii become a state? kayaking -0.0 When did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai you?ll, find, kayaking) -> kayaking (3767ms) When did Hawaii become a state? http://en.wikipedia.org/wiki/Kaua%CA%BBi%20Nukupu%CA%BBu -0.0 When did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai Nukupu'u, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Kaua%CA%BBi%20Nukupu%CA%BBu) -> http://en.wikipedia.org/wiki/Kaua%CA%BBi%20Nukupu%CA%BBu (3766ms) When did Hawaii become a state? the southern shore -0.0 When did Hawaii become a state? -> $x: (kauai, found, $x) -> (Kauai, is found along, the southern shore) -> the southern shore (3767ms) When did Hawaii become a state? Cheap UK Flights -0.0 When did Hawaii become a state? -> $x: (kauai, found, $x) -> (even more Kauai adventur, Find, Cheap UK Flights) -> Cheap UK Flights (3766ms) Why is the sun yellow? every society -0.888888888889 Why is the sun yellow? -> $x: (yellow, be sun in, $x) -> (Yellow, is associated with the sun In, every society) -> every society (766ms) Why is the sun yellow? a planet -1.1111111111110001 Why is the sun yellow? -> $x: ($x, orbit, yellow) -> (a planet, orbiting, a yellow star) -> a planet (915ms) Why is the sun yellow? a faraway blue planet -1.1111111111110001 Why is the sun yellow? -> $x: ($x, orbit, yellow) -> (a faraway blue planet, discovered orbiting, a yellow sun) -> a faraway blue planet (916ms) Why is the sun yellow? a small planet -1.1111111111110001 Why is the sun yellow? -> $x: ($x, orbit, yellow) -> (a small planet, orbiting, a yellow star) -> a small planet (916ms) Why is the sun yellow? a Jupiter-sized gaseous planet -1.1111111111110001 Why is the sun yellow? -> $x: ($x, orbit, yellow) -> (a Jupiter-sized gaseous planet, orbiting, a yellow dwarf) -> a Jupiter-sized gaseous planet (915ms) Why is the sun yellow? the moving stars -1.1111111111110001 Why is the sun yellow? -> $x: ($x, orbit, yellow) -> (the moving stars, are actually orbiting around, the yellow cross) -> the moving stars (916ms) Why is the sun yellow? an Earth-like planet -1.1111111111110001 Why is the sun yellow? -> $x: ($x, orbit, yellow) -> (an Earth-like planet, orbiting, a yellow star) -> an Earth-like planet (916ms) Why is the sun yellow? Talasea -1.1111111111110001 Why is the sun yellow? -> $x: ($x, orbit, yellow) -> (Talasea, orbits, the yellow primary star) -> Talasea (916ms) Why is the sun yellow? the moon Phoebe -1.333333333334 Why is the sun yellow? -> $x: (yellow, orbit, $x) -> (The yellow line, shows the orbit of, the moon Phoebe) -> the moon Phoebe (1145ms) What is the population of Venezuela? Chile 1.6666666666640002 What is the population of Venezuela? -> $x: (venezuelum, be like, $x) -> (Venezuela, were growing like, Chile) -> Chile (1984ms) What is the population of Venezuela? Russia 1.6666666666640002 What is the population of Venezuela? -> $x: (venezuelum, be like, $x) -> (Venezuela, is like, Russia) -> Russia (1984ms) What is the population of Venezuela? the Paris Commune 1.6666666666640002 What is the population of Venezuela? -> $x: (venezuelum, be like, $x) -> (Venezuela, was very much like, the Paris Commune) -> the Paris Commune (1984ms) What is the population of Venezuela? Brazil 1.6666666666640002 What is the population of Venezuela? -> $x: (venezuelum, be like, $x) -> (Colombia and Venezuela, are much like, Brazil) -> Brazil (1984ms) What is the population of Venezuela? Texas 1.6666666666640002 What is the population of Venezuela? -> $x: (venezuelum, be like, $x) -> (( Venezuela, is a bit like, Texas) -> Texas (1984ms) What is the population of Venezuela? Zimbabwe 1.6666666666640002 What is the population of Venezuela? -> $x: (venezuelum, be like, $x) -> (Venezuela, will turn out to be more like, Zimbabwe) -> Zimbabwe (1984ms) What is the population of Venezuela? Cuba 1.6666666666640002 What is the population of Venezuela? -> $x: (venezuelum, be like, $x) -> (Venezuela, is nothing like, Cuba) -> Cuba (1984ms) What is the population of Venezuela? a message 1.6666666666640002 What is the population of Venezuela? -> $x: (venezuelum, be like, $x) -> (Venezuela, was like sending, a message) -> a message (1984ms) What is the population of Venezuela? Emerald Toucanets 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Emerald Toucanets, are found in, Venezuela) -> Emerald Toucanets (3347ms) What is the population of Venezuela? the Roraima formation 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (the Roraima formation, are found in, Venezuela or Guyana) -> the Roraima formation (3077ms) What is the population of Venezuela? the highest mobile penetration rates 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (the highest mobile penetration rates, can be found in, Venezuela) -> the highest mobile penetration rates (2431ms) What is the population of Venezuela? venezuela national football team 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (venezuela national football team, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Venezuela%20national%20football%20team) -> venezuela national football team (2998ms) What is the population of Venezuela? commodity quality cacao beans 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (commodity quality cacao beans, found in, Venezuela) -> commodity quality cacao beans (3077ms) What is the population of Venezuela? miss venezuela 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (miss venezuela, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Miss%20Venezuela) -> miss venezuela (3347ms) What is the population of Venezuela? about 200 different wild types 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (about 200 different wild types, found from, Venezuela) -> about 200 different wild types (2054ms) What is the population of Venezuela? Stupendemys 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Stupendemys, have been found in, Venezuela) -> Stupendemys (2998ms) What is the population of Venezuela? the 1,300 bird species 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (the 1,300 bird species, found in, Venezuela) -> the 1,300 bird species (3400ms) What is the population of Venezuela? such songs 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (such songs, are also found in, southern Venezuela) -> such songs (3400ms) What is the population of Venezuela? The other leaders 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (The other leaders, allegedly found refuge in, Venezuela) -> The other leaders (2054ms) What is the population of Venezuela? the species 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (the species, found in, Venezuela) -> the species (2998ms) What is the population of Venezuela? vuelta_a_venezuela 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (vuelta_a_venezuela, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Vuelta%20a%20Venezuela) -> vuelta_a_venezuela (3077ms) What is the population of Venezuela? Oil sands 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Oil sands, are found in, Canada and Venezuela) -> Oil sands (3347ms) What is the population of Venezuela? the highest dropping waterfalls 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (the highest dropping waterfalls, is found in, Venezuela) -> the highest dropping waterfalls (2054ms) What is the population of Venezuela? communist party of venezuela 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (communist party of venezuela, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Communist%20Party%20of%20Venezuela) -> communist party of venezuela (3023ms) What is the population of Venezuela? leaders 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (leaders, found in, Venezuela) -> leaders (2298ms) What is the population of Venezuela? the same natives 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (the same natives, found today in, Guyana and Venezuela) -> the same natives (2431ms) What is the population of Venezuela? a law one 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (a law one, would expect to find in, Hugo Chavez?s Venezuela) -> a law one (2431ms) What is the population of Venezuela? Human Rights 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Human Rights, have repeatedly found, Venezuela responsible) -> Human Rights (3077ms) What is the population of Venezuela? Info Venezuela 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Info Venezuela, Find out more about, Venezuela) -> Info Venezuela (2297ms) What is the population of Venezuela? the northern coast 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (the northern coast, was used to found, Venezuela) -> the northern coast (2998ms) What is the population of Venezuela? Land Cruisers 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Land Cruisers, quickly found their way to, Venezuela) -> Land Cruisers (3023ms) What is the population of Venezuela? the capability 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (the capability, found in, Venezuela) -> the capability (3023ms) What is the population of Venezuela? Wilson Ramos 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Wilson Ramos, found safe in, Venezuela) -> Wilson Ramos (3023ms) What is the population of Venezuela? Iran 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Iran, has actually found in, Venezuela) -> Iran (2431ms) What is the population of Venezuela? various animals 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (various animals, found, quick-frozen Venezuela) -> various animals (2298ms) What is the population of Venezuela? L & L International 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (L & L International, find, VenezuelaUsed Aircraft) -> L & L International (3077ms) What is the population of Venezuela? concerned Colombian rebels 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (concerned Colombian rebels, are finding refuge in, Venezuela) -> concerned Colombian rebels (2298ms) What is the population of Venezuela? The Andean Condor 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (The Andean Condor, can be found in, Venezuela) -> The Andean Condor (3347ms) What is the population of Venezuela? The vast majority 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (The vast majority, is found in, Canada and Venezuela) -> The vast majority (3347ms) What is the population of Venezuela? amethystinus 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (amethystinus, is found in, Venezuela) -> amethystinus (3399ms) What is the population of Venezuela? Roman coins 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Roman coins, have been found in, Venezuela and Maine) -> Roman coins (2431ms) What is the population of Venezuela? the bodies of the three victims 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (the bodies of the three victims, were found in, Venezuela) -> the bodies of the three victims (2999ms) What is the population of Venezuela? university professor 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (university professor, can find a counterpart in, Venezuela) -> university professor (2999ms) What is the population of Venezuela? Lichen genus 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Lichen genus, found in, Venezuela) -> Lichen genus (2054ms) What is the population of Venezuela? The species 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (The species, is found in, Venezuela) -> The species (2054ms) What is the population of Venezuela? Bermuda 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Bermuda, have been found overseas in, Venezuela) -> Bermuda (2053ms) What is the population of Venezuela? Reformed Catholic Church 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Reformed Catholic Church, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Reformed%20Catholic%20Church%20(Venezuela)) -> Reformed Catholic Church (3023ms) What is the population of Venezuela? Ojeda 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Ojeda, finds, the Guinanas and Venezuela) -> Ojeda (3399ms) What is the population of Venezuela? several species 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (several species, found in, Venezuela) -> several species (2298ms) What is the population of Venezuela? you?ll 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (you?ll, find valuable advices about, venezuela travel) -> you?ll (3023ms) What is the population of Venezuela? United Socialist Party of Venezuela 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (United Socialist Party of Venezuela, can be found on Wikipedia at, http://en.wikipedia.org/wiki/United%20Socialist%20Party%20of%20Venezuela) -> United Socialist Party of Venezuela (2298ms) What is the population of Venezuela? the Cuban Government 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (the Cuban Government, found in, Hugo Chavez?s Venezuela) -> the Cuban Government (3399ms) What is the population of Venezuela? the three victims 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (the three victims, were found in, Venezuela) -> the three victims (3347ms) What is the population of Venezuela? Fast 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Fast, Find by using, Drop-down Box Venezuela) -> Fast (2998ms) What is the population of Venezuela? the commission 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (the commission, found against, Venezuela) -> the commission (3399ms) What is the population of Venezuela? An arm 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (An arm, found off the coast of, Venezuela) -> An arm (2054ms) What is the population of Venezuela? an Atlantic island 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (an Atlantic island, found north of, Venezuela) -> an Atlantic island (2998ms) What is the population of Venezuela? heavy bituminous oil 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (heavy bituminous oil, found chiefly in, Canada and Venezuela) -> heavy bituminous oil (3347ms) What is the population of Venezuela? Phoberomys 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Phoberomys, was found in, Venezuela) -> Phoberomys (3077ms) What is the population of Venezuela? Fidel Castro 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Fidel Castro, has found a new economic sponsor in, Venezuela) -> Fidel Castro (3023ms) What is the population of Venezuela? lobbying government 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (lobbying government, can be found in, Venezuela) -> lobbying government (2431ms) What is the population of Venezuela? Dependencias Federales 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Dependencias Federales, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Federal%20Dependencies%20of%20Venezuela) -> Dependencias Federales (2054ms) What is the population of Venezuela? Smart phones 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Smart phones, have found wide acceptance in, Venezuela) -> Smart phones (3347ms) What is the population of Venezuela? Anti-Semitism 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Anti-Semitism, is routinely found in, Venezuela) -> Anti-Semitism (3399ms) What is the population of Venezuela? milk , meat and toilet paper 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (milk , meat and toilet paper, are hard to find in, Venezuela) -> milk , meat and toilet paper (3399ms) What is the population of Venezuela? D. biflora 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (D. biflora, found in, Venezuela) -> D. biflora (2431ms) What is the population of Venezuela? Punto 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Punto, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Punto%20(Venezuela)) -> Punto (3077ms) What is the population of Venezuela? Banco de Venezuela 1.555555555553 What is the population of Venezuela? -> $x: ($x, found, venezuelum) -> (Banco de Venezuela, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Banco%20de%20Venezuela) -> Banco de Venezuela (3076ms) What is the population of Venezuela? the units 1.444444444443 What is the population of Venezuela? -> $x: (venezuelum, be size, $x) -> (Venezuela, is the size of, the units) -> the units (3423ms) What is the population of Venezuela? California 1.444444444443 What is the population of Venezuela? -> $x: (venezuelum, be size, $x) -> (Venezuela, is about twice the size of, California) -> California (3423ms) What is the population of Venezuela? the Middle East 1.444444444442 What is the population of Venezuela? -> $x: ($x, discover, venezuelum) -> (the Middle East, were discovered in, Venezuela) -> the Middle East (3423ms) What is the population of Venezuela? Oil 1.444444444442 What is the population of Venezuela? -> $x: ($x, discover, venezuelum) -> (Oil, was discovered in, Venezuela) -> Oil (3692ms) What is the population of Venezuela? Orlando A. Naranjo 1.444444444442 What is the population of Venezuela? -> $x: ($x, discover, venezuelum) -> (Orlando A. Naranjo, Astronomical objects discovered, 9357 Venezuela) -> Orlando A. Naranjo (3692ms) What is the population of Venezuela? the continent 1.444444444442 What is the population of Venezuela? -> $x: ($x, discover, venezuelum) -> (the continent, were also discovered in, Venezuela and Peru) -> the continent (3692ms) What is the population of Venezuela? 24 March television 1.444444444442 What is the population of Venezuela? -> $x: ($x, discover, venezuelum) -> (24 March television, suddenly discovered, a Venezuela) -> 24 March television (3423ms) What is the population of Venezuela? oil 1.444444444442 What is the population of Venezuela? -> $x: ($x, discover, venezuelum) -> (oil, was discovered in, nearby Venezuela) -> oil (3692ms) What is the population of Venezuela? MAN Oil 1.444444444442 What is the population of Venezuela? -> $x: ($x, discover, venezuelum) -> (MAN Oil, was first discovered in, northwestern Venezuela) -> MAN Oil (3423ms) What is the population of Venezuela? Columbus 1.444444444442 What is the population of Venezuela? -> $x: ($x, discover, venezuelum) -> (Columbus, discovered the area of, Venezuela) -> Columbus (3692ms) What is the population of Venezuela? Thirty years earlier oil 1.444444444442 What is the population of Venezuela? -> $x: ($x, discover, venezuelum) -> (Thirty years earlier oil, had been discovered in, Venezuela) -> Thirty years earlier oil (3423ms) What is the population of Venezuela? Japan 1.444444444442 What is the population of Venezuela? -> $x: ($x, discover, venezuelum) -> (Japan, discovered the beautiful side of, an often ugly Venezuela) -> Japan (3692ms) What is the population of Venezuela? BIRDWATCHING Birders 1.444444444442 What is the population of Venezuela? -> $x: ($x, discover, venezuelum) -> (BIRDWATCHING Birders, have long discovered, Venezuela) -> BIRDWATCHING Birders (3423ms) What is the population of Venezuela? the family 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (the family, is in, Venezuela) -> the family (3765ms) What is the population of Venezuela? Maracay 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Maracay, is a city located in the country, venezuela) -> Maracay (3765ms) What is the population of Venezuela? David Smilde 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (David Smilde, were in, Venezuela) -> David Smilde (3742ms) What is the population of Venezuela? the rainy season 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (the rainy season, is in, Venezuela) -> the rainy season (3776ms) What is the population of Venezuela? Irish filmmakers 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Irish filmmakers, were in, Venezuela) -> Irish filmmakers (3742ms) What is the population of Venezuela? Castro 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Castro, is in, venezuela) -> Castro (3765ms) What is the population of Venezuela? 1973 Father Aguirre 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (1973 Father Aguirre, was in, Venezuela) -> 1973 Father Aguirre (3754ms) What is the population of Venezuela? the Moras 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (the Moras, are in, Venezuela) -> the Moras (3776ms) What is the population of Venezuela? Iranian?s president 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Iranian?s president, is in, Venezuela) -> Iranian?s president (3754ms) What is the population of Venezuela? Puerto La Cruz 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Puerto La Cruz, is a city located in the country, venezuela) -> Puerto La Cruz (3742ms) What is the population of Venezuela? the FARC 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (the FARC, are in, Venezuela) -> the FARC (3692ms) What is the population of Venezuela? the situation 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (the situation, is in, Venezuela) -> the situation (3731ms) What is the population of Venezuela? Gaddafi 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Gaddafi, was in, Venezuela) -> Gaddafi (3765ms) What is the population of Venezuela? Chavez 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Chavez, is in, Venezuela) -> Chavez (3765ms) What is the population of Venezuela? Lula 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Lula, was in, Venezuela) -> Lula (3743ms) What is the population of Venezuela? Iranian President Mahmoud Ahmadinejad 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Iranian President Mahmoud Ahmadinejad, is in, Venezuela) -> Iranian President Mahmoud Ahmadinejad (3731ms) What is the population of Venezuela? the world gas proved reserve 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (the world gas proved reserve, are in, Venezuela) -> the world gas proved reserve (3765ms) What is the population of Venezuela? yesterday 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (yesterday, was in, Venezuela) -> yesterday (3731ms) What is the population of Venezuela? Ramos 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Ramos, was in, Venezuela) -> Ramos (3776ms) What is the population of Venezuela? the wife 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (the wife, is in, Venezuela) -> the wife (3776ms) What is the population of Venezuela? Standard 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Standard, was in, Venezuela) -> Standard (3731ms) What is the population of Venezuela? 1997 and 1998 Economides 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (1997 and 1998 Economides, was in, Venezuela) -> 1997 and 1998 Economides (3754ms) What is the population of Venezuela? the other two 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (the other two, are in, Venezuela) -> the other two (3776ms) What is the population of Venezuela? Hugo Chavez 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Hugo Chavez, is in, Venezuela) -> Hugo Chavez (3765ms) What is the population of Venezuela? The order 's first house outside India 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (The order 's first house outside India, was in, Venezuela) -> The order 's first house outside India (3753ms) What is the population of Venezuela? Assad 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Assad, is in, Venezuela) -> Assad (3754ms) What is the population of Venezuela? Ahmadinejad 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Ahmadinejad, was in, Venezuela) -> Ahmadinejad (3776ms) What is the population of Venezuela? Rabbani 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Rabbani, was in, Venezuela) -> Rabbani (3776ms) What is the population of Venezuela? The projects 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (The projects, are in, Venezuela) -> The projects (3776ms) What is the population of Venezuela? General 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (General, is a specific automobile maker dealer in, venezuela) -> General (3742ms) What is the population of Venezuela? The CRP 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (The CRP, is in, Venezuela) -> The CRP (3731ms) What is the population of Venezuela? former KGB operative Vladimir Putin 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (former KGB operative Vladimir Putin, was in, Venezuela) -> former KGB operative Vladimir Putin (3765ms) What is the population of Venezuela? Ahmadi-Nejad 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Ahmadi-Nejad, was in, Venezuela) -> Ahmadi-Nejad (3692ms) What is the population of Venezuela? Carl Tranter MSC 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Carl Tranter MSC, were in, Venezuela) -> Carl Tranter MSC (3731ms) What is the population of Venezuela? the Hoff 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (the Hoff, is in down in, Venezuela) -> the Hoff (3754ms) What is the population of Venezuela? FARC members 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (FARC members, are in, Venezuela) -> FARC members (3731ms) What is the population of Venezuela? Dyer 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Dyer, was in, Venezuela) -> Dyer (3731ms) What is the population of Venezuela? four 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (four, were in, Venezuela) -> four (3742ms) What is the population of Venezuela? Latin America 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Latin America, was in, Venezuela) -> Latin America (3765ms) What is the population of Venezuela? the victim 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (the victim, was in, Venezuela) -> the victim (3765ms) What is the population of Venezuela? An example 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (An example, is in, Venezuela) -> An example (3731ms) What is the population of Venezuela? 42,000 Cuban collaborators 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (42,000 Cuban collaborators, are in, Venezuela) -> 42,000 Cuban collaborators (3765ms) What is the population of Venezuela? the delegation 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (the delegation, was in, Venezuela) -> the delegation (3731ms) What is the population of Venezuela? Jay 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Jay, was in, Venezuela) -> Jay (3776ms) What is the population of Venezuela? Chris?s first job 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Chris?s first job, was in, Venezuela) -> Chris?s first job (3692ms) What is the population of Venezuela? Two Russian Tu-160 strategic bombers 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Two Russian Tu-160 strategic bombers, were in, Venezuela) -> Two Russian Tu-160 strategic bombers (3742ms) What is the population of Venezuela? Ceren 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Ceren, was in, Venezuela) -> Ceren (3742ms) What is the population of Venezuela? Morales 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Morales, is in, Venezuela) -> Morales (3731ms) What is the population of Venezuela? owner Walter Stipa 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (owner Walter Stipa, was in, Venezuela) -> owner Walter Stipa (3754ms) What is the population of Venezuela? Merida 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Merida, is a city located in the country, venezuela) -> Merida (3731ms) What is the population of Venezuela? Home Run Derby Ozzie 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Home Run Derby Ozzie, is in, Venezuela) -> Home Run Derby Ozzie (3743ms) What is the population of Venezuela? Cuyagua 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Cuyagua, is in, Venezuela) -> Cuyagua (3743ms) What is the population of Venezuela? human rights 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (human rights, are in, Venezuela) -> human rights (3743ms) What is the population of Venezuela? ?The dam 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (?The dam, is in, Venezuela) -> ?The dam (3754ms) What is the population of Venezuela? Robinson 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Robinson, was in, Venezuela) -> Robinson (3765ms) What is the population of Venezuela? The cheapest petrol 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (The cheapest petrol, was in, Venezuela) -> The cheapest petrol (3742ms) What is the population of Venezuela? Asprilla 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Asprilla, was in, Venezuela) -> Asprilla (3753ms) What is the population of Venezuela? an oil company 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (an oil company, are in, Venezuela) -> an oil company (3742ms) What is the population of Venezuela? 2008 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (2008, is in, Venezuela) -> 2008 (3743ms) What is the population of Venezuela? India 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (India, was in, Venezuela) -> India (3753ms) What is the population of Venezuela? Hunton 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Hunton, was in, Venezuela) -> Hunton (3731ms) What is the population of Venezuela? the month Darby 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (the month Darby, was in, Venezuela) -> the month Darby (3753ms) What is the population of Venezuela? STATES 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (STATES, is a state or province located in the geopolitical location, venezuela) -> STATES (3731ms) What is the population of Venezuela? Products 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Products, is a product produced in, venezuela) -> Products (3753ms) What is the population of Venezuela? a guy 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (a guy, was in, Venezuela) -> a guy (3754ms) What is the population of Venezuela? Colonel Gaddafi 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Colonel Gaddafi, is in, Venezuela) -> Colonel Gaddafi (3754ms) What is the population of Venezuela? Sheehan 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Sheehan, was in, Venezuela) -> Sheehan (3776ms) What is the population of Venezuela? either shortwave 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (either shortwave, AM in, Venezuela) -> either shortwave (3765ms) What is the population of Venezuela? the development effort 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (the development effort, is in, Venezuela) -> the development effort (3765ms) What is the population of Venezuela? Caracas 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Caracas, is in, Venezuela) -> Caracas (3776ms) What is the population of Venezuela? The family 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (The family, was in, Venezuela) -> The family (3743ms) What is the population of Venezuela? The Caribbean Islands 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (The Caribbean Islands, are in, Venezuela) -> The Caribbean Islands (3731ms) What is the population of Venezuela? Suriname 1.2222222222210002 What is the population of Venezuela? -> $x: ($x, be in, venezuelum) -> (Suriname, are in, Venezuela) -> Suriname (3743ms) What is the population of Venezuela? the ?Bolivarian Republic 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now called, the ?Bolivarian Republic) -> the ?Bolivarian Republic (3887ms) What is the population of Venezuela? 513 billion barrels 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now thought to contain, 513 billion barrels) -> 513 billion barrels (3904ms) What is the population of Venezuela? The U.S. 0.555555555554 What is the population of Venezuela? -> $x: ($x, be do, venezuelum) -> (The U.S., is attempting to do in, Venezuela) -> The U.S. (3912ms) What is the population of Venezuela? the United Staes 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (venezuela, are now a threat to, the United Staes) -> the United Staes (3920ms) What is the population of Venezuela? Have students 0.555555555554 What is the population of Venezuela? -> $x: ($x, found, maracaibo) -> (Have students, find, Lake Maracaibo) -> Have students (3927ms) What is the population of Venezuela? once-abundant coffee and sugar 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now short of, once-abundant coffee and sugar) -> once-abundant coffee and sugar (3879ms) What is the population of Venezuela? an observer member 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now, an observer member) -> an observer member (3879ms) What is the population of Venezuela? branding 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, are now being subjected to, branding) -> branding (3927ms) What is the population of Venezuela? MARACAIBO 0.555555555554 What is the population of Venezuela? -> $x: ($x, found, maracaibo) -> (MARACAIBO, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Maracaibo) -> MARACAIBO (3897ms) What is the population of Venezuela? HD 0.555555555554 What is the population of Venezuela? -> $x: ($x, found, maracaibo) -> (HD, has also been found in, the Lake Maracaibo region) -> HD (3887ms) What is the population of Venezuela? a more vulnerable position 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now in, a more vulnerable position) -> a more vulnerable position (3920ms) What is the population of Venezuela? interest 0.555555555554 What is the population of Venezuela? -> $x: ($x, found, maracaibo) -> (interest, can be found outside, Maracaibo) -> interest (3927ms) What is the population of Venezuela? just look 0.555555555554 What is the population of Venezuela? -> $x: ($x, be do, venezuelum) -> (just look, is doing in, Venezuela) -> just look (3879ms) What is the population of Venezuela? socialism 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, now is the debate about, socialism) -> socialism (3879ms) What is the population of Venezuela? critical condition 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now in, critical condition) -> critical condition (3879ms) What is the population of Venezuela? Arkansas 0.555555555554 What is the population of Venezuela? -> $x: ($x, be do, venezuelum) -> (Arkansas, has been doing business in, Venezuela) -> Arkansas (3927ms) What is the population of Venezuela? 26 million 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, have population of, $x) -> (Venezuela, has a population of over, 26 million) -> 26 million (3912ms) What is the population of Venezuela? a dictatorship 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now, a dictatorship) -> a dictatorship (3904ms) What is the population of Venezuela? comment 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now available for, comment) -> comment (3895ms) What is the population of Venezuela? bigger oil reserves 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now considered to have, bigger oil reserves) -> bigger oil reserves (3912ms) What is the population of Venezuela? a few years 0.555555555554 What is the population of Venezuela? -> $x: ($x, be do, venezuelum) -> (a few years, is being done intensively in, Venezuela) -> a few years (3887ms) What is the population of Venezuela? the Entry Portal 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now, the Entry Portal) -> the Entry Portal (3887ms) What is the population of Venezuela? the Netherlands Antilles 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now part of, the Netherlands Antilles) -> the Netherlands Antilles (3920ms) What is the population of Venezuela? jail 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now in, jail) -> jail (3912ms) What is the population of Venezuela? Spanish rule 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, was now free of, Spanish rule) -> Spanish rule (3920ms) What is the population of Venezuela? new elections 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now nearing, new elections) -> new elections (3895ms) What is the population of Venezuela? Uruguay 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now essentially tied with, Uruguay) -> Uruguay (3887ms) What is the population of Venezuela? 92 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now at nearly, 92) -> 92 (3920ms) What is the population of Venezuela? The surgeries 0.555555555554 What is the population of Venezuela? -> $x: ($x, be do, venezuelum) -> (The surgeries, are done in, Caracas Venezuela) -> The surgeries (3904ms) What is the population of Venezuela? grabs 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now up for, grabs) -> grabs (3904ms) What is the population of Venezuela? a pipeline 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (China competition Venezuela, is now studying, a pipeline) -> a pipeline (3920ms) What is the population of Venezuela? a very good position 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now in, a very good position) -> a very good position (3920ms) What is the population of Venezuela? lake maracaibo 0.555555555554 What is the population of Venezuela? -> $x: ($x, found, maracaibo) -> (lake maracaibo, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Lake%20Maracaibo) -> lake maracaibo (3912ms) What is the population of Venezuela? Roger 0.555555555554 What is the population of Venezuela? -> $x: ($x, be do, venezuelum) -> (Roger, was doing volunteer work in, Venezuela) -> Roger (3920ms) What is the population of Venezuela? 23916810 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, have population of, $x) -> (Venezuela, has an approximate population of, 23916810) -> 23916810 (3887ms) What is the population of Venezuela? half 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (the east , Venezuela ,, is now the departure point for, half) -> half (3920ms) What is the population of Venezuela? 67 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela?s murder rate, is now, 67) -> 67 (3904ms) What is the population of Venezuela? 29 million people 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, have population of, $x) -> (Venezuela, has a population of about, 29 million people) -> 29 million people (3904ms) What is the population of Venezuela? the Political Administrative Chamber 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now before, the Political Administrative Chamber) -> the Political Administrative Chamber (3879ms) What is the population of Venezuela? the world leader 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now, the world leader) -> the world leader (3895ms) What is the population of Venezuela? one million people 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, have population of, $x) -> (Venezuela, has a population of approximately, one million people) -> one million people (3912ms) What is the population of Venezuela? active users 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, have number of, $x) -> (?Venezuela, has increased its number of, active users) -> active users (3887ms) What is the population of Venezuela? the second round 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now 3-3 in, the second round) -> the second round (3887ms) What is the population of Venezuela? victims 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, have number of, $x) -> (Venezuela, has been three times the number of, victims) -> victims (3919ms) What is the population of Venezuela? China 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now exporting to, China) -> China (3920ms) What is the population of Venezuela? the Iberian Peninsula 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now either part of, the Iberian Peninsula) -> the Iberian Peninsula (3927ms) What is the population of Venezuela? the hands 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (?Venezuela?s gold, is now in, the hands) -> the hands (3904ms) What is the population of Venezuela? English 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, now am reading in, English) -> English (3887ms) What is the population of Venezuela? twenty federal states 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now composed of, twenty federal states) -> twenty federal states (3887ms) What is the population of Venezuela? the Americas 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now the Palestinian State of, the Americas) -> the Americas (3927ms) What is the population of Venezuela? income 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, have distribution of, $x) -> (2008 Venezuela, had the most equal distribution of, income) -> income (3904ms) What is the population of Venezuela? controversial reforms 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, have number of, $x) -> (Venezuela, has undertaken a number of, controversial reforms) -> controversial reforms (3895ms) What is the population of Venezuela? the ashes 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now rising out of, the ashes) -> the ashes (3887ms) What is the population of Venezuela? American hegemony 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now a target of, American hegemony) -> American hegemony (3912ms) What is the population of Venezuela? trade 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (OPEC-member Venezuela, are now the three pillars of, trade) -> trade (3895ms) What is the population of Venezuela? land reform 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now instituting, land reform) -> land reform (3927ms) What is the population of Venezuela? universities 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, have number of, $x) -> (Venezuela, has a number of, universities) -> universities (3895ms) What is the population of Venezuela? more than 30 countries 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela campaign, is now active in, more than 30 countries) -> more than 30 countries (3879ms) What is the population of Venezuela? participation 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is more active now with, participation) -> participation (3895ms) What is the population of Venezuela? computer 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, have now been linked together by, computer) -> computer (3920ms) What is the population of Venezuela? the side 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now a major thorn in, the side) -> the side (3879ms) What is the population of Venezuela? an arms depot 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now openly evolving into, an arms depot) -> an arms depot (3912ms) What is the population of Venezuela? such a complex situation 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now passing through, such a complex situation) -> such a complex situation (3879ms) What is the population of Venezuela? The EU 0.555555555554 What is the population of Venezuela? -> $x: ($x, size be, venezuelum) -> (The EU, is only a medium-sized trading partner for, Venezuela) -> The EU (3904ms) What is the population of Venezuela? Global Brand Leader responsible globally 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now, Global Brand Leader responsible globally) -> Global Brand Leader responsible globally (3895ms) What is the population of Venezuela? Bolivar 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now the state of, Bolivar) -> Bolivar (3904ms) What is the population of Venezuela? Gazprom 0.555555555554 What is the population of Venezuela? -> $x: ($x, be do, venezuelum) -> (Gazprom, has been doing in, Venezuela) -> Gazprom (3920ms) What is the population of Venezuela? the most important developments 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now one of, the most important developments) -> the most important developments (3912ms) What is the population of Venezuela? December 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now confirmed for, December) -> December (3879ms) What is the population of Venezuela? Alluvial soils 0.555555555554 What is the population of Venezuela? -> $x: ($x, found, maracaibo) -> (Alluvial soils, are found in, the southern Maracaibo Lowlands) -> Alluvial soils (3920ms) What is the population of Venezuela? a fat version 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now run by, a fat version) -> a fat version (3887ms) What is the population of Venezuela? civil war 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now edging closer to, civil war) -> civil war (3927ms) What is the population of Venezuela? the development 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela and Iran, are now collaborating on, the development) -> the development (3927ms) What is the population of Venezuela? a failed state 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now, a failed state) -> a failed state (3904ms) What is the population of Venezuela? Spain 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, now is trying to work out a deal with, Spain) -> Spain (3895ms) What is the population of Venezuela? a claim 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now seeking to exercise, a claim) -> a claim (3912ms) What is the population of Venezuela? the riches man 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, now may be, the riches man) -> the riches man (3912ms) What is the population of Venezuela? 120,000 and 200,000 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now estimated at between, 120,000 and 200,000) -> 120,000 and 200,000 (3895ms) What is the population of Venezuela? Colombia 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, are now, Colombia) -> Colombia (3879ms) What is the population of Venezuela? a painful economic crisis 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now mired in, a painful economic crisis) -> a painful economic crisis (3904ms) What is the population of Venezuela? download 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela podcast, is available now to, download) -> download (3912ms) What is the population of Venezuela? an unseemly tug-of-war 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, are now engaged in, an unseemly tug-of-war) -> an unseemly tug-of-war (3920ms) What is the population of Venezuela? the process 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now in, the process) -> the process (3904ms) What is the population of Venezuela? the Pacific 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela and Cuba, are now coming into, the Pacific) -> the Pacific (3895ms) What is the population of Venezuela? business 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now open for, business) -> business (3927ms) What is the population of Venezuela? sanctuary 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now serving as, sanctuary) -> sanctuary (3912ms) What is the population of Venezuela? 92 Russian T-72 tanks 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, was now buying, 92 Russian T-72 tanks) -> 92 Russian T-72 tanks (3879ms) What is the population of Venezuela? Cuban military advisers 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, have number of, $x) -> (Venezuela, has an unknown number of, Cuban military advisers) -> Cuban military advisers (3927ms) What is the population of Venezuela? the US. 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now much closer to, the US.) -> the US. (3927ms) What is the population of Venezuela? certain counties 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela, is now selling oil to, certain counties) -> certain counties (3895ms) What is the population of Venezuela? the country 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela?s gold reserves, are now held in, the country) -> the country (3927ms) What is the population of Venezuela? Truthdig.com 0.555555555554 What is the population of Venezuela? -> $x: (venezuelum, be now, $x) -> (Venezuela?s Hugo Chavez, is now posted on, Truthdig.com) -> Truthdig.com (3879ms) What is the population of Venezuela? gasoline 0.555555555554 What is the population of Venezuela? -> $x: ($x, be do, venezuelum) -> (gasoline, as is done in, Venezuela) -> gasoline (3912ms) What is the population of Venezuela? 1914 oil 0.444444444443 What is the population of Venezuela? -> $x: ($x, discover, maracaibo) -> (1914 oil, was discovered in, the Maracaibo Basin town) -> 1914 oil (3934ms) What is the population of Venezuela? Previous international projects 0.22222222222200005 What is the population of Venezuela? -> $x: ($x, be in, maracaibo) -> (Previous international projects, were in, Maracaibo Basin) -> Previous international projects (3934ms) What is the population of Venezuela? Free Knowledge 0.22222222222200005 What is the population of Venezuela? -> $x: ($x, be in, maracaibo) -> (Free Knowledge, was recently held in, Maracaibo) -> Free Knowledge (3934ms) What is the population of Venezuela? Satan 0.22222222222200005 What is the population of Venezuela? -> $x: ($x, be in, maracaibo) -> (Satan, is frozen in, oil-rich Lake Maracaibo) -> Satan (3941ms) What is the population of Venezuela? oso 0.22222222222200005 What is the population of Venezuela? -> $x: ($x, be in, maracaibo) -> (oso, were detected in, Lake Maracaibo) -> oso (3934ms) What is the population of Venezuela? each profile 0.22222222222200005 What is the population of Venezuela? -> $x: ($x, be in, maracaibo) -> (each profile, is listed in, Maracaibo hairdresser directory) -> each profile (3941ms) What is the population of Venezuela? Darnott 0.22222222222200005 What is the population of Venezuela? -> $x: ($x, be in, maracaibo) -> (Darnott, was arrested in, Maracaibo) -> Darnott (3934ms) What is the population of Venezuela? Fernando Berendique 0.22222222222200005 What is the population of Venezuela? -> $x: ($x, be in, maracaibo) -> (Fernando Berendique, is the Chilean consul in, Maracaibo) -> Fernando Berendique (3941ms) What is the population of Venezuela? Venezuela 0.22222222222200005 What is the population of Venezuela? -> $x: ($x, be in, maracaibo) -> (Venezuela, is in, Maracaibo) -> Venezuela (3934ms) What is the population of Venezuela? 1979 0.22222222222200005 What is the population of Venezuela? -> $x: ($x, be in, maracaibo) -> (1979, was in, Maracaibo) -> 1979 (3941ms) What is the population of Venezuela? The I Infantry Division 0.22222222222200005 What is the population of Venezuela? -> $x: ($x, be in, maracaibo) -> (The I Infantry Division, is based in, Maracaibo) -> The I Infantry Division (3941ms) What is the population of Venezuela? The I Air Zone 0.22222222222200005 What is the population of Venezuela? -> $x: ($x, be in, maracaibo) -> (The I Air Zone, is headquartered in, Maracaibo) -> The I Air Zone (3934ms) What is the population of Venezuela? Urdaneta 0.22222222222200005 What is the population of Venezuela? -> $x: ($x, be in, maracaibo) -> (Urdaneta, had been born in, Maracaibo) -> Urdaneta (3934ms) What is the population of Venezuela? the win 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (the win, was, Venezuela) -> the win (3958ms) What is the population of Venezuela? list 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (list, are, Venezuela) -> list (3958ms) What is the population of Venezuela? the future 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (the future, is, Venezuela) -> the future (3964ms) What is the population of Venezuela? the same patron 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (the same patron, is, Venezuela ?) -> the same patron (3964ms) What is the population of Venezuela? The type locality 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (The type locality, is, Venezuela) -> The type locality (3948ms) What is the population of Venezuela? the dike 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (the dike, is, Venezuela) -> the dike (3958ms) What is the population of Venezuela? the main creditors 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (the main creditors, is, Venezuela) -> the main creditors (3941ms) What is the population of Venezuela? The other big factor 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (The other big factor, is, Venezuela) -> The other big factor (3953ms) What is the population of Venezuela? The countries 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (The countries, are, Venezuela) -> The countries (3953ms) What is the population of Venezuela? Makled 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (Makled, was, Venezuela) -> Makled (3941ms) What is the population of Venezuela? Avensa 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (Avensa, was, Venezuela) -> Avensa (3964ms) What is the population of Venezuela? the Baker Institute report 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (the Baker Institute report, was, Venezuela) -> the Baker Institute report (3958ms) What is the population of Venezuela? Last countries where we delivered our goods 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (Last countries where we delivered our goods, are, Venezuela) -> Last countries where we delivered our goods (3958ms) What is the population of Venezuela? the major prize 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (the major prize, is, Venezuela) -> the major prize (3958ms) What is the population of Venezuela? one of which 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (one of which, was, Venezuela) -> one of which (3953ms) What is the population of Venezuela? one member 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (one member, is, Venezuela) -> one member (3953ms) What is the population of Venezuela? A current exception 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (A current exception, is, Venezuela) -> A current exception (3958ms) What is the population of Venezuela? PDVSA 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (PDVSA, is, Venezuela) -> PDVSA (3953ms) What is the population of Venezuela? Puerto la Cruz 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (Puerto la Cruz, is, Venezuela) -> Puerto la Cruz (3953ms) What is the population of Venezuela? Last countries where we exported our goods 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (Last countries where we exported our goods, are, Venezuela) -> Last countries where we exported our goods (3964ms) What is the population of Venezuela? The Orinoco Belt 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (The Orinoco Belt, is, Venezuela) -> The Orinoco Belt (3953ms) What is the population of Venezuela? The most problematic place 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (The most problematic place, is, Venezuela) -> The most problematic place (3953ms) What is the population of Venezuela? The United States 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (The United States, is, Venezuela) -> The United States (3941ms) What is the population of Venezuela? One of them 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (One of them, is, Venezuela) -> One of them (3948ms) What is the population of Venezuela? the two main candidates 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (the two main candidates, are, Venezuela) -> the two main candidates (3958ms) What is the population of Venezuela? foreign policy 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (foreign policy, is, Venezuela) -> foreign policy (3964ms) What is the population of Venezuela? Second 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (Second, was, Venezuela) -> Second (3958ms) What is the population of Venezuela? the region 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (the region, is, Venezuela) -> the region (3964ms) What is the population of Venezuela? Energy 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (Energy, is, Venezuela) -> Energy (3958ms) What is the population of Venezuela? SPanish 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (SPanish, is the language of the country, venezuela) -> SPanish (3964ms) What is the population of Venezuela? 2907 Offline Lincs 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (2907 Offline Lincs, is, Venezuela) -> 2907 Offline Lincs (3948ms) What is the population of Venezuela? Latin American 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (Latin American, is, Venezuela) -> Latin American (3964ms) What is the population of Venezuela? The setting 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (The setting, is, Venezuela) -> The setting (3958ms) What is the population of Venezuela? story 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (story, Is, Venezuela) -> story (3964ms) What is the population of Venezuela? Last countries where we delivered our items 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (Last countries where we delivered our items, are, Venezuela) -> Last countries where we delivered our items (3964ms) What is the population of Venezuela? one of the countries 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (one of the countries, is, Venezuela) -> one of the countries (3948ms) What is the population of Venezuela? Last countries where we sold our items 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (Last countries where we sold our items, are, Venezuela) -> Last countries where we sold our items (3958ms) What is the population of Venezuela? 75 years 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (75 years, are, Venezuela) -> 75 years (3948ms) What is the population of Venezuela? question 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (question, is, Venezuela) -> question (3948ms) What is the population of Venezuela? Last countries where we sold our goods 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (Last countries where we sold our goods, are, Venezuela) -> Last countries where we sold our goods (3941ms) What is the population of Venezuela? Bernardo Alvarez Herrera 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (Bernardo Alvarez Herrera, is, Venezuela) -> Bernardo Alvarez Herrera (3948ms) What is the population of Venezuela? The exception 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (The exception, is, Venezuela) -> The exception (3958ms) What is the population of Venezuela? the most immediate example 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (the most immediate example, is, Venezuela) -> the most immediate example (3941ms) What is the population of Venezuela? The archipelago 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (The archipelago, is, Venezuela) -> The archipelago (3941ms) What is the population of Venezuela? the month 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (the month, was, Venezuela) -> the month (3948ms) What is the population of Venezuela? fourteen months 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (fourteen months, was, Venezuela) -> fourteen months (3964ms) What is the population of Venezuela? stake 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (stake, is, Venezuela) -> stake (3953ms) What is the population of Venezuela? One example 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (One example, is, Venezuela) -> One example (3953ms) What is the population of Venezuela? ENglish 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (ENglish, is the language of the country, venezuela) -> ENglish (3941ms) What is the population of Venezuela? The Mexican-owned Cemex 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (The Mexican-owned Cemex, is, Venezuela) -> The Mexican-owned Cemex (3948ms) What is the population of Venezuela? the other border 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (the other border, is, Venezuela) -> the other border (3953ms) What is the population of Venezuela? Angel Falls 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (Angel Falls, is, Venezuela) -> Angel Falls (3958ms) What is the population of Venezuela? trouble 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (trouble, is, Venezuela) -> trouble (3968ms) What is the population of Venezuela? 2003 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (2003, were, Venezuela) -> 2003 (3958ms) What is the population of Venezuela? the euro 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (the euro, is, Venezuela) -> the euro (3941ms) What is the population of Venezuela? The only exception 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (The only exception, is, Venezuela) -> The only exception (3948ms) What is the population of Venezuela? close 6th November 2011 Miss World 2011 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (close 6th November 2011 Miss World 2011, is, Venezuela) -> close 6th November 2011 Miss World 2011 (3964ms) What is the population of Venezuela? democracy 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (democracy, was, Venezuela) -> democracy (3969ms) What is the population of Venezuela? the compounding state of insanity 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (the compounding state of insanity, is, Venezuela) -> the compounding state of insanity (3964ms) What is the population of Venezuela? The next stop 0.22222222222100002 What is the population of Venezuela? -> $x: ($x, be be, venezuelum) -> (The next stop, is, Venezuela) -> The next stop (3953ms) What is the population of Venezuela? Cell phones -0.11111111111499994 What is the population of Venezuela? -> $x: ($x, be popular in, venezuelum) -> (Cell phones, are very popular in, Venezuela) -> Cell phones (3999ms) What is the population of Venezuela? Baseball -0.11111111111499994 What is the population of Venezuela? -> $x: ($x, be popular in, venezuelum) -> (Baseball, is a tremendously popular sport in, Venezuela) -> Baseball (3999ms) What is the population of Venezuela? the refinery -0.11111111111499994 What is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (the refinery, is imported from, Venezuela) -> the refinery (4003ms) What is the population of Venezuela? the U.S. -0.11111111111499994 What is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (the U.S., currently imports from, the Middle East or Venezuela) -> the U.S. (4003ms) What is the population of Venezuela? delicious dark chocolate -0.11111111111499994 What is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (delicious dark chocolate, imported from, Venezuela) -> delicious dark chocolate (4005ms) What is the population of Venezuela? the Caribbean countries -0.11111111111499994 What is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (the Caribbean countries, import oil from, Mexico and Venezuela) -> the Caribbean countries (4003ms) What is the population of Venezuela? free speech RCTV -0.11111111111499994 What is the population of Venezuela? -> $x: ($x, be popular in, venezuelum) -> (free speech RCTV, is the most popular station in, Venezuela) -> free speech RCTV (3995ms) What is the population of Venezuela? the oil -0.11111111111499994 What is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (the oil, imported from, Venezuela) -> the oil (3999ms) What is the population of Venezuela? vegetables -0.11111111111499994 What is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (vegetables, are imported from, venezuela) -> vegetables (4003ms) What is the population of Venezuela? Visual arts and handicrafts -0.11111111111499994 What is the population of Venezuela? -> $x: ($x, be popular in, venezuelum) -> (Visual arts and handicrafts, are popular in, Venezuela) -> Visual arts and handicrafts (3995ms) What is the population of Venezuela? baseball -0.11111111111499994 What is the population of Venezuela? -> $x: ($x, be popular in, venezuelum) -> (baseball, is widely popular in, Venezuela and Cuba) -> baseball (4003ms) What is the population of Venezuela? crude oil -0.11111111111499994 What is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (crude oil, imported from, Venezuela) -> crude oil (4005ms) What is the population of Venezuela? Santana -0.11111111111499994 What is the population of Venezuela? -> $x: ($x, be popular in, venezuelum) -> (Santana, is a popular spokesman in, his native Venezuela) -> Santana (3999ms) What is the population of Venezuela? the rest -0.11111111111499994 What is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (the rest, is imported from, Venezuela) -> the rest (3999ms) What is the population of Venezuela? The other 50 percent -0.11111111111499994 What is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (The other 50 percent, is usually imported from, Venezuela) -> The other 50 percent (3995ms) What is the population of Venezuela? Castroite practice -0.11111111111499994 What is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (Castroite practice, has been imported to, Venezuela) -> Castroite practice (3999ms) What is the population of Venezuela? U.S. oil -0.11111111111499994 What is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (U.S. oil, is imported from, Venezuela) -> U.S. oil (4003ms) What is the population of Venezuela? America -0.11111111111499994 What is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (America, currently imports from, the Middle East and Venezuela) -> America (4003ms) What is the population of Venezuela? a box of the best -0.11111111111499994 What is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (a box of the best, imported from, Belgium , France or Venezuela) -> a box of the best (3995ms) What is the population of Venezuela? Bonaire -0.11111111111499994 What is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (Bonaire, are imported from, Venezuela) -> Bonaire (4003ms) What is the population of Venezuela? M?rida -0.11111111111499994 What is the population of Venezuela? -> $x: ($x, be popular in, venezuelum) -> (M?rida, is the most popular tourist destination in, Venezuela) -> M?rida (4003ms) What is the population of Venezuela? three-holed razor blades -0.11111111111499994 What is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (three-holed razor blades, imported from, Venezuela) -> three-holed razor blades (3995ms) What is the population of Venezuela? three females -0.11111111111499994 What is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (three females, were imported from, Venezuela) -> three females (4003ms) What is the population of Venezuela? ground corn dough -0.11111111111499994 What is the population of Venezuela? -> $x: ($x, be popular in, venezuelum) -> (ground corn dough, is very popular in, Venezuela) -> ground corn dough (3999ms) What is the population of Venezuela? Plastic surgery -0.11111111111499994 What is the population of Venezuela? -> $x: ($x, be popular in, venezuelum) -> (Plastic surgery, is extremely popular in, Venezuela) -> Plastic surgery (4005ms) What is the population of Venezuela? the vehicle -0.11111111111499994 What is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (the vehicle, is imported into, Venezuela) -> the vehicle (4003ms) What is the population of Venezuela? A new price control law -0.11111111111499994 What is the population of Venezuela? -> $x: ($x, effect, venezuelum) -> (A new price control law, takes effect in, Venezuela) -> A new price control law (4003ms) What is the population of Venezuela? the amount -0.11111111111499994 What is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (the amount, imported from, the Middle East and Venezuela) -> the amount (4003ms) What is the population of Venezuela? RFG -0.11111111111499994 What is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (RFG, imported from, Venezuela) -> RFG (3995ms) What is the population of Venezuela? The group -0.11111111111499994 What is the population of Venezuela? -> $x: ($x, be popular in, venezuelum) -> (The group, was particularly popular in, Venezuela) -> The group (4003ms) What is the population of Venezuela? petroleum -0.11111111111499994 What is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (petroleum, imported from, Venezuela) -> petroleum (3995ms) What is the population of Venezuela? fuel -0.11111111111499994 What is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (fuel, imported from, Venezuela) -> fuel (4003ms) What is the population of Venezuela? the amount of oil -0.11111111111499994 What is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (the amount of oil, import from, Venezuela) -> the amount of oil (3999ms) What is the population of Venezuela? CITGO oil -0.11111111111499994 What is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (CITGO oil, is imported from, Venezuela) -> CITGO oil (4005ms) What is the population of Venezuela? barrels CITGO oil -0.11111111111499994 What is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (barrels CITGO oil, is imported from, Venezuela) -> barrels CITGO oil (3999ms) What is the population of Venezuela? the Rio Caribe Superior bar -0.11111111111499994 What is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (the Rio Caribe Superior bar, are imported from, Venezuela) -> the Rio Caribe Superior bar (3999ms) What is the population of Venezuela? The following items -0.11111111111499994 What is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (The following items, may be imported into, Venezuela) -> The following items (4003ms) What is the population of Venezuela? Much smaller amounts -0.11111111111499994 What is the population of Venezuela? -> $x: ($x, import, venezuelum) -> (Much smaller amounts, were imported from, Venezuela) -> Much smaller amounts (3995ms) What is the population of Venezuela? PDVSA rolls -0.444444444445 What is the population of Venezuela? -> $x: (maracaibo, be now, $x) -> (Lake Maracaibo, is now underway as, PDVSA rolls) -> PDVSA rolls (4015ms) What is the population of Venezuela? Carnival -0.6666666666879999 What is the population of Venezuela? -> $x: ($x, be holiday in, venezuelum) -> (Carnival, is the major holiday in, Venezuela) -> Carnival (4020ms) What is the population of Venezuela? Monday 6 January -0.6666666666879999 What is the population of Venezuela? -> $x: ($x, be holiday in, venezuelum) -> (Monday 6 January, was a public holiday in, Venezuela) -> Monday 6 January (4020ms) What is the population of Venezuela? Maracaibo -0.777777777778 What is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (Maracaibo, hence is classed among, the Maracaibo types) -> Maracaibo (4024ms) What is the population of Venezuela? true Cru -0.777777777778 What is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (true Cru, is, the Maracaibo) -> true Cru (4023ms) What is the population of Venezuela? Coffee -0.777777777778 What is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (Coffee, is also carried to, Maracaibo) -> Coffee (4022ms) What is the population of Venezuela? The present producing area -0.777777777778 What is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (The present producing area, is, the Lake Maracaibo basin) -> The present producing area (4024ms) What is the population of Venezuela? the eclipse track -0.777777777778 What is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (the eclipse track, is, Maracaibo) -> the eclipse track (4023ms) What is the population of Venezuela? tanja -0.777777777778 What is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (tanja, was, the maracaibo) -> tanja (4022ms) What is the population of Venezuela? the first dive -0.777777777778 What is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (the first dive, was made at, Maracaibo Bricks) -> the first dive (4023ms) What is the population of Venezuela? The phenomenon -0.777777777778 What is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (The phenomenon, has also been called, the Maracaibo Beacon) -> The phenomenon (4022ms) What is the population of Venezuela? the west -0.777777777778 What is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (the west, are located, Maracaibo) -> the west (4023ms) What is the population of Venezuela? the storm -0.777777777778 What is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (the storm, is also known as, the Maracaibo Beacon) -> the storm (4023ms) What is the population of Venezuela? The Makaren family -0.777777777778 What is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (The Makaren family, is from, Maracaibo) -> The Makaren family (4022ms) What is the population of Venezuela? El Tablazo Bay -0.777777777778 What is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (El Tablazo Bay, is now considered part of, Lake Maracaibo) -> El Tablazo Bay (4023ms) What is the population of Venezuela? Lama-1 and Lama Lago -0.777777777778 What is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (Lama-1 and Lama Lago, are situated at, Lake Maracaibo) -> Lama-1 and Lama Lago (4022ms) What is the population of Venezuela? Bracho -0.777777777778 What is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (Bracho, is originally from, Maracaibo) -> Bracho (4022ms) What is the population of Venezuela? the northwest coast -0.777777777778 What is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (the northwest coast, is, the Depresi?n de Maracaibo) -> the northwest coast (4023ms) What is the population of Venezuela? Catatumbo -0.777777777778 What is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (Catatumbo, is an area around, Lago Maracaibo famous) -> Catatumbo (4024ms) What is the population of Venezuela? The well -0.777777777778 What is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (The well, will be drilled at, Lake Maracaibo) -> The well (4024ms) What is the population of Venezuela? Patricia -0.777777777778 What is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (Patricia, was from, Maracaibo) -> Patricia (4022ms) What is the population of Venezuela? The International Airports -0.777777777778 What is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (The International Airports, are, Caracas , Cabello and Maracaibo) -> The International Airports (4022ms) What is the population of Venezuela? Cucuta -0.777777777778 What is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (Cucuta, was united to, Maracaibo) -> Cucuta (4022ms) What is the population of Venezuela? The 19-year-old beauty -0.777777777778 What is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (The 19-year-old beauty, is a native of, Maracaibo) -> The 19-year-old beauty (4023ms) What is the population of Venezuela? Cucuta coffees -0.777777777778 What is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (Cucuta coffees, are generally classified among, the Maracaibos) -> Cucuta coffees (4022ms) What is the population of Venezuela? El Colombiano -0.777777777778 What is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (El Colombiano, was certainly equal to, Maracaibo) -> El Colombiano (4024ms) What is the population of Venezuela? Julia -0.777777777778 What is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (Julia, was born, Maracaibo) -> Julia (4024ms) What is the population of Venezuela? the high Andean ranges -0.777777777778 What is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (the high Andean ranges, are, Lake Maracaibo) -> the high Andean ranges (4022ms) What is the population of Venezuela? The five-foot-nine , 216-pounder -0.777777777778 What is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (The five-foot-nine , 216-pounder, is originally from, Maracaibo) -> The five-foot-nine , 216-pounder (4024ms) What is the population of Venezuela? The second largest city -0.777777777778 What is the population of Venezuela? -> $x: ($x, be be, maracaibo) -> (The second largest city, is, Maracaibo) -> The second largest city (4023ms) What is the population of Venezuela? the shoes -0.8888888888890001 What is the population of Venezuela? -> $x: ($x, be history of, venezuelum) -> (the shoes, has been the history of, Venezuela) -> the shoes (4024ms) What's the abbreviation for limited partnership? Climate 0.22222222221999996 What's the abbreviation for limited partnership? -> $x: ($x, be initial of, partnership) -> (Climate, is the initial project of, a new partnership) -> Climate (603ms) What's the abbreviation for limited partnership? LEL -0.555555555555 What's the abbreviation for limited partnership? -> $x: ($x, be abbreviation for, limited) -> (LEL, is an abbreviation for, Lower Explosive Limit) -> LEL (667ms) What's the abbreviation for limited partnership? LS -0.555555555555 What's the abbreviation for limited partnership? -> $x: ($x, be abbreviation for, limited) -> (LS, is the abbreviation for, " Limited Series) -> LS (667ms) What's the abbreviation for limited partnership? LLC -0.555555555555 What's the abbreviation for limited partnership? -> $x: ($x, be abbreviation for, limited) -> (LLC, is an abbreviation for, Limited Liability Company) -> LLC (667ms) Who is the airport named after? the first Kenyan prime minister 0.777777777778 Who is the airport named after? -> $x: (airport, be name after, $x) -> (The airport, is named after, the first Kenyan prime minister) -> the first Kenyan prime minister (1005ms) Who is the airport named after? an MP 0.777777777778 Who is the airport named after? -> $x: (airport, be name after, $x) -> (The airport, is named after, an MP) -> an MP (1005ms) Who is the airport named after? Louis Armstrong 0.777777777778 Who is the airport named after? -> $x: (airport, be name after, $x) -> (This airport, was named after, Louis Armstrong) -> Louis Armstrong (850ms) Who is the airport named after? the village 0.777777777778 Who is the airport named after? -> $x: (airport, be name after, $x) -> (The airport, is named after, the village) -> the village (1005ms) Who is the airport named after? Israel 0.777777777778 Who is the airport named after? -> $x: (airport, be name after, $x) -> (The airport, is named after, Israel) -> Israel (850ms) Who is the airport named after? Mother Teresa 0.777777777778 Who is the airport named after? -> $x: (airport, be name after, $x) -> (The airport, was named after, Mother Teresa) -> Mother Teresa (851ms) Who is the airport named after? Bauerfield 0.777777777778 Who is the airport named after? -> $x: (airport, be name after, $x) -> (The airport, is named after, Bauerfield) -> Bauerfield (851ms) Who is the airport named after? politician 0.777777777778 Who is the airport named after? -> $x: (airport, be name after, $x) -> (The airport, is named after, politician) -> politician (851ms) Who is the airport named after? Enrique Olaya Herrera 0.777777777778 Who is the airport named after? -> $x: (airport, be name after, $x) -> (The airport, is named after, Enrique Olaya Herrera) -> Enrique Olaya Herrera (1005ms) Who is the airport named after? the first Tanzanian President 0.777777777778 Who is the airport named after? -> $x: (airport, be name after, $x) -> (The airport, is named after, the first Tanzanian President) -> the first Tanzanian President (851ms) Who is the airport named after? the President 0.777777777778 Who is the airport named after? -> $x: (airport, be name after, $x) -> (This airport, is named after, the President) -> the President (1005ms) Who is the airport named after? the hamlet Heath Row 0.777777777778 Who is the airport named after? -> $x: (airport, be name after, $x) -> (The airport, was named after, the hamlet Heath Row) -> the hamlet Heath Row (1005ms) Who is the airport named after? John Foster Dulles 0.777777777778 Who is the airport named after? -> $x: (airport, be name after, $x) -> (The airport, is named after, John Foster Dulles) -> John Foster Dulles (1005ms) Who is the airport named after? the small village 0.777777777778 Who is the airport named after? -> $x: (airport, be name after, $x) -> (The airport, is named after, the small village) -> the small village (850ms) Who is the airport named after? the hamlet 0.777777777778 Who is the airport named after? -> $x: (airport, be name after, $x) -> (The airport, was named after, the hamlet) -> the hamlet (1005ms) When was PBGC established? PBGC?s Web site 0.333333333334 When was PBGC established? -> $x: (pbgc, be found on, $x) -> (PBGC?s strategic plan, may be found on, PBGC?s Web site) -> PBGC?s Web site (933ms) When was PBGC established? pension insurance 0.333333333333 When was PBGC established? -> $x: ($x, find, pbgc) -> (pension insurance, also may be found on, PBGC) -> pension insurance (933ms) When was PBGC established? Further information 0.333333333333 When was PBGC established? -> $x: ($x, find, pbgc) -> (Further information, may be found on, the PBGC Web site) -> Further information (933ms) When was PBGC established? PBGC?s Inspector General 0.333333333333 When was PBGC established? -> $x: ($x, find, pbgc) -> (PBGC?s Inspector General, found, improper PBGC management) -> PBGC?s Inspector General (933ms) When was PBGC established? PBGC?s strategic plan 0.333333333333 When was PBGC established? -> $x: ($x, find, pbgc) -> (PBGC?s strategic plan, may be found on, PBGC?s Web site) -> PBGC?s strategic plan (933ms) When was PBGC established? 1974 0.111111111111 When was PBGC established? -> $x: (pbgc, be form in, $x) -> (The PBGC, was formed in, 1974) -> 1974 (933ms) When was PBGC established? Congress -0.0 When was PBGC established? -> $x: (pbgc, establish, $x) -> (The PBGC, was established by, Congress) -> Congress (964ms) When was PBGC established? An allowance -0.0 When was PBGC established? -> $x: ($x, establish, pbgc) -> (An allowance, has been established on, PBGC) -> An allowance (964ms) When was PBGC established? the Employee Retirement Income Security Act -0.0 When was PBGC established? -> $x: ($x, establish, pbgc) -> (the Employee Retirement Income Security Act, established, PBGC) -> the Employee Retirement Income Security Act (1035ms) When was PBGC established? a Web page -0.0 When was PBGC established? -> $x: (pbgc, establish, $x) -> (the PBGC, established, a Web page) -> a Web page (964ms) When was PBGC established? The risk-based premium rate -0.0 When was PBGC established? -> $x: ($x, establish, pbgc) -> (The risk-based premium rate, would be established by, the PBGC) -> The risk-based premium rate (1035ms) When was PBGC established? information -0.0 When was PBGC established? -> $x: ($x, do, pbgc) -> (information, does, the PBGC request) -> information (963ms) When was PBGC established? ERISA -0.0 When was PBGC established? -> $x: (pbgc, establish, $x) -> (The PBGC, was established by, ERISA) -> ERISA (964ms) When was PBGC established? improper PBGC management -1.66666666666 When was PBGC established? -> $x: (pbgc, found, $x) -> (PBGC?s Inspector General, found, improper PBGC management) -> improper PBGC management (1071ms) When was PBGC established? the average pilot -1.66666666666 When was PBGC established? -> $x: (pbgc, found, $x) -> (the PBGC, found for, the average pilot) -> the average pilot (1035ms) When was PBGC established? the clearinghouse -1.66666666666 When was PBGC established? -> $x: (pbgc, found, $x) -> (PBGC, was unable to find through, the clearinghouse) -> the clearinghouse (1071ms) Where is the Kalahari desert? the southwest 0.111111111109 Where is the Kalahari desert? -> $x: (kalahari desert, be locate in, $x) -> (The Kalahari Desert, is located in, the southwest) -> the southwest (731ms) Where is the Kalahari desert? Southern Africa 0.111111111109 Where is the Kalahari desert? -> $x: (kalahari desert, be locate in, $x) -> (the Kalahari desert, is located in, Southern Africa) -> Southern Africa (731ms) Where is the Kalahari desert? eastern Namibia 0.111111111109 Where is the Kalahari desert? -> $x: (kalahari desert, be locate in, $x) -> (the Kalahari Desert, is located in, eastern Namibia) -> eastern Namibia (731ms) Where is the Kalahari desert? Africa 0.111111111109 Where is the Kalahari desert? -> $x: (kalahari desert, be locate in, $x) -> (The Kalahari Desert, is located in, Africa) -> Africa (731ms) Where is the Kalahari desert? the original species -0.0 Where is the Kalahari desert? -> $x: ($x, found, kalahari desert) -> (the original species, were found in, the Kalahari deserts) -> the original species (1249ms) Where is the Kalahari desert? the San -0.0 Where is the Kalahari desert? -> $x: (kalahari desert, be for, $x) -> (the Kalahari Desert, is the native place for, the San) -> the San (832ms) Where is the Kalahari desert? associate DHEA -0.0 Where is the Kalahari desert? -> $x: ($x, find, kalahari desert) -> (associate DHEA, is found in, the Kalahari Desert) -> associate DHEA (1640ms) Where is the Kalahari desert? plant -0.0 Where is the Kalahari desert? -> $x: ($x, found, kalahari desert) -> (plant, is found in, the kalahari desert of africa) -> plant (1646ms) Where is the Kalahari desert? the best effects -0.0 Where is the Kalahari desert? -> $x: (kalahari desert, be for, $x) -> (the Kalahari Desert, is used for, the best effects) -> the best effects (832ms) Where is the Kalahari desert? a normal plant -0.0 Where is the Kalahari desert? -> $x: ($x, found, kalahari desert) -> (a normal plant, can be found in, Kalahari Desert) -> a normal plant (1646ms) Where is the Kalahari desert? the browns and tans -0.0 Where is the Kalahari desert? -> $x: ($x, comprise, kalahari desert) -> (the browns and tans, comprise, the Kalahari Desert) -> the browns and tans (731ms) Where is the Kalahari desert? Hoodia Gordonii -0.0 Where is the Kalahari desert? -> $x: ($x, found, kalahari desert) -> (Hoodia Gordonii, can only be found in, Kalahari desert) -> Hoodia Gordonii (1649ms) Where is the Kalahari desert? a cactus-like , succulent plant -0.0 Where is the Kalahari desert? -> $x: ($x, found, kalahari desert) -> (a cactus-like , succulent plant, found in, the Kalahari Desert) -> a cactus-like , succulent plant (1643ms) Where is the Kalahari desert? juicy cactus -0.0 Where is the Kalahari desert? -> $x: ($x, find, kalahari desert) -> (juicy cactus, found in, Kalahari Desert) -> juicy cactus (1646ms) Where is the Kalahari desert? a succulent -0.0 Where is the Kalahari desert? -> $x: ($x, find, kalahari desert) -> (a succulent, found in, the Kalahari Desert of South Africa) -> a succulent (1643ms) Where is the Kalahari desert? Meerkats -0.0 Where is the Kalahari desert? -> $x: ($x, find, kalahari desert) -> (Meerkats, can be found in, the Kalahari Desert) -> Meerkats (1626ms) Where is the Kalahari desert? poor or damaged women -0.0 Where is the Kalahari desert? -> $x: (kalahari desert, be for, $x) -> (the Kalahari desert, is a refuge for, poor or damaged women) -> poor or damaged women (832ms) Where is the Kalahari desert? thousands -0.0 Where is the Kalahari desert? -> $x: (kalahari desert, do, $x) -> (the Kalahari desert, has done for, thousands) -> thousands (1646ms) Where is the Kalahari desert? the hoodia cactus -0.0 Where is the Kalahari desert? -> $x: ($x, found, kalahari desert) -> (the hoodia cactus, found in, the Kalahari desert) -> the hoodia cactus (1643ms) Where is the Kalahari desert? a cactus plant -0.0 Where is the Kalahari desert? -> $x: ($x, found, kalahari desert) -> (a cactus plant, is found in, the Kalahari Desert) -> a cactus plant (1646ms) Where is the Kalahari desert? an organic powder -0.0 Where is the Kalahari desert? -> $x: ($x, found, kalahari desert) -> (an organic powder, is only found in, the Kalahari Desert) -> an organic powder (1640ms) Where is the Kalahari desert? a cactus-like plant -0.0 Where is the Kalahari desert? -> $x: ($x, find, kalahari desert) -> (a cactus-like plant, found in, the Kalahari Desert) -> a cactus-like plant (1643ms) Where is the Kalahari desert? An appetite suppressant -0.0 Where is the Kalahari desert? -> $x: ($x, find, kalahari desert) -> (An appetite suppressant, found in, the African Kalahari desert) -> An appetite suppressant (1626ms) Where is the Kalahari desert? the plant -0.0 Where is the Kalahari desert? -> $x: ($x, find, kalahari desert) -> (the plant, found in, the Kalahari desert) -> the plant (1646ms) Where is the Kalahari desert? a succulent plant -0.0 Where is the Kalahari desert? -> $x: ($x, found, kalahari desert) -> (a succulent plant, can be found in, Kalahari Desert) -> a succulent plant (1646ms) Where is the Kalahari desert? luscious plant -0.0 Where is the Kalahari desert? -> $x: ($x, found, kalahari desert) -> (luscious plant, is found profoundly within, the Kalahari Desert) -> luscious plant (1649ms) Where is the Kalahari desert? An anthropologist -0.0 Where is the Kalahari desert? -> $x: ($x, do, kalahari desert) -> (An anthropologist, did a study in, the Kalahari desert) -> An anthropologist (1640ms) Where is the Kalahari desert? centuries -0.0 Where is the Kalahari desert? -> $x: (kalahari desert, be for, $x) -> (the Kalahari Desert, has actually been used for, centuries) -> centuries (832ms) Where is the Kalahari desert? the cactus plant -0.0 Where is the Kalahari desert? -> $x: ($x, found, kalahari desert) -> (the cactus plant, found in, the Kalahari Desert in South Africa) -> the cactus plant (1626ms) Where is the Kalahari desert? a cactus -0.0 Where is the Kalahari desert? -> $x: ($x, find, kalahari desert) -> (a cactus, found in, the Kalahari Desert) -> a cactus (1649ms) Where is the Kalahari desert? camels -0.0 Where is the Kalahari desert? -> $x: ($x, introduce, kalahari desert) -> (camels, were also introduced into, the Kalahari desert region) -> camels (832ms) Where is the Kalahari desert? a slender column cactus -0.0 Where is the Kalahari desert? -> $x: ($x, find, kalahari desert) -> (a slender column cactus, is found in, the Kalahari Desert) -> a slender column cactus (1646ms) Where is the Kalahari desert? Devil?s Claw -0.0 Where is the Kalahari desert? -> $x: ($x, find, kalahari desert) -> (Devil?s Claw, is found in, the harsh Kalahari Desert) -> Devil?s Claw (1646ms) Where is the Kalahari desert? Salt Pan Salt pans -0.0 Where is the Kalahari desert? -> $x: ($x, found, kalahari desert) -> (Salt Pan Salt pans, can be found throughout, the Kalahari Desert) -> Salt Pan Salt pans (1640ms) Where is the Kalahari desert? Natural hoodia -0.0 Where is the Kalahari desert? -> $x: ($x, found, kalahari desert) -> (Natural hoodia, is found in, the Kalahari Desert) -> Natural hoodia (1649ms) Where is the Kalahari desert? the San Bushmen -0.0 Where is the Kalahari desert? -> $x: ($x, find, kalahari desert) -> (the San Bushmen, found in, the Kalahari Desert) -> the San Bushmen (1646ms) Where is the Kalahari desert? South Africa -0.0 Where is the Kalahari desert? -> $x: ($x, find, kalahari desert) -> (South Africa, found in, the Kalahari Desert) -> South Africa (1643ms) Where is the Kalahari desert? more than 12.000 years -0.0 Where is the Kalahari desert? -> $x: ($x, found, kalahari desert) -> (more than 12.000 years, was found in, the Kalahari Desert) -> more than 12.000 years (1643ms) Where is the Kalahari desert? food -0.0 Where is the Kalahari desert? -> $x: ($x, find, kalahari desert) -> (food, can be found in, the Kalahari desert) -> food (1640ms) Where is the Kalahari desert? Hoodia gordonii -0.0 Where is the Kalahari desert? -> $x: ($x, found, kalahari desert) -> (Hoodia gordonii, is a succulent found in, the Kalahari Desert) -> Hoodia gordonii (1643ms) Where is the Kalahari desert? a plant -0.0 Where is the Kalahari desert? -> $x: ($x, found, kalahari desert) -> (a plant, found in, Kalahari Desert of South Africa) -> a plant (1648ms) Where is the Kalahari desert? Hoodia -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be in, kalahari desert) -> (Hoodia, has been revered in, the Kalahari Desert) -> Hoodia (1663ms) Where is the Kalahari desert? Watermelons -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (Watermelons, are native to, the Kalahari desert) -> Watermelons (1659ms) Where is the Kalahari desert? Botswana -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (Botswana, is taken up by, the Kalahari Desert) -> Botswana (1663ms) Where is the Kalahari desert? up to 70 % of Botswana -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (up to 70 % of Botswana, is covered by, the Kalahari Desert) -> up to 70 % of Botswana (1656ms) Where is the Kalahari desert? the plateau proper -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (the plateau proper, is known as, the Kalahari Desert) -> the plateau proper (1660ms) Where is the Kalahari desert? Hawaii -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (Hawaii, is antipodal to, the Kalahari Desert) -> Hawaii (1659ms) Where is the Kalahari desert? the ostrich egg -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (the ostrich egg, is now, the Kalahari Desert) -> the ostrich egg (1659ms) Where is the Kalahari desert? eastern and southern Namibia -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (eastern and southern Namibia, is covered by, the Kalahari Desert) -> eastern and southern Namibia (1660ms) Where is the Kalahari desert? Tsodilo -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (Tsodilo, is situated in, the Kalahari Desert) -> Tsodilo (1662ms) Where is the Kalahari desert? Jack?s Camp -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be in, kalahari desert) -> (Jack?s Camp, is located deep in, the Kalahari Desert) -> Jack?s Camp (1663ms) Where is the Kalahari desert? Lida -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be in, kalahari desert) -> (Lida, would be a cactus-like plant grown in, the Kalahari Desert) -> Lida (1649ms) Where is the Kalahari desert? Dq?e Qare Game Reserve -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be located in, kalahari desert) -> (Dq?e Qare Game Reserve, is located in, the Kalahari Desert) -> Dq?e Qare Game Reserve (1663ms) Where is the Kalahari desert? Hoodia plant -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (Hoodia plant, is seen in, the great Kalahari Desert) -> Hoodia plant (1660ms) Where is the Kalahari desert? San Camp -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be located in, kalahari desert) -> (San Camp, is located deep in, the Kalahari Desert) -> San Camp (1663ms) Where is the Kalahari desert? hoodia -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be in, kalahari desert) -> (hoodia, is in, the Kalahari Desert) -> hoodia (1663ms) Where is the Kalahari desert? the MM show -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be in, kalahari desert) -> (the MM show, was shot in, the Kalahari semi-desert) -> the MM show (1663ms) Where is the Kalahari desert? The plant -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (The plant, is native to, the Kalahari Desert) -> The plant (1662ms) Where is the Kalahari desert? the easternmost area -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (the easternmost area, is part of, the Kalahari Desert) -> the easternmost area (1660ms) Where is the Kalahari desert? nearly 70 percent -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (nearly 70 percent, is covered by, the Kalahari Desert) -> nearly 70 percent (1659ms) Where is the Kalahari desert? Food -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be in, kalahari desert) -> (Food, is available in, the Kalahari desert) -> Food (1651ms) Where is the Kalahari desert? Namibia -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (Namibia, is home to, the Kalahari Desert) -> Namibia (1656ms) Where is the Kalahari desert? the Okavango Delta -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be in, kalahari desert) -> (the Okavango Delta, is situated in, the Kalahari Desert) -> the Okavango Delta (1656ms) Where is the Kalahari desert? much of Botswana -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (much of Botswana, is covered by, Kalahari Desert) -> much of Botswana (1653ms) Where is the Kalahari desert? up to 70 % -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (up to 70 %, is covered by, the Kalahari Desert) -> up to 70 % (1660ms) Where is the Kalahari desert? millions -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (millions, are displaced as, the Kalahari desert expands) -> millions (1662ms) Where is the Kalahari desert? The north -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (The north, is primarily, Kalahari Desert) -> The north (1657ms) Where is the Kalahari desert? the banks -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (the banks, is the gateway to, the Kalahari Desert) -> the banks (1662ms) Where is the Kalahari desert? 70 % -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (70 %, is covered by, the Kalahari Desert) -> 70 % (1662ms) Where is the Kalahari desert? the Bushveld -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (the Bushveld, is the southern basin of, the Kalahari Desert) -> the Bushveld (1662ms) Where is the Kalahari desert? the province -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (the province, are primarily, Kalahari Desert) -> the province (1653ms) Where is the Kalahari desert? a country -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (a country, is covered in large part by, the Kalahari desert) -> a country (1663ms) Where is the Kalahari desert? course Upington -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (course Upington, is your gateway to, the Kalahari desert) -> course Upington (1653ms) Where is the Kalahari desert? satan -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be in, kalahari desert) -> (satan, were located in, the Kalahari Desert) -> satan (1660ms) Where is the Kalahari desert? the land -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (the land, is, Kalahari Desert land) -> the land (1659ms) Where is the Kalahari desert? The Bukakhwe San people -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (The Bukakhwe San people, are indigenous to, the Kalahari Desert) -> The Bukakhwe San people (1653ms) Where is the Kalahari desert? An exception -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (An exception, is, the the Kalahari Desert) -> An exception (1663ms) Where is the Kalahari desert? just less than 70 percent -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (just less than 70 percent, is covered by, the Kalahari Desert) -> just less than 70 percent (1660ms) Where is the Kalahari desert? Millions -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (Millions, are displaced as, the Kalahari desert) -> Millions (1663ms) Where is the Kalahari desert? a year-out -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (a year-out, was traveling in, the Kalahari Desert) -> a year-out (1660ms) Where is the Kalahari desert? Devil?s Claw -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (Devil?s Claw, is indigenous to, the Kalahari Desert) -> Devil?s Claw (1663ms) Where is the Kalahari desert? The music video -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be in, kalahari desert) -> (The music video, was shot in, the Kalahari desert) -> The music video (1662ms) Where is the Kalahari desert? ostrich eggshells -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (ostrich eggshells, are common around, the Kalahari Desert) -> ostrich eggshells (1657ms) Where is the Kalahari desert? The country -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (The country, is dominated by, the Kalahari desert) -> The country (1657ms) Where is the Kalahari desert? The six foot plant -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (The six foot plant, is native to, the Kalahari Desert) -> The six foot plant (1662ms) Where is the Kalahari desert? 84 % of Botswana -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (84 % of Botswana, is covered by, the Kalahari Desert) -> 84 % of Botswana (1656ms) Where is the Kalahari desert? The easternmost area -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (The easternmost area, is part of, the Kalahari desert) -> The easternmost area (1657ms) Where is the Kalahari desert? the country -0.111111111111 Where is the Kalahari desert? -> $x: ($x, be be, kalahari desert) -> (the country, is covered by, the magnificent Kalahari Desert) -> the country (1661ms) Where is the Kalahari desert? southern Africa -0.111111111112 Where is the Kalahari desert? -> $x: (kalahari desert, be in in, $x) -> (the Kalahari Desert, is in, southern Africa) -> southern Africa (1663ms) Where is the Kalahari desert? the rough , -0.111111111112 Where is the Kalahari desert? -> $x: (kalahari desert, be in in, $x) -> (the Kalahari Desert, was a diamond in, the rough ,) -> the rough , (1663ms) Where is the Kalahari desert? popularity and usage -0.111111111112 Where is the Kalahari desert? -> $x: (kalahari desert, be in in, $x) -> (the Kalahari Desert, are growing in, popularity and usage) -> popularity and usage (1663ms) Where is the Kalahari desert? a class -0.111111111112 Where is the Kalahari desert? -> $x: (kalahari desert, be in in, $x) -> (the Kalahari Desert, is in, a class) -> a class (1663ms) Where is the Kalahari desert? the same place -0.111111111112 Where is the Kalahari desert? -> $x: (kalahari desert, be in in, $x) -> (the Kalahari desert, have been living in exactly, the same place) -> the same place (1663ms) What year was the phonograph invented? the 18th century 2.44444444445 What year was the phonograph invented? -> $x: (phonograph, be invent in, $x) -> (The phonograph, was invented in, the 18th century) -> the 18th century (777ms) What year was the phonograph invented? the 1820s 2.44444444445 What year was the phonograph invented? -> $x: (phonograph, be invent in, $x) -> (the phonograph, actually had been invented in, the 1820s) -> the 1820s (777ms) What year was the phonograph invented? 1877 2.44444444445 What year was the phonograph invented? -> $x: (phonograph, be invent in, $x) -> (The phonograph, was invented in, 1877) -> 1877 (777ms) What year was the phonograph invented? the printing press 1.9999999999979998 What year was the phonograph invented? -> $x: ($x, be invent, phonograph) -> (the printing press, was invented before, the phonograph) -> the printing press (777ms) What year was the phonograph invented? Bell 1.9999999999979998 What year was the phonograph invented? -> $x: ($x, be invent, phonograph) -> (Bell, was to inventing, the phonograph) -> Bell (777ms) What year was the phonograph invented? Manhattan 1.8888888888839999 What year was the phonograph invented? -> $x: (phonograph, be make in, $x) -> (The very first jazz phonograph record, was made in, Manhattan) -> Manhattan (1291ms) What year was the phonograph invented? the inventor Thomas Alva Edison 1.8888888888839999 What year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (the inventor Thomas Alva Edison, invented, the Phonograph) -> the inventor Thomas Alva Edison (1294ms) What year was the phonograph invented? 294565691 In 1877 Thomas Edison 1.8888888888839999 What year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (294565691 In 1877 Thomas Edison, invented, the phonograph) -> 294565691 In 1877 Thomas Edison (1291ms) What year was the phonograph invented? Thomas 1.8888888888839999 What year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (Thomas, invented, the phonograph) -> Thomas (1291ms) What year was the phonograph invented? significant inventions 1.8888888888839999 What year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (significant inventions, invented, the phonograph record disc) -> significant inventions (1069ms) What year was the phonograph invented? Charles Cros 1.8888888888839999 What year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (Charles Cros, invented, the phonograph) -> Charles Cros (1294ms) What year was the phonograph invented? Mr. Edison 1.8888888888839999 What year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (Mr. Edison, invented, the phonograph) -> Mr. Edison (956ms) What year was the phonograph invented? Leon Scott 1.8888888888839999 What year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (Leon Scott, invented, the phonograph) -> Leon Scott (1295ms) What year was the phonograph invented? the First Pirates Thomas Edison 1.8888888888839999 What year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (the First Pirates Thomas Edison, invented, the first phonograph) -> the First Pirates Thomas Edison (1138ms) What year was the phonograph invented? a thousand patents 1.8888888888839999 What year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (a thousand patents, invented, the phonograph) -> a thousand patents (1252ms) What year was the phonograph invented? Thomas A. Edison 1.8888888888839999 What year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (Thomas A. Edison, invented, the phonograph) -> Thomas A. Edison (1294ms) What year was the phonograph invented? ? Edison 1.8888888888839999 What year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (? Edison, also invented, the phonograph) -> ? Edison (956ms) What year was the phonograph invented? Thomas Edison 1.8888888888839999 What year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (Thomas Edison, invented, the ?tinfoil phonograph?) -> Thomas Edison (1295ms) What year was the phonograph invented? Thomas Alva Edison 1.8888888888839999 What year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (Thomas Alva Edison, invented, Phonograph) -> Thomas Alva Edison (1295ms) What year was the phonograph invented? Edison 1.8888888888839999 What year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (Edison, had invented, the phonograph) -> Edison (1294ms) What year was the phonograph invented? 1878 Thomas Edison 1.8888888888839999 What year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (1878 Thomas Edison, invented, the phonograph) -> 1878 Thomas Edison (1252ms) What year was the phonograph invented? 130 years 1.8888888888839999 What year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (130 years, invented, the phonograph) -> 130 years (1252ms) What year was the phonograph invented? the Edison 1.8888888888839999 What year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (the Edison, invented, the phonograph) -> the Edison (1294ms) What year was the phonograph invented? Thomas Edison?s 1.8888888888839999 What year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (Thomas Edison?s, invented, the phonograph) -> Thomas Edison?s (1291ms) What year was the phonograph invented? the day Edison 1.8888888888839999 What year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (the day Edison, invented, the phonograph) -> the day Edison (1252ms) What year was the phonograph invented? a man 1.8888888888839999 What year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (a man, invented, the phonograph) -> a man (1069ms) What year was the phonograph invented? an art? 1.8888888888839999 What year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (an art?, Invented, the phonograph) -> an art? (956ms) What year was the phonograph invented? Alexander Graham Bell 1.8888888888839999 What year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (Alexander Graham Bell, invented, the phonograph) -> Alexander Graham Bell (1294ms) What year was the phonograph invented? the Opera House 1.8888888888839999 What year was the phonograph invented? -> $x: (phonograph, be make in, $x) -> (the phonograph, was made in, the Opera House) -> the Opera House (1295ms) What year was the phonograph invented? WhenEdison 1.8888888888839999 What year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (WhenEdison, invented, the phonograph) -> WhenEdison (1069ms) What year was the phonograph invented? Benjamin Franklin 1.8888888888839999 What year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (Benjamin Franklin, invented, the phonograph) -> Benjamin Franklin (1069ms) What year was the phonograph invented? the greatest inventors 1.8888888888839999 What year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (the greatest inventors, invented, the phonograph) -> the greatest inventors (956ms) What year was the phonograph invented? fortunes 1.8888888888839999 What year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (fortunes, invented, the phonograph) -> fortunes (956ms) What year was the phonograph invented? Restoration Photos Thomas Edison 1.8888888888839999 What year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (Restoration Photos Thomas Edison, invented, the phonograph) -> Restoration Photos Thomas Edison (1138ms) What year was the phonograph invented? Menlo Park 1.8888888888839999 What year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (Menlo Park, Invented, the phonograph) -> Menlo Park (1291ms) What year was the phonograph invented? 1877 Thomas Edison 1.8888888888839999 What year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (1877 Thomas Edison, invented, the phonograph) -> 1877 Thomas Edison (1291ms) What year was the phonograph invented? Camden 1.8888888888839999 What year was the phonograph invented? -> $x: (phonograph, be make in, $x) -> (The first phonograph records, were made in, Camden) -> Camden (1294ms) What year was the phonograph invented? Edison Invents 1.8888888888839999 What year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (Edison Invents, invented, the phonograph) -> Edison Invents (1291ms) What year was the phonograph invented? 1877 Edison 1.8888888888839999 What year was the phonograph invented? -> $x: ($x, invent, phonograph) -> (1877 Edison, invented, the phonograph) -> 1877 Edison (1294ms) What year was the phonograph invented? tin foil 1.44444444444 What year was the phonograph invented? -> $x: (phonograph, be make on, $x) -> (phonograph cylinders, were made on, tin foil) -> tin foil (1295ms) What year was the phonograph invented? schedule 1.44444444444 What year was the phonograph invented? -> $x: (phonograph, be make on, $x) -> (Phonograph records, are made on, schedule) -> schedule (1295ms) What year was the phonograph invented? 1959 1.44444444444 What year was the phonograph invented? -> $x: (phonograph, start in, $x) -> (Phonographs and records, started circulating in, 1959) -> 1959 (1295ms) What year was the phonograph invented? 1938 0.22222222222599997 What year was the phonograph invented? -> $x: ($x, introduce, phonograph) -> (1938, introduced, a phonograph slot machine) -> 1938 (1297ms) What year was the phonograph invented? The company 0.22222222222599997 What year was the phonograph invented? -> $x: ($x, introduce, phonograph) -> (The company, introduced a line of, phonograph cartridges) -> The company (1295ms) What year was the phonograph invented? me and Henry Horsecollar 0.22222222222599997 What year was the phonograph invented? -> $x: ($x, introduce, phonograph) -> (me and Henry Horsecollar, introduced, the phonograph) -> me and Henry Horsecollar (1295ms) What year was the phonograph invented? Mariar 0.22222222222599997 What year was the phonograph invented? -> $x: ($x, introduce, phonograph) -> (Mariar, introduces to, the Phonograph public) -> Mariar (1297ms) What year was the phonograph invented? 1925 0.22222222222599997 What year was the phonograph invented? -> $x: ($x, introduce, phonograph) -> (1925, had introduced its own line of, phonographs) -> 1925 (1297ms) What year was the phonograph invented? RCA Victor 0.22222222222599997 What year was the phonograph invented? -> $x: ($x, introduce, phonograph) -> (RCA Victor, introduced, the first 45 rpm phonographs) -> RCA Victor (1295ms) What year was the phonograph invented? 1898 ad Edison 0.22222222222599997 What year was the phonograph invented? -> $x: ($x, introduce, phonograph) -> (1898 ad Edison, introduced, a new Business Phonograph) -> 1898 ad Edison (1295ms) What year was the phonograph invented? the children 0.11111111111499994 What year was the phonograph invented? -> $x: ($x, found, phonograph) -> (the children, had found was, a 45 RPM phonograph record) -> the children (1297ms) What year was the phonograph invented? Inspiration 0.11111111111499994 What year was the phonograph invented? -> $x: ($x, found, phonograph) -> (Inspiration, has been found in, photographs and phonographs) -> Inspiration (1297ms) What year was the phonograph invented? Examples 0.11111111111499994 What year was the phonograph invented? -> $x: ($x, found, phonograph) -> (Examples, have also been found of, a wicker phonograph) -> Examples (1297ms) What year was the phonograph invented? girls 0.11111111111499994 What year was the phonograph invented? -> $x: ($x, found, phonograph) -> (girls, find, their old phonograph) -> girls (1297ms) What year was the phonograph invented? buyers 0.11111111111499994 What year was the phonograph invented? -> $x: ($x, found, phonograph) -> (buyers, found, vintage phonographs) -> buyers (1297ms) What year was the phonograph invented? c. 1930 0.11111111110499994 What year was the phonograph invented? -> $x: (phonograph, introduce, $x) -> (Electrically-powered phonographs, were introduced, c. 1930) -> c. 1930 (1298ms) What year was the phonograph invented? 1905 0.11111111110499994 What year was the phonograph invented? -> $x: (phonograph, introduce, $x) -> (A new business phonograph, was introduced in, 1905) -> 1905 (1298ms) What year was the phonograph invented? an all gum unit 0.11111111110499994 What year was the phonograph invented? -> $x: (phonograph, introduce, $x) -> (The Edison Phonograph company, introduced, an all gum unit) -> an all gum unit (1297ms) What year was the phonograph invented? the year -2.0000667788622195E-12 What year was the phonograph invented? -> $x: (phonograph, invent, $x) -> (the phonograph, was invented, the year) -> the year (1300ms) What year was the phonograph invented? 40 years -2.0000667788622195E-12 What year was the phonograph invented? -> $x: (phonograph, invent, $x) -> (Phonograph, had been invented more than, 40 years) -> 40 years (1298ms) What year was the phonograph invented? the photograph -2.0000667788622195E-12 What year was the phonograph invented? -> $x: (phonograph, invent, $x) -> (the phonograph and daguerre and niepce, invented, the photograph) -> the photograph (1300ms) What year was the phonograph invented? 1944 -2.0000667788622195E-12 What year was the phonograph invented? -> $x: (phonograph, invent, $x) -> (Phonograph technology, had already been invented by, 1944) -> 1944 (1300ms) What year was the phonograph invented? Louis T. Glass -2.0000667788622195E-12 What year was the phonograph invented? -> $x: (phonograph, invent, $x) -> (This jukebox -like phonograph, was invented by, Louis T. Glass) -> Louis T. Glass (1300ms) What year was the phonograph invented? a gramophone shop -3.000044657142098E-12 What year was the phonograph invented? -> $x: ($x, establish, phonograph) -> (a gramophone shop, then established, a phonograph factory) -> a gramophone shop (1300ms) What year was the phonograph invented? thousands of American homes -6.000089314284196E-12 What year was the phonograph invented? -> $x: (phonograph, found, $x) -> (the phonograph, could be found in, thousands of American homes) -> thousands of American homes (1300ms) What year was the phonograph invented? thousands -6.000089314284196E-12 What year was the phonograph invented? -> $x: (phonograph, found, $x) -> (the phonograph, could soon be found in, thousands) -> thousands (1300ms) What year was the phonograph invented? the scrap-heap -6.000089314284196E-12 What year was the phonograph invented? -> $x: (phonograph, found, $x) -> (the phonograph, will find its way to, the scrap-heap) -> the scrap-heap (1300ms) What year was the phonograph invented? an area -6.000089314284196E-12 What year was the phonograph invented? -> $x: (phonograph, found, $x) -> (phonograph records, have been found in, an area) -> an area (1300ms) What year was the phonograph invented? soon -6.000089314284196E-12 What year was the phonograph invented? -> $x: (phonograph, found, $x) -> (the phonograph, could be found, soon) -> soon (1300ms) What year was the phonograph invented? common use -6.000089314284196E-12 What year was the phonograph invented? -> $x: (phonograph, found, $x) -> (the phonograph, have found their way into, common use) -> common use (1300ms) What year was the phonograph invented? the mid 1800s Thomas Edison -0.1111111111130001 What year was the phonograph invented? -> $x: ($x, create, phonograph) -> (the mid 1800s Thomas Edison, created, the first phonograph) -> the mid 1800s Thomas Edison (1300ms) What year was the phonograph invented? Smetzer -0.1111111111130001 What year was the phonograph invented? -> $x: ($x, create, phonograph) -> (Smetzer, created, a phonograph) -> Smetzer (1300ms) What year was the phonograph invented? an album -0.1111111111130001 What year was the phonograph invented? -> $x: ($x, create, phonograph) -> (an album, creates a sepia toned mood of, old phonographs) -> an album (1300ms) What year was the phonograph invented? Paper Airplane Competitions -0.1111111111130001 What year was the phonograph invented? -> $x: ($x, create, phonograph) -> (Paper Airplane Competitions, Create, a phonograph) -> Paper Airplane Competitions (1300ms) What team drafted Brett Favre? GB 0.888888888886 What team drafted Brett Favre? -> $x: ($x, draft, favre) -> (GB, had drafted, Favre) -> GB (738ms) What team drafted Brett Favre? the Falcons 0.888888888886 What team drafted Brett Favre? -> $x: ($x, draft, favre) -> (the Falcons, drafted, Brett Favre) -> the Falcons (738ms) What team drafted Brett Favre? The Atlanta Falcons 0.888888888886 What team drafted Brett Favre? -> $x: ($x, draft, favre) -> (The Atlanta Falcons, drafted, QB Brett Favre) -> The Atlanta Falcons (738ms) What team drafted Brett Favre? New Packers general manager Ron Wolf 0.888888888886 What team drafted Brett Favre? -> $x: ($x, draft, favre) -> (New Packers general manager Ron Wolf, had wanted to draft, Favre) -> New Packers general manager Ron Wolf (738ms) What team drafted Brett Favre? The CS 0.5555555555539999 What team drafted Brett Favre? -> $x: ($x, manage, brett farve) -> (The CS, managed to transform, Brett Farve) -> The CS (765ms) What team drafted Brett Favre? Stuckey -0.11111111111200003 What team drafted Brett Favre? -> $x: ($x, happen to, favre) -> (Stuckey, just happened to catch, a Favre heave) -> Stuckey (833ms) What team drafted Brett Favre? No 1 month -0.11111111111200003 What team drafted Brett Favre? -> $x: ($x, happen to, favre) -> (No 1 month, is going to happen with, Brett Favre) -> No 1 month (833ms) What team drafted Brett Favre? 1 touchdown -0.11111111111200003 What team drafted Brett Favre? -> $x: ($x, happen to, favre) -> (1 touchdown, happened to be, Favre?s 500th touchdown pass) -> 1 touchdown (833ms) What team drafted Brett Favre? the hell -0.11111111111200003 What team drafted Brett Favre? -> $x: ($x, happen to, favre) -> (the hell, happened to, Favre) -> the hell (833ms) What team drafted Brett Favre? no doubt -0.22222222222300003 What team drafted Brett Favre? -> $x: ($x, be team, favre) -> (no doubt, be a better team with, Favre) -> no doubt (833ms) What team drafted Brett Favre? the Packers -0.22222222222300003 What team drafted Brett Favre? -> $x: ($x, be team, favre) -> (the Packers, are a better team with, Brett Favre) -> the Packers (833ms) What team drafted Brett Favre? the Vikings -0.22222222222300003 What team drafted Brett Favre? -> $x: ($x, be team, favre) -> (the Vikings, are a better football team with, Favre) -> the Vikings (833ms) What team drafted Brett Favre? Chateau d'Angles -0.333333333333 What team drafted Brett Favre? -> $x: ($x, manage, favre) -> (Chateau d'Angles, managed by, Mr. and Mrs. Favre) -> Chateau d'Angles (850ms) What team drafted Brett Favre? The Saints ? Defense -0.333333333333 What team drafted Brett Favre? -> $x: ($x, manage, favre) -> (The Saints ? Defense, managed to eliminate, Brett Favre) -> The Saints ? Defense (850ms) Where does Curveball now live? a corset -1.22222222222 Where does Curveball now live? -> $x: (curveball, wear, $x) -> (his sinker and curveball, wore, a corset) -> a corset (821ms) Where does Curveball now live? 1994-11-28 -1.333333333331 Where does Curveball now live? -> $x: (curveball, date, $x) -> (Curveball, Date of first publication, 1994-11-28) -> 1994-11-28 (875ms) Where does Curveball now live? 1999-11-05 -1.333333333331 Where does Curveball now live? -> $x: (curveball, date, $x) -> (Curveball, Original air date, 1999-11-05) -> 1999-11-05 (875ms) Where does Curveball now live? 1999 -1.333333333331 Where does Curveball now live? -> $x: (curveball, date, $x) -> (Castro's Curveball: A Novel, Publication date, 1999) -> 1999 (875ms) Where does Curveball now live? 2011-11-09 -1.333333333331 Where does Curveball now live? -> $x: (curveball, date, $x) -> (Dead Man's Curveball, Original air date, 2011-11-09) -> 2011-11-09 (876ms) Where does Curveball now live? 2007 -1.333333333331 Where does Curveball now live? -> $x: (curveball, date, $x) -> (Curveball, Publication date, 2007) -> 2007 (875ms) Where does Curveball now live? 2005 -1.333333333331 Where does Curveball now live? -> $x: (curveball, date, $x) -> (Guys, Dolls, and Curveballs: Damon Runyon on Baseball, Date of first publication, 2005) -> 2005 (875ms) Where does Curveball now live? 2001-10-23 -1.333333333331 Where does Curveball now live? -> $x: (curveball, date, $x) -> (Curveball / Haiku, Release Date, 2001-10-23) -> 2001-10-23 (875ms) Where does Curveball now live? 2010-02-13 -1.333333333331 Where does Curveball now live? -> $x: (curveball, date, $x) -> (Curveballs, Original air date, 2010-02-13) -> 2010-02-13 (876ms) Where does Curveball now live? 1988 -1.333333333331 Where does Curveball now live? -> $x: (curveball, date, $x) -> (The crooked pitch: the curveball in American baseball history, Publication date, 1988) -> 1988 (875ms) Where does Curveball now live? 1984 -1.333333333331 Where does Curveball now live? -> $x: (curveball, date, $x) -> (The crooked pitch: the curveball in American baseball history, Publication date, 1984) -> 1984 (875ms) Where does Curveball now live? 2011-12-13 -1.333333333331 Where does Curveball now live? -> $x: (curveball, date, $x) -> (Curveball, Original air date, 2011-12-13) -> 2011-12-13 (875ms) Where does Curveball now live? 2006 -1.333333333331 Where does Curveball now live? -> $x: (curveball, date, $x) -> (Hitting for Excellence: Power Hitting & Conquering the Curveball, Initial release date, 2006) -> 2006 (875ms) Where does Curveball now live? 2006-05 -1.333333333331 Where does Curveball now live? -> $x: (curveball, date, $x) -> (Curveball EP, Release Date, 2006-05) -> 2006-05 (821ms) Where does Curveball now live? 1983-10-22 -1.333333333331 Where does Curveball now live? -> $x: (curveball, date, $x) -> (Voiceprints; Curveball; Goosebumps Chat; Hawk, Original air date, 1983-10-22) -> 1983-10-22 (875ms) Where does Curveball now live? 2009-05-21 -1.333333333331 Where does Curveball now live? -> $x: (curveball, date, $x) -> (Curveball, Original air date, 2009-05-21) -> 2009-05-21 (875ms) Where does Curveball now live? 1990 -1.333333333331 Where does Curveball now live? -> $x: (curveball, date, $x) -> (Curveballs: wacky facts to bat around, Publication date, 1990) -> 1990 (821ms) Where does Curveball now live? 1968 -1.333333333331 Where does Curveball now live? -> $x: (curveball, date, $x) -> (Curveball, Date of birth, 1968) -> 1968 (821ms) Where does Curveball now live? 2007-10 -1.333333333331 Where does Curveball now live? -> $x: (curveball, date, $x) -> (Curveball: Spies, Lies, and the Con Man Who Caused a War, Publication date, 2007-10) -> 2007-10 (821ms) Where does Curveball now live? 2000-09-13 -1.333333333331 Where does Curveball now live? -> $x: (curveball, date, $x) -> (Curveball, Original air date, 2000-09-13) -> 2000-09-13 (875ms) Where does Curveball now live? 2007-09-10 -1.333333333331 Where does Curveball now live? -> $x: (curveball, date, $x) -> (Curveball, Release Date, 2007-09-10) -> 2007-09-10 (876ms) Where does Curveball now live? 2008-04-27 -1.333333333331 Where does Curveball now live? -> $x: (curveball, date, $x) -> (The $30,000 Curveball, Original air date, 2008-04-27) -> 2008-04-27 (875ms) Where does Curveball now live? 2005-02 -1.333333333331 Where does Curveball now live? -> $x: (curveball, date, $x) -> (Guys, Dolls, and Curveballs: Damon Runyon on Baseball, Publication date, 2005-02) -> 2005-02 (875ms) Where is Rider College located? Fall 1993 , 2-3 -0.6666666666659999 Where is Rider College located? -> $x: ($x, rider, college) -> (Fall 1993 , 2-3, Rider, College) -> Fall 1993 , 2-3 (964ms) Where is Rider College located? intramural basketball -0.6666666666659999 Where is Rider College located? -> $x: ($x, rider, college) -> (intramural basketball, then Rider, College) -> intramural basketball (964ms) Where is Rider College located? the Rider College Chapter -0.6666666666659999 Where is Rider College located? -> $x: ($x, rider, college) -> (the Rider College Chapter, Rider, College AAUP Newsletter) -> the Rider College Chapter (963ms) Where is Rider College located? Ablett -1.555555555552 Where is Rider College located? -> $x: ($x, play for, rider) -> (Ablett, played for, the Rough Riders) -> Ablett (1207ms) Where is Rider College located? Ganguly -1.555555555552 Where is Rider College located? -> $x: ($x, play for, rider) -> (Ganguly, played for, Kolkata Knight Riders) -> Ganguly (1207ms) Where is Rider College located? Custis -1.555555555552 Where is Rider College located? -> $x: ($x, play for, rider) -> (Custis, played for, the Ticats and Ottawa Rough Riders) -> Custis (1272ms) Where is Rider College located? Brendon McCullum -1.555555555552 Where is Rider College located? -> $x: ($x, play for, rider) -> (Brendon McCullum, will play for, Kolkata Knight Riders) -> Brendon McCullum (1207ms) Where is Rider College located? Thompson -1.555555555552 Where is Rider College located? -> $x: ($x, play for, rider) -> (Thompson, played for, Rider University) -> Thompson (1157ms) Where is Rider College located? Joseph Harris -1.555555555552 Where is Rider College located? -> $x: ($x, play for, rider) -> (Joseph Harris, plays for, the Leicester Riders) -> Joseph Harris (1157ms) Where is Rider College located? the music -1.555555555552 Where is Rider College located? -> $x: ($x, play for, rider) -> (the music, played different songs for, each rider) -> the music (1157ms) Where is Rider College located? Kallis , 36 -1.555555555552 Where is Rider College located? -> $x: ($x, play for, rider) -> (Kallis , 36, is playing for, Kolkata Knight Riders) -> Kallis , 36 (1207ms) Where is Rider College located? Kallis -1.555555555552 Where is Rider College located? -> $x: ($x, play for, rider) -> (Kallis, is currently playing for, Kolkata Knight Riders) -> Kallis (1272ms) Where is Rider College located? Dinda -1.555555555552 Where is Rider College located? -> $x: ($x, play for, rider) -> (Dinda, played the first three seasons for, Kolkata Knight Riders) -> Dinda (1157ms) Where is Rider College located? Meola -1.555555555552 Where is Rider College located? -> $x: ($x, play for, rider) -> (Meola, played for, the Long Island Rough Riders) -> Meola (1157ms) Where is Rider College located? Kelly -1.555555555552 Where is Rider College located? -> $x: ($x, play for, rider) -> (Kelly, plays field hockey for, Rider University) -> Kelly (1207ms) Where is Rider College located? Electric motorcycles -1.555555555552 Where is Rider College located? -> $x: ($x, play for, rider) -> (Electric motorcycles, make play for, new riders) -> Electric motorcycles (1207ms) Where is Rider College located? cost -1.555555555552 Where is Rider College located? -> $x: ($x, play for, rider) -> (cost, plays a role for, many riders) -> cost (1157ms) Where is Rider College located? Pathan -1.555555555552 Where is Rider College located? -> $x: ($x, play for, rider) -> (Pathan, is playing for, Kolkata Knight Riders) -> Pathan (1157ms) Where is Rider College located? a CFL all-star -1.555555555552 Where is Rider College located? -> $x: ($x, play for, rider) -> (a CFL all-star, played for, the Ottawa Rough Riders) -> a CFL all-star (1207ms) Where is Rider College located? Derrick Etienne -1.555555555552 Where is Rider College located? -> $x: ($x, play for, rider) -> (Derrick Etienne, plays for, the Long Island Rough Riders) -> Derrick Etienne (1157ms) Where is Rider College located? Mike Kelley -1.555555555552 Where is Rider College located? -> $x: ($x, play for, rider) -> (Mike Kelley, played for, the riders) -> Mike Kelley (1207ms) Where is Rider College located? FX -1.777777777773 Where is Rider College located? -> $x: ($x, study, rider) -> (FX, studied the needs of, riders) -> FX (1272ms) Where is Rider College located? the markers -1.777777777773 Where is Rider College located? -> $x: ($x, study, rider) -> (the markers, study, your maps and rider instructions) -> the markers (1272ms) Where is Rider College located? Ritter -1.777777777773 Where is Rider College located? -> $x: ($x, study, rider) -> (Ritter, will study secondary education at, Rider) -> Ritter (1272ms) Where is Rider College located? USA Cycling -1.777777777773 Where is Rider College located? -> $x: ($x, study, rider) -> (USA Cycling, studied, cross-country riders) -> USA Cycling (1272ms) What is the capital of Italy? Rome Colosseum Rome 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Rome Colosseum Rome, is the capital city of, Italy) -> Rome Colosseum Rome (1734ms) What is the capital of Italy? close Turin ? 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (close Turin ?, was the original capital of, Italy) -> close Turin ? (1974ms) What is the capital of Italy? world history Rome 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (world history Rome, is the capital city of, Italy) -> world history Rome (2373ms) What is the capital of Italy? the capital 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (the capital, is the economic capital of, Italy) -> the capital (2374ms) What is the capital of Italy? the city 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (the city, is the capital of, Italy) -> the city (1868ms) What is the capital of Italy? Availability Rome 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Availability Rome, is the capital of, Italy) -> Availability Rome (1399ms) What is the capital of Italy? Florence Florence 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Florence Florence, is the artistic capital of, Italy) -> Florence Florence (2008ms) What is the capital of Italy? National Rome 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (National Rome, is the national capital of, Italy) -> National Rome (1734ms) What is the capital of Italy? an extremely beautiful country 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (an extremely beautiful country, is the capital of, Italy) -> an extremely beautiful country (2352ms) What is the capital of Italy? the 2006 winter Olympics 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (the 2006 winter Olympics, is the capital of, Italy) -> the 2006 winter Olympics (1868ms) What is the capital of Italy? 1861 Rome 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (1861 Rome, was declared the capital of, Italy) -> 1861 Rome (2009ms) What is the capital of Italy? Florence Italy 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Florence Italy, was actually the capital of, Italy) -> Florence Italy (1515ms) What is the capital of Italy? neighbouring Riccione 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (neighbouring Riccione, is the clubbing capital of, Italy) -> neighbouring Riccione (1868ms) What is the capital of Italy? Salerno 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Salerno, was the capital city of, Italy) -> Salerno (2373ms) What is the capital of Italy? Local Information Rome 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Local Information Rome, is the capital of, Italy) -> Local Information Rome (2241ms) What is the capital of Italy? Rome Hotel Guide Rome 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Rome Hotel Guide Rome, is the current capital of, Italy) -> Rome Hotel Guide Rome (2334ms) What is the capital of Italy? Rome 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Rome, is the capital and largest city of, Italy) -> Rome (2374ms) What is the capital of Italy? National government Rome 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (National government Rome, is the national capital of, Italy) -> National government Rome (1868ms) What is the capital of Italy? a . Rome 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (a . Rome, is the capital of, Italy) -> a . Rome (1868ms) What is the capital of Italy? Discussion Forum Rome Rome 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Discussion Forum Rome Rome, is the capital of, Italy) -> Discussion Forum Rome Rome (2374ms) What is the capital of Italy? Turin 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Turin, was the first capital city of, Italy) -> Turin (2373ms) What is the capital of Italy? The city 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (The city, was the Capital of, Italy) -> The city (2241ms) What is the capital of Italy? Emilia-Romagna 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Emilia-Romagna, is the gastronomic capital of, Italy) -> Emilia-Romagna (1974ms) What is the capital of Italy? a Roman Rome Rome 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (a Roman Rome Rome, is the capital of, Italy) -> a Roman Rome Rome (2009ms) What is the capital of Italy? The 'Eternal City 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (The 'Eternal City, is the capital of, Italy) -> The 'Eternal City (2373ms) What is the capital of Italy? 4 June Rome Rome Rome 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (4 June Rome Rome Rome, is the capital of, Italy) -> 4 June Rome Rome Rome (2374ms) What is the capital of Italy? close Rome 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (close Rome, is the capital of, Italy) -> close Rome (1733ms) What is the capital of Italy? Milan Rome 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Milan Rome, may be the administrative capital of, Italy) -> Milan Rome (1734ms) What is the capital of Italy? Ask 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Ask, is the capital of, Italy) -> Ask (2334ms) What is the capital of Italy? USA and Rome 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (USA and Rome, is a capital city of, Italy) -> USA and Rome (1399ms) What is the capital of Italy? Rome Rome 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Rome Rome, is the capital of, Italy) -> Rome Rome (2374ms) What is the capital of Italy? Major Cities 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Major Cities, is the capital of, Italy) -> Major Cities (2241ms) What is the capital of Italy? Bologna 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Bologna, is a culinary capital of, Italy) -> Bologna (2334ms) What is the capital of Italy? Italy Florence 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Italy Florence, is the artistic capital of, Italy) -> Italy Florence (2061ms) What is the capital of Italy? an extremely attractive city 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (an extremely attractive city, is the capital of, Italy) -> an extremely attractive city (1974ms) What is the capital of Italy? Ravenna 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Ravenna, was then the Roman capital of, Italy) -> Ravenna (2009ms) What is the capital of Italy? Rome Rome Rome 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Rome Rome Rome, is the capital of, Italy) -> Rome Rome Rome (2334ms) What is the capital of Italy? Italy Rome 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Italy Rome, is the national capital of, Italy) -> Italy Rome (2352ms) What is the capital of Italy? Firenze 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Firenze, was the capital of, Italy) -> Firenze (2334ms) What is the capital of Italy? Florence 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Florence, is actually the capital of, Italy) -> Florence (2374ms) What is the capital of Italy? Rome 2313 60.05 % Rome 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Rome 2313 60.05 % Rome, is the capital city of, Italy) -> Rome 2313 60.05 % Rome (1399ms) What is the capital of Italy? Perugia 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Perugia, is the capital city of, Italy) -> Perugia (2373ms) What is the capital of Italy? E Rome 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (E Rome, is the capital of, Italy) -> E Rome (2334ms) What is the capital of Italy? Romans Rome Rome 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Romans Rome Rome, is the capital of, Italy) -> Romans Rome Rome (1399ms) What is the capital of Italy? February 8-10 Milan 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (February 8-10 Milan, is the economic capital of, Italy) -> February 8-10 Milan (2008ms) What is the capital of Italy? Latin Roma 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Latin Roma, is the capital city of, Italy) -> Latin Roma (1515ms) What is the capital of Italy? 1871 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (1871, was capital of, Italy) -> 1871 (1734ms) What is the capital of Italy? Rome and Vatican City Rome 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Rome and Vatican City Rome, is the capital of, Italy) -> Rome and Vatican City Rome (1515ms) What is the capital of Italy? Society Rome ? 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Society Rome ?, is the capital city of, Italy) -> Society Rome ? (2352ms) What is the capital of Italy? Johnny 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Johnny, is the capital of, Italy) -> Johnny (2061ms) What is the capital of Italy? Student Blogger Florence 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Student Blogger Florence, has been the capital of, Italy) -> Student Blogger Florence (1868ms) What is the capital of Italy? Milan 2.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, italy) -> (Milan, could easily have been the capital of, Italy) -> Milan (2352ms) What is the capital of Italy? Italy 2.0 What is the capital of Italy? -> $x: ($x, be first capital of, italy) -> (Italy, was the first capital of, unified Italy) -> Italy (2389ms) What is the capital of Italy? Torino 2.0 What is the capital of Italy? -> $x: ($x, be first capital of, italy) -> (Torino, was the first capital of, unified Italy) -> Torino (2389ms) What is the capital of Italy? Mole Antonelliana Turin 2.0 What is the capital of Italy? -> $x: ($x, be first capital of, italy) -> (Mole Antonelliana Turin, was the first capital of, modern Italy) -> Mole Antonelliana Turin (2392ms) What is the capital of Italy? Venice 1.777777777775 What is the capital of Italy? -> $x: ($x, be main city in, italy) -> (Venice, is the main city in, the Veneto and north-eastern Italy) -> Venice (2392ms) What is the capital of Italy? 2008 Venice 1.777777777775 What is the capital of Italy? -> $x: ($x, be small city in, italy) -> (2008 Venice, is a small city in, northern Italy) -> 2008 Venice (2392ms) What is the capital of Italy? Crete 1.1111111110910001 What is the capital of Italy? -> $x: ($x, become capital of, italy) -> (Crete, eventually became the capital of, Italy) -> Crete (2396ms) What is the capital of Italy? 1870 Rome 1.1111111110910001 What is the capital of Italy? -> $x: ($x, become capital of, italy) -> (1870 Rome, becomes the capital of, Italy) -> 1870 Rome (2394ms) What is the capital of Italy? 1865 Florence 1.1111111110910001 What is the capital of Italy? -> $x: ($x, become capital of, italy) -> (1865 Florence, became the capital of, Italy) -> 1865 Florence (2396ms) What is the capital of Italy? March 1861 Turin 1.1111111110910001 What is the capital of Italy? -> $x: ($x, become capital of, italy) -> (March 1861 Turin, became the first capital of, Italy) -> March 1861 Turin (2396ms) What is the capital of Italy? Turin briefly 1.1111111110910001 What is the capital of Italy? -> $x: ($x, become capital of, italy) -> (Turin briefly, became the capital of, Italy) -> Turin briefly (2392ms) What is the capital of Italy? the Kingdom 1.1111111110910001 What is the capital of Italy? -> $x: ($x, become capital of, italy) -> (the Kingdom, became the capital of, unified Italy) -> the Kingdom (2394ms) What is the capital of Italy? the 19th century Naples 1.1111111110910001 What is the capital of Italy? -> $x: ($x, become capital of, italy) -> (the 19th century Naples, became the capital of, southern Italy) -> the 19th century Naples (2394ms) What is the capital of Italy? Roman Catholicism 0.99999999999 What is the capital of Italy? -> $x: ($x, be religion of, italy) -> (Roman Catholicism, was made the official religion of, Italy) -> Roman Catholicism (2396ms) What is the capital of Italy? the south 0.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, santiago) -> (the south, is the culturally alive capital city of, Santiago) -> the south (2398ms) What is the capital of Italy? Cidade Velha 0.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, santiago) -> (Cidade Velha, was the old capital of, Santiago) -> Cidade Velha (2398ms) What is the capital of Italy? Macas 0.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, santiago) -> (Macas, is the capital of, Morona Santiago province) -> Macas (2400ms) What is the capital of Italy? San Marino 0.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, san marino) -> (San Marino, is the capital of, San Marino San Marino) -> San Marino (2398ms) What is the capital of Italy? the Siracusa 0.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, sicily) -> (the Siracusa, was the capital of, Sicily) -> the Siracusa (2398ms) What is the capital of Italy? Palermo Italy Palermo 0.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, sicily) -> (Palermo Italy Palermo, is the capital city of, Sicily) -> Palermo Italy Palermo (2398ms) What is the capital of Italy? Palermo Palermo 0.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, sicily) -> (Palermo Palermo, is the capital of, Sicily) -> Palermo Palermo (2398ms) What is the capital of Italy? Cuba 0.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, santiago) -> (Cuba, is the capital city of, Santiago) -> Cuba (2400ms) What is the capital of Italy? Palermo Travel Guide Palermo 0.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, sicily) -> (Palermo Travel Guide Palermo, is the capital of, Sicily) -> Palermo Travel Guide Palermo (2396ms) What is the capital of Italy? Santiago de Cuba 0.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, santiago) -> (Santiago de Cuba, is the capital city of, Santiago) -> Santiago de Cuba (2400ms) What is the capital of Italy? Palermo 0.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, sicily) -> (Palermo, is the capital city of, Sicily) -> Palermo (2400ms) What is the capital of Italy? Santiago de Chile 0.888888888891 What is the capital of Italy? -> $x: ($x, be capital of, santiago) -> (Santiago de Chile, is the capital of, Chile Santiago) -> Santiago de Chile (2400ms) What is the capital of Italy? Le?n 0.77777777778 What is the capital of Italy? -> $x: ($x, be capital of, nicaragua) -> (Le?n, was the colonial capital of, Nicaragua) -> Le?n (2403ms) What is the capital of Italy? Paris 0.77777777778 What is the capital of Italy? -> $x: ($x, be capital of, rome) -> (Paris, is the capital of, Rome) -> Paris (2403ms) What is the capital of Italy? Thailand 0.77777777778 What is the capital of Italy? -> $x: ($x, be capital of, pasta) -> (Thailand, is n?t exactly the capital of, pastas) -> Thailand (2402ms) What is the capital of Italy? a population 0.77777777778 What is the capital of Italy? -> $x: ($x, be capital of, nicaragua) -> (a population, is the capital of, Nicaragua and largest city) -> a population (2403ms) What is the capital of Italy? one time 0.77777777778 What is the capital of Italy? -> $x: ($x, be capital of, nicaragua) -> (one time, was the first capital of, Nicaragua) -> one time (2400ms) What is the capital of Italy? le?n 0.77777777778 What is the capital of Italy? -> $x: ($x, be capital of, nicaragua) -> (le?n, is the capital city of the country, nicaragua) -> le?n (2402ms) What is the capital of Italy? Leon 0.77777777778 What is the capital of Italy? -> $x: ($x, be capital of, nicaragua) -> (Leon, was the capital of, Nicaragua) -> Leon (2403ms) What is the capital of Italy? Nicaraguan / Nicaraguans Managua 0.77777777778 What is the capital of Italy? -> $x: ($x, be capital of, nicaragua) -> (Nicaraguan / Nicaraguans Managua, is the capital of, Nicaragua) -> Nicaraguan / Nicaraguans Managua (2402ms) What is the capital of Italy? Managua 0.77777777778 What is the capital of Italy? -> $x: ($x, be capital of, nicaragua) -> (Managua, is the capital of, Nicaragua Managua) -> Managua (2403ms) What is the capital of Italy? Managua Managua 0.77777777778 What is the capital of Italy? -> $x: ($x, be capital of, nicaragua) -> (Managua Managua, is the capital city of, Nicaragua as well as) -> Managua Managua (2403ms) What is the capital of Italy? Granada 0.77777777778 What is the capital of Italy? -> $x: ($x, be capital of, nicaragua) -> (Granada, was the economic capital of, Nicaragua) -> Granada (2403ms) What is the capital of Italy? Constantinopolis 0.77777777778 What is the capital of Italy? -> $x: ($x, be capital of, rome) -> (Constantinopolis, was named the new capital of, Eastern Rome) -> Constantinopolis (2402ms) What is the capital of Italy? Istanbul 0.77777777778 What is the capital of Italy? -> $x: ($x, be capital of, rome) -> (Istanbul, had been the capital of, Rome ,Byzantium) -> Istanbul (2402ms) What is the capital of Italy? Le?n 0.77777777778 What is the capital of Italy? -> $x: ($x, be capital of, nicaragua) -> (Le?n, was the capital city of, Nicaragua) -> Le?n (2401ms) What is the capital of Italy? Office space 0.5555555555580001 What is the capital of Italy? -> $x: ($x, be capital of, economy) -> (Office space, is the productive capital of, an office economy) -> Office space (2404ms) What is the capital of Italy? Creativity 0.5555555555580001 What is the capital of Italy? -> $x: ($x, be capital of, economy) -> (Creativity, is the capital of, the new economy) -> Creativity (2404ms) What is the capital of Italy? a supply town 0.5555555555580001 What is the capital of Italy? -> $x: ($x, be capital of, economy) -> (a supply town, is the capital of fifth, largest economy) -> a supply town (2404ms) What is the capital of Italy? New York City 0.5555555555580001 What is the capital of Italy? -> $x: ($x, be capital of, economy) -> (New York City, is the new capital of, the digital economy) -> New York City (2404ms) What is the capital of Italy? Canberra 0.5555555555580001 What is the capital of Italy? -> $x: ($x, be capital of, economy) -> (Canberra, is the capital city of, the 14th biggest economy) -> Canberra (2404ms) What is the capital of Italy? ?knowledge ? 0.5555555555580001 What is the capital of Italy? -> $x: ($x, be capital of, economy) -> (?knowledge ?, is the new capital of, the globalised economy) -> ?knowledge ? (2404ms) What is the capital of Italy? the mind 0.5555555555580001 What is the capital of Italy? -> $x: ($x, be capital of, economy) -> (the mind, is the capital plant of, the modern economy) -> the mind (2404ms) What is the capital of Italy? data 0.5555555555580001 What is the capital of Italy? -> $x: ($x, be capital of, economy) -> (data, is the capital of, the new economy) -> data (2404ms) What is the capital of Italy? 2. Berlin 0.5555555555580001 What is the capital of Italy? -> $x: ($x, be capital of, economy) -> (2. Berlin, is the capital of, Europe?s largest economy) -> 2. Berlin (2404ms) What is the capital of Italy? the kingdom 0.111111111111 What is the capital of Italy? -> $x: (rome, have capital of, $x) -> (Rome, had been made the capital of, the kingdom) -> the kingdom (2405ms) What is the capital of Italy? the state 0.111111111111 What is the capital of Italy? -> $x: (rome, have capital of, $x) -> (Rome, had been the capital of, the state) -> the state (2405ms) What is the capital of Italy? a vast empire 0.111111111111 What is the capital of Italy? -> $x: (rome, have capital of, $x) -> (Rome, has become the capital of, a vast empire) -> a vast empire (2405ms) What is the capital of Italy? the Western empire 0.111111111111 What is the capital of Italy? -> $x: (rome, have capital of, $x) -> (Rome, had n?t been the capital of, the Western empire) -> the Western empire (2405ms) What is the capital of Italy? world culture 0.111111111111 What is the capital of Italy? -> $x: (rome, have capital of, $x) -> (Rome, has been a capital of, world culture) -> world culture (2405ms) What is the capital of Italy? Gap 2.0000667788622195E-12 What is the capital of Italy? -> $x: ($x, be capital of, alps) -> (Gap, is the capital of, the southern Alps Ile) -> Gap (2405ms) What is the capital of Italy? Bolzano 2.0000667788622195E-12 What is the capital of Italy? -> $x: ($x, be capital of, alps) -> (Bolzano, is officially the capital of, the Alps) -> Bolzano (2405ms) What is the capital of Italy? Cimiez 2.0000667788622195E-12 What is the capital of Italy? -> $x: ($x, be capital of, alps) -> (Cimiez, was the capital of, the Maritime Alps province) -> Cimiez (2405ms) What is the capital of Italy? Innsbruck 2.0000667788622195E-12 What is the capital of Italy? -> $x: ($x, be capital of, alps) -> (Innsbruck, is the unofficial capital of, the Alps) -> Innsbruck (2405ms) What is the capital of Italy? Grenoble 2.0000667788622195E-12 What is the capital of Italy? -> $x: ($x, be capital of, alps) -> (Grenoble, is the capital of, the French Alps) -> Grenoble (2405ms) When was Julius Caesar born? 100 BC 0.888888888888 When was Julius Caesar born? -> $x: (julius caesar, be bear in, $x) -> (Famous Romans Julius Caesar Julius Caesar, was born in, 100 BC) -> 100 BC (1282ms) When was Julius Caesar born? 100 B.C. 0.888888888888 When was Julius Caesar born? -> $x: (julius caesar, be bear in, $x) -> (Julius Caesar, was born in, 100 B.C.) -> 100 B.C. (1282ms) When was Julius Caesar born? Rome 0.888888888888 When was Julius Caesar born? -> $x: (julius caesar, be bear in, $x) -> (Julius Caesar, was born in, Rome) -> Rome (1282ms) When was Julius Caesar born? the Subura 0.888888888888 When was Julius Caesar born? -> $x: (julius caesar, be bear in, $x) -> (Julius Caesar, was born in, the Subura) -> the Subura (1283ms) When was Julius Caesar born? 100 0.888888888888 When was Julius Caesar born? -> $x: (julius caesar, be bear in, $x) -> (Julius Caesar, was born in, 100) -> 100 (1282ms) When was Julius Caesar born? July 12 , 100 BC 0.555555555558 When was Julius Caesar born? -> $x: (julius caesar, be bear on, $x) -> (Julius Caesar, was born on, July 12 , 100 BC) -> July 12 , 100 BC (1661ms) When was Julius Caesar born? the twelfth 0.555555555558 When was Julius Caesar born? -> $x: (julius caesar, be bear on, $x) -> (C. Julius Caesar, was born on, the twelfth) -> the twelfth (1360ms) When was Julius Caesar born? July 13 , 100 BC 0.555555555558 When was Julius Caesar born? -> $x: (julius caesar, be bear on, $x) -> (Gaius Julius Caesar, was born on, July 13 , 100 BC) -> July 13 , 100 BC (1661ms) When was Julius Caesar born? july 12 0.555555555558 When was Julius Caesar born? -> $x: (julius caesar, be bear on, $x) -> (Julius Caesar, was born on, july 12) -> july 12 (1661ms) When was Julius Caesar born? Portland 0.555555555558 When was Julius Caesar born? -> $x: (julius caesar, live now in, $x) -> (Julius Caesar, is now living in, Portland) -> Portland (1360ms) When was Julius Caesar born? either July 12th 0.555555555558 When was Julius Caesar born? -> $x: (julius caesar, be bear on, $x) -> (Julius Caesar, was born on, either July 12th) -> either July 12th (1661ms) When was Julius Caesar born? July 0.555555555558 When was Julius Caesar born? -> $x: (julius caesar, be bear on, $x) -> (the Roman emperor Julius Caesar, was born on, July) -> July (1661ms) When was Julius Caesar born? July 13 0.555555555558 When was Julius Caesar born? -> $x: (julius caesar, be bear on, $x) -> (Gaius Julius Caesar, was born on, July 13) -> July 13 (1661ms) When was Julius Caesar born? the Ides of March 0.44444444444699993 When was Julius Caesar born? -> $x: (julius caesar, die on, $x) -> (Julius Caesar, died on, the Ides of March) -> the Ides of March (1907ms) When was Julius Caesar born? March 15 0.44444444444699993 When was Julius Caesar born? -> $x: (julius caesar, die on, $x) -> (Julius Caesar, died on, March 15) -> March 15 (1754ms) When was Julius Caesar born? the Bard 0.33333333333599996 When was Julius Caesar born? -> $x: (julius caesar, do, $x) -> (his play Julius Caesar, did any of, the Bard) -> the Bard (2357ms) When was Julius Caesar born? the diadem 0.33333333333599996 When was Julius Caesar born? -> $x: (julius caesar, do, $x) -> (Julius Caesar, did, the diadem) -> the diadem (2504ms) When was Julius Caesar born? a mere two thousand years 0.33333333333599996 When was Julius Caesar born? -> $x: (julius caesar, do, $x) -> (Julius Caesar, certainly did, a mere two thousand years) -> a mere two thousand years (2357ms) When was Julius Caesar born? the same 0.33333333333599996 When was Julius Caesar born? -> $x: (julius caesar, do, $x) -> (Julius Caesar, did, the same) -> the same (2504ms) When was Julius Caesar born? Booth 0.33333333333599996 When was Julius Caesar born? -> $x: (julius caesar, do, $x) -> (Julius Caesar Whose execution, did, Booth) -> Booth (2357ms) When was Julius Caesar born? mind William Shakespeare 0.33333333333599996 When was Julius Caesar born? -> $x: (julius caesar, do, $x) -> (Julius Caesar, does bring to, mind William Shakespeare) -> mind William Shakespeare (2322ms) When was Julius Caesar born? Hannibal 0.33333333333599996 When was Julius Caesar born? -> $x: (julius caesar, do, $x) -> (Julius Caesar, did, Hannibal) -> Hannibal (2358ms) When was Julius Caesar born? the Spartacus War 0.33333333333599996 When was Julius Caesar born? -> $x: (julius caesar, do, $x) -> (Julius Caesar, had nothing to do with, the Spartacus War) -> the Spartacus War (2322ms) When was Julius Caesar born? history 0.33333333333599996 When was Julius Caesar born? -> $x: (julius caesar, do, $x) -> (exactly what Julius Caesar, did in, history) -> history (2505ms) When was Julius Caesar born? the company 0.33333333333599996 When was Julius Caesar born? -> $x: (julius caesar, do, $x) -> (his great- grandfather Julius Caesar, had done in, the company) -> the company (2357ms) When was Julius Caesar born? centuries 0.33333333333599996 When was Julius Caesar born? -> $x: (julius caesar, do, $x) -> (Julius Caesar, did, centuries) -> centuries (2504ms) When was Julius Caesar born? 44 BCE 0.33333333333599996 When was Julius Caesar born? -> $x: (julius caesar, die in, $x) -> (Julius Caesar, died in, 44 BCE) -> 44 BCE (2357ms) When was Julius Caesar born? 44 0.33333333333599996 When was Julius Caesar born? -> $x: (julius caesar, die in, $x) -> (Julius Caesar, died in, 44) -> 44 (2357ms) When was Julius Caesar born? campy style 0.33333333333599996 When was Julius Caesar born? -> $x: (julius caesar, do, $x) -> (Julius Caesar, is done in, campy style) -> campy style (2505ms) When was Julius Caesar born? August 31 0.333333333331 When was Julius Caesar born? -> $x: (caesar, be bear on, $x) -> (Gaius Caesar Caligula, was born on, August 31) -> August 31 (2710ms) When was Julius Caesar born? July 12 , 100 B.C. 0.333333333331 When was Julius Caesar born? -> $x: (caesar, be born on, $x) -> (Caesar, was born on, July 12 , 100 B.C.) -> July 12 , 100 B.C. (2710ms) When was Julius Caesar born? Fredericksburg 0.333333333331 When was Julius Caesar born? -> $x: (caesar, be born in, $x) -> (Caesar Allen Alsop, was born in, Fredericksburg) -> Fredericksburg (2710ms) When was Julius Caesar born? the day 0.333333333331 When was Julius Caesar born? -> $x: (caesar, be born on, $x) -> (Caius Caesar, was born on, the day) -> the day (2724ms) When was Julius Caesar born? the consulship of his father 0.333333333331 When was Julius Caesar born? -> $x: (caesar, be born in, $x) -> (Gaius Caesar, was born in, the consulship of his father) -> the consulship of his father (2710ms) When was Julius Caesar born? July 17 , 100 BC 0.333333333331 When was Julius Caesar born? -> $x: (caesar, be bear on, $x) -> (Caesar, was born on, July 17 , 100 BC) -> July 17 , 100 BC (2637ms) When was Julius Caesar born? Durham 0.333333333331 When was Julius Caesar born? -> $x: (caesar, be bear in, $x) -> (Caesar, was born in, Durham) -> Durham (2682ms) When was Julius Caesar born? Yonkers 0.333333333331 When was Julius Caesar born? -> $x: (caesar, be bear in, $x) -> (The Sid Caesar Show, was born in, Yonkers) -> Yonkers (2710ms) When was Julius Caesar born? Indian Territory 0.333333333331 When was Julius Caesar born? -> $x: (caesar, be born in, $x) -> (Caesar Bruner, was born in, Indian Territory) -> Indian Territory (2696ms) When was Julius Caesar born? 1943 0.333333333331 When was Julius Caesar born? -> $x: (caesar, be born in, $x) -> (Mrs. Caesar, was born in, 1943) -> 1943 (2682ms) When was Julius Caesar born? Dover 0.333333333331 When was Julius Caesar born? -> $x: (caesar, be born in, $x) -> (Attorney General Caesar Augustus Rodney, was born in, Dover) -> Dover (2696ms) When was Julius Caesar born? Mexico 0.333333333331 When was Julius Caesar born? -> $x: (caesar, be bear in, $x) -> (?If Caesar, had been born in, Mexico) -> Mexico (2637ms) When was Julius Caesar born? whose time 0.333333333331 When was Julius Caesar born? -> $x: (caesar, be bear in, $x) -> (Augustus Caesar, was born in, whose time) -> whose time (2724ms) When was Julius Caesar born? July 12 0.333333333331 When was Julius Caesar born? -> $x: (caesar, be born on, $x) -> (Caesar, was born on, July 12) -> July 12 (2710ms) When was Julius Caesar born? Quintilis 13 0.333333333331 When was Julius Caesar born? -> $x: (caesar, be bear on, $x) -> (Caesar, was born on, Quintilis 13) -> Quintilis 13 (2682ms) When was Julius Caesar born? the 12th 0.333333333331 When was Julius Caesar born? -> $x: (caesar, be born on, $x) -> (J. Caesar, had been born on, the 12th) -> the 12th (2696ms) When was Julius Caesar born? the Mexican border city 0.333333333331 When was Julius Caesar born? -> $x: (caesar, be bear in, $x) -> (Caesar salad, was born in, the Mexican border city) -> the Mexican border city (2724ms) When was Julius Caesar born? St Kitts 0.333333333331 When was Julius Caesar born? -> $x: (caesar, be born in, $x) -> (Burt Caesar, was born in, St Kitts) -> St Kitts (2710ms) When was Julius Caesar born? Shakespeare 0.22222222222499993 When was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (Shakespeare, did for, Julius Caesar) -> Shakespeare (2724ms) When was Julius Caesar born? Jared Miller 0.22222222222499993 When was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (Jared Miller, does, Julius Caesar) -> Jared Miller (2737ms) When was Julius Caesar born? England 0.22222222222499993 When was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (England, did, Julius Caesar and Thomas) -> England (2737ms) When was Julius Caesar born? the Ides 0.22222222222499993 When was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (the Ides, did, Julius Caesar) -> the Ides (2738ms) When was Julius Caesar born? the Ancient / Classical History site 0.22222222222499993 When was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (the Ancient / Classical History site, Did, Julius Caesar) -> the Ancient / Classical History site (2737ms) When was Julius Caesar born? the proud bird 0.22222222222499993 When was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (the proud bird, so did, Julius Caesar) -> the proud bird (2737ms) When was Julius Caesar born? Proof 0.22222222222499993 When was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (Proof, Did, Julius Caesar) -> Proof (2737ms) When was Julius Caesar born? the group 0.22222222222499993 When was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (the group, does, Julius Caesar) -> the group (2724ms) When was Julius Caesar born? the Roman senate 0.22222222222499993 When was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (the Roman senate, did something similar to, Julius Caesar) -> the Roman senate (2724ms) When was Julius Caesar born? the Rubicon River 0.22222222222499993 When was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (the Rubicon River, did, Julius Caesar) -> the Rubicon River (2737ms) When was Julius Caesar born? One of. . Read More Pop Quiz 0.22222222222499993 When was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (One of. . Read More Pop Quiz, did, Julius Caesar) -> One of. . Read More Pop Quiz (2724ms) When was Julius Caesar born? Brutus 0.22222222222499993 When was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (Brutus, did to, Julius Caesar) -> Brutus (2749ms) When was Julius Caesar born? political strength 0.22222222222499993 When was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (political strength, does, Gaius Julius Caesar) -> political strength (2737ms) When was Julius Caesar born? two actors 0.22222222222499993 When was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (two actors, do, Julius Caesar) -> two actors (2737ms) When was Julius Caesar born? count 0.22222222222499993 When was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (count, so does n?t quite jive with, the count Julius Caesar) -> count (2724ms) When was Julius Caesar born? Aristotle 0.22222222222499993 When was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (Aristotle, as did, Julius Caesar and Thomas Jefferson) -> Aristotle (2737ms) When was Julius Caesar born? King Tut 0.22222222222499993 When was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (King Tut, so did, Julius Caesar) -> King Tut (2737ms) When was Julius Caesar born? Cleopatra 0.22222222222499993 When was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (Cleopatra, did capture the hearts of, Julius Caesar) -> Cleopatra (2724ms) When was Julius Caesar born? challenges 0.22222222222499993 When was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (challenges, did, Julius Caesar face) -> challenges (2737ms) When was Julius Caesar born? 10:31 PM | Permalink Comments 0.22222222222499993 When was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (10:31 PM | Permalink Comments, Did, Julius Caesar trip) -> 10:31 PM | Permalink Comments (2737ms) When was Julius Caesar born? 6 Revision 0.22222222222499993 When was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (6 Revision, did, Julius Caesar claim) -> 6 Revision (2737ms) When was Julius Caesar born? The Caesarean 0.22222222222499993 When was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (The Caesarean, had nothing to do with, Julius Caesar) -> The Caesarean (2724ms) When was Julius Caesar born? Mark Antony 0.22222222222499993 When was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (Mark Antony, did in, William Shakespeare?s Julius Caesar) -> Mark Antony (2724ms) When was Julius Caesar born? Latin 0.22222222222499993 When was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (Latin, did, Julius Caesar) -> Latin (2737ms) When was Julius Caesar born? Mar 12 0.22222222222499993 When was Julius Caesar born? -> $x: ($x, do, julius caesar) -> (Mar 12, does, Julius Caesars conquest) -> Mar 12 (2749ms) When was Julius Caesar born? 1830 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Knopf, was born in, 1830) -> 1830 (2780ms) When was Julius Caesar born? Vicksburg 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Historian and poet Julius Eric Thompson, was born in, Vicksburg) -> Vicksburg (2780ms) When was Julius Caesar born? 63 0.22222222221899998 When was Julius Caesar born? -> $x: (octavian, be bear in, $x) -> (Octavian, was born in, 63) -> 63 (2790ms) When was Julius Caesar born? early 1950 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius, was born in, early 1950) -> early 1950 (2769ms) When was Julius Caesar born? Hempstead 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Erving, was born in, Hempstead) -> Hempstead (2749ms) When was Julius Caesar born? Sulzburg 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Dukas, was born in, Sulzburg) -> Sulzburg (2770ms) When was Julius Caesar born? 63 BC 0.22222222221899998 When was Julius Caesar born? -> $x: (octavian, be bear in, $x) -> (Octavian, was born in, 63 BC) -> 63 BC (2749ms) When was Julius Caesar born? 1834 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius, was born in, 1834) -> 1834 (2770ms) When was Julius Caesar born? Sabine 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (the Julii, was born in, Sabine) -> Sabine (2790ms) When was Julius Caesar born? Pressburg 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Karl Julius Schr?er, was born in, Pressburg) -> Pressburg (2770ms) When was Julius Caesar born? Bellerica 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Sumner Miller, is born in, Bellerica) -> Bellerica (2749ms) When was Julius Caesar born? 1855 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius, was born in, 1855) -> 1855 (2759ms) When was Julius Caesar born? the village 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Streicher, was born in, the village) -> the village (2790ms) When was Julius Caesar born? Auburn 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (History Architect Julius A. Schweinfurth, was born in, Auburn) -> Auburn (2769ms) When was Julius Caesar born? Vienna 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Rudel, was born in, Vienna) -> Vienna (2749ms) When was Julius Caesar born? Tula 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Algirdas Julius Greimas, was born in, Tula) -> Tula (2790ms) When was Julius Caesar born? Boston 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (1874-75 Julius Walker Adams, was born in, Boston) -> Boston (2770ms) When was Julius Caesar born? London 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius, was born in, London) -> London (2799ms) When was Julius Caesar born? 1961 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Deutschbauer, was born in, 1961) -> 1961 (2790ms) When was Julius Caesar born? Stuttgart Germany 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Benedict, was born in, Stuttgart Germany) -> Stuttgart Germany (2790ms) When was Julius Caesar born? Seshego 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Sello Malema, is born in, Seshego) -> Seshego (2780ms) When was Julius Caesar born? Brooklyn 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius, was born in, Brooklyn) -> Brooklyn (2759ms) When was Julius Caesar born? Norwich 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (George Alfred Julius, was born in, Norwich) -> Norwich (2790ms) When was Julius Caesar born? Oshkosh 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Mand, was born in, Oshkosh) -> Oshkosh (2759ms) When was Julius Caesar born? 1893 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Earl Schaefer, was born in, 1893) -> 1893 (2790ms) When was Julius Caesar born? North Lyme 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Deming, was born in, North Lyme) -> North Lyme (2759ms) When was Julius Caesar born? Russia 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius, were born in, Russia) -> Russia (2780ms) When was Julius Caesar born? Roosevelt 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (22.0Julius Erving, was born in, Roosevelt) -> Roosevelt (2759ms) When was Julius Caesar born? Germany 1854 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Charles Julius Herman Riese, was born in, Germany 1854) -> Germany 1854 (2799ms) When was Julius Caesar born? 100 B.C. July 13 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius C?sar, is born in, 100 B.C. July 13) -> 100 B.C. July 13 (2780ms) When was Julius Caesar born? Towanda 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Wilmot Mason, was born in, Towanda) -> Towanda (2790ms) When was Julius Caesar born? Brazil 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Wiedemann, was born in, Brazil) -> Brazil (2790ms) When was Julius Caesar born? the German Jewish ghetto 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Ferdinand Julius Cohn, was born in, the German Jewish ghetto) -> the German Jewish ghetto (2769ms) When was Julius Caesar born? Brasov 0.22222222221899998 When was Julius Caesar born? -> $x: (octavian, be bear in, $x) -> (Octavian Florescu Ph.D. 2010, was born in, Brasov) -> Brasov (2770ms) When was Julius Caesar born? Wurzburg 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Friedrich Julius George Dury, was born in, Wurzburg) -> Wurzburg (2780ms) When was Julius Caesar born? Langenlonshime 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Neumann, was born in, Langenlonshime) -> Langenlonshime (2799ms) When was Julius Caesar born? Auckland 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Baby Julius Robert Bay Tapert, was born in, Auckland) -> Auckland (2780ms) When was Julius Caesar born? G?ttingen 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Lax Julius Lax, was born in, G?ttingen) -> G?ttingen (2770ms) When was Julius Caesar born? Orange County 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius, was born in, Orange County) -> Orange County (2759ms) When was Julius Caesar born? 1841 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (the famous Arctic explorer Julius Payer, was born in, 1841) -> 1841 (2769ms) When was Julius Caesar born? 1922 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Nyerere, was born in, 1922) -> 1922 (2749ms) When was Julius Caesar born? Philadelphia 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (? Emanuel Julius, was born in, Philadelphia) -> Philadelphia (2759ms) When was Julius Caesar born? H?meenlinna 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Johan Julius Christian Sibelius, was born in, H?meenlinna) -> H?meenlinna (2780ms) When was Julius Caesar born? Bavaria 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Osterreicher, had been born in, Bavaria) -> Bavaria (2780ms) When was Julius Caesar born? Heilbronn 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Robert Mayer, was born in, Heilbronn) -> Heilbronn (2780ms) When was Julius Caesar born? 1974 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Senior Accountant Julius, was born in, 1974) -> 1974 (2790ms) When was Julius Caesar born? Hamburg 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Hintz, was born in, Hamburg) -> Hamburg (2759ms) When was Julius Caesar born? Alabama 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Hobson, was born in, Alabama) -> Alabama (2780ms) When was Julius Caesar born? 1982 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius and Felix, were born in, 1982) -> 1982 (2790ms) When was Julius Caesar born? a small town 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (My father Julius, was born in, a small town) -> a small town (2799ms) When was Julius Caesar born? 1874 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Meier, was born in, 1874) -> 1874 (2749ms) When was Julius Caesar born? Latvia 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius, was born in, Latvia) -> Latvia (2799ms) When was Julius Caesar born? Cuba 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Peter Garesch, was born in, Cuba) -> Cuba (2780ms) When was Julius Caesar born? Germany 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Emil Julius Klaus Fuchs, was born in, Germany) -> Germany (2790ms) When was Julius Caesar born? May 1869 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius Schmidt Julius Schmidt, was born in, May 1869) -> May 1869 (2770ms) When was Julius Caesar born? Schuyler 0.22222222221899998 When was Julius Caesar born? -> $x: (julius, be bear in, $x) -> (Julius C Michaelsen, was born in, Schuyler) -> Schuyler (2759ms) When was Julius Caesar born? a virgin 0.11111111111399996 When was Julius Caesar born? -> $x: (julius caesar, be bear, $x) -> (Julius Caesar, to have been born of, a virgin) -> a virgin (2809ms) When was Julius Caesar born? Google and Wikipedia 0.11111111111399996 When was Julius Caesar born? -> $x: (julius caesar, be bear, $x) -> (Julius Caesar, was born thanks to, Google and Wikipedia) -> Google and Wikipedia (2799ms) When was Julius Caesar born? 12 July 0.11111111111399996 When was Julius Caesar born? -> $x: (julius caesar, be bear, $x) -> (Gaius Julius Caesar, was born, 12 July) -> 12 July (2799ms) When was Julius Caesar born? natal teeth 0.11111111111399996 When was Julius Caesar born? -> $x: (julius caesar, be bear, $x) -> (Julius Caesar, were born with, natal teeth) -> natal teeth (2799ms) When was Julius Caesar born? a long time 0.11111111111399996 When was Julius Caesar born? -> $x: (julius caesar, be bear, $x) -> (?Julius Caesar, was born, a long time) -> a long time (2799ms) When was Julius Caesar born? a long time ago 0.11111111111399996 When was Julius Caesar born? -> $x: (julius caesar, be bear, $x) -> (Julius Caesar, was born, a long time ago) -> a long time ago (2809ms) When was Julius Caesar born? Caesarean section 0.11111111111399996 When was Julius Caesar born? -> $x: (julius caesar, be bear, $x) -> (Julius Caesar, was born by, Caesarean section) -> Caesarean section (2809ms) When was Julius Caesar born? the year 164 0.11111111111399996 When was Julius Caesar born? -> $x: (julius caesar, be bear, $x) -> (Julius Caesar Tiberius Gracchus, was born about, the year 164) -> the year 164 (2809ms) When was Julius Caesar born? July 12 , 100 0.11111111111399996 When was Julius Caesar born? -> $x: (julius caesar, be bear, $x) -> (Julius Caesar, was born, July 12 , 100) -> July 12 , 100 (2799ms) When was Julius Caesar born? c-section 0.11111111111399996 When was Julius Caesar born? -> $x: (julius caesar, be bear, $x) -> (Julius Caesar, was born through, c-section) -> c-section (2799ms) When was Julius Caesar born? 2007 0.11111111110799998 When was Julius Caesar born? -> $x: (cassius, be bear in, $x) -> (Cassius, was born in, 2007) -> 2007 (2837ms) When was Julius Caesar born? upstate New York 0.11111111110799998 When was Julius Caesar born? -> $x: (cassius, be bear in, $x) -> (Cassius Marcellus Coolidge, was born in, upstate New York) -> upstate New York (2837ms) When was Julius Caesar born? Louisville Kentucky 0.11111111110799998 When was Julius Caesar born? -> $x: (cassius, be bear in, $x) -> (Cassius Clay, was born in, Louisville Kentucky) -> Louisville Kentucky (2828ms) When was Julius Caesar born? Conestoga Township 0.11111111110799998 When was Julius Caesar born? -> $x: (cassius, be bear in, $x) -> (1863-1939 Cassius Emlen Urban, was born in, Conestoga Township) -> Conestoga Township (2828ms) When was Julius Caesar born? Louisville 0.11111111110799998 When was Julius Caesar born? -> $x: (cassius, be bear in, $x) -> (Cassius Clay, was born in, Louisville) -> Louisville (2837ms) When was Julius Caesar born? 1942 0.11111111110799998 When was Julius Caesar born? -> $x: (cassius, be bear in, $x) -> (Cassius Clay, was born in, 1942) -> 1942 (2819ms) When was Julius Caesar born? Bedford -0.0 When was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (President William Augustus Stearns, was born in, Bedford) -> Bedford (2948ms) When was Julius Caesar born? 19 Nov 1871 -0.0 When was Julius Caesar born? -> $x: (augustus, be born on, $x) -> (FREDERICK AUGUSTUS HATCH, was born on, 19 Nov 1871) -> 19 Nov 1871 (2905ms) When was Julius Caesar born? 2 Mar 1842 -0.0 When was Julius Caesar born? -> $x: (augustus, be bear on, $x) -> (Augustus, was born on, 2 Mar 1842) -> 2 Mar 1842 (2984ms) When was Julius Caesar born? September 8 , 1841 -0.0 When was Julius Caesar born? -> $x: (julius, be born on, $x) -> (Charles Julius Guiteau, was born on, September 8 , 1841) -> September 8 , 1841 (2984ms) When was Julius Caesar born? Prussia -0.0 When was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (Augustus , Doroden and Maria, were born in, Prussia) -> Prussia (3000ms) When was Julius Caesar born? Madurai -0.0 When was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Augustus De Morgan, was born in, Madurai) -> Madurai (3010ms) When was Julius Caesar born? a small farm near Yuma -0.0 When was Julius Caesar born? -> $x: (chavez, be born on, $x) -> (Cesar Chavez, was born on, a small farm near Yuma) -> a small farm near Yuma (2863ms) When was Julius Caesar born? Cork -0.0 When was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Augustus Young, was born in, Cork) -> Cork (3000ms) When was Julius Caesar born? Missouri -0.0 When was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Augustus Tolton, was born in, Missouri) -> Missouri (3017ms) When was Julius Caesar born? September 8 -0.0 When was Julius Caesar born? -> $x: (augustus, be bear on, $x) -> (Samuel Augustus Nunn, was born on, September 8) -> September 8 (2970ms) When was Julius Caesar born? the Curiae Veteres area -0.0 When was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Augustus, was born in, the Curiae Veteres area) -> the Curiae Veteres area (2988ms) When was Julius Caesar born? February 12 , 1885 -0.0 When was Julius Caesar born? -> $x: (julius, be born on, $x) -> (Julius Streicher, was born on, February 12 , 1885) -> February 12 , 1885 (3010ms) When was Julius Caesar born? Los Chaves -0.0 When was Julius Caesar born? -> $x: (chavez, be bear in, $x) -> (Chavez, was born in, Los Chaves) -> Los Chaves (3017ms) When was Julius Caesar born? 6 Oct 1791 -0.0 When was Julius Caesar born? -> $x: (augustus, be born on, $x) -> (741 M xi Augustus Green Jr.-10069 1, was born on, 6 Oct 1791) -> 6 Oct 1791 (2935ms) When was Julius Caesar born? Paris -0.0 When was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (1922 Augustus Desir? Waller, was born in, Paris) -> Paris (3012ms) When was Julius Caesar born? 23 Mar 1845 -0.0 When was Julius Caesar born? -> $x: (augustus, be bear on, $x) -> (Henry Augustus Winslow, was born on, 23 Mar 1845) -> 23 Mar 1845 (2928ms) When was Julius Caesar born? April 18 , 1793 -0.0 When was Julius Caesar born? -> $x: (augustus, be born on, $x) -> (James Augustus Clare, were born on, April 18 , 1793) -> April 18 , 1793 (3010ms) When was Julius Caesar born? 1812 -0.0 When was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Augustus Welby Pugin, was born in, 1812) -> 1812 (3004ms) When was Julius Caesar born? 1833 -0.0 When was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (0.4 linear feet Augustus Beard, was born in, 1833) -> 1833 (2979ms) When was Julius Caesar born? April 13 , 1922 -0.0 When was Julius Caesar born? -> $x: (julius, be bear on, $x) -> (16 :45 Julius Kambarage Nyerere, was born on, April 13 , 1922) -> April 13 , 1922 (3017ms) When was Julius Caesar born? the city -0.0 When was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Augustus Hare, was born in, the city) -> the city (3017ms) When was Julius Caesar born? Russian -0.0 When was Julius Caesar born? -> $x: (salad, be born in, $x) -> (the salad, was born in, Russian) -> Russian (3000ms) When was Julius Caesar born? June 1 , 1983 -0.0 When was Julius Caesar born? -> $x: (chavez, be born on, $x) -> (junior featherweight Jackie Chavez, was born on, June 1 , 1983) -> June 1 , 1983 (2942ms) When was Julius Caesar born? Sept. 23 -0.0 When was Julius Caesar born? -> $x: (augustus, be bear on, $x) -> (Augustus, was born on, Sept. 23) -> Sept. 23 (2949ms) When was Julius Caesar born? Sheffield -0.0 When was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (Frederick Augustus Herman Frank Mitchell, was born in, Sheffield) -> Sheffield (2996ms) When was Julius Caesar born? July 28 , 1954 -0.0 When was Julius Caesar born? -> $x: (chavez, be born on, $x) -> (Chavez, was born on, July 28 , 1954) -> July 28 , 1954 (2996ms) When was Julius Caesar born? September 8 , 1938 -0.0 When was Julius Caesar born? -> $x: (augustus, be born on, $x) -> (Samuel Augustus Nunn, was born on, September 8 , 1938) -> September 8 , 1938 (2975ms) When was Julius Caesar born? 5 Nov 1834 -0.0 When was Julius Caesar born? -> $x: (julius, be born on, $x) -> (Julius, was born on, 5 Nov 1834) -> 5 Nov 1834 (3010ms) When was Julius Caesar born? Cobleskill -0.0 When was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Augustus L. OTTMAN-9623, was born 1845 in, Cobleskill) -> Cobleskill (2913ms) When was Julius Caesar born? front -0.0 When was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Augustus, were to be borne in, front) -> front (3012ms) When was Julius Caesar born? 1954 -0.0 When was Julius Caesar born? -> $x: (chavez, be bear in, $x) -> (Chavez, was born in, 1954) -> 1954 (3004ms) When was Julius Caesar born? slavery -0.0 When was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (such was Father Augustus Tolton, was born in, slavery) -> slavery (2996ms) When was Julius Caesar born? Webster Co. -0.0 When was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Augustus Homer Callaway, was born in, Webster Co.) -> Webster Co. (2935ms) When was Julius Caesar born? may_12 -0.0 When was Julius Caesar born? -> $x: (augustus, be bear on, $x) -> (Augustus II, is a person born on the date, may_12) -> may_12 (2913ms) When was Julius Caesar born? Dublin -0.0 When was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (Augustus, was born in, Dublin) -> Dublin (3020ms) When was Julius Caesar born? 3 July 1837 -0.0 When was Julius Caesar born? -> $x: (augustus, be bear on, $x) -> (a Charles Augustus Benson, was born on, 3 July 1837) -> 3 July 1837 (2979ms) When was Julius Caesar born? Tijuana -0.0 When was Julius Caesar born? -> $x: (salad, be bear in, $x) -> (the Cesar Salad, was born in, Tijuana) -> Tijuana (2959ms) When was Julius Caesar born? Sabaneta -0.0 When was Julius Caesar born? -> $x: (chavez, be born in, $x) -> (Chavez, was born in, Sabaneta) -> Sabaneta (2965ms) When was Julius Caesar born? German -0.0 When was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Augustus Heck, was born in, German) -> German (3012ms) When was Julius Caesar born? Chillanes -0.0 When was Julius Caesar born? -> $x: (chavez, be bear in, $x) -> (Researcher Karina Mabell Gomez Chavez, was born in, Chillanes) -> Chillanes (2872ms) When was Julius Caesar born? Feb. 4 , 1902 -0.0 When was Julius Caesar born? -> $x: (augustus, be born on, $x) -> (Detroit Charles Augustus Lindbergh, was born on, Feb. 4 , 1902) -> Feb. 4 , 1902 (2954ms) When was Julius Caesar born? 1924 -0.0 When was Julius Caesar born? -> $x: (salad, be bear in, $x) -> (this popular salad, was born in, 1924) -> 1924 (3015ms) When was Julius Caesar born? 1927 -0.0 When was Julius Caesar born? -> $x: (chavez, be bear in, $x) -> (Chavez, was born in, 1927) -> 1927 (3022ms) When was Julius Caesar born? March 25 -0.0 When was Julius Caesar born? -> $x: (julius, be born on, $x) -> (Julius Mand, was born on, March 25) -> March 25 (2988ms) When was Julius Caesar born? 16 Dec 1865 -0.0 When was Julius Caesar born? -> $x: (augustus, be born on, $x) -> (Augustus Edward Bayol Jr., was born on, 16 Dec 1865) -> 16 Dec 1865 (2988ms) When was Julius Caesar born? San Antonio Texas -0.0 When was Julius Caesar born? -> $x: (chavez, be born in, $x) -> (Gloria Chavez Gloria Chavez, was born in, San Antonio Texas) -> San Antonio Texas (2975ms) When was Julius Caesar born? February -0.0 When was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (Frederick Augustus Bailey, was born in, February) -> February (2959ms) When was Julius Caesar born? a farm -0.0 When was Julius Caesar born? -> $x: (julius, be born on, $x) -> (Charles Julius Umlauf, was born on, a farm) -> a farm (2988ms) When was Julius Caesar born? Albuquerque -0.0 When was Julius Caesar born? -> $x: (chavez, be born in, $x) -> (Chavez, was born in, Albuquerque) -> Albuquerque (3020ms) When was Julius Caesar born? Greenwood township -0.0 When was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (271 Augustus Person, was born in, Greenwood township) -> Greenwood township (2970ms) When was Julius Caesar born? May 12 , 1918 -0.0 When was Julius Caesar born? -> $x: (julius, be born on, $x) -> (Julius Rosenberg, was born on, May 12 , 1918) -> May 12 , 1918 (3010ms) When was Julius Caesar born? Wrightsville -0.0 When was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (AUGUSTUS R WRIGHT, was born in, Wrightsville) -> Wrightsville (2988ms) When was Julius Caesar born? 1877 -0.0 When was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Garrett Augustus Morgan, was born in, 1877) -> 1877 (3012ms) When was Julius Caesar born? 17 January 1942 -0.0 When was Julius Caesar born? -> $x: (cassius, be born on, $x) -> (Cassius Marcellus Clay, was born on, 17 January 1942) -> 17 January 1942 (2954ms) When was Julius Caesar born? the 11th -0.0 When was Julius Caesar born? -> $x: (julius, be born on, $x) -> (Tim Flock Julius Timothy Flock, was born on, the 11th) -> the 11th (3020ms) When was Julius Caesar born? Mandura -0.0 When was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (De Morgan Augustus De Morgan, was born in, Mandura) -> Mandura (3015ms) When was Julius Caesar born? Guadalajara -0.0 When was Julius Caesar born? -> $x: (chavez, be bear in, $x) -> (Lydia Chavez, was born in, Guadalajara) -> Guadalajara (3022ms) When was Julius Caesar born? February 4th -0.0 When was Julius Caesar born? -> $x: (augustus, be bear on, $x) -> (Charles Augustus Lindbergh, was born on, February 4th) -> February 4th (3000ms) When was Julius Caesar born? Arizona -0.0 When was Julius Caesar born? -> $x: (chavez, be bear in, $x) -> (Chavez, was born in, Arizona) -> Arizona (3015ms) When was Julius Caesar born? April 8 , 1888 -0.0 When was Julius Caesar born? -> $x: (chavez, be bear on, $x) -> (Chavez, was born on, April 8 , 1888) -> April 8 , 1888 (3004ms) When was Julius Caesar born? America -0.0 When was Julius Caesar born? -> $x: (chavez, be born in, $x) -> (Chavez, was born in, America) -> America (2942ms) When was Julius Caesar born? the hill -0.0 When was Julius Caesar born? -> $x: (augustus, be born on, $x) -> (Augustus, was born on, the hill) -> the hill (2979ms) When was Julius Caesar born? 7 September 1872 -0.0 When was Julius Caesar born? -> $x: (julius, be bear on, $x) -> (Julius, was born on, 7 September 1872) -> 7 September 1872 (2942ms) When was Julius Caesar born? 29 Aug 1886 -0.0 When was Julius Caesar born? -> $x: (augustus, be born on, $x) -> (AUGUSTUS BRADFORD MERRY, was born on, 29 Aug 1886) -> 29 Aug 1886 (2959ms) When was Julius Caesar born? December 1 , 1842 -0.0 When was Julius Caesar born? -> $x: (julius, be born on, $x) -> (Julius Sylvester Walsh, was born on, December 1 , 1842) -> December 1 , 1842 (2935ms) When was Julius Caesar born? New Mexico -0.0 When was Julius Caesar born? -> $x: (chavez, be bear in, $x) -> (Chavez, was born in, New Mexico) -> New Mexico (3022ms) When was Julius Caesar born? 11 Oct 1866 -0.0 When was Julius Caesar born? -> $x: (augustus, be bear on, $x) -> (Augustus, was born on, 11 Oct 1866) -> 11 Oct 1866 (2975ms) When was Julius Caesar born? Arequipa -0.0 When was Julius Caesar born? -> $x: (chavez, be bear in, $x) -> (Alberto Joaquin Vargas Y Chavez, was born in, Arequipa) -> Arequipa (3020ms) When was Julius Caesar born? January 27th -0.0 When was Julius Caesar born? -> $x: (julius, be born on, $x) -> (Julius Lester, was born on, January 27th) -> January 27th (3015ms) When was Julius Caesar born? Victoria -0.0 When was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Robert Augustus Masters, was born in, Victoria) -> Victoria (2928ms) When was Julius Caesar born? March 31 , 1927 -0.0 When was Julius Caesar born? -> $x: (chavez, be bear on, $x) -> (Cesar Chavez, was born on, March 31 , 1927) -> March 31 , 1927 (3020ms) When was Julius Caesar born? Mayag?ez -0.0 When was Julius Caesar born? -> $x: (chavez, be born in, $x) -> (Hugo Chavez ? Serrano, was born in, Mayag?ez) -> Mayag?ez (2905ms) When was Julius Caesar born? 23 Apr 1878 -0.0 When was Julius Caesar born? -> $x: (augustus, be bear on, $x) -> (Augustus, was born on, 23 Apr 1878) -> 23 Apr 1878 (2965ms) When was Julius Caesar born? Puente Llaguno -0.0 When was Julius Caesar born? -> $x: (chavez, be born in, $x) -> (Chavez, were bearing arms in, Puente Llaguno) -> Puente Llaguno (3020ms) When was Julius Caesar born? Atarque -0.0 When was Julius Caesar born? -> $x: (chavez, be born in, $x) -> (Pauline Chavez Bent, was born in, Atarque) -> Atarque (2979ms) When was Julius Caesar born? 1929 -0.0 When was Julius Caesar born? -> $x: (chavez, be bear in, $x) -> (Richard Chavez, was born in, 1929) -> 1929 (2913ms) When was Julius Caesar born? May 30th -0.0 When was Julius Caesar born? -> $x: (julius, be bear on, $x) -> (close Biography Julius Axelrod, was born on, May 30th) -> May 30th (3017ms) When was Julius Caesar born? Chicago?s South Side -0.0 When was Julius Caesar born? -> $x: (julius, be born on, $x) -> (Julius Claybron, was born on, Chicago?s South Side) -> Chicago?s South Side (2942ms) When was Julius Caesar born? the 29th -0.0 When was Julius Caesar born? -> $x: (julius, be bear on, $x) -> (Sir Julius, was born on, the 29th) -> the 29th (3015ms) When was Julius Caesar born? Santa Clara County -0.0 When was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (Augustus A. Schoenheit, was born in, Santa Clara County) -> Santa Clara County (2942ms) When was Julius Caesar born? 10 Apr 1950 -0.0 When was Julius Caesar born? -> $x: (chavez, be born on, $x) -> (Consuelo CHAVEZ, was born on, 10 Apr 1950) -> 10 Apr 1950 (2988ms) When was Julius Caesar born? Jefferson County -0.0 When was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (Augustus A., was also born in, Jefferson County) -> Jefferson County (2988ms) When was Julius Caesar born? Lebanon County -0.0 When was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Augustus Cassell, was born in, Lebanon County) -> Lebanon County (2996ms) When was Julius Caesar born? Uxbridge -0.0 When was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (This Charles Augustus, was born in, Uxbridge) -> Uxbridge (3015ms) When was Julius Caesar born? Bedford county -0.0 When was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Augustus Sellers, was born in, Bedford county) -> Bedford county (3000ms) When was Julius Caesar born? January 17 , 1942 -0.0 When was Julius Caesar born? -> $x: (cassius, be bear on, $x) -> (Cassius Clay, was born on, January 17 , 1942) -> January 17 , 1942 (3004ms) When was Julius Caesar born? Kandern -0.0 When was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (Johann Augustus Sutter, is born in, Kandern) -> Kandern (2975ms) When was Julius Caesar born? 10 Apr 1852 -0.0 When was Julius Caesar born? -> $x: (augustus, be born on, $x) -> (George Augustus Merry, was born on, 10 Apr 1852) -> 10 Apr 1852 (2988ms) When was Julius Caesar born? 23 September 63 BC -0.0 When was Julius Caesar born? -> $x: (augustus, be born on, $x) -> (the emperor Augustus, was born on, 23 September 63 BC) -> 23 September 63 BC (2942ms) When was Julius Caesar born? 30 Mar 1831 -0.0 When was Julius Caesar born? -> $x: (augustus, be bear on, $x) -> (1225 M i Augustus Jones Hammett-9247 1, was born on, 30 Mar 1831) -> 30 Mar 1831 (2984ms) When was Julius Caesar born? 18 JUN -0.0 When was Julius Caesar born? -> $x: (julius, be bear on, $x) -> (Rienzie Julius HULETT, was born on, 18 JUN) -> 18 JUN (3010ms) When was Julius Caesar born? 25 Nov 1823 -0.0 When was Julius Caesar born? -> $x: (augustus, be bear on, $x) -> (William Augustus Behie, was born on, 25 Nov 1823) -> 25 Nov 1823 (2970ms) When was Julius Caesar born? June 25 , 1894 -0.0 When was Julius Caesar born? -> $x: (julius, be bear on, $x) -> (Hermann Julius Oberth, was born on, June 25 , 1894) -> June 25 , 1894 (3022ms) When was Julius Caesar born? earth -0.0 When was Julius Caesar born? -> $x: (augustus, be bear on, $x) -> (the Roman Emperor Augustus, was born on, earth) -> earth (2979ms) When was Julius Caesar born? 11 May 1844 -0.0 When was Julius Caesar born? -> $x: (julius, be born on, $x) -> (Julius, was born on, 11 May 1844) -> 11 May 1844 (2920ms) When was Julius Caesar born? Swansonville -0.0 When was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (Claude Augustus Swanson, was born in, Swansonville) -> Swansonville (2988ms) When was Julius Caesar born? 63 B.C. -0.0 When was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (C?sar Augustus, is born in, 63 B.C.) -> 63 B.C. (2992ms) When was Julius Caesar born? Apr 22nd -0.0 When was Julius Caesar born? -> $x: (cassius, be bear on, $x) -> (his son Cassius, was born on, Apr 22nd) -> Apr 22nd (3020ms) When was Julius Caesar born? February 2 , 1882 -0.0 When was Julius Caesar born? -> $x: (augustus, be bear on, $x) -> (James Augustus Aloysius Joyce, was born on, February 2 , 1882) -> February 2 , 1882 (3015ms) When was Julius Caesar born? Montgomery county -0.0 When was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (Augustus G. SINKS, was born in, Montgomery county) -> Montgomery county (3000ms) When was Julius Caesar born? India -0.0 When was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (Augustus De Morgan, was born in, India) -> India (3015ms) When was Julius Caesar born? February 27 -0.0 When was Julius Caesar born? -> $x: (julius, be bear on, $x) -> (Julius, was born on, February 27) -> February 27 (3015ms) When was Julius Caesar born? February 20th -0.0 When was Julius Caesar born? -> $x: (julius, be bear on, $x) -> (Dr. Julius Menn Dr. Julius Menn, was born on, February 20th) -> February 20th (3012ms) When was Julius Caesar born? 8 May 1882 -0.0 When was Julius Caesar born? -> $x: (augustus, be bear on, $x) -> (Augustus Bush JACKSON-70, was born on, 8 May 1882) -> 8 May 1882 (3020ms) When was Julius Caesar born? February 2 , 1902 -0.0 When was Julius Caesar born? -> $x: (augustus, be born on, $x) -> (Charles Augustus Lindbergh, was born on, February 2 , 1902) -> February 2 , 1902 (3004ms) When was Julius Caesar born? Yuma -0.0 When was Julius Caesar born? -> $x: (chavez, be bear in, $x) -> (Cesar Chavez, was born in, Yuma) -> Yuma (3022ms) When was Julius Caesar born? Baltimore -0.0 When was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (J. Augustus Jones J. Augustus Jones, was born in, Baltimore) -> Baltimore (2905ms) When was Julius Caesar born? Southern California -0.0 When was Julius Caesar born? -> $x: (chavez, be born in, $x) -> (Jeff Chavez, was born in, Southern California) -> Southern California (2897ms) When was Julius Caesar born? Trinidad -0.0 When was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (Wintley Augustus Phipps, was born in, Trinidad) -> Trinidad (2979ms) When was Julius Caesar born? March 31 -0.0 When was Julius Caesar born? -> $x: (chavez, be bear on, $x) -> (Cesar Chavez, was born on, March 31) -> March 31 (3010ms) When was Julius Caesar born? Scotland -0.0 When was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Augustus Sawers, was born in, Scotland) -> Scotland (3012ms) When was Julius Caesar born? 12 April 1894 -0.0 When was Julius Caesar born? -> $x: (julius, be born on, $x) -> (Julius, was born on, 12 April 1894) -> 12 April 1894 (3017ms) When was Julius Caesar born? Nov. 3 , 1987 -0.0 When was Julius Caesar born? -> $x: (cassius, be born on, $x) -> (Cassius Vaughn, was born on, Nov. 3 , 1987) -> Nov. 3 , 1987 (3017ms) When was Julius Caesar born? Muehlhausen -0.0 When was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Johann Augustus Roebling, was born in, Muehlhausen) -> Muehlhausen (2959ms) When was Julius Caesar born? Nazaret -0.0 When was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Ceasar Augustus, would 've been born in, Nazaret) -> Nazaret (3012ms) When was Julius Caesar born? NC -0.0 When was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (Benjamin Augustus Cook, was born in, NC) -> NC (2949ms) When was Julius Caesar born? 13 April 1922 -0.0 When was Julius Caesar born? -> $x: (julius, be born on, $x) -> (Julius Nyerere, was born on, 13 April 1922) -> 13 April 1922 (2942ms) When was Julius Caesar born? Detroit -0.0 When was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Charles Augustus Lindbergh, was born in, Detroit) -> Detroit (3017ms) When was Julius Caesar born? Middleburgh -0.0 When was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Peter Augustus SWART-4089, was born 1830 in, Middleburgh) -> Middleburgh (3015ms) When was Julius Caesar born? April 12 , 1851 -0.0 When was Julius Caesar born? -> $x: (augustus, be born on, $x) -> (Samuel Augustus Weller, was born on, April 12 , 1851) -> April 12 , 1851 (2992ms) When was Julius Caesar born? the small farm -0.0 When was Julius Caesar born? -> $x: (chavez, be born on, $x) -> (March 31--Cesario Estrada Chavez, is born on, the small farm) -> the small farm (3012ms) When was Julius Caesar born? February 22 , 1950 -0.0 When was Julius Caesar born? -> $x: (julius, be born on, $x) -> (Julius Winfield Erving II, was born on, February 22 , 1950) -> February 22 , 1950 (2935ms) When was Julius Caesar born? a small farm -0.0 When was Julius Caesar born? -> $x: (chavez, be bear on, $x) -> (Cesar Chavez, was born on, a small farm) -> a small farm (3000ms) When was Julius Caesar born? January 18 , 1854 -0.0 When was Julius Caesar born? -> $x: (augustus, be bear on, $x) -> (Thomas Augustus Watson, was born on, January 18 , 1854) -> January 18 , 1854 (2964ms) When was Julius Caesar born? 1819 -0.0 When was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (Augustus SENTELL, was born in, 1819) -> 1819 (3022ms) When was Julius Caesar born? 1839 -0.0 When was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (Augustus Edward Bayol Sr, was born in, 1839) -> 1839 (3010ms) When was Julius Caesar born? 2 Jun 1886 -0.0 When was Julius Caesar born? -> $x: (augustus, be bear on, $x) -> (Elmer Augustus Rice, was born on, 2 Jun 1886) -> 2 Jun 1886 (2954ms) When was Julius Caesar born? Ohio -0.0 When was Julius Caesar born? -> $x: (augustus, be born in, $x) -> (a brother Augustus, was born in, Ohio) -> Ohio (2897ms) When was Julius Caesar born? 1856 -0.0 When was Julius Caesar born? -> $x: (augustus, be bear in, $x) -> (Mining baron Augustus Van Wickle, was born in, 1856) -> 1856 (3012ms) When was Julius Caesar born? Halloween -0.0 When was Julius Caesar born? -> $x: (salad, be born on, $x) -> (This salad, was born on, Halloween) -> Halloween (3017ms) When was Julius Caesar born? 16 Apr 1843 -0.0 When was Julius Caesar born? -> $x: (augustus, be born on, $x) -> (Walter Augustus JACKSON-40, was born on, 16 Apr 1843) -> 16 Apr 1843 (2954ms) When was Julius Caesar born? 23 Nov 1921 -0.0 When was Julius Caesar born? -> $x: (julius, be bear on, $x) -> (Julius Vasquez, was born on, 23 Nov 1921) -> 23 Nov 1921 (2975ms) When was Julius Caesar born? 7 Sep 1823 -0.0 When was Julius Caesar born? -> $x: (augustus, be bear on, $x) -> (Charles Augustus Balcom, was born on, 7 Sep 1823) -> 7 Sep 1823 (2959ms) When was Julius Caesar born? Rocky Mount -0.111111111111 When was Julius Caesar born? -> $x: (julius, live in, $x) -> (Prussian merchant Julius Joel, lived in, Rocky Mount) -> Rocky Mount (3024ms) When was Julius Caesar born? the Minnesota Lake area -0.111111111111 When was Julius Caesar born? -> $x: (julius, live in, $x) -> (Julius and Emilie, lived in, the Minnesota Lake area) -> the Minnesota Lake area (3025ms) When was Julius Caesar born? lagos -0.111111111111 When was Julius Caesar born? -> $x: (julius, live in, $x) -> (Am Julius ,i, live in, lagos) -> lagos (3026ms) When was Julius Caesar born? Dallas -0.111111111111 When was Julius Caesar born? -> $x: (julius, be from in, $x) -> (Julius Jones, was shipped in from, Dallas) -> Dallas (3028ms) When was Julius Caesar born? exile -0.111111111111 When was Julius Caesar born? -> $x: (octavian, live in, $x) -> (Octavian, live in, exile) -> exile (3024ms) When was Julius Caesar born? Lambertsville -0.111111111111 When was Julius Caesar born? -> $x: (julius, live in, $x) -> (Bror Julius Nordfeldt, lived his last years in, Lambertsville) -> Lambertsville (3025ms) When was Julius Caesar born? a decision -0.111111111111 When was Julius Caesar born? -> $x: (julius, be from in, $x) -> (Julius Malema, was expelled from the party in, a decision) -> a decision (3026ms) When was Julius Caesar born? the nineteenth-century -0.111111111111 When was Julius Caesar born? -> $x: (julius, live in, $x) -> (Julius Wellhausen, lived in, the nineteenth-century) -> the nineteenth-century (3024ms) When was Julius Caesar born? Wahee -0.111111111111 When was Julius Caesar born? -> $x: (julius, live in, $x) -> (Julius, is also living in, Wahee) -> Wahee (3025ms) When was Julius Caesar born? Cividale -0.111111111111 When was Julius Caesar born? -> $x: (julius, live in, $x) -> (Julius Ceaser, lived in, Cividale) -> Cividale (3024ms) When was Julius Caesar born? Sommerville -0.111111111111 When was Julius Caesar born? -> $x: (julius, live in, $x) -> (Julius C Sturgis, lived in, Sommerville) -> Sommerville (3026ms) When was Julius Caesar born? a socialization cage -0.111111111111 When was Julius Caesar born? -> $x: (julius, live now in, $x) -> (Julius, is now living in, a socialization cage) -> a socialization cage (3028ms) When was Julius Caesar born? the FOY farm -0.111111111111 When was Julius Caesar born? -> $x: (julius, live on, $x) -> (Julius HEIDER, lived on, the FOY farm) -> the FOY farm (3025ms) When was Julius Caesar born? a happier age -0.111111111111 When was Julius Caesar born? -> $x: (julius, live in, $x) -> (Julius, lived in, a happier age) -> a happier age (3027ms) When was Julius Caesar born? Shanghai -0.111111111111 When was Julius Caesar born? -> $x: (julius, live in, $x) -> (Julius, lived in, Shanghai) -> Shanghai (3027ms) When was Julius Caesar born? Berlin -0.111111111111 When was Julius Caesar born? -> $x: (julius, live in, $x) -> (Julius Moser, lived in, Berlin) -> Berlin (3026ms) When was Julius Caesar born? Dickinson -0.111111111111 When was Julius Caesar born? -> $x: (julius, live in, $x) -> (Julius & Joyce, lived in, Dickinson) -> Dickinson (3024ms) When was Julius Caesar born? Brandon -0.111111111111 When was Julius Caesar born? -> $x: (julius, live in, $x) -> (Julius C. Lynch, then lived in, Brandon) -> Brandon (3029ms) How many NFL teams are there? San Francisco 1.444444444455 How many NFL teams are there? -> $x: (nfl, be team in, $x) -> (his first NFL job, was coaching special teams in, San Francisco) -> San Francisco (1163ms) How many NFL teams are there? the league 1.444444444455 How many NFL teams are there? -> $x: (nfl, be team in, $x) -> (NFL Power Rankings, are the best teams in, the league) -> the league (1162ms) How many NFL teams are there? NFL 1.444444444455 How many NFL teams are there? -> $x: (nfl, be team in, $x) -> (NFL Jerseys, is a sports team that plays in the league, NFL) -> NFL (1162ms) How many NFL teams are there? England 0.888888888889 How many NFL teams are there? -> $x: (football, be team in, $x) -> (Heart Football, really are the biggest team in, England) -> England (1796ms) How many NFL teams are there? ncaa 0.888888888889 How many NFL teams are there? -> $x: (football, be team in, $x) -> (providence friars football, is a sports team that plays in the league, ncaa) -> ncaa (1797ms) How many NFL teams are there? the NFL 0.888888888889 How many NFL teams are there? -> $x: (football, be team in, $x) -> (the New York Football Giants, are the best team in, the NFL) -> the NFL (1162ms) How many NFL teams are there? 1994 0.888888888889 How many NFL teams are there? -> $x: (football, be team in, $x) -> (his college football, was the team captain in, 1994) -> 1994 (1162ms) How many NFL teams are there? Qom 0.888888888889 How many NFL teams are there? -> $x: (football, be team in, $x) -> (Saba Battery Football Club, is a football team based in, Qom) -> Qom (1162ms) How many NFL teams are there? the first half 0.888888888889 How many NFL teams are there? -> $x: (football, be team in, $x) -> (football United, were clearly the better team in, the first half) -> the first half (1162ms) How many NFL teams are there? football 0.888888888889 How many NFL teams are there? -> $x: (football, be team in, $x) -> (the two local football stories, are the best team in, football) -> football (1796ms) How many NFL teams are there? ACC 0.888888888889 How many NFL teams are there? -> $x: (football, be team in, $x) -> (wake-forest-deacons-football, is a sports team that plays in the league, ACC) -> ACC (1797ms) How many NFL teams are there? 2003 0.888888888889 How many NFL teams are there? -> $x: (football, be team in, $x) -> (the Bulldog football squad, was a team captain in, 2003) -> 2003 (1162ms) How many NFL teams are there? Cyprus 0.888888888889 How many NFL teams are there? -> $x: (football, be team in, $x) -> (football team, was the first team in, Cyprus) -> Cyprus (1796ms) How many NFL teams are there? the country 0.888888888889 How many NFL teams are there? -> $x: (football, be team in, $x) -> (Football, is the most popular team sport in, the country) -> the country (1796ms) How many NFL teams are there? Josh McCown 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Josh McCown, played quarterback for, several NFL teams) -> Josh McCown (3984ms) How many NFL teams are there? a retired American football halfback 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (a retired American football halfback, played for, the NFL) -> a retired American football halfback (2485ms) How many NFL teams are there? Bill 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Bill, played for, 16 NFL seasons) -> Bill (2536ms) How many NFL teams are there? Tebow 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Tebow, wants to play for, an average NFL team) -> Tebow (3984ms) How many NFL teams are there? the Pats 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (the Pats, will be playing for, the NFL title) -> the Pats (3586ms) How many NFL teams are there? One recent Wildcat 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (One recent Wildcat, even plays for, my favorite NFL team) -> One recent Wildcat (1931ms) How many NFL teams are there? Grant 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Grant, is playing for, the NFL minimum wage) -> Grant (2485ms) How many NFL teams are there? NBA or NHL 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (NBA or NHL, played for, the draft nfl football jerseys) -> NBA or NHL (2595ms) How many NFL teams are there? the Steelers 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (the Steelers, will play for, the NFL trophy) -> the Steelers (2230ms) How many NFL teams are there? a star 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (a star, now plays center for, the NFL?s New York Jets) -> a star (2536ms) How many NFL teams are there? The Decision ? 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (The Decision ?, play for, the NFL) -> The Decision ? (3148ms) How many NFL teams are there? Adams 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Adams, played for, five different NFL teams) -> Adams (2536ms) How many NFL teams are there? Homer Simpson 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Homer Simpson, plays for, the NFL) -> Homer Simpson (3984ms) How many NFL teams are there? Mr. Johnson 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Mr. Johnson, played football for, the NFL) -> Mr. Johnson (3984ms) How many NFL teams are there? Konz 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Konz, will play for, first-year NFL Head Coach Pete Carrol) -> Konz (1931ms) How many NFL teams are there? Deion Sanders 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Deion Sanders, played for, five NFL teams) -> Deion Sanders (2536ms) How many NFL teams are there? May 14 , 2008 Whitley 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (May 14 , 2008 Whitley, played for, 3 NFL teams) -> May 14 , 2008 Whitley (3631ms) How many NFL teams are there? Daryl Sanders 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Daryl Sanders, played for, the NFL) -> Daryl Sanders (3984ms) How many NFL teams are there? Deon Sanders 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Deon Sanders, played for, several NFL teams) -> Deon Sanders (1931ms) How many NFL teams are there? sophomore safety Terrance Bullitt 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (sophomore safety Terrance Bullitt, plays for, the NFL) -> sophomore safety Terrance Bullitt (3984ms) How many NFL teams are there? Attorney Charles Johnson 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Attorney Charles Johnson, played football for, the NFL) -> Attorney Charles Johnson (3148ms) How many NFL teams are there? an average football player 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (an average football player, got playing for, the NFL) -> an average football player (3586ms) How many NFL teams are there? the Pittsburgh Steelers 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (the Pittsburgh Steelers, will play for, the NFL Championship) -> the Pittsburgh Steelers (3925ms) How many NFL teams are there? Lawrence Lamont Phillips 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Lawrence Lamont Phillips, used to play for, the NFL) -> Lawrence Lamont Phillips (3984ms) How many NFL teams are there? Lathrop 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Lathrop, played for, the NFL?s Denver Broncos) -> Lathrop (1931ms) How many NFL teams are there? every semester 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (every semester, currently plays for, the NFL team) -> every semester (3925ms) How many NFL teams are there? not one 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (not one, is playing for, the NFL) -> not one (2595ms) How many NFL teams are there? Several athletes 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Several athletes, formerly played for, the NFL) -> Several athletes (1931ms) How many NFL teams are there? the second player 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (the second player, played quarterback for, 13 NFL seasons) -> the second player (3148ms) How many NFL teams are there? Harris 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Harris, played for, three NFL teams) -> Harris (3631ms) How many NFL teams are there? a single game 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (a single game, played each year for, the NFL Championship) -> a single game (3984ms) How many NFL teams are there? Rison 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Rison, played for, seven NFL teams) -> Rison (3147ms) How many NFL teams are there? James Lofton ? Lofton 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (James Lofton ? Lofton, played for, five NFL franchises) -> James Lofton ? Lofton (3148ms) How many NFL teams are there? the year 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (the year, play for, their favorite NFL team) -> the year (3631ms) How many NFL teams are there? last 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (last, played for, the NFL title) -> last (3632ms) How many NFL teams are there? You?ve 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (You?ve, played for, several NFL teams) -> You?ve (2485ms) How many NFL teams are there? The Denver Broncos 0.6666666666759999 How many NFL teams are there? -> $x: ($x, be team of, nfl) -> (The Denver Broncos, are a football team of, the NFL) -> The Denver Broncos (3148ms) How many NFL teams are there? Tony Parrish Tony Parrish 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Tony Parrish Tony Parrish, played for, three NFL teams) -> Tony Parrish Tony Parrish (3925ms) How many NFL teams are there? a former all-American 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (a former all-American, played for, the NFL?s Texans and Titans) -> a former all-American (1931ms) How many NFL teams are there? Green 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Green, plays for, the NFL?s Bengals) -> Green (2231ms) How many NFL teams are there? the minor cowboy hero 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (the minor cowboy hero, played for, 2 NFL teams) -> the minor cowboy hero (3925ms) How many NFL teams are there? every athlete 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (every athlete, has ever dreamed of playing for, the NFL) -> every athlete (3925ms) How many NFL teams are there? McCoy 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (McCoy, was playing for, his fourth NFL team) -> McCoy (3631ms) How many NFL teams are there? Moss last 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Moss last, played for, three NFL teams) -> Moss last (3925ms) How many NFL teams are there? Aaron Brown 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Aaron Brown, will be playing for, another NFL team) -> Aaron Brown (2536ms) How many NFL teams are there? St . Louis Rams 0.6666666666759999 How many NFL teams are there? -> $x: ($x, be team of, nfl) -> (St . Louis Rams, is a famous team of, NFL) -> St . Louis Rams (2230ms) How many NFL teams are there? Gesser 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Gesser, played for, the NFL) -> Gesser (3984ms) How many NFL teams are there? Jeep 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Jeep, also played for, the NFL) -> Jeep (3631ms) How many NFL teams are there? Aoga 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Aoga, played for, NFL Europe?s Barcelona Dragons) -> Aoga (3984ms) How many NFL teams are there? a lineman 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (a lineman, played for, three NFL teams) -> a lineman (3586ms) How many NFL teams are there? a tremendous football player 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (a tremendous football player, played for, the NFL) -> a tremendous football player (2485ms) How many NFL teams are there? Aaron Morehead 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Aaron Morehead, is playing for, his NFL career) -> Aaron Morehead (2485ms) How many NFL teams are there? the Redskins 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (the Redskins, have played for, eleven NFL Championships) -> the Redskins (2485ms) How many NFL teams are there? Miami?s Leon Williams 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Miami?s Leon Williams, played for, the NFL?s Cleveland Browns) -> Miami?s Leon Williams (2595ms) How many NFL teams are there? the best teams 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (the best teams, play each other for, the NFL Super Bowl) -> the best teams (1931ms) How many NFL teams are there? the luxury 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (the luxury, playing for, a former NFL guy in college) -> the luxury (2595ms) How many NFL teams are there? Mistler 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Mistler, played for, the NFL) -> Mistler (3148ms) How many NFL teams are there? Next 0.6666666666759999 How many NFL teams are there? -> $x: ($x, be team of, nfl) -> (Next, up is the Teams of, the NFL Exhibit) -> Next (3984ms) How many NFL teams are there? partner Tony Romo 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (partner Tony Romo, plays quarterback for, the NFL) -> partner Tony Romo (3925ms) How many NFL teams are there? Detmer 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Detmer, played for, six different NFL teams) -> Detmer (2536ms) How many NFL teams are there? Baskett 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Baskett, has played for, three NFL teams) -> Baskett (2485ms) How many NFL teams are there? Sanders 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Sanders, played for, five NFL teams) -> Sanders (3632ms) How many NFL teams are there? an All-American career 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (an All-American career, now plays for, the NFL) -> an All-American career (3984ms) How many NFL teams are there? Carolina Panthers 0.6666666666759999 How many NFL teams are there? -> $x: ($x, be team of, nfl) -> (Carolina Panthers, are the 29th team of, the NFL) -> Carolina Panthers (3984ms) How many NFL teams are there? Conrad Dobler 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Conrad Dobler, played professional football for, three NFL teams) -> Conrad Dobler (2536ms) How many NFL teams are there? the undrafted free agent 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (the undrafted free agent, is playing for, his NFL career) -> the undrafted free agent (2231ms) How many NFL teams are there? Pat Tillman 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Pat Tillman, played four seasons for, the NFL) -> Pat Tillman (3984ms) How many NFL teams are there? he?s 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (he?s, played for, three NFL teams) -> he?s (3586ms) How many NFL teams are there? Tillman 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Tillman, played safety for, the NFL?s Arizona Cardinals) -> Tillman (3925ms) How many NFL teams are there? cousin 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (cousin, played for, the NFL) -> cousin (3984ms) How many NFL teams are there? C.J. Spiller 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (C.J. Spiller, now plays for, the NFL) -> C.J. Spiller (3631ms) How many NFL teams are there? a signing bonus 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (a signing bonus, will play for, the NFL minimum) -> a signing bonus (2231ms) How many NFL teams are there? Bo Jackson Sullivan 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Bo Jackson Sullivan, played for, the NFL?s Atlanta Falcons) -> Bo Jackson Sullivan (3586ms) How many NFL teams are there? the University 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (the University, currently plays for, the NFL) -> the University (3925ms) How many NFL teams are there? The 2008 Cardinals 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (The 2008 Cardinals, also played for, the NFL title) -> The 2008 Cardinals (3925ms) How many NFL teams are there? Meggett?s father 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Meggett?s father, played for, three NFL teams) -> Meggett?s father (3147ms) How many NFL teams are there? John Avery 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (John Avery, has played for, several NFL and CFL teams) -> John Avery (2536ms) How many NFL teams are there? tackle 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (tackle, is playing for, his third NFL team) -> tackle (2230ms) How many NFL teams are there? college 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (college, make a commitment to play for, an NFL team) -> college (2485ms) How many NFL teams are there? Sherrard 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Sherrard, played for, four NFL teams) -> Sherrard (2230ms) How many NFL teams are there? Couch 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Couch, played for, the NFL?s Cleveland Browns) -> Couch (3925ms) How many NFL teams are there? Fontenot 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Fontenot, played center for, 16 NFL seasons) -> Fontenot (3586ms) How many NFL teams are there? Brian 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Brian, played strong safety for, the NFL) -> Brian (2595ms) How many NFL teams are there? The 34-year-old Graham 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (The 34-year-old Graham, has played for, a dozen NFL teams) -> The 34-year-old Graham (2595ms) How many NFL teams are there? Sayers 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (Sayers, signed a contract to play for, the NFL) -> Sayers (3586ms) How many NFL teams are there? an All-Pro career 0.6666666666759999 How many NFL teams are there? -> $x: ($x, play for, nfl) -> (an All-Pro career, played for, three NFL teams) -> an All-Pro career (2595ms) How many NFL teams are there? the Bills 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (the Bills, are the worst team in, the NFL) -> the Bills (4060ms) How many NFL teams are there? Miami Dolphins 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Miami Dolphins, is a sports team that plays in the league, NFL) -> Miami Dolphins (4070ms) How many NFL teams are there? los angeles raiders 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (los angeles raiders, is a sports team that plays in the league, NFL) -> los angeles raiders (4037ms) How many NFL teams are there? philadelphia-eagles 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (philadelphia-eagles, is a sports team that plays in the league, NFL) -> philadelphia-eagles (4060ms) How many NFL teams are there? BUFFALO BILLS 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (BUFFALO BILLS, is a sports team that plays in the league, NFL) -> BUFFALO BILLS (4037ms) How many NFL teams are there? Redskins 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Redskins, is a sports team that plays in the league, NFL) -> Redskins (4049ms) How many NFL teams are there? Bucs 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Bucs, is a sports team that plays in the league, NFL) -> Bucs (4024ms) How many NFL teams are there? houston texans 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (houston texans, is a sports team that plays in the league, NFL) -> houston texans (4059ms) How many NFL teams are there? BILLS 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (BILLS, is a sports team that plays in the league, NFL) -> BILLS (4037ms) How many NFL teams are there? Florida Intl Golden Panthers 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Florida Intl Golden Panthers, is a sports team that plays in the league, NFL) -> Florida Intl Golden Panthers (4024ms) How many NFL teams are there? the Bears 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (the Bears, are the best team in, the NFL) -> the Bears (4049ms) How many NFL teams are there? Texans 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Texans, are only team in, NFL) -> Texans (4037ms) How many NFL teams are there? Louis Rams 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Louis Rams, is a sports team that plays in the league, NFL) -> Louis Rams (4049ms) How many NFL teams are there? the team 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (the team, is the only non-profit team in, NFL) -> the team (4024ms) How many NFL teams are there? the Giants 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (the Giants, being the best team in, the NFL) -> the Giants (4049ms) How many NFL teams are there? Saint Louis Rams 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Saint Louis Rams, is a sports team that plays in the league, NFL) -> Saint Louis Rams (4049ms) How many NFL teams are there? chicago cardinals 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (chicago cardinals, is a sports team that plays in the league, NFL) -> chicago cardinals (4049ms) How many NFL teams are there? NY Jets 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (NY Jets, is a sports team that plays in the league, NFL) -> NY Jets (4059ms) How many NFL teams are there? Seattle Seahawks 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Seattle Seahawks, is a sports team that plays in the league, NFL) -> Seattle Seahawks (4060ms) How many NFL teams are there? new york titans 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (new york titans, is a sports team that plays in the league, NFL) -> new york titans (4024ms) How many NFL teams are there? the Chargers 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (the Chargers, are only team in, the NFL) -> the Chargers (4049ms) How many NFL teams are there? atlanta falcons 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (atlanta falcons, is a sports team that plays in the league, NFL) -> atlanta falcons (4070ms) How many NFL teams are there? Jags 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Jags, is a sports team that plays in the league, NFL) -> Jags (4037ms) How many NFL teams are there? 2012 Super Bowl 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (2012 Super Bowl, is a sports team that plays in the league, NFL) -> 2012 Super Bowl (4024ms) How many NFL teams are there? the 49ers 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (the 49ers, are the best team in, the NFL) -> the 49ers (4037ms) How many NFL teams are there? Arizona 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Arizona, is the only team in, the NFL) -> Arizona (4037ms) How many NFL teams are there? the Patriots 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (the Patriots, are the best team in, the NFL) -> the Patriots (4049ms) How many NFL teams are there? 2009 pro bowl 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (2009 pro bowl, is a sports team that plays in the league, NFL) -> 2009 pro bowl (4049ms) How many NFL teams are there? Chicago bears 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Chicago bears, is a sports team that plays in the league, NFL) -> Chicago bears (4037ms) How many NFL teams are there? GIANTS 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (GIANTS, is a sports team that plays in the league, NFL) -> GIANTS (4037ms) How many NFL teams are there? chiefs 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (chiefs, is a sports team that plays in the league, NFL) -> chiefs (4024ms) How many NFL teams are there? NFL Jerseys 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (NFL Jerseys, is a sports team that plays in the league, NFL) -> NFL Jerseys (4060ms) How many NFL teams are there? Buccaneers 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Buccaneers, is a sports team that plays in the league, NFL) -> Buccaneers (4037ms) How many NFL teams are there? the Texans 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (the Texans, are the only team in, the NFL) -> the Texans (4037ms) How many NFL teams are there? Greenbay Packers 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Greenbay Packers, is a sports team that plays in the league, NFL) -> Greenbay Packers (4060ms) How many NFL teams are there? 2011 Pro Bowl 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (2011 Pro Bowl, is a sports team that plays in the league, NFL) -> 2011 Pro Bowl (4070ms) How many NFL teams are there? Dallas Cowboys 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Dallas Cowboys, is a sports team that plays in the league, NFL) -> Dallas Cowboys (4037ms) How many NFL teams are there? tennessee oilers 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (tennessee oilers, is a sports team that plays in the league, NFL) -> tennessee oilers (4049ms) How many NFL teams are there? St Louis Rams 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (St Louis Rams, is a sports team that plays in the league, NFL) -> St Louis Rams (4037ms) How many NFL teams are there? sd chargers 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (sd chargers, is a sports team that plays in the league, NFL) -> sd chargers (4024ms) How many NFL teams are there? tennessee titans 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (tennessee titans, is a sports team that plays in the league, NFL) -> tennessee titans (4037ms) How many NFL teams are there? Baltimore Colts 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Baltimore Colts, is a sports team that plays in the league, NFL) -> Baltimore Colts (4024ms) How many NFL teams are there? minnesota-vikings 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (minnesota-vikings, is a sports team that plays in the league, NFL) -> minnesota-vikings (4060ms) How many NFL teams are there? Detroit Lions 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Detroit Lions, is a sports team that plays in the league, NFL) -> Detroit Lions (4024ms) How many NFL teams are there? Browns 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Browns, is a sports team that plays in the league, NFL) -> Browns (4060ms) How many NFL teams are there? new-england-patriots 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (new-england-patriots, is a sports team that plays in the league, NFL) -> new-england-patriots (4070ms) How many NFL teams are there? the Baltimore Ravens 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (the Baltimore Ravens, is a great team in, nfl) -> the Baltimore Ravens (4024ms) How many NFL teams are there? the Saints 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (the Saints, were the only team in, the NFL) -> the Saints (4049ms) How many NFL teams are there? the Packers 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (the Packers, are their favorite team in, the NFL) -> the Packers (4060ms) How many NFL teams are there? San Francisco 49ers 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (San Francisco 49ers, is a sports team that plays in the league, NFL) -> San Francisco 49ers (4049ms) How many NFL teams are there? the Colts 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (the Colts, are the best team in, the NFL) -> the Colts (4049ms) How many NFL teams are there? the quarterback position 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (the quarterback position, is exactly teams in, the NFL) -> the quarterback position (4036ms) How many NFL teams are there? Pats 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Pats, is a sports team that plays in the league, NFL) -> Pats (4070ms) How many NFL teams are there? Houston Oilers 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Houston Oilers, is a sports team that plays in the league, NFL) -> Houston Oilers (4060ms) How many NFL teams are there? L.A. Rams 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (L.A. Rams, is a sports team that plays in the league, NFL) -> L.A. Rams (4059ms) How many NFL teams are there? New Orleans Hornets 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (New Orleans Hornets, is a sports team that plays in the league, NFL) -> New Orleans Hornets (4011ms) How many NFL teams are there? cincinnati-bengals 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (cincinnati-bengals, is a sports team that plays in the league, NFL) -> cincinnati-bengals (4070ms) How many NFL teams are there? jacksonville-jaguars 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (jacksonville-jaguars, is a sports team that plays in the league, NFL) -> jacksonville-jaguars (4049ms) How many NFL teams are there? tampa bay bucs 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (tampa bay bucs, is a sports team that plays in the league, NFL) -> tampa bay bucs (4036ms) How many NFL teams are there? Ravens 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Ravens, is a sports team that plays in the league, NFL) -> Ravens (4060ms) How many NFL teams are there? Denver broncos 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Denver broncos, is a sports team that plays in the league, NFL) -> Denver broncos (4024ms) How many NFL teams are there? the Ravens 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (the Ravens, are the only team in, the NFL) -> the Ravens (4024ms) How many NFL teams are there? oakland raiders 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (oakland raiders, is a sports team that plays in the league, NFL) -> oakland raiders (4060ms) How many NFL teams are there? The Carolina Panthers 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (The Carolina Panthers, are one team in, the NFL) -> The Carolina Panthers (4024ms) How many NFL teams are there? Indianapolis Colts 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Indianapolis Colts, is a sports team that plays in the league, NFL) -> Indianapolis Colts (4060ms) How many NFL teams are there? Pittsburgh Steelers Sunday 0.5555555555659999 How many NFL teams are there? -> $x: ($x, be team in, nfl) -> (Pittsburgh Steelers Sunday, is a sports team that plays in the league, NFL) -> Pittsburgh Steelers Sunday (4049ms) How many NFL teams are there? a big time media mogul 0.555555555565 How many NFL teams are there? -> $x: ($x, happen to, nfl) -> (a big time media mogul, happens to belong to, the NFL) -> a big time media mogul (4080ms) How many NFL teams are there? the big upsets 0.555555555565 How many NFL teams are there? -> $x: ($x, happen to, nfl) -> (the big upsets, tend to happen in, the NFL Playoffs) -> the big upsets (4070ms) How many NFL teams are there? a lot 0.555555555565 How many NFL teams are there? -> $x: ($x, happen to, nfl) -> (a lot, has happened to, the NFL) -> a lot (4070ms) How many NFL teams are there? intended 0.555555555565 How many NFL teams are there? -> $x: ($x, happen to, nfl) -> (intended, happened to run, his NFL-leading complete) -> intended (4080ms) How many NFL teams are there? Injuries 0.555555555565 How many NFL teams are there? -> $x: ($x, happen to, nfl) -> (Injuries, happen to, every NFL team) -> Injuries (4070ms) How many NFL teams are there? Pete area 0.555555555565 How many NFL teams are there? -> $x: ($x, happen to, nfl) -> (Pete area, had happened to, 4 NFL football players) -> Pete area (4080ms) How many NFL teams are there? no signing 0.555555555565 How many NFL teams are there? -> $x: ($x, happen to, nfl) -> (no signing, will happen prior to, the NFL Draft) -> no signing (4070ms) How many NFL teams are there? Thursday night 0.555555555565 How many NFL teams are there? -> $x: ($x, happen to, nfl) -> (Thursday night, happens to be, the NBC NFL Kick-off) -> Thursday night (4080ms) How many NFL teams are there? the trapezoid 0.555555555565 How many NFL teams are there? -> $x: ($x, happen to, nfl) -> (the trapezoid, would happen to, NFL punt returners) -> the trapezoid (4080ms) How many NFL teams are there? a major boating accident 0.555555555565 How many NFL teams are there? -> $x: ($x, happen to, nfl) -> (a major boating accident, so happen to have, 2 NFL Players) -> a major boating accident (4080ms) How many NFL teams are there? Want 0.555555555565 How many NFL teams are there? -> $x: ($x, happen to, nfl) -> (Want, 's going to happen, this NFL season) -> Want (4080ms) How many NFL teams are there? a couple years 0.555555555565 How many NFL teams are there? -> $x: ($x, happen to, nfl) -> (a couple years, ago happen to, the NFL) -> a couple years (4080ms) How many NFL teams are there? professional sports 0.555555555565 How many NFL teams are there? -> $x: ($x, happen to, nfl) -> (professional sports, is happening to, the NBA and NFL) -> professional sports (4070ms) How many NFL teams are there? the theme 0.555555555565 How many NFL teams are there? -> $x: ($x, happen to, nfl) -> (the theme, happens to be, the NFL) -> the theme (4090ms) How many NFL teams are there? the name Wonderlich 0.555555555565 How many NFL teams are there? -> $x: ($x, happen to, nfl) -> (the name Wonderlich, has happened to, the NFL) -> the name Wonderlich (4080ms) How many NFL teams are there? whats 0.555555555565 How many NFL teams are there? -> $x: ($x, happen to, nfl) -> (whats, to happen in, the NFL) -> whats (4080ms) How many NFL teams are there? just a simple analysis 0.555555555565 How many NFL teams are there? -> $x: ($x, happen to, nfl) -> (just a simple analysis, happened to work on, one NFL weekend) -> just a simple analysis (4070ms) How many NFL teams are there? Question 0.555555555565 How many NFL teams are there? -> $x: ($x, happen to, nfl) -> (Question, has happened to, your nfl coverage) -> Question (4080ms) How many NFL teams are there? available 0.555555555565 How many NFL teams are there? -> $x: ($x, happen to, nfl) -> (available, happen to be, Little league nfl jerseys) -> available (4080ms) How many NFL teams are there? 2008 0.555555555565 How many NFL teams are there? -> $x: ($x, happen to, nfl) -> (2008, was happened to, the NFL) -> 2008 (4090ms) How many NFL teams are there? a guy 0.555555555565 How many NFL teams are there? -> $x: ($x, happen to, nfl) -> (a guy, happens to play, NFL football) -> a guy (4080ms) How many NFL teams are there? the Denver Broncos 0.555555555565 How many NFL teams are there? -> $x: ($x, happen to, nfl) -> (the Denver Broncos, happens to be, my favorite NFL team) -> the Denver Broncos (4080ms) How many NFL teams are there? the 2010 Packers 0.555555555565 How many NFL teams are there? -> $x: ($x, happen to, nfl) -> (the 2010 Packers, also happen to be, the only two NFL teams) -> the 2010 Packers (4070ms) How many NFL teams are there? LiveFooty Site 0.555555555565 How many NFL teams are there? -> $x: ($x, happen to, nfl) -> (LiveFooty Site, has happened to, your nfl coverage) -> LiveFooty Site (4070ms) How many NFL teams are there? Green Bay Packers 0.44444444445399994 How many NFL teams are there? -> $x: ($x, be team, nfl) -> (Green Bay Packers, is a good team throughout, nfl) -> Green Bay Packers (4118ms) How many NFL teams are there? a call 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (a call, there is for, NFL football) -> a call (4162ms) How many NFL teams are there? Ward Jersey 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (Ward Jersey, There are several different sorts of, NFL jerseys) -> Ward Jersey (4154ms) How many NFL teams are there? Brett Favre?s Brain 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (Brett Favre?s Brain, There is good news of, the NFL Lockout) -> Brett Favre?s Brain (4145ms) How many NFL teams are there? the upside 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (the upside, is there for, a potential NFL starter) -> the upside (4145ms) How many NFL teams are there? name brand 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (name brand, there is in, the NFL) -> name brand (4136ms) How many NFL teams are there? a team 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (a team, there is in, the NFL) -> a team (4136ms) How many NFL teams are there? 4 OFF games 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (4 OFF games, there will be an update again to, the NFL picks) -> 4 OFF games (4162ms) How many NFL teams are there? The shop 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (The shop, is there to promote, the N.F.L.?s new partnership) -> The shop (4154ms) How many NFL teams are there? an NFL JERSEYS 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (an NFL JERSEYS, there?ll be, a new 12-15 NFL JERSEYS) -> an NFL JERSEYS (4162ms) How many NFL teams are there? the 2011 season cycle 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (the 2011 season cycle, there may be 70 in, the NFL) -> the 2011 season cycle (4145ms) How many NFL teams are there? the NFL playoffs 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (the NFL playoffs, are there, any NFL players) -> the NFL playoffs (4154ms) How many NFL teams are there? winter 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (winter, there was another group of, NFL athletes) -> winter (4145ms) How many NFL teams are there? UFC 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (UFC, was right up there with, the NFL and Major League Baseball) -> UFC (4145ms) How many NFL teams are there? The audience 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (The audience, could be there for, live NFL games) -> The audience (4162ms) How many NFL teams are there? Ron Hogan 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (Ron Hogan, There are two big events in, the NFL calendar) -> Ron Hogan (4136ms) How many NFL teams are there? as safe a bet 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (as safe a bet, there is in, the 2012 NFL draft) -> as safe a bet (4162ms) How many NFL teams are there? addition 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (addition, there are quite, a few nfl jerseys) -> addition (4145ms) How many NFL teams are there? the Lord 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (the Lord, there is, the NFL and NBA) -> the Lord (4136ms) How many NFL teams are there? the most talented perennial loser 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (the most talented perennial loser, there is in, the NFL) -> the most talented perennial loser (4136ms) How many NFL teams are there? Not everyone 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (Not everyone, theres been, a widespread perception in the NFL) -> Not everyone (4145ms) How many NFL teams are there? 2012 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (2012, would be there to welcome, the NFL) -> 2012 (4136ms) How many NFL teams are there? bookends 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (bookends, there are in, the NFL) -> bookends (4145ms) How many NFL teams are there? Chris Johnson 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (Chris Johnson, there is in, the NFL right) -> Chris Johnson (4145ms) How many NFL teams are there? the MLB 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (the MLB, there is in, the NFL) -> the MLB (4136ms) How many NFL teams are there? as deep a receiving corps 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (as deep a receiving corps, there is in, the NFL) -> as deep a receiving corps (4145ms) How many NFL teams are there? advantage 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (advantage, could be used there in, the NFL) -> advantage (4145ms) How many NFL teams are there? Jared Allen Jersey 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (Jared Allen Jersey, There are many forms of, cheap NFL jerseys) -> Jared Allen Jersey (4154ms) How many NFL teams are there? dollars 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (dollars, there are, former NFL players begging) -> dollars (4154ms) How many NFL teams are there? Singletary Jersey 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (Singletary Jersey, there is several tactics to get, nfl jerseys) -> Singletary Jersey (4162ms) How many NFL teams are there? Scout 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (Scout, Are there, any NFL) -> Scout (4154ms) How many NFL teams are there? Pre-Pro Bowl 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (Pre-Pro Bowl, there was much discussion of, the NFL) -> Pre-Pro Bowl (4136ms) How many NFL teams are there? Gen . George S. Patton 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (Gen . George S. Patton, There will obviously be, some NFL games) -> Gen . George S. Patton (4154ms) How many NFL teams are there? the media 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (the media, there is in, the NFL) -> the media (4154ms) How many NFL teams are there? a wandering eye 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (a wandering eye, there are in, the NFL) -> a wandering eye (4145ms) How many NFL teams are there? a defensive player 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (a defensive player, there is in, the NFL) -> a defensive player (4162ms) How many NFL teams are there? Total Access 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (Total Access, there have been this season in, the NFL) -> Total Access (4136ms) How many NFL teams are there? Michigan 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (Michigan, there are at, NFL games) -> Michigan (4162ms) How many NFL teams are there? the back 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (the back, There is a flat-knit collar with, NFL Equipment patch) -> the back (4145ms) How many NFL teams are there? the best wildcat offence 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (the best wildcat offence, there is in, the NFL) -> the best wildcat offence (4145ms) How many NFL teams are there? Thats how much parity 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (Thats how much parity, there is in, the NFL) -> Thats how much parity (4136ms) How many NFL teams are there? a defensive mind 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (a defensive mind, there is in, the NFL) -> a defensive mind (4162ms) How many NFL teams are there? an offense 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (an offense, there is in, the NFL) -> an offense (4136ms) How many NFL teams are there? a duo 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (a duo, there is in, the NFL) -> a duo (4154ms) How many NFL teams are there? the potential 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (the potential, is there for, a very good NFL career) -> the potential (4154ms) How many NFL teams are there? receivers 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (receivers, are there in, the NFL) -> receivers (4162ms) How many NFL teams are there? 17 :48 very true 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (17 :48 very true, there are, some very good and fat NFL lineman) -> 17 :48 very true (4136ms) How many NFL teams are there? gain 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (gain, will be there through, the NFL draft) -> gain (4154ms) How many NFL teams are there? referees 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (referees, are there in, an NFL match) -> referees (4145ms) How many NFL teams are there? sleeves 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (sleeves, There is a flat-knit collar with, NFL Equipment patch) -> sleeves (4154ms) How many NFL teams are there? the old franchise 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (the old franchise, was there at, the NFL) -> the old franchise (4162ms) How many NFL teams are there? Eric Dickerson 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (Eric Dickerson, were there as well as, current NFL standouts) -> Eric Dickerson (4162ms) How many NFL teams are there? the ranks 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (the ranks, there is, a few NFL Superstars) -> the ranks (4145ms) How many NFL teams are there? The talent 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (The talent, is there to make an impact in, the NFL) -> The talent (4154ms) How many NFL teams are there? Robert Griffin III 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (Robert Griffin III, won?t be there in, the NFL) -> Robert Griffin III (4154ms) How many NFL teams are there? First Maurice Jones Drew 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (First Maurice Jones Drew, was there for, the NFL network) -> First Maurice Jones Drew (4136ms) How many NFL teams are there? April 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (April, there will be, the 2009 NFL draft) -> April (4154ms) How many NFL teams are there? any backup 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (any backup, there is in, the NFL) -> any backup (4162ms) How many NFL teams are there? serious an offense 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (serious an offense, there is in, the NFL) -> serious an offense (4136ms) How many NFL teams are there? the New 12 months 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (the New 12 months, there tend to be so, many cheap nfl jerseys) -> the New 12 months (4136ms) How many NFL teams are there? 190 wide outs 0.44444444444799996 How many NFL teams are there? -> $x: ($x, be there, nfl) -> (190 wide outs, are there in, the NFL ? TempelTUFF 01-17-2012 07) -> 190 wide outs (4154ms) How many NFL teams are there? Charlie Browning 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (Charlie Browning, was drafted by, the NFL) -> Charlie Browning (4196ms) How many NFL teams are there? a zebra 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (a zebra, gets drafted into, the NFL) -> a zebra (4211ms) How many NFL teams are there? the Panthers 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (the Panthers, drafted in, the 2009 NFL Draft) -> the Panthers (4179ms) How many NFL teams are there? More than 200 Grambling players 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (More than 200 Grambling players, were drafted to, NFL teams) -> More than 200 Grambling players (4219ms) How many NFL teams are there? Florida 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (Florida, were drafted by, the NFL) -> Florida (4171ms) How many NFL teams are there? the players 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (the players, drafted into, the NFL) -> the players (4179ms) How many NFL teams are there? gamers 0.333333333344 How many NFL teams are there? -> $x: ($x, manage, nfl) -> (gamers, manage every aspect of, an NFL franchise) -> gamers (4179ms) How many NFL teams are there? a graduate 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (a graduate, was drafted by, the NFL) -> a graduate (4219ms) How many NFL teams are there? Rey Maualuga 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (Rey Maualuga, Draft year, 2009 NFL Draft) -> Rey Maualuga (4179ms) How many NFL teams are there? Johnson 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (Johnson, was drafted by, the NFL) -> Johnson (4179ms) How many NFL teams are there? a chance 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (a chance, to be drafted by, NFL teams) -> a chance (4171ms) How many NFL teams are there? Kenny Britt- both 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (Kenny Britt- both, were drafted highly into, the NFL) -> Kenny Britt- both (4187ms) How many NFL teams are there? The Packers 0.333333333344 How many NFL teams are there? -> $x: ($x, be most popular team in, nfl) -> (The Packers, are the most popular team in, the NFL) -> The Packers (4171ms) How many NFL teams are there? the third quarterback 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (the third quarterback, drafted in, the 1983 NFL Draft) -> the third quarterback (4204ms) How many NFL teams are there? the Host Committee 0.333333333344 How many NFL teams are there? -> $x: ($x, manage, nfl) -> (the Host Committee, manage, the NFL) -> the Host Committee (4218ms) How many NFL teams are there? the Oakland Raiders 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (the Oakland Raiders, drafted in, the 2009 NFL Draft) -> the Oakland Raiders (4204ms) How many NFL teams are there? Denver 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (Denver, drafted in, the 2009 NFL Draft) -> Denver (4196ms) How many NFL teams are there? Auburn 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (Auburn, was drafted by, the NFL) -> Auburn (4171ms) How many NFL teams are there? players 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (players, drafted by, NFL teams) -> players (4204ms) How many NFL teams are there? 100 FSU players 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (100 FSU players, were drafted by, NFL teams) -> 100 FSU players (4171ms) How many NFL teams are there? Kiffin 0.333333333344 How many NFL teams are there? -> $x: ($x, coach for, nfl) -> (Kiffin, was the defensive quality control coach for, the NFL) -> Kiffin (4196ms) How many NFL teams are there? 32 players 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (32 players, get drafted to, the NFL) -> 32 players (4179ms) How many NFL teams are there? a player 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (a player, drafted in, the NFL) -> a player (4211ms) How many NFL teams are there? the main character 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (the main character, is drafted into, the NFL) -> the main character (4196ms) How many NFL teams are there? 16 Scarlet Knights 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (16 Scarlet Knights, were drafted by, NFL teams) -> 16 Scarlet Knights (4171ms) How many NFL teams are there? The Cowboys 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (The Cowboys, drafted, the NFL offensive rookie) -> The Cowboys (4196ms) How many NFL teams are there? Mr. Garmon 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (Mr. Garmon, was drafted into, the NFL) -> Mr. Garmon (4162ms) How many NFL teams are there? the past eight seasons 0.333333333344 How many NFL teams are there? -> $x: ($x, coach for, nfl) -> (the past eight seasons, has coached for, six NFL teams) -> the past eight seasons (4196ms) How many NFL teams are there? Joe?s athletes 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (Joe?s athletes, have been drafted by, the NFL) -> Joe?s athletes (4187ms) How many NFL teams are there? a year 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (a year, were drafted to, the NFL) -> a year (4196ms) How many NFL teams are there? athletes 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (athletes, have been drafted to, the NFL) -> athletes (4171ms) How many NFL teams are there? Luck 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (Luck, draft, NFL.com Liked) -> Luck (4218ms) How many NFL teams are there? White 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (White, was first drafted into, the NFL) -> White (4204ms) How many NFL teams are there? UW, 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (UW,, have been drafted into, the NFL) -> UW, (4187ms) How many NFL teams are there? the 29-year-old , 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (the 29-year-old ,, was also drafted by, the NFL) -> the 29-year-old , (4196ms) How many NFL teams are there? Sonny Werblin 0.333333333344 How many NFL teams are there? -> $x: ($x, manage, nfl) -> (Sonny Werblin, managed one of, the NFL team New York Jets) -> Sonny Werblin (4204ms) How many NFL teams are there? Kirk Ferentz 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (Kirk Ferentz, has been drafted in, the NFL) -> Kirk Ferentz (4196ms) How many NFL teams are there? Cody Spano 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (Cody Spano, got drafted by, the NFL) -> Cody Spano (4171ms) How many NFL teams are there? the most 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (the most, have been drafted into, the NFL) -> the most (4204ms) How many NFL teams are there? 22 offensive players 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (22 offensive players, were drafted into, the NFL) -> 22 offensive players (4187ms) How many NFL teams are there? the offensive lineman 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (the offensive lineman, was drafted into, the NFL) -> the offensive lineman (4179ms) How many NFL teams are there? two three-stars 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (two three-stars, just got drafted in, the NFL) -> two three-stars (4171ms) How many NFL teams are there? Hawes 0.333333333344 How many NFL teams are there? -> $x: ($x, manage, nfl) -> (Hawes, is the Managing Editor of, NFL content) -> Hawes (4187ms) How many NFL teams are there? Phillips 0.333333333344 How many NFL teams are there? -> $x: ($x, coach for, nfl) -> (Phillips, has been a head coach for, five NFL teams) -> Phillips (4211ms) How many NFL teams are there? the Jets 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (the Jets, drafted in, the 2009 NFL Draft) -> the Jets (4187ms) How many NFL teams are there? Marshal Yanda 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (Marshal Yanda, was drafted by, the NFL) -> Marshal Yanda (4196ms) How many NFL teams are there? college football players 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (college football players, were drafted into, the NFL) -> college football players (4211ms) How many NFL teams are there? Bosco 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (Bosco, was drafted into, the NFL) -> Bosco (4219ms) How many NFL teams are there? a Rose Bowl victory 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (a Rose Bowl victory, was drafted into, the NFL) -> a Rose Bowl victory (4211ms) How many NFL teams are there? ill intent 0.333333333344 How many NFL teams are there? -> $x: ($x, manage, nfl) -> (ill intent, managed to set, an NFL record) -> ill intent (4204ms) How many NFL teams are there? 17 Red Raiders 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (17 Red Raiders, were drafted by, NFL teams) -> 17 Red Raiders (4211ms) How many NFL teams are there? Jason Boltus 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (Jason Boltus, Draft year, 2009 NFL Draft) -> Jason Boltus (4219ms) How many NFL teams are there? school 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (school, was just drafted by, the NFL) -> school (4171ms) How many NFL teams are there? Page 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (Page, was drafted into, the NFL) -> Page (4211ms) How many NFL teams are there? Dave 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (Dave, was drafted into, the NFL) -> Dave (4226ms) How many NFL teams are there? small school prospects 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (small school prospects, get drafted in, the NFL) -> small school prospects (4219ms) How many NFL teams are there? the youngest player 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (the youngest player, drafted since, the NFL) -> the youngest player (4179ms) How many NFL teams are there? general 0.333333333344 How many NFL teams are there? -> $x: ($x, manage, nfl) -> (general, managed, an NFL team) -> general (4211ms) How many NFL teams are there? 150 former FSU players 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (150 former FSU players, have been drafted by, the NFL) -> 150 former FSU players (4211ms) How many NFL teams are there? Fresno State 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (Fresno State, was drafted into, the NFL) -> Fresno State (4187ms) How many NFL teams are there? CNN Junior Seau 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (CNN Junior Seau, was drafted into, the NFL) -> CNN Junior Seau (4211ms) How many NFL teams are there? six buffs 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (six buffs, were drafted to, the NFL) -> six buffs (4204ms) How many NFL teams are there? an opportunity 0.333333333344 How many NFL teams are there? -> $x: ($x, manage, nfl) -> (an opportunity, manage, your own NFL pool) -> an opportunity (4211ms) How many NFL teams are there? the lawsuit 0.333333333344 How many NFL teams are there? -> $x: ($x, manage, nfl) -> (the lawsuit, has managed to put, the NFL) -> the lawsuit (4179ms) How many NFL teams are there? Jake Long 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (Jake Long, Draft, 2008 NFL Draft) -> Jake Long (4196ms) How many NFL teams are there? Chris Long 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (Chris Long, Draft, 2008 NFL Draft) -> Chris Long (4219ms) How many NFL teams are there? Russell 0.333333333344 How many NFL teams are there? -> $x: ($x, manage, nfl) -> (Russell, manages to offend, former NFL great) -> Russell (4171ms) How many NFL teams are there? Gabe Miller 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (Gabe Miller, were drafted to, the NFL) -> Gabe Miller (4204ms) How many NFL teams are there? 323 Longhorns 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (323 Longhorns, have been drafted by, the NFL) -> 323 Longhorns (4218ms) How many NFL teams are there? 42 players 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (42 players, were drafted by, the NFL) -> 42 players (4187ms) How many NFL teams are there? Merlin Olsen 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (Merlin Olsen, Draft, 1962 NFL Draft) -> Merlin Olsen (4171ms) How many NFL teams are there? the most anyone 0.333333333344 How many NFL teams are there? -> $x: ($x, manage, nfl) -> (the most anyone, has managed so far at, this year?s NFL Combine) -> the most anyone (4226ms) How many NFL teams are there? Williams 0.333333333344 How many NFL teams are there? -> $x: ($x, coach for, nfl) -> (Williams, has also coached for, NFL teams) -> Williams (4204ms) How many NFL teams are there? TABLE Players 0.333333333344 How many NFL teams are there? -> $x: ($x, manage, nfl) -> (TABLE Players, managed to keep, the N.F.L.) -> TABLE Players (4171ms) How many NFL teams are there? A gifted player 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (A gifted player, is drafted by, the NFL) -> A gifted player (4187ms) How many NFL teams are there? 21 players 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (21 players, get drafted by, NFL teams) -> 21 players (4196ms) How many NFL teams are there? six FSU quarterbacks 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (six FSU quarterbacks, were drafted into, the NFL) -> six FSU quarterbacks (4187ms) How many NFL teams are there? Notre Dame 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (Notre Dame, got drafted by, the NFL) -> Notre Dame (4204ms) How many NFL teams are there? Plummer 0.333333333344 How many NFL teams are there? -> $x: ($x, manage, nfl) -> (Plummer, managed to lead, the NFL) -> Plummer (4219ms) How many NFL teams are there? defense 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (defense, were all drafted by, NFL teams) -> defense (4218ms) How many NFL teams are there? the NFC South 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (the NFC South, drafted in, the 2009 NFL Draft) -> the NFC South (4187ms) How many NFL teams are there? The Chiefs 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (The Chiefs, drafted, the NFL defensive rookie) -> The Chiefs (4179ms) How many NFL teams are there? nine players 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (nine players, were drafted by, NFL teams) -> nine players (4204ms) How many NFL teams are there? the efforts 0.333333333344 How many NFL teams are there? -> $x: ($x, manage, nfl) -> (the efforts, are managed by, the NFL) -> the efforts (4219ms) How many NFL teams are there? more players 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (more players, drafted by, the NFL) -> more players (4211ms) How many NFL teams are there? Mike Nolan 0.333333333344 How many NFL teams are there? -> $x: ($x, team of, nfl) -> (Mike Nolan, will lead teams of, top NFL draft prospects) -> Mike Nolan (4171ms) How many NFL teams are there? Newton 0.333333333344 How many NFL teams are there? -> $x: ($x, team of, nfl) -> (Newton, joins the growing team of, offensive NFL stars) -> Newton (4211ms) How many NFL teams are there? the next Army player 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (the next Army player, is drafted by, the NFL) -> the next Army player (4187ms) How many NFL teams are there? Mark Brunell-Brunell 0.333333333344 How many NFL teams are there? -> $x: ($x, manage, nfl) -> (Mark Brunell-Brunell, still manages to stay in, the NFL) -> Mark Brunell-Brunell (4179ms) How many NFL teams are there? a good friend 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (a good friend, was drafted into, the NFL) -> a good friend (4211ms) How many NFL teams are there? the Titans 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (the Titans, drafted in, the 2009 NFL Draft) -> the Titans (4162ms) How many NFL teams are there? Turk 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (Turk, was drafted into, the NFL) -> Turk (4187ms) How many NFL teams are there? communication 0.333333333344 How many NFL teams are there? -> $x: ($x, manage, nfl) -> (communication, has made managing, NFL crowds) -> communication (4204ms) How many NFL teams are there? 329 Buckeyes 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (329 Buckeyes, have been drafted into, the NFL) -> 329 Buckeyes (4171ms) How many NFL teams are there? 2 more Spartan wide receivers 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (2 more Spartan wide receivers, will be drafted by, the NFL) -> 2 more Spartan wide receivers (4204ms) How many NFL teams are there? fantasy players 0.333333333344 How many NFL teams are there? -> $x: ($x, manage, nfl) -> (fantasy players, can manage, their NFL.com) -> fantasy players (4179ms) How many NFL teams are there? McMackin 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (McMackin, were drafted in, the NFL) -> McMackin (4211ms) How many NFL teams are there? the player 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (the player, was drafted by, the NFL) -> the player (4179ms) How many NFL teams are there? Dunn 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (Dunn, drafted into, the NFL) -> Dunn (4211ms) How many NFL teams are there? special teams 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (special teams, was drafted into, the NFL) -> special teams (4219ms) How many NFL teams are there? Brandon 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (Brandon, would be drafted into, the NFL) -> Brandon (4219ms) How many NFL teams are there? the first player 0.333333333344 How many NFL teams are there? -> $x: ($x, draft, nfl) -> (the first player, be drafted to, the NFL) -> the first player (4219ms) How many NFL teams are there? exactly LeBron 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (exactly LeBron, would look like in, the NFL) -> exactly LeBron (4247ms) How many NFL teams are there? Defenses 0.333333333339 How many NFL teams are there? -> $x: ($x, consist of, nfl) -> (Defenses, consist of, entire NFL teams) -> Defenses (4233ms) How many NFL teams are there? a fellow 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (a fellow, looked like, an NFL football player in plain dress) -> a fellow (4226ms) How many NFL teams are there? The late signing JUCO guys 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (The late signing JUCO guys, look like, future NFL players) -> The late signing JUCO guys (4233ms) How many NFL teams are there? the 3rd or 4th round 0.333333333339 How many NFL teams are there? -> $x: ($x, major in, nfl) -> (the 3rd or 4th round, have seen major success in, the NFL) -> the 3rd or 4th round (4240ms) How many NFL teams are there? Which one 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (Which one, looks like, an NFL player) -> Which one (4226ms) How many NFL teams are there? the Desert 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (the Desert, look like, an NFL Football Game) -> the Desert (4247ms) How many NFL teams are there? now prime-time television 0.333333333339 How many NFL teams are there? -> $x: ($x, consist of, nfl) -> (now prime-time television, will consist entirely of, NFL games) -> now prime-time television (4247ms) How many NFL teams are there? the new Nike uniforms 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (the new Nike uniforms, will look like in, " Madden NFL 13) -> the new Nike uniforms (4233ms) How many NFL teams are there? Jenkins 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (Jenkins, looks like, an NFL) -> Jenkins (4247ms) How many NFL teams are there? See 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (See, looks like in, some other NFL uniforms) -> See (4247ms) How many NFL teams are there? Zeitler 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (Zeitler, looks like, an NFL starter) -> Zeitler (4240ms) How many NFL teams are there? Samardzija 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (Samardzija, looked like, a lucrative NFL career) -> Samardzija (4233ms) How many NFL teams are there? Trent Edwards 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (Trent Edwards, barely looked like, an NFL quarterback) -> Trent Edwards (4226ms) How many NFL teams are there? play 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (play, looks like, a solid contributing NFL) -> play (4240ms) How many NFL teams are there? Positives 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (Positives, Looks like, an NFL tackle) -> Positives (4226ms) How many NFL teams are there? NFL SUNDAY TICKET To-Go 0.333333333339 How many NFL teams are there? -> $x: ($x, consist of, nfl) -> (NFL SUNDAY TICKET To-Go, consist of, all out-of market NFL games) -> NFL SUNDAY TICKET To-Go (4226ms) How many NFL teams are there? times 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (times, looked like, a good NFL QB) -> times (4240ms) How many NFL teams are there? Chad Henne 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (Chad Henne, actually looked like, a NFL QB week) -> Chad Henne (4247ms) How many NFL teams are there? Oakland quarterback Rich Gannon 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (Oakland quarterback Rich Gannon, hardly looked like, the NFL) -> Oakland quarterback Rich Gannon (4226ms) How many NFL teams are there? Madden 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (Madden, looked like, a legitimate NFL product) -> Madden (4233ms) How many NFL teams are there? Cam 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (Cam, looks like, a legit NFL QB) -> Cam (4233ms) How many NFL teams are there? attire 0.333333333339 How many NFL teams are there? -> $x: ($x, consist of, nfl) -> (attire, consist of, NFL jerseys) -> attire (4226ms) How many NFL teams are there? Josh Freeman 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (Josh Freeman, looked like, an NFL caliber quarterback) -> Josh Freeman (4226ms) How many NFL teams are there? Ed Reed 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (Ed Reed, looks like, NFLs greatest ballhawker) -> Ed Reed (4240ms) How many NFL teams are there? Each team 0.333333333339 How many NFL teams are there? -> $x: ($x, consist of, nfl) -> (Each team, will consist of, 14 NFL players) -> Each team (4240ms) How many NFL teams are there? Trent Dilfer 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (Trent Dilfer, look like, an NFL quarterback) -> Trent Dilfer (4247ms) How many NFL teams are there? Carson Palmer 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (Carson Palmer, looked like, an NFL quarterback) -> Carson Palmer (4240ms) How many NFL teams are there? The Panthers 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (The Panthers, looked like, an NFL offense) -> The Panthers (4253ms) How many NFL teams are there? wholesale NFL jerseys 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (wholesale NFL jerseys, look like, a genuine nfl hat) -> wholesale NFL jerseys (4240ms) How many NFL teams are there? AJ Feeley 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (AJ Feeley, looked like, NFL quarterbacks) -> AJ Feeley (4253ms) How many NFL teams are there? The regular ones 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (The regular ones, look like, an NFL football player) -> The regular ones (4240ms) How many NFL teams are there? MLB 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (MLB, begins to look much more like, the NFL) -> MLB (4240ms) How many NFL teams are there? the run game 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (the run game, looks like, an NFL starter) -> the run game (4226ms) How many NFL teams are there? the past month he?s 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (the past month he?s, look every bit like, an NFL neophyte) -> the past month he?s (4253ms) How many NFL teams are there? West 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (West, looks like, an NFL player) -> West (4240ms) How many NFL teams are there? THEM It 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (THEM It, looks more like, an NFL roster) -> THEM It (4247ms) How many NFL teams are there? Kalil 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (Kalil, certainly looks like, an NFL tackle) -> Kalil (4240ms) How many NFL teams are there? a college football playoff 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (a college football playoff, look like, an NFL playoff) -> a college football playoff (4233ms) How many NFL teams are there? Moore and Carriker 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (Moore and Carriker, look like, NFL players) -> Moore and Carriker (4247ms) How many NFL teams are there? McNabb 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (McNabb, looked like, a below-average NFL starter) -> McNabb (4240ms) How many NFL teams are there? the move 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (the move, looks like, an NFL starter) -> the move (4233ms) How many NFL teams are there? Fame weekend 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (Fame weekend, will look like in, the NFL) -> Fame weekend (4253ms) How many NFL teams are there? Pitt 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (Pitt, looks like, a future NFL 1st-round pick) -> Pitt (4226ms) How many NFL teams are there? the receiver 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (the receiver, already looks like, an NFL prototype) -> the receiver (4247ms) How many NFL teams are there? green uniforms 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (green uniforms, looked like, NFL football linebackers) -> green uniforms (4233ms) How many NFL teams are there? The beast 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (The beast, looks like, ....an NFL linebacker) -> The beast (4240ms) How many NFL teams are there? snapback hats and throwback hats 0.333333333339 How many NFL teams are there? -> $x: ($x, consist of, nfl) -> (snapback hats and throwback hats, consist of, NFL) -> snapback hats and throwback hats (4247ms) How many NFL teams are there? NBA contracts 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (NBA contracts, would look more like, NFL deals) -> NBA contracts (4253ms) How many NFL teams are there? Joe Webb 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (Joe Webb, looked like, an actual NFL quarterback) -> Joe Webb (4253ms) How many NFL teams are there? The New England Patriots 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (The New England Patriots, looked like, the NFL?s best team) -> The New England Patriots (4226ms) How many NFL teams are there? Draft Rookies Rookies 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (Draft Rookies Rookies, now look just like, the real NFL players) -> Draft Rookies Rookies (4247ms) How many NFL teams are there? a 24-year-old 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (a 24-year-old, absolutely looks like, a legitimate NFL feature) -> a 24-year-old (4247ms) How many NFL teams are there? Submissions 0.333333333339 How many NFL teams are there? -> $x: ($x, consist of, nfl) -> (Submissions, consist of, weekly NFL player projections) -> Submissions (4233ms) How many NFL teams are there? Poe 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (Poe, looked like, a future NFL superstar) -> Poe (4233ms) How many NFL teams are there? Mallett 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (Mallett, looked like, a number one NFL draft pick) -> Mallett (4253ms) How many NFL teams are there? Shaun Hill 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (Shaun Hill, looks like, an NFL quarterback) -> Shaun Hill (4233ms) How many NFL teams are there? A coworker 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (A coworker, looked like, a hardy NFL linebacker) -> A coworker (4253ms) How many NFL teams are there? Quinn 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (Quinn, looks like, an NFL QB) -> Quinn (4247ms) How many NFL teams are there? a solid blocker 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (a solid blocker, looks like, a future starting caliber NFL TE.) -> a solid blocker (4233ms) How many NFL teams are there? the Broncos 0.333333333339 How many NFL teams are there? -> $x: ($x, major in, nfl) -> (the Broncos, has a major ripple effect in, the NFL) -> the Broncos (4247ms) How many NFL teams are there? the mid-grade officers 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (the mid-grade officers, look like, NFL halfbacks) -> the mid-grade officers (4253ms) How many NFL teams are there? Darius Fleming 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (Darius Fleming, looks like, a future NFL player) -> Darius Fleming (4226ms) How many NFL teams are there? Felix Jones 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (Felix Jones, is looking like, a quality NFL) -> Felix Jones (4233ms) How many NFL teams are there? The busy streets 0.333333333339 How many NFL teams are there? -> $x: ($x, look like, nfl) -> (The busy streets, look more like, an NFL game) -> The busy streets (4226ms) How many NFL teams are there? 7. Tim Tebow 0.333333333334 How many NFL teams are there? -> $x: ($x, draft, nfl team) -> (7. Tim Tebow, will be drafted by, an NFL team) -> 7. Tim Tebow (4259ms) How many NFL teams are there? NCAA football players 0.333333333334 How many NFL teams are there? -> $x: ($x, draft, nfl team) -> (NCAA football players, are drafted by, NBA or NFL teams) -> NCAA football players (4259ms) How many NFL teams are there? the Indianapolis Combine 0.333333333334 How many NFL teams are there? -> $x: ($x, draft, nfl team) -> (the Indianapolis Combine, were drafted by, N.F.L. teams) -> the Indianapolis Combine (4259ms) How many NFL teams are there? football seniors 0.333333333334 How many NFL teams are there? -> $x: ($x, draft, nfl team) -> (football seniors, get drafted by, an NFL team) -> football seniors (4259ms) How many NFL teams are there? Wes nor Victor 0.333333333334 How many NFL teams are there? -> $x: ($x, draft, nfl team) -> (Wes nor Victor, was even drafted by, an NFL team) -> Wes nor Victor (4253ms) How many NFL teams are there? NCAA college football seniors 0.333333333334 How many NFL teams are there? -> $x: ($x, draft, nfl team) -> (NCAA college football seniors, even get drafted by, an NFL team) -> NCAA college football seniors (4253ms) How many NFL teams are there? one player 0.333333333334 How many NFL teams are there? -> $x: ($x, draft, nfl team) -> (one player, was the only draft pick of, an NFL team) -> one player (4264ms) How many NFL teams are there? a team or rookie players 0.333333333334 How many NFL teams are there? -> $x: ($x, draft, nfl team) -> (a team or rookie players, were drafted to, an NFL team) -> a team or rookie players (4259ms) How many NFL teams are there? social media 0.333333333331 How many NFL teams are there? -> $x: (nfl team, do, $x) -> (the NFL Teams, are doing on, social media) -> social media (4264ms) How many NFL teams are there? the National Hockey League 0.333333333331 How many NFL teams are there? -> $x: (nfl team, do, $x) -> (NFL teams, as do several teams in, the National Hockey League) -> the National Hockey League (4269ms) How many NFL teams are there? Terrell Owens 0.333333333331 How many NFL teams are there? -> $x: (nfl team, do, $x) -> (most NFL teams, did with, Terrell Owens) -> Terrell Owens (4269ms) How many NFL teams are there? the same 0.333333333331 How many NFL teams are there? -> $x: (nfl team, do, $x) -> (more NFL teams, announced plans to do, the same) -> the same (4273ms) How many NFL teams are there? the city 0.333333333331 How many NFL teams are there? -> $x: (nfl team, do, $x) -> (an NFL team, has done more good for, the city) -> the city (4269ms) How many NFL teams are there? the past 0.333333333331 How many NFL teams are there? -> $x: (nfl team, do, $x) -> (NFL and CFL teams, did play each other in, the past) -> the past (4269ms) How many NFL teams are there? dynasty owners 0.333333333331 How many NFL teams are there? -> $x: (nfl team, do, $x) -> (NFL teams, could do the same to, dynasty owners) -> dynasty owners (4264ms) How many NFL teams are there? recent weeks 0.333333333331 How many NFL teams are there? -> $x: (nfl team, do, $x) -> (Other NFL teams, have been doing similar deals in, recent weeks) -> recent weeks (4264ms) How many NFL teams are there? NFL Killzones 0.333333333331 How many NFL teams are there? -> $x: (nfl team, do, $x) -> (NFL teams, do in, NFL Killzones) -> NFL Killzones (4273ms) How many NFL teams are there? the spread 0.333333333331 How many NFL teams are there? -> $x: (nfl team, do, $x) -> (NFL teams, do against, the spread) -> the spread (4269ms) How many NFL teams are there? Sunday 0.333333333331 How many NFL teams are there? -> $x: (nfl team, do, $x) -> (Your favorite NFL team, does n?t just show up on, Sunday) -> Sunday (4269ms) How many NFL teams are there? the playoffs 0.333333333331 How many NFL teams are there? -> $x: (nfl team, do, $x) -> (your favorite NFL team, did nt make, the playoffs) -> the playoffs (4264ms) How many NFL teams are there? the field 0.333333333331 How many NFL teams are there? -> $x: (nfl team, do, $x) -> (all NFL teams, do on, the field) -> the field (4269ms) How many NFL teams are there? so 0.333333333331 How many NFL teams are there? -> $x: (nfl team, do, $x) -> (the first NFL team, to do, so) -> so (4269ms) How many NFL teams are there? next year 0.333333333331 How many NFL teams are there? -> $x: (nfl team, do, $x) -> (all 32 NFL teams, will do, next year) -> next year (4269ms) How many NFL teams are there? the President would 0.333333333331 How many NFL teams are there? -> $x: (nfl team, do, $x) -> (NFL teams, do with, the President would) -> the President would (4264ms) How many NFL teams are there? big a makeover 0.333333333331 How many NFL teams are there? -> $x: (nfl team, do, $x) -> (the NFL teams, did n?t get as, big a makeover) -> big a makeover (4264ms) How many NFL teams are there? preparation 0.333333333331 How many NFL teams are there? -> $x: (nfl team, do, $x) -> (the NFL?s Super Bowl team, is doing in, preparation) -> preparation (4269ms) How many NFL teams are there? prospects 0.333333333331 How many NFL teams are there? -> $x: (nfl team, do, $x) -> (NFL teams, are doing due diligence on, prospects) -> prospects (4269ms) How many NFL teams are there? the last six seasons 0.333333333331 How many NFL teams are there? -> $x: (nfl team, do, $x) -> (all NFL teams, have done each year for, the last six seasons) -> the last six seasons (4269ms) How many NFL teams are there? n?t sign Owens 0.333333333331 How many NFL teams are there? -> $x: (nfl team, do, $x) -> (NFL teams, did, n?t sign Owens) -> n?t sign Owens (4264ms) How many NFL teams are there? the draft 0.333333333331 How many NFL teams are there? -> $x: (nfl team, do, $x) -> (everyone?s NFL team, do in, the draft) -> the draft (4269ms) How many NFL teams are there? chance 0.333333333331 How many NFL teams are there? -> $x: (nfl team, do, $x) -> (NFL teams, barely do better than, chance) -> chance (4269ms) How many NFL teams are there? business 0.333333333331 How many NFL teams are there? -> $x: (nfl team, do, $x) -> (NFL teams, do, business) -> business (4273ms) How many NFL teams are there? any limit 0.333333333331 How many NFL teams are there? -> $x: (nfl team, do, $x) -> (every NFL team, there does n?t appear to be, any limit) -> any limit (4264ms) How many NFL teams are there? The Green Bay Packers 0.22222222222 How many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (The Green Bay Packers, are now only the 6th team in, NFL history) -> The Green Bay Packers (4283ms) How many NFL teams are there? Miami 0.22222222222 How many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (Miami, is only the fifth team in, NFL history) -> Miami (4274ms) How many NFL teams are there? The Indianapolis Colts 0.22222222222 How many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (The Indianapolis Colts, are the first team in, NFL history) -> The Indianapolis Colts (4283ms) How many NFL teams are there? The Eagles 0.22222222222 How many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (The Eagles, are the first team in, NFL history) -> The Eagles (4278ms) How many NFL teams are there? The Giants 0.22222222222 How many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (The Giants, are the second team in, NFL history) -> The Giants (4278ms) How many NFL teams are there? Packers 0.22222222222 How many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (Packers, are 1st team in, NFL history) -> Packers (4278ms) How many NFL teams are there? The Lions 0.22222222222 How many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (The Lions, were the first team in, NFL history) -> The Lions (4274ms) How many NFL teams are there? The Bills 0.22222222222 How many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (The Bills, are the first team in, NFL history) -> The Bills (4283ms) How many NFL teams are there? The 2005 team 0.22222222222 How many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (The 2005 team, is the only sixth-seeded team in, NFL history) -> The 2005 team (4283ms) How many NFL teams are there? The 1998 Vikings 0.22222222222 How many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (The 1998 Vikings, were the highest scoring team in, NFL history) -> The 1998 Vikings (4283ms) How many NFL teams are there? a six-game winning streak 0.22222222222 How many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (a six-game winning streak, is the fifth team in, NFL history) -> a six-game winning streak (4274ms) How many NFL teams are there? The Seahawks 0.22222222222 How many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (The Seahawks, are the worst team in, NFL history) -> The Seahawks (4278ms) How many NFL teams are there? the 1972 Miami Dolphins 0.22222222222 How many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (the 1972 Miami Dolphins, were the greatest team in, NFL history) -> the 1972 Miami Dolphins (4278ms) How many NFL teams are there? 13 consecutive games & 0.22222222222 How many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (13 consecutive games &, are 3rd team in, NFL history) -> 13 consecutive games & (4278ms) How many NFL teams are there? the Falcons 0.22222222222 How many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (the Falcons, were the first team in, NFL history) -> the Falcons (4278ms) How many NFL teams are there? The Detroit Lions 0.22222222222 How many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (The Detroit Lions, are the first team in, NFL History) -> The Detroit Lions (4278ms) How many NFL teams are there? The 49ers 0.22222222222 How many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (The 49ers, are the first team in, NFL history) -> The 49ers (4278ms) How many NFL teams are there? The 1972 Dolphins 0.22222222222 How many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (The 1972 Dolphins, were the first team in, NFL history) -> The 1972 Dolphins (4278ms) How many NFL teams are there? ? The Chargers 0.22222222222 How many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (? The Chargers, are the first team in, NFL history) -> ? The Chargers (4278ms) How many NFL teams are there? the Rams 0.22222222222 How many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (the Rams, were the highest-scoring team in, NFL history) -> the Rams (4278ms) How many NFL teams are there? The 2011 Giants 0.22222222222 How many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (The 2011 Giants, are the first team in, NFL history) -> The 2011 Giants (4283ms) How many NFL teams are there? The Patriots 0.22222222222 How many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (The Patriots, are also the seventh team in, NFL history) -> The Patriots (4283ms) How many NFL teams are there? Detroit 0.22222222222 How many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (Detroit, is the only team in, NFL history) -> Detroit (4273ms) How many NFL teams are there? Buffalo 0.22222222222 How many NFL teams are there? -> $x: ($x, be team in, nfl history) -> (Buffalo, is the first team in, NFL history) -> Buffalo (4278ms) How many NFL teams are there? March 17th John Jackson 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (March 17th John Jackson, played for, the Football League) -> March 17th John Jackson (4302ms) How many NFL teams are there? Suzi Cresswell Toby 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Suzi Cresswell Toby, plays for, a successful football team) -> Suzi Cresswell Toby (4291ms) How many NFL teams are there? a Portuguese soccer star 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (a Portuguese soccer star, plays for, Spanish football club) -> a Portuguese soccer star (4295ms) How many NFL teams are there? previews 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, newest) -> (previews, began playing for, his newest film ?Sucker Punch?) -> previews (4302ms) How many NFL teams are there? York 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (York, played for, York City Football Club) -> York (4299ms) How many NFL teams are there? Allen 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Allen, played for, the Nittany Lion football team) -> Allen (4287ms) How many NFL teams are there? The Band 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (The Band, played for, the football team) -> The Band (4295ms) How many NFL teams are there? English teams 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (English teams, played for, the first Football Association Cup) -> English teams (4291ms) How many NFL teams are there? Jeff Teague 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Jeff Teague, plays for the team, wake-forest-deacons-football) -> Jeff Teague (4295ms) How many NFL teams are there? Barnes and Gaitor 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Barnes and Gaitor, played for, the FIU football team) -> Barnes and Gaitor (4291ms) How many NFL teams are there? Bill Reilly 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Bill Reilly, does the play-by-play for, Utah football) -> Bill Reilly (4291ms) How many NFL teams are there? one very good wing 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (one very good wing, played for, the Macau Army Football team) -> one very good wing (4287ms) How many NFL teams are there? Dad 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Dad, played for, the RAAF football team) -> Dad (4291ms) How many NFL teams are there? winger Arthur Goddard 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (winger Arthur Goddard, played for, the Football League) -> winger Arthur Goddard (4302ms) How many NFL teams are there? East End 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (East End, played for, their school football team) -> East End (4299ms) How many NFL teams are there? the Florida Gators 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (the Florida Gators, will play for, college football) -> the Florida Gators (4283ms) How many NFL teams are there? Muhammad Azeem Ashraf 0.11111111111 How many NFL teams are there? -> $x: ($x, be team of, football) -> (Muhammad Azeem Ashraf, There are so many teams of, football) -> Muhammad Azeem Ashraf (4299ms) How many NFL teams are there? native 0.11111111111 How many NFL teams are there? -> $x: ($x, be team of, football) -> (native, was the team captain of, the football team) -> native (4291ms) How many NFL teams are there? The team 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (The team, plays for, the National Football League) -> The team (4302ms) How many NFL teams are there? the two schools 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (the two schools, played for, the football national championship) -> the two schools (4283ms) How many NFL teams are there? ?Space 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, newest) -> (?Space, is Playing Field for, Newest War Game) -> ?Space (4291ms) How many NFL teams are there? Sanford Stadium 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Sanford Stadium, is the on-campus playing venue for, football) -> Sanford Stadium (4287ms) How many NFL teams are there? Michael 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Michael, plays for, the England blind football team) -> Michael (4302ms) How many NFL teams are there? Worcester 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Worcester, played for, the England Blind Football team) -> Worcester (4287ms) How many NFL teams are there? Peyton 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Peyton, played for, my college football team) -> Peyton (4287ms) How many NFL teams are there? Dusan 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Dusan, played for, the local Hungarian football club) -> Dusan (4295ms) How many NFL teams are there? a band 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (a band, played for, football games) -> a band (4291ms) How many NFL teams are there? Fanny Williams 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Fanny Williams, played for, Swindon Town ladies football team) -> Fanny Williams (4295ms) How many NFL teams are there? Rolls 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Rolls, played for, the Football Ferns) -> Rolls (4306ms) How many NFL teams are there? Richard 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Richard, played for, United Traders football club) -> Richard (4295ms) How many NFL teams are there? instruments 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (instruments, play for, the Monday Night Football song) -> instruments (4302ms) How many NFL teams are there? Bill Noble 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Bill Noble, played three seasons for, Army football) -> Bill Noble (4291ms) How many NFL teams are there? Tolley 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Tolley, played for, the JMU football team) -> Tolley (4283ms) How many NFL teams are there? Price 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Price, for playing, football) -> Price (4287ms) How many NFL teams are there? Gene Stallings 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Gene Stallings, played for, College Football Hall) -> Gene Stallings (4299ms) How many NFL teams are there? Justin Fashanu 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Justin Fashanu, played for, Norwich City Football Club) -> Justin Fashanu (4283ms) How many NFL teams are there? Space 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, newest) -> (Space, is playing field for, newest war game) -> Space (4287ms) How many NFL teams are there? Miro Klaic 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Miro Klaic, plays for, BH football national team) -> Miro Klaic (4302ms) How many NFL teams are there? Mark 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Mark, played for, the Roseville Bobcats Football Association) -> Mark (4295ms) How many NFL teams are there? Only time 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Only time, plays for, pro football?s championship) -> Only time (4299ms) How many NFL teams are there? an Imperial kid 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (an Imperial kid, played for, a great football program) -> an Imperial kid (4302ms) How many NFL teams are there? a great opportunity 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (a great opportunity, play for, a fantastic football club) -> a great opportunity (4287ms) How many NFL teams are there? SEAFOOD BOIL PARTY Summer 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (SEAFOOD BOIL PARTY Summer, is for playing, tag football) -> SEAFOOD BOIL PARTY Summer (4295ms) How many NFL teams are there? Brock 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Brock, played for, the 1999 Huskie Football Team) -> Brock (4306ms) How many NFL teams are there? English 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (English, played for, head football coach Greg Koenig) -> English (4291ms) How many NFL teams are there? Texas 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Texas, played for, the national football championship) -> Texas (4283ms) How many NFL teams are there? a well known Australian 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (a well known Australian, played for, Melbourne Football Club) -> a well known Australian (4299ms) How many NFL teams are there? front that 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (front that, was perfect for playing, touch football) -> front that (4295ms) How many NFL teams are there? Ferguson?s input 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Ferguson?s input, plays for, Liverpool Football Club) -> Ferguson?s input (4299ms) How many NFL teams are there? children 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (children, for playing, football) -> children (4299ms) How many NFL teams are there? Charles 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Charles, played for, the Rover football team) -> Charles (4299ms) How many NFL teams are there? Matthews 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Matthews, played for, the USC Trojans football team) -> Matthews (4283ms) How many NFL teams are there? Dagunduro 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Dagunduro, played for, the Husker football team) -> Dagunduro (4291ms) How many NFL teams are there? tim tebow 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (tim tebow, plays for the team, Florida Gators football) -> tim tebow (4291ms) How many NFL teams are there? A great guy 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (A great guy, played for, their national football team) -> A great guy (4283ms) How many NFL teams are there? Mourinho 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Mourinho, for playing, negative football) -> Mourinho (4302ms) How many NFL teams are there? S?crates 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (S?crates, played for, Shelbourne Football Club) -> S?crates (4287ms) How many NFL teams are there? good 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (good, played as well for, AFL football) -> good (4291ms) How many NFL teams are there? a UK-born Indian 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (a UK-born Indian, plays for, a Southall football club) -> a UK-born Indian (4287ms) How many NFL teams are there? The Miami Dolphins 0.11111111111 How many NFL teams are there? -> $x: ($x, be team of, football) -> (The Miami Dolphins, are a team of, professional football) -> The Miami Dolphins (4287ms) How many NFL teams are there? Gary 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Gary, played for, the Mountaineer football team) -> Gary (4287ms) How many NFL teams are there? Sanchez 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Sanchez, played for, Texas Football Club) -> Sanchez (4302ms) How many NFL teams are there? The AFCA 0.11111111111 How many NFL teams are there? -> $x: ($x, be team of, football) -> (The AFCA, is the team of, the football coaching profession) -> The AFCA (4295ms) How many NFL teams are there? two can?t miss 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (two can?t miss, plays for, Thursday ?s college football action) -> two can?t miss (4283ms) How many NFL teams are there? Last 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Last, played for, the Arena Football League) -> Last (4287ms) How many NFL teams are there? crisp overhead conditions 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (crisp overhead conditions, were perfect for playing, football) -> crisp overhead conditions (4299ms) How many NFL teams are there? Leddige 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Leddige, played for, head football coach Brad Mastrud) -> Leddige (4302ms) How many NFL teams are there? Navy 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Navy, begins play for, football beginning) -> Navy (4295ms) How many NFL teams are there? a brick layer 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (a brick layer, played for, Droitwich United football team) -> a brick layer (4295ms) How many NFL teams are there? a youth 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (a youth, played for, Gymnasium Association Football Club) -> a youth (4306ms) How many NFL teams are there? realizing Horn 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (realizing Horn, played for, the football team) -> realizing Horn (4299ms) How many NFL teams are there? Jinky Johnstone 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Jinky Johnstone, played for, Celtic Football club) -> Jinky Johnstone (4295ms) How many NFL teams are there? Simpson 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Simpson, played for, the school football team) -> Simpson (4299ms) How many NFL teams are there? LJ 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (LJ, played for, Rutgers football) -> LJ (4302ms) How many NFL teams are there? a person 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (a person, plays for, the New Orleans football team) -> a person (4299ms) How many NFL teams are there? the candidate 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (the candidate, played for, the same college football team) -> the candidate (4302ms) How many NFL teams are there? President John F. Kennedy 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (President John F. Kennedy, was also known for playing, football) -> President John F. Kennedy (4299ms) How many NFL teams are there? a rover 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (a rover, plays for, Carlton Football Club) -> a rover (4295ms) How many NFL teams are there? El Hadji Diouf 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (El Hadji Diouf, plays for, Blackburn Rovers Football Club) -> El Hadji Diouf (4295ms) How many NFL teams are there? the Pacific Coast Conference 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (the Pacific Coast Conference, began play for, football) -> the Pacific Coast Conference (4291ms) How many NFL teams are there? Najeeb 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Najeeb, played for, the Sharjah Football Club) -> Najeeb (4287ms) How many NFL teams are there? Jack Jones 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Jack Jones, played for, Everton Football Club) -> Jack Jones (4302ms) How many NFL teams are there? Smith 0.11111111111 How many NFL teams are there? -> $x: ($x, play for, football) -> (Smith, plays for, the football team) -> Smith (4299ms) How many NFL teams are there? a good 14 years 1.0999978705683588E-11 How many NFL teams are there? -> $x: ($x, be oldest team in, nfl) -> (a good 14 years, are still the 5th oldest team in, the NFL) -> a good 14 years (4311ms) How many NFL teams are there? Green Bay 1.0999978705683588E-11 How many NFL teams are there? -> $x: ($x, be oldest team in, nfl) -> (Green Bay, are the third oldest team in, the NFL) -> Green Bay (4311ms) How many NFL teams are there? Houston -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (Houston, is the best team in, football) -> Houston (4321ms) How many NFL teams are there? a month -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (a month, was the most free-scoring team in, football) -> a month (4311ms) How many NFL teams are there? The 1997 Colts -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (The 1997 Colts, were the worst team in, football) -> The 1997 Colts (4320ms) How many NFL teams are there? Colts -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (Colts, are the worst team in, football) -> Colts (4318ms) How many NFL teams are there? Hawaii -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (Hawaii, is the best team in, college football) -> Hawaii (4318ms) How many NFL teams are there? The Steelers -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (The Steelers, were the best team in, football) -> The Steelers (4318ms) How many NFL teams are there? The Bears -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (The Bears, are the most discounted team in, football) -> The Bears (4321ms) How many NFL teams are there? first team -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (first team, was a second team all-state selection in, football) -> first team (4321ms) How many NFL teams are there? the Raiders -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (the Raiders, are the worst team in, football) -> the Raiders (4320ms) How many NFL teams are there? the Big East -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (the Big East, will be a 13-team league in, football) -> the Big East (4323ms) How many NFL teams are there? The Rams -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (The Rams, are the worst team in, football) -> The Rams (4321ms) How many NFL teams are there? The Chargers -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (The Chargers, were probably the worst team in, football) -> The Chargers (4318ms) How many NFL teams are there? the lions -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (the lions, may be the best team in, football) -> the lions (4318ms) How many NFL teams are there? the Lions -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (the Lions, have been the worst team in, football) -> the Lions (4320ms) How many NFL teams are there? UD -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (UD, was the only team in, FCS football) -> UD (4311ms) How many NFL teams are there? Have fun -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (Have fun, could very well be the worst team in, football) -> Have fun (4318ms) How many NFL teams are there? The Arizona Cardinals -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (The Arizona Cardinals, are the best team in, football) -> The Arizona Cardinals (4320ms) How many NFL teams are there? The Redskins -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (The Redskins, are the best 6-7 team in, football) -> The Redskins (4316ms) How many NFL teams are there? the Texas Longhorns -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (the Texas Longhorns, are the best team in, college football) -> the Texas Longhorns (4320ms) How many NFL teams are there? The Ravens -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (The Ravens, are the best team in, football) -> The Ravens (4321ms) How many NFL teams are there? Indianapolis -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (Indianapolis, is still the most explosive team in, football) -> Indianapolis (4320ms) How many NFL teams are there? Manchester United -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (Manchester United, are the luckiest team in, football) -> Manchester United (4311ms) How many NFL teams are there? Cleveland -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (Cleveland, is the worst team in, football) -> Cleveland (4321ms) How many NFL teams are there? The Titans -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (The Titans, are the 2nd dirtiest team in, football) -> The Titans (4316ms) How many NFL teams are there? the last four years -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (the last four years, is the worst team in, football) -> the last four years (4321ms) How many NFL teams are there? the pats -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (the pats, were the best teams in, football) -> the pats (4313ms) How many NFL teams are there? the New England Patriots -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (the New England Patriots, have been the best team in, football) -> the New England Patriots (4311ms) How many NFL teams are there? Alabama -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (Alabama, is the best team in, college football) -> Alabama (4321ms) How many NFL teams are there? each other -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (each other, is the best team in, football) -> each other (4316ms) How many NFL teams are there? The undefeated Bears -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (The undefeated Bears, are the best team in, football right) -> The undefeated Bears (4313ms) How many NFL teams are there? The Colts -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (The Colts, are the only defeated team in, football) -> The Colts (4321ms) How many NFL teams are there? The Pats -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (The Pats, are the best team in, Football) -> The Pats (4321ms) How many NFL teams are there? LSU LSU -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (LSU LSU, is the best team in, college football) -> LSU LSU (4318ms) How many NFL teams are there? the Vikings -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (the Vikings, were the best team in, football) -> the Vikings (4320ms) How many NFL teams are there? The Browns -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (The Browns, were the dominant team in, pro football) -> The Browns (4311ms) How many NFL teams are there? the two local football stories -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (the two local football stories, are the best team in, football) -> the two local football stories (4311ms) How many NFL teams are there? The Raiders -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (The Raiders, are the worst team in, football) -> The Raiders (4325ms) How many NFL teams are there? 16 games -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (16 games, are the better teams in, football) -> 16 games (4318ms) How many NFL teams are there? The Cardinals -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (The Cardinals, are the worst team in, football) -> The Cardinals (4316ms) How many NFL teams are there? The Saints -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (The Saints, are the most exciting team in, football) -> The Saints (4320ms) How many NFL teams are there? the Patriots and Giants -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (the Patriots and Giants, were the best teams in, football) -> the Patriots and Giants (4321ms) How many NFL teams are there? Finishing third -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (Finishing third, were teams in, football) -> Finishing third (4316ms) How many NFL teams are there? Arsenal -0.0 How many NFL teams are there? -> $x: ($x, be team in, football) -> (Arsenal, are my second team in, football) -> Arsenal (4321ms) How many NFL teams are there? Instant replay -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (Instant replay, is the worst thing to happen to, football) -> Instant replay (4328ms) How many NFL teams are there? no telling -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (no telling, might happen to, the UNC football program) -> no telling (4328ms) How many NFL teams are there? the heck -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (the heck, has happened to, our football team) -> the heck (4323ms) How many NFL teams are there? Lee -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, newest) -> (Lee, would ?just happen ? to bring, his newest song) -> Lee (4327ms) How many NFL teams are there? Deb Amlen -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, newest) -> (Deb Amlen, also happens to be one of, HO?s newest writers) -> Deb Amlen (4328ms) How many NFL teams are there? a sense -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (a sense, happens to, a football player) -> a sense (4328ms) How many NFL teams are there? ?NFL RedZone -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (?NFL RedZone, is the most exciting thing to happen to, football) -> ?NFL RedZone (4323ms) How many NFL teams are there? the change -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (the change, happened to, South Africa Football Association) -> the change (4328ms) How many NFL teams are there? Ranger -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (Ranger, happened to be, the first football game) -> Ranger (4328ms) How many NFL teams are there? the story -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (the story, happened to, a prominent Big Ten football coach) -> the story (4329ms) How many NFL teams are there? March 2012 -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (March 2012, has happened to, Brazilian football) -> March 2012 (4328ms) How many NFL teams are there? Seni Saraki -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (Seni Saraki, happened to, Nigerian football) -> Seni Saraki (4327ms) How many NFL teams are there? Moony -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, newest) -> (Moony, happens to be, my newest convert) -> Moony (4328ms) How many NFL teams are there? penalties -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (penalties, may have been best thing to happen to, #UNC football) -> penalties (4327ms) How many NFL teams are there? The Grove -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, newest) -> (The Grove, happens to be, the newest outdoor shopping center) -> The Grove (4327ms) How many NFL teams are there? Friday -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (Friday, happened to, flag football) -> Friday (4328ms) How many NFL teams are there? a summer -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (a summer, happened to be at, football practice) -> a summer (4327ms) How many NFL teams are there? Scott -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (Scott, also happens to be, a former football star) -> Scott (4327ms) How many NFL teams are there? off -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (off, happened to, good ole ?Tennessee football) -> off (4328ms) How many NFL teams are there? regards -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (regards, happened to, the old football club) -> regards (4323ms) How many NFL teams are there? trading card game -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, newest) -> (trading card game, happens to be, my newest addiction) -> trading card game (4327ms) How many NFL teams are there? The Rock -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (The Rock, just happened to play, football) -> The Rock (4328ms) How many NFL teams are there? Not sure -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (Not sure, will happen to, his football career) -> Not sure (4328ms) How many NFL teams are there? sense -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (sense, happened to, our football game) -> sense (4327ms) How many NFL teams are there? Ghana -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (Ghana, was happening to, Nigerian football) -> Ghana (4325ms) How many NFL teams are there? next season -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (next season, happens to, this football club) -> next season (4328ms) How many NFL teams are there? a great man -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (a great man, happened to be, a tremendous football player) -> a great man (4327ms) How many NFL teams are there? ludicrously baggy soccer outfits -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (ludicrously baggy soccer outfits, happened to, football) -> ludicrously baggy soccer outfits (4328ms) How many NFL teams are there? MARTY CESARIO -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (MARTY CESARIO, happened to, the Horizon football squad) -> MARTY CESARIO (4328ms) How many NFL teams are there? questions -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (questions, will happen to, the South African football arena) -> questions (4328ms) How many NFL teams are there? Just -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (Just, happened to, 1974 Holland total football) -> Just (4328ms) How many NFL teams are there? KeepNIt2Real -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (KeepNIt2Real, happens to, football players) -> KeepNIt2Real (4328ms) How many NFL teams are there? Commonly reverse -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (Commonly reverse, happens to be, ineffective Football New Jersey) -> Commonly reverse (4328ms) How many NFL teams are there? The Vikings -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, be team, football field) -> (The Vikings, were the better team on, the football field) -> The Vikings (4328ms) How many NFL teams are there? sports drinks -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, newest) -> (sports drinks, happen to be, the newest one) -> sports drinks (4327ms) How many NFL teams are there? Chelsea D -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (Chelsea D, happened to, football) -> Chelsea D (4325ms) How many NFL teams are there? Pankaj Advani -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, newest) -> (Pankaj Advani, happens to be, the newest star) -> Pankaj Advani (4329ms) How many NFL teams are there? Lucy Hale -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, newest) -> (Lucy Hale, also happens to be, the newest Bench girl) -> Lucy Hale (4328ms) How many NFL teams are there? E-governance -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, newest) -> (E-governance, happens to be, the newest expression) -> E-governance (4328ms) How many NFL teams are there? an interesting look -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (an interesting look, is happening to, football attendances) -> an interesting look (4328ms) How many NFL teams are there? 365 Media Group -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (365 Media Group, happened to, football) -> 365 Media Group (4325ms) How many NFL teams are there? the radar -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (the radar, happened to play, their club football) -> the radar (4329ms) How many NFL teams are there? a little lesson -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (a little lesson, happened to, football) -> a little lesson (4327ms) How many NFL teams are there? coast -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (coast, has happened to, pro football) -> coast (4328ms) How many NFL teams are there? exactly -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (exactly, is going to happen with, Ohio State?s football program) -> exactly (4328ms) How many NFL teams are there? Disney Parks -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, newest) -> (Disney Parks, also happens to be, the newest) -> Disney Parks (4323ms) How many NFL teams are there? rachel -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, newest) -> (rachel, just happens to be, the newest client) -> rachel (4327ms) How many NFL teams are there? Social media -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, newest) -> (Social media, just happens to be, the newest) -> Social media (4323ms) How many NFL teams are there? drugs -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, newest) -> (drugs, happened to be, the newest , most expensive drugs) -> drugs (4328ms) How many NFL teams are there? Bazi -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, newest) -> (Bazi, just happens to be, the newest drink) -> Bazi (4328ms) How many NFL teams are there? Sir -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (Sir, happen to catch, the professional football contest) -> Sir (4323ms) How many NFL teams are there? about-who -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, newest) -> (about-who, happens also to be, her newest listening customer) -> about-who (4323ms) How many NFL teams are there? MICHIGAN -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (MICHIGAN, happens to be one of, the biggest football entities) -> MICHIGAN (4327ms) How many NFL teams are there? Questions -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (Questions, will happen to, Nebraska football coach Bill Callahan) -> Questions (4327ms) How many NFL teams are there? Pittsburgh -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (Pittsburgh, happens to be the home of, professional football) -> Pittsburgh (4323ms) How many NFL teams are there? the new pitch -1.0000056338554941E-12 How many NFL teams are there? -> $x: ($x, happen to, football) -> (the new pitch, would be the biggest thing to happen to, football) -> the new pitch (4327ms) How many NFL teams are there? The 1936 Draft -2.0000112677109882E-12 How many NFL teams are there? -> $x: ($x, draft, nfl history) -> (The 1936 Draft, was the only 9-round draft in, NFL history) -> The 1936 Draft (4329ms) What do manatees eat? plankton 2.111111111099 What do manatees eat? -> $x: (manatee, eat, $x) -> (manatees, ever eat, plankton) -> plankton (1624ms) What do manatees eat? 100 pounds 2.111111111099 What do manatees eat? -> $x: (manatee, eat, $x) -> (An adult manatee, eats over, 100 pounds) -> 100 pounds (1414ms) What do manatees eat? 10-15 % 2.111111111099 What do manatees eat? -> $x: (manatee, eat, $x) -> (Manatees, can eat, 10-15 %) -> 10-15 % (1837ms) What do manatees eat? lettuce 2.111111111099 What do manatees eat? -> $x: (manatee, eat, $x) -> (manatees, eat heads of, lettuce) -> lettuce (1414ms) What do manatees eat? daily 2.111111111099 What do manatees eat? -> $x: (manatee, eat, $x) -> (Manatees, can eat 10-15 % of their body weight, daily) -> daily (1837ms) What do manatees eat? a tiny Mexican place 2.111111111099 What do manatees eat? -> $x: (manatee, eat, $x) -> (Manatee and I, ate at, a tiny Mexican place) -> a tiny Mexican place (1837ms) What do manatees eat? Recreation Area 2.111111111099 What do manatees eat? -> $x: (manatee, eat, $x) -> (Lake Manatee St, ate, Recreation Area) -> Recreation Area (1755ms) What do manatees eat? 100 to 150 pounds 2.111111111099 What do manatees eat? -> $x: (manatee, eat, $x) -> (Manatees, eat, 100 to 150 pounds) -> 100 to 150 pounds (1837ms) What do manatees eat? hydrilla 2.111111111099 What do manatees eat? -> $x: (manatee, eat, $x) -> (manatees, eat, hydrilla) -> hydrilla (1414ms) What do manatees eat? the lettuce 2.111111111099 What do manatees eat? -> $x: (manatee, eat, $x) -> (The manatees, eat, the lettuce) -> the lettuce (1414ms) What do manatees eat? 50 different types 2.111111111099 What do manatees eat? -> $x: (manatee, eat, $x) -> (Manatees, eat over, 50 different types) -> 50 different types (1837ms) What do manatees eat? water plants 2.111111111099 What do manatees eat? -> $x: (manatee, eat, $x) -> (The manatee, eats mostly a variety of, water plants) -> water plants (1624ms) What do manatees eat? 9 % 2.111111111099 What do manatees eat? -> $x: (manatee, eat, $x) -> (an adult manatee, can eat nearly, 9 %) -> 9 % (1755ms) What do manatees eat? 150 pounds 2.111111111099 What do manatees eat? -> $x: (manatee, eat, $x) -> (manatees, eat over, 150 pounds) -> 150 pounds (1837ms) What do manatees eat? 10 2.111111111099 What do manatees eat? -> $x: (manatee, eat, $x) -> (Manatees, can eat, 10) -> 10 (1414ms) What do manatees eat? the vegetation right 2.111111111099 What do manatees eat? -> $x: (manatee, eat, $x) -> (manatees, will come eat, the vegetation right) -> the vegetation right (1414ms) What do manatees eat? fish 2.111111111099 What do manatees eat? -> $x: (manatee, eat, $x) -> (Antillean manatees, have been known to eat, fish) -> fish (2170ms) What do manatees eat? 10 % to 20 % 2.111111111099 What do manatees eat? -> $x: (manatee, eat, $x) -> (Manatees, eat, 10 % to 20 %) -> 10 % to 20 % (1414ms) What do manatees eat? elephants 2.111111111099 What do manatees eat? -> $x: (manatee, eat, $x) -> (manatees, eat grass like, elephants) -> elephants (1755ms) What do manatees eat? 4 to 9 percent 2.111111111099 What do manatees eat? -> $x: (manatee, eat, $x) -> (Manatees, must eat, 4 to 9 percent) -> 4 to 9 percent (2171ms) What do manatees eat? marine and freshwater plant 2.111111111099 What do manatees eat? -> $x: (manatee, eat, $x) -> (Shelter Manatees, eat, marine and freshwater plant) -> marine and freshwater plant (1837ms) What do manatees eat? 60 different plant species 2.111111111099 What do manatees eat? -> $x: (manatee, eat, $x) -> (Manatees, eat over, 60 different plant species) -> 60 different plant species (1755ms) What do manatees eat? 72 heads 2.111111111099 What do manatees eat? -> $x: (manatee, eat, $x) -> (the two manatees, eat about, 72 heads) -> 72 heads (1837ms) What do manatees eat? the abundant sea grasses 2.111111111099 What do manatees eat? -> $x: (manatee, eat, $x) -> (Manatees, eat, the abundant sea grasses) -> the abundant sea grasses (1414ms) What do manatees eat? eight heads 2.111111111099 What do manatees eat? -> $x: (manatee, eat, $x) -> (The young manatee, is eating, eight heads) -> eight heads (1624ms) What do manatees eat? marine and freshwater plants 2.111111111099 What do manatees eat? -> $x: (manatee, eat, $x) -> (Manatees, eat, marine and freshwater plants) -> marine and freshwater plants (1624ms) What do manatees eat? 10-15 percent 2.111111111099 What do manatees eat? -> $x: (manatee, eat, $x) -> (Manatees, eat anywhere from, 10-15 percent) -> 10-15 percent (1624ms) What do manatees eat? 10-15 % of their body weight 2.111111111099 What do manatees eat? -> $x: (manatee, eat, $x) -> (Manatees, can eat, 10-15 % of their body weight) -> 10-15 % of their body weight (1624ms) What do manatees eat? 60 different species 2.111111111099 What do manatees eat? -> $x: (manatee, eat, $x) -> (Manatees, eat over, 60 different species) -> 60 different species (2170ms) What do manatees eat? clams 2.111111111099 What do manatees eat? -> $x: (manatee, eat, $x) -> (West African manatees, have been known to eat, clams) -> clams (1624ms) What do manatees eat? different kinds 2.111111111099 What do manatees eat? -> $x: (manatee, eat, $x) -> (Manatees, eat lots of, different kinds) -> different kinds (1755ms) What do manatees eat? the vegetation 2.111111111099 What do manatees eat? -> $x: (manatee, eat, $x) -> (manatees, eat, the vegetation) -> the vegetation (1755ms) What do manatees eat? 60 to 100 pounds 2.111111111099 What do manatees eat? -> $x: (manatee, eat, $x) -> (An adult manatee, eats as much as, 60 to 100 pounds) -> 60 to 100 pounds (1755ms) What do manatees eat? 10 % 2.111111111099 What do manatees eat? -> $x: (manatee, eat, $x) -> (Food Manatees, can eat up to, 10 %) -> 10 % (1624ms) What do manatees eat? 22 pounds 2.111111111099 What do manatees eat? -> $x: (manatee, eat, $x) -> (The manatee, eats, 22 pounds) -> 22 pounds (2170ms) What do manatees eat? exotic plants 2.111111111099 What do manatees eat? -> $x: (manatee, eat, $x) -> (Manatees, eat, exotic plants) -> exotic plants (1755ms) What do manatees eat? salt 1.4444444444389999 What do manatees eat? -> $x: (manatee, do, $x) -> (Manatees, do well in, salt) -> salt (2210ms) What do manatees eat? extra duty 1.4444444444389999 What do manatees eat? -> $x: (manatee, do, $x) -> (Manatee County, does, extra duty) -> extra duty (2210ms) What do manatees eat? a chance 1.4444444444389999 What do manatees eat? -> $x: (manatee, do, $x) -> (That Manatee, does n?t stand, a chance) -> a chance (2210ms) What do manatees eat? the same 1.4444444444389999 What do manatees eat? -> $x: (manatee, do, $x) -> (Manatee, will do, the same) -> the same (2508ms) What do manatees eat? teeth 1.4444444444389999 What do manatees eat? -> $x: (manatee, do, $x) -> (A. Manatees, do indeed have, teeth) -> teeth (2210ms) What do manatees eat? a lot 1.4444444444389999 What do manatees eat? -> $x: (manatee, do, $x) -> (Manatees, really do fart, a lot) -> a lot (2364ms) What do manatees eat? the exact same bremen 1.4444444444389999 What do manatees eat? -> $x: (manatee, do, $x) -> (the manatee, does, the exact same bremen) -> the exact same bremen (2508ms) What do manatees eat? the rounds 1.4444444444389999 What do manatees eat? -> $x: (manatee, do, $x) -> (my manatee photographs, have been doing, the rounds) -> the rounds (2508ms) What do manatees eat? the manatees 1.4444444444389999 What do manatees eat? -> $x: (manatee, do, $x) -> (the Manatee Club, does for, the manatees) -> the manatees (2364ms) What do manatees eat? a great job 1.4444444444389999 What do manatees eat? -> $x: (manatee, do, $x) -> (Manatee Scientists, did, a great job) -> a great job (2170ms) What do manatees eat? a holiday 1.4444444444389999 What do manatees eat? -> $x: (manatee, do, $x) -> (a dead manatee, does n?t turn up right after, a holiday) -> a holiday (2364ms) What do manatees eat? more face-outs 1.4444444444389999 What do manatees eat? -> $x: (manatee, do, $x) -> (Blue Manatee, is doing, more face-outs) -> more face-outs (2170ms) What do manatees eat? Kamran 1.4444444444389999 What do manatees eat? -> $x: (manatee, do, $x) -> (the flying manatee, was done by, Kamran) -> Kamran (2210ms) What do manatees eat? a penis 1.4444444444389999 What do manatees eat? -> $x: (manatee, do, $x) -> (That manatee, does look like, a penis) -> a penis (2364ms) What do manatees eat? a better job 1.4444444444389999 What do manatees eat? -> $x: (manatee, do, $x) -> (D-rated Manatee, was arguably doing, a better job) -> a better job (2170ms) What do manatees eat? Victor 1.4444444444389999 What do manatees eat? -> $x: (manatee, do, $x) -> (the Manatee Club, do even more to help, Victor) -> Victor (2170ms) What do manatees eat? kayak tours 1.4444444444389999 What do manatees eat? -> $x: (manatee, do, $x) -> (the Manatee club, is doing, kayak tours) -> kayak tours (2364ms) What do manatees eat? good 1.4444444444389999 What do manatees eat? -> $x: (manatee, do, $x) -> (the manatees, can do a lot of, good) -> good (2364ms) What do manatees eat? a field sobriety test 1.4444444444389999 What do manatees eat? -> $x: (manatee, do, $x) -> (the Manatee County Sheriff?s Office, did, a field sobriety test) -> a field sobriety test (2210ms) What do manatees eat? the public 1.4444444444389999 What do manatees eat? -> $x: (manatee, do, $x) -> (the Manatee Club, does a great job of educating, the public) -> the public (2364ms) What do manatees eat? a few other tour operators 1.4444444444389999 What do manatees eat? -> $x: (manatee, do, $x) -> (the Manatee reserve, as do, a few other tour operators) -> a few other tour operators (2210ms) What do manatees eat? Sarteneja 1.4444444444389999 What do manatees eat? -> $x: (manatee, do, $x) -> (The rescued manatee, is doing well in, Sarteneja) -> Sarteneja (2364ms) What do manatees eat? power plants 1.4444444444389999 What do manatees eat? -> $x: (manatee, do, $x) -> (manatees, have to do with, power plants) -> power plants (2509ms) What do manatees eat? morph 1.4444444444389999 What do manatees eat? -> $x: (manatee, do, $x) -> (the manatees, really do, morph) -> morph (2210ms) What do manatees eat? late 1.33333333333 What do manatees eat? -> $x: ($x, do, manatee) -> (late, does, another manatee) -> late (2836ms) What do manatees eat? music 1.33333333333 What do manatees eat? -> $x: (manatee, like, $x) -> (manatees, liked, music) -> music (2871ms) What do manatees eat? cool creatures 1.33333333333 What do manatees eat? -> $x: (manatee, like, $x) -> (Manatees, seem like pretty, cool creatures) -> cool creatures (2863ms) What do manatees eat? Wildlife Conservation Commission 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (Wildlife Conservation Commission, can save, a manatee?s life) -> Wildlife Conservation Commission (2712ms) What do manatees eat? place 1.33333333333 What do manatees eat? -> $x: (manatee, need, $x) -> (effective manatee protection measures, need to be in, place) -> place (2845ms) What do manatees eat? vegetation 1.33333333333 What do manatees eat? -> $x: (manatee, feed on, $x) -> (The West African manatee, feeds primarily on, vegetation) -> vegetation (2827ms) What do manatees eat? Florida 1.33333333333 What do manatees eat? -> $x: ($x, kill, manatee) -> (Florida, prohibited the killing of, manatees) -> Florida (2845ms) What do manatees eat? the Manatee Club 1.33333333333 What do manatees eat? -> $x: ($x, do, manatee) -> (the Manatee Club, does for, the manatees) -> the Manatee Club (2845ms) What do manatees eat? 21/2 pounds 1.33333333333 What do manatees eat? -> $x: (manatee, need, $x) -> (a manatee, would need just, 21/2 pounds) -> 21/2 pounds (2827ms) What do manatees eat? reality 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (reality, can barely get, my manatee-sized butt) -> reality (2854ms) What do manatees eat? the lagoon side 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (the lagoon side, can watch, dolphins and manatees) -> the lagoon side (2896ms) What do manatees eat? the state?s waters 1.33333333333 What do manatees eat? -> $x: (manatee, live in, $x) -> (Modern Florida manatees, have lived in, the state?s waters) -> the state?s waters (2863ms) What do manatees eat? scientists 1.33333333333 What do manatees eat? -> $x: ($x, kill, manatee) -> (scientists, killed so, many manatees) -> scientists (2880ms) What do manatees eat? everyone?s help and protection 1.33333333333 What do manatees eat? -> $x: (manatee, need, $x) -> (?Endangered manatees, need, everyone?s help and protection) -> everyone?s help and protection (2888ms) What do manatees eat? club members 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (club members, can see, manatees) -> club members (2904ms) What do manatees eat? humans 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (humans, can legally swim alongside, the manatee) -> humans (2888ms) What do manatees eat? the flesh 1.33333333333 What do manatees eat? -> $x: (manatee, hunt, $x) -> (manatees, were hunted for, the flesh) -> the flesh (2911ms) What do manatees eat? survive 1.33333333333 What do manatees eat? -> $x: (manatee, need, $x) -> (Manatees, need warm water to, survive) -> survive (2911ms) What do manatees eat? the water today 1.33333333333 What do manatees eat? -> $x: (manatee, live in, $x) -> (manatees, live in, the water today) -> the water today (2783ms) What do manatees eat? sharks 1.33333333333 What do manatees eat? -> $x: ($x, kill, manatee) -> (sharks, occasionally kill, manatees) -> sharks (2836ms) What do manatees eat? a role 1.33333333333 What do manatees eat? -> $x: ($x, do, manatee) -> (a role, does, Manatee County play) -> a role (2836ms) What do manatees eat? much air 1.33333333333 What do manatees eat? -> $x: ($x, do, manatee) -> (much air, does, a manatee take) -> much air (2880ms) What do manatees eat? research 1.33333333333 What do manatees eat? -> $x: ($x, do, manatee) -> (research, has been done on, the Florida manatee) -> research (2827ms) What do manatees eat? boaters 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (boaters, can help protect, manatees and seagrasses) -> boaters (2918ms) What do manatees eat? canal locks 1.33333333333 What do manatees eat? -> $x: ($x, kill, manatee) -> (canal locks, have accidentally killed, manatees) -> canal locks (2863ms) What do manatees eat? John Reynolds 1.33333333333 What do manatees eat? -> $x: ($x, do, manatee) -> (John Reynolds, does an aerial count of, manatees) -> John Reynolds (2911ms) What do manatees eat? Naked Came The Manatee 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (Naked Came The Manatee, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Naked%20Came%20the%20Manatee) -> Naked Came The Manatee (2880ms) What do manatees eat? fresh water 1.33333333333 What do manatees eat? -> $x: (manatee, drink, $x) -> (Manatees, have been seen drinking, fresh water) -> fresh water (2918ms) What do manatees eat? warm coastal tropical waters 1.33333333333 What do manatees eat? -> $x: (manatee, live in, $x) -> (Manatees, live in, warm coastal tropical waters) -> warm coastal tropical waters (2911ms) What do manatees eat? Florida?s waters 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (Florida?s waters, can click here to get, manatee protection tips) -> Florida?s waters (2904ms) What do manatees eat? Cold weather 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (Cold weather, can weaken, manatees) -> Cold weather (2880ms) What do manatees eat? uncooked spaghetti 1.33333333333 What do manatees eat? -> $x: (manatee, like, $x) -> (Manatee grass, looks like, uncooked spaghetti) -> uncooked spaghetti (2896ms) What do manatees eat? an honorary nomination 1.33333333333 What do manatees eat? -> $x: ($x, do, manatee) -> (an honorary nomination, as do, Manatees) -> an honorary nomination (2862ms) What do manatees eat? diseases and parasites 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (diseases and parasites, can be responsible for, manatee deaths) -> diseases and parasites (2545ms) What do manatees eat? trainer Christophe Clement 1.33333333333 What do manatees eat? -> $x: ($x, do, manatee) -> (trainer Christophe Clement, did win, the Manatee) -> trainer Christophe Clement (2880ms) What do manatees eat? warm , shallow rivers 1.33333333333 What do manatees eat? -> $x: (manatee, live in, $x) -> (Manatees, live in, warm , shallow rivers) -> warm , shallow rivers (2783ms) What do manatees eat? a local 1.33333333333 What do manatees eat? -> $x: (manatee, drink, $x) -> (a manatee, just drink a beer with, a local) -> a local (2836ms) What do manatees eat? such changes 1.33333333333 What do manatees eat? -> $x: (manatee, need, $x) -> (Manatees, will need to adapt to, such changes) -> such changes (2904ms) What do manatees eat? fresh or salt water 1.33333333333 What do manatees eat? -> $x: (manatee, live in, $x) -> (Manatees, can live in, fresh or salt water) -> fresh or salt water (2871ms) What do manatees eat? Manatee 1.33333333333 What do manatees eat? -> $x: (manatee, drink, $x) -> (Lake Manatee, supplies drinking water to, Manatee) -> Manatee (2845ms) What do manatees eat? boat hulls or propellers 1.33333333333 What do manatees eat? -> $x: ($x, kill, manatee) -> (boat hulls or propellers, kill, a manatee) -> boat hulls or propellers (2545ms) What do manatees eat? year 1.33333333333 What do manatees eat? -> $x: ($x, do, manatee) -> (year, do, manatees) -> year (2880ms) What do manatees eat? the canals 1.33333333333 What do manatees eat? -> $x: (manatee, live in, $x) -> (Manatees , caiman and crocodiles, live in, the canals) -> the canals (2888ms) What do manatees eat? still 1.33333333333 What do manatees eat? -> $x: (manatee, hunt, $x) -> (the manatee, is hunted, still) -> still (2896ms) What do manatees eat? kids 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (kids, can swim with, dolphins and manatees) -> kids (2845ms) What do manatees eat? a cross 1.33333333333 What do manatees eat? -> $x: (manatee, like, $x) -> (all the manatee species, look a little like, a cross) -> a cross (2896ms) What do manatees eat? time 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (time, can be expected as, the manatee population expands) -> time (2896ms) What do manatees eat? a warm water refuge 1.33333333333 What do manatees eat? -> $x: (manatee, need, $x) -> (the manatee, needed, a warm water refuge) -> a warm water refuge (2783ms) What do manatees eat? Vehicle owners 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (Vehicle owners, can support, manatees) -> Vehicle owners (2836ms) What do manatees eat? a wide variety 1.33333333333 What do manatees eat? -> $x: (manatee, feed on, $x) -> (The American manatee, feeds opportunistically on, a wide variety) -> a wide variety (2880ms) What do manatees eat? Lake Manatee State Park 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (Lake Manatee State Park, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Lake%20Manatee%20State%20Park) -> Lake Manatee State Park (2713ms) What do manatees eat? the bottom grass 1.33333333333 What do manatees eat? -> $x: (manatee, feed on, $x) -> (Manatees, was feeding on, the bottom grass) -> the bottom grass (2904ms) What do manatees eat? 08/04/09 1.33333333333 What do manatees eat? -> $x: ($x, do, manatee) -> (08/04/09, do, manatees) -> 08/04/09 (2871ms) What do manatees eat? patrons 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (patrons, can watch, 800-pound manatees) -> patrons (2783ms) What do manatees eat? capture 1.33333333333 What do manatees eat? -> $x: ($x, kill, manatee) -> (capture, kill, any marine mammal including manatees) -> capture (2911ms) What do manatees eat? jobs 1.33333333333 What do manatees eat? -> $x: ($x, do, manatee) -> (jobs, did, Manatee) -> jobs (2896ms) What do manatees eat? the river 1.33333333333 What do manatees eat? -> $x: (manatee, live in, $x) -> (The manatees, have lived in, the river) -> the river (2783ms) What do manatees eat? Capitalists 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (Capitalists, can farm, manatee) -> Capitalists (2863ms) What do manatees eat? the surface 1.33333333333 What do manatees eat? -> $x: (manatee, need, $x) -> (manatees, need to come to, the surface) -> the surface (2862ms) What do manatees eat? SCUBA gear 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (SCUBA gear, can frighten, the manatees) -> SCUBA gear (2872ms) What do manatees eat? three areas 1.33333333333 What do manatees eat? -> $x: (manatee, live in, $x) -> (the manatees, only live in, three areas) -> three areas (2871ms) What do manatees eat? lower than 68 degrees 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (lower than 68 degrees, can be fatal to, manatees) -> lower than 68 degrees (2713ms) What do manatees eat? salt water 1.33333333333 What do manatees eat? -> $x: (manatee, live in, $x) -> (Manatees, have the ability to live in, salt water) -> salt water (2918ms) What do manatees eat? the year 1.33333333333 What do manatees eat? -> $x: ($x, kill, manatee) -> (the year, killed more than, 100 endangered manatees) -> the year (2880ms) What do manatees eat? poor conditions 1.33333333333 What do manatees eat? -> $x: (manatee, live in, $x) -> (manatees, were living in very, poor conditions) -> poor conditions (2836ms) What do manatees eat? smooth cordgrass 1.33333333333 What do manatees eat? -> $x: (manatee, feed on, $x) -> (manatees, feed on, smooth cordgrass) -> smooth cordgrass (2904ms) What do manatees eat? adults 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (adults, can see, the manatees) -> adults (2888ms) What do manatees eat? Bows and arrows 1.33333333333 What do manatees eat? -> $x: ($x, kill, manatee) -> (Bows and arrows, were used to kill, manatees and crocodiles) -> Bows and arrows (2888ms) What do manatees eat? any fast-moving boat 1.33333333333 What do manatees eat? -> $x: ($x, kill, manatee) -> (any fast-moving boat, kill, a manatee) -> any fast-moving boat (2854ms) What do manatees eat? Eco-adventures 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (Eco-adventures, can be arranged by, Manatee Inn) -> Eco-adventures (2712ms) What do manatees eat? pork 1.33333333333 What do manatees eat? -> $x: (manatee, like, $x) -> (Manatee, tastes like, pork) -> pork (2854ms) What do manatees eat? Boaters 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (Boaters, can be active participants in, manatee protection) -> Boaters (2880ms) What do manatees eat? maim 1.33333333333 What do manatees eat? -> $x: ($x, kill, manatee) -> (maim, even kill, manatees) -> maim (2904ms) What do manatees eat? ?hair? 1.33333333333 What do manatees eat? -> $x: (manatee, have type of, $x) -> (Manatees, also have a type of, ?hair?) -> ?hair? (2845ms) What do manatees eat? November and March kids 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (November and March kids, can swim with, the manatees) -> November and March kids (2863ms) What do manatees eat? WATER 1.33333333333 What do manatees eat? -> $x: (manatee, live in, $x) -> (manatees, live in, WATER) -> WATER (2871ms) What do manatees eat? the water 1.33333333333 What do manatees eat? -> $x: (manatee, live in, $x) -> (the manatees, living in, the water) -> the water (2888ms) What do manatees eat? Visitors 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (Visitors, can see, West Indian manatees) -> Visitors (2911ms) What do manatees eat? local natives 1.33333333333 What do manatees eat? -> $x: (manatee, hunt, $x) -> (Historically Antillean manatees, were hunted by, local natives) -> local natives (2863ms) What do manatees eat? birds 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (birds, can be seen as well as, turtles and manatees) -> birds (2911ms) What do manatees eat? Such events 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (Such events, can be, fatal to large numbers of manatees) -> Such events (2836ms) What do manatees eat? more protections 1.33333333333 What do manatees eat? -> $x: (manatee, need, $x) -> (Manatees, need, more protections) -> more protections (2827ms) What do manatees eat? the FWC 1.33333333333 What do manatees eat? -> $x: ($x, do, manatee) -> (the FWC, recommends doing, your manatee observations) -> the FWC (2911ms) What do manatees eat? waterways 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (waterways, can help, manatees) -> waterways (2911ms) What do manatees eat? water temperatures 1.33333333333 What do manatees eat? -> $x: (manatee, need, $x) -> (Manatees, need to be in, water temperatures) -> water temperatures (2827ms) What do manatees eat? a boat survey 1.33333333333 What do manatees eat? -> $x: ($x, do, manatee) -> (a boat survey, did reveal a couple of, manatees) -> a boat survey (2871ms) What do manatees eat? Sound or shock waves 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (Sound or shock waves, can easily deafen, dolphins and manatees) -> Sound or shock waves (2783ms) What do manatees eat? certain areas 1.33333333333 What do manatees eat? -> $x: (manatee, live in, $x) -> (manatees, live in, certain areas) -> certain areas (2871ms) What do manatees eat? estrus 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (estrus, can include as many as, 20 manatees) -> estrus (2783ms) What do manatees eat? the wild and winter 1.33333333333 What do manatees eat? -> $x: (manatee, live in, $x) -> (Nineteen manatees, live in, the wild and winter) -> the wild and winter (2888ms) What do manatees eat? families 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (families, can see, manatees) -> families (2862ms) What do manatees eat? the Southwestern Chapter 1.33333333333 What do manatees eat? -> $x: (manatee, like, $x) -> (Sarasota/Manatee, would like to thank, the Southwestern Chapter) -> the Southwestern Chapter (2845ms) What do manatees eat? a Wuzzle 1.33333333333 What do manatees eat? -> $x: (manatee, like, $x) -> (Manatee Seal, sounds like, a Wuzzle) -> a Wuzzle (2911ms) What do manatees eat? a hippo swim 1.33333333333 What do manatees eat? -> $x: (manatee, like, $x) -> (modern manatees, walk like, a hippo swim) -> a hippo swim (2854ms) What do manatees eat? the Americas 1.33333333333 What do manatees eat? -> $x: (manatee, live in, $x) -> (Manatees, live in, the Americas) -> the Americas (2783ms) What do manatees eat? the docks and fishing piers one 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (the docks and fishing piers one, can spot, manatees) -> the docks and fishing piers one (2896ms) What do manatees eat? an extension 1.33333333333 What do manatees eat? -> $x: (manatee, like, $x) -> (?The Manatee EDC, is almost like, an extension) -> an extension (2854ms) What do manatees eat? minutes 1.33333333333 What do manatees eat? -> $x: (manatee, like, $x) -> (the manatees, seem like, minutes) -> minutes (2904ms) What do manatees eat? more information 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (more information, can be found at, MyFWC.com/Manatee) -> more information (2854ms) What do manatees eat? watercraft activities 1.33333333333 What do manatees eat? -> $x: ($x, kill, manatee) -> (watercraft activities, kill, manatees) -> watercraft activities (2827ms) What do manatees eat? seagrasses 1.33333333333 What do manatees eat? -> $x: (manatee, feed on, $x) -> (the manatee, feeds on, seagrasses) -> seagrasses (2918ms) What do manatees eat? winter survival 1.33333333333 What do manatees eat? -> $x: (manatee, need, $x) -> (manatees, need for, winter survival) -> winter survival (2845ms) What do manatees eat? round-the-clock care 1.33333333333 What do manatees eat? -> $x: (manatee, need, $x) -> (The manatee calf, needs, round-the-clock care) -> round-the-clock care (2863ms) What do manatees eat? pre-Columbian societies 1.33333333333 What do manatees eat? -> $x: (manatee, hunt, $x) -> (evidence shows manatees, were hunted by, pre-Columbian societies) -> pre-Columbian societies (2911ms) What do manatees eat? Manatee Palms Youth Services 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (Manatee Palms Youth Services, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Manatee%20Palms%20Youth%20Services) -> Manatee Palms Youth Services (2904ms) What do manatees eat? film 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (film, can be ordered through, the Manatee Central Library) -> film (2871ms) What do manatees eat? Citrus County visitors 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (Citrus County visitors, can swim with, manatees) -> Citrus County visitors (2854ms) What do manatees eat? boat strikes 1.33333333333 What do manatees eat? -> $x: ($x, kill, manatee) -> (boat strikes, continue to kill, manatees) -> boat strikes (2888ms) What do manatees eat? water 1.33333333333 What do manatees eat? -> $x: (manatee, need, $x) -> (Manatees, need, water) -> water (2903ms) What do manatees eat? Canoes and kayaks 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (Canoes and kayaks, can be rented at, Manatee Springs State Park) -> Canoes and kayaks (2845ms) What do manatees eat? Whose heartburn Disorder 1.33333333333 What do manatees eat? -> $x: ($x, do, manatee) -> (Whose heartburn Disorder, Does, manatee Treat) -> Whose heartburn Disorder (2871ms) What do manatees eat? shallow 1.33333333333 What do manatees eat? -> $x: (manatee, live in, $x) -> (Manatees, live in, shallow) -> shallow (2854ms) What do manatees eat? captivity 1.33333333333 What do manatees eat? -> $x: (manatee, live in, $x) -> (the oldest Manatee, living happily in, captivity) -> captivity (2904ms) What do manatees eat? pristine habitats 1.33333333333 What do manatees eat? -> $x: (manatee, need, $x) -> (Manatees, need, pristine habitats) -> pristine habitats (2880ms) What do manatees eat? broad leafy plants 1.33333333333 What do manatees eat? -> $x: (manatee, like, $x) -> (Manatees, seem to like, broad leafy plants) -> broad leafy plants (2854ms) What do manatees eat? Nature lovers 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (Nature lovers, can swim with, the manatees) -> Nature lovers (2836ms) What do manatees eat? response 1.33333333333 What do manatees eat? -> $x: (manatee, need, $x) -> (manatee behavior, is needed to assess, response) -> response (2888ms) What do manatees eat? guests 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (guests, can see, manatees and dolphins) -> guests (2827ms) What do manatees eat? a short trunk 1.33333333333 What do manatees eat? -> $x: (manatee, like, $x) -> (a manatee?s big nose, is like, a short trunk) -> a short trunk (2918ms) What do manatees eat? more than 60 varieties 1.33333333333 What do manatees eat? -> $x: (manatee, feed on, $x) -> (The Florida manatee, feeds on, more than 60 varieties) -> more than 60 varieties (2845ms) What do manatees eat? areas 1.33333333333 What do manatees eat? -> $x: (manatee, live in, $x) -> (manatees, live in, areas) -> areas (2836ms) What do manatees eat? travelers 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (travelers, can swim with, manatees) -> travelers (2854ms) What do manatees eat? rivers 1.33333333333 What do manatees eat? -> $x: (manatee, live in, $x) -> (West African manatees, live in, rivers) -> rivers (2896ms) What do manatees eat? more food 1.33333333333 What do manatees eat? -> $x: (manatee, need, $x) -> (Manatee, needed, more food) -> more food (2836ms) What do manatees eat? exclamation marks 1.33333333333 What do manatees eat? -> $x: (manatee, like, $x) -> (manatees, shaped like, exclamation marks) -> exclamation marks (2863ms) What do manatees eat? Flagler?s waterways 1.33333333333 What do manatees eat? -> $x: (manatee, need, $x) -> (manatee speed zones, are needed in, Flagler?s waterways) -> Flagler?s waterways (2827ms) What do manatees eat? Marine toxins 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (Marine toxins, also can harm, manatees) -> Marine toxins (2888ms) What do manatees eat? visitors 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (visitors, can see, the endangered West Indian manatee) -> visitors (2918ms) What do manatees eat? Careful boaters 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (Careful boaters, can prevent, manatee injuries) -> Careful boaters (2545ms) What do manatees eat? items 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (items, can be used for, manatee research) -> items (2827ms) What do manatees eat? little manatee river 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (little manatee river, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Little%20Manatee%20River) -> little manatee river (2713ms) What do manatees eat? Viewers 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (Viewers, can learn about, manatees) -> Viewers (2545ms) What do manatees eat? the wild and migrate 1.33333333333 What do manatees eat? -> $x: (manatee, live in, $x) -> (Nineteen manatees, live in, the wild and migrate) -> the wild and migrate (2871ms) What do manatees eat? Florida residents 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (Florida residents, can help, manatees) -> Florida residents (2896ms) What do manatees eat? regulations 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (regulations, can be designed to provide, manatee protection) -> regulations (2836ms) What do manatees eat? Ingestion 1.33333333333 What do manatees eat? -> $x: ($x, kill, manatee) -> (Ingestion, could kill the organisms in, manatees) -> Ingestion (2880ms) What do manatees eat? hunt 1.33333333333 What do manatees eat? -> $x: ($x, kill, manatee) -> (hunt, kill, a manatee) -> hunt (2911ms) What do manatees eat? School groups or classes 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (School groups or classes, can adopt, an endangered manatee) -> School groups or classes (2509ms) What do manatees eat? attention 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (attention, can easily hit, the manatee) -> attention (2904ms) What do manatees eat? High speed boat propellers 1.33333333333 What do manatees eat? -> $x: ($x, kill, manatee) -> (High speed boat propellers, kill, manatees) -> High speed boat propellers (2904ms) What do manatees eat? Manatee County anglers 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (Manatee County anglers, can thank, the Manatee Co. Dept) -> Manatee County anglers (2545ms) What do manatees eat? a boat 1.33333333333 What do manatees eat? -> $x: ($x, kill, manatee) -> (a boat, kills, a manatee) -> a boat (2911ms) What do manatees eat? boat collisions 1.33333333333 What do manatees eat? -> $x: ($x, kill, manatee) -> (boat collisions, are killing, more manatees) -> boat collisions (2862ms) What do manatees eat? more manatees 1.33333333333 What do manatees eat? -> $x: ($x, kill, manatee) -> (more manatees, are being killed because, there are more manatees) -> more manatees (2918ms) What do manatees eat? warm water 1.33333333333 What do manatees eat? -> $x: (manatee, need, $x) -> (manatees, need, warm water) -> warm water (2904ms) What do manatees eat? a number 1.33333333333 What do manatees eat? -> $x: (manatee, feed on, $x) -> (The African manatee, feeds on, a number) -> a number (2888ms) What do manatees eat? captivity year 1.33333333333 What do manatees eat? -> $x: (manatee, live in, $x) -> (manatees, live in, captivity year) -> captivity year (2880ms) What do manatees eat? 68 degrees 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (68 degrees, can be dangerous for, manatees) -> 68 degrees (2871ms) What do manatees eat? Manatee County Area Transit 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (Manatee County Area Transit, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Manatee%20County%20Area%20Transit) -> Manatee County Area Transit (2896ms) What do manatees eat? small family groups 1.33333333333 What do manatees eat? -> $x: (manatee, live in, $x) -> (Manatees, live in, small family groups) -> small family groups (2896ms) What do manatees eat? Manatee county 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (Manatee county, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Manatee%20County,%20Florida) -> Manatee county (2836ms) What do manatees eat? either salt water 1.33333333333 What do manatees eat? -> $x: (manatee, live in, $x) -> (Florida manatees, are capable of living in, either salt water) -> either salt water (2845ms) What do manatees eat? undisturbed habitat 1.33333333333 What do manatees eat? -> $x: (manatee, need, $x) -> (Manatees, need, undisturbed habitat) -> undisturbed habitat (2827ms) What do manatees eat? the red tide 1.33333333333 What do manatees eat? -> $x: ($x, kill, manatee) -> (the red tide, killed, more than 150 manatees) -> the red tide (2827ms) What do manatees eat? brackish or salt water 1.33333333333 What do manatees eat? -> $x: (manatee, live in, $x) -> (Manatees, live in, brackish or salt water) -> brackish or salt water (2918ms) What do manatees eat? accidents 1.33333333333 What do manatees eat? -> $x: ($x, kill, manatee) -> (accidents, even kill, a manatee) -> accidents (2888ms) What do manatees eat? food 1.33333333333 What do manatees eat? -> $x: (manatee, hunt, $x) -> (manatees, are hunted for, food) -> food (2904ms) What do manatees eat? FL Visitors 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (FL Visitors, can watch, the 2,000-pound manatees) -> FL Visitors (2836ms) What do manatees eat? the wild 1.33333333333 What do manatees eat? -> $x: (manatee, live in, $x) -> (Manatees, to live in, the wild) -> the wild (2911ms) What do manatees eat? vegetation Q 1.33333333333 What do manatees eat? -> $x: ($x, do, manatee) -> (vegetation Q, Do, manatees) -> vegetation Q (2845ms) What do manatees eat? boats 1.33333333333 What do manatees eat? -> $x: ($x, kill, manatee) -> (boats, killed, 66 manatees) -> boats (2845ms) What do manatees eat? Capt?n Harry 1.33333333333 What do manatees eat? -> $x: ($x, do, manatee) -> (Capt?n Harry, wanted to do more for, manatees) -> Capt?n Harry (2545ms) What do manatees eat? temperatures 1.33333333333 What do manatees eat? -> $x: (manatee, need, $x) -> (Manatees, need to be in, temperatures) -> temperatures (2904ms) What do manatees eat? Manatee Civic Center 1.33333333333 What do manatees eat? -> $x: ($x, can, manatee) -> (Manatee Civic Center, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Manatee%20Civic%20Center) -> Manatee Civic Center (2854ms) What do manatees eat? prime habitat 1.33333333333 What do manatees eat? -> $x: ($x, kill, manatee) -> (prime habitat, killed a lot of, Manatees) -> prime habitat (2880ms) What do manatees eat? protection 1.33333333333 What do manatees eat? -> $x: (manatee, need, $x) -> (manatees, need, protection) -> protection (2871ms) What do manatees eat? motor boats 1.33333333333 What do manatees eat? -> $x: ($x, kill, manatee) -> (motor boats, often kill, young manatees) -> motor boats (2545ms) What do manatees eat? red tide 1.33333333333 What do manatees eat? -> $x: ($x, kill, manatee) -> (red tide, killed, 30 endangered manatees) -> red tide (2836ms) What do manatees eat? freshwater 1.33333333333 What do manatees eat? -> $x: (manatee, need, $x) -> (Manatees, need, freshwater) -> freshwater (2911ms) What do manatees eat? A Bradenton police officer 1.33333333333 What do manatees eat? -> $x: ($x, do, manatee) -> (A Bradenton police officer, did, Manatee County staff members) -> A Bradenton police officer (2880ms) What do manatees eat? filet mignon 1.33333333333 What do manatees eat? -> $x: (manatee, like, $x) -> (Manatee, tastes just like, filet mignon) -> filet mignon (2904ms) What do manatees eat? the winter 1.33333333333 What do manatees eat? -> $x: (manatee, live in, $x) -> (manatees, live in, the winter) -> the winter (2845ms) What do manatees eat? quiet coastal areas 1.33333333333 What do manatees eat? -> $x: (manatee, live in, $x) -> (West African manatees, live in, quiet coastal areas) -> quiet coastal areas (2871ms) What do manatees eat? Canker 1.222222222219 What do manatees eat? -> $x: ($x, discover, manatee) -> (Canker, is discovered again in, Manatee County) -> Canker (2918ms) What do manatees eat? National builders 1.222222222219 What do manatees eat? -> $x: ($x, discover, manatee) -> (National builders, have discovered, Sarasota and Manatee) -> National builders (2926ms) What do manatees eat? the Gulf 1.222222222219 What do manatees eat? -> $x: ($x, be habitat of, manatee) -> (the Gulf, are a favorite habitat of, manatees) -> the Gulf (2918ms) What do manatees eat? the need 1.222222222219 What do manatees eat? -> $x: (manatee, be example of, $x) -> ('s manatee, is a good example of, the need) -> the need (2925ms) What do manatees eat? passive observation 1.222222222219 What do manatees eat? -> $x: (manatee, believe in, $x) -> (the Manatee Club, believes in, passive observation) -> passive observation (2918ms) What do manatees eat? Citrus canker 1.222222222219 What do manatees eat? -> $x: ($x, discover, manatee) -> (Citrus canker, was discovered again in, Manatee County) -> Citrus canker (2918ms) What do manatees eat? The dolphin 1.222222222218 What do manatees eat? -> $x: ($x, eat, manatee) -> (The dolphin, ate, the manatee) -> The dolphin (2926ms) What do manatees eat? flour 1.222222222218 What do manatees eat? -> $x: ($x, eat, manatee) -> (flour, also ate, manatee , turtle , lobster and other fish) -> flour (2926ms) What do manatees eat? lamp oil 0.7777777777739999 What do manatees eat? -> $x: (manatee, be use for, $x) -> (Manatee fat, was used for, lamp oil) -> lamp oil (2925ms) What do manatees eat? insect pests 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (The mantis, will eat a variety of, insect pests) -> insect pests (2946ms) What do manatees eat? the bad bugs 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (The praying mantis, will eat, the bad bugs) -> the bad bugs (2951ms) What do manatees eat? the living grasshopper 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (the mantis, ate away at, the living grasshopper) -> the living grasshopper (2946ms) What do manatees eat? 07 crickets 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (Any wishing mantis, could try to eat, 07 crickets) -> 07 crickets (2939ms) What do manatees eat? aphids 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (the praying mantis, will eat, aphids) -> aphids (2932ms) What do manatees eat? larger pest insects 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (The adult mantis, will eat, larger pest insects) -> larger pest insects (2939ms) What do manatees eat? a couple 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (?My pet mantis, had n?t eaten in, a couple) -> a couple (2939ms) What do manatees eat? Hydei fruit flies 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (the mantis, will eat, Hydei fruit flies) -> Hydei fruit flies (2956ms) What do manatees eat? a leaf 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (A praying mantis, eats through, a leaf) -> a leaf (2946ms) What do manatees eat? four rover ants 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (this praying mantis, ate, four rover ants) -> four rover ants (2939ms) What do manatees eat? lizards 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (mantis, will eat, lizards) -> lizards (2933ms) What do manatees eat? the poisonous bugs 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (the mantises, ate, the poisonous bugs) -> the poisonous bugs (2939ms) What do manatees eat? the bee 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (the mantis, eating, the bee) -> the bee (2951ms) What do manatees eat? flies 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (The praying mantis, will eat, flies) -> flies (2946ms) What do manatees eat? the caterpillars 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (The praying mantises, eat, the caterpillars) -> the caterpillars (2939ms) What do manatees eat? a variety of insect pests 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (The mantis, will eat, a variety of insect pests) -> a variety of insect pests (2946ms) What do manatees eat? 7 flies 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (a mantis, can eat as many as, 7 flies) -> 7 flies (2946ms) What do manatees eat? insects 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (the mantises, eat, insects) -> insects (2956ms) What do manatees eat? one another 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (Mantises, will also eat, one another) -> one another (2956ms) What do manatees eat? the spider 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (The mantis, ate the the entire body of, the spider) -> the spider (2933ms) What do manatees eat? the male mantis 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (February 10 female mantis, eats, the male mantis) -> the male mantis (2932ms) What do manatees eat? the males head 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (the female praying mantis, eats, the males head) -> the males head (2933ms) What do manatees eat? house flies 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (mantis, will eat, house flies) -> house flies (2956ms) What do manatees eat? the bait 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (the mantis, comes to eat, the bait) -> the bait (2946ms) What do manatees eat? a wasp 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (Praying Mantis, eating, a wasp) -> a wasp (2933ms) What do manatees eat? Hummingbird 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (Mantis, eats, Hummingbird) -> Hummingbird (2933ms) What do manatees eat? a siriss Thanks 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (Eye4Photo Mantis, eats, a siriss Thanks) -> a siriss Thanks (2957ms) What do manatees eat? slow-moving insects 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (The praying mantis, eats, slow-moving insects) -> slow-moving insects (2951ms) What do manatees eat? crickets 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (mantises, eat, crickets) -> crickets (2933ms) What do manatees eat? the male 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (The female praying mantis, eats, the male) -> the male (2951ms) What do manatees eat? Carpenter ants 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (Mantis, eat, Carpenter ants) -> Carpenter ants (2951ms) What do manatees eat? a mouse 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (a praying mantis, eat, a mouse) -> a mouse (2939ms) What do manatees eat? the ants 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (Praying Mantis?s, will eat, the ants) -> the ants (2957ms) What do manatees eat? a grasshopper 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (A mantis, was eating, a grasshopper) -> a grasshopper (2939ms) What do manatees eat? the heads of their mates 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (Female praying mantises, eat, the heads of their mates) -> the heads of their mates (2939ms) What do manatees eat? bees 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (sure mantises, eat, bees) -> bees (2951ms) What do manatees eat? a wind scorpion 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (a preying mantis, was being eaten by, a wind scorpion) -> a wind scorpion (2939ms) What do manatees eat? the insect 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (The mantis, always starts eating, the insect) -> the insect (2957ms) What do manatees eat? 25 flies 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (? One adult mantis, can eat up to, 25 flies) -> 25 flies (2933ms) What do manatees eat? a siriss 0.555555555547 What do manatees eat? -> $x: (mantis, eat, $x) -> (Mantis, eats, a siriss) -> a siriss (2951ms) What do manatees eat? The upgrades -2.000177801164682E-12 What do manatees eat? -> $x: ($x, be part of, manatee) -> (The upgrades, are a part of, Port Manatee?s) -> The upgrades (2961ms) What do manatees eat? Bradenton and Palmetto -2.000177801164682E-12 What do manatees eat? -> $x: ($x, be part of, manatee) -> (Bradenton and Palmetto, are part of, Manatee County) -> Bradenton and Palmetto (2957ms) What do manatees eat? the MPS -2.000177801164682E-12 What do manatees eat? -> $x: ($x, be part of, manatee) -> (the MPS, is part of, the Manatee Pass Gates project) -> the MPS (2961ms) What do manatees eat? an 18' X 10' garden -0.111111111113 What do manatees eat? -> $x: (mantis, do, $x) -> (The Mantis, does just fine for, an 18' X 10' garden) -> an 18' X 10' garden (2971ms) What do manatees eat? 8-10 -0.111111111113 What do manatees eat? -> $x: (mantis, do, $x) -> (The Mantis, does require, 8-10) -> 8-10 (2961ms) What do manatees eat? any gigs -0.111111111113 What do manatees eat? -> $x: (mantis, do, $x) -> (Mantis, did n?t play, any gigs) -> any gigs (2962ms) What do manatees eat? Gooder -0.111111111113 What do manatees eat? -> $x: (mantis, do, $x) -> (Mantis, Do, Gooder) -> Gooder (2971ms) What do manatees eat? any trouble -0.111111111113 What do manatees eat? -> $x: (mantis, do, $x) -> (Little mantis, did n?t want, any trouble) -> any trouble (2971ms) What do manatees eat? the job -0.111111111113 What do manatees eat? -> $x: (mantis, do, $x) -> (Mantis, did, the job) -> the job (2977ms) What do manatees eat? acupuncture -0.111111111113 What do manatees eat? -> $x: (mantis, do, $x) -> (Mantis, is doing, acupuncture) -> acupuncture (2962ms) What do manatees eat? a variety -0.111111111113 What do manatees eat? -> $x: (mantis, do, $x) -> (the Mantis Electric Tiller, was made to do, a variety) -> a variety (2966ms) What do manatees eat? the rest -0.111111111113 What do manatees eat? -> $x: (mantis, do, $x) -> (praying mantises, do, the rest) -> the rest (2971ms) What do manatees eat? a grappler -0.111111111113 What do manatees eat? -> $x: (mantis, do, $x) -> (mantis, do some training with, a grappler) -> a grappler (2962ms) What do manatees eat? Metal Gear Solid -0.111111111113 What do manatees eat? -> $x: (mantis, do, $x) -> (Psycho Mantis, did, Metal Gear Solid) -> Metal Gear Solid (2966ms) What do manatees eat? better -0.111111111113 What do manatees eat? -> $x: (mantis, do, $x) -> (many class mantes, hope to do even, better) -> better (2961ms) What do manatees eat? CVS -0.111111111113 What do manatees eat? -> $x: (mantis, do, $x) -> (Mantis, does n?t have the ability to connect with, CVS) -> CVS (2966ms) What do manatees eat? the readers polls -0.111111111113 What do manatees eat? -> $x: (mantis, do, $x) -> (Mantis, have done well in, the readers polls) -> the readers polls (2977ms) What do manatees eat? wonders -0.111111111113 What do manatees eat? -> $x: (mantis, do, $x) -> (Psycho Mantis, did, wonders) -> wonders (2966ms) What do manatees eat? the insect housing containers -0.111111111113 What do manatees eat? -> $x: (mantis, do, $x) -> (mantis insects, do very well in, the insect housing containers) -> the insect housing containers (2966ms) What do manatees eat? 8-10 pulls -0.111111111113 What do manatees eat? -> $x: (mantis, do, $x) -> (The Mantis, does require, 8-10 pulls) -> 8-10 pulls (2966ms) What do manatees eat? the insect control -0.111111111113 What do manatees eat? -> $x: (mantis, do, $x) -> (praying mantis, do, the insect control) -> the insect control (2966ms) What do manatees eat? an engine -0.111111111113 What do manatees eat? -> $x: (mantis, do, $x) -> (the Mantis Swift Split, does n?t even have, an engine) -> an engine (2966ms) What do manatees eat? a sea lion -0.1111111111130001 What do manatees eat? -> $x: ($x, look like, manatee) -> (a sea lion, looks a lot more like, a manatee) -> a sea lion (2977ms) What do manatees eat? Sea lions -0.1111111111130001 What do manatees eat? -> $x: ($x, look like, manatee) -> (Sea lions, look like, large manatees) -> Sea lions (2977ms) What do manatees eat? the bushes -0.1111111111130001 What do manatees eat? -> $x: ($x, look like, manatee) -> (the bushes, look less like, manatees) -> the bushes (2977ms) What do manatees eat? Dead Leaf Mantis -0.222222222222 What do manatees eat? -> $x: ($x, can, mantis) -> (Dead Leaf Mantis, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Dead%20leaf%20mantis) -> Dead Leaf Mantis (2977ms) What do manatees eat? new notifications -0.222222222222 What do manatees eat? -> $x: ($x, can, mantis) -> (new notifications, can be used by, the Mantis core) -> new notifications (3008ms) What do manatees eat? the leaves -0.222222222222 What do manatees eat? -> $x: ($x, do, mantis) -> (the leaves, so did, this full grown praying mantis) -> the leaves (3015ms) What do manatees eat? Glad my aquarium -0.222222222222 What do manatees eat? -> $x: ($x, do, mantis) -> (Glad my aquarium, does n?t have, any stowaway mantis shrimp) -> Glad my aquarium (3008ms) What do manatees eat? Michel -0.222222222222 What do manatees eat? -> $x: ($x, do, mantis) -> (Michel, does, his mantis-in-the-bushes stakeout Chaz exclaims) -> Michel (3020ms) What do manatees eat? MantisConnect -0.222222222222 What do manatees eat? -> $x: ($x, can, mantis) -> (MantisConnect, can be downloaded from, the MantisConnect site) -> MantisConnect (2981ms) What do manatees eat? Squilla mantis -0.222222222222 What do manatees eat? -> $x: ($x, can, mantis) -> (Squilla mantis, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Squilla%20mantis) -> Squilla mantis (3019ms) What do manatees eat? The activity -0.222222222222 What do manatees eat? -> $x: ($x, do, mantis) -> (The activity, does n?t require, a mantis) -> The activity (3020ms) What do manatees eat? A cleaner shrimp -0.222222222222 What do manatees eat? -> $x: ($x, do, mantis) -> (A cleaner shrimp, done by, a mantis) -> A cleaner shrimp (2989ms) What do manatees eat? a stick -0.222222222222 What do manatees eat? -> $x: (mantis, like, $x) -> (the praying mantis, looks like, a stick) -> a stick (3006ms) What do manatees eat? a hack -0.222222222222 What do manatees eat? -> $x: (mantis, like, $x) -> (MantisZero ? Fri Jun 24 , 2011 10:36, am Looks like, a hack) -> a hack (2985ms) What do manatees eat? a flower -0.222222222222 What do manatees eat? -> $x: (mantis, like, $x) -> (The flower mantis, looks more like, a flower) -> a flower (3018ms) What do manatees eat? smaller food -0.222222222222 What do manatees eat? -> $x: (mantis, need, $x) -> (smaller mantis, need, smaller food) -> smaller food (3019ms) What do manatees eat? montauk mantis -0.222222222222 What do manatees eat? -> $x: ($x, can, mantis) -> (montauk mantis, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Montauk%20Mantis) -> montauk mantis (3021ms) What do manatees eat? the locust -0.222222222222 What do manatees eat? -> $x: (mantis, hunt, $x) -> (the mantis, hunts, the locust) -> the locust (3021ms) What do manatees eat? the other bosses -0.222222222222 What do manatees eat? -> $x: (mantis, like, $x) -> (trigger reveling Mantises, face just like, the other bosses) -> the other bosses (3011ms) What do manatees eat? a few around -0.222222222222 What do manatees eat? -> $x: ($x, do, mantis) -> (a few around, did n?t support, my CVS?>Mantis combination) -> a few around (3003ms) What do manatees eat? caterpillars and pollinators -0.222222222222 What do manatees eat? -> $x: (mantis, feed on, $x) -> (the praying mantis, feeds on, caterpillars and pollinators) -> caterpillars and pollinators (3006ms) What do manatees eat? Northern Praying Mantis -0.222222222222 What do manatees eat? -> $x: ($x, can, mantis) -> (Northern Praying Mantis, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Northern%20Praying%20Mantis%20(martial%20art)) -> Northern Praying Mantis (3017ms) What do manatees eat? praise -0.222222222222 What do manatees eat? -> $x: (mantis, hunt, $x) -> (Mantises, hunt only to, praise) -> praise (3003ms) What do manatees eat? monsters -0.222222222222 What do manatees eat? -> $x: (mantis, like, $x) -> (The mantis prawns, may look like, monsters) -> monsters (3020ms) What do manatees eat? a solid list -0.222222222222 What do manatees eat? -> $x: (mantis, like, $x) -> (MantisZero ? Wed Jun 01 , 2011 2:08 pm, Looks like, a solid list) -> a solid list (3018ms) What do manatees eat? a mess -0.222222222222 What do manatees eat? -> $x: ($x, do, mantis) -> (a mess, Am seriously done now, ALBINO PRAYING MANTIS) -> a mess (3006ms) What do manatees eat? Aphids -0.222222222222 What do manatees eat? -> $x: (mantis, feed on, $x) -> (MANTIS, feeds on, Aphids) -> Aphids (3018ms) What do manatees eat? The clicking noise -0.222222222222 What do manatees eat? -> $x: ($x, can, mantis) -> (The clicking noise, can indicate, a pistol or mantis shrimp) -> The clicking noise (3021ms) What do manatees eat? a heart -0.222222222222 What do manatees eat? -> $x: (mantis, like, $x) -> (The praying mantis, may have a head shaped like, a heart) -> a heart (3020ms) What do manatees eat? small thin arms -0.222222222222 What do manatees eat? -> $x: ($x, do, mantis) -> (small thin arms, does, a praying mantis) -> small thin arms (2993ms) What do manatees eat? the Mantis Tiller -0.222222222222 What do manatees eat? -> $x: ($x, can, mantis) -> (the Mantis Tiller, can represent up to, 10 deep.So Mantis digger) -> the Mantis Tiller (3018ms) What do manatees eat? a new one -0.222222222222 What do manatees eat? -> $x: (mantis, like, $x) -> (My mantis, looks like, a new one) -> a new one (3006ms) What do manatees eat? pokemon -0.222222222222 What do manatees eat? -> $x: (mantis, like, $x) -> (a praying mantis and i, started liking, pokemon) -> pokemon (3015ms) What do manatees eat? a pirate -0.222222222222 What do manatees eat? -> $x: (mantis, like, $x) -> (a Mantis Samurai, looked more like, a pirate) -> a pirate (2989ms) What do manatees eat? I?ve -0.222222222222 What do manatees eat? -> $x: ($x, kill, mantis) -> (I?ve, killed, the giant Mantis Ant) -> I?ve (3017ms) What do manatees eat? live insects -0.222222222222 What do manatees eat? -> $x: (mantis, feed on, $x) -> (The mantis, feeds on, live insects) -> live insects (3016ms) What do manatees eat? MANTES LA JOLIE -0.222222222222 What do manatees eat? -> $x: ($x, can, mantis) -> (MANTES LA JOLIE, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Mantes%2Dla%2DJolie) -> MANTES LA JOLIE (3013ms) What do manatees eat? the band -0.222222222222 What do manatees eat? -> $x: ($x, do, mantis) -> (the band, as did, a stray praying mantis) -> the band (3018ms) What do manatees eat? monkey hand -0.222222222222 What do manatees eat? -> $x: (mantis, like, $x) -> (Mantis hook, is a lot like, monkey hand) -> monkey hand (2989ms) What do manatees eat? children -0.222222222222 What do manatees eat? -> $x: ($x, can, mantis) -> (children, can take a spin on, a shiny green mantis) -> children (3019ms) What do manatees eat? The 3rd combo -0.222222222222 What do manatees eat? -> $x: ($x, do, mantis) -> (The 3rd combo, can only be done on, the Mantis style) -> The 3rd combo (3021ms) What do manatees eat? More info -0.222222222222 What do manatees eat? -> $x: ($x, can, mantis) -> (More info, can be found in, Mantis report) -> More info (2989ms) What do manatees eat? the CBS -0.222222222222 What do manatees eat? -> $x: ($x, kill, mantis) -> (the CBS, kill, the Mantis) -> the CBS (3013ms) What do manatees eat? high level Tai Qi players -0.222222222222 What do manatees eat? -> $x: ($x, can, mantis) -> (high level Tai Qi players, can take up, mantis) -> high level Tai Qi players (2985ms) What do manatees eat? too much trouble -0.222222222222 What do manatees eat? -> $x: ($x, do, mantis) -> (too much trouble, did, Screaming Mantis) -> too much trouble (3019ms) What do manatees eat? Cure -0.222222222222 What do manatees eat? -> $x: ($x, do, mantis) -> (Cure, Do, Shaolin Praying Mantis movement) -> Cure (2997ms) What do manatees eat? fixes -0.222222222222 What do manatees eat? -> $x: ($x, can, mantis) -> (fixes, can see in, the Mantis) -> fixes (3021ms) What do manatees eat? the lady i -0.222222222222 What do manatees eat? -> $x: ($x, do, mantis) -> (the lady i, did, the praying mantis) -> the lady i (3017ms) What do manatees eat? Beetle -0.222222222222 What do manatees eat? -> $x: (mantis, feed on, $x) -> (MANTIS, feeds on, Beetle) -> Beetle (3008ms) What do manatees eat? the KODAN Claws -0.222222222222 What do manatees eat? -> $x: ($x, can, mantis) -> (the KODAN Claws, can be posed in, a rather mantis-like way) -> the KODAN Claws (3011ms) What do manatees eat? small insects -0.222222222222 What do manatees eat? -> $x: (mantis, feed on, $x) -> (mantis, begin feeding on, small insects) -> small insects (3019ms) What do manatees eat? the chain -0.222222222222 What do manatees eat? -> $x: ($x, do, mantis) -> (the chain, did, Screaming Mantis) -> the chain (3006ms) What do manatees eat? night -0.222222222222 What do manatees eat? -> $x: ($x, do, mantis) -> (night, does, the Praying mantis) -> night (2997ms) What do manatees eat? Grasshopper -0.222222222222 What do manatees eat? -> $x: (mantis, feed on, $x) -> (MANTIS, feeds on, Grasshopper) -> Grasshopper (2993ms) What do manatees eat? a toy -0.222222222222 What do manatees eat? -> $x: (mantis, like, $x) -> (the little red Mantis Tiller/Cultivator, looked like, a toy) -> a toy (3019ms) What do manatees eat? storybook friends -0.222222222222 What do manatees eat? -> $x: (mantis, like, $x) -> (Frog and mantis, look like, storybook friends) -> storybook friends (3013ms) What do manatees eat? cover art -0.222222222222 What do manatees eat? -> $x: ($x, do, mantis) -> (cover art, will be done by, Melanie Laetitia Mantis) -> cover art (2977ms) What do manatees eat? TRAILER compilation -0.222222222222 What do manatees eat? -> $x: (mantis, need, $x) -> (The Mantis Topic, Need help with, TRAILER compilation) -> TRAILER compilation (3008ms) What do manatees eat? the coastal regions -0.222222222222 What do manatees eat? -> $x: (mantis, live in, $x) -> (Special Mantis shrimp, mainly live in, the coastal regions) -> the coastal regions (3020ms) What do manatees eat? the user -0.222222222222 What do manatees eat? -> $x: ($x, can, mantis) -> (the user, can be interacting with, MantisBT user interface) -> the user (3015ms) What do manatees eat? the smallest -0.222222222222 What do manatees eat? -> $x: (mantis, feed on, $x) -> (the baby Mantis, should be fed on, the smallest) -> the smallest (3008ms) What do manatees eat? existing CICS screens -0.222222222222 What do manatees eat? -> $x: ($x, can, mantis) -> (existing CICS screens, can be modified using, MANTIS) -> existing CICS screens (3000ms) What do manatees eat? a really handy guy -0.222222222222 What do manatees eat? -> $x: (mantis, like, $x) -> (MANTIS, sounds like, a really handy guy) -> a really handy guy (3006ms) What do manatees eat? withered leaves -0.222222222222 What do manatees eat? -> $x: (mantis, like, $x) -> (The mantises, looked like, withered leaves) -> withered leaves (3017ms) What do manatees eat? the King -0.222222222222 What do manatees eat? -> $x: (mantis, like, $x) -> (the Mantis, is like, the King) -> the King (2981ms) What do manatees eat? Shrimp -0.222222222222 What do manatees eat? -> $x: ($x, can, mantis) -> (Shrimp, can be easily confused with, Mantis Shrimp) -> Shrimp (3013ms) What do manatees eat? a thistle -0.222222222222 What do manatees eat? -> $x: (mantis, like, $x) -> (this mantis, looks like, a thistle) -> a thistle (3018ms) What do manatees eat? Chinese mantis -0.222222222222 What do manatees eat? -> $x: ($x, can, mantis) -> (Chinese mantis, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Chinese%20mantis) -> Chinese mantis (2989ms) What do manatees eat? a good vocalist -0.222222222222 What do manatees eat? -> $x: (mantis, need, $x) -> (Mantis, need right now is, a good vocalist) -> a good vocalist (3011ms) What is cribbage? Sir John Suckling 0.111111111111 What is cribbage? -> $x: ($x, invent, cribbage) -> (Sir John Suckling, invented, cribbage) -> Sir John Suckling (1089ms) What is cribbage? polar bears 0.111111111111 What is cribbage? -> $x: ($x, invent, cribbage) -> (polar bears, invented, cribbage) -> polar bears (1090ms) What is cribbage? the 15 -0.0 What is cribbage? -> $x: ($x, in, cribbage) -> (the 15, is in, standard Cribbage) -> the 15 (1125ms) What is cribbage? Janet -0.0 What is cribbage? -> $x: ($x, in, cribbage) -> (Janet, placed fifth in, the Alaska State Cribbage Tournament) -> Janet (1126ms) What is cribbage? Players -0.0 What is cribbage? -> $x: ($x, in, cribbage) -> (Players, score as in, two handed cribbage) -> Players (1125ms) What is cribbage? to score -0.0 What is cribbage? -> $x: ($x, in, cribbage) -> (to score, runs in, cribbage) -> to score (1125ms) What is cribbage? each row and column -0.0 What is cribbage? -> $x: ($x, in, cribbage) -> (each row and column, is done as in, normal cribbage) -> each row and column (1089ms) What is cribbage? Dustin Pedroia -0.0 What is cribbage? -> $x: ($x, in, cribbage) -> (Dustin Pedroia, engage in, cribbage) -> Dustin Pedroia (1125ms) What is cribbage? Cards -0.0 What is cribbage? -> $x: ($x, in, cribbage) -> (Cards, are used in, Cribbage) -> Cards (1090ms) What is cribbage? Mr. Evans -0.0 What is cribbage? -> $x: ($x, in, cribbage) -> (Mr. Evans, spent the evening in, reading and playing cribbage) -> Mr. Evans (1089ms) What is cribbage? Aces -0.0 What is cribbage? -> $x: ($x, in, cribbage) -> (Aces, are always low in, cribbage) -> Aces (1090ms) What is cribbage? Scoring aces -0.0 What is cribbage? -> $x: ($x, in, cribbage) -> (Scoring aces, Is the ace high in, cribbage) -> Scoring aces (1090ms) What is cribbage? Jan . Don Rinn -0.0 What is cribbage? -> $x: ($x, in, cribbage) -> (Jan . Don Rinn, placed second in, the Zone Cribbage-singles) -> Jan . Don Rinn (1125ms) What is cribbage? Sivir -0.0 What is cribbage? -> $x: ($x, in, cribbage) -> (Sivir, has little interest in, the ''cribbage sheets) -> Sivir (1125ms) What is cribbage? Book publishing -0.0 What is cribbage? -> $x: ($x, in, cribbage) -> (Book publishing, is an industry in, a cribbage game?and) -> Book publishing (1126ms) What is cribbage? solitaire -0.111111111111 What is cribbage? -> $x: ($x, describe, cribbage) -> (solitaire, describe this version of, Cribbage Squares) -> solitaire (1162ms) What is cribbage? Card Game Heaven -0.111111111111 What is cribbage? -> $x: ($x, describe, cribbage) -> (Card Game Heaven, also describes, Five-Card Cribbage) -> Card Game Heaven (1163ms) What is cribbage? three players -0.111111111112 What is cribbage? -> $x: (cribbage, be for, $x) -> (triple-tracked all-wood cribbage set, is for, three players) -> three players (1391ms) What is cribbage? free or -0.111111111112 What is cribbage? -> $x: (cribbage, be for, $x) -> (cribbage, can be played for, free or) -> free or (1330ms) What is cribbage? beginners -0.111111111112 What is cribbage? -> $x: (cribbage, be for, $x) -> (Five-card cribbage, is a good starting point for, beginners) -> beginners (1365ms) What is cribbage? trade purposes -0.111111111112 What is cribbage? -> $x: (cribbage, be for, $x) -> (this Cribbage Board, were produced primarily for, trade purposes) -> trade purposes (1517ms) What is cribbage? 2 decks of cards -0.111111111112 What is cribbage? -> $x: (cribbage, be for, $x) -> (Simple Cribbage Box, is hinged to a box for, 2 decks of cards) -> 2 decks of cards (1162ms) What is cribbage? Windows -0.111111111112 What is cribbage? -> $x: (cribbage, be for, $x) -> (Battlefield Cribbage, is available for, Windows) -> Windows (1516ms) What is cribbage? hundreds of years -0.111111111112 What is cribbage? -> $x: (cribbage, be for, $x) -> (Cribbage boards, have been used for, hundreds of years) -> hundreds of years (1330ms) What is cribbage? art lovers -0.111111111112 What is cribbage? -> $x: (cribbage, be for, $x) -> (Snake shape cribbage board, is an ideal choice for, art lovers) -> art lovers (1365ms) What is cribbage? hundreds -0.111111111112 What is cribbage? -> $x: (cribbage, be for, $x) -> (User login Cribbage boards, have been used for, hundreds) -> hundreds (1391ms) What is cribbage? keeping score -0.111111111112 What is cribbage? -> $x: (cribbage, be for, $x) -> (The cribbage board, is simply a device for, keeping score) -> keeping score (1330ms) What is cribbage? two players -0.111111111112 What is cribbage? -> $x: (cribbage, be for, $x) -> (Six Card Cribbage, is basically a game for, two players) -> two players (1391ms) What is cribbage? scoring -0.111111111112 What is cribbage? -> $x: (cribbage, be for, $x) -> (A cribbage board, is useful for, scoring) -> scoring (1391ms) What is cribbage? two to four players -0.111111111112 What is cribbage? -> $x: (cribbage, be for, $x) -> (Cribbage Games Cribbage, is a card game for, two to four players) -> two to four players (1516ms) What is cribbage? the first time -0.111111111112 What is cribbage? -> $x: (cribbage, be for, $x) -> (unique cribbage board, is being offered for, the first time) -> the first time (1330ms) What is cribbage? the gamer -0.111111111112 What is cribbage? -> $x: (cribbage, be for, $x) -> (Cribbage Boards, are perfect for, the gamer) -> the gamer (1391ms) What is cribbage? sale -0.111111111112 What is cribbage? -> $x: (cribbage, be for, $x) -> (All Cribbage boards, are for, sale) -> sale (1365ms) What is cribbage? five years -0.111111111112 What is cribbage? -> $x: (cribbage, be for, $x) -> (cribbage boards, has been open seven days a week for, five years) -> five years (1365ms) What is cribbage? adults and children -0.111111111112 What is cribbage? -> $x: (cribbage, be for, $x) -> (Cribbage, is good for, adults and children) -> adults and children (1162ms) What is cribbage? the pre-iPhone era -0.111111111112 What is cribbage? -> $x: (cribbage, be for, $x) -> (admin Cribbage, was the perfect game for, the pre-iPhone era) -> the pre-iPhone era (1162ms) What is cribbage? the older set -0.111111111112 What is cribbage? -> $x: (cribbage, be for, $x) -> (cribbage, can be fun for, the older set) -> the older set (1391ms) What is cribbage? Mac OS X and Windows -0.111111111112 What is cribbage? -> $x: (cribbage, be for, $x) -> (Battlefield Cribbage, is available for, Mac OS X and Windows) -> Mac OS X and Windows (1162ms) What is cribbage? a study -0.111111111112 What is cribbage? -> $x: ($x, do, cribbage) -> (a study, had been done regarding, cribbage hands) -> a study (1517ms) What is cribbage? 400 years -0.111111111112 What is cribbage? -> $x: (cribbage, be for, $x) -> (Cribbage, has been played for over, 400 years) -> 400 years (1365ms) What is cribbage? 10 years -0.111111111112 What is cribbage? -> $x: (cribbage, be for, $x) -> (the biggest cribbage sites, has been around for over, 10 years) -> 10 years (1391ms) What is cribbage? USA -0.111111111112 What is cribbage? -> $x: ($x, produce, cribbage) -> (USA, produce, high quality inlaid cribbage boards) -> USA (1330ms) What is cribbage? pagat.com -0.222222222222 What is cribbage? -> $x: ($x, found, cribbage) -> (pagat.com, can be found on, the Cribbage Variations page) -> pagat.com (1516ms) What is cribbage? Green Bay Press Gazette Helped -0.222222222222 What is cribbage? -> $x: ($x, found, cribbage) -> (Green Bay Press Gazette Helped, found, MGM Cribbage Tournament) -> Green Bay Press Gazette Helped (1516ms) What is cribbage? the '29' -0.222222222222 What is cribbage? -> $x: ($x, refer, cribbage) -> (the '29', refers to, the perfect cribbage hand) -> the '29' (1516ms) What is cribbage? Double Cribbage -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (Double Cribbage, is, four player cribbage) -> Double Cribbage (1780ms) What is cribbage? two men -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (two men, were playing at, cribbage) -> two men (1782ms) What is cribbage? learning -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (learning, is, our cribbage books) -> learning (1782ms) What is cribbage? two -0.222222222223 What is cribbage? -> $x: ($x, can, cribbage) -> (two, can use, a normal cribbage board) -> two (1782ms) What is cribbage? the 15-ball -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (the 15-ball, is, a cribbage) -> the 15-ball (1776ms) What is cribbage? DeLynn -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (DeLynn, was hosting, his cribbage tournament) -> DeLynn (1779ms) What is cribbage? England -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (England, is the birthplace of, cribbage) -> England (1782ms) What is cribbage? the questioner -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (the questioner, is already playing, cribbage) -> the questioner (1777ms) What is cribbage? the Red Sox record -0.222222222223 What is cribbage? -> $x: ($x, be to, cribbage) -> (the Red Sox record, be attributed to, Pedroia?s cribbage games) -> the Red Sox record (1776ms) What is cribbage? Zach and Jonathan -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (Zach and Jonathan, were essentially, cribbage machines) -> Zach and Jonathan (1773ms) What is cribbage? The iPhone -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (The iPhone, is well served with, free cribbage games) -> The iPhone (1777ms) What is cribbage? Cribbage -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (Cribbage, is, a new cribbage game) -> Cribbage (1782ms) What is cribbage? Amend Games -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (Amend Games, was introduced after, a cribbage game) -> Amend Games (1716ms) What is cribbage? no hard evidence -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (no hard evidence, was the inventor of, Cribbage) -> no hard evidence (1773ms) What is cribbage? shoeboxes -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (shoeboxes, here are, the cribbage boards) -> shoeboxes (1545ms) What is cribbage? Hal Mueller -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (Hal Mueller, is, a strong Cribbage program) -> Hal Mueller (1773ms) What is cribbage? the scores -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (the scores, are counted on, a cribbage board) -> the scores (1773ms) What is cribbage? InterStellar MacCribbage -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (InterStellar MacCribbage, is, a shareware Cribbage program) -> InterStellar MacCribbage (1747ms) What is cribbage? Every Saturday -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (Every Saturday, is, Cribbage) -> Every Saturday (1782ms) What is cribbage? country -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (country, was, cribbage player) -> country (1782ms) What is cribbage? Jennifer -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (Jennifer, was playing, cribbage) -> Jennifer (1747ms) What is cribbage? The Past Playing Cards -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (The Past Playing Cards, are included with, this Cribbage set) -> The Past Playing Cards (1579ms) What is cribbage? The Captain -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (The Captain, was playing, cribbage) -> The Captain (1782ms) What is cribbage? The Cribbage Tournament -0.222222222223 What is cribbage? -> $x: ($x, be to, cribbage) -> (The Cribbage Tournament, is open to, all area cribbage players) -> The Cribbage Tournament (1747ms) What is cribbage? Cribbage Corner -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (Cribbage Corner, is one of, the biggest cribbage sites) -> Cribbage Corner (1773ms) What is cribbage? The building -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (The building, is characterised by, cribbage walls) -> The building (1773ms) What is cribbage? new -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (new, is, Cribbage Vox) -> new (1773ms) What is cribbage? Morneau -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (Morneau, is a whiz at, cribbage and solitaire) -> Morneau (1579ms) What is cribbage? Parson?s poke -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (Parson?s poke, is, another cribbage term) -> Parson?s poke (1747ms) What is cribbage? the time -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (the time, was spent playing, cribbage) -> the time (1782ms) What is cribbage? the eBook version -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (the eBook version, is, Cribbage Reinvented) -> the eBook version (1780ms) What is cribbage? One game I?d -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (One game I?d, ever played was, cribbage) -> One game I?d (1779ms) What is cribbage? Sister Sue -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (Sister Sue, is at, her cribbage tournament) -> Sister Sue (1579ms) What is cribbage? The 15 ball -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (The 15 ball, is, a cribbage) -> The 15 ball (1779ms) What is cribbage? HALSCRIB -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (HALSCRIB, is certainly, THE killer cribbage program) -> HALSCRIB (1579ms) What is cribbage? The play -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (The play, is the same as, traditional cribbage) -> The play (1780ms) What is cribbage? The paperback version -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (The paperback version, is titled, Cribbage Simplified) -> The paperback version (1773ms) What is cribbage? Star Wars fame -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (Star Wars fame, may be playing a game of, cribbage) -> Star Wars fame (1780ms) What is cribbage? Over-pegging your score -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (Over-pegging your score, is another form of, cribbage cheating) -> Over-pegging your score (1544ms) What is cribbage? Damage -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (Damage, is recorded with, brass cribbage markers) -> Damage (1773ms) What is cribbage? the either reserve -0.222222222223 What is cribbage? -> $x: ($x, be to, cribbage) -> (the either reserve, may be played to, the Cribbage Square) -> the either reserve (1544ms) What is cribbage? captivates -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (captivates, be curbing, cribbage) -> captivates (1747ms) What is cribbage? August Cribbage -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (August Cribbage, is, the perfect cribbage hand) -> August Cribbage (1773ms) What is cribbage? The most popular activity -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (The most popular activity, was, cribbage) -> The most popular activity (1777ms) What is cribbage? The next game viewer -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (The next game viewer, will be for, cribbage) -> The next game viewer (1773ms) What is cribbage? a family -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (a family, is, Cribbage Death Match) -> a family (1716ms) What is cribbage? March 2001 -0.222222222223 What is cribbage? -> $x: ($x, be to, cribbage) -> (March 2001, has been applied to, original CRIBBAGE.EXE) -> March 2001 (1545ms) What is cribbage? The game -0.222222222223 What is cribbage? -> $x: ($x, can, cribbage) -> (The game, can then be scored on, a Cribbage board) -> The game (1747ms) What is cribbage? The ACC -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (The ACC, is the home of, great cribbage) -> The ACC (1780ms) What is cribbage? Scoring -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (Scoring, is virtually the same as, Cribbage) -> Scoring (1773ms) What is cribbage? free accessories -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (free accessories, are provided with, the cribbage board) -> free accessories (1782ms) What is cribbage? Royal Cribbage -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (Royal Cribbage, is, a freeware Cribbage program) -> Royal Cribbage (1780ms) What is cribbage? guests -0.222222222223 What is cribbage? -> $x: ($x, can, cribbage) -> (guests, can play, chess or cribbage) -> guests (1780ms) What is cribbage? the club rooms ?someone -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (the club rooms ?someone, was always at, the cribbage boards) -> the club rooms ?someone (1782ms) What is cribbage? a charter member -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (a charter member, has been playing, cribbage) -> a charter member (1747ms) What is cribbage? the game -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (the game, is to earn, 5 cribbages) -> the game (1777ms) What is cribbage? the Oxford English Dictionary -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (the Oxford English Dictionary, may be a reference to, cribbage) -> the Oxford English Dictionary (1776ms) What is cribbage? an elderly couple -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (an elderly couple, were playing, cribbage) -> an elderly couple (1782ms) What is cribbage? Each point -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (Each point, is called, a cribbage) -> Each point (1544ms) What is cribbage? Thursday -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (Thursday, was, table bowling and cribbage) -> Thursday (1544ms) What is cribbage? Subject property -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (Subject property, is located at, 3965 Cribbage Lane) -> Subject property (1776ms) What is cribbage? Bill@PlayCribbage .com Website -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (Bill@PlayCribbage .com Website, is, PlayCribbage) -> Bill@PlayCribbage .com Website (1780ms) What is cribbage? Forum -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (Forum, Is, cribbage dying) -> Forum (1780ms) What is cribbage? the 4th Earl -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (the 4th Earl, was busy playing a game of, cribbage) -> the 4th Earl (1782ms) What is cribbage? I?ll -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (I?ll, be up, all night playing cribbage) -> I?ll (1777ms) What is cribbage? User login -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (User login, is, Five Hundred Cribbage) -> User login (1776ms) What is cribbage? St . Mark -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (St . Mark, was also, a avid cribbage player) -> St . Mark (1776ms) What is cribbage? Carte Primus -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (Carte Primus, is, a cool cribbage game) -> Carte Primus (1780ms) What is cribbage? Adam -0.222222222223 What is cribbage? -> $x: ($x, be to, cribbage) -> (Adam, is dying to play, cribbage) -> Adam (1716ms) What is cribbage? Scores -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (Scores, are as, standard Cribbage) -> Scores (1782ms) What is cribbage? the restaurant area -0.222222222223 What is cribbage? -> $x: ($x, be be, cribbage) -> (the restaurant area, is also available to, our cribbage players) -> the restaurant area (1777ms) What is cribbage? Club director Tracy Yott -0.222222222223 What is cribbage? -> $x: ($x, be to, cribbage) -> (Club director Tracy Yott, was introduced to, cribbage) -> Club director Tracy Yott (1777ms) What is cribbage? Pocahontas -0.333333333333 What is cribbage? -> $x: ($x, develop, cribbage) -> (Pocahontas, develops a fondness for, English horses and cribbage) -> Pocahontas (1785ms) What is cribbage? Hayden Book Company, Inc. -0.333333333333 What is cribbage? -> $x: ($x, develop, cribbage) -> (Hayden Book Company, Inc., Games Developed, King Cribbage) -> Hayden Book Company, Inc. (1782ms) What is cribbage? diameter -0.444444444444 What is cribbage? -> $x: (cribbage, in in, $x) -> (This impressive cribbage board, is 15 inches in, diameter) -> diameter (1789ms) What is cribbage? the USA -0.444444444444 What is cribbage? -> $x: (cribbage, in in, $x) -> (All our cribbage boards, are handmade in, the USA) -> the USA (1791ms) What is cribbage? the early 17th Century -0.444444444444 What is cribbage? -> $x: (cribbage, in in, $x) -> (Cribbage, to have been invented in, the early 17th Century) -> the early 17th Century (1787ms) What is cribbage? Authorities Concept Scheme -0.444444444444 What is cribbage? -> $x: (cribbage, in in, $x) -> (Cribbage boards, In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (1789ms) What is cribbage? the pyramids -0.444444444444 What is cribbage? -> $x: (cribbage, in in, $x) -> (a modern cribbage board, has even been found in, the pyramids) -> the pyramids (1789ms) What is cribbage? the Pacific Northwest -0.444444444444 What is cribbage? -> $x: (cribbage, in in, $x) -> (the way cribbage, will be played in, the Pacific Northwest) -> the Pacific Northwest (1785ms) What is cribbage? Clojure -0.444444444444 What is cribbage? -> $x: (cribbage, in in, $x) -> (Cribbage points, counter in, Clojure) -> Clojure (1789ms) What is cribbage? full swing -0.444444444444 What is cribbage? -> $x: (cribbage, in in, $x) -> (The world championship cribbage tounament, is in, full swing) -> full swing (1789ms) What is cribbage? the nine-to-five crowd -0.444444444444 What is cribbage? -> $x: ($x, get, cribbage) -> (the nine-to-five crowd, gets points for having, Cribbage) -> the nine-to-five crowd (1791ms) What is cribbage? a private collection -0.444444444444 What is cribbage? -> $x: (cribbage, in in, $x) -> (this Cribbage Board, was in, a private collection) -> a private collection (1787ms) What is cribbage? the shape -0.444444444444 What is cribbage? -> $x: (cribbage, in in, $x) -> (This cribbage board, is in, the shape) -> the shape (1789ms) What is cribbage? two phases -0.444444444444 What is cribbage? -> $x: (cribbage, in in, $x) -> (Cribbage, is played in, two phases) -> two phases (1787ms) What is cribbage? two kinds of wood -0.444444444444 What is cribbage? -> $x: (cribbage, in in, $x) -> (The 29 cribbage board, has been inlaid in, two kinds of wood) -> two kinds of wood (1787ms) What is cribbage? the 1600 -0.444444444444 What is cribbage? -> $x: (cribbage, in in, $x) -> (Cribbage, were codified in, the 1600) -> the 1600 (1787ms) What is cribbage? the state -0.444444444444 What is cribbage? -> $x: (cribbage, in in, $x) -> (Cribbage, is illegal in, the state) -> the state (1787ms) What is cribbage? February 2000 -0.444444444444 What is cribbage? -> $x: (cribbage, in in, $x) -> (The Abbotsford Cribbage Club, was started in, February 2000) -> February 2000 (1791ms) What is cribbage? Oklahoma -0.444444444444 What is cribbage? -> $x: ($x, get, cribbage) -> (Oklahoma, got caught up on, our cribbage and Mancala) -> Oklahoma (1785ms) What is cribbage? 216,580 -0.444444444444 What is cribbage? -> $x: (cribbage, in in, $x) -> (this highest possible 29 Cribbage hand, are 1 in, 216,580) -> 216,580 (1791ms) What is cribbage? internet -0.444444444444 What is cribbage? -> $x: (cribbage, in in, $x) -> (cribbage tournaments, online in, internet) -> internet (1785ms) What is cribbage? two kinds -0.444444444444 What is cribbage? -> $x: (cribbage, in in, $x) -> (The Heart shape cribbage board, has been inlaid in, two kinds) -> two kinds (1791ms) What is cribbage? functional simplicity -0.444444444444 What is cribbage? -> $x: (cribbage, in in, $x) -> (A standard Cribbage board, is a lesson in, functional simplicity) -> functional simplicity (1785ms) What is cribbage? Maple -0.444444444444 What is cribbage? -> $x: (cribbage, in in, $x) -> (The Snake shape cribbage board, has been inlaid in, Maple) -> Maple (1785ms) What is cribbage? the pockets -0.444444444444 What is cribbage? -> $x: (cribbage, in in, $x) -> (legal cribbages, remain in, the pockets) -> the pockets (1785ms) What is cribbage? Rockville -0.444444444444 What is cribbage? -> $x: (cribbage, in in, $x) -> (The Germantown Peggers Cribbage Club, now meets in, Rockville) -> Rockville (1787ms) What is cribbage? Topical Terms Concept Scheme -0.444444444444 What is cribbage? -> $x: (cribbage, in in, $x) -> (Cribbage, In Scheme, Topical Terms Concept Scheme) -> Topical Terms Concept Scheme (1791ms) What is cribbage? the ASUPS office -0.444444444444 What is cribbage? -> $x: (cribbage, in in, $x) -> (Cribbage, matches in, the ASUPS office) -> the ASUPS office (1787ms) What is cribbage? price depending -0.444444444444 What is cribbage? -> $x: (cribbage, in in, $x) -> (Cribbage boards, vary greatly in, price depending) -> price depending (1787ms) What is cribbage? Creston -0.444444444444 What is cribbage? -> $x: (cribbage, in in, $x) -> (pinochle and cribbage, met wonderful friends in, Creston) -> Creston (1789ms) What is cribbage? the house -0.444444444444 What is cribbage? -> $x: ($x, get, cribbage) -> (the house, got out, the cribbage board) -> the house (1785ms) What is cribbage? Blood Wood / Maple -0.444444444444 What is cribbage? -> $x: (cribbage, in in, $x) -> (Continuous Cribbage Board / Box, inlaid in, Blood Wood / Maple) -> Blood Wood / Maple (1787ms) What is cribbage? 15,028 -0.444444444444 What is cribbage? -> $x: (cribbage, in in, $x) -> (a 28 Cribbage hand, are 1 in, 15,028) -> 15,028 (1787ms) What is cribbage? shape -0.444444444444 What is cribbage? -> $x: (cribbage, in in, $x) -> (Fame Products 3 Track natural wood cribbage, formed in, shape) -> shape (1789ms) What is cribbage? touch -0.444444444444 What is cribbage? -> $x: (cribbage, in in, $x) -> (Cribbage World, keeps members in, touch) -> touch (1787ms) What is cribbage? Cribbage World -0.444444444444 What is cribbage? -> $x: (cribbage, in in, $x) -> (His cribbage strategy articles, appeared in, Cribbage World) -> Cribbage World (1785ms) What is cribbage? popularity -0.444444444444 What is cribbage? -> $x: (cribbage, in in, $x) -> (Cribbage, continues to grow in, popularity) -> popularity (1789ms) What is cribbage? the BCA Official Rules and Records Book -0.444444444444 What is cribbage? -> $x: (cribbage, in in, $x) -> (Cribbage, are in, the BCA Official Rules and Records Book) -> the BCA Official Rules and Records Book (1789ms) What is cribbage? a box -0.444444444444 What is cribbage? -> $x: (cribbage, in in, $x) -> (The cribbage board, is stored away in, a box) -> a box (1787ms) What is cribbage? Knob and Heel Cribbage -0.666666666667 What is cribbage? -> $x: ($x, contain, cribbage) -> (Knob and Heel Cribbage, contains, traditional Cribbage rules) -> Knob and Heel Cribbage (1791ms) What is cribbage? Ebony -1.0 What is cribbage? -> $x: (cribbage, be have, $x) -> (The White Maple cribbage board, has been inlaid with, Ebony) -> Ebony (1793ms) What is cribbage? rosewood -1.0 What is cribbage? -> $x: (cribbage, be have, $x) -> (The maple cribbage board, has been inlaid with, rosewood) -> rosewood (1797ms) What is cribbage? White Maple -1.0 What is cribbage? -> $x: (cribbage, be have, $x) -> (The Rosewood cribbage board, has been inlaid with, White Maple) -> White Maple (1797ms) What is cribbage? the ACC -1.0 What is cribbage? -> $x: (cribbage, be have, $x) -> (cribbage, has been a member of, the ACC) -> the ACC (1791ms) What is cribbage? Keith Masters -1.0 What is cribbage? -> $x: (cribbage, be have, $x) -> (Cribbage Championships, has been organised by, Keith Masters) -> Keith Masters (1794ms) What is cribbage? craftsmen -1.0 What is cribbage? -> $x: (cribbage, be have, $x) -> (Cribbage Supply, has been employing hundreds of, craftsmen) -> craftsmen (1795ms) What is cribbage? the six-card game -1.0 What is cribbage? -> $x: (cribbage, be have, $x) -> (Cribbage, has been superceded by, the six-card game) -> the six-card game (1796ms) What is cribbage? the Cadillac -1.0 What is cribbage? -> $x: (cribbage, be have, $x) -> (Our cribbage boards, have been described as, the Cadillac) -> the Cadillac (1795ms) What is cribbage? Brass -1.0 What is cribbage? -> $x: (cribbage, be have, $x) -> (The Rosewood cribbage board, has been inlaid with, Brass) -> Brass (1797ms) What is cribbage? Canadian Military people -1.0 What is cribbage? -> $x: (cribbage, be have, $x) -> (Cribbage, has been played by, Canadian Military people) -> Canadian Military people (1797ms) What is cribbage? Rosewood -1.0 What is cribbage? -> $x: (cribbage, be have, $x) -> (The White Maple cribbage board, has been inlaid with, Rosewood) -> Rosewood (1796ms) What is cribbage? comparison list -1.0 What is cribbage? -> $x: (cribbage, be have, $x) -> (The product Cribbage Board, has been added to, comparison list) -> comparison list (1793ms) What is cribbage? a sign -1.0 What is cribbage? -> $x: (cribbage, be have, $x) -> (Cribbage whiz Harold Butts, may have been tacking up, a sign) -> a sign (1796ms) What is cribbage? the table -1.0 What is cribbage? -> $x: (cribbage, be have, $x) -> (The cribbage board, had been long ago formed on, the table) -> the table (1796ms) In what year was the Guinness Brewery founded? Arthur Guinness -0.666666666666 In what year was the Guinness Brewery founded? -> $x: ($x, establish, guinness brewery) -> (Arthur Guinness, established, the Guinness brewery) -> Arthur Guinness (635ms) Who founded the House of Chanel? Chanel | 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (Chanel |, Find the Latest News on, Chanel) -> Chanel | (1054ms) Who founded the House of Chanel? 500 bodies 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, coco) -> (500 bodies, were found in, the Coco River) -> 500 bodies (1093ms) Who founded the House of Chanel? The expedition team 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, coco) -> (The expedition team, found, Cocos National Park) -> The expedition team (1039ms) Who founded the House of Chanel? Juanita 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, coco) -> (Juanita, found, Coco dead) -> Juanita (1093ms) Who founded the House of Chanel? a specialized production rule 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (a specialized production rule, is found in, all Chanel baggage) -> a specialized production rule (1399ms) Who founded the House of Chanel? battle of cocos 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, coco) -> (battle of cocos, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Battle%20of%20Cocos) -> battle of cocos (1039ms) Who founded the House of Chanel? The rosy lipped batfish 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, coco) -> (The rosy lipped batfish, can be found near, Cocos Island) -> The rosy lipped batfish (1399ms) Who founded the House of Chanel? Marc Jacobs Perfume 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (Marc Jacobs Perfume, find wide range of, Chanel Perfume online) -> Marc Jacobs Perfume (1333ms) Who founded the House of Chanel? Polo Ralph Lauren Polo Ralph Lauren 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (Polo Ralph Lauren Polo Ralph Lauren, find, Coco Chanel) -> Polo Ralph Lauren Polo Ralph Lauren (1399ms) Who founded the House of Chanel? caffeine 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, coco) -> (caffeine, is found in, tea , coffee , coco and , yes , chocolate) -> caffeine (1054ms) Who founded the House of Chanel? turkey Amazing 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (turkey Amazing, find, ( History Chanel docum) -> turkey Amazing (1333ms) Who founded the House of Chanel? order 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, coco) -> (order, find, the CoCo cat) -> order (1298ms) Who founded the House of Chanel? Christian Louboutin shoes 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, coco) -> (Christian Louboutin shoes, may be found at, Playas del Coco) -> Christian Louboutin shoes (1298ms) Who founded the House of Chanel? line 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (line, will find, the replica chanel handbags) -> line (1363ms) Who founded the House of Chanel? Coco Fusco 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, coco) -> (Coco Fusco, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Coco%20Fusco) -> Coco Fusco (993ms) Who founded the House of Chanel? boots 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (boots, try to find, the particular traditional Chanel emblem) -> boots (1298ms) Who founded the House of Chanel? the big fashion names 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (the big fashion names, can be found like, Chanel) -> the big fashion names (1399ms) Who founded the House of Chanel? Answer all 4 questions 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, coco) -> (Answer all 4 questions, find, CoCo cat) -> Answer all 4 questions (1399ms) Who founded the House of Chanel? A case 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (A case, can find, Chanel authenticity stamp) -> A case (1399ms) Who founded the House of Chanel? the bitch 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (the bitch, found, the brand new chanel pea-coat) -> the bitch (932ms) Who founded the House of Chanel? a home 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, coco) -> (a home, was found for, Cookie and Coco) -> a home (1399ms) Who founded the House of Chanel? Duckett 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (Duckett, searches extensively to find, the best Chanel pieces) -> Duckett (1402ms) Who founded the House of Chanel? Any e-commerce place 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (Any e-commerce place, is found with, replica chanel handbags) -> Any e-commerce place (931ms) Who founded the House of Chanel? Coco Rocha 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, coco) -> (Coco Rocha, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Coco%20Rocha) -> Coco Rocha (1039ms) Who founded the House of Chanel? coco laboy 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, coco) -> (coco laboy, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Coco%20Laboy) -> coco laboy (1402ms) Who founded the House of Chanel? the boys 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, coco) -> (the boys, were so very upset to find, that CoCo) -> the boys (1363ms) Who founded the House of Chanel? Imitation Rolex 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (Imitation Rolex, Find, all the latest designed Chanel Knock) -> Imitation Rolex (1333ms) Who founded the House of Chanel? 2012 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (2012, Find the best product for, Chanel Women?s) -> 2012 (1399ms) Who founded the House of Chanel? The reissue bags 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (The reissue bags, can be found in, chanel) -> The reissue bags (1093ms) Who founded the House of Chanel? a pair 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (a pair, found a great pair at, the Chanel) -> a pair (1333ms) Who founded the House of Chanel? Deputy State Coroner Carmel Forbes 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (Deputy State Coroner Carmel Forbes, found, Chanel) -> Deputy State Coroner Carmel Forbes (1054ms) Who founded the House of Chanel? chris mellor 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, coco) -> (chris mellor, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Chris%20Coco) -> chris mellor (1399ms) Who founded the House of Chanel? Cook 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, coco) -> (Cook, found, his pet Coco) -> Cook (993ms) Who founded the House of Chanel? Parks Australia 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, coco) -> (Parks Australia, has found, the Cocos Keeling reef) -> Parks Australia (1039ms) Who founded the House of Chanel? I?d 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, coco) -> (I?d, arrive to find, Coco) -> I?d (1039ms) Who founded the House of Chanel? can 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (can, find, a REAL chanel bag) -> can (1298ms) Who founded the House of Chanel? a window 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, coco) -> (a window, found, Coco , wet and shivering) -> a window (1399ms) Who founded the House of Chanel? Coco Martin 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, coco) -> (Coco Martin, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Coco%20Martin) -> Coco Martin (1093ms) Who founded the House of Chanel? Ice Loves Coco 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, coco) -> (Ice Loves Coco, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Ice%20Loves%20Coco) -> Ice Loves Coco (1363ms) Who founded the House of Chanel? several hundred birds 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, coco) -> (several hundred birds, can still be found on, Cocos Island) -> several hundred birds (1363ms) Who founded the House of Chanel? Englishduckgrl 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (Englishduckgrl, is the best place to find, chanel sunglasses) -> Englishduckgrl (1399ms) Who founded the House of Chanel? America 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, coco) -> (America, only found, coco palms) -> America (1054ms) Who founded the House of Chanel? tinning i 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (tinning i, find, inexpensive real chanel jewellery) -> tinning i (1399ms) Who founded the House of Chanel? the website 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (the website, are really found in, the Chanel factory) -> the website (1399ms) Who founded the House of Chanel? the color symbols 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (the color symbols, is found in, Chanel Noirs Obscurs Collection) -> the color symbols (932ms) Who founded the House of Chanel? harder 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (harder, you?ll find perhaps, the Chanel legend) -> harder (1298ms) Who founded the House of Chanel? The CC logo 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (The CC logo, is found, onChanel designer handbags) -> The CC logo (1402ms) Who founded the House of Chanel? tools 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, coco) -> (tools, found, CocoBase Enterprise O/R) -> tools (1333ms) Who founded the House of Chanel? 15th 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, coco) -> (15th, Find, LuLu , CoCo and JoJo) -> 15th (1333ms) Who founded the House of Chanel? The goal 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (The goal, is to find, a pre-owned black Chanel 2.55 flap bag) -> The goal (1363ms) Who founded the House of Chanel? Coc? Park 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, coco) -> (Coc? Park, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Coco%20Park) -> Coc? Park (1298ms) Who founded the House of Chanel? dress 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (dress, Find the largest selection of, chanel dress) -> dress (1093ms) Who founded the House of Chanel? The bittern 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, coco) -> (The bittern, is also found on, Cocos) -> The bittern (1054ms) Who founded the House of Chanel? pasqual coco 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, coco) -> (pasqual coco, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Pasqual%20Coco) -> pasqual coco (1363ms) Who founded the House of Chanel? shader programs 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, coco) -> (shader programs, can be found in, libs\cocos2D\CCGLProgram .h) -> shader programs (1298ms) Who founded the House of Chanel? No results 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (No results, found, Buy Chanel handbags) -> No results (932ms) Who founded the House of Chanel? I Blame Coco 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, coco) -> (I Blame Coco, can be found on Wikipedia at, http://en.wikipedia.org/wiki/I%20Blame%20Coco) -> I Blame Coco (1039ms) Who founded the House of Chanel? Helene Chanel 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (Helene Chanel, can be found on Wikipedia at, http://en.wikipedia.org/wiki/H%C3%A9l%C3%A8ne%20Chanel) -> Helene Chanel (1402ms) Who founded the House of Chanel? Warren 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (Warren, found a niche with, Chanel) -> Warren (993ms) Who founded the House of Chanel? Diamonds 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (Diamonds, are very common to find in, a Chanel ceramic watch) -> Diamonds (992ms) Who founded the House of Chanel? Search local stores 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (Search local stores, to find, the lowest price on Chanel) -> Search local stores (1402ms) Who founded the House of Chanel? ten women 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (ten women, are found carrying, Chanel Outlet) -> ten women (1399ms) Who founded the House of Chanel? An autopsy 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (An autopsy, found, Chanel) -> An autopsy (1399ms) Who founded the House of Chanel? Salvatore Coco 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, coco) -> (Salvatore Coco, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Salvatore%20Coco) -> Salvatore Coco (1093ms) Who founded the House of Chanel? Ettore Coco 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, coco) -> (Ettore Coco, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Ettore%20Coco) -> Ettore Coco (1363ms) Who founded the House of Chanel? You?ll 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (You?ll, also find, vintage Chanel , Gucci , and Balenciaga) -> You?ll (1402ms) Who founded the House of Chanel? Fontaine 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (Fontaine, found, Chanel) -> Fontaine (1363ms) Who founded the House of Chanel? Chanel Iman 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (Chanel Iman, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Chanel%20Iman) -> Chanel Iman (931ms) Who founded the House of Chanel? mustaches 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, coco) -> (mustaches, Find out more at, CocoRosie Land) -> mustaches (1363ms) Who founded the House of Chanel? Chanel St. James 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (Chanel St. James, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Chanel%20St%2E%20James) -> Chanel St. James (993ms) Who founded the House of Chanel? Beatrice 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (Beatrice, found, some Chanel swimsuit) -> Beatrice (1333ms) Who founded the House of Chanel? the celebrities 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (the celebrities, found, rocking Chanel) -> the celebrities (1363ms) Who founded the House of Chanel? second there?s 55 container 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (second there?s 55 container, can be found only during, Chanel?s) -> second there?s 55 container (1054ms) Who founded the House of Chanel? Attached 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (Attached, please find, our cowgrain Chanel wallet) -> Attached (1093ms) Who founded the House of Chanel? marine species 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, coco) -> (marine species, found near, Cocos Island) -> marine species (1039ms) Who founded the House of Chanel? investment pieces 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, chanel) -> (investment pieces, can find, a couture Chanel suit) -> investment pieces (1054ms) Who founded the House of Chanel? two animals 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, coco) -> (two animals, are found on, Costa Rica?s Isla del Coco) -> two animals (932ms) Who founded the House of Chanel? Three endemic species 0.22222222221799992 Who founded the House of Chanel? -> $x: ($x, found, coco) -> (Three endemic species, are found on, Coco Island) -> Three endemic species (1399ms) Who founded the House of Chanel? 10 round diamonds 0.111111111111 Who founded the House of Chanel? -> $x: ($x, be house in, chanel) -> (10 round diamonds, are housed in, chanel setting) -> 10 round diamonds (1402ms) Who founded the House of Chanel? Coco Chanel 0.111111111109 Who founded the House of Chanel? -> $x: ($x, house, chanel) -> (Coco Chanel, first established the house of, Chanel) -> Coco Chanel (1402ms) Who founded the House of Chanel? The submarine 0.111111111109 Who founded the House of Chanel? -> $x: ($x, house, coco) -> (The submarine, is housed on, the MV Argo Cocos liveaboard) -> The submarine (1402ms) Who founded the House of Chanel? Vall?e de Mai 0.111111111109 Who founded the House of Chanel? -> $x: ($x, house, coco) -> (Vall?e de Mai, houses, the endemic Coco de Mer palms) -> Vall?e de Mai (1402ms) Who founded the House of Chanel? The building 0.111111111109 Who founded the House of Chanel? -> $x: ($x, house, chanel) -> (The building, houses, the Chanel store) -> The building (1402ms) Who founded the House of Chanel? herself?and 0.111111111109 Who founded the House of Chanel? -> $x: ($x, house, chanel) -> (herself?and, has become the iconic House of, Chanel) -> herself?and (1402ms) Who founded the House of Chanel? the first two floors 0.111111111109 Who founded the House of Chanel? -> $x: ($x, house, chanel) -> (the first two floors, will house, a Chanel boutiuque) -> the first two floors (1402ms) Who founded the House of Chanel? Jacques Wetheimer 0.111111111109 Who founded the House of Chanel? -> $x: ($x, house, chanel) -> (Jacques Wetheimer, bought the entire House of, Chanel) -> Jacques Wetheimer (1404ms) Who founded the House of Chanel? Jacques Wertheimer 0.111111111109 Who founded the House of Chanel? -> $x: ($x, house, chanel) -> (Jacques Wertheimer, bought the entire House of, Chanel) -> Jacques Wertheimer (1402ms) Who founded the House of Chanel? Karl Lagerfeld 0.111111111109 Who founded the House of Chanel? -> $x: ($x, house, chanel) -> (Karl Lagerfeld, took over the House of, Chanel) -> Karl Lagerfeld (1402ms) Who founded the House of Chanel? A giant Bratz doll -0.333333333333 Who founded the House of Chanel? -> $x: ($x, look like, chanel) -> (A giant Bratz doll, made to look like, Chanel) -> A giant Bratz doll (1404ms) Who founded the House of Chanel? bronzers -0.333333333333 Who founded the House of Chanel? -> $x: ($x, look like, coco) -> (bronzers, would end up looking like, Coco) -> bronzers (1404ms) Who founded the House of Chanel? a fabulous Swatch -0.333333333333 Who founded the House of Chanel? -> $x: ($x, look like, chanel) -> (a fabulous Swatch, looks exactly like, the Chanel J12) -> a fabulous Swatch (1404ms) Who founded the House of Chanel? 01:08 PM -0.333333333333 Who founded the House of Chanel? -> $x: ($x, look like, coco) -> (01:08 PM, Looks like, a bad load from coco) -> 01:08 PM (1406ms) Who founded the House of Chanel? March 23 , 1999 -0.333333333333 Who founded the House of Chanel? -> $x: ($x, look like, coco) -> (March 23 , 1999, Looks like, Lassie and CoCo) -> March 23 , 1999 (1406ms) Who founded the House of Chanel? the setting -0.333333333333 Who founded the House of Chanel? -> $x: ($x, look like, chanel) -> (the setting, looked exactly like, Chanel) -> the setting (1406ms) Who founded the House of Chanel? the beige -0.333333333333 Who founded the House of Chanel? -> $x: ($x, look like, chanel) -> (the beige, looks very much like, the Chanel and Delman flats) -> the beige (1404ms) Who founded the House of Chanel? the clowns -0.333333333333 Who founded the House of Chanel? -> $x: ($x, look like, coco) -> (the clowns, look less like, Coco and more) -> the clowns (1404ms) Who founded the House of Chanel? Bill Maher -0.333333333333 Who founded the House of Chanel? -> $x: ($x, look like, coco) -> (Bill Maher, looks like, " Playboy Cyber Girl Coco Johnson) -> Bill Maher (1406ms) Who founded the House of Chanel? stockings?Miss Dirty Martini -0.333333333333 Who founded the House of Chanel? -> $x: ($x, look like, chanel) -> (stockings?Miss Dirty Martini, looks like, Coco Chanel) -> stockings?Miss Dirty Martini (1404ms) Who founded the House of Chanel? the black and white cat -0.333333333333 Who founded the House of Chanel? -> $x: ($x, look like, coco) -> (the black and white cat, looks like, Coco) -> the black and white cat (1404ms) Who founded the House of Chanel? patchwork tote purse -0.333333333333 Who founded the House of Chanel? -> $x: ($x, look like, chanel) -> (patchwork tote purse, looks like, chanel) -> patchwork tote purse (1404ms) Who founded the House of Chanel? Jordan -0.333333333333 Who founded the House of Chanel? -> $x: ($x, look like, chanel) -> (Jordan, look like, Coco Chanel) -> Jordan (1404ms) Who founded Wal-Mart? 10.00 and 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (10.00 and, can be found at, walmart) -> 10.00 and (2277ms) Who founded Wal-Mart? the counter diet pills 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (the counter diet pills, found at, walmart) -> the counter diet pills (1671ms) Who founded Wal-Mart? brazil nuts 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (brazil nuts, finally found some at, Walmart) -> brazil nuts (1350ms) Who founded Wal-Mart? the following figures 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (the following figures, have been found in, Walmart) -> the following figures (2277ms) Who founded Wal-Mart? a product 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (a product, found at, Walmart) -> a product (1671ms) Who founded Wal-Mart? Shoppers 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (Shoppers, can find more information about, Walmart) -> Shoppers (1350ms) Who founded Wal-Mart? a few vendors 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (a few vendors, can be found at, Walmart) -> a few vendors (1638ms) Who founded Wal-Mart? an inexpensive green plastic hook 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (an inexpensive green plastic hook, found at, Walmart) -> an inexpensive green plastic hook (2421ms) Who founded Wal-Mart? buisness 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (buisness, find the heart of, Walmart) -> buisness (1572ms) Who founded Wal-Mart? the 4.00 plans 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (the 4.00 plans, found at, Walmart) -> the 4.00 plans (1847ms) Who founded Wal-Mart? the biotech giant 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (the biotech giant, just might find true love with, Walmart) -> the biotech giant (1572ms) Who founded Wal-Mart? a long lost military friend 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (a long lost military friend, found in, Walmart) -> a long lost military friend (1776ms) Who founded Wal-Mart? top 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (top, was found at, walmart) -> top (2277ms) Who founded Wal-Mart? the deals 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (the deals, will be found at, Walmart) -> the deals (1422ms) Who founded Wal-Mart? Pharmacists 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (Pharmacists, can be found at, Walmart) -> Pharmacists (1639ms) Who founded Wal-Mart? no phone number 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (no phone number, can be found anywhere on, Walmart) -> no phone number (1638ms) Who founded Wal-Mart? Hopefully i 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (Hopefully i, will find some this year in, walmart) -> Hopefully i (1422ms) Who founded Wal-Mart? old mix boxes 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (old mix boxes, found behind, Walmart) -> old mix boxes (1572ms) Who founded Wal-Mart? the various people and cars 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (the various people and cars, found at, Walmart) -> the various people and cars (1776ms) Who founded Wal-Mart? Air Popped Popcorn 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (Air Popped Popcorn, Can be found in, Walmart) -> Air Popped Popcorn (2366ms) Who founded Wal-Mart? the ingredients 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (the ingredients, can be found at, Walmart) -> the ingredients (1671ms) Who founded Wal-Mart? a adorable little tortie kitty 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (a adorable little tortie kitty, was found at, Walmart) -> a adorable little tortie kitty (1847ms) Who founded Wal-Mart? a free , safe and easy place 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (a free , safe and easy place, find, a Walmart) -> a free , safe and easy place (1350ms) Who founded Wal-Mart? McQueen 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (McQueen, was first found at, Walmart) -> McQueen (1847ms) Who founded Wal-Mart? can Hydroxycut 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (can Hydroxycut, still be found at, Walmart) -> can Hydroxycut (1350ms) Who founded Wal-Mart? No solid red footie jammies 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (No solid red footie jammies, were to be found at, Walmart) -> No solid red footie jammies (1572ms) Who founded Wal-Mart? a disco ball 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (a disco ball, find these cheap at, Walmart) -> a disco ball (1775ms) Who founded Wal-Mart? the evil soldiers 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (the evil soldiers, can be found at, Walmart) -> the evil soldiers (2277ms) Who founded Wal-Mart? the new Star Wars posters 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (the new Star Wars posters, found at, Walmart) -> the new Star Wars posters (1847ms) Who founded Wal-Mart? any popular product 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (any popular product, can be found on, Walmart) -> any popular product (2366ms) Who founded Wal-Mart? Crest White strips 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (Crest White strips, can be found at, Walmart) -> Crest White strips (2366ms) Who founded Wal-Mart? SPAM spread 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (SPAM spread, could be found at, Walmart) -> SPAM spread (1671ms) Who founded Wal-Mart? Use liners 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (Use liners, found at, Walmart) -> Use liners (1638ms) Who founded Wal-Mart? the products 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (the products, found in, Walmart) -> the products (1671ms) Who founded Wal-Mart? cherry company customers 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (cherry company customers, find, loveseat walmart) -> cherry company customers (1422ms) Who founded Wal-Mart? belly-up 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (belly-up, ,just find a job at, walmart) -> belly-up (1422ms) Who founded Wal-Mart? Next Style creative products 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (Next Style creative products, can be found at, Walmart) -> Next Style creative products (1847ms) Who founded Wal-Mart? Gift Card* Shoppers 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (Gift Card* Shoppers, can find more information about, Walmart) -> Gift Card* Shoppers (1639ms) Who founded Wal-Mart? a Quebec arbitrator 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (a Quebec arbitrator, found, Walmart guilty) -> a Quebec arbitrator (2277ms) Who founded Wal-Mart? I?ve 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (I?ve, found dye-free versions at, Walmart) -> I?ve (1422ms) Who founded Wal-Mart? Easter candies 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (Easter candies, found at, Walmart) -> Easter candies (1671ms) Who founded Wal-Mart? LEGO wrapping paper 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (LEGO wrapping paper, found at, Walmart) -> LEGO wrapping paper (1847ms) Who founded Wal-Mart? The actual ZONE bars 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (The actual ZONE bars, found at, Walmart) -> The actual ZONE bars (1671ms) Who founded Wal-Mart? candy 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (candy, can be found at, Walmart) -> candy (1638ms) Who founded Wal-Mart? Can't 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (Can't, find this value at, walmart) -> Can't (2366ms) Who founded Wal-Mart? Money saving tips and recipes 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (Money saving tips and recipes, can be found on, Walmart) -> Money saving tips and recipes (1422ms) Who founded Wal-Mart? the kind 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (the kind, found at, Walmart) -> the kind (1776ms) Who founded Wal-Mart? February 14 , 2012 , 03 :19:42 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (February 14 , 2012 , 03 :19:42, found at, Walmart) -> February 14 , 2012 , 03 :19:42 (1847ms) Who founded Wal-Mart? Pedigree 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (Pedigree, found at, Walmart) -> Pedigree (2277ms) Who founded Wal-Mart? the hotel 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (the hotel, find, a Walmart) -> the hotel (1639ms) Who founded Wal-Mart? Fabulous results 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (Fabulous results, found this at, walmart) -> Fabulous results (1351ms) Who founded Wal-Mart? No bomb 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (No bomb, found at, Walmart) -> No bomb (1775ms) Who founded Wal-Mart? just a average diaper bag 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (just a average diaper bag, can be found at, Walmart) -> just a average diaper bag (1776ms) Who founded Wal-Mart? the Raw 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (the Raw, found in, Walmart) -> the Raw (1422ms) Who founded Wal-Mart? the typical customers 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (the typical customers, found in, walmart) -> the typical customers (1775ms) Who founded Wal-Mart? transfer paper 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (transfer paper, can be found at, Walmart) -> transfer paper (2277ms) Who founded Wal-Mart? Cosco Scenera Convertible Car Seat 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (Cosco Scenera Convertible Car Seat, Find Top Deals At, Walmart) -> Cosco Scenera Convertible Car Seat (1671ms) Who founded Wal-Mart? Rimmel 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (Rimmel, can be found at, Walmart) -> Rimmel (1572ms) Who founded Wal-Mart? several insecticides 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (several insecticides, found at, Walmart) -> several insecticides (1422ms) Who founded Wal-Mart? You?ll 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (You?ll, find, Walmart) -> You?ll (1572ms) Who founded Wal-Mart? Mister fans 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (Mister fans, can be found at, Walmart) -> Mister fans (1847ms) Who founded Wal-Mart? the cheapest replacements 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (the cheapest replacements, can be found at, Walmart) -> the cheapest replacements (2366ms) Who founded Wal-Mart? one i 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (one i, found at, walmart) -> one i (1573ms) Who founded Wal-Mart? the Berry Event 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (the Berry Event, find some great deals at, Walmart) -> the Berry Event (1638ms) Who founded Wal-Mart? shown 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (shown, be found at, walmart) -> shown (2277ms) Who founded Wal-Mart? Ovation 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (Ovation, found mostly at, Walmarts) -> Ovation (1350ms) Who founded Wal-Mart? Two economists 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (Two economists, find, that Walmart) -> Two economists (2366ms) Who founded Wal-Mart? chance 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (chance, found the second at, Walmart) -> chance (1350ms) Who founded Wal-Mart? the cheap light weight chairs 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (the cheap light weight chairs, found at, Walmarts) -> the cheap light weight chairs (1350ms) Who founded Wal-Mart? gloves 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (gloves, found at, Walmart) -> gloves (2421ms) Who founded Wal-Mart? enhancement drink ? 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (enhancement drink ?, Can be found at, Walmart) -> enhancement drink ? (2366ms) Who founded Wal-Mart? The gloves 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (The gloves, were a great find at, Walmart) -> The gloves (2421ms) Who founded Wal-Mart? The new Knorr Homestyle Stock 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (The new Knorr Homestyle Stock, can be found at, Walmart) -> The new Knorr Homestyle Stock (2366ms) Who founded Wal-Mart? Drawer dividers 0.6666666666609999 Who founded Wal-Mart? -> $x: ($x, find, walmart) -> (Drawer dividers, can be easily found at, Walmart) -> Drawer dividers (1572ms) Who founded Wal-Mart? allowable levels 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, found in, walmart) -> (allowable levels, was found in, Walmart products) -> allowable levels (2626ms) Who founded Wal-Mart? Star Wars items 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, found in, walmart) -> (Star Wars items, recently found in, the Wal-Mart data base) -> Star Wars items (2626ms) Who founded Wal-Mart? the jury 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, found in, walmart) -> (the jury, found in, favor of Wal-Mart) -> the jury (2626ms) Who founded Wal-Mart? compressed wood 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, found in, walmart) -> (compressed wood, found in, Walmart and Target furntiure) -> compressed wood (2626ms) Who founded Wal-Mart? Police 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, found in, walmart) -> (Police, found the 3-year-old in, a Wal-Mart parking lot) -> Police (2469ms) Who founded Wal-Mart? one such brand 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, be found in, walmart) -> (one such brand, can be found in, Wal-Mart and Reliance) -> one such brand (2611ms) Who founded Wal-Mart? The car 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, found in, walmart) -> (The car, was found abandoned in, a Walmart parking lot) -> The car (2611ms) Who founded Wal-Mart? Jones 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, be found in, walmart) -> (Jones, had been found in, the Walmart parking lot) -> Jones (2469ms) Who founded Wal-Mart? vehicle 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, found in, walmart) -> (vehicle, was found in, a Walmart parking lot) -> vehicle (2625ms) Who founded Wal-Mart? a Nazi symbol 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, found in, walmart) -> (a Nazi symbol, found in, a Wal-Mart store) -> a Nazi symbol (2640ms) Who founded Wal-Mart? Equate 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, found in, walmart) -> (Equate, found in, Wal-Mart) -> Equate (2597ms) Who founded Wal-Mart? a fundraising device 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, found in, walmart) -> (a fundraising device, found in, Wal-Marts and McDonalds) -> a fundraising device (2596ms) Who founded Wal-Mart? Top left 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, found in, walmart) -> (Top left, was found only in, Wal-Mart) -> Top left (2640ms) Who founded Wal-Mart? Targ?t 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, be found in, walmart) -> (Targ?t, ever would be found in, Wal-Mart) -> Targ?t (2469ms) Who founded Wal-Mart? the teal colored bag ? 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, be found in, walmart) -> (the teal colored bag ?, can be found in, Wegman?s and Wal-Mart) -> the teal colored bag ? (2611ms) Who founded Wal-Mart? much that 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, be found in, walmart) -> (much that, is found in, Wal-mart) -> much that (2654ms) Who founded Wal-Mart? an elderly lady 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, found in, walmart) -> (an elderly lady, find her car in, a Walmart parking lot) -> an elderly lady (2640ms) Who founded Wal-Mart? a famous store brand 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, be found in, walmart) -> (a famous store brand, can be found in, all Wal-Mart stores) -> a famous store brand (2626ms) Who founded Wal-Mart? more than $ 200 million 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, found in, walmart) -> (more than $ 200 million, is found in, many Wal-Mart) -> more than $ 200 million (2611ms) Who founded Wal-Mart? Jason products 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, found in, walmart) -> (Jason products, are found in, Wal-Mart) -> Jason products (2640ms) Who founded Wal-Mart? The Spring line 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, be found in, walmart) -> (The Spring line, can be found in, Walmart stores) -> The Spring line (2626ms) Who founded Wal-Mart? travel kits and accessories 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, found in, walmart) -> (travel kits and accessories, can be found in, Wal-Mart) -> travel kits and accessories (2596ms) Who founded Wal-Mart? groceries and consumables 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, found in, walmart) -> (groceries and consumables, found in, a Walmart store) -> groceries and consumables (2421ms) Who founded Wal-Mart? The Brinkmann Q Beam 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, found in, walmart) -> (The Brinkmann Q Beam, can be found in, most WalMarts) -> The Brinkmann Q Beam (2640ms) Who founded Wal-Mart? folks 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, found in, walmart) -> (folks, are still finding the shirts in, Wal-Mart stores) -> folks (2654ms) Who founded Wal-Mart? the New York Times 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, found in, walmart) -> (the New York Times, is still found in, many Wal-Marts) -> the New York Times (2625ms) Who founded Wal-Mart? general merchandise 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, found in, walmart) -> (general merchandise, found in, traditional Wal-Mart stores) -> general merchandise (2596ms) Who founded Wal-Mart? natural and organic foods sections 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, be found in, walmart) -> (natural and organic foods sections, are found in, Wal-Mart) -> natural and organic foods sections (2640ms) Who founded Wal-Mart? 11/20/2009 USU32361 Lost laptop 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, found in, walmart) -> (11/20/2009 USU32361 Lost laptop, found in, a Walmart parking lot) -> 11/20/2009 USU32361 Lost laptop (2611ms) Who founded Wal-Mart? the staples 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, found in, walmart) -> (the staples, found in, all Wal-mart sites) -> the staples (2625ms) Who founded Wal-Mart? the best ones 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, found in, walmart) -> (the best ones, are found in, Walmart bathrooms) -> the best ones (2640ms) Who founded Wal-Mart? Udi?s Gluten Free Foods 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, found in, walmart) -> (Udi?s Gluten Free Foods, can be found in, 150 Wal-Mart stores) -> Udi?s Gluten Free Foods (2611ms) Who founded Wal-Mart? the produce packaging 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, found in, walmart) -> (the produce packaging, found in, Wal-Mart stores) -> the produce packaging (2640ms) Who founded Wal-Mart? The following list 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, be found in, walmart) -> (The following list, was found in, Wal-Marts computers) -> The following list (2640ms) Who founded Wal-Mart? The study 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, found of, walmart) -> (The study, found the number of, Walmart stores) -> The study (2640ms) Who founded Wal-Mart? grocery items 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, be found in, walmart) -> (grocery items, are found in, regular Walmart stores) -> grocery items (2640ms) Who founded Wal-Mart? commonality 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, found in, walmart) -> (commonality, found in, Wal-Mart) -> commonality (2640ms) Who founded Wal-Mart? PREMARIN 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, found in, walmart) -> (PREMARIN, will find in, KMart or WalMart) -> PREMARIN (2611ms) Who founded Wal-Mart? Perdomo 's rental car 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, be found in, walmart) -> (Perdomo 's rental car, was found in, a Walmart parking lot) -> Perdomo 's rental car (2626ms) Who founded Wal-Mart? the Luanna brand 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, found in, walmart) -> (the Luanna brand, found in, Wal-Mart) -> the Luanna brand (2597ms) Who founded Wal-Mart? a woman 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, found in, walmart) -> (a woman, was found in, a Wal-Mart retention pond) -> a woman (2640ms) Who founded Wal-Mart? inspirational selections 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, found in, walmart) -> (inspirational selections, found in, Target or Wal-Mart) -> inspirational selections (2469ms) Who founded Wal-Mart? products 0.44444444444199993 Who founded Wal-Mart? -> $x: ($x, be found in, walmart) -> (products, cannot be found in, Wal-mart or Target) -> products (2640ms) Who founded Wal-Mart? Elaine 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (Elaine, found this item at, Wal-Mart) -> Elaine (2668ms) Who founded Wal-Mart? California-Berkeley study 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (California-Berkeley study, found, Wal-Mart?s wages) -> California-Berkeley study (2668ms) Who founded Wal-Mart? the USA 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (the USA, found, a Wal-Mart) -> the USA (2708ms) Who founded Wal-Mart? 12/20/2004 AMR Research 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (12/20/2004 AMR Research, finds, Wal-Mart suppliers) -> 12/20/2004 AMR Research (2681ms) Who founded Wal-Mart? Home materials 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (Home materials, can be found at, Wal Mart) -> Home materials (2708ms) Who founded Wal-Mart? the lowest price 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (the lowest price, can be found at, Wal-Mart) -> the lowest price (2681ms) Who founded Wal-Mart? The probe 0.44444444444 Who founded Wal-Mart? -> $x: ($x, discover, walmart) -> (The probe, discovered, Wal-Mart) -> The probe (2695ms) Who founded Wal-Mart? a clear COLORPLACE Spray Paint 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (a clear COLORPLACE Spray Paint, found at, WalMart) -> a clear COLORPLACE Spray Paint (2708ms) Who founded Wal-Mart? hundreds 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (hundreds, find, the Wal-Mart wilderness) -> hundreds (2668ms) Who founded Wal-Mart? a Clone Trooper Power Quad 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (a Clone Trooper Power Quad, found at, a Wal-Mart) -> a Clone Trooper Power Quad (2654ms) Who founded Wal-Mart? coffees 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (coffees, found at, Wal-Mart) -> coffees (2695ms) Who founded Wal-Mart? obscure brands 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (obscure brands, found at, Wal-Mart work) -> obscure brands (2654ms) Who founded Wal-Mart? the $ 100 models 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (the $ 100 models, found at, Wal Mart) -> the $ 100 models (2654ms) Who founded Wal-Mart? the greatest gender gaps 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (the greatest gender gaps, found at, Wal-Mart stores) -> the greatest gender gaps (2668ms) Who founded Wal-Mart? the lower-priced models 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (the lower-priced models, found at, Wal-Mart) -> the lower-priced models (2721ms) Who founded Wal-Mart? suppose 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (suppose, find, a Wal-Mart) -> suppose (2668ms) Who founded Wal-Mart? Procter & Gamble 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (Procter & Gamble, has found, Wal-Mart) -> Procter & Gamble (2668ms) Who founded Wal-Mart? the the one 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (the the one, found at, Wal-Mart) -> the the one (2654ms) Who founded Wal-Mart? a hat 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (a hat, find at, WalMart) -> a hat (2708ms) Who founded Wal-Mart? a federal jury 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (a federal jury, found, Wal-Mart Stores guilty) -> a federal jury (2695ms) Who founded Wal-Mart? Bandanas 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (Bandanas, can be found at, WalMart) -> Bandanas (2681ms) Who founded Wal-Mart? German shoppers 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (German shoppers, found, Wal-Mart) -> German shoppers (2695ms) Who founded Wal-Mart? an explosive device 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (an explosive device, found at, Wal-Mart) -> an explosive device (2694ms) Who founded Wal-Mart? a local tire company 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (a local tire company, suddenly finds, Wal-Mart) -> a local tire company (2695ms) Who founded Wal-Mart? a search 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (a search, found, Wal-Mart) -> a search (2681ms) Who founded Wal-Mart? The shirts 0.44444444444 Who founded Wal-Mart? -> $x: ($x, discover, walmart) -> (The shirts, were discovered in, Walmart) -> The shirts (2668ms) Who founded Wal-Mart? the agency 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (the agency, has found, Wal-Mart) -> the agency (2654ms) Who founded Wal-Mart? the US judges 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (the US judges, have found, Wal-Mart guilty) -> the US judges (2681ms) Who founded Wal-Mart? the product 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (the product, found at, Wal-Mart) -> the product (2681ms) Who founded Wal-Mart? Sandwich containers 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (Sandwich containers, can be found at, Wal-Mart) -> Sandwich containers (2695ms) Who founded Wal-Mart? the states 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (the states, find, a Wal-Mart) -> the states (2654ms) Who founded Wal-Mart? Kantar 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (Kantar, found, Wal-Mart) -> Kantar (2668ms) Who founded Wal-Mart? a clothes line and can?t 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (a clothes line and can?t, find one at, Wal Mart) -> a clothes line and can?t (2721ms) Who founded Wal-Mart? alcohol 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (alcohol, even find, a Wal-Mart) -> alcohol (2654ms) Who founded Wal-Mart? the type 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (the type, found at, Wal-Mart) -> the type (2721ms) Who founded Wal-Mart? Mrs. H 0.44444444444 Who founded Wal-Mart? -> $x: ($x, discover, walmart) -> (Mrs. H, discovered, Walmart) -> Mrs. H (2668ms) Who founded Wal-Mart? Oregon 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (Oregon, found, Wal-Mart guilty) -> Oregon (2654ms) Who founded Wal-Mart? Basker and Noel 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (Basker and Noel, find, that Wal-Mart) -> Basker and Noel (2708ms) Who founded Wal-Mart? 3-D Paint 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (3-D Paint, found at, Wal-Mart) -> 3-D Paint (2681ms) Who founded Wal-Mart? a tool box 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (a tool box, found at, Wal-Mart) -> a tool box (2654ms) Who founded Wal-Mart? the inexpensive needles 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (the inexpensive needles, found at, Wal-Mart) -> the inexpensive needles (2654ms) Who founded Wal-Mart? January Lee County zoning staff 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (January Lee County zoning staff, found, Wal-Mart) -> January Lee County zoning staff (2654ms) Who founded Wal-Mart? Cimarron 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (Cimarron, then found, the Wal-Mart) -> Cimarron (2708ms) Who founded Wal-Mart? Similar items 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (Similar items, can be found at, Wal-Mart) -> Similar items (2694ms) Who founded Wal-Mart? a Wal-Mart Supercenter 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (a Wal-Mart Supercenter, found, Wal-Mart) -> a Wal-Mart Supercenter (2695ms) Who founded Wal-Mart? Frankfort 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (Frankfort, finally found, freggin Wal Mart) -> Frankfort (2668ms) Who founded Wal-Mart? the union 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (the union, has found, Wal-Mart nearly) -> the union (2681ms) Who founded Wal-Mart? the stuff 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (the stuff, find at, WalMart) -> the stuff (2695ms) Who founded Wal-Mart? Several states 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (Several states, have found, Wal-Mart workers) -> Several states (2708ms) Who founded Wal-Mart? a plastic trading card sleeve 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (a plastic trading card sleeve, found at, WalMart) -> a plastic trading card sleeve (2708ms) Who founded Wal-Mart? CLW 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (CLW, has found, that Wal-Mart) -> CLW (2708ms) Who founded Wal-Mart? a 3$ scarf i 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (a 3$ scarf i, found at, Wal-mart) -> a 3$ scarf i (2668ms) Who founded Wal-Mart? customers 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (customers, find great value at, Wal-Mart) -> customers (2708ms) Who founded Wal-Mart? the bargains 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (the bargains, find at, Wal-Mart) -> the bargains (2681ms) Who founded Wal-Mart? The Ranch Style Beans 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (The Ranch Style Beans, can be found at, Wal Mart) -> The Ranch Style Beans (2668ms) Who founded Wal-Mart? Baja California 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (Baja California, can find, a Wal-Mart) -> Baja California (2708ms) Who founded Wal-Mart? Kelly 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (Kelly, found, a Wal-Mart) -> Kelly (2681ms) Who founded Wal-Mart? new electronic gifts 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (new electronic gifts, found at, Wal-Mart) -> new electronic gifts (2668ms) Who founded Wal-Mart? CR2032 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (CR2032, are commonly found at, Wal-Mart) -> CR2032 (2721ms) Who founded Wal-Mart? weights and measures 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (weights and measures, found, 164 Wal-Marts) -> weights and measures (2681ms) Who founded Wal-Mart? the Pure Ice brand 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (the Pure Ice brand, is found mostly at, Wal-Mart) -> the Pure Ice brand (2695ms) Who founded Wal-Mart? white sculpy clay 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (white sculpy clay, can be found at, Wal-Mart) -> white sculpy clay (2708ms) Who founded Wal-Mart? The kind 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (The kind, can find at, Wal-Mart) -> The kind (2654ms) Who founded Wal-Mart? Hearing officer 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (Hearing officer, found, Wal-Mart Stores) -> Hearing officer (2708ms) Who founded Wal-Mart? private labels 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (private labels, find, Wal-Mart) -> private labels (2695ms) Who founded Wal-Mart? the photo 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (the photo, found this set at, a Wal-Mart) -> the photo (2708ms) Who founded Wal-Mart? A Florida jury 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (A Florida jury, finds, Wal-Mart liable) -> A Florida jury (2668ms) Who founded Wal-Mart? pet food 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (pet food, found at, Wal*Mart) -> pet food (2654ms) Who founded Wal-Mart? Gil 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (Gil, found a job at, Wal-Mart) -> Gil (2681ms) Who founded Wal-Mart? Bell 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (Bell, found at, Wal-Mart) -> Bell (2681ms) Who founded Wal-Mart? Missing special-needs teen 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (Missing special-needs teen, found at, Wal-Mart) -> Missing special-needs teen (2668ms) Who founded Wal-Mart? scrapbooking supplies 0.44444444444 Who founded Wal-Mart? -> $x: ($x, find, wal mart) -> (scrapbooking supplies, found at, Wal-Mart) -> scrapbooking supplies (2681ms) Who founded Wal-Mart? Americans 0.44444444443899994 Who founded Wal-Mart? -> $x: ($x, invent, walmart) -> (Americans, invented, Walmart and people) -> Americans (2721ms) Who founded Wal-Mart? money selling hamburgers 0.44444444443899994 Who founded Wal-Mart? -> $x: ($x, invent, walmart) -> (money selling hamburgers, invent, Wal-Mart) -> money selling hamburgers (2722ms) Who founded Wal-Mart? Rocky Mountain Recycling 0.44444444443899994 Who founded Wal-Mart? -> $x: ($x, invent, walmart) -> (Rocky Mountain Recycling, invented the process for, Wal-Mart) -> Rocky Mountain Recycling (2722ms) Who founded Wal-Mart? American?s 0.44444444443899994 Who founded Wal-Mart? -> $x: ($x, invent, walmart) -> (American?s, invented, Walmart and people) -> American?s (2722ms) Who founded Wal-Mart? www.walmart.ca 0.33333333333099996 Who founded Wal-Mart? -> $x: (walmart, be found by, $x) -> (Walmart Canada, can be found by visiting, www.walmart.ca) -> www.walmart.ca (2735ms) Who founded Wal-Mart? www.walmartstores.com/ 0.33333333333099996 Who founded Wal-Mart? -> $x: (walmart, be found by, $x) -> (Walmart, can be found by visiting, www.walmartstores.com/) -> www.walmartstores.com/ (2722ms) Who founded Wal-Mart? walmartstores.com 0.33333333333099996 Who founded Wal-Mart? -> $x: (walmart, be found by, $x) -> (Walmart, can be found by visiting, walmartstores.com) -> walmartstores.com (2722ms) Who founded Wal-Mart? http://en.wikipedia.org/wiki/Walmart%20Canada 0.33333333333099996 Who founded Wal-Mart? -> $x: (walmart, be find on, $x) -> (walmart canada, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Walmart%20Canada) -> http://en.wikipedia.org/wiki/Walmart%20Canada (2722ms) Who founded Wal-Mart? www.WalMart.com 0.33333333333099996 Who founded Wal-Mart? -> $x: (walmart, be found by, $x) -> (Wal-Mart, can be found by visiting, www.WalMart.com) -> www.WalMart.com (2722ms) Who founded Wal-Mart? www.walmartstores.com 0.33333333333099996 Who founded Wal-Mart? -> $x: (walmart, be found by, $x) -> (Walmart, can be found by visiting, www.walmartstores.com) -> www.walmartstores.com (2735ms) Who founded Wal-Mart? Warren Buffett 0.22222222221999993 Who founded Wal-Mart? -> $x: ($x, establish, walmart) -> (Warren Buffett, had established trust with, Wal-Mart) -> Warren Buffett (2773ms) Who founded Wal-Mart? Wal-Mart 0.22222222221999993 Who founded Wal-Mart? -> $x: ($x, establish, walmart) -> (Wal-Mart, will establish, a Wal-Mart Business Development Team) -> Wal-Mart (2773ms) Who founded Wal-Mart? Sam Walton 0.22222222221999993 Who founded Wal-Mart? -> $x: ($x, establish, walmart) -> (Sam Walton, established, Wal-Mart) -> Sam Walton (2773ms) Who founded Wal-Mart? Walton family 0.22222222221999993 Who founded Wal-Mart? -> $x: ($x, establish, walmart) -> (Walton family, established, Wal-Mart Stores) -> Walton family (2773ms) Who founded Wal-Mart? evidence 0.22222222221999993 Who founded Wal-Mart? -> $x: ($x, establish, walmart) -> (evidence, convincingly establishes is, Wal-Mart?s ?policy ?) -> evidence (2773ms) Who founded Wal-Mart? business 0.22222222221999993 Who founded Wal-Mart? -> $x: ($x, establish, walmart) -> (business, established, the worldwide Wal-Mart chain) -> business (2773ms) Who founded Wal-Mart? Stores 0.22222222221999993 Who founded Wal-Mart? -> $x: ($x, establish, walmart) -> (Stores, establish near, Walmart) -> Stores (2773ms) Who founded Wal-Mart? federal court 0.22222222221899995 Who founded Wal-Mart? -> $x: (walmart, be found in, $x) -> (Wal-Mart, was found guilty in, federal court) -> federal court (2773ms) Who founded Wal-Mart? 35 states 0.22222222221899995 Who founded Wal-Mart? -> $x: (walmart, be found in, $x) -> (Wal-Mart subsidy deals, were found in, 35 states) -> 35 states (2786ms) Who founded Wal-Mart? a good number 0.22222222221899995 Who founded Wal-Mart? -> $x: (walmart, be found in, $x) -> (Walmart wedding cakes, can be found in, a good number) -> a good number (2786ms) Who founded Wal-Mart? 10 0.22222222221899995 Who founded Wal-Mart? -> $x: (walmart, be found in, $x) -> (Wal-Mart, has been found guilty in, 10) -> 10 (2773ms) Who founded Wal-Mart? a February 2004 report 0.22222222221899995 Who founded Wal-Mart? -> $x: (walmart, be found in, $x) -> (Wal-Mart, is to be found in, a February 2004 report) -> a February 2004 report (2773ms) Who founded Wal-Mart? public restrooms 0.22222222221899995 Who founded Wal-Mart? -> $x: (walmart, be found in, $x) -> (Wal-Mart customers, can be found in, public restrooms) -> public restrooms (2773ms) Who founded Wal-Mart? disposable pastry bags 0.11111111110899996 Who founded Wal-Mart? -> $x: ($x, be found, walmart) -> (disposable pastry bags, can be found at, Michaels and Walmart) -> disposable pastry bags (2798ms) Who founded Wal-Mart? the logo 0.11111111110899996 Who founded Wal-Mart? -> $x: ($x, be found, walmart) -> (the logo, can be found on, Walmart?s site) -> the logo (2810ms) Who founded Wal-Mart? eight weeks 0.11111111110899996 Who founded Wal-Mart? -> $x: ($x, be found, walmart) -> (eight weeks, can be found at, Wal-Mart) -> eight weeks (2834ms) Who founded Wal-Mart? Belgium 0.11111111110899996 Who founded Wal-Mart? -> $x: ($x, be found, walmart) -> (Belgium, can be found on, the Walmart) -> Belgium (2810ms) Who founded Wal-Mart? The full list 0.11111111110899996 Who founded Wal-Mart? -> $x: ($x, be found, walmart) -> (The full list, can be found on, Walmarts website) -> The full list (2798ms) Who founded Wal-Mart? The spudtrooper 0.11111111110899996 Who founded Wal-Mart? -> $x: ($x, be found, walmart) -> (The spudtrooper, was found today at, Wal-Mart) -> The spudtrooper (2822ms) Who founded Wal-Mart? product 0.11111111110899996 Who founded Wal-Mart? -> $x: ($x, be found, walmart) -> (product, can be found on, Walmart store shelves) -> product (2822ms) Who founded Wal-Mart? Inexpensive inflatable owls 0.11111111110899996 Who founded Wal-Mart? -> $x: ($x, be found, walmart) -> (Inexpensive inflatable owls, can be found at, your local Walmart) -> Inexpensive inflatable owls (2798ms) Who founded Wal-Mart? a Rachel 0.11111111110899996 Who founded Wal-Mart? -> $x: ($x, be found, walmart) -> (a Rachel, can be found at, any local Walmart) -> a Rachel (2847ms) Who founded Wal-Mart? nine-year-old Jasmine Bishara 0.11111111110899996 Who founded Wal-Mart? -> $x: ($x, be found, walmart) -> (nine-year-old Jasmine Bishara, was found safe at, a Walmart) -> nine-year-old Jasmine Bishara (2810ms) Who founded Wal-Mart? Jasmine Bishara 0.11111111110899996 Who founded Wal-Mart? -> $x: ($x, be found, walmart) -> (Jasmine Bishara, was found safe at, a Walmart) -> Jasmine Bishara (2822ms) Who founded Wal-Mart? figures 0.11111111110899996 Who founded Wal-Mart? -> $x: ($x, be found, walmart) -> (figures, are being found at, Wal-Mart stores) -> figures (2822ms) Who founded Wal-Mart? meth 0.11111111110899996 Who founded Wal-Mart? -> $x: ($x, be found, walmart) -> (meth, can be found at, WalMart) -> meth (2786ms) Who founded Wal-Mart? The new Star Wars sticker books 0.11111111110899996 Who founded Wal-Mart? -> $x: ($x, be found, walmart) -> (The new Star Wars sticker books, have been found at, Wal-Mart) -> The new Star Wars sticker books (2834ms) Who founded Wal-Mart? Two more syringes 0.11111111110899996 Who founded Wal-Mart? -> $x: ($x, be found, walmart) -> (Two more syringes, were found at, a Cartersville Walmart store) -> Two more syringes (2798ms) Who founded Wal-Mart? The woman?s vehicle 0.11111111110899996 Who founded Wal-Mart? -> $x: ($x, be found, walmart) -> (The woman?s vehicle, was later found at, a nearby Walmart) -> The woman?s vehicle (2834ms) Who founded Wal-Mart? The suspect 0.11111111110899996 Who founded Wal-Mart? -> $x: ($x, be found, walmart) -> (The suspect, was found at, a nearby Walmart) -> The suspect (2834ms) Who founded Wal-Mart? ? variety 0.11111111110899996 Who founded Wal-Mart? -> $x: ($x, be found, walmart) -> (? variety, would be found at, Wal-Mart) -> ? variety (2810ms) Who founded Wal-Mart? a certain grand confection 0.11111111110899996 Who founded Wal-Mart? -> $x: ($x, be found, walmart) -> (a certain grand confection, Was found at, Wal-Mart) -> a certain grand confection (2834ms) Who founded Wal-Mart? clear coat 0.11111111110899996 Who founded Wal-Mart? -> $x: ($x, be found, walmart) -> (clear coat, be found at, Wal-Mart) -> clear coat (2798ms) Who founded Wal-Mart? white cardstock paper 0.11111111110899996 Who founded Wal-Mart? -> $x: ($x, be found, walmart) -> (white cardstock paper, can be found at, Wal-Mart) -> white cardstock paper (2786ms) Who founded Wal-Mart? small vehicles 0.11111111110899996 Who founded Wal-Mart? -> $x: ($x, be found, walmart) -> (small vehicles, can be found at, Wal-Mart) -> small vehicles (2834ms) Who founded Wal-Mart? 09:23 AM CST C & D Visionary products 0.11111111110899996 Who founded Wal-Mart? -> $x: ($x, be found, walmart) -> (09:23 AM CST C & D Visionary products, can be found at, Wal-Mart) -> 09:23 AM CST C & D Visionary products (2834ms) Who founded Wal-Mart? the figures 0.111111111108 Who founded Wal-Mart? -> $x: ($x, find, walmart store) -> (the figures, are being found at, both Target and Wal-Mart stores) -> the figures (2857ms) Who founded Wal-Mart? a green foam 0.111111111108 Who founded Wal-Mart? -> $x: ($x, find, walmart store) -> (a green foam, can be found at, your Walmart or hobby store) -> a green foam (2847ms) Who founded Wal-Mart? The same price 0.111111111108 Who founded Wal-Mart? -> $x: ($x, find, walmart store) -> (The same price, can be found on, the Walmart online store) -> The same price (2847ms) Who founded Wal-Mart? a brand 0.111111111108 Who founded Wal-Mart? -> $x: ($x, find, walmart store) -> (a brand, found at, both Wal-marts and department stores) -> a brand (2847ms) Who founded Wal-Mart? a man 0.111111111108 Who founded Wal-Mart? -> $x: ($x, find, walmart store) -> (a man, was found dead behind, a Walmart store) -> a man (2847ms) Who founded Wal-Mart? MONEYGRAM 0.111111111108 Who founded Wal-Mart? -> $x: ($x, find, walmart store) -> (MONEYGRAM, found at, every WALMART store) -> MONEYGRAM (2857ms) Who founded Wal-Mart? The white pickup 0.111111111108 Who founded Wal-Mart? -> $x: ($x, find, walmart store) -> (The white pickup, was found later at, a Wal-Mart store) -> The white pickup (2847ms) Who founded Wal-Mart? trays and carts 0.111111111108 Who founded Wal-Mart? -> $x: ($x, find, walmart store) -> (trays and carts, find at, stores like Target or Wal-Mart) -> trays and carts (2857ms) Who founded Wal-Mart? work -0.111111111112 Who founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (work, can be found at, Wal-Mart) -> work (2894ms) Who founded Wal-Mart? Silk Fruit&Protein -0.111111111112 Who founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (Silk Fruit&Protein, is easily found at, your local Wal-mart) -> Silk Fruit&Protein (2894ms) Who founded Wal-Mart? Natural brushes -0.111111111112 Who founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (Natural brushes, can be found at, Target , Wal-Mart or K-Mart) -> Natural brushes (2902ms) Who founded Wal-Mart? The one above -0.111111111112 Who founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (The one above, was recently found at, a Wal-Mart) -> The one above (2902ms) Who founded Wal-Mart? the chemical -0.111111111112 Who founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (the chemical, have been found at, Target , Wal-Mart and Babies) -> the chemical (2885ms) Who founded Wal-Mart? Coleman -0.111111111112 Who founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (Coleman, can also be found at, Wal-Mart) -> Coleman (2885ms) Who founded Wal-Mart? A good GPSr -0.111111111112 Who founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (A good GPSr, can be found at, a Super Wal-mart) -> A good GPSr (2876ms) Who founded Wal-Mart? the Cushing crime scene -0.111111111112 Who founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (the Cushing crime scene, was also found at, that Wal-Mart) -> the Cushing crime scene (2911ms) Who founded Wal-Mart? the Striking Z Fighters -0.111111111112 Who founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (the Striking Z Fighters, have been found at, Wal-Mart) -> the Striking Z Fighters (2885ms) Who founded Wal-Mart? OxiClean Versatile Stain Remover -0.111111111112 Who founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (OxiClean Versatile Stain Remover, can be found at, Wal-Mart) -> OxiClean Versatile Stain Remover (2876ms) Who founded Wal-Mart? readers -0.111111111112 Who founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (readers, can be found at, Wal-Mart) -> readers (2911ms) Who founded Wal-Mart? Carolina Pad arts and crafts items -0.111111111112 Who founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (Carolina Pad arts and crafts items, can be found at, Wal-Mart) -> Carolina Pad arts and crafts items (2902ms) Who founded Wal-Mart? Clinton -0.111111111112 Who founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (Clinton, is finding her past ties to, Wal-Mart too) -> Clinton (2911ms) Who founded Wal-Mart? Ultimate Game Cards -0.111111111112 Who founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (Ultimate Game Cards, currently can be found at, select Wal-Marts) -> Ultimate Game Cards (2885ms) Who founded Wal-Mart? the HALO ? Sleep Sack -0.111111111112 Who founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (the HALO ? Sleep Sack, can be found at, Wal-Mart) -> the HALO ? Sleep Sack (2876ms) Who founded Wal-Mart? The spray paint -0.111111111112 Who founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (The spray paint, can also be found at, Wal-Mart) -> The spray paint (2902ms) Who founded Wal-Mart? violations -0.111111111112 Who founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (violations, were found throughout, the Wal-Mart system) -> violations (2894ms) Who founded Wal-Mart? Utapau -0.111111111112 Who founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (Utapau, has been found at, Wal-Mart) -> Utapau (2885ms) Who founded Wal-Mart? The lists -0.111111111112 Who founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (The lists, below can also be found at, Wal-mart and Target) -> The lists (2893ms) Who founded Wal-Mart? The clothes -0.111111111112 Who founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (The clothes, can be found from, WalMart) -> The clothes (2902ms) Who founded Wal-Mart? the environment -0.111111111112 Who founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (the environment, can be found at, www.VermontWalMartWatch .org) -> the environment (2885ms) Who founded Wal-Mart? basketball team -0.111111111112 Who founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (basketball team, could be found outside, the local Wal-Mart) -> basketball team (2902ms) Who founded Wal-Mart? so few American made items -0.111111111112 Who founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (so few American made items, can be found at, Wal-Mart) -> so few American made items (2911ms) Who founded Wal-Mart? a flavoring oil & yes -0.111111111112 Who founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (a flavoring oil & yes, can usually be found at, Wal-Mart) -> a flavoring oil & yes (2894ms) Who founded Wal-Mart? the above photo -0.111111111112 Who founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (the above photo, were found these at, the Wal-Mart) -> the above photo (2894ms) Who founded Wal-Mart? The white prison truck -0.111111111112 Who founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (The white prison truck, was found near, a Wal-Mart) -> The white prison truck (2894ms) Who founded Wal-Mart? The real challenge -0.111111111112 Who founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (The real challenge, is n?t finding, the Wal-Marts) -> The real challenge (2894ms) Who founded Wal-Mart? Aloe Vera -0.111111111112 Who founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (Aloe Vera, can now be found at, your local Wal-Mart) -> Aloe Vera (2885ms) Who founded Wal-Mart? Combat? Ant Baits and Gels -0.111111111112 Who founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (Combat? Ant Baits and Gels, can be found at, your local Wal-Mart) -> Combat? Ant Baits and Gels (2911ms) Who founded Wal-Mart? the bag -0.111111111112 Who founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (the bag, could easily be found at, WalMart) -> the bag (2902ms) Who founded Wal-Mart? Beautiful blank books -0.111111111112 Who founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (Beautiful blank books, can be found at, Wal-Mart) -> Beautiful blank books (2902ms) Who founded Wal-Mart? Inexpensive ones -0.111111111112 Who founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (Inexpensive ones, can be found at, Wal-Mart) -> Inexpensive ones (2911ms) Who founded Wal-Mart? item -0.111111111112 Who founded Wal-Mart? -> $x: ($x, be found, wal mart) -> (item, was still being found on, Wal-Mart shelves) -> item (2876ms) Who founded Wal-Mart? the most venerated managers -0.222222222225 Who founded Wal-Mart? -> $x: ($x, be founder of, walmart) -> (the most venerated managers, is the founder of, Wal-Mart) -> the most venerated managers (2919ms) Who founded Wal-Mart? central Florida -0.44444444444700004 Who founded Wal-Mart? -> $x: ($x, form, walmart) -> (central Florida, have formed, the Wal-Mart Workers Association) -> central Florida (2952ms) Who founded Wal-Mart? a group -0.44444444444700004 Who founded Wal-Mart? -> $x: ($x, form, walmart) -> (a group, formed to fight, the Wal-Mart project) -> a group (2975ms) Who founded Wal-Mart? a city-wide coalition -0.44444444444700004 Who founded Wal-Mart? -> $x: ($x, form, walmart) -> (a city-wide coalition, formed to oppose, two proposed Wal-Marts) -> a city-wide coalition (2960ms) Who founded Wal-Mart? Massmart -0.44444444444700004 Who founded Wal-Mart? -> $x: ($x, form, walmart) -> (Massmart, will merge to form, Wal-Mart South Africa) -> Massmart (2936ms) Who founded Wal-Mart? job applications -0.44444444444700004 Who founded Wal-Mart? -> $x: ($x, form, walmart) -> (job applications, form for, walmart picts) -> job applications (2952ms) Who founded Wal-Mart? Starbucks -0.44444444444700004 Who founded Wal-Mart? -> $x: ($x, form, walmart) -> (Starbucks, form, the Wal-Marts) -> Starbucks (2952ms) Who founded Wal-Mart? portable toilets -0.44444444444700004 Who founded Wal-Mart? -> $x: ($x, form, walmart) -> (portable toilets, form, Wal-Mart) -> portable toilets (2944ms) Who founded Wal-Mart? dishes -0.44444444444700004 Who founded Wal-Mart? -> $x: ($x, form, walmart) -> (dishes, form, WAL-mart) -> dishes (2960ms) Who founded Wal-Mart? the toy market -0.44444444444700004 Who founded Wal-Mart? -> $x: ($x, form, walmart) -> (the toy market, only form, Wal-Mart) -> the toy market (2975ms) Who founded Wal-Mart? a copy -0.44444444444700004 Who founded Wal-Mart? -> $x: ($x, form, walmart) -> (a copy, form, his local Walmart) -> a copy (2975ms) Who founded Wal-Mart? Force Unleashed figures -0.888888888888 Who founded Wal-Mart? -> $x: ($x, have find, walmart) -> (Force Unleashed figures, have found their way to, Wal-Mart) -> Force Unleashed figures (3018ms) Who founded Wal-Mart? the teenager -0.888888888888 Who founded Wal-Mart? -> $x: ($x, have find, walmart) -> (the teenager, had been found safe at, a Panhandle Walmart) -> the teenager (3018ms) Who founded Wal-Mart? the international union -0.888888888888 Who founded Wal-Mart? -> $x: ($x, have find, walmart) -> (the international union, has found more success with, Wal-Mart) -> the international union (3018ms) Who founded Wal-Mart? R4-P17 -0.888888888888 Who founded Wal-Mart? -> $x: ($x, have find, walmart) -> (R4-P17, has been found at, a Louisville area Wal-Mart) -> R4-P17 (3018ms) Who founded Wal-Mart? more workers -1.111111111118 Who founded Wal-Mart? -> $x: (walmart, have find, $x) -> (?Wal-Mart, was found to have, more workers) -> more workers (3042ms) Who founded Wal-Mart? house advertising -1.111111111118 Who founded Wal-Mart? -> $x: (walmart, have find, $x) -> (Wal-Mart, has found, house advertising) -> house advertising (3042ms) Who founded Wal-Mart? workers -1.111111111118 Who founded Wal-Mart? -> $x: (walmart, have find, $x) -> (Wal-Mart, has found an unlimited pool of, workers) -> workers (3042ms) Who founded Wal-Mart? thousands -1.111111111118 Who founded Wal-Mart? -> $x: (walmart, have find, $x) -> (Wal-Mart, has been found to have, thousands) -> thousands (3037ms) Who founded Wal-Mart? social media success time and time -1.111111111118 Who founded Wal-Mart? -> $x: (walmart, have find, $x) -> (Walmart, have failed to find, social media success time and time) -> social media success time and time (3042ms) Who founded Wal-Mart? two other units -1.111111111118 Who founded Wal-Mart? -> $x: (walmart, have find, $x) -> (Wal-Mart investigators, have found, two other units) -> two other units (3042ms) Who founded Wal-Mart? success -1.111111111118 Who founded Wal-Mart? -> $x: (walmart, have find, $x) -> (Wal-Mart, has found, success) -> success (3042ms) Who founded Wal-Mart? employment gains -1.111111111118 Who founded Wal-Mart? -> $x: (walmart, have find, $x) -> (Wal-Mart, were found to have, employment gains) -> employment gains (3037ms) Who founded Wal-Mart? the girl -1.111111111118 Who founded Wal-Mart? -> $x: (walmart, have find, $x) -> (Wal-Mart, have yet to find, the girl) -> the girl (3037ms) Who founded Wal-Mart? zero people -1.111111111118 Who founded Wal-Mart? -> $x: (walmart, have find, $x) -> (Wal-Mart stores, have so far found exactly, zero people) -> zero people (3037ms) Who founded Wal-Mart? greater liability -1.111111111118 Who founded Wal-Mart? -> $x: (walmart, have find, $x) -> (Wal*Mart, has been found to have much, greater liability) -> greater liability (3037ms) Who founded Wal-Mart? solid footing online -1.111111111118 Who founded Wal-Mart? -> $x: (walmart, have find, $x) -> (Wal-Mart, has struggled to find, solid footing online) -> solid footing online (3042ms) Who founded Wal-Mart? a new groove -1.111111111118 Who founded Wal-Mart? -> $x: (walmart, have find, $x) -> (Walmart, seems to have found, a new groove) -> a new groove (3037ms) Who founded Wal-Mart? a successful tactic -1.111111111118 Who founded Wal-Mart? -> $x: (walmart, have find, $x) -> (Walmart, has found, a successful tactic) -> a successful tactic (3042ms) Who founded Wal-Mart? solutions -1.111111111118 Who founded Wal-Mart? -> $x: (walmart, have find, $x) -> (Walmart, has also found plenty of, solutions) -> solutions (3042ms) Who founded Wal-Mart? great deals -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, is the best place to find, great deals) -> great deals (3061ms) Who founded Wal-Mart? Brad?s Mom -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart &, found, Brad?s Mom) -> Brad?s Mom (3065ms) Who founded Wal-Mart? a Dumpster -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, find, a Dumpster) -> a Dumpster (3047ms) Who founded Wal-Mart? employee conversations -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, finds, employee conversations) -> employee conversations (3057ms) Who founded Wal-Mart? online specials -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (100 % Success FEATURED DEAL Shop Walmart, find, online specials) -> online specials (3065ms) Who founded Wal-Mart? Grapette -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (the new Wal-Mart, found, Grapette) -> Grapette (3065ms) Who founded Wal-Mart? the 5th -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (walmart but i cant, find, the 5th) -> the 5th (3061ms) Who founded Wal-Mart? hounds -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (a Walmart, found a box full of, hounds) -> hounds (3065ms) Who founded Wal-Mart? an item -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (a Walmart, find, an item) -> an item (3065ms) Who founded Wal-Mart? the NAACP -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart, found, the NAACP) -> the NAACP (3057ms) Who founded Wal-Mart? costs -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, could find other ways to cut, costs) -> costs (3057ms) Who founded Wal-Mart? optimal price points -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (leverage Wal-Mart, find, optimal price points) -> optimal price points (3052ms) Who founded Wal-Mart? the suppliers -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart, found, the suppliers) -> the suppliers (3052ms) Who founded Wal-Mart? average gross margins -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart?s retail generic prices, found, average gross margins) -> average gross margins (3047ms) Who founded Wal-Mart? an attacker -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, finds, an attacker) -> an attacker (3057ms) Who founded Wal-Mart? the latest laptop and desktop computers -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart.com, Find, the latest laptop and desktop computers) -> the latest laptop and desktop computers (3061ms) Who founded Wal-Mart? the companies -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-mart, found, the companies) -> the companies (3052ms) Who founded Wal-Mart? 3 packs -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-mart, found, 3 packs) -> 3 packs (3052ms) Who founded Wal-Mart? Hewlett-Packard products -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart stores, find, Hewlett-Packard products) -> Hewlett-Packard products (3061ms) Who founded Wal-Mart? expert advice -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, find, expert advice) -> expert advice (3052ms) Who founded Wal-Mart? two loopholes -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart, found, two loopholes) -> two loopholes (3061ms) Who founded Wal-Mart? quality kitchen and home appliances -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, Find, quality kitchen and home appliances) -> quality kitchen and home appliances (3061ms) Who founded Wal-Mart? 10 human teeth -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (a Wal-Mart, found, 10 human teeth) -> 10 human teeth (3061ms) Who founded Wal-Mart? the Flavor-it kit -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (WalMart, found, the Flavor-it kit) -> the Flavor-it kit (3042ms) Who founded Wal-Mart? evidence of widespread bribery -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart, found, evidence of widespread bribery) -> evidence of widespread bribery (3047ms) Who founded Wal-Mart? smaller towels -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, was meant to find, smaller towels) -> smaller towels (3052ms) Who founded Wal-Mart? the job -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, find, the job) -> the job (3052ms) Who founded Wal-Mart? a similar product -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (walmart, find, a similar product) -> a similar product (3057ms) Who founded Wal-Mart? more foodz -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart, find, more foodz) -> more foodz (3061ms) Who founded Wal-Mart? each child -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, was able to find, each child) -> each child (3065ms) Who founded Wal-Mart? Miss H -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (any Wal-Mart or Target, find, Miss H) -> Miss H (3065ms) Who founded Wal-Mart? least five SD cards -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart ?, found at, least five SD cards) -> least five SD cards (3057ms) Who founded Wal-Mart? stuff for an affordable price -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, for finding, stuff for an affordable price) -> stuff for an affordable price (3061ms) Who founded Wal-Mart? competitive advantage -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart, found, competitive advantage) -> competitive advantage (3047ms) Who founded Wal-Mart? prom dress fabric -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, found, prom dress fabric) -> prom dress fabric (3047ms) Who founded Wal-Mart? the negotiating leverage -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart, found, the negotiating leverage) -> the negotiating leverage (3057ms) Who founded Wal-Mart? Arpan -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart store security, found, Arpan) -> Arpan (3057ms) Who founded Wal-Mart? single white onesies -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, found, single white onesies) -> single white onesies (3042ms) Who founded Wal-Mart? 13 entries -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart, found, 13 entries) -> 13 entries (3057ms) Who founded Wal-Mart? exclusive deals and discounts -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart etc, find, exclusive deals and discounts) -> exclusive deals and discounts (3052ms) Who founded Wal-Mart? an ?Angel Tree -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart, find, an ?Angel Tree) -> an ?Angel Tree (3047ms) Who founded Wal-Mart? overwhelming evidence -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (?walmart, find, overwhelming evidence) -> overwhelming evidence (3057ms) Who founded Wal-Mart? the M&M?s -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart, found, the M&M?s) -> the M&M?s (3047ms) Who founded Wal-Mart? the message -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, found out, the message) -> the message (3047ms) Who founded Wal-Mart? several full suspension mountain bikes -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, find, several full suspension mountain bikes) -> several full suspension mountain bikes (3057ms) Who founded Wal-Mart? the perfect present -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (WalMart, Find, the perfect present) -> the perfect present (3042ms) Who founded Wal-Mart? jewelry -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (wal-mart, find, jewelry) -> jewelry (3061ms) Who founded Wal-Mart? the latest changes -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart consumers, will find out, the latest changes) -> the latest changes (3052ms) Who founded Wal-Mart? the quote -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart, found, the quote) -> the quote (3052ms) Who founded Wal-Mart? Western or household items -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, is a good place to find, Western or household items) -> Western or household items (3065ms) Who founded Wal-Mart? a kid -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart, found, a kid) -> a kid (3065ms) Who founded Wal-Mart? the supplier section -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart National Program 1, find, the supplier section) -> the supplier section (3047ms) Who founded Wal-Mart? an easier job -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart, find, an easier job) -> an easier job (3065ms) Who founded Wal-Mart? the mockingjay pin -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, find, the mockingjay pin) -> the mockingjay pin (3047ms) Who founded Wal-Mart? condos -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, find, condos) -> condos (3065ms) Who founded Wal-Mart? the Top 200 Books -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart.com, Find, the Top 200 Books) -> the Top 200 Books (3061ms) Who founded Wal-Mart? a recycling bin -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (the Oakland Wal-Mart, find, a recycling bin) -> a recycling bin (3052ms) Who founded Wal-Mart? great prices -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, Find, great prices) -> great prices (3047ms) Who founded Wal-Mart? a paper trail of hundreds of suspect payments -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart, found, a paper trail of hundreds of suspect payments) -> a paper trail of hundreds of suspect payments (3042ms) Who founded Wal-Mart? Germany -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, would find, Germany) -> Germany (3047ms) Who founded Wal-Mart? minimum-wage workers -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart, find, minimum-wage workers) -> minimum-wage workers (3061ms) Who founded Wal-Mart? Delaney playing games -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart, found, Delaney playing games) -> Delaney playing games (3057ms) Who founded Wal-Mart? bittersweet stems -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart, found, bittersweet stems) -> bittersweet stems (3061ms) Who founded Wal-Mart? the right air conditioners -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, Find, the right air conditioners) -> the right air conditioners (3057ms) Who founded Wal-Mart? the information -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, find the rest of, the information) -> the information (3042ms) Who founded Wal-Mart? online -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, were found, online) -> online (3052ms) Who founded Wal-Mart? new business opportunities -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart?s suppliers, find, new business opportunities) -> new business opportunities (3047ms) Who founded Wal-Mart? the most useful lawn and garden equipment -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Walmart, Find, the most useful lawn and garden equipment) -> the most useful lawn and garden equipment (3047ms) Who founded Wal-Mart? guilty -1.111111111119 Who founded Wal-Mart? -> $x: (walmart, found, $x) -> (Wal-Mart, was found, guilty) -> guilty (3065ms) Who founded Wal-Mart? Shenzhen -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, established, Shenzhen) -> Shenzhen (3070ms) Who founded Wal-Mart? a monopoly -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Walmart, had established, a monopoly) -> a monopoly (3081ms) Who founded Wal-Mart? a price -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, establish, $x) -> (?Walmart, establishes, a price) -> a price (3078ms) Who founded Wal-Mart? any item -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, be found, $x) -> (Coupons Wal-Mart, is the place to go to find, any item) -> any item (3078ms) Who founded Wal-Mart? Canada -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Walmart, was established in, Canada) -> Canada (3078ms) Who founded Wal-Mart? unions -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, agreed to establish, unions) -> unions (3074ms) Who founded Wal-Mart? Wikipedia -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, be found, $x) -> (Wal-Mart brands, can be found at, Wikipedia) -> Wikipedia (3085ms) Who founded Wal-Mart? 1994 -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart Canada, was established in, 1994) -> 1994 (3074ms) Who founded Wal-Mart? competent Friday -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, be found, $x) -> (a Wal-Mart parking lot, was found, competent Friday) -> competent Friday (3069ms) Who founded Wal-Mart? a rigorous price inspection system -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, establish, $x) -> (WalMart, agreed to establish, a rigorous price inspection system) -> a rigorous price inspection system (3082ms) Who founded Wal-Mart? energy-efficiency requirements -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart brass, will establish, energy-efficiency requirements) -> energy-efficiency requirements (3070ms) Who founded Wal-Mart? Chile -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Carrefour or Wal-mart, have been established in, Chile) -> Chile (3070ms) Who founded Wal-Mart? the line -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Walmart, established, the line) -> the line (3085ms) Who founded Wal-Mart? themselves -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, establish, $x) -> (a Wal-Mart, established, themselves) -> themselves (3085ms) Who founded Wal-Mart? norms -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, has established as, norms) -> norms (3070ms) Who founded Wal-Mart? a reputation -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, has established, a reputation) -> a reputation (3078ms) Who founded Wal-Mart? fact -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Jostle Your current Paradigm Wal-Mart, established, fact) -> fact (3085ms) Who founded Wal-Mart? inexpensive silica-Gel -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, be found, $x) -> (Wal-Mart, is one place to find, inexpensive silica-Gel) -> inexpensive silica-Gel (3078ms) Who founded Wal-Mart? November 2005 -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, establish, $x) -> (the Wal-Mart outlet, was established in, November 2005) -> November 2005 (3078ms) Who founded Wal-Mart? retail earnings -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, be found, $x) -> (a new Wal-Mart, is found to reduce, retail earnings) -> retail earnings (3074ms) Who founded Wal-Mart? the place -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, has successfully established its brand as, the place) -> the place (3085ms) Who founded Wal-Mart? experiment -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, be found, $x) -> (walmart and tesco, are finding a need to, experiment) -> experiment (3082ms) Who founded Wal-Mart? www.walmartfoundation .org -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, be found, $x) -> (Wal-Mart Stores, can be found at, www.walmartfoundation .org) -> www.walmartfoundation .org (3082ms) Who founded Wal-Mart? social , human rights -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Walmart, establish a set of, social , human rights) -> social , human rights (3089ms) Who founded Wal-Mart? farmed shrimp -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, has established standards for, farmed shrimp) -> farmed shrimp (3078ms) Who founded Wal-Mart? the Sam Walton Business Leader Award -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, established, the Sam Walton Business Leader Award) -> the Sam Walton Business Leader Award (3081ms) Who founded Wal-Mart? better shopping -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, be found, $x) -> (The Walmart Shopper, is finding, better shopping) -> better shopping (3081ms) Who founded Wal-Mart? stores -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, established, stores) -> stores (3074ms) Who founded Wal-Mart? a profile -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, should 've established, a profile) -> a profile (3081ms) Who founded Wal-Mart? death -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, be found, $x) -> (a Wal-Mart, was found shot to, death) -> death (3085ms) Who founded Wal-Mart? the ?office -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, established, the ?office) -> the ?office (3070ms) Who founded Wal-Mart? walmart.com/schoolyourway -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, be found, $x) -> (The Wal-Mart site, can be found at, walmart.com/schoolyourway) -> walmart.com/schoolyourway (3074ms) Who founded Wal-Mart? trade unions -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, to establish, trade unions) -> trade unions (3070ms) Who founded Wal-Mart? Washington -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, established a presence in, Washington) -> Washington (3078ms) Who founded Wal-Mart? 2000 stores -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Walmart, has established, 2000 stores) -> 2000 stores (3085ms) Who founded Wal-Mart? footprints -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart , Carrefour and Casino, established, footprints) -> footprints (3078ms) Who founded Wal-Mart? a Wal-Mart Business Development Team -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, will establish, a Wal-Mart Business Development Team) -> a Wal-Mart Business Development Team (3074ms) Who founded Wal-Mart? the real people -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, has worked to establish, the real people) -> the real people (3082ms) Who founded Wal-Mart? missing children -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, be found, $x) -> (Wal-Mart associates, are determined to find, missing children) -> missing children (3074ms) Who founded Wal-Mart? simple -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, establish, $x) -> (2011 Walmart, established a list of, simple) -> simple (3074ms) Who founded Wal-Mart? the distribution -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, will quickly be established as, the distribution) -> the distribution (3078ms) Who founded Wal-Mart? South Africa -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, may establish its African beachhead in, South Africa) -> South Africa (3085ms) Who founded Wal-Mart? high levels -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, be found, $x) -> (Wal-Mart, was found to be toxic with, high levels) -> high levels (3078ms) Who founded Wal-Mart? the harmful chemical -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, be found, $x) -> (Wal-Mart stores, were found to be free of, the harmful chemical) -> the harmful chemical (3085ms) Who founded Wal-Mart? intimidation -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, be found, $x) -> (Wal-Mart, was found guilty of, intimidation) -> intimidation (3074ms) Who founded Wal-Mart? a presence -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Walmart, establish, a presence) -> a presence (3074ms) Who founded Wal-Mart? a store-within-a-store display -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, established, a store-within-a-store display) -> a store-within-a-store display (3085ms) Who founded Wal-Mart? Zone Manager -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, established the position of, Zone Manager) -> Zone Manager (3085ms) Who founded Wal-Mart? a 2nd Tier program -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, established, a 2nd Tier program) -> a 2nd Tier program (3070ms) Who founded Wal-Mart? discrimination -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, be found, $x) -> (Wal-Mart, was found innocent of, discrimination) -> discrimination (3082ms) Who founded Wal-Mart? Howell -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, establish, $x) -> (Wal-Mart, was established under, Howell) -> Howell (3070ms) Who founded Wal-Mart? the charges -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, be found, $x) -> (Wal-Mart, was found to be guilty of, the charges) -> the charges (3081ms) Who founded Wal-Mart? liable -1.222222222229 Who founded Wal-Mart? -> $x: (walmart, be found, $x) -> (Wal-Mart, is found, liable) -> liable (3082ms) Who founded Wal-Mart? the breach -1.22222222223 Who founded Wal-Mart? -> $x: (walmart, discover, $x) -> (Wal-Mart, discovered, the breach) -> the breach (3089ms) Who founded Wal-Mart? card -1.22222222223 Who founded Wal-Mart? -> $x: (walmart, discover, $x) -> (The walmart, discover, card) -> card (3089ms) Who founded Wal-Mart? The Councils -1.22222222223 Who founded Wal-Mart? -> $x: (walmart, be founder of, $x) -> (' Walmart ' Phil Terry, is the founder of, The Councils) -> The Councils (3089ms) Who founded Wal-Mart? the payments -1.22222222223 Who founded Wal-Mart? -> $x: (walmart, discover, $x) -> (Wal-Mart, discovered of, the payments) -> the payments (3089ms) Who founded Wal-Mart? choices -1.3333333333400001 Who founded Wal-Mart? -> $x: (walmart, found of, $x) -> (the nearest Wal-Mart, find hundreds of, choices) -> choices (3104ms) Who founded Wal-Mart? quality sites -1.3333333333400001 Who founded Wal-Mart? -> $x: (wal mart, found, $x) -> (Wal Mart Employment Application sites, Find, quality sites) -> quality sites (3097ms) Who founded Wal-Mart? suspect payments -1.3333333333400001 Who founded Wal-Mart? -> $x: (walmart, found of, $x) -> (Wal-Mart investigators, found hundreds of, suspect payments) -> suspect payments (3097ms) Who founded Wal-Mart? the retailing market -1.3333333333400001 Who founded Wal-Mart? -> $x: (wal mart, found, $x) -> (Wal-Mart, also found a back door into, the retailing market) -> the retailing market (3099ms) Who founded Wal-Mart? elkhart indiana -1.3333333333400001 Who founded Wal-Mart? -> $x: (wal mart, found, $x) -> (wal mart isp, find details of, elkhart indiana) -> elkhart indiana (3099ms) Who founded Wal-Mart? storage products -1.3333333333400001 Who founded Wal-Mart? -> $x: (walmart, found of, $x) -> (Wal-Mart, Find a large selection of, storage products) -> storage products (3102ms) Who founded Wal-Mart? the girls -1.3333333333400001 Who founded Wal-Mart? -> $x: (walmart, found of, $x) -> (a Walmart employee, found partially nude pictures of, the girls) -> the girls (3104ms) Who founded Wal-Mart? the sales -1.3333333333400001 Who founded Wal-Mart? -> $x: (wal mart, found, $x) -> (Wal-Mart, found a link between, the sales) -> the sales (3102ms) Who founded Wal-Mart? the hard way -1.3333333333400001 Who founded Wal-Mart? -> $x: (wal mart, found, $x) -> (Wal-Mart, found this out, the hard way) -> the hard way (3094ms) Who founded Wal-Mart? an appropriately big way -1.3333333333400001 Who founded Wal-Mart? -> $x: (wal mart, found, $x) -> (Wal-Mart, found trouble in, an appropriately big way) -> an appropriately big way (3099ms) Who founded Wal-Mart? a work-around -1.3333333333400001 Who founded Wal-Mart? -> $x: (wal mart, found, $x) -> (Wal-Mart, can always find, a work-around) -> a work-around (3097ms) Who founded Wal-Mart? the XBox 360 -1.3333333333400001 Who founded Wal-Mart? -> $x: (wal mart, found, $x) -> (Wal Mart, find, the XBox 360) -> the XBox 360 (3102ms) Who founded Wal-Mart? troublemakers -1.3333333333400001 Who founded Wal-Mart? -> $x: (walmart, found of, $x) -> (Wal-Mart, will find a way to get rid of, troublemakers) -> troublemakers (3099ms) Who founded Wal-Mart? July Draggon Wagon -1.3333333333400001 Who founded Wal-Mart? -> $x: (wal mart, found, $x) -> (Wal-Mart, found the 4th of, July Draggon Wagon) -> July Draggon Wagon (3102ms) Who founded Wal-Mart? Life Story magazine -1.3333333333400001 Who founded Wal-Mart? -> $x: (walmart, found of, $x) -> (WalMart, found an issue of, Life Story magazine) -> Life Story magazine (3106ms) Who founded Wal-Mart? the crappy plastic ones -1.3333333333400001 Who founded Wal-Mart? -> $x: (wal mart, found, $x) -> (Wal-Mart, only found, the crappy plastic ones) -> the crappy plastic ones (3092ms) Who founded Wal-Mart? the accident -1.3333333333400001 Who founded Wal-Mart? -> $x: (walmart, found of, $x) -> (A Wal-Mart employee, found the remains of, the accident) -> the accident (3097ms) Who founded Wal-Mart? a toddlers -1.3333333333400001 Who founded Wal-Mart? -> $x: (wal mart, found, $x) -> (WalMart products, found high lead levels in, a toddlers) -> a toddlers (3102ms) Who founded Wal-Mart? the writings -1.3333333333400001 Who founded Wal-Mart? -> $x: (wal mart, found, $x) -> (Wal-Mart, suddenly finds, the writings) -> the writings (3102ms) Who founded Wal-Mart? low prices -1.3333333333400001 Who founded Wal-Mart? -> $x: (wal mart, found, $x) -> (Wal-Mart, found their?s in, low prices) -> low prices (3099ms) Who founded Wal-Mart? the manager -1.3333333333400001 Who founded Wal-Mart? -> $x: (wal mart, found, $x) -> (WalMart, took the time to find, the manager) -> the manager (3104ms) Who founded Wal-Mart? smaller fabric stores -1.3333333333400001 Who founded Wal-Mart? -> $x: (wal mart, found, $x) -> (Wal-Mart?s, could find their way back to, smaller fabric stores) -> smaller fabric stores (3097ms) Who founded Wal-Mart? the cheapest land -1.666666666672 Who founded Wal-Mart? -> $x: (walmart store, found, $x) -> (a store Wal-Mart, will find, the cheapest land) -> the cheapest land (3111ms) Who founded Wal-Mart? 127 -1.666666666672 Who founded Wal-Mart? -> $x: (walmart store, found, $x) -> (July 2000 internal audit of 128 wal-mart stores, found, 127) -> 127 (3111ms) What is Susan B. Anthony's birthday? Adams 0.555555555556 What is Susan B. Anthony's birthday? -> $x: (susan b. anthony, be bear in, $x) -> (Suffragist Susan B. Anthony, is born in, Adams) -> Adams (510ms) What is Susan B. Anthony's birthday? 1820 0.555555555556 What is Susan B. Anthony's birthday? -> $x: (susan b. anthony, be bear in, $x) -> (NY Susan B. Anthony, was born in, 1820) -> 1820 (510ms) What day did Pearl Harbor occur? December 7 , 1941 1.111111111109 What day did Pearl Harbor occur? -> $x: ($x, date be, pearl harbor) -> (December 7 , 1941, was the date of, the Pearl Harbor attack) -> December 7 , 1941 (874ms) What day did Pearl Harbor occur? terms 1.111111111106 What day did Pearl Harbor occur? -> $x: ($x, happen in, pearl harbor) -> (terms, happened in, Pearl Harbor) -> terms (874ms) What day did Pearl Harbor occur? Joe Strummer 0.999999999999 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl harbor) -> (Joe Strummer, wore during, the 1979 Pearl Harbor tour) -> Joe Strummer (874ms) What day did Pearl Harbor occur? any 0.88888888888 What day did Pearl Harbor occur? -> $x: (pearl harbor, occur in, $x) -> (Pearl Harbor, might have occurred in, any) -> any (874ms) What day did Pearl Harbor occur? December 1941 0.88888888888 What day did Pearl Harbor occur? -> $x: (pearl harbor, occur in, $x) -> (Pearl Harbor, occurred in, December 1941) -> December 1941 (874ms) What day did Pearl Harbor occur? a world 0.88888888888 What day did Pearl Harbor occur? -> $x: (pearl harbor, occur in, $x) -> (Pearl Harbor, occurred in, a world) -> a world (874ms) What day did Pearl Harbor occur? the final episode 0.88888888888 What day did Pearl Harbor occur? -> $x: (pearl harbor, occur in, $x) -> (A global Pearl Harbor event, to occur in, the final episode) -> the final episode (874ms) What day did Pearl Harbor occur? December 0.88888888888 What day did Pearl Harbor occur? -> $x: (pearl harbor, occur in, $x) -> (Pearl Harbor, occurred in, December) -> December (917ms) What day did Pearl Harbor occur? 1941 0.88888888888 What day did Pearl Harbor occur? -> $x: (pearl harbor, occur in, $x) -> (the Pearl Harbor attack, occurred in, 1941) -> 1941 (917ms) What day did Pearl Harbor occur? the financial world 0.5555555555489999 What day did Pearl Harbor occur? -> $x: (pearl harbor, happen in, $x) -> (an economic Pearl Harbor, was happening in, the financial world) -> the financial world (917ms) What day did Pearl Harbor occur? order 0.5555555555489999 What day did Pearl Harbor occur? -> $x: (pearl harbor, happen in, $x) -> (Pearl Harbor, to happen in, order) -> order (917ms) What day did Pearl Harbor occur? December of 1941 0.5555555555489999 What day did Pearl Harbor occur? -> $x: (pearl harbor, happen in, $x) -> (Pearl Harbor, happened in, December of 1941) -> December of 1941 (917ms) What day did Pearl Harbor occur? New York City 0.5555555555489999 What day did Pearl Harbor occur? -> $x: (pearl harbor, happen in, $x) -> (Pearl Harbor, happened in, New York City) -> New York City (970ms) What day did Pearl Harbor occur? just 0.444444444444 What day did Pearl Harbor occur? -> $x: ($x, happen to, pearl harbor) -> (just, happened to, Pearl Harbor Day) -> just (970ms) What day did Pearl Harbor occur? numerous viewers 0.444444444444 What day did Pearl Harbor occur? -> $x: ($x, happen to, pearl harbor) -> (numerous viewers, happened to, Pearl Harbor) -> numerous viewers (970ms) What day did Pearl Harbor occur? the very highest level 0.444444444444 What day did Pearl Harbor occur? -> $x: ($x, happen to, pearl harbor) -> (the very highest level, was going to happen at, Pearl Harbor) -> the very highest level (970ms) What day did Pearl Harbor occur? the United States Navy 0.444444444436 What day did Pearl Harbor occur? -> $x: (pearl harbor, be cause of, $x) -> (Pearl Harbor, was a major cause of, the United States Navy) -> the United States Navy (970ms) What day did Pearl Harbor occur? the second world war 0.444444444436 What day did Pearl Harbor occur? -> $x: (pearl harbor, be cause of, $x) -> (Pearl Harbor, was the cause of, the second world war) -> the second world war (970ms) What day did Pearl Harbor occur? the very next week 0.33333333332599996 What day did Pearl Harbor occur? -> $x: (pearl harbor, occur, $x) -> (Pearl Harbor, occurred, the very next week) -> the very next week (1840ms) What day did Pearl Harbor occur? ten days 0.33333333332599996 What day did Pearl Harbor occur? -> $x: (pearl harbor, occur, $x) -> (Pearl Harbor, occurred only, ten days) -> ten days (2040ms) What day did Pearl Harbor occur? the foreknowledge 0.33333333332599996 What day did Pearl Harbor occur? -> $x: (pearl harbor, occur, $x) -> (Pearl Harbor, occurred with, the foreknowledge) -> the foreknowledge (1840ms) What day did Pearl Harbor occur? two years 0.33333333332599996 What day did Pearl Harbor occur? -> $x: (pearl harbor, occur, $x) -> (Pearl Harbor, occurred almost, two years) -> two years (1841ms) What day did Pearl Harbor occur? the naval battleship USS Arizona 0.33333333332599996 What day did Pearl Harbor occur? -> $x: (pearl harbor, occur, $x) -> (Pearl Harbor, occurred on, the naval battleship USS Arizona) -> the naval battleship USS Arizona (2040ms) What day did Pearl Harbor occur? a variety 0.33333333332599996 What day did Pearl Harbor occur? -> $x: (pearl harbor, occur, $x) -> (Pearl Harbor, occurred for, a variety) -> a variety (1841ms) What day did Pearl Harbor occur? the time 0.33333333332599996 What day did Pearl Harbor occur? -> $x: (pearl harbor, occur, $x) -> (Pearl Harbor, occurred, the time) -> the time (1840ms) What day did Pearl Harbor occur? 4 years 0.33333333332599996 What day did Pearl Harbor occur? -> $x: (pearl harbor, occur, $x) -> (Pearl Harbor, occurred, 4 years) -> 4 years (2040ms) What day did Pearl Harbor occur? 70 years 0.33333333332599996 What day did Pearl Harbor occur? -> $x: (pearl harbor, occur, $x) -> (Pearl Harbor, occurred, 70 years) -> 70 years (1869ms) What day did Pearl Harbor occur? Darwin 0.33333333332599996 What day did Pearl Harbor occur? -> $x: (pearl harbor, occur, $x) -> (Pearl Harbor, occurs against, Darwin) -> Darwin (2040ms) What day did Pearl Harbor occur? 11 years 0.33333333332599996 What day did Pearl Harbor occur? -> $x: (pearl harbor, occur, $x) -> (Pearl Harbor, occurred, 11 years) -> 11 years (1841ms) What day did Pearl Harbor occur? four months 0.33333333332599996 What day did Pearl Harbor occur? -> $x: (pearl harbor, occur, $x) -> (Pearl Harbor, occurred less than, four months) -> four months (1870ms) What day did Pearl Harbor occur? a Sunday 0.33333333332599996 What day did Pearl Harbor occur? -> $x: (pearl harbor, occur, $x) -> (Pearl Harbor, occurred on, a Sunday) -> a Sunday (2040ms) What day did Pearl Harbor occur? May 11th 0.11111111111 What day did Pearl Harbor occur? -> $x: ($x, date be, pearl) -> (May 11th, was the date of, The Arlington Pearl) -> May 11th (2385ms) What day did Pearl Harbor occur? exactly 0.111111111107 What day did Pearl Harbor occur? -> $x: ($x, happen in, pearl) -> (exactly, is happening in, Pearl River County) -> exactly (2386ms) What day did Pearl Harbor occur? the most difficult time 0.111111111105 What day did Pearl Harbor occur? -> $x: (pearl harbor, happen during, $x) -> (Pearl Harbor, happened during perhaps, the most difficult time) -> the most difficult time (2385ms) What day did Pearl Harbor occur? Hiram -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Hiram, married, Martha Pearl Johnston) -> Hiram (2563ms) What day did Pearl Harbor occur? the June Cleaver type -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (the June Cleaver type, wore, pearls) -> the June Cleaver type (2620ms) What day did Pearl Harbor occur? Louie -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Louie, married, Pearl Bailey) -> Louie (2785ms) What day did Pearl Harbor occur? Roman women -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Roman women, wore, pearls) -> Roman women (2620ms) What day did Pearl Harbor occur? Jack -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Jack, was married to, his Black Pearl) -> Jack (2772ms) What day did Pearl Harbor occur? Grandmothers -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Grandmothers, wore, pearls) -> Grandmothers (2772ms) What day did Pearl Harbor occur? more and more women -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (more and more women, are wearing, pearls) -> more and more women (2421ms) What day did Pearl Harbor occur? the late Mr. Henry -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (the late Mr. Henry, was married to, Mrs. Pearl Braxton Wyatt) -> the late Mr. Henry (2471ms) What day did Pearl Harbor occur? new CEO -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (new CEO, wears, pearls) -> new CEO (2780ms) What day did Pearl Harbor occur? native Americans -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (native Americans, wearing, pearls) -> native Americans (2783ms) What day did Pearl Harbor occur? ancient princesses -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (ancient princesses, have worn, pearls) -> ancient princesses (2778ms) What day did Pearl Harbor occur? the bride -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (the bride, is wearing, pearls) -> the bride (2785ms) What day did Pearl Harbor occur? Roscoe -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Roscoe, married, Ruby Pearl Postlewait-23003 1 daughter) -> Roscoe (2778ms) What day did Pearl Harbor occur? cookie cutter wives -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (cookie cutter wives, wore, pearls) -> cookie cutter wives (2780ms) What day did Pearl Harbor occur? The bride -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (The bride, wears, pearls) -> The bride (2772ms) What day did Pearl Harbor occur? Curtiss -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Curtiss, married, Lena Pearl Neff) -> Curtiss (2783ms) What day did Pearl Harbor occur? Tanzi?s mom -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Tanzi?s mom, wears, pearls) -> Tanzi?s mom (2385ms) What day did Pearl Harbor occur? aprons -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (aprons, wear, pearls) -> aprons (2783ms) What day did Pearl Harbor occur? A soft-spoken classical pianist -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (A soft-spoken classical pianist, wore, pearls) -> A soft-spoken classical pianist (2775ms) What day did Pearl Harbor occur? the Middle Ages -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (the Middle Ages, wore, pearls) -> the Middle Ages (2780ms) What day did Pearl Harbor occur? pumps -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (pumps, wear, pearls) -> pumps (2783ms) What day did Pearl Harbor occur? RFN:Melvin -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (RFN:Melvin, was married to, Pearl Bailey) -> RFN:Melvin (2421ms) What day did Pearl Harbor occur? Ben 's sister -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Ben 's sister, married, Pearl 's brother) -> Ben 's sister (2563ms) What day did Pearl Harbor occur? bridal party -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (bridal party, wear, pearls) -> bridal party (2772ms) What day did Pearl Harbor occur? Donald M. -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Donald M., married, Pearl Murphy) -> Donald M. (2775ms) What day did Pearl Harbor occur? Weddings Brides -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Weddings Brides, have worn, pearls) -> Weddings Brides (2785ms) What day did Pearl Harbor occur? Sydney -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Sydney, was wearing, pearls) -> Sydney (2778ms) What day did Pearl Harbor occur? Gordon Wiley Merrifield -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Gordon Wiley Merrifield, married, Pearl) -> Gordon Wiley Merrifield (2563ms) What day did Pearl Harbor occur? Edwin -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Edwin, was married to, Lillian Pearl Snowden) -> Edwin (2772ms) What day did Pearl Harbor occur? pearl necklaces and knights -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (pearl necklaces and knights, wore, pearls) -> pearl necklaces and knights (2775ms) What day did Pearl Harbor occur? line -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (line, were wearing, pearls) -> line (2783ms) What day did Pearl Harbor occur? youre -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (youre, wearing, pearls) -> youre (2785ms) What day did Pearl Harbor occur? High Havoc ? Kitty -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (High Havoc ? Kitty, wore, pearls) -> High Havoc ? Kitty (2772ms) What day did Pearl Harbor occur? Bellson -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Bellson, married, the singer and entertainer Pearl Bailey) -> Bellson (2772ms) What day did Pearl Harbor occur? Julia and Julie -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Julia and Julie, wore, pearls) -> Julia and Julie (2562ms) What day did Pearl Harbor occur? Barbara -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Barbara, wore, pearls) -> Barbara (2620ms) What day did Pearl Harbor occur? 1892 Dr. Burritt -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (1892 Dr. Burritt, married, Pearl Budd) -> 1892 Dr. Burritt (2780ms) What day did Pearl Harbor occur? Jenkins -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Jenkins, married, Pearl Decker) -> Jenkins (2785ms) What day did Pearl Harbor occur? the wife -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (the wife, wore, pearls) -> the wife (2778ms) What day did Pearl Harbor occur? Women -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Women, can wear, pearls) -> Women (2780ms) What day did Pearl Harbor occur? Girls -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Girls, Wear, Pearls) -> Girls (2780ms) What day did Pearl Harbor occur? Ladies -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Ladies, wore, pearls) -> Ladies (2775ms) What day did Pearl Harbor occur? an energetic woman -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (an energetic woman, wore, pearls) -> an energetic woman (2421ms) What day did Pearl Harbor occur? May 1870 -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (May 1870, was married to, Eunice Pearl Adkins) -> May 1870 (2783ms) What day did Pearl Harbor occur? Meghnad?s wife -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Meghnad?s wife, wore, pearls) -> Meghnad?s wife (2772ms) What day did Pearl Harbor occur? Divers -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Divers, wear, pearls) -> Divers (2775ms) What day did Pearl Harbor occur? a pig -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (a pig, wearing, pearls) -> a pig (2785ms) What day did Pearl Harbor occur? George W -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (George W, married, Leona Pearl Patterson) -> George W (2620ms) What day did Pearl Harbor occur? person -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (person, should wear, pearl) -> person (2783ms) What day did Pearl Harbor occur? Gladys -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Gladys, married, Pearl Cowden) -> Gladys (2785ms) What day did Pearl Harbor occur? a bride -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (a bride, wears, pearls) -> a bride (2785ms) What day did Pearl Harbor occur? June Cleaver -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (June Cleaver, wears, pearls) -> June Cleaver (2775ms) What day did Pearl Harbor occur? an old lady -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (an old lady, wearing, pearls) -> an old lady (2386ms) What day did Pearl Harbor occur? Mary -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Mary, wears, pearls) -> Mary (2785ms) What day did Pearl Harbor occur? the little girl -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (the little girl, wearing, pearls) -> the little girl (2772ms) What day did Pearl Harbor occur? Gail Shank -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Gail Shank, married, Pearl Snyder) -> Gail Shank (2783ms) What day did Pearl Harbor occur? Breakfast -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Breakfast, wear, pearls) -> Breakfast (2772ms) What day did Pearl Harbor occur? trimmings -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (trimmings, wore, pearls) -> trimmings (2785ms) What day did Pearl Harbor occur? Malabar -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Malabar, wear, pearls) -> Malabar (2775ms) What day did Pearl Harbor occur? Lov -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Lov, is married to, Ellie May?s younger sister Pearl) -> Lov (2778ms) What day did Pearl Harbor occur? Matt -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Matt, wears, pearls) -> Matt (2775ms) What day did Pearl Harbor occur? the Upper Mississippi River Valley -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (the Upper Mississippi River Valley, were wearing, pearls) -> the Upper Mississippi River Valley (2620ms) What day did Pearl Harbor occur? accessories women -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (accessories women, wore, pearls) -> accessories women (2778ms) What day did Pearl Harbor occur? no man -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (no man, to wear, pearls) -> no man (2421ms) What day did Pearl Harbor occur? more women -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (more women, are wearing, pearls) -> more women (2775ms) What day did Pearl Harbor occur? a cartoon siamese cat -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (a cartoon siamese cat, wearing, pearls) -> a cartoon siamese cat (2620ms) What day did Pearl Harbor occur? the earliest people -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (the earliest people, to wear, pearls) -> the earliest people (2471ms) What day did Pearl Harbor occur? Father Alexander -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Father Alexander, married, Presbytera Pearl Veronis) -> Father Alexander (2775ms) What day did Pearl Harbor occur? Ken -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Ken, married, Norma Pearl Stewart October 4 , 1952) -> Ken (2778ms) What day did Pearl Harbor occur? Anthrax -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Anthrax, is married to, Pearl Aday) -> Anthrax (2785ms) What day did Pearl Harbor occur? Dont -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Dont, wear, pearls) -> Dont (2778ms) What day did Pearl Harbor occur? Jack Roark Tingle -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Jack Roark Tingle, married, Ladyne Pearl Sullivan) -> Jack Roark Tingle (2775ms) What day did Pearl Harbor occur? Brigitte -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Brigitte, was wearing, pearls) -> Brigitte (2785ms) What day did Pearl Harbor occur? every woman -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (every woman, wears, pearl) -> every woman (2785ms) What day did Pearl Harbor occur? The Priestesses -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (The Priestesses, are wearing, pearls) -> The Priestesses (2778ms) What day did Pearl Harbor occur? the president -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (the president, wore, pearls) -> the president (2780ms) What day did Pearl Harbor occur? Murphy -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Murphy, married, Pearl Harriett Adams) -> Murphy (2772ms) What day did Pearl Harbor occur? John -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (John, married, Maude Pearl Wheeler December 23 , 1941) -> John (2620ms) What day did Pearl Harbor occur? the U. S. Army -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (the U. S. Army, is married to, Pearl Cushing) -> the U. S. Army (2775ms) What day did Pearl Harbor occur? a girl -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (a girl, wearing, pearls) -> a girl (2471ms) What day did Pearl Harbor occur? Don?t -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Don?t, wear, pearls) -> Don?t (2422ms) What day did Pearl Harbor occur? everybody -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (everybody, wears, pearls) -> everybody (2780ms) What day did Pearl Harbor occur? Elizabeth -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Elizabeth, married, Jesse Pearl Thomas) -> Elizabeth (2783ms) What day did Pearl Harbor occur? Amzira -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Amzira, would marry, Pearl Dimple Johnson) -> Amzira (2780ms) What day did Pearl Harbor occur? Walter and Frank KINGSLEY -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Walter and Frank KINGSLEY, married, Hazel and Pearl) -> Walter and Frank KINGSLEY (2775ms) What day did Pearl Harbor occur? Ancient Greeks -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Ancient Greeks, believed wearing, pearls) -> Ancient Greeks (2780ms) What day did Pearl Harbor occur? Juanita Preudhomme -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Juanita Preudhomme, wearing, pearls) -> Juanita Preudhomme (2471ms) What day did Pearl Harbor occur? Margaret White -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Margaret White, was to be married to, Thomas Pearl) -> Margaret White (2775ms) What day did Pearl Harbor occur? the girl -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (the girl, wears, pearls) -> the girl (2471ms) What day did Pearl Harbor occur? the oldest Rankin child -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (the oldest Rankin child, had married, Wilmer Pearl Flegal) -> the oldest Rankin child (2778ms) What day did Pearl Harbor occur? a man -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (a man, wearing, pearls) -> a man (2772ms) What day did Pearl Harbor occur? Be fashion -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Be fashion, wear, pearls) -> Be fashion (2772ms) What day did Pearl Harbor occur? 1858 -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (1858, was married to, Margaret Pearl) -> 1858 (2783ms) What day did Pearl Harbor occur? Cleopatra -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Cleopatra, wore, pearls) -> Cleopatra (2778ms) What day did Pearl Harbor occur? Clifford -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Clifford, married, Pearl Contant) -> Clifford (2780ms) What day did Pearl Harbor occur? Barbara bush -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Barbara bush, wore, pearls) -> Barbara bush (2778ms) What day did Pearl Harbor occur? Shes -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Shes, wearing, pearls) -> Shes (2421ms) What day did Pearl Harbor occur? Dr. Azevedo -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Dr. Azevedo, married, Pearl S. Schell) -> Dr. Azevedo (2778ms) What day did Pearl Harbor occur? Any woman -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Any woman, can wear, pearls) -> Any woman (2775ms) What day did Pearl Harbor occur? Viola -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Viola, married, Calvin Pearl LEE) -> Viola (2783ms) What day did Pearl Harbor occur? Fletch -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Fletch, married, Pearl Howard) -> Fletch (2778ms) What day did Pearl Harbor occur? ancient and modern times -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (ancient and modern times, have worn, pearls) -> ancient and modern times (2783ms) What day did Pearl Harbor occur? Ruth Etting -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Ruth Etting, wore, pearls) -> Ruth Etting (2783ms) What day did Pearl Harbor occur? William A. Stockwell -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (William A. Stockwell, married, Pearl Leone Morrison) -> William A. Stockwell (2563ms) What day did Pearl Harbor occur? hats and women -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (hats and women, wore, pearls) -> hats and women (2620ms) What day did Pearl Harbor occur? Mrs. Cleaver -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Mrs. Cleaver, wore, pearls) -> Mrs. Cleaver (2421ms) What day did Pearl Harbor occur? The next child -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (The next child, was married to, Pearl Marlin) -> The next child (2562ms) What day did Pearl Harbor occur? the late Queen Mother -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (the late Queen Mother, wore, pearls) -> the late Queen Mother (2785ms) What day did Pearl Harbor occur? queen alexandra -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (queen alexandra, wore, pearls) -> queen alexandra (2775ms) What day did Pearl Harbor occur? Ruby -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Ruby, married, Pearl Purdin) -> Ruby (2783ms) What day did Pearl Harbor occur? Louis Bower -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Louis Bower, married, Pearl Fennell) -> Louis Bower (2780ms) What day did Pearl Harbor occur? The ancient Greeks -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (The ancient Greeks, wore, pearls) -> The ancient Greeks (2778ms) What day did Pearl Harbor occur? Walter -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Walter, married, Pearl Cebular) -> Walter (2772ms) What day did Pearl Harbor occur? 1911 -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (1911, was married to, Pearl Gardner) -> 1911 (2772ms) What day did Pearl Harbor occur? a frilly apron -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (a frilly apron, wear, pearls) -> a frilly apron (2471ms) What day did Pearl Harbor occur? a woman -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (a woman, wearing, pearls) -> a woman (2785ms) What day did Pearl Harbor occur? a person -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (a person, wears, pearls) -> a person (2620ms) What day did Pearl Harbor occur? Mr. Pence -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Mr. Pence, was married to, Miss Pearl Outland) -> Mr. Pence (2620ms) What day did Pearl Harbor occur? ?? ? ??RAYMOND LEWIS HUDSON -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (?? ? ??RAYMOND LEWIS HUDSON, married, MONA PEARL CONDON) -> ?? ? ??RAYMOND LEWIS HUDSON (2471ms) What day did Pearl Harbor occur? First Lady Jackie O -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (First Lady Jackie O, wore faux, pearls) -> First Lady Jackie O (2783ms) What day did Pearl Harbor occur? Michelle -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Michelle, wears, pearls) -> Michelle (2783ms) What day did Pearl Harbor occur? every lady -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (every lady, can wear, pearls) -> every lady (2563ms) What day did Pearl Harbor occur? Gallant knights -0.0 What day did Pearl Harbor occur? -> $x: ($x, wear, pearl) -> (Gallant knights, wore, pearls) -> Gallant knights (2778ms) What day did Pearl Harbor occur? Mr Grening -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Mr Grening, was married to, Pearl Fink) -> Mr Grening (2780ms) What day did Pearl Harbor occur? Ralph D. Sweet -0.0 What day did Pearl Harbor occur? -> $x: ($x, marry, pearl) -> (Ralph D. Sweet, married, Hessie Pearl Raper) -> Ralph D. Sweet (2780ms) What day did Pearl Harbor occur? Crush -0.11111111111200003 What day did Pearl Harbor occur? -> $x: ($x, happen to, reaction) -> (Crush, also happens to be, my initial reaction) -> Crush (2787ms) What day did Pearl Harbor occur? The crater -0.11111111111200003 What day did Pearl Harbor occur? -> $x: ($x, happen to, sulfur) -> (The crater, happens to be, a sulfur mine) -> The crater (2787ms) What day did Pearl Harbor occur? the story -0.11111111111200003 What day did Pearl Harbor occur? -> $x: ($x, happen to, reaction) -> (the story, happened to, the three , subsequent public reactions) -> the story (2787ms) What day did Pearl Harbor occur? notice -0.11111111111200003 What day did Pearl Harbor occur? -> $x: ($x, happen to, reaction) -> (notice, happens prior to, his verbal reaction) -> notice (2787ms) What day did Pearl Harbor occur? The same -0.11111111111200003 What day did Pearl Harbor occur? -> $x: ($x, happen to, tsunami) -> (The same, happened to, the Tsunami funds) -> The same (2787ms) What day did Pearl Harbor occur? a smile -0.11111111111200003 What day did Pearl Harbor occur? -> $x: ($x, happen to, reaction) -> (a smile, happens to be, the same reaction) -> a smile (2787ms) What day did Pearl Harbor occur? researchers -0.11111111111200003 What day did Pearl Harbor occur? -> $x: ($x, happen to, tornado) -> (researchers, has happened to, the tornadoes) -> researchers (2788ms) What day did Pearl Harbor occur? Karstens -0.11111111111200003 What day did Pearl Harbor occur? -> $x: ($x, happen to, tornado) -> (Karstens, happens to, a tornado) -> Karstens (2785ms) What day did Pearl Harbor occur? the tongue -0.11111111111200003 What day did Pearl Harbor occur? -> $x: ($x, happen to, reaction) -> (the tongue, can happen due to, an allergic reaction) -> the tongue (2787ms) What day did Pearl Harbor occur? a ?how -0.11111111111200003 What day did Pearl Harbor occur? -> $x: ($x, happen to, reaction) -> (a ?how, allow this to happen, ? reaction) -> a ?how (2787ms) What day did Pearl Harbor occur? a summer camp -0.11111111111200003 What day did Pearl Harbor occur? -> $x: ($x, happen to, tornado) -> (a summer camp, happens to be located in, Tornado Alley) -> a summer camp (2789ms) What day did Pearl Harbor occur? birds -0.11111111111200003 What day did Pearl Harbor occur? -> $x: ($x, happen to, solar eclipse) -> (birds, just happens to coincide with, a Total Solar Eclipse) -> birds (2788ms) What day did Pearl Harbor occur? visual miscues -0.11111111111200003 What day did Pearl Harbor occur? -> $x: ($x, happen to, reaction) -> (visual miscues, often happen due to, natural physical reactions) -> visual miscues (2787ms) What day did Pearl Harbor occur? Coach -0.11111111111200003 What day did Pearl Harbor occur? -> $x: ($x, happen to, reaction) -> (Coach, happened to strike, the same reaction) -> Coach (2789ms) What day did Pearl Harbor occur? Copper -0.11111111111200003 What day did Pearl Harbor occur? -> $x: ($x, happen to, reaction) -> (Copper, happens to be, the most abundant post-reaction element) -> Copper (2787ms) What day did Pearl Harbor occur? Ratfink -0.11111111111200003 What day did Pearl Harbor occur? -> $x: ($x, happen to, tsunami) -> (Ratfink, just happens to get, the Tsunami program) -> Ratfink (2787ms) What day did Pearl Harbor occur? Exercise -0.11111111111200003 What day did Pearl Harbor occur? -> $x: ($x, happen to, reaction) -> (Exercise, will happen to, the following reactions) -> Exercise (2787ms) What day did Pearl Harbor occur? Lubbock -0.11111111111899999 What day did Pearl Harbor occur? -> $x: (retaliation, occur in, $x) -> (the retaliation, occurred in, Lubbock) -> Lubbock (2791ms) What day did Pearl Harbor occur? 100 users/year -0.11111111111899999 What day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (The Pearl Index, occur in, 100 users/year) -> 100 users/year (2793ms) What day did Pearl Harbor occur? Ceylon -0.11111111111899999 What day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (little pearl fishing, now occurs in, Ceylon) -> Ceylon (2791ms) What day did Pearl Harbor occur? colours -0.11111111111899999 What day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (Freshwater pearls, occur in, colours) -> colours (2791ms) What day did Pearl Harbor occur? every color -0.11111111111899999 What day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (Chinese freshwater pearls, occurs in, every color) -> every color (2791ms) What day did Pearl Harbor occur? different ways -0.11111111111899999 What day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (Pearl formation, occurs in, different ways) -> different ways (2791ms) What day did Pearl Harbor occur? Darwin and Bynoe Harbours -0.11111111111899999 What day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (Pearl cultivation, also occurs in, Darwin and Bynoe Harbours) -> Darwin and Bynoe Harbours (2792ms) What day did Pearl Harbor occur? the rivers -0.11111111111899999 What day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (Freshwater pearls, occur in, the rivers) -> the rivers (2791ms) What day did Pearl Harbor occur? nature -0.11111111111899999 What day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (pearls, occur in, nature) -> nature (2794ms) What day did Pearl Harbor occur? temples -0.11111111111899999 What day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (Pearl, occurred in, temples) -> temples (2793ms) What day did Pearl Harbor occur? 100 user years -0.11111111111899999 What day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (The Pearl Index, occur in, 100 user years) -> 100 user years (2790ms) What day did Pearl Harbor occur? design -0.11111111111899999 What day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (azure and fruit pearls, occur this way in, design) -> design (2793ms) What day did Pearl Harbor occur? North America -0.11111111111899999 What day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (Nine ground pearl species, are known to occur in, North America) -> North America (2790ms) What day did Pearl Harbor occur? spherical form -0.11111111111899999 What day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (Conch pearls, frequently occur in, spherical form) -> spherical form (2794ms) What day did Pearl Harbor occur? oysters -0.11111111111899999 What day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (Natural pearls, occur accidentally in, oysters) -> oysters (2794ms) What day did Pearl Harbor occur? a wide range -0.11111111111899999 What day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (Pearls, occur in, a wide range) -> a wide range (2793ms) What day did Pearl Harbor occur? molluscs -0.11111111111899999 What day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (Pearls, occur naturally in, molluscs) -> molluscs (2793ms) What day did Pearl Harbor occur? China -0.11111111111899999 What day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (today?s freshwater pearl production, occurs in, China) -> China (2790ms) What day did Pearl Harbor occur? natrure -0.11111111111899999 What day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (The very rarest pearls, occurs in, natrure) -> natrure (2794ms) What day did Pearl Harbor occur? interesting shapes -0.11111111111899999 What day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (Cultured freshwater pearls, also occur in, interesting shapes) -> interesting shapes (2793ms) What day did Pearl Harbor occur? mussels -0.11111111111899999 What day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (Natural freshwater pearls, occur in, mussels) -> mussels (2792ms) What day did Pearl Harbor occur? a spherical shape -0.11111111111899999 What day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (a natural pearl, occur in, a spherical shape) -> a spherical shape (2791ms) What day did Pearl Harbor occur? one oyster -0.11111111111899999 What day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (Several pearls, may occur in, one oyster) -> one oyster (2790ms) What day did Pearl Harbor occur? the newborn -0.11111111111899999 What day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (Epstein pearls, occur only in, the newborn) -> the newborn (2793ms) What day did Pearl Harbor occur? the wild -0.11111111111899999 What day did Pearl Harbor occur? -> $x: (pearl, occur in, $x) -> (The very rarest pearls, occurs in, the wild) -> the wild (2794ms) What day did Pearl Harbor occur? concert -0.11111111111899999 What day did Pearl Harbor occur? -> $x: (retaliation, occur in, $x) -> (the retaliation, occurred in, concert) -> concert (2792ms) What day did Pearl Harbor occur? last year -0.333333333333 What day did Pearl Harbor occur? -> $x: ($x, date be, tsunami) -> (last year, was the date for, the huge pacific Tsunami) -> last year (2793ms) What day did Pearl Harbor occur? Bada -0.444444444444 What day did Pearl Harbor occur? -> $x: ($x, discover, reaction) -> (Bada, discovered that, the reactions were producing chemicals) -> Bada (2794ms) What day did Pearl Harbor occur? scientists -0.444444444444 What day did Pearl Harbor occur? -> $x: ($x, discover, reaction) -> (scientists, has discovered, a new chemical reaction) -> scientists (2794ms) What day did Pearl Harbor occur? Jeffery -0.444444444444 What day did Pearl Harbor occur? -> $x: ($x, discover, sulfur) -> (Jeffery, has discovered, sulfur compounds) -> Jeffery (2795ms) What day did Pearl Harbor occur? A scientist -0.444444444444 What day did Pearl Harbor occur? -> $x: ($x, discover, reaction) -> (A scientist, might discover, a new chemical reaction) -> A scientist (2794ms) What day did Pearl Harbor occur? the true economic picture -0.444444444444 What day did Pearl Harbor occur? -> $x: ($x, discover, reaction) -> (the true economic picture, is discovered, the reaction) -> the true economic picture (2794ms) What day did Pearl Harbor occur? the Russians -0.444444444444 What day did Pearl Harbor occur? -> $x: ($x, discover, reaction) -> (the Russians, discover the joys of, an uncontrolled reaction) -> the Russians (2794ms) What day did Pearl Harbor occur? Linda -0.444444444444 What day did Pearl Harbor occur? -> $x: ($x, discover, tornado) -> (Linda, discovered, SpinningTornado) -> Linda (2795ms) What day did Pearl Harbor occur? Research -0.444444444444 What day did Pearl Harbor occur? -> $x: ($x, discover, reaction) -> (Research, has yet to discover, this same reaction) -> Research (2795ms) What day did Pearl Harbor occur? The telescope -0.444444444444 What day did Pearl Harbor occur? -> $x: ($x, discover, tsunami) -> (The telescope, has also discovered, solar tsunamis) -> The telescope (2794ms) What day did Pearl Harbor occur? rusting -0.444444444444 What day did Pearl Harbor occur? -> $x: ($x, discover, reaction) -> (rusting, has been discovered to be, the reaction) -> rusting (2795ms) What day did Pearl Harbor occur? Students -0.444444444444 What day did Pearl Harbor occur? -> $x: ($x, discover, reaction) -> (Students, wanted to discover, every possible audience reaction) -> Students (2795ms) What day did Pearl Harbor occur? the food companies -0.444444444444 What day did Pearl Harbor occur? -> $x: ($x, discover, reaction) -> (the food companies, discovered to induce, Maillard reactions) -> the food companies (2794ms) What day did Pearl Harbor occur? Dr. Schwabe -0.444444444444 What day did Pearl Harbor occur? -> $x: ($x, discover, sulfur) -> (Dr. Schwabe, discovered a species of, purple sulfur bacteria) -> Dr. Schwabe (2794ms) What day did Pearl Harbor occur? The Eclipse Comet -0.444444444444 What day did Pearl Harbor occur? -> $x: ($x, discover, solar eclipse) -> (The Eclipse Comet, is discovered during, a total solar eclipse) -> The Eclipse Comet (2794ms) What day did Pearl Harbor occur? the 2010 class -0.444444444449 What day did Pearl Harbor occur? -> $x: ($x, happen in, harbor) -> (the 2010 class, is happening in, Chicago harbors) -> the 2010 class (2795ms) What day did Pearl Harbor occur? a truck collision -0.444444444449 What day did Pearl Harbor occur? -> $x: ($x, happen in, harbor) -> (a truck collision, happened in, the Baltimore Harbor Tunnel) -> a truck collision (2794ms) What day did Pearl Harbor occur? the particulars -0.444444444449 What day did Pearl Harbor occur? -> $x: ($x, happen in, harbor) -> (the particulars, is happening in, Benton Harbor Michigan) -> the particulars (2795ms) What day did Pearl Harbor occur? such logistic attacks -0.444444444449 What day did Pearl Harbor occur? -> $x: ($x, happen in, harbor) -> (such logistic attacks, happen in, Karachi harbor) -> such logistic attacks (2795ms) What day did Pearl Harbor occur? San Juan Island Update -0.444444444449 What day did Pearl Harbor occur? -> $x: ($x, happen in, harbor) -> (San Juan Island Update, 's happening in, Friday Harbor) -> San Juan Island Update (2794ms) What day did Pearl Harbor occur? a Spanish or Italian sailor -0.444444444449 What day did Pearl Harbor occur? -> $x: ($x, happen in, harbor) -> (a Spanish or Italian sailor, happened in, the harbor) -> a Spanish or Italian sailor (2795ms) What day did Pearl Harbor occur? the mystery -0.444444444449 What day did Pearl Harbor occur? -> $x: ($x, happen in, harbor) -> (the mystery, happened in, that harbor) -> the mystery (2795ms) What day did Pearl Harbor occur? disruption -0.444444444449 What day did Pearl Harbor occur? -> $x: ($x, happen in, harbor) -> (disruption, happen in, Gig Harbor) -> disruption (2795ms) What day did Pearl Harbor occur? the past -0.44444444445 What day did Pearl Harbor occur? -> $x: (retaliation, happen in, $x) -> (retaliation, has happened in, the past) -> the past (2795ms) What day did Pearl Harbor occur? a practical way -0.44444444445 What day did Pearl Harbor occur? -> $x: (retaliation, happen in, $x) -> (retaliation, happens in, a practical way) -> a practical way (2795ms) What day did Pearl Harbor occur? secret -0.44444444445 What day did Pearl Harbor occur? -> $x: (pearl, happen in, $x) -> (the pearl, is happening in, secret) -> secret (2795ms) What day did Pearl Harbor occur? Pittsburgh -0.44444444445 What day did Pearl Harbor occur? -> $x: (pearl, happen in, $x) -> (Pearl and Ahmed, happened in, Pittsburgh) -> Pittsburgh (2795ms) How large is it? Muslims 0.333333333332 How large is it? -> $x: ($x, be population of, world) -> (Muslims, is the Muslim population of, the World) -> Muslims (1225ms) How large is it? Women 0.333333333332 How large is it? -> $x: ($x, be population of, world) -> (Women, are half the population of, the world) -> Women (1307ms) How large is it? Scripture 0.333333333332 How large is it? -> $x: ($x, be population of, world) -> (Scripture, is the Gentile population of, the world) -> Scripture (1307ms) How large is it? 3.08 108and 6.8 109 0.333333333332 How large is it? -> $x: ($x, be population of, world) -> (3.08 108and 6.8 109, is the population of, the world) -> 3.08 108and 6.8 109 (1307ms) How large is it? 1977 0.333333333332 How large is it? -> $x: ($x, be population of, world) -> (1977, are a global population of, more than 2 billion world) -> 1977 (1307ms) How large is it? Dear Earth Talk 0.333333333332 How large is it? -> $x: ($x, be population of, world) -> (Dear Earth Talk, are populations of, the world?s orca whales) -> Dear Earth Talk (1226ms) How large is it? GRUMP 0.333333333332 How large is it? -> $x: ($x, be population of, world) -> (GRUMP, is a Gridded Population of, the World) -> GRUMP (1307ms) How large is it? Ridgecrest 0.333333333332 How large is it? -> $x: ($x, be population of, world) -> (Ridgecrest, is nearly the entire population of, the world) -> Ridgecrest (1226ms) How large is it? Antarctica 0.333333333332 How large is it? -> $x: ($x, be population of, penguin) -> (Antarctica, are threatening populations of, penguins) -> Antarctica (1225ms) How large is it? the environmentalists 0.333333333332 How large is it? -> $x: ($x, be population of, world) -> (the environmentalists, is the entire population of, the world) -> the environmentalists (1307ms) How large is it? One problem 0.333333333332 How large is it? -> $x: ($x, be population of, object) -> (One problem, is a vast population of, objects) -> One problem (1050ms) How large is it? roughly 4.29 billion 0.333333333332 How large is it? -> $x: ($x, be population of, world) -> (roughly 4.29 billion, is roughly the population of, the world) -> roughly 4.29 billion (1307ms) How large is it? a disease 0.333333333332 How large is it? -> $x: ($x, be population of, world) -> (a disease, is eating much of the population, the world over) -> a disease (1226ms) How large is it? Muslims . 5 0.333333333332 How large is it? -> $x: ($x, be population of, world) -> (Muslims . 5, is the Muslim population of, the World) -> Muslims . 5 (1929ms) How large is it? Coal Population 0.333333333332 How large is it? -> $x: ($x, be population of, world) -> (Coal Population, is the population of, the world) -> Coal Population (1226ms) How large is it? the US 4 0.333333333332 How large is it? -> $x: ($x, be population of, world) -> (the US 4, is the Muslim population of, the World) -> the US 4 (1307ms) How large is it? Christ 0.333333333332 How large is it? -> $x: ($x, be population of, world) -> (Christ, is the population of, the world) -> Christ (1226ms) How large is it? type 0.333333333332 How large is it? -> $x: ($x, be population of, world) -> (type, is the population of, the world) -> type (1226ms) How large is it? The same 0.333333333331 How large is it? -> $x: ($x, be true about, size) -> (The same, is true about, the size) -> The same (1929ms) How large is it? Apple 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (Apple, could spread, the screen size) -> Apple (4613ms) How large is it? size 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (size, protected, int size) -> size (4686ms) How large is it? laminate poplar 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (laminate poplar, then shape to, popular sizes) -> laminate poplar (4704ms) How large is it? lesions 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (lesions, provide accurate measurements of, size) -> lesions (4660ms) How large is it? basic instance methods 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (basic instance methods, shape, { ^sizes) -> basic instance methods (4711ms) How large is it? the farm operation or residence 0.222222222221 How large is it? -> $x: ($x, value, size) -> (the farm operation or residence, are valued based on, their size) -> the farm operation or residence (4646ms) How large is it? cans 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (cans, shaped in, every conceivable size) -> cans (4697ms) How large is it? the API 0.222222222221 How large is it? -> $x: ($x, value, size) -> (the API, will check this value against, the size) -> the API (4575ms) How large is it? let?s 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (let?s, talk about, effect sizes) -> let?s (4702ms) How large is it? Double 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (Double, spread, trim size) -> Double (4651ms) How large is it? quality zips 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (quality zips, protect, your iPad Specifications Size) -> quality zips (4694ms) How large is it? U-Pack rates 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (U-Pack rates, talk about, equipment size) -> U-Pack rates (4713ms) How large is it? Hasheem Thabeet 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (Hasheem Thabeet, would provide, size) -> Hasheem Thabeet (4712ms) How large is it? Internal Medicine 0.222222222221 How large is it? -> $x: ($x, study, size) -> (Internal Medicine, published a study about, plate size) -> Internal Medicine (4704ms) How large is it? The pharmaceutical industry 0.222222222221 How large is it? -> $x: ($x, value, size) -> (The pharmaceutical industry, values, the sizing) -> The pharmaceutical industry (4712ms) How large is it? Implementation 0.222222222221 How large is it? -> $x: ($x, value, size) -> (Implementation, may return hardcoded values for, object size) -> Implementation (3555ms) How large is it? White color 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (White color, are provided, Size) -> White color (3555ms) How large is it? white tiles 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (white tiles, shaped, the size) -> white tiles (4620ms) How large is it? Prey 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (Prey, provide a wide range of, sizes) -> Prey (4627ms) How large is it? Scientists 0.222222222221 How large is it? -> $x: ($x, study, size) -> (Scientists, study, the sizes) -> Scientists (4708ms) How large is it? mOutputBuffer 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (mOutputBuffer, protected, final int mSmallWriteSize) -> mOutputBuffer (4714ms) How large is it? Cornell University 0.222222222221 How large is it? -> $x: ($x, study, size) -> (Cornell University, studied the diversity of, eye size) -> Cornell University (4598ms) How large is it? Builders 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (Builders, also protect, medium-sized buildings) -> Builders (4685ms) How large is it? Jesus 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (Jesus, was talking about, the size) -> Jesus (4550ms) How large is it? Normally one dispenser 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (Normally one dispenser, will protect, an average sized room) -> Normally one dispenser (4620ms) How large is it? The offer 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (The offer, also would protect, school days class sizes) -> The offer (4714ms) How large is it? Presentities 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (Presentities, SHOULD provide images of, sizes) -> Presentities (4598ms) How large is it? D?Anjou pears 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (D?Anjou pears, are evenly spread across, the size spectrum) -> D?Anjou pears (4702ms) How large is it? the nominal patent 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (the nominal patent, protected, market sizes) -> the nominal patent (4710ms) How large is it? Tree growth 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (Tree growth, is spreading to, medium size) -> Tree growth (4674ms) How large is it? New resources 0.222222222221 How large is it? -> $x: ($x, study, size) -> (New resources, inform study of, genome size) -> New resources (4708ms) How large is it? a piece 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (a piece, spread, the tiny nano-sized pieces) -> a piece (4702ms) How large is it? Haleya Priest Amherst MA 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (Haleya Priest Amherst MA, talk about, hole size research) -> Haleya Priest Amherst MA (4702ms) How large is it? The new valve 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (The new valve, spread, accommodates valves sizes) -> The new valve (4678ms) How large is it? Today nobody 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (Today nobody, is talking about, the size) -> Today nobody (4706ms) How large is it? the Okavango 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (the Okavango, spread to, its full size) -> the Okavango (4634ms) How large is it? Kitty 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (Kitty, shaped like, a cupcake Tin size) -> Kitty (4641ms) How large is it? FireHost 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (FireHost, protect, companies of all sizes) -> FireHost (4706ms) How large is it? Insight 0.222222222221 How large is it? -> $x: ($x, study, size) -> (Insight, did detailed studies on, the sizes) -> Insight (4702ms) How large is it? nevertheless other individuals 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (nevertheless other individuals, merely provide, sizes) -> nevertheless other individuals (4714ms) How large is it? Lafayette 0.222222222221 How large is it? -> $x: ($x, study, size) -> (Lafayette, has studied, body size) -> Lafayette (4702ms) How large is it? different vase 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (different vase, shaped, sizes) -> different vase (4550ms) How large is it? A July Quatsino Sound closure 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (A July Quatsino Sound closure, protects, leviathan-sized chinook) -> A July Quatsino Sound closure (4567ms) How large is it? size 8-12 and gloves 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (size 8-12 and gloves, will be provided by, size) -> size 8-12 and gloves (4689ms) How large is it? Gritty Travis Moen 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (Gritty Travis Moen, would provide, size) -> Gritty Travis Moen (4651ms) How large is it? no dimensions 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (no dimensions, provided as to, size) -> no dimensions (4710ms) How large is it? Foxwoods Casino 0.222222222221 How large is it? -> $x: ($x, value, size) -> (Foxwoods Casino, offers a great value for, any size) -> Foxwoods Casino (4620ms) How large is it? Cloud Computing definitions 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (Cloud Computing definitions, talk about, size) -> Cloud Computing definitions (4641ms) How large is it? nevertheless other manufacturers 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (nevertheless other manufacturers, merely provide, sizes) -> nevertheless other manufacturers (4686ms) How large is it? letter forms 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (letter forms, are shaped differently at, each size) -> letter forms (4660ms) How large is it? the slum clusters 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (the slum clusters, are spread out in, size) -> the slum clusters (4713ms) How large is it? 1 1/2 cup 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (1 1/2 cup, spread, Serving Size Related Recipes) -> 1 1/2 cup (4656ms) How large is it? the airplane 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (the airplane, shaped, the right size) -> the airplane (4674ms) How large is it? Johnson 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (Johnson, provides, size) -> Johnson (4712ms) How large is it? The very largest printers 0.222222222221 How large is it? -> $x: ($x, value, size) -> (The very largest printers, apparently see value in, size) -> The very largest printers (4686ms) How large is it? The Rig 0.222222222221 How large is it? -> $x: ($x, start as, size) -> (The Rig, out started life as, a pocket sized book) -> The Rig (4714ms) How large is it? window size 0.222222222221 How large is it? -> $x: ($x, value, size) -> (window size, values less than, the default size) -> window size (4713ms) How large is it? The Vol.2 0.222222222221 How large is it? -> $x: ($x, study, size) -> (The Vol.2, studies, the market size) -> The Vol.2 (4559ms) How large is it? i-95 0.222222222221 How large is it? -> $x: ($x, provide, dc area) -> (i-95, provides easy access to, the washington dc area) -> i-95 (4674ms) How large is it? two methods 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (two methods, are provided to, size) -> two methods (4634ms) How large is it? Wolf 0.222222222221 How large is it? -> $x: ($x, study, size) -> (Wolf, studied, the pupa size) -> Wolf (4704ms) How large is it? Diaphragm filter plates 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (Diaphragm filter plates, can be provided in, sizes) -> Diaphragm filter plates (4712ms) How large is it? research 0.222222222221 How large is it? -> $x: ($x, study, size) -> (research, is the study of, portion sizes) -> research (4651ms) How large is it? Plasma 0.222222222221 How large is it? -> $x: ($x, value, size) -> (Plasma, delivered great value in, large sizes) -> Plasma (4694ms) How large is it? Different birds 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (Different birds, may protect, different size territories) -> Different birds (4708ms) How large is it? assembly 0.222222222221 How large is it? -> $x: ($x, provide, dc area) -> (assembly, is provided in, Virginia DC area) -> assembly (4710ms) How large is it? class size 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (class size, talked about, class size and overcrowding) -> class size (4575ms) How large is it? The larger 0.222222222221 How large is it? -> $x: ($x, be population of, earth) -> (The larger, is the population of, the earth) -> The larger (4627ms) How large is it? A canine femoral stem system 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (A canine femoral stem system, provides a set of, sizes) -> A canine femoral stem system (4714ms) How large is it? The Post 0.222222222221 How large is it? -> $x: ($x, provide, dc area) -> (The Post, also provides a guide to, all the DC area bookstores) -> The Post (4708ms) How large is it? the USGS 0.222222222221 How large is it? -> $x: ($x, study, size) -> (the USGS, studied, apparent field size increases) -> the USGS (4694ms) How large is it? 100 % 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (100 %, spread, = 0, size =5) -> 100 % (4605ms) How large is it? the material 0.222222222221 How large is it? -> $x: ($x, value, size) -> (the material, enter the known values of, cutter size) -> the material (4682ms) How large is it? the only population 0.222222222221 How large is it? -> $x: ($x, study, size) -> (the only population, has been studied for, population size) -> the only population (4682ms) How large is it? Identifying captions 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (Identifying captions, provide information on, size) -> Identifying captions (4627ms) How large is it? Mix 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (Mix, shape into, walnut-size balls) -> Mix (4656ms) How large is it? licensees 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (licensees, are provided based upon, size) -> licensees (4591ms) How large is it? a small discolored white/pale or brown spot 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (a small discolored white/pale or brown spot, spreads in, size) -> a small discolored white/pale or brown spot (4711ms) How large is it? top 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (top, provides a scale for, size) -> top (4620ms) How large is it? lights 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (lights, provide information about, size) -> lights (4646ms) How large is it? 3.0 - Calculates weight 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (3.0 - Calculates weight, shapes, sizes cuts) -> 3.0 - Calculates weight (4591ms) How large is it? Drobo 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (Drobo, also provides detailed instructions for, sizing) -> Drobo (4712ms) How large is it? walking at least six miles per week 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (walking at least six miles per week, may protect, brain size) -> walking at least six miles per week (4634ms) How large is it? white beard 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (white beard, spread to twice, its size) -> white beard (4665ms) How large is it? School reformers 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (School reformers, talk about reducing, class size) -> School reformers (4613ms) How large is it? any further 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (any further, talk about, image sizing) -> any further (4697ms) How large is it? Congress 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (Congress, talked about reducing, the size) -> Congress (4613ms) How large is it? a double page 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (a double page, spread in, size) -> a double page (4706ms) How large is it? A six-story museum 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (A six-story museum, shaped like, a full-sized ocean liner) -> A six-story museum (4704ms) How large is it? Well-managed gift planning 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (Well-managed gift planning, can protect, the size) -> Well-managed gift planning (4613ms) How large is it? the buffer 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (the buffer, must provide an area of, size) -> the buffer (4706ms) How large is it? The company 0.222222222221 How large is it? -> $x: ($x, start as, size) -> (The company, started as, a half size printer) -> The company (4646ms) How large is it? Kev 0.222222222221 How large is it? -> $x: ($x, study, size) -> (Kev, studied, the size) -> Kev (4559ms) How large is it? Implementations 0.222222222221 How large is it? -> $x: ($x, value, size) -> (Implementations, may return hardcoded values for, object size) -> Implementations (4708ms) How large is it? Skaters 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (Skaters, talk about, the size) -> Skaters (4598ms) How large is it? Janus 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (Janus, has an irregular shape with, a size) -> Janus (4682ms) How large is it? The wart attack 0.222222222221 How large is it? -> $x: ($x, start as, size) -> (The wart attack, started off as, a chewing gum size) -> The wart attack (4656ms) How large is it? never before 0.222222222221 How large is it? -> $x: ($x, study, size) -> (never before, only study, the size) -> never before (4591ms) How large is it? ovarian cancer 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (ovarian cancer, can spread to, a considerable size) -> ovarian cancer (1929ms) How large is it? Welsh 0.222222222221 How large is it? -> $x: ($x, study, size) -> (Welsh, studied, the size) -> Welsh (4575ms) How large is it? Sestak 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (Sestak, talked about getting, the size) -> Sestak (4605ms) How large is it? Object 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (Object, protected, boolean canSetSourceRenderSize) -> Object (4713ms) How large is it? The sides , crown and front 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (The sides , crown and front, are shaped to fit, the size) -> The sides , crown and front (4646ms) How large is it? hoop stress 0.222222222221 How large is it? -> $x: ($x, value, size) -> (hoop stress, values, any size tank) -> hoop stress (4689ms) How large is it? The radiologist 0.222222222221 How large is it? -> $x: ($x, study, size) -> (The radiologist, will study, the size and shape) -> The radiologist (4669ms) How large is it? Site 0.222222222221 How large is it? -> $x: ($x, provide, dc area) -> (Site, provides, information Washington D.C. area real estate) -> Site (4702ms) How large is it? women 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (women, get in shape without adding, size) -> women (4656ms) How large is it? order 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (order, protect, your LifeSize product investment) -> order (4711ms) How large is it? 13 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (13, is uniquely shaped, size Plaque Style clock) -> 13 (4575ms) How large is it? Berbers 0.222222222221 How large is it? -> $x: ($x, value, size) -> (Berbers, valued, less the size) -> Berbers (4708ms) How large is it? the moor 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (the moor, shapes, their size) -> the moor (4678ms) How large is it? stocks 0.222222222221 How large is it? -> $x: ($x, value, size) -> (stocks, were valued at twice, the size) -> stocks (3555ms) How large is it? mSize 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (mSize, protected, int mSize Number) -> mSize (4598ms) How large is it? only a round sleeve 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (only a round sleeve, shaped with, a size) -> only a round sleeve (4694ms) How large is it? Canvas 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (Canvas, protected with, acid free sizing) -> Canvas (4575ms) How large is it? Queens Park 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (Queens Park, spread out, seven white queen-sized sheets) -> Queens Park (4674ms) How large is it? Expressive eyes 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (Expressive eyes, are shaped, well sized) -> Expressive eyes (4678ms) How large is it? Diamond 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (Diamond, shaped over, sized lot) -> Diamond (4627ms) How large is it? Teardrop 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (Teardrop, shaped, stone size) -> Teardrop (4542ms) How large is it? adjustable styrofoam inserts 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (adjustable styrofoam inserts, protect, any size TV) -> adjustable styrofoam inserts (4559ms) How large is it? Entrants 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (Entrants, must provide Sponsor with, size) -> Entrants (4682ms) How large is it? the wound 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (the wound, spreads in, size) -> the wound (4646ms) How large is it? Texans 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (Texans, are always talking about, size) -> Texans (4583ms) How large is it? The scale bars 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (The scale bars, provide an indication of, size) -> The scale bars (4598ms) How large is it? cacheSize 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (cacheSize, protected, int cacheSize Number) -> cacheSize (4708ms) How large is it? the Canadian province 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (the Canadian province, spreads over, the size) -> the Canadian province (4641ms) How large is it? year 0.222222222221 How large is it? -> $x: ($x, value, size) -> (year, is great value to, a medium sized business) -> year (4583ms) How large is it? a film 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (a film, spread, the size) -> a film (4674ms) How large is it? Pizzas 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (Pizzas, can easily be different shapes as well as, sizes) -> Pizzas (4613ms) How large is it? The South Sea pearl 0.222222222221 How large is it? -> $x: ($x, value, size) -> (The South Sea pearl, is valued for, its size) -> The South Sea pearl (4598ms) How large is it? a geodesist 0.222222222221 How large is it? -> $x: ($x, study, size) -> (a geodesist, studies, the size) -> a geodesist (4706ms) How large is it? Let?s 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (Let?s, just talk about, size) -> Let?s (4598ms) How large is it? art 0.222222222221 How large is it? -> $x: ($x, value, size) -> (art, is valued by, its size) -> art (3555ms) How large is it? 0, colour shade 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (0, colour shade, spread as, 4 and size) -> 0, colour shade (4689ms) How large is it? the 2 tons 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (the 2 tons, spread out over, the size) -> the 2 tons (4605ms) How large is it? a food 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (a food, spread, the size) -> a food (4706ms) How large is it? youre 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (youre, talking about, class sizes) -> youre (4713ms) How large is it? old saw blades 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (old saw blades, could be shaped into, suitable-size scrapers) -> old saw blades (4710ms) How large is it? The initiative 0.222222222221 How large is it? -> $x: ($x, study, size) -> (The initiative, is the first study of, its size) -> The initiative (4621ms) How large is it? Researchers 0.222222222221 How large is it? -> $x: ($x, study, size) -> (Researchers, will study, different sizes and densities) -> Researchers (4678ms) How large is it? electrical cord suction cup support 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (electrical cord suction cup support, provided, Size) -> electrical cord suction cup support (4674ms) How large is it? The 11-gallon trunk 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (The 11-gallon trunk, protects, a medium-sized bag) -> The 11-gallon trunk (4441ms) How large is it? Spanish Majors 0.222222222221 How large is it? -> $x: ($x, study, size) -> (Spanish Majors, Study, Abroad Font Size Study Abroad) -> Spanish Majors (4710ms) How large is it? McQuire and Visser 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (McQuire and Visser, provide, size) -> McQuire and Visser (4613ms) How large is it? a partition 0.222222222221 How large is it? -> $x: ($x, value, size) -> (a partition, accept the default value for, the size) -> a partition (4583ms) How large is it? chart 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (chart, provided, size) -> chart (4641ms) How large is it? Arianespace 0.222222222221 How large is it? -> $x: ($x, study, size) -> (Arianespace, studied, the size) -> Arianespace (4694ms) How large is it? Such junctions 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (Such junctions, could provide electronic elements with, sizes) -> Such junctions (4682ms) How large is it? Sample 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (Sample, spread, Sample size) -> Sample (4685ms) How large is it? The scales 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (The scales, were shaped a little over, size) -> The scales (4711ms) How large is it? The weapons 0.222222222221 How large is it? -> $x: ($x, study, size) -> (The weapons, studied for, their size) -> The weapons (4710ms) How large is it? detailed species accounts 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (detailed species accounts, provide information about, size) -> detailed species accounts (4542ms) How large is it? the group 0.222222222221 How large is it? -> $x: ($x, value, size) -> (the group, must have values for, color and size) -> the group (4713ms) How large is it? Rubber feet 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (Rubber feet, protect against, surface damage Size) -> Rubber feet (4713ms) How large is it? tocs system 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (tocs system, provides a variety of, sizes) -> tocs system (4567ms) How large is it? Each franchise 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (Each franchise, is protected with, a generous size territory) -> Each franchise (4708ms) How large is it? metal microstructures 0.222222222221 How large is it? -> $x: ($x, study, size) -> (metal microstructures, enabled the study of, size effects) -> metal microstructures (4550ms) How large is it? the AIX smit program 0.222222222221 How large is it? -> $x: ($x, value, size) -> (the AIX smit program, change the value of, the tape block size) -> the AIX smit program (4620ms) How large is it? SQL Pass 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (SQL Pass, talked about, sizing and performance) -> SQL Pass (4697ms) How large is it? 200003 Bath-mat 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (200003 Bath-mat, shaped as, a big foot big size) -> 200003 Bath-mat (4620ms) How large is it? animals 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (animals, are shaped by, their size) -> animals (4694ms) How large is it? astronomers 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (astronomers, talk about, the size) -> astronomers (4708ms) How large is it? Michael 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (Michael, talked about, the optimal size) -> Michael (4697ms) How large is it? The snap-in easel 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (The snap-in easel, is provided through, sizes) -> The snap-in easel (4689ms) How large is it? 1970 0.222222222221 How large is it? -> $x: ($x, spread, dc area) -> (1970, has been spread throughout, the Washington D.C. area) -> 1970 (4714ms) How large is it? Such data 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (Such data, can provide an indication of, sizes) -> Such data (4708ms) How large is it? McAfee 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (McAfee, protects, consumers and businesses of all sizes) -> McAfee (4697ms) How large is it? polished brass studs 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (polished brass studs, protect bottom of, bag Size) -> polished brass studs (4583ms) How large is it? a standard triangle 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (a standard triangle, shaped, size) -> a standard triangle (4711ms) How large is it? Hugon 0.222222222221 How large is it? -> $x: ($x, study, size) -> (Hugon, has studied, the size distribution) -> Hugon (4651ms) How large is it? Numero Uno 0.222222222221 How large is it? -> $x: ($x, value, size) -> (Numero Uno, values, the size) -> Numero Uno (4656ms) How large is it? BYU 0.222222222221 How large is it? -> $x: ($x, study, size) -> (BYU, will be studying, the size) -> BYU (4706ms) How large is it? Use 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (Use, protect, important A5-sized documents , photos and cards) -> Use (4620ms) How large is it? void blockSize_ 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (void blockSize_, protected, int blockSize_) -> void blockSize_ (4620ms) How large is it? North Carolina 0.222222222221 How large is it? -> $x: ($x, study, size) -> (North Carolina, studied the changes in, portion sizes) -> North Carolina (4699ms) How large is it? the desire 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (the desire, is to spread, large particle size material) -> the desire (4669ms) How large is it? the respondents 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (the respondents, were pretty evenly spread across, all sizes) -> the respondents (4641ms) How large is it? a concern 0.222222222221 How large is it? -> $x: ($x, value, size) -> (a concern, involves a monetary value of, any size) -> a concern (4575ms) How large is it? the soap film 0.222222222221 How large is it? -> $x: ($x, start as, size) -> (the soap film, starts off as, micron-sized or slightly larger) -> the soap film (4697ms) How large is it? The dynamic area 0.222222222221 How large is it? -> $x: ($x, start as, size) -> (The dynamic area, starts out as, size zero) -> The dynamic area (4567ms) How large is it? The whole disc 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (The whole disc, will slowly spread in, size) -> The whole disc (4660ms) How large is it? an extinction-level asteroid impact 0.222222222221 How large is it? -> $x: ($x, be population of, earth) -> (an extinction-level asteroid impact, is the population of, Earth) -> an extinction-level asteroid impact (4714ms) How large is it? Worm 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (Worm, shaped, SIZE) -> Worm (4660ms) How large is it? Kay 0.222222222221 How large is it? -> $x: ($x, study, size) -> (Kay, might include studying, nipple sizes) -> Kay (4591ms) How large is it? Farmers 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (Farmers, spread, the rice-size urea granules) -> Farmers (4627ms) How large is it? the Flash 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (the Flash, shapes to match, the new size) -> the Flash (4627ms) How large is it? Megan 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (Megan, talked about, the huge size) -> Megan (4697ms) How large is it? Casa Mauricio 0.222222222221 How large is it? -> $x: ($x, provide, dc area) -> (Casa Mauricio, Providing, the DC Metro area) -> Casa Mauricio (4656ms) How large is it? Morphology analysis 0.222222222221 How large is it? -> $x: ($x, study, size) -> (Morphology analysis, is the study of, the size) -> Morphology analysis (4713ms) How large is it? relay racks 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (relay racks, spread around, a good sized room) -> relay racks (4713ms) How large is it? the red hard tissue 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (the red hard tissue, has spread to, the size) -> the red hard tissue (4613ms) How large is it? Players 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (Players, have talked about, my size) -> Players (4699ms) How large is it? We?ve 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (We?ve, talked about, the size) -> We?ve (4669ms) How large is it? The seller 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (The seller, must provide detailed, size) -> The seller (4441ms) How large is it? city leaders 0.222222222221 How large is it? -> $x: ($x, value, size) -> (city leaders, understand the value of, all shapes and sizes) -> city leaders (4550ms) How large is it? a blood pattern 0.222222222221 How large is it? -> $x: ($x, study, size) -> (a blood pattern, involves studying, the size and shape) -> a blood pattern (4651ms) How large is it? 20-count boxes 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (20-count boxes, spread across, 5 traditional sizes) -> 20-count boxes (4682ms) How large is it? Window 0.222222222221 How large is it? -> $x: ($x, value, size) -> (Window, contains the value of, the receive window size) -> Window (4697ms) How large is it? nevertheless other businesses 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (nevertheless other businesses, merely provide, sizes) -> nevertheless other businesses (4689ms) How large is it? 2,711 stone slabs 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (2,711 stone slabs, spread over, the size) -> 2,711 stone slabs (4702ms) How large is it? the game engine 0.222222222221 How large is it? -> $x: ($x, start as, size) -> (the game engine, should start such as, screen size etc) -> the game engine (4550ms) How large is it? The new y 0.222222222221 How large is it? -> $x: ($x, value, size) -> (The new y, coordinate value for, the page size) -> The new y (4714ms) How large is it? La Fraisonn?e Raspberry Min?avi 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (La Fraisonn?e Raspberry Min?avi, spread, Size) -> La Fraisonn?e Raspberry Min?avi (4550ms) How large is it? worse health situations 0.222222222221 How large is it? -> $x: ($x, study, size) -> (worse health situations, Study, 15/04/2012 02:30:00 Font size) -> worse health situations (4694ms) How large is it? The Chairman 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (The Chairman, talk about, the size) -> The Chairman (4674ms) How large is it? a mainstream religion 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (a mainstream religion, has spread to, its current size today) -> a mainstream religion (4682ms) How large is it? Oogie 0.222222222221 How large is it? -> $x: ($x, start as, size) -> (Oogie, started out as, the size) -> Oogie (4613ms) How large is it? int getSize 0.222222222221 How large is it? -> $x: ($x, value, size) -> (int getSize, Return the value of, the size property) -> int getSize (4714ms) How large is it? the place 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (the place, to protect, class size) -> the place (4591ms) How large is it? tools life cleans 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (tools life cleans, protects, A046073 Drive Size) -> tools life cleans (4713ms) How large is it? The model 0.222222222221 How large is it? -> $x: ($x, value, size) -> (The model, can be used to value, any size) -> The model (4646ms) How large is it? a connection 0.222222222221 How large is it? -> $x: ($x, value, size) -> (a connection, set the value of, the page size) -> a connection (4710ms) How large is it? H1N1 0.222222222221 How large is it? -> $x: ($x, spread, dc area) -> (H1N1, spread in, the DC metropolitan area) -> H1N1 (4678ms) How large is it? the bones 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (the bones, spread in, size) -> the bones (1929ms) How large is it? opacity 50 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (opacity 50, spread, 0, size 13) -> opacity 50 (4699ms) How large is it? Vertical 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (Vertical, shaped with, a size-adjusting flap) -> Vertical (4583ms) How large is it? Back of mirror 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (Back of mirror, shall be protected by, full size) -> Back of mirror (4678ms) How large is it? the presenters 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (the presenters, started talking about, penis size) -> the presenters (4598ms) How large is it? Phillips 0.222222222221 How large is it? -> $x: ($x, study, size) -> (Phillips, studied, the shape and sizes) -> Phillips (4575ms) How large is it? Explorer and photographer Lowell Baker 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (Explorer and photographer Lowell Baker, provides scale for, size) -> Explorer and photographer Lowell Baker (4665ms) How large is it? the maximum 0.222222222221 How large is it? -> $x: ($x, value, size) -> (the maximum, supported value for, INITIAL_SIZE) -> the maximum (4559ms) How large is it? Fabricators 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (Fabricators, shape, the size and cost drivers) -> Fabricators (4700ms) How large is it? decals 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (decals, provides a variety of, sizes) -> decals (4559ms) How large is it? purpose automobile 0.222222222221 How large is it? -> $x: ($x, start as, size) -> (purpose automobile, started off as, a small ? size car) -> purpose automobile (4704ms) How large is it? ?PF-AR:MBS and BBS? 0.222222222221 How large is it? -> $x: ($x, value, size) -> (?PF-AR:MBS and BBS?, Check the value of, slit size) -> ?PF-AR:MBS and BBS? (4583ms) How large is it? the universe 0.222222222221 How large is it? -> $x: ($x, start as, size) -> (the universe, started as small as, the size) -> the universe (4710ms) How large is it? Percentage box scaling 0.222222222221 How large is it? -> $x: ($x, value, size) -> (Percentage box scaling, values, the box size) -> Percentage box scaling (3555ms) How large is it? the disease 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (the disease, has spread, ( size) -> the disease (4656ms) How large is it? Fly 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (Fly, talk about, the mid-size trend) -> Fly (4661ms) How large is it? the recipe 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (the recipe, talk about, size) -> the recipe (4591ms) How large is it? last year?Farmers 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (last year?Farmers, spread, the rice-size urea granules) -> last year?Farmers (4620ms) How large is it? mountain lakes 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (mountain lakes, have long been protected by, size limits) -> mountain lakes (4669ms) How large is it? morphometrics 0.222222222221 How large is it? -> $x: ($x, study, size) -> (morphometrics, is the study of, size) -> morphometrics (4661ms) How large is it? 32,000 people 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (32,000 people, are spread, the size of Western Europe) -> 32,000 people (4583ms) How large is it? The eyes 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (The eyes, should be oval shaped of, medium size) -> The eyes (4634ms) How large is it? Armhole 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (Armhole, shaping for, all sizes) -> Armhole (4665ms) How large is it? empty conduit products 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (empty conduit products, provide a variety of, sizes) -> empty conduit products (4711ms) How large is it? silver 0.222222222221 How large is it? -> $x: ($x, value, size) -> (silver, are valued by, their size) -> silver (4697ms) How large is it? Public Instruction 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (Public Instruction, is talking about increasing, class size) -> Public Instruction (4711ms) How large is it? a routine cleanser 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (a routine cleanser, spread, a quarter size amount) -> a routine cleanser (4651ms) How large is it? Crescent 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (Crescent, shaped, object approx size) -> Crescent (4674ms) How large is it? The pattern 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (The pattern, provides lots of, sizes) -> The pattern (4656ms) How large is it? Deep water 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (Deep water, protected access for, all size) -> Deep water (4606ms) How large is it? group size 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (group size, has shaped, the size) -> group size (4711ms) How large is it? Mark 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (Mark, also talks about, sensor size) -> Mark (4550ms) How large is it? the asteroid 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (the asteroid, would spread out to, a size considerable bigger) -> the asteroid (4706ms) How large is it? Logs 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (Logs, can be provided in, sizes) -> Logs (4700ms) How large is it? Geodesists 0.222222222221 How large is it? -> $x: ($x, study, size) -> (Geodesists, study, the size) -> Geodesists (4661ms) How large is it? locations 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (locations, provide a range of, sizes) -> locations (4613ms) How large is it? 2011 People 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (2011 People, talk about, list size) -> 2011 People (4441ms) How large is it? Cornell MS2 Project 0.222222222221 How large is it? -> $x: ($x, study, size) -> (Cornell MS2 Project, Studying, the size and characteristics) -> Cornell MS2 Project (4697ms) How large is it? DeAngelis 0.222222222221 How large is it? -> $x: ($x, study, size) -> (DeAngelis, was studying, size bimodality) -> DeAngelis (4665ms) How large is it? Assorted 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (Assorted, shapes, the right size) -> Assorted (4711ms) How large is it? What factors 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (What factors, shape, sexual size dimorphism) -> What factors (4686ms) How large is it? The output 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (The output, is shaped according to, size) -> The output (4567ms) How large is it? The BASEFONT element 0.222222222221 How large is it? -> $x: ($x, value, size) -> (The BASEFONT element, overrides the value of, the base font size) -> The BASEFONT element (4682ms) How large is it? the next few years 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (the next few years, will shape, the size) -> the next few years (4699ms) How large is it? Patterns 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (Patterns, are provided in, sizes) -> Patterns (4708ms) How large is it? girl 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (girl, spread to, large size) -> girl (4559ms) How large is it? orbs 0.222222222221 How large is it? -> $x: ($x, value, size) -> (orbs, is the value of, the position and size) -> orbs (4567ms) How large is it? Solar panel kits 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (Solar panel kits, have a large spread of, sizes) -> Solar panel kits (4646ms) How large is it? Elucia?s reputation 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (Elucia?s reputation, spread to, the size) -> Elucia?s reputation (4678ms) How large is it? the Hubble telescope 0.222222222221 How large is it? -> $x: ($x, study, size) -> (the Hubble telescope, have studied, a mid-sized black hole) -> the Hubble telescope (4712ms) How large is it? Rooms 0.222222222221 How large is it? -> $x: ($x, value, size) -> (Rooms, are valued, size standard) -> Rooms (4613ms) How large is it? HandleMessage 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (HandleMessage, protected, sizet size) -> HandleMessage (4689ms) How large is it? the Earth 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (the Earth, to shape, the size and location of cities) -> the Earth (4646ms) How large is it? Outbuildings 0.222222222221 How large is it? -> $x: ($x, value, size) -> (Outbuildings, are valued based on, their size) -> Outbuildings (4627ms) How large is it? tours 0.222222222221 How large is it? -> $x: ($x, provide, dc area) -> (tours, were provided around, the Washington D.C. area) -> tours (4665ms) How large is it? The play 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (The play, can be shaped to, the size) -> The play (4646ms) How large is it? awe and surprise 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (awe and surprise, talk about, my huge size) -> awe and surprise (4591ms) How large is it? Piper Fire 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (Piper Fire, protect, any industrial size building) -> Piper Fire (4598ms) How large is it? Fixed 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (Fixed, spread, Pneumatic size) -> Fixed (4598ms) How large is it? social structure 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (social structure, have shaped, the size) -> social structure (4550ms) How large is it? One guy 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (One guy, talks about, penis sizes) -> One guy (4713ms) How large is it? e-first aid Supplies 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (e-first aid Supplies, provides a variety of, sizes) -> e-first aid Supplies (4575ms) How large is it? I?d 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (I?d, changed my shape to, their size) -> I?d (4678ms) How large is it? Durham University 0.222222222221 How large is it? -> $x: ($x, study, size) -> (Durham University, studied, the size) -> Durham University (4689ms) How large is it? Cluster Size Oracle 0.222222222221 How large is it? -> $x: ($x, value, size) -> (Cluster Size Oracle, uses the value of, the SIZE parameter) -> Cluster Size Oracle (4682ms) How large is it? colors 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (colors, talk about, their size and shape) -> colors (4708ms) How large is it? more Jag Titles JAG 0.222222222221 How large is it? -> $x: ($x, start as, size) -> (more Jag Titles JAG, started out as, a giant TOPPER-sized comic) -> more Jag Titles JAG (4686ms) How large is it? Photoshop 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (Photoshop, talk about, image sizes and resolution) -> Photoshop (4708ms) How large is it? the same material 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (the same material, can be shaped to, any size) -> the same material (4591ms) How large is it? the part 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (the part, is shaped to, size) -> the part (4575ms) How large is it? display case 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (display case, protects, a regulation size hardball) -> display case (4689ms) How large is it? Atlantic City 0.222222222221 How large is it? -> $x: ($x, study, size) -> (Atlantic City, has studied, every large and medium-sized airport) -> Atlantic City (4656ms) How large is it? Photo books 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (Photo books, provide plenty of, sizes) -> Photo books (4634ms) How large is it? the primary extension 0.222222222221 How large is it? -> $x: ($x, study, size) -> (the primary extension, study, the bill size and shape) -> the primary extension (4620ms) How large is it? arXiv 0.222222222221 How large is it? -> $x: ($x, study, size) -> (arXiv, is a statistical study of, program sizes) -> arXiv (4665ms) How large is it? changes 0.222222222221 How large is it? -> $x: ($x, study, size) -> (changes, is to study, the size and shape) -> changes (4583ms) How large is it? an area 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (an area, spread, nearly the size of South Carolina) -> an area (4542ms) How large is it? the ideal way 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (the ideal way, protect, your medium-sized collectibles) -> the ideal way (4550ms) How large is it? sufficient space 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (sufficient space, spread to, its mature size) -> sufficient space (4700ms) How large is it? size=integer 0.222222222221 How large is it? -> $x: ($x, value, size) -> (size=integer, Use this value as, the initial size) -> size=integer (4694ms) How large is it? optionList 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (optionList, protected, int size) -> optionList (4646ms) How large is it? The image 0.222222222221 How large is it? -> $x: ($x, start as, size) -> (The image, started out as big as, the original size) -> The image (4674ms) How large is it? enough power 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (enough power, shape, a good-size yard) -> enough power (4691ms) How large is it? Andrei Broder 0.222222222221 How large is it? -> $x: ($x, study, size) -> (Andrei Broder, published a study of, the size) -> Andrei Broder (4702ms) How large is it? Content sub-elements 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (Content sub-elements, provide, size) -> Content sub-elements (4651ms) How large is it? ? Let 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (? Let, talk about, the size) -> ? Let (4702ms) How large is it? tax policies 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (tax policies, shape, the size) -> tax policies (4621ms) How large is it? The NodeFormProcessor 0.222222222221 How large is it? -> $x: ($x, value, size) -> (The NodeFormProcessor, may add values for, the content size) -> The NodeFormProcessor (4685ms) How large is it? Only 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (Only, protects, Standard size gaming cards) -> Only (3555ms) How large is it? the secretary 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (the secretary, talked about, the size) -> the secretary (4641ms) How large is it? SEMI PV4 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (SEMI PV4, provides a range of, sizes) -> SEMI PV4 (4682ms) How large is it? Nebula ?h 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (Nebula ?h, is spreading out with, a size) -> Nebula ?h (4714ms) How large is it? were 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (were, talking about, the screen size) -> were (4694ms) How large is it? men 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (men, talking about, the size of their manhood) -> men (4627ms) How large is it? The strongest witness 0.222222222221 How large is it? -> $x: ($x, be population of, earth) -> (The strongest witness, is the vast population of, the Earth) -> The strongest witness (4665ms) How large is it? each slice 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (each slice, are spread out over, the size) -> each slice (4575ms) How large is it? Accept-Encoding Loading 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (Accept-Encoding Loading, shape, , shade and size) -> Accept-Encoding Loading (4441ms) How large is it? table-cut diamonds 0.222222222221 How large is it? -> $x: ($x, value, size) -> (table-cut diamonds, were valued for, their clarity and size) -> table-cut diamonds (4665ms) How large is it? Juvenile bass 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (Juvenile bass, are protected by, a minimum landing size) -> Juvenile bass (4699ms) How large is it? the container 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (the container, spread, one pearl-sized bead) -> the container (4605ms) How large is it? The specification 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (The specification, provides dimensional tolerances for, size) -> The specification (4567ms) How large is it? Arnold 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (Arnold, provided an estimate of, size) -> Arnold (4641ms) How large is it? the items 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (the items, then provide an estimate of, size) -> the items (4665ms) How large is it? La Fraisonn?e Blueberry 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (La Fraisonn?e Blueberry, spread, Min?avi Size) -> La Fraisonn?e Blueberry (4694ms) How large is it? green moss 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (green moss, shaped into, soccer-ball size topiary) -> green moss (4620ms) How large is it? an important case 0.222222222221 How large is it? -> $x: ($x, study, size) -> (an important case, study both for, its size) -> an important case (4699ms) How large is it? 1943 Adrian 0.222222222221 How large is it? -> $x: ($x, study, size) -> (1943 Adrian, also studied, the relative sizes) -> 1943 Adrian (4542ms) How large is it? good nobody 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (good nobody, ever talked about, the size) -> good nobody (4656ms) How large is it? Marketers and agency leaders 0.222222222221 How large is it? -> $x: ($x, value, size) -> (Marketers and agency leaders, placed high value on, size) -> Marketers and agency leaders (4700ms) How large is it? Vector 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (Vector, clipart shapes for, any size of work) -> Vector (4550ms) How large is it? The authors 0.222222222221 How large is it? -> $x: ($x, study, size) -> (The authors, then studied, the size-distribution) -> The authors (4697ms) How large is it? PC Defender installs 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (PC Defender installs, protects, any size disk) -> PC Defender installs (4558ms) How large is it? overload 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (overload, protected, Sturdy construction Size) -> overload (4678ms) How large is it? RETRIEVED_SET_SIZE 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (RETRIEVED_SET_SIZE, protected, static int RETRIEVED_SET_SIZE) -> RETRIEVED_SET_SIZE (4583ms) How large is it? OpTier BTM? 0.222222222221 How large is it? -> $x: ($x, value, size) -> (OpTier BTM?, brings value to, any size environment) -> OpTier BTM? (4669ms) How large is it? Crocker Liu 0.222222222221 How large is it? -> $x: ($x, study, size) -> (Crocker Liu, studied the link between, the size) -> Crocker Liu (4665ms) How large is it? Mr. Davis 0.222222222221 How large is it? -> $x: ($x, value, size) -> (Mr. Davis, valued, size) -> Mr. Davis (4704ms) How large is it? I?ve 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (I?ve, talked about, the unimaginable size) -> I?ve (4641ms) How large is it? a bottom-heavy statue 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (a bottom-heavy statue, wants to protect, the main size) -> a bottom-heavy statue (4710ms) How large is it? apical third 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (apical third, was shaped to, size 40) -> apical third (4583ms) How large is it? Effects 0.222222222221 How large is it? -> $x: ($x, value, size) -> (Effects, enter a value for, Size) -> Effects (4656ms) How large is it? politicians and others 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (politicians and others, talk about, the size) -> politicians and others (4634ms) How large is it? a snowball 0.222222222221 How large is it? -> $x: ($x, start as, size) -> (a snowball, starts as, the size) -> a snowball (1929ms) How large is it? any businesses 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (any businesses, are provided based upon, size) -> any businesses (4559ms) How large is it? Parameters Return 0.222222222221 How large is it? -> $x: ($x, value, size) -> (Parameters Return, Values, The data size) -> Parameters Return (4567ms) How large is it? SizeMax 0.222222222221 How large is it? -> $x: ($x, value, size) -> (SizeMax, is the value of, Size) -> SizeMax (4674ms) How large is it? home-based learning 0.222222222221 How large is it? -> $x: ($x, value, size) -> (home-based learning, emphasize the value of, small class size) -> home-based learning (4713ms) How large is it? terms 0.222222222221 How large is it? -> $x: ($x, study, size) -> (terms, study, the size) -> terms (4712ms) How large is it? licensure 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (licensure, are provided based upon, size) -> licensure (4651ms) How large is it? 12 feet 0.222222222221 How large is it? -> $x: ($x, value, size) -> (12 feet, are valued both for, their size) -> 12 feet (4558ms) How large is it? OS/2 v2.0: window 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (OS/2 v2.0: window, provides information on, size) -> OS/2 v2.0: window (4712ms) How large is it? an order 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (an order, talk about, different styles and sizes) -> an order (4689ms) How large is it? posture and attitude 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (posture and attitude, shape, the body size) -> posture and attitude (4627ms) How large is it? maxSavePostSize 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (maxSavePostSize, protected, int maxSavePostSize Maximum size) -> maxSavePostSize (4689ms) How large is it? the other study characteristics 0.222222222221 How large is it? -> $x: ($x, study, size) -> (the other study characteristics, study, period and study size) -> the other study characteristics (4605ms) How large is it? Fold 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (Fold, spread in, a medium-sized frying pan) -> Fold (4542ms) How large is it? week 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (week, may protect, your brain size) -> week (4713ms) How large is it? Transportation 0.222222222221 How large is it? -> $x: ($x, provide, dc area) -> (Transportation, is provided from, DC-metro area) -> Transportation (4711ms) How large is it? A full-range selection 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (A full-range selection, is provided in, sizes) -> A full-range selection (4583ms) How large is it? ? Farmers 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (? Farmers, spread, the rice-size urea granules) -> ? Farmers (1929ms) How large is it? maxPostSize 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (maxPostSize, protected, int maxPostSize Maximum size) -> maxPostSize (4669ms) How large is it? LLC 0.222222222221 How large is it? -> $x: ($x, provide, dc area) -> (LLC, provides services in, the Washington DC metropolitan area) -> LLC (4620ms) How large is it? image quality 0.222222222221 How large is it? -> $x: ($x, value, size) -> (image quality, is valued above, file size) -> image quality (4605ms) How large is it? shrunk 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (shrunk, can often be shaped back to, size) -> shrunk (4665ms) How large is it? a Federally mandated law 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (a Federally mandated law, protects people of, size) -> a Federally mandated law (4689ms) How large is it? 800 calories 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (800 calories, spread into, 4 snack-sized meals) -> 800 calories (4441ms) How large is it? the elephants 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (the elephants, must be protected as, a manageable herd size) -> the elephants (4550ms) How large is it? the minister 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (the minister, was talking about, class sizes) -> the minister (4665ms) How large is it? The blinding value r 0.222222222221 How large is it? -> $x: ($x, value, size) -> (The blinding value r, is a random value with, the size) -> The blinding value r (4605ms) How large is it? the middle 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (the middle, spread across, a good-sized space) -> the middle (4714ms) How large is it? bufferSize 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (bufferSize, protected, int bufferSize size) -> bufferSize (4583ms) How large is it? delicate cut glass decoration and cone 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (delicate cut glass decoration and cone, shaped, opal glass Size) -> delicate cut glass decoration and cone (4606ms) How large is it? Meg magazine 0.222222222221 How large is it? -> $x: ($x, start as, size) -> (Meg magazine, started out as, a digest sized magazine) -> Meg magazine (4674ms) How large is it? Attributes 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (Attributes, protected, The next size value) -> Attributes (4706ms) How large is it? Coverage & Shelf Life One kit 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (Coverage & Shelf Life One kit, protect, an average size handbag) -> Coverage & Shelf Life One kit (4682ms) How large is it? every marketing plan 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (every marketing plan, talks about, the size) -> every marketing plan (4712ms) How large is it? One logo 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (One logo, should be provided of, size) -> One logo (4704ms) How large is it? The Armory Show 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (The Armory Show, spreads over, two hangar-size piers) -> The Armory Show (4714ms) How large is it? Figure 1 0.222222222221 How large is it? -> $x: ($x, value, size) -> (Figure 1, shows the values for, paper size and resolution) -> Figure 1 (4686ms) How large is it? Mayfield College 0.222222222221 How large is it? -> $x: ($x, value, size) -> (Mayfield College, values, small class sizes) -> Mayfield College (4714ms) How large is it? Browsers 0.222222222221 How large is it? -> $x: ($x, start as, size) -> (Browsers, started using 16px as, the default size years) -> Browsers (4567ms) How large is it? Zestimates 0.222222222221 How large is it? -> $x: ($x, value, size) -> (Zestimates, are only ballpark values based mostly on, size) -> Zestimates (4714ms) How large is it? earlier this year 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (earlier this year, talks about, Enron-sized flaws) -> earlier this year (4598ms) How large is it? Don?t 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (Don?t, forget to talk about, the size) -> Don?t (4697ms) How large is it? the cranial landscape 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (the cranial landscape, was shaped by, the size) -> the cranial landscape (4699ms) How large is it? SEER Estimate 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (SEER Estimate, provides estimates for, size) -> SEER Estimate (3555ms) How large is it? Floor plans 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (Floor plans, provide varying, sizes) -> Floor plans (4542ms) How large is it? Bush 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (Bush, also talked about increasing, the size) -> Bush (4567ms) How large is it? PREFERRED_SIZE 0.222222222221 How large is it? -> $x: ($x, value, size) -> (PREFERRED_SIZE, indicates the value from, getPreferredSize) -> PREFERRED_SIZE (4441ms) How large is it? 1991 Hsieh & Trichopoulos 0.222222222221 How large is it? -> $x: ($x, study, size) -> (1991 Hsieh & Trichopoulos, studied, breast size) -> 1991 Hsieh & Trichopoulos (4646ms) How large is it? ABS plastic pan 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (ABS plastic pan, protect, floors Multiple size options) -> ABS plastic pan (4575ms) How large is it? Height & Habit 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (Height & Habit, spreading, Size) -> Height & Habit (4575ms) How large is it? the value 0.222222222221 How large is it? -> $x: ($x, value, size) -> (the value, increase the value for, SHARED_POOL_SIZE) -> the value (4704ms) How large is it? information 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (information, is provided on, size) -> information (4665ms) How large is it? pageSize 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (pageSize, protected, int pageSize) -> pageSize (4591ms) How large is it? watching.Aereo 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (watching.Aereo, has shaped, a dime-sized small screen projection) -> watching.Aereo (4714ms) How large is it? The format 0.222222222221 How large is it? -> $x: ($x, start as, size) -> (The format, started as, a digest size) -> The format (4689ms) How large is it? Bought 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (Bought, protects, Standard size gaming cards) -> Bought (4674ms) How large is it? any bag 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (any bag, shaped with, or without a handle of various sizes) -> any bag (4697ms) How large is it? mandate 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (mandate, spread, sizes) -> mandate (4598ms) How large is it? the body styling 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (the body styling, shaped, the TSA full-size 7200 class truck) -> the body styling (4706ms) How large is it? the application needs 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (the application needs, provide multiple options in, sizes) -> the application needs (4685ms) How large is it? formulations 0.222222222221 How large is it? -> $x: ($x, study, size) -> (formulations, were studied for, particle size) -> formulations (4641ms) How large is it? Beautiful ornamental motifs 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (Beautiful ornamental motifs, spread all over in, different sizes) -> Beautiful ornamental motifs (4697ms) How large is it? The researchers 0.222222222221 How large is it? -> $x: ($x, study, size) -> (The researchers, also studied, body size) -> The researchers (4559ms) How large is it? drummers 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (drummers, shape, individual drum size and depth) -> drummers (4627ms) How large is it? agribusiness 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (agribusiness, still protect, the medium-sized farmer) -> agribusiness (4591ms) How large is it? The sail 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (The sail, is provided cut to, size) -> The sail (4713ms) How large is it? upload data 0.222222222221 How large is it? -> $x: ($x, value, size) -> (upload data, reduce the value of, upload_data_size) -> upload data (4567ms) How large is it? the highest resistance 0.222222222221 How large is it? -> $x: ($x, value, size) -> (the highest resistance, values relative to, their sizes) -> the highest resistance (4583ms) How large is it? 110 micron nets side 0.222222222221 How large is it? -> $x: ($x, study, size) -> (110 micron nets side, was used to study, all sizes) -> 110 micron nets side (4656ms) How large is it? Each booklet 0.222222222221 How large is it? -> $x: ($x, start as, size) -> (Each booklet, starts out as, a regular-sized piece) -> Each booklet (4651ms) How large is it? clumps 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (clumps, slowly spread in, size) -> clumps (4704ms) How large is it? the counter 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (the counter, started talking about, boom size) -> the counter (4598ms) How large is it? Astronomers 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (Astronomers, often talk about, the size) -> Astronomers (4689ms) How large is it? the output 0.222222222221 How large is it? -> $x: ($x, study, size) -> (the output, is then studied to determine, the size) -> the output (4542ms) How large is it? the five different buttermilk 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (the five different buttermilk, shaped, pitcher sizes) -> the five different buttermilk (4700ms) How large is it? a couple years 0.222222222221 How large is it? -> $x: ($x, start as, size) -> (a couple years, started as, a half dollar size spot) -> a couple years (4591ms) How large is it? the F-16s 0.222222222221 How large is it? -> $x: ($x, protect, dc area) -> (the F-16s, were up protecting, the DC area) -> the F-16s (4686ms) How large is it? COLOR 0.222222222221 How large is it? -> $x: ($x, value, size) -> (COLOR, affects the value of, an emerald Size) -> COLOR (4605ms) How large is it? Leni 0.222222222221 How large is it? -> $x: ($x, study, size) -> (Leni, studied, the size and serial positioning) -> Leni (4704ms) How large is it? a one page or two page 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (a one page or two page, spread in, any size) -> a one page or two page (4605ms) How large is it? Definition Classes Attributes 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (Definition Classes Attributes, protected, def maximumSize) -> Definition Classes Attributes (4678ms) How large is it? classes 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (classes, provide support for, sizes) -> classes (4646ms) How large is it? MINSIZE and MAXSIZE 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (MINSIZE and MAXSIZE, provide a range of, sizes) -> MINSIZE and MAXSIZE (4711ms) How large is it? Return 0.222222222221 How large is it? -> $x: ($x, value, size) -> (Return, Values, The size) -> Return (4694ms) How large is it? the Republicans 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (the Republicans, are again talking about, the size) -> the Republicans (4634ms) How large is it? a cylinder 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (a cylinder, shaped, container sized) -> a cylinder (4665ms) How large is it? Geodesy 0.222222222221 How large is it? -> $x: ($x, study, size) -> (Geodesy, is the study of, the size and shape) -> Geodesy (4702ms) How large is it? the new growth 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (the new growth, shape to, your desired shape and size) -> the new growth (4706ms) How large is it? the doll?s nostrils 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (the doll?s nostrils, shaped, the same size) -> the doll?s nostrils (4441ms) How large is it? Password 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (Password, Protect, Software Size) -> Password (4634ms) How large is it? consumers 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (consumers, talk about, Vanity Sizing) -> consumers (4646ms) How large is it? the 232 dogs 0.222222222221 How large is it? -> $x: ($x, study, size) -> (the 232 dogs, studied into, 3 size categories) -> the 232 dogs (4641ms) How large is it? Ebbw Vale 0.222222222221 How large is it? -> $x: ($x, study, size) -> (Ebbw Vale, has studied, several bite-sized courses) -> Ebbw Vale (1929ms) How large is it? a Sell order 0.222222222221 How large is it? -> $x: ($x, value, size) -> (a Sell order, has the value for, the Lot Size) -> a Sell order (4669ms) How large is it? Eastman 0.222222222221 How large is it? -> $x: ($x, study, size) -> (Eastman, was studying, nanometer-sized crystals) -> Eastman (4704ms) How large is it? Sizes 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (Sizes, Shapes, The sizes of bookshelves and wardrobes) -> Sizes (4575ms) How large is it? The lesions 0.222222222221 How large is it? -> $x: ($x, start as, size) -> (The lesions, start as, pin-sized lesions) -> The lesions (4699ms) How large is it? The application 0.222222222221 How large is it? -> $x: ($x, value, size) -> (The application, may use this value as, the size) -> The application (4661ms) How large is it? Arab Advisors 0.222222222221 How large is it? -> $x: ($x, value, size) -> (Arab Advisors, values, the total size) -> Arab Advisors (4694ms) How large is it? computer-aided image analysis 0.222222222221 How large is it? -> $x: ($x, study, size) -> (computer-aided image analysis, are used to study, cell size) -> computer-aided image analysis (4620ms) How large is it? solars 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (solars, can provide, ( size) -> solars (4702ms) How large is it? The patch 0.222222222221 How large is it? -> $x: ($x, value, size) -> (The patch, validates the value of, vblk_size) -> The patch (4567ms) How large is it? the truths 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (the truths, even talked about, my size) -> the truths (4613ms) How large is it? ground tackle 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (ground tackle, spread between, two good sized anchors) -> ground tackle (4660ms) How large is it? Graceville?s Tiara Sorey 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (Graceville?s Tiara Sorey, provides, size) -> Graceville?s Tiara Sorey (4669ms) How large is it? The plot 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (The plot, spreads on, the total size) -> The plot (4634ms) How large is it? computers 0.222222222221 How large is it? -> $x: ($x, start as, size) -> (computers, start as, room-sized behemoths) -> computers (4651ms) How large is it? the wireframe layouts 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (the wireframe layouts, provide a general sense of, size) -> the wireframe layouts (4441ms) How large is it? Hard contacts 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (Hard contacts, are mainly provided under, sizes) -> Hard contacts (4660ms) How large is it? the surrounding red area 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (the surrounding red area, had spread out to, silver dollar size) -> the surrounding red area (4598ms) How large is it? cracks and folds 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (cracks and folds, are protected by, their small size) -> cracks and folds (4669ms) How large is it? The unique design 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (The unique design, provides significant reduction in, size) -> The unique design (4613ms) How large is it? the Cyclops area 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (the Cyclops area, spread to, its current size) -> the Cyclops area (4550ms) How large is it? The templates 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (The templates, provide a variety of, sizes) -> The templates (4591ms) How large is it? nevertheless many businesses 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (nevertheless many businesses, merely provide, sizes) -> nevertheless many businesses (4542ms) How large is it? Supports 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (Supports, password protected, sizes) -> Supports (4702ms) How large is it? Scheduled number 0.222222222221 How large is it? -> $x: ($x, study, size) -> (Scheduled number, study, period Planned sample size) -> Scheduled number (4613ms) How large is it? Dimensioned Stone 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (Dimensioned Stone, shaped to, specified sizes) -> Dimensioned Stone (4605ms) How large is it? division 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (division, can provide, sizes) -> division (4605ms) How large is it? daylily people 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (daylily people, talk about, size) -> daylily people (4634ms) How large is it? Industry norm report 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (Industry norm report, will provide, size) -> Industry norm report (4713ms) How large is it? the Winkel Map Projection 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (the Winkel Map Projection, provides the best balance of, size) -> the Winkel Map Projection (4627ms) How large is it? a receiver 0.222222222221 How large is it? -> $x: ($x, value, size) -> (a receiver, SHOULD use these values to, size) -> a receiver (4567ms) How large is it? visiting 0.222222222221 How large is it? -> $x: ($x, study, size) -> (visiting, study, the life-size replica) -> visiting (4669ms) How large is it? Self-adhesive clear plastic 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (Self-adhesive clear plastic, protects, business card size) -> Self-adhesive clear plastic (4682ms) How large is it? Pillsbury Crescent Rolls 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (Pillsbury Crescent Rolls, shaped to, the right size) -> Pillsbury Crescent Rolls (4710ms) How large is it? 13 weeks 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (13 weeks, still protected, the size and insulin content) -> 13 weeks (4704ms) How large is it? Icon images 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (Icon images, are provided in, sizes) -> Icon images (4706ms) How large is it? Lifestyle Directer 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (Lifestyle Directer, talked about, the great size) -> Lifestyle Directer (4559ms) How large is it? the Dodge Dart 0.222222222221 How large is it? -> $x: ($x, start as, size) -> (the Dodge Dart, started out as, a full size model passenger car) -> the Dodge Dart (4704ms) How large is it? New macro $ {msg_size 0.222222222221 How large is it? -> $x: ($x, value, size) -> (New macro $ {msg_size, holds the value of, the SIZE= parameter) -> New macro $ {msg_size (4711ms) How large is it? a series 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (a series, shaped, the size and structure) -> a series (4704ms) How large is it? the double bed spread 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (the double bed spread, is spread on, the queen sized bed) -> the double bed spread (4699ms) How large is it? only a cylindrical sleeve 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (only a cylindrical sleeve, shaped with, a size) -> only a cylindrical sleeve (4694ms) How large is it? vehicles 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (vehicles, protect, different size occupants) -> vehicles (4708ms) How large is it? 100 total tees 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (100 total tees, spread across, all sizes) -> 100 total tees (4689ms) How large is it? the pump irrigation system 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (the pump irrigation system, provides a variety of, sizes) -> the pump irrigation system (4651ms) How large is it? Lovely eyes 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (Lovely eyes, shaped, good colour and size) -> Lovely eyes (4712ms) How large is it? no point 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (no point, talk about, the size) -> no point (4710ms) How large is it? sampleSizeInBits 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (sampleSizeInBits, protected, int sampleSizeInBits) -> sampleSizeInBits (4558ms) How large is it? geneological data 0.222222222221 How large is it? -> $x: ($x, study, size) -> (geneological data, studied the effects of, family size) -> geneological data (4660ms) How large is it? CEO David Sacks 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (CEO David Sacks, talks about, a ' Facebook-sized opportunity ') -> CEO David Sacks (4711ms) How large is it? The Vol.1 0.222222222221 How large is it? -> $x: ($x, study, size) -> (The Vol.1, studies, the market size shift) -> The Vol.1 (4661ms) How large is it? The disposal 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (The disposal, is protected for properly, size septic dive bombs) -> The disposal (4669ms) How large is it? BEST 0.222222222221 How large is it? -> $x: ($x, value, size) -> (BEST, VALUES FOR, SIZE) -> BEST (4567ms) How large is it? Micro filter medium 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (Micro filter medium, protects against, micron-size particles) -> Micro filter medium (4702ms) How large is it? Calf implants 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (Calf implants, can shape, the profile and size) -> Calf implants (4712ms) How large is it? Dr. Chang 0.222222222221 How large is it? -> $x: ($x, study, size) -> (Dr. Chang, studied the association of, sibship size) -> Dr. Chang (4641ms) How large is it? project cork 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (project cork, shape, ( thin sizes) -> project cork (4634ms) How large is it? Spain 0.222222222221 How large is it? -> $x: ($x, study, size) -> (Spain, has launched a study into, the size) -> Spain (4651ms) How large is it? preparation 0.222222222221 How large is it? -> $x: ($x, study, size) -> (preparation, had studied, the market size and trends) -> preparation (4627ms) How large is it? RCN 0.222222222221 How large is it? -> $x: ($x, provide, dc area) -> (RCN, is dedicated to providing, the DC Metro area) -> RCN (4651ms) How large is it? Lets 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (Lets, talk about, size) -> Lets (4699ms) How large is it? The Space Gamer 0.222222222221 How large is it? -> $x: ($x, start as, size) -> (The Space Gamer, started as, a 16-page digest sized publication) -> The Space Gamer (4634ms) How large is it? the tempo 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (the tempo, protect, the size) -> the tempo (4641ms) How large is it? Demography 0.222222222221 How large is it? -> $x: ($x, study, size) -> (Demography, is the study of, the size) -> Demography (4542ms) How large is it? Each entity 0.222222222221 How large is it? -> $x: ($x, value, size) -> (Each entity, is valued based upon, its size) -> Each entity (4697ms) How large is it? mAttrHashSize 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (mAttrHashSize, protected, int mAttrHashSize Size) -> mAttrHashSize (4641ms) How large is it? bones 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (bones, can change shape as well as, size) -> bones (4669ms) How large is it? students 0.222222222221 How large is it? -> $x: ($x, study, size) -> (students, study the effects of, class size) -> students (4591ms) How large is it? the scientists 0.222222222221 How large is it? -> $x: ($x, study, size) -> (the scientists, study things like, the size) -> the scientists (4598ms) How large is it? the facility 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (the facility, spread out on, a large sized lot) -> the facility (4714ms) How large is it? the problems Hurst 0.222222222221 How large is it? -> $x: ($x, study, size) -> (the problems Hurst, studied was, the size) -> the problems Hurst (4646ms) How large is it? two places 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (two places, will shape to, the size) -> two places (4583ms) How large is it? more female bones 0.222222222221 How large is it? -> $x: ($x, study, size) -> (more female bones, were studied for, the smaller sizes) -> more female bones (4678ms) How large is it? final Attributes 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (final Attributes, protected, The next size value) -> final Attributes (4704ms) How large is it? tiny mouse-like guardians 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (tiny mouse-like guardians, protect, normal-size folk) -> tiny mouse-like guardians (4542ms) How large is it? Water-proof and UV 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (Water-proof and UV, protect, Size) -> Water-proof and UV (4665ms) How large is it? The blank piece 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (The blank piece, shaped to, the required size) -> The blank piece (4686ms) How large is it? Officials 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (Officials, are talking about increasing, the size) -> Officials (4686ms) How large is it? three dust collectors 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (three dust collectors, provide the ideal balance for, size) -> three dust collectors (4550ms) How large is it? Case 0.222222222221 How large is it? -> $x: ($x, study, size) -> (Case, Study, A medium-sized manufacturing company) -> Case (4713ms) How large is it? a student 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (a student, protect very, good size) -> a student (4591ms) How large is it? the factors 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (the factors, shaping, the size spectra) -> the factors (4712ms) How large is it? calculateCategorySize 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (calculateCategorySize, protected, double calculateCategorySize) -> calculateCategorySize (4605ms) How large is it? the airlines 0.222222222221 How large is it? -> $x: ($x, provide, dc area) -> (the airlines, provide service to, Washington DC area) -> the airlines (4669ms) How large is it? optionList selectedValues 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (optionList selectedValues, protected, int size) -> optionList selectedValues (4710ms) How large is it? 8 teardrop 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (8 teardrop, shaped coral in, 2 sizes) -> 8 teardrop (4706ms) How large is it? A man 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (A man, talks about, the size) -> A man (4656ms) How large is it? hair styles 0.222222222221 How large is it? -> $x: ($x, value, size) -> (hair styles, are usually valued for, size and wonder) -> hair styles (4558ms) How large is it? Southern California 0.222222222221 How large is it? -> $x: ($x, study, size) -> (Southern California, have been studying, the size) -> Southern California (4710ms) How large is it? rugged , comfortable footwear 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (rugged , comfortable footwear, protect, your size) -> rugged , comfortable footwear (4656ms) How large is it? the stones 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (the stones, were shaped up to, different sizes) -> the stones (4627ms) How large is it? problems 0.222222222221 How large is it? -> $x: ($x, be population of, earth) -> (problems, was the population of, the earth) -> problems (4583ms) How large is it? the table 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (the table, spreads out, the size) -> the table (4711ms) How large is it? Object tlh cacheChannel mayFilter size 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (Object tlh cacheChannel mayFilter size, protected, long size) -> Object tlh cacheChannel mayFilter size (4605ms) How large is it? PE 0.222222222221 How large is it? -> $x: ($x, be population of, earth) -> (PE, is the population of, Earth) -> PE (4674ms) How large is it? message 0.222222222221 How large is it? -> $x: ($x, value, size) -> (message, returns the same value as, size) -> message (4702ms) How large is it? Theo Jefferson 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (Theo Jefferson, provide a lot of, size) -> Theo Jefferson (4651ms) How large is it? one order 0.222222222221 How large is it? -> $x: ($x, value, size) -> (one order, is low value with, reasonable weight and size) -> one order (4682ms) How large is it? the CM420ES 0.222222222221 How large is it? -> $x: ($x, value, size) -> (the CM420ES, offers true value in, the perfect size) -> the CM420ES (4634ms) How large is it? ?The world 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (?The world, is talking about, the size) -> ?The world (4714ms) How large is it? YS 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (YS, talk about, the size) -> YS (4714ms) How large is it? the word 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (the word, spreads about, my size) -> the word (4706ms) How large is it? shoe pocket 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (shoe pocket, protects up to, size) -> shoe pocket (4714ms) How large is it? 3 feet 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (3 feet, can be shaped to, any size) -> 3 feet (4712ms) How large is it? Block 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (Block, shape to, size) -> Block (4702ms) How large is it? feelings 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (feelings, protect its wearer from, harm.Approximate size) -> feelings (4686ms) How large is it? The LID system 0.222222222221 How large is it? -> $x: ($x, study, size) -> (The LID system, is experimentally studied using, different sizes) -> The LID system (4613ms) How large is it? Shapes 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (Shapes, have the same shape in, different sizes) -> Shapes (4646ms) How large is it? a knife 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (a knife, spread, a good size knob) -> a knife (4660ms) How large is it? flower 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (flower, shaped pieces of, different sizes) -> flower (4694ms) How large is it? Services 0.222222222221 How large is it? -> $x: ($x, provide, dc area) -> (Services, are provided to, the Washington D.C. metropolitan area) -> Services (4711ms) How large is it? Star 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (Star, shaped, smaller size bead cap) -> Star (4678ms) How large is it? the topper 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (the topper, spread over, the full size bed) -> the topper (4708ms) How large is it? Directions 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (Directions, Spread, an hazelnut-sized amount) -> Directions (4613ms) How large is it? the scar 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (the scar, spreads beyond, the size) -> the scar (4669ms) How large is it? the gold leaves 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (the gold leaves, had spread out to, the size) -> the gold leaves (4712ms) How large is it? Dee 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (Dee, can also provide information about, sizes) -> Dee (4699ms) How large is it? links 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (links, shape, the size and scope) -> links (4583ms) How large is it? WAN optimization 0.222222222221 How large is it? -> $x: ($x, value, size) -> (WAN optimization, can deliver value to, businesses of all sizes) -> WAN optimization (4567ms) How large is it? The icons 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (The icons, are provided in, sizes) -> The icons (4712ms) How large is it? The softball-sized unit 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (The softball-sized unit, protects, a patio-sized area) -> The softball-sized unit (4674ms) How large is it? MF Global 0.222222222221 How large is it? -> $x: ($x, start as, size) -> (MF Global, started as, a medium-sized derivatives broker) -> MF Global (4697ms) How large is it? I?ll 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (I?ll, talk about, position sizing) -> I?ll (4575ms) How large is it? ?No one 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (?No one, is talking about reducing, the size) -> ?No one (4710ms) How large is it? a more detailed look 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (a more detailed look, spread, sizes) -> a more detailed look (4542ms) How large is it? 5 sheet shredder 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (5 sheet shredder, provides the perfect blend of, size) -> 5 sheet shredder (4665ms) How large is it? January 2 , 2009 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (January 2 , 2009, spread, sizes) -> January 2 , 2009 (4686ms) How large is it? products 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (products, provide a variety of, sizes) -> products (3555ms) How large is it? Evolutionary Anthropology 0.222222222221 How large is it? -> $x: ($x, study, size) -> (Evolutionary Anthropology, studied, the size) -> Evolutionary Anthropology (4694ms) How large is it? the RTY Workwear range 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (the RTY Workwear range, is the spread of, sizes) -> the RTY Workwear range (4674ms) How large is it? Chanel 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (Chanel, has always provided customers with, sizes) -> Chanel (4627ms) How large is it? Capsules Beta Glucan 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (Capsules Beta Glucan, Protect, the Immune System Serving Size) -> Capsules Beta Glucan (4704ms) How large is it? protection 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (protection, provides, sizes) -> protection (4686ms) How large is it? Cohen 0.222222222221 How large is it? -> $x: ($x, value, size) -> (Cohen, sees the value of, a nimble size) -> Cohen (4441ms) How large is it? Houses 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (Houses, provide, size) -> Houses (4712ms) How large is it? Blue Key Champions help 0.222222222221 How large is it? -> $x: ($x, spread, size) -> (Blue Key Champions help, spread, the word View Full Size) -> Blue Key Champions help (4641ms) How large is it? union concessions 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (union concessions, protect, class size) -> union concessions (4706ms) How large is it? Public Health 0.222222222221 How large is it? -> $x: ($x, study, size) -> (Public Health, published a study about, the current sizes) -> Public Health (4682ms) How large is it? The FortiGate product line 0.222222222221 How large is it? -> $x: ($x, protect, size) -> (The FortiGate product line, protects, any size network) -> The FortiGate product line (4678ms) How large is it? 250 ml Classic 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (250 ml Classic, shaped, medium size water bong) -> 250 ml Classic (4714ms) How large is it? By* 0.222222222221 How large is it? -> $x: ($x, be population of, earth) -> (By*, is the entire population of, planet Earth) -> By* (4656ms) How large is it? Melitta 0.222222222221 How large is it? -> $x: ($x, provide, size) -> (Melitta, provide a whole series of, sizes) -> Melitta (4710ms) How large is it? Martin 0.222222222221 How large is it? -> $x: ($x, study, size) -> (Martin, studied, the size) -> Martin (4694ms) How large is it? The Site Supervisor 0.222222222221 How large is it? -> $x: ($x, talk about, size) -> (The Site Supervisor, also talked about, the size) -> The Site Supervisor (4682ms) How large is it? a separate filled circle 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (a separate filled circle, shape, the same size) -> a separate filled circle (4711ms) How large is it? The functions 0.222222222221 How large is it? -> $x: ($x, value, size) -> (The functions, write values of, the appropriate // size) -> The functions (4613ms) How large is it? Knead 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (Knead, shape into, medium-sized balls) -> Knead (4634ms) How large is it? Shape 0.222222222221 How large is it? -> $x: ($x, shape, size) -> (Shape, heart-shaped, Size) -> Shape (4605ms) Who is Aaron Copland? ?Appalachian Spring 0.22222222221799998 Who is Aaron Copland? -> $x: (aaron copland, do, $x) -> (Aaron Copland?s music, does n?t sound like, ?Appalachian Spring) -> ?Appalachian Spring (789ms) Who is Aaron Copland? Populist and Modernist 0.22222222221799998 Who is Aaron Copland? -> $x: (aaron copland, do, $x) -> (Aaron Copland, did between, Populist and Modernist) -> Populist and Modernist (789ms) Who is Aaron Copland? film 0.22222222221799998 Who is Aaron Copland? -> $x: (aaron copland, do, $x) -> (Aaron Copland, does n?t jibe well given the type of, film) -> film (789ms) Who is Aaron Copland? the music -0.111111111112 Who is Aaron Copland? -> $x: (aaron copland, be know for, $x) -> (Aaron Copland, is probably best known for, the music) -> the music (789ms) Who is Aaron Copland? the winner -0.222222222222 Who is Aaron Copland? -> $x: ($x, be of, aaron copland) -> (the winner, is a recipient of, the 2010 Aaron Copland Award) -> the winner (1161ms) Who is Aaron Copland? Read my previous Rick Perry -0.222222222222 Who is Aaron Copland? -> $x: ($x, do, aaron copland) -> (Read my previous Rick Perry, does, Aaron Copland) -> Read my previous Rick Perry (821ms) Who is Aaron Copland? Fromm -0.222222222222 Who is Aaron Copland? -> $x: ($x, be of, aaron copland) -> (Fromm, was then free to seek advice of, Aaron Copland) -> Fromm (1161ms) Who is Aaron Copland? The MCO -0.222222222222 Who is Aaron Copland? -> $x: ($x, play, aaron copland) -> (The MCO, played, Aaron Copland?s Concerto) -> The MCO (789ms) Who is Aaron Copland? Brooklyn -0.222222222222 Who is Aaron Copland? -> $x: ($x, here, aaron copland) -> (Brooklyn, People born here, Aaron Copland) -> Brooklyn (942ms) Who is Aaron Copland? the Symphonic Band -0.222222222222 Who is Aaron Copland? -> $x: ($x, play, aaron copland) -> (the Symphonic Band, will play, Aaron Copland) -> the Symphonic Band (789ms) Who is Aaron Copland? Roam Lisa Bielawa -0.222222222222 Who is Aaron Copland? -> $x: ($x, be of, aaron copland) -> (Roam Lisa Bielawa, is recipient of, the Aaron Copland Award) -> Roam Lisa Bielawa (1161ms) Who is Aaron Copland? influences -0.222222222222 Who is Aaron Copland? -> $x: ($x, do, aaron copland) -> (influences, does, Aaron Copland) -> influences (821ms) Who is Aaron Copland? Lisa Bielawa -0.222222222222 Who is Aaron Copland? -> $x: ($x, be of, aaron copland) -> (Lisa Bielawa, is a recent recipient of, the Aaron Copland Award) -> Lisa Bielawa (1161ms) Who is Aaron Copland? MIDI -0.222222222222 Who is Aaron Copland? -> $x: ($x, here, aaron copland) -> (MIDI, here 's a theme from, Aaron Copland) -> MIDI (942ms) Who is Aaron Copland? Giya Kancheli -0.222222222222 Who is Aaron Copland? -> $x: ($x, influence, aaron copland) -> (Giya Kancheli, Influenced By, Aaron Copland) -> Giya Kancheli (821ms) Who is Aaron Copland? 2000 -0.222222222222 Who is Aaron Copland? -> $x: ($x, be of, aaron copland) -> (2000, is both the centennial of, Aaron Copland) -> 2000 (1161ms) Who is Aaron Copland? jazz piano -0.222222222222 Who is Aaron Copland? -> $x: ($x, be of, aaron copland) -> (jazz piano, is a graduate of, the Aaron Copland School) -> jazz piano (1161ms) Who is Aaron Copland? a writing style -0.222222222222 Who is Aaron Copland? -> $x: ($x, be of, aaron copland) -> (a writing style, is a mix of, Aaron Copland) -> a writing style (1161ms) Who is Aaron Copland? 1938. -0.33333333333299997 Who is Aaron Copland? -> $x: (aaron copland, be in, $x) -> (Aaron Copland, was written in, 1938.) -> 1938. (1435ms) Who is Aaron Copland? society -0.33333333333299997 Who is Aaron Copland? -> $x: (aaron copland, be in, $x) -> (Aaron Copland Solitude One, can be instructed in, society) -> society (1435ms) Who is Aaron Copland? print -0.33333333333299997 Who is Aaron Copland? -> $x: (aaron copland, be in, $x) -> (Aaron Copland, was described in, print) -> print (1435ms) Who is Aaron Copland? the concert hall -0.33333333333299997 Who is Aaron Copland? -> $x: (aaron copland, be in, $x) -> (the composer Aaron Copland, is rarer in, the concert hall) -> the concert hall (1435ms) Who is Aaron Copland? 20th century music -0.33333333333299997 Who is Aaron Copland? -> $x: (aaron copland, be in, $x) -> (Aaron Copland, are both major figures in, 20th century music) -> 20th century music (1435ms) Who is Aaron Copland? 1900 -0.33333333333299997 Who is Aaron Copland? -> $x: (aaron copland, be in, $x) -> (Aaron Copland, was born in, 1900) -> 1900 (1435ms) Who is Aaron Copland? the park -0.444444444444 Who is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (the park, is very, Aaron Copland-like) -> the park (1451ms) Who is Aaron Copland? the only other American composer -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, is, the only other American composer) -> the only other American composer (1450ms) Who is Aaron Copland? November 14 -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (?Aaron Copland Aaron Copland, was born on, November 14) -> November 14 (1455ms) Who is Aaron Copland? Copland Wednesday -0.444444444444 Who is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (Copland Wednesday, is, Aaron Copland Day) -> Copland Wednesday (1454ms) Who is Aaron Copland? thrilling -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> ('s Aaron Copland-influenced music, is little short of, thrilling) -> thrilling (1454ms) Who is Aaron Copland? Nov 14 , 1900 -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, was born, Nov 14 , 1900) -> Nov 14 , 1900 (1446ms) Who is Aaron Copland? Adler -0.444444444444 Who is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (Adler, was awarded, the Aaron Copland Award) -> Adler (1454ms) Who is Aaron Copland? Thomas -0.444444444444 Who is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (Thomas, was awarded a grant from, the Aaron Copland Fund) -> Thomas (1453ms) Who is Aaron Copland? 2007 -0.444444444444 Who is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (2007, was just awarded, a 2010-11 Aaron Copland Fund) -> 2007 (1450ms) Who is Aaron Copland? The music -0.444444444444 Who is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (The music, was written by, Aaron Copland) -> The music (1453ms) Who is Aaron Copland? America?s best-beloved composer -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, is probably, America?s best-beloved composer) -> America?s best-beloved composer (1450ms) Who is Aaron Copland? The curtain raiser -0.444444444444 Who is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (The curtain raiser, was, Aaron Copland) -> The curtain raiser (1446ms) Who is Aaron Copland? The original score -0.444444444444 Who is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (The original score, was by, Aaron Copland) -> The original score (1450ms) Who is Aaron Copland? Sunny -0.444444444444 Who is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (Sunny, was commissioned by, the Aaron Copland Fund) -> Sunny (1451ms) Who is Aaron Copland? Rick Perry?s video -0.444444444444 Who is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (Rick Perry?s video, was from, the gay composer Aaron Copland) -> Rick Perry?s video (1451ms) Who is Aaron Copland? any -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> ('s Aaron Copland opus, is larger than, any) -> any (1452ms) Who is Aaron Copland? a spirit -0.444444444444 Who is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (a spirit, has been compared to, Aaron Copland) -> a spirit (1451ms) Who is Aaron Copland? The concerto -0.444444444444 Who is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (The concerto, was authored by, Aaron Copland) -> The concerto (1450ms) Who is Aaron Copland? an Eisenhower inauguration event -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, was pulled from, an Eisenhower inauguration event) -> an Eisenhower inauguration event (1450ms) Who is Aaron Copland? the White Crane -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland Dan Vera, is, the White Crane) -> the White Crane (1450ms) Who is Aaron Copland? public Monday -0.444444444444 Who is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (public Monday, are, composer Aaron Copland) -> public Monday (1455ms) Who is Aaron Copland? the role models -0.444444444444 Who is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (the role models, have always been, musicians-Aaron Copland) -> the role models (1450ms) Who is Aaron Copland? the best-loved American composers -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, is one of, the best-loved American composers) -> the best-loved American composers (1454ms) Who is Aaron Copland? Additional funds -0.444444444444 Who is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (Additional funds, are provided by, the Aaron Copland Fund) -> Additional funds (1446ms) Who is Aaron Copland? synonymous with American music -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland 's name, is, synonymous with American music) -> synonymous with American music (1452ms) Who is Aaron Copland? The show music -0.444444444444 Who is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (The show music, was by, Aaron Copland) -> The show music (1454ms) Who is Aaron Copland? SingPost -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (an Aaron Copland piano score, was dispatched via, SingPost) -> SingPost (1454ms) Who is Aaron Copland? the dean -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, is regarded as, the dean) -> the dean (1454ms) Who is Aaron Copland? a taut , precise performance -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, was given, a taut , precise performance) -> a taut , precise performance (1451ms) Who is Aaron Copland? one of our most famous contemporary composers -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, is, one of our most famous contemporary composers) -> one of our most famous contemporary composers (1435ms) Who is Aaron Copland? piano -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, is a musician who plays the, piano) -> piano (1454ms) Who is Aaron Copland? the Eiffel Tower -0.444444444444 Who is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (the Eiffel Tower, is, Aaron Copland) -> the Eiffel Tower (1446ms) Who is Aaron Copland? the program -0.444444444444 Who is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (the program, are, Aaron Copland?s ?Fanfare) -> the program (1454ms) Who is Aaron Copland? the event -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, were interspersed throughout, the event) -> the event (1455ms) Who is Aaron Copland? a slew -0.444444444444 Who is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (a slew, was friendly with, Aaron Copland) -> a slew (1446ms) Who is Aaron Copland? musician -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Leonard Bernstein and Aaron Copland, is a, musician) -> musician (1454ms) Who is Aaron Copland? May 2003 -0.444444444444 Who is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (May 2003, was awarded, the Aaron Copland Prize) -> May 2003 (1446ms) Who is Aaron Copland? America -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (September 18 , 2010 Aaron Copland, is one of, America) -> America (1453ms) Who is Aaron Copland? the simplicity -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (American musician Aaron Copland, was inspired by, the simplicity) -> the simplicity (1453ms) Who is Aaron Copland? Rick Perry?s new anti-gay ad -0.444444444444 Who is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (Rick Perry?s new anti-gay ad, is by, Aaron Copland) -> Rick Perry?s new anti-gay ad (1453ms) Who is Aaron Copland? Boulanger?s other students -0.444444444444 Who is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (Boulanger?s other students, were, Aaron Copland) -> Boulanger?s other students (1452ms) Who is Aaron Copland? artistic quality -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (The Aaron Copland Awards, is, artistic quality) -> artistic quality (1451ms) Who is Aaron Copland? composer -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, was to be, composer) -> composer (1448ms) Who is Aaron Copland? November 14 , 1900 -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, was born on, November 14 , 1900) -> November 14 , 1900 (1453ms) Who is Aaron Copland? a city slicker -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Composer Aaron Copland, was, a city slicker) -> a city slicker (1451ms) Who is Aaron Copland? teo new CDs -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (the 1996-7 Aaron Copland Award, is featured on, teo new CDs) -> teo new CDs (1451ms) Who is Aaron Copland? the rediscovery -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, were inspired by, the rediscovery) -> the rediscovery (1448ms) Who is Aaron Copland? the concert -0.444444444444 Who is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (the concert, was, Aaron Copland) -> the concert (1451ms) Who is Aaron Copland? World War II -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland?s Sonata, was written during, World War II) -> World War II (1451ms) Who is Aaron Copland? the American standard -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, is, the American standard) -> the American standard (1452ms) Who is Aaron Copland? Bernstein -0.444444444444 Who is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (Bernstein, was, Aaron Copland) -> Bernstein (1452ms) Who is Aaron Copland? Lanners -0.444444444444 Who is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (Lanners, was granted major funding from, the Aaron Copland Fund) -> Lanners (1446ms) Who is Aaron Copland? a rotating jury process -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (The Aaron Copland Awards, are based on, a rotating jury process) -> a rotating jury process (1454ms) Who is Aaron Copland? Best Score -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, was nominated for, Best Score) -> Best Score (1448ms) Who is Aaron Copland? Fontainebleu -0.444444444444 Who is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (Fontainebleu, was, Aaron Copland) -> Fontainebleu (1450ms) Who is Aaron Copland? Kapland -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, was changed from, Kapland) -> Kapland (1448ms) Who is Aaron Copland? a lifetime -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (~Aaron Copland ? Music, is enough for, a lifetime) -> a lifetime (1454ms) Who is Aaron Copland? the other hand -0.444444444444 Who is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (the other hand, has been characterized by, Aaron Copland) -> the other hand (1453ms) Who is Aaron Copland? the few whose pianism -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, were among, the few whose pianism) -> the few whose pianism (1448ms) Who is Aaron Copland? a neglected masterpiece -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, was revealed as, a neglected masterpiece) -> a neglected masterpiece (1451ms) Who is Aaron Copland? cent inspiration -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland Comer Cotrell Genius, is one per, cent inspiration) -> cent inspiration (1454ms) Who is Aaron Copland? the footage -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (The Aaron Copland music, is set perfectly with, the footage) -> the footage (1455ms) Who is Aaron Copland? the ad -0.444444444444 Who is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (the ad, was lifted from, gay composer Aaron Copland) -> the ad (1454ms) Who is Aaron Copland? Harold Shapero -0.444444444444 Who is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (Harold Shapero, was singled out by, Aaron Copland) -> Harold Shapero (1451ms) Who is Aaron Copland? lifelong friend -0.444444444444 Who is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (lifelong friend, was, the American composer Aaron Copland) -> lifelong friend (1454ms) Who is Aaron Copland? Copland -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, is better than, Copland) -> Copland (1446ms) Who is Aaron Copland? a world-renowned composer -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, was, a world-renowned composer) -> a world-renowned composer (1453ms) Who is Aaron Copland? a humorous piece -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, was, a humorous piece) -> a humorous piece (1448ms) Who is Aaron Copland? the most honored cultural figures -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, was one of, the most honored cultural figures) -> the most honored cultural figures (1451ms) Who is Aaron Copland? the original founder and first President -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, was, the original founder and first President) -> the original founder and first President (1450ms) Who is Aaron Copland? the American Music Center -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (" Aaron Copland, was among, the American Music Center) -> the American Music Center (1450ms) Who is Aaron Copland? a composer -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, has there been, a composer) -> a composer (1448ms) Who is Aaron Copland? Igor Stravinsky -0.444444444444 Who is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (Igor Stravinsky, was, Aaron Copland) -> Igor Stravinsky (1446ms) Who is Aaron Copland? Additional support -0.444444444444 Who is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (Additional support, was provided by, The Aaron Copland Fund) -> Additional support (1448ms) Who is Aaron Copland? composers -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, is the most American of, composers) -> composers (1448ms) Who is Aaron Copland? Additional funding -0.444444444444 Who is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (Additional funding, was provided by, The Aaron Copland Fund) -> Additional funding (1454ms) Who is Aaron Copland? George Benson -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (- Aaron Copland JakeJew, think is, George Benson) -> George Benson (1450ms) Who is Aaron Copland? the Music -0.444444444444 Who is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (the Music, was honored with, the ASCAP Aaron Copland Award) -> the Music (1454ms) Who is Aaron Copland? American folk songs -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (Aaron Copland, have been without, American folk songs) -> American folk songs (1454ms) Who is Aaron Copland? words -0.444444444444 Who is Aaron Copland? -> $x: (aaron copland, be be, $x) -> (~ Aaron Copland ?Music expresses, cannot be put into, words) -> words (1454ms) Who is Aaron Copland? Edward R. Murrow -0.444444444444 Who is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (Edward R. Murrow, was, Aaron Copland) -> Edward R. Murrow (1454ms) Who is Aaron Copland? Roach -0.444444444444 Who is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (Roach, is, the Aaron Copland) -> Roach (1446ms) Who is Aaron Copland? track -0.444444444444 Who is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (track, was, Aaron Copland) -> track (1454ms) Who is Aaron Copland? The film -0.444444444444 Who is Aaron Copland? -> $x: ($x, be be, aaron copland) -> (The film, was scored by, Aaron Copland) -> The film (1453ms) When was Microsoft established? Ireland 1.111111111106 When was Microsoft established? -> $x: (microsoft, be first establish in, $x) -> (Microsoft Ireland Microsoft, was first established in, Ireland) -> Ireland (796ms) When was Microsoft established? 1999 0.9999999999989999 When was Microsoft established? -> $x: (microsoft, be establish in, $x) -> (Microsoft Latvia, was established in, 1999) -> 1999 (795ms) When was Microsoft established? 1992 0.9999999999989999 When was Microsoft established? -> $x: (microsoft, be establish in, $x) -> (MicrosoftOfficeWebServer, was established in, 1992) -> 1992 (874ms) When was Microsoft established? 1975 0.9999999999989999 When was Microsoft established? -> $x: (microsoft, be establish in, $x) -> (Microsoft, was established in, 1975) -> 1975 (874ms) When was Microsoft established? 1981 0.9999999999989999 When was Microsoft established? -> $x: (microsoft, be establish in, $x) -> (MicrosoftOfficeWebServer, was established in, 1981) -> 1981 (795ms) When was Microsoft established? China 0.9999999999989999 When was Microsoft established? -> $x: (microsoft, be establish in, $x) -> (Microsoft, is establishing a center in, China) -> China (874ms) When was Microsoft established? Beijing 0.9999999999989999 When was Microsoft established? -> $x: (microsoft, be establish in, $x) -> (Microsoft Asian research institute, was established in, Beijing) -> Beijing (795ms) When was Microsoft established? 1980 0.9999999999989999 When was Microsoft established? -> $x: (microsoft, be establish in, $x) -> (Microsoft, was established in, 1980) -> 1980 (795ms) When was Microsoft established? 1979 0.9999999999989999 When was Microsoft established? -> $x: (microsoft, be establish in, $x) -> (MicrosoftOfficeWebServer, was established in, 1979) -> 1979 (795ms) When was Microsoft established? 1986 0.9999999999989999 When was Microsoft established? -> $x: (microsoft, be establish in, $x) -> (MicrosoftOfficeWebServer, was established in, 1986) -> 1986 (795ms) When was Microsoft established? Japan 0.9999999999989999 When was Microsoft established? -> $x: (microsoft, be establish in, $x) -> (ASCII Microsoft company, is formally established in, Japan) -> Japan (874ms) When was Microsoft established? the download 0.999999999998 When was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft Word OpenOffice, can be found in, the download) -> the download (963ms) When was Microsoft established? a whole bunch 0.999999999998 When was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Ex-Microsoft Employee, was found in, a whole bunch) -> a whole bunch (874ms) When was Microsoft established? older training 0.999999999998 When was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft Visual C++, are found packaged in, older training) -> older training (1326ms) When was Microsoft established? Windows 0.999999999998 When was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Other important Microsoft files, can be found in, Windows) -> Windows (963ms) When was Microsoft established? the Film menu 0.999999999998 When was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft Word, is found in, the Film menu) -> the Film menu (963ms) When was Microsoft established? the city 0.999999999998 When was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft, can be found in, the city) -> the city (994ms) When was Microsoft established? Word 0.999999999998 When was Microsoft established? -> $x: (microsoft, be find in, $x) -> (The Microsoft Office Button, is found in, Word) -> Word (994ms) When was Microsoft established? MS Office 0.999999999998 When was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft applications, could be found in, MS Office) -> MS Office (994ms) When was Microsoft established? violation 0.999999999998 When was Microsoft established? -> $x: (microsoft, be find in, $x) -> (1999 Microsoft, was found in, violation) -> violation (963ms) When was Microsoft established? the U. S. 0.999999999998 When was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft Office Accounting 2007, can be found in, the U. S.) -> the U. S. (1179ms) When was Microsoft established? a lot 0.999999999998 When was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft and Adobe computer software, are found in, a lot) -> a lot (963ms) When was Microsoft established? the edit menu 0.999999999998 When was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft Explorer, can be found in, the edit menu) -> the edit menu (874ms) When was Microsoft established? new ways 0.999999999998 When was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Problem Microsoft, was interested in finding, new ways) -> new ways (1326ms) When was Microsoft established? 75 % 0.999999999998 When was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft, is found in, 75 %) -> 75 % (994ms) When was Microsoft established? the Online Books 0.999999999998 When was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft SQL Server, can be found in, the Online Books) -> the Online Books (874ms) When was Microsoft established? the Common Files 0.999999999998 When was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft, can be found in, the Common Files) -> the Common Files (963ms) When was Microsoft established? dozens 0.999999999998 When was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft?s music player, is found in, dozens) -> dozens (1179ms) When was Microsoft established? contempt 0.999999999998 When was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft, is found in, contempt) -> contempt (1179ms) When was Microsoft established? the caves 0.999999999998 When was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft FS, has been found in, the caves) -> the caves (994ms) When was Microsoft established? the right approach 0.999999999998 When was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft, are taking a lead in finding, the right approach) -> the right approach (1179ms) When was Microsoft established? the upper left corner 0.999999999998 When was Microsoft established? -> $x: (microsoft, be find in, $x) -> (The Microsoft Office Button, is found in, the upper left corner) -> the upper left corner (1325ms) When was Microsoft established? several cases 0.999999999998 When was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft, has been found guilty recently in, several cases) -> several cases (1326ms) When was Microsoft established? the Start Menu 0.999999999998 When was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft Sound Recorder, can be found in, the Start Menu) -> the Start Menu (1179ms) When was Microsoft established? MSKB 246817 0.999999999998 When was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft, can be found in, MSKB 246817) -> MSKB 246817 (963ms) When was Microsoft established? corporations 0.999999999998 When was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft, is typically found in, corporations) -> corporations (1325ms) When was Microsoft established? the File menu 0.999999999998 When was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft Word, is found in, the File menu) -> the File menu (874ms) When was Microsoft established? April 2000 0.999999999998 When was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft, was found guilty in, April 2000) -> April 2000 (994ms) When was Microsoft established? Insert option 0.999999999998 When was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft Word, is found in, Insert option) -> Insert option (994ms) When was Microsoft established? a position 0.999999999998 When was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft, is finding itself in, a position) -> a position (963ms) When was Microsoft established? the possession 0.999999999998 When was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft software, were found in, the possession) -> the possession (1325ms) When was Microsoft established? Metro 0.999999999998 When was Microsoft established? -> $x: (microsoft, be find in, $x) -> (Microsoft?s Ribbon, can be found nowhere in, Metro) -> Metro (994ms) When was Microsoft established? System Tools 0.999999999998 When was Microsoft established? -> $x: (microsoft, be find in, $x) -> (The Microsoft Backup utility, can be found in, System Tools) -> System Tools (1179ms) When was Microsoft established? a few chapels 0.999999999998 When was Microsoft established? -> $x: (microsoft, be find in, $x) -> (microsoft windows, are still found in quite, a few chapels) -> a few chapels (1179ms) When was Microsoft established? Srinagar and Muzaffarabad 0.777777777777 When was Microsoft established? -> $x: (windows, be establish in, $x) -> (Visa windows, can be established in, Srinagar and Muzaffarabad) -> Srinagar and Muzaffarabad (1660ms) When was Microsoft established? the PC community 0.777777777777 When was Microsoft established? -> $x: (windows, be establish in, $x) -> (the Windows name, is established in, the PC community) -> the PC community (1659ms) When was Microsoft established? 1998 0.777777777777 When was Microsoft established? -> $x: (operate system, be establish in, $x) -> (the operating system software, was established in, 1998) -> 1998 (1727ms) When was Microsoft established? 1960 0.777777777777 When was Microsoft established? -> $x: (windows, be establish in, $x) -> (?Soft Loan Window ?, was established in, 1960) -> 1960 (1659ms) When was Microsoft established? 2001 0.777777777777 When was Microsoft established? -> $x: (windows, be establish in, $x) -> (Tallaght TSL Windows, was established in, 2001) -> 2001 (1659ms) When was Microsoft established? pre-historic times 0.777777777777 When was Microsoft established? -> $x: (windows, be establish in, $x) -> (Windows API, was established in, pre-historic times) -> pre-historic times (1660ms) When was Microsoft established? 2003 0.777777777777 When was Microsoft established? -> $x: (windows, be establish in, $x) -> (Windows Ciansoft, was established in, 2003) -> 2003 (1659ms) When was Microsoft established? January 0.777777777777 When was Microsoft established? -> $x: (windows, be establish in, $x) -> (A transfer window, is established in, January) -> January (1659ms) When was Microsoft established? the beginning 0.777777777777 When was Microsoft established? -> $x: (windows, be establish in, $x) -> (the Windows clipboard, was established in, the beginning) -> the beginning (1727ms) When was Microsoft established? Riva FLV encoder 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (windows, can be found in, Riva FLV encoder) -> Riva FLV encoder (3079ms) When was Microsoft established? JDeveloper 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (a window, can be found in, JDeveloper) -> JDeveloper (3103ms) When was Microsoft established? laptops 0.777777777776 When was Microsoft established? -> $x: (operate system, be find in, $x) -> (Linux operating systems, can be found in, laptops) -> laptops (3070ms) When was Microsoft established? the System Preferences 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (your Windows, is found in, the System Preferences) -> the System Preferences (3070ms) When was Microsoft established? the README file 0.777777777776 When was Microsoft established? -> $x: (operate system, be find in, $x) -> (various operating systems, can be found in, the README file) -> the README file (3087ms) When was Microsoft established? the rootdsks/color.gz 0.777777777776 When was Microsoft established? -> $x: (operate system, be find in, $x) -> (the minimum operating system, is found in, the rootdsks/color.gz) -> the rootdsks/color.gz (3111ms) When was Microsoft established? gg_arguments-->0 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (the window, can be found in, gg_arguments-->0) -> gg_arguments-->0 (1727ms) When was Microsoft established? the Downloads section 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows, can be found in, the Downloads section) -> the Downloads section (3111ms) When was Microsoft established? Section 3.5 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (window functions, can be found in, Section 3.5) -> Section 3.5 (3070ms) When was Microsoft established? the MPS Software 0.777777777776 When was Microsoft established? -> $x: (operate system, be find in, $x) -> (its specific operating system, can be found in, the MPS Software) -> the MPS Software (3095ms) When was Microsoft established? text 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows, is found in, text) -> text (2967ms) When was Microsoft established? the entrance areas 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows, are predominately found in, the entrance areas) -> the entrance areas (2967ms) When was Microsoft established? damp basements 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (window wells, are found in, damp basements) -> damp basements (3111ms) When was Microsoft established? the System Documentation 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows, can be found in, the System Documentation) -> the System Documentation (3111ms) When was Microsoft established? homes 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Picture windows, are often found in, homes) -> homes (3111ms) When was Microsoft established? Jones 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (large windows, are found in, Jones) -> Jones (3087ms) When was Microsoft established? Mac OS X 0.777777777776 When was Microsoft established? -> $x: (operate system, be find in, $x) -> (the same Darwin operating system core, is found in, Mac OS X) -> Mac OS X (2967ms) When was Microsoft established? an array 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Replacement windows, can be found in, an array) -> an array (3087ms) When was Microsoft established? such notable American edifices 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Zettler windows, can be found in, such notable American edifices) -> such notable American edifices (3087ms) When was Microsoft established? more upscale neighborhoods 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (wood windows, is generally found in, more upscale neighborhoods) -> more upscale neighborhoods (3079ms) When was Microsoft established? a folder 0.777777777776 When was Microsoft established? -> $x: (operate system, be find in, $x) -> (the Windows operating system, might be found in, a folder) -> a folder (2967ms) When was Microsoft established? Appendix H 0.777777777776 When was Microsoft established? -> $x: (operate system, be find in, $x) -> (an operating system basis, can be found in, Appendix H) -> Appendix H (3087ms) When was Microsoft established? the following sites 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows 7, can be found in, the following sites) -> the following sites (3079ms) When was Microsoft established? a book 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (the window, can be found in, a book) -> a book (3078ms) When was Microsoft established? the ambulatory 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (this window, is found in, the ambulatory) -> the ambulatory (3103ms) When was Microsoft established? partners 0.777777777776 When was Microsoft established? -> $x: (operate system, be find in, $x) -> (Google?s operating systems, can be found in, partners) -> partners (3103ms) When was Microsoft established? cli folder 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows CLI, can be found in, cli folder) -> cli folder (3111ms) When was Microsoft established? old houses 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (windows, are usually found in, old houses) -> old houses (1727ms) When was Microsoft established? different panel sizes 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Window shades, can be found in, different panel sizes) -> different panel sizes (3087ms) When was Microsoft established? the heart 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (the window, can be found in, the heart) -> the heart (3070ms) When was Microsoft established? Windows Server 2008 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows Vista, are usually found in, Windows Server 2008) -> Windows Server 2008 (3079ms) When was Microsoft established? Goetia 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (the window, can be found in, Goetia) -> Goetia (3095ms) When was Microsoft established? the file 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (this window, can be found in, the file) -> the file (3070ms) When was Microsoft established? the following link 0.777777777776 When was Microsoft established? -> $x: (ms word, be find in, $x) -> (MS-Word users, can be found in, the following link) -> the following link (3070ms) When was Microsoft established? the Microsoft Windows Help file 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows, can be found in, the Microsoft Windows Help file) -> the Microsoft Windows Help file (3103ms) When was Microsoft established? front 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (several windows, can be found in, front) -> front (3103ms) When was Microsoft established? a dictionary 0.777777777776 When was Microsoft established? -> $x: (ms word, be find in, $x) -> (M words, would probably be found in, a dictionary) -> a dictionary (3095ms) When was Microsoft established? the street 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (the window, were found in, the street) -> the street (3095ms) When was Microsoft established? Expression Blend 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows 8, can be found in, Expression Blend) -> Expression Blend (3070ms) When was Microsoft established? orinoco-fwutils 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows drivers, can be found in, orinoco-fwutils) -> orinoco-fwutils (3087ms) When was Microsoft established? a vast number 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Tinted windows, can be found in, a vast number) -> a vast number (1727ms) When was Microsoft established? the abstraction 0.777777777776 When was Microsoft established? -> $x: (operate system, be find in, $x) -> (an operating system, is to be found in, the abstraction) -> the abstraction (3087ms) When was Microsoft established? a haystack 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows, can be like finding a needle in, a haystack) -> a haystack (2967ms) When was Microsoft established? the Content Catalog 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows Phone, can be found in, the Content Catalog) -> the Content Catalog (3070ms) When was Microsoft established? the widely known project 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows, can also be found in, the widely known project) -> the widely known project (3079ms) When was Microsoft established? the v6 Forum 0.777777777776 When was Microsoft established? -> $x: (operate system, be find in, $x) -> (different operating systems, can be found here in, the v6 Forum) -> the v6 Forum (3079ms) When was Microsoft established? the NetCOBOL Installation Guide 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows ?, can be found in, the NetCOBOL Installation Guide) -> the NetCOBOL Installation Guide (3087ms) When was Microsoft established? the Windows directory 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows 95, is usually found in, the Windows directory) -> the Windows directory (3095ms) When was Microsoft established? a variety 0.777777777776 When was Microsoft established? -> $x: (operate system, be find in, $x) -> (Linux operating systems, can be found in, a variety) -> a variety (3070ms) When was Microsoft established? a small lobby 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (windows, can be found in, a small lobby) -> a small lobby (3111ms) When was Microsoft established? different parts 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (window glass, has been found in, different parts) -> different parts (3079ms) When was Microsoft established? churches 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Rose windows, can be found in, churches) -> churches (2159ms) When was Microsoft established? Microsoft knowledgebase article 967715 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows, can be found in, Microsoft knowledgebase article 967715) -> Microsoft knowledgebase article 967715 (3087ms) When was Microsoft established? the Personalization menu 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows 7, can be found in, the Personalization menu) -> the Personalization menu (3079ms) When was Microsoft established? Q22 0.777777777776 When was Microsoft established? -> $x: (operate system, be find in, $x) -> (supported operating systems, can be found in, Q22) -> Q22 (3095ms) When was Microsoft established? various sizes 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Window coverings, can be found in, various sizes) -> various sizes (3095ms) When was Microsoft established? different panel measurements 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Window shades, can be found in, different panel measurements) -> different panel measurements (3111ms) When was Microsoft established? Menegroth 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (this window, was to be found in, Menegroth) -> Menegroth (3111ms) When was Microsoft established? the program 0.777777777776 When was Microsoft established? -> $x: (operate system, be find in, $x) -> (X operating system, can be found in, the program) -> the program (1727ms) When was Microsoft established? basements 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Hopper windows, are typically found in, basements) -> basements (3111ms) When was Microsoft established? older homes 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (window, is often found in, older homes) -> older homes (3087ms) When was Microsoft established? Young 2001 , p 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (a Window ?, can be found in, Young 2001 , p) -> Young 2001 , p (3111ms) When was Microsoft established? Article 19 0.777777777776 When was Microsoft established? -> $x: (operate system, be find in, $x) -> (other operating systems, are found in, Article 19) -> Article 19 (3103ms) When was Microsoft established? disk drives 0.777777777776 When was Microsoft established? -> $x: (operate system, be find in, $x) -> (other operating systems, are found in, disk drives) -> disk drives (3103ms) When was Microsoft established? the $ 300 range 0.777777777776 When was Microsoft established? -> $x: (operate system, be find in, $x) -> (up-to-date operating systems, can be found in, the $ 300 range) -> the $ 300 range (3095ms) When was Microsoft established? the licensing aspects 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Window 8, might be found in, the licensing aspects) -> the licensing aspects (3070ms) When was Microsoft established? users 0.777777777776 When was Microsoft established? -> $x: (operate system, be find in, $x) -> (Unix-like operating systems, are most commonly found in, users) -> users (2967ms) When was Microsoft established? Victorian homes 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (These windows, are often found in, Victorian homes) -> Victorian homes (3070ms) When was Microsoft established? the simplicity 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows Server, can be found in, the simplicity) -> the simplicity (3095ms) When was Microsoft established? possession 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (the window, was found to be in, possession) -> possession (2159ms) When was Microsoft established? abandoned churches and schools 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (glass windows, can be found in, abandoned churches and schools) -> abandoned churches and schools (3103ms) When was Microsoft established? Maya architecture 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (True windows, are rarely found in, Maya architecture) -> Maya architecture (3103ms) When was Microsoft established? the FSF 0.777777777776 When was Microsoft established? -> $x: (operate system, be find in, $x) -> (fully free operating systems, can be found in, the FSF) -> the FSF (3087ms) When was Microsoft established? an entire apartment 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (one window, was found in, an entire apartment) -> an entire apartment (2159ms) When was Microsoft established? the north choir clearstorey 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (such windows, are to be found in, the north choir clearstorey) -> the north choir clearstorey (3070ms) When was Microsoft established? the installation guide 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows, can be found in, the installation guide) -> the installation guide (3111ms) When was Microsoft established? the /nt directory 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows NT, can be found in, the /nt directory) -> the /nt directory (3103ms) When was Microsoft established? Japanese addresses 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows, so is often found in, Japanese addresses) -> Japanese addresses (3103ms) When was Microsoft established? Section 4.2.8 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (window functions, can be found in, Section 4.2.8) -> Section 4.2.8 (3111ms) When was Microsoft established? the links 0.777777777776 When was Microsoft established? -> $x: (operate system, be find in, $x) -> (your operating system, can be found in, the links) -> the links (3103ms) When was Microsoft established? 90 percent 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows, is found in about, 90 percent) -> 90 percent (2967ms) When was Microsoft established? Georgian and Victorian homes 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (window design, is often found in, Georgian and Victorian homes) -> Georgian and Victorian homes (3103ms) When was Microsoft established? Saint Mary 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (The windows, are found in, Saint Mary) -> Saint Mary (3111ms) When was Microsoft established? SAM Broadcaster 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (This window, is found in, SAM Broadcaster) -> SAM Broadcaster (2159ms) When was Microsoft established? the living room area 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (A window, was found damaged in, the living room area) -> the living room area (3095ms) When was Microsoft established? about 90 percent of all computer desktops 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows, is found in, about 90 percent of all computer desktops) -> about 90 percent of all computer desktops (3079ms) When was Microsoft established? the registry 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows 8, can be found in, the registry) -> the registry (3103ms) When was Microsoft established? LogicIrpDispatcher 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows, can be found in, LogicIrpDispatcher) -> LogicIrpDispatcher (2967ms) When was Microsoft established? the Ile de France 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (rose windows, are to be found in, the Ile de France) -> the Ile de France (3079ms) When was Microsoft established? the libero extension 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (this window, can be found in, the libero extension) -> the libero extension (3079ms) When was Microsoft established? English pubs 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (windows, can still sometimes be found in, English pubs) -> English pubs (2159ms) When was Microsoft established? InsteantGet 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (windows explorer, could be found in, InsteantGet) -> InsteantGet (3079ms) When was Microsoft established? a redesigned user interface 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows 7, can be found in, a redesigned user interface) -> a redesigned user interface (3103ms) When was Microsoft established? the vast majority 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows Server, are found in, the vast majority) -> the vast majority (3095ms) When was Microsoft established? the Windows root directory 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows, will be found in, the Windows root directory) -> the Windows root directory (3111ms) When was Microsoft established? the WinSxS folder ? 0.777777777776 When was Microsoft established? -> $x: (operate system, be find in, $x) -> (the operating system, are found in, the WinSxS folder ?) -> the WinSxS folder ? (3078ms) When was Microsoft established? the document 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (maintenance windows, can be found in, the document) -> the document (3070ms) When was Microsoft established? several designs 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Window shades, can be found in, several designs) -> several designs (3095ms) When was Microsoft established? bathroom 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (WINDOW, is often found in, bathroom) -> bathroom (3103ms) When was Microsoft established? Marketplace 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows Phone, can be found in, Marketplace) -> Marketplace (3070ms) When was Microsoft established? a number 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (window blinds, are found in, a number) -> a number (3095ms) When was Microsoft established? cold climates 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (storm windows, are often found in, cold climates) -> cold climates (3095ms) When was Microsoft established? more than 200 countries 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows Mobile, can be found in, more than 200 countries) -> more than 200 countries (3087ms) When was Microsoft established? the Program Files directory 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows, is typically found in, the Program Files directory) -> the Program Files directory (2967ms) When was Microsoft established? the basement 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (windows, is found in, the basement) -> the basement (3087ms) When was Microsoft established? the latest 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows 8, will be found in, the latest) -> the latest (2967ms) When was Microsoft established? Control Panel 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows Update, can be found in, Control Panel) -> Control Panel (3070ms) When was Microsoft established? the WinSxS folder 0.777777777776 When was Microsoft established? -> $x: (operate system, be find in, $x) -> (the operating system, are found in, the WinSxS folder) -> the WinSxS folder (3087ms) When was Microsoft established? the PUB group 0.777777777776 When was Microsoft established? -> $x: (operate system, be find in, $x) -> (the MPE operating system, can be found in, the PUB group) -> the PUB group (1727ms) When was Microsoft established? a multitude 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (glass windows, are still found in, a multitude) -> a multitude (3095ms) When was Microsoft established? flagstone buildings 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (windows, are often found in, flagstone buildings) -> flagstone buildings (2967ms) When was Microsoft established? the file docs 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows, can be found in, the file docs) -> the file docs (3079ms) When was Microsoft established? 95 % 0.777777777776 When was Microsoft established? -> $x: (operate system, be find in, $x) -> (Windows operating system, could be found in, 95 %) -> 95 % (2967ms) When was Microsoft established? a form 0.777777777776 When was Microsoft established? -> $x: (windows, be find in, $x) -> (Windows Commander, can be found in, a form) -> a form (2159ms) When was Microsoft established? the stand slice 0.777777777776 When was Microsoft established? -> $x: (operate system, be find in, $x) -> (The bootable operating system unix, is found in, the stand slice) -> the stand slice (3079ms) When was Microsoft established? a vulnerability 0.6666666666650001 When was Microsoft established? -> $x: ($x, find, microsoft excel) -> (a vulnerability, found in, Excel of Microsoft Office) -> a vulnerability (3119ms) When was Microsoft established? Cannot 0.6666666666650001 When was Microsoft established? -> $x: ($x, find, microsoft excel) -> (Cannot, find, Microsoft Excel) -> Cannot (3119ms) When was Microsoft established? the IPS tab 0.6666666666650001 When was Microsoft established? -> $x: ($x, find, microsoft excel) -> (the IPS tab, find, the Microsoft Office Excel SELECTION Record) -> the IPS tab (3119ms) When was Microsoft established? the deep functionality 0.6666666666650001 When was Microsoft established? -> $x: ($x, find, microsoft excel) -> (the deep functionality, found in, Microsoft ? Excel?) -> the deep functionality (3119ms) When was Microsoft established? unequal variances 0.6666666666650001 When was Microsoft established? -> $x: ($x, find, microsoft excel) -> (unequal variances, found in, Microsoft Excel) -> unequal variances (3111ms) When was Microsoft established? a flaw 0.6666666666650001 When was Microsoft established? -> $x: ($x, find, microsoft excel) -> (a flaw, has been found in, Microsoft Office Excel) -> a flaw (3119ms) When was Microsoft established? the Springer site 0.555555555556 When was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft Word etc, can be found on, the Springer site) -> the Springer site (3127ms) When was Microsoft established? the Web. 0.555555555556 When was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft, can probably still be found somewhere on, the Web.) -> the Web. (3134ms) When was Microsoft established? a few more lovers 0.555555555556 When was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft, is counting on finding, a few more lovers) -> a few more lovers (3134ms) When was Microsoft established? SourceForge 0.555555555556 When was Microsoft established? -> $x: (microsoft, be found on, $x) -> (The Microsoft effort, can be found on, SourceForge) -> SourceForge (3134ms) When was Microsoft established? the Microsoft website 0.555555555556 When was Microsoft established? -> $x: (microsoft, be found on, $x) -> (the Microsoft Surface, can be found on, the Microsoft website) -> the Microsoft website (3134ms) When was Microsoft established? a hacking website 0.555555555556 When was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft software, has been found on, a hacking website) -> a hacking website (3127ms) When was Microsoft established? http://en.wikipedia.org/wiki/Microsoft%20Pinball%20Arcade 0.555555555556 When was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft Pinball Arcade, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Pinball%20Arcade) -> http://en.wikipedia.org/wiki/Microsoft%20Pinball%20Arcade (3127ms) When was Microsoft established? 15 percent 0.555555555556 When was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft, can already be found on, 15 percent) -> 15 percent (3127ms) When was Microsoft established? http://en.wikipedia.org/wiki/Microsoft%20XNA 0.555555555556 When was Microsoft established? -> $x: (microsoft, be found on, $x) -> (microsoft xna, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20XNA) -> http://en.wikipedia.org/wiki/Microsoft%20XNA (3127ms) When was Microsoft established? http://en.wikipedia.org/wiki/Microsoft%20Flight 0.555555555556 When was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft Flight, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Flight) -> http://en.wikipedia.org/wiki/Microsoft%20Flight (3119ms) When was Microsoft established? http://en.wikipedia.org/wiki/Microsoft%20Narrator 0.555555555556 When was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft Narrator, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Narrator) -> http://en.wikipedia.org/wiki/Microsoft%20Narrator (3119ms) When was Microsoft established? VersusSport.com 0.555555555556 When was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft Tag, can also be found on, VersusSport.com) -> VersusSport.com (3120ms) When was Microsoft established? release standards 0.555555555556 When was Microsoft established? -> $x: (microsoft, be found on, $x) -> (The Microsoft reader, is found on, release standards) -> release standards (3127ms) When was Microsoft established? www .sugarexchange 0.555555555556 When was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft Outlook, can be found on, www .sugarexchange) -> www .sugarexchange (3119ms) When was Microsoft established? Evolving Solutions 0.555555555556 When was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft?s Toby Velte, may be found on, Evolving Solutions) -> Evolving Solutions (3127ms) When was Microsoft established? http://en.wikipedia.org/wiki/Microsoft%20Baseball%202001 0.555555555556 When was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft Baseball 2001, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Baseball%202001) -> http://en.wikipedia.org/wiki/Microsoft%20Baseball%202001 (3127ms) When was Microsoft established? June 25 , 2003 0.555555555556 When was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft Media Player 9 Series, was found on, June 25 , 2003) -> June 25 , 2003 (3134ms) When was Microsoft established? the web server Microsoft 0.555555555556 When was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft products, can be found on, the web server Microsoft) -> the web server Microsoft (3119ms) When was Microsoft established? more than 160 mobile phones 0.555555555556 When was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft software, can be found on, more than 160 mobile phones) -> more than 160 mobile phones (3119ms) When was Microsoft established? http://en.wikipedia.org/wiki/Microsoft%20Binary%20Format 0.555555555556 When was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft Binary Format, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Binary%20Format) -> http://en.wikipedia.org/wiki/Microsoft%20Binary%20Format (3127ms) When was Microsoft established? the same site 0.555555555556 When was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft Windows, can also be found on, the same site) -> the same site (3127ms) When was Microsoft established? the MVP website 0.555555555556 When was Microsoft established? -> $x: (microsoft, be found on, $x) -> (a Microsoft MVP, can be found on, the MVP website) -> the MVP website (3134ms) When was Microsoft established? http://en.wikipedia.org/wiki/Microsoft%20Press 0.555555555556 When was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft Press, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Press) -> http://en.wikipedia.org/wiki/Microsoft%20Press (3119ms) When was Microsoft established? http://en.wikipedia.org/wiki/Microsoft%20Tinker 0.555555555556 When was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft Tinker, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Tinker) -> http://en.wikipedia.org/wiki/Microsoft%20Tinker (3127ms) When was Microsoft established? two handsets 0.555555555556 When was Microsoft established? -> $x: (microsoft, be found on, $x) -> (The Microsoft Windows Phone OS, was only found on, two handsets) -> two handsets (3134ms) When was Microsoft established? http://en.wikipedia.org/wiki/Microsoft%20Space%20Simulator 0.555555555556 When was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft Space Simulator, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Space%20Simulator) -> http://en.wikipedia.org/wiki/Microsoft%20Space%20Simulator (3119ms) When was Microsoft established? http://en.wikipedia.org/wiki/Bing%20Maps%20Platform 0.555555555556 When was Microsoft established? -> $x: (microsoft, be found on, $x) -> (microsoft virtual earth, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Bing%20Maps%20Platform) -> http://en.wikipedia.org/wiki/Bing%20Maps%20Platform (3119ms) When was Microsoft established? Jiew?s laptop 0.555555555556 When was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft?s Outlook application, was found on, Jiew?s laptop) -> Jiew?s laptop (3134ms) When was Microsoft established? Microsoft 0.555555555556 When was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft Visio 2003, can be found on, Microsoft) -> Microsoft (3127ms) When was Microsoft established? http://en.wikipedia.org/wiki/Microsoft%20Research%20Maps 0.555555555556 When was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft TerraServer, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Research%20Maps) -> http://en.wikipedia.org/wiki/Microsoft%20Research%20Maps (3127ms) When was Microsoft established? http://en.wikipedia.org/wiki/Microsoft%20Entertainment%20Pack 0.555555555556 When was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft Entertainment Pack, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Entertainment%20Pack) -> http://en.wikipedia.org/wiki/Microsoft%20Entertainment%20Pack (3127ms) When was Microsoft established? the Microsoft Web site 0.555555555556 When was Microsoft established? -> $x: (microsoft, be found on, $x) -> (Microsoft Press, can be found on, the Microsoft Web site) -> the Microsoft Web site (3134ms) When was Microsoft established? the jury 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (the jury, found, Microsoft) -> the jury (3149ms) When was Microsoft established? the extra signing key 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (the extra signing key, found in, Microsoft) -> the extra signing key (3149ms) When was Microsoft established? Security New security holes 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (Security New security holes, are being found in, Microsoft) -> Security New security holes (3156ms) When was Microsoft established? Bill Gates 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (Bill Gates, found, Microsoft) -> Bill Gates (3134ms) When was Microsoft established? participating retailers 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (participating retailers, found through, Microsoft) -> participating retailers (3169ms) When was Microsoft established? IE7 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (IE7, can be found on, Microsoft) -> IE7 (3156ms) When was Microsoft established? the full versions 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (the full versions, found in, Microsoft) -> the full versions (3142ms) When was Microsoft established? BASIC 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (BASIC, found, Microsoft) -> BASIC (3163ms) When was Microsoft established? Follow descriptions 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (Follow descriptions, found at, Microsoft) -> Follow descriptions (3163ms) When was Microsoft established? an early highly-sought programmer 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (an early highly-sought programmer, found, Microsoft) -> an early highly-sought programmer (3163ms) When was Microsoft established? Users 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (Users, find, Microsoft) -> Users (3156ms) When was Microsoft established? The court 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (The court, also found, Microsoft) -> The court (3169ms) When was Microsoft established? SQLXML works 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (SQLXML works, can be found in, Microsoft) -> SQLXML works (3149ms) When was Microsoft established? tool 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (tool, is increasingly finding, Microsoft) -> tool (3149ms) When was Microsoft established? the square graphical design 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (the square graphical design, found on, Microsoft) -> the square graphical design (3163ms) When was Microsoft established? The only bluetooth mouse I?ve 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (The only bluetooth mouse I?ve, found from, Microsoft) -> The only bluetooth mouse I?ve (3134ms) When was Microsoft established? A short-sighted court 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (A short-sighted court, found, Microsoft) -> A short-sighted court (3156ms) When was Microsoft established? lesser-known applications 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (lesser-known applications, found on, Microsoft) -> lesser-known applications (3163ms) When was Microsoft established? 2. INTERNET INFO 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (2. INTERNET INFO, find more information about, Microsoft) -> 2. INTERNET INFO (3149ms) When was Microsoft established? the cryptographically-secure RNG system 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (the cryptographically-secure RNG system, found in, Microsoft) -> the cryptographically-secure RNG system (3163ms) When was Microsoft established? the utility 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (the utility, can be found at, Microsoft) -> the utility (3134ms) When was Microsoft established? The judge 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (The judge, found, Microsoft) -> The judge (3142ms) When was Microsoft established? a security problem 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (a security problem, is found, Microsoft) -> a security problem (3156ms) When was Microsoft established? 80 people 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (80 people, find any reference to, Microsoft) -> 80 people (3142ms) When was Microsoft established? Further information 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (Further information, can be found in, Microsoft) -> Further information (3163ms) When was Microsoft established? a SAPI 5 installer 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (a SAPI 5 installer, can be found on, Microsoft) -> a SAPI 5 installer (3169ms) When was Microsoft established? the points-based payment system 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (the points-based payment system, found on, Microsoft) -> the points-based payment system (3149ms) When was Microsoft established? Macs Metadata 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (Macs Metadata, found on, Microsoft) -> Macs Metadata (3142ms) When was Microsoft established? a multiplication bug 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (a multiplication bug, found in, Microsoft) -> a multiplication bug (3169ms) When was Microsoft established? the Commission 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (the Commission, find, Microsoft) -> the Commission (3163ms) When was Microsoft established? the district court 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (the district court, found against, Microsoft) -> the district court (3163ms) When was Microsoft established? Harvard 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (Harvard, found, Microsoft) -> Harvard (3149ms) When was Microsoft established? bugs 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (bugs, have been found throughout, Microsoft) -> bugs (3142ms) When was Microsoft established? SQL 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (SQL, may find, Microsoft) -> SQL (3169ms) When was Microsoft established? the court 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (the court, found for, Microsoft) -> the court (3142ms) When was Microsoft established? Customers 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (Customers, find unique value in, Microsoft) -> Customers (3169ms) When was Microsoft established? UAC 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (UAC, can be found at, Microsoft) -> UAC (3142ms) When was Microsoft established? Allen and Gates 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (Allen and Gates, found, Microsoft) -> Allen and Gates (3169ms) When was Microsoft established? the standard DVD drive 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (the standard DVD drive, found in, Microsoft) -> the standard DVD drive (3142ms) When was Microsoft established? the European Union 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (the European Union, found, Microsoft) -> the European Union (3149ms) When was Microsoft established? information technology professionals 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (information technology professionals, found, Microsoft) -> information technology professionals (3134ms) When was Microsoft established? The Panel 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (The Panel, found, Microsoft) -> The Panel (3149ms) When was Microsoft established? Tim Paterson 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (Tim Paterson, found employment at, Microsoft) -> Tim Paterson (3169ms) When was Microsoft established? Paul Allen 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (Paul Allen, officially found, Microsoft) -> Paul Allen (3156ms) When was Microsoft established? the outcome?ITC issues 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (the outcome?ITC issues, finds, Microsoft) -> the outcome?ITC issues (3142ms) When was Microsoft established? the appellate court 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (the appellate court, found, Microsoft) -> the appellate court (3169ms) When was Microsoft established? thus microsoft WILL 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (thus microsoft WILL, find, Microsoft) -> thus microsoft WILL (3142ms) When was Microsoft established? the resulting list 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (the resulting list, find, Microsoft) -> the resulting list (3149ms) When was Microsoft established? The following open-source tools 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (The following open-source tools, be found on, Microsoft) -> The following open-source tools (3163ms) When was Microsoft established? the Answer Desks 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (the Answer Desks, found in, Microsoft) -> the Answer Desks (3169ms) When was Microsoft established? ITC issues 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (ITC issues, finds, Microsoft) -> ITC issues (3156ms) When was Microsoft established? A seven-day trial 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (A seven-day trial, found, Microsoft) -> A seven-day trial (3134ms) When was Microsoft established? information 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (information, can be found at, Microsoft) -> information (3149ms) When was Microsoft established? satan 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (satan, found, Microsoft) -> satan (3156ms) When was Microsoft established? the term 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (the term, found, Microsoft) -> the term (3163ms) When was Microsoft established? the hackers 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (the hackers, found, Microsoft) -> the hackers (3156ms) When was Microsoft established? Additional information 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (Additional information, can be found at, Microsoft) -> Additional information (3142ms) When was Microsoft established? security issues 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (security issues, found to, Microsoft) -> security issues (3169ms) When was Microsoft established? two people 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (two people, have found, Microsoft) -> two people (3142ms) When was Microsoft established? the improvements and enhancements 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (the improvements and enhancements, found in, Microsoft) -> the improvements and enhancements (3169ms) When was Microsoft established? traditional print publishers 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (traditional print publishers, found in, Microsoft) -> traditional print publishers (3156ms) When was Microsoft established? The study 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (The study, found, Microsoft) -> The study (3156ms) When was Microsoft established? highly publicized security vulnerabilities 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (highly publicized security vulnerabilities, found in, Microsoft) -> highly publicized security vulnerabilities (3163ms) When was Microsoft established? files 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (files, found in, Microsoft) -> files (3169ms) When was Microsoft established? PrimeSense?technology 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (PrimeSense?technology, also found in, Microsoft) -> PrimeSense?technology (3134ms) When was Microsoft established? Part 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (Part, found, Microsoft) -> Part (3142ms) When was Microsoft established? the functionality 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (the functionality, found in, Microsoft) -> the functionality (3156ms) When was Microsoft established? Judge Jackson 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (Judge Jackson, found, Microsoft) -> Judge Jackson (3169ms) When was Microsoft established? the 1394 Storage Supplement 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (the 1394 Storage Supplement, found on, Microsoft) -> the 1394 Storage Supplement (3156ms) When was Microsoft established? The two most notable examples 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (The two most notable examples, can be found in, Microsoft) -> The two most notable examples (3156ms) When was Microsoft established? the critical updates packages 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (the critical updates packages, found at, Microsoft) -> the critical updates packages (3149ms) When was Microsoft established? the five activities 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (the five activities, found in, Microsoft) -> the five activities (3142ms) When was Microsoft established? micros* 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (micros*, will find, Microsoft) -> micros* (3134ms) When was Microsoft established? a child dream 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (a child dream, find out, Microsoft) -> a child dream (3169ms) When was Microsoft established? The EC 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (The EC, found, Microsoft) -> The EC (3176ms) When was Microsoft established? the same Terminator 2 trailer clip 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (the same Terminator 2 trailer clip, found at, Microsoft) -> the same Terminator 2 trailer clip (3163ms) When was Microsoft established? a federal judge 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (a federal judge, found, Microsoft) -> a federal judge (3169ms) When was Microsoft established? a cartoon 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (a cartoon, found on, Microsoft) -> a cartoon (3163ms) When was Microsoft established? products 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (products, found using, Microsoft) -> products (3163ms) When was Microsoft established? Alan Pelz-Sharpe 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (Alan Pelz-Sharpe, finds, Microsoft) -> Alan Pelz-Sharpe (3156ms) When was Microsoft established? Jackson 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (Jackson, found, Microsoft) -> Jackson (3163ms) When was Microsoft established? the Account Lockout tools 0.555555555555 When was Microsoft established? -> $x: ($x, find, microsoft) -> (the Account Lockout tools, found out, Microsoft) -> the Account Lockout tools (3142ms) When was Microsoft established? 2009 0.444444444444 When was Microsoft established? -> $x: (microsoft, be develop in, $x) -> (MicrosoftOfficeWebServer, was developed in, 2009) -> 2009 (3211ms) When was Microsoft established? academic circles 0.444444444444 When was Microsoft established? -> $x: (microsoft, be develop in, $x) -> (Microsoft, were already developed in, academic circles) -> academic circles (3200ms) When was Microsoft established? The reporter 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (The reporter, found in, the interview Microsoft Office 2010) -> The reporter (3195ms) When was Microsoft established? the hibernate function 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft window) -> (the hibernate function, found in, Microsoft Windows) -> the hibernate function (3189ms) When was Microsoft established? the File Explorer program 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft window) -> (the File Explorer program, found in, Microsoft Windows) -> the File Explorer program (3182ms) When was Microsoft established? OneNote 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (OneNote, can be found, utilizing MICROSOFT Office 2010) -> OneNote (3189ms) When was Microsoft established? touch gestures 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft window) -> (touch gestures, found in, Microsoft Windows 7) -> touch gestures (3195ms) When was Microsoft established? the features 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (the features, found in, Microsoft Office) -> the features (3189ms) When was Microsoft established? the programs 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (the programs, found in, Microsoft Office) -> the programs (3209ms) When was Microsoft established? new vulnerabilities 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft window) -> (new vulnerabilities, found in, Microsoft Windows) -> new vulnerabilities (3189ms) When was Microsoft established? Office Live Workspace 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (Office Live Workspace, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Office%20Live) -> Office Live Workspace (3189ms) When was Microsoft established? the pages users 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (the pages users, will find at, Microsoft Office Online) -> the pages users (3200ms) When was Microsoft established? switch 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (switch, find, Microsoft Office 11.0 Object Library) -> switch (3189ms) When was Microsoft established? the next 30 days 0.444444444444 When was Microsoft established? -> $x: (microsoft, be develop in, $x) -> (Microsoft, will be developed in, the next 30 days) -> the next 30 days (3200ms) When was Microsoft established? the Encryption File System 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft window) -> (the Encryption File System, found in, Microsoft Windows) -> the Encryption File System (3183ms) When was Microsoft established? a fraction 0.444444444444 When was Microsoft established? -> $x: (microsoft, be develop in, $x) -> (Microsoft .NET solutions, are also developed in, a fraction) -> a fraction (3195ms) When was Microsoft established? the capabilities 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (the capabilities, found in, Microsoft Office) -> the capabilities (3205ms) When was Microsoft established? the image formats 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft window) -> (the image formats, found on, Microsoft Windows environments) -> the image formats (3210ms) When was Microsoft established? order 0.444444444444 When was Microsoft established? -> $x: (microsoft, be develop in, $x) -> (A Microsoft Visual Studio add-in, was developed in, order) -> order (3209ms) When was Microsoft established? the Critical Updates 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft window) -> (the Critical Updates, found on, the Microsoft Window) -> the Critical Updates (3176ms) When was Microsoft established? the single button menus 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (the single button menus, found in, Microsoft Office) -> the single button menus (3200ms) When was Microsoft established? The concept 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft window) -> (The concept, is also found in, Microsoft Windows) -> The concept (3200ms) When was Microsoft established? 1984 0.444444444444 When was Microsoft established? -> $x: (microsoft, be develop in, $x) -> (Microsoft GWBasic computer programs, were developed in, 1984) -> 1984 (3189ms) When was Microsoft established? the issue 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft window) -> (the issue, can be found in, your microsoft windows) -> the issue (3189ms) When was Microsoft established? Nachi 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft window) -> (Nachi, were found in, Microsoft Windows) -> Nachi (3200ms) When was Microsoft established? Austria 0.444444444444 When was Microsoft established? -> $x: (microsoft, be develop in, $x) -> (Microsoft Dynamics, is being developed in, Austria) -> Austria (3209ms) When was Microsoft established? cartoons 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (cartoons, is found at, Microsoft Office Online Clip Art) -> cartoons (3195ms) When was Microsoft established? small mental health practices 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (small mental health practices, may find, Microsoft Office) -> small mental health practices (3195ms) When was Microsoft established? code 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (code, found in, Microsoft Office Professional Edition 2003) -> code (3200ms) When was Microsoft established? the tutorial 0.444444444444 When was Microsoft established? -> $x: (microsoft, be develop in, $x) -> (Microsoft FrontPage, was used in developing, the tutorial) -> the tutorial (3189ms) When was Microsoft established? several fonts 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft window) -> (several fonts, are found in, Microsoft Windows) -> several fonts (3182ms) When was Microsoft established? Web archive file 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (Web archive file, found in, the Microsoft Office 2002 suite) -> Web archive file (3195ms) When was Microsoft established? the ExplorerBar control 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft window) -> (the ExplorerBar control, found in, Microsoft Windows) -> the ExplorerBar control (3200ms) When was Microsoft established? Pros 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (Pros, can find, the current Microsoft Office 2008) -> Pros (3183ms) When was Microsoft established? the applications 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (the applications, found in, Microsoft Office) -> the applications (3189ms) When was Microsoft established? ? tab 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (? tab, are found, Microsoft Office documents) -> ? tab (3183ms) When was Microsoft established? A zero-day flaw 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (A zero-day flaw, has been found in, Microsoft Office 2000) -> A zero-day flaw (3205ms) When was Microsoft established? cooperation 0.444444444444 When was Microsoft established? -> $x: (microsoft, be develop in, $x) -> (Microsoft, was developed in, cooperation) -> cooperation (3195ms) When was Microsoft established? The RSA encryption technology 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft window) -> (The RSA encryption technology, is found in, Microsoft Windows) -> The RSA encryption technology (3182ms) When was Microsoft established? the much-maligned assistant 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (the much-maligned assistant, found in, Microsoft Office 19972003) -> the much-maligned assistant (3183ms) When was Microsoft established? the same direction 0.444444444444 When was Microsoft established? -> $x: (microsoft, be develop in, $x) -> (Microsoft, is n?t visibly developing in, the same direction) -> the same direction (3209ms) When was Microsoft established? the Vivi you?ll 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft window) -> (the Vivi you?ll, find, Microsoft Windows XP) -> the Vivi you?ll (3183ms) When was Microsoft established? dialog boxes 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (dialog boxes, found in, Microsoft Office programs) -> dialog boxes (3189ms) When was Microsoft established? Help? 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (Help?, is found directly in, the Microsoft Office Ribbon) -> Help? (3200ms) When was Microsoft established? PDA Software 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft window) -> (PDA Software, Find, Microsoft Windows Mobile software) -> PDA Software (3195ms) When was Microsoft established? the Viridian 0.444444444444 When was Microsoft established? -> $x: (microsoft, be develop in, $x) -> (Microsoft, is developing in, the Viridian) -> the Viridian (3205ms) When was Microsoft established? changes 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (changes, found in, Microsoft Office 2010) -> changes (3205ms) When was Microsoft established? slow legacy flash file systems 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft window) -> (slow legacy flash file systems, found in, Microsoft Windows CE) -> slow legacy flash file systems (3176ms) When was Microsoft established? eBay 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (eBay, Find Learn, microsoft PowerPoint MS office Professor video) -> eBay (3205ms) When was Microsoft established? the Add 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (the Add, find, Microsoft Office 2000) -> the Add (3176ms) When was Microsoft established? you?ll 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft window) -> (you?ll, find, Microsoft Windows) -> you?ll (3183ms) When was Microsoft established? 2010 0.444444444444 When was Microsoft established? -> $x: (microsoft, be develop in, $x) -> (MicrosoftOfficeWebServer, was developed in, 2010) -> 2010 (3183ms) When was Microsoft established? The majority 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (The majority, can be found under, ?Microsoft Office 2010) -> The majority (3182ms) When was Microsoft established? Office 97 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (Office 97, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Office%2097) -> Office 97 (3183ms) When was Microsoft established? the ExplorerBar steer 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft window) -> (the ExplorerBar steer, found in, Microsoft Windows) -> the ExplorerBar steer (3176ms) When was Microsoft established? several programs 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (several programs, found within, microsoft office) -> several programs (3205ms) When was Microsoft established? The question types 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft window) -> (The question types, found on, the Microsoft Windows Vista exam) -> The question types (3200ms) When was Microsoft established? Click 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft window) -> (Click, Find updates for, Microsoft Windows operating systems) -> Click (3176ms) When was Microsoft established? Dial-Up Networking 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft window) -> (Dial-Up Networking, tries to find, a Microsoft Windows Network) -> Dial-Up Networking (3195ms) When was Microsoft established? NT. 0.444444444444 When was Microsoft established? -> $x: (microsoft, be develop in, $x) -> (dollars Microsoft, is investing in developing, NT.) -> NT. (3195ms) When was Microsoft established? large part 0.444444444444 When was Microsoft established? -> $x: (microsoft, be develop in, $x) -> (Microsoft, instead was developed in, large part) -> large part (3210ms) When was Microsoft established? two parallel tracks 0.444444444444 When was Microsoft established? -> $x: (microsoft, be develop in, $x) -> (Microsoft Windows, has been developed in, two parallel tracks) -> two parallel tracks (3205ms) When was Microsoft established? a system function driver 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft window) -> (a system function driver, found in, Microsoft Windows 2000) -> a system function driver (3205ms) When was Microsoft established? OLE 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (OLE, is found in, many Microsoft Office applications) -> OLE (3189ms) When was Microsoft established? file format 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (file format, found in, Microsoft Office 2007 and 2008) -> file format (3176ms) When was Microsoft established? the vba files 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (the vba files, found in, the microsoft office products) -> the vba files (3200ms) When was Microsoft established? high priority 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft window) -> (high priority, were found in, Microsoft Windows) -> high priority (3209ms) When was Microsoft established? You?ll 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (You?ll, find everything from, Microsoft Office) -> You?ll (3189ms) When was Microsoft established? Sep 23 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (Sep 23, Find, the Microsoft ?office ?) -> Sep 23 (3176ms) When was Microsoft established? the feature 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (the feature, found in, Microsoft Office) -> the feature (3209ms) When was Microsoft established? a bug 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (a bug, can also be found in, Microsoft Office Access 2007) -> a bug (3205ms) When was Microsoft established? You?ll 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (You?ll, find everything from, Microsoft Office) -> You?ll (3205ms) When was Microsoft established? richness 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (richness, found in, Microsoft Office applications) -> richness (3176ms) When was Microsoft established? Windows Media Player 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft window) -> (Windows Media Player, can be found on, Microsoft Windows Media) -> Windows Media Player (3183ms) When was Microsoft established? Microsoft Office News 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (Microsoft Office News, Find, the latest Microsoft Office news) -> Microsoft Office News (3205ms) When was Microsoft established? a user account 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft window) -> (a user account, typically found on, Microsoft Windows) -> a user account (3189ms) When was Microsoft established? the use-ability 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (the use-ability, found in, the on-premise Microsoft Office suite) -> the use-ability (3195ms) When was Microsoft established? standard development applications 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (standard development applications, found in, Microsoft Office) -> standard development applications (3195ms) When was Microsoft established? the Collapse/Expand feature 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (the Collapse/Expand feature, found in, Microsoft ? Office 2007) -> the Collapse/Expand feature (3183ms) When was Microsoft established? ribbon interface 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (ribbon interface, found in, Microsoft Office 2007) -> ribbon interface (3205ms) When was Microsoft established? a select number 0.444444444444 When was Microsoft established? -> $x: (microsoft, be develop in, $x) -> (Microsoft, is busy developing software in, a select number) -> a select number (3195ms) When was Microsoft established? the user interface 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft window) -> (the user interface, found in, Microsoft Windows) -> the user interface (3189ms) When was Microsoft established? the patch 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (the patch, can be found at, Microsoft Office 2000) -> the patch (3195ms) When was Microsoft established? Preview The 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (Preview The, found, Microsoft Office documents) -> Preview The (3182ms) When was Microsoft established? APIs 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft window) -> (APIs, found in, Microsoft Windows) -> APIs (3200ms) When was Microsoft established? the latest technologies 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft window) -> (the latest technologies, found in, Microsoft Windows) -> the latest technologies (3209ms) When was Microsoft established? dollars cost 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (dollars cost, Find, Microsoft Office product key) -> dollars cost (3176ms) When was Microsoft established? programs 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (programs, find, Microsoft Office HTML Filter 2.0) -> programs (3210ms) When was Microsoft established? the *nix goodies 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft window) -> (the *nix goodies, found in, Microsoft?s Windows Services) -> the *nix goodies (3209ms) When was Microsoft established? the popular software applications 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (the popular software applications, found in, Microsoft Office) -> the popular software applications (3200ms) When was Microsoft established? water pumps 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (water pumps, find, ? Microsoft Office) -> water pumps (3176ms) When was Microsoft established? the file formats 0.444444444444 When was Microsoft established? -> $x: ($x, find, microsoft office) -> (the file formats, found in, Microsoft Office) -> the file formats (3200ms) When was Microsoft established? Blogrunner 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows 8, can be found on, Blogrunner) -> Blogrunner (3215ms) When was Microsoft established? Boeing?s security system 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows vulnerabilities, are found on, Boeing?s security system) -> Boeing?s security system (3236ms) When was Microsoft established? http://en.wikipedia.org/wiki/Facing%20Windows 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Facing Windows, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Facing%20Windows) -> http://en.wikipedia.org/wiki/Facing%20Windows (3236ms) When was Microsoft established? http://en.wikipedia.org/wiki/Convergent%20Technologies%20Operating%20System 0.333333333334 When was Microsoft established? -> $x: (operate system, be found on, $x) -> (Convergent Technologies Operating System, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Convergent%20Technologies%20Operating%20System) -> http://en.wikipedia.org/wiki/Convergent%20Technologies%20Operating%20System (3220ms) When was Microsoft established? the following pages 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows XP, can be found on, the following pages) -> the following pages (3239ms) When was Microsoft established? the rocks 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (a window, was found unbroken on, the rocks) -> the rocks (3239ms) When was Microsoft established? the subject 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (replacement windows units, can be found on, the subject) -> the subject (3224ms) When was Microsoft established? http://en.wikipedia.org/wiki/Window%20of%20the%20World 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Window of the World, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Window%20of%20the%20World) -> http://en.wikipedia.org/wiki/Window%20of%20the%20World (3236ms) When was Microsoft established? http://en.wikipedia.org/wiki/Active%20window 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Active Window, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Active%20window) -> http://en.wikipedia.org/wiki/Active%20window (3228ms) When was Microsoft established? almost any device 0.333333333334 When was Microsoft established? -> $x: (operate system, be found on, $x) -> (The operating system, is found on, almost any device) -> almost any device (3224ms) When was Microsoft established? the downloads page 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows, can be found on, the downloads page) -> the downloads page (3239ms) When was Microsoft established? Wikipedia 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows EFS, can be found on, Wikipedia) -> Wikipedia (3215ms) When was Microsoft established? http://en.wikipedia.org/wiki/Windows%20Firewall 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows firewall, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Windows%20Firewall) -> http://en.wikipedia.org/wiki/Windows%20Firewall (3239ms) When was Microsoft established? the Wiki 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows, can be found on, the Wiki) -> the Wiki (3224ms) When was Microsoft established? base subcompacts 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (power windows, are rarely found on, base subcompacts) -> base subcompacts (3224ms) When was Microsoft established? http://en.wikipedia.org/wiki/World%20Outside%20My%20Window 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (World Outside My Window, can be found on Wikipedia at, http://en.wikipedia.org/wiki/World%20Outside%20My%20Window) -> http://en.wikipedia.org/wiki/World%20Outside%20My%20Window (3228ms) When was Microsoft established? the ground 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (a window, was subsequently found dead on, the ground) -> the ground (3239ms) When was Microsoft established? the towers 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows, are only found on, the towers) -> the towers (3228ms) When was Microsoft established? http://en.wikipedia.org/wiki/Windows%20IT%20Pro 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows IT Pro, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Windows%20IT%20Pro) -> http://en.wikipedia.org/wiki/Windows%20IT%20Pro (3215ms) When was Microsoft established? webservers 0.333333333334 When was Microsoft established? -> $x: (operate system, be found on, $x) -> (These operating systems, are most commonly found on, webservers) -> webservers (3239ms) When was Microsoft established? Dell?s site 0.333333333334 When was Microsoft established? -> $x: (operate system, be found on, $x) -> (older operating systems, could be found on, Dell?s site) -> Dell?s site (3228ms) When was Microsoft established? more than half 0.333333333334 When was Microsoft established? -> $x: (operate system, be found on, $x) -> (the Android operating system, is now found on, more than half) -> more than half (3232ms) When was Microsoft established? various web sites 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows, can be found on, various web sites) -> various web sites (3215ms) When was Microsoft established? Microsoft Windows Media 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows Media Player, can be found on, Microsoft Windows Media) -> Microsoft Windows Media (3215ms) When was Microsoft established? the exterior 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (This window, is found on, the exterior) -> the exterior (3220ms) When was Microsoft established? http://en.wikipedia.org/wiki/The%20Magic%20Window 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (The Magic Window, can be found on Wikipedia at, http://en.wikipedia.org/wiki/The%20Magic%20Window) -> http://en.wikipedia.org/wiki/The%20Magic%20Window (3236ms) When was Microsoft established? http://en.wikipedia.org/wiki/MARS%20(ticket%20reservation%20system) 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Green Window, can be found on Wikipedia at, http://en.wikipedia.org/wiki/MARS%20(ticket%20reservation%20system)) -> http://en.wikipedia.org/wiki/MARS%20(ticket%20reservation%20system) (3239ms) When was Microsoft established? iMac screens 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows interfaces, were easy to find on, iMac screens) -> iMac screens (3236ms) When was Microsoft established? windows 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows binaries, can be found on, windows) -> windows (3215ms) When was Microsoft established? supercomputers 0.333333333334 When was Microsoft established? -> $x: (operate system, be found on, $x) -> (operating systems, as is found on, supercomputers) -> supercomputers (3224ms) When was Microsoft established? pavements 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (smashed car windows, are regularly found on, pavements) -> pavements (3236ms) When was Microsoft established? http://en.wikipedia.org/wiki/Window%20on%20Main%20Street 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Window on Main Street, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Window%20on%20Main%20Street) -> http://en.wikipedia.org/wiki/Window%20on%20Main%20Street (3232ms) When was Microsoft established? a regular basis 0.333333333334 When was Microsoft established? -> $x: (operate system, be found on, $x) -> (operating systems, are found on, a regular basis) -> a regular basis (3224ms) When was Microsoft established? the Internet 0.333333333334 When was Microsoft established? -> $x: (operate system, be found on, $x) -> (operating systems, can easily be found on, the Internet) -> the Internet (3232ms) When was Microsoft established? http://en.wikipedia.org/wiki/Golden%20Windows 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Golden Windows, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Golden%20Windows) -> http://en.wikipedia.org/wiki/Golden%20Windows (3236ms) When was Microsoft established? the driver 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (both windows, can be found on, the driver) -> the driver (3243ms) When was Microsoft established? http://en.wikipedia.org/wiki/Steamy%20Windows 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Steamy Windows, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Steamy%20Windows) -> http://en.wikipedia.org/wiki/Steamy%20Windows (3236ms) When was Microsoft established? http://en.wikipedia.org/wiki/Webroot%20Window%20Washer 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Webroot Window Washer, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Webroot%20Window%20Washer) -> http://en.wikipedia.org/wiki/Webroot%20Window%20Washer (3232ms) When was Microsoft established? http://en.wikipedia.org/wiki/The%20High%20Window 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (The High Window, can be found on Wikipedia at, http://en.wikipedia.org/wiki/The%20High%20Window) -> http://en.wikipedia.org/wiki/The%20High%20Window (3228ms) When was Microsoft established? http://en.wikipedia.org/wiki/Champion%20Window%20Field 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (champion window field, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Champion%20Window%20Field) -> http://en.wikipedia.org/wiki/Champion%20Window%20Field (3224ms) When was Microsoft established? the Nexus One 0.333333333334 When was Microsoft established? -> $x: (operate system, be found on, $x) -> (the Android operating system, is also found on, the Nexus One) -> the Nexus One (3236ms) When was Microsoft established? http://en.wikipedia.org/wiki/Storm%20Windows 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Storm Windows, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Storm%20Windows) -> http://en.wikipedia.org/wiki/Storm%20Windows (3239ms) When was Microsoft established? Microsoft?s website 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows 7, can be found on, Microsoft?s website) -> Microsoft?s website (3219ms) When was Microsoft established? http://en.wikipedia.org/wiki/Cray%20Operating%20System 0.333333333334 When was Microsoft established? -> $x: (operate system, be found on, $x) -> (Cray Operating System, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Cray%20Operating%20System) -> http://en.wikipedia.org/wiki/Cray%20Operating%20System (3236ms) When was Microsoft established? larger laptops 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows laptops, are usually only found on, larger laptops) -> larger laptops (3232ms) When was Microsoft established? http://en.wikipedia.org/wiki/Aortic%20window 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (aortic window, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Aortic%20window) -> http://en.wikipedia.org/wiki/Aortic%20window (3224ms) When was Microsoft established? houses 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Sash windows, will commonly be found on, houses) -> houses (3239ms) When was Microsoft established? the 8daysaweek 0.333333333334 When was Microsoft established? -> $x: (operate system, be found on, $x) -> (any Operating System, can now be found on, the 8daysaweek) -> the 8daysaweek (3239ms) When was Microsoft established? the order form 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows products, can be found on, the order form) -> the order form (3224ms) When was Microsoft established? the three floors 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (windows, are found on, the three floors) -> the three floors (3215ms) When was Microsoft established? http://en.wikipedia.org/wiki/Cleaning%20Windows 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Cleaning Windows, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Cleaning%20Windows) -> http://en.wikipedia.org/wiki/Cleaning%20Windows (3220ms) When was Microsoft established? http://en.wikipedia.org/wiki/Sylvicola%20fenestralis 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Window Gnat, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Sylvicola%20fenestralis) -> http://en.wikipedia.org/wiki/Sylvicola%20fenestralis (3232ms) When was Microsoft established? NVIDIA.com 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows 8, can be found here on, NVIDIA.com) -> NVIDIA.com (3239ms) When was Microsoft established? http://en.wikipedia.org/wiki/Windows%201%2E0 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows 1.0, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Windows%201%2E0) -> http://en.wikipedia.org/wiki/Windows%201%2E0 (3220ms) When was Microsoft established? more than 90 percent 0.333333333334 When was Microsoft established? -> $x: (operate system, be found on, $x) -> ('s operating system, is found on, more than 90 percent) -> more than 90 percent (3228ms) When was Microsoft established? http://en.wikipedia.org/wiki/Doors%20and%20Windows 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (doors and windows, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Doors%20and%20Windows) -> http://en.wikipedia.org/wiki/Doors%20and%20Windows (3228ms) When was Microsoft established? http://en.wikipedia.org/wiki/Windows%2D1257 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows-1257, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Windows%2D1257) -> http://en.wikipedia.org/wiki/Windows%2D1257 (3232ms) When was Microsoft established? the AVR Freaks website 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows, can be found on, the AVR Freaks website) -> the AVR Freaks website (3232ms) When was Microsoft established? http://en.wikipedia.org/wiki/The%20Broken%20Window 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (the broken window, can be found on Wikipedia at, http://en.wikipedia.org/wiki/The%20Broken%20Window) -> http://en.wikipedia.org/wiki/The%20Broken%20Window (3224ms) When was Microsoft established? http://en.wikipedia.org/wiki/Window%2Deyes 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Window Eyes, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Window%2Deyes) -> http://en.wikipedia.org/wiki/Window%2Deyes (3220ms) When was Microsoft established? the Linux Operating System 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (The X Window, can be found on, the Linux Operating System) -> the Linux Operating System (3224ms) When was Microsoft established? the Johnny Mnemonic VR Player Homepage 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (windows, can be found on, the Johnny Mnemonic VR Player Homepage) -> the Johnny Mnemonic VR Player Homepage (3215ms) When was Microsoft established? the main Python site 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (even Windows, can be found on, the main Python site) -> the main Python site (3232ms) When was Microsoft established? either side 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (two windows, are found on, either side) -> either side (3224ms) When was Microsoft established? http://en.wikipedia.org/wiki/Paul%20G%2E%20Allen%20Family%20Foundation 0.333333333334 When was Microsoft established? -> $x: (paul allen, be found on, $x) -> (Paul G. Allen Family Foundation, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Paul%20G%2E%20Allen%20Family%20Foundation) -> http://en.wikipedia.org/wiki/Paul%20G%2E%20Allen%20Family%20Foundation (3232ms) When was Microsoft established? http://en.wikipedia.org/wiki/Windows%20Messenger 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows Messenger, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Windows%20Messenger) -> http://en.wikipedia.org/wiki/Windows%20Messenger (3239ms) When was Microsoft established? Boeing 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows vulnerabilities, are found on, Boeing) -> Boeing (3228ms) When was Microsoft established? http://en.wikipedia.org/wiki/Stained%20Glass%20Windows 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (stained glass windows, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Stained%20Glass%20Windows) -> http://en.wikipedia.org/wiki/Stained%20Glass%20Windows (3243ms) When was Microsoft established? the top-half section 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (the three windows, are found on, the top-half section) -> the top-half section (3228ms) When was Microsoft established? every wall and bath 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Large windows, can be found on almost, every wall and bath) -> every wall and bath (3220ms) When was Microsoft established? http://en.wikipedia.org/wiki/Windowing%20system 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows System, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Windowing%20system) -> http://en.wikipedia.org/wiki/Windowing%20system (3220ms) When was Microsoft established? any device 0.333333333334 When was Microsoft established? -> $x: (operate system, be found on, $x) -> (Operating systems, are found on, any device) -> any device (3220ms) When was Microsoft established? http://en.wikipedia.org/wiki/Casement%20window 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Casement windows, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Casement%20window) -> http://en.wikipedia.org/wiki/Casement%20window (3228ms) When was Microsoft established? http://en.wikipedia.org/wiki/100th%20Window 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (100th Window, can be found on Wikipedia at, http://en.wikipedia.org/wiki/100th%20Window) -> http://en.wikipedia.org/wiki/100th%20Window (3220ms) When was Microsoft established? Stylish Interior Window Shutters 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (window shutters, are found on, Stylish Interior Window Shutters) -> Stylish Interior Window Shutters (3215ms) When was Microsoft established? http://en.wikipedia.org/wiki/Windows%20Magazine 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows Magazine, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Windows%20Magazine) -> http://en.wikipedia.org/wiki/Windows%20Magazine (3236ms) When was Microsoft established? hatchbacks 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Rear window wipers, are typically found on, hatchbacks) -> hatchbacks (3236ms) When was Microsoft established? http://en.wikipedia.org/wiki/Therapeutic%20window 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Pharmacological window, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Therapeutic%20window) -> http://en.wikipedia.org/wiki/Therapeutic%20window (3239ms) When was Microsoft established? the active partition 0.333333333334 When was Microsoft established? -> $x: (operate system, be found on, $x) -> (the known operating systems, are found on, the active partition) -> the active partition (3224ms) When was Microsoft established? http://en.wikipedia.org/wiki/Windows%20Server 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows server, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Windows%20Server) -> http://en.wikipedia.org/wiki/Windows%20Server (3232ms) When was Microsoft established? http://en.wikipedia.org/wiki/Come%20to%20My%20Window 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Come To My Window, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Come%20to%20My%20Window) -> http://en.wikipedia.org/wiki/Come%20to%20My%20Window (3243ms) When was Microsoft established? the download page 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Official Windows binaries, can be found on, the download page) -> the download page (3228ms) When was Microsoft established? a daily basis 0.333333333334 When was Microsoft established? -> $x: (operate system, be found on, $x) -> (operating systems, are found practically on, a daily basis) -> a daily basis (3239ms) When was Microsoft established? the floor 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (the window, was found on, the floor) -> the floor (3232ms) When was Microsoft established? the system 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows Phone, is found on, the system) -> the system (3220ms) When was Microsoft established? the left side 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (windows, are typically found on, the left side) -> the left side (3228ms) When was Microsoft established? the Ascension website 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (all the windows, can be found on, the Ascension website) -> the Ascension website (3236ms) When was Microsoft established? http://en.wikipedia.org/wiki/Divine%20Operating%20System 0.333333333334 When was Microsoft established? -> $x: (operate system, be found on, $x) -> (Divine Operating System, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Divine%20Operating%20System) -> http://en.wikipedia.org/wiki/Divine%20Operating%20System (3219ms) When was Microsoft established? the left hand side 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (windows, are usually found on, the left hand side) -> the left hand side (3228ms) When was Microsoft established? the Accessories menu 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows Vista/Windows, can be found on, the Accessories menu) -> the Accessories menu (3219ms) When was Microsoft established? http://en.wikipedia.org/wiki/Crypto%20Operating%20System 0.333333333334 When was Microsoft established? -> $x: (operate system, be found on, $x) -> (Crypto Operating System, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Crypto%20Operating%20System) -> http://en.wikipedia.org/wiki/Crypto%20Operating%20System (3224ms) When was Microsoft established? http://en.wikipedia.org/wiki/Pharmacodynamics 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Pharmacy window, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Pharmacodynamics) -> http://en.wikipedia.org/wiki/Pharmacodynamics (3215ms) When was Microsoft established? http://en.wikipedia.org/wiki/Games%20for%20Windows 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Games for Windows, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Games%20for%20Windows) -> http://en.wikipedia.org/wiki/Games%20for%20Windows (3239ms) When was Microsoft established? the disk 0.333333333334 When was Microsoft established? -> $x: (operate system, be found on, $x) -> (a Windows operating system, was found on, the disk) -> the disk (3236ms) When was Microsoft established? http://en.wikipedia.org/wiki/100%20Broken%20Windows 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (100 Broken Windows, can be found on Wikipedia at, http://en.wikipedia.org/wiki/100%20Broken%20Windows) -> http://en.wikipedia.org/wiki/100%20Broken%20Windows (3228ms) When was Microsoft established? http://en.wikipedia.org/wiki/Johari%20window 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Johari window, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Johari%20window) -> http://en.wikipedia.org/wiki/Johari%20window (3232ms) When was Microsoft established? http://en.wikipedia.org/wiki/Windows%20Defender 0.333333333334 When was Microsoft established? -> $x: (windows, be found on, $x) -> (Windows AntiSpyware, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Windows%20Defender) -> http://en.wikipedia.org/wiki/Windows%20Defender (3224ms) When was Microsoft established? the default disk copy utility 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (the default disk copy utility, found in, Windows) -> the default disk copy utility (3254ms) When was Microsoft established? file name extensions and applications 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (file name extensions and applications, found within, Windows) -> file name extensions and applications (3266ms) When was Microsoft established? a New Hardware 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (a New Hardware, found, window) -> a New Hardware (3254ms) When was Microsoft established? The foremost and base point 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (The foremost and base point, find is, an operating system) -> The foremost and base point (3251ms) When was Microsoft established? the mapping software 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (the mapping software, Find, window) -> the mapping software (3249ms) When was Microsoft established? Two more flaws 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (Two more flaws, found in, windows) -> Two more flaws (3266ms) When was Microsoft established? Can?t 0.333333333333 When was Microsoft established? -> $x: ($x, find, ms word) -> (Can?t, quite find, a WordPress theme I?m) -> Can?t (3243ms) When was Microsoft established? Unix 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (Unix, can be found in, every major operating system) -> Unix (3256ms) When was Microsoft established? Security loophole 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (Security loophole, found in, Windows operating system) -> Security loophole (3267ms) When was Microsoft established? the search 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (the search, find, windows) -> the search (3254ms) When was Microsoft established? a memo 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (a memo, Find, window) -> a memo (3258ms) When was Microsoft established? The TCP/IP protocol 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (The TCP/IP protocol, is found in, major operating systems) -> The TCP/IP protocol (3263ms) When was Microsoft established? the front 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (the front, Find, window) -> the front (3251ms) When was Microsoft established? recent capabilities 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (recent capabilities, found in, Windows) -> recent capabilities (3256ms) When was Microsoft established? Jacs? 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (Jacs?, finds, Windows) -> Jacs? (3249ms) When was Microsoft established? Google 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (Google, finds, Windows) -> Google (3254ms) When was Microsoft established? the 'search ' 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (the 'search ', 'find, ' windows) -> the 'search ' (3263ms) When was Microsoft established? file creation operations 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (file creation operations, found in, many operating > systems) -> file creation operations (3266ms) When was Microsoft established? the calendar app 0.333333333333 When was Microsoft established? -> $x: ($x, find, microsoft outlook) -> (the calendar app, found in, Microsoft Outlook) -> the calendar app (3243ms) When was Microsoft established? February 15th 0.333333333333 When was Microsoft established? -> $x: ($x, find, ms word) -> (February 15th, found, a piece of MS Word macro) -> February 15th (3260ms) When was Microsoft established? ports 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (ports, found in, the operating system) -> ports (3262ms) When was Microsoft established? The report 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (The report, found, Windows) -> The report (3266ms) When was Microsoft established? Shakaki not compatible 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (Shakaki not compatible, find, new operating system) -> Shakaki not compatible (3266ms) When was Microsoft established? the drag-and-drop metaphor 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (the drag-and-drop metaphor, found in, most operating systems) -> the drag-and-drop metaphor (3254ms) When was Microsoft established? sure ?System Recovery Options ? 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (sure ?System Recovery Options ?, finds, a Operating System) -> sure ?System Recovery Options ? (3266ms) When was Microsoft established? Windows 7 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (Windows 7, may find using, this operating system) -> Windows 7 (3249ms) When was Microsoft established? White Box 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (White Box, Find, Windows) -> White Box (3249ms) When was Microsoft established? such surfaces 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (such surfaces, found, windows) -> such surfaces (3266ms) When was Microsoft established? the Media Manager 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (the Media Manager, Find, window) -> the Media Manager (3262ms) When was Microsoft established? The survey 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (The survey, found, the Windows operating system) -> The survey (3256ms) When was Microsoft established? Softodrom 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (Softodrom, Find, Windows) -> Softodrom (3258ms) When was Microsoft established? a list 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (a list, found, windows) -> a list (3256ms) When was Microsoft established? New Hardware 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (New Hardware, Found, window) -> New Hardware (3246ms) When was Microsoft established? computer Computer 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (computer Computer, can?t find, the operating system) -> computer Computer (3258ms) When was Microsoft established? The secret 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (The secret, is finding, an operating-system) -> The secret (3246ms) When was Microsoft established? the best file launcher I?ve 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (the best file launcher I?ve, found for, Windows) -> the best file launcher I?ve (3258ms) When was Microsoft established? the end 0.333333333333 When was Microsoft established? -> $x: ($x, find, ms excel) -> (the end, can be found in, an MS Excel file) -> the end (3254ms) When was Microsoft established? the Command Prompt 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (the Command Prompt, found in, Windows) -> the Command Prompt (3246ms) When was Microsoft established? Full terms and conditions 0.333333333333 When was Microsoft established? -> $x: ($x, find, ms word) -> (Full terms and conditions, can be found here, MS Word or pdf) -> Full terms and conditions (3260ms) When was Microsoft established? special client software 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (special client software, found in, modern operating systems) -> special client software (3258ms) When was Microsoft established? The viruses 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (The viruses, are found within, an operating system) -> The viruses (3265ms) When was Microsoft established? the soul 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (the soul, finds, windows) -> the soul (3262ms) When was Microsoft established? a very powerful feature 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (a very powerful feature, found on, the UNIX operating system) -> a very powerful feature (3264ms) When was Microsoft established? a user 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (a user, will have to find, the operating system) -> a user (3262ms) When was Microsoft established? PRINT STEP 2 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (PRINT STEP 2, Find, your operating system) -> PRINT STEP 2 (3263ms) When was Microsoft established? Paul G. Allen Family Foundation 0.333333333333 When was Microsoft established? -> $x: ($x, find, paul allen) -> (Paul G. Allen Family Foundation, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Paul%20G%2E%20Allen%20Family%20Foundation) -> Paul G. Allen Family Foundation (3262ms) When was Microsoft established? Q = missing article 0.333333333333 When was Microsoft established? -> $x: ($x, find, ms word) -> (Q = missing article, found in, M. 6th word) -> Q = missing article (3249ms) When was Microsoft established? More details 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (More details, can be found in, an operating system textbook) -> More details (3251ms) When was Microsoft established? the instructions 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (the instructions, found in, your operating system) -> the instructions (3267ms) When was Microsoft established? file 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (file, expects to find on, the operating system) -> file (3251ms) When was Microsoft established? privileged accounts 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (privileged accounts, are found in, every operating system) -> privileged accounts (3246ms) When was Microsoft established? computer management 0.333333333333 When was Microsoft established? -> $x: ($x, find, microsoft management console) -> (computer management, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Microsoft%20Management%20Console) -> computer management (3264ms) When was Microsoft established? a normal tool 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (a normal tool, found in, the operating system) -> a normal tool (3258ms) When was Microsoft established? sticky key functionality 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (sticky key functionality, found in, Windows) -> sticky key functionality (3256ms) When was Microsoft established? Software Updates 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (Software Updates, Find, Windows) -> Software Updates (3260ms) When was Microsoft established? the registry editors 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (the registry editors, found in, Windows) -> the registry editors (3264ms) When was Microsoft established? not everyone 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (not everyone, will find, the new operating system) -> not everyone (3251ms) When was Microsoft established? Office 2007 0.333333333333 When was Microsoft established? -> $x: ($x, find, microsoft outlook) -> (Office 2007, found, my way Microsoft outlook) -> Office 2007 (3263ms) When was Microsoft established? the reader 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (the reader, finds, windows) -> the reader (3246ms) When was Microsoft established? the McDonald \?s 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (the McDonald \?s, found, windows) -> the McDonald \?s (3264ms) When was Microsoft established? the Advanced 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (the Advanced, find, window) -> the Advanced (3265ms) When was Microsoft established? September 10 , 2009 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (September 10 , 2009, Find, Window) -> September 10 , 2009 (3260ms) When was Microsoft established? Details 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (Details, can be found in, the operating system) -> Details (3251ms) When was Microsoft established? Compatibility Info 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (Compatibility Info, Find out about, our operating system plans) -> Compatibility Info (3266ms) When was Microsoft established? CameronMcintyre i 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (CameronMcintyre i, found, windows) -> CameronMcintyre i (3249ms) When was Microsoft established? the Recycle Bin 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (the Recycle Bin, found in, Windows operating systems) -> the Recycle Bin (3246ms) When was Microsoft established? the new zero-day bug 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (the new zero-day bug, found in, Windows) -> the new zero-day bug (3249ms) When was Microsoft established? collaboration 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (collaboration, found on, Windows) -> collaboration (3263ms) When was Microsoft established? the internet 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (the internet, you?ll find a huge number of, operating systems) -> the internet (3251ms) When was Microsoft established? identification 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (identification, found on, this operating system) -> identification (3265ms) When was Microsoft established? the built-in capabilities 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (the built-in capabilities, found in, Windows) -> the built-in capabilities (3266ms) When was Microsoft established? youll 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (youll, find on, Windows) -> youll (3243ms) When was Microsoft established? click 0.333333333333 When was Microsoft established? -> $x: ($x, find, microsoft outlook) -> (click, Find, , and then click Using Microsoft Outlook) -> click (3265ms) When was Microsoft established? the shared libraries 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (the shared libraries, are found by, the operating system) -> the shared libraries (3254ms) When was Microsoft established? the categories 0.333333333333 When was Microsoft established? -> $x: ($x, find, microsoft outlook) -> (the categories, found within, Microsoft Outlook) -> the categories (3267ms) When was Microsoft established? medial yod 0.333333333333 When was Microsoft established? -> $x: ($x, find, ms word) -> (medial yod, found in, M. 5th word) -> medial yod (3246ms) When was Microsoft established? the list 0.333333333333 When was Microsoft established? -> $x: ($x, find, microsoft outlook) -> (the list, find, Microsoft Outlook Personal Folders Backup) -> the list (3263ms) When was Microsoft established? powerful pen-based features 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (powerful pen-based features, found in, current operating systems) -> powerful pen-based features (3256ms) When was Microsoft established? you?ll 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (you?ll, find, Windows) -> you?ll (3260ms) When was Microsoft established? the security 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (the security, found within, the operating system) -> the security (3260ms) When was Microsoft established? the usual holes 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (the usual holes, found in, network operating systems) -> the usual holes (3249ms) When was Microsoft established? The Ultimate Troubleshooter task 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (The Ultimate Troubleshooter task, found on, Windows) -> The Ultimate Troubleshooter task (3266ms) When was Microsoft established? Grub 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (Grub, finds, Windows) -> Grub (3265ms) When was Microsoft established? the 11,000 Kaspersky 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (the 11,000 Kaspersky, found for, Windows) -> the 11,000 Kaspersky (3265ms) When was Microsoft established? Fixed 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (Fixed, Find Existing, window) -> Fixed (3254ms) When was Microsoft established? The assessment form 0.333333333333 When was Microsoft established? -> $x: ($x, find, ms word) -> (The assessment form, can be found as, a MS Word) -> The assessment form (3260ms) When was Microsoft established? the prep + 0.333333333333 When was Microsoft established? -> $x: ($x, find, ms word) -> (the prep +, suf found in, M. 1st word) -> the prep + (3256ms) When was Microsoft established? the most common problems 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (the most common problems, found in, a windows operating system) -> the most common problems (3264ms) When was Microsoft established? features 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (features, seldom found even in, larger operating systems) -> features (3258ms) When was Microsoft established? the plain start menu 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (the plain start menu, find in, windows) -> the plain start menu (3263ms) When was Microsoft established? the temp directory 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (the temp directory, found in, all Windows Operating Systems) -> the temp directory (3251ms) When was Microsoft established? SCO 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (SCO, found, their Unix operating system) -> SCO (3260ms) When was Microsoft established? the trash functionality 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (the trash functionality, found in, many operating systems) -> the trash functionality (3263ms) When was Microsoft established? the walk-through inspection 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (the walk-through inspection, found, your HVAC system operating) -> the walk-through inspection (3243ms) When was Microsoft established? the default CopyDisk utility 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (the default CopyDisk utility, found in, Windows) -> the default CopyDisk utility (3260ms) When was Microsoft established? A vulnerability 0.333333333333 When was Microsoft established? -> $x: ($x, find, microsoft publisher) -> (A vulnerability, has been found in, Microsoft Publisher 2007) -> A vulnerability (3265ms) When was Microsoft established? I?ve 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (I?ve, found, Windows) -> I?ve (3262ms) When was Microsoft established? text/html Constants 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (text/html Constants, Find, window) -> text/html Constants (3267ms) When was Microsoft established? Live .com ? 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (Live .com ?, Find, Windows) -> Live .com ? (3266ms) When was Microsoft established? the glass 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (the glass, found in, windows) -> the glass (3258ms) When was Microsoft established? braille 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (braille, found in, Windows) -> braille (3263ms) When was Microsoft established? S&T 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (S&T, Find, window) -> S&T (3243ms) When was Microsoft established? constructs 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (constructs, found in, other multitasking operating systems) -> constructs (3258ms) When was Microsoft established? the tools 0.333333333333 When was Microsoft established? -> $x: ($x, find, microsoft outlook) -> (the tools, are already found with, Microsoft Outlook) -> the tools (3265ms) When was Microsoft established? Guys 0.333333333333 When was Microsoft established? -> $x: ($x, find, microsoft outlook) -> (Guys, found in, Microsoft Outlook 2000) -> Guys (3256ms) When was Microsoft established? the template 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (the template, found at, : Windows) -> the template (3246ms) When was Microsoft established? the NT4.0 CD 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (the NT4.0 CD, fails to find, the operating system) -> the NT4.0 CD (3263ms) When was Microsoft established? scheduling tools 0.333333333333 When was Microsoft established? -> $x: ($x, find, microsoft outlook) -> (scheduling tools, found in, Microsoft Outlook) -> scheduling tools (3265ms) When was Microsoft established? fonts 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (fonts, can be found on, some common operating systems) -> fonts (3246ms) When was Microsoft established? Templates 0.333333333333 When was Microsoft established? -> $x: ($x, find, ms word) -> (Templates, can be found below in, MS Word and LaTex) -> Templates (3266ms) When was Microsoft established? the magnifier 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (the magnifier, found under, windows) -> the magnifier (3254ms) When was Microsoft established? The most common tools 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (The most common tools, found on, most operating systems) -> The most common tools (3256ms) When was Microsoft established? the new network 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (the new network, found, windows) -> the new network (3256ms) When was Microsoft established? the basic items 0.333333333333 When was Microsoft established? -> $x: ($x, find, ms word) -> (the basic items, can be found on, the MS Word toolbars) -> the basic items (3246ms) When was Microsoft established? the same uIP stack 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (the same uIP stack, found in, the Contiki operating system) -> the same uIP stack (3262ms) When was Microsoft established? the vulnerabilities 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (the vulnerabilities, found in, Windows) -> the vulnerabilities (3251ms) When was Microsoft established? the Alt-Tab switcher 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (the Alt-Tab switcher, found in, Windows) -> the Alt-Tab switcher (3254ms) When was Microsoft established? file permissions 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (file permissions, found in, modern operating systems) -> file permissions (3264ms) When was Microsoft established? the shared library DLL files 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (the shared library DLL files, are found by, the operating system) -> the shared library DLL files (3260ms) When was Microsoft established? Stunned birds 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (Stunned birds, found below, windows) -> Stunned birds (3265ms) When was Microsoft established? the glitches 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (the glitches, found in, Windows) -> the glitches (3243ms) When was Microsoft established? the underlying messages 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (the underlying messages, find, windows) -> the underlying messages (3264ms) When was Microsoft established? private Sorry no results 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (private Sorry no results, found for, windows) -> private Sorry no results (3254ms) When was Microsoft established? hackers 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (hackers, regularly find holes in, the operating system) -> hackers (3262ms) When was Microsoft established? A second example 0.333333333333 When was Microsoft established? -> $x: ($x, find, ms word) -> (A second example, can be found in, MS Word macros) -> A second example (3243ms) When was Microsoft established? Delay 0.333333333333 When was Microsoft established? -> $x: ($x, find, microsoft outlook) -> (Delay, found, the Microsoft Outlook PST files) -> Delay (3264ms) When was Microsoft established? Advertising here & other Viva services 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (Advertising here & other Viva services, Find, windows) -> Advertising here & other Viva services (3249ms) When was Microsoft established? a secondary window 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (a secondary window, find, window) -> a secondary window (3262ms) When was Microsoft established? the addresses 0.333333333333 When was Microsoft established? -> $x: ($x, find, microsoft outlook) -> (the addresses, found in, Microsoft Outlook address book) -> the addresses (3260ms) When was Microsoft established? vulnerabilities 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (vulnerabilities, found on, Windows) -> vulnerabilities (3256ms) When was Microsoft established? Hanging indent 0.333333333333 When was Microsoft established? -> $x: ($x, find, ms word) -> (Hanging indent, can be found in, MS Word) -> Hanging indent (3264ms) When was Microsoft established? Such CMMs 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (Such CMMs, are found in, many operating systems) -> Such CMMs (3262ms) When was Microsoft established? WordDiff 0.333333333333 When was Microsoft established? -> $x: ($x, find, ms word) -> (WordDiff, Find differences in, MS Word documents) -> WordDiff (3249ms) When was Microsoft established? FINALLY 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (FINALLY, found, a solid operating system) -> FINALLY (3243ms) When was Microsoft established? WAVE 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (WAVE, Find, window) -> WAVE (3256ms) When was Microsoft established? malware 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (malware, has been found in, all popular operating systems) -> malware (3267ms) When was Microsoft established? the AutoKill 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (the AutoKill, Find, Window) -> the AutoKill (3254ms) When was Microsoft established? 1 Products 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (1 Products, Find, windows) -> 1 Products (3266ms) When was Microsoft established? driftwood 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (driftwood, found, windows) -> driftwood (3262ms) When was Microsoft established? conj waw 0.333333333333 When was Microsoft established? -> $x: ($x, find, ms word) -> (conj waw, found in, M. 5th word) -> conj waw (3260ms) When was Microsoft established? shortcut key combinations 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (shortcut key combinations, found in, many operating systems) -> shortcut key combinations (3249ms) When was Microsoft established? the Copy 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (the Copy, Find, windows) -> the Copy (3265ms) When was Microsoft established? the viewer 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (the viewer, find, window) -> the viewer (3264ms) When was Microsoft established? Remote desktop software 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (Remote desktop software, can be found in, most operating systems) -> Remote desktop software (3263ms) When was Microsoft established? two critical flaws 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (two critical flaws, found in, the Windows operating system) -> two critical flaws (3262ms) When was Microsoft established? Task 0.333333333333 When was Microsoft established? -> $x: ($x, find, ms word) -> (Task, Find, the words m?niw and t?yhmi) -> Task (3251ms) When was Microsoft established? the navigation bar 0.333333333333 When was Microsoft established? -> $x: ($x, find, microsoft outlook) -> (the navigation bar, found in, Microsoft Outlook 2003) -> the navigation bar (3249ms) When was Microsoft established? the editing tools 0.333333333333 When was Microsoft established? -> $x: ($x, find, ms word) -> (the editing tools, found in, MS Word) -> the editing tools (3258ms) When was Microsoft established? the Snipping Tool 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (the Snipping Tool, found in, Windows) -> the Snipping Tool (3264ms) When was Microsoft established? the Alt-Tab feature 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (the Alt-Tab feature, found in, another operating system) -> the Alt-Tab feature (3260ms) When was Microsoft established? Easter Eggs 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (Easter Eggs, found in, the Mac operating system) -> Easter Eggs (3263ms) When was Microsoft established? no parallels 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (no parallels, can find for, building operating systems instances) -> no parallels (3266ms) When was Microsoft established? the symbolic link feature 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (the symbolic link feature, found in, many operating systems) -> the symbolic link feature (3267ms) When was Microsoft established? the Event Viewer 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (the Event Viewer, found in, Windows) -> the Event Viewer (3266ms) When was Microsoft established? Panel 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (Panel, Find, Window) -> Panel (3267ms) When was Microsoft established? the new features 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (the new features, found in, Windows) -> the new features (3251ms) When was Microsoft established? no results 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (no results, found for, windows) -> no results (3260ms) When was Microsoft established? Saving Grid Customizations 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (Saving Grid Customizations, Find, Windows) -> Saving Grid Customizations (3249ms) When was Microsoft established? the CPU 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (the CPU, has found, the operating system) -> the CPU (3264ms) When was Microsoft established? the package system 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (the package system, found in, many different operating systems) -> the package system (3262ms) When was Microsoft established? security vulnerabilities 0.333333333333 When was Microsoft established? -> $x: ($x, find, microsoft outlook) -> (security vulnerabilities, found in, Microsoft Outlook) -> security vulnerabilities (3251ms) When was Microsoft established? delete files 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (delete files, may be found in, your operating system) -> delete files (3246ms) When was Microsoft established? the new conversation view 0.333333333333 When was Microsoft established? -> $x: ($x, find, microsoft outlook) -> (the new conversation view, found in, Microsoft Outlook 2010) -> the new conversation view (3243ms) When was Microsoft established? remote code execution flaws 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (remote code execution flaws, found in, Windows) -> remote code execution flaws (3251ms) When was Microsoft established? OMG specifications 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (OMG specifications, can be found on, many operating systems) -> OMG specifications (3263ms) When was Microsoft established? One variant 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (One variant, finds, windows) -> One variant (3243ms) When was Microsoft established? The X Window 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (The X Window, can be found on, the Linux Operating System) -> The X Window (3265ms) When was Microsoft established? Prism 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (Prism, can be found for, every operating system) -> Prism (3266ms) When was Microsoft established? NetAction 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (NetAction, found, the Windows operating system) -> NetAction (3258ms) When was Microsoft established? the same desktop experience 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (the same desktop experience, found on, other operating systems) -> the same desktop experience (3258ms) When was Microsoft established? the rich feature 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (the rich feature, sets found in, large operating systems) -> the rich feature (3256ms) When was Microsoft established? Step 2 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (Step 2, Find, your operating system) -> Step 2 (3265ms) When was Microsoft established? Nayim 0.333333333333 When was Microsoft established? -> $x: ($x, find, paul allen) -> (Nayim, found, Paul Allen) -> Nayim (3251ms) When was Microsoft established? basic statistical tools 0.333333333333 When was Microsoft established? -> $x: ($x, find, ms excel) -> (basic statistical tools, found in, MS Excel) -> basic statistical tools (3254ms) When was Microsoft established? the Track Changes tool 0.333333333333 When was Microsoft established? -> $x: ($x, find, ms word) -> (the Track Changes tool, can be found at, Use MS Word) -> the Track Changes tool (3258ms) When was Microsoft established? the same VBA IDE 0.333333333333 When was Microsoft established? -> $x: ($x, find, ms excel) -> (the same VBA IDE, is found in, MS Excel) -> the same VBA IDE (3256ms) When was Microsoft established? communications programs 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (communications programs, found on, other operating systems) -> communications programs (3254ms) When was Microsoft established? boxes 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (boxes, found Notes On, Data Base Operating Systems) -> boxes (3246ms) When was Microsoft established? the fill patterns 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (the fill patterns, found in, Windows) -> the fill patterns (3263ms) When was Microsoft established? the standard desktop 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (the standard desktop, found in, Windows) -> the standard desktop (3243ms) When was Microsoft established? the timezone setting 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (the timezone setting, finds in, the operating system) -> the timezone setting (3264ms) When was Microsoft established? the focus 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (the focus, to find, window) -> the focus (3267ms) When was Microsoft established? open the ' 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (open the ', Find, Window) -> open the ' (3265ms) When was Microsoft established? Parker 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (Parker, found, the operating system) -> Parker (3254ms) When was Microsoft established? an application 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (an application, found on, another operating system) -> an application (3258ms) When was Microsoft established? the command line utils 0.333333333333 When was Microsoft established? -> $x: ($x, find, operate system) -> (the command line utils, found under, GNU Operating system) -> the command line utils (3249ms) When was Microsoft established? Young children 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (Young children, find, window) -> Young children (3265ms) When was Microsoft established? Windows Hunter 0.333333333333 When was Microsoft established? -> $x: ($x, find, windows) -> (Windows Hunter, allows finding, windows) -> Windows Hunter (3263ms) Where was Shakespeare born? The town 0.999999999995 Where was Shakespeare born? -> $x: ($x, be birthplace of, william shakespeare) -> (The town, is the birthplace of, William Shakespeare) -> The town (3748ms) Where was Shakespeare born? Stratford 0.999999999995 Where was Shakespeare born? -> $x: ($x, be birthplace of, william shakespeare) -> (Stratford, is the birthplace of, William Shakespeare) -> Stratford (3748ms) Where was Shakespeare born? Stratford-upon-Avon 0.999999999995 Where was Shakespeare born? -> $x: ($x, be birthplace of, william shakespeare) -> (Stratford-upon-Avon, is the birthplace of, William Shakespeare) -> Stratford-upon-Avon (3747ms) Where was Shakespeare born? Stratford upon Avon 0.999999999995 Where was Shakespeare born? -> $x: ($x, be birthplace of, william shakespeare) -> (Stratford upon Avon, is the birthplace of, William Shakespeare) -> Stratford upon Avon (3748ms) Where was Shakespeare born? What town 0.999999999995 Where was Shakespeare born? -> $x: ($x, be birthplace of, william shakespeare) -> (What town, was the birthplace of, William Shakespeare) -> What town (3747ms) Where was Shakespeare born? Avon 0.999999999995 Where was Shakespeare born? -> $x: ($x, be birthplace of, william shakespeare) -> (Avon, is the birthplace of, William Shakespeare) -> Avon (3748ms) Where was Shakespeare born? the same city 0.888888888885 Where was Shakespeare born? -> $x: (william shakespeare, live in, $x) -> (William Shakespeare, lived in, the same city) -> the same city (4167ms) Where was Shakespeare born? England four hundred years 0.888888888885 Where was Shakespeare born? -> $x: (william shakespeare, live in, $x) -> (William Shakespeare, lived in, England four hundred years) -> England four hundred years (3922ms) Where was Shakespeare born? England 0.888888888885 Where was Shakespeare born? -> $x: (william shakespeare, be bear in in, $x) -> (William Shakespeare, was born in, England) -> England (4378ms) Where was Shakespeare born? April , 1564 0.888888888885 Where was Shakespeare born? -> $x: (william shakespeare, be bear in in, $x) -> (William Shakespeare, was born in, April , 1564) -> April , 1564 (4312ms) Where was Shakespeare born? the depths 0.888888888885 Where was Shakespeare born? -> $x: (william shakespeare, be bear in in, $x) -> (William Shakespeare, was born in, the depths) -> the depths (3825ms) Where was Shakespeare born? London 0.888888888885 Where was Shakespeare born? -> $x: (william shakespeare, live in, $x) -> ('s Southwark William Shakespeare, lived in, London) -> London (3825ms) Where was Shakespeare born? a time 0.888888888885 Where was Shakespeare born? -> $x: (william shakespeare, live in, $x) -> (William Shakespeare, also lived in, a time) -> a time (4567ms) Where was Shakespeare born? the year 0.888888888885 Where was Shakespeare born? -> $x: (william shakespeare, be bear in in, $x) -> (William Shakespeare, was born in, the year) -> the year (4378ms) Where was Shakespeare born? the epoch 0.888888888885 Where was Shakespeare born? -> $x: (william shakespeare, live in, $x) -> (William Shakespeare, lived in, the epoch) -> the epoch (4313ms) Where was Shakespeare born? April 1564 0.888888888885 Where was Shakespeare born? -> $x: (william shakespeare, be bear in in, $x) -> (William Shakespeare, was born in, April 1564) -> April 1564 (4378ms) Where was Shakespeare born? late April 1564 0.888888888885 Where was Shakespeare born? -> $x: (william shakespeare, be bear in in, $x) -> (Biography William Shakespeare, was born in, late April 1564) -> late April 1564 (3825ms) Where was Shakespeare born? Stratford-on-Avon 0.888888888885 Where was Shakespeare born? -> $x: (william shakespeare, be bear in in, $x) -> (William Shakespeare, was born in, Stratford-on-Avon) -> Stratford-on-Avon (4168ms) Where was Shakespeare born? Stratford and today 0.888888888885 Where was Shakespeare born? -> $x: (william shakespeare, be bear in in, $x) -> (William Shakespeare, was born in, Stratford and today) -> Stratford and today (4167ms) Where was Shakespeare born? 1564 0.888888888885 Where was Shakespeare born? -> $x: (william shakespeare, be bear in in, $x) -> (THE PLAY William Shakespeare, was born in, 1564) -> 1564 (4567ms) Where was Shakespeare born? the town 0.888888888885 Where was Shakespeare born? -> $x: (william shakespeare, be bear in in, $x) -> (William Shakespeare, was born in, the town) -> the town (4567ms) Where was Shakespeare born? the county of Warwick 0.888888888885 Where was Shakespeare born? -> $x: (william shakespeare, be bear in in, $x) -> (William Shakespeare, was born in, the county of Warwick) -> the county of Warwick (3922ms) Where was Shakespeare born? April 0.888888888885 Where was Shakespeare born? -> $x: (william shakespeare, be bear in in, $x) -> (William Shakespeare, was born in, April) -> April (4167ms) Where was Shakespeare born? St . Austell 0.666666666664 Where was Shakespeare born? -> $x: (shakespeare, be bear in in, $x) -> (Shakespeare scholar and authority, was born in, St . Austell) -> St . Austell (8723ms) Where was Shakespeare born? Kingston 0.666666666664 Where was Shakespeare born? -> $x: (shakespeare, be bear in in, $x) -> (Robbie Shakespeare, were both born in, Kingston) -> Kingston (8667ms) Where was Shakespeare born? such a nasty 'ouse 0.666666666664 Where was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, such a nasty 'ouse) -> such a nasty 'ouse (8583ms) Where was Shakespeare born? 1529 0.666666666664 Where was Shakespeare born? -> $x: (shakespeare, be bear in in, $x) -> (John Shakespeare, was born in, 1529) -> 1529 (8583ms) Where was Shakespeare born? 1616 0.666666666664 Where was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, 1616) -> 1616 (8639ms) Where was Shakespeare born? the village 0.666666666664 Where was Shakespeare born? -> $x: (shakespeare, be bear in in, $x) -> (Shakespeare, was born in, the village) -> the village (8667ms) Where was Shakespeare born? London writing 0.666666666664 Where was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, London writing) -> London writing (8777ms) Where was Shakespeare born? such a time 0.666666666664 Where was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, did live in, such a time) -> such a time (8750ms) Where was Shakespeare born? the present day 0.666666666664 Where was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (shakespeare, lived in, the present day) -> the present day (8777ms) Where was Shakespeare born? the parish 0.666666666664 Where was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, was living in, the parish) -> the parish (8804ms) Where was Shakespeare born? an era 0.666666666664 Where was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, an era) -> an era (8583ms) Where was Shakespeare born? 1564 ! 5 hours ago 0.666666666664 Where was Shakespeare born? -> $x: (william shakespeare, bear in, $x) -> (Happy birthday William Shakespeare, born in, 1564 ! 5 hours ago) -> 1564 ! 5 hours ago (8640ms) Where was Shakespeare born? a very turbulent time 0.666666666664 Where was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, a very turbulent time) -> a very turbulent time (8640ms) Where was Shakespeare born? Teaneck 0.666666666664 Where was Shakespeare born? -> $x: (shakespeare, be bear in in, $x) -> (Shakespeare, had been born in, Teaneck) -> Teaneck (8723ms) Where was Shakespeare born? high schools 0.666666666664 Where was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, is living today?in, high schools) -> high schools (8667ms) Where was Shakespeare born? Worcester 0.666666666664 Where was Shakespeare born? -> $x: (shakespeare, be bear in in, $x) -> (Nicholas Shakespeare, was born in, Worcester) -> Worcester (8777ms) Where was Shakespeare born? the same year 0.666666666664 Where was Shakespeare born? -> $x: (shakespeare, be bear in in, $x) -> (Galileo and Shakespeare, were born in, the same year) -> the same year (8804ms) Where was Shakespeare born? 1564 ! 1 hour ago 0.666666666664 Where was Shakespeare born? -> $x: (william shakespeare, bear in, $x) -> (Happy birthday William Shakespeare, born in, 1564 ! 1 hour ago) -> 1564 ! 1 hour ago (8612ms) Where was Shakespeare born? Henley Street 0.666666666664 Where was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (the Shakespeares, were living in, Henley Street) -> Henley Street (8777ms) Where was Shakespeare born? a world 0.666666666664 Where was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (?Shakespeare, lived in, a world) -> a world (8583ms) Where was Shakespeare born? 1554 0.666666666664 Where was Shakespeare born? -> $x: (shakespeare, be bear in in, $x) -> (Shakespeare, was born in, 1554) -> 1554 (8695ms) Where was Shakespeare born? Italy 0.666666666664 Where was Shakespeare born? -> $x: (shakespeare, be bear in in, $x) -> (Shakespeare, was born in, Italy) -> Italy (8695ms) Where was Shakespeare born? a theatre 0.666666666664 Where was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (10 professionally-produced Shakespeare plays, live in, a theatre) -> a theatre (8639ms) Where was Shakespeare born? the Warwickshire town 0.666666666664 Where was Shakespeare born? -> $x: (shakespeare, be bear in in, $x) -> (Will Shakespeare, was born in, the Warwickshire town) -> the Warwickshire town (8612ms) Where was Shakespeare born? the overwhelming fascination 0.666666666664 Where was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, was living in was, the overwhelming fascination) -> the overwhelming fascination (8723ms) Where was Shakespeare born? Buenos Aires 0.666666666664 Where was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Nicholas Shakespeare, lived in, Buenos Aires) -> Buenos Aires (8538ms) Where was Shakespeare born? the countryside 0.666666666664 Where was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare?s day, lived in, the countryside) -> the countryside (8723ms) Where was Shakespeare born? theater 0.666666666664 Where was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare?s Play, live in, theater) -> theater (8804ms) Where was Shakespeare born? an absolutist world 0.666666666664 Where was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, an absolutist world) -> an absolutist world (8777ms) Where was Shakespeare born? April and World book day 0.666666666664 Where was Shakespeare born? -> $x: (shakespeare, be bear in in, $x) -> (Shakespeare, was born in, April and World book day) -> April and World book day (8723ms) Where was Shakespeare born? an age 0.666666666664 Where was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, an age) -> an age (8804ms) Where was Shakespeare born? a tiny house 0.666666666664 Where was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, a tiny house) -> a tiny house (8667ms) Where was Shakespeare born? a small town 0.666666666664 Where was Shakespeare born? -> $x: (shakespeare, be bear in in, $x) -> (Shakespeare, was born in, a small town) -> a small town (8667ms) Where was Shakespeare born? Lancashire 0.666666666664 Where was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, may have lived in, Lancashire) -> Lancashire (8723ms) Where was Shakespeare born? 1564 ! 2 0.666666666664 Where was Shakespeare born? -> $x: (william shakespeare, bear in, $x) -> (Happy birthday William Shakespeare, born in, 1564 ! 2) -> 1564 ! 2 (8777ms) Where was Shakespeare born? Tudor England 0.666666666664 Where was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, Tudor England) -> Tudor England (8750ms) Where was Shakespeare born? retirement 0.666666666664 Where was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (Shakespeare, lived in, retirement) -> retirement (8831ms) Where was Shakespeare born? the latter half 0.666666666664 Where was Shakespeare born? -> $x: (shakespeare, be bear in in, $x) -> (scotland Shakespeare, was born in, the latter half) -> the latter half (8695ms) Where was Shakespeare born? the streets 0.666666666664 Where was Shakespeare born? -> $x: (shakespeare, live in, $x) -> (this Shakespeare, lived in, the streets) -> the streets (8695ms) Where was Shakespeare born? Jackson 0.666666666664 Where was Shakespeare born? -> $x: (shakespeare, be bear in in, $x) -> (Shakespeare scholar Bruce R. Smith, was born in, Jackson) -> Jackson (8640ms) Where was Shakespeare born? 1564 ! 3 hours ago 0.666666666664 Where was Shakespeare born? -> $x: (william shakespeare, bear in, $x) -> (Happy birthday William Shakespeare, born in, 1564 ! 3 hours ago) -> 1564 ! 3 hours ago (8639ms) Where was Shakespeare born? Aprill 0.555555555553 Where was Shakespeare born? -> $x: (william shakespeare, die in, $x) -> (William Shakespeare, died in, Aprill) -> Aprill (9011ms) Where was Shakespeare born? the best piece of writing 0.555555555553 Where was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (the best piece of writing, done by, William Shakespeare , Hamlet) -> the best piece of writing (9011ms) Where was Shakespeare born? 26 April 1564 0.555555555553 Where was Shakespeare born? -> $x: (william shakespeare, bear on, $x) -> (William Shakespeare, was born on, 26 April 1564) -> 26 April 1564 (9011ms) Where was Shakespeare born? April 23 , 1564 0.555555555553 Where was Shakespeare born? -> $x: (william shakespeare, bear on, $x) -> (His Times William Shakespeare, was born on, April 23 , 1564) -> April 23 , 1564 (9061ms) Where was Shakespeare born? the 5th floor 0.555555555553 Where was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (the 5th floor, do a search for, " William Shakespeare) -> the 5th floor (9011ms) Where was Shakespeare born? April 23 , 1616 0.555555555553 Where was Shakespeare born? -> $x: (william shakespeare, die on, $x) -> (William Shakespeare, died on, April 23 , 1616) -> April 23 , 1616 (9036ms) Where was Shakespeare born? Markey 0.555555555553 Where was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (Markey, does, William Shakespeare) -> Markey (9011ms) Where was Shakespeare born? Oct. 28 0.555555555553 Where was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (Oct. 28, Did, William Shakespeare) -> Oct. 28 (9011ms) Where was Shakespeare born? April 1616 0.555555555553 Where was Shakespeare born? -> $x: (william shakespeare, die in, $x) -> (William Shakespeare, died in, April 1616) -> April 1616 (9036ms) Where was Shakespeare born? Julius Caesar 0.555555555553 Where was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (Julius Caesar, does bring to, mind William Shakespeare) -> Julius Caesar (9061ms) Where was Shakespeare born? rel=shortlink 0.555555555553 Where was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (rel=shortlink, does, the name ?William Shakespeare ?) -> rel=shortlink (9036ms) Where was Shakespeare born? playwrights 0.555555555553 Where was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (playwrights, does, the name William Shakespeare ring) -> playwrights (9036ms) Where was Shakespeare born? 23 April 1616 0.555555555553 Where was Shakespeare born? -> $x: (william shakespeare, die on, $x) -> (William Shakespeare, died on, 23 April 1616) -> 23 April 1616 (9061ms) Where was Shakespeare born? April 23 0.555555555553 Where was Shakespeare born? -> $x: (william shakespeare, bear on, $x) -> (( William Shakespeare, was born on, April 23) -> April 23 (9061ms) Where was Shakespeare born? Favourite poet or writer 0.555555555553 Where was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (Favourite poet or writer, Does, William Shakespeare count) -> Favourite poet or writer (9011ms) Where was Shakespeare born? vz-nostalgia 0.555555555553 Where was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (vz-nostalgia, so did, William Shakespeare) -> vz-nostalgia (9037ms) Where was Shakespeare born? the shocking question 0.555555555553 Where was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (the shocking question, Did, William Shakespeare) -> the shocking question (8986ms) Where was Shakespeare born? the qoutes 0.555555555553 Where was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (the qoutes, are done by, William Shakespeare) -> the qoutes (9037ms) Where was Shakespeare born? battle 0.555555555553 Where was Shakespeare born? -> $x: (william shakespeare, die in, $x) -> (William Shakespeare, died in, battle) -> battle (8986ms) Where was Shakespeare born? Erin 0.555555555553 Where was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (Erin, does, William Shakespeare) -> Erin (9036ms) Where was Shakespeare born? 23 April 1564 0.555555555553 Where was Shakespeare born? -> $x: (william shakespeare, bear on, $x) -> (William Shakespeare, was born on, 23 April 1564) -> 23 April 1564 (9061ms) Where was Shakespeare born? the 26th 0.555555555553 Where was Shakespeare born? -> $x: (william shakespeare, bear on, $x) -> (William Shakespeare, was born on, the 26th) -> the 26th (8986ms) Where was Shakespeare born? Mark Antony 0.555555555553 Where was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (Mark Antony, did in, William Shakespeare?s Julius Caesar) -> Mark Antony (9011ms) Where was Shakespeare born? a 23... dead 0.555555555553 Where was Shakespeare born? -> $x: (william shakespeare, bear on, $x) -> (William Shakespeare, was born on, a 23... dead) -> a 23... dead (8986ms) Where was Shakespeare born? the film ?Miguel & William? Press / EP 0.555555555553 Where was Shakespeare born? -> $x: ($x, do, william shakespeare) -> (the film ?Miguel & William? Press / EP, Did, William Shakespeare) -> the film ?Miguel & William? Press / EP (9037ms) Where was Shakespeare born? The house 0.444444444442 Where was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (The house, was the birthplace of, Bishop William Morgan) -> The house (9224ms) Where was Shakespeare born? The estate 0.444444444442 Where was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (The estate, is also the birthplace of, William Henry Harrison) -> The estate (9243ms) Where was Shakespeare born? The castle 0.444444444442 Where was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (The castle, was the birthplace of, Sir William Alexander) -> The castle (9224ms) Where was Shakespeare born? Hull 0.444444444442 Where was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (Hull, is the birthplace of, William Wilberforce) -> Hull (9300ms) Where was Shakespeare born? the Norfolk Inn 0.444444444442 Where was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (the Norfolk Inn, was the birthplace of, Dr. William H. Welch) -> the Norfolk Inn (9205ms) Where was Shakespeare born? Mill Place 0.444444444442 Where was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (Mill Place, was the birthplace of, William Adams) -> Mill Place (9281ms) Where was Shakespeare born? T? Mawr 0.444444444442 Where was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (T? Mawr, was the birthplace of, Bishop William Morgan) -> T? Mawr (9205ms) Where was Shakespeare born? Sampson County 0.444444444442 Where was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (Sampson County, is the birthplace of, William R. King) -> Sampson County (9243ms) Where was Shakespeare born? home 0.444444444442 Where was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (home, is the birthplace of, William Rainey Harper) -> home (9263ms) Where was Shakespeare born? Pendeen House 0.444444444442 Where was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (Pendeen House, was the birthplace of, William Borlase) -> Pendeen House (9262ms) Where was Shakespeare born? Much Wenlock 0.444444444442 Where was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (Much Wenlock, is the birthplace of, William Penny Brookes) -> Much Wenlock (9243ms) Where was Shakespeare born? Falaise 0.444444444442 Where was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (Falaise, was the birthplace of, William) -> Falaise (9300ms) Where was Shakespeare born? Betws-y-Coed 0.444444444442 Where was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (Betws-y-Coed, was the birthplace of, Bishop William Morgan) -> Betws-y-Coed (9205ms) Where was Shakespeare born? Cockermouth 0.444444444442 Where was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (Cockermouth, is the birthplace of, the poet William Wordsworth) -> Cockermouth (9263ms) Where was Shakespeare born? Coweta 0.444444444442 Where was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (Coweta, was the birthplace of, William McIntosh) -> Coweta (9224ms) Where was Shakespeare born? Ellerslie 0.444444444442 Where was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (Ellerslie, is a possible birthplace of, William Wallace) -> Ellerslie (9185ms) Where was Shakespeare born? T? Mawr Wybrnant 0.444444444442 Where was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (T? Mawr Wybrnant, was the birthplace of, Bishop William Morgan) -> T? Mawr Wybrnant (9205ms) Where was Shakespeare born? a branch 0.444444444442 Where was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (a branch, was the birthplace of, Sir William Alexander) -> a branch (9185ms) Where was Shakespeare born? Warren 0.444444444442 Where was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (Warren, is also the birthplace of, President William McKinley) -> Warren (9300ms) Where was Shakespeare born? Salem 0.444444444442 Where was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (Salem, is the birthplace of, William Jennings Bryan) -> Salem (9281ms) Where was Shakespeare born? The Hall 0.444444444442 Where was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (The Hall, is the birthplace of, William Wycherley) -> The Hall (9185ms) Where was Shakespeare born? Down Ampney 0.444444444442 Where was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (Down Ampney, was the birthplace of, Ralph Vaughan Williams) -> Down Ampney (9281ms) Where was Shakespeare born? the western outskirts 0.444444444442 Where was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (the western outskirts, was the birthplace of, Sir William Smith) -> the western outskirts (9205ms) Where was Shakespeare born? Macedonia 0.444444444442 Where was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (Macedonia, was the birthplace of, William N. Economou) -> Macedonia (9224ms) Where was Shakespeare born? Ohio 0.444444444442 Where was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (Ohio, is the birthplace of, General William Tecumseh Sherman) -> Ohio (9224ms) Where was Shakespeare born? the country 0.444444444442 Where was Shakespeare born? -> $x: ($x, be birthplace of, william) -> (the country, was the birthplace of, theater great Bert Williams) -> the country (9205ms) Where was Shakespeare born? 1830 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1830) -> 1830 (9705ms) Where was Shakespeare born? Charlottesville 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, has lived in, Charlottesville) -> Charlottesville (9427ms) Where was Shakespeare born? 1789 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1789) -> 1789 (9610ms) Where was Shakespeare born? 1840 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1840) -> 1840 (9409ms) Where was Shakespeare born? 1852 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, being born in, 1852) -> 1852 (9337ms) Where was Shakespeare born? Geoffrey Boycott 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Geoffrey Boycott, do, Shakespeare) -> Geoffrey Boycott (9355ms) Where was Shakespeare born? Blairstown Township 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Blairstown Township) -> Blairstown Township (9644ms) Where was Shakespeare born? course 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (course, did, Shakespeare) -> course (9720ms) Where was Shakespeare born? Missouri 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Missouri) -> Missouri (9705ms) Where was Shakespeare born? 1765 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1765) -> 1765 (9337ms) Where was Shakespeare born? Hanslape 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Hanslape) -> Hanslape (9461ms) Where was Shakespeare born? 1847 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1847) -> 1847 (9391ms) Where was Shakespeare born? 1585 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1585) -> 1585 (9373ms) Where was Shakespeare born? Dummer Twp. 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Dummer Twp.) -> Dummer Twp. (9546ms) Where was Shakespeare born? Nobody 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Nobody, does, Shakespeare) -> Nobody (9478ms) Where was Shakespeare born? Dr. Seuss 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Dr. Seuss, Does, Shakespeare) -> Dr. Seuss (9644ms) Where was Shakespeare born? 23rd April 0.333333333332 Where was Shakespeare born? -> $x: (shakespeare, bear on, $x) -> (Shakespeare, was born on, 23rd April) -> 23rd April (9529ms) Where was Shakespeare born? 1875 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1875) -> 1875 (9319ms) Where was Shakespeare born? Google 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Google, Does, Shakespeare Shakespeare) -> Google (9644ms) Where was Shakespeare born? Palm Coast 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Palm Coast) -> Palm Coast (9355ms) Where was Shakespeare born? Paris 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Paris) -> Paris (9578ms) Where was Shakespeare born? Eagle Township 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Eagle Township) -> Eagle Township (9546ms) Where was Shakespeare born? JUST A DREAM 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (JUST A DREAM, do, Shakespeare) -> JUST A DREAM (9512ms) Where was Shakespeare born? Wales 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in, Wales) -> Wales (9690ms) Where was Shakespeare born? St George?s day 0.333333333332 Where was Shakespeare born? -> $x: (shakespeare, bear on, $x) -> (Shakespeare, was born on, St George?s day) -> St George?s day (9529ms) Where was Shakespeare born? Isleworth 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Isleworth) -> Isleworth (9478ms) Where was Shakespeare born? 1915 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1915) -> 1915 (9545ms) Where was Shakespeare born? the contemporary student 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (the contemporary student, did, Shakespeare) -> the contemporary student (9562ms) Where was Shakespeare born? The second puzzle is,--Why 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (The second puzzle is,--Why, did, Shakespeare) -> The second puzzle is,--Why (9705ms) Where was Shakespeare born? Hawaii 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Hawaii) -> Hawaii (9355ms) Where was Shakespeare born? 1833 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1833) -> 1833 (9690ms) Where was Shakespeare born? April 2003 , four months 0.333333333332 Where was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Mrs. Shakespeare, died in, April 2003 , four months) -> April 2003 , four months (9705ms) Where was Shakespeare born? 1864 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1864) -> 1864 (9478ms) Where was Shakespeare born? Mercer County 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Mercer County) -> Mercer County (9461ms) Where was Shakespeare born? 1804 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1804) -> 1804 (9578ms) Where was Shakespeare born? Greenwood?s legal arguments 0.333333333332 Where was Shakespeare born? -> $x: (shakespeare, bear on, $x) -> (Shakespeare, had a bearing on, Greenwood?s legal arguments) -> Greenwood?s legal arguments (9660ms) Where was Shakespeare born? Denver 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in, Denver) -> Denver (9427ms) Where was Shakespeare born? the Americans 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (the Americans, do, Shakespeare) -> the Americans (9373ms) Where was Shakespeare born? a flat 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, a flat) -> a flat (9720ms) Where was Shakespeare born? Israel 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Israel) -> Israel (9675ms) Where was Shakespeare born? 1787 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1787) -> 1787 (9478ms) Where was Shakespeare born? the question 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (the question, do, Shakespeare) -> the question (9626ms) Where was Shakespeare born? It?s bad science 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (It?s bad science, did, Shakespeare) -> It?s bad science (9675ms) Where was Shakespeare born? Kansas City 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Kansas City) -> Kansas City (9720ms) Where was Shakespeare born? the past 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, live in, the past) -> the past (9512ms) Where was Shakespeare born? 23 April 0.333333333332 Where was Shakespeare born? -> $x: (shakespeare, die on, $x) -> (Shakespeare, died on, 23 April) -> 23 April (9660ms) Where was Shakespeare born? Boston 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in, Boston) -> Boston (9626ms) Where was Shakespeare born? Miss 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (william, was born in, Miss) -> Miss (9461ms) Where was Shakespeare born? the new house 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, the new house) -> the new house (9690ms) Where was Shakespeare born? New Jersey 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, New Jersey) -> New Jersey (9512ms) Where was Shakespeare born? the companies 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (the companies, do, Shakespeare) -> the companies (9427ms) Where was Shakespeare born? any 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (any, did, Shakespeare) -> any (9337ms) Where was Shakespeare born? actors 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (actors, could do, Shakespeare) -> actors (9578ms) Where was Shakespeare born? Madge 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Madge, Does, Shakespeare) -> Madge (9675ms) Where was Shakespeare born? the reign 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, the reign) -> the reign (9610ms) Where was Shakespeare born? the end 0.333333333332 Where was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare?s tragedies main characters, die in, the end) -> the end (9529ms) Where was Shakespeare born? Goethe 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Goethe, so did, Shakespeare) -> Goethe (9337ms) Where was Shakespeare born? Brits 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Brits, do, Shakespeare) -> Brits (9373ms) Where was Shakespeare born? youre 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (youre, doing, Shakespeare) -> youre (9355ms) Where was Shakespeare born? a house 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, a house) -> a house (9373ms) Where was Shakespeare born? 1601 0.333333333332 Where was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (John Shakespeare, died in, 1601) -> 1601 (9705ms) Where was Shakespeare born? Belfast City 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Belfast City) -> Belfast City (9444ms) Where was Shakespeare born? Brooklyn 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Brooklyn) -> Brooklyn (9461ms) Where was Shakespeare born? England ? ' 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (WIlliam, live in, England ? ') -> England ? ' (9444ms) Where was Shakespeare born? Scaly Mountain 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Scaly Mountain) -> Scaly Mountain (9444ms) Where was Shakespeare born? Norwich 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Norwich) -> Norwich (9705ms) Where was Shakespeare born? Ed Westwick 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Ed Westwick, do, Shakespeare) -> Ed Westwick (9444ms) Where was Shakespeare born? 1893 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1893) -> 1893 (9545ms) Where was Shakespeare born? 1728 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1728) -> 1728 (9337ms) Where was Shakespeare born? North Carolina 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, North Carolina) -> North Carolina (9529ms) Where was Shakespeare born? 1795 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1795) -> 1795 (9644ms) Where was Shakespeare born? the same day 0.333333333332 Where was Shakespeare born? -> $x: (shakespeare, die on, $x) -> (Shakespeare and Cervantes, died on, the same day) -> the same day (9720ms) Where was Shakespeare born? 1892 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1892) -> 1892 (9337ms) Where was Shakespeare born? Branagh 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Branagh, doing, Shakespeare) -> Branagh (9461ms) Where was Shakespeare born? Dublin 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Dublin) -> Dublin (9562ms) Where was Shakespeare born? New York 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, live in, New York) -> New York (9626ms) Where was Shakespeare born? Patrick Stewart 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Patrick Stewart, do, Shakespeare) -> Patrick Stewart (9529ms) Where was Shakespeare born? Fairfield village 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Fairfield village) -> Fairfield village (9337ms) Where was Shakespeare born? Mark Twain 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Mark Twain, did for, Shakespeare) -> Mark Twain (9495ms) Where was Shakespeare born? much more minute accuracy 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (much more minute accuracy, do, Shakespeare) -> much more minute accuracy (9545ms) Where was Shakespeare born? 1620 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1620) -> 1620 (9690ms) Where was Shakespeare born? the homestead 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, the homestead) -> the homestead (9562ms) Where was Shakespeare born? Fauquier and Loudon counties 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Fauquier and Loudon counties) -> Fauquier and Loudon counties (9578ms) Where was Shakespeare born? 1896 0.333333333332 Where was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare, died in, 1896) -> 1896 (9626ms) Where was Shakespeare born? M.S. 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (M.S., did, Shakespeare) -> M.S. (9690ms) Where was Shakespeare born? Wood Co. 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Wood Co.) -> Wood Co. (9660ms) Where was Shakespeare born? Graig Terrace 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William Williams, lived in, Graig Terrace) -> Graig Terrace (9705ms) Where was Shakespeare born? 1825 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1825) -> 1825 (9626ms) Where was Shakespeare born? 1822 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1822) -> 1822 (9409ms) Where was Shakespeare born? the Town 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, the Town) -> the Town (9409ms) Where was Shakespeare born? 1599 0.333333333332 Where was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare, died in, 1599) -> 1599 (9529ms) Where was Shakespeare born? Edinburgh 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Edinburgh) -> Edinburgh (9690ms) Where was Shakespeare born? two very different worlds 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, two very different worlds) -> two very different worlds (9562ms) Where was Shakespeare born? 1836 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1836) -> 1836 (9562ms) Where was Shakespeare born? Jefferson 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Jefferson) -> Jefferson (9610ms) Where was Shakespeare born? Carland 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Carland) -> Carland (9373ms) Where was Shakespeare born? Rick Miller 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Rick Miller, does, Shakespeare) -> Rick Miller (9675ms) Where was Shakespeare born? 1818 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1818) -> 1818 (9720ms) Where was Shakespeare born? Bacon 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Bacon, did write, Shakespeare) -> Bacon (9355ms) Where was Shakespeare born? Wake Forest 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, live in, Wake Forest) -> Wake Forest (9478ms) Where was Shakespeare born? childhood 0.333333333332 Where was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (the Shakespeare household?three, died in, childhood) -> childhood (9690ms) Where was Shakespeare born? Ger 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Ger, does, Shakespeare) -> Ger (9478ms) Where was Shakespeare born? orleans 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in the city, orleans) -> orleans (9545ms) Where was Shakespeare born? the famous Glastonbury Abbey 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, the famous Glastonbury Abbey) -> the famous Glastonbury Abbey (9337ms) Where was Shakespeare born? Utah 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Utah) -> Utah (9578ms) Where was Shakespeare born? famous actors 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (famous actors, do, Shakespeare) -> famous actors (9373ms) Where was Shakespeare born? the rest 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (the rest, Did, Shakespeare) -> the rest (9675ms) Where was Shakespeare born? the home 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, the home) -> the home (9690ms) Where was Shakespeare born? 1770 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1770) -> 1770 (9355ms) Where was Shakespeare born? Primadonna 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Primadonna, Does, Shakespeare) -> Primadonna (9610ms) Where was Shakespeare born? The first point 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (The first point, Did, Shakespeare) -> The first point (9660ms) Where was Shakespeare born? November 5 , 2011 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (November 5 , 2011, Did, Shakespeare) -> November 5 , 2011 (9720ms) Where was Shakespeare born? Mitre Lane 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Mitre Lane) -> Mitre Lane (9512ms) Where was Shakespeare born? 1817 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1817) -> 1817 (9373ms) Where was Shakespeare born? San Jose 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in, San Jose) -> San Jose (9594ms) Where was Shakespeare born? Ala 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Ala) -> Ala (9461ms) Where was Shakespeare born? Not until 1845 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Not until 1845, did, Shakespeare) -> Not until 1845 (9675ms) Where was Shakespeare born? Touching 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Touching, did, Shakespeare) -> Touching (9495ms) Where was Shakespeare born? each year 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (each year, only did, Shakespeare) -> each year (9512ms) Where was Shakespeare born? 1596 0.333333333332 Where was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare, died in, 1596) -> 1596 (9720ms) Where was Shakespeare born? infancy 0.333333333332 Where was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare Quiney, died in, infancy) -> infancy (9444ms) Where was Shakespeare born? the Ages 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (the Ages, do, Shakespeare) -> the Ages (9675ms) Where was Shakespeare born? U City 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, U City) -> U City (9427ms) Where was Shakespeare born? Elmley Castle 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Elmley Castle) -> Elmley Castle (9578ms) Where was Shakespeare born? just an entertaining play 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (just an entertaining play, did, Shakespeare) -> just an entertaining play (9529ms) Where was Shakespeare born? 1.2 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (1.2, does, Shakespeare) -> 1.2 (9529ms) Where was Shakespeare born? Coleridge 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Coleridge, did, Shakespeare) -> Coleridge (9391ms) Where was Shakespeare born? The play 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (The play, as do, Shakespeare) -> The play (9578ms) Where was Shakespeare born? the very same day 0.333333333332 Where was Shakespeare born? -> $x: (shakespeare, die on, $x) -> (Shakespeare and Cervantes, died on, the very same day) -> the very same day (9594ms) Where was Shakespeare born? 1608 0.333333333332 Where was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Mary Shakespeare, died in, 1608) -> 1608 (9495ms) Where was Shakespeare born? Sunday 0.333333333332 Where was Shakespeare born? -> $x: (shakespeare, bear on, $x) -> (Shakespeare, was indeed born on, Sunday) -> Sunday (9594ms) Where was Shakespeare born? 1931 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1931) -> 1931 (9594ms) Where was Shakespeare born? Albany 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Albany) -> Albany (9660ms) Where was Shakespeare born? Texas 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (WILLIAMS, lived in, Texas) -> Texas (9478ms) Where was Shakespeare born? 1880 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1880) -> 1880 (9578ms) Where was Shakespeare born? A DREAM 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (A DREAM, do, Shakespeare) -> A DREAM (9461ms) Where was Shakespeare born? America 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, was living in, America) -> America (9495ms) Where was Shakespeare born? Two 16 year old girls 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Two 16 year old girls, did, Shakespeare) -> Two 16 year old girls (9690ms) Where was Shakespeare born? a more dramatic and poetic form 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (a more dramatic and poetic form, did, Shakespeare) -> a more dramatic and poetic form (9391ms) Where was Shakespeare born? were 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (were, doing, Shakespeare) -> were (9562ms) Where was Shakespeare born? 1937 0.333333333332 Where was Shakespeare born? -> $x: (prose, be bear in in, $x) -> (Prose Alain Labrousse, was born in, 1937) -> 1937 (9690ms) Where was Shakespeare born? 1790 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1790) -> 1790 (9529ms) Where was Shakespeare born? hes 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (hes, done, Shakespeare) -> hes (9545ms) Where was Shakespeare born? Hungary 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Hungary) -> Hungary (9644ms) Where was Shakespeare born? Karamazov Brothers 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Karamazov Brothers, do, Shakespeare) -> Karamazov Brothers (9319ms) Where was Shakespeare born? Orange County 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Orange County) -> Orange County (9644ms) Where was Shakespeare born? Cambridge 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Cambridge) -> Cambridge (9529ms) Where was Shakespeare born? 1824 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1824) -> 1824 (9319ms) Where was Shakespeare born? 1831 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1831) -> 1831 (9626ms) Where was Shakespeare born? Cincinnati 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Cincinnati) -> Cincinnati (9391ms) Where was Shakespeare born? Ask 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Ask, does, Shakespeare) -> Ask (9675ms) Where was Shakespeare born? 1794 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1794) -> 1794 (9675ms) Where was Shakespeare born? 1841 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1841) -> 1841 (9660ms) Where was Shakespeare born? Lexington 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Lexington) -> Lexington (9461ms) Where was Shakespeare born? Professor Dowden 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Professor Dowden, did, Shakespeare) -> Professor Dowden (9660ms) Where was Shakespeare born? Chicago 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Chicago) -> Chicago (9705ms) Where was Shakespeare born? Hes 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Hes, done, Shakespeare) -> Hes (9409ms) Where was Shakespeare born? Derby 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Derby) -> Derby (9427ms) Where was Shakespeare born? Illinois 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Illinois) -> Illinois (9690ms) Where was Shakespeare born? the months 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, the months) -> the months (9594ms) Where was Shakespeare born? 1842 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1842) -> 1842 (9644ms) Where was Shakespeare born? Tucson 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, live in, Tucson) -> Tucson (9675ms) Where was Shakespeare born? Impressionist 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Impressionist, Does, Shakespeare) -> Impressionist (9578ms) Where was Shakespeare born? the province 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, the province) -> the province (9705ms) Where was Shakespeare born? a balcony 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (a balcony, could do, Shakespeare) -> a balcony (9409ms) Where was Shakespeare born? New York City 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in, New York City) -> New York City (9478ms) Where was Shakespeare born? 1881 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, is living In, 1881) -> 1881 (9529ms) Where was Shakespeare born? literature?s great mysteries ? 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (literature?s great mysteries ?, did, Shakespeare) -> literature?s great mysteries ? (9373ms) Where was Shakespeare born? Cuba and China 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Cuba and China) -> Cuba and China (9626ms) Where was Shakespeare born? Tessa 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Tessa, Does, Shakespeare) -> Tessa (9319ms) Where was Shakespeare born? Liverpool 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Liverpool) -> Liverpool (9610ms) Where was Shakespeare born? Geyserville 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Geyserville) -> Geyserville (9495ms) Where was Shakespeare born? Madison 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in, Madison) -> Madison (9594ms) Where was Shakespeare born? UK Company Propeller 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (UK Company Propeller, does, Shakespeare) -> UK Company Propeller (9478ms) Where was Shakespeare born? critics or scholars 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (critics or scholars, did, Shakespeare) -> critics or scholars (9391ms) Where was Shakespeare born? Lycoming County 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Lycoming County) -> Lycoming County (9409ms) Where was Shakespeare born? Connecticut 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in, Connecticut) -> Connecticut (9478ms) Where was Shakespeare born? young people 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (young people, to Do, Shakespeare) -> young people (9626ms) Where was Shakespeare born? San Diego 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in, San Diego) -> San Diego (9675ms) Where was Shakespeare born? How many plays 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (How many plays, did write, Shakespeare) -> How many plays (9355ms) Where was Shakespeare born? Olivier 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Olivier, did, Shakespeare) -> Olivier (9391ms) Where was Shakespeare born? Columbus 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in, Columbus) -> Columbus (9675ms) Where was Shakespeare born? 1872 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1872) -> 1872 (9427ms) Where was Shakespeare born? duty 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (duty, did, Shakespeare) -> duty (9578ms) Where was Shakespeare born? Michigan 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, was living in, Michigan) -> Michigan (9594ms) Where was Shakespeare born? Alabama 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Alabama) -> Alabama (9355ms) Where was Shakespeare born? April 26 0.333333333332 Where was Shakespeare born? -> $x: (shakespeare, bear on, $x) -> (Shakespeare, was born on, April 26) -> April 26 (9319ms) Where was Shakespeare born? California 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, California) -> California (9461ms) Where was Shakespeare born? Pennsylvania 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in, Pennsylvania) -> Pennsylvania (9626ms) Where was Shakespeare born? Bedford Co. 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Bedford Co.) -> Bedford Co. (9512ms) Where was Shakespeare born? Alexandria 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in, Alexandria) -> Alexandria (9610ms) Where was Shakespeare born? a professional company 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (a professional company, did, Shakespeare) -> a professional company (9337ms) Where was Shakespeare born? a house trailer 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, a house trailer) -> a house trailer (9594ms) Where was Shakespeare born? the house 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, the house) -> the house (9512ms) Where was Shakespeare born? Central 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Central) -> Central (9426ms) Where was Shakespeare born? Granville County 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Granville County) -> Granville County (9478ms) Where was Shakespeare born? pretty melodies 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (pretty melodies, do, Shakespeare) -> pretty melodies (9512ms) Where was Shakespeare born? Chepstow 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Chepstow) -> Chepstow (9705ms) Where was Shakespeare born? Gargoyles 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Gargoyles, do, Shakespeare) -> Gargoyles (9319ms) Where was Shakespeare born? an actor 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (an actor, was doing, Shakespeare) -> an actor (9705ms) Where was Shakespeare born? 1932 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1932) -> 1932 (9626ms) Where was Shakespeare born? Lancashire ,England 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Lancashire ,England) -> Lancashire ,England (9373ms) Where was Shakespeare born? a toddler 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (a toddler, do, Shakespeare) -> a toddler (9478ms) Where was Shakespeare born? Description 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Description, Did, Shakespeare) -> Description (9529ms) Where was Shakespeare born? Rehoboth 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Rehoboth) -> Rehoboth (9644ms) Where was Shakespeare born? Davenport 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Davenport) -> Davenport (9373ms) Where was Shakespeare born? 1778 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1778) -> 1778 (9495ms) Where was Shakespeare born? 1866 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1866) -> 1866 (9391ms) Where was Shakespeare born? Elizabethton 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, had lived in, Elizabethton) -> Elizabethton (9319ms) Where was Shakespeare born? Karen 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Karen, did, Shakespeare) -> Karen (9629ms) Where was Shakespeare born? Dublin barracks 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Dublin barracks) -> Dublin barracks (9427ms) Where was Shakespeare born? Walton County 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Walton County) -> Walton County (9355ms) Where was Shakespeare born? Greenwood Township 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Greenwood Township) -> Greenwood Township (9594ms) Where was Shakespeare born? 1869 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1869) -> 1869 (9562ms) Where was Shakespeare born? Belfast 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Belfast) -> Belfast (9705ms) Where was Shakespeare born? Virginia 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Virginia) -> Virginia (9594ms) Where was Shakespeare born? Plainfield 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Plainfield) -> Plainfield (9512ms) Where was Shakespeare born? the STC 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (the STC, do, Shakespeare ?) -> the STC (9660ms) Where was Shakespeare born? 1826 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1826) -> 1826 (9355ms) Where was Shakespeare born? the Society 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, the Society) -> the Society (9594ms) Where was Shakespeare born? 1925 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in, 1925) -> 1925 (9478ms) Where was Shakespeare born? 1027 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1027) -> 1027 (9562ms) Where was Shakespeare born? South Carolina 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, South Carolina) -> South Carolina (9495ms) Where was Shakespeare born? The question 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (The question, is did, Shakespeare) -> The question (9444ms) Where was Shakespeare born? the French Quarter 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, the French Quarter) -> the French Quarter (9512ms) Where was Shakespeare born? Portsmouth 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Portsmouth) -> Portsmouth (9562ms) Where was Shakespeare born? the green mountains 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, the green mountains) -> the green mountains (9529ms) Where was Shakespeare born? April 1885 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, April 1885) -> April 1885 (9409ms) Where was Shakespeare born? Kentucky 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Kentucky) -> Kentucky (9705ms) Where was Shakespeare born? May 3 0.333333333332 Where was Shakespeare born? -> $x: (shakespeare, die on, $x) -> (Shakespeare, died on, May 3) -> May 3 (9610ms) Where was Shakespeare born? Tennessee 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Tennessee) -> Tennessee (9720ms) Where was Shakespeare born? Japan 0.333333333332 Where was Shakespeare born? -> $x: (prose, live in, $x) -> (the poetry and prose, lived in, Japan) -> Japan (9610ms) Where was Shakespeare born? 1911 0.333333333332 Where was Shakespeare born? -> $x: (prose, be bear in in, $x) -> (prose writer and translator, was born in, 1911) -> 1911 (9610ms) Where was Shakespeare born? 1797 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1797) -> 1797 (9391ms) Where was Shakespeare born? four different residences 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, four different residences) -> four different residences (9391ms) Where was Shakespeare born? the Woodland neighborhood 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, the Woodland neighborhood) -> the Woodland neighborhood (9660ms) Where was Shakespeare born? Accomack Co. 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Accomack Co.) -> Accomack Co. (9594ms) Where was Shakespeare born? April 26 , 1564 0.333333333332 Where was Shakespeare born? -> $x: (shakespeare, bear on, $x) -> (Shakespeare, was born on, April 26 , 1564) -> April 26 , 1564 (9478ms) Where was Shakespeare born? a guy 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (a guy, did, Shakespeare) -> a guy (9578ms) Where was Shakespeare born? Dunster 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Dunster, does, Shakespeare) -> Dunster (9319ms) Where was Shakespeare born? 1901 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, is living in, 1901) -> 1901 (9409ms) Where was Shakespeare born? the rules 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (the rules, did, Shakespeare) -> the rules (9355ms) Where was Shakespeare born? one-day 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (one-day, do, Shakespeare) -> one-day (9720ms) Where was Shakespeare born? 1623 0.333333333332 Where was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare 's widow, died in, 1623) -> 1623 (9644ms) Where was Shakespeare born? 23rd April 1616 0.333333333332 Where was Shakespeare born? -> $x: (shakespeare, die on, $x) -> (Shakespeare, died on, 23rd April 1616) -> 23rd April 1616 (9461ms) Where was Shakespeare born? the authorship controversy 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (the authorship controversy, did, Shakespeare) -> the authorship controversy (9545ms) Where was Shakespeare born? Springfield 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Springfield) -> Springfield (9355ms) Where was Shakespeare born? the play 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (the play, done by, Shakespeare) -> the play (9644ms) Where was Shakespeare born? April 23rd 0.333333333332 Where was Shakespeare born? -> $x: (shakespeare, die on, $x) -> (Shakespeare, died on, April 23rd) -> April 23rd (9690ms) Where was Shakespeare born? team 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (team, Does, Shakespeare) -> team (9705ms) Where was Shakespeare born? 1906 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, was living In, 1906) -> 1906 (9660ms) Where was Shakespeare born? Simpsons 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Simpsons, do, Shakespeare) -> Simpsons (9675ms) Where was Shakespeare born? Belper 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, Belper) -> Belper (9355ms) Where was Shakespeare born? YORK 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in the location, YORK) -> YORK (9578ms) Where was Shakespeare born? the misogynistic theme 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (the misogynistic theme, does, Shakespeare) -> the misogynistic theme (9660ms) Where was Shakespeare born? Sparta 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Sparta) -> Sparta (9373ms) Where was Shakespeare born? intent 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (intent, did, Shakespeare) -> intent (9644ms) Where was Shakespeare born? the early twenty-first century 0.333333333332 Where was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare, will die in, the early twenty-first century) -> the early twenty-first century (9660ms) Where was Shakespeare born? 1816 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1816) -> 1816 (9610ms) Where was Shakespeare born? 1873 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1873) -> 1873 (9409ms) Where was Shakespeare born? Indiana 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Indiana) -> Indiana (9610ms) Where was Shakespeare born? Natchez 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Natchez) -> Natchez (9444ms) Where was Shakespeare born? Sefton 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Sefton) -> Sefton (9626ms) Where was Shakespeare born? Rutherford 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (Williams, was born in, Rutherford) -> Rutherford (9391ms) Where was Shakespeare born? 1743 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1743) -> 1743 (9495ms) Where was Shakespeare born? 1871 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1871) -> 1871 (9644ms) Where was Shakespeare born? the role 0.333333333332 Where was Shakespeare born? -> $x: (shakespeare, die in, $x) -> (Shakespeare, died in, the role) -> the role (9626ms) Where was Shakespeare born? 1839 0.333333333332 Where was Shakespeare born? -> $x: (william, be bear in in, $x) -> (William, was born in, 1839) -> 1839 (9444ms) Where was Shakespeare born? Georgia 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Georgia) -> Georgia (9660ms) Where was Shakespeare born? Key West 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (Williams, lived in, Key West) -> Key West (9427ms) Where was Shakespeare born? Adam Sandler 0.333333333332 Where was Shakespeare born? -> $x: ($x, do, shakespeare) -> (Adam Sandler, did, Shakespeare) -> Adam Sandler (9337ms) Where was Shakespeare born? the same date 0.333333333332 Where was Shakespeare born? -> $x: (shakespeare, die on, $x) -> (Shakespeare and Cervantes, died on, the same date) -> the same date (9720ms) Where was Shakespeare born? the 23rd too 0.333333333332 Where was Shakespeare born? -> $x: (shakespeare, bear on, $x) -> (Shakespeare, was born on, the 23rd too) -> the 23rd too (9427ms) Where was Shakespeare born? Oakham Rutlandshire 0.333333333332 Where was Shakespeare born? -> $x: (william, live in, $x) -> (William, lived in, Oakham Rutlandshire) -> Oakham Rutlandshire (9626ms) Where was Shakespeare born? 1849 0.333333333327 Where was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1849) -> 1849 (9820ms) Where was Shakespeare born? 1811 0.333333333327 Where was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1811) -> 1811 (9778ms) Where was Shakespeare born? Toronto 0.333333333327 Where was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, Toronto) -> Toronto (9764ms) Where was Shakespeare born? Sydney 0.333333333327 Where was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Sydney) -> Sydney (9806ms) Where was Shakespeare born? Greene County 0.333333333327 Where was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, Greene County) -> Greene County (9778ms) Where was Shakespeare born? 1827 0.333333333327 Where was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1827) -> 1827 (9749ms) Where was Shakespeare born? 1763 0.333333333327 Where was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1763) -> 1763 (9820ms) Where was Shakespeare born? 1803 0.333333333327 Where was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1803) -> 1803 (9735ms) Where was Shakespeare born? 1887 0.333333333327 Where was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1887) -> 1887 (9820ms) Where was Shakespeare born? 1865 0.333333333327 Where was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1865) -> 1865 (9806ms) Where was Shakespeare born? 1876 0.333333333327 Where was Shakespeare born? -> $x: (william, be bear in, $x) -> (William, was born in, 1876) -> 1876 (9792ms) Where was Shakespeare born? India 0.333333333327 Where was Shakespeare born? -> $x: (william, be bear in, $x) -> (Williams, was born in, India) -> India (9792ms) Where was Shakespeare born? an island 0.222222222221 Where was Shakespeare born? -> $x: (shakespeare, live on, $x) -> (Shakespeare?s Prospero, lived on, an island) -> an island (9860ms) Where was Shakespeare born? the U.S. 0.222222222221 Where was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, live in, the U.S.) -> the U.S. (9834ms) Where was Shakespeare born? Canada 0.222222222221 Where was Shakespeare born? -> $x: (globe, be bear in in, $x) -> (Golden Globe-nominated New Zealand actress, was born in, Canada) -> Canada (9860ms) Where was Shakespeare born? Lafayette 0.222222222221 Where was Shakespeare born? -> $x: (shakespeare, live on, $x) -> (Shakespeare, lived on, Lafayette) -> Lafayette (9860ms) Where was Shakespeare born? the curses 0.222222222221 Where was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, live for ever in, the curses) -> the curses (9860ms) Where was Shakespeare born? Montreal 0.222222222221 Where was Shakespeare born? -> $x: (globe, be bear in in, $x) -> (-The Globe and Mail Samantha Warwick, was born in, Montreal) -> Montreal (9847ms) Where was Shakespeare born? impunity 0.222222222221 Where was Shakespeare born? -> $x: (globe, live in, $x) -> (this globe, can live in, impunity) -> impunity (9847ms) Where was Shakespeare born? the most volatile times 0.222222222221 Where was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, are living in, the most volatile times) -> the most volatile times (9833ms) Where was Shakespeare born? tents or canopies 0.222222222221 Where was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, could actually be living in, tents or canopies) -> tents or canopies (9847ms) Where was Shakespeare born? poverty , insecurity , and injustice 0.222222222221 Where was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, live in, poverty , insecurity , and injustice) -> poverty , insecurity , and injustice (9834ms) Where was Shakespeare born? the Philippines 0.222222222221 Where was Shakespeare born? -> $x: (globe, be bear in in, $x) -> (the globe?he, was born in, the Philippines) -> the Philippines (9860ms) Where was Shakespeare born? bondage 0.222222222221 Where was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, live in, bondage) -> bondage (9833ms) Where was Shakespeare born? fine health 0.222222222221 Where was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, have been living in, fine health) -> fine health (9847ms) Where was Shakespeare born? close quarters 0.222222222221 Where was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, live in, close quarters) -> close quarters (9834ms) Where was Shakespeare born? a new and exciting world 0.222222222221 Where was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, are living comfortably in, a new and exciting world) -> a new and exciting world (9847ms) Where was Shakespeare born? an emerging NWO 0.222222222221 Where was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, has been living in, an emerging NWO) -> an emerging NWO (9834ms) Where was Shakespeare born? real forms 0.222222222221 Where was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, daily live in, real forms) -> real forms (9873ms) Where was Shakespeare born? internet accessible area?s 0.222222222221 Where was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, currently live in, internet accessible area?s) -> internet accessible area?s (9847ms) Where was Shakespeare born? Massachusetts 0.222222222221 Where was Shakespeare born? -> $x: (globe, live in, $x) -> (Boston Globe Having, lived in, Massachusetts) -> Massachusetts (9860ms) Where was Shakespeare born? a virtual environment 0.222222222221 Where was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, play live in, a virtual environment) -> a virtual environment (9834ms) Where was Shakespeare born? literature 0.222222222221 Where was Shakespeare born? -> $x: (globe, live in, $x) -> (the Globe Theater, live in, literature) -> literature (9860ms) Where was Shakespeare born? Montreal and London 0.222222222221 Where was Shakespeare born? -> $x: (globe, live in, $x) -> (globe, has lived in, Montreal and London) -> Montreal and London (9860ms) Where was Shakespeare born? the regions 0.222222222221 Where was Shakespeare born? -> $x: (globe, be bear in in, $x) -> (the globe, were born here in, the regions) -> the regions (9847ms) Where was Shakespeare born? the villa 0.222222222221 Where was Shakespeare born? -> $x: (globe, live in, $x) -> (his own globe, live in, the villa) -> the villa (9873ms) Where was Shakespeare born? Lebanon 0.222222222221 Where was Shakespeare born? -> $x: (globe, live in, $x) -> (The globe-trotting brothers, also lived in, Lebanon) -> Lebanon (9833ms) Where was Shakespeare born? Mars 0.222222222221 Where was Shakespeare born? -> $x: (shakespeare, live on, $x) -> (Bierce and Shakespeare, are all living on, Mars) -> Mars (9834ms) Where was Shakespeare born? a Paris suburb 0.222222222221 Where was Shakespeare born? -> $x: (globe, live in, $x) -> (The globe-trotting musician, was living in, a Paris suburb) -> a Paris suburb (9860ms) Where was Shakespeare born? the developing world 0.222222222221 Where was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, live in, the developing world) -> the developing world (9873ms) Where was Shakespeare born? cooperative harmony 0.222222222221 Where was Shakespeare born? -> $x: (globe, live in, $x) -> (our globe, can live together in mutually, cooperative harmony) -> cooperative harmony (9860ms) Where was Shakespeare born? cities 0.222222222221 Where was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, live in, cities) -> cities (9833ms) Where was Shakespeare born? Darebin 0.222222222221 Where was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, have come to live in, Darebin) -> Darebin (9847ms) Where was Shakespeare born? Louisville 0.222222222221 Where was Shakespeare born? -> $x: (globe, live in, $x) -> (a Golden Globe Award?-winning actor, lived in, Louisville) -> Louisville (9847ms) Where was Shakespeare born? fear 0.222222222221 Where was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, live in, fear) -> fear (9860ms) Where was Shakespeare born? faraway Arizona 0.222222222221 Where was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, live now in, faraway Arizona) -> faraway Arizona (9860ms) Where was Shakespeare born? 1951 0.222222222221 Where was Shakespeare born? -> $x: (globe, be bear in in, $x) -> (The Boston Sunday Globe Paul Muldoon, was born in, 1951) -> 1951 (9833ms) Where was Shakespeare born? remote areas 0.222222222221 Where was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, live in, remote areas) -> remote areas (9834ms) Where was Shakespeare born? groups 0.222222222221 Where was Shakespeare born? -> $x: (globe, be bear in in, $x) -> (The globe-shaped flower heads, are borne in, groups) -> groups (9860ms) Where was Shakespeare born? Muggleton Street 0.222222222221 Where was Shakespeare born? -> $x: (shakespeare, live on, $x) -> (Shakespeare, lived on, Muggleton Street) -> Muggleton Street (9847ms) Where was Shakespeare born? much worse conditions 0.222222222221 Where was Shakespeare born? -> $x: (globe, live in, $x) -> (this globe, live in, much worse conditions) -> much worse conditions (9860ms) Where was Shakespeare born? Germany 0.222222222221 Where was Shakespeare born? -> $x: (globe, be bear in in, $x) -> (the globe-trotter, was born in, Germany) -> Germany (9833ms) Where was Shakespeare born? poverty 0.222222222221 Where was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, living in, poverty) -> poverty (9847ms) Where was Shakespeare born? the US. 0.222222222221 Where was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe?s Catholics, live in, the US.) -> the US. (9847ms) Where was Shakespeare born? concert 0.222222222221 Where was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, live in, concert) -> concert (9847ms) Where was Shakespeare born? cultures and communities 0.222222222221 Where was Shakespeare born? -> $x: (globe, live in, $x) -> (the globe, has lived in, cultures and communities) -> cultures and communities (9847ms) Where was Shakespeare born? Summertown 0.111111111111 Where was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, Summertown) -> Summertown (9886ms) Where was Shakespeare born? 1837 0.111111111111 Where was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, 1837) -> 1837 (9958ms) Where was Shakespeare born? 1756 0.111111111111 Where was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, 1756) -> 1756 (9948ms) Where was Shakespeare born? 1878 0.111111111111 Where was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, 1878) -> 1878 (9924ms) Where was Shakespeare born? 1855 0.111111111111 Where was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, 1855) -> 1855 (9936ms) Where was Shakespeare born? DeWitt county 0.111111111111 Where was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, DeWitt county) -> DeWitt county (9911ms) Where was Shakespeare born? 1851 0.111111111111 Where was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, 1851) -> 1851 (9899ms) Where was Shakespeare born? 1731 0.111111111111 Where was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, 1731) -> 1731 (9936ms) Where was Shakespeare born? 1798 0.111111111111 Where was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, 1798) -> 1798 (9911ms) Where was Shakespeare born? 1877 0.111111111111 Where was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, 1877) -> 1877 (9948ms) Where was Shakespeare born? Bristol 0.111111111111 Where was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, Bristol) -> Bristol (9924ms) Where was Shakespeare born? 1859 0.111111111111 Where was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, 1859) -> 1859 (9873ms) Where was Shakespeare born? 1956 0.111111111111 Where was Shakespeare born? -> $x: (prose, bear in, $x) -> (a poet and prose writer, born in, 1956) -> 1956 (9899ms) Where was Shakespeare born? 1782 0.111111111111 Where was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, 1782) -> 1782 (9948ms) Where was Shakespeare born? Ireland 0.111111111111 Where was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, Ireland) -> Ireland (9886ms) Where was Shakespeare born? 1922 0.111111111111 Where was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, 1922) -> 1922 (9886ms) Where was Shakespeare born? Kristiansand 0.111111111111 Where was Shakespeare born? -> $x: (prose, bear in, $x) -> (a Norwegian poet and prose writer, born in, Kristiansand) -> Kristiansand (9886ms) Where was Shakespeare born? Sroor 0.111111111111 Where was Shakespeare born? -> $x: (prose, bear in, $x) -> (a poet and prose writer, born in, Sroor) -> Sroor (9936ms) Where was Shakespeare born? 1886 0.111111111111 Where was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, 1886) -> 1886 (9899ms) Where was Shakespeare born? 1889 0.111111111111 Where was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, 1889) -> 1889 (9899ms) Where was Shakespeare born? 1785 0.111111111111 Where was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, 1785) -> 1785 (9911ms) Where was Shakespeare born? 1870 0.111111111111 Where was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, 1870) -> 1870 (9899ms) Where was Shakespeare born? 1885 0.111111111111 Where was Shakespeare born? -> $x: (william, bear in, $x) -> (William, born in, 1885) -> 1885 (9911ms) Where was Shakespeare born? 1635 0.11111111111 Where was Shakespeare born? -> $x: (william, be from in, $x) -> (Williams, was banished from the colony in, 1635) -> 1635 (9977ms) Where was Shakespeare born? August 4 , 1931 -0.0 Where was Shakespeare born? -> $x: (william, die on, $x) -> (Williams, Died On, August 4 , 1931) -> August 4 , 1931 (10037ms) Where was Shakespeare born? a great athlete -0.0 Where was Shakespeare born? -> $x: ($x, do, william) -> (a great athlete, could do well next to, Williams) -> a great athlete (10037ms) Where was Shakespeare born? 10 Jun 1808 -0.0 Where was Shakespeare born? -> $x: (william, bear on, $x) -> (William, was born on, 10 Jun 1808) -> 10 Jun 1808 (10053ms) Where was Shakespeare born? Schlesinger -0.0 Where was Shakespeare born? -> $x: ($x, do, william) -> (Schlesinger, did, Williams) -> Schlesinger (10069ms) Where was Shakespeare born? 1834 -0.0 Where was Shakespeare born? -> $x: (william, die in, $x) -> (William, died in, 1834) -> 1834 (10061ms) Where was Shakespeare born? Thomas -0.0 Where was Shakespeare born? -> $x: ($x, do, william) -> (Thomas, certainly does n?t fit into, Williams) -> Thomas (10037ms) Where was Shakespeare born? 1996 -0.0 Where was Shakespeare born? -> $x: (william, die in, $x) -> (Williams, died in, 1996) -> 1996 (10053ms) Where was Shakespeare born? mind -0.0 Where was Shakespeare born? -> $x: ($x, do, prose) -> (mind, does for, prose) -> mind (10053ms) Where was Shakespeare born? the same -0.0 Where was Shakespeare born? -> $x: ($x, do, william) -> (the same, be done again with, William) -> the same (10069ms) Where was Shakespeare born? 1993 -0.0 Where was Shakespeare born? -> $x: (william, die in, $x) -> (Williams, died in, 1993) -> 1993 (10053ms) Where was Shakespeare born? 23 -0.0 Where was Shakespeare born? -> $x: (william, bear on, $x) -> (William, was born on, 23) -> 23 (10045ms) Where was Shakespeare born? God -0.0 Where was Shakespeare born? -> $x: ($x, do, prose) -> (God, does n?t speak, prose) -> God (10061ms) Where was Shakespeare born? The conclusion -0.0 Where was Shakespeare born? -> $x: ($x, do, prose) -> (The conclusion, does n?t have to be, undying prose) -> The conclusion (10053ms) Where was Shakespeare born? The criticism -0.0 Where was Shakespeare born? -> $x: ($x, do, william) -> (The criticism, does n?t seem to bother, Williams) -> The criticism (10069ms) Where was Shakespeare born? 1914 -0.0 Where was Shakespeare born? -> $x: (william, die in, $x) -> (William, died in, 1914) -> 1914 (10053ms) Where was Shakespeare born? therapy -0.0 Where was Shakespeare born? -> $x: ($x, do, prose) -> (therapy, is done sometimes in, prose) -> therapy (10037ms) Where was Shakespeare born? 6 June 1851.1,2 -0.0 Where was Shakespeare born? -> $x: (william, bear on, $x) -> (William, was born on, 6 June 1851.1,2) -> 6 June 1851.1,2 (10061ms) Where was Shakespeare born? 18 July 1905 -0.0 Where was Shakespeare born? -> $x: (william, die on, $x) -> (William, died on, 18 July 1905) -> 18 July 1905 (10053ms) Where was Shakespeare born? 1775 -0.0 Where was Shakespeare born? -> $x: (william, die in, $x) -> (William, died in, 1775) -> 1775 (10037ms) Where was Shakespeare born? 9th September 1087 -0.0 Where was Shakespeare born? -> $x: (william, die on, $x) -> (William, died on, 9th September 1087) -> 9th September 1087 (10037ms) Where was Shakespeare born? the 29th October 1943 -0.0 Where was Shakespeare born? -> $x: (william, die on, $x) -> (William, died on, the 29th October 1943) -> the 29th October 1943 (10061ms) Where was Shakespeare born? 1835 -0.0 Where was Shakespeare born? -> $x: (william, die in, $x) -> (William, died in, 1835) -> 1835 (10053ms) Where was Shakespeare born? the ball -0.0 Where was Shakespeare born? -> $x: ($x, do, william) -> (the ball, did nt hit, Williams) -> the ball (10045ms) Where was Shakespeare born? poetry or fiction -0.0 Where was Shakespeare born? -> $x: ($x, do, prose) -> (poetry or fiction, does, didactic prose count) -> poetry or fiction (10037ms) Where was Shakespeare born? February 24 , 1866 -0.0 Where was Shakespeare born? -> $x: (william, die on, $x) -> (William, died on, February 24 , 1866) -> February 24 , 1866 (10037ms) Where was Shakespeare born? 1700 -0.0 Where was Shakespeare born? -> $x: (william, die in, $x) -> (William, died in, 1700) -> 1700 (10037ms) Where was Shakespeare born? an eclipse -0.0 Where was Shakespeare born? -> $x: (william, bear on, $x) -> (William, was born on, an eclipse) -> an eclipse (10046ms) Where was Shakespeare born? September 10 -0.0 Where was Shakespeare born? -> $x: (william, die on, $x) -> (William, died on, September 10) -> September 10 (10069ms) Where was Shakespeare born? the farm -0.0 Where was Shakespeare born? -> $x: (william, die on, $x) -> (William, died on, the farm) -> the farm (10053ms) Where was Shakespeare born? 11 October 1857.1,4 -0.0 Where was Shakespeare born? -> $x: (william, die on, $x) -> (William, died on, 11 October 1857.1,4) -> 11 October 1857.1,4 (10069ms) Where was Shakespeare born? Lyme -0.0 Where was Shakespeare born? -> $x: (william, die in, $x) -> (William, died in, Lyme) -> Lyme (10045ms) Where was Shakespeare born? 1746 -0.0 Where was Shakespeare born? -> $x: (william, die in, $x) -> (William, died in, 1746) -> 1746 (10061ms) Where was Shakespeare born? the authors -0.0 Where was Shakespeare born? -> $x: ($x, do, prose) -> (the authors, could be doing much more with, their prose) -> the authors (10069ms) Where was Shakespeare born? 1 July 1882.1 -0.0 Where was Shakespeare born? -> $x: (william, bear on, $x) -> (? ??William, was born on, 1 July 1882.1) -> 1 July 1882.1 (10037ms) Where was Shakespeare born? 19 Apr 1848 -0.0 Where was Shakespeare born? -> $x: (william, bear on, $x) -> (WILLIAM, was born on, 19 Apr 1848) -> 19 Apr 1848 (10069ms) Where was Shakespeare born? death -0.0 Where was Shakespeare born? -> $x: (william, have date of, $x) -> (Kathy Burch Williams, has a date of, death) -> death (10029ms) Where was Shakespeare born? New Zealand soil -0.0 Where was Shakespeare born? -> $x: (william, bear on, $x) -> (William, was born on, New Zealand soil) -> New Zealand soil (10061ms) Where was Shakespeare born? 6 Nov 1651 -0.0 Where was Shakespeare born? -> $x: (william, die on, $x) -> (William, died on, 6 Nov 1651) -> 6 Nov 1651 (10061ms) Where was Shakespeare born? 1998 -0.0 Where was Shakespeare born? -> $x: ($x, do, william) -> (1998, did, Williams) -> 1998 (10037ms) Where was Shakespeare born? 1926 -0.0 Where was Shakespeare born? -> $x: (william, die in, $x) -> (William, died in, 1926) -> 1926 (10061ms) Where was Shakespeare born? April 3 , 1835 Database # -0.0 Where was Shakespeare born? -> $x: (william, bear on, $x) -> (William, was born on, April 3 , 1835 Database #) -> April 3 , 1835 Database # (10053ms) Where was Shakespeare born? the army -0.0 Where was Shakespeare born? -> $x: (william, die in, $x) -> (William, died in, the army) -> the army (10069ms) Where was Shakespeare born? Chicago Public Art Group -0.0 Where was Shakespeare born? -> $x: ($x, do, prose) -> (Chicago Public Art Group, did, Eugene Victor Debs prose readings) -> Chicago Public Art Group (10069ms) Where was Shakespeare born? a polyester bunnet -0.0 Where was Shakespeare born? -> $x: ($x, do, william) -> (a polyester bunnet, might have done nothing for, Williams) -> a polyester bunnet (10053ms) Where was Shakespeare born? March 13 , 1909 -0.0 Where was Shakespeare born? -> $x: (william, die on, $x) -> (William, died on, March 13 , 1909) -> March 13 , 1909 (10069ms) Where was Shakespeare born? August 30 -0.0 Where was Shakespeare born? -> $x: (william, bear on, $x) -> (Williams, was born on, August 30) -> August 30 (10061ms) Where was Shakespeare born? the commissioner -0.0 Where was Shakespeare born? -> $x: ($x, do, william) -> (the commissioner, does with, Williams) -> the commissioner (10053ms) Where was Shakespeare born? Valente -0.0 Where was Shakespeare born? -> $x: ($x, do, prose) -> (Valente, does, prose) -> Valente (10045ms) Where was Shakespeare born? 23 March 1863 -0.0 Where was Shakespeare born? -> $x: (william, die on, $x) -> (William, died on, 23 March 1863) -> 23 March 1863 (10037ms) Where was Shakespeare born? etc -0.0 Where was Shakespeare born? -> $x: ($x, do, prose) -> (etc, did use, some prose) -> etc (10046ms) Where was Shakespeare born? 5.84 -0.0 Where was Shakespeare born? -> $x: ($x, do, william) -> (5.84, did, William) -> 5.84 (10069ms) Where was Shakespeare born? 19 March 1856 -0.0 Where was Shakespeare born? -> $x: (william, die on, $x) -> (William, died on, 19 March 1856) -> 19 March 1856 (10053ms) Where was Shakespeare born? 10 Aug 1683 -0.0 Where was Shakespeare born? -> $x: (william, die on, $x) -> (William, died on, 10 Aug 1683) -> 10 Aug 1683 (10037ms) Where was Shakespeare born? so thoroughly -0.0 Where was Shakespeare born? -> $x: ($x, do, prose) -> (so thoroughly, do to, prose) -> so thoroughly (10069ms) Where was Shakespeare born? the work -0.0 Where was Shakespeare born? -> $x: ($x, do, william) -> (the work, has done, William) -> the work (10069ms) Where was Shakespeare born? Gale -0.0 Where was Shakespeare born? -> $x: ($x, do, prose) -> (Gale, does n?t pay more attention to, his prose) -> Gale (10045ms) Where was Shakespeare born? a hug -0.0 Where was Shakespeare born? -> $x: ($x, do, prose) -> (a hug, did, an awesome prose) -> a hug (10069ms) Where was Shakespeare born? 8 Oct 1895 -0.0 Where was Shakespeare born? -> $x: (william, bear on, $x) -> (William, was born on, 8 Oct 1895) -> 8 Oct 1895 (10045ms) Where was Shakespeare born? 7 July 1817 -0.0 Where was Shakespeare born? -> $x: (william, die on, $x) -> (?William, died on, 7 July 1817) -> 7 July 1817 (10046ms) Where was Shakespeare born? October -0.0 Where was Shakespeare born? -> $x: (william, die on, $x) -> (William, died on, October) -> October (10061ms) Where was Shakespeare born? Monday afternoon -0.0 Where was Shakespeare born? -> $x: (william, die on, $x) -> (Williams, died on, Monday afternoon) -> Monday afternoon (10069ms) Where was Shakespeare born? 12 Mar 1581/2 -0.0 Where was Shakespeare born? -> $x: (william, die on, $x) -> (William, died on, 12 Mar 1581/2) -> 12 Mar 1581/2 (10061ms) Where was Shakespeare born? Thursday afternoon -0.0 Where was Shakespeare born? -> $x: (william, die on, $x) -> (Williams, died on, Thursday afternoon) -> Thursday afternoon (10045ms) Where was Shakespeare born? 26 Oct 1675 in Hingham -0.0 Where was Shakespeare born? -> $x: (william, die on, $x) -> (William, died on, 26 Oct 1675 in Hingham) -> 26 Oct 1675 in Hingham (10037ms) Where was Shakespeare born? 4 November 1703 -0.0 Where was Shakespeare born? -> $x: (william, die on, $x) -> (William, died on, 4 November 1703) -> 4 November 1703 (10061ms) Where was Shakespeare born? 16 Sep 1902 -0.0 Where was Shakespeare born? -> $x: (william, bear on, $x) -> (William, was born on, 16 Sep 1902) -> 16 Sep 1902 (10053ms) Where was Shakespeare born? Saul Bellow -0.0 Where was Shakespeare born? -> $x: ($x, do, prose) -> (Saul Bellow, was to do for, prose) -> Saul Bellow (10045ms) Where was Shakespeare born? 18 Aug 1918 -0.0 Where was Shakespeare born? -> $x: (william, bear on, $x) -> (William, was born on, 18 Aug 1918) -> 18 Aug 1918 (10045ms) Where was Shakespeare born? March 8 , 1929 -0.0 Where was Shakespeare born? -> $x: (william, bear on, $x) -> (Williams, was born on, March 8 , 1929) -> March 8 , 1929 (10061ms) What did Rachel Carson die of? 1964 1.666666666663 What did Rachel Carson die of? -> $x: (rachel carson, die in, $x) -> (Rachel Carson, died in, 1964) -> 1964 (1531ms) What did Rachel Carson die of? Silver Spring 1.666666666663 What did Rachel Carson die of? -> $x: (rachel carson, die in, $x) -> (Rachel Carson, died in, Silver Spring) -> Silver Spring (1440ms) What did Rachel Carson die of? April 14 1.666666666663 What did Rachel Carson die of? -> $x: (rachel carson, die in, $x) -> (breast cancer Rachel Carson, died in, April 14) -> April 14 (1440ms) What did Rachel Carson die of? 1965 1.666666666663 What did Rachel Carson die of? -> $x: (rachel carson, die in, $x) -> (Rachel Carson, died in, 1965) -> 1965 (1439ms) What did Rachel Carson die of? breast cancer 1.2222222222219998 What did Rachel Carson die of? -> $x: (rachel carson, die of, $x) -> (Rachel Carson, died of, breast cancer) -> breast cancer (1709ms) What did Rachel Carson die of? Breast Cancer 1.2222222222219998 What did Rachel Carson die of? -> $x: (rachel carson, die of, $x) -> (?Rachel Carson, Died of, Breast Cancer) -> Breast Cancer (1531ms) What did Rachel Carson die of? cancer 1.2222222222219998 What did Rachel Carson die of? -> $x: (rachel carson, die of, $x) -> (Rachel Carson, was dying of, cancer) -> cancer (1709ms) What did Rachel Carson die of? Fountain 0.999999999997 What did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Mary T. Carson Beedle, died in, Fountain) -> Fountain (2830ms) What did Rachel Carson die of? Afghanistan 0.999999999997 What did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Fort Carson, have died in, Afghanistan) -> Afghanistan (2563ms) What did Rachel Carson die of? Stargate Atlantis 0.999999999997 What did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Carson Beckett, died in, Stargate Atlantis) -> Stargate Atlantis (2409ms) What did Rachel Carson die of? 2007 0.999999999997 What did Rachel Carson die of? -> $x: (carson, die in, $x) -> (the Rev. John G. Carson, died in, 2007) -> 2007 (2443ms) What did Rachel Carson die of? 2005 0.999999999997 What did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Carson, died in, 2005) -> 2005 (2830ms) What did Rachel Carson die of? Franklin 0.999999999997 What did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Adam Carson, died in, Franklin) -> Franklin (2443ms) What did Rachel Carson die of? an auto accident 0.999999999997 What did Rachel Carson die of? -> $x: (carson, die in, $x) -> (a Fort Carson soldier, has died in, an auto accident) -> an auto accident (2563ms) What did Rachel Carson die of? 1992 aged 100 0.999999999997 What did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Elizabeth Carson, died in, 1992 aged 100) -> 1992 aged 100 (2443ms) What did Rachel Carson die of? April 14 , 1964 0.999999999997 What did Rachel Carson die of? -> $x: (rachel carson, die, $x) -> (Resistance Rachel Carson, died on, April 14 , 1964) -> April 14 , 1964 (2750ms) What did Rachel Carson die of? June 0.999999999997 What did Rachel Carson die of? -> $x: (carson, die in, $x) -> (County Commissioner Jerry Carson, died in, June) -> June (2609ms) What did Rachel Carson die of? 1967 0.999999999997 What did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Carson McCullers, died in, 1967) -> 1967 (2563ms) What did Rachel Carson die of? February 0.999999999997 What did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Frank Carson, died in, February) -> February (1709ms) What did Rachel Carson die of? Hangzhou 0.999999999997 What did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Carson, died recently in, Hangzhou) -> Hangzhou (2658ms) What did Rachel Carson die of? the age of 56 0.999999999997 What did Rachel Carson die of? -> $x: (rachel carson, die, $x) -> (Rachel Carson, died at, the age of 56) -> the age of 56 (2830ms) What did Rachel Carson die of? 1861 0.999999999997 What did Rachel Carson die of? -> $x: (rachel carson, die, $x) -> (Rachel Carson Benson, died, 1861) -> 1861 (2030ms) What did Rachel Carson die of? 1989 0.999999999997 What did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Carson, died in, 1989) -> 1989 (2830ms) What did Rachel Carson die of? 1863 0.999999999997 What did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Matthew B. Carson, died in, 1863) -> 1863 (2750ms) What did Rachel Carson die of? the daylong battle 0.999999999997 What did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Fort Carson, died in, the daylong battle) -> the daylong battle (2609ms) What did Rachel Carson die of? ?Sunday 0.999999999997 What did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Carson, will die in, ?Sunday) -> ?Sunday (2609ms) What did Rachel Carson die of? Encino 0.999999999997 What did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Carson, died in, Encino) -> Encino (2750ms) What did Rachel Carson die of? 1868 0.999999999997 What did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Carson, died in, 1868) -> 1868 (2609ms) What did Rachel Carson die of? Washington 0.999999999997 What did Rachel Carson die of? -> $x: (carson, die in, $x) -> (the same William Carson, died in, Washington) -> Washington (2750ms) What did Rachel Carson die of? Nyack 0.999999999997 What did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Carson McCullers, died in, Nyack) -> Nyack (2364ms) What did Rachel Carson die of? January 2005 0.999999999997 What did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Johnny Carson, died in, January 2005) -> January 2005 (2443ms) What did Rachel Carson die of? the episode 0.999999999997 What did Rachel Carson die of? -> $x: (carson, die in, $x) -> (the Dr. Carson Beckett character, died in, the episode) -> the episode (2609ms) What did Rachel Carson die of? office 0.999999999997 What did Rachel Carson die of? -> $x: (carson, die in, $x) -> (The last was Democratic Rep. Julia Carson, died in, office) -> office (2750ms) What did Rachel Carson die of? a plane crash 0.999999999997 What did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Emily Carson?s parents, die in, a plane crash) -> a plane crash (2750ms) What did Rachel Carson die of? Franklin Co 0.999999999997 What did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Adam Carson, died in, Franklin Co) -> Franklin Co (2659ms) What did Rachel Carson die of? an auto crash 0.999999999997 What did Rachel Carson die of? -> $x: (carson, die in, $x) -> (a Fort Carson soldier, has died in, an auto crash) -> an auto crash (2830ms) What did Rachel Carson die of? Iraq 0.999999999997 What did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Another two Fort Carson, died in, Iraq) -> Iraq (2830ms) What did Rachel Carson die of? 2008 0.999999999997 What did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Carson, died in, 2008) -> 2008 (2563ms) What did Rachel Carson die of? Talledega 0.999999999997 What did Rachel Carson die of? -> $x: (carson, die in, $x) -> (10 Joseph Carson, died in, Talledega) -> Talledega (2563ms) What did Rachel Carson die of? January 0.999999999997 What did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Carson, died in, January) -> January (2443ms) What did Rachel Carson die of? the peak 0.999999999997 What did Rachel Carson die of? -> $x: (rachel carson, die, $x) -> (Rachel Carson, died at, the peak) -> the peak (2658ms) What did Rachel Carson die of? poverty 0.999999999997 What did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Kit Carson, die in, poverty) -> poverty (2659ms) What did Rachel Carson die of? Malibu 0.999999999997 What did Rachel Carson die of? -> $x: (carson, die in, $x) -> (Johnny Carson, died in, Malibu) -> Malibu (2658ms) What did Rachel Carson die of? Tryon 0.999999999997 What did Rachel Carson die of? -> $x: (carson, die in, $x) -> (7 Emmie Carson, died in, Tryon) -> Tryon (2443ms) What did Rachel Carson die of? western Pennsylvania 0.888888888888 What did Rachel Carson die of? -> $x: (rachel carson, be bear in, $x) -> (Rachel Carson, was born in, western Pennsylvania) -> western Pennsylvania (2834ms) What did Rachel Carson die of? 1907 0.888888888888 What did Rachel Carson die of? -> $x: (rachel carson, be bear in, $x) -> (Rachel Carson, was born in, 1907) -> 1907 (2835ms) What did Rachel Carson die of? Springdale 0.888888888888 What did Rachel Carson die of? -> $x: (rachel carson, be bear in, $x) -> (Rachel Carson, was born in, Springdale) -> Springdale (2835ms) What did Rachel Carson die of? 79 0.5555555555559999 What did Rachel Carson die of? -> $x: (carson, die of, $x) -> (Johnny carson, is a person who died at the age of, 79) -> 79 (2844ms) What did Rachel Carson die of? complications 0.5555555555559999 What did Rachel Carson die of? -> $x: (carson, die from, $x) -> (Carson City, died recently from, complications) -> complications (2844ms) What did Rachel Carson die of? a blood clot 0.5555555555559999 What did Rachel Carson die of? -> $x: (carson, die of, $x) -> (Mr. Carson, died suddenly of, a blood clot) -> a blood clot (2835ms) What did Rachel Carson die of? a massive cerebral hemorrhage 0.5555555555559999 What did Rachel Carson die of? -> $x: (carson, die of, $x) -> (Carson McCullers, died of, a massive cerebral hemorrhage) -> a massive cerebral hemorrhage (2835ms) What did Rachel Carson die of? lung cancer 0.5555555555559999 What did Rachel Carson die of? -> $x: (carson, die of, $x) -> (Carson, died of, lung cancer) -> lung cancer (2839ms) What did Rachel Carson die of? wounds 0.5555555555559999 What did Rachel Carson die of? -> $x: (carson, die from, $x) -> (A Fort Carson soldier, has died from, wounds) -> wounds (2839ms) What did Rachel Carson die of? respiratory arrest 0.5555555555559999 What did Rachel Carson die of? -> $x: (carson, die of, $x) -> (Carson, died of, respiratory arrest) -> respiratory arrest (2835ms) What did Rachel Carson die of? unknown causes 0.5555555555559999 What did Rachel Carson die of? -> $x: (carson, die of, $x) -> (Sage Carson, died of, unknown causes) -> unknown causes (2839ms) What did Rachel Carson die of? emphysema 0.5555555555559999 What did Rachel Carson die of? -> $x: (carson, die of, $x) -> (Johnny Carson, has died of, emphysema) -> emphysema (2844ms) What did Rachel Carson die of? stomach cancer 0.5555555555559999 What did Rachel Carson die of? -> $x: (carson, die from, $x) -> (Jack Carson, died from, stomach cancer) -> stomach cancer (2839ms) What did Rachel Carson die of? a broken heart 0.555555555553 What did Rachel Carson die of? -> $x: (rachel, die of, $x) -> (Rachel, had died of, a broken heart) -> a broken heart (2844ms) What did Rachel Carson die of? heart disease 0.555555555553 What did Rachel Carson die of? -> $x: (rachel, die of, $x) -> (Rachel Jackson , beloved wife, died of, heart disease) -> heart disease (2852ms) What did Rachel Carson die of? mesothelioma 0.555555555553 What did Rachel Carson die of? -> $x: (rachel, die from, $x) -> (Rachel, died from, mesothelioma) -> mesothelioma (2848ms) What did Rachel Carson die of? asthma 0.555555555553 What did Rachel Carson die of? -> $x: (rachel, die of, $x) -> (resident Rachel Barsky, died of, asthma) -> asthma (2844ms) What did Rachel Carson die of? asbestos cancer 0.555555555553 What did Rachel Carson die of? -> $x: (rachel, die from, $x) -> (Dec 21 , 2011 Rachel Lee, died from, asbestos cancer) -> asbestos cancer (2848ms) What did Rachel Carson die of? pneumonia 0.555555555553 What did Rachel Carson die of? -> $x: (rachel, die of, $x) -> (Rachel, died of, pneumonia) -> pneumonia (2848ms) What did Rachel Carson die of? SIDS 0.555555555553 What did Rachel Carson die of? -> $x: (rachel, die of, $x) -> (My daughter Rachel Lorraine, died of, SIDS) -> SIDS (2844ms) What did Rachel Carson die of? yellow fever 0.555555555553 What did Rachel Carson die of? -> $x: (rachel, die of, $x) -> (Henry and Rachel, died of, yellow fever) -> yellow fever (2852ms) What did Rachel Carson die of? a heart attack 0.555555555553 What did Rachel Carson die of? -> $x: (rachel, die of, $x) -> (troubled artist Rachel Kelly, dies of, a heart attack) -> a heart attack (2852ms) What did Rachel Carson die of? a respiratory problem 0.555555555553 What did Rachel Carson die of? -> $x: (rachel, die of, $x) -> (Rachel Jones, dies of, a respiratory problem) -> a respiratory problem (2848ms) What did Rachel Carson die of? leukemia 0.555555555553 What did Rachel Carson die of? -> $x: (rachel, die of, $x) -> (His sister Rachel, died of, leukemia) -> leukemia (2848ms) What did Rachel Carson die of? old age 0.555555555553 What did Rachel Carson die of? -> $x: (rachel, die from, $x) -> (Rachel, died from, old age) -> old age (2848ms) What did Rachel Carson die of? an unknown cause 0.555555555553 What did Rachel Carson die of? -> $x: (rachel, die of, $x) -> (Rachel, died of, an unknown cause) -> an unknown cause (2852ms) What did Rachel Carson die of? an unspecified disease 0.555555555553 What did Rachel Carson die of? -> $x: (rachel, die from, $x) -> (his mother Rachel, died from, an unspecified disease) -> an unspecified disease (2852ms) What did Rachel Carson die of? January 23 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (98. Johnny Carson, died, January 23) -> January 23 (2870ms) What did Rachel Carson die of? 1837 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (Robert Carson, died, 1837) -> 1837 (2864ms) What did Rachel Carson die of? eighteen months 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson, died, eighteen months) -> eighteen months (2867ms) What did Rachel Carson die of? the rocks 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson?s men, die among, the rocks) -> the rocks (2864ms) What did Rachel Carson die of? 1847 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (John Carson, died, 1847) -> 1847 (2870ms) What did Rachel Carson die of? age 85 Rating 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (comedian Frank Carson, died, age 85 Rating) -> age 85 Rating (2872ms) What did Rachel Carson die of? the day 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson, died, the day) -> the day (2870ms) What did Rachel Carson die of? recently 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (Johnny Carson, died, recently) -> recently (2860ms) What did Rachel Carson die of? May 8 , 2007 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson Whitsett, died, May 8 , 2007) -> May 8 , 2007 (2867ms) What did Rachel Carson die of? cancer battle 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson, dies after, cancer battle) -> cancer battle (2867ms) What did Rachel Carson die of? a few years 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (Johnny Carson, died, a few years) -> a few years (2872ms) What did Rachel Carson die of? aged 85 at his home in Blackpool 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson, died, aged 85 at his home in Blackpool) -> aged 85 at his home in Blackpool (2864ms) What did Rachel Carson die of? July 19 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (Jerry Carson, died, July 19) -> July 19 (2872ms) What did Rachel Carson die of? August 8 , 2002 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson retired, died, August 8 , 2002) -> August 8 , 2002 (2861ms) What did Rachel Carson die of? 1827 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (Robert Carson, died, 1827) -> 1827 (2870ms) What did Rachel Carson die of? Los Angeles ' Cedars-Sinai Medical Center 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson, died at, Los Angeles ' Cedars-Sinai Medical Center) -> Los Angeles ' Cedars-Sinai Medical Center (2872ms) What did Rachel Carson die of? two years 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson, died, two years) -> two years (2856ms) What did Rachel Carson die of? two days 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (Fort Carson, died, two days) -> two days (2872ms) What did Rachel Carson die of? early Sunday morning 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson, died, early Sunday morning) -> early Sunday morning (2870ms) What did Rachel Carson die of? the year 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson, died, the year) -> the year (2856ms) What did Rachel Carson die of? home 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson, died peacefully at, home) -> home (2872ms) What did Rachel Carson die of? May 23 , 1868 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson, died, May 23 , 1868) -> May 23 , 1868 (2864ms) What did Rachel Carson die of? surrounded by his family 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson, died, surrounded by his family) -> surrounded by his family (2870ms) What did Rachel Carson die of? two years later 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson, died, two years later) -> two years later (2860ms) What did Rachel Carson die of? Dec. 15 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson, died, Dec. 15) -> Dec. 15 (2870ms) What did Rachel Carson die of? August 3 , 1947 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (Estelle Carson, died, August 3 , 1947) -> August 3 , 1947 (2867ms) What did Rachel Carson die of? Sunday 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (Laura Madelyn Carson, died, Sunday) -> Sunday (2864ms) What did Rachel Carson die of? 10 Nov 1932 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (CARSON, died, 10 Nov 1932) -> 10 Nov 1932 (2872ms) What did Rachel Carson die of? the East Coast 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson, died on, the East Coast) -> the East Coast (2864ms) What did Rachel Carson die of? Fort Lyon 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (Kit Carson, died at, Fort Lyon) -> Fort Lyon (2870ms) What did Rachel Carson die of? Bronson Methodist Hospital 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson, died a week later at, Bronson Methodist Hospital) -> Bronson Methodist Hospital (2867ms) What did Rachel Carson die of? the 3rd 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (? Corporal William D Carson, died, the 3rd) -> the 3rd (2860ms) What did Rachel Carson die of? 10 Dec 1940 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (CLAUDE CARSON, died, 10 Dec 1940) -> 10 Dec 1940 (2864ms) What did Rachel Carson die of? the county hospital 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (CARSON, died at, the county hospital) -> the county hospital (2860ms) What did Rachel Carson die of? Oct 5 , 1829 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (William Carson Jr, died, Oct 5 , 1829) -> Oct 5 , 1829 (2867ms) What did Rachel Carson die of? Saturday 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson, died, Saturday) -> Saturday (2870ms) What did Rachel Carson die of? last week 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (comedian Frank Carson, died, last week) -> last week (2867ms) What did Rachel Carson die of? shortly after the child 's birth 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson 's wife, died, shortly after the child 's birth) -> shortly after the child 's birth (2860ms) What did Rachel Carson die of? last year 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson, died, last year) -> last year (2867ms) What did Rachel Carson die of? last month 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (Carson, died, last month) -> last month (2867ms) What did Rachel Carson die of? 1816 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (Adam Carson, died, 1816) -> 1816 (2856ms) What did Rachel Carson die of? Monday 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (Mrs. Carson, died, Monday) -> Monday (2860ms) What did Rachel Carson die of? a pauper 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (Mickey Carson, died, a pauper) -> a pauper (2856ms) What did Rachel Carson die of? 1802 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (More clues ...Henry Carson, died, 1802) -> 1802 (2856ms) What did Rachel Carson die of? Blackpool News 0.33333333333099996 What did Rachel Carson die of? -> $x: (carson, die, $x) -> (great Frank Carson, dies |, Blackpool News) -> Blackpool News (2867ms) What did Rachel Carson die of? Ontario 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Ms. Carson, was born in, Ontario) -> Ontario (2881ms) What did Rachel Carson die of? 1609 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (. John Aaron CARSON, was born in, 1609) -> 1609 (2879ms) What did Rachel Carson die of? Missouri 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Joseph Carson Cunningham, was born in, Missouri) -> Missouri (2875ms) What did Rachel Carson die of? Canada 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Jack Carson, was born in, Canada) -> Canada (2872ms) What did Rachel Carson die of? Nevada 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Mr. Carson, was born in, Nevada) -> Nevada (2881ms) What did Rachel Carson die of? Whitehaven 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> ('s Scott Carson, was born in, Whitehaven) -> Whitehaven (2877ms) What did Rachel Carson die of? 1809 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Kit Carson, was born there in, 1809) -> 1809 (2875ms) What did Rachel Carson die of? rural Nebraska 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Gery Carson, was born in, rural Nebraska) -> rural Nebraska (2881ms) What did Rachel Carson die of? the city 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (comedian Frank Carson, was born in, the city) -> the city (2875ms) What did Rachel Carson die of? Northern Ireland 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (DAVE CARSON, was born in, Northern Ireland) -> Northern Ireland (2882ms) What did Rachel Carson die of? Madison County 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Carson, was born in, Madison County) -> Madison County (2881ms) What did Rachel Carson die of? Toronto 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Anne Carson, was born in, Toronto) -> Toronto (2882ms) What did Rachel Carson die of? Carman 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (John Elmer Carson, was born in, Carman) -> Carman (2879ms) What did Rachel Carson die of? 1917 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Lonely Heart Lula Carson Smith, was born in, 1917) -> 1917 (2882ms) What did Rachel Carson die of? 1914 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Carson Valley, was born in, 1914) -> 1914 (2877ms) What did Rachel Carson die of? Brooklyn 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Meredith Carson, was born in, Brooklyn) -> Brooklyn (2881ms) What did Rachel Carson die of? Danville 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Carson Davenport, was born in, Danville) -> Danville (2879ms) What did Rachel Carson die of? Corning 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Johnny Carson, was born in, Corning) -> Corning (2882ms) What did Rachel Carson die of? 1975 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Carson Ellis, was born in, 1975) -> 1975 (2882ms) What did Rachel Carson die of? North Carolina 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Ben Leeds Carson, was born in, North Carolina) -> North Carolina (2877ms) What did Rachel Carson die of? 1867 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Caroline CARSON, was born in, 1867) -> 1867 (2877ms) What did Rachel Carson die of? Acworth 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Carson, was born in, Acworth) -> Acworth (2875ms) What did Rachel Carson die of? eastern Pennsylvania 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Thomas Carson, was born in, eastern Pennsylvania) -> eastern Pennsylvania (2879ms) What did Rachel Carson die of? Vancouver 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Carson, was born in, Vancouver) -> Vancouver (2879ms) What did Rachel Carson die of? 1747 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (John Linn Carson, was born in, 1747) -> 1747 (2875ms) What did Rachel Carson die of? Hernando County 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (JOSEPH WASHINGTON CARSON, was born in, Hernando County) -> Hernando County (2881ms) What did Rachel Carson die of? Ballymoney 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Anne Carson, was born in, Ballymoney) -> Ballymoney (2882ms) What did Rachel Carson die of? Ireland 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Carson, was born in, Ireland) -> Ireland (2882ms) What did Rachel Carson die of? Lost Creek 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (James Carson White, was born in, Lost Creek) -> Lost Creek (2875ms) What did Rachel Carson die of? the city? 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (comedian Frank Carson, was born in, the city?) -> the city? (2875ms) What did Rachel Carson die of? a covered wagon 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (William Harrison Carson, was born in, a covered wagon) -> a covered wagon (2879ms) What did Rachel Carson die of? Columbus 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Lula Carson Smith, was born in, Columbus) -> Columbus (2877ms) What did Rachel Carson die of? California 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (? Matthew Carson Lewandowski, was born in, California) -> California (2879ms) What did Rachel Carson die of? 1858 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Rosella W. CARSON, was born in, 1858) -> 1858 (2875ms) What did Rachel Carson die of? Virginia 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (PA. John A. Carson, may have been born in, Virginia) -> Virginia (2875ms) What did Rachel Carson die of? Kearney 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Curtis J. Carson Col . Curtis J. Carson, was born in, Kearney) -> Kearney (2881ms) What did Rachel Carson die of? 1925 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Carson, was born in, 1925) -> 1925 (2882ms) What did Rachel Carson die of? Supply 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Susie Carson, was born in, Supply) -> Supply (2881ms) What did Rachel Carson die of? the little town 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Carson, was born in, the little town) -> the little town (2877ms) What did Rachel Carson die of? Kentucky 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Biography Christopher Houston Carson, was born in, Kentucky) -> Kentucky (2879ms) What did Rachel Carson die of? Birmingham 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Bert Carson, was born in, Birmingham) -> Birmingham (2879ms) What did Rachel Carson die of? Ottawa 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Carson Becke, was born in, Ottawa) -> Ottawa (2879ms) What did Rachel Carson die of? Detroit 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Benjamin Carson, was born in, Detroit) -> Detroit (2877ms) What did Rachel Carson die of? Buffalo 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (Dr. Carson, was born in, Buffalo) -> Buffalo (2872ms) What did Rachel Carson die of? 1948 0.222222222222 What did Rachel Carson die of? -> $x: (carson, be bear in, $x) -> (text/html Ciaran Carson, was born in, 1948) -> 1948 (2882ms) What did Rachel Carson die of? 1840 0.11111111111099997 What did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Henry and Rebecca Carson, lived in, 1840) -> 1840 (2883ms) What did Rachel Carson die of? Washington Twp 0.11111111111099997 What did Rachel Carson die of? -> $x: (carson, live in, $x) -> (1860 Charles Campbell Carson, was living in, Washington Twp) -> Washington Twp (2884ms) What did Rachel Carson die of? Colorado 0.11111111111099997 What did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Kit Carson, lived in, Colorado) -> Colorado (2884ms) What did Rachel Carson die of? Japan Yes 0.11111111111099997 What did Rachel Carson die of? -> $x: (carson, live in, $x) -> (> Zach Hill & Carson McWhirter, live in, Japan Yes) -> Japan Yes (2885ms) What did Rachel Carson die of? the valley 0.11111111111099997 What did Rachel Carson die of? -> $x: (carson, live in, $x) -> (the Carson family, lived over in, the valley) -> the valley (2884ms) What did Rachel Carson die of? Montreal 0.11111111111099997 What did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Carson, lived in, Montreal) -> Montreal (2883ms) What did Rachel Carson die of? New Jersey 0.11111111111099997 What did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Carson, has lived in, New Jersey) -> New Jersey (2884ms) What did Rachel Carson die of? 1 2 CONC 840 0.11111111111099997 What did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Henry and Rebecca Carson, lived in, 1 2 CONC 840) -> 1 2 CONC 840 (2883ms) What did Rachel Carson die of? London 0.11111111111099997 What did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Carson, living in, London) -> London (2883ms) What did Rachel Carson die of? the rural community 0.11111111111099997 What did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Carson City, has lived his entire life in, the rural community) -> the rural community (2882ms) What did Rachel Carson die of? the 2nd District 0.11111111111099997 What did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Carson, lived in, the 2nd District) -> the 2nd District (2884ms) What did Rachel Carson die of? June of 2011 0.11111111111099997 What did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Brad Carson, said to Living in, June of 2011) -> June of 2011 (2883ms) What did Rachel Carson die of? the Philippines 0.11111111111099997 What did Rachel Carson die of? -> $x: (carson, live in, $x) -> (The Carsons, lived in, the Philippines) -> the Philippines (2884ms) What did Rachel Carson die of? Santa Fe 0.11111111111099997 What did Rachel Carson die of? -> $x: (carson, live in, $x) -> (the Carson descendant, living in, Santa Fe) -> Santa Fe (2883ms) What did Rachel Carson die of? China 0.11111111111099997 What did Rachel Carson die of? -> $x: (carson, live in, $x) -> (? Carson, spent four years living in, China) -> China (2882ms) What did Rachel Carson die of? Minneapolis 0.11111111111099997 What did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Carson and Coleman, live in, Minneapolis) -> Minneapolis (2884ms) What did Rachel Carson die of? Lincoln 0.11111111111099997 What did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Carson and I, lived in, Lincoln) -> Lincoln (2883ms) What did Rachel Carson die of? Port Credit 0.11111111111099997 What did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Carson Shipp, lived in, Port Credit) -> Port Credit (2882ms) What did Rachel Carson die of? the projects 0.11111111111099997 What did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Kevin Carson, is a young man living in, the projects) -> the projects (2883ms) What did Rachel Carson die of? Illinois 0.11111111111099997 What did Rachel Carson die of? -> $x: (carson, live in, $x) -> (William Lynn Carson, was living in, Illinois) -> Illinois (2884ms) What did Rachel Carson die of? Austin 0.11111111111099997 What did Rachel Carson die of? -> $x: (carson, live in, $x) -> (great-nephew Carson, live in, Austin) -> Austin (2882ms) What did Rachel Carson die of? Rush 0.11111111111099997 What did Rachel Carson die of? -> $x: (carson, live in, $x) -> (1850 Joseph Carson Sr, was living in, Rush) -> Rush (2884ms) What did Rachel Carson die of? NYC 0.11111111111099997 What did Rachel Carson die of? -> $x: (carson, live in, $x) -> (my friend Carson, used to live in, NYC) -> NYC (2883ms) What did Rachel Carson die of? Warren 0.11111111111099997 What did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Rebecca Carson, were found living in, Warren) -> Warren (2884ms) What did Rachel Carson die of? Mifflin 0.11111111111099997 What did Rachel Carson die of? -> $x: (carson, live in, $x) -> (David Carson, was possibly living in, Mifflin) -> Mifflin (2885ms) What did Rachel Carson die of? Palo Alto 0.11111111111099997 What did Rachel Carson die of? -> $x: (carson, live in, $x) -> (The Carsons, live in, Palo Alto) -> Palo Alto (2884ms) What did Rachel Carson die of? the small house 0.11111111111099997 What did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Johnny Carson, lived in, the small house) -> the small house (2884ms) What did Rachel Carson die of? Clarinda 0.11111111111099997 What did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Carson, also lived in, Clarinda) -> Clarinda (2885ms) What did Rachel Carson die of? the rain shadow 0.11111111111099997 What did Rachel Carson die of? -> $x: (carson, live in, $x) -> (the Carson Valley, live in, the rain shadow) -> the rain shadow (2883ms) What did Rachel Carson die of? Southeast Atlanta 0.11111111111099997 What did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Carson, has lived in, Southeast Atlanta) -> Southeast Atlanta (2883ms) What did Rachel Carson die of? Germany 0.11111111111099997 What did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Carson, has lived in, Germany) -> Germany (2884ms) What did Rachel Carson die of? Carson City Vella 0.11111111111099997 What did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Carson City Inman, lived in, Carson City Vella) -> Carson City Vella (2883ms) What did Rachel Carson die of? Taos 0.11111111111099997 What did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Kit Carson, had lived in, Taos) -> Taos (2883ms) What did Rachel Carson die of? Myrtle Beach 0.11111111111099997 What did Rachel Carson die of? -> $x: (carson, live in, $x) -> (SC Ashlee Carson, has lived in, Myrtle Beach) -> Myrtle Beach (2884ms) What did Rachel Carson die of? Los Angeles 0.11111111111099997 What did Rachel Carson die of? -> $x: (carson, live in, $x) -> (Carson, was living in, Los Angeles) -> Los Angeles (2883ms) What did Rachel Carson die of? half dollar -0.0 What did Rachel Carson die of? -> $x: ($x, die from, carson) -> (half dollar, die from, the Carson City Mint) -> half dollar (2885ms) What did Rachel Carson die of? the LAPD -0.11111111111100003 What did Rachel Carson die of? -> $x: ($x, kill, carson) -> (the LAPD, killed, Everett Carson reflective) -> the LAPD (2885ms) What did Rachel Carson die of? the heck -0.11111111111100003 What did Rachel Carson die of? -> $x: ($x, happen to, carson) -> (the heck, has happened to, Carson Palmer) -> the heck (2885ms) What did Rachel Carson die of? Wildlife -0.11111111111100003 What did Rachel Carson die of? -> $x: ($x, kill, carson) -> (Wildlife, kills in, Carson Sink) -> Wildlife (2885ms) What did Rachel Carson die of? times -0.11111111111100003 What did Rachel Carson die of? -> $x: ($x, happen to, carson) -> (times, ever happened to, Lisa Nicole Carson) -> times (2885ms) What did Rachel Carson die of? Eduardo Sencion -0.11111111111100003 What did Rachel Carson die of? -> $x: ($x, kill, carson) -> (Eduardo Sencion, killed five people at, a Carson City restaurant) -> Eduardo Sencion (2885ms) What did Rachel Carson die of? Just -0.11111111111100003 What did Rachel Carson die of? -> $x: ($x, happen to, carson) -> (Just, happened to, its neighbor Carson?s) -> Just (2885ms) What did Rachel Carson die of? the general vision -0.11111111111100003 What did Rachel Carson die of? -> $x: ($x, happen to, carson) -> (the general vision, might happen to, Carson Street) -> the general vision (2885ms) What did Rachel Carson die of? the Battle-Axis -0.11111111111100003 What did Rachel Carson die of? -> $x: ($x, kill, carson) -> (the Battle-Axis, killed, Carson) -> the Battle-Axis (2885ms) What did Rachel Carson die of? out -0.11111111111100003 What did Rachel Carson die of? -> $x: ($x, kill, carson) -> (out, had killed, Professor Carson) -> out (2885ms) What did Rachel Carson die of? the hell -0.11111111111100003 What did Rachel Carson die of? -> $x: ($x, happen to, carson) -> (the hell, happened to, Carson Daly) -> the hell (2885ms) What did Rachel Carson die of? December 15 , 2007 -0.22222222222200003 What did Rachel Carson die of? -> $x: (carson, die on, $x) -> (Julia Carson, died on, December 15 , 2007) -> December 15 , 2007 (2886ms) What did Rachel Carson die of? Wednesday -0.22222222222200003 What did Rachel Carson die of? -> $x: (carson, die on, $x) -> (the comic Frank Carson, died on, Wednesday) -> Wednesday (2886ms) What did Rachel Carson die of? September 29 -0.22222222222200003 What did Rachel Carson die of? -> $x: (carson, die on, $x) -> (Carson McCullers, died on, September 29) -> September 29 (2886ms) What did Rachel Carson die of? 30 December 1876 -0.22222222222200003 What did Rachel Carson die of? -> $x: (carson, die on, $x) -> (Joseph Carson, died on, 30 December 1876) -> 30 December 1876 (2885ms) What did Rachel Carson die of? September 19 , 2011 -0.22222222222200003 What did Rachel Carson die of? -> $x: (carson, die on, $x) -> (Jo Carson, died on, September 19 , 2011) -> September 19 , 2011 (2886ms) What did Rachel Carson die of? Breast cancer -0.444444444442 What did Rachel Carson die of? -> $x: ($x, die, rachel carson) -> (Breast cancer, People Who Died This Way, Rachel Carson) -> Breast cancer (2886ms) What did Rachel Carson die of? William Benson -0.44444444444299996 What did Rachel Carson die of? -> $x: ($x, marry, rachel carson) -> (William Benson, married, Rachel Carson) -> William Benson (2886ms) What is amitriptyline? the drowsiness 0.111111111111 What is amitriptyline? -> $x: ($x, cause, amitriptyline) -> (the drowsiness, caused by, Amitriptyline) -> the drowsiness (858ms) What is amitriptyline? Drug -0.0 What is amitriptyline? -> $x: ($x, in, amitriptyline) -> (Drug, Drug formulations in this category, Amitriptyline hydrochloride 75 film coated tablet) -> Drug (1302ms) What is amitriptyline? Pregnancy Category C (FDA) -0.0 What is amitriptyline? -> $x: ($x, in, amitriptyline) -> (Pregnancy Category C (FDA), Drugs in this category, Amitriptyline) -> Pregnancy Category C (FDA) (1107ms) What is amitriptyline? Tablet -0.0 What is amitriptyline? -> $x: ($x, in, amitriptyline) -> (Tablet, Formulations available in this form, Amitriptyline hydrochloride 25 tablet) -> Tablet (1107ms) What is amitriptyline? Drug Kit -0.0 What is amitriptyline? -> $x: ($x, in, amitriptyline) -> (Drug Kit, Formulations available in this form, Amitriptyline hydrochloride, choline 25/250 kit) -> Drug Kit (1047ms) What is amitriptyline? Film Coated Tablet -0.0 What is amitriptyline? -> $x: ($x, in, amitriptyline) -> (Film Coated Tablet, Formulations available in this form, Chlordiazepoxide and amitriptyline hydrochloride 10/25 film coated tablet) -> Film Coated Tablet (1302ms) What is amitriptyline? the cells -0.111111111111 What is amitriptyline? -> $x: (amitriptyline, do, $x) -> (Amitriptyline, did n?t kill, the cells) -> the cells (1302ms) What is amitriptyline? the nerve pain -0.111111111111 What is amitriptyline? -> $x: (amitriptyline, do, $x) -> (Amitriptyline, Does indeed calm, the nerve pain) -> the nerve pain (1303ms) What is amitriptyline? lower fit threshold -0.111111111111 What is amitriptyline? -> $x: (amitriptyline, do, $x) -> (amitriptyline, does, lower fit threshold) -> lower fit threshold (1302ms) What is amitriptyline? patients -0.111111111112 What is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline sedation, is also very useful for, patients) -> patients (1428ms) What is amitriptyline? ADHD -0.111111111112 What is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (amitriptyline, is prescribed off-label for, ADHD) -> ADHD (1438ms) What is amitriptyline? IC/PBS patients -0.111111111112 What is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline, seems to be most effective for, IC/PBS patients) -> IC/PBS patients (1428ms) What is amitriptyline? injection -0.111111111112 What is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline, is for, injection) -> injection (1303ms) What is amitriptyline? 4 weeks -0.111111111112 What is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline, was administered for, 4 weeks) -> 4 weeks (1367ms) What is amitriptyline? older patients -0.111111111112 What is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (amitriptyline and, are preferred for, older patients) -> older patients (1401ms) What is amitriptyline? The Contraceptive Pill -0.111111111112 What is amitriptyline? -> $x: ($x, do, amitriptyline) -> (The Contraceptive Pill, Does, Amitriptyline Affect) -> The Contraceptive Pill (1367ms) What is amitriptyline? FM -0.111111111112 What is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (amitriptyline, are similarly effective treatments for, FM) -> FM (1350ms) What is amitriptyline? Neuropathic Pain -0.111111111112 What is amitriptyline? -> $x: ($x, do, amitriptyline) -> (Neuropathic Pain, Does, Amitriptyline Work) -> Neuropathic Pain (1367ms) What is amitriptyline? letter -0.111111111112 What is amitriptyline? -> $x: ($x, do, amitriptyline) -> (letter, Does, Amitriptyline Work) -> letter (1438ms) What is amitriptyline? IBS -0.111111111112 What is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Low dose Amitriptyline, is sometimes very effective for, IBS) -> IBS (1350ms) What is amitriptyline? Lilly -0.111111111112 What is amitriptyline? -> $x: ($x, do, amitriptyline) -> (Lilly, did well on, the amitriptyline) -> Lilly (1401ms) What is amitriptyline? preventive purposes -0.111111111112 What is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline, can also be used for, preventive purposes) -> preventive purposes (1428ms) What is amitriptyline? the relief -0.111111111112 What is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline hydrochloride, is prescribed for, the relief) -> the relief (1438ms) What is amitriptyline? depression -0.111111111112 What is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (amitriptyline, was once a common treatment for, depression) -> depression (1438ms) What is amitriptyline? a few weeks -0.111111111112 What is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline, must be taken regularly for, a few weeks) -> a few weeks (1438ms) What is amitriptyline? the patients -0.111111111112 What is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline, is a very good drug for, the patients) -> the patients (1438ms) What is amitriptyline? PHN. -0.111111111112 What is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline, is a standard therapy for, PHN.) -> PHN. (1438ms) What is amitriptyline? cats -0.111111111112 What is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (amitriptyline, has been prescribed for, cats) -> cats (1367ms) What is amitriptyline? falls -0.111111111112 What is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (amitriptyline, may be at increased risk for, falls) -> falls (1428ms) What is amitriptyline? a majority -0.111111111112 What is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline, is usually the first choice for, a majority) -> a majority (1401ms) What is amitriptyline? usually -0.111111111112 What is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline, is prescribed for sleep issues, usually) -> usually (1367ms) What is amitriptyline? treating depression -0.111111111112 What is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline, is used for, treating depression) -> treating depression (1367ms) What is amitriptyline? depressive disorders -0.111111111112 What is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (amitriptyline, can be usually useful for, depressive disorders) -> depressive disorders (1428ms) What is amitriptyline? more than 50 years -0.111111111112 What is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline, has been prescribed for, more than 50 years) -> more than 50 years (1401ms) What is amitriptyline? FMS -0.111111111112 What is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline, is an effective medication for, FMS) -> FMS (1428ms) What is amitriptyline? years -0.111111111112 What is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (trazodone and amitriptyline, have been used for, years) -> years (1367ms) What is amitriptyline? purposes -0.111111111112 What is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline, may also be used for, purposes) -> purposes (1350ms) What is amitriptyline? fibromyalgia -0.111111111112 What is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline, has been used for, fibromyalgia) -> fibromyalgia (1438ms) What is amitriptyline? pain relief -0.111111111112 What is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline, are required for, pain relief) -> pain relief (1428ms) What is amitriptyline? the treatment -0.111111111112 What is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline, is also useful for, the treatment) -> the treatment (1350ms) What is amitriptyline? treatment -0.111111111112 What is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (amitriptyline, have been used for, treatment) -> treatment (1428ms) What is amitriptyline? Elavil -0.111111111112 What is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (> > Amitriptyline, is the generic name for, Elavil) -> Elavil (1428ms) What is amitriptyline? sleep issues -0.111111111112 What is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline, is prescribed for, sleep issues) -> sleep issues (1401ms) What is amitriptyline? factors -0.111111111112 What is amitriptyline? -> $x: (amitriptyline, be for, $x) -> (Amitriptyline, may additionally be utilised for, factors) -> factors (1350ms) What is amitriptyline? I?ve -0.222222222222 What is amitriptyline? -> $x: ($x, found, amitriptyline) -> (I?ve, found, amitriptyline really useful) -> I?ve (1438ms) What is amitriptyline? sertraline -0.222222222222 What is amitriptyline? -> $x: ($x, found, amitriptyline) -> (sertraline, was found to be as effective as, amitriptyline) -> sertraline (1438ms) What is amitriptyline? can i -0.222222222222 What is amitriptyline? -> $x: ($x, found, amitriptyline) -> (can i, find, Amitriptyline online) -> can i (1438ms) What is amitriptyline? Nortriptyline -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Nortriptyline, is a noradrenergic metabolite of, amitriptyline) -> Nortriptyline (1445ms) What is amitriptyline? 79 -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (79, are, amitriptyline tablets price) -> 79 (1445ms) What is amitriptyline? The most widely used TCA -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (The most widely used TCA, is called, amitriptyline) -> The most widely used TCA (1438ms) What is amitriptyline? children and adolescents -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (children and adolescents, is available for, amitriptyline) -> children and adolescents (1444ms) What is amitriptyline? spinal manipulation -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (spinal manipulation, was as effective as, Amitriptyline) -> spinal manipulation (1443ms) What is amitriptyline? The best evidence -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (The best evidence, is for, amitriptyline) -> The best evidence (1442ms) What is amitriptyline? Amytriptyline -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Amytriptyline, is an alternate name for, Amitriptyline) -> Amytriptyline (1445ms) What is amitriptyline? Louis PERIACTIN -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Louis PERIACTIN, was put on, Amitriptyline 10 mg) -> Louis PERIACTIN (1443ms) What is amitriptyline? Amitriptilyne -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Amitriptilyne, is a common misspelling of, amitriptyline) -> Amitriptilyne (1443ms) What is amitriptyline? 7/2/11 10:22 -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (7/2/11 10:22, AM Tracked by, Amitriptyline) -> 7/2/11 10:22 (1445ms) What is amitriptyline? Amytriptiline -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Amytriptiline, is a common misspelling of, amitriptyline) -> Amytriptiline (1445ms) What is amitriptyline? the 7 days -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (the 7 days, am still taking, the amitriptyline) -> the 7 days (1442ms) What is amitriptyline? baseline -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (baseline, was 24 % for, amitriptyline) -> baseline (1444ms) What is amitriptyline? Excessive saliva -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Excessive saliva, can be treated with, amitriptyline) -> Excessive saliva (1445ms) What is amitriptyline? 30 to 50 % -0.222222222223 What is amitriptyline? -> $x: (amitriptyline, be about, $x) -> (amitriptyline, is about, 30 to 50 %) -> 30 to 50 % (1440ms) What is amitriptyline? blood glucose -0.222222222223 What is amitriptyline? -> $x: ($x, can, amitriptyline) -> (blood glucose, can result from, amitriptyline ?s effect) -> blood glucose (1439ms) What is amitriptyline? chronic tension headaches -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (chronic tension headaches, are, Amitriptyline and Mirtazapine) -> chronic tension headaches (1440ms) What is amitriptyline? citalopram -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (citalopram, is probably as efficacious as, amitriptyline) -> citalopram (1444ms) What is amitriptyline? the patient -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (the patient, was given a prescription for, amitriptyline 10 mg) -> the patient (1444ms) What is amitriptyline? self-stimulation -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (self-stimulation, was restored with, amitriptyline) -> self-stimulation (1440ms) What is amitriptyline? Lennox -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Lennox, was quite rightly put on, Amitriptyline) -> Lennox (1444ms) What is amitriptyline? Generic Elavil -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Generic Elavil, is, Amitriptyline) -> Generic Elavil (1440ms) What is amitriptyline? Examples -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Examples, are, amitriptyline) -> Examples (1444ms) What is amitriptyline? vgx rats -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (vgx rats, was also attenuated by, gabapentin and amitriptyline) -> vgx rats (1440ms) What is amitriptyline? sleep -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (sleep, was improved by, both amitriptyline and nabilone) -> sleep (1440ms) What is amitriptyline? Amytripyline -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Amytripyline, is a common misspelling of, amitriptyline) -> Amytripyline (1443ms) What is amitriptyline? nabilone -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (nabilone, was, superior to amitriptyline) -> nabilone (1443ms) What is amitriptyline? PERIACTIN -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (PERIACTIN, has fully been put on, Amitriptyline 10 mg) -> PERIACTIN (1442ms) What is amitriptyline? the same period patient -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (the same period patient, was treated with, AMITRIPTYLINE HCL) -> the same period patient (1445ms) What is amitriptyline? Acupuncture -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Acupuncture, is comparable with, amitriptyline) -> Acupuncture (1443ms) What is amitriptyline? Showings -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Showings, are, amitriptyline hlc) -> Showings (1440ms) What is amitriptyline? Britain -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Britain, is, that sell amitriptyline) -> Britain (1438ms) What is amitriptyline? Neither drug -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Neither drug, are rediscovering, amitriptyline) -> Neither drug (1445ms) What is amitriptyline? the survey sites -0.222222222223 What is amitriptyline? -> $x: ($x, be to, amitriptyline) -> (the survey sites, are free to join, ! Amitriptyline) -> the survey sites (1445ms) What is amitriptyline? TRAMADOL -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (TRAMADOL, was on, Amitriptyline) -> TRAMADOL (1443ms) What is amitriptyline? Tagament -0.222222222223 What is amitriptyline? -> $x: ($x, can, amitriptyline) -> (Tagament, can increase blood levels of, amitriptyline) -> Tagament (1444ms) What is amitriptyline? Examples of Tricyclic antidepressants -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Examples of Tricyclic antidepressants, are, amitriptyline) -> Examples of Tricyclic antidepressants (1444ms) What is amitriptyline? Clomipramine -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Clomipramine, would be worth a trial instead of, Amitriptyline) -> Clomipramine (1438ms) What is amitriptyline? Riboflavin -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Riboflavin, are also recommended along with, amitriptyline) -> Riboflavin (1442ms) What is amitriptyline? 2010 -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (2010, is filed under, Amitriptyline Review) -> 2010 (1444ms) What is amitriptyline? The first drug -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (The first drug, are taking, an overdose of amitriptyline) -> The first drug (1440ms) What is amitriptyline? oxycodone -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (oxycodone, were unaffected by, amitriptyline) -> oxycodone (1445ms) What is amitriptyline? similar side effects -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (similar side effects, was worse with, amitriptyline) -> similar side effects (1442ms) What is amitriptyline? healthy volunteers -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (healthy volunteers, were incubated with, amitriptyline) -> healthy volunteers (1444ms) What is amitriptyline? such medication -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (such medication, is, Amitriptyline Generic Tablets) -> such medication (1442ms) What is amitriptyline? tips -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (tips, were selected for, the Amitriptyline unproblematic) -> tips (1440ms) What is amitriptyline? the few people -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (the few people, was on, Amitriptyline) -> the few people (1445ms) What is amitriptyline? serotonin syndrome -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (serotonin syndrome, have been reported with, amitriptyline) -> serotonin syndrome (1443ms) What is amitriptyline? Amitryptyline -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Amitryptyline, is an alternate name for, Amitriptyline) -> Amitryptyline (1445ms) What is amitriptyline? Haloperidol -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Haloperidol, was as effective as, amitriptyline) -> Haloperidol (1442ms) What is amitriptyline? tension-type headaches -0.222222222223 What is amitriptyline? -> $x: ($x, can, amitriptyline) -> (tension-type headaches, can be treated with, amitriptyline) -> tension-type headaches (1443ms) What is amitriptyline? heroin -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (heroin, was taking, amitriptyline) -> heroin (1445ms) What is amitriptyline? Straightforward Guide -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Straightforward Guide, is, Amitriptyline) -> Straightforward Guide (1445ms) What is amitriptyline? A common protocol -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (A common protocol, is to give, amitriptyline) -> A common protocol (1445ms) What is amitriptyline? problem-solving therapy -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (problem-solving therapy, were as effective as, amitriptyline) -> problem-solving therapy (1445ms) What is amitriptyline? the past few weeks -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (the past few weeks, is a dead-give away as to, the amitriptyline) -> the past few weeks (1442ms) What is amitriptyline? Somebody -0.222222222223 What is amitriptyline? -> $x: ($x, be be, amitriptyline) -> (Somebody, else may be best suited by, 10 mg amitriptyline) -> Somebody (1444ms) What is amitriptyline? outpatients -0.222222222223 What is amitriptyline? -> $x: ($x, be to, amitriptyline) -> (outpatients, is to begin with, 50 to 100 mg amitriptyline) -> outpatients (1445ms) What was it originally called? Ireland 1.555555555546 What was it originally called? -> $x: ($x, be origin of, young) -> (Ireland, is the origin of, the Young family) -> Ireland (840ms) What was it originally called? Spaten 1.333333333329 What was it originally called? -> $x: ($x, be origin of, world) -> (Spaten, is the origin of, the world) -> Spaten (957ms) What was it originally called? the Tao 1.333333333329 What was it originally called? -> $x: ($x, be origin of, world) -> (the Tao, is the origin of, the world) -> the Tao (956ms) What was it originally called? mass consumption 1.333333333329 What was it originally called? -> $x: ($x, be origin of, world) -> (mass consumption, is the origin of, the world) -> mass consumption (1058ms) What was it originally called? Maheswara 1.333333333329 What was it originally called? -> $x: ($x, be origin of, world) -> (Maheswara, is the origin of, the world) -> Maheswara (841ms) What was it originally called? a religionist 1.333333333329 What was it originally called? -> $x: ($x, be origin of, world) -> (a religionist, is the origin of, the world) -> a religionist (957ms) What was it originally called? Bossa Nova 1.333333333329 What was it originally called? -> $x: ($x, be origin of, world) -> (Bossa Nova, is the origin of, integrated world music?one) -> Bossa Nova (956ms) What was it originally called? the Word or Logos 1.333333333329 What was it originally called? -> $x: ($x, be origin of, world) -> (the Word or Logos, is the origin of, the world) -> the Word or Logos (1012ms) What was it originally called? God 1.333333333329 What was it originally called? -> $x: ($x, be origin of, world) -> (God, is the origin of, the world) -> God (1012ms) What was it originally called? the saint 1.333333333329 What was it originally called? -> $x: ($x, be origin of, world) -> (the saint, has been the spiritual origin of, the world culture) -> the saint (1058ms) What was it originally called? RT # RT @smashingmag 1.333333333329 What was it originally called? -> $x: ($x, be origin of, world) -> (RT # RT @smashingmag, are the Origins of, the World) -> RT # RT @smashingmag (1058ms) What was it originally called? the default 1.333333333329 What was it originally called? -> $x: ($x, be origin of, world) -> (the default, is the origin of, world space) -> the default (841ms) What was it originally called? Brahman 1.333333333329 What was it originally called? -> $x: ($x, be origin of, world) -> (Brahman, is the origin of, all the worlds) -> Brahman (957ms) What was it originally called? the water 1.333333333329 What was it originally called? -> $x: ($x, be origin of, world) -> (the water, is the origin of, worlds) -> the water (957ms) What was it originally called? GOOD 1.333333333329 What was it originally called? -> $x: ($x, be origin of, world) -> (GOOD, was the origin of, the now-world-famous Kony video) -> GOOD (1058ms) What was it originally called? ore 1.333333333329 What was it originally called? -> $x: ($x, be origin of, world) -> (ore, was the origin of, World War II) -> ore (957ms) What was it originally called? mystical spirituality 1.333333333329 What was it originally called? -> $x: ($x, be origin of, world) -> (mystical spirituality, is the origin of, all the world religions) -> mystical spirituality (1012ms) What was it originally called? a data based question 1.333333333329 What was it originally called? -> $x: ($x, be origin of, world) -> (a data based question, are the origins of, World War II) -> a data based question (840ms) What was it originally called? Ethiopia 1.333333333329 What was it originally called? -> $x: ($x, be origin of, world) -> (Ethiopia, is the origin of, world) -> Ethiopia (1058ms) What was it originally called? NINTH KHANDA 1 1.333333333329 What was it originally called? -> $x: ($x, be origin of, world) -> (NINTH KHANDA 1, is the origin of, this world) -> NINTH KHANDA 1 (1012ms) What was it originally called? the source 1.333333333329 What was it originally called? -> $x: ($x, be origin of, world) -> (the source, is the origin of, the world) -> the source (841ms) What was it originally called? Answer 1.333333333329 What was it originally called? -> $x: ($x, be origin of, world) -> (Answer, is the origin of, the world) -> Answer (841ms) What was it originally called? no abstract philosophy 1.333333333329 What was it originally called? -> $x: ($x, be origin of, world) -> (no abstract philosophy, is the origin of, the human world) -> no abstract philosophy (1012ms) What was it originally called? Tao 1.333333333329 What was it originally called? -> $x: ($x, be origin of, world) -> (Tao, is the origin of, the eternal world) -> Tao (1012ms) What was it originally called? Fire 1.333333333329 What was it originally called? -> $x: ($x, be origin of, world) -> (Fire, is the Origin of, the worlds) -> Fire (841ms) What was it originally called? any world 1.333333333329 What was it originally called? -> $x: ($x, be origin of, world) -> (any world, is the origin of, all worlds) -> any world (1012ms) What was it originally called? Navan Fort Navan Fort 1.333333333329 What was it originally called? -> $x: ($x, be origin of, world) -> (Navan Fort Navan Fort, is the origin of, a world renowned series) -> Navan Fort Navan Fort (957ms) What was it originally called? Lincoln County 1.333333333329 What was it originally called? -> $x: ($x, be origin of, world) -> (Lincoln County, is the origin of, the world) -> Lincoln County (1058ms) What was it originally called? unsolved mysteries 1.111111111107 What was it originally called? -> $x: ($x, be origin of, earth) -> (unsolved mysteries, is the origin of, Earth) -> unsolved mysteries (1058ms) What was it originally called? The Nameless 1.111111111107 What was it originally called? -> $x: ($x, be origin of, earth) -> (The Nameless, is the origin of, Heaven and Earth) -> The Nameless (1126ms) What was it originally called? no name 1.111111111107 What was it originally called? -> $x: ($x, be origin of, earth) -> (no name, is the origin of, heaven and earth) -> no name (1127ms) What was it originally called? Non-existence 1.111111111107 What was it originally called? -> $x: ($x, be origin of, earth) -> (Non-existence, is the origin of, Heaven and Earth) -> Non-existence (1058ms) What was it originally called? the un-named 1.111111111107 What was it originally called? -> $x: ($x, be origin of, earth) -> (the un-named, is the origin of, heaven and earth) -> the un-named (1127ms) What was it originally called? The nameless 1.111111111107 What was it originally called? -> $x: ($x, be origin of, earth) -> (The nameless, is the origin of, Heaven and Earth) -> The nameless (1126ms) What was it originally called? desire 1.111111111107 What was it originally called? -> $x: ($x, be origin of, earth) -> (desire, is the origin of, Heaven and Earth) -> desire (1127ms) What was it originally called? Volcanoes 1.111111111107 What was it originally called? -> $x: ($x, be origin of, earth) -> (Volcanoes, are probably the origin of, the earth?s atmosphere) -> Volcanoes (1127ms) What was it originally called? human science or reason 1.111111111107 What was it originally called? -> $x: ($x, be origin of, earth) -> (human science or reason, is the origin of, earth) -> human science or reason (1127ms) What was it originally called? a nuisance 0.444444444445 What was it originally called? -> $x: ($x, cause, bonfire) -> (a nuisance, being caused by, the bonfire) -> a nuisance (1160ms) What was it originally called? outdoor trampoline beds 0.444444444445 What was it originally called? -> $x: ($x, cause, bonfire) -> (outdoor trampoline beds, is caused by having, a bonfire right) -> outdoor trampoline beds (1160ms) What was it originally called? smoke 0.444444444445 What was it originally called? -> $x: ($x, cause, bonfire) -> (smoke, caused by, a bonfire) -> smoke (1160ms) What was it originally called? damage 0.444444444445 What was it originally called? -> $x: ($x, cause, bonfire) -> (damage, caused on, Bonfire Night) -> damage (1160ms) What was it originally called? one lawn 0.444444444445 What was it originally called? -> $x: ($x, cause, bonfire) -> (one lawn, caused a bit of, a bonfire) -> one lawn (1160ms) What was it originally called? the burns 0.444444444445 What was it originally called? -> $x: ($x, cause, bonfire) -> (the burns, were caused at, a bonfire party) -> the burns (1160ms) What was it originally called? a smoke nuisance 0.444444444445 What was it originally called? -> $x: ($x, cause, bonfire) -> (a smoke nuisance, caused by, a bonfire) -> a smoke nuisance (1160ms) What was it originally called? the opening door 0.444444444445 What was it originally called? -> $x: ($x, cause, bonfire) -> (the opening door, had caused the combustion of, a bonfire) -> the opening door (1160ms) What was it originally called? Warnings 0.444444444444 What was it originally called? -> $x: ($x, be rule of, originally) -> (Warnings, was listed with rules of " DragonQuest, originally) -> Warnings (1182ms) What was it originally called? the damage 0.33333333333399995 What was it originally called? -> $x: ($x, cause, originally) -> (the damage, caused, originally) -> the damage (1181ms) What was it originally called? Imbalance 0.33333333333399995 What was it originally called? -> $x: ($x, cause, originally) -> (Imbalance, Can Cause, Weight Gain Originally Published) -> Imbalance (1244ms) What was it originally called? the injury 0.33333333333399995 What was it originally called? -> $x: ($x, cause, originally) -> (the injury, caused, originally) -> the injury (1181ms) What was it originally called? the words 0.33333333333399995 What was it originally called? -> $x: ($x, cause, originally) -> (the words, caused, originally) -> the words (1244ms) What was it originally called? time 0.33333333333399995 What was it originally called? -> $x: ($x, cause, originally) -> (time, has caused, those originally blue skies and bodies) -> time (1181ms) What was it originally called? the event 0.33333333333399995 What was it originally called? -> $x: ($x, cause, originally) -> (the event, caused, originally) -> the event (1181ms) What was it originally called? the problem 0.33333333333399995 What was it originally called? -> $x: ($x, cause, originally) -> (the problem, is caused, originally) -> the problem (1181ms) What was it originally called? The conditions 0.33333333333399995 What was it originally called? -> $x: ($x, cause, originally) -> (The conditions, caused, originally) -> The conditions (1181ms) What was it originally called? the problems 0.33333333333399995 What was it originally called? -> $x: ($x, cause, originally) -> (the problems, caused, originally) -> the problems (1244ms) What was it originally called? the fire 0.33333333333399995 What was it originally called? -> $x: ($x, cause, originally) -> (the fire, caused, originally) -> the fire (1181ms) What was it originally called? the factors 0.33333333333399995 What was it originally called? -> $x: ($x, cause, originally) -> (the factors, caused, originally) -> the factors (1244ms) What was it originally called? Cyber attacks 0.33333333332799997 What was it originally called? -> $x: ($x, be originally of, young) -> (Cyber attacks, were originally the province of, geeky young guys) -> Cyber attacks (1244ms) What was it originally called? The Emperor 0.11111111111100003 What was it originally called? -> $x: ($x, be originally of, world) -> (The Emperor, was originally the emperor of, the whole world) -> The Emperor (1244ms) What was it originally called? Progress 0.11111111111100003 What was it originally called? -> $x: ($x, be originally of, world) -> (Progress, was originally part of, the 1964 World) -> Progress (1244ms) What was it originally called? Ormazd and Ahriman 0.11111111111100003 What was it originally called? -> $x: ($x, be originally of, world) -> (Ormazd and Ahriman, were originally part of, a world balance) -> Ormazd and Ahriman (1274ms) What was it originally called? the flight 0.11111111111100003 What was it originally called? -> $x: ($x, be originally of, world) -> (the flight, was originally part of, the World Year) -> the flight (1244ms) What was it originally called? The Wallerfield circuit 0.11111111111100003 What was it originally called? -> $x: ($x, be originally of, world) -> (The Wallerfield circuit, was originally part of, a World War Two) -> The Wallerfield circuit (1274ms) What was it originally called? large amounts -0.0 What was it originally called? -> $x: (bonfire, sound, $x) -> (a bonfire, sounds like, large amounts) -> large amounts (1422ms) What was it originally called? Beam Hollow -0.0 What was it originally called? -> $x: (world, be originally call, $x) -> (World War II, was originally called, Beam Hollow) -> Beam Hollow (1371ms) What was it originally called? Alpha World -0.0 What was it originally called? -> $x: (world, be originally call, $x) -> (ActiveWorlds ActiveWorlds, was originally called, Alpha World) -> Alpha World (1371ms) What was it originally called? Whitehall -0.0 What was it originally called? -> $x: (spring, be originally call, $x) -> (Seven Springs, was originally called, Whitehall) -> Whitehall (1274ms) What was it originally called? MIRROR -0.0 What was it originally called? -> $x: (world, be originally call, $x) -> (The DomWorld model, was originally called, MIRROR) -> MIRROR (1371ms) What was it originally called? pon farr -0.0 What was it originally called? -> $x: (bonfire, sound, $x) -> (the word bonfire, sounds almost exactly the same as, pon farr) -> pon farr (1422ms) What was it originally called? much fun -0.0 What was it originally called? -> $x: (bonfire, sound, $x) -> (A Bonfire, sounds like so, much fun) -> much fun (1422ms) What was it originally called? ?Detox 4 Women? -0.0 What was it originally called? -> $x: (world, be originally call, $x) -> (the Modern World *? *, was originally called, ?Detox 4 Women?) -> ?Detox 4 Women? (1371ms) What was it originally called? Polaris -0.0 What was it originally called? -> $x: ($x, be originally of, canada) -> (Polaris, was originally based out of, Canada years) -> Polaris (1422ms) What was it originally called? the Station -0.0 What was it originally called? -> $x: (spring, be originally call, $x) -> (Cold Spring Harbor, was originally called, the Station) -> the Station (1274ms) What was it originally called? trees -0.0 What was it originally called? -> $x: (bonfire, worship, $x) -> (bonfires, worshipped, trees) -> trees (1274ms) What was it originally called? The Lake -0.0 What was it originally called? -> $x: (spring, be originally call, $x) -> (the spring, was originally to be called, The Lake) -> The Lake (1274ms) What was it originally called? Super Mario Bros. 4 -0.0 What was it originally called? -> $x: (world, be originally call, $x) -> (Super Mario World, was originally called, Super Mario Bros. 4) -> Super Mario Bros. 4 (1371ms) Who was the first king of England? first 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (first, discovered in, England) -> first (3523ms) Who was the first king of England? crop circles 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (crop circles, were discovered in, England) -> crop circles (2465ms) Who was the first king of England? the States 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (the States, have only recently been discovered in, England) -> the States (2465ms) Who was the first king of England? Crop circles 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (Crop circles, were discovered in, England) -> Crop circles (5164ms) Who was the first king of England? Sainey Nyassi 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (Sainey Nyassi, were discovered by, the New England Revolution) -> Sainey Nyassi (5202ms) Who was the first king of England? Charles Edward Banks 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (Charles Edward Banks, discovered a document in, England) -> Charles Edward Banks (3523ms) Who was the first king of England? the Bartholomew Fair 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (the Bartholomew Fair, was discovered in, England) -> the Bartholomew Fair (4994ms) Who was the first king of England? The DVD?s 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (The DVD?s, could be discovered from, England) -> The DVD?s (5115ms) Who was the first king of England? English Countryside Ramble 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (English Countryside Ramble, discover the heart of, England) -> English Countryside Ramble (4953ms) Who was the first king of England? the duck 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (the duck, was discovered in, England) -> the duck (3523ms) Who was the first king of England? silk patchwork 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (silk patchwork, discovered in, England) -> silk patchwork (3473ms) Who was the first king of England? objects 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (objects, are discovered in, England) -> objects (3473ms) Who was the first king of England? the 5th 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (the 5th, discovered in, England and X-rayed) -> the 5th (5037ms) Who was the first king of England? the early dinosaurs 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (the early dinosaurs, were discovered in, England) -> the early dinosaurs (4952ms) Who was the first king of England? Dacentrus 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (Dacentrus, was discovered in, England) -> Dacentrus (5164ms) Who was the first king of England? climbing floribunda 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (climbing floribunda, was discovered in, England) -> climbing floribunda (3523ms) Who was the first king of England? China clays 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (China clays, were discovered in, England) -> China clays (5164ms) Who was the first king of England? the Foxhall peoples 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (the Foxhall peoples, were the last to be discovered in, England) -> the Foxhall peoples (5202ms) Who was the first king of England? a show 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (a show, discover the beauty of, traditional New England holidays) -> a show (4952ms) Who was the first king of England? Finchley 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (Finchley, discovers, his England) -> Finchley (2047ms) Who was the first king of England? the third comet 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (the third comet, discovered in, England) -> the third comet (2465ms) Who was the first king of England? The plant 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (The plant, was discovered in, England) -> The plant (2465ms) Who was the first king of England? a graphite deposit 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (a graphite deposit, was discovered in, northern England) -> a graphite deposit (5115ms) Who was the first king of England? Titanium 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (Titanium, was discovered in, England) -> Titanium (5164ms) Who was the first king of England? Russia 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (Russia, discovered, Germany and England) -> Russia (5037ms) Who was the first king of England? Early Cretaceous period 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (Early Cretaceous period, was first discovered in, England) -> Early Cretaceous period (5115ms) Who was the first king of England? Liposomes 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (Liposomes, were discovered in, England) -> Liposomes (3361ms) Who was the first king of England? cropcircles 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (cropcircles, were discovered all across, England) -> cropcircles (3361ms) Who was the first king of England? Altispinax 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (Altispinax, have been discovered in, England and Germany) -> Altispinax (3361ms) Who was the first king of England? Ginseng 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (Ginseng, was discovered in, western New England) -> Ginseng (5037ms) Who was the first king of England? an uncomprehending crown 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (an uncomprehending crown, discovered in, England) -> an uncomprehending crown (3523ms) Who was the first king of England? a set 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (a set, was discovered in, England) -> a set (5164ms) Who was the first king of England? nature trails 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (nature trails, discover some of, England) -> nature trails (4995ms) Who was the first king of England? Fragmentary 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (Fragmentary, remains were discovered in, England) -> Fragmentary (2047ms) Who was the first king of England? France 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (France, will discover, New England) -> France (5037ms) Who was the first king of England? Fox News ? Suspicious packages 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (Fox News ? Suspicious packages, discovered in, Dubai and England) -> Fox News ? Suspicious packages (3361ms) Who was the first king of England? Ferrari 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (Ferrari, has been discovered in, England) -> Ferrari (5037ms) Who was the first king of England? Glooskap 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (Glooskap, discovered, England) -> Glooskap (3523ms) Who was the first king of England? America 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (America, discovered in, England) -> America (5202ms) Who was the first king of England? a skeleton 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (a skeleton, discovered in, England) -> a skeleton (3523ms) Who was the first king of England? the thoroughly perplexed Crown 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (the thoroughly perplexed Crown, discovered in, England) -> the thoroughly perplexed Crown (2047ms) Who was the first king of England? A hidden basement church/speakeasy 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (A hidden basement church/speakeasy, discovered in, England ?) -> A hidden basement church/speakeasy (2047ms) Who was the first king of England? the phenomenon 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (the phenomenon, was first discovered in, England) -> the phenomenon (4994ms) Who was the first king of England? Hitchcock sketches 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (Hitchcock sketches, was recently discovered in, England) -> Hitchcock sketches (5164ms) Who was the first king of England? Morris 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (Morris, was discovered in, New England) -> Morris (4953ms) Who was the first king of England? the violations 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (the violations, were discovered by, EPA?s New England office) -> the violations (4994ms) Who was the first king of England? A Templar painting 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (A Templar painting, discovered in, England) -> A Templar painting (4952ms) Who was the first king of England? The Bartlett pear 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (The Bartlett pear, was discovered in, England) -> The Bartlett pear (3473ms) Who was the first king of England? a spinosaur dinosaur 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (a spinosaur dinosaur, discovered in, England) -> a spinosaur dinosaur (4953ms) Who was the first king of England? a sufficiently primitive man 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (a sufficiently primitive man, to be discovered in, England) -> a sufficiently primitive man (5115ms) Who was the first king of England? The oldest proto-human bones 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (The oldest proto-human bones, discovered in, England date) -> The oldest proto-human bones (3361ms) Who was the first king of England? such creatures 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (such creatures, have been discovered in, England) -> such creatures (5164ms) Who was the first king of England? China clay 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (China clay, was first discovered in, England) -> China clay (3473ms) Who was the first king of England? more than 5000 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (more than 5000, were discovered in, north-west England) -> more than 5000 (4995ms) Who was the first king of England? a canal cruise 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (a canal cruise, is an ideal way to discover, the real England) -> a canal cruise (2465ms) Who was the first king of England? First 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (First, discovered in, England) -> First (5037ms) Who was the first king of England? shale gas 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (shale gas, have been discovered in, England) -> shale gas (4994ms) Who was the first king of England? the first comet 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (the first comet, discovered in, England) -> the first comet (4994ms) Who was the first king of England? an English yachtsman 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (an English yachtsman, discovered, England) -> an English yachtsman (5202ms) Who was the first king of England? The product 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (The product, was discovered in, England) -> The product (4952ms) Who was the first king of England? Viking Treasure 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (Viking Treasure, Discovered in, England) -> Viking Treasure (3473ms) Who was the first king of England? a curious Skunk # 1 phenotype 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (a curious Skunk # 1 phenotype, was discovered in, England) -> a curious Skunk # 1 phenotype (5202ms) Who was the first king of England? the game soccer 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (the game soccer, was discovered in, England) -> the game soccer (5115ms) Who was the first king of England? a bit 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (a bit, discover the Heart of, England) -> a bit (5202ms) Who was the first king of England? sines 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (sines, was experimentally discovered independently in, England) -> sines (5037ms) Who was the first king of England? the second comet 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (the second comet, discovered at, England) -> the second comet (5115ms) Who was the first king of England? Tracks 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (Tracks, discovered in, England) -> Tracks (3473ms) Who was the first king of England? yew 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (yew, have been discovered in, England) -> yew (2047ms) Who was the first king of England? amazing finds 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (amazing finds, discovered throughout, New England) -> amazing finds (2047ms) Who was the first king of England? Lyme disease 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (Lyme disease, was discovered in, coastal New England) -> Lyme disease (3361ms) Who was the first king of England? a bog mummy 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (a bog mummy, discovered in, England) -> a bog mummy (5202ms) Who was the first king of England? graphite 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (graphite, was discovered in, England) -> graphite (5202ms) Who was the first king of England? Oberkampf 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (Oberkampf, discovered in, England) -> Oberkampf (3361ms) Who was the first king of England? fossils 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (fossils, discovered on, England) -> fossils (5037ms) Who was the first king of England? bird flu 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (bird flu, was discovered in, England) -> bird flu (2465ms) Who was the first king of England? burial grounds 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (burial grounds, have also been discovered in, England) -> burial grounds (5115ms) Who was the first king of England? apparently ancient hominid 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (apparently ancient hominid, remains discovered in, England) -> apparently ancient hominid (2047ms) Who was the first king of England? the largest cave passage 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (the largest cave passage, discovered in, England) -> the largest cave passage (3473ms) Who was the first king of England? several spectacular creatures 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (several spectacular creatures, are discovered across, England) -> several spectacular creatures (5202ms) Who was the first king of England? Ramble 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (Ramble, discover the heart of, England) -> Ramble (5202ms) Who was the first king of England? Xenon 1.666666666671 Who was the first king of England? -> $x: ($x, discover, england) -> (Xenon, was discovered in, England) -> Xenon (5164ms) Who was the first king of England? Clifton 1.555555555563 Who was the first king of England? -> $x: ($x, first think of, england) -> (Clifton, thought first of, England) -> Clifton (5202ms) Who was the first king of England? north London 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (north London, has become the first in, England) -> north London (5333ms) Who was the first king of England? Gamboge 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (Gamboge, was first introduced into, England) -> Gamboge (5349ms) Who was the first king of England? The billy club 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (The billy club, was first introduced in, England) -> The billy club (5333ms) Who was the first king of England? Siamese 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (Siamese, were first introduced into, England) -> Siamese (5325ms) Who was the first king of England? Galanthus nivalis 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (Galanthus nivalis, was first introduced into, England) -> Galanthus nivalis (5316ms) Who was the first king of England? Bloomer 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (Bloomer, had first played for, England) -> Bloomer (5325ms) Who was the first king of England? ABBA 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (ABBA, may have been the first CD in, England) -> ABBA (5357ms) Who was the first king of England? Dec & 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (Dec &, have had first t, England) -> Dec & (5316ms) Who was the first king of England? the railroad 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (the railroad, was first introduced in, England) -> the railroad (5349ms) Who was the first king of England? David Luiz 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (David Luiz, has enjoyed a rocky first year in, England) -> David Luiz (5357ms) Who was the first king of England? Garlic mustard 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (Garlic mustard, was first introduced into, New England) -> Garlic mustard (5325ms) Who was the first king of England? propeller 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (propeller, had first been fitted in, Miss England) -> propeller (5325ms) Who was the first king of England? Goalkeeper Joe Hart 1.444444444452 Who was the first king of England? -> $x: ($x, first start, england) -> (Goalkeeper Joe Hart, made his first start for, England) -> Goalkeeper Joe Hart (5357ms) Who was the first king of England? the suburbs 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (the suburbs, were introduced first in, England) -> the suburbs (5316ms) Who was the first king of England? Hereditary surnames 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (Hereditary surnames, were first introduced into, England) -> Hereditary surnames (5308ms) Who was the first king of England? tuition 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (tuition, was first introduced in, England) -> tuition (5357ms) Who was the first king of England? Haringey Council 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (Haringey Council, has become the first authority in, England) -> Haringey Council (5333ms) Who was the first king of England? Dexter cattle 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (Dexter cattle, were first introduced into, England) -> Dexter cattle (5325ms) Who was the first king of England? a coin 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (a coin, had first pick of, England?s games) -> a coin (5357ms) Who was the first king of England? The long-case clock 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (The long-case clock, was first introduced into, England) -> The long-case clock (5316ms) Who was the first king of England? broadsides 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (broadsides, were first introduced in, England) -> broadsides (5341ms) Who was the first king of England? Dad 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (Dad, had brought the first book back from, England) -> Dad (5357ms) Who was the first king of England? Theo Walcott 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (Theo Walcott, may have been taking the first steps into, England) -> Theo Walcott (5316ms) Who was the first king of England? De Gea 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (De Gea, has endured a difficult first season in, England) -> De Gea (5316ms) Who was the first king of England? the latest big stars 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (the latest big stars, have hit first in, England) -> the latest big stars (5357ms) Who was the first king of England? the Lamas 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (the Lamas, had first gone to, England) -> the Lamas (5357ms) Who was the first king of England? mince pies 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (mince pies, were first introduced in, England) -> mince pies (5349ms) Who was the first king of England? Vanilla flavour 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (Vanilla flavour, was first introduced to, France and England) -> Vanilla flavour (5341ms) Who was the first king of England? Scott Carson 1.444444444452 Who was the first king of England? -> $x: ($x, first start, england) -> (Scott Carson, will get his first competitive start for, England) -> Scott Carson (5308ms) Who was the first king of England? Siamese cats 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (Siamese cats, were first introduced into, England) -> Siamese cats (5349ms) Who was the first king of England? Scott 1.444444444452 Who was the first king of England? -> $x: ($x, first start, england) -> (Scott, first started, New England Multimedia) -> Scott (5325ms) Who was the first king of England? Ices 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (Ices, were first introduced into, England) -> Ices (5349ms) Who was the first king of England? a practice 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (a practice, first introduced into, England) -> a practice (5333ms) Who was the first king of England? the vine 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (the vine, was first introduced to, England) -> the vine (5341ms) Who was the first king of England? Little owls 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (Little owls, were first introduced into, England) -> Little owls (5325ms) Who was the first king of England? Tyndale 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (Tyndale, had first given, England) -> Tyndale (5325ms) Who was the first king of England? Iguanodon 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (Iguanodon, remains had first been found in, southern England) -> Iguanodon (5308ms) Who was the first king of England? La Traviata 1.444444444452 Who was the first king of England? -> $x: ($x, first perform, england) -> (La Traviata, was first performed in, England) -> La Traviata (5316ms) Who was the first king of England? the Jews 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (the Jews, had first taken over, England) -> the Jews (5357ms) Who was the first king of England? Coaches 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (Coaches, were first introduced into, England) -> Coaches (5316ms) Who was the first king of England? a nice idea 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (a nice idea, have my first proper look at, England) -> a nice idea (5357ms) Who was the first king of England? ice cream 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (ice cream, was first introduced in, England) -> ice cream (5308ms) Who was the first king of England? ingenious devices 1.444444444452 Who was the first king of England? -> $x: ($x, have invent, england) -> (ingenious devices, have been invented in, England) -> ingenious devices (5333ms) Who was the first king of England? The North East 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (The North East, has become the first region in, England) -> The North East (5333ms) Who was the first king of England? The harbinger 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (The harbinger, first introduced into, England) -> The harbinger (5341ms) Who was the first king of England? Twenty 20 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (Twenty 20, was first introduced in, England) -> Twenty 20 (5325ms) Who was the first king of England? a shooting party 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (a shooting party, has become the first person in, England) -> a shooting party (5341ms) Who was the first king of England? Hydrastis Canadensis 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (Hydrastis Canadensis, was first introduced into, England) -> Hydrastis Canadensis (5308ms) Who was the first king of England? one year Hops 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (one year Hops, were first introduced into, England) -> one year Hops (5308ms) Who was the first king of England? Sting 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (Sting, has recently bought his first home in, England) -> Sting (5357ms) Who was the first king of England? Sparkling champagne 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (Sparkling champagne, was first introduced into, England) -> Sparkling champagne (5341ms) Who was the first king of England? chair seating 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (chair seating, was first introduced into, England) -> chair seating (5349ms) Who was the first king of England? the continent 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (the continent, may have first entered, England) -> the continent (5357ms) Who was the first king of England? a ?Drum Head ? 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (a ?Drum Head ?, was first introduced in, England) -> a ?Drum Head ? (5341ms) Who was the first king of England? Engels 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (Engels, had first come to, England) -> Engels (5341ms) Who was the first king of England? prosecution 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (prosecution, was first introduced in, England) -> prosecution (5325ms) Who was the first king of England? the 8th Air Force 1.444444444452 Who was the first king of England? -> $x: ($x, first start, england) -> (the 8th Air Force, first got started here in, England) -> the 8th Air Force (5349ms) Who was the first king of England? The sport 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (The sport, was first introduced in, New England) -> The sport (5316ms) Who was the first king of England? The Industrial Revolution 1.444444444452 Who was the first king of England? -> $x: ($x, first start, england) -> (The Industrial Revolution, first started in, England) -> The Industrial Revolution (5341ms) Who was the first king of England? the Royal College 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (the Royal College, had been the man first in, England) -> the Royal College (5325ms) Who was the first king of England? the Bb , G# and short F 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (the Bb , G# and short F, had first been used in, England) -> the Bb , G# and short F (5333ms) Who was the first king of England? construction 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (construction, first introduced into, England) -> construction (5349ms) Who was the first king of England? confection 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (confection, was first introduced to, England) -> confection (5316ms) Who was the first king of England? Prentice Mulford 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (Prentice Mulford, was first introduced to, England) -> Prentice Mulford (5308ms) Who was the first king of England? the American colonies 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (the American colonies, had to be shipped first to, England) -> the American colonies (5341ms) Who was the first king of England? families 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (families, had first been accepted in to, England) -> families (5308ms) Who was the first king of England? the brand 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (the brand, had first arrived in, England) -> the brand (5308ms) Who was the first king of England? Brighton and Hove Council 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (Brighton and Hove Council, has just become the first in, England) -> Brighton and Hove Council (5357ms) Who was the first king of England? Tamers 1.444444444452 Who was the first king of England? -> $x: ($x, first start, england) -> (Tamers, first started airing in, England) -> Tamers (5333ms) Who was the first king of England? Medical licensure 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (Medical licensure, was first introduced in, England) -> Medical licensure (5316ms) Who was the first king of England? silver pennies 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (silver pennies, were first introduced into, England) -> silver pennies (5349ms) Who was the first king of England? John 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (John, had become the most popular first name in, England) -> John (5202ms) Who was the first king of England? Dunnes Stores 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (Dunnes Stores, had opened its first stores in, England) -> Dunnes Stores (5308ms) Who was the first king of England? the Siamese breed 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (the Siamese breed, was first introduced in, England) -> the Siamese breed (5357ms) Who was the first king of England? King 1.444444444452 Who was the first king of England? -> $x: ($x, first start, england) -> (King, started his first game for, England) -> King (5349ms) Who was the first king of England? the breed 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (the breed, was first introduced into, England) -> the breed (5308ms) Who was the first king of England? George Lowe 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (George Lowe, has taken his first steps to, England stardom) -> George Lowe (5349ms) Who was the first king of England? tea 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (tea, was first introduced in, England) -> tea (5349ms) Who was the first king of England? diving 1.444444444452 Who was the first king of England? -> $x: ($x, first start, england) -> (diving, was first started in, England) -> diving (5333ms) Who was the first king of England? Dickson 1.444444444452 Who was the first king of England? -> $x: ($x, first start, england) -> (Dickson, are making their first starts for, England) -> Dickson (5316ms) Who was the first king of England? Tannh?user 1.444444444452 Who was the first king of England? -> $x: ($x, first perform, england) -> (Tannh?user, was first performed in, England) -> Tannh?user (5333ms) Who was the first king of England? Masonry 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (Masonry, was certainly first introduced into, England) -> Masonry (5333ms) Who was the first king of England? The tourists 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (The tourists, have recorded their first win over, England) -> The tourists (5316ms) Who was the first king of England? Scholes 1.444444444452 Who was the first king of England? -> $x: ($x, first start, england) -> (Scholes, got his first start for, England) -> Scholes (5333ms) Who was the first king of England? smoking 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (smoking, was first introduced in, England) -> smoking (5341ms) Who was the first king of England? life insurance 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (life insurance, was first introduced in, England) -> life insurance (5316ms) Who was the first king of England? Godschalls 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (Godschalls, had first come to, southern England) -> Godschalls (5325ms) Who was the first king of England? William 1.444444444452 Who was the first king of England? -> $x: ($x, marry first, england) -> (William, married twice first in, England) -> William (5357ms) Who was the first king of England? Cigarettes 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (Cigarettes, were first introduced to, England) -> Cigarettes (5341ms) Who was the first king of England? the phrase 1.444444444452 Who was the first king of England? -> $x: ($x, have invent, england) -> (the phrase, cannot have been invented in, England) -> the phrase (5316ms) Who was the first king of England? haggis 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (haggis, may first have been eaten in, England) -> haggis (5333ms) Who was the first king of England? June 2003 1.444444444452 Who was the first king of England? -> $x: ($x, first start, england) -> (June 2003, started his first game for, England) -> June 2003 (5333ms) Who was the first king of England? The Lhasa 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (The Lhasa, was first introduced to, England) -> The Lhasa (5308ms) Who was the first king of England? Don Giovanni 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (Don Giovanni, was first introduced into, England) -> Don Giovanni (5308ms) Who was the first king of England? The Little Pea 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (The Little Pea, had a brilliant first season in, England) -> The Little Pea (5349ms) Who was the first king of England? Benedict 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (Benedict, was the first to introduce into, England) -> Benedict (5308ms) Who was the first king of England? strikes 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (strikes, was first had in, England and Scotland) -> strikes (5341ms) Who was the first king of England? Horse chestnut trees 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (Horse chestnut trees, were first introduced to, England) -> Horse chestnut trees (5341ms) Who was the first king of England? The Norwich Canary 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (The Norwich Canary, was first introduced into, England) -> The Norwich Canary (5325ms) Who was the first king of England? the North East 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (the North East, have become the first in, England) -> the North East (5316ms) Who was the first king of England? legal insanity 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (legal insanity, was first introduced in, England) -> legal insanity (5365ms) Who was the first king of England? German Palatines 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (German Palatines, had first emigrated to, England) -> German Palatines (5349ms) Who was the first king of England? the tree 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (the tree, was first introduced into, England) -> the tree (5349ms) Who was the first king of England? The breed 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (The breed, was first introduced to, England) -> The breed (5325ms) Who was the first king of England? mahogany plantation 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (mahogany plantation, was first introduced into, England) -> mahogany plantation (5341ms) Who was the first king of England? warm beer 1.444444444452 Who was the first king of England? -> $x: ($x, have invent, england) -> (warm beer, had therefore been unable to invent, England) -> warm beer (5325ms) Who was the first king of England? the play 1.444444444452 Who was the first king of England? -> $x: ($x, first perform, england) -> (the play, was first performed in, England) -> the play (5357ms) Who was the first king of England? the word 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (the word, may first have appeared in, England) -> the word (5333ms) Who was the first king of England? civil registration 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (civil registration, was first introduced in, England and Wales) -> civil registration (5341ms) Who was the first king of England? Gin 1.444444444452 Who was the first king of England? -> $x: ($x, have first, england) -> (Gin, had first emerged in, England) -> Gin (5349ms) Who was the first king of England? the monocle 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (the monocle, was first introduced in, England) -> the monocle (5365ms) Who was the first king of England? a new treatment 1.444444444452 Who was the first king of England? -> $x: ($x, have invent, england) -> (a new treatment, had been invented in, England) -> a new treatment (5333ms) Who was the first king of England? a unique cotton fabric 1.444444444452 Who was the first king of England? -> $x: ($x, first introduce, england) -> (a unique cotton fabric, first introduced into, England) -> a unique cotton fabric (5325ms) Who was the first king of England? Lear 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (Lear, [is] king of, England) -> Lear (5387ms) Who was the first king of England? The Lionheart 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (The Lionheart, is King of, England) -> The Lionheart (5395ms) Who was the first king of England? the Eighth 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (the Eighth, was king of, England) -> the Eighth (5388ms) Who was the first king of England? the general public 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (the general public, was the King of, England) -> the general public (5365ms) Who was the first king of England? the Battle 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (the Battle, was crowned King of, England) -> the Battle (5395ms) Who was the first king of England? 978 Ethelred 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (978 Ethelred, was crowned king of, England) -> 978 Ethelred (5395ms) Who was the first king of England? Henry Tudor 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (Henry Tudor, was proclaimed King of, England) -> Henry Tudor (5395ms) Who was the first king of England? the conquest 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (the conquest, was crowned King of, England) -> the conquest (5373ms) Who was the first king of England? Harold 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (Harold, [is] the king of, England) -> Harold (5388ms) Who was the first king of England? Edward 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (Edward, [is] king of, England) -> Edward (5387ms) Who was the first king of England? The very next day Harold 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (The very next day Harold, was crowned king of, England) -> The very next day Harold (5373ms) Who was the first king of England? Edgar 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (Edgar, [is] king of, England) -> Edgar (5380ms) Who was the first king of England? George III 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (George III, is King of, England) -> George III (5402ms) Who was the first king of England? George VI 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (George VI, was king of, England) -> George VI (5395ms) Who was the first king of England? Edward V 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (Edward V, was king of, England) -> Edward V (5395ms) Who was the first king of England? God 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (God, [is] king of, England) -> God (5387ms) Who was the first king of England? HISTORY 1327 Edward III 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (HISTORY 1327 Edward III, is coronated King of, England) -> HISTORY 1327 Edward III (5387ms) Who was the first king of England? Richard III 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (Richard III, was crowned King of, England) -> Richard III (5402ms) Who was the first king of England? Edward II 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (Edward II, was became king of, England) -> Edward II (5402ms) Who was the first king of England? World history 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (World history, was the kings of, England) -> World history (5365ms) Who was the first king of England? Uther Pendragon 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (Uther Pendragon, was king of, England) -> Uther Pendragon (5402ms) Who was the first king of England? whoever 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (whoever, was King of, England) -> whoever (5373ms) Who was the first king of England? Edward VII 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (Edward VII, was King of, England) -> Edward VII (5387ms) Who was the first king of England? the Dane 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (the Dane, [is] king of, England) -> the Dane (5395ms) Who was the first king of England? Lancaster 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (Lancaster, [is] king of, England) -> Lancaster (5373ms) Who was the first king of England? Lackland 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (Lackland, [is] king of, England) -> Lackland (5380ms) Who was the first king of England? George V 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (George V, was crowned King of, England) -> George V (5395ms) Who was the first king of England? Richard 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (Richard, [is] king of, England) -> Richard (5380ms) Who was the first king of England? 19 November 1600 ? 30 January 1649 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (19 November 1600 ? 30 January 1649, was King of, England) -> 19 November 1600 ? 30 January 1649 (5365ms) Who was the first king of England? Charles II 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (Charles II, was King of, England) -> Charles II (5402ms) Who was the first king of England? Prince William 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (Prince William, be King of, England) -> Prince William (5365ms) Who was the first king of England? Edward IV 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (Edward IV, was crowned king of, England) -> Edward IV (5365ms) Who was the first king of England? Ethelred 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (Ethelred, was king of, England) -> Ethelred (5380ms) Who was the first king of England? one day 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (one day, be King of, England) -> one day (5380ms) Who was the first king of England? the Confessor 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (the Confessor, [is] king of, England) -> the Confessor (5387ms) Who was the first king of England? Eadwig 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (Eadwig, [is] king of, England) -> Eadwig (5365ms) Who was the first king of England? Stephen 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (Stephen, [is] king of, England) -> Stephen (5395ms) Who was the first king of England? the Lionhearted 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (the Lionhearted, [is] king of, England) -> the Lionhearted (5388ms) Who was the first king of England? England Edward IV 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (England Edward IV, was King of, England) -> England Edward IV (5380ms) Who was the first king of England? the game players 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (the game players, will be king of, England) -> the game players (5395ms) Who was the first king of England? Athelstan 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (Athelstan, [is] the king of, England) -> Athelstan (5380ms) Who was the first king of England? Egbert 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (Egbert, [is] king of, England) -> Egbert (5402ms) Who was the first king of England? King Henry II 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (King Henry II, was the king of, England) -> King Henry II (5373ms) Who was the first king of England? Arthur 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (Arthur, was King of, England) -> Arthur (5380ms) Who was the first king of England? Henry III 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (Henry III, is crowned King of, England) -> Henry III (5365ms) Who was the first king of England? Canute 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (Canute, [is] king of, England) -> Canute (5402ms) Who was the first king of England? the head 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (the head, is the king of, England) -> the head (5365ms) Who was the first king of England? the Longshanks 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (the Longshanks, [is] king of, England) -> the Longshanks (5380ms) Who was the first king of England? William III 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (William III, was the king of, England) -> William III (5380ms) Who was the first king of England? the 8th 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (the 8th, was King of, England) -> the 8th (5380ms) Who was the first king of England? Norway 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (Norway, then is King of, England) -> Norway (5402ms) Who was the first king of England? the Lionheart 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (the Lionheart, [is] the king of, England) -> the Lionheart (5388ms) Who was the first king of England? Henry II 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (Henry II, was king of, England) -> Henry II (5380ms) Who was the first king of England? Alfred 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (Alfred, [is] king of, England) -> Alfred (5387ms) Who was the first king of England? a wretched and peevish fellow 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (a wretched and peevish fellow, is this king of, England) -> a wretched and peevish fellow (5395ms) Who was the first king of England? One player 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (One player, is the king of, England) -> One player (5395ms) Who was the first king of England? the Unready 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (the Unready, was King of, England) -> the Unready (5373ms) Who was the first king of England? King James 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (King James, was the king of, England) -> King James (5395ms) Who was the first king of England? James 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (James, [is] king of, England) -> James (5402ms) Who was the first king of England? a boy 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (a boy, was king of, England) -> a boy (5380ms) Who was the first king of England? Normandy 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (Normandy, is king of, England) -> Normandy (5365ms) Who was the first king of England? Henry 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (Henry, [is] king of, England) -> Henry (5402ms) Who was the first king of England? Israel and Jesus 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (Israel and Jesus, was king of, England) -> Israel and Jesus (5373ms) Who was the first king of England? Philip 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (Philip, was king of, England) -> Philip (5373ms) Who was the first king of England? the Great 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (the Great, is king of, England) -> the Great (5395ms) Who was the first king of England? Scots 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (Scots, [is] became king of, England) -> Scots (5387ms) Who was the first king of England? Orange 1.222222222214 Who was the first king of England? -> $x: ($x, be king of, england) -> (Orange, [is] became king of, England) -> Orange (5373ms) Who was the first king of England? political affiliation 1.000000000005 Who was the first king of England? -> $x: ($x, be found of, england) -> (political affiliation, found to be representative of, England) -> political affiliation (5402ms) Who was the first king of England? Darlington 1.000000000005 Who was the first king of England? -> $x: ($x, be found of, england) -> (Darlington, can be found two of, England) -> Darlington (5402ms) Who was the first king of England? The bubbly elixir 1.000000000005 Who was the first king of England? -> $x: ($x, be found of, england) -> (The bubbly elixir, is hard to find outside of, New England) -> The bubbly elixir (5402ms) Who was the first king of England? Tim Bresnan 1.000000000005 Who was the first king of England? -> $x: ($x, be found of, england) -> (Tim Bresnan, could be the find of, England?s winter) -> Tim Bresnan (5402ms) Who was the first king of England? free and open 1.0000000000040001 Who was the first king of England? -> $x: ($x, be first kind of, england) -> (free and open, is a first-of-a-kind for, northern New England) -> free and open (5408ms) Who was the first king of England? facility 1.0000000000040001 Who was the first king of England? -> $x: ($x, be first kind of, england) -> (facility, is the first-of-its-kind in, the New England region) -> facility (5408ms) Who was the first king of England? ratite birds 0.999999999999 Who was the first king of England? -> $x: ($x, discover, south america) -> (ratite birds, were discovered in, South America) -> ratite birds (5408ms) Who was the first king of England? Platinum 0.999999999999 Who was the first king of England? -> $x: ($x, discover, south america) -> (Platinum, was discovered in, South America) -> Platinum (5422ms) Who was the first king of England? the path 0.999999999999 Who was the first king of England? -> $x: ($x, discover, south america) -> (the path, discover the wild heart of, South America) -> the path (5408ms) Who was the first king of England? diamonds 0.999999999999 Who was the first king of England? -> $x: ($x, discover, south america) -> (diamonds, were discovered in, South America) -> diamonds (5408ms) Who was the first king of England? Milan 1500.4.22 Cabral 0.999999999999 Who was the first king of England? -> $x: ($x, discover, south america) -> (Milan 1500.4.22 Cabral, discovered, South America) -> Milan 1500.4.22 Cabral (5408ms) Who was the first king of England? the same 0.999999999999 Who was the first king of England? -> $x: ($x, discover, south america) -> (the same, had been discovered in, South America) -> the same (5415ms) Who was the first king of England? large snakes 0.999999999999 Who was the first king of England? -> $x: ($x, discover, south america) -> (large snakes, have been discovered in, South America) -> large snakes (5422ms) Who was the first king of England? A new small manatee 0.999999999999 Who was the first king of England? -> $x: ($x, discover, south america) -> (A new small manatee, has been discovered in, South America) -> A new small manatee (5415ms) Who was the first king of England? Spanish missionaries 0.999999999999 Who was the first king of England? -> $x: ($x, discover, south america) -> (Spanish missionaries, discovered the flower in, South America) -> Spanish missionaries (5408ms) Who was the first king of England? Amerigo Vespucci 0.999999999999 Who was the first king of England? -> $x: ($x, discover, south america) -> (Amerigo Vespucci, discovered, South America) -> Amerigo Vespucci (5415ms) Who was the first king of England? a small moth 0.999999999999 Who was the first king of England? -> $x: ($x, discover, south america) -> (a small moth, was discovered in, South America) -> a small moth (5415ms) Who was the first king of England? diesel fuel 0.999999999999 Who was the first king of England? -> $x: ($x, discover, south america) -> (diesel fuel, has been discovered in, South America) -> diesel fuel (5408ms) Who was the first king of England? North America 0.999999999999 Who was the first king of England? -> $x: ($x, discover, south america) -> (North America, is now discovering new places in, South America) -> North America (5415ms) Who was the first king of England? A brightly coloured bird 0.999999999999 Who was the first king of England? -> $x: ($x, discover, south america) -> (A brightly coloured bird, has been discovered in, South America) -> A brightly coloured bird (5415ms) Who was the first king of England? Britain 0.999999999999 Who was the first king of England? -> $x: ($x, discover, south america) -> (Britain, had discovered, South Americas gold and silver) -> Britain (5415ms) Who was the first king of England? Only the third raptor 0.999999999999 Who was the first king of England? -> $x: ($x, discover, south america) -> (Only the third raptor, to be discovered in, South America) -> Only the third raptor (5408ms) Who was the first king of England? Anthurium andreanum 0.999999999999 Who was the first king of England? -> $x: ($x, discover, south america) -> (Anthurium andreanum, was actually discovered in, South America) -> Anthurium andreanum (5422ms) Who was the first king of England? the largest theropod 0.999999999999 Who was the first king of England? -> $x: ($x, discover, south america) -> (the largest theropod, to be discovered in, South America) -> the largest theropod (5422ms) Who was the first king of England? hes 0.999999999999 Who was the first king of England? -> $x: ($x, discover, south america) -> (hes, discovered in, South America) -> hes (5415ms) Who was the first king of England? Chihuahuas 0.999999999999 Who was the first king of England? -> $x: ($x, discover, south america) -> (Chihuahuas, have been discovered in, South America) -> Chihuahuas (5415ms) Who was the first king of England? The araucana hen 0.999999999999 Who was the first king of England? -> $x: ($x, discover, south america) -> (The araucana hen, was first discovered in, south america) -> The araucana hen (5408ms) Who was the first king of England? Cabral 0.999999999999 Who was the first king of England? -> $x: ($x, discover, south america) -> (Cabral, discovered, South America) -> Cabral (5422ms) Who was the first king of England? 15mm short-case pinfires 0.999999999999 Who was the first king of England? -> $x: ($x, discover, south america) -> (15mm short-case pinfires, were discovered in, South America) -> 15mm short-case pinfires (5408ms) Who was the first king of England? Father 0.999999999999 Who was the first king of England? -> $x: ($x, discover, south america) -> (Father, discovered something amazing recently in, South America) -> Father (5422ms) Who was the first king of England? East Africa 1500 Cabral 0.999999999999 Who was the first king of England? -> $x: ($x, discover, south america) -> (East Africa 1500 Cabral, discovered, South America) -> East Africa 1500 Cabral (5422ms) Who was the first king of England? Columbus 0.999999999999 Who was the first king of England? -> $x: ($x, discover, south america) -> (Columbus, discovering, South America) -> Columbus (5422ms) Who was the first king of England? The Araucana hen 0.999999999999 Who was the first king of England? -> $x: ($x, discover, south america) -> (The Araucana hen, was discovered in, South America) -> The Araucana hen (5415ms) Who was the first king of England? Sp platina 0.999999999999 Who was the first king of England? -> $x: ($x, discover, south america) -> (Sp platina, discovered in, south america) -> Sp platina (5422ms) Who was the first king of England? Spain and Portugal 0.999999999999 Who was the first king of England? -> $x: ($x, discover, south america) -> (Spain and Portugal, first discovered, South America) -> Spain and Portugal (5422ms) Who was the first king of England? Portugal 1500 Cabral 0.999999999999 Who was the first king of England? -> $x: ($x, discover, south america) -> (Portugal 1500 Cabral, discovered, South America) -> Portugal 1500 Cabral (5415ms) Who was the first king of England? Columbus 1500 Portuguese Cabral 0.999999999999 Who was the first king of England? -> $x: ($x, discover, south america) -> (Columbus 1500 Portuguese Cabral, discovered, South America) -> Columbus 1500 Portuguese Cabral (5408ms) Who was the first king of England? the metal 0.999999999999 Who was the first king of England? -> $x: ($x, discover, south america) -> (the metal, were discovered in, South America) -> the metal (5415ms) Who was the first king of England? a person 0.999999999999 Who was the first king of England? -> $x: ($x, discover, south america) -> (a person, discover inside, South america) -> a person (5415ms) Who was the first king of England? Vespucci 0.999999999999 Who was the first king of England? -> $x: ($x, discover, south america) -> (Vespucci, was the first to discover, South America) -> Vespucci (5408ms) Who was the first king of England? the capture and trial 0.999999999999 Who was the first king of England? -> $x: ($x, discover, south america) -> (the capture and trial, discovered still alive in, South America) -> the capture and trial (5408ms) Who was the first king of England? Hokan 0.999999999999 Who was the first king of England? -> $x: ($x, discover, south america) -> (Hokan, Discovered in, South America) -> Hokan (5415ms) Who was the first king of England? coca 0.999999999999 Who was the first king of England? -> $x: ($x, discover, south america) -> (coca, had been discovered in, South America) -> coca (5422ms) Who was the first king of England? The Portuguese 0.999999999999 Who was the first king of England? -> $x: ($x, discover, south america) -> (The Portuguese, discovered, eastern South America) -> The Portuguese (5408ms) Who was the first king of England? Mer 0.888888888896 Who was the first king of England? -> $x: ($x, be origin of, england) -> (Mer, is the origin of, the epithet Merry England) -> Mer (5422ms) Who was the first king of England? 942 0.888888888895 Who was the first king of England? -> $x: ($x, be history of, england) -> (942, is history of, England) -> 942 (5422ms) Who was the first king of England? York 0.888888888895 Who was the first king of England? -> $x: ($x, be history of, england) -> (York, is the history of, England?) -> York (5428ms) Who was the first king of England? the bulk 0.888888888895 Who was the first king of England? -> $x: ($x, be history of, england) -> (the bulk, was called the History of, England) -> the bulk (5428ms) Who was the first king of England? a thousand persons 0.888888888895 Who was the first king of England? -> $x: ($x, be history of, england) -> (a thousand persons, is called the history of, England) -> a thousand persons (5428ms) Who was the first king of England? The evening?s program 0.888888888895 Who was the first king of England? -> $x: ($x, be history of, england) -> (The evening?s program, will be A Haunted History of, New England) -> The evening?s program (5422ms) Who was the first king of England? the English People 0.888888888895 Who was the first king of England? -> $x: ($x, be history of, england) -> (the English People, is really a history of, England) -> the English People (5428ms) Who was the first king of England? last 0.888888888895 Who was the first king of England? -> $x: ($x, be history of, england) -> (last, is a history of, England) -> last (5428ms) Who was the first king of England? Hume?s most successful work 0.888888888895 Who was the first king of England? -> $x: ($x, be history of, england) -> (Hume?s most successful work, was History of, England) -> Hume?s most successful work (5428ms) Who was the first king of England? Portchester 0.888888888895 Who was the first king of England? -> $x: ($x, be history of, england) -> (Portchester, can be considered a complete history of, England) -> Portchester (5428ms) Who was the first king of England? historians 0.888888888895 Who was the first king of England? -> $x: ($x, be history of, england) -> (historians, is the financial history of, England) -> historians (5428ms) Who was the first king of England? 28 Ingram 0.888888888895 Who was the first king of England? -> $x: ($x, be history of, england) -> (28 Ingram, is the classic history of, England) -> 28 Ingram (5428ms) Who was the first king of England? English place?names 0.888888888895 Who was the first king of England? -> $x: ($x, be history of, england) -> (English place?names, is the history of, England) -> English place?names (5422ms) Who was the first king of England? The best parts 0.888888888895 Who was the first king of England? -> $x: ($x, be history of, england) -> (The best parts, may be the history of, New England fishing) -> The best parts (5428ms) Who was the first king of England? Tol Eressea 0.888888888895 Who was the first king of England? -> $x: ($x, be history of, england) -> (Tol Eressea, was the history of, England) -> Tol Eressea (5428ms) Who was the first king of England? Bruce Springsteen 0.8888888888940001 Who was the first king of England? -> $x: ($x, first live in, england) -> (Bruce Springsteen, does his first live performance in, England) -> Bruce Springsteen (5434ms) Who was the first king of England? Laurier 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (Laurier, made his first visit to, England) -> Laurier (5440ms) Who was the first king of England? Johnson 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (Johnson, made his first appearance for, England) -> Johnson (5434ms) Who was the first king of England? the traditional type 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (the traditional type, were first made in, England) -> the traditional type (5445ms) Who was the first king of England? the choir 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (the choir, made its first international tour of, England) -> the choir (5440ms) Who was the first king of England? George 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (George, was probably first made well known in, England) -> George (5444ms) Who was the first king of England? captain James Cook 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (captain James Cook, made the first claim for, England) -> captain James Cook (5440ms) Who was the first king of England? London 0.8888888888940001 Who was the first king of England? -> $x: ($x, first live in, england) -> (London, spent my first five years living in, England and Rome) -> London (5445ms) Who was the first king of England? Europe blogs 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (Europe blogs, are first made in, England) -> Europe blogs (5428ms) Who was the first king of England? White paper 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (White paper, was first made in, England) -> White paper (5428ms) Who was the first king of England? the Astaires 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (the Astaires, made their first trip to, England) -> the Astaires (5434ms) Who was the first king of England? Rockingham 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (Rockingham, was first made in, England and) -> Rockingham (5434ms) Who was the first king of England? furniture 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (furniture, was first made popular in, England) -> furniture (5445ms) Who was the first king of England? Ray Parer 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (Ray Parer, made the first single-engined flight from, England) -> Ray Parer (5435ms) Who was the first king of England? Andy 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (Andy, made his first trip to, England) -> Andy (5434ms) Who was the first king of England? Moss 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (Moss, will make his first trip back to, New England) -> Moss (5440ms) Who was the first king of England? German warplanes 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (German warplanes, made their first direct attack on, England) -> German warplanes (5428ms) Who was the first king of England? the Lorrainers 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (the Lorrainers, made their first home in, England) -> the Lorrainers (5440ms) Who was the first king of England? GURU MAHARAJ 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (GURU MAHARAJ, Ji made his first public appearance in, England) -> GURU MAHARAJ (5444ms) Who was the first king of England? Holbein 0.8888888888940001 Who was the first king of England? -> $x: ($x, first travel to, england) -> (Holbein, first travelled to, England) -> Holbein (5444ms) Who was the first king of England? Ginger beer 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (Ginger beer, was first made in, England) -> Ginger beer (5439ms) Who was the first king of England? the Wysockis 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (the Wysockis, made their first trip to, New England) -> the Wysockis (5444ms) Who was the first king of England? Ironstone china 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (Ironstone china, was first made in, England) -> Ironstone china (5444ms) Who was the first king of England? the European precursor 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (the European precursor, made its first appearance in, England) -> the European precursor (5440ms) Who was the first king of England? Saint George 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (Saint George, was probably first made known in, England) -> Saint George (5444ms) Who was the first king of England? Erasmus 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (Erasmus, made his first visit to, England) -> Erasmus (5445ms) Who was the first king of England? chocolate pots 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (chocolate pots, were first made in, England) -> chocolate pots (5435ms) Who was the first king of England? The Black Death 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (The Black Death, makes its first appearance in, England) -> The Black Death (5440ms) Who was the first king of England? Walt 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (Walt, made his first postwar trip to, England and Ireland) -> Walt (5444ms) Who was the first king of England? a terracotta clay teapot 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (a terracotta clay teapot, was first made in, England) -> a terracotta clay teapot (5444ms) Who was the first king of England? a fizzy or sparkling wine 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (a fizzy or sparkling wine, was first made in, England) -> a fizzy or sparkling wine (5434ms) Who was the first king of England? ?Black ? glass 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (?Black ? glass, was first made in, England) -> ?Black ? glass (5440ms) Who was the first king of England? Swedenborg 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (Swedenborg, made his first visit to, England) -> Swedenborg (5444ms) Who was the first king of England? material 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (material, first made in, England) -> material (5444ms) Who was the first king of England? the entertainment 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (the entertainment, were first made in, England) -> the entertainment (5440ms) Who was the first king of England? the modern version 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (the modern version, was first made popular in, England) -> the modern version (5434ms) Who was the first king of England? the Gypsies or Rommany 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (the Gypsies or Rommany, made their first appearance in, England) -> the Gypsies or Rommany (5445ms) Who was the first king of England? Matchbox Cars 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (Matchbox Cars, were first made in, England) -> Matchbox Cars (5434ms) Who was the first king of England? an engine 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (an engine, made the first powered flight in, England) -> an engine (5434ms) Who was the first king of England? Bradley 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (Bradley, made his first visit to, England) -> Bradley (5440ms) Who was the first king of England? the reformation 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (the reformation, is making his first trip to, England) -> the reformation (5434ms) Who was the first king of England? Chris Bennett 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (Chris Bennett, is making his first trip to, England) -> Chris Bennett (5440ms) Who was the first king of England? Jockey Steve Cauthen 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (Jockey Steve Cauthen, made his first race in, England) -> Jockey Steve Cauthen (5440ms) Who was the first king of England? a professor English literature 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (a professor English literature, made his first trip to, England) -> a professor English literature (5440ms) Who was the first king of England? Tibetan dogs 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (Tibetan dogs, made their first appearance in, England) -> Tibetan dogs (5440ms) Who was the first king of England? 1887 Deakin 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (1887 Deakin, made his first visit to, England) -> 1887 Deakin (5434ms) Who was the first king of England? Nicholetts 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (Nicholetts, made the first non-stop flight from, England) -> Nicholetts (5435ms) Who was the first king of England? Le Doux 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (Le Doux, was making his first appearance in, England) -> Le Doux (5434ms) Who was the first king of England? Cody 0.8888888888940001 Who was the first king of England? -> $x: ($x, first make, england) -> (Cody, made the first powered flight in, England) -> Cody (5434ms) Who was the first king of England? choices 0.888888888888 Who was the first king of England? -> $x: ($x, discover, scotland) -> (choices, recently discovered species in, Scotland) -> choices (5454ms) Who was the first king of England? the possible prehistoric brews 0.888888888888 Who was the first king of England? -> $x: ($x, discover, scotland) -> (the possible prehistoric brews, discovered in, Scotland) -> the possible prehistoric brews (5449ms) Who was the first king of England? one animal 0.888888888888 Who was the first king of England? -> $x: ($x, discover, scotland) -> (one animal, discovered in, Perthshire Scotland) -> one animal (5449ms) Who was the first king of England? The type of ejected deposit 0.888888888888 Who was the first king of England? -> $x: ($x, discover, scotland) -> (The type of ejected deposit, discovered in, North West Scotland) -> The type of ejected deposit (5449ms) Who was the first king of England? Gladys 0.888888888888 Who was the first king of England? -> $x: ($x, discover, scotland) -> (Gladys, discovered, Scotland Health Care System) -> Gladys (5454ms) Who was the first king of England? 1777 0.888888888888 Who was the first king of England? -> $x: ($x, discover, scotland) -> (1777, have been discovered in, Scotland) -> 1777 (5449ms) Who was the first king of England? 0 Golf 0.888888888888 Who was the first king of England? -> $x: ($x, discover, scotland) -> (0 Golf, was discovered in, Scotland) -> 0 Golf (5449ms) Who was the first king of England? the perfect spot 0.888888888888 Who was the first king of England? -> $x: ($x, discover, scotland) -> (the perfect spot, to discover, Scotland 's West Coast) -> the perfect spot (5449ms) Who was the first king of England? the originals 0.888888888888 Who was the first king of England? -> $x: ($x, discover, scotland) -> (the originals, were discovered off, the West Coast of Scotland) -> the originals (5449ms) Who was the first king of England? participation 0.888888888888 Who was the first king of England? -> $x: ($x, discover, scotland) -> (participation, discover the history of, Scotland) -> participation (5449ms) Who was the first king of England? the UK 0.888888888888 Who was the first king of England? -> $x: ($x, discover, scotland) -> (the UK, can discover, Scotland?s magical lochs) -> the UK (5454ms) Who was the first king of England? the 1840s when Victoria and Albert 0.888888888888 Who was the first king of England? -> $x: ($x, discover, scotland) -> (the 1840s when Victoria and Albert, also discovered, Scotland) -> the 1840s when Victoria and Albert (5449ms) Who was the first king of England? a medieval knight 0.888888888888 Who was the first king of England? -> $x: ($x, discover, scotland) -> (a medieval knight, was discovered at, Stirling Castle Scotland) -> a medieval knight (5454ms) Who was the first king of England? Tulip Inn Glasgow 0.888888888888 Who was the first king of England? -> $x: ($x, discover, scotland) -> (Tulip Inn Glasgow, is the ideal base for discovering, Scotland) -> Tulip Inn Glasgow (5449ms) Who was the first king of England? the game 0.888888888888 Who was the first king of England? -> $x: ($x, discover, scotland) -> (the game, was discovered in, Scotland) -> the game (5449ms) Who was the first king of England? ISA 0.888888888888 Who was the first king of England? -> $x: ($x, discover, scotland) -> (ISA, was first discovered in, Scotland) -> ISA (5454ms) Who was the first king of England? students 0.888888888888 Who was the first king of England? -> $x: ($x, discover, henry viii) -> (students, will discover, the real Henry VIII) -> students (5449ms) Who was the first king of England? 5000 years 0.888888888888 Who was the first king of England? -> $x: ($x, discover, scotland) -> (5000 years, was discovered in, Scotland) -> 5000 years (5454ms) Who was the first king of England? about fifty examples 0.888888888888 Who was the first king of England? -> $x: ($x, discover, scotland) -> (about fifty examples, have been discovered in, Scotland) -> about fifty examples (5449ms) Who was the first king of England? Kristianna 0.888888888888 Who was the first king of England? -> $x: ($x, discover, scotland) -> (Kristianna, discovers the magic of, Scotland) -> Kristianna (5449ms) Who was the first king of England? the Lewis Chessmen 0.888888888888 Who was the first king of England? -> $x: ($x, discover, scotland) -> (the Lewis Chessmen, was discovered in, Scotland) -> the Lewis Chessmen (5449ms) Who was the first king of England? Oasis 0.888888888888 Who was the first king of England? -> $x: ($x, discover, scotland) -> (Oasis, were discovered as well as, Scotland?s own Biffy Clyro) -> Oasis (5454ms) Who was the first king of England? White pine lumber 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (White pine lumber, was first exported to, England) -> White pine lumber (5459ms) Who was the first king of England? pasture Hereford cattle 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (pasture Hereford cattle, were first exported from, England) -> pasture Hereford cattle (5467ms) Who was the first king of England? A Christmas Carol 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (A Christmas Carol, was first published in, England) -> A Christmas Carol (5475ms) Who was the first king of England? Christmas Cards 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (Christmas Cards, was first seen in, England) -> Christmas Cards (5459ms) Who was the first king of England? Prejudice 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (Prejudice, was first published in, England) -> Prejudice (5467ms) Who was the first king of England? thought 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (thought, are first manifested in, England) -> thought (5475ms) Who was the first king of England? generations 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (generations, was first published in, England) -> generations (5467ms) Who was the first king of England? coffees 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (coffees, was first shipped to, England) -> coffees (5459ms) Who was the first king of England? The torpedo style 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (The torpedo style, was first used in, England) -> The torpedo style (5459ms) Who was the first king of England? hard money limits 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (hard money limits, were first established in, England) -> hard money limits (5475ms) Who was the first king of England? 1525 Turkeys 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (1525 Turkeys, are first eaten in, England) -> 1525 Turkeys (5475ms) Who was the first king of England? Dinosaur fossils 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (Dinosaur fossils, were first found in, England) -> Dinosaur fossils (5463ms) Who was the first king of England? Altoids 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (Altoids, were first manufactured in, England) -> Altoids (5471ms) Who was the first king of England? the squadron 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (the squadron, was first organized in, England) -> the squadron (5459ms) Who was the first king of England? Export IPAs 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (Export IPAs, were first brewed in, England) -> Export IPAs (5459ms) Who was the first king of England? Hosta plantaginea 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (Hosta plantaginea, was first imported to, England) -> Hosta plantaginea (5471ms) Who was the first king of England? homeopathic remedies 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (homeopathic remedies, were first identified in, England) -> homeopathic remedies (5471ms) Who was the first king of England? the coast 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (the coast, was first published in, England) -> the coast (5454ms) Who was the first king of England? Turkey 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (Turkey, was first imported into, England) -> Turkey (5459ms) Who was the first king of England? the practice 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (the practice, was first spreading in, England) -> the practice (5454ms) Who was the first king of England? the script 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (the script, was first published in, England) -> the script (5463ms) Who was the first king of England? Bristol 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (Bristol, was the first of, England) -> Bristol (5454ms) Who was the first king of England? marriage 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (marriage, was first regulated in, England) -> marriage (5471ms) Who was the first king of England? the word ?nectarine ? 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (the word ?nectarine ?, was first used in, England) -> the word ?nectarine ? (5467ms) Who was the first king of England? the Earth 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (the Earth, was first published in, England) -> the Earth (5479ms) Who was the first king of England? Purple Lilac 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (Purple Lilac, was first imported from, England) -> Purple Lilac (5463ms) Who was the first king of England? railways 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (railways, were first constructed in, England) -> railways (5471ms) Who was the first king of England? ICE tadpole trikes 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (ICE tadpole trikes, were first produced in, England) -> ICE tadpole trikes (5467ms) Who was the first king of England? ?sovereigns 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (?sovereigns, were first minted in, England) -> ?sovereigns (5475ms) Who was the first king of England? serfdom 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (serfdom, was first extinguished in, England) -> serfdom (5467ms) Who was the first king of England? The French Basset 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (The French Basset, was first imported to, England) -> The French Basset (5471ms) Who was the first king of England? The technique 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (The technique, was first used in, England) -> The technique (5475ms) Who was the first king of England? the Cardigan Welsh Corgi 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (the Cardigan Welsh Corgi, was first shown in, England) -> the Cardigan Welsh Corgi (5471ms) Who was the first king of England? pedestrianism ? 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (pedestrianism ?, was a first in, England) -> pedestrianism ? (5463ms) Who was the first king of England? Pugs 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (Pugs, were first exhibited in, England) -> Pugs (5454ms) Who was the first king of England? demonstrations 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (demonstrations, were given first in, England) -> demonstrations (5463ms) Who was the first king of England? The style 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (The style, was first created in, England) -> The style (5454ms) Who was the first king of England? Screen-printing 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (Screen-printing, was first patented in, England) -> Screen-printing (5459ms) Who was the first king of England? criminal abortion 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (criminal abortion, was first codified in, England) -> criminal abortion (5459ms) Who was the first king of England? the term ?enthusiasm ? 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (the term ?enthusiasm ?, was first used in, England) -> the term ?enthusiasm ? (5475ms) Who was the first king of England? the Schmallenberg virus 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (the Schmallenberg virus, was first detected in, England) -> the Schmallenberg virus (5463ms) Who was the first king of England? BSE 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (BSE, was first detected in, England) -> BSE (5463ms) Who was the first king of England? Kimberly A. Rinker Hobbles 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (Kimberly A. Rinker Hobbles, were first used in, England) -> Kimberly A. Rinker Hobbles (5454ms) Who was the first king of England? the greater St . Johns dog 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (the greater St . Johns dog, was first imported to, England) -> the greater St . Johns dog (5467ms) Who was the first king of England? a children?s rhyme 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (a children?s rhyme, was first published in, England) -> a children?s rhyme (5471ms) Who was the first king of England? the gospel 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (the gospel, was first preached in, England) -> the gospel (5454ms) Who was the first king of England? the World ? 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (the World ?, was first published in, England) -> the World ? (5463ms) Who was the first king of England? Transferware design techniques 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (Transferware design techniques, were first created in, England) -> Transferware design techniques (5475ms) Who was the first king of England? Transferware design techiniques 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (Transferware design techiniques, were first created in, England) -> Transferware design techiniques (5471ms) Who was the first king of England? Unitarian churches 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (Unitarian churches, were first established in, England) -> Unitarian churches (5463ms) Who was the first king of England? Cheddar Cheese 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (Cheddar Cheese, was first produced in, England) -> Cheddar Cheese (5459ms) Who was the first king of England? The Schmallenberg virus 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (The Schmallenberg virus, was first identified in, England) -> The Schmallenberg virus (5475ms) Who was the first king of England? The feigned issue 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (The feigned issue, was first developed in, England) -> The feigned issue (5479ms) Who was the first king of England? algae 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (algae, was first publicized in, England) -> algae (5471ms) Who was the first king of England? England Proportionality 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (England Proportionality, was first adopted in, England) -> England Proportionality (5467ms) Who was the first king of England? Darwin 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (Darwin, was felt first in, England) -> Darwin (5454ms) Who was the first king of England? metric ones 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (metric ones, were first suggested in, England) -> metric ones (5471ms) Who was the first king of England? cocoa nuts 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (cocoa nuts, were first imported into, England) -> cocoa nuts (5459ms) Who was the first king of England? Germany 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (Germany, was first shown in, England) -> Germany (5467ms) Who was the first king of England? the standard 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (the standard, was first published in, England) -> the standard (5471ms) Who was the first king of England? Stephen Churchill 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (Stephen Churchill, was the first in, England) -> Stephen Churchill (5467ms) Who was the first king of England? the wine 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (the wine, was first shipped to, England) -> the wine (5467ms) Who was the first king of England? the Savior 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (the Savior, was first known in, England) -> the Savior (5463ms) Who was the first king of England? violets 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (violets, were first imported from, England) -> violets (5467ms) Who was the first king of England? The Tibetan Spaniel 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (The Tibetan Spaniel, first was brought to, England) -> The Tibetan Spaniel (5463ms) Who was the first king of England? Satellite communications 0.7777777777849999 Who was the first king of England? -> $x: ($x, be first, england) -> (Satellite communications, were first brought to, England) -> Satellite communications (5459ms) Who was the first king of England? MA 0.777777777784 Who was the first king of England? -> $x: ($x, be example of, england) -> (MA, is a perfect example of, a quaint New England town) -> MA (5479ms) Who was the first king of England? Mrs. BURNHAM 0.777777777784 Who was the first king of England? -> $x: ($x, be example of, england) -> (Mrs. BURNHAM, was an excellent example of, the New England woman) -> Mrs. BURNHAM (5479ms) Who was the first king of England? The homestead 0.777777777784 Who was the first king of England? -> $x: ($x, be example of, england) -> (The homestead, is a superb example of, a Colonial New England) -> The homestead (5479ms) Who was the first king of England? The Ellithorpe House 0.777777777784 Who was the first king of England? -> $x: ($x, be example of, england) -> (The Ellithorpe House, is an excellent example of, New England) -> The Ellithorpe House (5479ms) Who was the first king of England? The Kelmscott Manor 0.777777777784 Who was the first king of England? -> $x: ($x, be example of, england) -> (The Kelmscott Manor, is a prime example of, England) -> The Kelmscott Manor (5479ms) Who was the first king of England? chickens 0.77777777778 Who was the first king of England? -> $x: ($x, first introduce, south america) -> (chickens, were first introduced into, South America) -> chickens (5479ms) Who was the first king of England? Gripad 0.77777777778 Who was the first king of England? -> $x: ($x, have first, south america) -> (Gripad, has established its first branch in, South America) -> Gripad (5479ms) Who was the first king of England? Coffee 0.77777777778 Who was the first king of England? -> $x: ($x, first introduce, south america) -> (Coffee, was first introduced in, South America) -> Coffee (5479ms) Who was the first king of England? a sacred food 0.77777777778 Who was the first king of England? -> $x: ($x, have first, south america) -> (a sacred food, has been first found in, South America) -> a sacred food (5479ms) Who was the first king of England? carrots 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (carrots, introduced into, England) -> carrots (5482ms) Who was the first king of England? a machine 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (a machine, invented in, England) -> a machine (5489ms) Who was the first king of England? beer 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (beer, invented in, England) -> beer (5502ms) Who was the first king of England? A name 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (A name, introduced to, England) -> A name (5486ms) Who was the first king of England? parliamentary government 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (parliamentary government, invented in, England) -> parliamentary government (5502ms) Who was the first king of England? a dog biscuit 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (a dog biscuit, introduced in, England) -> a dog biscuit (5489ms) Who was the first king of England? The language 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (The language, was invented in, England) -> The language (5503ms) Who was the first king of England? a technology 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (a technology, introduced from, England) -> a technology (5491ms) Who was the first king of England? the A1 Y-chromosome 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (the A1 Y-chromosome, introduced into, England) -> the A1 Y-chromosome (5505ms) Who was the first king of England? Greece 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (Greece, introduced into, England) -> Greece (5486ms) Who was the first king of England? the old Italian method 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (the old Italian method, introduced into, England) -> the old Italian method (5500ms) Who was the first king of England? sashes 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (sashes, were invented in, England) -> sashes (5503ms) Who was the first king of England? the French form 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (the French form, introduced into, England) -> the French form (5500ms) Who was the first king of England? n?t 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (n?t, invented in, England) -> n?t (5502ms) Who was the first king of England? the word Soccer 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (the word Soccer, invented in, England) -> the word Soccer (5486ms) Who was the first king of England? the electric light bulb 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (the electric light bulb, invented in, England) -> the electric light bulb (5503ms) Who was the first king of England? the sport 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (the sport, was invented in, England) -> the sport (5505ms) Who was the first king of England? machines-- 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (machines--, invented in, England) -> machines-- (5482ms) Who was the first king of England? the legislation 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (the legislation, introduced in, England) -> the legislation (5498ms) Who was the first king of England? NHS guidance 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (NHS guidance, introduced in, England) -> NHS guidance (5494ms) Who was the first king of England? The first knitting machine 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (The first knitting machine, was invented in, England) -> The first knitting machine (5482ms) Who was the first king of England? Football 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (Football, was invented in, England) -> Football (5505ms) Who was the first king of England? The friction match 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (The friction match, was invented in, England) -> The friction match (5491ms) Who was the first king of England? The guillotine and champagne 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (The guillotine and champagne, were invented in, England) -> The guillotine and champagne (5500ms) Who was the first king of England? American grey squirrel 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (American grey squirrel, introduced into, England) -> American grey squirrel (5482ms) Who was the first king of England? Thalidomide victims LCD 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (Thalidomide victims LCD, invented in, England) -> Thalidomide victims LCD (5498ms) Who was the first king of England? the = tax=20 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (the = tax=20, introduced in, England) -> the = tax=20 (5500ms) Who was the first king of England? Cricket 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (Cricket, was invented in, England) -> Cricket (5503ms) Who was the first king of England? The sandwich 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (The sandwich, was invented in, England) -> The sandwich (5494ms) Who was the first king of England? An additional windmill type 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (An additional windmill type, invented in, England) -> An additional windmill type (5494ms) Who was the first king of England? Norman origin 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (Norman origin, introduced into, England) -> Norman origin (5502ms) Who was the first king of England? The French 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (The French, introduced into, England) -> The French (5498ms) Who was the first king of England? a complex poetic form 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (a complex poetic form, introduced into, England) -> a complex poetic form (5489ms) Who was the first king of England? ToastaBags 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (ToastaBags, were invented in, England) -> ToastaBags (5494ms) Who was the first king of England? public places 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (public places, introduced in, England) -> public places (5491ms) Who was the first king of England? A knitting machine 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (A knitting machine, invented in, England) -> A knitting machine (5496ms) Who was the first king of England? the Christmas tree 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (the Christmas tree, introduced into, England) -> the Christmas tree (5498ms) Who was the first king of England? Roman Catholicism 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (Roman Catholicism, introduced to, England) -> Roman Catholicism (5498ms) Who was the first king of England? the Norman French carpentier 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (the Norman French carpentier, introduced into, England) -> the Norman French carpentier (5496ms) Who was the first king of England? the first time 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (the first time, introduced into, England) -> the first time (5489ms) Who was the first king of England? 1271 1269 Toll roads 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (1271 1269 Toll roads, introduced in, England) -> 1271 1269 Toll roads (5503ms) Who was the first king of England? The original technology 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (The original technology, was invented in, England) -> The original technology (5489ms) Who was the first king of England? baseball 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (baseball, invented in, England) -> baseball (5505ms) Who was the first king of England? a French/Norman surname 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (a French/Norman surname, introduced into, England) -> a French/Norman surname (5500ms) Who was the first king of England? The tree 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (The tree, introduced to, England) -> The tree (5486ms) Who was the first king of England? Today @ Noise Pop-Up Shop Ping pong 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (Today @ Noise Pop-Up Shop Ping pong, was invented in, England) -> Today @ Noise Pop-Up Shop Ping pong (5494ms) Who was the first king of England? The first turkeys 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (The first turkeys, introduced into, England) -> The first turkeys (5505ms) Who was the first king of England? A 24-page , full-colour section 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (A 24-page , full-colour section, introduces, England) -> A 24-page , full-colour section (5503ms) Who was the first king of England? cotton-spinning machinery 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (cotton-spinning machinery, introduced in, England) -> cotton-spinning machinery (5496ms) Who was the first king of England? 1066 Crossbows 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (1066 Crossbows, introduced to, England) -> 1066 Crossbows (5482ms) Who was the first king of England? One more windmill type 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (One more windmill type, invented in, England) -> One more windmill type (5500ms) Who was the first king of England? the sash 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (the sash, was invented in, England) -> the sash (5496ms) Who was the first king of England? the stake 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (the stake, invented in, England) -> the stake (5486ms) Who was the first king of England? the most famous levitation illusion 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (the most famous levitation illusion, was invented in, England) -> the most famous levitation illusion (5502ms) Who was the first king of England? decorations 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (decorations, introduced into, England) -> decorations (5491ms) Who was the first king of England? a gold substitute 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (a gold substitute, invented in, England) -> a gold substitute (5494ms) Who was the first king of England? The harbinger of the bubonic plague 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (The harbinger of the bubonic plague, introduced into, England) -> The harbinger of the bubonic plague (5498ms) Who was the first king of England? smooth pressing and dosage 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (smooth pressing and dosage, invented in, England) -> smooth pressing and dosage (5498ms) Who was the first king of England? smallpox inoculation 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (smallpox inoculation, introduced into, England) -> smallpox inoculation (5502ms) Who was the first king of England? New York 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (New York, introduced into, England) -> New York (5494ms) Who was the first king of England? royal miniaturist 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (royal miniaturist, introduced to, England) -> royal miniaturist (5486ms) Who was the first king of England? Phillips Model 1500 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (Phillips Model 1500, Introduced in, England) -> Phillips Model 1500 (5494ms) Who was the first king of England? martial arts 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (martial arts, was invented in, England) -> martial arts (5502ms) Who was the first king of England? Origins 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (Origins, Introduced to, England) -> Origins (5494ms) Who was the first king of England? Lady Mary 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (Lady Mary, introduced into, England) -> Lady Mary (5496ms) Who was the first king of England? a woollen imitation 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (a woollen imitation, introduced to, England) -> a woollen imitation (5500ms) Who was the first king of England? Europe 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (Europe, introduced to, England) -> Europe (5500ms) Who was the first king of England? The metric system 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (The metric system, was invented in, England) -> The metric system (5498ms) Who was the first king of England? the assumption 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (the assumption, introduced to, England) -> the assumption (5486ms) Who was the first king of England? a biscuit product 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (a biscuit product, introduced in, England) -> a biscuit product (5505ms) Who was the first king of England? 958 Britannia silver 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (958 Britannia silver, introduced in, England) -> 958 Britannia silver (5498ms) Who was the first king of England? dance 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (dance, introduced in, England) -> dance (5503ms) Who was the first king of England? Though 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (Though, introduced to, England) -> Though (5491ms) Who was the first king of England? 3 Ratings 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (3 Ratings, was invented in, England) -> 3 Ratings (5482ms) Who was the first king of England? the Fourdrinier machine 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (the Fourdrinier machine, was invented in, England) -> the Fourdrinier machine (5502ms) Who was the first king of England? The modern shoestring 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (The modern shoestring, was invented in, England) -> The modern shoestring (5503ms) Who was the first king of England? first being 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (first being, introduced into, England) -> first being (5502ms) Who was the first king of England? the first carp 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (the first carp, introduced into, England) -> the first carp (5479ms) Who was the first king of England? Early wallpapers 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (Early wallpapers, introduced into, England) -> Early wallpapers (5496ms) Who was the first king of England? a new machine 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (a new machine, invented in, England) -> a new machine (5496ms) Who was the first king of England? the fingerprinting process 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (the fingerprinting process, invented in, England) -> the fingerprinting process (5502ms) Who was the first king of England? transfer printing 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (transfer printing, was invented in, England) -> transfer printing (5500ms) Who was the first king of England? rugby 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (rugby, was invented in, England) -> rugby (5491ms) Who was the first king of England? the oldest recorded vegetable plants 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (the oldest recorded vegetable plants, introduced to, England) -> the oldest recorded vegetable plants (5494ms) Who was the first king of England? A Breton name 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (A Breton name, introduced into, England) -> A Breton name (5505ms) Who was the first king of England? The latest historical theory 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (The latest historical theory, introduced into, England) -> The latest historical theory (5496ms) Who was the first king of England? The Conqueror 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (The Conqueror, introduced into, England) -> The Conqueror (5502ms) Who was the first king of England? The Saxons 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (The Saxons, introduced to, England) -> The Saxons (5482ms) Who was the first king of England? the locomotive 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (the locomotive, was invented in, England) -> the locomotive (5479ms) Who was the first king of England? The CT scan 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (The CT scan, was invented in, England) -> The CT scan (5496ms) Who was the first king of England? A Glance Historical 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (A Glance Historical, Introduced into, England) -> A Glance Historical (5506ms) Who was the first king of England? Rugby 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (Rugby, was invented in, England) -> Rugby (5505ms) Who was the first king of England? a male name 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (a male name, introduced into, England) -> a male name (5500ms) Who was the first king of England? an order 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (an order, introduced into, England) -> an order (5496ms) Who was the first king of England? the electrical desktop calculator 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (the electrical desktop calculator, was invented in, England) -> the electrical desktop calculator (5503ms) Who was the first king of England? an English occupational name 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (an English occupational name, introduced into, England) -> an English occupational name (5506ms) Who was the first king of England? Machines 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (Machines, introduced in, England) -> Machines (5502ms) Who was the first king of England? crops 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (crops, introduced from, England) -> crops (5491ms) Who was the first king of England? the guillotine 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (the guillotine, was actually invented in, England) -> the guillotine (5505ms) Who was the first king of England? a French ball game 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (a French ball game, introduced into, England) -> a French ball game (5496ms) Who was the first king of England? The game 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (The game, was invented in, England) -> The game (5500ms) Who was the first king of England? English muffins 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (English muffins, invented in, England) -> English muffins (5496ms) Who was the first king of England? The modern circus 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (The modern circus, was invented in, England) -> The modern circus (5506ms) Who was the first king of England? Reversi 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (Reversi, was originally invented in, England) -> Reversi (5498ms) Who was the first king of England? a classic cocktail 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (a classic cocktail, invented in, England) -> a classic cocktail (5503ms) Who was the first king of England? football 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (football, was invented in, England) -> football (5503ms) Who was the first king of England? torture 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (torture, introduced from, England) -> torture (5489ms) Who was the first king of England? 1955 Atomic clock 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (1955 Atomic clock, invented in, England) -> 1955 Atomic clock (5494ms) Who was the first king of England? The shoe string 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (The shoe string, was invented in, England) -> The shoe string (5494ms) Who was the first king of England? The Queen Anne style 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (The Queen Anne style, was invented in, England) -> The Queen Anne style (5494ms) Who was the first king of England? The first carp 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (The first carp, introduced into, England) -> The first carp (5506ms) Who was the first king of England? The stroller 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (The stroller, was invented in, England) -> The stroller (5498ms) Who was the first king of England? the government 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (the government, introduced in, England) -> the government (5498ms) Who was the first king of England? the iPod 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (the iPod, was invented in, England) -> the iPod (5496ms) Who was the first king of England? franking letters 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (franking letters, invented in, England) -> franking letters (5489ms) Who was the first king of England? machines 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (machines, invented in, England) -> machines (5498ms) Who was the first king of England? lawn tennis 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (lawn tennis, was invented in, England) -> lawn tennis (5486ms) Who was the first king of England? the reforms 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (the reforms, introduced in, England) -> the reforms (5503ms) Who was the first king of England? a transition scheme 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (a transition scheme, introduced in, England) -> a transition scheme (5496ms) Who was the first king of England? rubber 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (rubber, was invented in, England) -> rubber (5491ms) Who was the first king of England? The shoestring 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (The shoestring, was invented in, England) -> The shoestring (5498ms) Who was the first king of England? A Flemish woman 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (A Flemish woman, introduced to, England) -> A Flemish woman (5486ms) Who was the first king of England? The versatility 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (The versatility, invented in, England) -> The versatility (5489ms) Who was the first king of England? The steam locomotive 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (The steam locomotive, was invented in, England) -> The steam locomotive (5482ms) Who was the first king of England? the steam engine 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (the steam engine, was invented in, England) -> the steam engine (5498ms) Who was the first king of England? a device 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (a device, was invented in, England) -> a device (5486ms) Who was the first king of England? Sens 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (Sens, introduced to, England) -> Sens (5482ms) Who was the first king of England? was feudalism 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (was feudalism, introduced in, England) -> was feudalism (5482ms) Who was the first king of England? Houdan 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (Houdan, Introduced into, England) -> Houdan (5505ms) Who was the first king of England? Halma 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (Halma, was invented in, England) -> Halma (5505ms) Who was the first king of England? A distinction 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (A distinction, introduced in, England) -> A distinction (5505ms) Who was the first king of England? the new NHS dental contract 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (the new NHS dental contract, introduced in, England) -> the new NHS dental contract (5482ms) Who was the first king of England? citizenship lessons 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (citizenship lessons, introduced across, England) -> citizenship lessons (5491ms) Who was the first king of England? stronger bottles 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (stronger bottles, invented in, England) -> stronger bottles (5491ms) Who was the first king of England? a gold coin 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (a gold coin, introduced in, England) -> a gold coin (5489ms) Who was the first king of England? the relatively new policy 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (the relatively new policy, introduced into, England) -> the relatively new policy (5489ms) Who was the first king of England? a native 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (a native, introduced into, England) -> a native (5502ms) Who was the first king of England? a Swan dive 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (a Swan dive, Introduced from, England) -> a Swan dive (5505ms) Who was the first king of England? a classic strategy board game 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (a classic strategy board game, was invented in, England) -> a classic strategy board game (5486ms) Who was the first king of England? The process 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (The process, was invented in, England) -> The process (5503ms) Who was the first king of England? a watchman 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (a watchman, introduced into, England) -> a watchman (5505ms) Who was the first king of England? a system 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (a system, invented in, England) -> a system (5502ms) Who was the first king of England? the process 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (the process, invented in, England) -> the process (5498ms) Who was the first king of England? Norman roots 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (Norman roots, introduced into, England) -> Norman roots (5491ms) Who was the first king of England? Withycombe 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (Withycombe, introduced to, England) -> Withycombe (5506ms) Who was the first king of England? A form 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (A form, introduced into, England) -> A form (5500ms) Who was the first king of England? Robin Hood 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (Robin Hood, introduce into, England) -> Robin Hood (5479ms) Who was the first king of England? the tin 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (the tin, can was invented in, England) -> the tin (5506ms) Who was the first king of England? Shopping Centers 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (Shopping Centers, Introduced in, England) -> Shopping Centers (5482ms) Who was the first king of England? Transfer printing 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (Transfer printing, was invented in, England) -> Transfer printing (5491ms) Who was the first king of England? the Shanks typecasting machine 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (the Shanks typecasting machine, was invented in, England) -> the Shanks typecasting machine (5491ms) Who was the first king of England? The first pencil 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (The first pencil, was invented in, England) -> The first pencil (5503ms) Who was the first king of England? continental Europe 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (continental Europe, introduced to, England) -> continental Europe (5500ms) Who was the first king of England? the brother 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (the brother, introduced in, England) -> the brother (5496ms) Who was the first king of England? 1 Ratings Three Card Poker 0.6666666666750001 Who was the first king of England? -> $x: ($x, invent in, england) -> (1 Ratings Three Card Poker, was invented in, England) -> 1 Ratings Three Card Poker (5505ms) Who was the first king of England? Norman Conquest 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (Norman Conquest, introduced into, England) -> Norman Conquest (5489ms) Who was the first king of England? duke 0.6666666666750001 Who was the first king of England? -> $x: ($x, introduce, england) -> (duke, introduced into, England) -> duke (5489ms) Who was the first king of England? ?thelstan 0.666666666672 Who was the first king of England? -> $x: ($x, be first king of, england) -> (?thelstan, was the first real king of, all England) -> ?thelstan (5507ms) Who was the first king of England? The Independent 0.666666666672 Who was the first king of England? -> $x: ($x, be first king of, england) -> (The Independent, was the first King of, England) -> The Independent (5506ms) Who was the first king of England? Wessex 0.666666666672 Who was the first king of England? -> $x: ($x, be first king of, england) -> (Wessex, was the first king of, all England) -> Wessex (5506ms) Who was the first king of England? March 24 0.666666666672 Who was the first king of England? -> $x: ($x, be first king of, england) -> (March 24, was the first king of, both England and Scotland) -> March 24 (5507ms) Who was the first king of England? Aquitaine 0.666666666672 Who was the first king of England? -> $x: ($x, be first king of, england) -> (Aquitaine, was the first king of, England) -> Aquitaine (5506ms) Who was the first king of England? St . Edward 0.666666666672 Who was the first king of England? -> $x: ($x, be first king of, england) -> (St . Edward, was the first King of, England) -> St . Edward (5506ms) Who was the first king of England? wheat 0.666666666669 Who was the first king of England? -> $x: ($x, have invent, scotland) -> (wheat, has been invented in, Scotland) -> wheat (5507ms) Who was the first king of England? the Inimitable Todd 0.666666666669 Who was the first king of England? -> $x: ($x, have first, scotland) -> (the Inimitable Todd, had first traveled to, Scotland) -> the Inimitable Todd (5507ms) Who was the first king of England? England 0.666666666669 Who was the first king of England? -> $x: ($x, have first, scotland) -> (England, first had the measure of, Scotland 3-0) -> England (5507ms) Who was the first king of England? the argument 0.666666666669 Who was the first king of England? -> $x: ($x, have first, scotland) -> (the argument, inside has the first minister of, Scotland smiling) -> the argument (5507ms) Who was the first king of England? Leanne Caldwell 0.666666666669 Who was the first king of England? -> $x: ($x, have first, scotland) -> (Leanne Caldwell, has now become the first charity in, Scotland) -> Leanne Caldwell (5507ms) Who was the first king of England? Glen Keith 0.666666666669 Who was the first king of England? -> $x: ($x, have first, scotland) -> (Glen Keith, had the first gas-fired still in, Scotland) -> Glen Keith (5507ms) Who was the first king of England? Golf 0.666666666669 Who was the first king of England? -> $x: ($x, have invent, scotland) -> (Golf, may have been invented in, Scotland) -> Golf (5507ms) Who was the first king of England? Edinburgh 0.666666666669 Who was the first king of England? -> $x: ($x, have first, scotland) -> (Edinburgh, has become the first independent school in, Scotland) -> Edinburgh (5507ms) Who was the first king of England? branches 0.666666666669 Who was the first king of England? -> $x: ($x, have first, scotland) -> (branches, have recently opened their first in, Scotland) -> branches (5507ms) Who was the first king of England? Finance 0.666666666669 Who was the first king of England? -> $x: ($x, have first, scotland) -> (Finance, has been rated joint first in, Scotland) -> Finance (5507ms) Who was the first king of England? a primary school teacher 0.666666666669 Who was the first king of England? -> $x: ($x, have first, scotland) -> (a primary school teacher, has become the first in, Scotland) -> a primary school teacher (5507ms) Who was the first king of England? Q-Hotels 0.666666666669 Who was the first king of England? -> $x: ($x, have first, scotland) -> (Q-Hotels, has made its first venture into, Scotland) -> Q-Hotels (5507ms) Who was the first king of England? an awarded certificated location 0.666666666669 Who was the first king of England? -> $x: ($x, have first, scotland) -> (an awarded certificated location, has been first in, Scotland) -> an awarded certificated location (5507ms) Who was the first king of England? Scotland 0.666666666669 Who was the first king of England? -> $x: ($x, have first, scotland) -> (Scotland, has acted first as, shadow Scotland Office minister) -> Scotland (5507ms) Who was the first king of England? Supreme Head 0.666666666669 Who was the first king of England? -> $x: ($x, have first, henry viii) -> (Supreme Head, had first been introduced by, Henry VIII) -> Supreme Head (5507ms) Who was the first king of England? Irvine Royal Academy 0.666666666669 Who was the first king of England? -> $x: ($x, have first, scotland) -> (Irvine Royal Academy, has become the first in, Scotland) -> Irvine Royal Academy (5507ms) Who was the first king of England? Hogg 0.666666666669 Who was the first king of England? -> $x: ($x, have first, scotland) -> (Hogg, should have scored his first try for, Scotland) -> Hogg (5507ms) Who was the first king of England? full-back Stuart Hogg 0.666666666669 Who was the first king of England? -> $x: ($x, first start, scotland) -> (full-back Stuart Hogg, will make his first start for, Scotland) -> full-back Stuart Hogg (5507ms) Who was the first king of England? turbot 0.666666666669 Who was the first king of England? -> $x: ($x, first start, scotland) -> (turbot, started first in, Scotland) -> turbot (5507ms) Who was the first king of England? Norman 0.666666666669 Who was the first king of England? -> $x: ($x, first start, scotland) -> (Norman, first started touring, Scotland) -> Norman (5507ms) Who was the first king of England? thrashing wheat 0.666666666669 Who was the first king of England? -> $x: ($x, have invent, scotland) -> (thrashing wheat, has been invented in, Scotland) -> thrashing wheat (5507ms) Where is the Orinoco River? terms 0.555555555554 Where is the Orinoco River? -> $x: (orinoco, be river in, $x) -> (The Orinoco, is the world?s fourth largest river in, terms) -> terms (812ms) Where is the Orinoco River? South America 0.555555555554 Where is the Orinoco River? -> $x: (orinoco, be river in, $x) -> (the Orinoco, is the third longest river in, South America) -> South America (812ms) Where is the Orinoco River? Venezuela 0.555555555554 Where is the Orinoco River? -> $x: (orinoco, be river in, $x) -> (Orinoco, is a river in, Venezuela) -> Venezuela (811ms) Where is the Orinoco River? The Caron? River 0.444444444445 Where is the Orinoco River? -> $x: ($x, be river of, orinoco) -> (The Caron? River, is a major river of, the Orinoco basin) -> The Caron? River (811ms) Where is the Orinoco River? Russian oil companies -0.0 Where is the Orinoco River? -> $x: ($x, develop, orinoco river) -> (Russian oil companies, to help develop, the Orinoco River basin) -> Russian oil companies (1200ms) Where is the Orinoco River? pink dolphin -0.0 Where is the Orinoco River? -> $x: ($x, found, orinoco river) -> (pink dolphin, found in, the Orinoco and Amazon River basins) -> pink dolphin (1200ms) Where is the Orinoco River? exclusively freshwater fish -0.0 Where is the Orinoco River? -> $x: ($x, found, orinoco river) -> (exclusively freshwater fish, found from, the Orinoco River basin) -> exclusively freshwater fish (1200ms) Where is the Orinoco River? Orinoco River Crossing -0.0 Where is the Orinoco River? -> $x: ($x, found, orinoco river) -> (Orinoco River Crossing, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Orinoco%20River%20Crossing) -> Orinoco River Crossing (1200ms) Where is the Orinoco River? Columbus -0.0 Where is the Orinoco River? -> $x: ($x, discover, orinoco river) -> (Columbus, discovered, the Orinoco river) -> Columbus (1153ms) Where is the Orinoco River? 1752 -0.0 Where is the Orinoco River? -> $x: ($x, go, orinoco river) -> (1752, go, the Orinoco river) -> 1752 (978ms) Where is Merrill Lynch headquartered? London -0.333333333333 Where is Merrill Lynch headquartered? -> $x: (merrill lynch, be headquarter in, $x) -> (Merrill Lynch HSBC, will be headquartered in, London) -> London (621ms) Where is Merrill Lynch headquartered? New York -0.333333333333 Where is Merrill Lynch headquartered? -> $x: (merrill lynch, be headquarter in, $x) -> (Merrill Lynch and Morgan Stanley, are headquartered in, New York) -> New York (621ms) Where is Merrill Lynch headquartered? New York City -0.333333333333 Where is Merrill Lynch headquartered? -> $x: (merrill lynch, be headquarter in, $x) -> (Merrill Lynch, is headquartered in, New York City) -> New York City (621ms) Where is Merrill Lynch headquartered? new york city -0.333333333333 Where is Merrill Lynch headquartered? -> $x: (merrill lynch, be headquarter in, $x) -> (america merrill lynch, is headquartered in, new york city) -> new york city (621ms) Where is Merrill Lynch headquartered? Los Angeles -1.5555555555479998 Where is Merrill Lynch headquartered? -> $x: (merrill lynch, headquarter, $x) -> (Merrill Lynch, headquartered in, Los Angeles) -> Los Angeles (621ms) Aspartame is also known as what? the poison everyone 1.111111111111 Aspartame is also known as what? -> $x: ($x, be call, aspartame) -> (the poison everyone, is drinking called, aspartame) -> the poison everyone (809ms) Aspartame is also known as what? Feingold diet 1.111111111109 Aspartame is also known as what? -> $x: ($x, type, aspartame) -> (Feingold diet, Avoids food-type, Aspartame) -> Feingold diet (810ms) Aspartame is also known as what? James M. Schlatter 0.999999999999 Aspartame is also known as what? -> $x: ($x, discover, aspartame) -> (James M. Schlatter, accidentally discovers, aspartame) -> James M. Schlatter (809ms) Aspartame is also known as what? Monsanto 0.999999999999 Aspartame is also known as what? -> $x: ($x, discover, aspartame) -> (Monsanto, discovered, Aspartame) -> Monsanto (951ms) Aspartame is also known as what? Schlatter 0.999999999999 Aspartame is also known as what? -> $x: ($x, discover, aspartame) -> (Schlatter, discovered the sweet taste of, aspartame) -> Schlatter (810ms) Aspartame is also known as what? the company 0.999999999999 Aspartame is also known as what? -> $x: ($x, discover, aspartame) -> (the company, discovered, Aspartame) -> the company (810ms) Aspartame is also known as what? a new ulcer drug 0.999999999999 Aspartame is also known as what? -> $x: ($x, discover, aspartame) -> (a new ulcer drug, discovered the sweet taste of, aspartame) -> a new ulcer drug (810ms) Aspartame is also known as what? the G. D. Searle Company 0.999999999999 Aspartame is also known as what? -> $x: ($x, discover, aspartame) -> (the G. D. Searle Company, accidentally discovered, aspartame) -> the G. D. Searle Company (810ms) Aspartame is also known as what? Equal 0.11111111111 Aspartame is also known as what? -> $x: ($x, be example of, aspartame) -> (Equal, is an example of, an aspartame-based sweetener) -> Equal (951ms) Aspartame is also known as what? Fox News Sunday -0.0 Aspartame is also known as what? -> $x: ($x, study, aspartame) -> (Fox News Sunday, reported the Italian study on, aspartame) -> Fox News Sunday (951ms) Aspartame is also known as what? Professor Atkin -0.0 Aspartame is also known as what? -> $x: ($x, study, aspartame) -> (Professor Atkin, is doing a study on, Aspartame) -> Professor Atkin (1212ms) Aspartame is also known as what? G.D. Searle & Company -0.0 Aspartame is also known as what? -> $x: ($x, create, aspartame) -> (G.D. Searle & Company, created, aspartame 25 years) -> G.D. Searle & Company (1214ms) Aspartame is also known as what? panic attacks and disorientation -0.0 Aspartame is also known as what? -> $x: ($x, cause, aspartame) -> (panic attacks and disorientation, could be caused by, Aspartame?) -> panic attacks and disorientation (1211ms) Aspartame is also known as what? world-renowned researchers -0.0 Aspartame is also known as what? -> $x: ($x, study, aspartame) -> (world-renowned researchers, have done studies on, aspartame) -> world-renowned researchers (1213ms) Aspartame is also known as what? an incurable case of Grave 's Disease -0.0 Aspartame is also known as what? -> $x: ($x, cause, aspartame) -> (an incurable case of Grave 's Disease, caused by, aspartame) -> an incurable case of Grave 's Disease (1210ms) Aspartame is also known as what? the diseases -0.0 Aspartame is also known as what? -> $x: ($x, cause, aspartame) -> (the diseases, caused by, aspartame) -> the diseases (1211ms) Aspartame is also known as what? food additives -0.0 Aspartame is also known as what? -> $x: ($x, cause, aspartame) -> (food additives, is caused by, Aspartame) -> food additives (1212ms) Aspartame is also known as what? the condition -0.0 Aspartame is also known as what? -> $x: ($x, cause, aspartame) -> (the condition, is caused by, the aspartame) -> the condition (1212ms) Aspartame is also known as what? 92 symptoms -0.0 Aspartame is also known as what? -> $x: ($x, cause, aspartame) -> (92 symptoms, caused by, aspartame) -> 92 symptoms (1213ms) Aspartame is also known as what? hypertension and seizures -0.0 Aspartame is also known as what? -> $x: ($x, cause, aspartame) -> (hypertension and seizures, are known to be caused by, aspartame) -> hypertension and seizures (1212ms) Aspartame is also known as what? little experience -0.0 Aspartame is also known as what? -> $x: ($x, study, aspartame) -> (little experience, began studies on, aspartame) -> little experience (1214ms) Aspartame is also known as what? Boston -0.0 Aspartame is also known as what? -> $x: ($x, study, aspartame) -> (Boston, studied the influence of, aspartame) -> Boston (951ms) Aspartame is also known as what? retinopathy -0.0 Aspartame is also known as what? -> $x: ($x, cause, aspartame) -> (retinopathy, had symptoms caused by, Aspartame) -> retinopathy (1213ms) Aspartame is also known as what? Birth defects -0.0 Aspartame is also known as what? -> $x: ($x, cause, aspartame) -> (Birth defects, are a major epidemic caused by, aspartame) -> Birth defects (1211ms) Aspartame is also known as what? Doctors -0.0 Aspartame is also known as what? -> $x: ($x, study, aspartame) -> (Doctors, have done studies on, aspartame) -> Doctors (1214ms) Aspartame is also known as what? MD -0.0 Aspartame is also known as what? -> $x: ($x, study, aspartame) -> (MD, has done a study on, aspartame) -> MD (951ms) Aspartame is also known as what? G.D. Searle -0.0 Aspartame is also known as what? -> $x: ($x, study, aspartame) -> (G.D. Searle, began to study, the artificial sweetener aspartame) -> G.D. Searle (1212ms) Aspartame is also known as what? adverse reactions -0.0 Aspartame is also known as what? -> $x: ($x, cause, aspartame) -> (adverse reactions, caused by, Aspartame) -> adverse reactions (1213ms) Aspartame is also known as what? fact -0.0 Aspartame is also known as what? -> $x: ($x, cause, aspartame) -> (fact, had symptoms caused by, Aspartame) -> fact (1211ms) Aspartame is also known as what? symptoms -0.0 Aspartame is also known as what? -> $x: ($x, cause, aspartame) -> (symptoms, caused by, Aspartame) -> symptoms (1211ms) Aspartame is also known as what? NCI -0.0 Aspartame is also known as what? -> $x: ($x, study, aspartame) -> (NCI, currently is studying, aspartame) -> NCI (951ms) Aspartame is also known as what? the dangers -0.0 Aspartame is also known as what? -> $x: ($x, cause, aspartame) -> (the dangers, caused by, aspartame) -> the dangers (1212ms) Aspartame is also known as what? Psychiatrist -0.0 Aspartame is also known as what? -> $x: ($x, study, aspartame) -> (Psychiatrist, did an independent study on, aspartame) -> Psychiatrist (1213ms) Aspartame is also known as what? the artificial sweetener -0.0 Aspartame is also known as what? -> $x: ($x, know as, aspartame) -> (the artificial sweetener, known as, aspartame) -> the artificial sweetener (951ms) Aspartame is also known as what? headaches -0.0 Aspartame is also known as what? -> $x: ($x, cause, aspartame) -> (headaches, caused by, aspartame) -> headaches (1214ms) Aspartame is also known as what? Damage -0.0 Aspartame is also known as what? -> $x: ($x, cause, aspartame) -> (Damage, caused by, aspartame consumption) -> Damage (1212ms) Aspartame is also known as what? an independent researcher -0.0 Aspartame is also known as what? -> $x: ($x, study, aspartame) -> (an independent researcher, did a study on, aspartame) -> an independent researcher (951ms) Aspartame is also known as what? the problem -0.0 Aspartame is also known as what? -> $x: ($x, cause, aspartame) -> (the problem, is caused by, Aspartame) -> the problem (1212ms) Aspartame is also known as what? Psychiatrist Dr. Ralph Walton -0.0 Aspartame is also known as what? -> $x: ($x, study, aspartame) -> (Psychiatrist Dr. Ralph Walton, did a study on, aspartame) -> Psychiatrist Dr. Ralph Walton (1213ms) Aspartame is also known as what? the poison -0.0 Aspartame is also known as what? -> $x: ($x, know as, aspartame) -> (the poison, known as, Aspartame) -> the poison (1213ms) Aspartame is also known as what? Dr. Ralph Walton -0.0 Aspartame is also known as what? -> $x: ($x, study, aspartame) -> (Dr. Ralph Walton, has also done a study on, aspartame) -> Dr. Ralph Walton (1213ms) Aspartame is also known as what? Dr. Walton -0.0 Aspartame is also known as what? -> $x: ($x, study, aspartame) -> (Dr. Walton, did a study on, aspartame) -> Dr. Walton (1213ms) Aspartame is also known as what? damage -0.0 Aspartame is also known as what? -> $x: ($x, cause, aspartame) -> (damage, is caused by, all aspartame consumption) -> damage (1213ms) Aspartame is also known as what? possible birth defects -0.0 Aspartame is also known as what? -> $x: ($x, cause, aspartame) -> (possible birth defects, caused by, the ingestion of aspartame) -> possible birth defects (1212ms) Aspartame is also known as what? kill -0.0 Aspartame is also known as what? -> $x: ($x, cause, aspartame) -> (kill, can be caused by, drinking or consuming aspartame) -> kill (1211ms) Aspartame is also known as what? Free methanol -0.0 Aspartame is also known as what? -> $x: ($x, create, aspartame) -> (Free methanol, is created from, Aspartame) -> Free methanol (1214ms) Aspartame is also known as what? MIT -0.0 Aspartame is also known as what? -> $x: ($x, study, aspartame) -> (MIT, did studies on, aspartame and seizures) -> MIT (1213ms) Aspartame is also known as what? obesity -0.0 Aspartame is also known as what? -> $x: ($x, cause, aspartame) -> (obesity, is mainly caused by, aspartame) -> obesity (1212ms) Aspartame is also known as what? the brain damage -0.0 Aspartame is also known as what? -> $x: ($x, cause, aspartame) -> (the brain damage, caused by, aspartame) -> the brain damage (1211ms) Aspartame is also known as what? Joint pain -0.0 Aspartame is also known as what? -> $x: ($x, cause, aspartame) -> (Joint pain, is caused by, aspartame) -> Joint pain (1210ms) Aspartame is also known as what? gradual damage -0.0 Aspartame is also known as what? -> $x: ($x, cause, aspartame) -> (gradual damage, can be caused by, aspartame breakdown products) -> gradual damage (1211ms) Aspartame is also known as what? the problems -0.0 Aspartame is also known as what? -> $x: ($x, cause, aspartame) -> (the problems, caused by, Aspartame) -> the problems (1212ms) Aspartame is also known as what? the cancer -0.0 Aspartame is also known as what? -> $x: ($x, cause, aspartame) -> (the cancer, caused by, Aspartame) -> the cancer (1212ms) Aspartame is also known as what? one or more problems -0.0 Aspartame is also known as what? -> $x: ($x, cause, aspartame) -> (one or more problems, caused by, aspartame) -> one or more problems (1211ms) Aspartame is also known as what? Symptoms -0.0 Aspartame is also known as what? -> $x: ($x, cause, aspartame) -> (Symptoms, caused by, aspartame) -> Symptoms (1213ms) Aspartame is also known as what? M.D. -0.0 Aspartame is also known as what? -> $x: ($x, study, aspartame) -> (M.D., did a study on, aspartame) -> M.D. (1212ms) Aspartame is also known as what? the health problems -0.0 Aspartame is also known as what? -> $x: ($x, cause, aspartame) -> (the health problems, caused by, Aspartame) -> the health problems (1212ms) Aspartame is also known as what? a laxative effect -0.0 Aspartame is also known as what? -> $x: ($x, cause, aspartame) -> (a laxative effect, cause, diarrhoea and aspartame) -> a laxative effect (1213ms) Aspartame is also known as what? Ms. Suddath -0.0 Aspartame is also known as what? -> $x: ($x, cause, aspartame) -> (Ms. Suddath, claims caused, all the hysteria about aspartame) -> Ms. Suddath (1214ms) Aspartame is also known as what? nobody -0.0 Aspartame is also known as what? -> $x: ($x, study, aspartame) -> (nobody, would do a study on, aspartame and children) -> nobody (951ms) Aspartame is also known as what? Nutrasweet and Equal -0.7777777777680001 Aspartame is also known as what? -> $x: (aspartame, be know as, $x) -> (Aspartame, is also known as, Nutrasweet and Equal) -> Nutrasweet and Equal (1214ms) Aspartame is also known as what? Rumsfeld -0.7777777777680001 Aspartame is also known as what? -> $x: (aspartame, be know as, $x) -> (Mexico Aspartame, is known as, Rumsfeld) -> Rumsfeld (1214ms) Aspartame is also known as what? ?Rumsfeld?s disease -0.7777777777680001 Aspartame is also known as what? -> $x: (aspartame, be know as, $x) -> (aspartame use, be known as, ?Rumsfeld?s disease) -> ?Rumsfeld?s disease (1214ms) Aspartame is also known as what? a poison -0.7777777777680001 Aspartame is also known as what? -> $x: (aspartame, be know as, $x) -> (Aspartame, is so widely known as, a poison) -> a poison (1214ms) Aspartame is also known as what? an 'excitotoxin' -0.7777777777680001 Aspartame is also known as what? -> $x: (aspartame, be know as, $x) -> (aspartame, is known as, an 'excitotoxin') -> an 'excitotoxin' (1214ms) Aspartame is also known as what? E951 -0.7777777777680001 Aspartame is also known as what? -> $x: (aspartame, be know as, $x) -> (Aspartame, is also known as, E951) -> E951 (1214ms) Aspartame is also known as what? poison and people -0.7777777777680001 Aspartame is also known as what? -> $x: (aspartame, be know as, $x) -> (aspartame, is known as, poison and people) -> poison and people (1214ms) Aspartame is also known as what? NutraSweet -0.7777777777680001 Aspartame is also known as what? -> $x: (aspartame, be know as, $x) -> (Aspartame, is also known as, NutraSweet) -> NutraSweet (1214ms) Aspartame is also known as what? Nutrasweet -0.7777777777680001 Aspartame is also known as what? -> $x: (aspartame, be know as, $x) -> (Aspartame, is known commercially as, Nutrasweet) -> Nutrasweet (1214ms) Aspartame is also known as what? an artificial sweetener -0.7777777777680001 Aspartame is also known as what? -> $x: (aspartame, be know as, $x) -> (7. Aspartame Aspartame, is known as, an artificial sweetener) -> an artificial sweetener (1214ms) What is Valentine's Day? the celebration 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, the celebration) -> the celebration (6399ms) What is Valentine's Day? true feeling 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s gift, is about, true feeling) -> true feeling (6399ms) What is Valentine's Day? indulgence ? 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s day, is about, indulgence ?) -> indulgence ? (1881ms) What is Valentine's Day? the adults 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is typically *all about, the adults) -> the adults (5070ms) What is Valentine's Day? a month 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is about, a month) -> a month (6495ms) What is Valentine's Day? darkness 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is about, darkness) -> darkness (6399ms) What is Valentine's Day? love 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, love) -> love (6495ms) What is Valentine's Day? gifts 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, gifts) -> gifts (6330ms) What is Valentine's Day? fictional dates 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, fictional dates) -> fictional dates (2837ms) What is Valentine's Day? love and chocolate 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is about, love and chocolate) -> love and chocolate (5196ms) What is Valentine's Day? lust 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is about, lust) -> lust (2837ms) What is Valentine's Day? right 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s day, is all about giving, right) -> right (6330ms) What is Valentine's Day? passion 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is a holiday about, passion) -> passion (5070ms) What is Valentine's Day? hearts and flowers 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, hearts and flowers) -> hearts and flowers (6330ms) What is Valentine's Day? women 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, women) -> women (5069ms) What is Valentine's Day? consumerism 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is about, consumerism) -> consumerism (3180ms) What is Valentine's Day? chocolate and chocolate 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, chocolate and chocolate) -> chocolate and chocolate (6399ms) What is Valentine's Day? the heart 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, the heart) -> the heart (3179ms) What is Valentine's Day? two weeks 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is just about, two weeks) -> two weeks (4487ms) What is Valentine's Day? Love 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s, is all about, Love) -> Love (4896ms) What is Valentine's Day? the ladies 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, the ladies) -> the ladies (1597ms) What is Valentine's Day? gifts and sharing 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, gifts and sharing) -> gifts and sharing (4896ms) What is Valentine's Day? miracles 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, was about, miracles) -> miracles (4487ms) What is Valentine's Day? new love 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is about finding, new love) -> new love (5196ms) What is Valentine's Day? sex 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, sex) -> sex (6330ms) What is Valentine's Day? love and appreciation 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is about sharing, love and appreciation) -> love and appreciation (2837ms) What is Valentine's Day? the ruse 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, was all about, the ruse) -> the ruse (6495ms) What is Valentine's Day? Eros 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is really concerned about, Eros) -> Eros (3180ms) What is Valentine's Day? an intimate moment 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is really about sharing, an intimate moment) -> an intimate moment (4487ms) What is Valentine's Day? the flowers 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, may be about, the flowers) -> the flowers (5196ms) What is Valentine's Day? a week 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, was about, a week) -> a week (1881ms) What is Valentine's Day? LOVE plain 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is about, LOVE plain) -> LOVE plain (6330ms) What is Valentine's Day? the sentiment 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, the sentiment) -> the sentiment (6495ms) What is Valentine's Day? the love , right 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, the love , right) -> the love , right (6495ms) What is Valentine's Day? chocolate 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is about, chocolate) -> chocolate (6495ms) What is Valentine's Day? love and passion 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s flowers, are about, love and passion) -> love and passion (4896ms) What is Valentine's Day? lovers 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, lovers) -> lovers (5070ms) What is Valentine's Day? love?and 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, love?and) -> love?and (5196ms) What is Valentine's Day? candlelight 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, candlelight) -> candlelight (6495ms) What is Valentine's Day? love and romance 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, love and romance) -> love and romance (6330ms) What is Valentine's Day? love and loving 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, love and loving) -> love and loving (5195ms) What is Valentine's Day? candy 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, was about, candy) -> candy (2838ms) What is Valentine's Day? romance and sex 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is about, romance and sex) -> romance and sex (6495ms) What is Valentine's Day? celebrating love 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, celebrating love) -> celebrating love (4487ms) What is Valentine's Day? romance and love 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is about, romance and love) -> romance and love (6495ms) What is Valentine's Day? kissing 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is about more than, kissing) -> kissing (1881ms) What is Valentine's Day? martyrdom 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is about, martyrdom) -> martyrdom (1597ms) What is Valentine's Day? the love 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about spreading, the love) -> the love (1597ms) What is Valentine's Day? desire 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is about, desire) -> desire (4896ms) What is Valentine's Day? love and more 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is becoming less about, love and more) -> love and more (3180ms) What is Valentine's Day? friendship 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, friendship) -> friendship (3179ms) What is Valentine's Day? love , passion and romance 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, love , passion and romance) -> love , passion and romance (1597ms) What is Valentine's Day? cards 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s, is about, cards) -> cards (6495ms) What is Valentine's Day? matches 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, matches) -> matches (4896ms) What is Valentine's Day? spending time 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s day, is about, spending time) -> spending time (5196ms) What is Valentine's Day? the corner 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is actually just about, the corner) -> the corner (6399ms) What is Valentine's Day? roses 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s day, is all about, roses) -> roses (4487ms) What is Valentine's Day? the loving relationship 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is about, the loving relationship) -> the loving relationship (6330ms) What is Valentine's Day? relationships 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s, is about, relationships) -> relationships (1597ms) What is Valentine's Day? romance 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is about, romance) -> romance (5196ms) What is Valentine's Day? romantic love 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is about, romantic love) -> romantic love (4896ms) What is Valentine's Day? the love ? 1.2222222222169998 What is Valentine's Day? -> $x: (valentine 's, be about, $x) -> (Valentine?s Day, is all about, the love ?) -> the love ? (5069ms) What is Valentine's Day? Hallmark 0.111111111111 What is Valentine's Day? -> $x: ($x, invent, valentine 's day) -> (Hallmark, invented, Valentine?s Day) -> Hallmark (6636ms) What is Valentine's Day? Richard Cadbury 0.111111111111 What is Valentine's Day? -> $x: ($x, invent, valentine 's day) -> (Richard Cadbury, invented, the first Valentine?s Day candy box) -> Richard Cadbury (6495ms) What is Valentine's Day? justice 0.111111111111 What is Valentine's Day? -> $x: ($x, cause, valentine 's day) -> (justice, causes On, Valentine?s Day) -> justice (6495ms) What is Valentine's Day? George 0.11111111111 What is Valentine's Day? -> $x: ($x, re, valentine 's day) -> (George, re-enacted, their Valentine?s Day wedding) -> George (6636ms) What is Valentine's Day? sale 0.11111111111 What is Valentine's Day? -> $x: ($x, re, valentine 's day) -> (sale, was re-released on, Valentine?s Day) -> sale (6636ms) What is Valentine's Day? New Year?s 0.11111111111 What is Valentine's Day? -> $x: ($x, re, valentine 's day) -> (New Year?s, has passed?you?re waiting for, Valentine?s Day) -> New Year?s (6636ms) What is Valentine's Day? Cory Monteith 3.999911513119514E-12 What is Valentine's Day? -> $x: ($x, date be, valentine 's) -> (Cory Monteith, are dating after, spending Valentine?s Day) -> Cory Monteith (6636ms) What is Valentine's Day? Ilford 9.999778782798785E-13 What is Valentine's Day? -> $x: ($x, happen in, valentine 's) -> (Ilford, is happening in, Valentine?s Park) -> Ilford (6636ms) What is Valentine's Day? 2009 -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (2009, Take part in, the new Valentine?s Day quest) -> 2009 (6689ms) What is Valentine's Day? good chocolate -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (good chocolate, is involved in, Valentine?s Day) -> good chocolate (6636ms) What is Valentine's Day? Bill -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Bill, stood in, the long Valentine?s Day line) -> Bill (6706ms) What is Valentine's Day? The stores -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (The stores, have been in, full-on Valentine?s Day garb) -> The stores (6689ms) What is Valentine's Day? The same message -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (The same message, is used in, Valentine?s Day cards) -> The same message (6706ms) What is Valentine's Day? Bangkok -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Bangkok, played a part in, the Valentine?s Day Bombing) -> Bangkok (6672ms) What is Valentine's Day? the day -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (the day, appear in, Ann Heinrich?s Valentine?s Day) -> the day (6723ms) What is Valentine's Day? The Love -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (The Love, is in, the Air Valentine?s Day Event) -> The Love (6706ms) What is Valentine's Day? Hill -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Hill, will star in, a hillarous Valentine?s Day spot set) -> Hill (6706ms) What is Valentine's Day? Lautner -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Lautner, can be seen next in, ?Valentine?s Day ?) -> Lautner (6689ms) What is Valentine's Day? UPS -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (UPS, plays a big part in delivering, Valentine?s Day) -> UPS (6706ms) What is Valentine's Day? a professional actor -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (a professional actor, will appear in, ?Valentine?s Day) -> a professional actor (6654ms) What is Valentine's Day? 28 % -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (28 %, take part in, our Valentine?s Day social experiment) -> 28 % (6723ms) What is Valentine's Day? Anoop Desai -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Anoop Desai, says in, his special Valentine?s Day video) -> Anoop Desai (6672ms) What is Valentine's Day? a special reception -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (a special reception, held in, observance of Valentine 's Day) -> a special reception (6654ms) What is Valentine's Day? the hottest women -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (the hottest women, is staring in, the new movie Valentine?s Day) -> the hottest women (6654ms) What is Valentine's Day? carashultz -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (carashultz, Find out in, his Valentine?s Day IM interview) -> carashultz (6706ms) What is Valentine's Day? Even Basil Thyme -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Even Basil Thyme, is in, the Valentine?s day spirit) -> Even Basil Thyme (6672ms) What is Valentine's Day? a Gamorrean Guard -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (a Gamorrean Guard, Get in, the Valentine?s Day spirit) -> a Gamorrean Guard (6654ms) What is Valentine's Day? Scott -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Scott, walked in on, Valentine?s day) -> Scott (6636ms) What is Valentine's Day? the most common gift -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (the most common gift, found in, most Valentine?s Day) -> the most common gift (6672ms) What is Valentine's Day? the kids -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (the kids, are coloring in, this Valentine?s Day coloring page) -> the kids (6689ms) What is Valentine's Day? Gas Stations -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Gas Stations, are in, the Valentine?s Day Mood) -> Gas Stations (6689ms) What is Valentine's Day? Swift -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Swift, had a small role in, Valentine?s Day) -> Swift (6706ms) What is Valentine's Day? 2012 -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (2012, fits in nicely for, Valentine?s Day) -> 2012 (6706ms) What is Valentine's Day? Northern Tool -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Northern Tool, did in, their Valentine?s Day campaign) -> Northern Tool (6706ms) What is Valentine's Day? An all-star ensemble cast -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (An all-star ensemble cast, comes together in, ?Valentine?s Day) -> An all-star ensemble cast (6636ms) What is Valentine's Day? Charlie Brown -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Charlie Brown, lamented in, the Valentine?s Day cartoon special) -> Charlie Brown (6654ms) What is Valentine's Day? the apps -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (the apps, found in, a ?Valentine?s Day) -> the apps (6689ms) What is Valentine's Day? VIRTUAL LOVE -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (VIRTUAL LOVE, IS IN, THE AIR THIS VALENTINE?S DAY) -> VIRTUAL LOVE (6654ms) What is Valentine's Day? February -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (February, are all tied in to, Valentine?s Day) -> February (6654ms) What is Valentine's Day? ? co-founder Alex Mehr -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (? co-founder Alex Mehr, said in, a Valentine?s Day interview) -> ? co-founder Alex Mehr (6706ms) What is Valentine's Day? Epic Fail -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Epic Fail, is participating in, the Valentine?s Day Sex Drive) -> Epic Fail (6706ms) What is Valentine's Day? Miller -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Miller, appeared in, Valentine?s Day) -> Miller (6636ms) What is Valentine's Day? a best-dressed -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (a best-dressed, integrate in, Valentine?s Day attire) -> a best-dressed (6636ms) What is Valentine's Day? 3. Host -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (3. Host, participate in, a Valentine?s Day event) -> 3. Host (6706ms) What is Valentine's Day? a character -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (a character, appeared in, Valentine?s Day) -> a character (6689ms) What is Valentine's Day? charset=UTF-8 Love -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (charset=UTF-8 Love, Is in, the Air ? Celebrate Valentine?s Day) -> charset=UTF-8 Love (6636ms) What is Valentine's Day? The best restaurants -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (The best restaurants, are booked in, advance of Valentine 's Day) -> The best restaurants (6706ms) What is Valentine's Day? 2011?This story -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (2011?This story, is just in for, Valentine?s Day) -> 2011?This story (6689ms) What is Valentine's Day? the older girls -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (the older girls, were knee-deep in, Valentine?s Day celebrations) -> the older girls (6672ms) What is Valentine's Day? the project -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (the project, could result in, a touching Valentine?s Day gesture) -> the project (6636ms) What is Valentine's Day? children -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (children, are very much involved in, Valentine?s Day) -> children (6672ms) What is Valentine's Day? Gap -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Gap, had a starring role in, ?Glee?s ? Valentine?s Day episode) -> Gap (6689ms) What is Valentine's Day? the little ones -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (the little ones, indulge in, a special Valentine?s Day treat) -> the little ones (6689ms) What is Valentine's Day? Don?t -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Don?t, buy in to, the Valentine?s Day consumerist scam) -> Don?t (6636ms) What is Valentine's Day? the gift -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (the gift, arrives in, time for Valentine 's Day) -> the gift (6706ms) What is Valentine's Day? Each cookie greeting -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Each cookie greeting, is shipped in, a Valentine?s Day box) -> Each cookie greeting (6636ms) What is Valentine's Day? customers -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (customers, came in for, Valentine?s Day) -> customers (6654ms) What is Valentine's Day? fans -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (fans, send in, their most cringe-worthy Valentine?s Day stories) -> fans (6689ms) What is Valentine's Day? Consumerism -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Consumerism, is inherent in, the commercial Valentine?s Day) -> Consumerism (6672ms) What is Valentine's Day? holidaymakers -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (holidaymakers, want to indulge in, Valentine 's Day) -> holidaymakers (6636ms) What is Valentine's Day? Amsterdam -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Amsterdam, had unwittingly come in on, Valentine?s Day) -> Amsterdam (6654ms) What is Valentine's Day? Bucktown -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Bucktown, puts the heart in, Valentine?s Day) -> Bucktown (6689ms) What is Valentine's Day? wineries -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (wineries, are also getting in, the Valentine?s Day spirit) -> wineries (6654ms) What is Valentine's Day? reservations -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (reservations, have been quickly coming in for, Valentine?s Day) -> reservations (6706ms) What is Valentine's Day? Singles -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Singles, are even participating in, Valentine?s Day) -> Singles (6654ms) What is Valentine's Day? TOMS Valentine Classic Shoes -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (TOMS Valentine Classic Shoes, Are In, ! Valentine?s Day) -> TOMS Valentine Classic Shoes (6672ms) What is Valentine's Day? the wedding -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (the wedding, is celebrated in, the Valentine?s Day) -> the wedding (6689ms) What is Valentine's Day? Characters -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Characters, log in on, Valentine?s Day) -> Characters (6672ms) What is Valentine's Day? American households -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (American households, typically participate in, Valentine?s Day) -> American households (6672ms) What is Valentine's Day? ? Tarzan? -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (? Tarzan?, can be heard in, the Valentine?s Day edition) -> ? Tarzan? (6672ms) What is Valentine's Day? Patients and staff -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Patients and staff, will move in on, Valentine?s Day) -> Patients and staff (6654ms) What is Valentine's Day? The place -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (The place, was decorated in, red and pink Valentine?s Day colors) -> The place (6689ms) What is Valentine's Day? A love story -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (A love story, released in, time for Valentine 's Day) -> A love story (6672ms) What is Valentine's Day? Children -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Children, can take part in, Drop-in Valentine?s Day Crafts) -> Children (6672ms) What is Valentine's Day? Robin ?Sex Therapist ? Thicke -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Robin ?Sex Therapist ? Thicke, will be in, town Valentine?s Day) -> Robin ?Sex Therapist ? Thicke (6654ms) What is Valentine's Day? Sunday visitors -0.0 What is Valentine's Day? -> $x: ($x, in, valentine 's day) -> (Sunday visitors, can take part in, Victorine?s Valentine?s Day) -> Sunday visitors (6672ms) What is Valentine's Day? 2012 My grandparents -0.11111111110600003 What is Valentine's Day? -> $x: ($x, marry, valentine 's) -> (2012 My grandparents, were married on, Valentine?s Day) -> 2012 My grandparents (6723ms) What is Valentine's Day? Cane and Lily -0.11111111110600003 What is Valentine's Day? -> $x: ($x, marry, valentine 's) -> (Cane and Lily, will be getting married on, Valentine?s Day) -> Cane and Lily (6723ms) What is Valentine's Day? The couple -0.11111111110600003 What is Valentine's Day? -> $x: ($x, marry, valentine 's) -> (The couple, was actually married on, Valentine?s Day) -> The couple (6740ms) What is Valentine's Day? two players -0.11111111110600003 What is Valentine's Day? -> $x: ($x, marry, valentine 's) -> (two players, get married during, Valentine?s event) -> two players (6723ms) What is Valentine's Day? the newlyweds -0.11111111110600003 What is Valentine's Day? -> $x: ($x, marry, valentine 's) -> (the newlyweds, were married on, Valentine?s Day) -> the newlyweds (6723ms) What is Valentine's Day? a cute charm -0.11111111110600003 What is Valentine's Day? -> $x: ($x, wear, valentine 's) -> (a cute charm, can be worn during, Valentine 's Day) -> a cute charm (6740ms) What is Valentine's Day? Kellogg and Curry -0.11111111110600003 What is Valentine's Day? -> $x: ($x, marry, valentine 's) -> (Kellogg and Curry, were married on, Valentine?s Day) -> Kellogg and Curry (6723ms) What is Valentine's Day? the most -0.11111111110600003 What is Valentine's Day? -> $x: ($x, wear, valentine 's) -> (the most, wear, Valentine?s-themed prints) -> the most (6740ms) What is Valentine's Day? the young man -0.11111111110600003 What is Valentine's Day? -> $x: ($x, marry, valentine 's) -> (the young man, would have been married on, Valentine?s Day) -> the young man (6723ms) What is Valentine's Day? couples -0.11111111110600003 What is Valentine's Day? -> $x: ($x, marry, valentine 's) -> (couples, get married on, Valentine?s Day) -> couples (6723ms) What is Valentine's Day? pink -0.11111111110600003 What is Valentine's Day? -> $x: ($x, wear, valentine 's) -> (pink, can be worn on, Valentine?s Day or weddings) -> pink (6740ms) What is Valentine's Day? ?The ultimate memory -0.11111111110600003 What is Valentine's Day? -> $x: ($x, marry, valentine 's) -> (?The ultimate memory, was getting married on, Valentine?s Day) -> ?The ultimate memory (6723ms) What is Valentine's Day? Joe -0.11111111110600003 What is Valentine's Day? -> $x: ($x, wear, valentine 's) -> (Joe, are both wearing red ties for, the Valentine?s Day theme) -> Joe (6723ms) What is Valentine's Day? Cindy Crawford -0.11111111110600003 What is Valentine's Day? -> $x: ($x, wear, valentine 's) -> (Cindy Crawford, wears red for, Valentine?s day) -> Cindy Crawford (6723ms) What is Valentine's Day? the couple -0.11111111110600003 What is Valentine's Day? -> $x: ($x, marry, valentine 's) -> (the couple, married on, Valentine 's Day) -> the couple (6740ms) What is Valentine's Day? brides -0.11111111110600003 What is Valentine's Day? -> $x: ($x, marry, valentine 's) -> (brides, marry at, Valentine?s day) -> brides (6723ms) What is Valentine's Day? Fatima Fasihuddin -0.11111111110600003 What is Valentine's Day? -> $x: ($x, marry, valentine 's) -> (Fatima Fasihuddin, were married on, Valentine?s Day 2003) -> Fatima Fasihuddin (6723ms) What is Valentine's Day? students -0.11111111110600003 What is Valentine's Day? -> $x: ($x, wear, valentine 's) -> (students, are encouraged to wear, Valentine?s Day colors) -> students (6740ms) What is Valentine's Day? initiative petitions -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, have to do with, initiative petitions) -> initiative petitions (6757ms) What is Valentine's Day? a bit Ho Hum -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does get, a bit Ho Hum) -> a bit Ho Hum (6757ms) What is Valentine's Day? a trite -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does n?t have to be, a trite) -> a trite (6773ms) What is Valentine's Day? eating -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does n?t have to be about, eating) -> eating (6804ms) What is Valentine's Day? Canada -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does n?t actually exist in, Canada) -> Canada (6804ms) What is Valentine's Day? stress -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does n?t have to be another source of, stress) -> stress (6804ms) What is Valentine's Day? Coupons -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, Does n?t Like, Coupons) -> Coupons (6804ms) What is Valentine's Day? choices -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (this Valentine?s Day, has to do with, choices) -> choices (6773ms) What is Valentine's Day? Roman Emperor Claudius II -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, did, Roman Emperor Claudius II) -> Roman Emperor Claudius II (6804ms) What is Valentine's Day? jewelers and florists -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, so do, jewelers and florists) -> jewelers and florists (6773ms) What is Valentine's Day? money -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (A homemade Valentine?s Day, does n?t just save, money) -> money (6789ms) What is Valentine's Day? chocolate and flowers -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does n?t need to be just, chocolate and flowers) -> chocolate and flowers (6757ms) What is Valentine's Day? the most romantic day -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does n?t have to be, the most romantic day) -> the most romantic day (6804ms) What is Valentine's Day? the Americans -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (St Valentine?s Day, did, the Americans) -> the Americans (6773ms) What is Valentine's Day? any easier -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does n?t get, any easier) -> any easier (6820ms) What is Valentine's Day? a lot -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (sure your Valentine?s Day, does n?t pass with, a lot) -> a lot (6740ms) What is Valentine's Day? an internet business -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, have to do with, an internet business) -> an internet business (6820ms) What is Valentine's Day? a wing -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day fairy, did, a wing) -> a wing (6773ms) What is Valentine's Day? the end -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does n?t need to be, the end) -> the end (6788ms) What is Valentine's Day? a fortune -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does n?t have to cost, a fortune) -> a fortune (6789ms) What is Valentine's Day? flowers -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day decorations, can be done with, flowers) -> flowers (6740ms) What is Valentine's Day? yesterday -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day How?d everyone, do, yesterday) -> yesterday (6789ms) What is Valentine's Day? a little dance -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (?Happy Valentine?s Day, do, a little dance) -> a little dance (6788ms) What is Valentine's Day? A friend-of-a-friend -0.111111111111 What is Valentine's Day? -> $x: ($x, describe, valentine 's day) -> (A friend-of-a-friend, described, Valentine?s Day) -> A friend-of-a-friend (6740ms) What is Valentine's Day? Christmas Day -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does n?t have a thing on, Christmas Day) -> Christmas Day (6804ms) What is Valentine's Day? the shirts -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, so did, the shirts) -> the shirts (6740ms) What is Valentine's Day? a variety -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (This perfect Valentine?s Day touch, can be done with, a variety) -> a variety (6773ms) What is Valentine's Day? a holiday -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, still does n?t merit, a holiday) -> a holiday (6773ms) What is Valentine's Day? the cacao bean -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does n?t have to be all about, the cacao bean) -> the cacao bean (6757ms) What is Valentine's Day? the time -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, did n?t exist during, the time) -> the time (6773ms) What is Valentine's Day? a valentine -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (valentine?s day, do i have, a valentine) -> a valentine (6740ms) What is Valentine's Day? rules -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Happy Valentine?s Day ! February 9 , 2009, Do, rules) -> rules (6757ms) What is Valentine's Day? slaves -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, have to do with, slaves) -> slaves (6820ms) What is Valentine's Day? Sunday -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, do something special on, Sunday) -> Sunday (6820ms) What is Valentine's Day? a Christian-dominated society -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does come from, a Christian-dominated society) -> a Christian-dominated society (6757ms) What is Valentine's Day? suck -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, really does, suck) -> suck (6820ms) What is Valentine's Day? the flavor -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does n?t hold back on, the flavor) -> the flavor (6789ms) What is Valentine's Day? 4 days -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day dinner, was done about, 4 days) -> 4 days (6740ms) What is Valentine's Day? Super Macro?s -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (my Valentines Day Lilly?s ?, you?ll need to do, Super Macro?s) -> Super Macro?s (6789ms) What is Valentine's Day? gibbons -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, do, gibbons) -> gibbons (6757ms) What is Valentine's Day? sinful pagan practices -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does have its basis in, sinful pagan practices) -> sinful pagan practices (6740ms) What is Valentine's Day? Victoria?s Secret -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (a special Valentine?s Day gifts page, so do, Victoria?s Secret) -> Victoria?s Secret (6773ms) What is Valentine's Day? terms -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (our Valentine?s Day, did n?t even come close in, terms) -> terms (6757ms) What is Valentine's Day? Christmas -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine ?s Day, is only out done by, Christmas) -> Christmas (6804ms) What is Valentine's Day? a date -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s day, does n?t dictate, a date) -> a date (6773ms) What is Valentine's Day? options -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does n?t leave a lot of, options) -> options (6740ms) What is Valentine's Day? A Tapas Fake -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, Does, A Tapas Fake) -> A Tapas Fake (6820ms) What is Valentine's Day? Ophelia -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does, Ophelia) -> Ophelia (6773ms) What is Valentine's Day? 5 Second Networking -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s day advice, have to do with, 5 Second Networking) -> 5 Second Networking (6789ms) What is Valentine's Day? politics -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, got to do with, politics) -> politics (6773ms) What is Valentine's Day? flowers or chocolate -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, did n?t get, flowers or chocolate) -> flowers or chocolate (6757ms) What is Valentine's Day? a routine -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does n?t have to follow, a routine) -> a routine (6804ms) What is Valentine's Day? William -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (a Valentine?s Day balloon, did n?t give one to, William) -> William (6804ms) What is Valentine's Day? testosterone -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, probably has something to do with, testosterone) -> testosterone (6788ms) What is Valentine's Day? the ACLU -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does, the ACLU) -> the ACLU (6789ms) What is Valentine's Day? Valentine?s Day 2011 -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day 2010, so did, Valentine?s Day 2011) -> Valentine?s Day 2011 (6757ms) What is Valentine's Day? a whole new level -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, really does take things to, a whole new level) -> a whole new level (6820ms) What is Valentine's Day? overpriced roses -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, Do, overpriced roses) -> overpriced roses (6757ms) What is Valentine's Day? last year -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, did, last year) -> last year (6804ms) What is Valentine's Day? any particular style -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does n?t have, any particular style) -> any particular style (6740ms) What is Valentine's Day? equal flowers -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does n?t, equal flowers) -> equal flowers (6789ms) What is Valentine's Day? Japan -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, is done a little bit differently here in, Japan) -> Japan (6804ms) What is Valentine's Day? Cassandra -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (1 Valentine?s Day Box, Does, Cassandra) -> Cassandra (6804ms) What is Valentine's Day? a snowshoe hike -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, were doing, a snowshoe hike) -> a snowshoe hike (6804ms) What is Valentine's Day? either -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (this Valentine?s Day, does n?t put pressure on, either) -> either (6789ms) What is Valentine's Day? a lot of emotions -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine 's Day, does bring, a lot of emotions) -> a lot of emotions (6789ms) What is Valentine's Day? express love -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (my boyhood Valentine?s Day practice, did, express love) -> express love (6820ms) What is Valentine's Day? out -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine 's Day, does bring a lot of emotions, out) -> out (6773ms) What is Valentine's Day? a good message -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s Day, does have, a good message) -> a good message (6788ms) What is Valentine's Day? a box -0.111111111111 What is Valentine's Day? -> $x: (valentine 's day, do, $x) -> (Valentine?s day, does n?t come in, a box) -> a box (6804ms) What is Valentine's Day? let?s -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (let?s, do this for, Valentine?s Day) -> let?s (6937ms) What is Valentine's Day? Wyden-Ryan and Lieberman-Coburn -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Wyden-Ryan and Lieberman-Coburn, did on, Valentine?s Day) -> Wyden-Ryan and Lieberman-Coburn (6909ms) What is Valentine's Day? months -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is over for, months) -> months (6937ms) What is Valentine's Day? Share -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Share, did, Valentine?s Day) -> Share (6835ms) What is Valentine's Day? he?d -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (he?d, do something special for, Valentine?s Day) -> he?d (6923ms) What is Valentine's Day? older couples -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (older couples, do on, Valentine?s Day) -> older couples (6937ms) What is Valentine's Day? two -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is made for, two) -> two (6923ms) What is Valentine's Day? a christian saint and we?re jewish -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (valentine?s day, is for, a christian saint and we?re jewish) -> a christian saint and we?re jewish (6894ms) What is Valentine's Day? longer-term relationships -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (longer-term relationships, do more for, Valentine?s Day) -> longer-term relationships (6894ms) What is Valentine's Day? a wedding -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s day, is the best day for, a wedding) -> a wedding (6880ms) What is Valentine's Day? Feb?ru?ary -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Feb?ru?ary, so did, Valentine?s Day) -> Feb?ru?ary (6835ms) What is Valentine's Day? nav firm TomTom -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (nav firm TomTom, got to do with, Valentine?s Day) -> nav firm TomTom (6820ms) What is Valentine's Day? the photographers -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (the photographers, do for, Valentine?s Day) -> the photographers (6909ms) What is Valentine's Day? Half term school holidays -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Half term school holidays, so does, Valentine?s Day) -> Half term school holidays (6952ms) What is Valentine's Day? a new window -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (a new window, Did, Valentine?s Day) -> a new window (6880ms) What is Valentine's Day? fitness -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (fitness, have to do with, Valentine?s Day) -> fitness (6952ms) What is Valentine's Day? a day -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, are just happy for, a day) -> a day (6894ms) What is Valentine's Day? Lovers -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is a day for, Lovers) -> Lovers (6880ms) What is Valentine's Day? a Christian saint -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is for, a Christian saint) -> a Christian saint (6850ms) What is Valentine's Day? pumps -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is only for, pumps) -> pumps (6952ms) What is Valentine's Day? Loving -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, Is For, Loving) -> Loving (6909ms) What is Valentine's Day? weeks -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is a recipe for, weeks) -> weeks (6880ms) What is Valentine's Day? the question -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (the question, do for, Valentine?s Day) -> the question (6850ms) What is Valentine's Day? a special romantic holiday -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s day, is a key for, a special romantic holiday) -> a special romantic holiday (6952ms) What is Valentine's Day? close friends -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (close friends, are doing for, Valentine?s Day) -> close friends (6880ms) What is Valentine's Day? wimps -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (?Valentine?s Day, is for, wimps) -> wimps (7057ms) What is Valentine's Day? Analytics -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Analytics, do, Valentine?s Day) -> Analytics (6850ms) What is Valentine's Day? Carriage Works -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Carriage Works, did, Valentine?s Day) -> Carriage Works (6835ms) What is Valentine's Day? kids -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is pure fun for, kids) -> kids (6850ms) What is Valentine's Day? the same folks -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (the same folks, did, Valentine?s Day) -> the same folks (6909ms) What is Valentine's Day? the GIRLS -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is the day for, the GIRLS) -> the GIRLS (6820ms) What is Valentine's Day? GA -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (GA, did on, Valentine?s Day) -> GA (6909ms) What is Valentine's Day? wolves -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (wolves, have to do with, Valentine?s Day) -> wolves (6909ms) What is Valentine's Day? Summer Camp Summer Camp -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Summer Camp Summer Camp, did an interview about, Valentine?s Day) -> Summer Camp Summer Camp (7057ms) What is Valentine's Day? Tina and Mike -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is particularly meaningful for, Tina and Mike) -> Tina and Mike (6850ms) What is Valentine's Day? any idea -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (any idea, you?ll do for, Valentine?s Day) -> any idea (7058ms) What is Valentine's Day? suckers -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is for, suckers) -> suckers (7057ms) What is Valentine's Day? are?PLUSHIES -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is known for, are?PLUSHIES) -> are?PLUSHIES (6835ms) What is Valentine's Day? the place -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (the place, will be nicely done on, Valentine?s Day) -> the place (6850ms) What is Valentine's Day? the Dead?which -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (the Dead?which, has nothing to do with, Valentine?s day) -> the Dead?which (6923ms) What is Valentine's Day? fragrances -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (fragrances, did really well for, Valentine?s Day) -> fragrances (6938ms) What is Valentine's Day? lovers?lovers -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is a day for, lovers?lovers) -> lovers?lovers (6835ms) What is Valentine's Day? pastry chefs -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (pastry chefs, do up, Valentine?s Day) -> pastry chefs (6937ms) What is Valentine's Day? the mature minds -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is for, the mature minds) -> the mature minds (6923ms) What is Valentine's Day? lovin? -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is for, lovin?) -> lovin? (6923ms) What is Valentine's Day? Uniforme -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Uniforme, do, Hornets Valentine?s Day) -> Uniforme (7057ms) What is Valentine's Day? singles -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is for, singles) -> singles (6894ms) What is Valentine's Day? the hopeless romantics -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is for, the hopeless romantics) -> the hopeless romantics (6835ms) What is Valentine's Day? one day -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (valentine?s day, is only for, one day) -> one day (6923ms) What is Valentine's Day? a single young woman -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (a single young woman, do, this Valentine?s Day) -> a single young woman (6865ms) What is Valentine's Day? much my cutie pies -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (much my cutie pies, did ?, Happy Valentine?s Day ?) -> much my cutie pies (6894ms) What is Valentine's Day? Fenton -0.111111111112 What is Valentine's Day? -> $x: ($x, produce, valentine 's day) -> (Fenton, only produced this basket for, Valentine 's Day) -> Fenton (6880ms) What is Valentine's Day? TOM -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (TOM, have to do with, Valentine?s Day) -> TOM (6835ms) What is Valentine's Day? the most part -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is for, the most part) -> the most part (7058ms) What is Valentine's Day? the National Post -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (the National Post, has nothing to do with, Valentine?s Day) -> the National Post (6865ms) What is Valentine's Day? men -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (men, do for, Valentine?s Day) -> men (7057ms) What is Valentine's Day? ? love and romance -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is known for, ? love and romance) -> ? love and romance (6894ms) What is Valentine's Day? The site -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (The site, does big business around, Valentine?s Day) -> The site (6952ms) What is Valentine's Day? the ?funny ? cards -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, has been reserved for, the ?funny ? cards) -> the ?funny ? cards (6820ms) What is Valentine's Day? ?Um -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (?Um, like to do on, Valentine?s Day) -> ?Um (6952ms) What is Valentine's Day? personal relationships -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is for, personal relationships) -> personal relationships (6909ms) What is Valentine's Day? the economy -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is great for, the economy) -> the economy (6894ms) What is Valentine's Day? Eleanor -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Eleanor, did, this Valentine?s Day) -> Eleanor (6835ms) What is Valentine's Day? Mr. Smith -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Mr. Smith, were doing for, Valentine?s Day) -> Mr. Smith (6937ms) What is Valentine's Day? florists -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, was a big day for, florists) -> florists (6937ms) What is Valentine's Day? a good chance we?ll -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (a good chance we?ll, do so again on, Valentine?s Day) -> a good chance we?ll (6850ms) What is Valentine's Day? 200 million roses -0.111111111112 What is Valentine's Day? -> $x: ($x, produce, valentine 's day) -> (200 million roses, were produced for, Valentine?s Day 2011) -> 200 million roses (6835ms) What is Valentine's Day? any vendor selling flowers -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is a great day for, any vendor selling flowers) -> any vendor selling flowers (6894ms) What is Valentine's Day? the young -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is for, the young) -> the young (6820ms) What is Valentine's Day? a family -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (a family, will do for, Valentine?s Day) -> a family (6835ms) What is Valentine's Day? Chicago -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Chicago, does, Valentine?s Day) -> Chicago (6894ms) What is Valentine's Day? Nearly 200 million roses -0.111111111112 What is Valentine's Day? -> $x: ($x, produce, valentine 's day) -> (Nearly 200 million roses, are produced for, Valentine?s Day) -> Nearly 200 million roses (6909ms) What is Valentine's Day? single people -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is for, single people) -> single people (6865ms) What is Valentine's Day? Katy -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Katy, is doing to, Valentine?s Day) -> Katy (6835ms) What is Valentine's Day? getaway -0.111111111112 What is Valentine's Day? -> $x: ($x, define, valentine 's day) -> (getaway, together can define, a truly memorable Valentine?s Day) -> getaway (6880ms) What is Valentine's Day? February 14 -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (February 14, does, Valentine?s Day mean) -> February 14 (6923ms) What is Valentine's Day? everybody -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is for, everybody) -> everybody (6894ms) What is Valentine's Day? New York City -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (New York City, did for, Valentine?s Day) -> New York City (6923ms) What is Valentine's Day? the girls -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is more for, the girls) -> the girls (6850ms) What is Valentine's Day? print -0.111111111112 What is Valentine's Day? -> $x: ($x, produce, valentine 's day) -> (print, produce, Valentine?s Day cards) -> print (7057ms) What is Valentine's Day? sweethearts -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is a day for, sweethearts) -> sweethearts (6937ms) What is Valentine's Day? teenagers -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is an occasion for, teenagers) -> teenagers (6835ms) What is Valentine's Day? sweeties -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is for, sweeties) -> sweeties (6909ms) What is Valentine's Day? Casino -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Casino, is doing for, Valentine?s Day) -> Casino (6923ms) What is Valentine's Day? the makeup -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (the makeup, is done for, Valentine?s Day) -> the makeup (6923ms) What is Valentine's Day? Mrs. HYA -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Mrs. HYA, are doing for, Valentine?s Day) -> Mrs. HYA (6937ms) What is Valentine's Day? girls -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is for, girls) -> girls (6923ms) What is Valentine's Day? Spanking -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Spanking, Have to do with, Valentine?s Day) -> Spanking (6937ms) What is Valentine's Day? Only chocolate -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Only chocolate, will do on, Valentine?s Day) -> Only chocolate (7058ms) What is Valentine's Day? two people -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Days, is for, two people) -> two people (6880ms) What is Valentine's Day? Dr Sketchy?s -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Dr Sketchy?s, Does, Valentine?s Day) -> Dr Sketchy?s (6952ms) What is Valentine's Day? Indoors -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Indoors, always does something special for, Valentine?s Day) -> Indoors (6850ms) What is Valentine's Day? the top candle manufacturers -0.111111111112 What is Valentine's Day? -> $x: ($x, produce, valentine 's day) -> (the top candle manufacturers, produce, Valentine?s Day scents) -> the top candle manufacturers (6894ms) What is Valentine's Day? an evangelical perspective -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (an evangelical perspective, Did, Valentine?s Day Begin) -> an evangelical perspective (6923ms) What is Valentine's Day? a fun loving couple -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (a fun loving couple, does n?t take, Valentine?s Day) -> a fun loving couple (6952ms) What is Valentine's Day? green -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (green, have to do with, Valentine?s Day) -> green (6865ms) What is Valentine's Day? exchanging -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is a day for, exchanging) -> exchanging (6865ms) What is Valentine's Day? presents -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (presents, do anything special for, Valentine?s Day) -> presents (6865ms) What is Valentine's Day? guys -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (guys, want to do on, Valentine?s Day) -> guys (6909ms) What is Valentine's Day? Ice .com -0.111111111112 What is Valentine's Day? -> $x: ($x, produce, valentine 's day) -> (Ice .com, produced last year for, Valentine?s Day cost) -> Ice .com (6835ms) What is Valentine's Day? trouble -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (trouble, do for, Valentine?s Day) -> trouble (6850ms) What is Valentine's Day? Ruby?s class -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Ruby?s class, did n?t celebrate, Valentine?s Day) -> Ruby?s class (6880ms) What is Valentine's Day? the simp -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, was quite succesful for, the simp) -> the simp (6938ms) What is Valentine's Day? but?you -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (but?you, did get her something on, Valentine?s Day) -> but?you (6952ms) What is Valentine's Day? every lovers -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is special for, every lovers) -> every lovers (6952ms) What is Valentine's Day? a recipe -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (valentine?s day, is looking for, a recipe) -> a recipe (6820ms) What is Valentine's Day? a few hours -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is usually fun for, a few hours) -> a few hours (6952ms) What is Valentine's Day? a guy -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (a guy, did something really stupid on, Valentine?s Day) -> a guy (6865ms) What is Valentine's Day? a single guy -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (a single guy, do on, Valentine?s Day) -> a single guy (6835ms) What is Valentine's Day? February 3. Ashley?s birthday -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (February 3. Ashley?s birthday, did, Valentine?s Day) -> February 3. Ashley?s birthday (6938ms) What is Valentine's Day? The bookmark -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (The bookmark, has nothing to do with, Valentine?s Day) -> The bookmark (6952ms) What is Valentine's Day? families Search -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is a day for, families Search) -> families Search (6909ms) What is Valentine's Day? Valentines Day -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (Valentines Day, did, Valentine?s Day turn) -> Valentines Day (6909ms) What is Valentine's Day? the business -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s Day, is tops for, the business) -> the business (6952ms) What is Valentine's Day? an hour -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (an hour, do your part to make, Valentine?s Day) -> an hour (6937ms) What is Valentine's Day? the homeless -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (the homeless, will be done around, Valentine?s Day) -> the homeless (6850ms) What is Valentine's Day? gulp -0.111111111112 What is Valentine's Day? -> $x: ($x, exactly be, valentine 's day) -> (gulp, exactly is, the best Valentine?s Day gift) -> gulp (6909ms) What is Valentine's Day? here and -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (here and, there did on, Valentine?s Day) -> here and (6835ms) What is Valentine's Day? greeting card companies -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (greeting card companies, did n?t create, Valentine?s Day) -> greeting card companies (6865ms) What is Valentine's Day? celebration -0.111111111112 What is Valentine's Day? -> $x: (valentine 's day, be for, $x) -> (Valentine?s day, is a cause for, celebration) -> celebration (6894ms) What is Valentine's Day? the servers -0.111111111112 What is Valentine's Day? -> $x: ($x, do, valentine 's day) -> (the servers, do have to work on, Valentine?s Day) -> the servers (6937ms) What is Valentine's Day? the orang-utan , -0.222222222222 What is Valentine's Day? -> $x: ($x, found, valentine 's day) -> (the orang-utan ,, find a date for, Valentine?s Day ? Primatology) -> the orang-utan , (7120ms) What is Valentine's Day? Info -0.222222222222 What is Valentine's Day? -> $x: ($x, found, valentine 's day) -> (Info, found IS available for, Valentine?s Day) -> Info (7120ms) What is Valentine's Day? a four-course menu -0.222222222222 What is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (a four-course menu, created just for, Valentine?s Day) -> a four-course menu (7128ms) What is Valentine's Day? OCD kindergarten teacher Johanna -0.222222222222 What is Valentine's Day? -> $x: ($x, hate, valentine 's day) -> (OCD kindergarten teacher Johanna, hates, Valentine?s Day) -> OCD kindergarten teacher Johanna (7102ms) What is Valentine's Day? Americans -0.222222222222 What is Valentine's Day? -> $x: ($x, hate, valentine 's day) -> (Americans, have a love-hate relationship with, Valentine?s Day) -> Americans (7080ms) What is Valentine's Day? NC Talulla?s -0.222222222222 What is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (NC Talulla?s, has created, a delicious Valentine?s Day menu) -> NC Talulla?s (7120ms) What is Valentine's Day? Orchid Diva -0.222222222222 What is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (Orchid Diva, creates giving, Valentine?s Day) -> Orchid Diva (7080ms) What is Valentine's Day? Users -0.222222222222 What is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (Users, can create, magnificent Valentine?s Day cards) -> Users (7111ms) What is Valentine's Day? Shoppers -0.222222222222 What is Valentine's Day? -> $x: ($x, found, valentine 's day) -> (Shoppers, can find all of, the newest Valentine?s Day cards) -> Shoppers (7069ms) What is Valentine's Day? Lindy Greaver -0.222222222222 What is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (Lindy Greaver, create floral arrangements for, Valentine?s Day) -> Lindy Greaver (7091ms) What is Valentine's Day? Visit us -0.222222222222 What is Valentine's Day? -> $x: ($x, found, valentine 's day) -> (Visit us, find out about, our Valentine?s Day specials) -> Visit us (7128ms) What is Valentine's Day? Connect -0.222222222222 What is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (Connect, create, a Valentine?s Day craft) -> Connect (7111ms) What is Valentine's Day? the second Tuesday -0.222222222222 What is Valentine's Day? -> $x: ($x, happen to, valentine 's day) -> (the second Tuesday, happens to be, Valentine?s Day) -> the second Tuesday (7128ms) What is Valentine's Day? the next one -0.222222222222 What is Valentine's Day? -> $x: ($x, deal with, valentine 's day) -> (the next one, deals with, pain & Valentine?s Day) -> the next one (7111ms) What is Valentine's Day? Seems Apple -0.222222222222 What is Valentine's Day? -> $x: ($x, found, valentine 's day) -> (Seems Apple, found love on, Valentine?s Day) -> Seems Apple (7111ms) What is Valentine's Day? Bristol Toyota Scion -0.222222222222 What is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (Bristol Toyota Scion, create, a Valentine?s Day email campaign) -> Bristol Toyota Scion (7080ms) What is Valentine's Day? Virginia innkeepers -0.222222222222 What is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (Virginia innkeepers, help create, a special Valentine?s Day) -> Virginia innkeepers (7091ms) What is Valentine's Day? time -0.222222222222 What is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (time, create, a Valentine?s Day look) -> time (7080ms) What is Valentine's Day? a ?cuddle ? kind -0.222222222222 What is Valentine's Day? -> $x: ($x, hate, valentine 's day) -> (a ?cuddle ? kind, hates, Valentine?s day) -> a ?cuddle ? kind (7091ms) What is Valentine's Day? Dove -0.222222222222 What is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (Dove, creates, Valentine?s Day tweet screen Dove) -> Dove (7069ms) What is Valentine's Day? Kate -0.222222222222 What is Valentine's Day? -> $x: ($x, hate, valentine 's day) -> (Kate, too hates, Valentine?s Day) -> Kate (7069ms) What is Valentine's Day? photo buffs -0.222222222222 What is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (photo buffs, can create, Valentine 's Day greetings) -> photo buffs (7069ms) What is Valentine's Day? Cats Fly Casey -0.222222222222 What is Valentine's Day? -> $x: ($x, hate, valentine 's day) -> (Cats Fly Casey, hates, Valentine?s Day but Tyler) -> Cats Fly Casey (7069ms) What is Valentine's Day? Women -0.222222222222 What is Valentine's Day? -> $x: ($x, found, valentine 's day) -> (Women, especially find being alone on, Valentine?s Day) -> Women (7111ms) What is Valentine's Day? just -0.222222222222 What is Valentine's Day? -> $x: ($x, happen to, valentine 's day) -> (just, so happened to be on, Valentine?s Day) -> just (7111ms) What is Valentine's Day? Guests -0.222222222222 What is Valentine's Day? -> $x: ($x, found, valentine 's day) -> (Guests, can find bags full of, Valentine?s Day candy) -> Guests (7091ms) What is Valentine's Day? We?ve -0.222222222222 What is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (We?ve, created, a new Valentine?s Day section) -> We?ve (7120ms) What is Valentine's Day? HEYLOOK -0.222222222222 What is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (HEYLOOK, created, this quick Valentine?s Day gift packaging) -> HEYLOOK (7080ms) What is Valentine's Day? Each one -0.222222222222 What is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (Each one, creates the perfect setting for, Valentine?s Day) -> Each one (7091ms) What is Valentine's Day? Chef Peter -0.222222222222 What is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (Chef Peter, has created, a special Valentine?s Day menu) -> Chef Peter (7120ms) What is Valentine's Day? Etsy -0.222222222222 What is Valentine's Day? -> $x: ($x, found, valentine 's day) -> (Etsy, finds for, Valentine?s Day admin Shannon) -> Etsy (7091ms) What is Valentine's Day? epoch -0.222222222222 What is Valentine's Day? -> $x: ($x, happen to, valentine 's day) -> (epoch, happened to fall on, Valentine?s day) -> epoch (7058ms) What is Valentine's Day? the White House -0.222222222222 What is Valentine's Day? -> $x: ($x, happen to, valentine 's day) -> (the White House, happens to be, Valentine?s Day) -> the White House (7120ms) What is Valentine's Day? cupid-themed cupcakes -0.222222222222 What is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (cupid-themed cupcakes, create, Valentine?s Day cards) -> cupid-themed cupcakes (7080ms) What is Valentine's Day? a nice bouquet -0.222222222222 What is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (a nice bouquet, created, a Valentine?s Day card) -> a nice bouquet (7058ms) What is Valentine's Day? Sant? -0.222222222222 What is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (Sant?, has created, an unbeatable Valentine?s Day Tasting Menu) -> Sant? (7058ms) What is Valentine's Day? a florist -0.222222222222 What is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (a florist, could create, a special Valentine?s day program) -> a florist (7111ms) What is Valentine's Day? humanists -0.222222222222 What is Valentine's Day? -> $x: ($x, hate, valentine 's day) -> (humanists, hate, Valentine?s Day) -> humanists (7080ms) What is Valentine's Day? The kids -0.222222222222 What is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (The kids, created, Valentine 's Day cards) -> The kids (7102ms) What is Valentine's Day? individuals -0.222222222222 What is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (individuals, have created, the Anti-Valentine?s Day celebration) -> individuals (7091ms) What is Valentine's Day? Navigation I?ve -0.222222222222 What is Valentine's Day? -> $x: ($x, hate, valentine 's day) -> (Navigation I?ve, always hated, Valentine?s Day) -> Navigation I?ve (7069ms) What is Valentine's Day? Consumers -0.222222222222 What is Valentine's Day? -> $x: ($x, found, valentine 's day) -> (Consumers, can find, the latest Valentine?s Day greetings) -> Consumers (7069ms) What is Valentine's Day? Skin Authority -0.222222222222 What is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (Skin Authority, has created, an anti-Valentine?s Day line) -> Skin Authority (7080ms) What is Valentine's Day? RH -0.222222222222 What is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (RH, has also created some amazing jewelry for, Valentine?s Day) -> RH (7091ms) What is Valentine's Day? I?ve -0.222222222222 What is Valentine's Day? -> $x: ($x, found, valentine 's day) -> (I?ve, found the true meaning of, Valentine?s NIGHT Day) -> I?ve (7111ms) What is Valentine's Day? Disney -0.222222222222 What is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (Disney, has created, a special Valentine?s Day Fun Pack) -> Disney (7120ms) What is Valentine's Day? senior Mahsa Ghahri -0.222222222222 What is Valentine's Day? -> $x: ($x, found, valentine 's day) -> (senior Mahsa Ghahri, finds, Valentine?s Day) -> senior Mahsa Ghahri (7069ms) What is Valentine's Day? Dan Winne -0.222222222222 What is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (Dan Winne, has created, a Valentine?s Day video) -> Dan Winne (7120ms) What is Valentine's Day? Jessica Biel -0.222222222222 What is Valentine's Day? -> $x: ($x, hate, valentine 's day) -> (Jessica Biel, hates, Valentine?s Day) -> Jessica Biel (7102ms) What is Valentine's Day? today?s recipe -0.222222222222 What is Valentine's Day? -> $x: ($x, happen to, valentine 's day) -> (today?s recipe, happens to be perfect for, Valentine?s Day) -> today?s recipe (7091ms) What is Valentine's Day? Culture -0.222222222222 What is Valentine's Day? -> $x: ($x, found, valentine 's day) -> (Culture, Find out about, Valentine?s Day) -> Culture (7120ms) What is Valentine's Day? you?ll -0.222222222222 What is Valentine's Day? -> $x: ($x, found, valentine 's day) -> (you?ll, aready find, Valentine?s Day candy) -> you?ll (7091ms) What is Valentine's Day? Singles Awareness Day -0.222222222222 What is Valentine's Day? -> $x: ($x, hate, valentine 's day) -> (Singles Awareness Day, hate, Valentine?s Day) -> Singles Awareness Day (7069ms) What is Valentine's Day? Kim -0.222222222222 What is Valentine's Day? -> $x: ($x, hate, valentine 's day) -> (Kim, hates, Valentine?s Day) -> Kim (7128ms) What is Valentine's Day? Financial relief -0.222222222222 What is Valentine's Day? -> $x: ($x, found, valentine 's day) -> (Financial relief, may be hard to find since, Valentine?s Day) -> Financial relief (7128ms) What is Valentine's Day? Insider -0.222222222222 What is Valentine's Day? -> $x: ($x, found, valentine 's day) -> (Insider, Find some inspiration for, Valentine?s Day) -> Insider (7111ms) What is Valentine's Day? football -0.222222222222 What is Valentine's Day? -> $x: ($x, hate, valentine 's day) -> (football, hate, Valentine?s Day) -> football (7120ms) What is Valentine's Day? the next day?which -0.222222222222 What is Valentine's Day? -> $x: ($x, happen to, valentine 's day) -> (the next day?which, happens to be, Valentine?s Day?was) -> the next day?which (7102ms) What is Valentine's Day? 12 years -0.222222222222 What is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (12 years, are invited to create, a Valentine?s Day craft) -> 12 years (7102ms) What is Valentine's Day? Evelyn Oakley -0.222222222222 What is Valentine's Day? -> $x: ($x, found, valentine 's day) -> (Evelyn Oakley, found th?, perfect unique Valentine?s Day gifts) -> Evelyn Oakley (7069ms) What is Valentine's Day? Tuesday -0.222222222222 What is Valentine's Day? -> $x: ($x, refer, valentine 's day) -> (Tuesday, referred to, Valentine?s Day) -> Tuesday (7091ms) What is Valentine's Day? Valentine?s day?i -0.222222222222 What is Valentine's Day? -> $x: ($x, hate, valentine 's day) -> (Valentine?s day?i, have a love/hate thing about, Valentine?s Day) -> Valentine?s day?i (7102ms) What is Valentine's Day? February 14th , 2009?which -0.222222222222 What is Valentine's Day? -> $x: ($x, happen to, valentine 's day) -> (February 14th , 2009?which, also happens to be, Valentine?s Day) -> February 14th , 2009?which (7069ms) What is Valentine's Day? Attendees -0.222222222222 What is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (Attendees, created, Valentine?s Day cards) -> Attendees (7091ms) What is Valentine's Day? Glamour readers -0.222222222222 What is Valentine's Day? -> $x: ($x, hate, valentine 's day) -> (Glamour readers, hate, Valentine?s Day) -> Glamour readers (7111ms) What is Valentine's Day? People either love -0.222222222222 What is Valentine's Day? -> $x: ($x, hate, valentine 's day) -> (People either love, hate, Valentine?s Day) -> People either love (7111ms) What is Valentine's Day? the Family Circus animated specials -0.222222222222 What is Valentine's Day? -> $x: ($x, deal with, valentine 's day) -> (the Family Circus animated specials, dealt with, Valentine?s Day) -> the Family Circus animated specials (7069ms) What is Valentine's Day? last week -0.222222222222 What is Valentine's Day? -> $x: ($x, happen to, valentine 's day) -> (last week, happened to be, Valentine?s Day) -> last week (7102ms) What is Valentine's Day? Heineken -0.222222222222 What is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (Heineken, has created, this Valentine?s Day Facebook App) -> Heineken (7102ms) What is Valentine's Day? a series -0.222222222222 What is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (a series, create, a mini Valentine?s Day once) -> a series (7080ms) What is Valentine's Day? a Saturday -0.222222222222 What is Valentine's Day? -> $x: ($x, happen to, valentine 's day) -> (a Saturday, also happened to be, Valentine?s Day) -> a Saturday (7120ms) What is Valentine's Day? 3:00 pm Children -0.222222222222 What is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (3:00 pm Children, will create, a Valentine?s Day Gift) -> 3:00 pm Children (7128ms) What is Valentine's Day? the Tiger 2010 -0.222222222222 What is Valentine's Day? -> $x: ($x, happen to, valentine 's day) -> (the Tiger 2010, also happened to be, Valentine?s Day) -> the Tiger 2010 (7102ms) What is Valentine's Day? Trevor Shipp My budget -0.222222222222 What is Valentine's Day? -> $x: ($x, hate, valentine 's day) -> (Trevor Shipp My budget, hates, Valentine?s Day) -> Trevor Shipp My budget (7111ms) What is Valentine's Day? The stage -0.222222222222 What is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (The stage, is created for, a romantic Valentine?s Day) -> The stage (7058ms) What is Valentine's Day? any unmarried couples -0.222222222222 What is Valentine's Day? -> $x: ($x, found, valentine 's day) -> (any unmarried couples, found together on, Valentine?s Day) -> any unmarried couples (7080ms) What is Valentine's Day? Kara -0.222222222222 What is Valentine's Day? -> $x: ($x, hate, valentine 's day) -> (Kara, hates, Valentine?s Day) -> Kara (7102ms) What is Valentine's Day? Kids -0.222222222222 What is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (Kids, create, a unique Valentine?s Day card) -> Kids (7091ms) What is Valentine's Day? Feb 14 2012 I?ve -0.222222222222 What is Valentine's Day? -> $x: ($x, found, valentine 's day) -> (Feb 14 2012 I?ve, always found, Valentine?s Day) -> Feb 14 2012 I?ve (7120ms) What is Valentine's Day? to -0.222222222222 What is Valentine's Day? -> $x: ($x, create, valentine 's day) -> (to, create, your own Valentine?s Day ecard) -> to (7091ms) What is Valentine's Day? The second day -0.222222222222 What is Valentine's Day? -> $x: ($x, happen to, valentine 's day) -> (The second day, also happened to be, Valentine?s Day) -> The second day (7102ms) What is Valentine's Day? work -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (work, is, Valentine?s Day) -> work (7227ms) What is Valentine's Day? the late winter doldrums -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (the late winter doldrums, is to celebrate, Valentine?s Day) -> the late winter doldrums (7161ms) What is Valentine's Day? a post -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (a post, was supposed to be about, Valentine?s day) -> a post (7265ms) What is Valentine's Day? ?Pink Friday -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (?Pink Friday, is set to be released on, Valentine?s Day) -> ?Pink Friday (7176ms) What is Valentine's Day? case he?s -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (case he?s, should be prepared prior to, Valentine?s day) -> case he?s (7283ms) What is Valentine's Day? Just a little card -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (Just a little card, can be used for, Valentine?s day) -> Just a little card (7265ms) What is Valentine's Day? place -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (place, is, Valentine?s Day) -> place (7169ms) What is Valentine's Day? Singletons -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (Singletons, can love, Valentine?s Day) -> Singletons (7292ms) What is Valentine's Day? Light?s more earnest Everyday -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Light?s more earnest Everyday, is, Valentine?s Day) -> Light?s more earnest Everyday (7192ms) What is Valentine's Day? Credit card concierge -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (Credit card concierge, can save, Valentine?s Day) -> Credit card concierge (7136ms) What is Valentine's Day? Emotions -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (Emotions, can be sparked with, Valentine?s Day) -> Emotions (7234ms) What is Valentine's Day? The last update -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (The last update, seems to be for, Valentine?s Day) -> The last update (7234ms) What is Valentine's Day? the foreseeable future -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (the foreseeable future, is, Valentine?s Day) -> the foreseeable future (7184ms) What is Valentine's Day? Nobody -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (Nobody, likes to be alone on, Valentine?s Day) -> Nobody (7259ms) What is Valentine's Day? Project # 1 -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Project # 1, is, Valentine?s Day) -> Project # 1 (7184ms) What is Valentine's Day? February?s New and Full Moons -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (February?s New and Full Moons, is, Valentine?s Day) -> February?s New and Full Moons (7234ms) What is Valentine's Day? Every lover -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Every lover, is, Valentine?s Day) -> Every lover (7247ms) What is Valentine's Day? Norma?s birthday and dying day -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Norma?s birthday and dying day, was, Valentine?s Day) -> Norma?s birthday and dying day (7292ms) What is Valentine's Day? The poems -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (The poems, can also be a great idea on, Valentine?s Day) -> The poems (7241ms) What is Valentine's Day? The event -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (The event, is meant to celebrate, Valentine?s Day) -> The event (7279ms) What is Valentine's Day? red stones -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (red stones, can be a nice touch for, Valentine?s Day) -> red stones (7247ms) What is Valentine's Day? ?Today -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (?Today, is, Valentine?s Day) -> ?Today (7259ms) What is Valentine's Day? Maybe viewers -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (Maybe viewers, can enjoy, Valentine?s Day) -> Maybe viewers (7144ms) What is Valentine's Day? Sanriotown -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (Sanriotown, can join the fun on, Valentine?s Day) -> Sanriotown (7128ms) What is Valentine's Day? I?m -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (I?m, used to being single on, Valentine?s Day) -> I?m (7220ms) What is Valentine's Day? Stranger Than Fiction -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (Stranger Than Fiction, is paying homage to, Valentine?s Day) -> Stranger Than Fiction (7161ms) What is Valentine's Day? everyone February 14th -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (everyone February 14th, is, Valentine?s Day) -> everyone February 14th (7247ms) What is Valentine's Day? Liberal Democrats -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (Liberal Democrats, are particularly positive to, Valentine?s Day) -> Liberal Democrats (7184ms) What is Valentine's Day? Retailers -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (Retailers, are now looking ahead to, Valentine?s Day) -> Retailers (7241ms) What is Valentine's Day? Feb 11 , 2011 @ 11:00 PM Monday -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Feb 11 , 2011 @ 11:00 PM Monday, is, Valentine?s Day) -> Feb 11 , 2011 @ 11:00 PM Monday (7136ms) What is Valentine's Day? the best gifts -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (the best gifts, can be given away on, Valentine?s Day) -> the best gifts (7206ms) What is Valentine's Day? The second largest -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (The second largest, is, Valentine?s Day) -> The second largest (7136ms) What is Valentine's Day? fancy dinners -0.222222222223 What is Valentine's Day? -> $x: (valentine 's day, be about, $x) -> (Valentine?s Day, is all about, fancy dinners) -> fancy dinners (7247ms) What is Valentine's Day? March 8 -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (March 8, is second only to, Valentine?s Day) -> March 8 (7265ms) What is Valentine's Day? A new grill -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (A new grill, can make, a fantastic Valentine?s Day gift) -> A new grill (7288ms) What is Valentine's Day? the song -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (the song, is to be officially released on, Valentine?s Day) -> the song (7288ms) What is Valentine's Day? the teddy bear -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (the teddy bear, is, Valentine?s Day) -> the teddy bear (7253ms) What is Valentine's Day? The other settings -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (The other settings, are, Valentine?s Day) -> The other settings (7220ms) What is Valentine's Day? Blaine and Kurt -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (Blaine and Kurt, can?t be together on, Valentine?s Day due) -> Blaine and Kurt (7199ms) What is Valentine's Day? year -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (year, can be very special for, Valentine?s Day) -> year (7192ms) What is Valentine's Day? ?Last night -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (?Last night, was, Valentine?s Day) -> ?Last night (7199ms) What is Valentine's Day? Bar Divani -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (Bar Divani, is the place to be on, Valentine?s Day) -> Bar Divani (7227ms) What is Valentine's Day? a successful Rio hunt -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (a successful Rio hunt, was prior to, Valentine?s Day) -> a successful Rio hunt (7265ms) What is Valentine's Day? Tuesday February 14 -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Tuesday February 14, is, Valentine?s Day) -> Tuesday February 14 (7213ms) What is Valentine's Day? every budget -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (every budget, can be, a lovely Valentine?s Day gift) -> every budget (7273ms) What is Valentine's Day? better way -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (better way, is there to celebrate, Valentine?s Day) -> better way (7227ms) What is Valentine's Day? love ? and I?ve -0.222222222223 What is Valentine's Day? -> $x: (valentine 's day, be about, $x) -> (Valentine?s Day, is all about, love ? and I?ve) -> love ? and I?ve (7284ms) What is Valentine's Day? the date -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (the date, was also close to, Valentine?s Day) -> the date (7176ms) What is Valentine's Day? ?Every day -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (?Every day, has to be, Valentine?s Day) -> ?Every day (7259ms) What is Valentine's Day? the sentimental values -0.222222222223 What is Valentine's Day? -> $x: (valentine 's day, be about, $x) -> (Valentine?s Day, is more about, the sentimental values) -> the sentimental values (7259ms) What is Valentine's Day? Sweetest Day -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (Sweetest Day, is celebrated similarly to, Valentine?s Day) -> Sweetest Day (7152ms) What is Valentine's Day? Every day -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (Every day, can be, Valentine?s Day) -> Every day (7259ms) What is Valentine's Day? Rocky Mountain Chocolate Factory -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Rocky Mountain Chocolate Factory, is, Valentine?s Day) -> Rocky Mountain Chocolate Factory (7259ms) What is Valentine's Day? Paulova Tuesday -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Paulova Tuesday, is, Valentine?s Day) -> Paulova Tuesday (7169ms) What is Valentine's Day? February15 Yesterday -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (February15 Yesterday, was, Valentine?s Day) -> February15 Yesterday (7213ms) What is Valentine's Day? Continue Reading Today -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Continue Reading Today, is, Valentine?s Day) -> Continue Reading Today (7241ms) What is Valentine's Day? National Breast Cancer Awareness Month -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (National Breast Cancer Awareness Month, is to, Valentine?s Day) -> National Breast Cancer Awareness Month (7144ms) What is Valentine's Day? Lupercalia -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (Lupercalia, was the precursor to, Valentine?s Day) -> Lupercalia (7241ms) What is Valentine's Day? ? Yesterday -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (? Yesterday, was, Valentine?s Day) -> ? Yesterday (7273ms) What is Valentine's Day? Roses -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (Roses, can be very expensive on, Valentine?s Day) -> Roses (7253ms) What is Valentine's Day? Heartsmith -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (Heartsmith, is the place to be for, Valentine?s Day) -> Heartsmith (7192ms) What is Valentine's Day? the friends -0.222222222223 What is Valentine's Day? -> $x: (valentine 's day, be about, $x) -> (Valentine?s Day, was about celebrating, the friends) -> the friends (7153ms) What is Valentine's Day? Columbus ? actual birth-date -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Columbus ? actual birth-date, is, Valentine?s Day) -> Columbus ? actual birth-date (7184ms) What is Valentine's Day? arbitration -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (arbitration, was fittingly set to being on, Valentine?s Day ?) -> arbitration (7161ms) What is Valentine's Day? food gift baskets -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (food gift baskets, can go very well for, Valentine?s Day gifts) -> food gift baskets (7176ms) What is Valentine's Day? the same day -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (the same day, is, Valentine?s Day) -> the same day (7247ms) What is Valentine's Day? February 13 , 2009 Tomorrow -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (February 13 , 2009 Tomorrow, is, Valentine?s Day) -> February 13 , 2009 Tomorrow (7292ms) What is Valentine's Day? New York -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (New York, can be a great place to visit for, Valentine?s Day) -> New York (7206ms) What is Valentine's Day? the year -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (the year, can be even more special on, Valentine?s Day) -> the year (7247ms) What is Valentine's Day? Chocolate -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (Chocolate, is to, Valentine?s Day) -> Chocolate (7234ms) What is Valentine's Day? ?Each Day -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (?Each Day, is, Valentine?s Day) -> ?Each Day (7279ms) What is Valentine's Day? eye-rolls?that every day -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (eye-rolls?that every day, was, Valentine?s Day) -> eye-rolls?that every day (7153ms) What is Valentine's Day? February 14th , ? -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (February 14th , ?, is, Valentine?s day) -> February 14th , ? (7161ms) What is Valentine's Day? every single day -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (every single day, is, Valentine?s Day) -> every single day (7199ms) What is Valentine's Day? The Walkers -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (The Walkers, are planning to celebrate, Valentine?s Day) -> The Walkers (7199ms) What is Valentine's Day? John Rasco Today -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (John Rasco Today, is, Valentine?s Day) -> John Rasco Today (7153ms) What is Valentine's Day? Gemini This -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (Gemini This, can be, a lucky Valentine?s Day) -> Gemini This (7128ms) What is Valentine's Day? nameless roaches -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (nameless roaches, can be adopted once again on, Valentine?s Day) -> nameless roaches (7199ms) What is Valentine's Day? Mobile Apps -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (Mobile Apps, Can Save, Your Valentine?s Day) -> Mobile Apps (7241ms) What is Valentine's Day? HONESDALE ? Tomorrow -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (HONESDALE ? Tomorrow, is, Valentine?s Day) -> HONESDALE ? Tomorrow (7220ms) What is Valentine's Day? romantic gifts -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (romantic gifts, can be given on, Valentine?s Day) -> romantic gifts (7220ms) What is Valentine's Day? little heed -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (little heed, was paid to, Valentine?s Day) -> little heed (7227ms) What is Valentine's Day? Instructional Strategist Today -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Instructional Strategist Today, is, Valentine?s Day ?) -> Instructional Strategist Today (7234ms) What is Valentine's Day? The only holiday -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (The only holiday, is, Valentine?s Day) -> The only holiday (7227ms) What is Valentine's Day? the title -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (the title, is, Valentine?s Day) -> the title (7283ms) What is Valentine's Day? any day -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (any day, can be, Valentine 's Day) -> any day (7220ms) What is Valentine's Day? themed ? and today -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (themed ? and today, IS, Valentine?s Day) -> themed ? and today (7227ms) What is Valentine's Day? I... February 13 , 2012 Tomorrow -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (I... February 13 , 2012 Tomorrow, is, Valentine?s Day) -> I... February 13 , 2012 Tomorrow (7273ms) What is Valentine's Day? the list -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (the list, is, Valentine?s Day) -> the list (7265ms) What is Valentine's Day? Feb. 14 -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Feb. 14, is, Valentine?s Day) -> Feb. 14 (7273ms) What is Valentine's Day? Google Doodle -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (Google Doodle, was dedicated to, Valentine?s Day) -> Google Doodle (7253ms) What is Valentine's Day? a heart -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (a heart, is to, Valentine?s Day) -> a heart (7192ms) What is Valentine's Day? the upcoming celebration -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (the upcoming celebration, is, Valentine?s Day) -> the upcoming celebration (7253ms) What is Valentine's Day? heart shaped and -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (heart shaped and, could be very accompanying to, Valentine?s Day) -> heart shaped and (7288ms) What is Valentine's Day? February 14 , 2012 Today -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (February 14 , 2012 Today, is, Valentine?s Day) -> February 14 , 2012 Today (7265ms) What is Valentine's Day? No custom orders -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (No custom orders, can be taken on, Valentine?s Day) -> No custom orders (7206ms) What is Valentine's Day? The heart -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (The heart, is linked to, Valentine?s Day) -> The heart (7199ms) What is Valentine's Day? the most romantic holidays -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (the most romantic holidays, can use, Valentine?s Day) -> the most romantic holidays (7241ms) What is Valentine's Day? Blainers -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (Blainers, is back to spend, Valentine?s Day) -> Blainers (7247ms) What is Valentine's Day? Anywayssss this month -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Anywayssss this month, is, Valentine?s day) -> Anywayssss this month (7161ms) What is Valentine's Day? Cupid -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (Cupid, was chosen to represent, Valentine?s Day) -> Cupid (7284ms) What is Valentine's Day? ?Tomorrow -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (?Tomorrow, is, Valentine?s Day) -> ?Tomorrow (7241ms) What is Valentine's Day? a SAF support campaign -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (a SAF support campaign, is connected to, Valentine?s Day) -> a SAF support campaign (7259ms) What is Valentine's Day? The party -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (The party, is, Valentine?s day) -> The party (7234ms) What is Valentine's Day? The picket -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (The picket, was dedicated to, Valentine?s Day) -> The picket (7284ms) What is Valentine's Day? Last month -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Last month, was, Valentine?s Day) -> Last month (7234ms) What is Valentine's Day? Tommy?s due date -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Tommy?s due date, was, Valentine?s Day) -> Tommy?s due date (7247ms) What is Valentine's Day? the spa -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (the spa, can be, a great Valentine?s Day gift) -> the spa (7176ms) What is Valentine's Day? 2011 -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (2011, was a day to celebrate, Valentine?s Day) -> 2011 (7161ms) What is Valentine's Day? week -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (week, can interfere with, Valentine?s Day plans) -> week (7273ms) What is Valentine's Day? Preschoolers -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (Preschoolers, can enjoy, a free Valentine?s Day Project) -> Preschoolers (7227ms) What is Valentine's Day? Yahoo! -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Yahoo!, is, Valentine?s Day) -> Yahoo! (7220ms) What is Valentine's Day? Guys -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (Guys, can complement, their Valentine?s Day date) -> Guys (7153ms) What is Valentine's Day? a girl -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (a girl, can do before, the Valentine?s Day) -> a girl (7136ms) What is Valentine's Day? ESPN ?Every day -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (ESPN ?Every day, is, Valentine?s Day) -> ESPN ?Every day (7136ms) What is Valentine's Day? the first poem -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (the first poem, was attributed to, Valentine?s Day) -> the first poem (7220ms) What is Valentine's Day? even guys -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (even guys, can use, Valentine?s Day) -> even guys (7206ms) What is Valentine's Day? julier | 0 Comments Tomorrow -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (julier | 0 Comments Tomorrow, is, Valentine?s Day) -> julier | 0 Comments Tomorrow (7192ms) What is Valentine's Day? the whole world -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (the whole world, are looking forward to, Valentine?s Day) -> the whole world (7284ms) What is Valentine's Day? 2009 February 14 -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (2009 February 14, is, Valentine?s Day) -> 2009 February 14 (7253ms) What is Valentine's Day? disappointment -0.222222222223 What is Valentine's Day? -> $x: (valentine 's day, have story of, $x) -> (St . Valentine?s Day, has a storied tradition of, disappointment) -> disappointment (7273ms) What is Valentine's Day? a cultural phenomenon -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (a cultural phenomenon, is remarkably similar to, Valentine?s Day) -> a cultural phenomenon (7284ms) What is Valentine's Day? small heart shapes -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (small heart shapes, can be easily completed by, Valentine?s Day) -> small heart shapes (7191ms) What is Valentine's Day? Pillsbury?s -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (Pillsbury?s, canned, Valentine?s Day frosting) -> Pillsbury?s (7247ms) What is Valentine's Day? practical gifts -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (practical gifts, can be meaningful too on, Valentine?s Day) -> practical gifts (7241ms) What is Valentine's Day? American Heart Month -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (American Heart Month, is also host to, Valentine?s Day) -> American Heart Month (7253ms) What is Valentine's Day? The hop -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (The hop, is held to celebrate, Valentine?s Day) -> The hop (7234ms) What is Valentine's Day? Continue ? Tomorrow -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Continue ? Tomorrow, is, Valentine?s Day) -> Continue ? Tomorrow (7176ms) What is Valentine's Day? guests -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (guests, can savor, Valentine?s Day) -> guests (7220ms) What is Valentine's Day? companies -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (companies, are starting to roll out, Valentine?s Day) -> companies (7213ms) What is Valentine's Day? preschoolers -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (preschoolers, can make, a Valentine?s Day card) -> preschoolers (7206ms) What is Valentine's Day? a Gubloid -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (a Gubloid, deserves to be alone on, Valentine?s Day) -> a Gubloid (7253ms) What is Valentine's Day? 30 items -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (30 items, can help turn, this Valentine?s Day) -> 30 items (7169ms) What is Valentine's Day? 2/14/2012 -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (2/14/2012, is, Valentine?s Day) -> 2/14/2012 (7213ms) What is Valentine's Day? red roses -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (red roses, are to, Valentine?s Day) -> red roses (7227ms) What is Valentine's Day? Michelle Johnston -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Michelle Johnston, is, Valentine?s Day) -> Michelle Johnston (7220ms) What is Valentine's Day? the theme -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (the theme, is, ?Valentine?s Day?) -> the theme (7176ms) What is Valentine's Day? couple -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (couple, can decorate their home with, several valentine?s day) -> couple (7169ms) What is Valentine's Day? February 14th -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (February 14th, is, Valentine?s Day) -> February 14th (7213ms) What is Valentine's Day? submit? Her due date -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (submit? Her due date, was, Valentine?s Day) -> submit? Her due date (7206ms) What is Valentine's Day? love?it -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (love?it, is, Valentine?s Day) -> love?it (7227ms) What is Valentine's Day? phone sex -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (phone sex, can bring on, Valentine?s Day) -> phone sex (7145ms) What is Valentine's Day? the many crafts -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (the many crafts, can be chosen from for, Valentine?s Day) -> the many crafts (7213ms) What is Valentine's Day? the lyrics -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (the lyrics, is, Valentine?s Day) -> the lyrics (7273ms) What is Valentine's Day? Cyber Monday Ads -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (Cyber Monday Ads, can provide, Valentine?s Day gift ideas) -> Cyber Monday Ads (7292ms) What is Valentine's Day? etc -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (etc, can be directly linked to, Valentine?s Day) -> etc (7145ms) What is Valentine's Day? romance and tradition -0.222222222223 What is Valentine's Day? -> $x: (valentine 's day, be about, $x) -> (Valentine?s Day, is all about, romance and tradition) -> romance and tradition (7161ms) What is Valentine's Day? 2008 Tomorrow -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (2008 Tomorrow, is, Valentine?s Day) -> 2008 Tomorrow (7240ms) What is Valentine's Day? Restaurants -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (Restaurants, can be extremely crowded on, Valentine?s Day) -> Restaurants (7273ms) What is Valentine's Day? Last Second Valentine?s Day Ideas Tomorrow -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Last Second Valentine?s Day Ideas Tomorrow, is, Valentine?s Day) -> Last Second Valentine?s Day Ideas Tomorrow (7192ms) What is Valentine's Day? OCF Don?t -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (OCF Don?t, want to be alone on, Valentine?s Day) -> OCF Don?t (7136ms) What is Valentine's Day? no day -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (no day, can equally match up with, Valentine?s Day) -> no day (7169ms) What is Valentine's Day? Links Today -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Links Today, is, Valentine?s Day) -> Links Today (7161ms) What is Valentine's Day? The next day -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (The next day, was, Valentine?s Day) -> The next day (7176ms) What is Valentine's Day? The restaurant -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (The restaurant, was conveniently impervious to, Valentine?s Day) -> The restaurant (7288ms) What is Valentine's Day? the constant reminders -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (the constant reminders, can make, Valentine?s Day difficult) -> the constant reminders (7288ms) What is Valentine's Day? the long winter months -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (the long winter months, was, Valentine?s Day) -> the long winter months (7176ms) What is Valentine's Day? single girls -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (single girls, can have a great time on, Valentine?s Day) -> single girls (7136ms) What is Valentine's Day? Wednesday Wonder -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (Wednesday Wonder, is dedicated to, Valentine?s Day) -> Wednesday Wonder (7292ms) What is Valentine's Day? infographics and today -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (infographics and today, is, Valentine?s Day) -> infographics and today (7161ms) What is Valentine's Day? audiences everywhere -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (audiences everywhere, can celebrate, Valentine 's Day) -> audiences everywhere (7241ms) What is Valentine's Day? Friday Tomorrow -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Friday Tomorrow, is, Valentine?s Day) -> Friday Tomorrow (7206ms) What is Valentine's Day? Ecuador -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (Ecuador, can now be ordered for, Valentine?s Day delivery) -> Ecuador (7199ms) What is Valentine's Day? Tommorrow -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Tommorrow, is, Valentine?s Day) -> Tommorrow (7206ms) What is Valentine's Day? The promo codes -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (The promo codes, can only be redeemed on, Valentine?s Day) -> The promo codes (7136ms) What is Valentine's Day? February 14 , 2012 -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (February 14 , 2012, is, Valentine?s Day) -> February 14 , 2012 (7136ms) What is Valentine's Day? 1986 -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (1986, was similar up to, Valentine?s Day) -> 1986 (7213ms) What is Valentine's Day? present -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (present, will be boomed thanks to, Valentine?s Day) -> present (7273ms) What is Valentine's Day? February 15 , 2012 Yesterday -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (February 15 , 2012 Yesterday, was, Valentine?s Day) -> February 15 , 2012 Yesterday (7288ms) What is Valentine's Day? Tim Moriarty Tomorrow -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Tim Moriarty Tomorrow, is, Valentine?s Day) -> Tim Moriarty Tomorrow (7279ms) What is Valentine's Day? Everyday -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (Everyday, can be, a Valentine?s Day) -> Everyday (7273ms) What is Valentine's Day? A little creativity -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (A little creativity, can go a long way on, Valentine?s Day) -> A little creativity (7247ms) What is Valentine's Day? Flower Industry Today -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Flower Industry Today, is, Valentine?s Day) -> Flower Industry Today (7184ms) What is Valentine's Day? Valentine?s Day flowers -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (Valentine?s Day flowers, is a sure gift to make, Valentine?s Day) -> Valentine?s Day flowers (7220ms) What is Valentine's Day? the app -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (the app, yet can take a free chance on, Valentine?s Day) -> the app (7265ms) What is Valentine's Day? the horizon -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (the horizon, is, Valentine?s Day) -> the horizon (7153ms) What is Valentine's Day? The theme -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (The theme, was, Valentine?s Day) -> The theme (7145ms) What is Valentine's Day? ? ? Today -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (? ? Today, is, Valentine?s Day) -> ? ? Today (7241ms) What is Valentine's Day? The guys -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (The guys, are hoping to have, Valentine?s Day) -> The guys (7265ms) What is Valentine's Day? bad dates -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (bad dates, can taint, this Valentine?s Day) -> bad dates (7145ms) What is Valentine's Day? ? everyday -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (? everyday, is, Valentine?s Day) -> ? everyday (7153ms) What is Valentine's Day? last month -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (last month, was dedicated to, Valentine?s Day) -> last month (7206ms) What is Valentine's Day? Psalm 89:1 Today -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Psalm 89:1 Today, is, Valentine?s Day) -> Psalm 89:1 Today (7241ms) What is Valentine's Day? every day -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (every day, can be, Valentine 's Day) -> every day (7288ms) What is Valentine's Day? Couples -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (Couples, can join the party on, Valentine?s Day) -> Couples (7279ms) What is Valentine's Day? The country -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (The country, is an ideal place to spend, Valentine?s Day) -> The country (7169ms) What is Valentine's Day? Charles M Schultz Today -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (Charles M Schultz Today, is, Valentine?s Day) -> Charles M Schultz Today (7283ms) What is Valentine's Day? One such event -0.222222222223 What is Valentine's Day? -> $x: ($x, be be, valentine 's day) -> (One such event, is, Valentine?s Day) -> One such event (7184ms) What is Valentine's Day? friends -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (friends, can be delivered on, Valentine?s Day) -> friends (7176ms) What is Valentine's Day? a deer -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (a deer, was to be made official on, Valentine?s Day) -> a deer (7136ms) What is Valentine's Day? the W Hotel Paris Opera -0.222222222223 What is Valentine's Day? -> $x: ($x, be to, valentine 's day) -> (the W Hotel Paris Opera, is set to open on, Valentine?s Day) -> the W Hotel Paris Opera (7241ms) What is Valentine's Day? THE WEEK | Social media -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (THE WEEK | Social media, can save, Valentine?s Day) -> THE WEEK | Social media (7191ms) What is Valentine's Day? innumerable right gifts -0.222222222223 What is Valentine's Day? -> $x: ($x, can, valentine 's day) -> (innumerable right gifts, can be purchased for, Valentine?s Day) -> innumerable right gifts (7220ms) What is Valentine's Day? the Ad Council -0.333333333333 What is Valentine's Day? -> $x: ($x, side, valentine 's day) -> (the Ad Council, addressed the serious side of, Valentine?s Day) -> the Ad Council (7292ms) What is Valentine's Day? the latest offering -0.333333333333 What is Valentine's Day? -> $x: ($x, develop, valentine 's day) -> (the latest offering, developed specially for, Valentine?s Day) -> the latest offering (7292ms) What is Valentine's Day? A picture -0.333333333333 What is Valentine's Day? -> $x: ($x, represent, valentine 's day) -> (A picture, represented, Valentine 's Day) -> A picture (7292ms) What is Valentine's Day? Staff Writer This -0.333333333334 What is Valentine's Day? -> $x: ($x, could be, valentine 's day) -> (Staff Writer This, could be, your sweetest Valentine?s Day) -> Staff Writer This (7308ms) What is Valentine's Day? thankfulness -0.333333333334 What is Valentine's Day? -> $x: ($x, can be, valentine 's day) -> (thankfulness, can be expressed with, pink Valentine?s Day roses) -> thankfulness (7297ms) What is Valentine's Day? Dougherty -0.333333333334 What is Valentine's Day? -> $x: ($x, could be, valentine 's day) -> (Dougherty, ?could have been set on, Valentine?s Day) -> Dougherty (7305ms) What is Valentine's Day? Guns -0.333333333334 What is Valentine's Day? -> $x: ($x, can be, valentine 's day) -> (Guns, can be exchanged, the day after Valentine 's Day) -> Guns (7297ms) What is Valentine's Day? a night -0.333333333334 What is Valentine's Day? -> $x: ($x, could be, valentine 's day) -> (a night, could be more than enough, this Valentine?s Day) -> a night (7305ms) What is Valentine's Day? desserts -0.333333333334 What is Valentine's Day? -> $x: ($x, could be, valentine 's day) -> (desserts, could be used for, Valentine?s Day) -> desserts (7308ms) What is Valentine's Day? NY -0.333333333334 What is Valentine's Day? -> $x: ($x, could be, valentine 's day) -> (NY, could be more romantic than, spending Valentine?s Day) -> NY (7301ms) What is Valentine's Day? a tool kit -0.333333333334 What is Valentine's Day? -> $x: ($x, could be, valentine 's day) -> (a tool kit, could be a terrific gift for, Valentine?s Day) -> a tool kit (7301ms) What is Valentine's Day? Leo This -0.333333333334 What is Valentine's Day? -> $x: ($x, can be, valentine 's day) -> (Leo This, can be, an extremely romantic Valentine?s Day) -> Leo This (7312ms) What is Valentine's Day? Italy -0.333333333334 What is Valentine's Day? -> $x: ($x, could be, valentine 's day) -> (Italy, could be more romantic than, spending Valentine?s Day) -> Italy (7305ms) What is Valentine's Day? A crossword -0.333333333334 What is Valentine's Day? -> $x: ($x, could be, valentine 's day) -> (A crossword, could be, the perfect Valentine?s Day gift) -> A crossword (7301ms) What is Valentine's Day? not sure -0.333333333334 What is Valentine's Day? -> $x: ($x, could be, valentine 's day) -> (not sure, could be more appropriate on, Valentine?s Day) -> not sure (7301ms) What is Valentine's Day? full attention -0.333333333334 What is Valentine's Day? -> $x: ($x, could be, valentine 's day) -> (full attention, could be, the Valentine?s Day unique gifts) -> full attention (7305ms) What is Valentine's Day? Blackberry -0.333333333334 What is Valentine's Day? -> $x: ($x, could be, valentine 's day) -> (Blackberry, could be, your alternative Valentine?s day gift) -> Blackberry (7308ms) What is Valentine's Day? high-style romance -0.333333333334 What is Valentine's Day? -> $x: ($x, can be, valentine 's day) -> (high-style romance, can be had, this Valentine?s Day weekend) -> high-style romance (7308ms) What is Valentine's Day? Ice Skating -0.333333333334 What is Valentine's Day? -> $x: ($x, could be, valentine 's day) -> (Ice Skating, could be more appropriate for, Valentine?s Day) -> Ice Skating (7305ms) What is Valentine's Day? northwest Louisiana -0.333333333334 What is Valentine's Day? -> $x: ($x, discover, valentine 's day) -> (northwest Louisiana, was discovered on, Valentine?s Day) -> northwest Louisiana (7301ms) What is Valentine's Day? Casting lessons -0.333333333334 What is Valentine's Day? -> $x: ($x, could be, valentine 's day) -> (Casting lessons, could be, an ideal Valentine?s Day gift) -> Casting lessons (7297ms) What is Valentine's Day? 1,635 feet -0.333333333334 What is Valentine's Day? -> $x: ($x, discover, valentine 's day) -> (1,635 feet, was discovered on, Valentine?s Day) -> 1,635 feet (7305ms) What is Valentine's Day? the instance -0.333333333334 What is Valentine's Day? -> $x: ($x, could be, valentine 's day) -> (the instance, could be, Valentine?s Day) -> the instance (7308ms) What is Valentine's Day? the timing -0.333333333334 What is Valentine's Day? -> $x: ($x, could be, valentine 's day) -> (the timing, could n?t be better with, Valentine?s Day ?s arrival) -> the timing (7308ms) What is Valentine's Day? example -0.333333333334 What is Valentine's Day? -> $x: ($x, could be, valentine 's day) -> (example, could be used for, Valentine?s day) -> example (7308ms) What is Valentine's Day? a kit -0.333333333334 What is Valentine's Day? -> $x: ($x, could be, valentine 's day) -> (a kit, could be used for, Valentine?s Day) -> a kit (7301ms) What is Valentine's Day? the pack -0.333333333334 What is Valentine's Day? -> $x: ($x, discover, valentine 's day) -> (the pack, was discovered on, Valentine 's Day) -> the pack (7301ms) What is Valentine's Day? the Parlement -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is in, the Parlement) -> the Parlement (7322ms) What is Valentine's Day? Christopher Null | -0.444444444444 What is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (Christopher Null |, Leave, a comment Valentine?s Day approaches) -> Christopher Null | (7325ms) What is Valentine's Day? Great Britain -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, was celebrated in, Great Britain) -> Great Britain (7334ms) What is Valentine's Day? Cookies and cupcakes -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (Cookies and cupcakes, get a nice makeover on, Valentine?s Day) -> Cookies and cupcakes (7341ms) What is Valentine's Day? Melissa Gorga -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (Melissa Gorga, Got For, Valentine?s Day) -> Melissa Gorga (7332ms) What is Valentine's Day? Madi Don?t -0.444444444444 What is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (Madi Don?t, Leave, Valentine?s day) -> Madi Don?t (7330ms) What is Valentine's Day? More people -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (More people, get engaged on, Valentine?s Day) -> More people (7340ms) What is Valentine's Day? the U.S. -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is big business in, the U.S.) -> the U.S. (7330ms) What is Valentine's Day? the traffic -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (the traffic, gets during, Valentine?s Day) -> the traffic (7341ms) What is Valentine's Day? Lil Wayne -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (Lil Wayne, Get Engaged on, Valentine?s Day) -> Lil Wayne (7328ms) What is Valentine's Day? n?t -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (n?t, got a date for, valentine?s day) -> n?t (7322ms) What is Valentine's Day? the latest celeb gossip -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (the latest celeb gossip, got engaged over, Valentine?s Day) -> the latest celeb gossip (7340ms) What is Valentine's Day? full swing -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, was in, full swing) -> full swing (7316ms) What is Valentine's Day? the Share -0.444444444444 What is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (the Share, leave, their own Valentine?s Day story) -> the Share (7319ms) What is Valentine's Day? England -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, had become common in, England) -> England (7340ms) What is Valentine's Day? a romance-themed gift basket -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, might work in, a romance-themed gift basket) -> a romance-themed gift basket (7334ms) What is Valentine's Day? A red heart -0.444444444444 What is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (A red heart, left over from, Valentine?s Day) -> A red heart (7319ms) What is Valentine's Day? Federico Hewson Who?s -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (Federico Hewson Who?s, got a date for, Valentine?s Day) -> Federico Hewson Who?s (7325ms) What is Valentine's Day? citizens -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (citizens, get divorced on, Valentine?s Day) -> citizens (7334ms) What is Valentine's Day? Only two days -0.444444444444 What is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (Only two days, left until, Valentine?s Day) -> Only two days (7338ms) What is Valentine's Day? Friday Night Storytime -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (Friday Night Storytime, Get ready for, Valentine?s Day) -> Friday Night Storytime (7322ms) What is Valentine's Day? ancient Rome -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, lie in, ancient Rome) -> ancient Rome (7340ms) What is Valentine's Day? A young girl -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (A young girl, gets ready for, Valentine?s Day) -> A young girl (7338ms) What is Valentine's Day? the past -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, are in, the past) -> the past (7338ms) What is Valentine's Day? The shop -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (The shop, is getting ready for, Valentine?s Day) -> The shop (7338ms) What is Valentine's Day? hand -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, can go hand in, hand) -> hand (7338ms) What is Valentine's Day? Lukus -0.444444444444 What is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (Lukus, had left, little valentine?s day gifts) -> Lukus (7322ms) What is Valentine's Day? Islam -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, approved in, Islam) -> Islam (7334ms) What is Valentine's Day? self pity -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, wallow in, self pity) -> self pity (7330ms) What is Valentine's Day? less than a month -0.444444444444 What is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (less than a month, left for, Valentine?s Day) -> less than a month (7330ms) What is Valentine's Day? lol -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (lol, get anything for, Valentine?s day) -> lol (7341ms) What is Valentine's Day? the Wiley6 -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (the Wiley6, has been getting ready for, Valentine?s Day) -> the Wiley6 (7322ms) What is Valentine's Day? different ways -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is celebrated in, different ways) -> different ways (7325ms) What is Valentine's Day? 6 days -0.444444444444 What is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (6 days, left to, Valentine?s Day) -> 6 days (7334ms) What is Valentine's Day? Common -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, Have In, Common) -> Common (7330ms) What is Valentine's Day? Let?s -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (Let?s, get something straight about, Valentine?s Day) -> Let?s (7334ms) What is Valentine's Day? the hubs -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (the hubs, will be getting for, Valentine?s day) -> the hubs (7336ms) What is Valentine's Day? February 12th Time -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (February 12th Time, Get set for, Valentine?s Day) -> February 12th Time (7322ms) What is Valentine's Day? fourth grade -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, took place in, fourth grade) -> fourth grade (7322ms) What is Valentine's Day? winter -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is also in, winter) -> winter (7341ms) What is Valentine's Day? the form -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is in, the form) -> the form (7341ms) What is Valentine's Day? the High Middle Ages -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, began in, the High Middle Ages) -> the High Middle Ages (7338ms) What is Valentine's Day? Tigers -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (Tigers, get frisky on, Valentine?s Day) -> Tigers (7328ms) What is Valentine's Day? Spa Packages -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (Spa Packages, would love to get on, Valentine?s Day) -> Spa Packages (7338ms) What is Valentine's Day? KIAH -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (KIAH, get for, Valentine?s Day) -> KIAH (7341ms) What is Valentine's Day? U.S. couples -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (U.S. couples, will get engaged on, Valentine?s Day) -> U.S. couples (7312ms) What is Valentine's Day? numerous awesome apps -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (numerous awesome apps, get the best out of, Valentine?s Day) -> numerous awesome apps (7340ms) What is Valentine's Day? fact -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is in, fact) -> fact (7335ms) What is Valentine's Day? Vegas -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, Happens in, Vegas) -> Vegas (7332ms) What is Valentine's Day? decorations -0.444444444444 What is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (decorations, left over from, Valentine?s Day) -> decorations (7319ms) What is Valentine's Day? two days -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, was in, two days) -> two days (7325ms) What is Valentine's Day? Kindergarten -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, started in, Kindergarten) -> Kindergarten (7312ms) What is Valentine's Day? ladies -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (ladies, get, Valentine?s Day flowers) -> ladies (7315ms) What is Valentine's Day? full bloom -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is in, full bloom) -> full bloom (7322ms) What is Valentine's Day? the third century -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, begins in, the third century) -> the third century (7334ms) What is Valentine's Day? Caucer?s Parlement -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, was in, Caucer?s Parlement) -> Caucer?s Parlement (7338ms) What is Valentine's Day? there?s less than two weeks -0.444444444444 What is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (there?s less than two weeks, left until, Valentine?s Day) -> there?s less than two weeks (7330ms) What is Valentine's Day? different parts -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is celebrated in, different parts) -> different parts (7336ms) What is Valentine's Day? just one day -0.444444444444 What is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (just one day, left to, Valentine?s Day and I?m sure many of) -> just one day (7315ms) What is Valentine's Day? candy hearts -0.444444444444 What is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (candy hearts, left over from, Valentine?s Day) -> candy hearts (7325ms) What is Valentine's Day? Rome -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, Happened In, Rome) -> Rome (7334ms) What is Valentine's Day? 21st-century India -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is controversial in, 21st-century India) -> 21st-century India (7334ms) What is Valentine's Day? no official statistics -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (no official statistics, get engaged on, Valentine?s Day) -> no official statistics (7341ms) What is Valentine's Day? One week -0.444444444444 What is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (One week, left until, Valentine?s Day) -> One week (7325ms) What is Valentine's Day? full effect -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, was in, full effect) -> full effect (7316ms) What is Valentine's Day? a blank , heart-shaped card -0.444444444444 What is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (a blank , heart-shaped card, left over from, Valentine?s Day) -> a blank , heart-shaped card (7341ms) What is Valentine's Day? pagan partying -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is rooted in, pagan partying) -> pagan partying (7315ms) What is Valentine's Day? only a day -0.444444444444 What is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (only a day, left for, Valentine 's Day) -> only a day (7312ms) What is Valentine's Day? a season full -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, falls in, a season full) -> a season full (7336ms) What is Valentine's Day? Colombia?deal -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is celebrated in, Colombia?deal) -> Colombia?deal (7312ms) What is Valentine's Day? blaze -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, arrives in, blaze) -> blaze (7334ms) What is Valentine's Day? Sanctuary Point -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (Sanctuary Point, Get For, Valentine?s Day) -> Sanctuary Point (7312ms) What is Valentine's Day? the Roman Empire -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, first began in, the Roman Empire) -> the Roman Empire (7328ms) What is Valentine's Day? no -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (no, get anything for, Valentine?s day) -> no (7322ms) What is Valentine's Day? Southern California all -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, raised in, Southern California all) -> Southern California all (7332ms) What is Valentine's Day? the dead -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, occurs in, the dead) -> the dead (7336ms) What is Valentine's Day? the community -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (the community, always get depressed about, Valentine?s Day) -> the community (7316ms) What is Valentine's Day? Chaucer -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is first mentioned in, Chaucer) -> Chaucer (7341ms) What is Valentine's Day? a month?s time -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, was in, a month?s time) -> a month?s time (7328ms) What is Valentine's Day? 15 days -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is in, 15 days) -> 15 days (7319ms) What is Valentine's Day? 2009 Maxwell and Myrtle -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (2009 Maxwell and Myrtle, are getting ready for, Valentine?s Day) -> 2009 Maxwell and Myrtle (7322ms) What is Valentine's Day? a romance -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, would work in, a romance) -> a romance (7332ms) What is Valentine's Day? 496 AD -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, began in, 496 AD) -> 496 AD (7319ms) What is Valentine's Day? Only one week -0.444444444444 What is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (Only one week, left till, Valentine?s Day) -> Only one week (7319ms) What is Valentine's Day? a candy heart stamp -0.444444444444 What is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (a candy heart stamp, left over from, Valentine 's day) -> a candy heart stamp (7319ms) What is Valentine's Day? the middle -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is in, the middle) -> the middle (7341ms) What is Valentine's Day? Lea , 25 -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (Lea , 25, got cozy on, Valentine?s Day) -> Lea , 25 (7312ms) What is Valentine's Day? 2 weeks -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is in just, 2 weeks) -> 2 weeks (7328ms) What is Valentine's Day? 2 days -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is coming in, 2 days) -> 2 days (7341ms) What is Valentine's Day? the air -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is in, the air) -> the air (7336ms) What is Valentine's Day? UPDATES Kempt We?ve -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (UPDATES Kempt We?ve, got some problems with, Valentine?s Day) -> UPDATES Kempt We?ve (7336ms) What is Valentine's Day? local crab fishermen -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (local crab fishermen, got new competition for, Valentine?s Day) -> local crab fishermen (7340ms) What is Valentine's Day? the speech room -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, was a hit in, the speech room) -> the speech room (7340ms) What is Valentine's Day? place months -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, remain in, place months) -> place months (7325ms) What is Valentine's Day? we?ve -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (we?ve, got, Valentine?s Day) -> we?ve (7341ms) What is Valentine's Day? the clock -0.444444444444 What is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (the clock, left until, Valentine?s Day) -> the clock (7332ms) What is Valentine's Day? Styloko.com -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (Styloko.com, Got plans for, Valentine?s day) -> Styloko.com (7336ms) What is Valentine's Day? Serbia -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is really big in, Serbia) -> Serbia (7340ms) What is Valentine's Day? the house -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is rotting somewhere in, the house) -> the house (7312ms) What is Valentine's Day? holidays makers -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (holidays makers, get excited over, Valentine?s Day) -> holidays makers (7325ms) What is Valentine's Day? commitment t? -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (commitment t?, gets, Valentine?s Day) -> commitment t? (7322ms) What is Valentine's Day? food critic Claudia Thomas -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (food critic Claudia Thomas, gets dumped on, Valentine?s Day) -> food critic Claudia Thomas (7332ms) What is Valentine's Day? Paul and I -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (Paul and I, got engaged on, Valentine?s Day) -> Paul and I (7332ms) What is Valentine's Day? a few days -0.444444444444 What is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (a few days, left until, Valentine?s Day) -> a few days (7325ms) What is Valentine's Day? chocolates -0.444444444444 What is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (chocolates, left over from, Valentine?s Day) -> chocolates (7341ms) What is Valentine's Day? Merlin -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (Merlin, is getting so sick of, Valentine?s Day) -> Merlin (7315ms) What is Valentine's Day? love?they -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (love?they, recently got engaged on, Valentine?s Day) -> love?they (7312ms) What is Valentine's Day? 3 days -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s day, is in, 3 days) -> 3 days (7325ms) What is Valentine's Day? less than 24 hours -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is in, less than 24 hours) -> less than 24 hours (7340ms) What is Valentine's Day? Junior High -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, was handled in, Junior High) -> Junior High (7316ms) What is Valentine's Day? PPC -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (PPC, gets very expensive around, Valentine?s Day) -> PPC (7315ms) What is Valentine's Day? the mood -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, get in, the mood) -> the mood (7319ms) What is Valentine's Day? Gamers and UFC fans -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (Gamers and UFC fans, are getting pumped for, Valentine?s Day) -> Gamers and UFC fans (7328ms) What is Valentine's Day? mystery -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is shrouded in, mystery) -> mystery (7336ms) What is Valentine's Day? less than two weeks -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is in, less than two weeks) -> less than two weeks (7330ms) What is Valentine's Day? TV commercials -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, portrayed in, TV commercials) -> TV commercials (7336ms) What is Valentine's Day? less than a week -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, will be here in, less than a week) -> less than a week (7334ms) What is Valentine's Day? the GOP hopeful -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (the GOP hopeful, got for, Valentine?s Day) -> the GOP hopeful (7338ms) What is Valentine's Day? red sharpie -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (? Valentine?s Day ?, circled in, red sharpie) -> red sharpie (7332ms) What is Valentine's Day? only two days -0.444444444444 What is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (only two days, left until, Saint Valentine?s Day) -> only two days (7336ms) What is Valentine's Day? the Baby -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (the Baby, got a special treat for, Valentine?s Day) -> the Baby (7312ms) What is Valentine's Day? the Third Century -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, begins in, the Third Century) -> the Third Century (7340ms) What is Valentine's Day? Wellington -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, arrived in, Wellington) -> Wellington (7340ms) What is Valentine's Day? Perfumania -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (Perfumania, is getting ready for, Valentine?s Day) -> Perfumania (7312ms) What is Valentine's Day? popularity -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, grew in, popularity) -> popularity (7340ms) What is Valentine's Day? Hilary -0.444444444444 What is Valentine's Day? -> $x: ($x, leave, valentine 's day) -> (Hilary, left, little Finding Nemo Valentine?s Day cards) -> Hilary (7334ms) What is Valentine's Day? a close second -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, comes in, a close second) -> a close second (7315ms) What is Valentine's Day? Joburg -0.444444444444 What is Valentine's Day? -> $x: ($x, get, valentine 's day) -> (Joburg, got together on, Valentine?s Day) -> Joburg (7336ms) What is Valentine's Day? county jail -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, has been in, county jail) -> county jail (7336ms) What is Valentine's Day? eternal love -0.444444444444 What is Valentine's Day? -> $x: (valentine 's day, in in, $x) -> (Valentine?s Day, is in, eternal love) -> eternal love (7330ms) What is Valentine's Day? romantic comedies -0.444444444445 What is Valentine's Day? -> $x: ($x, involve, valentine 's day) -> (romantic comedies, somehow involve, Valentine?s Day) -> romantic comedies (7342ms) What is Valentine's Day? the weeks -0.555555555556 What is Valentine's Day? -> $x: ($x, precede, valentine 's day) -> (the weeks, preceding, Valentine 's Day) -> the weeks (7342ms) What is Valentine's Day? the month -0.666666666667 What is Valentine's Day? -> $x: ($x, contain, valentine 's day) -> (the month, containing, Valentine 's Day) -> the month (7342ms) What is Valentine's Day? The set -0.666666666667 What is Valentine's Day? -> $x: ($x, contain, valentine 's day) -> (The set, contains, 10 Valentine?s Day icons) -> The set (7342ms) What is Valentine's Day? The week -0.666666666667 What is Valentine's Day? -> $x: ($x, contain, valentine 's day) -> (The week, containing, Valentine 's Day) -> The week (7342ms) What is Valentine's Day? Gigi -0.777777777776 What is Valentine's Day? -> $x: ($x, demonstrate, valentine 's day) -> (Gigi, will then demonstrate, her delicious Valentine?s Day menu) -> Gigi (7342ms) What is Valentine's Day? 1415 -0.777777777778 What is Valentine's Day? -> $x: (valentine 's day, be in write, $x) -> (The oldest Valentine?s Day greeting, was written in, 1415) -> 1415 (7342ms) What is Valentine's Day? 0 Rosy -0.8888888888840001 What is Valentine's Day? -> $x: ($x, date be, valentine) -> (0 Rosy, is having a date on, Valentine) -> 0 Rosy (7342ms) What is Valentine's Day? The first one -0.888888888885 What is Valentine's Day? -> $x: ($x, be history of, valentine) -> (The first one, is the history of, the Valentines Day) -> The first one (7342ms) What is Valentine's Day? strangulation -0.888888888887 What is Valentine's Day? -> $x: ($x, happen in, valentine) -> (strangulation, is happening in, a Valentine) -> strangulation (7343ms) What is Valentine's Day? exactly -0.888888888887 What is Valentine's Day? -> $x: ($x, happen in, valentine) -> (exactly, started happening in, Blue Valentine) -> exactly (7342ms) What is Valentine's Day? the madness and magic -0.888888888889 What is Valentine's Day? -> $x: ($x, bring about, valentine 's day) -> (the madness and magic, brought about by, Valentine?s Day) -> the madness and magic (7343ms) What is Valentine's Day? Viola Davis Viola Davis -0.999999999994 What is Valentine's Day? -> $x: ($x, wear, valentine) -> (Viola Davis Viola Davis, arrives wearing, Valentine) -> Viola Davis Viola Davis (7344ms) What is Valentine's Day? gentlemen -0.999999999994 What is Valentine's Day? -> $x: ($x, wear, valentine) -> (gentlemen, wear, Valentine shades) -> gentlemen (7344ms) What is Valentine's Day? the softest -0.999999999994 What is Valentine's Day? -> $x: ($x, wear, valentine) -> (the softest, is wearing, a Red Valentine) -> the softest (7343ms) What is Valentine's Day? Jen -0.999999999994 What is Valentine's Day? -> $x: ($x, wear, valentine) -> (Jen, wore, her Valentine) -> Jen (7344ms) What is Valentine's Day? stride -0.999999999994 What is Valentine's Day? -> $x: ($x, wear, valentine) -> (stride, wore, their special Valentine) -> stride (7343ms) What is Valentine's Day? One heart -0.999999999994 What is Valentine's Day? -> $x: ($x, wear, valentine) -> (One heart, will wear, a valentine) -> One heart (7344ms) What is Valentine's Day? Emen -0.999999999994 What is Valentine's Day? -> $x: ($x, wear, valentine) -> (Emen, is wearing, a Valentine) -> Emen (7344ms) What is Valentine's Day? one hot favorite dress women -0.999999999994 What is Valentine's Day? -> $x: ($x, wear, valentine) -> (one hot favorite dress women, can wear on, valentine) -> one hot favorite dress women (7344ms) What is Valentine's Day? each man -0.999999999994 What is Valentine's Day? -> $x: ($x, wear, valentine) -> (each man, wore, his valentine) -> each man (7343ms) What is Valentine's Day? Cornwall -0.999999999994 What is Valentine's Day? -> $x: ($x, wear, valentine) -> (Cornwall, wore, an Anna Valentine champagne silk dress) -> Cornwall (7343ms) What is Valentine's Day? the season -0.999999999994 What is Valentine's Day? -> $x: ($x, wear, valentine) -> (the season, to be worn for, Valentines Day) -> the season (7344ms) What is Valentine's Day? supporters -0.999999999994 What is Valentine's Day? -> $x: ($x, wear, valentine) -> (supporters, to wear on, Valentines Day) -> supporters (7343ms) What is Valentine's Day? Denton -0.999999999994 What is Valentine's Day? -> $x: ($x, wear, valentine) -> (Denton, wears, Valentine) -> Denton (7344ms) What is Valentine's Day? a valentine fridge magnet -0.999999999994 What is Valentine's Day? -> $x: ($x, wear, valentine) -> (a valentine fridge magnet, wear, a valentine pin-back) -> a valentine fridge magnet (7343ms) What is Valentine's Day? Zoe -0.999999999994 What is Valentine's Day? -> $x: ($x, wear, valentine) -> (Zoe, were wearing, Valentine) -> Zoe (7344ms) What is Valentine's Day? better color -0.999999999994 What is Valentine's Day? -> $x: ($x, wear, valentine) -> (better color, is there to wear on, Valentine) -> better color (7344ms) What is Valentine's Day? the young ladies -0.999999999994 What is Valentine's Day? -> $x: ($x, wear, valentine) -> (the young ladies, would wear the name of, their valentine) -> the young ladies (7344ms) What is Valentine's Day? a cobweb -0.999999999994 What is Valentine's Day? -> $x: ($x, wear, valentine) -> (a cobweb, wears, a valentine arc) -> a cobweb (7344ms) What is Valentine's Day? A man -0.999999999994 What is Valentine's Day? -> $x: ($x, wear, valentine) -> (A man, would wear a woman 's name to, claim her as his valentine) -> A man (7343ms) What is Valentine's Day? the Marines -0.999999999994 What is Valentine's Day? -> $x: ($x, wear, valentine) -> (the Marines, wore, Valentine) -> the Marines (7343ms) Who was the first host of Jeopardy? Art Fleming 0.111111111109 Who was the first host of Jeopardy? -> $x: ($x, host, jeopardy) -> (Art Fleming, was the host of, Jeopardy) -> Art Fleming (841ms) Who was the first host of Jeopardy? Alex Trebek 0.111111111109 Who was the first host of Jeopardy? -> $x: ($x, host, jeopardy) -> (Alex Trebek, has been hosting, Jeopardy) -> Alex Trebek (841ms) Who was the first host of Jeopardy? ?AND NOW... HERE 0.111111111109 Who was the first host of Jeopardy? -> $x: ($x, host, jeopardy) -> (?AND NOW... HERE, IS THE HOST OF, JEOPARDY) -> ?AND NOW... HERE (841ms) Who was the first host of Jeopardy? NickD 0.111111111109 Who was the first host of Jeopardy? -> $x: ($x, host, jeopardy) -> (NickD, will be hosting, Hacker Jeopardy) -> NickD (841ms) Who was the first host of Jeopardy? Texas Public Health 0.111111111109 Who was the first host of Jeopardy? -> $x: ($x, host, jeopardy) -> (Texas Public Health, will host a game of, Jeopardy) -> Texas Public Health (841ms) How many Great Lakes are there? a film 0.7777777777770001 How many Great Lakes are there? -> $x: ($x, be in between, great) -> (a film, be in between, ?great? and ?classic) -> a film (1025ms) How many Great Lakes are there? signature products 0.7777777777770001 How many Great Lakes are there? -> $x: ($x, be in between, great) -> (signature products, are somewhere in between, good and great) -> signature products (1026ms) How many Great Lakes are there? card 0.7777777777770001 How many Great Lakes are there? -> $x: ($x, be in between, great) -> (card, was sandwiched in between, other great events) -> card (1025ms) How many Great Lakes are there? The Pasta Shop 0.7777777777770001 How many Great Lakes are there? -> $x: ($x, be in between, great) -> (The Pasta Shop, is squeezed in between, other great food places) -> The Pasta Shop (1026ms) How many Great Lakes are there? Carmona 0.7777777777770001 How many Great Lakes are there? -> $x: ($x, be in between, great) -> (Carmona, was situated in between, the great kingdom) -> Carmona (1025ms) How many Great Lakes are there? Ajmer 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (Ajmer, is the history of, the great and pious messenger) -> Ajmer (1170ms) How many Great Lakes are there? a nation 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (a nation, is the history of, its great men) -> a nation (1229ms) How many Great Lakes are there? United States history 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (United States history, is the history of, a great experiment) -> United States history (1170ms) How many Great Lakes are there? art 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (art, is also the history of, great artists) -> art (1083ms) How many Great Lakes are there? The Dukawa 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (The Dukawa, have a history of being, great fighters) -> The Dukawa (1170ms) How many Great Lakes are there? ?The book 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (?The book, is an oral history of, the great zombie wars) -> ?The book (1170ms) How many Great Lakes are there? surgery 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (surgery, is the history of, great ideas and inventions) -> surgery (1025ms) How many Great Lakes are there? the political arena 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (the political arena, is a history of, great importance) -> the political arena (1083ms) How many Great Lakes are there? the model 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (the model, has a long history of being, a great machine) -> the model (1229ms) How many Great Lakes are there? short 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (short, is the history of, this great man) -> short (1170ms) How many Great Lakes are there? America 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (America, is the history of, great male achievements) -> America (1229ms) How many Great Lakes are there? men 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (men, so is this extensive history of, great excellence) -> men (1083ms) How many Great Lakes are there? Pompano Beach 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (Pompano Beach, has a history of being, a great band) -> Pompano Beach (1170ms) How many Great Lakes are there? Music 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (Music, has a history of being, a great and noble communicator) -> Music (1170ms) How many Great Lakes are there? mankind 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (mankind, is the history of, its great men) -> mankind (1082ms) How many Great Lakes are there? football 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (football, is the history of, great men) -> football (1229ms) How many Great Lakes are there? Saboteurs 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (Saboteurs, is the definitive history of, this last great chapter) -> Saboteurs (1083ms) How many Great Lakes are there? a great project 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (a great project, is usually the history of, a great client) -> a great project (1083ms) How many Great Lakes are there? The Mahabharata 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (The Mahabharata, is the history of, the Great War) -> The Mahabharata (1229ms) How many Great Lakes are there? Two Centuries 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (Two Centuries, is the history of, great entrepreneurs) -> Two Centuries (1229ms) How many Great Lakes are there? Christ 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (Christ, is the history of, a great passion) -> Christ (1083ms) How many Great Lakes are there? fame 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (fame, was revisionist history of, the Great Depression) -> fame (1083ms) How many Great Lakes are there? theatre 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (theatre, is the history of, great drama) -> theatre (1025ms) How many Great Lakes are there? science 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (science, is a history of, great individual thinkers) -> science (1229ms) How many Great Lakes are there? horrible damage 0.44444444444200004 How many Great Lakes are there? -> $x: (great lake, do, $x) -> (the Great Lakes, have done, horrible damage) -> horrible damage (1229ms) How many Great Lakes are there? a film 0.7777777777770001 How many Great Lakes are there? -> $x: ($x, be in between, great) -> (a film, be in between, ?great? and ?classic) -> a film (549ms) How many Great Lakes are there? signature products 0.7777777777770001 How many Great Lakes are there? -> $x: ($x, be in between, great) -> (signature products, are somewhere in between, good and great) -> signature products (549ms) How many Great Lakes are there? card 0.7777777777770001 How many Great Lakes are there? -> $x: ($x, be in between, great) -> (card, was sandwiched in between, other great events) -> card (549ms) How many Great Lakes are there? The Pasta Shop 0.7777777777770001 How many Great Lakes are there? -> $x: ($x, be in between, great) -> (The Pasta Shop, is squeezed in between, other great food places) -> The Pasta Shop (549ms) How many Great Lakes are there? Carmona 0.7777777777770001 How many Great Lakes are there? -> $x: ($x, be in between, great) -> (Carmona, was situated in between, the great kingdom) -> Carmona (549ms) How many Great Lakes are there? Ajmer 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (Ajmer, is the history of, the great and pious messenger) -> Ajmer (558ms) How many Great Lakes are there? a nation 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (a nation, is the history of, its great men) -> a nation (561ms) How many Great Lakes are there? United States history 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (United States history, is the history of, a great experiment) -> United States history (559ms) How many Great Lakes are there? art 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (art, is also the history of, great artists) -> art (552ms) How many Great Lakes are there? The Dukawa 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (The Dukawa, have a history of being, great fighters) -> The Dukawa (558ms) How many Great Lakes are there? ?The book 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (?The book, is an oral history of, the great zombie wars) -> ?The book (558ms) How many Great Lakes are there? surgery 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (surgery, is the history of, great ideas and inventions) -> surgery (549ms) How many Great Lakes are there? the political arena 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (the political arena, is a history of, great importance) -> the political arena (552ms) How many Great Lakes are there? the model 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (the model, has a long history of being, a great machine) -> the model (561ms) How many Great Lakes are there? short 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (short, is the history of, this great man) -> short (558ms) How many Great Lakes are there? America 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (America, is the history of, great male achievements) -> America (561ms) How many Great Lakes are there? men 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (men, so is this extensive history of, great excellence) -> men (552ms) How many Great Lakes are there? Pompano Beach 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (Pompano Beach, has a history of being, a great band) -> Pompano Beach (558ms) How many Great Lakes are there? Music 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (Music, has a history of being, a great and noble communicator) -> Music (558ms) How many Great Lakes are there? mankind 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (mankind, is the history of, its great men) -> mankind (552ms) How many Great Lakes are there? football 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (football, is the history of, great men) -> football (561ms) How many Great Lakes are there? Saboteurs 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (Saboteurs, is the definitive history of, this last great chapter) -> Saboteurs (552ms) How many Great Lakes are there? a great project 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (a great project, is usually the history of, a great client) -> a great project (552ms) How many Great Lakes are there? The Mahabharata 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (The Mahabharata, is the history of, the Great War) -> The Mahabharata (561ms) How many Great Lakes are there? Two Centuries 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (Two Centuries, is the history of, great entrepreneurs) -> Two Centuries (561ms) How many Great Lakes are there? Christ 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (Christ, is the history of, a great passion) -> Christ (552ms) How many Great Lakes are there? fame 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (fame, was revisionist history of, the Great Depression) -> fame (552ms) How many Great Lakes are there? theatre 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (theatre, is the history of, great drama) -> theatre (549ms) How many Great Lakes are there? science 0.555555555552 How many Great Lakes are there? -> $x: ($x, be history of, great) -> (science, is a history of, great individual thinkers) -> science (561ms) How many Great Lakes are there? horrible damage 0.44444444444200004 How many Great Lakes are there? -> $x: (great lake, do, $x) -> (the Great Lakes, have done, horrible damage) -> horrible damage (561ms) Who is Terrence Malick? two films 0.44444444444 Who is Terrence Malick? -> $x: (terrence malick, do, $x) -> (Terrence Malick, does, two films) -> two films (792ms) Who is Terrence Malick? forty 0.44444444444 Who is Terrence Malick? -> $x: (terrence malick, do, $x) -> (Terrence Malick, did in over, forty) -> forty (792ms) Who is Terrence Malick? sexual obsession -0.0 Who is Terrence Malick? -> $x: (terrence malick, be about, $x) -> (Terrence Malick, is making a movie about, sexual obsession) -> sexual obsession (822ms) Who is Terrence Malick? The same -0.0 Who is Terrence Malick? -> $x: ($x, be of, terrence malick) -> (The same, is certainly true of, Terrence Malick?s) -> The same (792ms) Who is Terrence Malick? Stanley Cavell -0.0 Who is Terrence Malick? -> $x: ($x, influence, terrence malick) -> (Stanley Cavell, Influenced, Terrence Malick) -> Stanley Cavell (792ms) Who is Terrence Malick? open-ended take -0.0 Who is Terrence Malick? -> $x: ($x, found, terrence malick) -> (open-ended take, could be found in, Terrence Malick?s ?The Tree) -> open-ended take (991ms) Who is Terrence Malick? The video screens -0.0 Who is Terrence Malick? -> $x: ($x, play, terrence malick) -> (The video screens, were playing, Terrence Malick-y footage) -> The video screens (792ms) Who is Terrence Malick? grace -0.0 Who is Terrence Malick? -> $x: (terrence malick, be about, $x) -> (Terrence Malick, is all about, grace) -> grace (822ms) Who is Terrence Malick? novo filme -0.0 Who is Terrence Malick? -> $x: ($x, do, terrence malick) -> (novo filme, do, Terrence Malick estreia j?) -> novo filme (870ms) Who is Terrence Malick? David Gordon Green -0.0 Who is Terrence Malick? -> $x: ($x, influence, terrence malick) -> (David Gordon Green, Influenced By, Terrence Malick) -> David Gordon Green (792ms) Who is Terrence Malick? Ottawa -0.0 Who is Terrence Malick? -> $x: ($x, here, terrence malick) -> (Ottawa, People born here, Terrence Malick) -> Ottawa (943ms) Who is Terrence Malick? the movie -0.111111111111 Who is Terrence Malick? -> $x: ($x, be in, terrence malick) -> (the movie, are brilliant in, a Terrence Malick-inspired way) -> the movie (991ms) Who is Terrence Malick? the news -0.111111111111 Who is Terrence Malick? -> $x: (terrence malick, be in, $x) -> (Terrence Malick, was back in, the news) -> the news (1179ms) Who is Terrence Malick? Tarkovsky -0.111111111111 Who is Terrence Malick? -> $x: (terrence malick, be in, $x) -> (Terrence Malick, are soaked in, Tarkovsky) -> Tarkovsky (991ms) Who is Terrence Malick? Waco -0.111111111111 Who is Terrence Malick? -> $x: (terrence malick, be in, $x) -> (Terrence Malick, was born in, Waco) -> Waco (991ms) Who is Terrence Malick? thirty minutes -0.111111111111 Who is Terrence Malick? -> $x: (terrence malick, be in, $x) -> (Terrence Malick?s ?Badlands ?, was screening in, thirty minutes) -> thirty minutes (1179ms) Who is Terrence Malick? Natalie Portman -0.111111111111 Who is Terrence Malick? -> $x: ($x, be in, terrence malick) -> (Natalie Portman, is to take roles in, Terrence Malick) -> Natalie Portman (1179ms) Who is Terrence Malick? a big way -0.111111111111 Who is Terrence Malick? -> $x: (terrence malick, be in, $x) -> (Terrence Malick, is making up for lost time in, a big way) -> a big way (991ms) Who is Terrence Malick? Hollywood -0.111111111111 Who is Terrence Malick? -> $x: (terrence malick, be in, $x) -> (director Terrence Malick, is a god in, Hollywood) -> Hollywood (1179ms) Who is Terrence Malick? the holy hell -0.111111111111 Who is Terrence Malick? -> $x: ($x, be in, terrence malick) -> (the holy hell, is going on in, Terrence Malick?s) -> the holy hell (1180ms) Who is Terrence Malick? the biggest boost -0.222222222222 Who is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (the biggest boost, is, Terrence Malick?s Tree) -> the biggest boost (1180ms) Who is Terrence Malick? video compilations -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, has been making, video compilations) -> video compilations (1191ms) Who is Terrence Malick? The New World -0.222222222222 Who is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (The New World, was, Terrence Malick) -> The New World (1197ms) Who is Terrence Malick? a vision -0.222222222222 Who is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (a vision, is equal to, Terrence Malick) -> a vision (1196ms) Who is Terrence Malick? an interesting director -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, has been, an interesting director) -> an interesting director (1179ms) Who is Terrence Malick? prayer -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick?s new film, is a form of, prayer) -> prayer (1193ms) Who is Terrence Malick? cinema -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, is a saint of, cinema) -> cinema (1198ms) Who is Terrence Malick? an extraordinary and unique experience -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, must be, an extraordinary and unique experience) -> an extraordinary and unique experience (1198ms) Who is Terrence Malick? Rooney Mara -0.222222222222 Who is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (Rooney Mara, were filming, the Terrence Malick film Lawless) -> Rooney Mara (1197ms) Who is Terrence Malick? links and resources -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, is full of, links and resources) -> links and resources (1198ms) Who is Terrence Malick? Hazanavicius -0.222222222222 Who is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (Hazanavicius, was up against, Terrence Malick) -> Hazanavicius (1191ms) Who is Terrence Malick? hand -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (dazza Terrence Malick, was on, hand) -> hand (1180ms) Who is Terrence Malick? the Best Director -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, was selected, the Best Director) -> the Best Director (1197ms) Who is Terrence Malick? a kinded spirit -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, is just, a kinded spirit) -> a kinded spirit (1193ms) Who is Terrence Malick? The Road -0.222222222222 Who is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (The Road, had been filmed by, Terrence Malick) -> The Road (1195ms) Who is Terrence Malick? a big event -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (A new Terrence Malick movie, is always, a big event) -> a big event (1180ms) Who is Terrence Malick? 2009 will -0.222222222222 Who is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (2009 will, be, Terrence Malick) -> 2009 will (1195ms) Who is Terrence Malick? Bale -0.222222222222 Who is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (Bale, is shooting, two Terrence Malick films) -> Bale (1199ms) Who is Terrence Malick? time -0.222222222222 Who is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (time, were, Terrence Malick) -> time (1195ms) Who is Terrence Malick? Best Picture -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, was nominated for, Best Picture) -> Best Picture (1198ms) Who is Terrence Malick? moment -0.222222222222 Who is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (moment, is from, Terrence Malick 's-The Tree) -> moment (1197ms) Who is Terrence Malick? Few films -0.222222222222 Who is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (Few films, were as polarizing as, Terrence Malick) -> Few films (1199ms) Who is Terrence Malick? hard people -0.222222222222 Who is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (hard people, have been on, Terrence Malick) -> hard people (1198ms) Who is Terrence Malick? a project -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, was already working on, a project) -> a project (1193ms) Who is Terrence Malick? the Philippines -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, was going to come to, the Philippines) -> the Philippines (1195ms) Who is Terrence Malick? Cannes -0.222222222222 Who is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (Cannes, was, Terrence Malick?s Tree) -> Cannes (1195ms) Who is Terrence Malick? the year -0.222222222222 Who is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (the year, was, Terrence Malick?s) -> the year (1198ms) Who is Terrence Malick? a filmmaker -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, was, a filmmaker) -> a filmmaker (1191ms) Who is Terrence Malick? the film -0.222222222222 Who is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (the film, are, Terrence Malick) -> the film (1196ms) Who is Terrence Malick? the top prize -0.222222222222 Who is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (the top prize, is, Terrence Malick?s ?The Tree) -> the top prize (1198ms) Who is Terrence Malick? a rarity -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick?s fourth film, is, a rarity) -> a rarity (1197ms) Who is Terrence Malick? a directing award -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (renowned auteur Terrence Malick, is up for, a directing award) -> a directing award (1195ms) Who is Terrence Malick? Green -0.222222222222 Who is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (Green, has been often compared to, Terrence Malick) -> Green (1191ms) Who is Terrence Malick? a director and screenwriter rare -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, is, a director and screenwriter rare) -> a director and screenwriter rare (1197ms) Who is Terrence Malick? town -0.222222222222 Who is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (town, was for, reclusive US director Terrence Malick) -> town (1198ms) Who is Terrence Malick? notable absentee -0.222222222222 Who is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (notable absentee, was, the director Terrence Malick) -> notable absentee (1198ms) Who is Terrence Malick? a special filmmaker -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, is, a special filmmaker) -> a special filmmaker (1191ms) Who is Terrence Malick? the reclusive genius -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, has been called, the reclusive genius) -> the reclusive genius (1198ms) Who is Terrence Malick? a regular workhorse ? -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, was, a regular workhorse ?) -> a regular workhorse ? (1196ms) Who is Terrence Malick? African person -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (terrence malick, is an, African person) -> African person (1193ms) Who is Terrence Malick? far this year -0.222222222222 Who is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (far this year, is, Terrence Malick?s) -> far this year (1196ms) Who is Terrence Malick? The fifth Academy Award nominee -0.222222222222 Who is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (The fifth Academy Award nominee, is, Terrence Malick) -> The fifth Academy Award nominee (1197ms) Who is Terrence Malick? Dominik -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, was supposedly a strong influence for, Dominik) -> Dominik (1199ms) Who is Terrence Malick? one of the greatest filmmakers of all time -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, is, one of the greatest filmmakers of all time) -> one of the greatest filmmakers of all time (1199ms) Who is Terrence Malick? an up-and-comer -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, is, an up-and-comer) -> an up-and-comer (1193ms) Who is Terrence Malick? The best comparison -0.222222222222 Who is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (The best comparison, would be, Terrence Malick ?) -> The best comparison (1192ms) Who is Terrence Malick? artistic vision -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, is his deep commitment both to, artistic vision) -> artistic vision (1191ms) Who is Terrence Malick? best director ? -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (the director Terrence Malick, was nominated for, best director ?) -> best director ? (1197ms) Who is Terrence Malick? Steven D. Greydanus -0.222222222222 Who is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (Steven D. Greydanus, Is, Terrence Malick?s) -> Steven D. Greydanus (1196ms) Who is Terrence Malick? the same award -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, are up for, the same award) -> the same award (1199ms) Who is Terrence Malick? the greatest filmmakers -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, is one of, the greatest filmmakers) -> the greatest filmmakers (1198ms) Who is Terrence Malick? one artist -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (our estimation Terrence Malick, is second only to, one artist) -> one artist (1196ms) Who is Terrence Malick? each film -0.222222222222 Who is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (each film, is released by, Terrence Malick) -> each film (1197ms) Who is Terrence Malick? the performances -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, is living off of, the performances) -> the performances (1191ms) Who is Terrence Malick? a bold filmmaker -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (The Sacred Impulse Terrence Malick, is, a bold filmmaker) -> a bold filmmaker (1193ms) Who is Terrence Malick? Tree of Life -0.222222222222 Who is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (Tree of Life, is directed by, Terrence Malick) -> Tree of Life (1195ms) Who is Terrence Malick? a country mile -0.222222222222 Who is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (a country mile, was, Terrence Malick?s ambitious feast) -> a country mile (1191ms) Who is Terrence Malick? the most intuitive -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, is, the most intuitive) -> the most intuitive (1195ms) Who is Terrence Malick? a producer -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, is credited as, a producer) -> a producer (1191ms) Who is Terrence Malick? Anderson -0.222222222222 Who is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (Anderson, has been studying, Terrence Malick) -> Anderson (1193ms) Who is Terrence Malick? the first rank -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, is a filmmaker of, the first rank) -> the first rank (1191ms) Who is Terrence Malick? The more likely nominee -0.222222222222 Who is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (The more likely nominee, would be, Terrence Malick) -> The more likely nominee (1197ms) Who is Terrence Malick? 06 :04 -0.222222222222 Who is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (06 :04, AM Been watching, Terrence Malick?s) -> 06 :04 (1196ms) Who is Terrence Malick? a humanity -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Ford , Huston and Terrence Malick, was, a humanity) -> a humanity (1196ms) Who is Terrence Malick? Smith?s -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick?s vision, is n?t as narrow as, Smith?s) -> Smith?s (1196ms) Who is Terrence Malick? names -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick ?, are, names) -> names (1196ms) Who is Terrence Malick? genius -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, is a filmmaker of, genius) -> genius (1199ms) Who is Terrence Malick? official competition -0.222222222222 Who is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (official competition, were, American directors Terrence Malick) -> official competition (1197ms) Who is Terrence Malick? the Austin -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, IS Going to Take On, the Austin) -> the Austin (1195ms) Who is Terrence Malick? commedian -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (terrence malick, is a, commedian) -> commedian (1199ms) Who is Terrence Malick? star power -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, is certainly loading up on, star power) -> star power (1191ms) Who is Terrence Malick? Best Director -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, was nominated for, Best Director) -> Best Director (1195ms) Who is Terrence Malick? Pitt -0.222222222222 Who is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (Pitt, was directed by, Terrence Malick) -> Pitt (1195ms) Who is Terrence Malick? last year -0.222222222222 Who is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (last year, was, veteran U.S. film maker Terrence Malick) -> last year (1191ms) Who is Terrence Malick? God tier -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, is, God tier) -> God tier (1195ms) Who is Terrence Malick? Art -0.222222222222 Who is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (Art, is having, a Terrence Malick retrospective) -> Art (1198ms) Who is Terrence Malick? The BFI -0.222222222222 Who is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (The BFI, are reissuing, Terrence Malick?s Days) -> The BFI (1199ms) Who is Terrence Malick? Life -0.222222222222 Who is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (Life, is, director Terrence Malick?s meditation) -> Life (1198ms) Who is Terrence Malick? Portman?s next gig -0.222222222222 Who is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (Portman?s next gig, is, Terrence Malick?s film) -> Portman?s next gig (1191ms) Who is Terrence Malick? executive producers -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, are listed as, executive producers) -> executive producers (1196ms) Who is Terrence Malick? the JD Salinger -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (Terrence Malick, is, the JD Salinger) -> the JD Salinger (1193ms) Who is Terrence Malick? a really good year -0.222222222222 Who is Terrence Malick? -> $x: (terrence malick, be be, $x) -> (director Terrence Malick, is having, a really good year) -> a really good year (1197ms) Who is Terrence Malick? The film -0.222222222222 Who is Terrence Malick? -> $x: ($x, be be, terrence malick) -> (The film, was directed by, Terrence Malick) -> The film (1198ms) When did the Big Dig begin? the post-WWII Interstate Highway boom 1.1111111111 When did the Big Dig begin? -> $x: (big dig, begin in, $x) -> (the Big Dig, began in, the post-WWII Interstate Highway boom) -> the post-WWII Interstate Highway boom (994ms) When did the Big Dig begin? Boston 0.888888888884 When did the Big Dig begin? -> $x: (big dig, start in, $x) -> (?The Big Dig, was starting in, Boston) -> Boston (994ms) When did the Big Dig begin? much success 0.111111111111 When did the Big Dig begin? -> $x: (big dig, begin, $x) -> (the big dig, began ? without, much success) -> much success (994ms) When did the Big Dig begin? millions 0.111111111111 When did the Big Dig begin? -> $x: (big dig, begin, $x) -> (The big dig, begins today for, millions) -> millions (994ms) When did the Big Dig begin? dawn 0.111111111111 When did the Big Dig begin? -> $x: (big dig, begin, $x) -> (The ?Big Dig?, began at, dawn) -> dawn (994ms) When did the Big Dig begin? The idiots -0.0 When did the Big Dig begin? -> $x: ($x, do, big dig) -> (The idiots, did, ?The Big Dig? underground highway project) -> The idiots (1037ms) When did the Big Dig begin? instance -0.0 When did the Big Dig begin? -> $x: ($x, do, big dig) -> (instance, did n?t, the Big Dig) -> instance (1037ms) When did the Big Dig begin? Brinckerhoff -0.0 When did the Big Dig begin? -> $x: ($x, do, big dig) -> (Brinckerhoff, did with, its Big Dig shenanigans) -> Brinckerhoff (1037ms) When did the Big Dig begin? The memo -0.0 When did the Big Dig begin? -> $x: ($x, do, big dig) -> (The memo, has nothing to do with, the big dig) -> The memo (1037ms) When did the Big Dig begin? the state -0.0 When did the Big Dig begin? -> $x: ($x, do, big dig) -> (the state, did right on, the Big Dig) -> the state (994ms) When did the Big Dig begin? Dan Riehl -0.0 When did the Big Dig begin? -> $x: ($x, do, big dig) -> (Dan Riehl, does, a big dig) -> Dan Riehl (1037ms) When did the Big Dig begin? Transition Town TTP -0.0 When did the Big Dig begin? -> $x: ($x, do, big dig) -> (Transition Town TTP, do, the Big Dig ! youtube) -> Transition Town TTP (1037ms) When did the Big Dig begin? the pollution -0.0 When did the Big Dig begin? -> $x: ($x, cause, big dig) -> (the pollution, caused by, the Big Dig) -> the pollution (1037ms) When did the Big Dig begin? James Davidson -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, mac) -> (James Davidson, dug deeply into, the Mac) -> James Davidson (1369ms) When did the Big Dig begin? chinchoks -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, mac) -> (chinchoks, dig, Sesshu , Bach , John D. MacDonald) -> chinchoks (1354ms) When did the Big Dig begin? The crowd -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (The crowd, is digging, Giant big time) -> The crowd (1369ms) When did the Big Dig begin? family -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (family, dig, a big hole) -> family (1366ms) When did the Big Dig begin? Emily -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (Emily, just dug, big comfortable hole) -> Emily (1367ms) When did the Big Dig begin? The article -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, mac) -> (The article, digs into, Vince MacMahon) -> The article (1365ms) When did the Big Dig begin? Americans -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (Americans, dig, big cars) -> Americans (1367ms) When did the Big Dig begin? the villagers -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (the villagers, dig out, big stones) -> the villagers (1368ms) When did the Big Dig begin? a backhoe -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (a backhoe, dug, a big hole) -> a backhoe (1147ms) When did the Big Dig begin? Dad and son -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (Dad and son, dug, a big hole) -> Dad and son (1369ms) When did the Big Dig begin? ?We?ve -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (?We?ve, dug, a big hole) -> ?We?ve (1368ms) When did the Big Dig begin? extremely powerful back legs rabbits -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (extremely powerful back legs rabbits, dig, big holes) -> extremely powerful back legs rabbits (1369ms) When did the Big Dig begin? Windows 7 -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, mac) -> (Windows 7, dug out, a MacBook) -> Windows 7 (1147ms) When did the Big Dig begin? a matter -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (a matter, dug, a hole big and deep enough) -> a matter (1368ms) When did the Big Dig begin? a smile -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, mac) -> (a smile, dug back into, his mac'n'cheese) -> a smile (1368ms) When did the Big Dig begin? the children -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (the children, dug, a big pail) -> the children (1354ms) When did the Big Dig begin? Native Americans -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (Native Americans, dug, big holes) -> Native Americans (1368ms) When did the Big Dig begin? they?ve -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (they?ve, dug, a big hole) -> they?ve (1147ms) When did the Big Dig begin? the flashy advertising -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (the flashy advertising, dug, two big pits) -> the flashy advertising (1368ms) When did the Big Dig begin? the end -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (the end, dig, a big deep hole) -> the end (1368ms) When did the Big Dig begin? waste ? -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (waste ?, dig, a big hole) -> waste ? (1147ms) When did the Big Dig begin? the kids -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (the kids, just dug, the big beats) -> the kids (1354ms) When did the Big Dig begin? the atom bomb -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (the atom bomb, dug, a big canal) -> the atom bomb (1367ms) When did the Big Dig begin? hospitals -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (hospitals, dig into, Big Data) -> hospitals (1368ms) When did the Big Dig begin? Khan -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (Khan, dug, his big fingers) -> Khan (1115ms) When did the Big Dig begin? chicks -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (chicks, dig, big vocabularies) -> chicks (1115ms) When did the Big Dig begin? the street -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, mac) -> (the street, maybe dig into, some delicious mac ?n cheese) -> the street (1354ms) When did the Big Dig begin? Youre -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (Youre, digging yourself, a big hole) -> Youre (1368ms) When did the Big Dig begin? ?Chicks -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (?Chicks, dig, big brains) -> ?Chicks (1147ms) When did the Big Dig begin? Mike Mulligan and his steam shovel -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (Mike Mulligan and his steam shovel, dig, big holes) -> Mike Mulligan and his steam shovel (1368ms) When did the Big Dig begin? Black Oak Ridge .... Big engines -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (Black Oak Ridge .... Big engines, will dig, big ditches) -> Black Oak Ridge .... Big engines (1147ms) When did the Big Dig begin? local governments -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (local governments, start digging, big tunnels) -> local governments (1367ms) When did the Big Dig begin? I?d -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, mac) -> (I?d, totally dig, a Mac Shuffle) -> I?d (1366ms) When did the Big Dig begin? An estimated 30 million U. First -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (An estimated 30 million U. First, dig, a big hole) -> An estimated 30 million U. First (1354ms) When did the Big Dig begin? Arie Kamp -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, mac) -> (Arie Kamp, has dug up, Pat MacKay) -> Arie Kamp (1368ms) When did the Big Dig begin? Commerce -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (Commerce, dug, a big hole) -> Commerce (1368ms) When did the Big Dig begin? the pigs -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (the pigs, dig up, big patches) -> the pigs (1115ms) When did the Big Dig begin? Harrison -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, mac) -> (Harrison, dug into, his mac n? cheese & grapes) -> Harrison (1115ms) When did the Big Dig begin? the Warriors -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (the Warriors, dig, another big hole) -> the Warriors (1367ms) When did the Big Dig begin? Mr. Sharon -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (Mr. Sharon, has dug, a very big hole) -> Mr. Sharon (1369ms) When did the Big Dig begin? Windows users -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, mac) -> (Windows users, dig around in, Mac filesystems) -> Windows users (1367ms) When did the Big Dig begin? a place -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (a place, digs, a big hole) -> a place (1354ms) When did the Big Dig begin? Swam -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (Swam, dug, a big hole) -> Swam (1368ms) When did the Big Dig begin? a mud puddle -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (a mud puddle, dig, a big dirt pit) -> a mud puddle (1368ms) When did the Big Dig begin? ?How -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (?How, dig, such a big hole) -> ?How (1147ms) When did the Big Dig begin? the Titus Brothers -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (the Titus Brothers, dig, the big tunnel) -> the Titus Brothers (1367ms) When did the Big Dig begin? Fancy -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (Fancy, digs in, a big city) -> Fancy (1368ms) When did the Big Dig begin? The director -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (The director, dug, a big hole) -> The director (1367ms) When did the Big Dig begin? a girl -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (a girl, digs, a guy with a big dick) -> a girl (1115ms) When did the Big Dig begin? the new structure -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (the new structure, dig, a big hole) -> the new structure (1368ms) When did the Big Dig begin? Don?t -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (Don?t, dig, a big deep hole) -> Don?t (1369ms) When did the Big Dig begin? Bush -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (Bush, dug, a really big hole) -> Bush (1367ms) When did the Big Dig begin? The Teso -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (The Teso, can dig, a big portion) -> The Teso (1367ms) When did the Big Dig begin? Kevin -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (Kevin, dug, big holes) -> Kevin (1368ms) When did the Big Dig begin? bricks and rocks -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (bricks and rocks, dug, a big hole) -> bricks and rocks (1369ms) When did the Big Dig begin? the bulldozer -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (the bulldozer, dug, a big hole) -> the bulldozer (1365ms) When did the Big Dig begin? somebody -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (somebody, to dig, a big hole) -> somebody (1366ms) When did the Big Dig begin? head-on -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (head-on, digs up, big hypocrisies) -> head-on (1365ms) When did the Big Dig begin? Theyve -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (Theyve, dug, a big hole) -> Theyve (1368ms) When did the Big Dig begin? Chicks -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, mac) -> (Chicks, dig, Mac OS X) -> Chicks (1365ms) When did the Big Dig begin? an intense bout -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, mac) -> (an intense bout, digged up, my old Mac Plus) -> an intense bout (1365ms) When did the Big Dig begin? the soldiers -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (the soldiers, dug, a big hole) -> the soldiers (1354ms) When did the Big Dig begin? a man -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (a man, dug up, a big , earthenware cask) -> a man (1354ms) When did the Big Dig begin? The excavator -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (The excavator, dug, a big hole) -> The excavator (1368ms) When did the Big Dig begin? Weve -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (Weve, dug ourselves, a big hole) -> Weve (1366ms) When did the Big Dig begin? gardening -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (gardening, Dig, two big holes) -> gardening (1354ms) When did the Big Dig begin? Lord Para?ur?ma -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (Lord Para?ur?ma, dug, five big lakes) -> Lord Para?ur?ma (1367ms) When did the Big Dig begin? Location -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (Location, Digging, the big hole) -> Location (1115ms) When did the Big Dig begin? the guys -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (the guys, dig, big holes) -> the guys (1369ms) When did the Big Dig begin? Karen -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, mac) -> (Karen, is totally digging, her MacBook Pro) -> Karen (1365ms) When did the Big Dig begin? Don?t fig -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (Don?t fig, dig, a big wide hole) -> Don?t fig (1365ms) When did the Big Dig begin? bricks and stones -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (bricks and stones, dug, a big hole) -> bricks and stones (1366ms) When did the Big Dig begin? Old Romney quote -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, mac) -> (Old Romney quote, dug up by, @AlecMacGillis) -> Old Romney quote (1367ms) When did the Big Dig begin? Certain critics -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (Certain critics, dig, big fat juice) -> Certain critics (1366ms) When did the Big Dig begin? the contractor -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (the contractor, dug, a big hole) -> the contractor (1367ms) When did the Big Dig begin? the entire socailist democratic party -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (the entire socailist democratic party, dig, a big ditch) -> the entire socailist democratic party (1368ms) When did the Big Dig begin? the table and -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (the table and, dug into, big bowls) -> the table and (1368ms) When did the Big Dig begin? the tree -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (the tree, dig, a big hole) -> the tree (1115ms) When did the Big Dig begin? Microsoft -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (Microsoft, have dug, an awfully big hole) -> Microsoft (1365ms) When did the Big Dig begin? the lawnmower -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (the lawnmower, dug, a big hole) -> the lawnmower (1368ms) When did the Big Dig begin? Season 1 -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, mac) -> (Season 1, really dug, Kyle MacLachlan?s button-down look) -> Season 1 (1369ms) When did the Big Dig begin? Justis -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (Justis, dug, a big whole) -> Justis (1354ms) When did the Big Dig begin? a smaller plant -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (a smaller plant, just dig, a hole big enough) -> a smaller plant (1367ms) When did the Big Dig begin? the hole -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (the hole, is dug, too big) -> the hole (1369ms) When did the Big Dig begin? the insulation value -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (the insulation value, dig, a big hole) -> the insulation value (1367ms) When did the Big Dig begin? a forest -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (a forest, dig, a big mine) -> a forest (1368ms) When did the Big Dig begin? the iPad end-user licensing agreement -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, mac) -> (the iPad end-user licensing agreement, dug up by, MacRumors) -> the iPad end-user licensing agreement (1367ms) When did the Big Dig begin? Ash -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, mac) -> (Ash, was digging for, second and Mac) -> Ash (1365ms) When did the Big Dig begin? the builders -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (the builders, dug, a big hole) -> the builders (1368ms) When did the Big Dig begin? the east face -0.444444444441 When did the Big Dig begin? -> $x: ($x, dig, big) -> (the east face, dug, a snow cave big) -> the east face (1368ms) When did the Big Dig begin? Fans -0.555555555552 When did the Big Dig begin? -> $x: ($x, dig, big bang) -> (Fans, are digging, Big Bang?s strong promotions) -> Fans (1369ms) When did the Big Dig begin? any construction -1.666666666673 When did the Big Dig begin? -> $x: ($x, begin, big dig) -> (any construction, began on, the Big Dig) -> any construction (1369ms) When did the Big Dig begin? the Massachusetts Secretary -1.666666666673 When did the Big Dig begin? -> $x: ($x, begin, big dig) -> (the Massachusetts Secretary, begins planning, the Big Dig) -> the Massachusetts Secretary (1369ms) When did the Big Dig begin? The Times -1.7777777777839998 When did the Big Dig begin? -> $x: ($x, start, big dig) -> (The Times, has just started, its own Big Dig program) -> The Times (1369ms) What is foot and mouth disease? the virus 0.111111111111 What is foot and mouth disease? -> $x: ($x, cause, foot and mouth disease) -> (the virus, causes, foot and mouth disease) -> the virus (940ms) What is foot and mouth disease? an act 0.111111111111 What is foot and mouth disease? -> $x: ($x, cause, foot and mouth disease) -> (an act, may have caused, the foot-and-mouth disease outbreak) -> an act (940ms) What is foot and mouth disease? the Enterovirus 71 0.111111111111 What is foot and mouth disease? -> $x: ($x, cause, foot and mouth disease) -> (the Enterovirus 71, causes, Hand , Foot and Mouth Disease) -> the Enterovirus 71 (940ms) What is foot and mouth disease? EV71 0.111111111111 What is foot and mouth disease? -> $x: ($x, cause, foot and mouth disease) -> (EV71, can cause, hand , foot and mouth disease) -> EV71 (970ms) What is foot and mouth disease? The virus 0.111111111111 What is foot and mouth disease? -> $x: ($x, cause, foot and mouth disease) -> (The virus, causes, hand , foot and mouth disease) -> The virus (970ms) What is foot and mouth disease? EV-71 0.111111111111 What is foot and mouth disease? -> $x: ($x, cause, foot and mouth disease) -> (EV-71, causes, hand , foot and mouth disease) -> EV-71 (970ms) What is foot and mouth disease? Virus 0.111111111111 What is foot and mouth disease? -> $x: ($x, cause, foot and mouth disease) -> (Virus, causes, foot-and-mouth disease) -> Virus (940ms) What is foot and mouth disease? the viruses 0.111111111111 What is foot and mouth disease? -> $x: ($x, cause, foot and mouth disease) -> (the viruses, cause, hand , foot , and mouth disease) -> the viruses (940ms) What is foot and mouth disease? a virus 0.111111111111 What is foot and mouth disease? -> $x: ($x, cause, foot and mouth disease) -> (a virus, causes, hand , foot and mouth disease) -> a virus (940ms) What is foot and mouth disease? the restrictions 0.111111111111 What is foot and mouth disease? -> $x: ($x, cause, foot and mouth disease) -> (the restrictions, caused by, Foot and Mouth Disease) -> the restrictions (940ms) What is foot and mouth disease? VP2 -0.0 What is foot and mouth disease? -> $x: ($x, in, foot and mouth disease) -> (VP2, observed in, foot-and-mouth disease virus) -> VP2 (970ms) What is foot and mouth disease? a research centre -0.111111111111 What is foot and mouth disease? -> $x: ($x, cause, foot and mouth) -> (a research centre, would cause, the foot and mouth outbreak) -> a research centre (1446ms) What is foot and mouth disease? The disease -0.111111111111 What is foot and mouth disease? -> $x: ($x, cause, foot and mouth) -> (The disease, causes blisters on, the mouth and feet) -> The disease (1446ms) What is foot and mouth disease? the U.S. -0.111111111112 What is foot and mouth disease? -> $x: ($x, do, foot and mouth disease) -> (the U.S., do to help prevent, foot-and-mouth disease) -> the U.S. (1499ms) What is foot and mouth disease? the region -0.111111111112 What is foot and mouth disease? -> $x: (foot and mouth disease, be for, $x) -> (foot-and-mouth disease, is a priority for, the region) -> the region (1600ms) What is foot and mouth disease? NAIS -0.111111111112 What is foot and mouth disease? -> $x: ($x, do, foot and mouth disease) -> (NAIS, does nothing for, foot and mouth disease) -> NAIS (1499ms) What is foot and mouth disease? consumers -0.111111111112 What is foot and mouth disease? -> $x: ($x, do, foot and mouth disease) -> (consumers, do to help prevent, foot-and-mouth disease) -> consumers (1601ms) What is foot and mouth disease? Yilma -0.111111111112 What is foot and mouth disease? -> $x: ($x, do, foot and mouth disease) -> (Yilma, did extensive work on, foot-and-mouth disease) -> Yilma (1499ms) What is foot and mouth disease? animal farming -0.111111111112 What is foot and mouth disease? -> $x: (foot and mouth disease, be for, $x) -> (Foot-and-mouth disease, is a severe plague for, animal farming) -> animal farming (1499ms) What is foot and mouth disease? Essex -0.222222222222 What is foot and mouth disease? -> $x: ($x, found, foot and mouth disease) -> (Essex, was found to have, foot-and-mouth disease) -> Essex (1601ms) What is foot and mouth disease? a sausage -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (a sausage, was infected with, foot-and-mouth disease virus) -> a sausage (2142ms) What is foot and mouth disease? October 14 , 2011 2:52 PM -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (October 14 , 2011 2:52 PM, is, hand , foot and mouth disease) -> October 14 , 2011 2:52 PM (2142ms) What is foot and mouth disease? The cows -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (The cows, are all coming down with, foot and mouth disease) -> The cows (1992ms) What is foot and mouth disease? mouth disease -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (mouth disease, is often confused with, foot-and-mouth disease) -> mouth disease (2122ms) What is foot and mouth disease? Botswana -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (Botswana, is dotted with, foot-and-mouth-disease control points) -> Botswana (1718ms) What is foot and mouth disease? Argentina -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (Argentina, is, free of foot and mouth disease) -> Argentina (2144ms) What is foot and mouth disease? North Korea -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (North Korea, has been hit hard with, foot-and-mouth disease) -> North Korea (2142ms) What is foot and mouth disease? Canada -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (Canada, has been free of, foot-and-mouth disease) -> Canada (2142ms) What is foot and mouth disease? humans -0.222222222223 What is foot and mouth disease? -> $x: ($x, be to, foot and mouth disease) -> (humans, are frequently exposed to, foot-and-mouth disease) -> humans (2144ms) What is foot and mouth disease? interest -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (interest, is, foot-and-mouth disease) -> interest (2142ms) What is foot and mouth disease? a FAD -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (a FAD, is, foot-and-mouth disease) -> a FAD (2122ms) What is foot and mouth disease? the technology -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (the technology, will be on identifying, foot-and-mouth disease) -> the technology (2070ms) What is foot and mouth disease? the real problem -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (the real problem, is the prevalence of, foot and mouth disease) -> the real problem (2139ms) What is foot and mouth disease? origin -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (origin, has been declared free of, foot and mouth disease) -> origin (1718ms) What is foot and mouth disease? Coxsackie A16 -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (Coxsackie A16, is responsible for, hand foot and mouth disease) -> Coxsackie A16 (2070ms) What is foot and mouth disease? The full name -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (The full name, is, ?hand , foot and mouth disease) -> The full name (2070ms) What is foot and mouth disease? the livestock sector -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (the livestock sector, is the threat of, foot and mouth disease) -> the livestock sector (2142ms) What is foot and mouth disease? a few years -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (a few years, ago were suffering from, foot and mouth disease) -> a few years (2142ms) What is foot and mouth disease? HFMD -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (HFMD, is often confused with, foot-and-mouth disease) -> HFMD (2122ms) What is foot and mouth disease? Herpangina -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (Herpangina, is similar to hand, foot and mouth disease) -> Herpangina (2139ms) What is foot and mouth disease? the United States -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (the United States, are, foot-and-mouth disease and Texas fever) -> the United States (1992ms) What is foot and mouth disease? SO WHAT -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (SO WHAT, IS, FOOT AND MOUTH DISEASE) -> SO WHAT (2142ms) What is foot and mouth disease? An overview -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (An overview, is, foot and mouth disease) -> An overview (2023ms) What is foot and mouth disease? Even dried meat -0.222222222223 What is foot and mouth disease? -> $x: ($x, can, foot and mouth disease) -> (Even dried meat, can contain, foot-and-mouth disease) -> Even dried meat (2122ms) What is foot and mouth disease? animals -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (animals, are susceptible to, foot and mouth disease) -> animals (2142ms) What is foot and mouth disease? young animals -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (young animals, are all signs of, foot and mouth disease) -> young animals (1687ms) What is foot and mouth disease? the calf case -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (the calf case, is negative for, Foot-and-Mouth Disease) -> the calf case (2139ms) What is foot and mouth disease? symptoms -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (symptoms, were diagnosed with, foot-and-mouth disease) -> symptoms (2139ms) What is foot and mouth disease? A serious short-term problem -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (A serious short-term problem, is, foot-and-mouth disease) -> A serious short-term problem (2144ms) What is foot and mouth disease? Edinburgh -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (Edinburgh, is famous for, the ?foot and mouth disease) -> Edinburgh (1687ms) What is foot and mouth disease? South Korea -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (South Korea, has been devastated by, foot-and-mouth disease) -> South Korea (1687ms) What is foot and mouth disease? Fire blight -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (Fire blight, is, the foot and mouth disease) -> Fire blight (2122ms) What is foot and mouth disease? healthy animals -0.222222222223 What is foot and mouth disease? -> $x: ($x, can, foot and mouth disease) -> (healthy animals, can recover from, foot-and-mouth disease) -> healthy animals (2070ms) What is foot and mouth disease? the disease -0.222222222223 What is foot and mouth disease? -> $x: ($x, be to, foot and mouth disease) -> (the disease, are identical to, foot and mouth disease) -> the disease (2139ms) What is foot and mouth disease? the time -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (the time, were streaming with, foot-and mouth disease) -> the time (2023ms) What is foot and mouth disease? help North Korea -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (help North Korea, has been hit hard with, foot-and-mouth disease) -> help North Korea (2023ms) What is foot and mouth disease? The United States -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (The United States, has been free of, foot and mouth disease) -> The United States (2139ms) What is foot and mouth disease? Britain -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (Britain, was gripped by, foot and mouth disease) -> Britain (2122ms) What is foot and mouth disease? Brazil -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (Brazil, are affected by, foot and mouth disease) -> Brazil (2139ms) What is foot and mouth disease? the UK more farms -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (the UK more farms, are being tested for, foot-and-mouth disease) -> the UK more farms (1718ms) What is foot and mouth disease? A fever -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (A fever, is often the first sign of, hand-foot-and-mouth disease) -> A fever (2142ms) What is foot and mouth disease? 12 -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (12, are suffering from, foot and mouth disease) -> 12 (2142ms) What is foot and mouth disease? two-thirds -0.222222222223 What is foot and mouth disease? -> $x: (foot and mouth disease, be about, $x) -> (Foot-and-mouth disease, is common to about, two-thirds) -> two-thirds (1992ms) What is foot and mouth disease? The UK -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (The UK, was hit by, Foot and Mouth disease) -> The UK (2122ms) What is foot and mouth disease? An example -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (An example, was the tragedy of, foot-and-mouth disease) -> An example (2070ms) What is foot and mouth disease? The best known example -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (The best known example, is, foot and mouth disease) -> The best known example (2139ms) What is foot and mouth disease? Livestock -0.222222222223 What is foot and mouth disease? -> $x: ($x, can, foot and mouth disease) -> (Livestock, can contract, foot-and-mouth disease) -> Livestock (2139ms) What is foot and mouth disease? discussion -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (discussion, was the outbreak of, foot-and-mouth disease) -> discussion (1686ms) What is foot and mouth disease? the countryside -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (the countryside, are worried about, foot-and-mouth disease) -> the countryside (2139ms) What is foot and mouth disease? focus -0.222222222223 What is foot and mouth disease? -> $x: ($x, be to, foot and mouth disease) -> (focus, has been given to, BSA and Foot and Mouth disease) -> focus (2139ms) What is foot and mouth disease? the casings -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (the casings, is officially free from, foot and mouth disease) -> the casings (1718ms) What is foot and mouth disease? Ireland -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (Ireland, was hit hard by, foot and mouth disease) -> Ireland (2022ms) What is foot and mouth disease? young children -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (young children, is, ?hand-foot-and-mouth disease ?) -> young children (2142ms) What is foot and mouth disease? Footpaths -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (Footpaths, is the potential outbreak of, Foot and Mouth disease) -> Footpaths (2139ms) What is foot and mouth disease? The EU -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (The EU, is currently, foot and mouth disease-free) -> The EU (2142ms) What is foot and mouth disease? No. HFMD -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (No. HFMD, is a different disease than, foot-and-mouth disease) -> No. HFMD (2144ms) What is foot and mouth disease? Brief Version -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (Brief Version, is, hand , foot and mouth disease) -> Brief Version (1992ms) What is foot and mouth disease? the animals -0.222222222223 What is foot and mouth disease? -> $x: ($x, be to, foot and mouth disease) -> (the animals, had been exposed to, foot-and-mouth disease) -> the animals (2142ms) What is foot and mouth disease? Cumbria -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (Cumbria, were struck with, foot and mouth disease) -> Cumbria (2139ms) What is foot and mouth disease? Trang -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (Trang, is facing an outbreak of, foot and mouth disease) -> Trang (2139ms) What is foot and mouth disease? much attention -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (much attention, has been focused on, Foot-and-Mouth Disease) -> much attention (1718ms) What is foot and mouth disease? A PROBLEM -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (A PROBLEM, IS, THE Foot and Mouth DISEASE) -> A PROBLEM (2070ms) What is foot and mouth disease? FMD Humans -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (FMD Humans, can be infected with, foot-and-mouth disease) -> FMD Humans (2139ms) What is foot and mouth disease? 50,000 animals -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (50,000 animals, have been infected with, foot-and-mouth disease) -> 50,000 animals (1992ms) What is foot and mouth disease? the country -0.222222222223 What is foot and mouth disease? -> $x: ($x, be be, foot and mouth disease) -> (the country, is, free of the foot and mouth disease) -> the country (1992ms) What is foot and mouth disease? certain types -0.333333333333 What is foot and mouth disease? -> $x: (foot and mouth, be cause by, $x) -> (Hand , foot and mouth disease, is caused by, certain types) -> certain types (2144ms) What is foot and mouth disease? infection -0.333333333333 What is foot and mouth disease? -> $x: (foot and mouth, be cause by, $x) -> (foot and mouth, is caused by, infection) -> infection (2144ms) What is foot and mouth disease? a similar virus -0.333333333333 What is foot and mouth disease? -> $x: (foot and mouth, be cause by, $x) -> (Hand , foot and mouth, is usually caused by, a similar virus) -> a similar virus (2144ms) What is foot and mouth disease? the South -0.333333333333 What is foot and mouth disease? -> $x: ($x, develop, foot and mouth disease) -> (the South, developed some cases of, Foot-and-Mouth disease) -> the South (2144ms) What is foot and mouth disease? a cloud -0.333333333333 What is foot and mouth disease? -> $x: (foot and mouth, be cause by, $x) -> ('s foot and mouth epidemic, may have been caused by, a cloud) -> a cloud (2146ms) What is foot and mouth disease? a Picornavirus -0.333333333333 What is foot and mouth disease? -> $x: (foot and mouth, be cause by, $x) -> (Foot and mouth disease, is caused by, a Picornavirus) -> a Picornavirus (2144ms) What is foot and mouth disease? the news -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (Foot and Mouth Disease, is in, the news) -> the news (2153ms) What is foot and mouth disease? place -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease prohibitions, were put in, place) -> place (2153ms) What is foot and mouth disease? milk -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease virus, excreted in, milk) -> milk (2152ms) What is foot and mouth disease? Authorities Concept Scheme -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (Foot-and-mouth disease virus, In Scheme, Authorities Concept Scheme) -> Authorities Concept Scheme (2150ms) What is foot and mouth disease? June 2001 -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease, was reported in, June 2001) -> June 2001 (2152ms) What is foot and mouth disease? the United Kingdom -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease, occurred in, the United Kingdom) -> the United Kingdom (2150ms) What is foot and mouth disease? England -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot and mouth disease, have been detected in, England) -> England (2151ms) What is foot and mouth disease? Surrey -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot and mouth disease, breaking out in, Surrey) -> Surrey (2153ms) What is foot and mouth disease? the U.K. -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease, began in, the U.K.) -> the U.K. (2153ms) What is foot and mouth disease? fitness -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease virus, produce a decline in, fitness) -> fitness (2148ms) What is foot and mouth disease? ftli -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (rinderpest and foot and mouth disease, will be created in, ftli) -> ftli (2151ms) What is foot and mouth disease? Warwickshire -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot and mouth disease, has been discovered in, Warwickshire) -> Warwickshire (2148ms) What is foot and mouth disease? late April -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (hand , foot and mouth disease, began in, late April) -> late April (2150ms) What is foot and mouth disease? the headlines -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease, was back in, the headlines) -> the headlines (2153ms) What is foot and mouth disease? August -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot and mouth disease, were abolished in, August) -> August (2153ms) What is foot and mouth disease? Mongolia -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot and mouth disease, still spread easily in, Mongolia) -> Mongolia (2151ms) What is foot and mouth disease? 27 pigs -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease, was found in, 27 pigs) -> 27 pigs (2152ms) What is foot and mouth disease? S.Korea -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot and mouth disease, have been reported in, S.Korea) -> S.Korea (2152ms) What is foot and mouth disease? dairy cattle -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot and mouth disease, are seen in, dairy cattle) -> dairy cattle (2152ms) What is foot and mouth disease? recent weeks -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (hand , foot and mouth diseases, have been high in, recent weeks) -> recent weeks (2146ms) What is foot and mouth disease? mice -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease virus, induces protection in, mice) -> mice (2149ms) What is foot and mouth disease? Egham -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease, was found in, Egham) -> Egham (2151ms) What is foot and mouth disease? Europe -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (Foot and Mouth Disease, is a dreaded disease in, Europe) -> Europe (2152ms) What is foot and mouth disease? the paralysis -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease, has resulted in, the paralysis) -> the paralysis (2150ms) What is foot and mouth disease? County Louth -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease, was confirmed in, County Louth) -> County Louth (2154ms) What is foot and mouth disease? subsequent results -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot and mouth disease, thus reflected in, subsequent results) -> subsequent results (2151ms) What is foot and mouth disease? the domestic market -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease, occurred in, the domestic market) -> the domestic market (2146ms) What is foot and mouth disease? China -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (hand , foot and mouth disease, are continuing to rise in, China) -> China (2153ms) What is foot and mouth disease? France -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease, was found in, France) -> France (2149ms) What is foot and mouth disease? Australia -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (Foot-And-Mouth Disease, ever become established in, Australia) -> Australia (2151ms) What is foot and mouth disease? livestock -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease, produces immunity in, livestock) -> livestock (2153ms) What is foot and mouth disease? Topical Terms Concept Scheme -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (Foot-and-mouth disease--Epidemiology, In Scheme, Topical Terms Concept Scheme) -> Topical Terms Concept Scheme (2154ms) What is foot and mouth disease? the middle -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (The Foot and Mouth Disease outbreak, occurred in, the middle) -> the middle (2150ms) What is foot and mouth disease? the Asian country -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease, has broken out in, the Asian country) -> the Asian country (2152ms) What is foot and mouth disease? 1929 -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (Foot-and-mouth disease, struck the United States in, 1929) -> 1929 (2154ms) What is foot and mouth disease? the market -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease, is being sold in, the market) -> the market (2153ms) What is foot and mouth disease? the animal -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot and mouth disease, would be in, the animal) -> the animal (2151ms) What is foot and mouth disease? Wanborough -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (Foot and Mouth Disease, has been confirmed in, Wanborough) -> Wanborough (2150ms) What is foot and mouth disease? the present study -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (Foot-and-Mouth disease, were found in, the present study) -> the present study (2148ms) What is foot and mouth disease? Mexico -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (Foot and Mouth disease, broke out in, Mexico) -> Mexico (2151ms) What is foot and mouth disease? 34 countries -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (Foot-and-mouth disease, has been diagnosed in, 34 countries) -> 34 countries (2146ms) What is foot and mouth disease? 2001 -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot and mouth disease, may have reached England in, 2001) -> 2001 (2152ms) What is foot and mouth disease? rural areas -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (Foot and Mouth disease, is causing in, rural areas) -> rural areas (2152ms) What is foot and mouth disease? status -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot and mouth disease, was downgraded in, status) -> status (2153ms) What is foot and mouth disease? the islands -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (Foot and mouth disease, is reputedly endemic in, the islands) -> the islands (2151ms) What is foot and mouth disease? a child -0.444444444444 What is foot and mouth disease? -> $x: ($x, get, foot and mouth disease) -> (a child, get, hand , foot and mouth disease) -> a child (2153ms) What is foot and mouth disease? January 2006 -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease, will be stopped in, January 2006) -> January 2006 (2148ms) What is foot and mouth disease? infants -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (hand , foot and mouth disease, occur in, infants) -> infants (2152ms) What is foot and mouth disease? India -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (Foot and mouth disease, is endemic in, India) -> India (2151ms) What is foot and mouth disease? countries -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot and mouth disease, was compulsory than in, countries) -> countries (2146ms) What is foot and mouth disease? Japan -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot and mouth disease, occurred in, Japan) -> Japan (2153ms) What is foot and mouth disease? the Communist country -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease, had broken out in, the Communist country) -> the Communist country (2150ms) What is foot and mouth disease? Egypt -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (Foot-and-mouth disease, spreads in, Egypt) -> Egypt (2154ms) What is foot and mouth disease? the UK. -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (The foot and mouth disease, is back in, the UK.) -> the UK. (2151ms) What is foot and mouth disease? the U.S including Alabama -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (hand , foot and mouth disease, is in, the U.S including Alabama) -> the U.S including Alabama (2151ms) What is foot and mouth disease? cattle -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (Foot and Mouth Disease, confirmed in, cattle) -> cattle (2152ms) What is foot and mouth disease? Little Emme -0.444444444444 What is foot and mouth disease? -> $x: ($x, get, foot and mouth disease) -> (Little Emme, got, hand foot and mouth disease) -> Little Emme (2146ms) What is foot and mouth disease? the latest series -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease, broke out in, the latest series) -> the latest series (2153ms) What is foot and mouth disease? a herd -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot and mouth disease, was discovered in, a herd) -> a herd (2153ms) What is foot and mouth disease? healthy adults -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (Hand , foot and mouth disease, is rare in, healthy adults) -> healthy adults (2148ms) What is foot and mouth disease? 2003/2004 -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (Foot-and-mouth disease, was much more widespread in, 2003/2004) -> 2003/2004 (2151ms) What is foot and mouth disease? Mozambique -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot and mouth disease, has been reported in, Mozambique) -> Mozambique (2146ms) What is foot and mouth disease? Los Angeles -0.444444444444 What is foot and mouth disease? -> $x: (foot and mouth disease, in in, $x) -> (foot-and-mouth disease, erupted in, Los Angeles) -> Los Angeles (2151ms) What is foot and mouth disease? the facility -0.444444444445 What is foot and mouth disease? -> $x: ($x, involve, foot and mouth disease) -> (the facility, involves highly, contagious foot-and-mouth disease) -> the facility (2154ms) What is foot and mouth disease? the Government -0.666666666667 What is foot and mouth disease? -> $x: ($x, contain, foot and mouth disease) -> (the Government, contain, the disastrous foot and mouth disease) -> the Government (2154ms) What is foot and mouth disease? Too many people -0.777777777778 What is foot and mouth disease? -> $x: ($x, foot, mouth disease) -> (Too many people, have foot in, mouth disease) -> Too many people (2154ms) What is foot and mouth disease? BPD -0.777777777778 What is foot and mouth disease? -> $x: ($x, foot, mouth disease) -> (BPD, has foot in, mouth disease) -> BPD (2154ms) What is foot and mouth disease? Knapp -0.777777777778 What is foot and mouth disease? -> $x: ($x, foot, mouth disease) -> (Knapp, must have foot in, mouth disease) -> Knapp (2154ms) What has been found to kill it? eating 0.555555555556 What has been found to kill it? -> $x: ($x, have be find, kill) -> (eating, have been found to have little effect on, prey killing) -> eating (1292ms) What has been found to kill it? a priest 0.555555555556 What has been found to kill it? -> $x: ($x, have be find, kill) -> (a priest, had just been found guilty of, the killing) -> a priest (1293ms) What has been found to kill it? Nine MOVE members 0.555555555556 What has been found to kill it? -> $x: ($x, have be find, kill) -> (Nine MOVE members, had been found guilty for, the killing) -> Nine MOVE members (693ms) What has been found to kill it? no clear evidence 0.555555555556 What has been found to kill it? -> $x: ($x, have be find, kill) -> (no clear evidence, has been found for, a 'mass-killing effect) -> no clear evidence (1238ms) What has been found to kill it? Thieves 0.555555555556 What has been found to kill it? -> $x: ($x, have be find to, kill) -> (Thieves, was found to have, a 99 % kill rate) -> Thieves (1292ms) What has been found to kill it? the inquest jury 0.555555555556 What has been found to kill it? -> $x: ($x, have be find to, kill) -> (the inquest jury, found there to have been, unlawful killing) -> the inquest jury (1237ms) What has been found to kill it? None 0.555555555556 What has been found to kill it? -> $x: ($x, have be find, kill) -> (None, has ever been found for, the Killing Curse) -> None (1292ms) What has been found to kill it? Makubela 0.555555555556 What has been found to kill it? -> $x: ($x, have be find, kill) -> (Makubela, had been found with, an adult impala ram kill) -> Makubela (692ms) What has been found to kill it? Thieves oil 0.555555555556 What has been found to kill it? -> $x: ($x, have be find, kill) -> (Thieves oil, was found to have, a 99.96 % percent kill rate) -> Thieves oil (1237ms) What has been found to kill it? The virus 0.555555555556 What has been found to kill it? -> $x: ($x, have be find, kill) -> (The virus, has been found in, a killed wild duck) -> The virus (1238ms) What has been found to kill it? Blend 0.555555555556 What has been found to kill it? -> $x: ($x, have be find to, kill) -> (Blend, was found to have, a 99.6 percent kill rate) -> Blend (1292ms) What has been found to kill it? few Al Qaeda 0.555555555556 What has been found to kill it? -> $x: ($x, have be find, kill) -> (few Al Qaeda, had been found though, the killing) -> few Al Qaeda (693ms) What has been found to kill it? 2011 Readers 0.555555555556 What has been found to kill it? -> $x: ($x, have be find, kill) -> (2011 Readers, may have been surprised to find, that Killing) -> 2011 Readers (1292ms) What has been found to kill it? ancient camels 0.44444444444500003 What has been found to kill it? -> $x: ($x, have be find, camel) -> (ancient camels, have been found in, Camel) -> ancient camels (1292ms) What has been found to kill it? the family 0.333333333334 What has been found to kill it? -> $x: ($x, have be find to, lead poisoning) -> (the family, has been found to have, lead poisoning) -> the family (1452ms) What has been found to kill it? nearby villages 0.333333333334 What has been found to kill it? -> $x: ($x, have be find, lead poisoning) -> (nearby villages, were found to have, lead poisoning) -> nearby villages (1452ms) What has been found to kill it? the population 0.333333333334 What has been found to kill it? -> $x: ($x, have be find to, lead poisoning) -> (the population, have been found to have, lead poisoning) -> the population (1452ms) What has been found to kill it? a child 0.333333333334 What has been found to kill it? -> $x: ($x, have be find, lead poisoning) -> (a child, was found to have, lead poisoning) -> a child (1452ms) What has been found to kill it? Stevia -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (Stevia, have been found around, the world) -> Stevia (1456ms) What has been found to kill it? submerged ruins -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (submerged ruins, have been found all over, the world) -> submerged ruins (1456ms) What has been found to kill it? similar ceremonies -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (similar ceremonies, have been found around, the world) -> similar ceremonies (1453ms) What has been found to kill it? No evidence -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (No evidence, has been found in, the new world) -> No evidence (1455ms) What has been found to kill it? course -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (course, has been found throughout, the world) -> course (1452ms) What has been found to kill it? Dead Zones -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (Dead Zones, are have been found in, the world) -> Dead Zones (1457ms) What has been found to kill it? Gants -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (Gants, have been found all over, the world) -> Gants (1453ms) What has been found to kill it? LY brand series products -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (LY brand series products, have been found all over, the world) -> LY brand series products (1455ms) What has been found to kill it? A second race of dwarves -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (A second race of dwarves, have been found in, the Hollow World) -> A second race of dwarves (1453ms) What has been found to kill it? Link -0.0 What has been found to kill it? -> $x: ($x, have be find, titanium) -> (Link, had been sent to find, some titanium) -> Link (1452ms) What has been found to kill it? NASA?s Kepler Mission -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (NASA?s Kepler Mission, has been finding, new worlds) -> NASA?s Kepler Mission (1452ms) What has been found to kill it? mineral -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (mineral, could have been found elsewhere on, world) -> mineral (1456ms) What has been found to kill it? the largest oil well -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (the largest oil well, had ever been found in, the world) -> the largest oil well (1458ms) What has been found to kill it? mummies -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (mummies, have been found all over, the world) -> mummies (1458ms) What has been found to kill it? Even older settlements -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (Even older settlements, have been found around, the world) -> Even older settlements (1457ms) What has been found to kill it? Fossils -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (Fossils, have been found all over, the world) -> Fossils (1455ms) What has been found to kill it? the burial -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (the burial, has been found all over, the world) -> the burial (1453ms) What has been found to kill it? dryness -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (dryness, have been found all over, the world) -> dryness (1453ms) What has been found to kill it? the giant fungi -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (the giant fungi, have been found all over, the world) -> the giant fungi (1456ms) What has been found to kill it? Dinosaur fossils -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (Dinosaur fossils, have been found, all over the world) -> Dinosaur fossils (1457ms) What has been found to kill it? XDR-TB -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (XDR-TB, have been found throughout, the world) -> XDR-TB (1458ms) What has been found to kill it? A London teen -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (A London teen, has been found to have, the world) -> A London teen (1458ms) What has been found to kill it? Tattooed mummies -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (Tattooed mummies, have been found all over, the world) -> Tattooed mummies (1455ms) What has been found to kill it? Around 35 paintings -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (Around 35 paintings, have been found in, the World Heritage area) -> Around 35 paintings (1456ms) What has been found to kill it? earlier sites -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (earlier sites, have been found around, the world) -> earlier sites (1457ms) What has been found to kill it? systems suppliers -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (systems suppliers, have been finding around, the world) -> systems suppliers (1452ms) What has been found to kill it? Rhodolith beds -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (Rhodolith beds, have been found throughout, the world) -> Rhodolith beds (1458ms) What has been found to kill it? Reserves -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (Reserves, have also been found around, the world) -> Reserves (1452ms) What has been found to kill it? healing techniques -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (healing techniques, have been found over, the world) -> healing techniques (1455ms) What has been found to kill it? The following records -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (The following records, have been found for, world) -> The following records (1457ms) What has been found to kill it? the internet obsolete parts -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (the internet obsolete parts, have been found all over, the world) -> the internet obsolete parts (1458ms) What has been found to kill it? ancient archery -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (ancient archery, has been found throughout, the world) -> ancient archery (1456ms) What has been found to kill it? Autism -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (Autism, has been found throughout, the world) -> Autism (1458ms) What has been found to kill it? a new species -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (a new species, has been found in, the world) -> a new species (1455ms) What has been found to kill it? PCBs -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (PCBs, have been found throughout, the world) -> PCBs (1458ms) What has been found to kill it? Homo erectus -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (Homo erectus, has been found throughout, the world) -> Homo erectus (1456ms) What has been found to kill it? Paleozoic and Precambrian ages -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (Paleozoic and Precambrian ages, have been found in, the world) -> Paleozoic and Precambrian ages (1457ms) What has been found to kill it? four times -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (four times, has been found throughout, the world) -> four times (1453ms) What has been found to kill it? life -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (life, has been found on, another world) -> life (1453ms) What has been found to kill it? labyrinths -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (labyrinths, have been found, all over the world) -> labyrinths (1457ms) What has been found to kill it? low birth weight -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (low birth weight, have been found around, the world) -> low birth weight (1457ms) What has been found to kill it? The Urban Dragon -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (The Urban Dragon, has been found all through, the world) -> The Urban Dragon (1453ms) What has been found to kill it? Labyrinths -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (Labyrinths, have been found throughout, the world) -> Labyrinths (1457ms) What has been found to kill it? goods -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (goods, have been found all over, the world) -> goods (1455ms) What has been found to kill it? Lindane -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (Lindane, has been found throughout, the world) -> Lindane (1456ms) What has been found to kill it? examples -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (examples, have been found all over, the world) -> examples (1458ms) What has been found to kill it? Incense artifacts -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (Incense artifacts, have been found throughout, the world) -> Incense artifacts (1455ms) What has been found to kill it? Arthropleura -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (Arthropleura, have been found around, the world) -> Arthropleura (1456ms) What has been found to kill it? Mummies -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (Mummies, have been found all over, the world) -> Mummies (1458ms) What has been found to kill it? no true parents -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (no true parents, have been found in, the world) -> no true parents (1458ms) What has been found to kill it? LRPs -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (LRPs, have been found effective around, the world) -> LRPs (1452ms) What has been found to kill it? Aniline -0.0 What has been found to kill it? -> $x: ($x, have be find, volatile) -> (Aniline, has also been found as, a volatile component) -> Aniline (1453ms) What has been found to kill it? various archaeological sites -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (various archaeological sites, have been found around, the world) -> various archaeological sites (1453ms) What has been found to kill it? dinosaur fossils -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (dinosaur fossils, have been found around, the world) -> dinosaur fossils (1456ms) What has been found to kill it? agriculture -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (agriculture, have been found elsewhere in, the world) -> agriculture (1453ms) What has been found to kill it? a type -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (a type, has been found throughout, the world) -> a type (1458ms) What has been found to kill it? the dinosaurs -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (the dinosaurs, have been found all over, the world) -> the dinosaurs (1457ms) What has been found to kill it? Cave paintings -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (Cave paintings, have been found, all over the world) -> Cave paintings (1457ms) What has been found to kill it? One , called Nephrite -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (One , called Nephrite, has been found throughout, the world) -> One , called Nephrite (1453ms) What has been found to kill it? years -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (years, has been found throughout, the world) -> years (1453ms) What has been found to kill it? trees -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (trees, have been found all over, the world) -> trees (1452ms) What has been found to kill it? dinosaurs -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (dinosaurs, had been found everywhere around, the world) -> dinosaurs (1452ms) What has been found to kill it? groundwater areas -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (groundwater areas, have been found all over, the world) -> groundwater areas (1456ms) What has been found to kill it? similar figurines -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (similar figurines, have been found all over, the world) -> similar figurines (1455ms) What has been found to kill it? artifacts -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (artifacts, have been found throughout, the world) -> artifacts (1458ms) What has been found to kill it? the diamonds -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (the diamonds, have been found in, the world) -> the diamonds (1453ms) What has been found to kill it? sign languages -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (sign languages, have been found around, the world) -> sign languages (1453ms) What has been found to kill it? profit -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (profit, have been found throughout, the world) -> profit (1458ms) What has been found to kill it? only four such items -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (only four such items, have been found in, the world) -> only four such items (1456ms) What has been found to kill it? CAH -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (CAH, have been found all over, the world) -> CAH (1458ms) What has been found to kill it? communication -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (communication, have been found in, the world) -> communication (1458ms) What has been found to kill it? Megalodon -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (Megalodon, have been found all over, the world) -> Megalodon (1455ms) What has been found to kill it? a new virus -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (a new virus, has been found in, the world) -> a new virus (1455ms) What has been found to kill it? purer deposits -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (purer deposits, have been found in, the world) -> purer deposits (1457ms) What has been found to kill it? fossils -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (fossils, have been found around, the world) -> fossils (1457ms) What has been found to kill it? The new strain -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (The new strain, has been found throughout, the world) -> The new strain (1458ms) What has been found to kill it? bird flu -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (bird flu, have been found throughout, the world) -> bird flu (1456ms) What has been found to kill it? Iguanodon fossils -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (Iguanodon fossils, have been found around, the world) -> Iguanodon fossils (1455ms) What has been found to kill it? Atlantis -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (Atlantis, has been found all over, the world) -> Atlantis (1455ms) What has been found to kill it? the assembled tPNA -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (the assembled tPNA, could have been found in, a world) -> the assembled tPNA (1457ms) What has been found to kill it? Samples of the giant fungi -0.0 What has been found to kill it? -> $x: ($x, have be find, world) -> (Samples of the giant fungi, have been found, all over the world) -> Samples of the giant fungi (1457ms) What has been found to kill it? a way -1.33333333333 What has been found to kill it? -> $x: ($x, have be find to, world) -> (a way, has also found a way to be, a world class athlete) -> a way (1459ms) What has been found to kill it? the other guy -1.33333333333 What has been found to kill it? -> $x: ($x, have be find to, world) -> (the other guy, has been hard to find in, the liberal world) -> the other guy (1459ms) What has been found to kill it? fuels -1.33333333333 What has been found to kill it? -> $x: ($x, have be find to, world) -> (fuels, has been found to be, the world?s worst air pollutant) -> fuels (1459ms) What has been found to kill it? the Black Galaxy -1.33333333333 What has been found to kill it? -> $x: ($x, have be find to, world) -> (the Black Galaxy, has been sent to find, the World Tree) -> the Black Galaxy (1459ms) What has been found to kill it? none -1.33333333333 What has been found to kill it? -> $x: ($x, have be find to, world) -> (none, have been found to exist in, the New World) -> none (1459ms) What has been found to kill it? a cotton program -1.33333333333 What has been found to kill it? -> $x: ($x, have be find to, world) -> (a cotton program, has been found to violate, world trading rules) -> a cotton program (1459ms) What has been found to kill it? human beings -1.33333333333 What has been found to kill it? -> $x: ($x, have be find to, world) -> (human beings, have been finding new ways to look at, the world) -> human beings (1459ms) What has been found to kill it? Columbus -1.33333333333 What has been found to kill it? -> $x: ($x, have be find to, world) -> (Columbus, may have been the first to find, the new world) -> Columbus (1459ms) What has been found to kill it? a priori -1.33333333333 What has been found to kill it? -> $x: ($x, have be find to, world) -> (a priori, necessarily will have to be found in, the world) -> a priori (1459ms) What has been found to kill it? the bricks -1.33333333333 What has been found to kill it? -> $x: ($x, have be find to, world) -> (the bricks, were found to have, Old World inscriptions) -> the bricks (1459ms) What has been found to kill it? Quinn -1.33333333333 What has been found to kill it? -> $x: ($x, have be find to, world) -> (Quinn, has still been unable to find, his brother?s world) -> Quinn (1459ms) Where is NATO headquartered? Sarajevo 0.77777777778 Where is NATO headquartered? -> $x: (nato, be headquarters in, $x) -> (NATO, is also maintaining a military headquarters in, Sarajevo) -> Sarajevo (563ms) Where is NATO headquartered? Brussels -0.22222222222100002 Where is NATO headquartered? -> $x: (nato, be headquarter in, $x) -> (NATO, is headquartered in, Brussels) -> Brussels (563ms) Where is NATO headquartered? Belgium -1.111111111108 Where is NATO headquartered? -> $x: ($x, headquarters, nato) -> (Belgium, hosts the headquarters of, NATO) -> Belgium (577ms) Where is NATO headquartered? the city -1.111111111108 Where is NATO headquartered? -> $x: ($x, headquarters, nato) -> (the city, was the headquarters of, NATO) -> the city (563ms) Where is NATO headquartered? 1971 Lisbon -1.111111111108 Where is NATO headquartered? -> $x: ($x, headquarters, nato) -> (1971 Lisbon, became headquarters for, NATO) -> 1971 Lisbon (563ms) Where is NATO headquartered? GAME OVER Belgium -1.111111111108 Where is NATO headquartered? -> $x: ($x, headquarters, nato) -> (GAME OVER Belgium, houses the political headquarters of, NATO) -> GAME OVER Belgium (563ms) Where is NATO headquartered? Malta -1.111111111108 Where is NATO headquartered? -> $x: ($x, headquarters, nato) -> (Malta, was the headquarters of, Southern Nato Command) -> Malta (577ms) Where is NATO headquartered? The capital -1.111111111108 Where is NATO headquartered? -> $x: ($x, headquarters, nato) -> (The capital, is the headquarters of, NATO) -> The capital (563ms) Where is NATO headquartered? the war -1.111111111108 Where is NATO headquartered? -> $x: ($x, headquarters, nato) -> (the war, hosts the headquarters of, NATO) -> the war (563ms) Where is NATO headquartered? the lively city -1.111111111108 Where is NATO headquartered? -> $x: ($x, headquarters, nato) -> (the lively city, is headquarters for, both NATO) -> the lively city (563ms) Where is NATO headquartered? Portugal -1.111111111108 Where is NATO headquartered? -> $x: ($x, headquarters, nato) -> (Portugal, is the operational headquarters for, NATO?s work) -> Portugal (563ms) Where is NATO headquartered? France -1.666666666658 Where is NATO headquartered? -> $x: (nato, headquarters, $x) -> (Nato, had had its headquarters in, France) -> France (577ms) How long does the Madness last? Sucker Punch -0.111111111111 How long does the Madness last? -> $x: ($x, be short, madness) -> (Sucker Punch, is nothing short of, pure visual madness) -> Sucker Punch (823ms) How long does the Madness last? science and technology -0.111111111111 How long does the Madness last? -> $x: ($x, effect, madness) -> (science and technology, amplify the effect of, the madness) -> science and technology (823ms) How long does the Madness last? 14 people -0.111111111111 How long does the Madness last? -> $x: ($x, effect, madness) -> (14 people, were seriously effected by, this madness) -> 14 people (823ms) How long does the Madness last? Damian -0.111111111111 How long does the Madness last? -> $x: ($x, effect, madness) -> (Damian, had a little effect on, the madness) -> Damian (823ms) How long does the Madness last? Employers -0.111111111111 How long does the Madness last? -> $x: ($x, effect, madness) -> (Employers, have been effected by, the Reafer Madness Movement) -> Employers (823ms) How long does the Madness last? the past week -0.111111111111 How long does the Madness last? -> $x: ($x, be short, madness) -> (the past week, are nothing short of, total madness) -> the past week (823ms) How long does the Madness last? the Moon -0.111111111111 How long does the Madness last? -> $x: ($x, effect, madness) -> (the Moon, therefore had some effect on, madness) -> the Moon (823ms) How long does the Madness last? project -0.111111111111 How long does the Madness last? -> $x: ($x, be short, madness) -> (project, is nothing short of, absolute madness) -> project (823ms) How long does the Madness last? real estate transactions -0.111111111111 How long does the Madness last? -> $x: ($x, be short, madness) -> (real estate transactions, are nothing short of, complete madness) -> real estate transactions (823ms) How long does the Madness last? the Yemen -0.111111111111 How long does the Madness last? -> $x: ($x, be short, madness) -> (the Yemen, is one step short of, madness) -> the Yemen (823ms) How long does the Madness last? the present age -0.111111111111 How long does the Madness last? -> $x: ($x, be short, madness) -> (the present age, is nothing short of, suicidal madness) -> the present age (823ms) How long does the Madness last? an unhealthy environment -0.111111111111 How long does the Madness last? -> $x: ($x, be short, madness) -> (an unhealthy environment, is little short of, madness) -> an unhealthy environment (823ms) How long does the Madness last? industrialism -0.111111111111 How long does the Madness last? -> $x: ($x, effect, madness) -> (industrialism, has multiplied the effects of, the madness) -> industrialism (823ms) How long does the Madness last? such conditions -0.111111111111 How long does the Madness last? -> $x: ($x, be short, madness) -> (such conditions, was little short of, madness) -> such conditions (823ms) How long does the Madness last? theories -0.111111111111 How long does the Madness last? -> $x: ($x, be short, madness) -> (theories, are just short of, madness) -> theories (823ms) How long does the Madness last? valuable lives -0.111111111111 How long does the Madness last? -> $x: ($x, be short, madness) -> (valuable lives, was nothing short of, madness) -> valuable lives (823ms) How long does the Madness last? the youngsters -0.111111111111 How long does the Madness last? -> $x: ($x, be short, madness) -> (the youngsters, were cut short during, this madness) -> the youngsters (823ms) How long does the Madness last? stake -0.111111111111 How long does the Madness last? -> $x: ($x, be short, madness) -> (stake, is little short of, madness) -> stake (823ms) How long does the Madness last? the telescopes -0.111111111111 How long does the Madness last? -> $x: ($x, be short, madness) -> (the telescopes, is nothing short of, madness) -> the telescopes (823ms) How long does the Madness last? subtle phaser type -0.111111111111 How long does the Madness last? -> $x: ($x, effect, madness) -> (subtle phaser type, effects to, extreme FSU style madness) -> subtle phaser type (823ms) How long does the Madness last? Life -0.111111111111 How long does the Madness last? -> $x: ($x, be short, madness) -> (Life, is just too short for, this madness) -> Life (823ms) How long does the Madness last? East Jerusalem -0.111111111111 How long does the Madness last? -> $x: ($x, be short, madness) -> (East Jerusalem, is nothing short of, ?madness ?) -> East Jerusalem (823ms) How long does the Madness last? multiple times -0.111111111111 How long does the Madness last? -> $x: ($x, be short, madness) -> (multiple times, was nothing short of, madness) -> multiple times (823ms) What university did Thomas Jefferson found? law -0.222222222222 What university did Thomas Jefferson found? -> $x: (thomas jefferson, study, $x) -> (Thomas Jefferson, studied, law) -> law (728ms) What university did Thomas Jefferson found? Latin and Greek -0.222222222222 What university did Thomas Jefferson found? -> $x: (thomas jefferson, study, $x) -> (Thomas Jefferson, studied, Latin and Greek) -> Latin and Greek (767ms) What university did Thomas Jefferson found? the Koran -0.222222222222 What university did Thomas Jefferson found? -> $x: (thomas jefferson, study, $x) -> (Thomas Jefferson, studied, the Koran) -> the Koran (728ms) What university did Thomas Jefferson found? Palladio -0.222222222222 What university did Thomas Jefferson found? -> $x: (thomas jefferson, study, $x) -> (Thomas Jefferson, studied, Palladio) -> Palladio (728ms) What university did Thomas Jefferson found? 15 hours -0.222222222222 What university did Thomas Jefferson found? -> $x: (thomas jefferson, study, $x) -> (Thomas Jefferson, frequently studied, 15 hours) -> 15 hours (728ms) What university did Thomas Jefferson found? a tutor -0.222222222222 What university did Thomas Jefferson found? -> $x: (thomas jefferson, study, $x) -> (Thomas Jefferson, studied Latin and Greek under, a tutor) -> a tutor (728ms) What university did Thomas Jefferson found? Pennsylvania -0.222222222222 What university did Thomas Jefferson found? -> $x: (thomas jefferson, study, $x) -> (Thomas Jefferson McCamant, studied medicine in, Pennsylvania) -> Pennsylvania (728ms) What university did Thomas Jefferson found? fossils -0.222222222222 What university did Thomas Jefferson found? -> $x: (thomas jefferson, study, $x) -> (Benjamin Franklin and Thomas Jefferson, also studied, fossils) -> fossils (728ms) What university did Thomas Jefferson found? seven words -0.333333333334 What university did Thomas Jefferson found? -> $x: (thomas jefferson, best, $x) -> (' Thomas Jefferson, is best remembered for, seven words) -> seven words (767ms) What university did Thomas Jefferson found? the philosophe ideal -0.333333333334 What university did Thomas Jefferson found? -> $x: (thomas jefferson, best, $x) -> (Thomas Jefferson, may have best embodied, the philosophe ideal) -> the philosophe ideal (767ms) What university did Thomas Jefferson found? Hamilton -0.333333333334 What university did Thomas Jefferson found? -> $x: (thomas jefferson, best, $x) -> (Former President Thomas Jefferson, had been bested by, Hamilton) -> Hamilton (767ms) What university did Thomas Jefferson found? the way scholars -0.888888888886 What university did Thomas Jefferson found? -> $x: ($x, study, thomas jefferson) -> (the way scholars, study the life of, Thomas Jefferson) -> the way scholars (806ms) What university did Thomas Jefferson found? James Monroe -0.888888888886 What university did Thomas Jefferson found? -> $x: ($x, study, thomas jefferson) -> (James Monroe, studied law under, Thomas Jefferson) -> James Monroe (806ms) What university did Thomas Jefferson found? Monroe -0.888888888886 What university did Thomas Jefferson found? -> $x: ($x, study, thomas jefferson) -> (Monroe, studied law under, Thomas Jefferson) -> Monroe (806ms) What university did Thomas Jefferson found? the same ones -0.888888888886 What university did Thomas Jefferson found? -> $x: ($x, study, thomas jefferson) -> (the same ones, studied, Thomas Jefferson and James Madison) -> the same ones (806ms) Where is the LPGA headquartered? Daytona Beach -0.333333333333 Where is the LPGA headquartered? -> $x: (lpga, be headquarter in, $x) -> (The LPGA, is headquartered in, Daytona Beach) -> Daytona Beach (485ms) Where is the LPGA headquartered? 1989 -1.44444444445 Where is the LPGA headquartered? -> $x: (lpga, headquarters, $x) -> (The LPGA, moved its headquarters here in, 1989) -> 1989 (485ms) What plays did Shakespeare write? Romeo and Juliet 0.999999999997 What plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare, Play Lyrics Written, Romeo and Juliet) -> Romeo and Juliet (2189ms) What plays did Shakespeare write? William Shakespeare 0.999999999997 What plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare Cymbeline, is a play by, William Shakespeare) -> William Shakespeare (2417ms) What plays did Shakespeare write? Macbeth 0.999999999997 What plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare, Play Lyrics Written, Macbeth) -> Macbeth (2417ms) What plays did Shakespeare write? Equivocation 0.999999999997 What plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare, Plays Appears In, Equivocation) -> Equivocation (1339ms) What plays did Shakespeare write? the painter 0.999999999997 What plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare Sonnet 24 Mine eye hath, played, the painter) -> the painter (2189ms) What plays did Shakespeare write? England 0.999999999997 What plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare, wrote his plays as, England) -> England (2417ms) What plays did Shakespeare write? Hamlet 0.999999999997 What plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare, play, Hamlet) -> Hamlet (2460ms) What plays did Shakespeare write? Titus Andronicus 0.999999999997 What plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare, Play Lyrics Written, Titus Andronicus) -> Titus Andronicus (1339ms) What plays did Shakespeare write? Cricket 0.999999999997 What plays did Shakespeare write? -> $x: (william shakespeare, sport, $x) -> (William Shakespeare, Sport, Cricket) -> Cricket (1389ms) What plays did Shakespeare write? The Taming of the Shrew 0.999999999997 What plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare, Play Lyrics Written, The Taming of the Shrew) -> The Taming of the Shrew (1339ms) What plays did Shakespeare write? King Henry IV 0.999999999997 What plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (the William Shakespeare, play, King Henry IV) -> King Henry IV (3377ms) What plays did Shakespeare write? 154 sonnets 0.999999999997 What plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare, played, 154 sonnets) -> 154 sonnets (2417ms) What plays did Shakespeare write? The Winter?s Tale 0.999999999997 What plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare?s classic, plays, The Winter?s Tale) -> The Winter?s Tale (1339ms) What plays did Shakespeare write? Dean Lennox Kelly AND 0.999999999997 What plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (] William Shakespeare, played by, Dean Lennox Kelly AND) -> Dean Lennox Kelly AND (2417ms) What plays did Shakespeare write? Antony and Cleopatra 0.999999999997 What plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare, Play Lyrics Written, Antony and Cleopatra) -> Antony and Cleopatra (2417ms) What plays did Shakespeare write? A Midsummer Night's Dream 0.999999999997 What plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare's A Midsummer Night's Dream, Play, A Midsummer Night's Dream) -> A Midsummer Night's Dream (2460ms) What plays did Shakespeare write? repertory 0.999999999997 What plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare, plays in, repertory) -> repertory (1389ms) What plays did Shakespeare write? the most lines 0.999999999997 What plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeares`, plays has, the most lines) -> the most lines (1389ms) What plays did Shakespeare write? Joseph Fiennes 0.999999999997 What plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare, played by, Joseph Fiennes) -> Joseph Fiennes (1389ms) What plays did Shakespeare write? 37 different languages 0.999999999997 What plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare?s, plays in, 37 different languages) -> 37 different languages (2460ms) What plays did Shakespeare write? a stage 0.999999999997 What plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare Introduction, were played on, a stage) -> a stage (2417ms) What plays did Shakespeare write? The Tempest 0.999999999997 What plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeares, play, The Tempest) -> The Tempest (1339ms) What plays did Shakespeare write? Romeo & Juliet 0.999999999997 What plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare?s, play, Romeo & Juliet) -> Romeo & Juliet (1389ms) What plays did Shakespeare write? the ghost 0.999999999997 What plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare, did play the role of, the ghost) -> the ghost (2460ms) What plays did Shakespeare write? Halfback 0.999999999997 What plays did Shakespeare write? -> $x: (william shakespeare, position, $x) -> (William Shakespeare, Position(s), Halfback) -> Halfback (2189ms) What plays did Shakespeare write? The Comedy of Errors 0.999999999997 What plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare, Play Lyrics Written, The Comedy of Errors) -> The Comedy of Errors (1389ms) What plays did Shakespeare write? the PILOT library catalog 0.999999999997 What plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (" William Shakespeare, plays in, the PILOT library catalog) -> the PILOT library catalog (1389ms) What plays did Shakespeare write? King of Shadows 0.999999999997 What plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare, Plays Appears In, King of Shadows) -> King of Shadows (1339ms) What plays did Shakespeare write? a Jew 0.999999999997 What plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare, wrote a very different play about, a Jew) -> a Jew (3378ms) What plays did Shakespeare write? the game 0.999999999997 What plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare, install to play, the game) -> the game (2460ms) What plays did Shakespeare write? television 0.999999999997 What plays did Shakespeare write? -> $x: (william shakespeare, play for, $x) -> (William Shakespeare?s, plays for, television) -> television (2460ms) What plays did Shakespeare write? King Lear 0.999999999997 What plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare?s, play, King Lear) -> King Lear (2460ms) What plays did Shakespeare write? Gray 0.999999999997 What plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare, played in, Gray) -> Gray (2189ms) What plays did Shakespeare write? the play 0.999999999997 What plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (the William Shakespeare, play, the play) -> the play (2189ms) What plays did Shakespeare write? transcends 0.999999999997 What plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare?s, plays, transcends) -> transcends (1339ms) What plays did Shakespeare write? The Two Gentlemen of Verona 0.999999999997 What plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeare, Play Lyrics Written, The Two Gentlemen of Verona) -> The Two Gentlemen of Verona (2189ms) What plays did Shakespeare write? violin 0.999999999997 What plays did Shakespeare write? -> $x: (william shakespeare, play, $x) -> (William Shakespeares books, playing, violin) -> violin (2460ms) What plays did Shakespeare write? William T. Spears 0.999999999995 What plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (William T. Spears, was a play on, William Shakespeare) -> William T. Spears (5256ms) What plays did Shakespeare write? Brain Murphy 0.999999999995 What plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (Brain Murphy, played, William Shakespeare) -> Brain Murphy (6645ms) What plays did Shakespeare write? John Logan 0.999999999995 What plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (John Logan, based on the play by, William Shakespeare) -> John Logan (5199ms) What plays did Shakespeare write? Venice ? 0.999999999995 What plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (Venice ?, is a play written by, William Shakespeare) -> Venice ? (5199ms) What plays did Shakespeare write? Shakespeare?s 0.999999999995 What plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (Shakespeare?s, plays, William Shakespeare) -> Shakespeare?s (3377ms) What plays did Shakespeare write? Juliet 0.999999999995 What plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (Juliet, is a famous play by, William Shakespeare) -> Juliet (5256ms) What plays did Shakespeare write? William Shakespeare Cymbeline 0.999999999995 What plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (William Shakespeare Cymbeline, is a play by, William Shakespeare) -> William Shakespeare Cymbeline (6645ms) What plays did Shakespeare write? Venice 0.999999999995 What plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (Venice, is a play by, William Shakespeare) -> Venice (6645ms) What plays did Shakespeare write? the fall 0.999999999995 What plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (the fall, read a play by, William Shakespeare) -> the fall (4513ms) What plays did Shakespeare write? the music 0.999999999995 What plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (the music, then play on, " William Shakespeare) -> the music (4513ms) What plays did Shakespeare write? 2006 Will 0.999999999995 What plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (2006 Will, played the title role of, William Shakespeare) -> 2006 Will (3650ms) What plays did Shakespeare write? a movie version of which 0.999999999995 What plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (a movie version of which, play, William Shakespeare) -> a movie version of which (4513ms) What plays did Shakespeare write? Hugh Laurie 0.999999999995 What plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (Hugh Laurie, originally played, William Shakespeare) -> Hugh Laurie (3377ms) What plays did Shakespeare write? Gielgud 0.999999999995 What plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (Gielgud, first played the title role in, William Shakespeare) -> Gielgud (3650ms) What plays did Shakespeare write? Sir Patrick 0.999999999995 What plays did Shakespeare write? -> $x: ($x, voice, william shakespeare) -> (Sir Patrick, voiced the role of, William Shakespeare) -> Sir Patrick (4513ms) What plays did Shakespeare write? The Winters Tale 0.999999999995 What plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (The Winters Tale, is a play by, William Shakespeare) -> The Winters Tale (4513ms) What plays did Shakespeare write? Rafe Spall 0.999999999995 What plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (Rafe Spall, plays the part of, William Shakespeare) -> Rafe Spall (5199ms) What plays did Shakespeare write? The original source 0.999999999995 What plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (The original source, is the play by, William Shakespeare) -> The original source (5199ms) What plays did Shakespeare write? Venice ? 0.999999999995 What plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (Venice ?, is a well-known play written by, William Shakespeare) -> Venice ? (5199ms) What plays did Shakespeare write? the Shakespeare 0.999999999995 What plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (the Shakespeare, plays with, the William Shakespeare) -> the Shakespeare (5199ms) What plays did Shakespeare write? ?The Tempest ? 0.999999999995 What plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (?The Tempest ?, is the last play written by, William Shakespeare) -> ?The Tempest ? (4513ms) What plays did Shakespeare write? Cleopatra 0.999999999995 What plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (Cleopatra, is a play by, William Shakespeare) -> Cleopatra (5199ms) What plays did Shakespeare write? the Shrew 0.999999999995 What plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (the Shrew, is an entertaining play by, William Shakespeare) -> the Shrew (3650ms) What plays did Shakespeare write? Measure 0.999999999995 What plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (Measure, is a play by, William Shakespeare) -> Measure (3377ms) What plays did Shakespeare write? Kenneth Branagh 0.999999999995 What plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (Kenneth Branagh, plays, William Shakespeare) -> Kenneth Branagh (3650ms) What plays did Shakespeare write? The Tragedy 0.999999999995 What plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (The Tragedy, is a play by, William Shakespeare) -> The Tragedy (3650ms) What plays did Shakespeare write? Macbeth ? 0.999999999995 What plays did Shakespeare write? -> $x: ($x, play, william shakespeare) -> (Macbeth ?, is a famous play written by, William Shakespeare) -> Macbeth ? (5256ms) What plays did Shakespeare write? first 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeares, plays, first) -> first (6820ms) What plays did Shakespeare write? weird and wonderful name 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play for, $x) -> (some shakespeare, plays for, weird and wonderful name) -> weird and wonderful name (6865ms) What plays did Shakespeare write? late 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeares, plays, late) -> late (6757ms) What plays did Shakespeare write? proverbs 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, played with, proverbs) -> proverbs (6820ms) What plays did Shakespeare write? NRS = 0, 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays with, NRS = 0,) -> NRS = 0, (6879ms) What plays did Shakespeare write? performance 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play for, $x) -> (Shakespeare, wrote his plays for, performance) -> performance (6865ms) What plays did Shakespeare write? folkloric convention 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare, is playing with, folkloric convention) -> folkloric convention (6789ms) What plays did Shakespeare write? a conversation 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare, begins the play with, a conversation) -> a conversation (6865ms) What plays did Shakespeare write? fun 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play for, $x) -> (Shakespeare, plays for, fun) -> fun (6850ms) What plays did Shakespeare write? instance doublets attitude 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeares, plays for, instance doublets attitude) -> instance doublets attitude (6865ms) What plays did Shakespeare write? the time sequence 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare, plays with, the time sequence) -> the time sequence (6850ms) What plays did Shakespeare write? two audiences 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play for, $x) -> (Shakespeare, wrote a single play for, two audiences) -> two audiences (6850ms) What plays did Shakespeare write? Midfielder 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, position, $x) -> (Craig Shakespeare, Position(s), Midfielder) -> Midfielder (6865ms) What plays did Shakespeare write? the Old Vic 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays at, the Old Vic) -> the Old Vic (6805ms) What plays did Shakespeare write? Hamlet , Romeo & Juliet 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays including, Hamlet , Romeo & Juliet) -> Hamlet , Romeo & Juliet (6865ms) What plays did Shakespeare write? 35 cents 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play for, $x) -> (Shakespeare?s, plays for, 35 cents) -> 35 cents (6805ms) What plays did Shakespeare write? a Cain-and-Abel conflict 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare, began the play with, a Cain-and-Abel conflict) -> a Cain-and-Abel conflict (6773ms) What plays did Shakespeare write? classic texts 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays alongside, classic texts) -> classic texts (6805ms) What plays did Shakespeare write? a role 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, played, a role) -> a role (6879ms) What plays did Shakespeare write? before 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays, before) -> before (6835ms) What plays did Shakespeare write? every year 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays, every year) -> every year (6835ms) What plays did Shakespeare write? a brief , 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare, opens the other play with, a brief ,) -> a brief , (6805ms) What plays did Shakespeare write? 97 minutes 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeares, plays in, 97 minutes) -> 97 minutes (6645ms) What plays did Shakespeare write? iambic pentameter 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, wrote his plays in, iambic pentameter) -> iambic pentameter (6850ms) What plays did Shakespeare write? Lord Strange 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play for, $x) -> (Shakespeare and Marlowe, wrote plays for, Lord Strange) -> Lord Strange (6773ms) What plays did Shakespeare write? a public audience 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play for, $x) -> (Shakespeare?s, plays for, a public audience) -> a public audience (6789ms) What plays did Shakespeare write? actors 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play for, $x) -> (Shakespeare, wrote his plays for, actors) -> actors (6757ms) What plays did Shakespeare write? the Globe Theatre 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays at, the Globe Theatre) -> the Globe Theatre (6757ms) What plays did Shakespeare write? the end 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, voice, $x) -> (W. Shakespeare Sometimes courage, is the quiet voice at, the end) -> the end (6645ms) What plays did Shakespeare write? content , form 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays with, content , form) -> content , form (6879ms) What plays did Shakespeare write? surprise 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays, surprise) -> surprise (6865ms) What plays did Shakespeare write? a prototype 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare?s, plays with, a prototype) -> a prototype (6805ms) What plays did Shakespeare write? a shout 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare, opens the play with, a shout) -> a shout (6865ms) What plays did Shakespeare write? get 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays, get) -> get (6757ms) What plays did Shakespeare write? patrons 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play for, $x) -> (Shakespeare?s, plays for, patrons) -> patrons (6879ms) What plays did Shakespeare write? a year 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays, a year) -> a year (6820ms) What plays did Shakespeare write? Twelfth Night 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeares, play, Twelfth Night) -> Twelfth Night (6851ms) What plays did Shakespeare write? the minute 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays at, the minute) -> the minute (6773ms) What plays did Shakespeare write? ?100 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play for, $x) -> (Shakespeare?s, plays for, ?100) -> ?100 (6851ms) What plays did Shakespeare write? five or six years 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play for, $x) -> (?Shakespeare, had been writing plays for, five or six years) -> five or six years (6820ms) What plays did Shakespeare write? the deepest philosophy 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, voice, $x) -> (Shakespeare, had voiced, the deepest philosophy) -> the deepest philosophy (6893ms) What plays did Shakespeare write? tour 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays on, tour) -> tour (6773ms) What plays did Shakespeare write? the graphic medium 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays into, the graphic medium) -> the graphic medium (6850ms) What plays did Shakespeare write? Tee Morris 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, voice, $x) -> (Will Shakespeare, was voiced by, Tee Morris) -> Tee Morris (6879ms) What plays did Shakespeare write? a part 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, played, a part) -> a part (6879ms) What plays did Shakespeare write? the witches 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare, begins the play with, the witches) -> the witches (6865ms) What plays did Shakespeare write? the most 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, gets played, the most) -> the most (6865ms) What plays did Shakespeare write? Timon 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays including, Timon) -> Timon (6789ms) What plays did Shakespeare write? stage 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays on, stage) -> stage (6850ms) What plays did Shakespeare write? puns 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare?s, plays with, puns) -> puns (6835ms) What plays did Shakespeare write? a growing belief 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare?s, plays with, a growing belief) -> a growing belief (6757ms) What plays did Shakespeare write? Star Wars characters 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (famous Shakespeare, plays with, Star Wars characters) -> Star Wars characters (6879ms) What plays did Shakespeare write? Julius Caesar 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeares, play, Julius Caesar) -> Julius Caesar (6865ms) What plays did Shakespeare write? an accessible and colorful form 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays in, an accessible and colorful form) -> an accessible and colorful form (6645ms) What plays did Shakespeare write? a quick plot summary 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare, would open his plays with, a quick plot summary) -> a quick plot summary (6820ms) What plays did Shakespeare write? China 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, position, $x) -> (Shakespeare, occupies an interesting position in, China) -> China (6835ms) What plays did Shakespeare write? Othello 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, play, Othello) -> Othello (6805ms) What plays did Shakespeare write? John Lyly 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (the Shakespeare, plays with, John Lyly) -> John Lyly (6773ms) What plays did Shakespeare write? Kiswahili 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays into, Kiswahili) -> Kiswahili (6805ms) What plays did Shakespeare write? the Aggrovators 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare, also continued playing with, the Aggrovators) -> the Aggrovators (6835ms) What plays did Shakespeare write? focus 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (?Shakespeare, plays, focus) -> focus (6757ms) What plays did Shakespeare write? Cards 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, Playing, Cards) -> Cards (6865ms) What plays did Shakespeare write? usually 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeares, plays, usually) -> usually (6865ms) What plays did Shakespeare write? purchase 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (the Shakespeare, plays with, purchase) -> purchase (6645ms) What plays did Shakespeare write? a very important role 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, played, a very important role) -> a very important role (6893ms) What plays did Shakespeare write? examples 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play for, $x) -> (mining Shakespeare?s, plays for, examples) -> examples (6879ms) What plays did Shakespeare write? theater 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeares, plays, theater) -> theater (6836ms) What plays did Shakespeare write? roles 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, played, roles) -> roles (6879ms) What plays did Shakespeare write? The Merchant of Venice 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeares, play, The Merchant of Venice) -> The Merchant of Venice (6789ms) What plays did Shakespeare write? the persecuted minority 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, voice, $x) -> (Shakespeare, gives a voice to, the persecuted minority) -> the persecuted minority (6789ms) What plays did Shakespeare write? a relative 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays from, a relative) -> a relative (6820ms) What plays did Shakespeare write? Stratford 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays at, Stratford) -> Stratford (6820ms) What plays did Shakespeare write? 1653 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeares, lost play In, 1653) -> 1653 (6820ms) What plays did Shakespeare write? film 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, played on, film) -> film (6820ms) What plays did Shakespeare write? do 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeares, plays, do) -> do (6835ms) What plays did Shakespeare write? Nairn Golf club 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, play, Nairn Golf club) -> Nairn Golf club (6865ms) What plays did Shakespeare write? the province 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays around, the province) -> the province (6820ms) What plays did Shakespeare write? early 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays, early) -> early (6757ms) What plays did Shakespeare write? the start 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, position, $x) -> (Shakespeare, held a unique position from, the start) -> the start (6805ms) What plays did Shakespeare write? the left 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, position, $x) -> (Shakespeare, first position your cursor to, the left) -> the left (6757ms) What plays did Shakespeare write? a long development 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare, begins the play with, a long development) -> a long development (6805ms) What plays did Shakespeare write? the outdoor stage 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays on, the outdoor stage) -> the outdoor stage (6850ms) What plays did Shakespeare write? daft and deft originality 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare, here played with, daft and deft originality) -> daft and deft originality (6836ms) What plays did Shakespeare write? lawyers 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, voice, $x) -> (Shakespeare, once voiced a popular opinion of, lawyers) -> lawyers (6850ms) What plays did Shakespeare write? Setswana 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays into, Setswana) -> Setswana (6835ms) What plays did Shakespeare write? Vaughn Kimber 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, played by, Vaughn Kimber) -> Vaughn Kimber (6805ms) What plays did Shakespeare write? the theatre/dvds 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays in, the theatre/dvds) -> the theatre/dvds (6789ms) What plays did Shakespeare write? the idea 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays on, the idea) -> the idea (6893ms) What plays did Shakespeare write? young people 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play for, $x) -> (Shakespeare?s, plays for, young people) -> young people (6789ms) What plays did Shakespeare write? the theme 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, played out, the theme) -> the theme (6789ms) What plays did Shakespeare write? the Hudson 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays on, the Hudson) -> the Hudson (6820ms) What plays did Shakespeare write? the Queen?s pleasure 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play for, $x) -> (Shakespeare, is writing this play for, the Queen?s pleasure) -> the Queen?s pleasure (6879ms) What plays did Shakespeare write? cards 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, playing, cards) -> cards (6645ms) What plays did Shakespeare write? the ghost of Hamlet 's father 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, played, the ghost of Hamlet 's father) -> the ghost of Hamlet 's father (6879ms) What plays did Shakespeare write? decades 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play for, $x) -> (Shakespeare?s, plays for, decades) -> decades (6789ms) What plays did Shakespeare write? about 400 years 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play for, $x) -> (Shakespeare, wrote his plays for, about 400 years) -> about 400 years (6835ms) What plays did Shakespeare write? instances 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare?s, plays abound with, instances) -> instances (6773ms) What plays did Shakespeare write? theatres 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays from, theatres) -> theatres (6805ms) What plays did Shakespeare write? enthusiasm 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare, wrote plays with, enthusiasm) -> enthusiasm (6865ms) What plays did Shakespeare write? the first Tuesday 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays, the first Tuesday) -> the first Tuesday (6757ms) What plays did Shakespeare write? students 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play for, $x) -> (Shakespeare?s, plays for, students) -> students (6789ms) What plays did Shakespeare write? company 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeares, playing, company) -> company (6835ms) What plays did Shakespeare write? Penguin Books 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play for, $x) -> (Shakespeare?s, plays for, Penguin Books) -> Penguin Books (6820ms) What plays did Shakespeare write? references 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare?s, plays abound with, references) -> references (6773ms) What plays did Shakespeare write? world literature 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, position, $x) -> (Shakespeare, occupies a position unique in, world literature) -> world literature (6805ms) What plays did Shakespeare write? the mass public 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play for, $x) -> (Shakespeare, wrote plays for, the mass public) -> the mass public (6820ms) What plays did Shakespeare write? Olivia 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, also played, Olivia) -> Olivia (6789ms) What plays did Shakespeare write? modern dress 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, played in, modern dress) -> modern dress (6820ms) What plays did Shakespeare write? the Ghost 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, played, the Ghost) -> the Ghost (6820ms) What plays did Shakespeare write? operas 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays into, operas) -> operas (6773ms) What plays did Shakespeare write? the word 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays upon, the word) -> the word (6805ms) What plays did Shakespeare write? a single day 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays in, a single day) -> a single day (6820ms) What plays did Shakespeare write? ?The Tempest? 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays including, ?The Tempest?) -> ?The Tempest? (6789ms) What plays did Shakespeare write? the goal 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays with, the goal) -> the goal (6879ms) What plays did Shakespeare write? words 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare, loves to play with, words) -> words (6850ms) What plays did Shakespeare write? Fray Lorenzo 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, played, Fray Lorenzo) -> Fray Lorenzo (6879ms) What plays did Shakespeare write? an autochthonous origin 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, position, $x) -> (Shakespeare, occupies the position of, an autochthonous origin) -> an autochthonous origin (6645ms) What plays did Shakespeare write? around 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, played, around) -> around (6757ms) What plays did Shakespeare write? plays 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeares, plays within, plays) -> plays (6645ms) What plays did Shakespeare write? high school 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeare, plays throughout, high school) -> high school (6789ms) What plays did Shakespeare write? one company 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare?s history, plays with just, one company) -> one company (6879ms) What plays did Shakespeare write? wreaks evil 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play, $x) -> (Shakespeares, play, wreaks evil) -> wreaks evil (6789ms) What plays did Shakespeare write? the William Shakespeare 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (the Shakespeare, plays with, the William Shakespeare) -> the William Shakespeare (6805ms) What plays did Shakespeare write? one intermission 0.777777777776 What plays did Shakespeare write? -> $x: (shakespeare, play with, $x) -> (Shakespeare, plays with only, one intermission) -> one intermission (6865ms) What plays did Shakespeare write? The audiences 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (The audiences, watched the plays of, Shakespeare) -> The audiences (6921ms) What plays did Shakespeare write? Chekhov 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Chekhov, there are of playing, Shakespeare) -> Chekhov (6907ms) What plays did Shakespeare write? a Lord 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (a Lord, played, Shakespeare) -> a Lord (6961ms) What plays did Shakespeare write? Spall 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Spall, plays, Shakespeare) -> Spall (6961ms) What plays did Shakespeare write? the opportunity 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (the opportunity, perform full-length plays by, Shakespeare) -> the opportunity (6948ms) What plays did Shakespeare write? Leithart 's book 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Leithart 's book, plays, Shakespeare) -> Leithart 's book (6935ms) What plays did Shakespeare write? a lord 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (a lord, played, Shakespeare) -> a lord (6893ms) What plays did Shakespeare write? Tragic 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Tragic, plays from, Shakespeare) -> Tragic (6893ms) What plays did Shakespeare write? a junior 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (a junior, played, Shakespeare) -> a junior (6935ms) What plays did Shakespeare write? Toronto 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Toronto, presented plays by, Shakespeare) -> Toronto (6893ms) What plays did Shakespeare write? Kean 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Kean, played, Shakespeare) -> Kean (6935ms) What plays did Shakespeare write? In Acting Shakespeare 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (In Acting Shakespeare, Play, Acting Shakespeare) -> In Acting Shakespeare (6961ms) What plays did Shakespeare write? the line 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (the line, plays, Shakespeares) -> the line (6935ms) What plays did Shakespeare write? Professional actors 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Professional actors, perform plays by, Shakespeare) -> Professional actors (6961ms) What plays did Shakespeare write? the space 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (the space, can play, Shakespeare) -> the space (6961ms) What plays did Shakespeare write? Neil Toon 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Neil Toon, will play Romeo in, Shakespeare) -> Neil Toon (6921ms) What plays did Shakespeare write? The guy 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (The guy, playing, Shakespeare) -> The guy (6961ms) What plays did Shakespeare write? The Annenberg Theatre 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (The Annenberg Theatre, has played home to, Shakespeare) -> The Annenberg Theatre (6935ms) What plays did Shakespeare write? Dame Judith Anderson 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Dame Judith Anderson, played roles from, Shakespeare) -> Dame Judith Anderson (6907ms) What plays did Shakespeare write? Keanu 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Keanu, was trying to play, Shakespeare) -> Keanu (6935ms) What plays did Shakespeare write? teen boys 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (teen boys, play all the roles in, Shakespeare) -> teen boys (6907ms) What plays did Shakespeare write? the guy Ben Affleck 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (the guy Ben Affleck, played in, Shakespeare) -> the guy Ben Affleck (6907ms) What plays did Shakespeare write? Hamnett 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Hamnett, also plays all of, Shakespeare) -> Hamnett (6907ms) What plays did Shakespeare write? the more fun 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (the more fun, plays written by, Shakespeare) -> the more fun (6935ms) What plays did Shakespeare write? Western culture 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Western culture, are the plays of, Shakespeare) -> Western culture (6893ms) What plays did Shakespeare write? Sir Kenneth Branagh 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Sir Kenneth Branagh, is to play, Shakespeare) -> Sir Kenneth Branagh (6935ms) What plays did Shakespeare write? a quote 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (a quote, play, Shakespeare) -> a quote (6961ms) What plays did Shakespeare write? poetry 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (poetry, plays of, Shakespeare) -> poetry (6907ms) What plays did Shakespeare write? Patrick Stewart 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Patrick Stewart, plays, Shakespeare) -> Patrick Stewart (6935ms) What plays did Shakespeare write? Dean Lennox Kelly 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Dean Lennox Kelly, plays, Shakespeare) -> Dean Lennox Kelly (6921ms) What plays did Shakespeare write? Seattle Rep 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Seattle Rep, plays by, Shakespeare) -> Seattle Rep (6948ms) What plays did Shakespeare write? society 0.777777777774 What plays did Shakespeare write? -> $x: ($x, position, shakespeare) -> (society, as has the position of, Shakespeare) -> society (6948ms) What plays did Shakespeare write? Athena releases 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Athena releases, include Playing, Shakespeare) -> Athena releases (6907ms) What plays did Shakespeare write? the parts 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (the parts, played, Shakespeare) -> the parts (6907ms) What plays did Shakespeare write? picture books 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (picture books, plays especially of, Shakespeare) -> picture books (6921ms) What plays did Shakespeare write? Ciotti 0.777777777774 What plays did Shakespeare write? -> $x: ($x, voice, shakespeare) -> (Ciotti, has the perfect voice for, Shakespeare) -> Ciotti (6948ms) What plays did Shakespeare write? 8 Music 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (8 Music, has always played a special part in, Shakespeare) -> 8 Music (6907ms) What plays did Shakespeare write? court tennis 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (court tennis, has been played since, Shakespeare) -> court tennis (6893ms) What plays did Shakespeare write? modern times 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play with, shakespeare) -> (modern times, have enjoyed playing with, Shakespeare) -> modern times (6935ms) What plays did Shakespeare write? number 17 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (number 17, must be a play by, Shakespeare) -> number 17 (6893ms) What plays did Shakespeare write? Claire Danes 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Claire Danes, play, Shakespeare) -> Claire Danes (6893ms) What plays did Shakespeare write? four 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (four, plays, Shakespeare) -> four (6935ms) What plays did Shakespeare write? Hathaway 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Hathaway, played Viola in, Shakespeare) -> Hathaway (6907ms) What plays did Shakespeare write? English 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (English, is a great play by, Shakespeare) -> English (6907ms) What plays did Shakespeare write? Athena?s other debut releases 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Athena?s other debut releases, are Playing, Shakespeare) -> Athena?s other debut releases (6948ms) What plays did Shakespeare write? a character 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (a character, play, Shakespeare) -> a character (6961ms) What plays did Shakespeare write? Reeves 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Reeves, takes playing, Shakespeare) -> Reeves (6948ms) What plays did Shakespeare write? the performances 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (the performances, were plays by, Shakespeare) -> the performances (6948ms) What plays did Shakespeare write? Shakespeare's Queens 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Shakespeare's Queens, Play, Shakespeare's Queens) -> Shakespeare's Queens (6921ms) What plays did Shakespeare write? Broadway 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Broadway, plays to, Shakespeare) -> Broadway (6948ms) What plays did Shakespeare write? the class 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (the class, will read plays by, Shakespeare) -> the class (6948ms) What plays did Shakespeare write? Spenser 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Spenser, plays like, Shakespeare) -> Spenser (6907ms) What plays did Shakespeare write? the actor 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (the actor, played, Shakespeare) -> the actor (6948ms) What plays did Shakespeare write? Music 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Music, plays an important part in, Shakespeare) -> Music (6935ms) What plays did Shakespeare write? actress Claire Danes 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (actress Claire Danes, has played everything from, Shakespeare) -> actress Claire Danes (6935ms) What plays did Shakespeare write? Ian McKellen: Acting Shakespeare 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Ian McKellen: Acting Shakespeare, Play, Acting Shakespeare) -> Ian McKellen: Acting Shakespeare (6921ms) What plays did Shakespeare write? Athena?s releases 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Athena?s releases, include Playing, Shakespeare) -> Athena?s releases (6948ms) What plays did Shakespeare write? Fiennes 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Fiennes, plays, Shakespeare) -> Fiennes (6961ms) What plays did Shakespeare write? Readings 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Readings, will include plays by, Shakespeare) -> Readings (6921ms) What plays did Shakespeare write? a great actor 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (a great actor, plays, Shakespeare) -> a great actor (6893ms) What plays did Shakespeare write? Part 3 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Part 3, must have been an important play for, Shakespeare) -> Part 3 (6935ms) What plays did Shakespeare write? Athena?s previous releases 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Athena?s previous releases, include Playing, Shakespeare) -> Athena?s previous releases (6921ms) What plays did Shakespeare write? three 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (three, plays, Shakespeare) -> three (6921ms) What plays did Shakespeare write? any German 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (any German, had ever read a play by, Shakespeare) -> any German (6921ms) What plays did Shakespeare write? The reading list 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (The reading list, will include several plays by, Shakespeare) -> The reading list (6961ms) What plays did Shakespeare write? an actor 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (an actor, is playing, Shakespeare) -> an actor (6893ms) What plays did Shakespeare write? Cardenio 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Cardenio, is a previously unknown play by, Shakespeare) -> Cardenio (6921ms) What plays did Shakespeare write? Boys 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Boys, played the female roles in, Shakespeare) -> Boys (6907ms) What plays did Shakespeare write? Lady Mortimer 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Lady Mortimer, has played numerous other roles from, Shakespeare) -> Lady Mortimer (6893ms) What plays did Shakespeare write? Past projects 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Past projects, have included plays by, Shakespeare) -> Past projects (6893ms) What plays did Shakespeare write? The band stand 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (The band stand, has played host to, Shakespeare) -> The band stand (6921ms) What plays did Shakespeare write? Shakespeare's Cabaret 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (Shakespeare's Cabaret, Play, Shakespeare's Cabaret) -> Shakespeare's Cabaret (6961ms) What plays did Shakespeare write? a student 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (a student, might read a play by, Shakespeare) -> a student (6893ms) What plays did Shakespeare write? the role 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (the role, played by, Shakespeare) -> the role (6935ms) What plays did Shakespeare write? She?s 19 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (She?s 19, has read every play by, Shakespeare) -> She?s 19 (6893ms) What plays did Shakespeare write? important contrasts 0.777777777774 What plays did Shakespeare write? -> $x: ($x, play, shakespeare) -> (important contrasts, play into, Shakespeare) -> important contrasts (6948ms) What plays did Shakespeare write? NEw York 0.555555555555 What plays did Shakespeare write? -> $x: (william, be sport of, $x) -> (williams baptist college, is the home city of the sports team, NEw York) -> NEw York (6961ms) What plays did Shakespeare write? ?if baseball 0.555555555553 What plays did Shakespeare write? -> $x: ($x, be sport of, prose) -> (?if baseball, is the sport of, elegant prose) -> ?if baseball (6961ms) What plays did Shakespeare write? the Warwick Beacon 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (William Geoghegan, is the sports editor at, the Warwick Beacon) -> the Warwick Beacon (7153ms) What plays did Shakespeare write? a high motor 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, played with, a high motor) -> a high motor (7070ms) What plays did Shakespeare write? the disadvantaged 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Senator Williams, is also a strong voice for, the disadvantaged) -> the disadvantaged (7175ms) What plays did Shakespeare write? PLAYER 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, plays the athletic team position, PLAYER) -> PLAYER (7002ms) What plays did Shakespeare write? GUARD 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, plays the athletic team position, GUARD) -> GUARD (7189ms) What plays did Shakespeare write? Evolver 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> ('s William H. Macy, provides the voice of, Evolver) -> Evolver (7137ms) What plays did Shakespeare write? previously 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, previously) -> previously (7202ms) What plays did Shakespeare write? 2009 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, earned a starting position in, 2009) -> 2009 (6987ms) What plays did Shakespeare write? Houston 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, was playing for, Houston) -> Houston (7022ms) What plays did Shakespeare write? Besiktas 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, plays for, Besiktas) -> Besiktas (7042ms) What plays did Shakespeare write? Baseball 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (Charlie Williams, Sport, Baseball) -> Baseball (7060ms) What plays did Shakespeare write? music 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, music) -> music (7226ms) What plays did Shakespeare write? adab 0.444444444444 What plays did Shakespeare write? -> $x: (prose, play, $x) -> (prose fiction, played a relatively small role in, adab) -> adab (7113ms) What plays did Shakespeare write? well 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, well) -> well (7088ms) What plays did Shakespeare write? an IU East Red Wolves 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (| Venus Williams, sported, an IU East Red Wolves) -> an IU East Red Wolves (7168ms) What plays did Shakespeare write? UM last May 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, decided to play for, UM last May) -> UM last May (7079ms) What plays did Shakespeare write? Coach Rhonda Kendall 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played for, Coach Rhonda Kendall) -> Coach Rhonda Kendall (7042ms) What plays did Shakespeare write? deputy 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (William, held the position of, deputy) -> deputy (6987ms) What plays did Shakespeare write? Alan Hakman 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, Alan Hakman) -> Alan Hakman (7168ms) What plays did Shakespeare write? the likes 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, has played with, the likes) -> the likes (7230ms) What plays did Shakespeare write? 1955 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, resigned the position in, 1955) -> 1955 (7022ms) What plays did Shakespeare write? Miami 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played sparingly for, Miami) -> Miami (7226ms) What plays did Shakespeare write? the Coyote men 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played two seasons for, the Coyote men) -> the Coyote men (6974ms) What plays did Shakespeare write? the Vice President 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (William, took a position as, the Vice President) -> the Vice President (7137ms) What plays did Shakespeare write? first lieutenant 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, earned the position of, first lieutenant) -> first lieutenant (7213ms) What plays did Shakespeare write? Italian Anna Magnani 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, originally wrote the play for, Italian Anna Magnani) -> Italian Anna Magnani (7105ms) What plays did Shakespeare write? an ordinary life 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Caroline Williams, play a married couple with, an ordinary life) -> an ordinary life (7235ms) What plays did Shakespeare write? the Swift Current Broncos 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, would later play for, the Swift Current Broncos) -> the Swift Current Broncos (7153ms) What plays did Shakespeare write? Executive Director 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (William, held the position of, Executive Director) -> Executive Director (7145ms) What plays did Shakespeare write? Fender 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Robin Williams, plays the voice of, Fender) -> Fender (7196ms) What plays did Shakespeare write? cornerback 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, cornerback) -> cornerback (7160ms) What plays did Shakespeare write? Canada 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (Williams, has covered every major sporting event in, Canada) -> Canada (7235ms) What plays did Shakespeare write? Smith College 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (William, accepted a position at, Smith College) -> Smith College (7002ms) What plays did Shakespeare write? various musicians 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Harry Williams, played with, various musicians) -> various musicians (7175ms) What plays did Shakespeare write? the Hunger Action Network 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played benefit concerts for, the Hunger Action Network) -> the Hunger Action Network (7070ms) What plays did Shakespeare write? the Yahoo! 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (William Browning, has covered sports for, the Yahoo!) -> the Yahoo! (7145ms) What plays did Shakespeare write? the Frogs 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played a solid game for, the Frogs) -> the Frogs (7160ms) What plays did Shakespeare write? Jazz 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Deron Williams, plays for the team, Jazz) -> Jazz (7167ms) What plays did Shakespeare write? the Johnson City Press 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (Trey Williams, is a sports writer for, the Johnson City Press) -> the Johnson City Press (7189ms) What plays did Shakespeare write? stock car racing 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (William HG France, promote the sport of, stock car racing) -> stock car racing (7012ms) What plays did Shakespeare write? Boston Redsox 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (fred williams, plays for the team, Boston Redsox) -> Boston Redsox (7002ms) What plays did Shakespeare write? Kraft Mac & Cheese 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Williams, had also become the new voice for, Kraft Mac & Cheese) -> Kraft Mac & Cheese (7230ms) What plays did Shakespeare write? Basketball 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (William & Mary Tribe men's basketball, Sport, Basketball) -> Basketball (7196ms) What plays did Shakespeare write? KIng 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (William, held the position of, KIng) -> KIng (7070ms) What plays did Shakespeare write? First baseman 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (Rip Williams, Position(s), First baseman) -> First baseman (7137ms) What plays did Shakespeare write? the ideas 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (That Williams, is playing with, the ideas) -> the ideas (6987ms) What plays did Shakespeare write? equal interest and intensity 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Ms Williams, plays all with, equal interest and intensity) -> equal interest and intensity (7202ms) What plays did Shakespeare write? center 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, center) -> center (7113ms) What plays did Shakespeare write? a chance 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, is also playing for, a chance) -> a chance (7175ms) What plays did Shakespeare write? United Kingdom 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (Williams F1, Sports Team Location, United Kingdom) -> United Kingdom (7096ms) What plays did Shakespeare write? Redskins 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Doug Williams, plays for the team, Redskins) -> Redskins (7160ms) What plays did Shakespeare write? Pitcher 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (Brian Williams, Position(s), Pitcher) -> Pitcher (7202ms) What plays did Shakespeare write? unhappiness 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Mr. William Gettler, voiced, unhappiness) -> unhappiness (7208ms) What plays did Shakespeare write? the light 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (length William Miller, raised his voice against, the light) -> the light (7088ms) What plays did Shakespeare write? gold 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Williams, has a voice of, gold) -> gold (7113ms) What plays did Shakespeare write? a suspension 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Keller Williams, voiced their opposition to, a suspension) -> a suspension (7196ms) What plays did Shakespeare write? Jones 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Leo Williams, played bass with, Jones) -> Jones (7113ms) What plays did Shakespeare write? tampa-bay-devil-rays 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Cadillac Williams, plays for the team, tampa-bay-devil-rays) -> tampa-bay-devil-rays (7235ms) What plays did Shakespeare write? ncaa 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (william and mary tribe, is a sports team that plays in the league, ncaa) -> ncaa (7239ms) What plays did Shakespeare write? two characters 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Williams, is the voice of, two characters) -> two characters (7070ms) What plays did Shakespeare write? Martz before?..Rumors 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, has played for, Martz before?..Rumors) -> Martz before?..Rumors (7226ms) What plays did Shakespeare write? Defensive back 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (James Williams, Position(s), Defensive back) -> Defensive back (7160ms) What plays did Shakespeare write? five games 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played the stand-up position for, five games) -> five games (7002ms) What plays did Shakespeare write? Football 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (William Gwynn, Sport, Football) -> Football (7235ms) What plays did Shakespeare write? the fantastic 0.444444444444 What plays did Shakespeare write? -> $x: (prose, position, $x) -> (his prose, is positioned precisely in, the fantastic) -> the fantastic (7121ms) What plays did Shakespeare write? Hooker 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (William Servat, Position, Hooker) -> Hooker (7239ms) What plays did Shakespeare write? the Herm Edwards-coached White team 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, will play for, the Herm Edwards-coached White team) -> the Herm Edwards-coached White team (7182ms) What plays did Shakespeare write? Wide Receiver 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (Roydell Williams, Position, Wide Receiver) -> Wide Receiver (7230ms) What plays did Shakespeare write? a fender 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, took the position by, a fender) -> a fender (7175ms) What plays did Shakespeare write? Neil Young 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Hank Williams, played a couple with, Neil Young) -> Neil Young (7182ms) What plays did Shakespeare write? Wing 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (William McCutcheon, Position, Wing) -> Wing (7160ms) What plays did Shakespeare write? the Hawks 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, does play a significant defensive role for, the Hawks) -> the Hawks (7022ms) What plays did Shakespeare write? Stella 0.444444444444 What plays did Shakespeare write? -> $x: (prose, play, $x) -> (the prose poem, plays, Stella) -> Stella (7153ms) What plays did Shakespeare write? high school football 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, high school football) -> high school football (7175ms) What plays did Shakespeare write? grave concern 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Canterbury Rowan Williams, voiced, grave concern) -> grave concern (7235ms) What plays did Shakespeare write? passion and imagination 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Dr. Williams, plays with, passion and imagination) -> passion and imagination (7061ms) What plays did Shakespeare write? the Cincinnati Reds 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, played extended seasons with, the Cincinnati Reds) -> the Cincinnati Reds (7235ms) What plays did Shakespeare write? Jakob 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, playing, Jakob) -> Jakob (7105ms) What plays did Shakespeare write? concern 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (UK Foreign Secretary William Hague, also voiced, concern) -> concern (7079ms) What plays did Shakespeare write? obscurity 0.444444444444 What plays did Shakespeare write? -> $x: (prose, play, $x) -> (his prose fiction, plays sunk into, obscurity) -> obscurity (7022ms) What plays did Shakespeare write? a pitching-rich staff 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (Archbishop Williams High School, sported, a pitching-rich staff) -> a pitching-rich staff (6987ms) What plays did Shakespeare write? guitar 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, guitar) -> guitar (7070ms) What plays did Shakespeare write? a key role 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (William, played, a key role) -> a key role (7160ms) What plays did Shakespeare write? Tennis 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (serena williams, plays the sport, Tennis) -> Tennis (7121ms) What plays did Shakespeare write? violence 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Mr. Williams, has been an effective voice against, violence) -> violence (7160ms) What plays did Shakespeare write? a classy 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (Michelle Williams, sported, a classy) -> a classy (7213ms) What plays did Shakespeare write? a new corporate video 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Sally Williams, is the voice of, a new corporate video) -> a new corporate video (7208ms) What plays did Shakespeare write? a young daughter 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Michelle Williams, play a couple with, a young daughter) -> a young daughter (7042ms) What plays did Shakespeare write? only six minutes 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, only six minutes) -> only six minutes (7051ms) What plays did Shakespeare write? traindespatcher 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (William, held responsible positions as, traindespatcher) -> traindespatcher (7079ms) What plays did Shakespeare write? the Chiefs 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, currently plays for, the Chiefs) -> the Chiefs (7182ms) What plays did Shakespeare write? Virginia Tech 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, went on to play for, Virginia Tech) -> Virginia Tech (7113ms) What plays did Shakespeare write? a couple 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played overseas for, a couple) -> a couple (7226ms) What plays did Shakespeare write? Last season 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, Last season) -> Last season (7153ms) What plays did Shakespeare write? the ?English? church 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (William, later played the organ for, the ?English? church) -> the ?English? church (7145ms) What plays did Shakespeare write? Left Center 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, plays the athletic team position, Left Center) -> Left Center (7175ms) What plays did Shakespeare write? Dunleavy 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played for, Dunleavy) -> Dunleavy (7032ms) What plays did Shakespeare write? Ronald McDonald 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Patient Jordyn Williams, plays with, Ronald McDonald) -> Ronald McDonald (7175ms) What plays did Shakespeare write? the 76ers 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, converted a three-point play for, the 76ers) -> the 76ers (7070ms) What plays did Shakespeare write? Fern Gully 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Williams, used his voice talents in, Fern Gully) -> Fern Gully (7012ms) What plays did Shakespeare write? the fool 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, the fool) -> the fool (7213ms) What plays did Shakespeare write? a hand-held magnifier 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (William, now sported, a hand-held magnifier) -> a hand-held magnifier (7160ms) What plays did Shakespeare write? a lot 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (William, plays, a lot) -> a lot (7022ms) What plays did Shakespeare write? New Jersey 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played for, New Jersey) -> New Jersey (7121ms) What plays did Shakespeare write? Lovelace 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Comedian Robin Williams, voiced, Lovelace) -> Lovelace (7218ms) What plays did Shakespeare write? the Mavericks 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, played only three games with, the Mavericks) -> the Mavericks (7129ms) What plays did Shakespeare write? Goalkeeper 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (William Robb, Position(s), Goalkeeper) -> Goalkeeper (7042ms) What plays did Shakespeare write? a bit part 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, a bit part) -> a bit part (7226ms) What plays did Shakespeare write? line 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Sue Williams, play with, line) -> line (6974ms) What plays did Shakespeare write? the Bulls 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played well for, the Bulls) -> the Bulls (7196ms) What plays did Shakespeare write? Norman United Church 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, held positions at, Norman United Church) -> Norman United Church (7168ms) What plays did Shakespeare write? MOCPCC director 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, resigned his position as, MOCPCC director) -> MOCPCC director (6974ms) What plays did Shakespeare write? the first time 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, is playing for, the first time) -> the first time (7196ms) What plays did Shakespeare write? the band Public Image Limited 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, also played drums for, the band Public Image Limited) -> the band Public Image Limited (7088ms) What plays did Shakespeare write? the latest jazz 0.444444444444 What plays did Shakespeare write? -> $x: (william, want to play, $x) -> (Williams, wanted to play, the latest jazz) -> the latest jazz (7182ms) What plays did Shakespeare write? shortstop 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, shortstop) -> shortstop (7189ms) What plays did Shakespeare write? Chris Samuelson 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Ken Williams, is playing golf with, Chris Samuelson) -> Chris Samuelson (7195ms) What plays did Shakespeare write? Puerto Rico 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, is playing for, Puerto Rico) -> Puerto Rico (7042ms) What plays did Shakespeare write? worship leader 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (William, accepted the position of, worship leader) -> worship leader (6987ms) What plays did Shakespeare write? drums 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (William, played, drums) -> drums (7145ms) What plays did Shakespeare write? Jackie McLean 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, played with, Jackie McLean) -> Jackie McLean (7129ms) What plays did Shakespeare write? bass 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (William, played, bass) -> bass (7195ms) What plays did Shakespeare write? Formula One 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (Williams F1, Sport, Formula One) -> Formula One (7002ms) What plays did Shakespeare write? the Miami Dolphins 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played for, the Miami Dolphins) -> the Miami Dolphins (7202ms) What plays did Shakespeare write? the US Fed Cup team 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played for, the US Fed Cup team) -> the US Fed Cup team (7145ms) What plays did Shakespeare write? Papa Possum 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (William Shatner, is the voice of, Papa Possum) -> Papa Possum (7226ms) What plays did Shakespeare write? 33 minutes 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, 33 minutes) -> 33 minutes (7189ms) What plays did Shakespeare write? time 0.444444444444 What plays did Shakespeare write? -> $x: (prose, play, $x) -> (prose writers, play with, time) -> time (7207ms) What plays did Shakespeare write? baseball 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (Matt Williams, plays the sport, baseball) -> baseball (7213ms) What plays did Shakespeare write? Lock 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (William Bowen, Position, Lock) -> Lock (7235ms) What plays did Shakespeare write? Matt Dillon 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (William Conrad, is the voice of, Matt Dillon) -> Matt Dillon (7208ms) What plays did Shakespeare write? defensive end 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, defensive end) -> defensive end (7022ms) What plays did Shakespeare write? 16 seasons 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, 16 seasons) -> 16 seasons (7042ms) What plays did Shakespeare write? reason 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Juan Williams, was the only voice of, reason) -> reason (6974ms) What plays did Shakespeare write? fire 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (William, will be playing with, fire) -> fire (7121ms) What plays did Shakespeare write? director 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (?Williams, used his position as, director) -> director (7022ms) What plays did Shakespeare write? the superintendent 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (William, accepted the position as, the superintendent) -> the superintendent (7032ms) What plays did Shakespeare write? the Sky 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, also played defense for, the Sky) -> the Sky (7153ms) What plays did Shakespeare write? a winner 0.444444444444 What plays did Shakespeare write? -> $x: (william, want to play, $x) -> (Williams, wants to play for, a winner) -> a winner (7226ms) What plays did Shakespeare write? the Lonesome Pine Fiddlers 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Paul Williams, played with, the Lonesome Pine Fiddlers) -> the Lonesome Pine Fiddlers (7051ms) What plays did Shakespeare write? Firestorm 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Tyler James Williams, will voice, Firestorm) -> Firestorm (7105ms) What plays did Shakespeare write? former Saluqi player Keelon Lawson 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played for, former Saluqi player Keelon Lawson) -> former Saluqi player Keelon Lawson (7160ms) What plays did Shakespeare write? the original photograph 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (William, played with, the original photograph) -> the original photograph (7202ms) What plays did Shakespeare write? John Keating 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, John Keating) -> John Keating (7239ms) What plays did Shakespeare write? black children 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, played with, black children) -> black children (7079ms) What plays did Shakespeare write? 13 years 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Dick Williams Dick Williams, played for, 13 years) -> 13 years (7213ms) What plays did Shakespeare write? the Wesley Jefferson band 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Joe Williams, played drums with, the Wesley Jefferson band) -> the Wesley Jefferson band (7202ms) What plays did Shakespeare write? marbles 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (King William, was playing with, marbles) -> marbles (7105ms) What plays did Shakespeare write? the Spurs 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (marcus williams, could still play with, the Spurs) -> the Spurs (7145ms) What plays did Shakespeare write? Centre 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (Gavin Williams, Position, Centre) -> Centre (7226ms) What plays did Shakespeare write? Daniels 0.444444444444 What plays did Shakespeare write? -> $x: (william, want to play, $x) -> (Prince Williams County, wanted to play, Daniels) -> Daniels (7230ms) What plays did Shakespeare write? the last two seasons 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, the last two seasons) -> the last two seasons (7189ms) What plays did Shakespeare write? a French company 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (William, accepted a position with, a French company) -> a French company (6987ms) What plays did Shakespeare write? a classic tuxedo 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (Prince William, sports, a classic tuxedo) -> a classic tuxedo (7153ms) What plays did Shakespeare write? tonal depth 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Sir William Collyer?wonderfully, played with, tonal depth) -> tonal depth (7070ms) What plays did Shakespeare write? the character 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Robin Williams, will voice, the character) -> the character (7230ms) What plays did Shakespeare write? Genie 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (ROBIN WILLIAMS, provides the voice of, Genie) -> Genie (7168ms) What plays did Shakespeare write? a greater sense 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, will need to play with, a greater sense) -> a greater sense (7239ms) What plays did Shakespeare write? Fullback 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (Rhys Williams, Position, Fullback) -> Fullback (7145ms) What plays did Shakespeare write? ATV 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (William, played bass with, ATV) -> ATV (7022ms) What plays did Shakespeare write? the ball 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, the ball) -> the ball (7079ms) What plays did Shakespeare write? Number 8 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (William Cummins, Position, Number 8) -> Number 8 (7175ms) What plays did Shakespeare write? heart 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (William Graves, is playing with, heart) -> heart (7153ms) What plays did Shakespeare write? a long time 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (William, has played soccer for, a long time) -> a long time (7022ms) What plays did Shakespeare write? Leo 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, Leo) -> Leo (7051ms) What plays did Shakespeare write? the Atlanta 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, has actually played pretty well for, the Atlanta) -> the Atlanta (7153ms) What plays did Shakespeare write? Angelina 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Finty Williams, is the voice of, Angelina) -> Angelina (7213ms) What plays did Shakespeare write? last 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, last) -> last (7153ms) What plays did Shakespeare write? several Fortune 500 companies 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (William, has held positions with, several Fortune 500 companies) -> several Fortune 500 companies (7196ms) What plays did Shakespeare write? the Cubs 0.444444444444 What plays did Shakespeare write? -> $x: (william, want to play, $x) -> (Even Ted Williams, wanted to play for, the Cubs) -> the Cubs (7208ms) What plays did Shakespeare write? the Detroit Tigers 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, played with, the Detroit Tigers) -> the Detroit Tigers (7202ms) What plays did Shakespeare write? minimal dollars 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, is n?t playing for, minimal dollars) -> minimal dollars (7105ms) What plays did Shakespeare write? Lance Clayton 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, Lance Clayton) -> Lance Clayton (7105ms) What plays did Shakespeare write? the Dolphins and Saints 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, also played for, the Dolphins and Saints) -> the Dolphins and Saints (7061ms) What plays did Shakespeare write? coach Freeman Horton 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played the last two seasons for, coach Freeman Horton) -> coach Freeman Horton (7042ms) What plays did Shakespeare write? Saskatchewan 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, played mostly special teams with, Saskatchewan) -> Saskatchewan (7079ms) What plays did Shakespeare write? trumpet 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (William, plays, trumpet) -> trumpet (7168ms) What plays did Shakespeare write? the film 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Robin Williams, will also lend his voice to, the film) -> the film (7051ms) What plays did Shakespeare write? Wide receiver 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (David Williams, Position(s), Wide receiver) -> Wide receiver (6987ms) What plays did Shakespeare write? a different set 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, is playing with, a different set) -> a different set (7145ms) What plays did Shakespeare write? a hoodie 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (City Councilman Jumaane Williams, sported, a hoodie) -> a hoodie (7160ms) What plays did Shakespeare write? last fall 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, last fall) -> last fall (7060ms) What plays did Shakespeare write? Richard 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (William Murray, went on to play with, Richard) -> Richard (7160ms) What plays did Shakespeare write? the New Jersey Nets 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, is playing out with, the New Jersey Nets) -> the New Jersey Nets (7012ms) What plays did Shakespeare write? head 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, accepted a position as, head) -> head (7137ms) What plays did Shakespeare write? the Field Mice 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Harvey Williams, later played with, the Field Mice) -> the Field Mice (7012ms) What plays did Shakespeare write? the University Gaelic football team 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (William, has played for, the University Gaelic football team) -> the University Gaelic football team (7042ms) What plays did Shakespeare write? the College 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (William & Mary John Todd, was a four-sport star at, the College) -> the College (7096ms) What plays did Shakespeare write? Latter Day Saints Business College 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Ricky Williams, plays for the team, Latter Day Saints Business College) -> Latter Day Saints Business College (7042ms) What plays did Shakespeare write? Scrum half 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (Lee Williams, Position, Scrum half) -> Scrum half (7189ms) What plays did Shakespeare write? Defenseman 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (William Klooster, Hockey Position(s), Defenseman) -> Defenseman (7137ms) What plays did Shakespeare write? the residual fear 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Juan Williams, only gave a voice to, the residual fear) -> the residual fear (7032ms) What plays did Shakespeare write? last night 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, last night) -> last night (7213ms) What plays did Shakespeare write? the Victorian Football League 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (William, also played for, the Victorian Football League) -> the Victorian Football League (7221ms) What plays did Shakespeare write? a major role 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, a major role) -> a major role (7145ms) What plays did Shakespeare write? a different manager 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played for, a different manager) -> a different manager (7032ms) What plays did Shakespeare write? four or five games 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, would be a very risky play with, four or five games) -> four or five games (7137ms) What plays did Shakespeare write? the lucky 30 0.444444444444 What plays did Shakespeare write? -> $x: (prose, play, $x) -> ('s poetry and prose, also played for, the lucky 30) -> the lucky 30 (7189ms) What plays did Shakespeare write? BANDS 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (Prince William, even sported a pair of, BANDS) -> BANDS (7022ms) What plays did Shakespeare write? Nazi propaganda 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (William Joyce, was the voice of, Nazi propaganda) -> Nazi propaganda (7167ms) What plays did Shakespeare write? the years 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, the years) -> the years (7182ms) What plays did Shakespeare write? piano 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, piano) -> piano (7002ms) What plays did Shakespeare write? Running back 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (Cadillac Williams, Position, Running back) -> Running back (7235ms) What plays did Shakespeare write? Grove 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (Williams F1, Sports Team Location, Grove) -> Grove (7129ms) What plays did Shakespeare write? 30 minutes 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, 30 minutes) -> 30 minutes (7226ms) What plays did Shakespeare write? singles 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, play, singles) -> singles (7182ms) What plays did Shakespeare write? a backup role 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, playing, a backup role) -> a backup role (7121ms) What plays did Shakespeare write? the Maryland Terrapins 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played for, the Maryland Terrapins) -> the Maryland Terrapins (7113ms) What plays did Shakespeare write? safety 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, safety) -> safety (7137ms) What plays did Shakespeare write? NIN 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Saul Williams, played with, NIN) -> NIN (7213ms) What plays did Shakespeare write? the piano 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (William, plays, the piano) -> the piano (7202ms) What plays did Shakespeare write? now 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, is in the position, now) -> now (7218ms) What plays did Shakespeare write? Yankees 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Bernie Williams, plays for the team, Yankees) -> Yankees (7182ms) What plays did Shakespeare write? Hall 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Hornsby and Williams, are credible voices on, Hall) -> Hall (7182ms) What plays did Shakespeare write? Lando Calrissian 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Williams, voiced, Lando Calrissian) -> Lando Calrissian (7060ms) What plays did Shakespeare write? Now 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (William, plays, Now) -> Now (7168ms) What plays did Shakespeare write? the Guardian 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (Richard Williams, is chief sports writer for, the Guardian) -> the Guardian (7032ms) What plays did Shakespeare write? the Newark Eagles 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played for, the Newark Eagles) -> the Newark Eagles (7096ms) What plays did Shakespeare write? wooden legs 0.444444444444 What plays did Shakespeare write? -> $x: (shakspeare, play, $x) -> (Shakspeare, played entirely by, wooden legs) -> wooden legs (7051ms) What plays did Shakespeare write? a grand-father 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Hank Williams, has the voice of, a grand-father) -> a grand-father (7096ms) What plays did Shakespeare write? multiple levels 0.444444444444 What plays did Shakespeare write? -> $x: (prose, play, $x) -> (the prose, plays on, multiple levels) -> multiple levels (7079ms) What plays did Shakespeare write? harmonica 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, harmonica) -> harmonica (7121ms) What plays did Shakespeare write? Calvert Hall 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, primarily played linebacker for, Calvert Hall) -> Calvert Hall (7202ms) What plays did Shakespeare write? Rainbow Randolph 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, Rainbow Randolph) -> Rainbow Randolph (7051ms) What plays did Shakespeare write? rugby 0.444444444444 What plays did Shakespeare write? -> $x: (william, want to play, $x) -> (Sonny Bill Williams, wants to play, rugby) -> rugby (7012ms) What plays did Shakespeare write? Right Field 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, plays the athletic team position, Right Field) -> Right Field (7137ms) What plays did Shakespeare write? an opinion 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Pat Williams, to voice, an opinion) -> an opinion (7182ms) What plays did Shakespeare write? the Red Sox 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Ted Williams, played for, the Red Sox) -> the Red Sox (7213ms) What plays did Shakespeare write? four hours 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, playing for, four hours) -> four hours (7002ms) What plays did Shakespeare write? several rock 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, played with, several rock) -> several rock (7002ms) What plays did Shakespeare write? liberalism 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (" William Cullen Bryant, was the leading voice of, liberalism) -> liberalism (7129ms) What plays did Shakespeare write? a fine moustache 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (William, is sporting, a fine moustache) -> a fine moustache (7182ms) What plays did Shakespeare write? only five games 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, only five games) -> only five games (6987ms) What plays did Shakespeare write? Indians 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Matt Williams, plays for the team, Indians) -> Indians (7113ms) What plays did Shakespeare write? the Cavaliers 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams ?, plays free safety for, the Cavaliers) -> the Cavaliers (7060ms) What plays did Shakespeare write? a CRT 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (William Rntgen, played with, a CRT) -> a CRT (7230ms) What plays did Shakespeare write? Prop 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (Brian Williams, Position, Prop) -> Prop (7208ms) What plays did Shakespeare write? the gun 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Jarmall Williams, was playing with, the gun) -> the gun (7226ms) What plays did Shakespeare write? the Navy 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played baseball for, the Navy) -> the Navy (7182ms) What plays did Shakespeare write? a large dose 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams ?, plays for, a large dose) -> a large dose (7051ms) What plays did Shakespeare write? basketball 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, basketball) -> basketball (7218ms) What plays did Shakespeare write? The Bombers 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (William, played for, The Bombers) -> The Bombers (7070ms) What plays did Shakespeare write? men 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (William, had spent years playing with, men) -> men (7218ms) What plays did Shakespeare write? assistant art director 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, held the position of, assistant art director) -> assistant art director (7051ms) What plays did Shakespeare write? a story 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (William Hurt, has the perfect voice for, a story) -> a story (7167ms) What plays did Shakespeare write? the item 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (Coach bags Catherine Zeta Williams, sports, the item) -> the item (7230ms) What plays did Shakespeare write? New York eye BARRY CRAIG 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (William Gargan, was the voice of, New York eye BARRY CRAIG) -> New York eye BARRY CRAIG (7121ms) What plays did Shakespeare write? the Kansas City Kings 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played for, the Kansas City Kings) -> the Kansas City Kings (7032ms) What plays did Shakespeare write? executive director 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, took a position as, executive director) -> executive director (7218ms) What plays did Shakespeare write? Hurd in Dallas 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (wide receiver Roy Williams, played with, Hurd in Dallas) -> Hurd in Dallas (7182ms) What plays did Shakespeare write? the villain 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, the villain) -> the villain (6974ms) What plays did Shakespeare write? the Cowboys 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played mainly special teams for, the Cowboys) -> the Cowboys (7189ms) What plays did Shakespeare write? Justin Byrne 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Ryan Williams, play with, Justin Byrne) -> Justin Byrne (7088ms) What plays did Shakespeare write? Seattle 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (? Williams, played six seasons for, Seattle) -> Seattle (7042ms) What plays did Shakespeare write? John de Lancie 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (William, is clearly being voiced by, John de Lancie) -> John de Lancie (7051ms) What plays did Shakespeare write? the band 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (William Clayton, played with, the band) -> the band (7168ms) What plays did Shakespeare write? a hat and guitar 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (this Story Jett Williams, sported, a hat and guitar) -> a hat and guitar (7218ms) What plays did Shakespeare write? the project 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (William Hague, voiced his interest in, the project) -> the project (7208ms) What plays did Shakespeare write? Team USA 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, also played for, Team USA) -> Team USA (7230ms) What plays did Shakespeare write? Cindy 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, Cindy) -> Cindy (7175ms) What plays did Shakespeare write? the last game of his career 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, the last game of his career) -> the last game of his career (7096ms) What plays did Shakespeare write? terms 0.444444444444 What plays did Shakespeare write? -> $x: (prose, play, $x) -> (his later prose, plays in, terms) -> terms (7175ms) What plays did Shakespeare write? a penguin 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Robin Williams, play the voice of, a penguin) -> a penguin (7226ms) What plays did Shakespeare write? The New York Times 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (William C. Rhoden, is a sports columnist for, The New York Times) -> The New York Times (7182ms) What plays did Shakespeare write? the New England Revolution 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, plays for, the New England Revolution) -> the New England Revolution (7137ms) What plays did Shakespeare write? right tackle 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, right tackle) -> right tackle (7042ms) What plays did Shakespeare write? Sidney Bechet 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, also played professionally with, Sidney Bechet) -> Sidney Bechet (7153ms) What plays did Shakespeare write? Second row 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (Tony Williams, Position, Second row) -> Second row (7208ms) What plays did Shakespeare write? wings Hanno Dirksen 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Shane Williams, is unlikely to play with, wings Hanno Dirksen) -> wings Hanno Dirksen (7234ms) What plays did Shakespeare write? Bartlett 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, played a quick one-two with, Bartlett) -> Bartlett (7113ms) What plays did Shakespeare write? the Herd 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played for, the Herd) -> the Herd (7105ms) What plays did Shakespeare write? Dallas Cowboys 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (roy williams, plays for the team, Dallas Cowboys) -> Dallas Cowboys (7208ms) What plays did Shakespeare write? skepticism 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Visitors member William M. Lechler, also has voiced, skepticism) -> skepticism (7032ms) What plays did Shakespeare write? the church halls 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (William Edward John, found his voice in, the church halls) -> the church halls (7145ms) What plays did Shakespeare write? a setting 0.444444444444 What plays did Shakespeare write? -> $x: (prose, play, $x) -> (lusty , vigorous prose, played out against, a setting) -> a setting (7239ms) What plays did Shakespeare write? the middle 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (William, had held position in, the middle) -> the middle (7230ms) What plays did Shakespeare write? right field 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, playing, right field) -> right field (7012ms) What plays did Shakespeare write? the violin 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (William, plays, the violin) -> the violin (6974ms) What plays did Shakespeare write? rugby and basketball 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, playing, rugby and basketball) -> rugby and basketball (7060ms) What plays did Shakespeare write? Professional wrestling 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (William Boulware, Jr., Sport, Professional wrestling) -> Professional wrestling (6974ms) What plays did Shakespeare write? 14 minutes 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, 14 minutes) -> 14 minutes (7121ms) What plays did Shakespeare write? the expectations 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, plays mischievously with, the expectations) -> the expectations (7168ms) What plays did Shakespeare write? ASZ 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, may have been playing around with, ASZ) -> ASZ (7235ms) What plays did Shakespeare write? New Orleans 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played three seasons for, New Orleans) -> New Orleans (7213ms) What plays did Shakespeare write? the SCLC 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, held several positions within, the SCLC) -> the SCLC (7051ms) What plays did Shakespeare write? the money 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, is playing for, the money) -> the money (7088ms) What plays did Shakespeare write? GOLF 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (Billy Williams, plays the sport, GOLF) -> GOLF (7218ms) What plays did Shakespeare write? football 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (William, played, football) -> football (7175ms) What plays did Shakespeare write? later 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, later) -> later (6987ms) What plays did Shakespeare write? Forward 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (Billy Williams, Position(s), Forward) -> Forward (7202ms) What plays did Shakespeare write? old guys 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (William Buford, was the kid playing with, old guys) -> old guys (7012ms) What plays did Shakespeare write? saint-josephs-hawks-basketball 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Mario Williams, plays for the team, saint-josephs-hawks-basketball) -> saint-josephs-hawks-basketball (7213ms) What plays did Shakespeare write? quarterback 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, quarterback) -> quarterback (7032ms) What plays did Shakespeare write? currently 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, currently) -> currently (7230ms) What plays did Shakespeare write? a 14-3-3 mark 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (13th-seeded William Carey, sports, a 14-3-3 mark) -> a 14-3-3 mark (7226ms) What plays did Shakespeare write? nose tackle 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, nose tackle) -> nose tackle (7079ms) What plays did Shakespeare write? NYC. 0.444444444444 What plays did Shakespeare write? -> $x: (william, want to play, $x) -> (Deron Williams, wants to play in, NYC.) -> NYC. (7153ms) What plays did Shakespeare write? Defender 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (Tommy Williams, Position(s), Defender) -> Defender (7230ms) What plays did Shakespeare write? two seasons 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, two seasons) -> two seasons (7213ms) What plays did Shakespeare write? Davis 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Buster Williams, played bass with, Davis) -> Davis (7153ms) What plays did Shakespeare write? a benefit concert 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, a benefit concert) -> a benefit concert (7189ms) What plays did Shakespeare write? the general feeling 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (William Samuel Johnson, probably voiced, the general feeling) -> the general feeling (7218ms) What plays did Shakespeare write? just five games 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, just five games) -> just five games (7189ms) What plays did Shakespeare write? the San Francisco 49ers 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, has previously played for, the San Francisco 49ers) -> the San Francisco 49ers (7022ms) What plays did Shakespeare write? a poet 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Williams, found his voice as, a poet) -> a poet (7213ms) What plays did Shakespeare write? Point Guard 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, plays the athletic team position, Point Guard) -> Point Guard (7002ms) What plays did Shakespeare write? Amherst 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, Amherst) -> Amherst (7145ms) What plays did Shakespeare write? 15 games 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, 15 games) -> 15 games (7196ms) What plays did Shakespeare write? sanity 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Juan Williams, is a voice of, sanity) -> sanity (7145ms) What plays did Shakespeare write? passage 0.444444444444 What plays did Shakespeare write? -> $x: (prose, play, $x) -> (my work pro-se, played a substantial role in, passage) -> passage (7060ms) What plays did Shakespeare write? William & Mary Tribe men's basketball 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (College of William and Mary, Sports teams, William & Mary Tribe men's basketball) -> William & Mary Tribe men's basketball (7096ms) What plays did Shakespeare write? Oxfordshire 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (Williams F1, Sports Team Location, Oxfordshire) -> Oxfordshire (7113ms) What plays did Shakespeare write? 10 minutes 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, 10 minutes) -> 10 minutes (7032ms) What plays did Shakespeare write? the genie 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Williams, voiced, the genie) -> the genie (7129ms) What plays did Shakespeare write? First officer 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (William Riker's posting to the Enterprise D, Position, First officer) -> First officer (7145ms) What plays did Shakespeare write? four NBA teams 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played for, four NBA teams) -> four NBA teams (7202ms) What plays did Shakespeare write? a raging 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, has played the game with, a raging) -> a raging (7153ms) What plays did Shakespeare write? trust 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, enjoyed a position of, trust) -> trust (7230ms) What plays did Shakespeare write? Albert Einstein 0.444444444444 What plays did Shakespeare write? -> $x: (william, want to play, $x) -> (Robin Williams, wants to play, Albert Einstein) -> Albert Einstein (7196ms) What plays did Shakespeare write? guitar and harmonica 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, guitar and harmonica) -> guitar and harmonica (7088ms) What plays did Shakespeare write? the camera 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (William, likes to play with, the camera) -> the camera (7168ms) What plays did Shakespeare write? the poetry 0.444444444444 What plays did Shakespeare write? -> $x: (prose, voice, $x) -> (those prose poems, joins voice with, the poetry) -> the poetry (7113ms) What plays did Shakespeare write? the lead 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, playing, the lead) -> the lead (7213ms) What plays did Shakespeare write? several international teams 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played basketball for, several international teams) -> several international teams (7218ms) What plays did Shakespeare write? cartoon 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Robin Williams, voiced, cartoon) -> cartoon (7137ms) What plays did Shakespeare write? four years 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, has been playing basketball for, four years) -> four years (7042ms) What plays did Shakespeare write? the Charles Grodin role 0.444444444444 What plays did Shakespeare write? -> $x: (william, want to play, $x) -> (Robin Williams, had wanted to play, the Charles Grodin role) -> the Charles Grodin role (7105ms) What plays did Shakespeare write? Bell Laboratories 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, accepted a position at, Bell Laboratories) -> Bell Laboratories (7226ms) What plays did Shakespeare write? vice president 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, left his position as, vice president) -> vice president (7239ms) What plays did Shakespeare write? Tight end 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (Roland Williams, Position(s), Tight end) -> Tight end (7153ms) What plays did Shakespeare write? the FC Greater Boston Bolts 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, played with, the FC Greater Boston Bolts) -> the FC Greater Boston Bolts (7121ms) What plays did Shakespeare write? Williams Ephs men's basketball 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (Williams College, Sports teams, Williams Ephs men's basketball) -> Williams Ephs men's basketball (7060ms) What plays did Shakespeare write? an instrument 0.444444444444 What plays did Shakespeare write? -> $x: (prose, play, $x) -> (plain prose, played upon, an instrument) -> an instrument (7230ms) What plays did Shakespeare write? a talking dog 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Robin Williams, provides the voice of, a talking dog) -> a talking dog (7230ms) What plays did Shakespeare write? the Nets 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, playing for, the Nets) -> the Nets (7208ms) What plays did Shakespeare write? Ice Hockey 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (William Earl Ormshaw, Sport, Ice Hockey) -> Ice Hockey (7105ms) What plays did Shakespeare write? cricket 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, cricket) -> cricket (7105ms) What plays did Shakespeare write? matches 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (William, was playing with, matches) -> matches (7182ms) What plays did Shakespeare write? Fly-half 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (Murray Williams, Position, Fly-half) -> Fly-half (7202ms) What plays did Shakespeare write? more confidence 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, is playing with, more confidence) -> more confidence (7032ms) What plays did Shakespeare write? the anti-feudalist struggles 0.444444444444 What plays did Shakespeare write? -> $x: (prose, play, $x) -> (prose, played an important role in, the anti-feudalist struggles) -> the anti-feudalist struggles (7168ms) What plays did Shakespeare write? new head coach Charlie Weis ? Jayhawks 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, play for, new head coach Charlie Weis ? Jayhawks) -> new head coach Charlie Weis ? Jayhawks (7129ms) What plays did Shakespeare write? an honest 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Williams, was just voicing, an honest) -> an honest (7189ms) What plays did Shakespeare write? Baritone 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (William Walker, Voice Type, Baritone) -> Baritone (7070ms) What plays did Shakespeare write? a whole segment 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Hank Williams, was the voice of, a whole segment) -> a whole segment (7060ms) What plays did Shakespeare write? the narrow window 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (S. Williams, voiced concern over, the narrow window) -> the narrow window (7202ms) What plays did Shakespeare write? the R&B/funk outfit 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played keyboards for, the R&B/funk outfit) -> the R&B/funk outfit (7182ms) What plays did Shakespeare write? Dwight 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Deron Williams, wants to play with, Dwight) -> Dwight (7088ms) What plays did Shakespeare write? one year 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, one year) -> one year (7153ms) What plays did Shakespeare write? the Buccaneers 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, played five successful seasons with, the Buccaneers) -> the Buccaneers (7208ms) What plays did Shakespeare write? the wit and eccentric charm 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (William Katt, plays his part with, the wit and eccentric charm) -> the wit and eccentric charm (7088ms) What plays did Shakespeare write? overtime 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, should have played for, overtime) -> overtime (7061ms) What plays did Shakespeare write? a top 35 RPI 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (William & Mary, sported, a top 35 RPI) -> a top 35 RPI (7121ms) What plays did Shakespeare write? the University 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played for, the University) -> the University (7070ms) What plays did Shakespeare write? Tampa 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, also plays baseball for, Tampa) -> Tampa (7189ms) What plays did Shakespeare write? left field 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, plays the athletic team position, left field) -> left field (7042ms) What plays did Shakespeare write? limited minutes 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, limited minutes) -> limited minutes (7153ms) What plays did Shakespeare write? The next season 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, The next season) -> The next season (7137ms) What plays did Shakespeare write? team athletes 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (the William Monroe, sports, team athletes) -> team athletes (7022ms) What plays did Shakespeare write? two reasons 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, play more for, two reasons) -> two reasons (6974ms) What plays did Shakespeare write? the roof 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (the Williams-Kuznetsova match, played with, the roof) -> the roof (7226ms) What plays did Shakespeare write? Lance 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, Lance) -> Lance (7088ms) What plays did Shakespeare write? three seasons 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, three seasons) -> three seasons (7202ms) What plays did Shakespeare write? the Grand Council 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (William Conrad, played the voice of, the Grand Council) -> the Grand Council (7168ms) What plays did Shakespeare write? the complexities 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Williams, gives rich voice to, the complexities) -> the complexities (7042ms) What plays did Shakespeare write? a bow 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (Michelle Williams, is sporting, a bow) -> a bow (7230ms) What plays did Shakespeare write? right-center 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, plays the athletic team position, right-center) -> right-center (7079ms) What plays did Shakespeare write? the same arguments 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (William Easterly, have voiced, the same arguments) -> the same arguments (7189ms) What plays did Shakespeare write? themes 0.444444444444 What plays did Shakespeare write? -> $x: (prose, play, $x) -> (dialogue centred prose, plays having, themes) -> themes (7145ms) What plays did Shakespeare write? the Titans 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, played with, the Titans) -> the Titans (7022ms) What plays did Shakespeare write? Ruby 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, Ruby) -> Ruby (7129ms) What plays did Shakespeare write? several Zimbabwe National Teams 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, has played for, several Zimbabwe National Teams) -> several Zimbabwe National Teams (7175ms) What plays did Shakespeare write? tennis 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (William, played, tennis) -> tennis (7129ms) What plays did Shakespeare write? pain 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, played with, pain) -> pain (7218ms) What plays did Shakespeare write? Sy Parrish 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, Sy Parrish) -> Sy Parrish (7088ms) What plays did Shakespeare write? moviegoers 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, plays with, moviegoers) -> moviegoers (7129ms) What plays did Shakespeare write? the Sioux Falls Skyforce 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, plays for, the Sioux Falls Skyforce) -> the Sioux Falls Skyforce (7012ms) What plays did Shakespeare write? Sarah Vaughn 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Joe Williams, has played with, Sarah Vaughn) -> Sarah Vaughn (7230ms) What plays did Shakespeare write? a boy 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, a boy) -> a boy (7226ms) What plays did Shakespeare write? the club 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, has played his last game for, the club) -> the club (7208ms) What plays did Shakespeare write? often 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, often) -> often (7088ms) What plays did Shakespeare write? the Georgia Alliance 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, holds board positions with, the Georgia Alliance) -> the Georgia Alliance (7012ms) What plays did Shakespeare write? the real issues 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, has any positions on, the real issues) -> the real issues (7213ms) What plays did Shakespeare write? Helena High School 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played for, Helena High School) -> Helena High School (7137ms) What plays did Shakespeare write? second fiddle 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, second fiddle) -> second fiddle (7226ms) What plays did Shakespeare write? near-perfect pitch 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (William Meikle, plays this melody with, near-perfect pitch) -> near-perfect pitch (7096ms) What plays did Shakespeare write? USA Basketball 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played for, USA Basketball) -> USA Basketball (7022ms) What plays did Shakespeare write? a bunch 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Deron Williams, is playing with, a bunch) -> a bunch (7096ms) What plays did Shakespeare write? a right leg stress fracture 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, will play with, a right leg stress fracture) -> a right leg stress fracture (7121ms) What plays did Shakespeare write? Baltimore 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played one season for, Baltimore) -> Baltimore (7012ms) What plays did Shakespeare write? a number 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (William Hearn ?, played with, a number) -> a number (7221ms) What plays did Shakespeare write? Carols N. 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (William Eaton, plays with, Carols N.) -> Carols N. (7235ms) What plays did Shakespeare write? the Genie 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Williams, voicing, the Genie) -> the Genie (7113ms) What plays did Shakespeare write? Batman 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, play with, Batman) -> Batman (7051ms) What plays did Shakespeare write? the Clippers 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, had a four-point play for, the Clippers) -> the Clippers (7105ms) What plays did Shakespeare write? the literary foundations 0.444444444444 What plays did Shakespeare write? -> $x: (prose, play, $x) -> (prose, played in, the literary foundations) -> the literary foundations (7105ms) What plays did Shakespeare write? the Phoenix/Arizona Cardinals 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played for, the Phoenix/Arizona Cardinals) -> the Phoenix/Arizona Cardinals (7189ms) What plays did Shakespeare write? the Tampa group 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Mason Williams, is playing with, the Tampa group) -> the Tampa group (7070ms) What plays did Shakespeare write? Miles Davis 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Tony Williams, played with, Miles Davis) -> Miles Davis (7235ms) What plays did Shakespeare write? field 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, plays the athletic team position, field) -> field (7121ms) What plays did Shakespeare write? the drums 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, the drums) -> the drums (7129ms) What plays did Shakespeare write? the fiddle 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, plays, the fiddle) -> the fiddle (7012ms) What plays did Shakespeare write? Germany 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played for, Germany) -> Germany (7129ms) What plays did Shakespeare write? drums for the band 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, drums for the band) -> drums for the band (7113ms) What plays did Shakespeare write? the cast metal images 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (William Hugh, played with, the cast metal images) -> the cast metal images (7079ms) What plays did Shakespeare write? first base 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, first base) -> first base (7002ms) What plays did Shakespeare write? the Tri-City Eagles 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, played Legion ball for, the Tri-City Eagles) -> the Tri-City Eagles (7160ms) What plays did Shakespeare write? seven years 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, has been playing poker for, seven years) -> seven years (7175ms) What plays did Shakespeare write? the NT band Swamp Jockies 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Todd Williams, was playing with, the NT band Swamp Jockies) -> the NT band Swamp Jockies (7079ms) What plays did Shakespeare write? last month 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, last month) -> last month (6974ms) What plays did Shakespeare write? Democrats 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Juan Williams, is a poor voice for, Democrats) -> Democrats (7113ms) What plays did Shakespeare write? the Hornets 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, played with, the Hornets) -> the Hornets (7105ms) What plays did Shakespeare write? a grin 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (Officer Ryan Williams, sported, a grin) -> a grin (7196ms) What plays did Shakespeare write? spirit children 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Bessie Williams, played with, spirit children) -> spirit children (7061ms) What plays did Shakespeare write? oakland raiders 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (deangelo williams, plays for the team, oakland raiders) -> oakland raiders (6987ms) What plays did Shakespeare write? Duke Ellington 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Francis Williams, played trumpet with, Duke Ellington) -> Duke Ellington (7096ms) What plays did Shakespeare write? the Broncos 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, has played his last game with, the Broncos) -> the Broncos (7129ms) What plays did Shakespeare write? compassion 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Tennessee Williams, is the constant voice of, compassion) -> compassion (7218ms) What plays did Shakespeare write? an autistic boy 0.444444444444 What plays did Shakespeare write? -> $x: (prose, voice, $x) -> (well-written prose, can make the voice of, an autistic boy) -> an autistic boy (7113ms) What plays did Shakespeare write? American football 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (William L. Allen, Sport, American football) -> American football (7182ms) What plays did Shakespeare write? the Exton Crossroads Baseball Club 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (William, played baseball for, the Exton Crossroads Baseball Club) -> the Exton Crossroads Baseball Club (7002ms) What plays did Shakespeare write? hockey 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (Mario Williams, plays the sport, hockey) -> hockey (7202ms) What plays did Shakespeare write? center field 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, center field) -> center field (7145ms) What plays did Shakespeare write? executive secretary 0.444444444444 What plays did Shakespeare write? -> $x: (william, position, $x) -> (Williams, took the position for, executive secretary) -> executive secretary (7218ms) What plays did Shakespeare write? the Buckeyes 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, play big minutes for, the Buckeyes) -> the Buckeyes (6989ms) What plays did Shakespeare write? a snappy 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, played the hefty horn with, a snappy) -> a snappy (7160ms) What plays did Shakespeare write? the Fenway Boys 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, played with, the Fenway Boys) -> the Fenway Boys (7208ms) What plays did Shakespeare write? Kitt WEB LINKS 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (April Curtis William Daniels, is the voice of, Kitt WEB LINKS) -> Kitt WEB LINKS (7235ms) What plays did Shakespeare write? a one-goal handicap 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (William, plays with, a one-goal handicap) -> a one-goal handicap (7129ms) What plays did Shakespeare write? a leading role 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, a leading role) -> a leading role (7219ms) What plays did Shakespeare write? Last year 0.444444444444 What plays did Shakespeare write? -> $x: (william, play, $x) -> (Williams, played, Last year) -> Last year (7012ms) What plays did Shakespeare write? Hurd 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (wide receiver Roy Williams, played with, Hurd) -> Hurd (7202ms) What plays did Shakespeare write? fools 0.444444444444 What plays did Shakespeare write? -> $x: (william, play for, $x) -> (Williams, play the public for, fools) -> fools (7175ms) What plays did Shakespeare write? a few elite 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Pastor Lindsey Williams, has the Voice of, a few elite) -> a few elite (6974ms) What plays did Shakespeare write? two popular animated movies 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Williams, lent his voice to, two popular animated movies) -> two popular animated movies (7105ms) What plays did Shakespeare write? book 0.444444444444 What plays did Shakespeare write? -> $x: (william, sport, $x) -> (the William Hill, sports, book) -> book (7196ms) What plays did Shakespeare write? two dancing penguins 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Robin Williams, voices, two dancing penguins) -> two dancing penguins (7105ms) What plays did Shakespeare write? NPR 0.444444444444 What plays did Shakespeare write? -> $x: (william, voice, $x) -> (Williams, provided a valuable voice on, NPR) -> NPR (7096ms) What plays did Shakespeare write? a focused intensity 0.444444444444 What plays did Shakespeare write? -> $x: (william, play with, $x) -> (Williams, plays with, a focused intensity) -> a focused intensity (7121ms) What plays did Shakespeare write? Guard 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (Guard, played even with, Williams) -> Guard (7263ms) What plays did Shakespeare write? Matt Bowen 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Matt Bowen, played under, Williams) -> Matt Bowen (7263ms) What plays did Shakespeare write? a fantasy setting 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, prose) -> (a fantasy setting, plays off, the droll prose) -> a fantasy setting (7277ms) What plays did Shakespeare write? Thundercat 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Thundercat, played, Williams?) -> Thundercat (7261ms) What plays did Shakespeare write? Jarvis 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, william) -> (Jarvis, has made the voices of, William) -> Jarvis (7247ms) What plays did Shakespeare write? James Daly 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (James Daly, plays, Gart Williams) -> James Daly (7258ms) What plays did Shakespeare write? the Genie character 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, william) -> (the Genie character, voiced by, Robin Williams) -> the Genie character (7266ms) What plays did Shakespeare write? Alternative WCFM 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, william) -> (Alternative WCFM, is the radio voice of, Williams College) -> Alternative WCFM (7266ms) What plays did Shakespeare write? Chancellor Birgeneau 0.444444444442 What plays did Shakespeare write? -> $x: ($x, position, william) -> (Chancellor Birgeneau, had discussed the position with, Williams) -> Chancellor Birgeneau (7251ms) What plays did Shakespeare write? a country music singer 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (a country music singer, played with, Wil?liams) -> a country music singer (7277ms) What plays did Shakespeare write? Ryan Robertson 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Ryan Robertson, played for, Williams) -> Ryan Robertson (7272ms) What plays did Shakespeare write? Gibson 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Gibson, plays, William Wallace) -> Gibson (7274ms) What plays did Shakespeare write? CAROLINE CAVE 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (CAROLINE CAVE, plays, William) -> CAROLINE CAVE (7278ms) What plays did Shakespeare write? Martin Jarvis 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, william) -> (Martin Jarvis, has made the voices of, William) -> Martin Jarvis (7254ms) What plays did Shakespeare write? Stosur 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Stosur, could play, Williams) -> Stosur (7243ms) What plays did Shakespeare write? a bat 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, william) -> (a bat, voiced by, Robin Williams) -> a bat (7278ms) What plays did Shakespeare write? Nasser 0.444444444442 What plays did Shakespeare write? -> $x: ($x, position, william) -> (Nasser, has positioned, Williams) -> Nasser (7276ms) What plays did Shakespeare write? such unspoken horror 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, william) -> (such unspoken horror, found a powerful voice in, Williams) -> such unspoken horror (7266ms) What plays did Shakespeare write? A veteran keyboardist 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (A veteran keyboardist, played with, Tony Williams) -> A veteran keyboardist (7277ms) What plays did Shakespeare write? calls 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, william) -> (calls, voiced by, Spencer Tracy and William Demarest) -> calls (7270ms) What plays did Shakespeare write? Grant 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (Grant, played with, Tony Williams) -> Grant (7276ms) What plays did Shakespeare write? Alaska 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (Alaska, played pool with, William Gaddis) -> Alaska (7277ms) What plays did Shakespeare write? Thomas 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (Thomas, has played with, William Parker) -> Thomas (7268ms) What plays did Shakespeare write? Fiona Stevenson 0.444444444442 What plays did Shakespeare write? -> $x: ($x, position, william) -> (Fiona Stevenson, will fill the position as, William Hill) -> Fiona Stevenson (7270ms) What plays did Shakespeare write? Mel Gibson 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Mel Gibson, playing, William Wallace) -> Mel Gibson (7274ms) What plays did Shakespeare write? Billy Crudup 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Billy Crudup, plays, William Bloom) -> Billy Crudup (7272ms) What plays did Shakespeare write? Skiff 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, william) -> (Skiff, voiced by, Seann William Scott) -> Skiff (7268ms) What plays did Shakespeare write? Yeo 0.444444444442 What plays did Shakespeare write? -> $x: ($x, position, william) -> (Yeo, offered the position to, Captain William Howe Mulcaster) -> Yeo (7270ms) What plays did Shakespeare write? The deal 0.444444444442 What plays did Shakespeare write? -> $x: ($x, position, william) -> (The deal, will position, Williams Cos.) -> The deal (7275ms) What plays did Shakespeare write? Hughes 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, prose) -> (Hughes, use a poetic voice in, his prose) -> Hughes (7243ms) What plays did Shakespeare write? the story 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (the story, is played, William) -> the story (7247ms) What plays did Shakespeare write? San Antonio 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (San Antonio, played with, Hank Williams) -> San Antonio (7261ms) What plays did Shakespeare write? Dr. Creswell 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, william) -> (Dr. Creswell, has studied voice with, William Appel) -> Dr. Creswell (7277ms) What plays did Shakespeare write? Nick Lucena 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (Nick Lucena, is playing with, Mark Williams) -> Nick Lucena (7247ms) What plays did Shakespeare write? the guy 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (the guy, plays with, Hank Williams) -> the guy (7258ms) What plays did Shakespeare write? the younger Gerald Sensabaugh 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (the younger Gerald Sensabaugh, played for, Williams) -> the younger Gerald Sensabaugh (7277ms) What plays did Shakespeare write? WHB 0.444444444442 What plays did Shakespeare write? -> $x: ($x, position, william) -> (WHB, indicates the position of, the Sir William Hardy Building) -> WHB (7266ms) What plays did Shakespeare write? Dallas 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (Dallas, wants to play with, Deron Williams) -> Dallas (7270ms) What plays did Shakespeare write? local jazz guitar great Lyle Harris 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (local jazz guitar great Lyle Harris, play with, Claude Williams) -> local jazz guitar great Lyle Harris (7277ms) What plays did Shakespeare write? the bands 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (the bands, played with, Williams) -> the bands (7274ms) What plays did Shakespeare write? Full-back Shaun Dowling 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (Full-back Shaun Dowling, played a slick one-two with, Williams) -> Full-back Shaun Dowling (7263ms) What plays did Shakespeare write? Leung Ka-Fai 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Leung Ka-Fai, plays, William) -> Leung Ka-Fai (7239ms) What plays did Shakespeare write? the kind of book 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, prose) -> (the kind of book, plays down, its finest passages of prose) -> the kind of book (7239ms) What plays did Shakespeare write? Wilde 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, prose) -> (Wilde, had finally found his voice in, prose) -> Wilde (7261ms) What plays did Shakespeare write? Sparrow 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, william) -> (Sparrow, soon became the voice of, the PNM and Eric Williams) -> Sparrow (7258ms) What plays did Shakespeare write? Fern?ndez 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (Fern?ndez, first played with, ubiquitous bassist William Parker) -> Fern?ndez (7276ms) What plays did Shakespeare write? Tommy 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (Tommy, played with, Hank Williams Jr.) -> Tommy (7254ms) What plays did Shakespeare write? London 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (London, played, William) -> London (7247ms) What plays did Shakespeare write? Rocky Mount?s Tia Hudgins 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Rocky Mount?s Tia Hudgins, played against, Williams) -> Rocky Mount?s Tia Hudgins (7268ms) What plays did Shakespeare write? The cartoon 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, william) -> (The cartoon, was voiced by, Kenneth Williams) -> The cartoon (7266ms) What plays did Shakespeare write? the tennis 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (the tennis, playing, Williams sisters) -> the tennis (7275ms) What plays did Shakespeare write? Nico H?lkenberg 0.444444444442 What plays did Shakespeare write? -> $x: ($x, position, william) -> (Nico H?lkenberg, claimed his maiden pole position for, Williams) -> Nico H?lkenberg (7243ms) What plays did Shakespeare write? John Allore 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (John Allore, plays, William) -> John Allore (7263ms) What plays did Shakespeare write? Samantha Stosur 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Samantha Stosur, played, Williams) -> Samantha Stosur (7270ms) What plays did Shakespeare write? Antonio Pierce 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Antonio Pierce, played under, Williams) -> Antonio Pierce (7263ms) What plays did Shakespeare write? line brawls 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (line brawls, played with, Tiger Williams) -> line brawls (7274ms) What plays did Shakespeare write? the penguin 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, william) -> (the penguin, voiced by, Robin Williams) -> the penguin (7254ms) What plays did Shakespeare write? the crowd 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, william) -> (the crowd, voiced their displeasure with, the Williams sisters) -> the crowd (7254ms) What plays did Shakespeare write? the Pope Selection Genie 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, william) -> (the Pope Selection Genie, is voiced by, Robin Williams) -> the Pope Selection Genie (7274ms) What plays did Shakespeare write? Robison 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (Robison, also played with, Bears WR Roy Williams) -> Robison (7278ms) What plays did Shakespeare write? Jamie Foxx 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Jamie Foxx, played, Williams) -> Jamie Foxx (7268ms) What plays did Shakespeare write? Emma Chambers 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Emma Chambers, plays, William) -> Emma Chambers (7261ms) What plays did Shakespeare write? Hugh Grant 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Hugh Grant, plays, William Thacker) -> Hugh Grant (7268ms) What plays did Shakespeare write? the position 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (the position, plays, Williams) -> the position (7263ms) What plays did Shakespeare write? Dale Potter 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (Dale Potter, played fiddle with, Hank Williams) -> Dale Potter (7270ms) What plays did Shakespeare write? Moon Bloodgood 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Moon Bloodgood, plays, Blair Williams) -> Moon Bloodgood (7266ms) What plays did Shakespeare write? Odom 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (Odom, will go play with, Deron Williams) -> Odom (7272ms) What plays did Shakespeare write? Will 0.444444444442 What plays did Shakespeare write? -> $x: ($x, position, william) -> (Will, left his position at, the William Reese Company) -> Will (7251ms) What plays did Shakespeare write? Dave Hoftra 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (Dave Hoftra, have played with, William Parker?s large bands) -> Dave Hoftra (7278ms) What plays did Shakespeare write? veteran big man Chuck Hayes 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (veteran big man Chuck Hayes, played with, Williams) -> veteran big man Chuck Hayes (7266ms) What plays did Shakespeare write? the help 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (the help, play, Williams) -> the help (7272ms) What plays did Shakespeare write? former cornerback Shawn Springs 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (former cornerback Shawn Springs, played for, Williams) -> former cornerback Shawn Springs (7274ms) What plays did Shakespeare write? Williams College 0.444444444442 What plays did Shakespeare write? -> $x: ($x, sport, william) -> (Williams College, Sports teams, Williams Ephs men's basketball) -> Williams College (7274ms) What plays did Shakespeare write? blue 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, william) -> (blue, has the voice of, robin Williams) -> blue (7263ms) What plays did Shakespeare write? former-defensive back Cory Wire 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (former-defensive back Cory Wire, played for, Williams) -> former-defensive back Cory Wire (7261ms) What plays did Shakespeare write? former Bills LB Coy Wire 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (former Bills LB Coy Wire, played under, Williams) -> former Bills LB Coy Wire (7272ms) What plays did Shakespeare write? Aidan Quinn 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Aidan Quinn, plays, William Franklin) -> Aidan Quinn (7266ms) What plays did Shakespeare write? the future Peggy Olsen 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (the future Peggy Olsen, played, Williams) -> the future Peggy Olsen (7243ms) What plays did Shakespeare write? A tape 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (A tape, played, Williams) -> A tape (7272ms) What plays did Shakespeare write? the current Redskins players 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (the current Redskins players, played under, Williams) -> the current Redskins players (7268ms) What plays did Shakespeare write? life 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, william) -> (life, also finds voice in, Raymond Williams idea) -> life (7258ms) What plays did Shakespeare write? Space 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, william) -> (Space, has the aboriginal voice of, Grandfather William Commanda) -> Space (7270ms) What plays did Shakespeare write? Singer 0.444444444442 What plays did Shakespeare write? -> $x: ($x, position, william) -> (Singer, held positions at, William Hill) -> Singer (7258ms) What plays did Shakespeare write? Gordon 0.444444444442 What plays did Shakespeare write? -> $x: ($x, want to play, william) -> (Gordon, wants to play, WESTWEGO ? Monty Williams) -> Gordon (7261ms) What plays did Shakespeare write? Thorson 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Thorson, plays as, ?William?) -> Thorson (7275ms) What plays did Shakespeare write? the din 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, william) -> (the din, could be heard the voice of, William B. Clark) -> the din (7276ms) What plays did Shakespeare write? Zeitlin 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (Zeitlin, loved playing with, bassist Buster Williams) -> Zeitlin (7247ms) What plays did Shakespeare write? Queen Latifah 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (Queen Latifah, plays dress up with, Wendy Williams) -> Queen Latifah (7272ms) What plays did Shakespeare write? White and Bobras 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (White and Bobras, plays, Williams) -> White and Bobras (7239ms) What plays did Shakespeare write? Fujita 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Fujita, played under, Williams) -> Fujita (7261ms) What plays did Shakespeare write? Marling 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Marling, plays, Rhoda Williams) -> Marling (7243ms) What plays did Shakespeare write? the boy 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (the boy, playing, William) -> the boy (7266ms) What plays did Shakespeare write? Iman 0.444444444442 What plays did Shakespeare write? -> $x: ($x, sport, william) -> (Iman, sported on, The Wendy Williams Show) -> Iman (7276ms) What plays did Shakespeare write? garden Katala 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (garden Katala, was playing a word game with, William) -> garden Katala (7247ms) What plays did Shakespeare write? Ramon 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, william) -> (Ramon, voiced by, Robin Williams) -> Ramon (7254ms) What plays did Shakespeare write? the Guru 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, william) -> (the Guru, also voiced by, ROBIN WILLIAMS) -> the Guru (7276ms) What plays did Shakespeare write? Greetings 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, william) -> (Greetings, were voiced by, William R. Kreeb) -> Greetings (7268ms) What plays did Shakespeare write? Four players 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Four players, played for, Williams) -> Four players (7278ms) What plays did Shakespeare write? the ?golden 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, william) -> (the ?golden, voiced, ? Ted Williams) -> the ?golden (7251ms) What plays did Shakespeare write? Heath Ledger 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Heath Ledger, plays, William Thatcher) -> Heath Ledger (7251ms) What plays did Shakespeare write? four players 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (four players, played under, Williams) -> four players (7268ms) What plays did Shakespeare write? McLaughlin 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (McLaughlin, played with, Tony Williams ?s Lifetime) -> McLaughlin (7276ms) What plays did Shakespeare write? The young actor 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (The young actor, plays, William) -> The young actor (7274ms) What plays did Shakespeare write? Steve 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (Steve, was invited to play with, William Jefferson) -> Steve (7278ms) What plays did Shakespeare write? a Director 0.444444444442 What plays did Shakespeare write? -> $x: ($x, position, william) -> (a Director, is a new position for, William) -> a Director (7254ms) What plays did Shakespeare write? developers 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, william) -> (developers, voiced, developer advocate Abraham Williams) -> developers (7277ms) What plays did Shakespeare write? former NFL safety Matt Bowen 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (former NFL safety Matt Bowen, played under, Williams) -> former NFL safety Matt Bowen (7247ms) What plays did Shakespeare write? Morgia 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (Morgia, has played with, William Parker) -> Morgia (7251ms) What plays did Shakespeare write? the young actor 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (the young actor, plays, William) -> the young actor (7263ms) What plays did Shakespeare write? Cantor 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Cantor, played, Williams) -> Cantor (7263ms) What plays did Shakespeare write? Thomas Howes 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Thomas Howes, played, William) -> Thomas Howes (7279ms) What plays did Shakespeare write? Patrick Fugit 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Patrick Fugit, plays, William Miller) -> Patrick Fugit (7275ms) What plays did Shakespeare write? Mallinger 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (Mallinger, has played with, Joe Williams) -> Mallinger (7251ms) What plays did Shakespeare write? Lisle Wilkerson 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, william) -> (Lisle Wilkerson, is the voice of, Nina Williams) -> Lisle Wilkerson (7274ms) What plays did Shakespeare write? House 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (House, plays with, William?s) -> House (7263ms) What plays did Shakespeare write? the author 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, prose) -> (the author, is definitely playing with, prose styles) -> the author (7278ms) What plays did Shakespeare write? Whalen 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (Whalen, played three seasons with, McWilliams-Franklin) -> Whalen (7276ms) What plays did Shakespeare write? the horse 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, william) -> (the horse, voiced its protest, nearly unseating William) -> the horse (7272ms) What plays did Shakespeare write? you?ll 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, william) -> (you?ll, hear the unmistakable voice of, Michael C. Williams) -> you?ll (7277ms) What plays did Shakespeare write? WCFM 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, william) -> (WCFM, is the radio voice of, Williams College) -> WCFM (7254ms) What plays did Shakespeare write? south-carolina-gamecocks-basketball 0.444444444442 What plays did Shakespeare write? -> $x: ($x, sport, william) -> (south-carolina-gamecocks-basketball, is the home venue for the sports team, Williams-Brice Stadium) -> south-carolina-gamecocks-basketball (7276ms) What plays did Shakespeare write? a musician and comedian 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (a musician and comedian, played with, Hank Williams) -> a musician and comedian (7243ms) What plays did Shakespeare write? the Philharmonic 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (the Philharmonic, enthusiastically played, Williams) -> the Philharmonic (7251ms) What plays did Shakespeare write? Anderson 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Anderson, played with, Williams) -> Anderson (7278ms) What plays did Shakespeare write? Former NFL strong safety Matt Bowen 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Former NFL strong safety Matt Bowen, played under, Williams) -> Former NFL strong safety Matt Bowen (7270ms) What plays did Shakespeare write? the Knight Rider GPS 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, william) -> (the Knight Rider GPS, will feature the voice of, William Daniels) -> the Knight Rider GPS (7278ms) What plays did Shakespeare write? The game 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, william) -> (The game, also features the voice of, William S. Burroughs) -> The game (7274ms) What plays did Shakespeare write? Doc 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (Doc, played with, Williams) -> Doc (7275ms) What plays did Shakespeare write? McArthur 0.444444444442 What plays did Shakespeare write? -> $x: ($x, position, william) -> (McArthur, accepted a position with, William F. White Ltd.) -> McArthur (7268ms) What plays did Shakespeare write? Washington 0.444444444442 What plays did Shakespeare write? -> $x: ($x, position, william) -> (Washington, offered the position to, William Cushing) -> Washington (7268ms) What plays did Shakespeare write? Lord 0.444444444442 What plays did Shakespeare write? -> $x: ($x, position, william) -> (Lord, has held positions at, Martin Williams Advertising) -> Lord (7277ms) What plays did Shakespeare write? 6 and 16 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (6 and 16, would play basketball with, Williams) -> 6 and 16 (7247ms) What plays did Shakespeare write? Coy Wire 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Coy Wire, played for, Williams) -> Coy Wire (7270ms) What plays did Shakespeare write? Claymation Scooby 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, william) -> (Claymation Scooby, voiced by, William Hurt) -> Claymation Scooby (7258ms) What plays did Shakespeare write? teams 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (teams, can play, Williams) -> teams (7247ms) What plays did Shakespeare write? Washburn 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (Washburn, played with, Dick Williams) -> Washburn (7247ms) What plays did Shakespeare write? Michael Knight Kitt 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, william) -> (Michael Knight Kitt, was voiced by, William Daniels) -> Michael Knight Kitt (7278ms) What plays did Shakespeare write? Arreguin 0.444444444442 What plays did Shakespeare write? -> $x: ($x, position, william) -> (Arreguin, accepted a position in, Williams) -> Arreguin (7277ms) What plays did Shakespeare write? Eastwood 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Eastwood, playing, William Munny) -> Eastwood (7263ms) What plays did Shakespeare write? 9:53 p.m. Sundiata Gaines 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (9:53 p.m. Sundiata Gaines, is playing well with, Deron Williams) -> 9:53 p.m. Sundiata Gaines (7261ms) What plays did Shakespeare write? the MBA 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, prose) -> (the MBA, has voiced concern about, pro-se litigants) -> the MBA (7251ms) What plays did Shakespeare write? The actor 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (The actor, playing, William) -> The actor (7270ms) What plays did Shakespeare write? Pierce 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Pierce, played for, Williams) -> Pierce (7278ms) What plays did Shakespeare write? two selections Andrew Cyrille 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (two selections Andrew Cyrille, played with, Williams) -> two selections Andrew Cyrille (7277ms) What plays did Shakespeare write? the defense 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (the defense, to play, Williams) -> the defense (7272ms) What plays did Shakespeare write? Elkhart Central Jazz Band 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (Elkhart Central Jazz Band, got to play with, Skinny Williams) -> Elkhart Central Jazz Band (7239ms) What plays did Shakespeare write? assistant dean 0.444444444442 What plays did Shakespeare write? -> $x: ($x, position, william) -> (assistant dean, held faculty positions at, Williams College) -> assistant dean (7266ms) What plays did Shakespeare write? the narrative 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, prose) -> (the narrative, play, PROSE DRAMA) -> the narrative (7243ms) What plays did Shakespeare write? a man 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (a man, played a year with, Tony Williams) -> a man (7243ms) What plays did Shakespeare write? Mr Q 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, william) -> (Mr Q, also voiced, William Miles) -> Mr Q (7243ms) What plays did Shakespeare write? Jimmy Giles 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (Jimmy Giles, played with, Doug Williams) -> Jimmy Giles (7261ms) What plays did Shakespeare write? former Redskin Matt Bowen 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (former Redskin Matt Bowen, played for, Williams) -> former Redskin Matt Bowen (7258ms) What plays did Shakespeare write? Brees 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (Brees, played with, Williams) -> Brees (7278ms) What plays did Shakespeare write? Ryne Sandberg 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (Ryne Sandberg, played with, Billy Williams) -> Ryne Sandberg (7270ms) What plays did Shakespeare write? Mackie 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Mackie, plays, William) -> Mackie (7266ms) What plays did Shakespeare write? Claxton 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (Claxton, played with, William McGirt) -> Claxton (7278ms) What plays did Shakespeare write? Clint Eastwood 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Clint Eastwood, plays, William Munny) -> Clint Eastwood (7258ms) What plays did Shakespeare write? Tony 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (Tony, would usually play football with, Jason Williams) -> Tony (7239ms) What plays did Shakespeare write? Mr. Moiseyev 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (Mr. Moiseyev, played a match with, William Docherty) -> Mr. Moiseyev (7258ms) What plays did Shakespeare write? The horse 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, william) -> (The horse, voiced its protest nearly unseating, William) -> The horse (7274ms) What plays did Shakespeare write? The Prince 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (The Prince, often played with, Prince William) -> The Prince (7268ms) What plays did Shakespeare write? Tim Robbins 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Tim Robbins, plays, William) -> Tim Robbins (7276ms) What plays did Shakespeare write? Josh Bryant 0.444444444442 What plays did Shakespeare write? -> $x: ($x, position, william) -> (Josh Bryant, is filling the position vacated by, William Howell) -> Josh Bryant (7258ms) What plays did Shakespeare write? State University 0.444444444442 What plays did Shakespeare write? -> $x: ($x, sport, william) -> (State University, is a sports team also known as, williams baptist college) -> State University (7278ms) What plays did Shakespeare write? Kitna 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (Kitna, has played with, new # 1 receiver Roy Williams) -> Kitna (7263ms) What plays did Shakespeare write? MacNichol 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (MacNichol, was also writing plays with, Williams) -> MacNichol (7275ms) What plays did Shakespeare write? Birtles 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (Birtles, played with, the Williams-Lawrence-Krstian lineup) -> Birtles (7243ms) What plays did Shakespeare write? Ed Harris 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Ed Harris, played, William Walker) -> Ed Harris (7268ms) What plays did Shakespeare write? Shanks 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Shanks, was playing, Williams) -> Shanks (7263ms) What plays did Shakespeare write? Deliberate deformations 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, prose) -> (Deliberate deformations, play with, the prose) -> Deliberate deformations (7272ms) What plays did Shakespeare write? cryogenics employees 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (cryogenics employees, play baseball with, Ted Williams) -> cryogenics employees (7272ms) What plays did Shakespeare write? 12 Special Olympians 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (12 Special Olympians, will play with, Williams) -> 12 Special Olympians (7276ms) What plays did Shakespeare write? the Union 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (the Union, played, Williams) -> the Union (7261ms) What plays did Shakespeare write? MinorKey 0.444444444442 What plays did Shakespeare write? -> $x: ($x, position, prose) -> (MinorKey, left the position of, Prose Gallery Director) -> MinorKey (7258ms) What plays did Shakespeare write? Moebius 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Moebius, plays upon, William) -> Moebius (7272ms) What plays did Shakespeare write? Connery 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Connery, plays, William) -> Connery (7275ms) What plays did Shakespeare write? College of William and Mary 0.444444444442 What plays did Shakespeare write? -> $x: ($x, sport, william) -> (College of William and Mary, Sports teams, William & Mary Tribe men's basketball) -> College of William and Mary (7254ms) What plays did Shakespeare write? the guitar 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (the guitar, plays, William Eaton) -> the guitar (7274ms) What plays did Shakespeare write? a member 0.444444444442 What plays did Shakespeare write? -> $x: ($x, position, william) -> (a member, has held positions at, William Morrow) -> a member (7268ms) What plays did Shakespeare write? Four Redskins 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Four Redskins, played under, Williams) -> Four Redskins (7258ms) What plays did Shakespeare write? Johnny Depp 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Johnny Depp, plays, William Blake) -> Johnny Depp (7274ms) What plays did Shakespeare write? Sean Connery 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Sean Connery, plays, William Forrester) -> Sean Connery (7261ms) What plays did Shakespeare write? Happy Feet 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, william) -> (Happy Feet, features the voices of, Robin Williams) -> Happy Feet (7254ms) What plays did Shakespeare write? the story nice and tight , I?ll 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, prose) -> (the story nice and tight , I?ll, play with, the prose) -> the story nice and tight , I?ll (7274ms) What plays did Shakespeare write? Wire 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Wire, played under, Williams) -> Wire (7251ms) What plays did Shakespeare write? The lead wildebeest 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, william) -> (The lead wildebeest, are voiced by, William Shatner) -> The lead wildebeest (7247ms) What plays did Shakespeare write? Metaphor 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, prose) -> (Metaphor, plays an important role for, prose style) -> Metaphor (7263ms) What plays did Shakespeare write? a backing band 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play with, william) -> (a backing band, have played with, Robbie Williams) -> a backing band (7251ms) What plays did Shakespeare write? McGrath 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (McGrath, played in, Williams) -> McGrath (7272ms) What plays did Shakespeare write? Philip 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Philip, played, William Fletcher) -> Philip (7247ms) What plays did Shakespeare write? The last Game 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (The last Game, played Doherty against, Williams) -> The last Game (7272ms) What plays did Shakespeare write? the narrator 0.444444444442 What plays did Shakespeare write? -> $x: ($x, voice, william) -> (the narrator, is the voice of, Tennessee Williams) -> the narrator (7277ms) What plays did Shakespeare write? friends 0.444444444442 What plays did Shakespeare write? -> $x: ($x, position, william) -> (friends, have positioned, the William Inge Collection) -> friends (7254ms) What plays did Shakespeare write? Smith 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Smith, played for, Williams) -> Smith (7274ms) What plays did Shakespeare write? Prioleau 0.444444444442 What plays did Shakespeare write? -> $x: ($x, play, william) -> (Prioleau, played under, Williams) -> Prioleau (7270ms) What is the chemical formula for sulphur dioxide? the three circles 0.33333333332899995 What is the chemical formula for sulphur dioxide? -> $x: ($x, be symbol for, sulfur) -> (the three circles, is the alchemical symbol for, Sulfur) -> the three circles (664ms) What is the chemical formula for sulphur dioxide? a high sulphur content -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (a high sulphur content, produces, sulfur dioxide) -> a high sulphur content (1187ms) What is the chemical formula for sulphur dioxide? the total funds -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulfur dioxide) -> (the total funds, is aimed at removing, sulfur dioxide) -> the total funds (1298ms) What is the chemical formula for sulphur dioxide? Natural gas -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (Natural gas, produces negligible emissions of, sulfur dioxide) -> Natural gas (1300ms) What is the chemical formula for sulphur dioxide? Pu`u ` O`o -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (Pu`u ` O`o, continued to produce, sulfur dioxide) -> Pu`u ` O`o (1300ms) What is the chemical formula for sulphur dioxide? a technology -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulfur dioxide) -> (a technology, to remove, sulfur dioxide) -> a technology (1300ms) What is the chemical formula for sulphur dioxide? Sodium sulfite -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (Sodium sulfite, decomposes to produce, sulfur dioxide) -> Sodium sulfite (1300ms) What is the chemical formula for sulphur dioxide? A sulfur dust explosion -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (A sulfur dust explosion, will produce, Sulfur Dioxide) -> A sulfur dust explosion (1298ms) What is the chemical formula for sulphur dioxide? The silicon dioxide -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulfur dioxide) -> (The silicon dioxide, can be used to remove, sulfur dioxide) -> The silicon dioxide (1270ms) What is the chemical formula for sulphur dioxide? The method -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (The method, produces, sulfur dioxide and chlorine) -> The method (1298ms) What is the chemical formula for sulphur dioxide? Scrubbers -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulfur dioxide) -> (Scrubbers, remove, sulfur dioxide) -> Scrubbers (1298ms) What is the chemical formula for sulphur dioxide? Oil -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (Oil, produces high levels of, sulfur dioxide and nitrogen oxides) -> Oil (1270ms) What is the chemical formula for sulphur dioxide? Burning sulfur -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (Burning sulfur, produces, sulfur dioxide) -> Burning sulfur (1296ms) What is the chemical formula for sulphur dioxide? Processing plants -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (Processing plants, produce, sulfur dioxide) -> Processing plants (1187ms) What is the chemical formula for sulphur dioxide? electricity -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (electricity, produces, sulfur dioxide) -> electricity (1302ms) What is the chemical formula for sulphur dioxide? coal plants -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (coal plants, produce, sulfur dioxide) -> coal plants (1300ms) What is the chemical formula for sulphur dioxide? Lithium processing -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (Lithium processing, also produces, sulfur dioxide) -> Lithium processing (1296ms) What is the chemical formula for sulphur dioxide? North America -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (North America, produce large amounts of, sulfur dioxide) -> North America (1298ms) What is the chemical formula for sulphur dioxide? Coal -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (Coal, produces, sulfur dioxide) -> Coal (1186ms) What is the chemical formula for sulphur dioxide? coal -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (coal, produces, sulfur dioxide and nitrogen oxides) -> coal (1300ms) What is the chemical formula for sulphur dioxide? the cherries -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulfur dioxide) -> (the cherries, are rinsed to remove, the sulfur dioxide) -> the cherries (1187ms) What is the chemical formula for sulphur dioxide? fruits -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (fruits, are produced without, sulfur dioxide) -> fruits (1298ms) What is the chemical formula for sulphur dioxide? The scrubbers -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulfur dioxide) -> (The scrubbers, are capable of removing, sulfur dioxide) -> The scrubbers (1186ms) What is the chemical formula for sulphur dioxide? SO2 and NOx removal -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulfur dioxide) -> (SO2 and NOx removal, remove, sulfur dioxide) -> SO2 and NOx removal (1296ms) What is the chemical formula for sulphur dioxide? China -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (China, produces twice, the sulfur dioxide) -> China (1300ms) What is the chemical formula for sulphur dioxide? High sulfur coal -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (High sulfur coal, produces, sulfur dioxide) -> High sulfur coal (1270ms) What is the chemical formula for sulphur dioxide? technology -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulfur dioxide) -> (technology, is used to remove, sulfur dioxide) -> technology (1296ms) What is the chemical formula for sulphur dioxide? paper -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (paper, produce, sulfur dioxide) -> paper (1296ms) What is the chemical formula for sulphur dioxide? sulfur -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (sulfur, is also used to produce, sulfur dioxide gas) -> sulfur (1300ms) What is the chemical formula for sulphur dioxide? nickel -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (nickel, can produce large amounts of, sulfur dioxide) -> nickel (1300ms) What is the chemical formula for sulphur dioxide? energy consumption -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (energy consumption, produces only a third of, the sulfur dioxide) -> energy consumption (1296ms) What is the chemical formula for sulphur dioxide? sulfites and bisulfites -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (sulfites and bisulfites, will produce, sulfur dioxide gas) -> sulfites and bisulfites (1300ms) What is the chemical formula for sulphur dioxide? equipment -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulfur dioxide) -> (equipment, removes, toxic sulfur dioxide) -> equipment (1270ms) What is the chemical formula for sulphur dioxide? Pu`u ` ?` ? -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (Pu`u ` ?` ?, continues to produce, sulfur dioxide) -> Pu`u ` ?` ? (1296ms) What is the chemical formula for sulphur dioxide? Incineration -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (Incineration, may produce, toxic sulfur dioxide gas) -> Incineration (1300ms) What is the chemical formula for sulphur dioxide? a scrubber -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulfur dioxide) -> (a scrubber, removes all traces of, sulfur dioxide) -> a scrubber (1296ms) What is the chemical formula for sulphur dioxide? water -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (water, produces, sulfur dioxide gas) -> water (1296ms) What is the chemical formula for sulphur dioxide? Yeast -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (Yeast, regularly produce, sulfur dioxide gas) -> Yeast (1296ms) What is the chemical formula for sulphur dioxide? sulfide ores -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (sulfide ores, produces, sulfur dioxide) -> sulfide ores (1298ms) What is the chemical formula for sulphur dioxide? Burning syngas -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (Burning syngas, produces less than, half the sulfur dioxide) -> Burning syngas (1298ms) What is the chemical formula for sulphur dioxide? refineries -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulfur dioxide) -> (refineries, to remove, sulfur dioxide) -> refineries (1187ms) What is the chemical formula for sulphur dioxide? scrubbers -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulfur dioxide) -> (scrubbers, remove, sulfur dioxide) -> scrubbers (1296ms) What is the chemical formula for sulphur dioxide? a low sulfur content -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (a low sulfur content, produces very, little sulfur dioxide) -> a low sulfur content (1298ms) What is the chemical formula for sulphur dioxide? a lubricating agent -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (a lubricating agent, produces, sulfur dioxide) -> a lubricating agent (1298ms) What is the chemical formula for sulphur dioxide? wine -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (wine, produces, some sulfur dioxide) -> wine (1298ms) What is the chemical formula for sulphur dioxide? hot steam -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (hot steam, produced, sulfur dioxide) -> hot steam (1300ms) What is the chemical formula for sulphur dioxide? Volcanic eruptions -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (Volcanic eruptions, produce, sulfur dioxide) -> Volcanic eruptions (1296ms) What is the chemical formula for sulphur dioxide? clean coal -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulfur dioxide) -> (clean coal, remove, the sulfur dioxide) -> clean coal (1296ms) What is the chemical formula for sulphur dioxide? Chicken -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (Chicken, litter would produce, less sulfur dioxide) -> Chicken (1270ms) What is the chemical formula for sulphur dioxide? The chlorine -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulfur dioxide) -> (The chlorine, is then removed using, sulfur dioxide) -> The chlorine (1300ms) What is the chemical formula for sulphur dioxide? Sodium -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (Sodium, sulfite decomposes to produce, sulfur dioxide) -> Sodium (1300ms) What is the chemical formula for sulphur dioxide? fuel -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (fuel, produces, less carbon dioxide and sulfur dioxide) -> fuel (1270ms) What is the chemical formula for sulphur dioxide? WFGD units -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulfur dioxide) -> (WFGD units, remove, sulfur dioxide) -> WFGD units (1296ms) What is the chemical formula for sulphur dioxide? sulfuric acid -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (sulfuric acid, produces, oxygen and sulfur dioxide) -> sulfuric acid (1300ms) What is the chemical formula for sulphur dioxide? Sulfur -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (Sulfur, to produce, sulfur dioxide) -> Sulfur (1270ms) What is the chemical formula for sulphur dioxide? Rit Color Remover -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (Rit Color Remover, produce, sulfur dioxide) -> Rit Color Remover (1296ms) What is the chemical formula for sulphur dioxide? The process -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulfur dioxide) -> (The process, removes, 98 percent of the sulfur dioxide) -> The process (1302ms) What is the chemical formula for sulphur dioxide? the process -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulfur dioxide) -> (the process, removes, the sulfur dioxide) -> the process (1186ms) What is the chemical formula for sulphur dioxide? Burning coal -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (Burning coal, produces, sulfur dioxide) -> Burning coal (1300ms) What is the chemical formula for sulphur dioxide? natural gas -0.444444444444 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulfur dioxide) -> (natural gas, produces, less sulfur dioxide) -> natural gas (1186ms) What is the chemical formula for sulphur dioxide? the Emperor -0.555555555557 What is the chemical formula for sulphur dioxide? -> $x: ($x, be symbol of, sulphur) -> (the Emperor, is the alchemical symbol of, Sulphur) -> the Emperor (1302ms) What is the chemical formula for sulphur dioxide? saliva -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (saliva, produced a huge amount of, sulphur) -> saliva (1302ms) What is the chemical formula for sulphur dioxide? The geysers -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (The geysers, produce steam rich in, sulphur compounds) -> The geysers (1305ms) What is the chemical formula for sulphur dioxide? Sulphur -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (Sulphur, was burnt to produce, sulphur dioxide) -> Sulphur (1305ms) What is the chemical formula for sulphur dioxide? The hydrotreater -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulphur) -> (The hydrotreater, removes, sulphur) -> The hydrotreater (1302ms) What is the chemical formula for sulphur dioxide? a product -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulphur) -> (a product, removes, sulphur) -> a product (1302ms) What is the chemical formula for sulphur dioxide? the battery -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulphur) -> (the battery, also remove, all built-up sulphur) -> the battery (1305ms) What is the chemical formula for sulphur dioxide? the processes -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (the processes, tend to produce, more sulphur gas) -> the processes (1306ms) What is the chemical formula for sulphur dioxide? Renewable wood -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (Renewable wood, would produce, less sulphur dioxide) -> Renewable wood (1306ms) What is the chemical formula for sulphur dioxide? Biodynamic wine -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (Biodynamic wine, can be produced using, sulphur dioxide) -> Biodynamic wine (1303ms) What is the chemical formula for sulphur dioxide? The fire -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (The fire, produced a large volume of, sulphur-dioxide gas) -> The fire (1306ms) What is the chemical formula for sulphur dioxide? Heating -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (Heating, produces, toxic fumes of sulphur) -> Heating (1303ms) What is the chemical formula for sulphur dioxide? Sales service Alfa Laval?s PureSOx -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulphur) -> (Sales service Alfa Laval?s PureSOx, removes, sulphur oxides) -> Sales service Alfa Laval?s PureSOx (1305ms) What is the chemical formula for sulphur dioxide? The smelter -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (The smelter, produced emissions of, sulphur dioxide and fluoride) -> The smelter (1304ms) What is the chemical formula for sulphur dioxide? prince nymphs -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (prince nymphs, have been producing, .Smallish Sulphur Duns) -> prince nymphs (1304ms) What is the chemical formula for sulphur dioxide? systems -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulphur) -> (systems, are used to remove, sulphur dioxide) -> systems (1303ms) What is the chemical formula for sulphur dioxide? Leighton?s -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulphur) -> (Leighton?s, removes, both sulphur and iron) -> Leighton?s (1302ms) What is the chemical formula for sulphur dioxide? the vines -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulphur) -> (the vines, remove, the sulphur) -> the vines (1303ms) What is the chemical formula for sulphur dioxide? the resultant gases -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (the resultant gases, may be used to produce, marketable sulphur) -> the resultant gases (1305ms) What is the chemical formula for sulphur dioxide? sulfur dioxide -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulphur) -> (sulfur dioxide, remove, sulphur) -> sulfur dioxide (1306ms) What is the chemical formula for sulphur dioxide? air -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulphur) -> (air, remove, sulphur) -> air (1305ms) What is the chemical formula for sulphur dioxide? process -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulphur) -> (process, removes most of, the sulphur) -> process (1306ms) What is the chemical formula for sulphur dioxide? Pyrometallurgical methods -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (Pyrometallurgical methods, produce, sulphur dioxide) -> Pyrometallurgical methods (1305ms) What is the chemical formula for sulphur dioxide? Energas -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (Energas, produced tons of, pure sulphur) -> Energas (1306ms) What is the chemical formula for sulphur dioxide? Alberta oil sands -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (Alberta oil sands, produce crude oil rich in, sulphur) -> Alberta oil sands (1305ms) What is the chemical formula for sulphur dioxide? The sulphurous acid -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (The sulphurous acid, is produced by, dissolving sulphur dioxide) -> The sulphurous acid (1306ms) What is the chemical formula for sulphur dioxide? less sulphur -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (less sulphur, produced, the greenhouse gas sulphur dioxide) -> less sulphur (1303ms) What is the chemical formula for sulphur dioxide? the filter -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulphur) -> (the filter, will remove, sulphur) -> the filter (1302ms) What is the chemical formula for sulphur dioxide? the plant -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (the plant, will produce, ultra-low-sulphur fuel) -> the plant (1306ms) What is the chemical formula for sulphur dioxide? the yeast -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (the yeast, produce, sulphur) -> the yeast (1302ms) What is the chemical formula for sulphur dioxide? Hydrotreaters -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulphur) -> (Hydrotreaters, remove, sulphur and nitrogen) -> Hydrotreaters (1305ms) What is the chemical formula for sulphur dioxide? the sulphur melts -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (the sulphur melts, produces, sulphur dioxide) -> the sulphur melts (1306ms) What is the chemical formula for sulphur dioxide? sulphur -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (sulphur, produces, sulphur dioxide) -> sulphur (1302ms) What is the chemical formula for sulphur dioxide? BrewTek CL-450 Kolsch -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (BrewTek CL-450 Kolsch, Produces, mild sulphur) -> BrewTek CL-450 Kolsch (1302ms) What is the chemical formula for sulphur dioxide? MSM -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, be type of, sulphur) -> (MSM, will be a type of, organic sulphur) -> MSM (1302ms) What is the chemical formula for sulphur dioxide? Glutathione -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (Glutathione, is produced through, the sulphur oxidation side) -> Glutathione (1303ms) What is the chemical formula for sulphur dioxide? the world?s largest ships -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (the world?s largest ships, produce as, much sulphur oxide) -> the world?s largest ships (1306ms) What is the chemical formula for sulphur dioxide? burned sulphur -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (burned sulphur, produces, sulphur dioxide) -> burned sulphur (1305ms) What is the chemical formula for sulphur dioxide? Magnesium -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulphur) -> (Magnesium, also is used to remove, sulphur) -> Magnesium (1306ms) What is the chemical formula for sulphur dioxide? Hydrogen -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulphur) -> (Hydrogen, to remove, sulphur) -> Hydrogen (1305ms) What is the chemical formula for sulphur dioxide? the Revushchaya fumarole -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (the Revushchaya fumarole, produced a flow of, molten sulphur) -> the Revushchaya fumarole (1306ms) What is the chemical formula for sulphur dioxide? clean nice scrubbers -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulphur) -> (clean nice scrubbers, remove, all the filthy sulphur dioxide) -> clean nice scrubbers (1304ms) What is the chemical formula for sulphur dioxide? the Gulf Coast -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (the Gulf Coast, produces most of, Mexico?s oil and sulphur) -> the Gulf Coast (1303ms) What is the chemical formula for sulphur dioxide? Melchior Boniger -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (Melchior Boniger, produced new products such as, sulphur) -> Melchior Boniger (1304ms) What is the chemical formula for sulphur dioxide? manganese Used -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, remove, sulphur) -> (manganese Used, remove, sulphur) -> manganese Used (1306ms) What is the chemical formula for sulphur dioxide? decomposition -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (decomposition, produces, sulphur dioxide) -> decomposition (1304ms) What is the chemical formula for sulphur dioxide? burnt -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (burnt, produces large quantities of, sulphur dioxide) -> burnt (1306ms) What is the chemical formula for sulphur dioxide? the cheapest -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (the cheapest, can be produced from, sulphur , air and water) -> the cheapest (1305ms) What is the chemical formula for sulphur dioxide? Burning sulphur -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (Burning sulphur, would produce, sulphur dioxide) -> Burning sulphur (1302ms) What is the chemical formula for sulphur dioxide? pure sulphur -0.666666666666 What is the chemical formula for sulphur dioxide? -> $x: ($x, produce, sulphur) -> (pure sulphur, produces, sulphur dioxide) -> pure sulphur (1305ms) Where is Venezuela? Spanish and English 0.777777777776 Where is Venezuela? -> $x: (venezuelum, be find in, $x) -> (Venezuela, can be found in, Spanish and English) -> Spanish and English (1222ms) Where is Venezuela? the CIA World Factbook 0.777777777776 Where is Venezuela? -> $x: (venezuelum, be find in, $x) -> (Venezuela, are found in, the CIA World Factbook) -> the CIA World Factbook (1299ms) Where is Venezuela? any grocery store 0.777777777776 Where is Venezuela? -> $x: (venezuelum, be find in, $x) -> (Venezuela, can be easily found in, any grocery store) -> any grocery store (1299ms) Where is Venezuela? the line 0.777777777776 Where is Venezuela? -> $x: (venezuelum, be find in, $x) -> (Venezuela, is also found in, the line) -> the line (1299ms) Where is Venezuela? small rocks 0.777777777776 Where is Venezuela? -> $x: (venezuelum, be find in, $x) -> (Venezuela?s Amazon jungle, is often found in, small rocks) -> small rocks (1222ms) Where is Venezuela? cyberspace 0.777777777776 Where is Venezuela? -> $x: (venezuelum, be find in, $x) -> (Venezuela, has been found in, cyberspace) -> cyberspace (1222ms) Where is Venezuela? a Farc camp 0.777777777776 Where is Venezuela? -> $x: (venezuelum, be find in, $x) -> (Venezuela, were found in, a Farc camp) -> a Farc camp (1299ms) Where is Venezuela? FARC hands 0.777777777776 Where is Venezuela? -> $x: (venezuelum, be find in, $x) -> (Venezuela, was found in, FARC hands) -> FARC hands (1222ms) Where is Venezuela? certain areas 0.777777777776 Where is Venezuela? -> $x: (venezuelum, be find in, $x) -> (Venezuela, are mainly found working in, certain areas) -> certain areas (1222ms) Where is Venezuela? various parts 0.777777777776 Where is Venezuela? -> $x: (venezuelum, be find in, $x) -> (Venezuela, are found in, various parts) -> various parts (1299ms) Where is Venezuela? editorials 0.777777777776 Where is Venezuela? -> $x: (venezuelum, be find in, $x) -> (Venezuela, was often found in, editorials) -> editorials (1222ms) Where is Venezuela? a range 0.777777777776 Where is Venezuela? -> $x: (venezuelum, be find in, $x) -> (Venezuela, can be found in, a range) -> a range (1222ms) Where is Venezuela? Hasbrouck 0.777777777776 Where is Venezuela? -> $x: (venezuelum, be find in, $x) -> (Venezuela, can be found in, Hasbrouck) -> Hasbrouck (1222ms) Where is Venezuela? the issuance 0.777777777776 Where is Venezuela? -> $x: (venezuelum, be find in, $x) -> (Venezuela, has been found to be indiscriminate in, the issuance) -> the issuance (1299ms) Where is Venezuela? business 0.777777777776 Where is Venezuela? -> $x: (venezuelum, be find in, $x) -> (Venezuela, have been found to engage in, business) -> business (1299ms) Where is Venezuela? a rebel cache 0.777777777776 Where is Venezuela? -> $x: (venezuelum, be find in, $x) -> (Venezuela, were found in, a rebel cache) -> a rebel cache (1299ms) Where is Venezuela? the northern part 0.666666666663 Where is Venezuela? -> $x: (venezuelum, be locate in, $x) -> (Venezuela, is located in, the northern part) -> the northern part (3027ms) Where is Venezuela? Countries 0.666666666663 Where is Venezuela? -> $x: (venezuelum, be locate in, $x) -> (venezuela, is a country located in the geopolitical location, Countries) -> Countries (3027ms) Where is Venezuela? South American Countries 0.666666666663 Where is Venezuela? -> $x: (venezuelum, be locate in, $x) -> (venezuela, is a country located in the geopolitical location, South American Countries) -> South American Countries (3027ms) Where is Venezuela? the tropics 0.666666666663 Where is Venezuela? -> $x: (venezuelum, be locate in, $x) -> (Climate Venezuela, is located entirely in, the tropics) -> the tropics (3027ms) Where is Venezuela? the center 0.666666666663 Where is Venezuela? -> $x: (venezuelum, be locate in, $x) -> (Venezuela, is located in, the center) -> the center (1865ms) Where is Venezuela? the northeastern portion 0.666666666663 Where is Venezuela? -> $x: (venezuelum, be locate in, $x) -> (Venezuela, is located in, the northeastern portion) -> the northeastern portion (1702ms) Where is Venezuela? central Caracas 0.666666666663 Where is Venezuela? -> $x: (venezuelum, be locate in, $x) -> (Venezuela, is located in, central Caracas) -> central Caracas (1865ms) Where is Venezuela? front 0.666666666663 Where is Venezuela? -> $x: (venezuelum, be locate in, $x) -> (Venezuela, is located in, front) -> front (1701ms) Where is Venezuela? the northern coast 0.666666666663 Where is Venezuela? -> $x: (venezuelum, be locate in, $x) -> (Venezuela, is located in, the northern coast) -> the northern coast (3027ms) Where is Venezuela? northern South America 0.666666666663 Where is Venezuela? -> $x: (venezuelum, be locate in, $x) -> (Venezuela, is located in, northern South America) -> northern South America (3027ms) Where is Venezuela? South America 0.666666666663 Where is Venezuela? -> $x: (venezuelum, be locate in, $x) -> (Venezuela, is a country located in, South America) -> South America (1865ms) Where is Venezuela? the north part 0.666666666663 Where is Venezuela? -> $x: (venezuelum, be locate in, $x) -> (Introduction Venezuela, is located in, the north part) -> the north part (1865ms) Where is Venezuela? the central-west portion 0.666666666663 Where is Venezuela? -> $x: (venezuelum, be locate in, $x) -> (Venezuela?s Andes, are located in, the central-west portion) -> the central-west portion (1701ms) Where is Venezuela? the north of South America 0.666666666663 Where is Venezuela? -> $x: (venezuelum, be locate in, $x) -> (Venezuela, is located in, the north of South America) -> the north of South America (1865ms) Where is Venezuela? Central Greece 0.666666666663 Where is Venezuela? -> $x: (venezuelum, be locate in, $x) -> (? Venezuela Camping, is located in, Central Greece) -> Central Greece (1865ms) Where is Venezuela? STATES 0.666666666663 Where is Venezuela? -> $x: (venezuelum, be locate in, $x) -> (venezuela, is a country located in the geopolitical location, STATES) -> STATES (1701ms) Where is Venezuela? Caracas 0.666666666663 Where is Venezuela? -> $x: (venezuelum, be locate in, $x) -> (Venezuela?s major cultural institutions, are located in, Caracas) -> Caracas (3027ms) Where is Venezuela? the north 0.666666666663 Where is Venezuela? -> $x: (venezuelum, be locate in, $x) -> (Venezuela, is located in, the north) -> the north (1865ms) Where is Venezuela? Thanksgiving 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, does n?t celebrate, Thanksgiving) -> Thanksgiving (5101ms) Where is Venezuela? retirement allowances 0.555555555554 Where is Venezuela? -> $x: ($x, produce, venezuelum) -> (retirement allowances, produced outside, Venezuela) -> retirement allowances (3817ms) Where is Venezuela? fears 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela?s Hugo Ch?vez, so do, fears) -> fears (5088ms) Where is Venezuela? a few of it 's personnel 0.555555555554 Where is Venezuela? -> $x: ($x, kill, venezuelum) -> (a few of it 's personnel, were killed by, Venezuela) -> a few of it 's personnel (4503ms) Where is Venezuela? 2009 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (2009, went on to, Venezuela) -> 2009 (5224ms) Where is Venezuela? the damage 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (the damage, done to, Venezuela) -> the damage (4910ms) Where is Venezuela? Maracay 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Maracay, Contained by, Venezuela) -> Maracay (4562ms) Where is Venezuela? El Guapo, Miranda State 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (El Guapo, Miranda State, Contained by, Venezuela) -> El Guapo, Miranda State (4987ms) Where is Venezuela? let?s 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (let?s, go back again to, Venezuela) -> let?s (4503ms) Where is Venezuela? one recommendation 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (one recommendation, Go to, Venezuela) -> one recommendation (4910ms) Where is Venezuela? Colegio Internacional de Caracas 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Colegio Internacional de Caracas, Contained by, Venezuela) -> Colegio Internacional de Caracas (3715ms) Where is Venezuela? n?t deregulate 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, did, n?t deregulate) -> n?t deregulate (4603ms) Where is Venezuela? The U.S. 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (The U.S., is attempting to do in, Venezuela) -> The U.S. (5088ms) Where is Venezuela? music 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (music, is happening in, Venezuela) -> music (5046ms) Where is Venezuela? price subsidies 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, has done with, price subsidies) -> price subsidies (4941ms) Where is Venezuela? Zambrano 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (Zambrano, had gone home to, Venezuela) -> Zambrano (5060ms) Where is Venezuela? Emerald Toucanets 0.555555555554 Where is Venezuela? -> $x: ($x, find, venezuelum) -> (Emerald Toucanets, are found in, Venezuela) -> Emerald Toucanets (5250ms) Where is Venezuela? Josefa Camejo Airport 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Josefa Camejo Airport, Contained by, Venezuela) -> Josefa Camejo Airport (4926ms) Where is Venezuela? governments 0.555555555554 Where is Venezuela? -> $x: ($x, inspired, venezuelum) -> (governments, are inspired by, Venezuela) -> governments (5250ms) Where is Venezuela? Linux 0.555555555554 Where is Venezuela? -> $x: ($x, develop, venezuelum) -> (Linux, developed in, Venezuela) -> Linux (4957ms) Where is Venezuela? Universidad Tecnol?gica del Centro, main campus 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Universidad Tecnol?gica del Centro, main campus, Contained by, Venezuela) -> Universidad Tecnol?gica del Centro, main campus (5242ms) Where is Venezuela? Cuquenan Falls 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Cuquenan Falls, Contained by, Venezuela) -> Cuquenan Falls (4842ms) Where is Venezuela? Sucre, Venezuela 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Sucre, Venezuela, Contained by, Venezuela) -> Sucre, Venezuela (5224ms) Where is Venezuela? The Wall Street Journal 0.555555555554 Where is Venezuela? -> $x: ($x, describe, venezuelum) -> (The Wall Street Journal, described, Venezuela and Chavez) -> The Wall Street Journal (4825ms) Where is Venezuela? South America--Nuevo Toledo--was 0.555555555554 Where is Venezuela? -> $x: ($x, establish, venezuelum) -> (South America--Nuevo Toledo--was, established in, Venezuela) -> South America--Nuevo Toledo--was (4926ms) Where is Venezuela? place 0.555555555554 Where is Venezuela? -> $x: ($x, inspire, venezuelum) -> (place, is inspired by, Venezuela ?s communal councils) -> place (4719ms) Where is Venezuela? deployable WMDs 0.555555555554 Where is Venezuela? -> $x: ($x, create, venezuelum) -> (deployable WMDs, create the threat of, a nuclear armed Venezuela) -> deployable WMDs (3637ms) Where is Venezuela? a group 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (a group, could go to, Venezuela) -> a group (4644ms) Where is Venezuela? the seed 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the seed, is happening today in, Venezuela) -> the seed (4755ms) Where is Venezuela? free-trade agreements 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela ?, did n?t like, free-trade agreements) -> free-trade agreements (5060ms) Where is Venezuela? the nature 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the nature, is happening in, Venezuela) -> the nature (5060ms) Where is Venezuela? Citgo 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (Citgo, goes primarily to, Venezuela) -> Citgo (5017ms) Where is Venezuela? the BBC 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the BBC, happens in, Venezuela) -> the BBC (5147ms) Where is Venezuela? reality 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, has little to do with, reality) -> reality (5197ms) Where is Venezuela? the U.S. 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, has done to, the U.S.) -> the U.S. (4773ms) Where is Venezuela? the slogan 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (the slogan, went in, Venezuela) -> the slogan (4623ms) Where is Venezuela? the Roraima formation 0.555555555554 Where is Venezuela? -> $x: ($x, found, venezuelum) -> (the Roraima formation, are found in, Venezuela or Guyana) -> the Roraima formation (5101ms) Where is Venezuela? San Casimiro Municipality 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (San Casimiro Municipality, Contained by, Venezuela) -> San Casimiro Municipality (5147ms) Where is Venezuela? Miss Venezuela 1992 0.555555555554 Where is Venezuela? -> $x: ($x, event, venezuelum) -> (Miss Venezuela 1992, Instance of recurring event, Miss Venezuela) -> Miss Venezuela 1992 (5167ms) Where is Venezuela? Islamic radicals 0.555555555554 Where is Venezuela? -> $x: ($x, develop, venezuelum) -> (Islamic radicals, is developing in, Venezuela) -> Islamic radicals (4737ms) Where is Venezuela? Efrain Valles 0.555555555554 Where is Venezuela? -> $x: ($x, introduce, venezuelum) -> (Efrain Valles, introduced to, the Venezuela LoCo Team) -> Efrain Valles (5242ms) Where is Venezuela? more than 60 persons 0.555555555554 Where is Venezuela? -> $x: ($x, kill, venezuelum) -> (more than 60 persons, killed every weekend in, Venezuela) -> more than 60 persons (4541ms) Where is Venezuela? any supposed reduction 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, has nothing to do with, any supposed reduction) -> any supposed reduction (5250ms) Where is Venezuela? Fortis 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (Fortis, went to, Venezuela) -> Fortis (4972ms) Where is Venezuela? calm and normalcy 0.555555555554 Where is Venezuela? -> $x: ($x, establish, venezuelum) -> (calm and normalcy, were established in, Venezuela) -> calm and normalcy (4755ms) Where is Venezuela? Portuguesa, Venezuela 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Portuguesa, Venezuela, Contained by, Venezuela) -> Portuguesa, Venezuela (5126ms) Where is Venezuela? Hugo 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, did, Hugo) -> Hugo (4826ms) Where is Venezuela? the countries 0.555555555554 Where is Venezuela? -> $x: ($x, surround, venezuelum) -> (the countries, surrounding, Venezuela) -> the countries (4941ms) Where is Venezuela? a democratically elected President 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, does have, a democratically elected President) -> a democratically elected President (4562ms) Where is Venezuela? first hand accounts 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (first hand accounts, happened in, Venezuela) -> first hand accounts (5088ms) Where is Venezuela? Amazonas, Venezuela 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Amazonas, Venezuela, Contained by, Venezuela) -> Amazonas, Venezuela (4910ms) Where is Venezuela? Petare 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Petare, Contained by, Venezuela) -> Petare (5233ms) Where is Venezuela? The idea 0.555555555554 Where is Venezuela? -> $x: ($x, fund, venezuelum) -> (The idea, is being largely funded with, Venezuela?s oil money) -> The idea (4623ms) Where is Venezuela? transiting Pluto 0.555555555554 Where is Venezuela? -> $x: ($x, dance, venezuelum) -> (transiting Pluto, begins a dance with, Venezuela) -> transiting Pluto (5224ms) Where is Venezuela? mobilizing armed forces 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (mobilizing armed forces, go to to, Venezuela) -> mobilizing armed forces (5250ms) Where is Venezuela? the oil industry 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (the oil industry, did enormous damage to, Venezuela) -> the oil industry (4755ms) Where is Venezuela? A missionary recruit 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (A missionary recruit, goes to, Venezuela) -> A missionary recruit (5215ms) Where is Venezuela? Caracas Athenaeum 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Caracas Athenaeum, Contained by, Venezuela) -> Caracas Athenaeum (5187ms) Where is Venezuela? the highest mobile penetration rates 0.555555555554 Where is Venezuela? -> $x: ($x, find, venezuelum) -> (the highest mobile penetration rates, can be found in, Venezuela) -> the highest mobile penetration rates (5224ms) Where is Venezuela? Such evidence 0.555555555554 Where is Venezuela? -> $x: ($x, help, venezuelum) -> (Such evidence, will help motivate, Venezuela) -> Such evidence (4541ms) Where is Venezuela? law 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, are required to do by, law) -> law (5233ms) Where is Venezuela? interest 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (interest, is happening in, Venezuela) -> interest (5197ms) Where is Venezuela? note 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (note, is happening in, Venezuela) -> note (5101ms) Where is Venezuela? Ve 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (Ve, do visas vor, VENEZUELA) -> Ve (4603ms) Where is Venezuela? summon United Nations 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (summon United Nations, is happening in, Venezuela) -> summon United Nations (4701ms) Where is Venezuela? the james 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (venezuela rock and rap confidential, do, the james) -> the james (3715ms) Where is Venezuela? just look 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (just look, is doing in, Venezuela) -> just look (4503ms) Where is Venezuela? venezuela national football team 0.555555555554 Where is Venezuela? -> $x: ($x, found, venezuelum) -> (venezuela national football team, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Venezuela%20national%20football%20team) -> venezuela national football team (5017ms) Where is Venezuela? gold 0.555555555554 Where is Venezuela? -> $x: ($x, produce, venezuelum) -> (gold, produced in, Venezuela) -> gold (4541ms) Where is Venezuela? commodity quality cacao beans 0.555555555554 Where is Venezuela? -> $x: ($x, found, venezuelum) -> (commodity quality cacao beans, found in, Venezuela) -> commodity quality cacao beans (5167ms) Where is Venezuela? the FARC 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, has been doing with, the FARC) -> the FARC (4624ms) Where is Venezuela? a sense 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (a sense, is going on in, Venezuela) -> a sense (4876ms) Where is Venezuela? the programmatic choices 0.555555555554 Where is Venezuela? -> $x: ($x, inspired, venezuelum) -> (the programmatic choices, were inspired by, Venezuela) -> the programmatic choices (4957ms) Where is Venezuela? England 0.555555555554 Where is Venezuela? -> $x: ($x, help, venezuelum) -> (England, should help her to, collect debts from Venezuela) -> England (5206ms) Where is Venezuela? Nasrallah 0.555555555554 Where is Venezuela? -> $x: ($x, establish, venezuelum) -> (Nasrallah, established major terrorist base in, Venezuela) -> Nasrallah (4910ms) Where is Venezuela? the formwork 0.555555555554 Where is Venezuela? -> $x: ($x, produce, venezuelum) -> (the formwork, produced in, Venezuela) -> the formwork (5177ms) Where is Venezuela? busy gaming 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (busy gaming, happens next in, Venezuela) -> busy gaming (4808ms) Where is Venezuela? miss venezuela 0.555555555554 Where is Venezuela? -> $x: ($x, found, venezuelum) -> (miss venezuela, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Miss%20Venezuela) -> miss venezuela (5197ms) Where is Venezuela? the Free Zone 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the Free Zone, happens in, Venezuela) -> the Free Zone (4892ms) Where is Venezuela? Makled 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (Makled, goes back to, Venezuela) -> Makled (5187ms) Where is Venezuela? research 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, claimed to have done, research) -> research (5101ms) Where is Venezuela? about 200 different wild types 0.555555555554 Where is Venezuela? -> $x: ($x, find, venezuelum) -> (about 200 different wild types, found from, Venezuela) -> about 200 different wild types (5242ms) Where is Venezuela? A closer look 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (A closer look, is happening in, Venezuela) -> A closer look (4701ms) Where is Venezuela? Ch?vez Abarca 0.555555555554 Where is Venezuela? -> $x: ($x, get, venezuelum) -> (Ch?vez Abarca, was trying to get into, Venezuela) -> Ch?vez Abarca (4941ms) Where is Venezuela? the situation 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, have to do in, the situation) -> the situation (4755ms) Where is Venezuela? Good ! Lets 0.555555555554 Where is Venezuela? -> $x: ($x, replace, venezuelum) -> (Good ! Lets, replace, Venezuela) -> Good ! Lets (4910ms) Where is Venezuela? socialism 0.555555555554 Where is Venezuela? -> $x: (venezuelum, have meaning of, $x) -> (Venezuela, has meant the return of, socialism) -> socialism (5215ms) Where is Venezuela? Money 0.555555555554 Where is Venezuela? -> $x: ($x, dance, venezuelum) -> (Money, is dancing in, Venezuela) -> Money (4644ms) Where is Venezuela? Mr Raby 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (Mr Raby, is happening in, Venezuela) -> Mr Raby (4719ms) Where is Venezuela? Stupendemys 0.555555555554 Where is Venezuela? -> $x: ($x, found, venezuelum) -> (Stupendemys, have been found in, Venezuela) -> Stupendemys (5002ms) Where is Venezuela? Trujillo, Venezuela 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Trujillo, Venezuela, Contained by, Venezuela) -> Trujillo, Venezuela (5177ms) Where is Venezuela? the oil 0.555555555554 Where is Venezuela? -> $x: ($x, produce, venezuelum) -> (the oil, produced by, Venezuela) -> the oil (4825ms) Where is Venezuela? Arkansas 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (Arkansas, has been doing business in, Venezuela) -> Arkansas (5224ms) Where is Venezuela? just exactly 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (just exactly, happened in, Venezuela) -> just exactly (4562ms) Where is Venezuela? U.S. oil workers 0.555555555554 Where is Venezuela? -> $x: ($x, introduce, venezuelum) -> (U.S. oil workers, introduced the sport to, Venezuela) -> U.S. oil workers (5017ms) Where is Venezuela? the same number 0.555555555554 Where is Venezuela? -> $x: ($x, kill, venezuelum) -> (the same number, were killed in, venezuela) -> the same number (4389ms) Where is Venezuela? anti-Chavez demonstrators 0.555555555554 Where is Venezuela? -> $x: ($x, kill, venezuelum) -> (anti-Chavez demonstrators, were killed in, Venezuela) -> anti-Chavez demonstrators (4737ms) Where is Venezuela? Perez 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (Perez, could have done for, Venezuela) -> Perez (5031ms) Where is Venezuela? the story 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Russia and Venezuela, does n?t change, the story) -> the story (5157ms) Where is Venezuela? the same 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the same, could happen in, Venezuela) -> the same (5224ms) Where is Venezuela? different degrees 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (different degrees, is happening in, Venezuela) -> different degrees (5136ms) Where is Venezuela? Maroa 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Maroa, Contained by, Venezuela) -> Maroa (4701ms) Where is Venezuela? the same way Ch?vez 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (the same way Ch?vez, did in, Venezuela) -> the same way Ch?vez (4957ms) Where is Venezuela? Mamporal 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Mamporal, Contained by, Venezuela) -> Mamporal (5074ms) Where is Venezuela? Monsanto 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (Monsanto, does continue to operate within, Venezuela) -> Monsanto (4987ms) Where is Venezuela? a spotlight 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (a spotlight, was happening in, Venezuela) -> a spotlight (4737ms) Where is Venezuela? Falc?n 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Falc?n, Contained by, Venezuela) -> Falc?n (4701ms) Where is Venezuela? Colegio Santa M?nica, main campus 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Colegio Santa M?nica, main campus, Contained by, Venezuela) -> Colegio Santa M?nica, main campus (5046ms) Where is Venezuela? The Bolivarian Circles 0.555555555554 Where is Venezuela? -> $x: ($x, create, venezuelum) -> (The Bolivarian Circles, were created in, Venezuela) -> The Bolivarian Circles (5147ms) Where is Venezuela? Gaddafi 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (Gaddafi, has gone to, Venezuela) -> Gaddafi (4737ms) Where is Venezuela? an updated localized version 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, likewise did, an updated localized version) -> an updated localized version (4842ms) Where is Venezuela? The coffee plant 0.555555555554 Where is Venezuela? -> $x: ($x, introduce, venezuelum) -> (The coffee plant, was introduced into, Venezuela) -> The coffee plant (4926ms) Where is Venezuela? n't this 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (n't this, does in, Venezuela) -> n't this (4826ms) Where is Venezuela? Maracaibo 0.555555555554 Where is Venezuela? -> $x: ($x, event, venezuelum) -> (Maracaibo, Events, Miss Venezuela 2010) -> Maracaibo (3638ms) Where is Venezuela? violence 0.555555555554 Where is Venezuela? -> $x: ($x, influence, venezuelum) -> (violence, influences politics in, Venezuela) -> violence (5046ms) Where is Venezuela? oil prices 0.555555555554 Where is Venezuela? -> $x: ($x, get, venezuelum) -> (oil prices, can get from, its oil-rich ally Venezuela) -> oil prices (4503ms) Where is Venezuela? Miss Venezuela 2006 0.555555555554 Where is Venezuela? -> $x: ($x, event, venezuelum) -> (Miss Venezuela 2006, Instance of recurring event, Miss Venezuela) -> Miss Venezuela 2006 (4941ms) Where is Venezuela? Harmony 0.555555555554 Where is Venezuela? -> $x: ($x, inspired, venezuelum) -> (Harmony, is inspired by, Venezuela?s El Sistema) -> Harmony (4910ms) Where is Venezuela? a proper marxist analysis 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (a proper marxist analysis, 's going on in, Venezuela) -> a proper marxist analysis (5031ms) Where is Venezuela? Bard 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (Bard, then went to, Venezuela) -> Bard (5157ms) Where is Venezuela? Posada 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (Posada, went from, Venezuela) -> Posada (4623ms) Where is Venezuela? a similar way 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (a similar way, did in, Venezuela) -> a similar way (4663ms) Where is Venezuela? The same 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (The same, is happening in, Venezuela) -> The same (5125ms) Where is Venezuela? Rice 0.555555555554 Where is Venezuela? -> $x: ($x, describe, venezuelum) -> (Rice, described, Venezuela) -> Rice (5197ms) Where is Venezuela? Nikolas Kozloff 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (Nikolas Kozloff, does, Venezuela) -> Nikolas Kozloff (5250ms) Where is Venezuela? the 1,300 bird species 0.555555555554 Where is Venezuela? -> $x: ($x, found, venezuelum) -> (the 1,300 bird species, found in, Venezuela) -> the 1,300 bird species (5242ms) Where is Venezuela? a world tour 0.555555555554 Where is Venezuela? -> $x: ($x, fight, venezuelum) -> (a world tour, fight in, Venezuela) -> a world tour (4941ms) Where is Venezuela? The U. S. 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (The U. S., went to, Venezuela) -> The U. S. (5126ms) Where is Venezuela? American news reports 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (American news reports, goes wrong in, Venezuela) -> American news reports (5115ms) Where is Venezuela? The communications media 0.555555555554 Where is Venezuela? -> $x: ($x, create, venezuelum) -> (The communications media, created, a fictitious Venezuela) -> The communications media (5136ms) Where is Venezuela? a placebo 0.555555555554 Where is Venezuela? -> $x: ($x, help, venezuelum) -> (a placebo, helped asthmatic children in, Venezuela) -> a placebo (4941ms) Where is Venezuela? a few years 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (a few years, is being done intensively in, Venezuela) -> a few years (5101ms) Where is Venezuela? Journalistic Pieces 0.555555555554 Where is Venezuela? -> $x: ($x, get, venezuelum) -> (Journalistic Pieces, To get, a journalistic feel for Venezuela) -> Journalistic Pieces (5187ms) Where is Venezuela? the Middle East 0.555555555554 Where is Venezuela? -> $x: ($x, discover, venezuelum) -> (the Middle East, were discovered in, Venezuela) -> the Middle East (4773ms) Where is Venezuela? an ALBA fund 0.555555555554 Where is Venezuela? -> $x: ($x, establish, venezuelum) -> (an ALBA fund, has been established by, Venezuela) -> an ALBA fund (4682ms) Where is Venezuela? an important debate 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (an important debate, is going on in, Venezuela) -> an important debate (4859ms) Where is Venezuela? A good number 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (A good number, went to, Venezuela) -> A good number (4910ms) Where is Venezuela? Universidad Rafael Urdaneta, main campus 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Universidad Rafael Urdaneta, main campus, Contained by, Venezuela) -> Universidad Rafael Urdaneta, main campus (5250ms) Where is Venezuela? The Reuters report 0.555555555554 Where is Venezuela? -> $x: ($x, create, venezuelum) -> (The Reuters report, created a crisis in, Venezuela) -> The Reuters report (3817ms) Where is Venezuela? Chile 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (Chile, tried to do in, Venezuela) -> Chile (5224ms) Where is Venezuela? energy 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, is capable of doing the same with, energy) -> energy (4987ms) Where is Venezuela? the official line 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the official line, had happened in, Venezuela) -> the official line (5157ms) Where is Venezuela? such songs 0.555555555554 Where is Venezuela? -> $x: ($x, found, venezuelum) -> (such songs, are also found in, southern Venezuela) -> such songs (5233ms) Where is Venezuela? several large cities 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, did take control of, several large cities) -> several large cities (5147ms) Where is Venezuela? The other leaders 0.555555555554 Where is Venezuela? -> $x: ($x, find, venezuelum) -> (The other leaders, allegedly found refuge in, Venezuela) -> The other leaders (4825ms) Where is Venezuela? Juan Arango 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, did pull a goal back through, Juan Arango) -> Juan Arango (5002ms) Where is Venezuela? They?ve 0.555555555554 Where is Venezuela? -> $x: ($x, get, venezuelum) -> (They?ve, got, Miss Venezuela) -> They?ve (5002ms) Where is Venezuela? Chavez 0.555555555554 Where is Venezuela? -> $x: ($x, fund, venezuelum) -> (Chavez, is funded mainly through, Venezuela) -> Chavez (5254ms) Where is Venezuela? James Weldon Johnson 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (James Weldon Johnson, went to, Venezuela) -> James Weldon Johnson (5074ms) Where is Venezuela? killings 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (killings, go unsolved in, Venezuela) -> killings (5177ms) Where is Venezuela? Ciego de ?vila Province 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Ciego de ?vila Province, Contains, Venezuela) -> Ciego de ?vila Province (4825ms) Where is Venezuela? different 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (different, has been happening in, Venezuela) -> different (5233ms) Where is Venezuela? the species 0.555555555554 Where is Venezuela? -> $x: ($x, find, venezuelum) -> (the species, found in, Venezuela) -> the species (5177ms) Where is Venezuela? any 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, will do as good as, any) -> any (5046ms) Where is Venezuela? Francisco de Miranda 0.555555555554 Where is Venezuela? -> $x: ($x, fight, venezuelum) -> (Francisco de Miranda, were already fighting in, Venezuela) -> Francisco de Miranda (4701ms) Where is Venezuela? God 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (God, has done in, Venezuela) -> God (5215ms) Where is Venezuela? the United States 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the United States, is really happening in, Venezuela) -> the United States (5224ms) Where is Venezuela? the ?Bolivarian Revolution 0.555555555554 Where is Venezuela? -> $x: ($x, describe, venezuelum) -> (the ?Bolivarian Revolution, has described, Venezuela) -> the ?Bolivarian Revolution (5115ms) Where is Venezuela? Manuel Ezequiel Bruzual Municipality 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Manuel Ezequiel Bruzual Municipality, Contained by, Venezuela) -> Manuel Ezequiel Bruzual Municipality (5136ms) Where is Venezuela? The Spanish Franciscan Missionaries 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (The Spanish Franciscan Missionaries, went to, Venezuela) -> The Spanish Franciscan Missionaries (4987ms) Where is Venezuela? vuelta_a_venezuela 0.555555555554 Where is Venezuela? -> $x: ($x, find, venezuelum) -> (vuelta_a_venezuela, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Vuelta%20a%20Venezuela) -> vuelta_a_venezuela (5177ms) Where is Venezuela? Hugo Chaves 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (Hugo Chaves, did in, Venezuela) -> Hugo Chaves (4808ms) Where is Venezuela? Puerto Rico 0.555555555554 Where is Venezuela? -> $x: ($x, establish, venezuelum) -> (Puerto Rico, was establishing a new branch in, Venezuela) -> Puerto Rico (4773ms) Where is Venezuela? Guanare 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Guanare, Contained by, Venezuela) -> Guanare (4892ms) Where is Venezuela? the mark 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the mark, has happened in, Venezuela) -> the mark (4562ms) Where is Venezuela? Belarus 0.555555555554 Where is Venezuela? -> $x: ($x, help, venezuelum) -> (Belarus, has been able to help, Venezuela) -> Belarus (4755ms) Where is Venezuela? nominate macrorhynchos 0.555555555554 Where is Venezuela? -> $x: ($x, describe, venezuelum) -> (nominate macrorhynchos, is described from, SE Venezuela) -> nominate macrorhynchos (4755ms) Where is Venezuela? Coffee 0.555555555554 Where is Venezuela? -> $x: ($x, produce, venezuelum) -> (Coffee, is domestically produced in, Venezuela) -> Coffee (5187ms) Where is Venezuela? President Hugo Chavez 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (President Hugo Chavez, recently did in, Venezuela) -> President Hugo Chavez (4682ms) Where is Venezuela? any economic liberalisation 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, did n?t see, any economic liberalisation) -> any economic liberalisation (4583ms) Where is Venezuela? Oil 0.555555555554 Where is Venezuela? -> $x: ($x, discover, venezuelum) -> (Oil, was discovered in, Venezuela) -> Oil (5250ms) Where is Venezuela? Peru 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (Peru, has done in, Venezuela) -> Peru (5115ms) Where is Venezuela? The Orinoco 0.555555555554 Where is Venezuela? -> $x: ($x, define, venezuelum) -> (The Orinoco, defines much of, Venezuela) -> The Orinoco (4737ms) Where is Venezuela? Oil sands 0.555555555554 Where is Venezuela? -> $x: ($x, found, venezuelum) -> (Oil sands, are found in, Canada and Venezuela) -> Oil sands (5206ms) Where is Venezuela? Vargas, Venezuela 0.555555555554 Where is Venezuela? -> $x: ($x, event, venezuelum) -> (Vargas, Venezuela, Events, Miss Venezuela 1983) -> Vargas, Venezuela (5224ms) Where is Venezuela? great enthusiasm Martin 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (great enthusiasm Martin, is happening in, Venezuela) -> great enthusiasm Martin (4926ms) Where is Venezuela? time 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (time, did nothing in, Venezuela) -> time (4583ms) Where is Venezuela? the surgery 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, can do half of, the surgery) -> the surgery (4603ms) Where is Venezuela? Guiria Airport 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Guiria Airport, Contained by, Venezuela) -> Guiria Airport (5060ms) Where is Venezuela? Four 0.555555555554 Where is Venezuela? -> $x: ($x, kill, venezuelum) -> (Four, were killed in, both Venezuela) -> Four (4972ms) Where is Venezuela? classical music 0.555555555554 Where is Venezuela? -> $x: ($x, help, venezuelum) -> (classical music, can help improve the lives of, Venezuela) -> classical music (5167ms) Where is Venezuela? Jonny 0.555555555554 Where is Venezuela? -> $x: ($x, happen to, venezuelum) -> (Jonny, also happens to be from, Venezuela) -> Jonny (4987ms) Where is Venezuela? the highest dropping waterfalls 0.555555555554 Where is Venezuela? -> $x: ($x, find, venezuelum) -> (the highest dropping waterfalls, is found in, Venezuela) -> the highest dropping waterfalls (4876ms) Where is Venezuela? Mr. Belafonte 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (Mr. Belafonte, went to, Venezuela) -> Mr. Belafonte (4876ms) Where is Venezuela? Assange 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (Assange, went to, Venezuela) -> Assange (4957ms) Where is Venezuela? a version 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (a version, happened in, Venezuela) -> a version (4957ms) Where is Venezuela? a democratically elected strongman 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, does have, a democratically elected strongman) -> a democratically elected strongman (5101ms) Where is Venezuela? Santa Barbara Del Zulia Airport 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Santa Barbara Del Zulia Airport, Contained by, Venezuela) -> Santa Barbara Del Zulia Airport (4791ms) Where is Venezuela? coverage 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, did get, coverage) -> coverage (4926ms) Where is Venezuela? Federal Pampatar government 0.555555555554 Where is Venezuela? -> $x: ($x, establish, venezuelum) -> (Federal Pampatar government, was established in, Venezuela) -> Federal Pampatar government (5115ms) Where is Venezuela? San Sebasti?n 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (San Sebasti?n, Contained by, Venezuela) -> San Sebasti?n (4910ms) Where is Venezuela? Jimmy Carter 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (Jimmy Carter, went to, Venezuela) -> Jimmy Carter (5125ms) Where is Venezuela? Polar 0.555555555554 Where is Venezuela? -> $x: ($x, produce, venezuelum) -> (Polar, produces many of, Venezuela) -> Polar (4562ms) Where is Venezuela? the menial work 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, did most of, the menial work) -> the menial work (4663ms) Where is Venezuela? heavy crude 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, does produce mostly, heavy crude) -> heavy crude (5074ms) Where is Venezuela? family members 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (family members, was going on in, Venezuela) -> family members (4941ms) Where is Venezuela? Defense 0.555555555554 Where is Venezuela? -> $x: ($x, get, venezuelum) -> (Defense, got from, Venezuela) -> Defense (4892ms) Where is Venezuela? Matur?n Airport 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Matur?n Airport, Contained by, Venezuela) -> Matur?n Airport (5115ms) Where is Venezuela? Maestro Abreu 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (Maestro Abreu, did in, Venezuela?) -> Maestro Abreu (4826ms) Where is Venezuela? The same man 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (The same man, went to, Venezuela) -> The same man (5215ms) Where is Venezuela? Chuao 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Chuao, Contained by, Venezuela) -> Chuao (4808ms) Where is Venezuela? the opposition leadership 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (the opposition leadership, is going on in, Venezuela) -> the opposition leadership (4583ms) Where is Venezuela? a touch 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (a touch, started doing funny things to, Venezuela) -> a touch (4701ms) Where is Venezuela? responsibility 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (responsibility, is happening in, Venezuela) -> responsibility (5002ms) Where is Venezuela? a communist country 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (a communist country, happened in, VENEZUELA) -> a communist country (5242ms) Where is Venezuela? Centro Sambil 0.555555555554 Where is Venezuela? -> $x: ($x, event, venezuelum) -> (Centro Sambil, Events, Miss Earth Venezuela 2007) -> Centro Sambil (5233ms) Where is Venezuela? iceberg 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (iceberg, does, Miss Venezuela) -> iceberg (4623ms) Where is Venezuela? San Carlos 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (San Carlos, Contained by, Venezuela) -> San Carlos (4643ms) Where is Venezuela? such oil 0.555555555554 Where is Venezuela? -> $x: ($x, produce, venezuelum) -> (such oil, produced in, Canada and Venezuela) -> such oil (4663ms) Where is Venezuela? Brownfield 0.555555555554 Where is Venezuela? -> $x: ($x, help, venezuelum) -> (Brownfield, had offered to help, Venezuela) -> Brownfield (4737ms) Where is Venezuela? Josefa Camejo International Airport 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Josefa Camejo International Airport, Contained by, Venezuela) -> Josefa Camejo International Airport (4285ms) Where is Venezuela? 2006 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, did so in, 2006) -> 2006 (4583ms) Where is Venezuela? El Dorado Airport 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (El Dorado Airport, Contained by, Venezuela) -> El Dorado Airport (4957ms) Where is Venezuela? Kay 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (Kay, could have gone to, Venezuela) -> Kay (4682ms) Where is Venezuela? discuss 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (discuss, 's happening in, Venezuela) -> discuss (5060ms) Where is Venezuela? an exciting 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, did a nice job of having, an exciting) -> an exciting (4859ms) Where is Venezuela? communist party of venezuela 0.555555555554 Where is Venezuela? -> $x: ($x, find, venezuelum) -> (communist party of venezuela, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Communist%20Party%20of%20Venezuela) -> communist party of venezuela (5215ms) Where is Venezuela? Puerto la Cruz 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Puerto la Cruz, Contained by, Venezuela) -> Puerto la Cruz (4791ms) Where is Venezuela? Palestinian officials 0.555555555554 Where is Venezuela? -> $x: ($x, establish, venezuelum) -> (Palestinian officials, established formal ties with, Venezuela) -> Palestinian officials (4644ms) Where is Venezuela? Caricuao 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Caricuao, Contained by, Venezuela) -> Caricuao (5167ms) Where is Venezuela? leaders 0.555555555554 Where is Venezuela? -> $x: ($x, found, venezuelum) -> (leaders, found in, Venezuela) -> leaders (4808ms) Where is Venezuela? Orlando A. Naranjo 0.555555555554 Where is Venezuela? -> $x: ($x, discover, venezuelum) -> (Orlando A. Naranjo, Astronomical objects discovered, 9357 Venezuela) -> Orlando A. Naranjo (5147ms) Where is Venezuela? the opposite 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, do just, the opposite) -> the opposite (5233ms) Where is Venezuela? the perception 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, has a bit to do with, the perception) -> the perception (4755ms) Where is Venezuela? an up-to-date analysis 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (an up-to-date analysis, is happening in, Venezuela) -> an up-to-date analysis (4825ms) Where is Venezuela? Oil revenue 0.555555555554 Where is Venezuela? -> $x: ($x, help, venezuelum) -> (Oil revenue, has helped, Venezuela) -> Oil revenue (5187ms) Where is Venezuela? the agreement 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, did ratify, the agreement) -> the agreement (5167ms) Where is Venezuela? Universidad Nacional Experimental del T?chira 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Universidad Nacional Experimental del T?chira, Contained by, Venezuela) -> Universidad Nacional Experimental del T?chira (5147ms) Where is Venezuela? HRW 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (HRW, did a similar hatchet job on, Venezuela) -> HRW (4755ms) Where is Venezuela? the same natives 0.555555555554 Where is Venezuela? -> $x: ($x, found, venezuelum) -> (the same natives, found today in, Guyana and Venezuela) -> the same natives (4926ms) Where is Venezuela? Russia 0.555555555554 Where is Venezuela? -> $x: ($x, help, venezuelum) -> (Russia, has agreed to help, Venezuela) -> Russia (4755ms) Where is Venezuela? Sabaneta 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Sabaneta, Contained by, Venezuela) -> Sabaneta (4957ms) Where is Venezuela? possible 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (possible, is happening in, Venezuela) -> possible (4987ms) Where is Venezuela? Hugo Chavez 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (Hugo Chavez, is doing in, Venezuela) -> Hugo Chavez (5262ms) Where is Venezuela? The Citgo sign 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (The Citgo sign, has nothing to do with, Venezuela) -> The Citgo sign (5215ms) Where is Venezuela? Universidad Metropolitana 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Universidad Metropolitana, Contained by, Venezuela) -> Universidad Metropolitana (4791ms) Where is Venezuela? the oil companies 0.555555555554 Where is Venezuela? -> $x: ($x, get, venezuelum) -> (the oil companies, would get back into, Venezuela) -> the oil companies (5046ms) Where is Venezuela? a law one 0.555555555554 Where is Venezuela? -> $x: ($x, find, venezuelum) -> (a law one, would expect to find in, Hugo Chavez?s Venezuela) -> a law one (5206ms) Where is Venezuela? an interest 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (an interest, is going on in, Venezuela) -> an interest (4623ms) Where is Venezuela? import 0.555555555554 Where is Venezuela? -> $x: ($x, produce, venezuelum) -> (import, is n?t produced in, Venezuela) -> import (5031ms) Where is Venezuela? The second cruise 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (The second cruise, went to, Venezuela) -> The second cruise (4987ms) Where is Venezuela? the helmuts 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (the helmuts, were going to, Venezuela) -> the helmuts (4682ms) Where is Venezuela? the plate 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, did get an out at, the plate) -> the plate (5167ms) Where is Venezuela? an exceedingly idealistic idea 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (an exceedingly idealistic idea, was happening in, Venezuela) -> an exceedingly idealistic idea (5101ms) Where is Venezuela? Roger 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (Roger, was doing volunteer work in, Venezuela) -> Roger (4663ms) Where is Venezuela? Universidad Ferm?n Toro, main campus 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Universidad Ferm?n Toro, main campus, Contained by, Venezuela) -> Universidad Ferm?n Toro, main campus (5060ms) Where is Venezuela? Human Rights 0.555555555554 Where is Venezuela? -> $x: ($x, find, venezuelum) -> (Human Rights, have repeatedly found, Venezuela responsible) -> Human Rights (5233ms) Where is Venezuela? streams 0.555555555554 Where is Venezuela? -> $x: ($x, kill, venezuelum) -> (streams, kill thousands in, Venezuela) -> streams (5125ms) Where is Venezuela? Bejuma Municipality 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Bejuma Municipality, Contained by, Venezuela) -> Bejuma Municipality (5250ms) Where is Venezuela? Hezbollah 0.555555555554 Where is Venezuela? -> $x: ($x, establish, venezuelum) -> (Hezbollah, have established bases in, Venezuela) -> Hezbollah (5017ms) Where is Venezuela? a full understanding 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (a full understanding, is happening in, Venezuela) -> a full understanding (5136ms) Where is Venezuela? Europe 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (Europe, is really happening in, Venezuela) -> Europe (5157ms) Where is Venezuela? the difficult economic situation 0.555555555554 Where is Venezuela? -> $x: ($x, develop, venezuelum) -> (the difficult economic situation, has developed in, Venezuela) -> the difficult economic situation (5157ms) Where is Venezuela? caudillismo 0.555555555554 Where is Venezuela? -> $x: (venezuelum, have history of, $x) -> (Venezuela, has a long history of, caudillismo) -> caudillismo (4682ms) Where is Venezuela? Info Venezuela 0.555555555554 Where is Venezuela? -> $x: ($x, find, venezuelum) -> (Info Venezuela, Find out more about, Venezuela) -> Info Venezuela (5017ms) Where is Venezuela? beautiful work 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, keep doing, beautiful work) -> beautiful work (5215ms) Where is Venezuela? Diplomatico rum 0.555555555554 Where is Venezuela? -> $x: ($x, produce, venezuelum) -> (Diplomatico rum, is produced in, Venezuela) -> Diplomatico rum (4808ms) Where is Venezuela? Universidad Arturo Michelena 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Universidad Arturo Michelena, Contained by, Venezuela) -> Universidad Arturo Michelena (5088ms) Where is Venezuela? a good idea 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, did n?t think is would be, a good idea) -> a good idea (4791ms) Where is Venezuela? the missing persons 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (the missing persons, eventually went back to, Venezuela) -> the missing persons (3715ms) Where is Venezuela? the Future Bring 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (the question ?Post Election Venezuela, Does, the Future Bring) -> the Future Bring (4773ms) Where is Venezuela? Mack 0.555555555554 Where is Venezuela? -> $x: ($x, introduce, venezuelum) -> (Mack, introduced another resolution calling for, Venezuela) -> Mack (4562ms) Where is Venezuela? politicians 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (politicians, do in, Venezuela) -> politicians (4876ms) Where is Venezuela? Compare that 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (Compare that, is happening in, Venezuela) -> Compare that (4808ms) Where is Venezuela? the Government 0.555555555554 Where is Venezuela? -> $x: ($x, introduce, venezuelum) -> (the Government, introduced into, Venezuela) -> the Government (4876ms) Where is Venezuela? Brazil and Chile 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, do better than, Brazil and Chile) -> Brazil and Chile (4285ms) Where is Venezuela? Toitico Tuyo 0.555555555554 Where is Venezuela? -> $x: ($x, produce, venezuelum) -> (Toitico Tuyo, produced in, Venezuela , Colombia and Puerto Rico) -> Toitico Tuyo (4926ms) Where is Venezuela? October 12 Columbus Day 0.555555555554 Where is Venezuela? -> $x: (venezuelum, have name of, $x) -> (Venezuela, have changed the name of, October 12 Columbus Day) -> October 12 Columbus Day (4892ms) Where is Venezuela? sense 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (sense, is happening in, Venezuela) -> sense (5197ms) Where is Venezuela? the transplant 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, do, the transplant) -> the transplant (5187ms) Where is Venezuela? Cerro Marahuaca 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Cerro Marahuaca, Contained by, Venezuela) -> Cerro Marahuaca (5046ms) Where is Venezuela? air 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, may be done by, air) -> air (4791ms) Where is Venezuela? Land Cruisers 0.555555555554 Where is Venezuela? -> $x: ($x, found, venezuelum) -> (Land Cruisers, quickly found their way to, Venezuela) -> Land Cruisers (5074ms) Where is Venezuela? mines 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (mines, went to, Venezuela) -> mines (4859ms) Where is Venezuela? the capability 0.555555555554 Where is Venezuela? -> $x: ($x, find, venezuelum) -> (the capability, found in, Venezuela) -> the capability (5242ms) Where is Venezuela? Bombardment of Fort San Carlos 0.555555555554 Where is Venezuela? -> $x: ($x, event, venezuelum) -> (Bombardment of Fort San Carlos, Included in event, Venezuela Crisis of 1902?1903) -> Bombardment of Fort San Carlos (4825ms) Where is Venezuela? an exploring expedition 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (an exploring expedition, later went to, Venezuela) -> an exploring expedition (4842ms) Where is Venezuela? Zelaya 0.555555555554 Where is Venezuela? -> $x: ($x, help, venezuelum) -> (Zelaya, may have had help from, Venezuela) -> Zelaya (5017ms) Where is Venezuela? Estadio Agust?n Tovar 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Estadio Agust?n Tovar, Contained by, Venezuela) -> Estadio Agust?n Tovar (5215ms) Where is Venezuela? Ca?o Central 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Ca?o Central, Contained by, Venezuela) -> Ca?o Central (5250ms) Where is Venezuela? events 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (events, is happening in, Venezuela) -> events (4663ms) Where is Venezuela? Americas 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Americas, Contains, Venezuela) -> Americas (5136ms) Where is Venezuela? a speech 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (a speech, is happening in, Venezuela) -> a speech (4285ms) Where is Venezuela? average 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, has done worse than, average) -> average (5206ms) Where is Venezuela? the official story 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the official story, happened in, Venezuela) -> the official story (4562ms) Where is Venezuela? an Iowa audience 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (an Iowa audience, is going wrong in, Venezuela) -> an Iowa audience (4643ms) Where is Venezuela? the continent 0.555555555554 Where is Venezuela? -> $x: ($x, discover, venezuelum) -> (the continent, were also discovered in, Venezuela and Peru) -> the continent (5187ms) Where is Venezuela? Charity 0.555555555554 Where is Venezuela? -> $x: ($x, establish, venezuelum) -> (Charity, established in, Venezuela) -> Charity (5136ms) Where is Venezuela? 2009 Mack 0.555555555554 Where is Venezuela? -> $x: ($x, introduce, venezuelum) -> (2009 Mack, introduced another resolution calling for, Venezuela) -> 2009 Mack (4603ms) Where is Venezuela? Dengue fever 0.555555555554 Where is Venezuela? -> $x: ($x, kill, venezuelum) -> (Dengue fever, killed 40 people in, Venezuela) -> Dengue fever (4926ms) Where is Venezuela? hostile policies 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, did surprisingly well despite, hostile policies) -> hostile policies (3027ms) Where is Venezuela? Gonzalez 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (Gonzalez, went back to, Venezuela) -> Gonzalez (4644ms) Where is Venezuela? Wilson Ramos 0.555555555554 Where is Venezuela? -> $x: ($x, found, venezuelum) -> (Wilson Ramos, found safe in, Venezuela) -> Wilson Ramos (5046ms) Where is Venezuela? 4000 0.555555555554 Where is Venezuela? -> $x: ($x, kill, venezuelum) -> (4000, were killed in, Venezuela) -> 4000 (5136ms) Where is Venezuela? reference 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (reference, is happening in, Venezuela) -> reference (4876ms) Where is Venezuela? Iran 0.555555555554 Where is Venezuela? -> $x: ($x, get, venezuelum) -> (Iran, has gotten very cozy with, Venezuela) -> Iran (5115ms) Where is Venezuela? Tanzanian honey taste 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, does, Tanzanian honey taste) -> Tanzanian honey taste (5088ms) Where is Venezuela? the list 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (the list, do require visas to visit, Venezuela) -> the list (5101ms) Where is Venezuela? return Cuba 0.555555555554 Where is Venezuela? -> $x: ($x, get, venezuelum) -> (return Cuba, gets vital oil cheaply from, Venezuela) -> return Cuba (5088ms) Where is Venezuela? the WSF 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (the WSF, is going on in, Venezuela) -> the WSF (4541ms) Where is Venezuela? Christian 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (Christian, went to, Venezuela) -> Christian (5136ms) Where is Venezuela? Miss Venezuela 2004 0.555555555554 Where is Venezuela? -> $x: ($x, event, venezuelum) -> (Miss Venezuela 2004, Instance of recurring event, Miss Venezuela) -> Miss Venezuela 2004 (5046ms) Where is Venezuela? Literary tradition 0.555555555554 Where is Venezuela? -> $x: ($x, establish, venezuelum) -> (Literary tradition, became established in, Venezuela) -> Literary tradition (4876ms) Where is Venezuela? Britain 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (Britain, is happening in, Venezuela) -> Britain (4701ms) Where is Venezuela? 24 March television 0.555555555554 Where is Venezuela? -> $x: ($x, discover, venezuelum) -> (24 March television, suddenly discovered, a Venezuela) -> 24 March television (4842ms) Where is Venezuela? the truth 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the truth, is happening in, Venezuela?) -> the truth (5060ms) Where is Venezuela? each year 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (each year, goes through, Venezuela) -> each year (4825ms) Where is Venezuela? Brazil 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, did considerably better than, Brazil) -> Brazil (4503ms) Where is Venezuela? the region 0.555555555554 Where is Venezuela? -> $x: ($x, help, venezuelum) -> (the region, help, Venezuela) -> the region (5125ms) Where is Venezuela? education 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, has done so much for, education) -> education (5046ms) Where is Venezuela? Borders 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (Borders, did issue a new report on, Venezuela) -> Borders (4791ms) Where is Venezuela? the significance and meaning 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the significance and meaning, was happening in, Venezuela) -> the significance and meaning (4957ms) Where is Venezuela? Miss Venezuela 2008 0.555555555554 Where is Venezuela? -> $x: ($x, event, venezuelum) -> (Miss Venezuela 2008, Instance of recurring event, Miss Venezuela) -> Miss Venezuela 2008 (4808ms) Where is Venezuela? a clear understanding 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (a clear understanding, 's going on in, venezuela) -> a clear understanding (4737ms) Where is Venezuela? questions 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (questions, was going on in, Venezuela) -> questions (5147ms) Where is Venezuela? Halliburton 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (Halliburton, has done business in, Venezuela) -> Halliburton (4583ms) Where is Venezuela? oil 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, does on, oil) -> oil (5242ms) Where is Venezuela? various animals 0.555555555554 Where is Venezuela? -> $x: ($x, find, venezuelum) -> (various animals, found, quick-frozen Venezuela) -> various animals (5177ms) Where is Venezuela? Addenum 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (Addenum, Did, Venezuela) -> Addenum (5126ms) Where is Venezuela? The Catholic Church 0.555555555554 Where is Venezuela? -> $x: ($x, influence, venezuelum) -> (The Catholic Church, still wields influence in, Venezuela) -> The Catholic Church (3817ms) Where is Venezuela? Judo 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, started doing, Judo) -> Judo (4808ms) Where is Venezuela? World Cup qualifying 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, has done well to start, World Cup qualifying) -> World Cup qualifying (4644ms) Where is Venezuela? L & L International 0.555555555554 Where is Venezuela? -> $x: ($x, found, venezuelum) -> (L & L International, find, VenezuelaUsed Aircraft) -> L & L International (5177ms) Where is Venezuela? concerned Colombian rebels 0.555555555554 Where is Venezuela? -> $x: ($x, find, venezuelum) -> (concerned Colombian rebels, are finding refuge in, Venezuela) -> concerned Colombian rebels (5060ms) Where is Venezuela? Arcacha 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (Arcacha, went to, Venezuela) -> Arcacha (4876ms) Where is Venezuela? Walter E. Rollins 0.555555555554 Where is Venezuela? -> $x: ($x, produce, venezuelum) -> (Walter E. Rollins, Tracks produced, Venezuela) -> Walter E. Rollins (3817ms) Where is Venezuela? China 0.555555555554 Where is Venezuela? -> $x: ($x, develop, venezuelum) -> (China, also committed to develop, Venezuela) -> China (5167ms) Where is Venezuela? a jeweler 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (a jeweler, goes to, Venezuela) -> a jeweler (5017ms) Where is Venezuela? dollars 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, has already done billions of, dollars) -> dollars (4957ms) Where is Venezuela? the corollary 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, did n?t listen to, the corollary) -> the corollary (5031ms) Where is Venezuela? an excellent introduction 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (an excellent introduction, is happening today in, Venezuela) -> an excellent introduction (4957ms) Where is Venezuela? Carora Airport 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Carora Airport, Contained by, Venezuela) -> Carora Airport (5088ms) Where is Venezuela? Calabozo 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Calabozo, Contained by, Venezuela) -> Calabozo (4808ms) Where is Venezuela? San Antonio del T?chira 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (San Antonio del T?chira, Contained by, Venezuela) -> San Antonio del T?chira (4926ms) Where is Venezuela? Coca-Cola 0.555555555554 Where is Venezuela? -> $x: ($x, happen to, venezuelum) -> (Coca-Cola, just happens to be owner of, Venezuela) -> Coca-Cola (5147ms) Where is Venezuela? 1796 Hacienda Santa Teresa 0.555555555554 Where is Venezuela? -> $x: ($x, produce, venezuelum) -> (1796 Hacienda Santa Teresa, began producing, rum in Venezuela) -> 1796 Hacienda Santa Teresa (4941ms) Where is Venezuela? the events 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (the events, have nothing to do with, Venezuela) -> the events (5233ms) Where is Venezuela? Harper 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (Harper, could go to, Venezuela) -> Harper (4926ms) Where is Venezuela? Franklin Barreto 0.555555555554 Where is Venezuela? -> $x: ($x, get, venezuelum) -> (Franklin Barreto, got, Venezuela) -> Franklin Barreto (5074ms) Where is Venezuela? MAN Oil 0.555555555554 Where is Venezuela? -> $x: ($x, discover, venezuelum) -> (MAN Oil, was first discovered in, northwestern Venezuela) -> MAN Oil (5147ms) Where is Venezuela? The Andean Condor 0.555555555554 Where is Venezuela? -> $x: ($x, found, venezuelum) -> (The Andean Condor, can be found in, Venezuela) -> The Andean Condor (5197ms) Where is Venezuela? several developing nations 0.555555555554 Where is Venezuela? -> $x: ($x, get, venezuelum) -> (several developing nations, get cheap oil from, Venezuela) -> several developing nations (5167ms) Where is Venezuela? Connie Mack 0.555555555554 Where is Venezuela? -> $x: ($x, introduce, venezuelum) -> (Connie Mack, introduced a resolution calling for, Venezuela) -> Connie Mack (5224ms) Where is Venezuela? The vast majority 0.555555555554 Where is Venezuela? -> $x: ($x, found, venezuelum) -> (The vast majority, is found in, Canada and Venezuela) -> The vast majority (5206ms) Where is Venezuela? Clarines 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Clarines, Contained by, Venezuela) -> Clarines (5157ms) Where is Venezuela? oil sands 0.555555555554 Where is Venezuela? -> $x: ($x, produce, venezuelum) -> (oil sands, is produced in, Venezuela) -> oil sands (5115ms) Where is Venezuela? amethystinus 0.555555555554 Where is Venezuela? -> $x: ($x, found, venezuelum) -> (amethystinus, is found in, Venezuela) -> amethystinus (5233ms) Where is Venezuela? simply Vietnam 0.555555555554 Where is Venezuela? -> $x: ($x, replace, venezuelum) -> (simply Vietnam, has been replaced by, Venezuela or Afghanistan) -> simply Vietnam (4562ms) Where is Venezuela? Ciudad Losada 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Ciudad Losada, Contained by, Venezuela) -> Ciudad Losada (4987ms) Where is Venezuela? ?The majors 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (?The majors, went to, Venezuela) -> ?The majors (4719ms) Where is Venezuela? Latin America 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (Latin America, is happening in, Venezuela) -> Latin America (5125ms) Where is Venezuela? Roman coins 0.555555555554 Where is Venezuela? -> $x: ($x, find, venezuelum) -> (Roman coins, have been found in, Venezuela and Maine) -> Roman coins (5206ms) Where is Venezuela? a society 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, can do for, a society) -> a society (3817ms) Where is Venezuela? A new climbing catfish 0.555555555554 Where is Venezuela? -> $x: ($x, describe, venezuelum) -> (A new climbing catfish, has been described from, Venezuela) -> A new climbing catfish (5206ms) Where is Venezuela? America 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (America, has done in, Venezuela) -> America (4972ms) Where is Venezuela? Buenos Aires 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Buenos Aires, Contains, Venezuela) -> Buenos Aires (5167ms) Where is Venezuela? The coca financing plan 0.555555555554 Where is Venezuela? -> $x: ($x, help, venezuelum) -> (The coca financing plan, has helped, Venezuela) -> The coca financing plan (5031ms) Where is Venezuela? Australia 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (Australia, does, Haiti , Venezuela) -> Australia (5177ms) Where is Venezuela? The international community 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (The international community, goes on in, Venezuela) -> The international community (5242ms) Where is Venezuela? 50 % 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (50 %, just happened in, Venezuela) -> 50 % (5101ms) Where is Venezuela? Ch?vez 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (Ch?vez, has done in, Venezuela) -> Ch?vez (4562ms) Where is Venezuela? Mariara 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Mariara, Contained by, Venezuela) -> Mariara (5157ms) Where is Venezuela? Oscar 0.555555555554 Where is Venezuela? -> $x: ($x, produce, venezuelum) -> (Oscar, produced in, Venezuela , Colombia and Puerto Rico) -> Oscar (4755ms) Where is Venezuela? Vero and Nate 0.555555555554 Where is Venezuela? -> $x: ($x, get, venezuelum) -> (Vero and Nate, are getting married in, Venezuela) -> Vero and Nate (4773ms) Where is Venezuela? wont post 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (wont post, just do a quick google search on, Venezuela) -> wont post (5017ms) Where is Venezuela? The Bush regime 0.555555555554 Where is Venezuela? -> $x: ($x, fight, venezuelum) -> (The Bush regime, fights, Venezuela) -> The Bush regime (4623ms) Where is Venezuela? 13,985 people 0.555555555554 Where is Venezuela? -> $x: ($x, kill, venezuelum) -> (13,985 people, were killed in, Venezuela) -> 13,985 people (4737ms) Where is Venezuela? a full Mercosur member 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, did n?t become, a full Mercosur member) -> a full Mercosur member (4755ms) Where is Venezuela? the bodies of the three victims 0.555555555554 Where is Venezuela? -> $x: ($x, find, venezuelum) -> (the bodies of the three victims, were found in, Venezuela) -> the bodies of the three victims (5147ms) Where is Venezuela? university professor 0.555555555554 Where is Venezuela? -> $x: ($x, found, venezuelum) -> (university professor, can find a counterpart in, Venezuela) -> university professor (4957ms) Where is Venezuela? 200 0.555555555554 Where is Venezuela? -> $x: ($x, create, venezuelum) -> (200, have been created in, Venezuela) -> 200 (4910ms) Where is Venezuela? the state? 0.555555555554 Where is Venezuela? -> $x: ($x, define, venezuelum) -> (the state?, started to define, Venezuela?s oil policies) -> the state? (5136ms) Where is Venezuela? the economy 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the economy, happened in, Venezuela) -> the economy (4859ms) Where is Venezuela? Seattle 0.555555555554 Where is Venezuela? -> $x: ($x, get, venezuelum) -> (Seattle, then got dumped by, Venezuela 2-0) -> Seattle (4987ms) Where is Venezuela? 20,000 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (20,000, have gone to, Venezuela) -> 20,000 (4972ms) Where is Venezuela? behalf 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela and Iraq, is all done on, behalf) -> behalf (5147ms) Where is Venezuela? Taylor 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, has done well in, Taylor) -> Taylor (4987ms) Where is Venezuela? the legislative body 0.555555555554 Where is Venezuela? -> $x: ($x, help, venezuelum) -> (the legislative body, offers his help to, Venezuela) -> the legislative body (5187ms) Where is Venezuela? Nueva Cadiz 0.555555555554 Where is Venezuela? -> $x: ($x, establish, venezuelum) -> (Nueva Cadiz, was established in, Venezuela) -> Nueva Cadiz (4892ms) Where is Venezuela? Guatire 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Guatire, Contained by, Venezuela) -> Guatire (4737ms) Where is Venezuela? an apt metaphor 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (an apt metaphor, 's happening in, Venezuela) -> an apt metaphor (5115ms) Where is Venezuela? the community 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the community, is truly happening in, Venezuela) -> the community (4583ms) Where is Venezuela? Nueva Esparta 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Nueva Esparta, Contained by, Venezuela) -> Nueva Esparta (4876ms) Where is Venezuela? Lichen genus 0.555555555554 Where is Venezuela? -> $x: ($x, find, venezuelum) -> (Lichen genus, found in, Venezuela) -> Lichen genus (5206ms) Where is Venezuela? Bermuda 0.555555555554 Where is Venezuela? -> $x: ($x, find, venezuelum) -> (Bermuda, have been found overseas in, Venezuela) -> Bermuda (5242ms) Where is Venezuela? Puerto Miranda 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Puerto Miranda, Contained by, Venezuela) -> Puerto Miranda (4892ms) Where is Venezuela? The species 0.555555555554 Where is Venezuela? -> $x: ($x, find, venezuelum) -> (The species, is found in, Venezuela) -> The species (5002ms) Where is Venezuela? debate 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (debate, is going on in, Venezuela) -> debate (4859ms) Where is Venezuela? completely opposite images 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (completely opposite images, was going on in, Venezuela) -> completely opposite images (5250ms) Where is Venezuela? Reformed Catholic Church 0.555555555554 Where is Venezuela? -> $x: ($x, found, venezuelum) -> (Reformed Catholic Church, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Reformed%20Catholic%20Church%20(Venezuela)) -> Reformed Catholic Church (5074ms) Where is Venezuela? oppression 0.555555555554 Where is Venezuela? -> $x: (venezuelum, have history of, $x) -> (Colombia and Venezuela, have a similar history of, oppression) -> oppression (4808ms) Where is Venezuela? A new species 0.555555555554 Where is Venezuela? -> $x: ($x, describe, venezuelum) -> (A new species, is described from, Venezuela) -> A new species (5125ms) Where is Venezuela? Ojeda 0.555555555554 Where is Venezuela? -> $x: ($x, found, venezuelum) -> (Ojeda, finds, the Guinanas and Venezuela) -> Ojeda (5215ms) Where is Venezuela? several species 0.555555555554 Where is Venezuela? -> $x: ($x, find, venezuelum) -> (several species, found in, Venezuela) -> several species (5206ms) Where is Venezuela? sides less anti-American feelings 0.555555555554 Where is Venezuela? -> $x: ($x, develop, venezuelum) -> (sides less anti-American feelings, should develop in, Venezuela) -> sides less anti-American feelings (4773ms) Where is Venezuela? Barinas Airport 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Barinas Airport, Contained by, Venezuela) -> Barinas Airport (5074ms) Where is Venezuela? you?ll 0.555555555554 Where is Venezuela? -> $x: ($x, found, venezuelum) -> (you?ll, find valuable advices about, venezuela travel) -> you?ll (5031ms) Where is Venezuela? Ortega 0.555555555554 Where is Venezuela? -> $x: ($x, help, venezuelum) -> (Ortega, has agreed to help, Iran and Venezuela finance) -> Ortega (5167ms) Where is Venezuela? United Socialist Party of Venezuela 0.555555555554 Where is Venezuela? -> $x: ($x, find, venezuelum) -> (United Socialist Party of Venezuela, can be found on Wikipedia at, http://en.wikipedia.org/wiki/United%20Socialist%20Party%20of%20Venezuela) -> United Socialist Party of Venezuela (5002ms) Where is Venezuela? a version of Linux 0.555555555554 Where is Venezuela? -> $x: ($x, develop, venezuelum) -> (a version of Linux, developed in, Venezuela) -> a version of Linux (5206ms) Where is Venezuela? The Spanish islands 0.555555555554 Where is Venezuela? -> $x: ($x, influence, venezuelum) -> (The Spanish islands, influences from, Venezuela) -> The Spanish islands (5215ms) Where is Venezuela? Dr. Nancy Wexler 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (Dr. Nancy Wexler, went to, Venezuela) -> Dr. Nancy Wexler (5060ms) Where is Venezuela? San Antonio de Los Altos 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (San Antonio de Los Altos, Contained by, Venezuela) -> San Antonio de Los Altos (5262ms) Where is Venezuela? Oil States 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (Oil States, does business in, Venezuela) -> Oil States (5017ms) Where is Venezuela? The accord 0.555555555554 Where is Venezuela? -> $x: ($x, establish, venezuelum) -> (The accord, established, a Venezuela-Guyana joint commission) -> The accord (4663ms) Where is Venezuela? A coup 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (A coup, happened in, Venezuela) -> A coup (4682ms) Where is Venezuela? the Cuban Government 0.555555555554 Where is Venezuela? -> $x: ($x, found, venezuelum) -> (the Cuban Government, found in, Hugo Chavez?s Venezuela) -> the Cuban Government (5224ms) Where is Venezuela? the three victims 0.555555555554 Where is Venezuela? -> $x: ($x, found, venezuelum) -> (the three victims, were found in, Venezuela) -> the three victims (5177ms) Where is Venezuela? Fast 0.555555555554 Where is Venezuela? -> $x: ($x, found, venezuelum) -> (Fast, Find by using, Drop-down Box Venezuela) -> Fast (4972ms) Where is Venezuela? the commission 0.555555555554 Where is Venezuela? -> $x: ($x, found, venezuelum) -> (the commission, found against, Venezuela) -> the commission (5242ms) Where is Venezuela? the Belgians 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, did, the Belgians) -> the Belgians (4562ms) Where is Venezuela? Pico Pan de Az?car 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Pico Pan de Az?car, Contained by, Venezuela) -> Pico Pan de Az?car (4791ms) Where is Venezuela? An arm 0.555555555554 Where is Venezuela? -> $x: ($x, find, venezuelum) -> (An arm, found off the coast of, Venezuela) -> An arm (5046ms) Where is Venezuela? Jes?s Soto Museum of Modern Art 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Jes?s Soto Museum of Modern Art, Contained by, Venezuela) -> Jes?s Soto Museum of Modern Art (5233ms) Where is Venezuela? Universidad Experimental Polit?cnica Antonio Jos? de Sucre 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Universidad Experimental Polit?cnica Antonio Jos? de Sucre, Contained by, Venezuela) -> Universidad Experimental Polit?cnica Antonio Jos? de Sucre (4719ms) Where is Venezuela? 2010 0.555555555554 Where is Venezuela? -> $x: ($x, fight, venezuelum) -> (2010, could see a potential fight in, Venezuela) -> 2010 (4503ms) Where is Venezuela? imperialism 0.555555555554 Where is Venezuela? -> $x: ($x, get, venezuelum) -> (imperialism, wants to get its hands on, Venezuela?s oil) -> imperialism (5224ms) Where is Venezuela? The airline 0.555555555554 Where is Venezuela? -> $x: ($x, establish, venezuelum) -> (The airline, was established by, Aeropostal Alas de Venezuela) -> The airline (5215ms) Where is Venezuela? General Harrison 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (General Harrison, did so for, Venezuela) -> General Harrison (4926ms) Where is Venezuela? any other Western European country 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, does, any other Western European country) -> any other Western European country (4876ms) Where is Venezuela? Washington 0.555555555554 Where is Venezuela? -> $x: ($x, surround, venezuelum) -> (Washington, is surrounding, Venezuela) -> Washington (4808ms) Where is Venezuela? Bol?var 0.555555555554 Where is Venezuela? -> $x: ($x, get, venezuelum) -> (Bol?var, had got the freedom of, Venezuela) -> Bol?var (5215ms) Where is Venezuela? Bruzual 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Bruzual, Contained by, Venezuela) -> Bruzual (5101ms) Where is Venezuela? Bush 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, does verbal battle with, Bush) -> Bush (4663ms) Where is Venezuela? an Atlantic island 0.555555555554 Where is Venezuela? -> $x: ($x, found, venezuelum) -> (an Atlantic island, found north of, Venezuela) -> an Atlantic island (4987ms) Where is Venezuela? the security brief 0.555555555554 Where is Venezuela? -> $x: ($x, event, venezuelum) -> (the security brief, presents events in, Venezuela) -> the security brief (4583ms) Where is Venezuela? n?t taste 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, did, n?t taste) -> n?t taste (5101ms) Where is Venezuela? the comrades 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (the comrades, have done marvellous work in, Venezuela) -> the comrades (4388ms) Where is Venezuela? the media 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the media, is really happening in, Venezuela) -> the media (5060ms) Where is Venezuela? Apure 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Apure, Contained by, Venezuela) -> Apure (4541ms) Where is Venezuela? more than 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, could do, more than) -> more than (4682ms) Where is Venezuela? Sanare, Venezuela 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Sanare, Venezuela, Contained by, Venezuela) -> Sanare, Venezuela (4972ms) Where is Venezuela? heavy bituminous oil 0.555555555554 Where is Venezuela? -> $x: ($x, found, venezuelum) -> (heavy bituminous oil, found chiefly in, Canada and Venezuela) -> heavy bituminous oil (5187ms) Where is Venezuela? Muammar Gaddafi 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (Muammar Gaddafi, may have gone to, Venezuela) -> Muammar Gaddafi (5074ms) Where is Venezuela? the style 0.555555555554 Where is Venezuela? -> $x: ($x, dance, venezuelum) -> (the style, danced in, Venezuela and Dominicana) -> the style (5187ms) Where is Venezuela? much curiosity 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (much curiosity, is happening in, Venezuela) -> much curiosity (5088ms) Where is Venezuela? Irish film makers 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (Irish film makers, happened to be in, Venezuela) -> Irish film makers (4663ms) Where is Venezuela? the left 0.555555555554 Where is Venezuela? -> $x: ($x, fight, venezuelum) -> (the left, had fought in, Venezuela) -> the left (5017ms) Where is Venezuela? Basileuterus zimmeri 0.555555555554 Where is Venezuela? -> $x: ($x, describe, venezuelum) -> (Basileuterus zimmeri, described from, Venezuela) -> Basileuterus zimmeri (5136ms) Where is Venezuela? Miss Earth Venezuela 2009 0.555555555554 Where is Venezuela? -> $x: ($x, event, venezuelum) -> (Miss Earth Venezuela 2009, Instance of recurring event, Miss Earth Venezuela) -> Miss Earth Venezuela 2009 (5197ms) Where is Venezuela? Miss Venezuela 2003 0.555555555554 Where is Venezuela? -> $x: ($x, event, venezuelum) -> (Miss Venezuela 2003, Instance of recurring event, Miss Venezuela) -> Miss Venezuela 2003 (4859ms) Where is Venezuela? Cesar Farias 0.555555555554 Where is Venezuela? -> $x: ($x, get, venezuelum) -> (Cesar Farias, got, Venezuela) -> Cesar Farias (4859ms) Where is Venezuela? Paparo 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Paparo, Contained by, Venezuela) -> Paparo (4644ms) Where is Venezuela? community portal page 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela i, just did a few changes to, community portal page) -> community portal page (4701ms) Where is Venezuela? Kidnapped Brothers 0.555555555554 Where is Venezuela? -> $x: ($x, kill, venezuelum) -> (Kidnapped Brothers, Killed in, Venezuela) -> Kidnapped Brothers (5115ms) Where is Venezuela? every other run 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (every other run, went through, Venezuela) -> every other run (5126ms) Where is Venezuela? San Juan de Payara 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (San Juan de Payara, Contained by, Venezuela) -> San Juan de Payara (4842ms) Where is Venezuela? La Asunci?n 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (La Asunci?n, Contained by, Venezuela) -> La Asunci?n (5177ms) Where is Venezuela? public meetings 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, do organise, public meetings) -> public meetings (4791ms) Where is Venezuela? surpluses 0.555555555554 Where is Venezuela? -> $x: (venezuelum, have history of, $x) -> (Venezuela, has had a history of, surpluses) -> surpluses (4773ms) Where is Venezuela? Venezuela 0.555555555554 Where is Venezuela? -> $x: ($x, event, venezuelum) -> (Venezuela, Events, Venezuela Crisis of 1902?1903) -> Venezuela (4755ms) Where is Venezuela? Monagas 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Monagas, Contained by, Venezuela) -> Monagas (4389ms) Where is Venezuela? Tae Kwon 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (Tae Kwon, Do in, Venezuela) -> Tae Kwon (4623ms) Where is Venezuela? Jeff Cohen 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (Jeff Cohen, Go to, Venezuela) -> Jeff Cohen (4892ms) Where is Venezuela? the course 0.555555555554 Where is Venezuela? -> $x: ($x, design, venezuelum) -> (the course, designed by, Leopoldo Palacios of Venezuela) -> the course (5002ms) Where is Venezuela? the awareness 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the awareness, is happening in, Venezuela) -> the awareness (4737ms) Where is Venezuela? amazement 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (amazement, is happening in, Venezuela) -> amazement (4719ms) Where is Venezuela? companies 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (companies, doing business in, Venezuela) -> companies (4737ms) Where is Venezuela? Phoberomys 0.555555555554 Where is Venezuela? -> $x: ($x, found, venezuelum) -> (Phoberomys, was found in, Venezuela) -> Phoberomys (5147ms) Where is Venezuela? The Bolivarian alliance 0.555555555554 Where is Venezuela? -> $x: ($x, comprise, venezuelum) -> (The Bolivarian alliance, is comprised of, Venezuela) -> The Bolivarian alliance (4892ms) Where is Venezuela? even Uruguay 0.555555555554 Where is Venezuela? -> $x: ($x, get, venezuelum) -> (even Uruguay, get more attention than, Colombia and Venezuela) -> even Uruguay (4644ms) Where is Venezuela? Queniquea 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Queniquea, Contained by, Venezuela) -> Queniquea (5136ms) Where is Venezuela? the label corporatism 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the label corporatism, has been happening in, Venezuela) -> the label corporatism (5147ms) Where is Venezuela? a coup 0.555555555554 Where is Venezuela? -> $x: ($x, develop, venezuelum) -> (a coup, is developing in, Venezuela) -> a coup (5167ms) Where is Venezuela? Fidel Castro 0.555555555554 Where is Venezuela? -> $x: ($x, find, venezuelum) -> (Fidel Castro, has found a new economic sponsor in, Venezuela) -> Fidel Castro (5157ms) Where is Venezuela? A new missionary recruit 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (A new missionary recruit, went to, Venezuela) -> A new missionary recruit (4719ms) Where is Venezuela? democracies 0.555555555554 Where is Venezuela? -> $x: ($x, create, venezuelum) -> (democracies, is being created in, Russia and Venezuela) -> democracies (5242ms) Where is Venezuela? Ariana 0. 0.555555555554 Where is Venezuela? -> $x: ($x, produce, venezuelum) -> (Ariana 0., produced entirely in, Venezuela ISA TKM) -> Ariana 0. (4825ms) Where is Venezuela? La Chinita International Airport 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (La Chinita International Airport, Contained by, Venezuela) -> La Chinita International Airport (4603ms) Where is Venezuela? Santa Ana del T?chira 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Santa Ana del T?chira, Contained by, Venezuela) -> Santa Ana del T?chira (4503ms) Where is Venezuela? Cuba Es Musica 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (Cuba Es Musica, went gold in, Venezuela) -> Cuba Es Musica (5167ms) Where is Venezuela? Columbus 0.555555555554 Where is Venezuela? -> $x: ($x, discover, venezuelum) -> (Columbus, discovered the area of, Venezuela) -> Columbus (5224ms) Where is Venezuela? Russia?s PM Vladimir Putin 0.555555555554 Where is Venezuela? -> $x: ($x, first make, venezuelum) -> (Russia?s PM Vladimir Putin, made his first visit to, Venezuela) -> Russia?s PM Vladimir Putin (5233ms) Where is Venezuela? the government 0.555555555554 Where is Venezuela? -> $x: ($x, get, venezuelum) -> (the government, is to get, Venezuela) -> the government (5197ms) Where is Venezuela? a keen interest 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (a keen interest, is happening in, Venezuela) -> a keen interest (5046ms) Where is Venezuela? just what 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (just what, happened in, Venezuela) -> just what (4682ms) Where is Venezuela? the HoV delegates 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (the HoV delegates, went to, Venezuela) -> the HoV delegates (3638ms) Where is Venezuela? Estadio Metropolitano de F?tbol de Lara 0.555555555554 Where is Venezuela? -> $x: ($x, event, venezuelum) -> (Estadio Metropolitano de F?tbol de Lara, Events, Miss Venezuela 2010) -> Estadio Metropolitano de F?tbol de Lara (5206ms) Where is Venezuela? The title 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (The title, is happening in, Venezuela) -> The title (4623ms) Where is Venezuela? so 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, has done, so) -> so (5224ms) Where is Venezuela? Bob Timmermann Carlos Zambrano 0.555555555554 Where is Venezuela? -> $x: ($x, get, venezuelum) -> (Bob Timmermann Carlos Zambrano, gets the call for, Venezuela) -> Bob Timmermann Carlos Zambrano (5046ms) Where is Venezuela? years 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, were doing for, years) -> years (4892ms) Where is Venezuela? Miss Earth Venezuela 2007 0.555555555554 Where is Venezuela? -> $x: ($x, event, venezuelum) -> (Miss Earth Venezuela 2007, Instance of recurring event, Miss Earth Venezuela) -> Miss Earth Venezuela 2007 (5147ms) Where is Venezuela? Universidad Nororiental Gran Mariscal de Ayacucho, main campus 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Universidad Nororiental Gran Mariscal de Ayacucho, main campus, Contained by, Venezuela) -> Universidad Nororiental Gran Mariscal de Ayacucho, main campus (5177ms) Where is Venezuela? Machiques 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Machiques, Contained by, Venezuela) -> Machiques (4773ms) Where is Venezuela? Universidad Cat?lica Santa Rosa, main campus 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Universidad Cat?lica Santa Rosa, main campus, Contained by, Venezuela) -> Universidad Cat?lica Santa Rosa, main campus (4541ms) Where is Venezuela? Norway 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, does, Norway) -> Norway (5031ms) Where is Venezuela? Venezuela campaign 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (Venezuela campaign, is happening in, Venezuela) -> Venezuela campaign (4503ms) Where is Venezuela? Honduras 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (Honduras, happened in, Venezuela) -> Honduras (5197ms) Where is Venezuela? T?chira River 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (T?chira River, Contained by, Venezuela) -> T?chira River (4859ms) Where is Venezuela? Plans 0.555555555554 Where is Venezuela? -> $x: ($x, get, venezuelum) -> (Plans, Get, cheap Venezuela phone cards) -> Plans (5177ms) Where is Venezuela? Miss Venezuela 2005 0.555555555554 Where is Venezuela? -> $x: ($x, event, venezuelum) -> (Miss Venezuela 2005, Instance of recurring event, Miss Venezuela) -> Miss Venezuela 2005 (4583ms) Where is Venezuela? Conditions 0.555555555554 Where is Venezuela? -> $x: ($x, develop, venezuelum) -> (Conditions, are being developed in, Venezuela) -> Conditions (4808ms) Where is Venezuela? the other hand 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the other hand, will happen in, Venezuela) -> the other hand (5233ms) Where is Venezuela? Heavy crude oil 0.555555555554 Where is Venezuela? -> $x: ($x, produce, venezuelum) -> (Heavy crude oil, produced from, Venezuela) -> Heavy crude oil (5233ms) Where is Venezuela? Same 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (Same, goes for, Venezuela) -> Same (4663ms) Where is Venezuela? Porlamar 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Porlamar, Contained by, Venezuela) -> Porlamar (5233ms) Where is Venezuela? electronica music 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, does some kind of, electronica music) -> electronica music (4701ms) Where is Venezuela? Escuela Latinoamerica 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (Escuela Latinoamerica, did in, Venezuela) -> Escuela Latinoamerica (4541ms) Where is Venezuela? A bill 0.555555555554 Where is Venezuela? -> $x: ($x, introduce, venezuelum) -> (A bill, has been introduced in, Venezuela) -> A bill (5187ms) Where is Venezuela? Gazprom 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (Gazprom, has been doing in, Venezuela) -> Gazprom (5074ms) Where is Venezuela? exactly 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (exactly, is happening in, Venezuela) -> exactly (5177ms) Where is Venezuela? the lights 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (the lights, are going out sporadically in, Venezuela) -> the lights (4623ms) Where is Venezuela? Bill Richardson 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (Bill Richardson, went to, Venezuela) -> Bill Richardson (5250ms) Where is Venezuela? Puerto Ordaz and San Felix 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Puerto Ordaz and San Felix, Contained by, Venezuela) -> Puerto Ordaz and San Felix (5167ms) Where is Venezuela? three years 0.555555555554 Where is Venezuela? -> $x: ($x, introduce, venezuelum) -> (three years, was introduced first to, Venezuela) -> three years (4972ms) Where is Venezuela? an account 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (an account, is happening in, Venezuela) -> an account (4987ms) Where is Venezuela? the joropo 0.555555555554 Where is Venezuela? -> $x: ($x, dance, venezuelum) -> (the joropo, is the national dance of, Venezuela) -> the joropo (5187ms) Where is Venezuela? Recent graduate 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (Recent graduate, goes to, Venezuela) -> Recent graduate (5157ms) Where is Venezuela? a textbook map and eating 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, does in, a textbook map and eating) -> a textbook map and eating (5136ms) Where is Venezuela? IB TIMES 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (IB TIMES, Does, Venezuela) -> IB TIMES (4503ms) Where is Venezuela? Thirty years earlier oil 0.555555555554 Where is Venezuela? -> $x: ($x, discover, venezuelum) -> (Thirty years earlier oil, had been discovered in, Venezuela) -> Thirty years earlier oil (4910ms) Where is Venezuela? Economists 0.555555555554 Where is Venezuela? -> $x: ($x, describe, venezuelum) -> (Economists, describe, Venezuela) -> Economists (5074ms) Where is Venezuela? the Lakers 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (the Lakers, will go to, Venezuela) -> the Lakers (5002ms) Where is Venezuela? Reggie 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (Reggie, can go to, Venezuela) -> Reggie (4562ms) Where is Venezuela? the public 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the public, is really happening in, Venezuela) -> the public (5167ms) Where is Venezuela? civil war 0.555555555554 Where is Venezuela? -> $x: (venezuelum, have state of, $x) -> (Venezuela, has entered a state of, civil war) -> civil war (5060ms) Where is Venezuela? lobbying government 0.555555555554 Where is Venezuela? -> $x: ($x, found, venezuelum) -> (lobbying government, can be found in, Venezuela) -> lobbying government (4926ms) Where is Venezuela? the ?Bolivarian Revolution 0.555555555554 Where is Venezuela? -> $x: ($x, describe, venezuelum) -> (the ?Bolivarian Revolution, has described, Venezuela) -> the ?Bolivarian Revolution (5088ms) Where is Venezuela? Harry Belafonte 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (Harry Belafonte, did in, Venezuela) -> Harry Belafonte (5197ms) Where is Venezuela? whats 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (whats, going on in, Venezuela) -> whats (5250ms) Where is Venezuela? Dependencias Federales 0.555555555554 Where is Venezuela? -> $x: ($x, find, venezuelum) -> (Dependencias Federales, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Federal%20Dependencies%20of%20Venezuela) -> Dependencias Federales (5125ms) Where is Venezuela? the work 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (the work, did in, Venezuela) -> the work (4842ms) Where is Venezuela? the University 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (the University, went to live in, Venezuela) -> the University (5206ms) Where is Venezuela? Universidad Centroccidental Lisandro Alvarado 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Universidad Centroccidental Lisandro Alvarado, Contained by, Venezuela) -> Universidad Centroccidental Lisandro Alvarado (4859ms) Where is Venezuela? W4DTA 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (W4DTA, will be going to, Venezuela) -> W4DTA (4701ms) Where is Venezuela? Columbia 0.555555555554 Where is Venezuela? -> $x: ($x, help, venezuelum) -> (Columbia, helps keep, Venezuela and China) -> Columbia (4957ms) Where is Venezuela? Universidad Nacional Experimental de Yaracuy, main campus 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Universidad Nacional Experimental de Yaracuy, main campus, Contained by, Venezuela) -> Universidad Nacional Experimental de Yaracuy, main campus (4941ms) Where is Venezuela? Ch?vez 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (Ch?vez, has done in, Venezuela) -> Ch?vez (5242ms) Where is Venezuela? the revolution 0.555555555554 Where is Venezuela? -> $x: ($x, develop, venezuelum) -> (the revolution, is developing in, Venezuela) -> the revolution (5206ms) Where is Venezuela? oil companies 0.555555555554 Where is Venezuela? -> $x: ($x, event, venezuelum) -> (oil companies, predicted this event in, Venezuela) -> oil companies (4583ms) Where is Venezuela? the 1999 Constitution 0.555555555554 Where is Venezuela? -> $x: ($x, define, venezuelum) -> (the 1999 Constitution, still defines, Venezuela) -> the 1999 Constitution (5136ms) Where is Venezuela? Posada Carriles 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (Posada Carriles, did the same in, Venezuela) -> Posada Carriles (5115ms) Where is Venezuela? less subsidization 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, has to make do with, less subsidization) -> less subsidization (5147ms) Where is Venezuela? Smart phones 0.555555555554 Where is Venezuela? -> $x: ($x, found, venezuelum) -> (Smart phones, have found wide acceptance in, Venezuela) -> Smart phones (5197ms) Where is Venezuela? the slightest impression 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, does n?t make, the slightest impression) -> the slightest impression (4892ms) Where is Venezuela? Serran?a del Perij? 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Serran?a del Perij?, Contained by, Venezuela) -> Serran?a del Perij? (5187ms) Where is Venezuela? Angel Falls 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Angel Falls, Contained by, Venezuela) -> Angel Falls (5206ms) Where is Venezuela? Anti-Semitism 0.555555555554 Where is Venezuela? -> $x: ($x, found, venezuelum) -> (Anti-Semitism, is routinely found in, Venezuela) -> Anti-Semitism (5242ms) Where is Venezuela? Maiquet?a 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Maiquet?a, Contained by, Venezuela) -> Maiquet?a (5157ms) Where is Venezuela? Luis Sojo 0.555555555554 Where is Venezuela? -> $x: ($x, get, venezuelum) -> (Luis Sojo, should get the gig for, Venezuela) -> Luis Sojo (4957ms) Where is Venezuela? Caucagua 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Caucagua, Contained by, Venezuela) -> Caucagua (4926ms) Where is Venezuela? December 17 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (December 17, did, Venezuela) -> December 17 (5187ms) Where is Venezuela? Universidad Cat?lica Andr?s Bello 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Universidad Cat?lica Andr?s Bello, Contained by, Venezuela) -> Universidad Cat?lica Andr?s Bello (4583ms) Where is Venezuela? lies 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (lies, is really happening in, Venezuela) -> lies (5031ms) Where is Venezuela? Juan Pablo Perez Alfonso Airport 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Juan Pablo Perez Alfonso Airport, Contained by, Venezuela) -> Juan Pablo Perez Alfonso Airport (3817ms) Where is Venezuela? Universidad Valle del Momboy, main campus 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Universidad Valle del Momboy, main campus, Contained by, Venezuela) -> Universidad Valle del Momboy, main campus (5215ms) Where is Venezuela? Herrera?s company 0.555555555554 Where is Venezuela? -> $x: ($x, produce, venezuelum) -> (Herrera?s company, has produced, Venezuela?s only cocoa beans) -> Herrera?s company (5177ms) Where is Venezuela? earth 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (earth, does, Venezuela gain) -> earth (4737ms) Where is Venezuela? a first hand report 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (a first hand report, is going on in, Venezuela) -> a first hand report (5136ms) Where is Venezuela? a new public health system 0.555555555554 Where is Venezuela? -> $x: ($x, have create, venezuelum) -> (a new public health system, has been created in, Venezuela) -> a new public health system (5060ms) Where is Venezuela? Canned soursop concentrate 0.555555555554 Where is Venezuela? -> $x: ($x, produce, venezuelum) -> (Canned soursop concentrate, is produced in, Venezuela) -> Canned soursop concentrate (4755ms) Where is Venezuela? Only four ships 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (Only four ships, will be going to, Venezuela) -> Only four ships (4719ms) Where is Venezuela? two House Representatives 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (two House Representatives, went to, Venezuela) -> two House Representatives (5060ms) Where is Venezuela? the floor 0.555555555554 Where is Venezuela? -> $x: ($x, event, venezuelum) -> (the floor, reflect faithfully the events in, Venezuela) -> the floor (4892ms) Where is Venezuela? Pico Piedras Blancas 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Pico Piedras Blancas, Contained by, Venezuela) -> Pico Piedras Blancas (3817ms) Where is Venezuela? doubt 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, DO, doubt) -> doubt (4972ms) Where is Venezuela? Iraq 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (Iraq, happens in, Venezuela) -> Iraq (4603ms) Where is Venezuela? the one ZTE 0.555555555554 Where is Venezuela? -> $x: ($x, produce, venezuelum) -> (the one ZTE, produces in, Venezuela and Vietnam) -> the one ZTE (5115ms) Where is Venezuela? Great interest 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (Great interest, is happening in, Venezuela) -> Great interest (5017ms) Where is Venezuela? Apure River 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Apure River, Contained by, Venezuela) -> Apure River (5017ms) Where is Venezuela? ALBA 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, is doing with, ALBA) -> ALBA (5046ms) Where is Venezuela? Terror 0.555555555554 Where is Venezuela? -> $x: ($x, help, venezuelum) -> (Terror, has helped, Venezuela) -> Terror (5031ms) Where is Venezuela? Cuban sugar industry technicians 0.555555555554 Where is Venezuela? -> $x: ($x, help, venezuelum) -> (Cuban sugar industry technicians, have helped, Venezuela restart) -> Cuban sugar industry technicians (4957ms) Where is Venezuela? political links 0.555555555554 Where is Venezuela? -> $x: ($x, develop, venezuelum) -> (political links, developed between, Cuba and Venezuela) -> political links (4825ms) Where is Venezuela? an institution 0.555555555554 Where is Venezuela? -> $x: ($x, define, venezuelum) -> (an institution, had almost defined, Venezuela) -> an institution (4643ms) Where is Venezuela? Colombia 0.555555555554 Where is Venezuela? -> $x: ($x, surround, venezuelum) -> (Colombia, is surrounded by, hostile Venezuela) -> Colombia (5157ms) Where is Venezuela? Amy 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (Amy, happened in, Venezuela) -> Amy (5125ms) Where is Venezuela? 16 Comments 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (16 Comments, do, Venezuela) -> 16 Comments (4682ms) Where is Venezuela? political uncertainty 0.555555555554 Where is Venezuela? -> $x: ($x, define, venezuelum) -> (political uncertainty, will define, Venezuela) -> political uncertainty (4682ms) Where is Venezuela? Japan 0.555555555554 Where is Venezuela? -> $x: ($x, discover, venezuelum) -> (Japan, discovered the beautiful side of, an often ugly Venezuela) -> Japan (5187ms) Where is Venezuela? Lake Valencia 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Lake Valencia, Contained by, Venezuela) -> Lake Valencia (4701ms) Where is Venezuela? the last issue 0.555555555554 Where is Venezuela? -> $x: ($x, replace, venezuelum) -> (the last issue, will replace, Venezuela) -> the last issue (5002ms) Where is Venezuela? two soldiers 0.555555555554 Where is Venezuela? -> $x: ($x, kill, venezuelum) -> (two soldiers, killed at, Venezuela-Colombia border) -> two soldiers (5046ms) Where is Venezuela? so many doctors 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (so many doctors, have gone to, Venezuela) -> so many doctors (4910ms) Where is Venezuela? Products 0.555555555554 Where is Venezuela? -> $x: ($x, produce, venezuelum) -> (Products, is a product produced in, venezuela) -> Products (4825ms) Where is Venezuela? the protesters 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the protesters, is happening in, Venezuela) -> the protesters (4773ms) Where is Venezuela? milk , meat and toilet paper 0.555555555554 Where is Venezuela? -> $x: ($x, found, venezuelum) -> (milk , meat and toilet paper, are hard to find in, Venezuela) -> milk , meat and toilet paper (5206ms) Where is Venezuela? US companies 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (US companies, do business with, Venezuela) -> US companies (5002ms) Where is Venezuela? Cuba 0.555555555554 Where is Venezuela? -> $x: ($x, get, venezuelum) -> (Cuba, gets cheap oil from, Venezuela) -> Cuba (4876ms) Where is Venezuela? Bol?var, Yaracuy 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Bol?var, Yaracuy, Contained by, Venezuela) -> Bol?var, Yaracuy (4773ms) Where is Venezuela? R?o Caribe 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (R?o Caribe, Contained by, Venezuela) -> R?o Caribe (5197ms) Where is Venezuela? the Security Council 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, could do some real damage to, the Security Council) -> the Security Council (4663ms) Where is Venezuela? the leading edge 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (the leading edge, 's going on in, Venezuela) -> the leading edge (5224ms) Where is Venezuela? Miss Venezuela 2009 0.555555555554 Where is Venezuela? -> $x: ($x, event, venezuelum) -> (Miss Venezuela 2009, Instance of recurring event, Miss Venezuela) -> Miss Venezuela 2009 (5136ms) Where is Venezuela? An owner-worker class 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (An owner-worker class, does indeed exist in, Venezuela) -> An owner-worker class (4859ms) Where is Venezuela? an eery echo 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (an eery echo, has happened in, Venezuela) -> an eery echo (4643ms) Where is Venezuela? problems 0.555555555554 Where is Venezuela? -> $x: (venezuelum, have history of, $x) -> (Venezuela, has a long history of, problems) -> problems (5074ms) Where is Venezuela? the Left 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the Left, was really happening in, Venezuela) -> the Left (4893ms) Where is Venezuela? D. biflora 0.555555555554 Where is Venezuela? -> $x: ($x, found, venezuelum) -> (D. biflora, found in, Venezuela) -> D. biflora (4892ms) Where is Venezuela? Mayor Buenaventura Vivas Airport 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Mayor Buenaventura Vivas Airport, Contained by, Venezuela) -> Mayor Buenaventura Vivas Airport (5215ms) Where is Venezuela? example 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (example, really happened in, Venezuela) -> example (4910ms) Where is Venezuela? shameful poor Americans 0.555555555554 Where is Venezuela? -> $x: ($x, get, venezuelum) -> (shameful poor Americans, Get aid from, Venezuela) -> shameful poor Americans (4941ms) Where is Venezuela? the word 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the word, is happening in, Venezuela) -> the word (5233ms) Where is Venezuela? family and friends 0.555555555554 Where is Venezuela? -> $x: ($x, get, venezuelum) -> (family and friends, get together in, Venezuela) -> family and friends (5250ms) Where is Venezuela? Elorza 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Elorza, Contained by, Venezuela) -> Elorza (5060ms) Where is Venezuela? a more balanced and rational debate 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (a more balanced and rational debate, is happening in, Venezuela) -> a more balanced and rational debate (3715ms) Where is Venezuela? Philly 0.555555555554 Where is Venezuela? -> $x: ($x, inspire, venezuelum) -> (Philly, was inspired by, Venezuela?s El Sistema) -> Philly (5017ms) Where is Venezuela? the former 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (the former, went back to, Venezuela) -> the former (4389ms) Where is Venezuela? personnel 0.555555555554 Where is Venezuela? -> $x: ($x, kill, venezuelum) -> (personnel, were killed by, Venezuela) -> personnel (5125ms) Where is Venezuela? Valera 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Valera, Contained by, Venezuela) -> Valera (5242ms) Where is Venezuela? 9/11 paid American taxes 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (9/11 paid American taxes, does the government of, Venezuela) -> 9/11 paid American taxes (5115ms) Where is Venezuela? the other issue 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the other issue, would happen in, Venezuela) -> the other issue (4737ms) Where is Venezuela? Tapipa 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Tapipa, Contained by, Venezuela) -> Tapipa (5242ms) Where is Venezuela? the black market 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, is done in, the black market) -> the black market (5101ms) Where is Venezuela? battle longing 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Brazil and Venezuela, prepared to do, battle longing) -> battle longing (4941ms) Where is Venezuela? a system 0.555555555554 Where is Venezuela? -> $x: ($x, develop, venezuelum) -> (a system, developed in, Venezuela) -> a system (4808ms) Where is Venezuela? the process 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the process, happened in, Venezuela) -> the process (4682ms) Where is Venezuela? BIRDWATCHING Birders 0.555555555554 Where is Venezuela? -> $x: ($x, discover, venezuelum) -> (BIRDWATCHING Birders, have long discovered, Venezuela) -> BIRDWATCHING Birders (4972ms) Where is Venezuela? a social revolution 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (a social revolution, is happening in, Venezuela) -> a social revolution (4644ms) Where is Venezuela? Carabobo 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Carabobo, Contained by, Venezuela) -> Carabobo (5250ms) Where is Venezuela? The Spaniards 0.555555555554 Where is Venezuela? -> $x: ($x, introduce, venezuelum) -> (The Spaniards, introduced cacao to, Trinidad and Venezuela) -> The Spaniards (4389ms) Where is Venezuela? Shri Jyoti Star 0.555555555554 Where is Venezuela? -> $x: ($x, create, venezuelum) -> (Shri Jyoti Star, will create incorrect charts for, Venezuela) -> Shri Jyoti Star (4842ms) Where is Venezuela? San Fernando De Atabapo Airport 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (San Fernando De Atabapo Airport, Contained by, Venezuela) -> San Fernando De Atabapo Airport (4719ms) Where is Venezuela? the best term 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (the best term, is going on in, Venezuela) -> the best term (4719ms) Where is Venezuela? Punto 0.555555555554 Where is Venezuela? -> $x: ($x, found, venezuelum) -> (Punto, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Punto%20(Venezuela)) -> Punto (5101ms) Where is Venezuela? Production facilities 0.555555555554 Where is Venezuela? -> $x: ($x, establish, venezuelum) -> (Production facilities, are established in, Venezuela) -> Production facilities (4791ms) Where is Venezuela? the Global Women?s Strike 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (the Global Women?s Strike, went to, Venezuela) -> the Global Women?s Strike (4842ms) Where is Venezuela? world peak oil production 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (world peak oil production, so does, Venezuela) -> world peak oil production (3638ms) Where is Venezuela? Bailadores 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Bailadores, Contained by, Venezuela) -> Bailadores (4842ms) Where is Venezuela? Andres Miguel Salazar Marcano Airport 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Andres Miguel Salazar Marcano Airport, Contained by, Venezuela) -> Andres Miguel Salazar Marcano Airport (4773ms) Where is Venezuela? Nigeria 0.555555555554 Where is Venezuela? -> $x: ($x, replace, venezuelum) -> (Nigeria, has replaced, Venezuela) -> Nigeria (4701ms) Where is Venezuela? multiparty elections 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, did hold, multiparty elections) -> multiparty elections (4972ms) Where is Venezuela? El Tocuyo 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (El Tocuyo, Contained by, Venezuela) -> El Tocuyo (5002ms) Where is Venezuela? Chvez 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (Chvez, has done in, Venezuela) -> Chvez (4859ms) Where is Venezuela? the Hollywood bootlicks 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (the Hollywood bootlicks, always went to, Venezuela) -> the Hollywood bootlicks (4825ms) Where is Venezuela? Jos? Antonio P?ez Municipality 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Jos? Antonio P?ez Municipality, Contained by, Venezuela) -> Jos? Antonio P?ez Municipality (5002ms) Where is Venezuela? a friend 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (a friend, went to, Venezuela) -> a friend (5002ms) Where is Venezuela? 14000 people 0.555555555554 Where is Venezuela? -> $x: ($x, kill, venezuelum) -> (14000 people, were killed in, Venezuela) -> 14000 people (4859ms) Where is Venezuela? the revolutionary struggle 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (the revolutionary struggle, is now happening in, Venezuela) -> the revolutionary struggle (4583ms) Where is Venezuela? scores 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (scores, does, Venezuela) -> scores (5101ms) Where is Venezuela? Banco de Venezuela 0.555555555554 Where is Venezuela? -> $x: ($x, found, venezuelum) -> (Banco de Venezuela, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Banco%20de%20Venezuela) -> Banco de Venezuela (5101ms) Where is Venezuela? Barcelona 0.555555555554 Where is Venezuela? -> $x: ($x, contain, venezuelum) -> (Barcelona, Contained by, Venezuela) -> Barcelona (5157ms) Where is Venezuela? the country 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Venezuela, has done very little for, the country) -> the country (4876ms) Where is Venezuela? Contrast this 0.555555555554 Where is Venezuela? -> $x: ($x, happen in, venezuelum) -> (Contrast this, happened in, Venezuela) -> Contrast this (4663ms) Where is Venezuela? the hell 0.555555555554 Where is Venezuela? -> $x: ($x, go, venezuelum) -> (the hell, go to, Venezuela) -> the hell (4503ms) Where is Venezuela? gasoline 0.555555555554 Where is Venezuela? -> $x: ($x, do, venezuelum) -> (gasoline, as is done in, Venezuela) -> gasoline (5157ms) Where is Venezuela? the oil grab 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (Iraq I. Venezuela, already did, the oil grab) -> the oil grab (5115ms) Where is Venezuela? 4,500 people 0.555555555554 Where is Venezuela? -> $x: ($x, kill, venezuelum) -> (4,500 people, were killed in, Venezuela) -> 4,500 people (4583ms) Where is Venezuela? Ms. Kimberly 0.555555555554 Where is Venezuela? -> $x: ($x, get, venezuelum) -> (Ms. Kimberly, got in, Venezuela) -> Ms. Kimberly (3638ms) Where is Venezuela? 1784?Coffee cultivation 0.555555555554 Where is Venezuela? -> $x: ($x, introduce, venezuelum) -> (1784?Coffee cultivation, is introduced into, Venezuela) -> 1784?Coffee cultivation (4541ms) Where is Venezuela? a word for work 0.555555555554 Where is Venezuela? -> $x: (venezuelum, do, $x) -> (the Yequana Indians of Venezuela, did have, a word for work) -> a word for work (4541ms) Where is Venezuela? the family 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (the family, is in, Venezuela) -> the family (5295ms) Where is Venezuela? Ahmad 0.444444444443 Where is Venezuela? -> $x: ($x, be located in, venezuelum) -> (Ahmad, was located in, Venezuela) -> Ahmad (5303ms) Where is Venezuela? David Smilde 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (David Smilde, were in, Venezuela) -> David Smilde (5279ms) Where is Venezuela? the rainy season 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (the rainy season, is in, Venezuela) -> the rainy season (5310ms) Where is Venezuela? Irish filmmakers 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (Irish filmmakers, were in, Venezuela) -> Irish filmmakers (5279ms) Where is Venezuela? Castro 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (Castro, is in, venezuela) -> Castro (5303ms) Where is Venezuela? The falls 0.444444444443 Where is Venezuela? -> $x: ($x, be located in, venezuelum) -> (The falls, are located in, Venezuela) -> The falls (5287ms) Where is Venezuela? 1973 Father Aguirre 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (1973 Father Aguirre, was in, Venezuela) -> 1973 Father Aguirre (5287ms) Where is Venezuela? the Moras 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (the Moras, are in, Venezuela) -> the Moras (5310ms) Where is Venezuela? Iranian?s president 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (Iranian?s president, is in, Venezuela) -> Iranian?s president (5287ms) Where is Venezuela? Puerto La Cruz 0.444444444443 Where is Venezuela? -> $x: ($x, be located in, venezuelum) -> (Puerto La Cruz, is a city located in the country, venezuela) -> Puerto La Cruz (5303ms) Where is Venezuela? the capital 0.444444444443 Where is Venezuela? -> $x: ($x, be located in, venezuelum) -> (the capital, is located in, Venezuela) -> the capital (5262ms) Where is Venezuela? longtime trade partners 0.444444444443 Where is Venezuela? -> $x: ($x, cause, venezuelum) -> (longtime trade partners, is causing concern among, Venezuela?s) -> longtime trade partners (5262ms) Where is Venezuela? The easternmost p?ramos 0.444444444443 Where is Venezuela? -> $x: ($x, be located in, venezuelum) -> (The easternmost p?ramos, are located in, north-central Venezuela) -> The easternmost p?ramos (5271ms) Where is Venezuela? Corruption 0.444444444443 Where is Venezuela? -> $x: ($x, cause, venezuelum) -> (Corruption, is the main cause of, Venezuela) -> Corruption (5303ms) Where is Venezuela? Iranian President Mahmoud Ahmadinejad 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (Iranian President Mahmoud Ahmadinejad, is in, Venezuela) -> Iranian President Mahmoud Ahmadinejad (5271ms) Where is Venezuela? Lula 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (Lula, was in, Venezuela) -> Lula (5271ms) Where is Venezuela? the world gas proved reserve 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (the world gas proved reserve, are in, Venezuela) -> the world gas proved reserve (5303ms) Where is Venezuela? yesterday 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (yesterday, was in, Venezuela) -> yesterday (5262ms) Where is Venezuela? Ramos 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (Ramos, was in, Venezuela) -> Ramos (5310ms) Where is Venezuela? The Angel Falls 0.444444444443 Where is Venezuela? -> $x: ($x, be located in, venezuelum) -> (The Angel Falls, is located in, Venezuela) -> The Angel Falls (5310ms) Where is Venezuela? the wife 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (the wife, is in, Venezuela) -> the wife (5310ms) Where is Venezuela? Cuban officials 0.444444444443 Where is Venezuela? -> $x: ($x, be involve in, venezuelum) -> (Cuban officials, are involved in, Venezuela 's armed forces) -> Cuban officials (5279ms) Where is Venezuela? Standard 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (Standard, was in, Venezuela) -> Standard (5262ms) Where is Venezuela? 1997 and 1998 Economides 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (1997 and 1998 Economides, was in, Venezuela) -> 1997 and 1998 Economides (5295ms) Where is Venezuela? the other two 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (the other two, are in, Venezuela) -> the other two (5310ms) Where is Venezuela? The order 's first house outside India 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (The order 's first house outside India, was in, Venezuela) -> The order 's first house outside India (5287ms) Where is Venezuela? Assad 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (Assad, is in, Venezuela) -> Assad (5287ms) Where is Venezuela? Ahmadinejad 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (Ahmadinejad, was in, Venezuela) -> Ahmadinejad (5310ms) Where is Venezuela? the Angel Falls 0.444444444443 Where is Venezuela? -> $x: ($x, be located in, venezuelum) -> (the Angel Falls, is located in, Venezuela) -> the Angel Falls (5279ms) Where is Venezuela? Rabbani 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (Rabbani, was in, Venezuela) -> Rabbani (5310ms) Where is Venezuela? The projects 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (The projects, are in, Venezuela) -> The projects (5310ms) Where is Venezuela? General 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (General, is a specific automobile maker dealer in, venezuela) -> General (5271ms) Where is Venezuela? The CRP 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (The CRP, is in, Venezuela) -> The CRP (5271ms) Where is Venezuela? former KGB operative Vladimir Putin 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (former KGB operative Vladimir Putin, was in, Venezuela) -> former KGB operative Vladimir Putin (5295ms) Where is Venezuela? Ahmadi-Nejad 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (Ahmadi-Nejad, was in, Venezuela) -> Ahmadi-Nejad (5262ms) Where is Venezuela? Carl Tranter MSC 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (Carl Tranter MSC, were in, Venezuela) -> Carl Tranter MSC (5271ms) Where is Venezuela? the Hoff 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (the Hoff, is in down in, Venezuela) -> the Hoff (5287ms) Where is Venezuela? Dyer 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (Dyer, was in, Venezuela) -> Dyer (5262ms) Where is Venezuela? FARC members 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (FARC members, are in, Venezuela) -> FARC members (5271ms) Where is Venezuela? revenue 0.444444444443 Where is Venezuela? -> $x: ($x, cause, venezuelum) -> (revenue, are the cause of, Venezuela?s expanding arsenal) -> revenue (5295ms) Where is Venezuela? oil production 0.444444444443 Where is Venezuela? -> $x: ($x, cause, venezuelum) -> (oil production, would also cause large losses for, Venezuela) -> oil production (5303ms) Where is Venezuela? four 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (four, were in, Venezuela) -> four (5271ms) Where is Venezuela? an oil pipeline 0.444444444443 Where is Venezuela? -> $x: ($x, cause, venezuelum) -> (an oil pipeline, caused a fire in, western Venezuela) -> an oil pipeline (5303ms) Where is Venezuela? the victim 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (the victim, was in, Venezuela) -> the victim (5295ms) Where is Venezuela? An example 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (An example, is in, Venezuela) -> An example (5271ms) Where is Venezuela? 42,000 Cuban collaborators 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (42,000 Cuban collaborators, are in, Venezuela) -> 42,000 Cuban collaborators (5302ms) Where is Venezuela? The steel-maker 0.444444444443 Where is Venezuela? -> $x: ($x, be located in, venezuelum) -> (The steel-maker, will be located in, Venezuela) -> The steel-maker (5262ms) Where is Venezuela? the delegation 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (the delegation, was in, Venezuela) -> the delegation (5271ms) Where is Venezuela? Jay 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (Jay, was in, Venezuela) -> Jay (5310ms) Where is Venezuela? extra-heavy oil 0.444444444443 Where is Venezuela? -> $x: ($x, be located in, venezuelum) -> (extra-heavy oil, is located in, Venezuela?s Orinoco Oil Belt) -> extra-heavy oil (5295ms) Where is Venezuela? Miranda 0.444444444443 Where is Venezuela? -> $x: ($x, be located in, venezuelum) -> (Miranda, is located in, Venezuela?s north-central region) -> Miranda (5310ms) Where is Venezuela? Chris?s first job 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (Chris?s first job, was in, Venezuela) -> Chris?s first job (5262ms) Where is Venezuela? Two Russian Tu-160 strategic bombers 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (Two Russian Tu-160 strategic bombers, were in, Venezuela) -> Two Russian Tu-160 strategic bombers (5279ms) Where is Venezuela? the highest waterfalls 0.444444444443 Where is Venezuela? -> $x: ($x, be located in, venezuelum) -> (the highest waterfalls, is exclusively located in, Venezuela) -> the highest waterfalls (5279ms) Where is Venezuela? Barinas 0.444444444443 Where is Venezuela? -> $x: ($x, be located in, venezuelum) -> (Barinas, is located in, central Venezuela) -> Barinas (5271ms) Where is Venezuela? Ceren 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (Ceren, was in, Venezuela) -> Ceren (5271ms) Where is Venezuela? Morales 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (Morales, is in, Venezuela) -> Morales (5262ms) Where is Venezuela? owner Walter Stipa 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (owner Walter Stipa, was in, Venezuela) -> owner Walter Stipa (5287ms) Where is Venezuela? Merida 0.444444444443 Where is Venezuela? -> $x: ($x, be located in, venezuelum) -> (Merida, is a city located in the country, venezuela) -> Merida (5295ms) Where is Venezuela? Home Run Derby Ozzie 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (Home Run Derby Ozzie, is in, Venezuela) -> Home Run Derby Ozzie (5279ms) Where is Venezuela? Cuyagua 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (Cuyagua, is in, Venezuela) -> Cuyagua (5279ms) Where is Venezuela? human rights 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (human rights, are in, Venezuela) -> human rights (5279ms) Where is Venezuela? ?The dam 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (?The dam, is in, Venezuela) -> ?The dam (5287ms) Where is Venezuela? Robinson 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (Robinson, was in, Venezuela) -> Robinson (5303ms) Where is Venezuela? The cheapest petrol 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (The cheapest petrol, was in, Venezuela) -> The cheapest petrol (5279ms) Where is Venezuela? Asprilla 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (Asprilla, was in, Venezuela) -> Asprilla (5287ms) Where is Venezuela? an oil company 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (an oil company, are in, Venezuela) -> an oil company (5279ms) Where is Venezuela? 2008 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (2008, is in, Venezuela) -> 2008 (5279ms) Where is Venezuela? the factory 0.444444444443 Where is Venezuela? -> $x: ($x, be located in, venezuelum) -> (the factory, is located in, eastern Venezuela) -> the factory (5287ms) Where is Venezuela? India 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (India, was in, Venezuela) -> India (5295ms) Where is Venezuela? Hunton 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (Hunton, was in, Venezuela) -> Hunton (5271ms) Where is Venezuela? the month Darby 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (the month Darby, was in, Venezuela) -> the month Darby (5287ms) Where is Venezuela? a guy 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (a guy, was in, Venezuela) -> a guy (5295ms) Where is Venezuela? Colonel Gaddafi 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (Colonel Gaddafi, is in, Venezuela) -> Colonel Gaddafi (5287ms) Where is Venezuela? Sheehan 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (Sheehan, was in, Venezuela) -> Sheehan (5310ms) Where is Venezuela? The second World War 0.444444444443 Where is Venezuela? -> $x: ($x, cause, venezuelum) -> (The second World War, caused our return to, Venezuela) -> The second World War (5295ms) Where is Venezuela? either shortwave 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (either shortwave, AM in, Venezuela) -> either shortwave (5303ms) Where is Venezuela? the development effort 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (the development effort, is in, Venezuela) -> the development effort (5295ms) Where is Venezuela? The family 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (The family, was in, Venezuela) -> The family (5287ms) Where is Venezuela? The Caribbean Islands 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (The Caribbean Islands, are in, Venezuela) -> The Caribbean Islands (5271ms) Where is Venezuela? Suriname 0.444444444443 Where is Venezuela? -> $x: ($x, be in, venezuelum) -> (Suriname, are in, Venezuela) -> Suriname (5287ms) Where is Venezuela? the news 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, has been in, the news) -> the news (5342ms) Where is Venezuela? second place 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, was in, second place) -> second place (5317ms) Where is Venezuela? the provision 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, the provision) -> the provision (5325ms) Where is Venezuela? the interests 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is being run in, the interests) -> the interests (5310ms) Where is Venezuela? light 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, was in, light) -> light (5317ms) Where is Venezuela? contact 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, contact) -> contact (5348ms) Where is Venezuela? recessions 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, are in, recessions) -> recessions (5337ms) Where is Venezuela? discussions 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, was in, discussions) -> discussions (5342ms) Where is Venezuela? solidarity 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, solidarity) -> solidarity (5337ms) Where is Venezuela? first place 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, first place) -> first place (5325ms) Where is Venezuela? the 60 meterband 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, are in, the 60 meterband) -> the 60 meterband (5332ms) Where is Venezuela? fourth place 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, fourth place) -> fourth place (5332ms) Where is Venezuela? the crapper 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, was in, the crapper) -> the crapper (5317ms) Where is Venezuela? more than 20 tax treaties 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, more than 20 tax treaties) -> more than 20 tax treaties (5325ms) Where is Venezuela? 2004 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, was in, 2004) -> 2004 (5348ms) Where is Venezuela? the throes 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, was in, the throes) -> the throes (5332ms) Where is Venezuela? shambles 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, shambles) -> shambles (5310ms) Where is Venezuela? line 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, were in, line) -> line (5332ms) Where is Venezuela? Miraflores 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, was in, Miraflores) -> Miraflores (5332ms) Where is Venezuela? the semifinals 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, the semifinals) -> the semifinals (5325ms) Where is Venezuela? talks 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, talks) -> talks (5342ms) Where is Venezuela? the thrall 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, the thrall) -> the thrall (5348ms) Where is Venezuela? a strategic location 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, a strategic location) -> a strategic location (5348ms) Where is Venezuela? single digits 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, was in, single digits) -> single digits (5332ms) Where is Venezuela? the southern state 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, the southern state) -> the southern state (5337ms) Where is Venezuela? fact 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, fact) -> fact (5342ms) Where is Venezuela? slavery 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, were in, slavery) -> slavery (5337ms) Where is Venezuela? the Perija mountains 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, the Perija mountains) -> the Perija mountains (5337ms) Where is Venezuela? North America 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, North America) -> North America (5325ms) Where is Venezuela? need 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, need) -> need (5332ms) Where is Venezuela? fifth place 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, was in, fifth place) -> fifth place (5317ms) Where is Venezuela? the US Congress 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is being prepared in, the US Congress) -> the US Congress (5317ms) Where is Venezuela? good shape 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, was in, good shape) -> good shape (5325ms) Where is Venezuela? a mess 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, a mess) -> a mess (5348ms) Where is Venezuela? progress 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is a work in, progress) -> progress (5325ms) Where is Venezuela? the government power 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, are in, the government power) -> the government power (5332ms) Where is Venezuela? a state of political turmoil 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, was in, a state of political turmoil) -> a state of political turmoil (5337ms) Where is Venezuela? control 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, was in, control) -> control (5332ms) Where is Venezuela? desperate need 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, desperate need) -> desperate need (5325ms) Where is Venezuela? Pool A 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, are in, Pool A) -> Pool A (5332ms) Where is Venezuela? Texas 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, have been in, Texas) -> Texas (5317ms) Where is Venezuela? the Yellow Fever zone 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, the Yellow Fever zone) -> the Yellow Fever zone (5342ms) Where is Venezuela? south America 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, south America) -> south America (5337ms) Where is Venezuela? the middle 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, the middle) -> the middle (5342ms) Where is Venezuela? Bolivars 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, Bolivars) -> Bolivars (5337ms) Where is Venezuela? a top security prison 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is held in, a top security prison) -> a top security prison (5317ms) Where is Venezuela? the grip 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, the grip) -> the grip (5337ms) Where is Venezuela? turmoil 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, was in, turmoil) -> turmoil (5348ms) Where is Venezuela? a state 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, a state) -> a state (5332ms) Where is Venezuela? the midst 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, the midst) -> the midst (5317ms) Where is Venezuela? Northern South America 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, Northern South America) -> Northern South America (5332ms) Where is Venezuela? July 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, was formally accepted in, July) -> July (5337ms) Where is Venezuela? political and social hatred 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is boiling in, political and social hatred) -> political and social hatred (5332ms) Where is Venezuela? danger 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, danger) -> danger (5332ms) Where is Venezuela? point 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is a case in, point) -> point (5342ms) Where is Venezuela? the 2010 Great Place 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, has been included in, the 2010 Great Place) -> the 2010 Great Place (5337ms) Where is Venezuela? conformity 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, was in, conformity) -> conformity (5348ms) Where is Venezuela? a similar suitation 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, a similar suitation) -> a similar suitation (5325ms) Where is Venezuela? a critical situation 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, was in, a critical situation) -> a critical situation (5348ms) Where is Venezuela? Moscow 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, would be signed in, Moscow) -> Moscow (5342ms) Where is Venezuela? the toilet 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, have been in, the toilet) -> the toilet (5342ms) Where is Venezuela? trouble 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, was in, trouble) -> trouble (5337ms) Where is Venezuela? the wings 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, the wings) -> the wings (5342ms) Where is Venezuela? a better situation 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, a better situation) -> a better situation (5317ms) Where is Venezuela? political turmoil 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, political turmoil) -> political turmoil (5342ms) Where is Venezuela? ruins 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, was in, ruins) -> ruins (5317ms) Where is Venezuela? 1965 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, was set up in, 1965) -> 1965 (5325ms) Where is Venezuela? the energy sector 0.44444444444200004 Where is Venezuela? -> $x: (venezuelum, be in in, $x) -> (Venezuela, is in, the energy sector) -> the energy sector (5342ms) Where is Venezuela? Hugo Ch?vez 0.33333333333200005 Where is Venezuela? -> $x: ($x, become of, venezuelum) -> (Hugo Ch?vez, became president of, Venezuela) -> Hugo Ch?vez (5375ms) Where is Venezuela? months 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, have been stranded for, months) -> months (5371ms) Where is Venezuela? the future 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is better for, the future) -> the future (5367ms) Where is Venezuela? the post 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, has been campaigning for, the post) -> the post (5362ms) Where is Venezuela? the services 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is bartered for, the services) -> the services (5371ms) Where is Venezuela? Paris 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, was headed for, Paris) -> Paris (5375ms) Where is Venezuela? a compromise candidate 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, are searching for, a compromise candidate) -> a compromise candidate (5375ms) Where is Venezuela? opportunities 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is looking for, opportunities) -> opportunities (5362ms) Where is Venezuela? a Feb. 15 referendum 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is preparing for, a Feb. 15 referendum) -> a Feb. 15 referendum (5348ms) Where is Venezuela? Solano 0.33333333333200005 Where is Venezuela? -> $x: ($x, become of, venezuelum) -> (Solano, becomes the dictator of, Venezuela) -> Solano (5352ms) Where is Venezuela? booking 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is still available for, booking) -> booking (5367ms) Where is Venezuela? the calendar year 2008 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, has been gazetted for, the calendar year 2008) -> the calendar year 2008 (5367ms) Where is Venezuela? comment 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is now available for, comment) -> comment (5362ms) Where is Venezuela? the purpose 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, was for, the purpose) -> the purpose (5357ms) Where is Venezuela? Venezuelans 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is one for, Venezuelans) -> Venezuelans (5352ms) Where is Venezuela? Guayana province 0.33333333333200005 Where is Venezuela? -> $x: ($x, become of, venezuelum) -> (Guayana province, became part of, Venezuela) -> Guayana province (5362ms) Where is Venezuela? violation 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is responsible for, violation) -> violation (5371ms) Where is Venezuela? long vehicles 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, have been for too, long vehicles) -> long vehicles (5352ms) Where is Venezuela? the 1976 terrorist bombing 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, were wanted for, the 1976 terrorist bombing) -> the 1976 terrorist bombing (5367ms) Where is Venezuela? journalism 0.33333333333200005 Where is Venezuela? -> $x: ($x, become of, venezuelum) -> (journalism, has become one of, Venezuela) -> journalism (5362ms) Where is Venezuela? the stars 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is reaching for, the stars) -> the stars (5367ms) Where is Venezuela? the picking 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, was ripe for, the picking) -> the picking (5375ms) Where is Venezuela? a while 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, had been abroad for, a while) -> a while (5353ms) Where is Venezuela? a national critic?s award 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, was nominated for, a national critic?s award) -> a national critic?s award (5357ms) Where is Venezuela? striking 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, were also punished for, striking) -> striking (5357ms) Where is Venezuela? bird watching 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, are especially popular for, bird watching) -> bird watching (5362ms) Where is Venezuela? the Indians 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, was paradise for, the Indians) -> the Indians (5371ms) Where is Venezuela? 60 days 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is valid for, 60 days) -> 60 days (5371ms) Where is Venezuela? the Imperialists 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, are so dangerous for, the Imperialists) -> the Imperialists (5367ms) Where is Venezuela? a seat 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is campaigning for, a seat) -> a seat (5375ms) Where is Venezuela? a solution 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is searching for, a solution) -> a solution (5362ms) Where is Venezuela? sure-handed infielders 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is known for producing, sure-handed infielders) -> sure-handed infielders (5371ms) Where is Venezuela? drastic change 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, were eager for, drastic change) -> drastic change (5357ms) Where is Venezuela? such a body 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, has been pushing for, such a body) -> such a body (5352ms) Where is Venezuela? Chinese ?strategic? partnerships 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, are key targets for, Chinese ?strategic? partnerships) -> Chinese ?strategic? partnerships (5367ms) Where is Venezuela? African support 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is hoping for, African support) -> African support (5348ms) Where is Venezuela? Turkey 0.33333333333200005 Where is Venezuela? -> $x: ($x, become of, venezuelum) -> (Turkey, has become a firm node of, the Iran-Syria-Venezuela axis) -> Turkey (5357ms) Where is Venezuela? the calendar year 2007 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, has been gazetted for, the calendar year 2007) -> the calendar year 2007 (5352ms) Where is Venezuela? drug trafficking 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (?Venezuela, is a magnet for, drug trafficking) -> drug trafficking (5371ms) Where is Venezuela? a rental 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, were looking for, a rental) -> a rental (5375ms) Where is Venezuela? the rest 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, was an example for, the rest) -> the rest (5375ms) Where is Venezuela? Venezuelan politician 0.33333333333200005 Where is Venezuela? -> $x: ($x, become of, venezuelum) -> (Venezuelan politician, became president of, Venezuela) -> Venezuelan politician (5371ms) Where is Venezuela? a thug change 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is due for, a thug change) -> a thug change (5357ms) Where is Venezuela? millions 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is an inspiration for, millions) -> millions (5371ms) Where is Venezuela? the Copa American tournament 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is preparing for, the Copa American tournament) -> the Copa American tournament (5362ms) Where is Venezuela? social and economic justice hand 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, are working for, social and economic justice hand) -> social and economic justice hand (5362ms) Where is Venezuela? social programs 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, will be used for, social programs) -> social programs (5375ms) Where is Venezuela? a socialist revolutionary change 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, was to work for, a socialist revolutionary change) -> a socialist revolutionary change (5362ms) Where is Venezuela? the Salesians 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, was paid for by, the Salesians) -> the Salesians (5371ms) Where is Venezuela? the kind 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is likely headed for, the kind) -> the kind (5353ms) Where is Venezuela? resistance 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, may be necessary for, resistance) -> resistance (5371ms) Where is Venezuela? Pedro Carmona 0.33333333333200005 Where is Venezuela? -> $x: ($x, become of, venezuelum) -> (Pedro Carmona, became president of, Venezuela) -> Pedro Carmona (5367ms) Where is Venezuela? a referendum 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, was gearing up for, a referendum) -> a referendum (5362ms) Where is Venezuela? U.S. corporations 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is important for, U.S. corporations) -> U.S. corporations (5357ms) Where is Venezuela? P?ez 0.33333333333200005 Where is Venezuela? -> $x: ($x, become of, venezuelum) -> (P?ez, became the first president of, Venezuela) -> P?ez (5367ms) Where is Venezuela? the South American championship 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is preparing for, the South American championship) -> the South American championship (5371ms) Where is Venezuela? the world?s underdogs 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is actually fighting for, the world?s underdogs) -> the world?s underdogs (5352ms) Where is Venezuela? conventional liquid crude 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is past peak for, conventional liquid crude) -> conventional liquid crude (5353ms) Where is Venezuela? the middle class 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, was smaller for, the middle class) -> the middle class (5352ms) Where is Venezuela? several years 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, have been tense for, several years) -> several years (5357ms) Where is Venezuela? training flights 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, are for, training flights) -> training flights (5367ms) Where is Venezuela? the great territory 0.33333333333200005 Where is Venezuela? -> $x: ($x, become of, venezuelum) -> (the great territory, would become the states of, Venezuela) -> the great territory (5357ms) Where is Venezuela? one reason 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is front page news for, one reason) -> one reason (5357ms) Where is Venezuela? 90 days 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is valid for, 90 days) -> 90 days (5371ms) Where is Venezuela? Otto Reich 0.33333333333200005 Where is Venezuela? -> $x: ($x, become of, venezuelum) -> (Otto Reich, later became one of, Venezuela?s most bitter) -> Otto Reich (5357ms) Where is Venezuela? a controlling , 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, was justification for, a controlling ,) -> a controlling , (5362ms) Where is Venezuela? Consular services 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, will be closed for, Consular services) -> Consular services (5352ms) Where is Venezuela? several reasons 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is very interesting for, several reasons) -> several reasons (5362ms) Where is Venezuela? professional purposes 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, were for, professional purposes) -> professional purposes (5371ms) Where is Venezuela? the prevalence 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, is third globally for, the prevalence) -> the prevalence (5371ms) Where is Venezuela? Luis Posada Carriles 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, has been waiting for, Luis Posada Carriles) -> Luis Posada Carriles (5353ms) Where is Venezuela? the Gold Medal Team 0.33333333333200005 Where is Venezuela? -> $x: (venezuelum, be for, $x) -> (Venezuela, was selected for, the Gold Medal Team) -> the Gold Medal Team (5367ms) Where is Venezuela? a more vulnerable position 0.333333333331 Where is Venezuela? -> $x: (venezuelum, be now in, $x) -> (Venezuela, is now in, a more vulnerable position) -> a more vulnerable position (5375ms) Where is Venezuela? critical condition 0.333333333331 Where is Venezuela? -> $x: (venezuelum, be now in, $x) -> (Venezuela, is now in, critical condition) -> critical condition (5379ms) Where is Venezuela? jail 0.333333333331 Where is Venezuela? -> $x: (venezuelum, be now in, $x) -> (Venezuela, is now in, jail) -> jail (5375ms) Where is Venezuela? a very good position 0.333333333331 Where is Venezuela? -> $x: (venezuelum, be now in, $x) -> (Venezuela, is now in, a very good position) -> a very good position (5375ms) Where is Venezuela? the second round 0.333333333331 Where is Venezuela? -> $x: (venezuelum, be now in, $x) -> (Venezuela, is now 3-3 in, the second round) -> the second round (5379ms) Where is Venezuela? the hands 0.333333333331 Where is Venezuela? -> $x: (venezuelum, be now in, $x) -> (?Venezuela?s gold, is now in, the hands) -> the hands (5375ms) Where is Venezuela? English 0.333333333331 Where is Venezuela? -> $x: (venezuelum, be now in, $x) -> (Venezuela, now am reading in, English) -> English (5379ms) Where is Venezuela? more than 30 countries 0.333333333331 Where is Venezuela? -> $x: (venezuelum, be now in, $x) -> (Venezuela campaign, is now active in, more than 30 countries) -> more than 30 countries (5375ms) Where is Venezuela? the side 0.333333333331 Where is Venezuela? -> $x: (venezuelum, be now in, $x) -> (Venezuela, is now a major thorn in, the side) -> the side (5375ms) Where is Venezuela? a painful economic crisis 0.333333333331 Where is Venezuela? -> $x: (venezuelum, be now in, $x) -> (Venezuela, is now mired in, a painful economic crisis) -> a painful economic crisis (5379ms) Where is Venezuela? an unseemly tug-of-war 0.333333333331 Where is Venezuela? -> $x: (venezuelum, be now in, $x) -> (Venezuela, are now engaged in, an unseemly tug-of-war) -> an unseemly tug-of-war (5375ms) Where is Venezuela? the win 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (the win, was, Venezuela) -> the win (5395ms) Where is Venezuela? list 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (list, are, Venezuela) -> list (5392ms) Where is Venezuela? states 0.22222222222100002 Where is Venezuela? -> $x: ($x, border, venezuelum) -> (states, bordering, Venezuela) -> states (5399ms) Where is Venezuela? the same patron 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (the same patron, is, Venezuela ?) -> the same patron (5397ms) Where is Venezuela? The type locality 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (The type locality, is, Venezuela) -> The type locality (5387ms) Where is Venezuela? the dike 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (the dike, is, Venezuela) -> the dike (5395ms) Where is Venezuela? the main creditors 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (the main creditors, is, Venezuela) -> the main creditors (5387ms) Where is Venezuela? The other big factor 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (The other big factor, is, Venezuela) -> The other big factor (5390ms) Where is Venezuela? The countries 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (The countries, are, Venezuela) -> The countries (5392ms) Where is Venezuela? Avensa 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (Avensa, was, Venezuela) -> Avensa (5395ms) Where is Venezuela? the Baker Institute report 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (the Baker Institute report, was, Venezuela) -> the Baker Institute report (5395ms) Where is Venezuela? Last countries where we delivered our goods 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (Last countries where we delivered our goods, are, Venezuela) -> Last countries where we delivered our goods (5395ms) Where is Venezuela? the major prize 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (the major prize, is, Venezuela) -> the major prize (5395ms) Where is Venezuela? one of which 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (one of which, was, Venezuela) -> one of which (5392ms) Where is Venezuela? one member 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (one member, is, Venezuela) -> one member (5392ms) Where is Venezuela? A current exception 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (A current exception, is, Venezuela) -> A current exception (5392ms) Where is Venezuela? Arauca 0.22222222222100002 Where is Venezuela? -> $x: ($x, border, venezuelum) -> (Arauca, has a long border with, Venezuela) -> Arauca (5389ms) Where is Venezuela? PDVSA 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (PDVSA, is, Venezuela) -> PDVSA (5389ms) Where is Venezuela? Last countries where we exported our goods 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (Last countries where we exported our goods, are, Venezuela) -> Last countries where we exported our goods (5397ms) Where is Venezuela? The Orinoco Belt 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (The Orinoco Belt, is, Venezuela) -> The Orinoco Belt (5392ms) Where is Venezuela? The most problematic place 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (The most problematic place, is, Venezuela) -> The most problematic place (5389ms) Where is Venezuela? The United States 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (The United States, is, Venezuela) -> The United States (5383ms) Where is Venezuela? One of them 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (One of them, is, Venezuela) -> One of them (5387ms) Where is Venezuela? the two main candidates 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (the two main candidates, are, Venezuela) -> the two main candidates (5395ms) Where is Venezuela? foreign policy 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (foreign policy, is, Venezuela) -> foreign policy (5397ms) Where is Venezuela? Second 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (Second, was, Venezuela) -> Second (5395ms) Where is Venezuela? Energy 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (Energy, is, Venezuela) -> Energy (5395ms) Where is Venezuela? SPanish 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (SPanish, is the language of the country, venezuela) -> SPanish (5395ms) Where is Venezuela? 2907 Offline Lincs 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (2907 Offline Lincs, is, Venezuela) -> 2907 Offline Lincs (5389ms) Where is Venezuela? Latin American 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (Latin American, is, Venezuela) -> Latin American (5397ms) Where is Venezuela? the east 0.22222222222100002 Where is Venezuela? -> $x: ($x, border, venezuelum) -> (the east, also has land borders with, Venezuela) -> the east (5387ms) Where is Venezuela? The setting 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (The setting, is, Venezuela) -> The setting (5395ms) Where is Venezuela? story 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (story, Is, Venezuela) -> story (5397ms) Where is Venezuela? Last countries where we delivered our items 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (Last countries where we delivered our items, are, Venezuela) -> Last countries where we delivered our items (5397ms) Where is Venezuela? one of the countries 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (one of the countries, is, Venezuela) -> one of the countries (5389ms) Where is Venezuela? Last countries where we sold our items 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (Last countries where we sold our items, are, Venezuela) -> Last countries where we sold our items (5395ms) Where is Venezuela? 75 years 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (75 years, are, Venezuela) -> 75 years (5389ms) Where is Venezuela? question 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (question, is, Venezuela) -> question (5387ms) Where is Venezuela? Last countries where we sold our goods 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (Last countries where we sold our goods, are, Venezuela) -> Last countries where we sold our goods (5383ms) Where is Venezuela? The exception 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (The exception, is, Venezuela) -> The exception (5392ms) Where is Venezuela? Bernardo Alvarez Herrera 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (Bernardo Alvarez Herrera, is, Venezuela) -> Bernardo Alvarez Herrera (5387ms) Where is Venezuela? the most immediate example 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (the most immediate example, is, Venezuela) -> the most immediate example (5383ms) Where is Venezuela? the month 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (the month, was, Venezuela) -> the month (5390ms) Where is Venezuela? The archipelago 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (The archipelago, is, Venezuela) -> The archipelago (5383ms) Where is Venezuela? the River Arauca 0.22222222222100002 Where is Venezuela? -> $x: ($x, border, venezuelum) -> (the River Arauca, forms the border with, Venezuela) -> the River Arauca (5397ms) Where is Venezuela? fourteen months 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (fourteen months, was, Venezuela) -> fourteen months (5397ms) Where is Venezuela? stake 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (stake, is, Venezuela) -> stake (5392ms) Where is Venezuela? One example 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (One example, is, Venezuela) -> One example (5390ms) Where is Venezuela? ENglish 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (ENglish, is the language of the country, venezuela) -> ENglish (5383ms) Where is Venezuela? the UK, Guyana 0.22222222222100002 Where is Venezuela? -> $x: ($x, border, venezuelum) -> (the UK, Guyana, is bordered by, Venezuela) -> the UK, Guyana (5387ms) Where is Venezuela? The Mexican-owned Cemex 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (The Mexican-owned Cemex, is, Venezuela) -> The Mexican-owned Cemex (5389ms) Where is Venezuela? Rio Atabapo 0.22222222222100002 Where is Venezuela? -> $x: ($x, border, venezuelum) -> (Rio Atabapo, marks the border between, Colombia and Venezuela) -> Rio Atabapo (5383ms) Where is Venezuela? the other border 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (the other border, is, Venezuela) -> the other border (5389ms) Where is Venezuela? 2003 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (2003, were, Venezuela) -> 2003 (5395ms) Where is Venezuela? countries 0.22222222222100002 Where is Venezuela? -> $x: ($x, border, venezuelum) -> (countries, bordering, Venezuela) -> countries (5392ms) Where is Venezuela? the euro 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (the euro, is, Venezuela) -> the euro (5383ms) Where is Venezuela? The only exception 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (The only exception, is, Venezuela) -> The only exception (5387ms) Where is Venezuela? close 6th November 2011 Miss World 2011 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (close 6th November 2011 Miss World 2011, is, Venezuela) -> close 6th November 2011 Miss World 2011 (5397ms) Where is Venezuela? democracy 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (democracy, was, Venezuela) -> democracy (5399ms) Where is Venezuela? the compounding state of insanity 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (the compounding state of insanity, is, Venezuela) -> the compounding state of insanity (5397ms) Where is Venezuela? The country 0.22222222222100002 Where is Venezuela? -> $x: ($x, border, venezuelum) -> (The country, is bordered by, Venezuela) -> The country (5387ms) Where is Venezuela? The next stop 0.22222222222100002 Where is Venezuela? -> $x: ($x, be be, venezuelum) -> (The next stop, is, Venezuela) -> The next stop (5392ms) Where is Venezuela? Colombian soldiers 0.22222222222100002 Where is Venezuela? -> $x: ($x, border, venezuelum) -> (Colombian soldiers, temporarily cross the border with, Venezuela) -> Colombian soldiers (5387ms) Where is Venezuela? the Or?noque 0.22222222222100002 Where is Venezuela? -> $x: ($x, border, venezuelum) -> (the Or?noque, is also the border between, Venezuela and Brazil) -> the Or?noque (5395ms) Who developed potlatch? Tribal communities -0.333333333334 Who developed potlatch? -> $x: (potlatch, develop in, $x) -> (Potlatch Fund, develops leaders in, Tribal communities) -> Tribal communities (608ms) What are some Bon Jovi hits? a familiar song 0.22222222221800003 What are some Bon Jovi hits? -> $x: ($x, hit, bon jovi) -> (a familiar song, was a huge hit for, Bon Jovi) -> a familiar song (716ms) What are some Bon Jovi hits? old rock 0.22222222221800003 What are some Bon Jovi hits? -> $x: ($x, hit, bon jovi) -> (old rock, hits such as, Bon Jovi?s ?Living) -> old rock (716ms) What are some Bon Jovi hits? singles -0.444444444442 What are some Bon Jovi hits? -> $x: (jon bon jovi, hit, $x) -> (ROBERT PACE March 21 , 2012 Jon Bon Jovi, has had hit, singles) -> singles (716ms) What are some Bon Jovi hits? a half century -0.444444444442 What are some Bon Jovi hits? -> $x: (jon bon jovi, hit, $x) -> (Jon Bon Jovi, hits, a half century) -> a half century (716ms) What are some Bon Jovi hits? the stage -0.555555555553 What are some Bon Jovi hits? -> $x: (bon jovi, hit, $x) -> (Bon Jovi, hit, the stage) -> the stage (716ms) What are some Bon Jovi hits? 1984 -0.555555555553 What are some Bon Jovi hits? -> $x: (bon jovi, hit, $x) -> (Bon Jovi, had their first hit in, 1984) -> 1984 (716ms) What are some Bon Jovi hits? Usher -0.555555555553 What are some Bon Jovi hits? -> $x: (bon jovi, hit, $x) -> (the Bon Jovi, hit with, Usher) -> Usher (716ms) What are some Bon Jovi hits? song -0.555555555553 What are some Bon Jovi hits? -> $x: (bon jovi, hit, $x) -> (the Bon Jovi, hit, song) -> song (716ms) What are some Bon Jovi hits? the charts -0.555555555553 What are some Bon Jovi hits? -> $x: (bon jovi, hit, $x) -> (Bon Jovi, hit, the charts) -> the charts (716ms) How far does a laser pointer shine? The method -0.0 How far does a laser pointer shine? -> $x: ($x, shine, laser pointer) -> (The method, is to shine, the laser pointer) -> The method (509ms) How far does a laser pointer shine? Do NOT -0.0 How far does a laser pointer shine? -> $x: ($x, shine, laser pointer) -> (Do NOT, shine, laser pointers) -> Do NOT (509ms) How far does a laser pointer shine? The boy -0.0 How far does a laser pointer shine? -> $x: ($x, shine, laser pointer) -> (The boy, would have shined, a laser pointer) -> The boy (509ms) How far does a laser pointer shine? a prankster -0.0 How far does a laser pointer shine? -> $x: ($x, shine, laser pointer) -> (a prankster, had shined, a LASER POINTER) -> a prankster (509ms) How far does a laser pointer shine? Dont -0.0 How far does a laser pointer shine? -> $x: ($x, shine, laser pointer) -> (Dont, shine, a laser pointer) -> Dont (509ms) How far does a laser pointer shine? Don?t -0.0 How far does a laser pointer shine? -> $x: ($x, shine, laser pointer) -> (Don?t, shine, laser pointers) -> Don?t (509ms) How far does a laser pointer shine? the 16th floor -0.0 How far does a laser pointer shine? -> $x: ($x, shine, laser pointer) -> (the 16th floor, shined, a tiny laser pointer) -> the 16th floor (509ms) How far does a laser pointer shine? A man -0.0 How far does a laser pointer shine? -> $x: ($x, shine, laser pointer) -> (A man, shined, a laser pointer) -> A man (509ms) How far does a laser pointer shine? a Winthrop High School hockey player -0.0 How far does a laser pointer shine? -> $x: ($x, shine, laser pointer) -> (a Winthrop High School hockey player, shined, a laser pointer) -> a Winthrop High School hockey player (509ms) What does ACLU stand for? American 0.111111111111 What does ACLU stand for? -> $x: (aclu, stand for, $x) -> (ACLU, stood for, American) -> American (736ms) What does ACLU stand for? Anti Christian Litigation Union 0.111111111111 What does ACLU stand for? -> $x: (aclu, stand for, $x) -> (ACLU, stood for, Anti Christian Litigation Union) -> Anti Christian Litigation Union (759ms) What does ACLU stand for? American Civil Liberties Union 0.111111111111 What does ACLU stand for? -> $x: (aclu, stand for, $x) -> (ACLU, stands for, American Civil Liberties Union) -> American Civil Liberties Union (759ms) What does ACLU stand for? the Fourth Amendment 0.111111111111 What does ACLU stand for? -> $x: (aclu, stand for, $x) -> (The ACLU-NC, has been stood up for, the Fourth Amendment) -> the Fourth Amendment (759ms) What does ACLU stand for? Sgt 0.111111111111 What does ACLU stand for? -> $x: (aclu, stand for, $x) -> (The ACLU, stood up for, Sgt) -> Sgt (736ms) What does ACLU stand for? the 2nd Amendment 0.111111111111 What does ACLU stand for? -> $x: (aclu, stand for, $x) -> (the ACLU, ever stand up for, the 2nd Amendment) -> the 2nd Amendment (759ms) What does ACLU stand for? a basic public right 0.111111111111 What does ACLU stand for? -> $x: (aclu, stand for, $x) -> (the ACLU, has stood up for, a basic public right) -> a basic public right (759ms) What does ACLU stand for? Anti-Christian Lawyers 0.111111111111 What does ACLU stand for? -> $x: (aclu, stand for, $x) -> (ACLU, stands for, Anti-Christian Lawyers) -> Anti-Christian Lawyers (736ms) What does ACLU stand for? ?American? Civil Liberties Union 0.111111111111 What does ACLU stand for? -> $x: (aclu, stand for, $x) -> (ACLU, stands for, ?American? Civil Liberties Union) -> ?American? Civil Liberties Union (736ms) What does ACLU stand for? the whole Bill 0.111111111111 What does ACLU stand for? -> $x: (aclu, stand for, $x) -> (the ACLU, will now actually stand up for, the whole Bill) -> the whole Bill (736ms) What does ACLU stand for? principle 0.111111111111 What does ACLU stand for? -> $x: (aclu, stand for, $x) -> (the ACLU, stands for, principle) -> principle (736ms) What does ACLU stand for? the Anti-Christian Liberal Union 0.111111111111 What does ACLU stand for? -> $x: (aclu, stand for, $x) -> (The ACLU, might well stand for, the Anti-Christian Liberal Union) -> the Anti-Christian Liberal Union (759ms) What does ACLU stand for? expansion 0.111111111111 What does ACLU stand for? -> $x: (aclu, stand for, $x) -> (The ACLU-MN, has always stood for, expansion) -> expansion (759ms) What does ACLU stand for? free speech 0.111111111111 What does ACLU stand for? -> $x: (aclu, stand for, $x) -> (The ACLU, took a controversial stand for, free speech) -> free speech (736ms) What does ACLU stand for? human rights 0.111111111111 What does ACLU stand for? -> $x: (aclu, stand for, $x) -> (the ACLU, stand up for, human rights) -> human rights (759ms) What does ACLU stand for? the rights 0.111111111111 What does ACLU stand for? -> $x: (aclu, stand for, $x) -> (the ACLU?s butt, stands for, the rights) -> the rights (759ms) What does ACLU stand for? the civil rights and liberties 0.111111111111 What does ACLU stand for? -> $x: (aclu, stand for, $x) -> (The ACLU, will stand up for, the civil rights and liberties) -> the civil rights and liberties (759ms) What does ACLU stand for? the United States -0.0 What does ACLU stand for? -> $x: (aclu, stand in, $x) -> (the ACLU, stands on in, the United States) -> the United States (775ms) What does ACLU stand for? liberal causes -0.222222222222 What does ACLU stand for? -> $x: (aclu, be know for, $x) -> (The ACLU, is known for supporting, liberal causes) -> liberal causes (775ms) What does ACLU stand for? Louisiana -0.333333333332 What does ACLU stand for? -> $x: ($x, stand, aclu) -> (Louisiana, stands up to, the ACLU.) -> Louisiana (775ms) What does ACLU stand for? BORDC -0.333333333332 What does ACLU stand for? -> $x: ($x, stand, aclu) -> (BORDC, stands with, the ACLU) -> BORDC (775ms) What does ACLU stand for? card-carrying ACLU members -0.333333333332 What does ACLU stand for? -> $x: ($x, stand, aclu) -> (card-carrying ACLU members, stand behind, the ACLU) -> card-carrying ACLU members (775ms) What does ACLU stand for? Rights Defense Committee -0.333333333332 What does ACLU stand for? -> $x: ($x, stand, aclu) -> (Rights Defense Committee, stands with, the ACLU) -> Rights Defense Committee (775ms) What does ACLU stand for? prayer -0.444444444442 What does ACLU stand for? -> $x: (aclu, stand, $x) -> (The ACLU, has certainly stood against, prayer) -> prayer (777ms) What does ACLU stand for? brainwashing -0.444444444442 What does ACLU stand for? -> $x: (aclu, stand, $x) -> (the ACLU, took a formal stand against, brainwashing) -> brainwashing (776ms) What does ACLU stand for? the very center -0.444444444442 What does ACLU stand for? -> $x: (aclu, stand, $x) -> (ACLU, stands at, the very center) -> the very center (777ms) What does ACLU stand for? the United States Supreme Court -0.444444444442 What does ACLU stand for? -> $x: (aclu, stand, $x) -> (ACLU attorneys, stand before, the United States Supreme Court) -> the United States Supreme Court (776ms) What does ACLU stand for? the Supreme Court -0.444444444442 What does ACLU stand for? -> $x: (aclu, stand, $x) -> (ACLU attorneys, stand before, the Supreme Court) -> the Supreme Court (776ms) What does ACLU stand for? little chance -0.444444444442 What does ACLU stand for? -> $x: (aclu, stand, $x) -> (the ACLU, stand, little chance) -> little chance (776ms) What does ACLU stand for? the American Legion -0.444444444442 What does ACLU stand for? -> $x: (aclu, stand, $x) -> (The ACLU, stands with, the American Legion) -> the American Legion (777ms) What does ACLU stand for? the ACLU -0.444444444442 What does ACLU stand for? -> $x: (aclu, stand, $x) -> (card-carrying ACLU members, stand behind, the ACLU) -> the ACLU (777ms) What does ACLU stand for? the war -0.444444444442 What does ACLU stand for? -> $x: (aclu, stand, $x) -> (the ACLU, is reluctant to take a stand on, the war) -> the war (777ms) What does ACLU stand for? conservatives -0.444444444442 What does ACLU stand for? -> $x: (aclu, stand, $x) -> (The ACLU, has stood shoulder-to-shoulder with, conservatives) -> conservatives (777ms) When was the festival held? the Natcher Conference Center 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (The festival, will be held in, the Natcher Conference Center) -> the Natcher Conference Center (3690ms) When was the festival held? Devizes 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (Festivals, are held in, Devizes) -> Devizes (4776ms) When was the festival held? honor of the gods 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (festivals, are held in, honor of the gods) -> honor of the gods (3435ms) When was the festival held? the Samb?dromo 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (Festivals Festivals, are usually held in, the Samb?dromo) -> the Samb?dromo (4716ms) When was the festival held? Trieste 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (Festivals, are held in, Trieste) -> Trieste (4854ms) When was the festival held? the province?s seat 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (festivals, are held only in, the province?s seat) -> the province?s seat (4752ms) When was the festival held? Manchester 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (The festival, will be held in, Manchester) -> Manchester (4717ms) When was the festival held? 1996 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (The festival, was held in, 1996) -> 1996 (4776ms) When was the festival held? March 2013 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (festival, will be held in, March 2013) -> March 2013 (3944ms) When was the festival held? Catalonia 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (Festivals Numerous popular festivals, are held in, Catalonia) -> Catalonia (3691ms) When was the festival held? Salida 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (Festivals, are also held in, Salida) -> Salida (4717ms) When was the festival held? the Adelaide Riverbank Precinct 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (' Festival, will be held in, the Adelaide Riverbank Precinct) -> the Adelaide Riverbank Precinct (3435ms) When was the festival held? the business district 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (Festival, is held in, the business district) -> the business district (4854ms) When was the festival held? the springtime 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (The festival, was held in, the springtime) -> the springtime (4000ms) When was the festival held? London and Plymouth 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (Festivals, have been held in, London and Plymouth) -> London and Plymouth (4753ms) When was the festival held? Mumbai 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (Festival, is held in, Mumbai) -> Mumbai (3943ms) When was the festival held? Olympia 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (Festival, was held in, Olympia) -> Olympia (4752ms) When was the festival held? Idaho 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (festivals, are held in, Idaho) -> Idaho (3771ms) When was the festival held? three stages 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (Festival, will be held in, three stages) -> three stages (4000ms) When was the festival held? the state 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (festivals, are held in, the state) -> the state (4716ms) When was the festival held? the first ten days 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (Festival, is held in, the first ten days) -> the first ten days (4776ms) When was the festival held? each city 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (The festivals, are held in, each city) -> each city (4717ms) When was the festival held? Katherine 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (' festival, was held in, Katherine) -> Katherine (4854ms) When was the festival held? Santo Domingo 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (Festival, will be held in, Santo Domingo) -> Santo Domingo (3435ms) When was the festival held? August 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (the festival, will be held in, August) -> August (4872ms) When was the festival held? Karlovac. 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (The festival, is held in, Karlovac.) -> Karlovac. (4824ms) When was the festival held? more than 25 locations 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (Festivals, are held each spring in, more than 25 locations) -> more than 25 locations (3435ms) When was the festival held? Helsinki 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (Festival, was held in, Helsinki) -> Helsinki (4717ms) When was the festival held? Raleigh 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (Festival, will be held in, Raleigh) -> Raleigh (4716ms) When was the festival held? late February 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (Festivals, were held in, late February) -> late February (4001ms) When was the festival held? Oberursel 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (festivals, was held in, Oberursel) -> Oberursel (4776ms) When was the festival held? June 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (Festivals, are held in, June) -> June (3690ms) When was the festival held? Nashville 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (Festival, will be held in, Nashville) -> Nashville (3771ms) When was the festival held? February 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (Flower Festival Flower Festival, is held in, February) -> February (4752ms) When was the festival held? San Juan 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (' Festival, was held in, San Juan) -> San Juan (4825ms) When was the festival held? different parts 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (Festivals, are held in, different parts) -> different parts (4776ms) When was the festival held? November 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (Festival, to be held in, November) -> November (4752ms) When was the festival held? May 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (the Festival, is held in, May) -> May (4854ms) When was the festival held? Mysore 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (Festivals Dasara festival celebrations, are held in, Mysore) -> Mysore (4854ms) When was the festival held? the Village Park 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (Festival Festival, is held in, the Village Park) -> the Village Park (3584ms) When was the festival held? honor 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (Festivals, were also held in, honor) -> honor (3943ms) When was the festival held? old English 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (Festival, will be held in, old English) -> old English (4000ms) When was the festival held? Oslo 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (festivals, are held in, Oslo) -> Oslo (3435ms) When was the festival held? Vancouver 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (The festival, is held in, Vancouver) -> Vancouver (3583ms) When was the festival held? the most beautiful venue 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (festivals, is held in, the most beautiful venue) -> the most beautiful venue (3771ms) When was the festival held? the region 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (Festival, was held in, the region) -> the region (3944ms) When was the festival held? the golden season of autumn 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (The festival, is held in, the golden season of autumn) -> the golden season of autumn (4752ms) When was the festival held? 40 U.S. states 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (Festivals, have been held in nearly, 40 U.S. states) -> 40 U.S. states (4717ms) When was the festival held? Harbor Park 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (The festival, is held in, Harbor Park) -> Harbor Park (4854ms) When was the festival held? places 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (festivals, have been held in, places) -> places (3584ms) When was the festival held? Brisbane 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (Festival, is being held in, Brisbane) -> Brisbane (4854ms) When was the festival held? the field 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (The Festival, is held in, the field) -> the field (4854ms) When was the festival held? Chicago 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (festivals, have been held in, Chicago) -> Chicago (4825ms) When was the festival held? various locations 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (' Festival, will be held in, various locations) -> various locations (4825ms) When was the festival held? Ireland 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (Festivals, were held in, Ireland) -> Ireland (4825ms) When was the festival held? the first week 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (Festival, is held every year in, the first week) -> the first week (3584ms) When was the festival held? Haka 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (' Festival, is scheduled to be held in, Haka) -> Haka (3584ms) When was the festival held? honor of Gauri 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (The festival, is held in, honor of Gauri) -> honor of Gauri (3771ms) When was the festival held? Grahamstown 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (a festival, being held in, Grahamstown) -> Grahamstown (4854ms) When was the festival held? Vientiane 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (Festival, was held in, Vientiane) -> Vientiane (3584ms) When was the festival held? downtown Atlanta 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (Festival, is held annually in, downtown Atlanta) -> downtown Atlanta (4000ms) When was the festival held? Israel and Bulgaria 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (Festival, will be held in, Israel and Bulgaria) -> Israel and Bulgaria (4776ms) When was the festival held? real estate 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (festivals, are large held in, real estate) -> real estate (4776ms) When was the festival held? the Plage Verte park 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (festivals, are held in, the Plage Verte park) -> the Plage Verte park (3435ms) When was the festival held? late May 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (the festival, is held in, late May) -> late May (3771ms) When was the festival held? cities 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (Festivals, will be held in, cities) -> cities (3584ms) When was the festival held? September 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (Festival, is held in, September) -> September (4854ms) When was the festival held? multiple venues 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (The Festival, will be held in, multiple venues) -> multiple venues (3944ms) When was the festival held? spring 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (Festivals, are held in, spring) -> spring (4752ms) When was the festival held? 2008 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (festivals, were held in, 2008) -> 2008 (3690ms) When was the festival held? India 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (festivals, are held in, India) -> India (4000ms) When was the festival held? January 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (The festival, is held in, January) -> January (4825ms) When was the festival held? Santiago 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (festival, is held in, Santiago) -> Santiago (4854ms) When was the festival held? Japan 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (' festival, is held each May in, Japan) -> Japan (3771ms) When was the festival held? the longhouse 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (Festivals, are held in, the longhouse) -> the longhouse (3691ms) When was the festival held? October 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (festival, is held the third weekend in, October) -> October (4824ms) When was the festival held? Silver Lake 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (festival, might be held in, Silver Lake) -> Silver Lake (3435ms) When was the festival held? 1987 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (Festival, was held here in, 1987) -> 1987 (3771ms) When was the festival held? the Melbourne Town Hall 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (' Festival, will be held in, the Melbourne Town Hall) -> the Melbourne Town Hall (4824ms) When was the festival held? the Rakhaing State 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (the festival, is mainly held in, the Rakhaing State) -> the Rakhaing State (4000ms) When was the festival held? Chisinau 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (The festival, is held in, Chisinau) -> Chisinau (3944ms) When was the festival held? the country 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (! Festivals, are being held everywhere in, the country) -> the country (4854ms) When was the festival held? the summer 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (festivals, are held in, the summer) -> the summer (3584ms) When was the festival held? Los Angeles 0.777777777782 When was the festival held? -> $x: (festival, be hold in, $x) -> (festival, is held in, Los Angeles) -> Los Angeles (3944ms) When was the festival held? Auckland and Wellington 0.333333333333 When was the festival held? -> $x: (diwalus, be hold in, $x) -> (Annual Diwali festivals, are held in, Auckland and Wellington) -> Auckland and Wellington (4872ms) When was the festival held? every community 0.333333333333 When was the festival held? -> $x: (diwalus, be hold in, $x) -> (the Diwali festival, is held in almost, every community) -> every community (4872ms) When was the festival held? Ardara 0.222222222223 When was the festival held? -> $x: (traditional festival, be hold in, $x) -> (This oddly named traditional music festival, is held in, Ardara) -> Ardara (4872ms) When was the festival held? the Emmental Region once 0.222222222223 When was the festival held? -> $x: (traditional festival, be hold in, $x) -> (This traditional festival, is held in, the Emmental Region once) -> the Emmental Region once (4872ms) When was the festival held? Tinos 0.222222222223 When was the festival held? -> $x: (traditional festival, be hold in, $x) -> (traditional festivals, are held in, Tinos) -> Tinos (4872ms) When was the festival held? Gibraltar 0.222222222223 When was the festival held? -> $x: (traditional festival, be hold in, $x) -> (the traditional Chess Festival, is being held in, Gibraltar) -> Gibraltar (4872ms) When was the festival held? the town 0.222222222223 When was the festival held? -> $x: (traditional festival, be hold in, $x) -> (a traditional folk lore festival, was held in, the town) -> the town (4872ms) When was the festival held? sheep pastures 0.222222222223 When was the festival held? -> $x: (traditional festival, be hold in, $x) -> (Traditional Beltaine festivals, were held in, sheep pastures) -> sheep pastures (4872ms) When was the festival held? Chiang Mai 0.222222222223 When was the festival held? -> $x: (traditional festival, be hold in, $x) -> (Traditional Thai Kite Festival 2012, will be held in, Chiang Mai) -> Chiang Mai (4872ms) When was the festival held? the grounds 0.111111111111 When was the festival held? -> $x: (festival food, be hold in, $x) -> (The Aldeburgh food festival, is also held in, the grounds) -> the grounds (4886ms) When was the festival held? Miami 0.111111111111 When was the festival held? -> $x: (festival food, be hold in, $x) -> (The food festivals, are annually held in, Miami) -> Miami (4872ms) When was the festival held? Sawankhalok district 0.111111111111 When was the festival held? -> $x: (festival food, be hold in, $x) -> (Food Festival, is being held in, Sawankhalok district) -> Sawankhalok district (4886ms) When was the festival held? the city 0.111111111111 When was the festival held? -> $x: (festival food, be hold in, $x) -> (an annual Festival of Food and Drink, has been held in, the city) -> the city (4879ms) When was the festival held? Buckhorn 0.111111111111 When was the festival held? -> $x: (festival food, be hold in, $x) -> (a food , wine and beer festival, is held in, Buckhorn) -> Buckhorn (4886ms) When was the festival held? conjunction 0.111111111111 When was the festival held? -> $x: (festival food, be hold in, $x) -> (The Heritage Food Festival, is being held in, conjunction) -> conjunction (4879ms) When was the festival held? Missoula 0.111111111111 When was the festival held? -> $x: (festival food, be hold in, $x) -> (Real Food Film Festival, will be held in, Missoula) -> Missoula (4879ms) When was the festival held? Oct 2011 0.111111111111 When was the festival held? -> $x: (festival food, be hold in, $x) -> (The 5th Annual NYC Food Film Festival, was held in, Oct 2011) -> Oct 2011 (4872ms) When was the festival held? Hokitika 0.111111111111 When was the festival held? -> $x: (festival food, be hold in, $x) -> (The Wild Food Festival, has been held annually in, Hokitika) -> Hokitika (4879ms) When was the festival held? the afternoon 0.111111111111 When was the festival held? -> $x: (festival food, be hold in, $x) -> (a food & craft festival, will be held in, the afternoon) -> the afternoon (4879ms) When was the festival held? March 0.111111111111 When was the festival held? -> $x: (festival food, be hold in, $x) -> (the famous Wild Foods Festival, is held in, March) -> March (4879ms) When was the festival held? the month 0.111111111111 When was the festival held? -> $x: (festival food, be hold in, $x) -> (the Singapore Food Festival, is held in, the month) -> the month (4879ms) When was the festival held? Thiruvananthapuram 0.111111111111 When was the festival held? -> $x: (festival food, be hold in, $x) -> (The national food festival, is held in, Thiruvananthapuram) -> Thiruvananthapuram (4886ms) When was the festival held? the 900 block 0.111111111111 When was the festival held? -> $x: (festival food, be hold in, $x) -> (The Food Festival, will be held in, the 900 block) -> the 900 block (4886ms) When was the festival held? Los Cabos 0.111111111111 When was the festival held? -> $x: (festival food, be hold in, $x) -> (a Cabo Food Festival 2011, will be held in, Los Cabos) -> Los Cabos (4886ms) When was the festival held? Sawan Khalok district 0.111111111111 When was the festival held? -> $x: (festival food, be hold in, $x) -> (Food Festival, is being held in, Sawan Khalok district) -> Sawan Khalok district (4879ms) When was the festival held? King George Park 0.111111111111 When was the festival held? -> $x: (festival food, be hold in, $x) -> (the North West food festival, is being held in, King George Park) -> King George Park (4886ms) When was the festival held? Palm Desert 0.111111111111 When was the festival held? -> $x: (festival food, be hold in, $x) -> (The Food and Wine Festival, will be held in, Palm Desert) -> Palm Desert (4879ms) When was the festival held? various regions 0.111111111111 When was the festival held? -> $x: (festival food, be hold in, $x) -> (Food festivals and workshops, are often held in, various regions) -> various regions (4879ms) When was the festival held? August 11th -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, August 11th) -> August 11th (4893ms) When was the festival held? the first weekend -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (the Festival, is held on, the first weekend) -> the first weekend (4898ms) When was the festival held? the solstices and equinoxes -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festivals, were held on, the solstices and equinoxes) -> the solstices and equinoxes (4924ms) When was the festival held? the August long weekend -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (The festival, is held on, the August long weekend) -> the August long weekend (4924ms) When was the festival held? August 4th , 2012 -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, August 4th , 2012) -> August 4th , 2012 (4928ms) When was the festival held? weekends -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, is held on, weekends) -> weekends (4914ms) When was the festival held? the day -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festivals, are here still held here on, the day) -> the day (4904ms) When was the festival held? Main Street -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (The Festival, is held on, Main Street) -> Main Street (4903ms) When was the festival held? different dates -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (The festival, is held on, different dates) -> different dates (4924ms) When was the festival held? August 1969 -0.0 When was the festival held? -> $x: (woodstock festival, be hold in, $x) -> (the Woodstock Festival, was held in, August 1969) -> August 1969 (4908ms) When was the festival held? June 9th -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, June 9th) -> June 9th (4904ms) When was the festival held? June 15 -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, June 15) -> June 15 (4919ms) When was the festival held? Nanhao Street -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (festival, is held on, Nanhao Street) -> Nanhao Street (4898ms) When was the festival held? an almost daily basis -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (festivals, are held on, an almost daily basis) -> an almost daily basis (4893ms) When was the festival held? October 6th -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, October 6th) -> October 6th (4909ms) When was the festival held? June 2nd , 2012 -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, June 2nd , 2012) -> June 2nd , 2012 (4919ms) When was the festival held? March 10 -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (the festival?s, will be held on, March 10) -> March 10 (4919ms) When was the festival held? the National Mall -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (The festival, will be held on, the National Mall) -> the National Mall (4924ms) When was the festival held? campus -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (The festival, was held on, campus) -> campus (4904ms) When was the festival held? June 2nd -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, June 2nd) -> June 2nd (4886ms) When was the festival held? April 21st , 2012 -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, April 21st , 2012) -> April 21st , 2012 (4928ms) When was the festival held? July 2-29 -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, July 2-29) -> July 2-29 (4893ms) When was the festival held? the ancient Gaelic holiday -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (festivals, will be held on, the ancient Gaelic holiday) -> the ancient Gaelic holiday (4904ms) When was the festival held? a grand scale -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festivals, can be held on, a grand scale) -> a grand scale (4928ms) When was the festival held? June 7 -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (The festival, will be held on, June 7) -> June 7 (4886ms) When was the festival held? Friday -0.0 When was the festival held? -> $x: (diwalus, be hold on, $x) -> (The Diwali Celebration Function, was held on, Friday) -> Friday (4904ms) When was the festival held? Zary -0.0 When was the festival held? -> $x: (woodstock festival, be hold in, $x) -> (The 5th free Station Woodstock rock festival, was held in, Zary) -> Zary (4924ms) When was the festival held? the night of the 12th full moon -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (The festival, is held on, the night of the 12th full moon) -> the night of the 12th full moon (4904ms) When was the festival held? May 15 -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (the festival, will be held on, May 15) -> May 15 (4919ms) When was the festival held? upstate New York -0.0 When was the festival held? -> $x: (woodstock festival, be hold in, $x) -> (The Woodstock 1999 festival, is held in, upstate New York) -> upstate New York (4919ms) When was the festival held? November 9-11 , 2012 -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, November 9-11 , 2012) -> November 9-11 , 2012 (4913ms) When was the festival held? the 15th of February -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (The Festival, was held on, the 15th of February) -> the 15th of February (4913ms) When was the festival held? 2nd -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, was held on, 2nd) -> 2nd (4928ms) When was the festival held? 23 Spring -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (The festival, is held on, 23 Spring) -> 23 Spring (4913ms) When was the festival held? 8 and 9 September -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, 8 and 9 September) -> 8 and 9 September (4924ms) When was the festival held? Feb. 24-25 -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (The festival, will be held on, Feb. 24-25) -> Feb. 24-25 (4913ms) When was the festival held? September 12- 13 -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (festivals, were held on, September 12- 13) -> September 12- 13 (4886ms) When was the festival held? two days -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (The festival, is held on, two days) -> two days (4919ms) When was the festival held? June 23rd -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, June 23rd) -> June 23rd (4928ms) When was the festival held? the occasions -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festivals, are held here on, the occasions) -> the occasions (4913ms) When was the festival held? New York -0.0 When was the festival held? -> $x: (woodstock festival, be hold in, $x) -> (The Woodstock 99 festival, is held in, New York) -> New York (4913ms) When was the festival held? December 8th -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, December 8th) -> December 8th (4893ms) When was the festival held? 1934 -0.0 When was the festival held? -> $x: (harvest festival, be hold in, $x) -> (The Harvest Festival, was first held in, 1934) -> 1934 (4924ms) When was the festival held? Wolfe Island -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, is held on, Wolfe Island) -> Wolfe Island (4886ms) When was the festival held? Penang -0.0 When was the festival held? -> $x: (dragon boat festival, be hold in, $x) -> (The international dragon boat festival, is held in, Penang) -> Penang (4919ms) When was the festival held? 1981 -0.0 When was the festival held? -> $x: (harvest festival, be hold in, $x) -> (? The first Katy Rice Harvest Festival, was held in, 1981) -> 1981 (4924ms) When was the festival held? August 17th -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, August 17th) -> August 17th (4909ms) When was the festival held? Gran Canaria -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, is going to be held on, Gran Canaria) -> Gran Canaria (4898ms) When was the festival held? New Zealand -0.0 When was the festival held? -> $x: (harvest festival, be hold in, $x) -> (Similar harvest festivals, are held in, New Zealand) -> New Zealand (4893ms) When was the festival held? the HUB lawn -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (festival, will be held on, the HUB lawn) -> the HUB lawn (4893ms) When was the festival held? 40 countries -0.0 When was the festival held? -> $x: (dragon boat festival, be hold in, $x) -> (Dragon Boat festivals, are held in over, 40 countries) -> 40 countries (4886ms) When was the festival held? a farm -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (The festival, is held on, a farm) -> a farm (4898ms) When was the festival held? several locations -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (festival, was held on, several locations) -> several locations (4913ms) When was the festival held? June 7th -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, June 7th) -> June 7th (4924ms) When was the festival held? August 4th -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, August 4th) -> August 4th (4886ms) When was the festival held? the farm -0.0 When was the festival held? -> $x: (harvest festival, be hold in, $x) -> (The harvest festival, was held in, the farm) -> the farm (4919ms) When was the festival held? June 8 -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, June 8) -> June 8 (4909ms) When was the festival held? August 9th -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, August 9th) -> August 9th (4908ms) When was the festival held? memory -0.0 When was the festival held? -> $x: (dragon boat festival, be hold in, $x) -> (the Dragon Boat Festival, is held in, memory) -> memory (4914ms) When was the festival held? public property -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (the festival, to be held on, public property) -> public property (4924ms) When was the festival held? an area -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (The festival, is held on, an area) -> an area (4898ms) When was the festival held? Bethel -0.0 When was the festival held? -> $x: (woodstock festival, be hold in, $x) -> (the famous 1969 Woodstock Festival, was actually held in, Bethel) -> Bethel (4903ms) When was the festival held? two stages -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (The festival, is held on, two stages) -> two stages (4913ms) When was the festival held? the weekend -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (The festival, is held on, the weekend) -> the weekend (4893ms) When was the festival held? such events -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (festivals, are held on, such events) -> such events (4886ms) When was the festival held? July 27th -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, July 27th) -> July 27th (4898ms) When was the festival held? the first Thursday -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (festivals, has been held every year on, the first Thursday) -> the first Thursday (4893ms) When was the festival held? the final day -0.0 When was the festival held? -> $x: (diwalus, be hold on, $x) -> (Diwali, is held on, the final day) -> the final day (4898ms) When was the festival held? March 17 -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (his festival, was held on, March 17) -> March 17 (4909ms) When was the festival held? the beach -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (The festival, is held on, the beach) -> the beach (4898ms) When was the festival held? various parts -0.0 When was the festival held? -> $x: (harvest festival, be hold in, $x) -> (The date-harvest festival, is held in, various parts) -> various parts (4886ms) When was the festival held? August 3rd -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, August 3rd) -> August 3rd (4928ms) When was the festival held? Sahib-Saptami -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Annual festival, is held on, Sahib-Saptami) -> Sahib-Saptami (4893ms) When was the festival held? May 12th -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, May 12th) -> May 12th (4928ms) When was the festival held? the lawn -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, is held on, the lawn) -> the lawn (4924ms) When was the festival held? April 18 -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (The festival, is held on, April 18) -> April 18 (4913ms) When was the festival held? July 21 and 22 , 2012 -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, July 21 and 22 , 2012) -> July 21 and 22 , 2012 (4909ms) When was the festival held? May 3rd -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, May 3rd) -> May 3rd (4928ms) When was the festival held? August 7th -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, August 7th) -> August 7th (4928ms) When was the festival held? March 12 -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, was held on, March 12) -> March 12 (4924ms) When was the festival held? July -0.0 When was the festival held? -> $x: (harvest festival, be hold in, $x) -> (an annual harvest festival, is now held in, July) -> July (4909ms) When was the festival held? the third weekend -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (the festival, is held on, the third weekend) -> the third weekend (4898ms) When was the festival held? the full moon day -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (' Festival, is held on, the full moon day) -> the full moon day (4913ms) When was the festival held? the final day of the Vikram Calendar -0.0 When was the festival held? -> $x: (diwalus, be hold on, $x) -> (Diwali, is held on, the final day of the Vikram Calendar) -> the final day of the Vikram Calendar (4893ms) When was the festival held? Saturday -0.0 When was the festival held? -> $x: (diwalus, be hold on, $x) -> (Diwali Night 2009, will be held on, Saturday) -> Saturday (4932ms) When was the festival held? a moonlit evening -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (festivals, should be held on, a moonlit evening) -> a moonlit evening (4928ms) When was the festival held? May 5th , 2012 -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, May 5th , 2012) -> May 5th , 2012 (4893ms) When was the festival held? April 21st -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, April 21st) -> April 21st (4913ms) When was the festival held? 1995 -0.0 When was the festival held? -> $x: (woodstock festival, be hold in, $x) -> (The first Woodstock Festival, was held in, 1995) -> 1995 (4909ms) When was the festival held? Montmartre -0.0 When was the festival held? -> $x: (harvest festival, be hold in, $x) -> (a harvest festival, is held in, Montmartre) -> Montmartre (4919ms) When was the festival held? December -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, December) -> December (4898ms) When was the festival held? November 10th -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, November 10th) -> November 10th (4924ms) When was the festival held? May 26 -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, May 26) -> May 26 (4924ms) When was the festival held? the last day -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, is held on, the last day) -> the last day (4904ms) When was the festival held? Sat -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, Sat) -> Sat (4928ms) When was the festival held? October 1 -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (The festival, will be held on, October 1) -> October 1 (4924ms) When was the festival held? the iron church -0.0 When was the festival held? -> $x: (harvest festival, be hold in, $x) -> (the first Harvest Festival, was held in, the iron church) -> the iron church (4928ms) When was the festival held? so weather -0.0 When was the festival held? -> $x: (dragon boat festival, be hold in, $x) -> (The DC Dragon Boat Festival, was again held in so, so weather) -> so weather (4909ms) When was the festival held? March 3rd -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (' Festival, is held on, March 3rd) -> March 3rd (4928ms) When was the festival held? the outskirts -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, is held on, the outskirts) -> the outskirts (4893ms) When was the festival held? the beginning -0.0 When was the festival held? -> $x: (harvest festival, be hold in, $x) -> (a popular harvest festival, is usually held in, the beginning) -> the beginning (4904ms) When was the festival held? November 24th -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, November 24th) -> November 24th (4909ms) When was the festival held? June 8th -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, June 8th) -> June 8th (4904ms) When was the festival held? November 17th -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, November 17th) -> November 17th (4904ms) When was the festival held? Memorial Day Weekend -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (The festival, is held on, Memorial Day Weekend) -> Memorial Day Weekend (4919ms) When was the festival held? Dragon Boat Pool -0.0 When was the festival held? -> $x: (dragon boat festival, be hold in, $x) -> (each Dragon Boat Festival, will be held in, Dragon Boat Pool) -> Dragon Boat Pool (4913ms) When was the festival held? Market Square -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, Market Square) -> Market Square (4898ms) When was the festival held? the streets -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, is literally held on, the streets) -> the streets (4904ms) When was the festival held? 25 and 26 February 2012 -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (Festival, will be held on, 25 and 26 February 2012) -> 25 and 26 February 2012 (4893ms) When was the festival held? the last weekend -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (The festival, is held on, the last weekend) -> the last weekend (4909ms) When was the festival held? the 4th and 5th -0.0 When was the festival held? -> $x: (festival, be hold on, $x) -> (? Festival, will be held on, the 4th and 5th) -> the 4th and 5th (4928ms) When was the festival held? Devotees -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (Devotees, love to hold, festivals) -> Devotees (4947ms) When was the festival held? washing -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (washing, are frequently held during, festivals) -> washing (4944ms) When was the festival held? The King -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (The King, liked to hold, festivals) -> The King (4936ms) When was the festival held? the descendants -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (the descendants, to hold, festivals) -> the descendants (4947ms) When was the festival held? Kovalam -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (Kovalam, hold, festivals) -> Kovalam (4940ms) When was the festival held? Even the earliest civilizations -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (Even the earliest civilizations, held, springtime festivals) -> Even the earliest civilizations (4940ms) When was the festival held? Residents -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (Residents, continue to hold, festivals) -> Residents (4944ms) When was the festival held? The park -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (The park, held, festivals) -> The park (4950ms) When was the festival held? Carnac and Vannes -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (Carnac and Vannes, hold, festivals) -> Carnac and Vannes (4947ms) When was the festival held? the village -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (the village, holds, its festival) -> the village (4950ms) When was the festival held? Sufis -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (Sufis, hold, festivals) -> Sufis (4932ms) When was the festival held? Athens -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (Athens, held, a festival) -> Athens (4940ms) When was the festival held? Rockbridge Greens Highly visible -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (Rockbridge Greens Highly visible, recently held, festival) -> Rockbridge Greens Highly visible (4947ms) When was the festival held? towns and villages -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (towns and villages, hold, festivals) -> towns and villages (4932ms) When was the festival held? the trade fairs -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (the trade fairs, held at, festivals) -> the trade fairs (4940ms) When was the festival held? a nine-foot statue -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (a nine-foot statue, began holding, festivals) -> a nine-foot statue (4947ms) When was the festival held? the custom -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (the custom, were held as, festivals) -> the custom (4936ms) When was the festival held? London -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (London, held, ice festivals) -> London (4932ms) When was the festival held? The Italians -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (The Italians, will hold, festivals) -> The Italians (4936ms) When was the festival held? The team -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (The team, regularly holds contests at, festivals) -> The team (4940ms) When was the festival held? Marseille -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (Marseille, holds, festivals) -> Marseille (4940ms) When was the festival held? water puppet performances -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (water puppet performances, are held during, festivals) -> water puppet performances (4947ms) When was the festival held? The town -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (The town, holds, a festival) -> The town (4944ms) When was the festival held? Musicians -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (Musicians, hold, festivals) -> Musicians (4932ms) When was the festival held? Madhya Pradesh -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (Madhya Pradesh, holds, festivals) -> Madhya Pradesh (4932ms) When was the festival held? every weekend -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (every weekend, holds the promise of, festivals) -> every weekend (4936ms) When was the festival held? The Dalkhai -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (The Dalkhai, is held during, festivals) -> The Dalkhai (4947ms) When was the festival held? The Project -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (The Project, holds events like, festivals) -> The Project (4940ms) When was the festival held? the film -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (the film, are being held at, festivals) -> the film (4950ms) When was the festival held? southern coastal Alaska -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (southern coastal Alaska, held a series of, festivals) -> southern coastal Alaska (4940ms) When was the festival held? flies -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (flies, hold, festival) -> flies (4944ms) When was the festival held? March 10th signature event -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (March 10th signature event, held at, Festival) -> March 10th signature event (4936ms) When was the festival held? the glue -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (the glue, held, the festival) -> the glue (4936ms) When was the festival held? foot races -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (foot races, held, festivals) -> foot races (4944ms) When was the festival held? the Church -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (the Church, holds, festival) -> the Church (4932ms) When was the festival held? DCS -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (DCS, plans to hold, festivals) -> DCS (4936ms) When was the festival held? River Devika -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (River Devika, holds, festivals) -> River Devika (4932ms) When was the festival held? celebrants -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (celebrants, held, festivals) -> celebrants (4940ms) When was the festival held? Tashkent city administration -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (Tashkent city administration, held plenty of, festivals) -> Tashkent city administration (4944ms) When was the festival held? Mexican communities -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (Mexican communities, hold, festivals) -> Mexican communities (4932ms) When was the festival held? St . Augustine?s 5K Run/Walk -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (St . Augustine?s 5K Run/Walk, will be held during, Festival) -> St . Augustine?s 5K Run/Walk (4947ms) When was the festival held? the Babylonians -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (the Babylonians, held, a festival) -> the Babylonians (4936ms) When was the festival held? The city -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (The city, holds, festivals) -> The city (4947ms) When was the festival held? France -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (France, holds a number of, Festivals) -> France (4947ms) When was the festival held? Thai boxing bouts -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (Thai boxing bouts, are commonly held during, festivals) -> Thai boxing bouts (4936ms) When was the festival held? The preliminaries -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (The preliminaries, are held at, festivals) -> The preliminaries (4940ms) When was the festival held? Special worship -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (Special worship, is held here during, festival) -> Special worship (4947ms) When was the festival held? signature event -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (signature event, held at, Festival) -> signature event (4932ms) When was the festival held? CSA farms -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (CSA farms, often hold, festivals) -> CSA farms (4950ms) When was the festival held? Villagers -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (Villagers, hold, festivals) -> Villagers (4940ms) When was the festival held? Various peoples in northern Europe -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (Various peoples in northern Europe, held, festivals) -> Various peoples in northern Europe (4944ms) When was the festival held? Pilgrims -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (Pilgrims, hold, festivals) -> Pilgrims (4944ms) When was the festival held? the Romans -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (the Romans, held, a festival) -> the Romans (4940ms) When was the festival held? The bank -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (The bank, holds, festival) -> The bank (4936ms) When was the festival held? the gods -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (the gods, hold, festivals) -> the gods (4944ms) When was the festival held? the upper class -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (the upper class, held, festivals) -> the upper class (4944ms) When was the festival held? The Mallas of Kusinara -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (The Mallas of Kusinara, held, a festival) -> The Mallas of Kusinara (4944ms) When was the festival held? the Norsemen -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (the Norsemen, held, festivals) -> the Norsemen (4936ms) When was the festival held? Malaga -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (Malaga, holds a number of, festivals) -> Malaga (4936ms) When was the festival held? Boxerwood -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (Boxerwood, also holds, festivals) -> Boxerwood (4944ms) When was the festival held? The Vethadipa brahmin -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (The Vethadipa brahmin, held, a festival) -> The Vethadipa brahmin (4936ms) When was the festival held? The groups -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (The groups, hold, festivals) -> The groups (4944ms) When was the festival held? The Yao minority group -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (The Yao minority group, holds, many festivals) -> The Yao minority group (4932ms) When was the festival held? Pagans -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (Pagans, have long held, festivals) -> Pagans (4947ms) When was the festival held? The Sakyas of Kapilavatthu -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (The Sakyas of Kapilavatthu, held, a festival) -> The Sakyas of Kapilavatthu (4936ms) When was the festival held? the ministry -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (the ministry, held, festivals) -> the ministry (4936ms) When was the festival held? The ancient Greeks -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (The ancient Greeks, held, a festival) -> The ancient Greeks (4936ms) When was the festival held? Assyrian music -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (Assyrian music, holds, festivals) -> Assyrian music (4944ms) When was the festival held? the King -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (the King, held, high festival) -> the King (4940ms) When was the festival held? The three counties -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (The three counties, hold a variety of, festivals) -> The three counties (4940ms) When was the festival held? Goldsmiths College -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (Goldsmiths College, is holding, festival) -> Goldsmiths College (4950ms) When was the festival held? the Incas -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (the Incas, held, festivals) -> the Incas (4932ms) When was the festival held? Caritas -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (Caritas, holds, festivals) -> Caritas (4932ms) When was the festival held? The Mallas of Pava -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (The Mallas of Pava, held, a festival) -> The Mallas of Pava (4947ms) When was the festival held? A very active social practice -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (A very active social practice, was to hold, festivals) -> A very active social practice (4944ms) When was the festival held? The Palestinians -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (The Palestinians, have started to hold, festivals) -> The Palestinians (4932ms) When was the festival held? Antibes -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (Antibes, holds, festivals) -> Antibes (4932ms) When was the festival held? Buffalo -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (Buffalo, is to hold, festivals) -> Buffalo (4947ms) When was the festival held? Scots -0.11111111109400018 When was the festival held? -> $x: ($x, hold, festival) -> (Scots, held, festivals) -> Scots (4940ms) When was the festival held? Valencia -0.6666666666500001 When was the festival held? -> $x: ($x, be hold of, festival) -> (Valencia, will be held one of, the most popular street festivals) -> Valencia (4953ms) When was the festival held? the monastery -0.6666666666500001 When was the festival held? -> $x: ($x, be hold of, festival) -> (the monastery, were holding a series of, festivals) -> the monastery (4950ms) When was the festival held? the competition -0.6666666666500001 When was the festival held? -> $x: ($x, be hold of, festival) -> (the competition, are held the first week of, the festival) -> the competition (4953ms) When was the festival held? Classes -0.6666666666500001 When was the festival held? -> $x: ($x, be hold of, festival) -> (Classes, were held all three days of, the festival) -> Classes (4953ms) When was the festival held? the bands -0.6666666666500001 When was the festival held? -> $x: ($x, be hold of, festival) -> (the bands, will be held the first morning of, the festival) -> the bands (4953ms) When was the festival held? The attendance -0.6666666666500001 When was the festival held? -> $x: ($x, be record for, festival) -> (The attendance, is a record for, the festival) -> The attendance (4953ms) When was the festival held? The contest -0.6666666666500001 When was the festival held? -> $x: ($x, be hold of, festival) -> (The contest, will be held both days of, the festival) -> The contest (4953ms) When was the festival held? literary issues -0.6666666666500001 When was the festival held? -> $x: ($x, be hold of, festival) -> (literary issues, will be held everyday of, the festival) -> literary issues (4950ms) When was the festival held? Rabac -0.6666666666500001 When was the festival held? -> $x: ($x, be hold of, festival) -> (Rabac, is held one of, the biggest open air festival) -> Rabac (4953ms) When was the festival held? CAAHW -0.6666666666500001 When was the festival held? -> $x: ($x, be hold of, festival) -> (CAAHW, is holding its annual People of, Color Festival) -> CAAHW (4953ms) When was the festival held? game tournaments -0.6666666666500001 When was the festival held? -> $x: ($x, be hold of, festival) -> (game tournaments, will be held each day of, the festival) -> game tournaments (4953ms) When was the festival held? 29 ,762 pumpkins -0.6666666666500001 When was the festival held? -> $x: ($x, be record for, festival) -> (29 ,762 pumpkins, was a record for, this festival) -> 29 ,762 pumpkins (4953ms) When was the festival held? the earth -0.6666666666500001 When was the festival held? -> $x: ($x, be hold of, festival) -> (the earth, will be held the last day of, the festival) -> the earth (4953ms) When was the festival held? Auditions -0.6666666666500001 When was the festival held? -> $x: ($x, be hold of, festival) -> (Auditions, are held the second week of, the festival) -> Auditions (4953ms) When was the festival held? Sark -0.6666666666500001 When was the festival held? -> $x: ($x, be hold of, festival) -> (Sark, is held a kind of, an annual spring festival) -> Sark (4950ms) When was the festival held? cash prizes -0.6666666666500001 When was the festival held? -> $x: ($x, be hold of, festival) -> (cash prizes, is held the last day of, the festival) -> cash prizes (4953ms) When was the festival held? truth -0.6666666666530001 When was the festival held? -> $x: ($x, hold, traditional festival) -> (truth, will hold, the Thai traditional-water festival) -> truth (4953ms) When was the festival held? a pub -0.6666666666530001 When was the festival held? -> $x: ($x, hold, traditional festival) -> (a pub, holds, a traditional Irish dancing festival) -> a pub (4955ms) When was the festival held? Guangxi -0.6666666666530001 When was the festival held? -> $x: ($x, hold, traditional festival) -> (Guangxi, hold, a traditional festival) -> Guangxi (4955ms) When was the festival held? Rosmuck -0.6666666666530001 When was the festival held? -> $x: ($x, hold, traditional festival) -> (Rosmuck, holds, a traditional Irish dancing festival) -> Rosmuck (4955ms) When was the festival held? 26 to 29 June -0.6666666666530001 When was the festival held? -> $x: ($x, hold, traditional festival) -> (26 to 29 June, will be held, the traditional medieval festival) -> 26 to 29 June (4953ms) When was the festival held? September Moscow -0.6666666666530001 When was the festival held? -> $x: ($x, hold, traditional festival) -> (September Moscow, held, traditional Military Tattoo festival) -> September Moscow (4953ms) When was the festival held? Jerusalem -0.7777777777650001 When was the festival held? -> $x: ($x, hold, festival food) -> (Jerusalem, held, its 3rd Annual Jerusalem Food Festival Sept. 2) -> Jerusalem (4957ms) When was the festival held? Peru -0.7777777777650001 When was the festival held? -> $x: ($x, hold, festival food) -> (Peru, has just held, its enormous annual food festival) -> Peru (4955ms) When was the festival held? the group -0.7777777777650001 When was the festival held? -> $x: ($x, hold, festival food) -> (the group, holds, an International Food Festival) -> the group (4955ms) When was the festival held? a three-star restaurant -0.7777777777650001 When was the festival held? -> $x: ($x, hold, festival food) -> (a three-star restaurant, held, a jackfruit food festival) -> a three-star restaurant (4959ms) When was the festival held? the year -0.7777777777650001 When was the festival held? -> $x: ($x, hold, festival food) -> (the year, holds, a different food festival) -> the year (4955ms) When was the festival held? Cebu -0.7777777777650001 When was the festival held? -> $x: ($x, hold, festival food) -> (Cebu, will hold, the Asian Food Festival) -> Cebu (4955ms) When was the festival held? school -0.7777777777650001 When was the festival held? -> $x: ($x, hold, festival food) -> (school, held, the Delicious Food Festival) -> school (4955ms) When was the festival held? The ticket holder -0.7777777777650001 When was the festival held? -> $x: ($x, hold, festival food) -> (The ticket holder, expressly holds, Food Truck Festivals) -> The ticket holder (4955ms) When was the festival held? 73 S. 18th St -0.7777777777650001 When was the festival held? -> $x: ($x, hold, festival food) -> (73 S. 18th St, will hold, a Ukrainian spring food festival) -> 73 S. 18th St (4955ms) When was the festival held? Bergerac -0.7777777777650001 When was the festival held? -> $x: ($x, hold, festival food) -> (Bergerac, holds, an annual food and wine festival) -> Bergerac (4955ms) When was the festival held? Charlotte -0.7777777777650001 When was the festival held? -> $x: ($x, hold, festival food) -> (Charlotte, held, a fall food festival) -> Charlotte (4955ms) When was the festival held? The restaurant -0.7777777777650001 When was the festival held? -> $x: ($x, hold, festival food) -> (The restaurant, holds, several food festivals) -> The restaurant (4959ms) When was the festival held? Slow Food member restaurants -0.7777777777650001 When was the festival held? -> $x: ($x, hold, festival food) -> (Slow Food member restaurants, hold, food festivals) -> Slow Food member restaurants (4959ms) When was the festival held? the United Nations -0.7777777777650001 When was the festival held? -> $x: ($x, hold, festival food) -> (the United Nations, are holding, the Dominican Food Festival) -> the United Nations (4959ms) When was the festival held? Newfoundland -0.888888888876 When was the festival held? -> $x: ($x, hold, harvest festival) -> (Newfoundland, held, their own harvest festival) -> Newfoundland (4961ms) When was the festival held? the pilgrims -0.888888888876 When was the festival held? -> $x: ($x, hold, harvest festival) -> (the pilgrims, held, six harvest/thanksgiving festivals) -> the pilgrims (4959ms) When was the festival held? the Pilgrims -0.888888888876 When was the festival held? -> $x: ($x, hold, harvest festival) -> (the Pilgrims, held, a harvest festival) -> the Pilgrims (4959ms) When was the festival held? host -0.888888888876 When was the festival held? -> $x: ($x, hold, harvest festival) -> (host, holds, an annual Harvest Festival) -> host (4959ms) When was the festival held? humans -0.888888888876 When was the festival held? -> $x: ($x, hold, harvest festival) -> (humans, have been holding, harvest festivals) -> humans (4961ms) When was the festival held? The Glengarry Pioneer Museum -0.888888888876 When was the festival held? -> $x: ($x, hold, harvest festival) -> (The Glengarry Pioneer Museum, held, its Harvest Festival) -> The Glengarry Pioneer Museum (4963ms) When was the festival held? the East Indians -0.888888888876 When was the festival held? -> $x: ($x, hold, diwali) -> (the East Indians, held, lavish Diwali fairs) -> the East Indians (4961ms) When was the festival held? the guild -0.888888888876 When was the festival held? -> $x: ($x, hold, harvest festival) -> (the guild, had been planning on holding, a Harvest Festival) -> the guild (4963ms) When was the festival held? Oyster Bay -0.888888888876 When was the festival held? -> $x: ($x, hold, harvest festival) -> (Oyster Bay, held, a Harvest Festival) -> Oyster Bay (4963ms) When was the festival held? AADBA -0.888888888876 When was the festival held? -> $x: ($x, hold, dragon boat festival) -> (AADBA, is holding, their annual Dragon Boat Festival) -> AADBA (4963ms) When was the festival held? Cellardoor Winery -0.888888888876 When was the festival held? -> $x: ($x, hold, harvest festival) -> (Cellardoor Winery, held, their annual Harvest Festival) -> Cellardoor Winery (4963ms) When was the festival held? the circle -0.888888888876 When was the festival held? -> $x: ($x, hold, harvest festival) -> (the circle, will hold, a harvest festival) -> the circle (4963ms) When was the festival held? 366-5695 -0.888888888876 When was the festival held? -> $x: ($x, hold, harvest festival) -> (366-5695, will hold, its Harvest Festival) -> 366-5695 (4961ms) When was the festival held? Ballinagree -0.888888888876 When was the festival held? -> $x: ($x, hold, harvest festival) -> (Ballinagree, holds, its 9th Vintage Harvest Festival) -> Ballinagree (4963ms) When was the festival held? Food Front -0.888888888876 When was the festival held? -> $x: ($x, hold, harvest festival) -> (Food Front, is holding, a Harvest Festival) -> Food Front (4959ms) When was the festival held? The Village -0.888888888876 When was the festival held? -> $x: ($x, hold, harvest festival) -> (The Village, is holding, its annual harvest festival) -> The Village (4961ms) When was the festival held? Bar Bij Fair -0.888888888876 When was the festival held? -> $x: ($x, hold, diwalus) -> (Bar Bij Fair, is held a month after, Diwali) -> Bar Bij Fair (4963ms) When was the festival held? The ISA -0.888888888876 When was the festival held? -> $x: ($x, hold, diwalus) -> (The ISA, held a Diwali festival on, Diwali) -> The ISA (4961ms) When was the festival held? the tournaments -0.888888888876 When was the festival held? -> $x: ($x, hold, diwalus) -> (the tournaments, held at, Diwali) -> the tournaments (4961ms) When was the festival held? the ISAK tour company -0.888888888876 When was the festival held? -> $x: ($x, hold, harvest festival) -> (the ISAK tour company, was holding, a harvest festival party) -> the ISAK tour company (4961ms) When was the festival held? Xixi people -0.888888888876 When was the festival held? -> $x: ($x, hold, dragon boat festival) -> (Xixi people, hold, dragon boat festival) -> Xixi people (4961ms) When was the festival held? The museum -0.888888888876 When was the festival held? -> $x: ($x, hold, harvest festival) -> (The museum, holds, the Swan Valley Harvest Festival) -> The museum (4963ms) When was the festival held? The boat races -0.888888888876 When was the festival held? -> $x: ($x, hold, harvest festival) -> (The boat races, are held during, the harvest festival) -> The boat races (4963ms) When was the festival held? Egyptians -0.888888888876 When was the festival held? -> $x: ($x, hold, harvest festival) -> (Egyptians, all held, harvest festivals) -> Egyptians (4959ms) When was the festival held? Austin -0.888888888876 When was the festival held? -> $x: ($x, hold, harvest festival) -> (Austin, held, its Harvest Moon Festival) -> Austin (4961ms) When was the festival held? Conservation Society -0.888888888876 When was the festival held? -> $x: ($x, hold, harvest festival) -> (Conservation Society, holds first, Indian Harvest Festival) -> Conservation Society (4959ms) When was the festival held? Two women in Jaipur -0.888888888876 When was the festival held? -> $x: ($x, hold, diwali) -> (Two women in Jaipur, hold candles to, celebrate Diwali) -> Two women in Jaipur (4963ms) When was the festival held? The church -0.888888888876 When was the festival held? -> $x: ($x, hold, harvest festival) -> (The church, held, a Harvest Festival) -> The church (4965ms) When was the festival held? 1984 Sydney -0.888888888876 When was the festival held? -> $x: ($x, hold, dragon boat festival) -> (1984 Sydney, held, the inaugural Sydney Dragon Boat Festival) -> 1984 Sydney (4961ms) When was the festival held? Hari Solomonides -0.888888888876 When was the festival held? -> $x: ($x, hold, harvest festival) -> (Hari Solomonides, held, a ' Harvest Festival talk show ') -> Hari Solomonides (4963ms) When was the festival held? the orphanage -0.888888888876 When was the festival held? -> $x: ($x, hold, harvest festival) -> (the orphanage, held, Harvest Festivals) -> the orphanage (4959ms) When was the festival held? The Bucks County Foodshed -0.888888888876 When was the festival held? -> $x: ($x, hold, harvest festival) -> (The Bucks County Foodshed, will be holding, a Harvest Festival) -> The Bucks County Foodshed (4963ms) When was the festival held? Meriden -0.888888888876 When was the festival held? -> $x: ($x, hold, harvest festival) -> (Meriden, will be holding, their 3rd annual Harvest festival) -> Meriden (4963ms) When was the festival held? Clubs and organizations -0.888888888876 When was the festival held? -> $x: ($x, hold, diwali) -> (Clubs and organizations, hold events like, Diwali Night) -> Clubs and organizations (4963ms) When was the festival held? rain -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (?Festival, is held, rain) -> rain (4965ms) When was the festival held? several times -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festivals, are held, several times) -> several times (4969ms) When was the festival held? Every three years -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festival, is held, Every three years) -> Every three years (4966ms) When was the festival held? Siena -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (festivals, held in, Siena) -> Siena (4966ms) When was the festival held? several times a year -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festivals, are held, several times a year) -> several times a year (4968ms) When was the festival held? every August -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festival, held, every August) -> every August (4969ms) When was the festival held? every year -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festivals, were held, every year) -> every year (4968ms) When was the festival held? Rutherford County -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festivals, held in, Rutherford County) -> Rutherford County (4965ms) When was the festival held? the autumn -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festival, held in, the autumn) -> the autumn (4969ms) When was the festival held? annually -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festivals, is held, annually) -> annually (4965ms) When was the festival held? rain or shine -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (~ ~ Festival, held, rain or shine) -> rain or shine (4969ms) When was the festival held? a day -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festival, was held, a day) -> a day (4969ms) When was the festival held? Montreal -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (festivals, held in, Montreal) -> Montreal (4969ms) When was the festival held? Denver -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (festivals, held in, Denver) -> Denver (4967ms) When was the festival held? medieval Olavinnlinna Castle -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (festivals, held at, medieval Olavinnlinna Castle) -> medieval Olavinnlinna Castle (4967ms) When was the festival held? River Park -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (' Festival, held at, River Park) -> River Park (4969ms) When was the festival held? rain , snow , sleet or shine -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festival, held, rain , snow , sleet or shine) -> rain , snow , sleet or shine (4967ms) When was the festival held? year -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (festivals, held, year) -> year (4969ms) When was the festival held? October 18 -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festival, held, October 18) -> October 18 (4967ms) When was the festival held? the same time -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (festivals, held around, the same time) -> the same time (4966ms) When was the festival held? each May -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festival, is held, each May) -> each May (4968ms) When was the festival held? Bantry House in Bantry -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festival, held at, Bantry House in Bantry) -> Bantry House in Bantry (4969ms) When was the festival held? every January -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festival, held, every January) -> every January (4966ms) When was the festival held? Outdoors -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festival, held, Outdoors) -> Outdoors (4968ms) When was the festival held? Nehru Park -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (festivals, held at, Nehru Park) -> Nehru Park (4965ms) When was the festival held? Russia -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (festival, held in, Russia) -> Russia (4965ms) When was the festival held? grass-covered grounds -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (festivals, held on, grass-covered grounds) -> grass-covered grounds (4969ms) When was the festival held? Bondi Beach -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (festivals, held at, Bondi Beach) -> Bondi Beach (4966ms) When was the festival held? a week -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festival, is held, a week) -> a week (4967ms) When was the festival held? each year -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festivals, were held, each year) -> each year (4967ms) When was the festival held? Washington DC -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festival, held in, Washington DC) -> Washington DC (4965ms) When was the festival held? Now -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festival, being held, Now) -> Now (4965ms) When was the festival held? each spring -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festivals, are held, each spring) -> each spring (4968ms) When was the festival held? Ghent -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festival, held in, Ghent) -> Ghent (4968ms) When was the festival held? every summer -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (festival, held, every summer) -> every summer (4966ms) When was the festival held? every month -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festivals, are held, every month) -> every month (4967ms) When was the festival held? an important place -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festivals, hold, an important place) -> an important place (4966ms) When was the festival held? 1968 -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (festival, held since, 1968) -> 1968 (4966ms) When was the festival held? usually -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festivals, are held, usually) -> usually (4967ms) When was the festival held? 1983 -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festival, held in, 1983) -> 1983 (4966ms) When was the festival held? frequently -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (festivals, held, frequently) -> frequently (4965ms) When was the festival held? Donnington Park -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festival, held at, Donnington Park) -> Donnington Park (4969ms) When was the festival held? a 2 day -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festival, held, a 2 day) -> a 2 day (4969ms) When was the festival held? the autumn and spring -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festivals, held in, the autumn and spring) -> the autumn and spring (4966ms) When was the festival held? New York City -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (festival, held in, New York City) -> New York City (4969ms) When was the festival held? each April -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festival, held, each April) -> each April (4965ms) When was the festival held? the Farmington Civic Center -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festival, held at, the Farmington Civic Center) -> the Farmington Civic Center (4965ms) When was the festival held? village -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (festival, was held, village) -> village (4965ms) When was the festival held? the UK -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (festivals, held in, the UK) -> the UK (4969ms) When was the festival held? Three times a year -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (festivals, were held, Three times a year) -> Three times a year (4966ms) When was the festival held? Lipscomb Park -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festival, held at, Lipscomb Park) -> Lipscomb Park (4966ms) When was the festival held? year-round -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (festivals, held, year-round) -> year-round (4969ms) When was the festival held? the Island -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (festivals, held on, the Island) -> the Island (4968ms) When was the festival held? Trujillo -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festival, held in, Trujillo) -> Trujillo (4967ms) When was the festival held? the University -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (' Festival, held on, the University) -> the University (4968ms) When was the festival held? an unusual lure -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festivals, hold, an unusual lure) -> an unusual lure (4968ms) When was the festival held? often -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festivals, are held, often) -> often (4966ms) When was the festival held? last weekend -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (festival, held, last weekend) -> last weekend (4969ms) When was the festival held? Often -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festivals, are held, Often) -> Often (4967ms) When was the festival held? each October -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festival, is held, each October) -> each October (4966ms) When was the festival held? last month -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festival, held, last month) -> last month (4969ms) When was the festival held? prefectures and areas -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (festivals, held in, prefectures and areas) -> prefectures and areas (4969ms) When was the festival held? April -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festival, held in, April) -> April (4967ms) When was the festival held? every fall -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festival, held, every fall) -> every fall (4969ms) When was the festival held? year round -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festivals, are held, year round) -> year round (4965ms) When was the festival held? one recital -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (festivals, holds, one recital) -> one recital (4968ms) When was the festival held? 2 hours -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festival, held, 2 hours) -> 2 hours (4967ms) When was the festival held? Regina -0.9999999999940001 When was the festival held? -> $x: (festival, hold, $x) -> (Festival, held in, Regina) -> Regina (4968ms) When was the festival held? each other -1.0 When was the festival held? -> $x: ($x, be festival of, conference) -> (each other, could be called a festival of, conferences) -> each other (4969ms) What is the highest dam in the U.S.? MS SYMPHONIE 0.222222222222 What is the highest dam in the U.S.? -> $x: ($x, be dam of, u.s.) -> (MS SYMPHONIE, is the dam of, 2006 U.S.) -> MS SYMPHONIE (434ms) Where is the world's largest meteorite? New England -0.6666666666629999 Where is the world's largest meteorite? -> $x: (largest, be consider part of, $x) -> ('s second largest river, is also considered part of, New England) -> New England (488ms) Where is the world's largest meteorite? Abyei -0.6666666666629999 Where is the world's largest meteorite? -> $x: (largest, be consider part of, $x) -> (largest oil fields, were considered to be part of, Abyei) -> Abyei (488ms) What is the largest variety of cactus? a wide variety 2.333333333324 What is the largest variety of cactus? -> $x: ($x, be largest of, cactus) -> (a wide variety, are the largest grower of, cacti and succulents) -> a wide variety (967ms) What are coral reefs? the park 1.555555555551 What are coral reefs? -> $x: ($x, cause, coral reef) -> (the park, could cause damage to, coral reefs) -> the park (1445ms) What are coral reefs? acidity levels 1.555555555551 What are coral reefs? -> $x: ($x, cause, coral reef) -> (acidity levels, cause major changes to, coral reefs) -> acidity levels (1445ms) What are coral reefs? Cyanide fishing 1.555555555551 What are coral reefs? -> $x: ($x, cause, coral reef) -> (Cyanide fishing, causes massive destruction to, coral reefs) -> Cyanide fishing (1514ms) What are coral reefs? live fire exercises 1.555555555551 What are coral reefs? -> $x: ($x, cause, coral reef) -> (live fire exercises, have caused, coral reef destruction) -> live fire exercises (2140ms) What are coral reefs? Climate change 1.555555555551 What are coral reefs? -> $x: ($x, cause, coral reef) -> (Climate change, is causing, widespread bleaching of coral reefs) -> Climate change (1514ms) What are coral reefs? hurricane forces 1.555555555551 What are coral reefs? -> $x: ($x, cause, coral reef) -> (hurricane forces, cause substantial damage to, coral reefs) -> hurricane forces (1514ms) What are coral reefs? an anchor 1.555555555551 What are coral reefs? -> $x: ($x, cause, coral reef) -> (an anchor, overboard can cause monumental damage to, coral reefs) -> an anchor (2782ms) What are coral reefs? global warming 1.555555555551 What are coral reefs? -> $x: ($x, cause, coral reef) -> (global warming, is causing the destruction of, coral reefs) -> global warming (2140ms) What are coral reefs? Marine debris 1.555555555551 What are coral reefs? -> $x: ($x, cause, coral reef) -> (Marine debris, can cause significant damage to, coral reefs) -> Marine debris (2140ms) What are coral reefs? sea and 1.555555555551 What are coral reefs? -> $x: ($x, cause, coral reef) -> (sea and, may cause destruction to, coral reefs) -> sea and (2140ms) What are coral reefs? the tsunami 1.555555555551 What are coral reefs? -> $x: ($x, cause, coral reef) -> (the tsunami, caused considerable damage to, the coral reefs) -> the tsunami (1445ms) What are coral reefs? large construction projects 1.555555555551 What are coral reefs? -> $x: ($x, cause, coral reef) -> (large construction projects, can cause damage to, coral reefs) -> large construction projects (2140ms) What are coral reefs? Lionfishes 1.555555555551 What are coral reefs? -> $x: ($x, cause, coral reef) -> (Lionfishes, cause harm to, coral reef ecosystems) -> Lionfishes (1445ms) What are coral reefs? wrongdoers 1.555555555551 What are coral reefs? -> $x: ($x, cause, coral reef) -> (wrongdoers, caused damage to, coral reefs) -> wrongdoers (2781ms) What are coral reefs? land pollution 1.555555555551 What are coral reefs? -> $x: ($x, cause, coral reef) -> (land pollution, are causing major issues for, coral reefs) -> land pollution (1514ms) What are coral reefs? The damage 1.555555555551 What are coral reefs? -> $x: ($x, cause, coral reef) -> (The damage, caused to, coral reefs) -> The damage (2782ms) What are coral reefs? the destruction 1.555555555551 What are coral reefs? -> $x: ($x, cause, coral reef) -> (the destruction, caused to, coral reefs) -> the destruction (1445ms) What are coral reefs? Sewage runoff 1.555555555551 What are coral reefs? -> $x: ($x, cause, coral reef) -> (Sewage runoff, causes serious damage to, coral reefs) -> Sewage runoff (2140ms) What are coral reefs? Gore claims global warming 1.555555555551 What are coral reefs? -> $x: ($x, cause, coral reef) -> (Gore claims global warming, has helped cause, coral reefs) -> Gore claims global warming (2782ms) What are coral reefs? Acidity 1.555555555551 What are coral reefs? -> $x: ($x, cause, coral reef) -> (Acidity, is causing a major threat to, coral reefs) -> Acidity (2782ms) What are coral reefs? top predators 1.555555555551 What are coral reefs? -> $x: ($x, cause, coral reef) -> (top predators, causes lasting damage to, coral reefs) -> top predators (1514ms) What are coral reefs? No harm 1.555555555551 What are coral reefs? -> $x: ($x, cause, coral reef) -> (No harm, is caused to, coral reefs) -> No harm (2782ms) What are coral reefs? Tourism 1.555555555551 What are coral reefs? -> $x: ($x, cause, coral reef) -> (Tourism, has also caused much of, the coral reef depletion) -> Tourism (1514ms) What are coral reefs? Hurricane Rita 1.555555555551 What are coral reefs? -> $x: ($x, cause, coral reef) -> (Hurricane Rita, caused significant damage to, coral reefs) -> Hurricane Rita (1445ms) What are coral reefs? attention 1.555555555551 What are coral reefs? -> $x: ($x, cause, coral reef) -> (attention, may be the real cause of, the coral reef crisis) -> attention (1445ms) What are coral reefs? sea temperatures 1.555555555551 What are coral reefs? -> $x: ($x, cause, coral reef) -> (sea temperatures, caused the death of, many coral reef and fish) -> sea temperatures (2140ms) What are coral reefs? the subsequent damage 1.555555555551 What are coral reefs? -> $x: ($x, cause, coral reef) -> (the subsequent damage, caused to, coral reefs) -> the subsequent damage (1514ms) What are coral reefs? souvenir purposes 1.555555555551 What are coral reefs? -> $x: ($x, cause, coral reef) -> (souvenir purposes, causes severe damage to, coral reefs) -> souvenir purposes (2140ms) What are coral reefs? a virus 1.555555555551 What are coral reefs? -> $x: ($x, cause, coral reef) -> (a virus, often cause environmental damage to, coral reefs) -> a virus (2782ms) What are coral reefs? red soil runoff 1.555555555551 What are coral reefs? -> $x: ($x, cause, coral reef) -> (red soil runoff, causes severe damage to, coral reefs) -> red soil runoff (1514ms) What are coral reefs? unusually warm seas 1.555555555551 What are coral reefs? -> $x: ($x, cause, coral reef) -> (unusually warm seas, caused severe damage to, coral reefs) -> unusually warm seas (2781ms) What are coral reefs? dolphins and whales surfacing 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (dolphins and whales surfacing, go scuba diving in, coral reefs) -> dolphins and whales surfacing (3663ms) What are coral reefs? Activities 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (Activities, are focused in, coral reefs) -> Activities (4442ms) What are coral reefs? stony corals 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (stony corals, are often found in, coral reefs) -> stony corals (3663ms) What are coral reefs? the diving and snorkel sites 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (the diving and snorkel sites, are found in, coral reefs) -> the diving and snorkel sites (4865ms) What are coral reefs? the best 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (the best, are rich in, coral reefs) -> the best (5010ms) What are coral reefs? marine snails 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (marine snails, found in, coral reefs) -> marine snails (4246ms) What are coral reefs? the fish 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (the fish, live in, and around coral reefs) -> the fish (4540ms) What are coral reefs? Trumpetfish 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (Trumpetfish, live in, coral reefs) -> Trumpetfish (4442ms) What are coral reefs? the coralline algae 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (the coralline algae, play a major role in building, coral reefs) -> the coralline algae (4992ms) What are coral reefs? the life 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (the life, is in, coral reefs) -> the life (3663ms) What are coral reefs? microbes 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (microbes, play in, coral reefs) -> microbes (4442ms) What are coral reefs? Christmas tree worms 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (Christmas tree worms, embedded in, the hard coral reef) -> Christmas tree worms (4246ms) What are coral reefs? ocean acidification 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (ocean acidification, also looms in, coral reefs) -> ocean acidification (4540ms) What are coral reefs? the WhyReef project 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (the WhyReef project, are to foster an interest in, coral reefs) -> the WhyReef project (2912ms) What are coral reefs? the United States 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (the United States, become interested in, coral reefs) -> the United States (2912ms) What are coral reefs? invertebrates 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (invertebrates, living in, coral reefs) -> invertebrates (4246ms) What are coral reefs? the old timers 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (the old timers, stopped in, Coral Reef) -> the old timers (4992ms) What are coral reefs? Spiny lobsters 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (Spiny lobsters, live in, coral reefs) -> Spiny lobsters (2838ms) What are coral reefs? the very identity of the Coral Sea 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (the very identity of the Coral Sea, lies in, its coral reefs) -> the very identity of the Coral Sea (4442ms) What are coral reefs? the sea creatures 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (the sea creatures, live in, the coral reef) -> the sea creatures (2838ms) What are coral reefs? The approximately 90 species 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (The approximately 90 species, live in, coral reefs) -> The approximately 90 species (4992ms) What are coral reefs? Habitat 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (Habitat, Commonly found in, coral reefs) -> Habitat (4992ms) What are coral reefs? Guests 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (Guests, can snorkel in, coral reefs) -> Guests (4442ms) What are coral reefs? The effects 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (The effects, are already being seen in, coral reefs) -> The effects (4540ms) What are coral reefs? the teeming life 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (the teeming life, found in, coral reefs) -> the teeming life (2838ms) What are coral reefs? phosphate binds 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (phosphate binds, is abundant in, coral reefs) -> phosphate binds (4540ms) What are coral reefs? the oceans 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (the oceans, are found in, coral reefs) -> the oceans (4865ms) What are coral reefs? the toxicity levels 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (the toxicity levels, held in, coral reefs) -> the toxicity levels (4992ms) What are coral reefs? the largest bony fish 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (the largest bony fish, found in, coral reefs) -> the largest bony fish (4992ms) What are coral reefs? the Red Sea 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (the Red Sea, is rich in, coral reefs) -> the Red Sea (4865ms) What are coral reefs? the resource 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (the resource, be available in, coral reefs) -> the resource (3663ms) What are coral reefs? fish 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (fish, make their homes in, coral reefs) -> fish (2912ms) What are coral reefs? chemicals 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (chemicals, found in, coral reef organisms) -> chemicals (2913ms) What are coral reefs? spiny lobsters 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (spiny lobsters, to share their dens in, coral reefs) -> spiny lobsters (4992ms) What are coral reefs? marine life 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (marine life, starts in, coral reefs) -> marine life (3663ms) What are coral reefs? One study of a cruise ship anchor 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (One study of a cruise ship anchor, dropped in, a coral reef) -> One study of a cruise ship anchor (4865ms) What are coral reefs? Cone snails 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (Cone snails, are found primarily in, coral reefs) -> Cone snails (4992ms) What are coral reefs? minerals 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (minerals, are normally present in, coral reefs) -> minerals (4865ms) What are coral reefs? Pesticide residues 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (Pesticide residues, have been found in, coral reefs) -> Pesticide residues (3663ms) What are coral reefs? the environment 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (the environment, found in, coral reefs) -> the environment (4865ms) What are coral reefs? the very diverse wildlife 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (the very diverse wildlife, found in, coral reefs) -> the very diverse wildlife (4245ms) What are coral reefs? The Caribbean 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (The Caribbean, is rich in, coral reefs) -> The Caribbean (4245ms) What are coral reefs? cracks 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (cracks, found in, coral reefs) -> cracks (3663ms) What are coral reefs? unknown contents 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (unknown contents, were found lodged in, coral reefs) -> unknown contents (2912ms) What are coral reefs? marine sediments 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (marine sediments, has witnessed dramatic changes in, coral reefs) -> marine sediments (4865ms) What are coral reefs? the common clownfish 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (the common clownfish, are mainly found in, coral reefs) -> the common clownfish (2838ms) What are coral reefs? shallow 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (shallow, are common in, coral reef) -> shallow (5010ms) What are coral reefs? species 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (species, found in, coral reefs) -> species (4442ms) What are coral reefs? Two Fish 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (Two Fish, has also participated in, coral reef) -> Two Fish (4992ms) What are coral reefs? creatures 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (creatures, have evolved to live in, coral reefs) -> creatures (4540ms) What are coral reefs? Palolo worms 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (Palolo worms, live in, coral reefs) -> Palolo worms (4540ms) What are coral reefs? seaweed 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (seaweed, plays a critical role in structuring, coral reefs) -> seaweed (2838ms) What are coral reefs? The Moray eel 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (The Moray eel, lives in, coral reefs) -> The Moray eel (4992ms) What are coral reefs? danger 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (danger, are those in, coral reefs) -> danger (4865ms) What are coral reefs? The eastern wing 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (The eastern wing, is a filled in, coral reef) -> The eastern wing (4992ms) What are coral reefs? filamentous algal assemblages 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (filamentous algal assemblages, growing in, a coral reef mesocosm) -> filamentous algal assemblages (4992ms) What are coral reefs? the seas 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (the seas, are abundant in, coral reefs) -> the seas (4865ms) What are coral reefs? ecological processes 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (ecological processes, has done research in, coral reefs) -> ecological processes (5010ms) What are coral reefs? the islands 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (the islands, abounds in, coral reefs) -> the islands (4865ms) What are coral reefs? aquatic life 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (aquatic life, exists in, coral reefs) -> aquatic life (2912ms) What are coral reefs? algae 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (algae, found in, coral reefs) -> algae (4540ms) What are coral reefs? the only catfish 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (the only catfish, found in, coral reefs) -> the only catfish (2912ms) What are coral reefs? Carbon 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (Carbon, fluxes in, coral reefs) -> Carbon (2838ms) What are coral reefs? Neither ecologist 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (Neither ecologist, had any particular background in, coral reefs) -> Neither ecologist (4992ms) What are coral reefs? a tropical fish 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (a tropical fish, lives in, the coral reef) -> a tropical fish (4992ms) What are coral reefs? The region 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (The region, is rich in, coral reefs) -> The region (2912ms) What are coral reefs? marine species 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (marine species, live in, coral reefs) -> marine species (4992ms) What are coral reefs? thoughts 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (thoughts, turn in, coral reefs) -> thoughts (4865ms) What are coral reefs? the role 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (the role, play in, coral reefs) -> the role (2838ms) What are coral reefs? The only catfish 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (The only catfish, found in, coral reefs) -> The only catfish (2838ms) What are coral reefs? organisms 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (organisms, found in, coral reefs) -> organisms (4992ms) What are coral reefs? The nation 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (The nation, is rich in, coral reefs) -> The nation (4246ms) What are coral reefs? The Napoleon Wrasse 1.44444444444 What are coral reefs? -> $x: ($x, in, coral reef) -> (The Napoleon Wrasse, is found primarily in, coral reefs) -> The Napoleon Wrasse (4246ms) What are coral reefs? store CO2 1.333333333329 What are coral reefs? -> $x: (coral reef, do, $x) -> (coral reefs, do, store CO2) -> store CO2 (5028ms) What are coral reefs? shore dives 1.333333333329 What are coral reefs? -> $x: (coral reef, do, $x) -> (Most coral reef work, has been done from, shore dives) -> shore dives (5010ms) What are coral reefs? The island 1.333333333329 What are coral reefs? -> $x: ($x, describe, coral reef) -> (The island, is described as having, a coral reef flat) -> The island (5028ms) What are coral reefs? n?t matter 1.333333333329 What are coral reefs? -> $x: (coral reef, do, $x) -> (the coral reef?s beauty, did, n?t matter) -> n?t matter (5010ms) What are coral reefs? The exhibits 1.333333333329 What are coral reefs? -> $x: ($x, describe, coral reef) -> (The exhibits, describing, coral reefs and the Everglades) -> The exhibits (5028ms) What are coral reefs? extensive damage 1.333333333329 What are coral reefs? -> $x: (coral reef, do, $x) -> (the fragile coral reefs, can do, extensive damage) -> extensive damage (5010ms) What are coral reefs? the coast 1.333333333329 What are coral reefs? -> $x: (coral reef, do, $x) -> (coral reefs, indeed does, the coast) -> the coast (5010ms) What are coral reefs? sponges 1.333333333329 What are coral reefs? -> $x: ($x, describe, coral reef) -> (sponges, were described from, coral reefs) -> sponges (5010ms) What are coral reefs? the age 1.333333333329 What are coral reefs? -> $x: (coral reef, do, $x) -> (a coral reef, have to do with, the age) -> the age (5010ms) What are coral reefs? fish populations 1.333333333329 What are coral reefs? -> $x: (coral reef, do, $x) -> (coral reefs, does n?t just keep, fish populations) -> fish populations (5028ms) What are coral reefs? an optional scuba dive 1.333333333329 What are coral reefs? -> $x: (coral reef, do, $x) -> (the coral reefs, do, an optional scuba dive) -> an optional scuba dive (5010ms) What are coral reefs? 1998 1.333333333329 What are coral reefs? -> $x: (coral reef, do, $x) -> ('s coral reefs, was done in, 1998) -> 1998 (5028ms) What are coral reefs? the visitor 1.333333333329 What are coral reefs? -> $x: (coral reef, do, $x) -> (the coral reefs, do a dismal job of educating, the visitor) -> the visitor (5010ms) What are coral reefs? mathematics 1.333333333329 What are coral reefs? -> $x: (coral reef, do, $x) -> (The Hyperbolic Coral Reef, has as much to do with, mathematics) -> mathematics (5010ms) What are coral reefs? dinner 1.333333333329 What are coral reefs? -> $x: (coral reef, do, $x) -> (the the coral reefs, Do some fishing for, dinner) -> dinner (5010ms) What are coral reefs? Washington 1.333333333329 What are coral reefs? -> $x: (coral reef, do, $x) -> (Mexico?s coral reef, did laundry in, Washington) -> Washington (5028ms) What are coral reefs? the smaller individuals 1.333333333329 What are coral reefs? -> $x: (coral reef, do, $x) -> (the coral reef ecosystem, do, the smaller individuals) -> the smaller individuals (5010ms) What are coral reefs? an enhanced blue spectrum 1.333333333329 What are coral reefs? -> $x: (coral reef, do, $x) -> (coral reefs, do better with, an enhanced blue spectrum) -> an enhanced blue spectrum (5010ms) What are coral reefs? one writer 1.333333333329 What are coral reefs? -> $x: ($x, describe, coral reef) -> (one writer, has indeed described, a coral-reef) -> one writer (5028ms) What are coral reefs? blue water 1.333333333329 What are coral reefs? -> $x: (coral reef, do, $x) -> (coral reef fishes, are doing out in, blue water) -> blue water (5028ms) What are coral reefs? extinction 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, are headed for, extinction) -> extinction (5097ms) What are coral reefs? a young fish 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, can be dangerous places for, a young fish) -> a young fish (5045ms) What are coral reefs? Scientists 1.333333333328 What are coral reefs? -> $x: ($x, do, coral reef) -> (Scientists, will do to, coral reefs) -> Scientists (5130ms) What are coral reefs? plankton 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, are good places for, plankton) -> plankton (5114ms) What are coral reefs? further monitoring 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (These coral reefs, are critical areas for, further monitoring) -> further monitoring (5097ms) What are coral reefs? SCUBA diving or snorkeling 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (a coral reef, is ideal for, SCUBA diving or snorkeling) -> SCUBA diving or snorkeling (5113ms) What are coral reefs? landreforms 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reef, is worth a visit for, landreforms) -> landreforms (5097ms) What are coral reefs? different stages 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, may be essential for, different stages) -> different stages (5147ms) What are coral reefs? tourists 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (?Coral reefs, are a major attraction for, tourists) -> tourists (5130ms) What are coral reefs? Hawaii 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral Reefs, are an important resource for, Hawaii) -> Hawaii (5147ms) What are coral reefs? scuba diving and snorkeling 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (The coral reefs, are ideal for, scuba diving and snorkeling) -> scuba diving and snorkeling (5130ms) What are coral reefs? hundreds 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, is critical for, hundreds) -> hundreds (5130ms) What are coral reefs? land-reforms 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reef, is worth a visit for, land-reforms) -> land-reforms (5079ms) What are coral reefs? top 1.333333333328 What are coral reefs? -> $x: ($x, produce, coral reef) -> (top, produces, the coral reef) -> top (5079ms) What are coral reefs? more cloud seeding substances 1.333333333328 What are coral reefs? -> $x: ($x, produce, coral reef) -> (more cloud seeding substances, are produced by, coral reefs) -> more cloud seeding substances (5130ms) What are coral reefs? Israel 1.333333333328 What are coral reefs? -> $x: ($x, do, coral reef) -> (Israel, are doing jointly to restore, the coral reef) -> Israel (5130ms) What are coral reefs? snorkelling and scuba diving 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, are ideal for, snorkelling and scuba diving) -> snorkelling and scuba diving (5079ms) What are coral reefs? long walks 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, are ideal for, long walks) -> long walks (5028ms) What are coral reefs? GMI 1.333333333328 What are coral reefs? -> $x: ($x, produce, coral reef) -> (GMI, produced, a coral reef assessment report) -> GMI (5062ms) What are coral reefs? extinction worldwide 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, are headed for, extinction worldwide) -> extinction worldwide (5114ms) What are coral reefs? swimming 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, are preferred for, swimming) -> swimming (5147ms) What are coral reefs? scuba diving 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, are perfect for, scuba diving) -> scuba diving (5079ms) What are coral reefs? the health 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, is a sensitive barometer for, the health) -> the health (5097ms) What are coral reefs? activities 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral reefs, are popular sites for, activities) -> activities (5045ms) What are coral reefs? carbonates 1.333333333328 What are coral reefs? -> $x: ($x, do, coral reef) -> (carbonates, does happen on, coral reefs) -> carbonates (5097ms) What are coral reefs? Seychelles 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (?Coral reefs, are extremely important for, Seychelles) -> Seychelles (5028ms) What are coral reefs? a former actor 1.333333333328 What are coral reefs? -> $x: ($x, do, coral reef) -> (a former actor, wanted to do something to help, coral reefs) -> a former actor (5045ms) What are coral reefs? The program 1.333333333328 What are coral reefs? -> $x: ($x, produce, coral reef) -> (The program, has also produced a video on, coral reef protection) -> The program (5130ms) What are coral reefs? the live fish industry 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, is cyanide fishing for, the live fish industry) -> the live fish industry (5113ms) What are coral reefs? the Sultan Park 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, is a time for, the Sultan Park) -> the Sultan Park (5130ms) What are coral reefs? land reforms 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reef, is worth a visit for, land reforms) -> land reforms (5045ms) What are coral reefs? survival 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, are facing an uphill battle for, survival) -> survival (5097ms) What are coral reefs? 250 million years 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, have been around for, 250 million years) -> 250 million years (5062ms) What are coral reefs? biodiversity 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral reefs, are epicenters for, biodiversity) -> biodiversity (5097ms) What are coral reefs? volunteers 1.333333333328 What are coral reefs? -> $x: ($x, do, coral reef) -> (volunteers, did an assessment of, the coral reef) -> volunteers (5147ms) What are coral reefs? fisheries 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral reefs, are valuable economic resources for, fisheries) -> fisheries (5130ms) What are coral reefs? 200 types 1.333333333328 What are coral reefs? -> $x: ($x, do, coral reef) -> (200 types, much is done to protect, the existing coral reefs) -> 200 types (5062ms) What are coral reefs? tourism and fishing industries 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, are critical for, tourism and fishing industries) -> tourism and fishing industries (5147ms) What are coral reefs? publication 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral Reefs, is slated for, publication) -> publication (5147ms) What are coral reefs? the diversity 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral reefs, are renowned for, the diversity) -> the diversity (5079ms) What are coral reefs? pharmaceutical breakthroughs 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral reefs, are being studied for, pharmaceutical breakthroughs) -> pharmaceutical breakthroughs (5062ms) What are coral reefs? an enormous variety 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, are vital habitats for, an enormous variety) -> an enormous variety (5114ms) What are coral reefs? life 1.333333333328 What are coral reefs? -> $x: ($x, do, coral reef) -> (life, do, coral reefs) -> life (5062ms) What are coral reefs? rock 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, had been mined for, rock) -> rock (5130ms) What are coral reefs? divers 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, are an underwater paradise for, divers) -> divers (5114ms) What are coral reefs? 150 years 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, have been known for over, 150 years) -> 150 years (5147ms) What are coral reefs? over 500 million years 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral reefs, have been around for, over 500 million years) -> over 500 million years (5062ms) What are coral reefs? million 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral reefs, have been around for, million) -> million (5062ms) What are coral reefs? such a long time 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (the coral reef, was above water for, such a long time) -> such a long time (5028ms) What are coral reefs? Sulawesi 1.333333333328 What are coral reefs? -> $x: ($x, define, coral reef) -> (Sulawesi, is defined by, spectacular coral reefs) -> Sulawesi (5079ms) What are coral reefs? millions 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral reefs, are a food source for, millions) -> millions (5097ms) What are coral reefs? thousands of years 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (a coral reef, had been around for, thousands of years) -> thousands of years (5130ms) What are coral reefs? million of years 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral reefs, have been around for, million of years) -> million of years (5062ms) What are coral reefs? visibility 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (The coral reefs, are clear for, visibility) -> visibility (5045ms) What are coral reefs? Damage 1.333333333328 What are coral reefs? -> $x: ($x, do, coral reef) -> (Damage, has been done to, coral reefs) -> Damage (5079ms) What are coral reefs? different uses 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral reef habitats, have been zoned for, different uses) -> different uses (5045ms) What are coral reefs? more information 1.333333333328 What are coral reefs? -> $x: ($x, do, coral reef) -> (more information, does, a coral reef form) -> more information (5114ms) What are coral reefs? damage 1.333333333328 What are coral reefs? -> $x: ($x, do, coral reef) -> (damage, is being done to, the coral reefs) -> damage (5130ms) What are coral reefs? marine biodiversity 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, are refuges for, marine biodiversity) -> marine biodiversity (5079ms) What are coral reefs? 5 sax 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral Reef, is arranged for, 5 sax) -> 5 sax (5062ms) What are coral reefs? the immense biodiversity 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral reefs, are important for, the immense biodiversity) -> the immense biodiversity (5130ms) What are coral reefs? medical research 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral reefs, are used for, medical research) -> medical research (5028ms) What are coral reefs? 7 years 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (a soft coral reef, has been running for, 7 years) -> 7 years (5045ms) What are coral reefs? the Tsunami 1.333333333328 What are coral reefs? -> $x: ($x, do, coral reef) -> (the Tsunami, had done to, the coral reefs) -> the Tsunami (5079ms) What are coral reefs? a coral predator 1.333333333328 What are coral reefs? -> $x: ($x, do, coral reef) -> (a coral predator, can do serious harm to, coral reefs) -> a coral predator (5114ms) What are coral reefs? reef fishing 1.333333333328 What are coral reefs? -> $x: ($x, do, coral reef) -> (reef fishing, is done around, the coral reef) -> reef fishing (5062ms) What are coral reefs? diving 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reef, is great for, diving) -> diving (5130ms) What are coral reefs? Reef fishing 1.333333333328 What are coral reefs? -> $x: ($x, do, coral reef) -> (Reef fishing, does n?t have to mean, ?coral reef?) -> Reef fishing (5062ms) What are coral reefs? the existence 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral reefs, are the life support system for, the existence) -> the existence (5147ms) What are coral reefs? outdoor activities 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, are readily accessible for, outdoor activities) -> outdoor activities (5130ms) What are coral reefs? snorkeling and diving 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, are excellent for, snorkeling and diving) -> snorkeling and diving (5114ms) What are coral reefs? local livelihoods 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (these coral reefs, are essential for, local livelihoods) -> local livelihoods (5062ms) What are coral reefs? over 400 million years 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral reefs, have been on the planet for, over 400 million years) -> over 400 million years (5045ms) What are coral reefs? sunscreens 1.333333333328 What are coral reefs? -> $x: ($x, do, coral reef) -> (sunscreens, have been doing damage to, the coral reef) -> sunscreens (5114ms) What are coral reefs? much research 1.333333333328 What are coral reefs? -> $x: ($x, do, coral reef) -> (much research, has been done on, coral reefs) -> much research (5079ms) What are coral reefs? seahorses 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, are a natural habitat for, seahorses) -> seahorses (5114ms) What are coral reefs? tourism 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral reefs, are lures for, tourism) -> tourism (5147ms) What are coral reefs? sea turtles 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral reefs, are an important food source for, sea turtles) -> sea turtles (5079ms) What are coral reefs? 3 kilometers 1.333333333328 What are coral reefs? -> $x: ($x, characterize, coral reef) -> (3 kilometers, is characterized by, its spendid coral reefs) -> 3 kilometers (5114ms) What are coral reefs? a general transition 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (natural coral reefs, has been blamed for, a general transition) -> a general transition (5045ms) What are coral reefs? students 1.333333333328 What are coral reefs? -> $x: ($x, do, coral reef) -> (students, do to help, coral reefs) -> students (5079ms) What are coral reefs? an interpretive sign 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (a coral reef painting, was used for, an interpretive sign) -> an interpretive sign (5028ms) What are coral reefs? cruise ships 1.333333333328 What are coral reefs? -> $x: ($x, do, coral reef) -> (cruise ships, often does significant damage to, coral reefs) -> cruise ships (5062ms) What are coral reefs? snorkellers 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reef, is great for, snorkellers) -> snorkellers (5114ms) What are coral reefs? each day 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, are planned for, each day) -> each day (5097ms) What are coral reefs? 500 million years 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral reefs, have been on earth for, 500 million years) -> 500 million years (5114ms) What are coral reefs? sea grasses 1.333333333328 What are coral reefs? -> $x: ($x, do, coral reef) -> (sea grasses, do in, a coral reef) -> sea grasses (5080ms) What are coral reefs? UQ 1.333333333328 What are coral reefs? -> $x: ($x, produce, coral reef) -> (UQ, has just produced, a new book ?Coral Reefs) -> UQ (5130ms) What are coral reefs? the Expedition 1.333333333328 What are coral reefs? -> $x: ($x, characterize, coral reef) -> (the Expedition, characterize, remote coral reefs) -> the Expedition (5045ms) What are coral reefs? renovation 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral Reef, is closed for, renovation) -> renovation (5114ms) What are coral reefs? local economies and tourism 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, are so important for, local economies and tourism) -> local economies and tourism (5028ms) What are coral reefs? four endangered species 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (coral reefs, is a refuge for, four endangered species) -> four endangered species (5114ms) What are coral reefs? crystal 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (Australias Coral Sea reefs, are renowned for, crystal) -> crystal (5062ms) What are coral reefs? out 1.333333333328 What are coral reefs? -> $x: ($x, do, coral reef) -> (out, is being done to mitigate, coral reef loss) -> out (5097ms) What are coral reefs? various species 1.333333333328 What are coral reefs? -> $x: (coral reef, be for, $x) -> (Coral reefs, are a habitat for, various species) -> various species (5062ms) What are coral reefs? the natural conditions 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (the natural conditions, found on, coral reefs) -> the natural conditions (5241ms) What are coral reefs? the marine life 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (the marine life, found on, coral reefs) -> the marine life (5210ms) What are coral reefs? Fire corals 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (Fire corals, are found on, coral reefs) -> Fire corals (5210ms) What are coral reefs? trochus 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (trochus, are found on, coral reefs) -> trochus (5195ms) What are coral reefs? a novice 1.222222222218 What are coral reefs? -> $x: ($x, create, coral reef) -> (a novice, can create, a beautiful coral reef) -> a novice (5163ms) What are coral reefs? the Caribbean 1.222222222218 What are coral reefs? -> $x: ($x, create, coral reef) -> (the Caribbean, create perfect conditions for, coral reefs) -> the Caribbean (5195ms) What are coral reefs? the sand 1.222222222218 What are coral reefs? -> $x: ($x, happen to, coral reef) -> (the sand, is happening to, our coral reefs) -> the sand (5179ms) What are coral reefs? The Caribbean spiny lobster 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (The Caribbean spiny lobster, is found on, coral reefs) -> The Caribbean spiny lobster (5241ms) What are coral reefs? a good dive 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (a good dive, may find, coral reefs) -> a good dive (5163ms) What are coral reefs? Queen angelfish 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (Queen angelfish, are found on, coral reefs) -> Queen angelfish (5179ms) What are coral reefs? the mouth.It 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (the mouth.It, can be found living on, coral reefs) -> the mouth.It (5210ms) What are coral reefs? wartime 1.222222222218 What are coral reefs? -> $x: ($x, create, coral reef) -> (wartime, has created, many artificial coral reefs) -> wartime (5226ms) What are coral reefs? reef biologists 1.222222222218 What are coral reefs? -> $x: ($x, refer, coral reef) -> (reef biologists, continually refer to, ?the coral reef crisis) -> reef biologists (5163ms) What are coral reefs? the species 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (the species, found on, coral reefs) -> the species (5210ms) What are coral reefs? God 1.222222222218 What are coral reefs? -> $x: ($x, create, coral reef) -> (God, create, coral reefs) -> God (5241ms) What are coral reefs? individual polyps 1.222222222218 What are coral reefs? -> $x: ($x, create, coral reef) -> (individual polyps, create, a coral reef) -> individual polyps (5256ms) What are coral reefs? Coral attaches 1.222222222218 What are coral reefs? -> $x: ($x, create, coral reef) -> (Coral attaches, then grows to create, a coral reef) -> Coral attaches (5179ms) What are coral reefs? the genus Labroides 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (the genus Labroides, found on, coral reefs) -> the genus Labroides (5147ms) What are coral reefs? we?ll drift 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (we?ll drift, find, coral reefs) -> we?ll drift (5195ms) What are coral reefs? Sea cucumbers 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (Sea cucumbers, can be easily found on, coral reefs) -> Sea cucumbers (5210ms) What are coral reefs? time 1.222222222218 What are coral reefs? -> $x: ($x, happen to, coral reef) -> (time, happens to, the coral reefs) -> time (5195ms) What are coral reefs? butterflyfishes 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (butterflyfishes, are found only on, coral reefs) -> butterflyfishes (5163ms) What are coral reefs? common marine organisms 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (common marine organisms, found on, coral reefs) -> common marine organisms (5226ms) What are coral reefs? the most unusual fishes 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (the most unusual fishes, found on, coral reefs) -> the most unusual fishes (5195ms) What are coral reefs? a gelatinous lump 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (a gelatinous lump, ordinarily found grazing on, coral reefs) -> a gelatinous lump (5195ms) What are coral reefs? corals 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (corals, found on, coral reefs) -> corals (5210ms) What are coral reefs? colonies 1.222222222218 What are coral reefs? -> $x: ($x, create, coral reef) -> (colonies, create the framework of, the coral reef) -> colonies (5179ms) What are coral reefs? the most beautiful fishes 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (the most beautiful fishes, found on, coral reefs) -> the most beautiful fishes (5195ms) What are coral reefs? coral polyps 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (coral polyps, are found on, coral reefs) -> coral polyps (5210ms) What are coral reefs? tropical marine fishes 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (tropical marine fishes, found on, coral reefs) -> tropical marine fishes (5241ms) What are coral reefs? wetlands 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (wetlands, found adjacent to, coral reefs) -> wetlands (5147ms) What are coral reefs? The Nassau Grouper 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (The Nassau Grouper, is found on, coral reef) -> The Nassau Grouper (5195ms) What are coral reefs? The bluestreak cleaner wrasse 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (The bluestreak cleaner wrasse, is found on, coral reefs) -> The bluestreak cleaner wrasse (5179ms) What are coral reefs? Natural CO2 seeps 1.222222222218 What are coral reefs? -> $x: ($x, happen to, coral reef) -> (Natural CO2 seeps, could happen to, Coral Reefs) -> Natural CO2 seeps (5163ms) What are coral reefs? French angelfish 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (French angelfish, are found on, coral reefs) -> French angelfish (5163ms) What are coral reefs? Snorkelers 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (Snorkelers, find, coral reefs) -> Snorkelers (5179ms) What are coral reefs? water fish 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (water fish, found on, coral reefs) -> water fish (5226ms) What are coral reefs? Vast seagrass meadows 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (Vast seagrass meadows, are often found between, coral reefs) -> Vast seagrass meadows (5163ms) What are coral reefs? hair algae 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (hair algae, are also commonly found on, coral reefs) -> hair algae (5226ms) What are coral reefs? Siren rocks 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (Siren rocks, are often found near, coral reefs) -> Siren rocks (5179ms) What are coral reefs? The water 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (The water, found at, corals reefs) -> The water (5163ms) What are coral reefs? An eight-year research project 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (An eight-year research project, has found, coral reef) -> An eight-year research project (5241ms) What are coral reefs? managers 1.222222222218 What are coral reefs? -> $x: ($x, happen to, coral reef) -> (managers, happened to, their coral reefs) -> managers (5163ms) What are coral reefs? obviously high species diversity 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (obviously high species diversity, found on, coral reefs) -> obviously high species diversity (5226ms) What are coral reefs? The reefs 1.222222222218 What are coral reefs? -> $x: ($x, refer, coral reef) -> (The reefs, are referring to as, non-reef building corals) -> The reefs (5163ms) What are coral reefs? the marine habitats 1.222222222218 What are coral reefs? -> $x: ($x, refer, coral reef) -> (the marine habitats, will be referred to in, the lab-coral reef) -> the marine habitats (5179ms) What are coral reefs? Adventure 1.222222222218 What are coral reefs? -> $x: ($x, create, coral reef) -> (Adventure, create, a coral reef) -> Adventure (5179ms) What are coral reefs? Yucatan 1.222222222218 What are coral reefs? -> $x: ($x, happen to, coral reef) -> (Yucatan, happens to have, the second longest coral reef) -> Yucatan (5226ms) What are coral reefs? The study 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (The study, found, coral reefs) -> The study (5195ms) What are coral reefs? the world?s oceans 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (the world?s oceans, are primarily found around, coral reefs) -> the world?s oceans (5241ms) What are coral reefs? A 2006 evaluation 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (A 2006 evaluation, found, our coral reefs) -> A 2006 evaluation (5210ms) What are coral reefs? Recent studies 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (Recent studies, have also found, coral reefs) -> Recent studies (5210ms) What are coral reefs? the second section 1.222222222218 What are coral reefs? -> $x: ($x, deal with, coral reef) -> (the second section, deals with, Coral Reefs) -> the second section (5226ms) What are coral reefs? Fiji 1.222222222218 What are coral reefs? -> $x: ($x, refer, coral reef) -> (Fiji, is often referred to as, the ?soft coral reef capital) -> Fiji (5147ms) What are coral reefs? the predatory fish and sharks 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (the predatory fish and sharks, found, patrolling coral reefs) -> the predatory fish and sharks (5147ms) What are coral reefs? The ship wreck 1.222222222218 What are coral reefs? -> $x: ($x, create, coral reef) -> (The ship wreck, has created, new coral reefs) -> The ship wreck (5241ms) What are coral reefs? Lagoons 1.222222222218 What are coral reefs? -> $x: ($x, create, coral reef) -> (Lagoons, are created by, coral reefs) -> Lagoons (5163ms) What are coral reefs? the second most common invertebrate 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (the second most common invertebrate, found on, coral reefs) -> the second most common invertebrate (5210ms) What are coral reefs? the Yucatan Peninsula 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (the Yucatan Peninsula, you?ll find, coral reefs) -> the Yucatan Peninsula (5163ms) What are coral reefs? the natural shimmering effect 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (the natural shimmering effect, found on, coral reefs) -> the natural shimmering effect (5163ms) What are coral reefs? Alexander 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (Alexander, found the question of, coral reefs) -> Alexander (5241ms) What are coral reefs? the hotels resident tour rep 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (the hotels resident tour rep, even found, coral reefs) -> the hotels resident tour rep (5179ms) What are coral reefs? the west coast 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (the west coast, find, stunning coral reefs) -> the west coast (5241ms) What are coral reefs? scuba divers 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (scuba divers, will find living, coral reefs) -> scuba divers (5256ms) What are coral reefs? the word 1.222222222218 What are coral reefs? -> $x: ($x, happen to, coral reef) -> (the word, is happening to, the coral reefs) -> the word (5163ms) What are coral reefs? the biggest bony fishes 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (the biggest bony fishes, found on, coral reefs) -> the biggest bony fishes (5179ms) What are coral reefs? Porcupine fish 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (Porcupine fish, are usually found near, coral reefs) -> Porcupine fish (5147ms) What are coral reefs? colorful and fascinating organisms 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (colorful and fascinating organisms, found on, coral reefs) -> colorful and fascinating organisms (5163ms) What are coral reefs? the algae 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (the algae, often found on, coral reefs) -> the algae (5226ms) What are coral reefs? cleaner wrasse 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (cleaner wrasse, found on, coral reefs) -> cleaner wrasse (5226ms) What are coral reefs? The giant clam 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (The giant clam, is found on, coral reefs) -> The giant clam (5179ms) What are coral reefs? fish families 1.222222222218 What are coral reefs? -> $x: ($x, found, coral reef) -> (fish families, found on, coral reefs) -> fish families (5195ms) What are coral reefs? A mesoecosystem 1.222222222218 What are coral reefs? -> $x: ($x, refer, coral reef) -> (A mesoecosystem, could refer to, the coral reef) -> A mesoecosystem (5147ms) What are coral reefs? the entrance 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (the entrance, are, coral reefs) -> the entrance (5487ms) What are coral reefs? modern giant clams 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (modern giant clams, are found in, modern coral reefs) -> modern giant clams (5516ms) What are coral reefs? The giant clams 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (The giant clams, are native to, the shallow coral reefs) -> The giant clams (5517ms) What are coral reefs? Explosions 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (Explosions, are particularly harmful to, coral reefs) -> Explosions (5387ms) What are coral reefs? Biorock ? methods 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (Biorock ? methods, can restore damaged, coral reefs) -> Biorock ? methods (5554ms) What are coral reefs? non-climate-change 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (non-climate-change, can impact, coral reefs) -> non-climate-change (5477ms) What are coral reefs? ?aquanauts 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (?aquanauts, is working to protect, coral reefs) -> ?aquanauts (5256ms) What are coral reefs? the storms 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (the storms, are an important force in, coral reef evolution) -> the storms (5526ms) What are coral reefs? Oil-spill clean-up agents 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (Oil-spill clean-up agents, are a threat to, coral reefs) -> Oil-spill clean-up agents (5572ms) What are coral reefs? Barbados 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (Barbados, is largely surrounded by, coral reefs) -> Barbados (5545ms) What are coral reefs? expertise 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (expertise, are, coral reefs) -> expertise (5401ms) What are coral reefs? the Caribbean Sea 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (the Caribbean Sea, is home to, coral reefs) -> the Caribbean Sea (5317ms) What are coral reefs? The problem 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (The problem, is, corals reefs) -> The problem (5526ms) What are coral reefs? water temperature 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (water temperature, can erode, coral reefs) -> water temperature (5517ms) What are coral reefs? Blue 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (Blue, is found in, the coral reefs) -> Blue (5373ms) What are coral reefs? each island 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (each island, is surrounded by, coral reefs) -> each island (5317ms) What are coral reefs? a diver 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (a diver, can dive on, a beautiful coral reef) -> a diver (5401ms) What are coral reefs? swimmers and snorkelers 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (swimmers and snorkelers, can explore, fabulous coral reefs) -> swimmers and snorkelers (5487ms) What are coral reefs? Bali 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (Bali, is surrounded by, coral reefs) -> Bali (5317ms) What are coral reefs? Reef Relief 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (Reef Relief, is dedicated to preserving, coral reefs) -> Reef Relief (5517ms) What are coral reefs? a calm bay 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (a calm bay, are submerging to, the coral reef) -> a calm bay (5271ms) What are coral reefs? The Anegada 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (The Anegada, is simply an opening in, the coral reef) -> The Anegada (5345ms) What are coral reefs? scientists 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (scientists, was published in, the journal Coral Reefs) -> scientists (5454ms) What are coral reefs? forams 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (forams, proved to be a difficult time for, coral reefs) -> forams (5563ms) What are coral reefs? Chemical dispersants 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (Chemical dispersants, are very toxic to, coral reefs) -> Chemical dispersants (5441ms) What are coral reefs? humans 1.222222222217 What are coral reefs? -> $x: ($x, influence, coral reef) -> (humans, influenced, coral reef health) -> humans (5331ms) What are coral reefs? The park 1.222222222217 What are coral reefs? -> $x: ($x, consist of, coral reef) -> (The park, consists of, 80 km2 coral reefs) -> The park (5271ms) What are coral reefs? top right 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (top right, are, Coral reefs) -> top right (5360ms) What are coral reefs? a million 1.222222222217 What are coral reefs? -> $x: (coral reef, be about, $x) -> (A coral reef, is about, a million) -> a million (5345ms) What are coral reefs? swimmers 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (swimmers, can investigate, the coral reef 's) -> swimmers (5345ms) What are coral reefs? a professor 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (a professor, is bleaching in, local coral reefs) -> a professor (5507ms) What are coral reefs? Warming temperatures 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (Warming temperatures, can spell disaster for, coral reefs) -> Warming temperatures (5487ms) What are coral reefs? the rate 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (the rate, are disappearing, coral reefs) -> the rate (5373ms) What are coral reefs? sharks 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (sharks, are grouped in, the categories Coral Reefs) -> sharks (5477ms) What are coral reefs? Wikipedia 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (Wikipedia, is going to be, the coral reef encyclopedia) -> Wikipedia (5286ms) What are coral reefs? The beach 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (The beach, is protected by, coral reefs) -> The beach (5467ms) What are coral reefs? snorkeling and fishing 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (snorkeling and fishing, can also damage, coral reefs) -> snorkeling and fishing (5387ms) What are coral reefs? Sergeant majors 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (Sergeant majors, are found in, coral reefs and seagrass beds) -> Sergeant majors (5467ms) What are coral reefs? fishing 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (fishing, are the best way to preserve, coral reefs) -> fishing (5387ms) What are coral reefs? 60.94 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (60.94, were, coral reef) -> 60.94 (5526ms) What are coral reefs? the chemicals 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (the chemicals, are also killing, coral reefs) -> the chemicals (5467ms) What are coral reefs? the most amazing sights 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (the most amazing sights, is, coral reefs) -> the most amazing sights (5428ms) What are coral reefs? Carbon dioxide 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (Carbon dioxide, can affect, coral reefs) -> Carbon dioxide (5345ms) What are coral reefs? Magalawa Island 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (Magalawa Island, are, coral reefs) -> Magalawa Island (5467ms) What are coral reefs? 32 ] 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (32 ], was thought to be, ?coral reef?) -> 32 ] (5373ms) What are coral reefs? Flora Major ecosystem types 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (Flora Major ecosystem types, are, Coral reefs) -> Flora Major ecosystem types (5554ms) What are coral reefs? 300m long and 100m wide , 1.222222222217 What are coral reefs? -> $x: (coral reef, be about, $x) -> (The coral reef, is about, 300m long and 100m wide ,) -> 300m long and 100m wide , (5454ms) What are coral reefs? The survey 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (The survey, has been expanded to, coral reefs) -> The survey (5301ms) What are coral reefs? the divers 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (the divers, are experts in, coral reef ecologist) -> the divers (5554ms) What are coral reefs? Population densities 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (Population densities, are low in, all coral reef areas) -> Population densities (5317ms) What are coral reefs? the fine 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (the fine, has been allocated to, coral reef restoration projects) -> the fine (5428ms) What are coral reefs? 50 yards 1.222222222217 What are coral reefs? -> $x: (coral reef, be about, $x) -> (A coral reef, is about, 50 yards) -> 50 yards (5554ms) What are coral reefs? access 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (access, is limited to protect, coral reefs) -> access (5580ms) What are coral reefs? The runoff 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (The runoff, is harmful to, coral reefs) -> The runoff (5526ms) What are coral reefs? Grand Cayman 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (Grand Cayman, is surrounded by, coral reef) -> Grand Cayman (5317ms) What are coral reefs? large spatial scales 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (large spatial scales, is, coral reef) -> large spatial scales (5467ms) What are coral reefs? an important factor 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (an important factor, is influencing worldwide, coral reefs) -> an important factor (5580ms) What are coral reefs? the numbers and types 1.222222222217 What are coral reefs? -> $x: (coral reef, be about, $x) -> (coral reefs, is known about, the numbers and types) -> the numbers and types (5545ms) What are coral reefs? the Great Barrier Reef Marine Park 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (the Great Barrier Reef Marine Park, is, coral reef) -> the Great Barrier Reef Marine Park (5554ms) What are coral reefs? the voyage 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (the voyage, can be included examination of, coral reefs) -> the voyage (5554ms) What are coral reefs? Ariel 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (Ariel, can swim through, a coral reef) -> Ariel (5401ms) What are coral reefs? Humans 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (Humans, can alter, coral reefs) -> Humans (5271ms) What are coral reefs? the study 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (the study, was published in, the journal Coral Reefs) -> the study (5441ms) What are coral reefs? Offshore 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (Offshore, are, coral reefs) -> Offshore (5572ms) What are coral reefs? acidification 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (acidification, may be a threat to, coral reefs) -> acidification (5545ms) What are coral reefs? Sponges 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (Sponges, can harm, reef corals) -> Sponges (5517ms) What are coral reefs? the oceanic habitats 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (the oceanic habitats, are, coral reefs) -> the oceanic habitats (5563ms) What are coral reefs? Brain corals 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (Brain corals, are found in, warm-water coral reefs) -> Brain corals (5301ms) What are coral reefs? the forests 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (the forests, are vitally important to, coral reefs) -> the forests (5467ms) What are coral reefs? A sea turtle 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (A sea turtle, are commonly found swimming in, the coral reefs) -> A sea turtle (5497ms) What are coral reefs? herbivorous fishes 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (herbivorous fishes, may be critical to restoring, coral reefs) -> herbivorous fishes (5497ms) What are coral reefs? 300 meters 1.222222222217 What are coral reefs? -> $x: (coral reef, be about, $x) -> (The coral reef, is located about, 300 meters) -> 300 meters (5414ms) What are coral reefs? Let?s 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (Let?s, Are, Coral Reefs) -> Let?s (5257ms) What are coral reefs? Tartar 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (Tartar, is shaped similarly to, coral reef) -> Tartar (5317ms) What are coral reefs? 4200 years 1.222222222217 What are coral reefs? -> $x: (coral reef, be about, $x) -> (The oldest coral reef, is about, 4200 years) -> 4200 years (5467ms) What are coral reefs? 1914 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (1914, was, Coral Reef) -> 1914 (5580ms) What are coral reefs? The islet 1.222222222217 What are coral reefs? -> $x: ($x, consist of, coral reef) -> (The islet, consists of, an old calcareous coral reef) -> The islet (5487ms) What are coral reefs? reef balls 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (reef balls, are used to help restore, coral reefs) -> reef balls (5401ms) What are coral reefs? cyanide 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (cyanide, There can be big money in, coral-reef cuisine) -> cyanide (5387ms) What are coral reefs? the South Coast 1.222222222217 What are coral reefs? -> $x: ($x, consist of, coral reef) -> (the South Coast, mainly consists of, coral reefs) -> the South Coast (5454ms) What are coral reefs? Entrepreneurial areas 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (Entrepreneurial areas, are similar to, coral reefs) -> Entrepreneurial areas (5331ms) What are coral reefs? Such information 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (Such information, is relatively rare in, coral reef areas) -> Such information (5414ms) What are coral reefs? Oceanography 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (Oceanography, is presently being applied to, coral reefs) -> Oceanography (5414ms) What are coral reefs? Dredging 1.222222222217 What are coral reefs? -> $x: ($x, influence, coral reef) -> (Dredging, could have an influence on, coral reefs) -> Dredging (5286ms) What are coral reefs? The Bahamas 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (The Bahamas, is known to offer worldly, coral reefs) -> The Bahamas (5507ms) What are coral reefs? Individuals 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (Individuals, are found in, algal and coral reefs) -> Individuals (5454ms) What are coral reefs? the growing acidity 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (the growing acidity, would be very likely to harm, coral reefs) -> the growing acidity (5517ms) What are coral reefs? browser bug 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (browser bug, Are, Coral Reefs) -> browser bug (5507ms) What are coral reefs? NOAA 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (NOAA, are, coral reefs) -> NOAA (5497ms) What are coral reefs? Pink 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (Pink, is a beautiful fish in, the coral reef Pink) -> Pink (5572ms) What are coral reefs? organic and artificial 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (organic and artificial, is blurred in, the electronic coral reef) -> organic and artificial (5487ms) What are coral reefs? a result Biorock technology 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (a result Biorock technology, can be used to keep, coral reefs) -> a result Biorock technology (5507ms) What are coral reefs? Pacific Corals 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (Pacific Corals, Can fish save, coral reefs) -> Pacific Corals (5373ms) What are coral reefs? SCUBA gear 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (SCUBA gear, was to, coral reef research) -> SCUBA gear (5535ms) What are coral reefs? An island 1.222222222217 What are coral reefs? -> $x: ($x, consist of, coral reef) -> (An island, consisting of, a circular coral reef) -> An island (5286ms) What are coral reefs? Marine 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (Marine, are key to saving, coral reefs) -> Marine (5467ms) What are coral reefs? Volume 1 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (Volume 1, is, CORAL REEF) -> Volume 1 (5517ms) What are coral reefs? the diving 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (the diving, is in, the coral reef) -> the diving (5487ms) What are coral reefs? Hurricanes 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (Hurricanes, can help, coral reefs) -> Hurricanes (5536ms) What are coral reefs? Examples 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (Examples, are, coral reefs) -> Examples (5360ms) What are coral reefs? Divers 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (Divers, can enjoy diverse attractions like, coral reefs) -> Divers (5301ms) What are coral reefs? temperature 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (temperature, are global threats to, coral reefs) -> temperature (5256ms) What are coral reefs? Polynesian and Micronesian islands 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (Polynesian and Micronesian islands, are, coral reefs) -> Polynesian and Micronesian islands (5256ms) What are coral reefs? HIV infections 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (HIV infections, can be linked back to, coral reefs) -> HIV infections (5487ms) What are coral reefs? Coral bleaching 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (Coral bleaching, is an increasing threat to, coral reefs) -> Coral bleaching (5497ms) What are coral reefs? Timor 1.222222222217 What are coral reefs? -> $x: ($x, consist of, coral reef) -> (Timor, consist of raised, coral reefs and deposits) -> Timor (5526ms) What are coral reefs? coral reef fisheries 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (coral reef fisheries, can affect, coral reef growth) -> coral reef fisheries (5441ms) What are coral reefs? the aquarium trade 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (the aquarium trade, can seriously damage, Coral Reefs) -> the aquarium trade (5545ms) What are coral reefs? home 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (home, is, coral reefs) -> home (5360ms) What are coral reefs? a good amount 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (a good amount, are hiding in, the coral reefs) -> a good amount (5563ms) What are coral reefs? visitors and locals 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (visitors and locals, can enjoy, the beautiful coral reefs) -> visitors and locals (5545ms) What are coral reefs? Global warming 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (Global warming, is a major threat to, coral reefs) -> Global warming (5572ms) What are coral reefs? the visitors 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (the visitors, can see, the coral reef) -> the visitors (5467ms) What are coral reefs? passengers 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (passengers, can view, a spectacular coral reef) -> passengers (5572ms) What are coral reefs? The lagoon 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (The lagoon, is surrounded by, coral reef) -> The lagoon (5477ms) What are coral reefs? the sea stars 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (the sea stars, are hiding in, the coral reef) -> the sea stars (5301ms) What are coral reefs? nutrients 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (nutrients, can harm, coral reef ecosystems) -> nutrients (5454ms) What are coral reefs? open-ocean regions 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (open-ocean regions, can also be seen above, coral reefs) -> open-ocean regions (5526ms) What are coral reefs? Snorkellers 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (Snorkellers, can explore, the coral reef event) -> Snorkellers (5387ms) What are coral reefs? an interconnected chain 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (an interconnected chain, is home to, coral reefs) -> an interconnected chain (5517ms) What are coral reefs? Permanent moorings 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (Permanent moorings, have been established in, coral reef zones) -> Permanent moorings (5317ms) What are coral reefs? 71.6 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (71.6, were, coral reef) -> 71.6 (5507ms) What are coral reefs? The United States 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (The United States, is involved in, coral reef preservation) -> The United States (5345ms) What are coral reefs? The Centers 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (The Centers, are active in, coral reef restoration efforts) -> The Centers (5387ms) What are coral reefs? The dive 1.222222222217 What are coral reefs? -> $x: ($x, consist of, coral reef) -> (The dive, consists of, wonderful , colorful coral-covered reefs) -> The dive (5331ms) What are coral reefs? The seaweed 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (The seaweed, is very important in, the coral reef ecosystem) -> The seaweed (5401ms) What are coral reefs? Damas 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (Damas, is found in, a coral reef) -> Damas (5497ms) What are coral reefs? the water 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (the water, is, coral reef) -> the water (5487ms) What are coral reefs? the sea 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (the sea, can smother, coral reefs) -> the sea (5373ms) What are coral reefs? Visitors 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (Visitors, can see, the coral reefs) -> Visitors (5360ms) What are coral reefs? Eilat 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (Eilat, is next to, coral reefs) -> Eilat (5317ms) What are coral reefs? Peat bogs 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (Peat bogs, are similar to, coral reefs) -> Peat bogs (5441ms) What are coral reefs? much water 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (much water, is in, the coral reef exhibit) -> much water (5387ms) What are coral reefs? The sandy beaches 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (The sandy beaches, are fringed with, coral reefs) -> The sandy beaches (5373ms) What are coral reefs? butterflyfish 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (butterflyfish, are a common sight in, healthy coral reefs) -> butterflyfish (5387ms) What are coral reefs? Rodrigues 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (Rodrigues, is entirely surrounded by, coral reefs) -> Rodrigues (5477ms) What are coral reefs? the region 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (the region, is currently deemed adequate to support, coral reefs) -> the region (5373ms) What are coral reefs? the new technology 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (the new technology, may be beneficial to, coral reefs) -> the new technology (5517ms) What are coral reefs? ?Coral Reef Protection 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (?Coral Reef Protection, Are, Coral Reefs) -> ?Coral Reef Protection (5271ms) What are coral reefs? the surrounding seas 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (the surrounding seas, are rich in, beautiful coral reefs) -> the surrounding seas (5428ms) What are coral reefs? 1/2 mile off-shore 1.222222222217 What are coral reefs? -> $x: (coral reef, be about, $x) -> (The coral reef, is only about, 1/2 mile off-shore) -> 1/2 mile off-shore (5360ms) What are coral reefs? a sustainable wild harvest 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (a sustainable wild harvest, can defend, a coral reef) -> a sustainable wild harvest (5545ms) What are coral reefs? Bleaching 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (Bleaching, is a common phenomenon in, most coral reefs) -> Bleaching (5414ms) What are coral reefs? the Mozambique Channel 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (the Mozambique Channel, are home to, numerous coral reefs) -> the Mozambique Channel (5271ms) What are coral reefs? the rain forests 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (the rain forests, have been diving in, many coral reefs) -> the rain forests (5454ms) What are coral reefs? the sea temperature 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (the sea temperature, can bleach, the coral reefs) -> the sea temperature (5517ms) What are coral reefs? Hawksbills 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (Hawksbills, are vulnerable to declining, coral reefs) -> Hawksbills (5526ms) What are coral reefs? anthropogenic activities 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (anthropogenic activities, are major threats to, coral reefs) -> anthropogenic activities (5331ms) What are coral reefs? one continent 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (one continent, can kill, coral reefs) -> one continent (5271ms) What are coral reefs? ASTER 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (ASTER, can also map the distribution of, coral reefs) -> ASTER (5317ms) What are coral reefs? 31 to 34 ppt 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (31 to 34 ppt, are conducive to, coral reef development) -> 31 to 34 ppt (5517ms) What are coral reefs? turn 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (turn, can lead to, coral reef ecosystem collapse) -> turn (5331ms) What are coral reefs? Biota ! 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (Biota !, is thought to be, the biggest coral reef) -> Biota ! (5428ms) What are coral reefs? the photos 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (the photos, has now been published in, the journal Coral Reefs) -> the photos (5536ms) What are coral reefs? 700 sq km 1.222222222217 What are coral reefs? -> $x: (coral reef, be about, $x) -> (the coral reef, is about, 700 sq km) -> 700 sq km (5467ms) What are coral reefs? the globe 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (the globe, are attracted to, its coral reefs) -> the globe (5572ms) What are coral reefs? The topography 1.222222222217 What are coral reefs? -> $x: ($x, consist of, coral reef) -> (The topography, can consist of, coral reefs) -> The topography (5563ms) What are coral reefs? kelp forests 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (kelp forests, are analogous to, coral reefs) -> kelp forests (5360ms) What are coral reefs? one-quarter 1.222222222217 What are coral reefs? -> $x: (coral reef, be about, $x) -> (Coral reefs, are the source of about, one-quarter) -> one-quarter (5441ms) What are coral reefs? One shipwreck 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (One shipwreck, can devastate, a coral reef) -> One shipwreck (5373ms) What are coral reefs? the research 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (the research, is being conducted on, coral reefs) -> the research (5563ms) What are coral reefs? An example 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (An example, is, coral reefs) -> An example (5477ms) What are coral reefs? scuba diving and fishing 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (scuba diving and fishing, can damage, coral reefs) -> scuba diving and fishing (5526ms) What are coral reefs? climate change 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (climate change, is affecting, coral reefs) -> climate change (5286ms) What are coral reefs? The colorway 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (The colorway, is, coral reef) -> The colorway (5428ms) What are coral reefs? The cubs 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (The cubs, can be found in, proximity of a coral reef) -> The cubs (5317ms) What are coral reefs? snorkeling buffs 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (snorkeling buffs, can appreciate, the famed coral reefs) -> snorkeling buffs (5441ms) What are coral reefs? The waters around islands 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (The waters around islands, are surrounded by, coral reefs) -> The waters around islands (5497ms) What are coral reefs? the Pacific Ocean 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (the Pacific Ocean, there are many threats to, coral reefs) -> the Pacific Ocean (5545ms) What are coral reefs? the coasts 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (the coasts, are fringed with, coral reefs) -> the coasts (5572ms) What are coral reefs? the local level 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (the local level, is to preserve, coral reefs) -> the local level (5331ms) What are coral reefs? porcupinefish 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (porcupinefish, can be seen on, coral reefs) -> porcupinefish (5572ms) What are coral reefs? Gerry 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (Gerry, had been engaged in, a coral reef project) -> Gerry (5271ms) What are coral reefs? Anchors 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (Anchors, can also destroy, coral reefs) -> Anchors (5414ms) What are coral reefs? The waters 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (The waters, are rich in, coral reefs and crustaceans) -> The waters (5428ms) What are coral reefs? extreme heat 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (extreme heat, is putting the worlds, coral reefs) -> extreme heat (5545ms) What are coral reefs? the sea-anemones 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (the sea-anemones, are found in, biodiversity-rich coral reefs) -> the sea-anemones (5373ms) What are coral reefs? The magnificent turquoise lagoon 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (The magnificent turquoise lagoon, is protected by, coral reef) -> The magnificent turquoise lagoon (5286ms) What are coral reefs? an all natural product 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (an all natural product, is found in, the Sango coral reefs) -> an all natural product (5331ms) What are coral reefs? The rising development 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (The rising development, is also a threat to, coral reefs) -> The rising development (5467ms) What are coral reefs? The caverns 1.222222222217 What are coral reefs? -> $x: ($x, consist of, coral reef) -> (The caverns, consist of, coral reef) -> The caverns (5563ms) What are coral reefs? a three-mile radius 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (a three-mile radius, are, coral reefs) -> a three-mile radius (5387ms) What are coral reefs? Kiribati 1.222222222217 What are coral reefs? -> $x: ($x, consist of, coral reef) -> (Kiribati, consists of, 33 low-lying coral reefs and atolls) -> Kiribati (5345ms) What are coral reefs? poison 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (poison, is a serious threat to, coral reefs) -> poison (5554ms) What are coral reefs? Atolls 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (Atolls, are rings of, coral reefs) -> Atolls (5554ms) What are coral reefs? Experienced divers 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (Experienced divers, can explore, coral reefs and shipwrecks) -> Experienced divers (5535ms) What are coral reefs? Manukan 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (Manukan, are, coral reefs) -> Manukan (5401ms) What are coral reefs? West part 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (West part, is, coral reef) -> West part (5345ms) What are coral reefs? the Great Barrier Reef 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (the Great Barrier Reef, are, coral reefs) -> the Great Barrier Reef (5535ms) What are coral reefs? The four largest islands 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (The four largest islands, are surrounded by, coral reefs) -> The four largest islands (5554ms) What are coral reefs? The borders 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (The borders, are supposed to be, Arabian/Coral reef) -> The borders (5286ms) What are coral reefs? 6,000 to 8,000 years 1.222222222217 What are coral reefs? -> $x: (coral reef, be about, $x) -> (Most modern coral reefs, are about, 6,000 to 8,000 years) -> 6,000 to 8,000 years (5454ms) What are coral reefs? Larger tabulate corals 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (Larger tabulate corals, are found in, coral-stromatoporoid reefs) -> Larger tabulate corals (5517ms) What are coral reefs? specialisation 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (specialisation, is in, reef-building corals) -> specialisation (5301ms) What are coral reefs? the broad crests 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (the broad crests, are very important in, coral reef environments) -> the broad crests (5373ms) What are coral reefs? La Aguja one 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (La Aguja one, can observe a great variety of, coral reefs) -> La Aguja one (5256ms) What are coral reefs? 50 minutes 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (50 minutes, are, coral reefs) -> 50 minutes (5497ms) What are coral reefs? The republic 1.222222222217 What are coral reefs? -> $x: ($x, consist of, coral reef) -> (The republic, consists of, two coral reefs) -> The republic (5580ms) What are coral reefs? lots of people 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (lots of people, are also trying to save, coral reefs) -> lots of people (5414ms) What are coral reefs? Bleaching events 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (Bleaching events, can be disastrous for, coral reef ecosystems) -> Bleaching events (5477ms) What are coral reefs? the norm 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (the norm, can decimate, coral reefs) -> the norm (5454ms) What are coral reefs? non-divers 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (non-divers, can enjoy, coral reef snorkelling) -> non-divers (5572ms) What are coral reefs? the island 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (the island, is encircled by, coral reefs) -> the island (5526ms) What are coral reefs? The warm waters 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (The warm waters, are home to, fascinating coral reefs) -> The warm waters (5526ms) What are coral reefs? The most important habitats 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (The most important habitats, are, coral reefs) -> The most important habitats (5256ms) What are coral reefs? 45 minutes 1.222222222217 What are coral reefs? -> $x: (coral reef, be about, $x) -> (a virgin coral reef, can be reached in about, 45 minutes) -> 45 minutes (5545ms) What are coral reefs? articles 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (articles, are, coral reefs) -> articles (5331ms) What are coral reefs? a fish 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (a fish, has been published in, the journal Coral Reefs) -> a fish (5507ms) What are coral reefs? wastewater 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (wastewater, can negatively impact, coral reef ecosystems) -> wastewater (5487ms) What are coral reefs? The blacktip reef shark 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (The blacktip reef shark, is very common in, the coral reefs) -> The blacktip reef shark (5331ms) What are coral reefs? preschoolers 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (preschoolers, can tour, a coral reef) -> preschoolers (5545ms) What are coral reefs? Too bad Johnny 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (Too bad Johnny, is stuck in, the Coral Reef Grand) -> Too bad Johnny (5360ms) What are coral reefs? Sea urchin research 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (Sea urchin research, can apply to, coral reefs) -> Sea urchin research (5256ms) What are coral reefs? sea life 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (sea life, can be found in, the coral reefs) -> sea life (5536ms) What are coral reefs? Too many damsels 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (Too many damsels, can be a bad thing for, coral reefs) -> Too many damsels (5563ms) What are coral reefs? Local tours 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (Local tours, are, coral reefs) -> Local tours (5345ms) What are coral reefs? Natural occurrences 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (Natural occurrences, can adversely impact, coral reefs) -> Natural occurrences (5428ms) What are coral reefs? WCS marine scientists 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (WCS marine scientists, are working to conserve, coral reefs) -> WCS marine scientists (5517ms) What are coral reefs? 2001 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (2001, are, coral reefs) -> 2001 (5373ms) What are coral reefs? risk 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (risk, are, coral reefs) -> risk (5414ms) What are coral reefs? water chemistry 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (water chemistry, can damage, coral reefs) -> water chemistry (5286ms) What are coral reefs? isopods 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (isopods, are found in, coral reef aquaria) -> isopods (5454ms) What are coral reefs? the nearby Sea Gardens 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (the nearby Sea Gardens, are, coral reefs) -> the nearby Sea Gardens (5360ms) What are coral reefs? parrotfish and surgeonfish 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (parrotfish and surgeonfish, can only keep, coral reefs) -> parrotfish and surgeonfish (5554ms) What are coral reefs? Helicopters 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (Helicopters, were used to search, coral reefs) -> Helicopters (5286ms) What are coral reefs? A similar mechanism 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (A similar mechanism, can operate in, a coral reef) -> A similar mechanism (5414ms) What are coral reefs? local fishers and mosques 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (local fishers and mosques, were working to conserve, coral reefs) -> local fishers and mosques (5414ms) What are coral reefs? the eastern coast 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (the eastern coast, is home to, coral reefs) -> the eastern coast (5554ms) What are coral reefs? preserving cultures 1.222222222217 What are coral reefs? -> $x: (coral reef, be about, $x) -> (Preserving coral reefs, is about, preserving cultures) -> preserving cultures (5301ms) What are coral reefs? visitors 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (visitors, can enjoy close-up encounters with, coral reefs) -> visitors (5428ms) What are coral reefs? Not all of St 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (Not all of St, are actually, coral reefs) -> Not all of St (5467ms) What are coral reefs? Credits and References 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (Credits and References, Are, Coral Reefs) -> Credits and References (5414ms) What are coral reefs? the hills 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (the hills, are covered in, large coral reefs) -> the hills (5414ms) What are coral reefs? new species 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (new species, are thought to be, coral reefs) -> new species (5536ms) What are coral reefs? the topography 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (the topography, are, coral reefs) -> the topography (5428ms) What are coral reefs? cyanide fishing 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (cyanide fishing, is to, the coral reefs) -> cyanide fishing (5331ms) What are coral reefs? the series 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (the series, was, Coral Reefs) -> the series (5477ms) What are coral reefs? macroalgae 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (macroalgae, can suffocate, coral reefs) -> macroalgae (5477ms) What are coral reefs? sediment and 40.9 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (sediment and 40.9, were, coral reef) -> sediment and 40.9 (5271ms) What are coral reefs? particular concern 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (particular concern, are, coral reefs) -> particular concern (5428ms) What are coral reefs? the following questions 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (the following questions, are, Coral Reefs) -> the following questions (5441ms) What are coral reefs? The myriad islands 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (The myriad islands, are surrounded by, coral reefs) -> The myriad islands (5271ms) What are coral reefs? cultures 1.222222222217 What are coral reefs? -> $x: (coral reef, be about, $x) -> (Preserving coral reefs, is about preserving, cultures) -> cultures (5286ms) What are coral reefs? improperly treated sewage 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (improperly treated sewage, can harm, coral reef ecosystems) -> improperly treated sewage (5554ms) What are coral reefs? human activities 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (human activities, inland can damage, coral reefs) -> human activities (5563ms) What are coral reefs? escape gaps 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (escape gaps, are used in, coral reef trap fisheries) -> escape gaps (5554ms) What are coral reefs? The rest 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (The rest, is, coral reef) -> The rest (5536ms) What are coral reefs? New Caledonia 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (New Caledonia, is located in, the second biggest coral reef) -> New Caledonia (5387ms) What are coral reefs? long term damages 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (long term damages, are expected to, coral reefs) -> long term damages (5401ms) What are coral reefs? 5000 years 1.222222222217 What are coral reefs? -> $x: (coral reef, be about, $x) -> (The coral reefs, are about, 5000 years) -> 5000 years (5256ms) What are coral reefs? The place 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (The place, is good to view, coral reefs) -> The place (5414ms) What are coral reefs? Causey?s science background 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (Causey?s science background, is in, coral reef ecology) -> Causey?s science background (5477ms) What are coral reefs? Only our structure 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (Only our structure, is, coral reefs) -> Only our structure (5414ms) What are coral reefs? Sabah 1.222222222217 What are coral reefs? -> $x: ($x, consist of, coral reef) -> (Sabah, consists of, 13 coral reefs) -> Sabah (5580ms) What are coral reefs? growth 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (growth, is seen in, coral reefs and crystals) -> growth (5526ms) What are coral reefs? particular 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (particular, can be extremely abundant on, coral reefs) -> particular (5345ms) What are coral reefs? 6 kilometers 1.222222222217 What are coral reefs? -> $x: (coral reef, be about, $x) -> (coral reef, is about, 6 kilometers) -> 6 kilometers (5360ms) What are coral reefs? sediment 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (sediment, can wash over, coral reefs) -> sediment (5572ms) What are coral reefs? The Grouper Moon talk 1.222222222217 What are coral reefs? -> $x: ($x, be in, coral reef) -> (The Grouper Moon talk, is scheduled in, the Coral Reef session) -> The Grouper Moon talk (5387ms) What are coral reefs? the contest 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (the contest, is sold to, Coral Reef) -> the contest (5387ms) What are coral reefs? phosphates 1.222222222217 What are coral reefs? -> $x: ($x, can, coral reef) -> (phosphates, can harm, coral reef habitats) -> phosphates (5517ms) What are coral reefs? Mauritius 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (Mauritius, is surrounded by, coral reefs) -> Mauritius (5507ms) What are coral reefs? Much of the Barbados 1.222222222217 What are coral reefs? -> $x: ($x, be be, coral reef) -> (Much of the Barbados, is surrounded by, coral reefs) -> Much of the Barbados (5286ms) What are coral reefs? food security 1.222222222217 What are coral reefs? -> $x: (coral reef, be about, $x) -> (Preserving coral reefs, is about, food security) -> food security (5487ms) What are coral reefs? 10 % 1.222222222217 What are coral reefs? -> $x: (coral reef, be about, $x) -> (Coral reefs, are home to about, 10 %) -> 10 % (5428ms) What are coral reefs? unknown ? 1.222222222217 What are coral reefs? -> $x: ($x, be to, coral reef) -> (unknown ?, is also home to, rich coral reefs) -> unknown ? (5401ms) What are coral reefs? a 5-hectare islet 1.222222222217 What are coral reefs? -> $x: ($x, consist of, coral reef) -> (a 5-hectare islet, consisting of, an old calcareous coral reef) -> a 5-hectare islet (5401ms) What are coral reefs? Dovedale 1.111111111107 What are coral reefs? -> $x: ($x, be use of, coral reef) -> (Dovedale, used to be parts of, active coral reefs) -> Dovedale (5580ms) What are coral reefs? a journalist 1.111111111107 What are coral reefs? -> $x: ($x, develop, coral reef) -> (a journalist, developed an appreciation for, coral reefs) -> a journalist (5580ms) What are coral reefs? atmospheric CO2 1.111111111107 What are coral reefs? -> $x: ($x, represent, coral reef) -> (atmospheric CO2, represent major global threats to, coral reefs) -> atmospheric CO2 (5589ms) What are coral reefs? an enlargement 1.111111111107 What are coral reefs? -> $x: ($x, represent, coral reef) -> (an enlargement, represents, the southernmost coral reef complex) -> an enlargement (5589ms) What are coral reefs? Iron 1.111111111107 What are coral reefs? -> $x: ($x, induce, coral reef) -> (Iron, induced, phase-shifts on coral reefs) -> Iron (5589ms) What are coral reefs? The idle state 1.111111111107 What are coral reefs? -> $x: ($x, represent, coral reef) -> (The idle state, represents, a coral reef movement) -> The idle state (5580ms) What are coral reefs? Deep Reef 1.111111111107 What are coral reefs? -> $x: ($x, represent, coral reef) -> (Deep Reef, represents a wide variety of, magnificent coral reefs) -> Deep Reef (5589ms) What are coral reefs? the red algae 1.111111111107 What are coral reefs? -> $x: ($x, develop, coral reef) -> (the red algae, needed to develop, coral reefs) -> the red algae (5589ms) What are coral reefs? HRI 1.111111111107 What are coral reefs? -> $x: ($x, represent, coral reef) -> (HRI, represented at, coral reef meeting HRI staff) -> HRI (5589ms) What are coral reefs? the work 1.111111111107 What are coral reefs? -> $x: ($x, develop, coral reef) -> (the work, was to develop, coral reef mapping methods) -> the work (5589ms) What are coral reefs? A limestone mound 1.111111111107 What are coral reefs? -> $x: ($x, represent, coral reef) -> (A limestone mound, represents the beginnings of, a reef Corals) -> A limestone mound (5580ms) What are coral reefs? painkillers 1.111111111107 What are coral reefs? -> $x: ($x, develop, coral reef) -> (painkillers, have been developed from, coral reef products) -> painkillers (5589ms) What are coral reefs? a satellite data base 1.111111111107 What are coral reefs? -> $x: ($x, develop, coral reef) -> (a satellite data base, has been developed for, coral reefs) -> a satellite data base (5589ms) What are coral reefs? an example 1.111111111107 What are coral reefs? -> $x: ($x, develop, coral reef) -> (an example, could be developed from, coral reefs) -> an example (5580ms) What are coral reefs? The family 1.111111111107 What are coral reefs? -> $x: ($x, represent, coral reef) -> (The family, represents an important group of, coral reef fish) -> The family (5580ms) What are coral reefs? the scientific basis 1.111111111106 What are coral reefs? -> $x: ($x, constitute, coral reef) -> (the scientific basis, constitutes, a healthy coral reef) -> the scientific basis (5605ms) What are coral reefs? Adults 1.111111111106 What are coral reefs? -> $x: ($x, can be, coral reef) -> (Adults, can be seen in, the Pacific Coral Reef exhibit) -> Adults (5605ms) What are coral reefs? Wonderful snorkeling 1.111111111106 What are coral reefs? -> $x: ($x, can be, coral reef) -> (Wonderful snorkeling, can be enjoyed on, this coral reef) -> Wonderful snorkeling (5606ms) What are coral reefs? A UNESCO World Heritage Site 1.111111111106 What are coral reefs? -> $x: ($x, could be, coral reef) -> (A UNESCO World Heritage Site, could be, a coral reef) -> A UNESCO World Heritage Site (5605ms) What are coral reefs? white beaches 1.111111111106 What are coral reefs? -> $x: ($x, discover, coral reef) -> (white beaches, discover the magic of, the coral reefs) -> white beaches (5606ms) What are coral reefs? John Pennekamp Coral Reef State Park 1.111111111106 What are coral reefs? -> $x: ($x, can be, coral reef) -> (John Pennekamp Coral Reef State Park, can be found on Wikipedia at, http://en.wikipedia.org/wiki/John%20Pennekamp%20Coral%20Reef%20State%20Park) -> John Pennekamp Coral Reef State Park (5589ms) What are coral reefs? the software 1.111111111106 What are coral reefs? -> $x: ($x, can be, coral reef) -> (the software, can be used for, Coral Reef Watch HDF data files) -> the software (5606ms) What are coral reefs? Scuba Diving Credit Learn 1.111111111106 What are coral reefs? -> $x: ($x, discover, coral reef) -> (Scuba Diving Credit Learn, discover, coral reefs) -> Scuba Diving Credit Learn (5614ms) What are coral reefs? Snacks 1.111111111106 What are coral reefs? -> $x: ($x, can be, coral reef) -> (Snacks, can also be enjoyed in, the renovated Coral Reef Caf?) -> Snacks (5597ms) What are coral reefs? a hurricane 1.111111111106 What are coral reefs? -> $x: ($x, can be, coral reef) -> (a hurricane, can be beneficial to, a stressed coral reef) -> a hurricane (5605ms) What are coral reefs? a salt-form 1.111111111106 What are coral reefs? -> $x: ($x, can be, coral reef) -> (a salt-form, can be acquired from, fossilized coral reefs) -> a salt-form (5597ms) What are coral reefs? sea fishes 1.111111111106 What are coral reefs? -> $x: ($x, can be, coral reef) -> (sea fishes, can be found along, the coral reefs and rock beaches) -> sea fishes (5597ms) What are coral reefs? the Shelled Push Shrimp 1.111111111106 What are coral reefs? -> $x: ($x, discover, coral reef) -> (the Shelled Push Shrimp, was discovered on, the coral reef) -> the Shelled Push Shrimp (5589ms) What are coral reefs? Students 1.111111111106 What are coral reefs? -> $x: ($x, discover, coral reef) -> (Students, discover, coral reefs) -> Students (5605ms) What are coral reefs? such the technique 1.111111111106 What are coral reefs? -> $x: ($x, could be, coral reef) -> (such the technique, could be targeted at, coral reefs) -> such the technique (5597ms) What are coral reefs? Carrie Bow Marine Field Station 1.111111111106 What are coral reefs? -> $x: ($x, can be, coral reef) -> (Carrie Bow Marine Field Station, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Caribbean%20Coral%20Reef%20Ecosystems%20Program) -> Carrie Bow Marine Field Station (5597ms) What are coral reefs? Jacques Cousteau 1.111111111106 What are coral reefs? -> $x: ($x, discover, coral reef) -> (Jacques Cousteau, discovered the beauty of, Palancar coral reefs) -> Jacques Cousteau (5597ms) What are coral reefs? trek 1.111111111106 What are coral reefs? -> $x: ($x, discover, coral reef) -> (trek, discover the colorful underwater world in, the coral reef) -> trek (5597ms) What are coral reefs? sunlight 1.111111111106 What are coral reefs? -> $x: ($x, can be, coral reef) -> (sunlight, can be abundant members of, coral reef ecosystems) -> sunlight (5597ms) What are coral reefs? an eye 1.111111111106 What are coral reefs? -> $x: ($x, can be, coral reef) -> (an eye, can be leveraged to improve, coral reef management) -> an eye (5597ms) What are coral reefs? The coast 1.111111111106 What are coral reefs? -> $x: ($x, can be, coral reef) -> (The coast, can be appreciated for, the coral reefs) -> The coast (5606ms) What are coral reefs? the other Coral Worlds 1.111111111106 What are coral reefs? -> $x: ($x, can be, coral reef) -> (the other Coral Worlds, can only be built at, coral reef sites) -> the other Coral Worlds (5597ms) What are coral reefs? the news 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, have been in, the news) -> the news (5661ms) What are coral reefs? The Ocean Adventure 0.999999999996 What are coral reefs? -> $x: ($x, raise be, coral reef) -> (The Ocean Adventure, are raising, coral reef awareness) -> The Ocean Adventure (5668ms) What are coral reefs? a geographical band 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, exist in, a geographical band) -> a geographical band (5654ms) What are coral reefs? the future 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, persist in, the future) -> the future (5621ms) What are coral reefs? a dire situation 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, are in, a dire situation) -> a dire situation (5647ms) What are coral reefs? serious decline 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, are in, serious decline) -> serious decline (5639ms) What are coral reefs? serious decline worldwide 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, are in, serious decline worldwide) -> serious decline worldwide (5654ms) What are coral reefs? acid oceans 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, to survive in, acid oceans) -> acid oceans (5647ms) What are coral reefs? the hundreds 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, run in, the hundreds) -> the hundreds (5614ms) What are coral reefs? the Dry Tortugas west 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reef, ends in, the Dry Tortugas west) -> the Dry Tortugas west (5621ms) What are coral reefs? serious trouble 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, are in, serious trouble) -> serious trouble (5647ms) What are coral reefs? the coal mine 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, are the canary in, the coal mine) -> the coal mine (5661ms) What are coral reefs? decline 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, are in, decline) -> decline (5647ms) What are coral reefs? the Signal Boat 0.999999999996 What are coral reefs? -> $x: ($x, leave, coral reef) -> (the Signal Boat, left the dock at, Coral Reef Yacht Club) -> the Signal Boat (5621ms) What are coral reefs? great danger 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, are in, great danger) -> great danger (5647ms) What are coral reefs? shallow waters 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, are found in, shallow waters) -> shallow waters (5668ms) What are coral reefs? the crystal-blue waters 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, found in, the crystal-blue waters) -> the crystal-blue waters (5632ms) What are coral reefs? the Andaman Sea 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reef, bleaching in, the Andaman Sea) -> the Andaman Sea (5639ms) What are coral reefs? decline worldwide 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, are in, decline worldwide) -> decline worldwide (5647ms) What are coral reefs? a lot 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, are in, a lot) -> a lot (5639ms) What are coral reefs? decline around the world 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, are in, decline around the world) -> decline around the world (5647ms) What are coral reefs? waters 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, sit in, waters) -> waters (5639ms) What are coral reefs? decline around the globe 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, are in, decline around the globe) -> decline around the globe (5654ms) What are coral reefs? an almost paradoxical state 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, exist in, an almost paradoxical state) -> an almost paradoxical state (5639ms) What are coral reefs? the Basin 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, to grow in, the Basin) -> the Basin (5639ms) What are coral reefs? recent times 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, were created in, recent times) -> recent times (5621ms) What are coral reefs? fact 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, were in, fact) -> fact (5639ms) What are coral reefs? nature 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, found in, nature) -> nature (5632ms) What are coral reefs? the shallow waters 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, found in, the shallow waters) -> the shallow waters (5647ms) What are coral reefs? the NY Bight 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, existed in, the NY Bight) -> the NY Bight (5654ms) What are coral reefs? the Philippines 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, is centered in, the Philippines) -> the Philippines (5647ms) What are coral reefs? danger of dying 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, are in, danger of dying) -> danger of dying (5647ms) What are coral reefs? front of the house 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, lie directly in, front of the house) -> front of the house (5647ms) What are coral reefs? the frontline 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (?Coral reefs, are in, the frontline) -> the frontline (5639ms) What are coral reefs? good condition 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, are in, good condition) -> good condition (5632ms) What are coral reefs? North America 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, left in, North America) -> North America (5654ms) What are coral reefs? the Higgins boats 0.999999999996 What are coral reefs? -> $x: ($x, get, coral reef) -> (the Higgins boats, got stuck on, coral reefs) -> the Higgins boats (5647ms) What are coral reefs? great shape 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, are in, great shape) -> great shape (5654ms) What are coral reefs? a steady state 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, are in, a steady state) -> a steady state (5661ms) What are coral reefs? constant danger of damage and extinction 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, are in, constant danger of damage and extinction) -> constant danger of damage and extinction (5614ms) What are coral reefs? crisis 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral Reefs, are in, crisis) -> crisis (5654ms) What are coral reefs? tropical oceans near the equator 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, are found in, tropical oceans near the equator) -> tropical oceans near the equator (5661ms) What are coral reefs? starfish 0.999999999996 What are coral reefs? -> $x: ($x, leave, coral reef) -> (starfish, are leaving, bare the coral reefs) -> starfish (5661ms) What are coral reefs? remote places 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (corals reefs, occur in, remote places) -> remote places (5621ms) What are coral reefs? an ecological crisis 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, are in, an ecological crisis) -> an ecological crisis (5647ms) What are coral reefs? situ 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, to be studied in, situ) -> situ (5624ms) What are coral reefs? seas 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, grow in, seas) -> seas (5668ms) What are coral reefs? the chance 0.999999999996 What are coral reefs? -> $x: ($x, get, coral reef) -> (the chance, get close to, coral reefs) -> the chance (5654ms) What are coral reefs? The massive mammal 0.999999999996 What are coral reefs? -> $x: ($x, get, coral reef) -> (The massive mammal, got trapped behind, the coral reef) -> The massive mammal (5661ms) What are coral reefs? terminal decline 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, are in, terminal decline) -> terminal decline (5661ms) What are coral reefs? Crisis 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (Corals Reefs, are in, Crisis) -> Crisis (5614ms) What are coral reefs? the Indo-Pacific and Indian Oceans 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, found in, the Indo-Pacific and Indian Oceans) -> the Indo-Pacific and Indian Oceans (5632ms) What are coral reefs? The city 0.999999999996 What are coral reefs? -> $x: ($x, get, coral reef) -> (The city, got its name from, the coral reefs) -> The city (5661ms) What are coral reefs? the journal 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, has been published in, the journal) -> the journal (5621ms) What are coral reefs? the Clownfish 0.999999999996 What are coral reefs? -> $x: ($x, get, coral reef) -> (the Clownfish, get back to, the Coral Reef) -> the Clownfish (5614ms) What are coral reefs? soft corals 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, adorned in, soft corals) -> soft corals (5614ms) What are coral reefs? shallow water 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, are found in, shallow water) -> shallow water (5614ms) What are coral reefs? more shallow water 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, are in, more shallow water) -> more shallow water (5647ms) What are coral reefs? archaeological digs 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, participate in, archaeological digs) -> archaeological digs (5639ms) What are coral reefs? the tropical oceans 0.999999999996 What are coral reefs? -> $x: ($x, get, coral reef) -> (the tropical oceans, get, warmer coral reefs) -> the tropical oceans (5632ms) What are coral reefs? Seawings passengers 0.999999999996 What are coral reefs? -> $x: ($x, get, coral reef) -> (Seawings passengers, get to enjoy, the beautiful coral reefs) -> Seawings passengers (5639ms) What are coral reefs? dramatic global decline 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, are in, dramatic global decline) -> dramatic global decline (5621ms) What are coral reefs? an overall state 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, are in, an overall state) -> an overall state (5639ms) What are coral reefs? limestone 0.999999999996 What are coral reefs? -> $x: ($x, leave, coral reef) -> (limestone, left over from, coral reefs) -> limestone (5654ms) What are coral reefs? Arthur 0.999999999996 What are coral reefs? -> $x: ($x, compare to, coral reef) -> (Arthur, compares this process to, a coral reef) -> Arthur (5621ms) What are coral reefs? August 2009 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral Reef, opens in, August 2009) -> August 2009 (5661ms) What are coral reefs? Non-divers 0.999999999996 What are coral reefs? -> $x: ($x, get, coral reef) -> (Non-divers, can get a close look at, the coral reefs) -> Non-divers (5661ms) What are coral reefs? The Motus 0.999999999996 What are coral reefs? -> $x: ($x, raise be, coral reef) -> (The Motus, are raised, coral reefs) -> The Motus (5661ms) What are coral reefs? jagged rocks 0.999999999996 What are coral reefs? -> $x: ($x, get, coral reef) -> (jagged rocks, get lost in, labyrinthine coral reefs) -> jagged rocks (5668ms) What are coral reefs? the discussion 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, join in, the discussion) -> the discussion (5632ms) What are coral reefs? abundance 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, are in, abundance) -> abundance (5632ms) What are coral reefs? big trouble 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, are in, big trouble) -> big trouble (5632ms) What are coral reefs? The algae 0.999999999996 What are coral reefs? -> $x: ($x, get, coral reef) -> (The algae, gets, a sunny , coral reef penthouse apartment) -> The algae (5621ms) What are coral reefs? stunning scenery 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, draped in, stunning scenery) -> stunning scenery (5621ms) What are coral reefs? crucial microorganisms 0.999999999996 What are coral reefs? -> $x: ($x, leave, coral reef) -> (crucial microorganisms, leave, coral reefs) -> crucial microorganisms (5654ms) What are coral reefs? the ocean 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, form in, the ocean) -> the ocean (5661ms) What are coral reefs? August 2009 Vivanta 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral Reef, opens in, August 2009 Vivanta) -> August 2009 Vivanta (5639ms) What are coral reefs? a volcano 0.999999999996 What are coral reefs? -> $x: ($x, leave, coral reef) -> (a volcano, leaving, a coral reef) -> a volcano (5647ms) What are coral reefs? the Bahamas 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, are in, the Bahamas) -> the Bahamas (5614ms) What are coral reefs? trouble 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, are in, trouble) -> trouble (5661ms) What are coral reefs? warm tropical oceans 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, thrive in, warm tropical oceans) -> warm tropical oceans (5624ms) What are coral reefs? 1986 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral Reef, was built in, 1986) -> 1986 (5614ms) What are coral reefs? tropical oceans 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, grow in, tropical oceans) -> tropical oceans (5661ms) What are coral reefs? clear 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, grow in, clear) -> clear (5614ms) What are coral reefs? pristine waters 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, located in, pristine waters) -> pristine waters (5661ms) What are coral reefs? the warm waters 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, grew in, the warm waters) -> the warm waters (5647ms) What are coral reefs? negative interactions 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, resulted in, negative interactions) -> negative interactions (5632ms) What are coral reefs? the front line 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (coral reefs, are in, the front line) -> the front line (5632ms) What are coral reefs? less than one percent 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, found in, less than one percent) -> less than one percent (5632ms) What are coral reefs? nutrient poor , tropical waters 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, live in, nutrient poor , tropical waters) -> nutrient poor , tropical waters (5632ms) What are coral reefs? 109 countries 0.999999999996 What are coral reefs? -> $x: (coral reef, in in, $x) -> (Coral reefs, are found in, 109 countries) -> 109 countries (5654ms) What are coral reefs? Hilton Head Island 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Resorts, is located in, Hilton Head Island) -> Hilton Head Island (5700ms) What are coral reefs? southwest Florida 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Cape Coral, is located in, southwest Florida) -> southwest Florida (5685ms) What are coral reefs? the business hub 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (the Coral Boutique Villas, are located in, the business hub) -> the business hub (5675ms) What are coral reefs? the hotel zone 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Plaza Coral Negro, are located in, the hotel zone) -> the hotel zone (5695ms) What are coral reefs? The Hammocks 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Club, is located in, The Hammocks) -> The Hammocks (5675ms) What are coral reefs? Florida 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Florida Relocation Cape Coral, is located in southwest, Florida) -> Florida (5690ms) What are coral reefs? southwestern Florida 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Cape Coral, is located in, southwestern Florida) -> southwestern Florida (5668ms) What are coral reefs? Port Villa 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Motel Apartments, is located in, Port Villa) -> Port Villa (5690ms) What are coral reefs? the exclusive Fortlands Road section 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Cove, is located in, the exclusive Fortlands Road section) -> the exclusive Fortlands Road section (5700ms) What are coral reefs? the center 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Reef Park, is located in, the center) -> the center (5695ms) What are coral reefs? the Riviera Maya 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Location Coral Maya, is located in, the Riviera Maya) -> the Riviera Maya (5685ms) What are coral reefs? a Gated Community 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Cove, is located in, a Gated Community) -> a Gated Community (5675ms) What are coral reefs? marathon 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (The coral lagoon resort & marina, is located in, marathon) -> marathon (5680ms) What are coral reefs? a Marine National Park right 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (this true coral cay, is located in, a Marine National Park right) -> a Marine National Park right (5675ms) What are coral reefs? three main areas 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (the deep-water corals, are located in, three main areas) -> three main areas (5680ms) What are coral reefs? neighborhoods 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (CORAL programs, are located in, neighborhoods) -> neighborhoods (5690ms) What are coral reefs? the business district 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (This Coral Springs hotel, is located in, the business district) -> the business district (5685ms) What are coral reefs? the heart 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (The OHANA Coral Seas, is a 109-room hotel located in, the heart) -> the heart (5695ms) What are coral reefs? Broward County 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Springs, is located in, Broward County) -> Broward County (5700ms) What are coral reefs? the south 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (the Coral Springs accident lawyer, is located in, the south) -> the south (5685ms) What are coral reefs? Buena Vista Florida 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (the Coral Reef, is located in, Buena Vista Florida) -> Buena Vista Florida (5675ms) What are coral reefs? a lovely country area 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (CIT-736 Coral Gardens, is located in, a lovely country area) -> a lovely country area (5695ms) What are coral reefs? Cape Coral 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Cape Coral Historical Society Museum, is located in, Cape Coral) -> Cape Coral (5685ms) What are coral reefs? the Heart 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (4870 Coral Tree Inn, is located in, the Heart) -> the Heart (5668ms) What are coral reefs? Noosaville 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Beach Noosa Resort, is located in, Noosaville) -> Noosaville (5680ms) What are coral reefs? Mozambique Nacala 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Lodge 1541, is located in, Mozambique Nacala) -> Mozambique Nacala (5675ms) What are coral reefs? the Coral Sea 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (The actual ?Great Coral Reef?, is located in, the Coral Sea) -> the Coral Sea (5680ms) What are coral reefs? town 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (The Coral Hotel and Spa, is located in, town) -> town (5695ms) What are coral reefs? Homestead 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Castle, is located in, Homestead) -> Homestead (5690ms) What are coral reefs? Noosa 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Beach Resort Accommodation, is located in, Noosa) -> Noosa (5668ms) What are coral reefs? large worth 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (coral reefs, is actually located in, large worth) -> large worth (5685ms) What are coral reefs? the Speyside are 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral GardensThis, is located in, the Speyside are) -> the Speyside are (5695ms) What are coral reefs? Umag 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Meli Coral, is located in, Umag) -> Umag (5675ms) What are coral reefs? a waterfront wonderland 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Cape Coral, is located in, a waterfront wonderland) -> a waterfront wonderland (5685ms) What are coral reefs? District 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Ridge Park, is located in, District) -> District (5680ms) What are coral reefs? the middle 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> ($ 22 USD Coral Cove Resort, is located right in, the middle) -> the middle (5695ms) What are coral reefs? Old Town Key West 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (The CORAL REEFER, is conveniently located in, Old Town Key West) -> Old Town Key West (5680ms) What are coral reefs? central Dubai 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Boutique Hotel Apartments, is located in, central Dubai) -> central Dubai (5695ms) What are coral reefs? al fujairah 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (the coral residence tower fujairah, is located in, al fujairah) -> al fujairah (5690ms) What are coral reefs? Mazatlan 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Maria Coral Hotel, is located in, Mazatlan) -> Mazatlan (5668ms) What are coral reefs? Dubai 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (coral Oriental Dubai, Is Located In, Dubai) -> Dubai (5685ms) What are coral reefs? southeast Florida 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Florida Coral Springs, is located in, southeast Florida) -> southeast Florida (5668ms) What are coral reefs? the reefs 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (These corals, are located in, the reefs) -> the reefs (5668ms) What are coral reefs? florida 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Terrace, is a city located in the state or province, florida) -> florida (5668ms) What are coral reefs? Lee County 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Cape Coral, is a large municipality located in, Lee County) -> Lee County (5695ms) What are coral reefs? the waters 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Significant coral reefs, are located in, the waters) -> the waters (5668ms) What are coral reefs? the south western tip 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Villa, is located in, the south western tip) -> the south western tip (5668ms) What are coral reefs? the town 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Castle, was originally located in, the town) -> the town (5695ms) What are coral reefs? Papua 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> ('s coral reefs, are located in, Papua) -> Papua (5685ms) What are coral reefs? the shopping center 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (the Coral Reef Casino, is located in, the shopping center) -> the shopping center (5690ms) What are coral reefs? Northwest Broward County 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Springs, is located in, Northwest Broward County) -> Northwest Broward County (5700ms) What are coral reefs? the Indo-Pacific region 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> ('s coral reefs, are located in, the Indo-Pacific region) -> the Indo-Pacific region (5695ms) What are coral reefs? the county 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Springs, is located in, the county) -> the county (5675ms) What are coral reefs? a beautiful natural environment 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Le Coral, is located in, a beautiful natural environment) -> a beautiful natural environment (5695ms) What are coral reefs? Miami-Dade County 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Gables, is a city located in, Miami-Dade County) -> Miami-Dade County (5695ms) What are coral reefs? Central NAS Lemoore 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Sea Park, are conveniently located in, Central NAS Lemoore) -> Central NAS Lemoore (5680ms) What are coral reefs? Tanzania Zanzibar 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Rock Holiday Package, is located in, Tanzania Zanzibar) -> Tanzania Zanzibar (5690ms) What are coral reefs? Cape Coral Florida 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Suites Cape Coral FL hotel, is located in, Cape Coral Florida) -> Cape Coral Florida (5685ms) What are coral reefs? Moorea 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Moorea Coral Reef LTER, is located in, Moorea) -> Moorea (5675ms) What are coral reefs? Dade County 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Gables, is located in, Dade County) -> Dade County (5685ms) What are coral reefs? Tanzania Dar 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Beach Hotel, is located in, Tanzania Dar) -> Tanzania Dar (5690ms) What are coral reefs? Coral Gables 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Gables Hospital, is located in, Coral Gables) -> Coral Gables (5685ms) What are coral reefs? Kolkata 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Coral Residency, is located in, Kolkata) -> Kolkata (5695ms) What are coral reefs? Playa Tambor 0.888888888888 What are coral reefs? -> $x: (coral, be locate in, $x) -> (Bar / Restaurant ?Costa Coral?, is located in, Playa Tambor) -> Playa Tambor (5675ms) What are coral reefs? the refuge 0.777777777773 What are coral reefs? -> $x: ($x, contain, coral reef) -> (the refuge, contains, coral reefs) -> the refuge (5704ms) What are coral reefs? Key Biscayne 0.777777777773 What are coral reefs? -> $x: ($x, contain, coral reef) -> (Key Biscayne, contains approximately, 6,000 coral reefs) -> Key Biscayne (5704ms) What are coral reefs? the Gulf 0.777777777773 What are coral reefs? -> $x: ($x, contain, coral reef) -> (the Gulf, contain, coral reefs) -> the Gulf (5704ms) What are coral reefs? A tank 0.777777777773 What are coral reefs? -> $x: ($x, contain, coral reef) -> (A tank, containing, coral reef life) -> A tank (5704ms) What are coral reefs? Virgin Islands 0.777777777773 What are coral reefs? -> $x: ($x, contain, coral reef) -> (Virgin Islands, Contains, Virgin Islands Coral Reef National Monument) -> Virgin Islands (5700ms) What are coral reefs? two marine areas 0.777777777773 What are coral reefs? -> $x: ($x, contain, coral reef) -> (two marine areas, contain most of, the world?s coral reefs) -> two marine areas (5700ms) What are coral reefs? United States Virgin Islands 0.777777777773 What are coral reefs? -> $x: ($x, contain, coral reef) -> (United States Virgin Islands, Contains, Virgin Islands Coral Reef National Monument) -> United States Virgin Islands (5704ms) What are coral reefs? The reef 0.777777777773 What are coral reefs? -> $x: ($x, contain, coral reef) -> (The reef, contains, the largest coral reef) -> The reef (5704ms) What are coral reefs? the Java Sea 0.777777777773 What are coral reefs? -> $x: ($x, contain, coral reef) -> (the Java Sea, contains, several coral reefs) -> the Java Sea (5700ms) What are coral reefs? The four-story Giant Ocean tank 0.777777777773 What are coral reefs? -> $x: ($x, contain, coral reef) -> (The four-story Giant Ocean tank, contains, re-created coral reef) -> The four-story Giant Ocean tank (5700ms) What are coral reefs? the 200,000-gallon Giant Ocean Tank 0.777777777773 What are coral reefs? -> $x: ($x, contain, coral reef) -> (the 200,000-gallon Giant Ocean Tank, contains, coral reefs) -> the 200,000-gallon Giant Ocean Tank (5704ms) What are coral reefs? Vancouver 0.777777777773 What are coral reefs? -> $x: ($x, contain, coral reef) -> (Vancouver, Contains, Coral Reef Place) -> Vancouver (5704ms) What are coral reefs? Chagos 0.777777777773 What are coral reefs? -> $x: ($x, contain, coral reef) -> (Chagos, contains some of, the world?s healthiest coral reefs) -> Chagos (5709ms) What are coral reefs? The Florida Keys 0.777777777773 What are coral reefs? -> $x: ($x, contain, coral reef) -> (The Florida Keys, contain some of, the largest coral reefs) -> The Florida Keys (5704ms) What are coral reefs? The western half 0.777777777773 What are coral reefs? -> $x: ($x, contain, coral reef) -> (The western half, contains most of, the species-rich coral reefs) -> The western half (5704ms) What are coral reefs? Samui 0.777777777773 What are coral reefs? -> $x: ($x, contain, coral reef) -> (Samui, contain, many interesting coral reefs) -> Samui (5700ms) What are coral reefs? Phuket 0.777777777773 What are coral reefs? -> $x: ($x, contain, coral reef) -> (Phuket, contain, many interesting coral reefs) -> Phuket (5709ms) What are coral reefs? The Keys 0.777777777773 What are coral reefs? -> $x: ($x, contain, coral reef) -> (The Keys, contain, coral and limestone reefs) -> The Keys (5709ms) What are coral reefs? Monroe County 0.777777777773 What are coral reefs? -> $x: ($x, contain, coral reef) -> (Monroe County, Contains, John Pennekamp Coral Reef State Park and Reserve) -> Monroe County (5709ms) What are coral reefs? The crystal clear waters 0.777777777773 What are coral reefs? -> $x: ($x, contain, coral reef) -> (The crystal clear waters, contain, colourful coral reefs) -> The crystal clear waters (5700ms) What are coral reefs? Koh Adang- Koh Rawi 0.777777777773 What are coral reefs? -> $x: ($x, contain, coral reef) -> (Koh Adang- Koh Rawi, contains, many coral reefs) -> Koh Adang- Koh Rawi (5709ms) What are coral reefs? Leleiwi Beach 0.777777777773 What are coral reefs? -> $x: ($x, contain, coral reef) -> (Leleiwi Beach, contains, beautiful coral reefs) -> Leleiwi Beach (5700ms) What are coral reefs? beaches 0.777777777773 What are coral reefs? -> $x: ($x, contain, coral reef) -> (beaches, contains, coral reefs) -> beaches (5704ms) What are coral reefs? the cleanest 0.777777777773 What are coral reefs? -> $x: ($x, contain, coral reef) -> (the cleanest, contain, the world?s largest coral reef structure) -> the cleanest (5709ms) What are coral reefs? Cousteau 0.666666666663 What are coral reefs? -> $x: ($x, concerned, coral reef) -> (Cousteau, was particularly concerned about, the coral reefs) -> Cousteau (5709ms) What are coral reefs? the past few years 0.666666666663 What are coral reefs? -> $x: ($x, concerned, coral reef) -> (the past few years, have expressed dire concern for, coral reefs) -> the past few years (5709ms) What are coral reefs? the wake 0.44444444444 What are coral reefs? -> $x: (coral reef, be in, $x) -> (coral reefs, are disintegrating in, the wake) -> the wake (5747ms) What are coral reefs? Scuba-diving Fiji 0.44444444444 What are coral reefs? -> $x: ($x, number of, coral reef) -> (Scuba-diving Fiji, has a number of, soft coral reefs) -> Scuba-diving Fiji (5749ms) What are coral reefs? the second week 0.44444444444 What are coral reefs? -> $x: (coral reef, be in, $x) -> (coral reefs, were noticed in, the second week) -> the second week (5713ms) What are coral reefs? the tropics 0.44444444444 What are coral reefs? -> $x: (coral reef, be in, $x) -> (Coral reefs, are found in, the tropics) -> the tropics (5739ms) What are coral reefs? satellite imagery 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, have been derived from, satellite imagery) -> satellite imagery (5713ms) What are coral reefs? the past 30 years 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, have been slowly dying over, the past 30 years) -> the past 30 years (5729ms) What are coral reefs? Miami regattas 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (Coral Reef Yacht Club, have been hosting, Miami regattas) -> Miami regattas (5717ms) What are coral reefs? the rain-forests 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (Coral reefs, have been called, the rain-forests) -> the rain-forests (5745ms) What are coral reefs? a team 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, has been solved by, a team) -> a team (5751ms) What are coral reefs? 100 million years 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (Coral reefs, have been around, 100 million years) -> 100 million years (5725ms) What are coral reefs? two main categories 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (Coral reefs, have been divided into, two main categories) -> two main categories (5721ms) What are coral reefs? the main research focus 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, have been, the main research focus) -> the main research focus (5734ms) What are coral reefs? the past 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (many coral reefs, have been damaged in, the past) -> the past (5721ms) What are coral reefs? a common and urgent need 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, has been noted as, a common and urgent need) -> a common and urgent need (5729ms) What are coral reefs? Marcus Sheaves 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, has been aptly dubbed by, Marcus Sheaves) -> Marcus Sheaves (5713ms) What are coral reefs? the Carboniferous extinction 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (Coral reefs, had been decimated by, the Carboniferous extinction) -> the Carboniferous extinction (5734ms) What are coral reefs? the ocean floor 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, has been removed from, the ocean floor) -> the ocean floor (5734ms) What are coral reefs? repair 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (Coral reefs, have been damaged beyond, repair) -> repair (5725ms) What are coral reefs? numerous places 0.44444444444 What are coral reefs? -> $x: (coral reef, be in, $x) -> (coral reefs, can be seen in, numerous places) -> numerous places (5721ms) What are coral reefs? geologic time 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (Coral reefs, have been very adaptable over, geologic time) -> geologic time (5750ms) What are coral reefs? cruise ship anchors 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reef, have already been lost to, cruise ship anchors) -> cruise ship anchors (5732ms) What are coral reefs? The first class 0.44444444444 What are coral reefs? -> $x: ($x, administer, coral reef) -> (The first class, is administered directly to, a coral reef tank) -> The first class (5729ms) What are coral reefs? global decline 0.44444444444 What are coral reefs? -> $x: (coral reef, be in, $x) -> (Coral reefs, are currently in, global decline) -> global decline (5749ms) What are coral reefs? the rainforest of the ocean 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (Coral reefs, have been called, the rainforest of the ocean) -> the rainforest of the ocean (5725ms) What are coral reefs? any cherished stone 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, had been thought to be, any cherished stone) -> any cherished stone (5729ms) What are coral reefs? Bananahead 0.44444444444 What are coral reefs? -> $x: ($x, inspired, coral reef) -> (Bananahead, was inspired by, the coral-reef fishies) -> Bananahead (5739ms) What are coral reefs? disease 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (entire coral reefs, had been decimated by, disease) -> disease (5725ms) What are coral reefs? the last decade 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> ('s coral reefs, have been destroyed in, the last decade) -> the last decade (5739ms) What are coral reefs? the surface 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (Old coral reefs, have been brought to, the surface) -> the surface (5749ms) What are coral reefs? several small areas 0.44444444444 What are coral reefs? -> $x: (coral reef, be in, $x) -> (coral reefs, are sparsely distributed in, several small areas) -> several small areas (5751ms) What are coral reefs? the rainforests of the sea 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (Coral reefs, have been dubbed, the rainforests of the sea) -> the rainforests of the sea (5750ms) What are coral reefs? THE EFFIN ASS! 0.44444444444 What are coral reefs? -> $x: (coral reef, be in, $x) -> (CORAL REEFS, ARE A PAIN IN, THE EFFIN ASS!) -> THE EFFIN ASS! (5717ms) What are coral reefs? a global scale 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, have been damaged on, a global scale) -> a global scale (5729ms) What are coral reefs? polluters 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (fragile coral reefs, have been harmed by, polluters) -> polluters (5739ms) What are coral reefs? the biblical story 0.44444444444 What are coral reefs? -> $x: (coral reef, be tell, $x) -> (Coral Reef, is a modern re-telling of, the biblical story) -> the biblical story (5745ms) What are coral reefs? a balance 0.44444444444 What are coral reefs? -> $x: (coral reef, be in, $x) -> (?Coral reefs, are always in, a balance) -> a balance (5739ms) What are coral reefs? human contact and disease 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, have been ravaged by, human contact and disease) -> human contact and disease (5744ms) What are coral reefs? events 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> ('s coral reefs, have been impacted by, events) -> events (5749ms) What are coral reefs? tropical locations 0.44444444444 What are coral reefs? -> $x: (coral reef, be in, $x) -> (coral reefs, are found in, tropical locations) -> tropical locations (5749ms) What are coral reefs? the dawn 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (Corals reefs, have been declining since, the dawn) -> the dawn (5717ms) What are coral reefs? the South Pacific 0.44444444444 What are coral reefs? -> $x: (coral reef, be in, $x) -> (coral reefs, are dying in, the South Pacific) -> the South Pacific (5747ms) What are coral reefs? sharp granite outcroppings 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, have been replaced by, sharp granite outcroppings) -> sharp granite outcroppings (5739ms) What are coral reefs? changes 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, have been really receptive to, changes) -> changes (5734ms) What are coral reefs? places 0.44444444444 What are coral reefs? -> $x: (coral reef, be in, $x) -> (coral reefs, are currently found in, places) -> places (5729ms) What are coral reefs? the current ecological climate 0.44444444444 What are coral reefs? -> $x: (coral reef, be in, $x) -> (coral reefs, are facing in, the current ecological climate) -> the current ecological climate (5748ms) What are coral reefs? marine life including turtles 0.44444444444 What are coral reefs? -> $x: (coral reef, be in, $x) -> (coral reefs, are rich in, marine life including turtles) -> marine life including turtles (5717ms) What are coral reefs? clearer water 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, could have been, clearer water) -> clearer water (5744ms) What are coral reefs? warm waters 0.44444444444 What are coral reefs? -> $x: (coral reef, be in, $x) -> (Coral reefs, are found only in, warm waters) -> warm waters (5747ms) What are coral reefs? past pollution 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, have been degraded due to, past pollution) -> past pollution (5741ms) What are coral reefs? terms 0.44444444444 What are coral reefs? -> $x: (coral reef, be in, $x) -> (coral reefs, is also reconsidered in, terms) -> terms (5748ms) What are coral reefs? the decline 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, have been on, the decline) -> the decline (5748ms) What are coral reefs? The forms 0.44444444444 What are coral reefs? -> $x: ($x, inspired, coral reef) -> (The forms, were inspired by, coral reef formations) -> The forms (5721ms) What are coral reefs? 1842 0.44444444444 What are coral reefs? -> $x: (coral reef, be in, $x) -> (Coral reefs, were first described in, 1842) -> 1842 (5741ms) What are coral reefs? a state 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (the coral reefs, has been in, a state) -> a state (5737ms) What are coral reefs? lately 0.44444444444 What are coral reefs? -> $x: (coral reef, be in, $x) -> (Coral reefs, have been in the news, lately) -> lately (5750ms) What are coral reefs? effective barriers 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, would have been, effective barriers) -> effective barriers (5717ms) What are coral reefs? the proverbial ?canary 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, have been compared to, the proverbial ?canary) -> the proverbial ?canary (5737ms) What are coral reefs? NCCOS 0.44444444444 What are coral reefs? -> $x: ($x, administer, coral reef) -> (NCCOS, administers, the Hawaii Coral Reef Initiative) -> NCCOS (5750ms) What are coral reefs? the ?rainforests 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, have been dubbed, the ?rainforests) -> the ?rainforests (5709ms) What are coral reefs? the late 1800s 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (Coral reef bleaching, has been reported since, the late 1800s) -> the late 1800s (5750ms) What are coral reefs? the planet 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (Coral reefs, have been on, the planet) -> the planet (5741ms) What are coral reefs? US$ 375 billion 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, has been estimated to be around, US$ 375 billion) -> US$ 375 billion (5717ms) What are coral reefs? the rainforests 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (Coral reefs, have been dubbed, the rainforests) -> the rainforests (5745ms) What are coral reefs? the Gulfs 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (Coral reefs, have been damaged in, the Gulfs) -> the Gulfs (5741ms) What are coral reefs? the early 1980s 0.44444444444 What are coral reefs? -> $x: (coral reef, be in, $x) -> (Coral reefs, are dying ? in, the early 1980s) -> the early 1980s (5721ms) What are coral reefs? the marine equivalent 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (Coral reefs, have been characterized as, the marine equivalent) -> the marine equivalent (5729ms) What are coral reefs? the deep sea 0.44444444444 What are coral reefs? -> $x: (coral reef, be in, $x) -> (Coral reefs, are also found in, the deep sea) -> the deep sea (5748ms) What are coral reefs? worldwide 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (The coral reef ecosystems, have been disintegrating, worldwide) -> worldwide (5748ms) What are coral reefs? the past two years 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, have been killed over, the past two years) -> the past two years (5747ms) What are coral reefs? the coastal zone 0.44444444444 What are coral reefs? -> $x: (coral reef, be in, $x) -> (coral reefs, can be found in, the coastal zone) -> the coastal zone (5747ms) What are coral reefs? clues 0.44444444444 What are coral reefs? -> $x: (coral reef, be in, $x) -> (coral reefs, are rich in, clues) -> clues (5748ms) What are coral reefs? the Maldives 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, have been killed around, the Maldives) -> the Maldives (5750ms) What are coral reefs? the treatment 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (Coral reefs, have been used in, the treatment) -> the treatment (5747ms) What are coral reefs? sea and bird life 0.44444444444 What are coral reefs? -> $x: (coral reef, be in, $x) -> (coral reefs, are rich in, sea and bird life) -> sea and bird life (5731ms) What are coral reefs? the Maputaland marine reserve 0.44444444444 What are coral reefs? -> $x: (coral reef, be in, $x) -> (coral reefs, are also nearby in, the Maputaland marine reserve) -> the Maputaland marine reserve (5734ms) What are coral reefs? Darwin 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reef formation, had been stagnant from, Darwin) -> Darwin (5739ms) What are coral reefs? the billions 0.44444444444 What are coral reefs? -> $x: (coral reef, be in, $x) -> (coral reefs, is valued in, the billions) -> the billions (5721ms) What are coral reefs? 2003 0.44444444444 What are coral reefs? -> $x: (coral reef, be in, $x) -> (coral reefs, was first released in, 2003) -> 2003 (5739ms) What are coral reefs? new appropriations 0.44444444444 What are coral reefs? -> $x: ($x, establish, coral reef) -> (new appropriations, establish new protections for, coral reefs) -> new appropriations (5750ms) What are coral reefs? countries 0.44444444444 What are coral reefs? -> $x: (coral reef, be in, $x) -> (coral reefs, are in developing, countries) -> countries (5750ms) What are coral reefs? the challenges 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (Coral reefs, have been hard hit by, the challenges) -> the challenges (5729ms) What are coral reefs? groups 0.44444444444 What are coral reefs? -> $x: (coral reef, be in, $x) -> (coral reefs, are often found in, groups) -> groups (5734ms) What are coral reefs? a number 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (coral and coral reef growth, have been studied by, a number) -> a number (5744ms) What are coral reefs? MC 0.44444444444 What are coral reefs? -> $x: ($x, establish, coral reef) -> (MC, established, the Global Coral Reef Conservation Project) -> MC (5747ms) What are coral reefs? the last several decades 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (Coral reefs, have been decimated over, the last several decades) -> the last several decades (5734ms) What are coral reefs? ceramic modules 0.44444444444 What are coral reefs? -> $x: ($x, establish, coral reef) -> (ceramic modules, help quickly establish, coral reefs) -> ceramic modules (5732ms) What are coral reefs? PNAS 98 0.44444444444 What are coral reefs? -> $x: (coral reef, be in, $x) -> (coral reefs, are reported in, PNAS 98) -> PNAS 98 (5742ms) What are coral reefs? around 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (The Coral reef, has been, around) -> around (5748ms) What are coral reefs? ?rainforests 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (Coral reefs, have been called, ?rainforests) -> ?rainforests (5749ms) What are coral reefs? major research agencies 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (coral reefs, have been singled out by, major research agencies) -> major research agencies (5739ms) What are coral reefs? The design 0.44444444444 What are coral reefs? -> $x: ($x, inspired, coral reef) -> (The design, inspired by, the coral reef) -> The design (5749ms) What are coral reefs? the Amazon rainforest 0.44444444444 What are coral reefs? -> $x: (coral reef, be have, $x) -> (Coral reefs, have been likened to, the Amazon rainforest) -> the Amazon rainforest (5749ms) What are coral reefs? 1967 Vincent Bell 0.333333333332 What are coral reefs? -> $x: ($x, invent, coral) -> (1967 Vincent Bell, invented, the Coral Sitar) -> 1967 Vincent Bell (5751ms) What companies manufacture golf clubs? Rawlings Golf 3.33333333332 What companies manufacture golf clubs? -> $x: ($x, be manufacturer of, golf club) -> (Rawlings Golf, is a manufacturer of, golf clubs) -> Rawlings Golf (2319ms) What companies manufacture golf clubs? Ping 3.33333333332 What companies manufacture golf clubs? -> $x: ($x, be manufacturer of, golf club) -> (Ping, is a manufacturer of, high quality golf clubs) -> Ping (2319ms) What companies manufacture golf clubs? Callaway 3.33333333332 What companies manufacture golf clubs? -> $x: ($x, be manufacturer of, golf club) -> (Callaway, is a very successful manufacturer of, golf clubs) -> Callaway (2320ms) What companies manufacture golf clubs? Mizuno 3.33333333332 What companies manufacture golf clubs? -> $x: ($x, be manufacturer of, golf club) -> (Mizuno, is a leading manufacturer of, golf clubs and accessories) -> Mizuno (2319ms) What companies manufacture golf clubs? Callaway Golf 3.33333333332 What companies manufacture golf clubs? -> $x: ($x, be manufacturer of, golf club) -> (Callaway Golf, is the leading manufacturer of, golf clubs) -> Callaway Golf (2320ms) What companies manufacture golf clubs? CA Lynx 3.33333333332 What companies manufacture golf clubs? -> $x: ($x, be manufacturer of, golf club) -> (CA Lynx, was a well-known manufacturer of, high-end golf clubs) -> CA Lynx (2319ms) What companies manufacture golf clubs? 2011 3.22222222221 What companies manufacture golf clubs? -> $x: ($x, be example of, golf club) -> (2011, is an example of, Pound Ridge Golf Club) -> 2011 (4204ms) What companies manufacture golf clubs? Youll 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Youll, find, golf clubs built around a wide variety of subjects) -> Youll (4806ms) What companies manufacture golf clubs? taylor 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, create, golf club) -> (taylor, created, golfing clubs) -> taylor (4366ms) What companies manufacture golf clubs? great deals 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (great deals, Find, Titleist Vokey Spin Milled Wedge Golf Club) -> great deals (4887ms) What companies manufacture golf clubs? Woods 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, be type of, golf club) -> (Woods, are a type of, golf club) -> Woods (4903ms) What companies manufacture golf clubs? Excellent golf 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Excellent golf, can be found at, Dalton Ranch Golf Club) -> Excellent golf (4863ms) What companies manufacture golf clubs? Definition 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (Definition, Types, Golf Club) -> Definition (4879ms) What companies manufacture golf clubs? Golf lovers 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Golf lovers, will find, the world-famous Emirates Golf Club) -> Golf lovers (4887ms) What companies manufacture golf clubs? new 910F 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (new 910F, is just this type of, golf club) -> new 910F (4910ms) What companies manufacture golf clubs? course 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, create, golf club) -> (course, was created at, the Emirates Golf Club) -> course (4895ms) What companies manufacture golf clubs? golfers 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (golfers, finding, their ideal Golf Clubs) -> golfers (4887ms) What companies manufacture golf clubs? RMI MOVE Forum RMI MOVE Forum | 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (RMI MOVE Forum RMI MOVE Forum |, Find out, your best golf clubs) -> RMI MOVE Forum RMI MOVE Forum | (4806ms) What companies manufacture golf clubs? the elegant design 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (the elegant design, found in, all TaylorMade golf clubs) -> the elegant design (4895ms) What companies manufacture golf clubs? the Browns 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, create, golf club) -> (the Browns, create, the Forest Creek Golf Club) -> the Browns (4871ms) What companies manufacture golf clubs? Titleist Titanium 975D 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (Titleist Titanium 975D, Type, Golf Club) -> Titleist Titanium 975D (4440ms) What companies manufacture golf clubs? The Golf Classifieds 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (The Golf Classifieds, Find ads for, new and used golf clubs) -> The Golf Classifieds (4871ms) What companies manufacture golf clubs? Nobody 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (Nobody, would ever type in, golf clubs) -> Nobody (4863ms) What companies manufacture golf clubs? daepark's types 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (daepark's types, Types, Golf Club) -> daepark's types (4871ms) What companies manufacture golf clubs? Titleist PT Fairway Metal 2001 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (Titleist PT Fairway Metal 2001, Type, Golf Club) -> Titleist PT Fairway Metal 2001 (4863ms) What companies manufacture golf clubs? Joe Cotter 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, create, golf club) -> (Joe Cotter, created, The Golf Club) -> Joe Cotter (4871ms) What companies manufacture golf clubs? Used cleveland golf clubs 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Used cleveland golf clubs, find used, cleveland golf clubs) -> Used cleveland golf clubs (4806ms) What companies manufacture golf clubs? Titleist PRO TITANIUM 905R 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (Titleist PRO TITANIUM 905R, Type, Golf Club) -> Titleist PRO TITANIUM 905R (4366ms) What companies manufacture golf clubs? the sport 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (the sport, is to find the right kind of, golf club) -> the sport (4895ms) What companies manufacture golf clubs? Callaway RAZR Hawk Driver 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, create, golf club) -> (Callaway RAZR Hawk Driver, created to hold, golf clubs) -> Callaway RAZR Hawk Driver (4879ms) What companies manufacture golf clubs? the vicinity tourists 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (the vicinity tourists, will find, a golf club) -> the vicinity tourists (4806ms) What companies manufacture golf clubs? Seminole Golf Club 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (Seminole Golf Club, Related Type, Seminole Golf Club) -> Seminole Golf Club (4903ms) What companies manufacture golf clubs? whta measurements 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, work for, golf club) -> (whta measurements, will work best for, a golf club cover) -> whta measurements (4871ms) What companies manufacture golf clubs? driving ranges 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (driving ranges, are to be found within, a golf club) -> driving ranges (4440ms) What companies manufacture golf clubs? costs 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (costs, is by finding, discount golf clubs) -> costs (4903ms) What companies manufacture golf clubs? You?ll 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (You?ll, find, the Grande Pines Golf Club) -> You?ll (4903ms) What companies manufacture golf clubs? Great deals 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Great deals, can be found on, golf clubs) -> Great deals (4903ms) What companies manufacture golf clubs? a driver 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, be type of, golf club) -> (a driver, is a type of, golf club) -> a driver (4887ms) What companies manufacture golf clubs? shopping 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (shopping, find, discount golf clubs) -> shopping (4910ms) What companies manufacture golf clubs? the lob wedge 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (the lob wedge, are common types of, golf club wedges) -> the lob wedge (4863ms) What companies manufacture golf clubs? the lake 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (the lake, you?ll find, the Balfour Golf Club) -> the lake (4871ms) What companies manufacture golf clubs? five local businessman 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (five local businessman, were keen to found, a golf club) -> five local businessman (4871ms) What companies manufacture golf clubs? golf holes 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (golf holes, found at, the Golf Club) -> golf holes (4887ms) What companies manufacture golf clubs? The actual cavity 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, be type of, golf club) -> (The actual cavity, back is yet another type of, golf club) -> The actual cavity (4910ms) What companies manufacture golf clubs? the permission 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, create, golf club) -> (the permission, created, a golf club) -> the permission (4806ms) What companies manufacture golf clubs? the warrior 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (the warrior, finds, a golf club) -> the warrior (4895ms) What companies manufacture golf clubs? latent demand estimates 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, create, golf club) -> (latent demand estimates, are created for, golf club woods) -> latent demand estimates (4887ms) What companies manufacture golf clubs? Powerbilt Golf 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (Powerbilt Golf, produces many types of, golf clubs) -> Powerbilt Golf (4879ms) What companies manufacture golf clubs? Jack Nicklaus II 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, create, golf club) -> (Jack Nicklaus II, created, the Golf Club) -> Jack Nicklaus II (4910ms) What companies manufacture golf clubs? the Chicago Board 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (the Chicago Board, helped found, the Chicago Golf Club) -> the Chicago Board (4871ms) What companies manufacture golf clubs? The video 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (The video, was found, when searching for golf club) -> The video (4903ms) What companies manufacture golf clubs? Giustina 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, create, golf club) -> (Giustina, also created, the Tokatee Golf Club) -> Giustina (4879ms) What companies manufacture golf clubs? a company 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (a company, has developed a new type of, golf club) -> a company (4895ms) What companies manufacture golf clubs? dancing 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (dancing, might also be found through, health golf clubs) -> dancing (4879ms) What companies manufacture golf clubs? jobs 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, create, golf club) -> (jobs, will be created at, Dunbar Golf Club) -> jobs (4855ms) What companies manufacture golf clubs? The hard part 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (The hard part, is finding, the best used golf club) -> The hard part (4895ms) What companies manufacture golf clubs? A grandmother 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, work for, golf club) -> (A grandmother, worked as a Banqueting Manager for, a golf club) -> A grandmother (4910ms) What companies manufacture golf clubs? Golf enthusiasts 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Golf enthusiasts, will find, the Flamingos Golf Club) -> Golf enthusiasts (4863ms) What companies manufacture golf clubs? August National Golf Club 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (August National Golf Club, Related Type, August National Golf Club) -> August National Golf Club (4806ms) What companies manufacture golf clubs? Golf 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Golf, can be found locally at, the Torvean golf club) -> Golf (4871ms) What companies manufacture golf clubs? Manufacturers 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, create, golf club) -> (Manufacturers, create, golf clubs) -> Manufacturers (4903ms) What companies manufacture golf clubs? Loveday 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Loveday, was found at, the Willow Creek Golf Club) -> Loveday (4871ms) What companies manufacture golf clubs? Italy 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Italy, can be found at, the golf clubs) -> Italy (4855ms) What companies manufacture golf clubs? Gafner 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, price, golf club) -> (Gafner, believes the price of, golf clubs) -> Gafner (4879ms) What companies manufacture golf clubs? Maoris 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Maoris, are to be found in nearly, all golf clubs) -> Maoris (4855ms) What companies manufacture golf clubs? Two persons 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (Two persons, may require a different type of, golf club) -> Two persons (4879ms) What companies manufacture golf clubs? youll 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (youll, find, the Tangle Ridge Golf Club) -> youll (4863ms) What companies manufacture golf clubs? the Golfing Hotels 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (the Golfing Hotels, can be found at, the Salzkammergut Golf club) -> the Golfing Hotels (4895ms) What companies manufacture golf clubs? can 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (can, find, a golf ? club) -> can (4887ms) What companies manufacture golf clubs? Golf Clubs 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Golf Clubs, Find a large selection of, your favorite golf clubs) -> Golf Clubs (4855ms) What companies manufacture golf clubs? Hurley 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Hurley, finds, golf clubs) -> Hurley (4855ms) What companies manufacture golf clubs? The Fairways 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (The Fairways, will be found just opposite, the golf club house) -> The Fairways (4903ms) What companies manufacture golf clubs? you?ll 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (you?ll, find, the Aspen Golf Club) -> you?ll (4204ms) What companies manufacture golf clubs? the distinct experience 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (the distinct experience, found at, Bayside Resort Golf Club) -> the distinct experience (4887ms) What companies manufacture golf clubs? Mizuno MP-67 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (Mizuno MP-67, Type, Golf Club) -> Mizuno MP-67 (4855ms) What companies manufacture golf clubs? One student 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (One student, found, a golf club) -> One student (4887ms) What companies manufacture golf clubs? parks and resorts 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (parks and resorts, are typed as, Golf Clubs) -> parks and resorts (4910ms) What companies manufacture golf clubs? NT mayor 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (NT mayor, found guilty of, golf club attack) -> NT mayor (4895ms) What companies manufacture golf clubs? booties 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, create, golf club) -> (booties, were created out of, golf club covers) -> booties (4855ms) What companies manufacture golf clubs? 4 Description 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (4 Description, Find, Golf Clubs and golf equipment) -> 4 Description (4855ms) What companies manufacture golf clubs? New Mexico 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, create, golf club) -> (New Mexico, create one of, the premier multi-location golf clubs) -> New Mexico (4204ms) What companies manufacture golf clubs? Similar technology 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Similar technology, may be found in, high end golf clubs) -> Similar technology (4871ms) What companies manufacture golf clubs? the mountain 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (the mountain, can be found, the Fort William Golf Club) -> the mountain (4806ms) What companies manufacture golf clubs? Hood Canal 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, work for, golf club) -> (Hood Canal, works part-time for, the local golf club) -> Hood Canal (4863ms) What companies manufacture golf clubs? a tee platform 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (a tee platform, found, an old golf club) -> a tee platform (4879ms) What companies manufacture golf clubs? County Golf Partnerships 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (County Golf Partnerships, can be found on, the ?For Golf Clubs) -> County Golf Partnerships (4887ms) What companies manufacture golf clubs? you?ll 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (you?ll, find, Rhodes Ranch Golf Club) -> you?ll (4887ms) What companies manufacture golf clubs? Wayne 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Wayne, had found, a special golf club) -> Wayne (4879ms) What companies manufacture golf clubs? February 22 , 2012 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (February 22 , 2012, Find, Old Marsh Golf Club Homes) -> February 22 , 2012 (4367ms) What companies manufacture golf clubs? Banner 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Banner, find, new callaway golf clubs) -> Banner (4806ms) What companies manufacture golf clubs? Terms 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Terms, Used to Find, shoes Utility golf clubs) -> Terms (4879ms) What companies manufacture golf clubs? Atlanta 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Atlanta, could be found at, Towne Lake Hills Golf Club) -> Atlanta (4887ms) What companies manufacture golf clubs? pottery and roof tiles 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (pottery and roof tiles, were found at, Cumberwell Park Golf Club) -> pottery and roof tiles (4367ms) What companies manufacture golf clubs? Ed 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Ed, found, some old , battered golf clubs) -> Ed (4895ms) What companies manufacture golf clubs? Are there many places 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Are there many places, find out more about, golf clubs) -> Are there many places (4855ms) What companies manufacture golf clubs? earlier this week DH 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (earlier this week DH, found a great deal on, golf clubs) -> earlier this week DH (4879ms) What companies manufacture golf clubs? Hybrid golf clubs 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (Hybrid golf clubs, are types of, golf clubs) -> Hybrid golf clubs (4903ms) What companies manufacture golf clubs? the recession 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, create, golf club) -> (the recession, has created a new hazard for, golf clubs) -> the recession (4855ms) What companies manufacture golf clubs? guests 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (guests, will find a number of, golf clubs) -> guests (4895ms) What companies manufacture golf clubs? PriceRunner US 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, price, golf club) -> (PriceRunner US, compare prices on, Golf Club) -> PriceRunner US (4903ms) What companies manufacture golf clubs? golfsurplussalesman.com 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (golfsurplussalesman.com, Find, golf clubs) -> golfsurplussalesman.com (4863ms) What companies manufacture golf clubs? Kippure Estate you?ll 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Kippure Estate you?ll, find, South County Golf Club) -> Kippure Estate you?ll (4887ms) What companies manufacture golf clubs? the menu 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (the menu, choose the type of, golf club) -> the menu (4910ms) What companies manufacture golf clubs? Superman 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, create, golf club) -> (Superman, also created, the particular million dollar golf club) -> Superman (4871ms) What companies manufacture golf clubs? Champion 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Champion, can be found at, over 400 golf clubs) -> Champion (4903ms) What companies manufacture golf clubs? Titleist putters 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (Titleist putters, are a different type of, golf club) -> Titleist putters (4879ms) What companies manufacture golf clubs? items 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (items, Find, TaylorMade r7 Draw Wedge Golf Club) -> items (4903ms) What companies manufacture golf clubs? Daniel Grant 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Daniel Grant, finds, a golf club) -> Daniel Grant (4806ms) What companies manufacture golf clubs? Description 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Description, Find, Golf Clubs and golf equipment) -> Description (4879ms) What companies manufacture golf clubs? You?ll 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (You?ll, find, clone golf clubs) -> You?ll (4903ms) What companies manufacture golf clubs? 06 Dec 11 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (06 Dec 11, Find, golf club special offers) -> 06 Dec 11 (4879ms) What companies manufacture golf clubs? 0 Via 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (0 Via, Find, local Golf Clubs) -> 0 Via (4871ms) What companies manufacture golf clubs? the most durable strength 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (the most durable strength, found in, golf clubs) -> the most durable strength (4871ms) What companies manufacture golf clubs? Titleist Vokey Design Spin Milled Wedges 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (Titleist Vokey Design Spin Milled Wedges, Type, Golf Club) -> Titleist Vokey Design Spin Milled Wedges (4902ms) What companies manufacture golf clubs? rmccoy1234's types 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (rmccoy1234's types, Types, Seminole Golf Club) -> rmccoy1234's types (4895ms) What companies manufacture golf clubs? Titleist PRO TITANIUM 905S 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (Titleist PRO TITANIUM 905S, Type, Golf Club) -> Titleist PRO TITANIUM 905S (4204ms) What companies manufacture golf clubs? earth 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, create, golf club) -> (earth, was moved to create, the NEW Longbow Golf Club) -> earth (4855ms) What companies manufacture golf clubs? The iron 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, be type of, golf club) -> (The iron, is another type of, golf club) -> The iron (4910ms) What companies manufacture golf clubs? Golf Equipment 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, price, golf club) -> (Golf Equipment, Compare prices on, golf clubs) -> Golf Equipment (4910ms) What companies manufacture golf clubs? Lets 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Lets, find, the perfect golf club) -> Lets (4204ms) What companies manufacture golf clubs? India 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, create, golf club) -> (India, was created in, discount golf clubs 1829) -> India (4440ms) What companies manufacture golf clubs? Bing 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Bing, Find great low prices on, Cobra golf clubs) -> Bing (4855ms) What companies manufacture golf clubs? a lost or 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (a lost or, found, golf club) -> a lost or (4871ms) What companies manufacture golf clubs? Birmingham 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Birmingham, Find, local Golf Clubs) -> Birmingham (4887ms) What companies manufacture golf clubs? 06 Dec 11 03 :14 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (06 Dec 11 03 :14, Find, golf club events) -> 06 Dec 11 03 :14 (4871ms) What companies manufacture golf clubs? You?ll 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (You?ll, find, Nike golf clubs) -> You?ll (4895ms) What companies manufacture golf clubs? PING 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, create, golf club) -> (PING, has created a set of, custom-fitted golf clubs) -> PING (4440ms) What companies manufacture golf clubs? Titleist PT 906F2 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (Titleist PT 906F2, Type, Golf Club) -> Titleist PT 906F2 (4903ms) What companies manufacture golf clubs? Golfing fans 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (Golfing fans, will find, 4 golf clubs) -> Golfing fans (4855ms) What companies manufacture golf clubs? Irons 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (Irons, are those type of, golf clubs) -> Irons (4895ms) What companies manufacture golf clubs? the bigger manufacturers 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, create, golf club) -> (the bigger manufacturers, are creating, golf clubs) -> the bigger manufacturers (4902ms) What companies manufacture golf clubs? The hitting stalls 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (The hitting stalls, found in, the Golf Club) -> The hitting stalls (4806ms) What companies manufacture golf clubs? Scotty Cameron Newport Beach 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (Scotty Cameron Newport Beach, Type, Golf Club) -> Scotty Cameron Newport Beach (4895ms) What companies manufacture golf clubs? A player 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (A player, needs different type of, golf clubs) -> A player (4806ms) What companies manufacture golf clubs? a disability 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, work for, golf club) -> (a disability, left him to work for, the Guthrie Center Golf Club) -> a disability (4366ms) What companies manufacture golf clubs? the graphite 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (the graphite, found in, golf clubs) -> the graphite (4806ms) What companies manufacture golf clubs? left handed golf clubs 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, found, golf club) -> (left handed golf clubs, can be found on, the cheap golf clubs) -> left handed golf clubs (4440ms) What companies manufacture golf clubs? A cavity-back iron 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (A cavity-back iron, is a type of, golf clubs) -> A cavity-back iron (4855ms) What companies manufacture golf clubs? Mizuno MP-14 3.1111111110990004 What companies manufacture golf clubs? -> $x: ($x, type, golf club) -> (Mizuno MP-14, Type, Golf Club) -> Mizuno MP-14 (4863ms) What companies manufacture golf clubs? The company 1.777777777765 What companies manufacture golf clubs? -> $x: ($x, be manufacturer of, golf) -> (The company, is also a major manufacturer of, golf shoes) -> The company (4917ms) What companies manufacture golf clubs? 1992 1.777777777765 What companies manufacture golf clubs? -> $x: ($x, be manufacturer of, golf) -> (1992, is a manufacturer of, golf simulators) -> 1992 (4910ms) What companies manufacture golf clubs? Pride Golf Tee 1.777777777765 What companies manufacture golf clubs? -> $x: ($x, be manufacturer of, golf) -> (Pride Golf Tee, has been the No.1 manufacturer of, golf tees) -> Pride Golf Tee (4917ms) What companies manufacture golf clubs? Club Car 1.777777777765 What companies manufacture golf clubs? -> $x: ($x, be manufacturer of, golf) -> (Club Car, is the world 's leading manufacturer of, golf) -> Club Car (4917ms) What companies manufacture golf clubs? Club car 1.777777777765 What companies manufacture golf clubs? -> $x: ($x, be manufacturer of, golf) -> (Club car, is a well ? known manufacturer of, golf vehicles) -> Club car (4918ms) What companies manufacture golf clubs? TGI 1.777777777765 What companies manufacture golf clubs? -> $x: ($x, be manufacturer of, golf) -> (TGI, is a manufacturer of, golf equipment) -> TGI (4918ms) What companies manufacture golf clubs? True Temper Sports 1.777777777765 What companies manufacture golf clubs? -> $x: ($x, be manufacturer of, golf) -> (True Temper Sports, is the leading manufacturer of, golf shafts) -> True Temper Sports (4918ms) What companies manufacture golf clubs? workout wear 1.666666666655 What companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (workout wear, are examples of, improper golfing attire) -> workout wear (4924ms) What companies manufacture golf clubs? length 1.666666666655 What companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (length, are often examples of, Perl Golf) -> length (4932ms) What companies manufacture golf clubs? 6' Ball Retriever 1.666666666655 What companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (6' Ball Retriever, is a great example of, a quality ' Golf) -> 6' Ball Retriever (4932ms) What companies manufacture golf clubs? The Gull Lake View properties 1.666666666655 What companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (The Gull Lake View properties, are examples of, public golf) -> The Gull Lake View properties (4918ms) What companies manufacture golf clubs? 2011 ? 1.666666666655 What companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (2011 ?, is a delightful example of, inland golf) -> 2011 ? (4925ms) What companies manufacture golf clubs? Sock 1.666666666655 What companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (Sock, is a fantastic example of, a top quality ' Golf) -> Sock (4932ms) What companies manufacture golf clubs? 20' 1.666666666655 What companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (20', is a great example of, a quality ' Golf) -> 20' (4918ms) What companies manufacture golf clubs? The Course 1.666666666655 What companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (The Course, is a fine example of, traditional links golf) -> The Course (4924ms) What companies manufacture golf clubs? Target Machine 1.666666666655 What companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (Target Machine, is a great example of, a top quality ' Golf) -> Target Machine (4924ms) What companies manufacture golf clubs? Wheels 1.666666666655 What companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (Wheels, is a fantastic example of, a premium ' Golf) -> Wheels (4925ms) What companies manufacture golf clubs? Ukiah Municipal Golf Course 1.666666666655 What companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (Ukiah Municipal Golf Course, is a shining example of, golf) -> Ukiah Municipal Golf Course (4925ms) What companies manufacture golf clubs? a few miles 1.666666666655 What companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (a few miles, are examples of, early golf venues) -> a few miles (4925ms) What companies manufacture golf clubs? Sandy Lodge 1.666666666655 What companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (Sandy Lodge, is a superb example of, inland links golf) -> Sandy Lodge (4924ms) What companies manufacture golf clubs? The Bay Course 1.666666666655 What companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (The Bay Course, is an excellent example of, resort golf) -> The Bay Course (4924ms) What companies manufacture golf clubs? water 1.666666666655 What companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (water, are good examples of, the golf course difficulty) -> water (4925ms) What companies manufacture golf clubs? Tylney Park 1.666666666655 What companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (Tylney Park, is an example of, the very best inland golf) -> Tylney Park (4925ms) What companies manufacture golf clubs? the links 1.666666666655 What companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (the links, is a classic example of, Scottish seaside golf) -> the links (4925ms) What companies manufacture golf clubs? Golf Balls 1.666666666655 What companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (Golf Balls, is a fantastic example of, a premium ' Golf) -> Golf Balls (4932ms) What companies manufacture golf clubs? 13.00' 1.666666666655 What companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (13.00', is a super example of, a top quality ' Golf) -> 13.00' (4925ms) What companies manufacture golf clubs? Balls 2 Dozen' 1.666666666655 What companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (Balls 2 Dozen', is a brilliant example of, a quality ' Golf) -> Balls 2 Dozen' (4932ms) What companies manufacture golf clubs? The sixth 1.666666666655 What companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (The sixth, is an excellent example of, option golf) -> The sixth (4925ms) What companies manufacture golf clubs? the layout 1.666666666655 What companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (the layout, is an excellent example of, resort golf) -> the layout (4932ms) What companies manufacture golf clubs? tournaments 1.666666666655 What companies manufacture golf clubs? -> $x: ($x, be example of, golf) -> (tournaments, is just another example of, the Golf Association) -> tournaments (4918ms) What companies manufacture golf clubs? cheap golf clubs shop 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, price, golf) -> (cheap golf clubs shop, offers best price on, the new golf sets) -> cheap golf clubs shop (5013ms) What companies manufacture golf clubs? Wentworth Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Wentworth Club, Type, Golf Facility) -> Wentworth Club (4970ms) What companies manufacture golf clubs? VAGdashCAN V5.17 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (VAGdashCAN V5.17, can work for, GolfV,Touran) -> VAGdashCAN V5.17 (5028ms) What companies manufacture golf clubs? Muthaiga Country Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Muthaiga Country Club, Type, Golf Facility) -> Muthaiga Country Club (5009ms) What companies manufacture golf clubs? care 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (care, create, a Ski , Golf) -> care (5016ms) What companies manufacture golf clubs? golf balls 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (golf balls, can work wonders for, your golfing skills) -> golf balls (4984ms) What companies manufacture golf clubs? Meriwether National Golf Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Meriwether National Golf Club, Type, Golf Facility) -> Meriwether National Golf Club (4939ms) What companies manufacture golf clubs? Whispering Pines Golf Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Whispering Pines Golf Club, Type, Golf Facility) -> Whispering Pines Golf Club (5013ms) What companies manufacture golf clubs? Landis 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (Landis, previously worked for, the OGA Golf Course) -> Landis (5026ms) What companies manufacture golf clubs? home values 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, price, golf) -> (home values, also are pushing the price of, golf courses) -> home values (5030ms) What companies manufacture golf clubs? fellow addicts 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (fellow addicts, find out more about, golf) -> fellow addicts (4958ms) What companies manufacture golf clubs? a little guidance 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (a little guidance, need to work on for, a golf specific workout) -> a little guidance (5022ms) What companies manufacture golf clubs? Prairie View Golf Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Prairie View Golf Course, Type, Golf Course) -> Prairie View Golf Course (5026ms) What companies manufacture golf clubs? Huntsville Golf Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Huntsville Golf Club, Type, Golf Facility) -> Huntsville Golf Club (4974ms) What companies manufacture golf clubs? World Woods Golf Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (World Woods Golf Club, Type, Golf Facility) -> World Woods Golf Club (5004ms) What companies manufacture golf clubs? Sleepy Hollow Golf Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Sleepy Hollow Golf Course, Type, Golf Course) -> Sleepy Hollow Golf Course (4979ms) What companies manufacture golf clubs? Sports aficionados 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Sports aficionados, will find top-rate facilities for, golf) -> Sports aficionados (4970ms) What companies manufacture golf clubs? Lehman 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Lehman, created, the golf course) -> Lehman (5026ms) What companies manufacture golf clubs? Oak Island 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Oak Island, find, golf) -> Oak Island (5022ms) What companies manufacture golf clubs? Each business 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Each business, created, a little golf hole) -> Each business (5022ms) What companies manufacture golf clubs? Stowe Country Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Stowe Country Club, Type, Golf Facility) -> Stowe Country Club (4992ms) What companies manufacture golf clubs? Simple Swing 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (Simple Swing, works great for, woods or irons Longest Golf Swing) -> Simple Swing (5026ms) What companies manufacture golf clubs? the hot women 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (the hot women, working for, The Golf Channel) -> the hot women (5013ms) What companies manufacture golf clubs? a chance 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (a chance, found About, Golf) -> a chance (5004ms) What companies manufacture golf clubs? a lot 75 % 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, price, golf) -> (a lot 75 %, have a scenic price of, a emerging golf buggy) -> a lot 75 % (5019ms) What companies manufacture golf clubs? Cleveland Golf 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Cleveland Golf, understands the importance of finding, golf) -> Cleveland Golf (4979ms) What companies manufacture golf clubs? 2011 There 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, be type of, golf) -> (2011 There, are many different types of, golf equipment) -> 2011 There (5028ms) What companies manufacture golf clubs? Colonial Country Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Colonial Country Club, Type, Golf Facility) -> Colonial Country Club (4945ms) What companies manufacture golf clubs? the Lakes Golf Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (the Lakes Golf Course, find, golf) -> the Lakes Golf Course (5000ms) What companies manufacture golf clubs? Golf Course at Memphis Country Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Golf Course at Memphis Country Club, Type, Golf Course) -> Golf Course at Memphis Country Club (5004ms) What companies manufacture golf clubs? Prince Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Prince Course, Type, Golf Course) -> Prince Course (4932ms) What companies manufacture golf clubs? Totteridge Golf Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Totteridge Golf Club, Type, Golf Facility) -> Totteridge Golf Club (4988ms) What companies manufacture golf clubs? The Golf Club of Oklahoma Golf Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (The Golf Club of Oklahoma Golf Course, Type, Golf Course) -> The Golf Club of Oklahoma Golf Course (4979ms) What companies manufacture golf clubs? a team 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (a team, really works properly for, just one golf player) -> a team (5013ms) What companies manufacture golf clubs? San Francisco Golf Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (San Francisco Golf Club, Type, Golf Course) -> San Francisco Golf Club (5022ms) What companies manufacture golf clubs? the top golf 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (the top golf, Find, Golf) -> the top golf (5024ms) What companies manufacture golf clubs? outreach center 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (outreach center, created, the Zen Golf Center) -> outreach center (4979ms) What companies manufacture golf clubs? Turnhouse Golf Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Turnhouse Golf Club, Type, Golf Facility) -> Turnhouse Golf Club (5009ms) What companies manufacture golf clubs? Connect 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Connect, create, your Disc Golf profile) -> Connect (4945ms) What companies manufacture golf clubs? Tidewater Golf Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Tidewater Golf Course, Type, Golf Course) -> Tidewater Golf Course (5028ms) What companies manufacture golf clubs? detail 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (detail, will create a relaxing day of, golf) -> detail (5013ms) What companies manufacture golf clubs? the wonderful palm trees 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (the wonderful palm trees, create, a Golf course) -> the wonderful palm trees (5026ms) What companies manufacture golf clubs? Panorama Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Panorama Course, Type, Golf Course) -> Panorama Course (5004ms) What companies manufacture golf clubs? did Tiger 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (did Tiger, find the time to play, golf) -> did Tiger (5016ms) What companies manufacture golf clubs? Beverly Country Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Beverly Country Club, Type, Golf Facility) -> Beverly Country Club (4996ms) What companies manufacture golf clubs? Ocean Forest Golf Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Ocean Forest Golf Course, Type, Golf Course) -> Ocean Forest Golf Course (5000ms) What companies manufacture golf clubs? North Course at Wilmington Country Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (North Course at Wilmington Country Club, Type, Golf Course) -> North Course at Wilmington Country Club (5004ms) What companies manufacture golf clubs? Wedges 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, be type of, golf) -> (Wedges, is a type of, golf equipment) -> Wedges (4969ms) What companies manufacture golf clubs? Find manufacturers 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Find manufacturers, Create, a golf business) -> Find manufacturers (4939ms) What companies manufacture golf clubs? Burnside Links 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Burnside Links, Type, Golf Course) -> Burnside Links (5016ms) What companies manufacture golf clubs? Orillia Volkswagen 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, price, golf) -> (Orillia Volkswagen, offers great prices on, new Volkswagen Golf) -> Orillia Volkswagen (5022ms) What companies manufacture golf clubs? the courses 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (the courses, create, three unique golf experiences) -> the courses (5016ms) What companies manufacture golf clubs? Hawks Ridge Golf Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Hawks Ridge Golf Course, Type, Golf Course) -> Hawks Ridge Golf Course (5019ms) What companies manufacture golf clubs? Wailea Old Blue Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Wailea Old Blue Course, Type, Golf Course) -> Wailea Old Blue Course (4958ms) What companies manufacture golf clubs? Skater Music 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (Skater Music, Does n?t Work for, Golf ? Iain) -> Skater Music (5022ms) What companies manufacture golf clubs? a collaboration 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (a collaboration, created, a golf department) -> a collaboration (4965ms) What companies manufacture golf clubs? ancient lava-flows 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (ancient lava-flows, creates, an unparalleled golf experience) -> ancient lava-flows (4979ms) What companies manufacture golf clubs? The Lowest 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, price, golf) -> (The Lowest, priced, Golf Car Battery Chargers) -> The Lowest (4970ms) What companies manufacture golf clubs? a Mercedes S 500 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, price, golf) -> (a Mercedes S 500, has much higher prices than, a Volkswagon Golf) -> a Mercedes S 500 (4984ms) What companies manufacture golf clubs? Deal Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Deal Course, Type, Golf Course) -> Deal Course (4932ms) What companies manufacture golf clubs? a lot 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (a lot, created, a golf elbow) -> a lot (4997ms) What companies manufacture golf clubs? Tour bags 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, be type of, golf) -> (Tour bags, are the largest types of, golf bags) -> Tour bags (4992ms) What companies manufacture golf clubs? any family members or friends 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (any family members or friends, may be found in, golf) -> any family members or friends (4958ms) What companies manufacture golf clubs? Mid Ocean Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Mid Ocean Club, Type, Golf Facility) -> Mid Ocean Club (4996ms) What companies manufacture golf clubs? Yeamans Hall Golf Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Yeamans Hall Golf Course, Type, Golf Course) -> Yeamans Hall Golf Course (5019ms) What companies manufacture golf clubs? Prospector Golf Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Prospector Golf Course, Type, Golf Course) -> Prospector Golf Course (5000ms) What companies manufacture golf clubs? Course program 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Course program, creates affordable access to, golf) -> Course program (5013ms) What companies manufacture golf clubs? Gary Panks 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Gary Panks, created, a golf course reminiscent) -> Gary Panks (4974ms) What companies manufacture golf clubs? Sports enthusiasts 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Sports enthusiasts, will find, golf) -> Sports enthusiasts (5006ms) What companies manufacture golf clubs? Dye 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Dye, created, a spectacular golf course) -> Dye (5016ms) What companies manufacture golf clubs? God 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (God, created, golf) -> God (5028ms) What companies manufacture golf clubs? 6168 Gene Hamm 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (6168 Gene Hamm, created, a golf course) -> 6168 Gene Hamm (4945ms) What companies manufacture golf clubs? Doris and Alfred Kaskel 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Doris and Alfred Kaskel, created, the golf resort) -> Doris and Alfred Kaskel (5026ms) What companies manufacture golf clubs? the state 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (the state, created, an exceptional golf experience) -> the state (4992ms) What companies manufacture golf clubs? Snodgrass 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (Snodgrass, has worked for, Metro Golf Cars) -> Snodgrass (4965ms) What companies manufacture golf clubs? The Legend Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (The Legend Course, Type, Golf Course) -> The Legend Course (5024ms) What companies manufacture golf clubs? Condo World 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, price, golf) -> (Condo World, offers the best prices on, their golf packages) -> Condo World (4996ms) What companies manufacture golf clubs? Hotel guests 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Hotel guests, will find convenient access to, golf) -> Hotel guests (5019ms) What companies manufacture golf clubs? Ecco 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Ecco, has created the new look of, golf) -> Ecco (4932ms) What companies manufacture golf clubs? Kansas Golf Holidays 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Kansas Golf Holidays, Find, golf vacations) -> Kansas Golf Holidays (4984ms) What companies manufacture golf clubs? 24 Hour Fitness Inc. Jens 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (24 Hour Fitness Inc. Jens, worked for, American Golf) -> 24 Hour Fitness Inc. Jens (5026ms) What companies manufacture golf clubs? Firethorn West Golf Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Firethorn West Golf Course, Type, Golf Course) -> Firethorn West Golf Course (4992ms) What companies manufacture golf clubs? Thousands of teachers and locations 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Thousands of teachers and locations, find, a golf) -> Thousands of teachers and locations (4945ms) What companies manufacture golf clubs? Instruction 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (Instruction, has worked for, the Jim McLean Golf School) -> Instruction (5013ms) What companies manufacture golf clubs? the annual submissions 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, be type of, golf) -> (the annual submissions, are different types of, golf balls) -> the annual submissions (5024ms) What companies manufacture golf clubs? UF 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (UF, is working for, Marriott Golf) -> UF (5019ms) What companies manufacture golf clubs? Such a system 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (Such a system, works reasonably for, golf) -> Such a system (4945ms) What companies manufacture golf clubs? Leavens Volkswagen 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, price, golf) -> (Leavens Volkswagen, offers great prices on, new Volkswagen Golf) -> Leavens Volkswagen (4974ms) What companies manufacture golf clubs? Boiling Spring Lakes 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Boiling Spring Lakes, find, golf) -> Boiling Spring Lakes (4945ms) What companies manufacture golf clubs? Vidago Golf Course, Portugal 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Vidago Golf Course, Portugal, Type, Golf Course) -> Vidago Golf Course, Portugal (4964ms) What companies manufacture golf clubs? San Roque Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (San Roque Club, Type, Golf Facility) -> San Roque Club (4965ms) What companies manufacture golf clubs? Laurel Golf Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Laurel Golf Course, Type, Golf Course) -> Laurel Golf Course (5004ms) What companies manufacture golf clubs? Valderrama 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, be type of, golf) -> (Valderrama, is his type of, golf course) -> Valderrama (5016ms) What companies manufacture golf clubs? The 44-year-old Whan 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (The 44-year-old Whan, previously worked for, TaylorMade Golf) -> The 44-year-old Whan (4945ms) What companies manufacture golf clubs? an event 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (an event, creates, a golfing opportunity) -> an event (4974ms) What companies manufacture golf clubs? Clovelly Golf Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Clovelly Golf Club, Type, Golf Facility) -> Clovelly Golf Club (5026ms) What companies manufacture golf clubs? addition 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (addition, find, golf) -> addition (4988ms) What companies manufacture golf clubs? the boundary layer 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (the boundary layer, works so well for, golf balls) -> the boundary layer (5009ms) What companies manufacture golf clubs? Lazarus 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (Lazarus, works for, The Golf Channel) -> Lazarus (5009ms) What companies manufacture golf clubs? Guests 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Guests, can also find, golf) -> Guests (5024ms) What companies manufacture golf clubs? The faster face 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (The faster face, creates, faster golf ball speeds) -> The faster face (5028ms) What companies manufacture golf clubs? Icon ComLynx 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (Icon ComLynx, works for, Championship Rally Awesome Golf buttons) -> Icon ComLynx (4958ms) What companies manufacture golf clubs? Hard cases 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, be type of, golf) -> (Hard cases, are one type of, travel golf bag) -> Hard cases (4988ms) What companies manufacture golf clubs? Emerald Valley Golf Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Emerald Valley Golf Club, Type, Golf Facility) -> Emerald Valley Golf Club (4939ms) What companies manufacture golf clubs? We?ve 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (We?ve, created, Golfing Secrets) -> We?ve (5026ms) What companies manufacture golf clubs? Play 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Play, find, golf) -> Play (4996ms) What companies manufacture golf clubs? ?These 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, be type of, golf) -> (?These, are two completely different types of, golf courses) -> ?These (5009ms) What companies manufacture golf clubs? St James Plantation 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (St James Plantation, find, golf) -> St James Plantation (4939ms) What companies manufacture golf clubs? Bald Head Island 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Bald Head Island, find, golf) -> Bald Head Island (4939ms) What companies manufacture golf clubs? the four following elements 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (the four following elements, creates, great golf courses) -> the four following elements (4988ms) What companies manufacture golf clubs? The Montagu 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (The Montagu, Type, Golf Course) -> The Montagu (4939ms) What companies manufacture golf clubs? Wilmington 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Wilmington, find, golf) -> Wilmington (4988ms) What companies manufacture golf clubs? the rawest emotions 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (the rawest emotions, found in, golf) -> the rawest emotions (5004ms) What companies manufacture golf clubs? News 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, price, golf) -> (News, Get The Best Price On, Your Myrtle Beach Golf Vacation) -> News (5019ms) What companies manufacture golf clubs? Richard 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Richard, found, golf) -> Richard (4992ms) What companies manufacture golf clubs? Kerwin 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (Kerwin, works for, Minnewasta Golf) -> Kerwin (5001ms) What companies manufacture golf clubs? Essex County Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Essex County Club, Type, Golf Facility) -> Essex County Club (4970ms) What companies manufacture golf clubs? Nearly everybody 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Nearly everybody, would want to find out about, golfing) -> Nearly everybody (5001ms) What companies manufacture golf clubs? Eden Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Eden Course, Type, Golf Course) -> Eden Course (5004ms) What companies manufacture golf clubs? Sam 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Sam, can be found playing, golf) -> Sam (5009ms) What companies manufacture golf clubs? The rolling hills 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (The rolling hills, create, a great setting for golf) -> The rolling hills (5004ms) What companies manufacture golf clubs? Everett 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Everett, created, a disc golf course) -> Everett (4979ms) What companies manufacture golf clubs? Garden Grove 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, price, golf) -> (Garden Grove, offers great prices on, new Volkswagen Golf) -> Garden Grove (4996ms) What companies manufacture golf clubs? Guest New Zealand 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Guest New Zealand, create, golf tours) -> Guest New Zealand (5024ms) What companies manufacture golf clubs? Timuquana Country Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Timuquana Country Club, Type, Golf Facility) -> Timuquana Country Club (5016ms) What companies manufacture golf clubs? plan menu 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, price, golf) -> (plan menu, keep prices reasonable for, golf and menu) -> plan menu (5016ms) What companies manufacture golf clubs? Justin 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (Justin, has worked for, a golf course) -> Justin (4974ms) What companies manufacture golf clubs? Lloyd Perino 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Lloyd Perino, is finding time to, golf) -> Lloyd Perino (5009ms) What companies manufacture golf clubs? Valderrama Golf Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Valderrama Golf Course, Type, Golf Course) -> Valderrama Golf Course (4965ms) What companies manufacture golf clubs? Aviara Golf Academy 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Aviara Golf Academy, Type, Golf Facility) -> Aviara Golf Academy (5024ms) What companies manufacture golf clubs? Gros Morne Golf Resort 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Gros Morne Golf Resort, Type, Golf Facility) -> Gros Morne Golf Resort (4988ms) What companies manufacture golf clubs? the same dimples 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (the same dimples, found on, golf) -> the same dimples (5019ms) What companies manufacture golf clubs? the Curtis sisters 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (the Curtis sisters, created, golf 's Curtis Cup) -> the Curtis sisters (5001ms) What companies manufacture golf clubs? tour bags 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, be type of, golf) -> (tour bags, are the largest type of, golf bag) -> tour bags (4958ms) What companies manufacture golf clubs? Madonna 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Madonna, created, a golf academy) -> Madonna (4979ms) What companies manufacture golf clubs? the Mar Menor region 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (the Mar Menor region, will also find, golf) -> the Mar Menor region (4952ms) What companies manufacture golf clubs? click 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (click, create, your own golf itinerary) -> click (4974ms) What companies manufacture golf clubs? Lou 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Lou, can be found, golfing) -> Lou (4992ms) What companies manufacture golf clubs? 2004 ...AND THEN GOD 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (2004 ...AND THEN GOD, CREATED, GOLF-BOOK REVIEW) -> 2004 ...AND THEN GOD (5024ms) What companies manufacture golf clubs? Swan Point Yacht & Country Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Swan Point Yacht & Country Club, Type, Golf Facility) -> Swan Point Yacht & Country Club (5013ms) What companies manufacture golf clubs? Pleasant Valley Blue Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Pleasant Valley Blue Course, Type, Golf Course) -> Pleasant Valley Blue Course (4958ms) What companies manufacture golf clubs? The actual edge putter 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (The actual edge putter, would work for, those golf players) -> The actual edge putter (4970ms) What companies manufacture golf clubs? Oneida Golf and Country Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Oneida Golf and Country Club, Type, Golf Facility) -> Oneida Golf and Country Club (5019ms) What companies manufacture golf clubs? the ballfinder scout 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (the ballfinder scout, finds, golf balls) -> the ballfinder scout (4974ms) What companies manufacture golf clubs? A recent project 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (A recent project, create, a golf-course) -> A recent project (5022ms) What companies manufacture golf clubs? Portland Golf Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Portland Golf Club, Type, Golf Facility) -> Portland Golf Club (4988ms) What companies manufacture golf clubs? Mark 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (Mark, worked for, Cleveland Golf) -> Mark (4958ms) What companies manufacture golf clubs? Black Hall Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Black Hall Club, Type, Golf Facility) -> Black Hall Club (5019ms) What companies manufacture golf clubs? The Ranch Golf Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (The Ranch Golf Course, Type, Golf Course) -> The Ranch Golf Course (4958ms) What companies manufacture golf clubs? 2/3 Ball This 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, be type of, golf) -> (2/3 Ball This, is a type of, golf bet) -> 2/3 Ball This (4952ms) What companies manufacture golf clubs? The Stanwich Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (The Stanwich Club, Type, Golf Facility) -> The Stanwich Club (4979ms) What companies manufacture golf clubs? WPA work crews 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (WPA work crews, created, the golf course) -> WPA work crews (4974ms) What companies manufacture golf clubs? Mrs. Barrett 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Mrs. Barrett, finds time for, golf) -> Mrs. Barrett (5026ms) What companies manufacture golf clubs? Travel information 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Travel information, find, golf) -> Travel information (4958ms) What companies manufacture golf clubs? questions 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, price, golf) -> (questions, is the typical price of, a Myrtle Beach golf package) -> questions (4945ms) What companies manufacture golf clubs? Dunluce Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Dunluce Course, Type, Golf Course) -> Dunluce Course (5026ms) What companies manufacture golf clubs? Ligaya 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Ligaya, can usually be found either playing, golf) -> Ligaya (5009ms) What companies manufacture golf clubs? the disc athletes 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (the disc athletes, created, disc golf) -> the disc athletes (4965ms) What companies manufacture golf clubs? No page 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (No page, found in, Golf) -> No page (5000ms) What companies manufacture golf clubs? friendly environment 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (friendly environment, creates a great atmosphere for, golf) -> friendly environment (5028ms) What companies manufacture golf clubs? counterfeit 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (counterfeit, creates world of, golf) -> counterfeit (4988ms) What companies manufacture golf clubs? men and women 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (men and women, also find, golf) -> men and women (5022ms) What companies manufacture golf clubs? Each bar location 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Each bar location, creates, their own golf hole) -> Each bar location (4945ms) What companies manufacture golf clubs? The Army team 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (The Army team, works for, golf balls) -> The Army team (4945ms) What companies manufacture golf clubs? The leaves 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, price, golf) -> (The leaves, so are the prices on, golf merchandise) -> The leaves (5028ms) What companies manufacture golf clubs? turn 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (turn, create, better golf shots) -> turn (5019ms) What companies manufacture golf clubs? the Waterfront Park 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (the Waterfront Park, find, golf) -> the Waterfront Park (4974ms) What companies manufacture golf clubs? the Taiwan Golf Association 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (the Taiwan Golf Association, created, the Acer Golf Program) -> the Taiwan Golf Association (5013ms) What companies manufacture golf clubs? Tom 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (Tom, worked for, the Golf Digest instructional schools) -> Tom (5022ms) What companies manufacture golf clubs? the feathers 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (the feathers, creating, a hardened golf ball) -> the feathers (4992ms) What companies manufacture golf clubs? individuals 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (individuals, find true passion in, golf) -> individuals (5013ms) What companies manufacture golf clubs? Jock 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (Jock, has worked for, Golf World) -> Jock (5001ms) What companies manufacture golf clubs? President Obama 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (President Obama, finds time to, golf) -> President Obama (5024ms) What companies manufacture golf clubs? Southwind Country Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Southwind Country Club, Type, Golf Facility) -> Southwind Country Club (4945ms) What companies manufacture golf clubs? One important note 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, price, golf) -> (One important note, would be the price of, the iGolf) -> One important note (4992ms) What companies manufacture golf clubs? the Caswell Beach 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (the Caswell Beach, find, golf) -> the Caswell Beach (4970ms) What companies manufacture golf clubs? Sonocaddie 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Sonocaddie, is another type of, golf) -> Sonocaddie (5013ms) What companies manufacture golf clubs? age and gender 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (age and gender, find, Golf) -> age and gender (5013ms) What companies manufacture golf clubs? The Country Club of Virginia 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (The Country Club of Virginia, Type, Golf Facility) -> The Country Club of Virginia (4979ms) What companies manufacture golf clubs? I?ve 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (I?ve, worked for, Pestana Golf Resorts) -> I?ve (5001ms) What companies manufacture golf clubs? native Scotsman Donald J. Ross 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (native Scotsman Donald J. Ross, created, 23 golf courses) -> native Scotsman Donald J. Ross (4984ms) What companies manufacture golf clubs? Jay 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Jay, found the game of, golf) -> Jay (5016ms) What companies manufacture golf clubs? Tredegar and Rhymney Golf Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Tredegar and Rhymney Golf Club, Type, Golf Facility) -> Tredegar and Rhymney Golf Club (4939ms) What companies manufacture golf clubs? The Reserve Vineyards and Golf Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (The Reserve Vineyards and Golf Club, Type, Golf Facility) -> The Reserve Vineyards and Golf Club (4992ms) What companies manufacture golf clubs? Maspalomas Golf, Gran Canaria, Spain 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Maspalomas Golf, Gran Canaria, Spain, Type, Golf Course) -> Maspalomas Golf, Gran Canaria, Spain (5022ms) What companies manufacture golf clubs? the surrounding mountains 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (the surrounding mountains, create a great setting for, golf) -> the surrounding mountains (4932ms) What companies manufacture golf clubs? more putts 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (more putts, creates, a lower golf disability) -> more putts (5004ms) What companies manufacture golf clubs? golf 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, be type of, golf) -> (golf, there are 3 different types of, golf grip) -> golf (4939ms) What companies manufacture golf clubs? The Mountain Course at Hidden Valley Country Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (The Mountain Course at Hidden Valley Country Club, Type, Golf Course) -> The Mountain Course at Hidden Valley Country Club (5019ms) What companies manufacture golf clubs? the author 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (the author, Find more great articles on, golf) -> the author (5024ms) What companies manufacture golf clubs? The two coaches 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (The two coaches, created, the Pacific Golf Academy) -> The two coaches (4984ms) What companies manufacture golf clubs? an opportunity 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (an opportunity, create, a golf course) -> an opportunity (5016ms) What companies manufacture golf clubs? The Woodlands Golf Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (The Woodlands Golf Course, Type, Golf Facility) -> The Woodlands Golf Course (4958ms) What companies manufacture golf clubs? Don?t 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, price, golf) -> (Don?t, pay full price for, golf) -> Don?t (4988ms) What companies manufacture golf clubs? Huntingdon Valley Country Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Huntingdon Valley Country Club, Type, Golf Facility) -> Huntingdon Valley Country Club (5004ms) What companies manufacture golf clubs? Country Club of Vermont 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Country Club of Vermont, Type, Golf Facility) -> Country Club of Vermont (5026ms) What companies manufacture golf clubs? www.charlestongolfguide.com 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, price, golf) -> (www.charlestongolfguide.com, price, your custom golf vacation) -> www.charlestongolfguide.com (4997ms) What companies manufacture golf clubs? The Preserve Golf Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (The Preserve Golf Course, Type, Golf Course) -> The Preserve Golf Course (4939ms) What companies manufacture golf clubs? Ironbridge Golf Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Ironbridge Golf Club, Type, Golf Facility) -> Ironbridge Golf Club (4939ms) What companies manufacture golf clubs? SC 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, price, golf) -> (SC, has a great price on, a Masters Week Golf Special) -> SC (5024ms) What companies manufacture golf clubs? Franklin Hills Country Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Franklin Hills Country Club, Type, Golf Facility) -> Franklin Hills Country Club (4988ms) What companies manufacture golf clubs? the committee 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (the committee, worked for, golf companies) -> the committee (4965ms) What companies manufacture golf clubs? No 2011-2012 events 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (No 2011-2012 events, were found for, Golf) -> No 2011-2012 events (4979ms) What companies manufacture golf clubs? Russell 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Russell, created, Golf World Monday) -> Russell (5019ms) What companies manufacture golf clubs? the golf course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (the golf course, find, golf) -> the golf course (4974ms) What companies manufacture golf clubs? The R&A 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (The R&A, to working for, golf) -> The R&A (5009ms) What companies manufacture golf clubs? the genius people 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (the genius people, create, the snow golf) -> the genius people (4997ms) What companies manufacture golf clubs? Jackson Hole Golf Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Jackson Hole Golf Course, Type, Golf Course) -> Jackson Hole Golf Course (4984ms) What companies manufacture golf clubs? West 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (West, has found, golf) -> West (4984ms) What companies manufacture golf clubs? Falkland Golf Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Falkland Golf Club, Type, Golf Facility) -> Falkland Golf Club (4996ms) What companies manufacture golf clubs? elevation changes 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (elevation changes, create, challenging golf holes) -> elevation changes (4984ms) What companies manufacture golf clubs? TheR&A The R&Ais 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (TheR&A The R&Ais, committed to working for, golf) -> TheR&A The R&Ais (4932ms) What companies manufacture golf clubs? Click 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Click, create, your golf vacation) -> Click (5013ms) What companies manufacture golf clubs? Vintage Mountain Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Vintage Mountain Course, Type, Golf Course) -> Vintage Mountain Course (5009ms) What companies manufacture golf clubs? Oakbourne Country Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Oakbourne Country Club, Type, Golf Facility) -> Oakbourne Country Club (5019ms) What companies manufacture golf clubs? webcams 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (webcams, find out more about, golf) -> webcams (5019ms) What companies manufacture golf clubs? information 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (information, find, golf) -> information (4979ms) What companies manufacture golf clubs? Raymond Floyd and Tom Jackson 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Raymond Floyd and Tom Jackson, created, a golf masterpiece) -> Raymond Floyd and Tom Jackson (5026ms) What companies manufacture golf clubs? the Carolina National Golf Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (the Carolina National Golf Course, find, golf) -> the Carolina National Golf Course (5001ms) What companies manufacture golf clubs? Valderrama Golf Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Valderrama Golf Club, Type, Golf Facility) -> Valderrama Golf Club (5016ms) What companies manufacture golf clubs? the term 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, be type of, golf) -> (the term, is actually a specific type of, golf course) -> the term (4969ms) What companies manufacture golf clubs? Charlotte 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Charlotte, created, the Zen Golf Center) -> Charlotte (4952ms) What companies manufacture golf clubs? North Shore Country Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (North Shore Country Club, Type, Golf Facility) -> North Shore Country Club (4965ms) What companies manufacture golf clubs? Tavern Creek Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Tavern Creek Course, Type, Golf Course) -> Tavern Creek Course (4952ms) What companies manufacture golf clubs? left-handed people 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (left-handed people, have found playing, golf) -> left-handed people (4984ms) What companies manufacture golf clubs? Pleasant Valley Yellow Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Pleasant Valley Yellow Course, Type, Golf Course) -> Pleasant Valley Yellow Course (4965ms) What companies manufacture golf clubs? Bobby's Legacy Golf Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Bobby's Legacy Golf Course, Type, Golf Course) -> Bobby's Legacy Golf Course (4974ms) What companies manufacture golf clubs? San Diego 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (San Diego, creates, innovative golf products) -> San Diego (5028ms) What companies manufacture golf clubs? smaller sized golf club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (smaller sized golf club, create their knowledge in, golfing) -> smaller sized golf club (5004ms) What companies manufacture golf clubs? Ness 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Ness, finds little time to, golf) -> Ness (5013ms) What companies manufacture golf clubs? tourist attractions 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (tourist attractions, find opportunities for, golfing) -> tourist attractions (5016ms) What companies manufacture golf clubs? Fred 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Fred, found, golf) -> Fred (4970ms) What companies manufacture golf clubs? The undulating countryside 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (The undulating countryside, creates, the perfect golf terrain) -> The undulating countryside (4979ms) What companies manufacture golf clubs? Johnston 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Johnston, created, a unique golf course) -> Johnston (5009ms) What companies manufacture golf clubs? The Peninsula Golf and Country Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (The Peninsula Golf and Country Club, Type, Golf Facility) -> The Peninsula Golf and Country Club (5026ms) What companies manufacture golf clubs? Olympia Fields Country Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Olympia Fields Country Club, Type, Golf Facility) -> Olympia Fields Country Club (4974ms) What companies manufacture golf clubs? we?ve 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, price, golf) -> (we?ve, also lowered the prices of, our group golf packages) -> we?ve (4988ms) What companies manufacture golf clubs? Michigan 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Michigan, created, an exceptional golf experience) -> Michigan (5030ms) What companies manufacture golf clubs? the staff 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (the staff, worked for, the Royal Canadian Golf Association) -> the staff (5004ms) What companies manufacture golf clubs? Bellerive Golf Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Bellerive Golf Course, Type, Golf Course) -> Bellerive Golf Course (5024ms) What companies manufacture golf clubs? Circling Raven Golf Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Circling Raven Golf Course, Type, Golf Course) -> Circling Raven Golf Course (4932ms) What companies manufacture golf clubs? Golf All Stunning locations 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Golf All Stunning locations, create, stunning golf courses) -> Golf All Stunning locations (4932ms) What companies manufacture golf clubs? Tiger Woods 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Tiger Woods, created a new interest in, golf) -> Tiger Woods (4969ms) What companies manufacture golf clubs? Belgrade Lakes Golf Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Belgrade Lakes Golf Club, Type, Golf Facility) -> Belgrade Lakes Golf Club (5026ms) What companies manufacture golf clubs? The Golf Club of Georgia Lakeside Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (The Golf Club of Georgia Lakeside Course, Type, Golf Course) -> The Golf Club of Georgia Lakeside Course (5004ms) What companies manufacture golf clubs? Blackmoor Golf Course .Lowest 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, price, golf) -> (Blackmoor Golf Course .Lowest, priced, golf course) -> Blackmoor Golf Course .Lowest (4996ms) What companies manufacture golf clubs? Sea Island Retreat Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Sea Island Retreat Course, Type, Golf Course) -> Sea Island Retreat Course (4939ms) What companies manufacture golf clubs? Wadkins 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Wadkins, created, a golf course) -> Wadkins (4952ms) What companies manufacture golf clubs? TPC San Antonio 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (TPC San Antonio, Type, Golf Facility) -> TPC San Antonio (5009ms) What companies manufacture golf clubs? the game 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (the game, created, golf camps) -> the game (5021ms) What companies manufacture golf clubs? Pasatiempo 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Pasatiempo, find the love for, golf) -> Pasatiempo (4996ms) What companies manufacture golf clubs? St . James Plantation 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (St . James Plantation, find, golf) -> St . James Plantation (4992ms) What companies manufacture golf clubs? Mizuno Golf 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Mizuno Golf, create, outstanding golf irons) -> Mizuno Golf (4984ms) What companies manufacture golf clubs? Ko'olau Golf Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Ko'olau Golf Club, Type, Golf Facility) -> Ko'olau Golf Club (4945ms) What companies manufacture golf clubs? Evert 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (Evert, works for, Synergy Golf Partners LLC) -> Evert (4974ms) What companies manufacture golf clubs? golf equipment 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, price, golf) -> (golf equipment, can make the price of, custom golf equipment) -> golf equipment (4952ms) What companies manufacture golf clubs? North 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (North, you?ll find the iconic home of, golf) -> North (4979ms) What companies manufacture golf clubs? spending time 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (spending time, has recently found a new passion for, golf) -> spending time (4997ms) What companies manufacture golf clubs? an expert skier 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (an expert skier, formerly worked for, Telluride Ski and Golf) -> an expert skier (5001ms) What companies manufacture golf clubs? IRONS 3-PW STEEL R 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (IRONS 3-PW STEEL R, Find, Golf) -> IRONS 3-PW STEEL R (4932ms) What companies manufacture golf clubs? Improvement 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Improvement, creates, better golf) -> Improvement (4965ms) What companies manufacture golf clubs? Renaissance Resort at World Golf Village 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Renaissance Resort at World Golf Village, Type, Golf Facility) -> Renaissance Resort at World Golf Village (5024ms) What companies manufacture golf clubs? etiquette 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (etiquette, is found in, golf) -> etiquette (5028ms) What companies manufacture golf clubs? Wenvoe Castle Golf Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Wenvoe Castle Golf Club, Type, Golf Facility) -> Wenvoe Castle Golf Club (5022ms) What companies manufacture golf clubs? Barck Obama 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Barck Obama, finds time for, golf) -> Barck Obama (4979ms) What companies manufacture golf clubs? Royal Adelaide Golf Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Royal Adelaide Golf Club, Type, Golf Facility) -> Royal Adelaide Golf Club (4984ms) What companies manufacture golf clubs? The Quilted Lizard 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (The Quilted Lizard, create, a custom golf piece) -> The Quilted Lizard (4958ms) What companies manufacture golf clubs? Golf Shopping 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, price, golf) -> (Golf Shopping, Find the best prices at, the best golf stores) -> Golf Shopping (4932ms) What companies manufacture golf clubs? The Duke 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (The Duke, creates, a challenging golf experience) -> The Duke (4958ms) What companies manufacture golf clubs? Adidas 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Adidas, creates, golf shoes) -> Adidas (5022ms) What companies manufacture golf clubs? the contractor 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (the contractor, performed work for, a golf course) -> the contractor (5028ms) What companies manufacture golf clubs? Oakburne 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Oakburne, Type, Golf Course) -> Oakburne (5022ms) What companies manufacture golf clubs? the Harvard 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (the Harvard, created, the Maine Golf Academy) -> the Harvard (4992ms) What companies manufacture golf clubs? exquisite club amenities 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (exquisite club amenities, create, the marquee Troon Golf) -> exquisite club amenities (5016ms) What companies manufacture golf clubs? 2003 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (2003, created, the Golf) -> 2003 (4945ms) What companies manufacture golf clubs? a secret?Tiger 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (a secret?Tiger, did n?t create, golf) -> a secret?Tiger (4970ms) What companies manufacture golf clubs? Teton Pines Country Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Teton Pines Country Club, Type, Golf Facility) -> Teton Pines Country Club (5028ms) What companies manufacture golf clubs? Search ebay 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Search ebay, directly to find, Golf) -> Search ebay (5026ms) What companies manufacture golf clubs? students 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (students, are wanting to find out about, golf) -> students (4952ms) What companies manufacture golf clubs? Professional golfers 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Professional golfers, will find, golfing) -> Professional golfers (5028ms) What companies manufacture golf clubs? Lake Nona 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, be type of, golf) -> (Lake Nona, is a different type of, golf course) -> Lake Nona (5013ms) What companies manufacture golf clubs? NCR South Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (NCR South Course, Type, Golf Course) -> NCR South Course (4996ms) What companies manufacture golf clubs? full advantage 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (full advantage, find pleasure in, golf) -> full advantage (4974ms) What companies manufacture golf clubs? The Pines Golf Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (The Pines Golf Course, Type, Golf Course) -> The Pines Golf Course (4988ms) What companies manufacture golf clubs? Dane Stanton 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, be type of, golf) -> (Dane Stanton, There are many different types of, golf stores) -> Dane Stanton (5009ms) What companies manufacture golf clubs? Reed 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Reed, find time to, golf) -> Reed (4974ms) What companies manufacture golf clubs? Dutch Legacy Golf Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Dutch Legacy Golf Course, Type, Golf Course) -> Dutch Legacy Golf Course (4952ms) What companies manufacture golf clubs? Lighter weights 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (Lighter weights, work great for, younger disc golf players) -> Lighter weights (4958ms) What companies manufacture golf clubs? Old Head Golf Links 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Old Head Golf Links, Type, Golf Course) -> Old Head Golf Links (4945ms) What companies manufacture golf clubs? treatment 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, be type of, golf) -> (treatment, is a type of, grass golf) -> treatment (4988ms) What companies manufacture golf clubs? Ridgewood Center Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Ridgewood Center Course, Type, Golf Course) -> Ridgewood Center Course (4939ms) What companies manufacture golf clubs? Wakonda Golf Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Wakonda Golf Course, Type, Golf Course) -> Wakonda Golf Course (5024ms) What companies manufacture golf clubs? the classic kids book Pollyanna ? 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (the classic kids book Pollyanna ?, create, a golf game) -> the classic kids book Pollyanna ? (5019ms) What companies manufacture golf clubs? 700 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, be type of, golf) -> (700, are some type of, golfing membership) -> 700 (5001ms) What companies manufacture golf clubs? Golfasian 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Golfasian, create, a custom golf vacation) -> Golfasian (4984ms) What companies manufacture golf clubs? Robertson 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (Robertson, works for, Henry Brunton Golf) -> Robertson (5028ms) What companies manufacture golf clubs? Doha Golf Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Doha Golf Club, Type, Golf Facility) -> Doha Golf Club (5000ms) What companies manufacture golf clubs? putter 2-Ball Golf 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, be type of, golf) -> (putter 2-Ball Golf, is a revolutionary new type of, golf game) -> putter 2-Ball Golf (5028ms) What companies manufacture golf clubs? Spectators 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Spectators, found some of, golf) -> Spectators (4988ms) What companies manufacture golf clubs? North Course at Stonewall 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (North Course at Stonewall, Type, Golf Course) -> North Course at Stonewall (5021ms) What companies manufacture golf clubs? The Sunice Bollon 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (The Sunice Bollon, was created with, golf) -> The Sunice Bollon (4952ms) What companies manufacture golf clubs? A great example 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (A great example, can be found in, golf) -> A great example (4952ms) What companies manufacture golf clubs? A well stocked golf shop 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, price, golf) -> (A well stocked golf shop, offers moderately priced, golf apparel) -> A well stocked golf shop (5016ms) What companies manufacture golf clubs? Balance exercises 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, be type of, golf) -> (Balance exercises, are a type of, golf fitness exercises) -> Balance exercises (4958ms) What companies manufacture golf clubs? bird sanctuary 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (bird sanctuary, create a great setting for, golf) -> bird sanctuary (4952ms) What companies manufacture golf clubs? Hawktree Golf Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Hawktree Golf Course, Type, Golf Course) -> Hawktree Golf Course (4958ms) What companies manufacture golf clubs? NBC 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (NBC, created, a popular golf show) -> NBC (4996ms) What companies manufacture golf clubs? Read Description 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Read Description, Find, Golf) -> Read Description (4932ms) What companies manufacture golf clubs? Shawnee guests 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, price, golf) -> (Shawnee guests, only pay half price on, golf greens fees) -> Shawnee guests (4969ms) What companies manufacture golf clubs? 12 days 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (12 days, found time for, golf) -> 12 days (5028ms) What companies manufacture golf clubs? Tournament Club Golf Course 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Tournament Club Golf Course, Type, Golf Course) -> Tournament Club Golf Course (4979ms) What companies manufacture golf clubs? Dod 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, found, golf) -> (Dod, found, golf) -> Dod (4965ms) What companies manufacture golf clubs? Royal Birkdale Golf Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Royal Birkdale Golf Club, Type, Golf Course) -> Royal Birkdale Golf Club (4988ms) What companies manufacture golf clubs? solutions 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (solutions, work for, your golfing patients) -> solutions (5024ms) What companies manufacture golf clubs? top golf club designers 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, work for, golf) -> (top golf club designers, work for, Clone Golf manufacturers) -> top golf club designers (5004ms) What companies manufacture golf clubs? close Golf Gifts 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (close Golf Gifts, Create, your own Golf Gifts) -> close Golf Gifts (4965ms) What companies manufacture golf clubs? Disabilities 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Disabilities, was created to make, golf) -> Disabilities (4974ms) What companies manufacture golf clubs? Old North State Club 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, type, golf) -> (Old North State Club, Type, Golf Facility) -> Old North State Club (4970ms) What companies manufacture golf clubs? Treasure 1.5555555555440002 What companies manufacture golf clubs? -> $x: ($x, create, golf) -> (Treasure, create, a Golf gift baskets) -> Treasure (4939ms) What companies manufacture golf clubs? the U.S. -0.11111111110799998 What companies manufacture golf clubs? -> $x: ($x, be manufacture in, golf club) -> (the U.S., are manufactured in, fewer than 10 golf club foundries) -> the U.S. (5031ms) What companies manufacture golf clubs? the company -0.22222222222200003 What companies manufacture golf clubs? -> $x: ($x, be manufacturer of, club) -> (the company, is manufacturer of, " Print Club) -> the company (5031ms) What companies manufacture golf clubs? Callaway Company -0.3333333333299999 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf club) -> (Callaway Company, has manufactured, the golf clubs) -> Callaway Company (5032ms) What companies manufacture golf clubs? The corporation -0.3333333333299999 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf club) -> (The corporation, manufactures, golf club components) -> The corporation (5032ms) What companies manufacture golf clubs? the companies -0.3333333333299999 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf club) -> (the companies, manufacturing, golf clubs) -> the companies (5032ms) What companies manufacture golf clubs? kennel area -0.3333333333299999 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf club) -> (kennel area, manufactured from, golf club pages) -> kennel area (5032ms) What companies manufacture golf clubs? Chattanooga -0.3333333333299999 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf club) -> (Chattanooga, manufactured, the first left-handed golf club) -> Chattanooga (5032ms) What companies manufacture golf clubs? the top brand Golf Wedges -0.3333333333299999 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf club) -> (the top brand Golf Wedges, also manufactures, Golf Club Clones) -> the top brand Golf Wedges (5032ms) What companies manufacture golf clubs? Nike Golf -0.3333333333299999 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf club) -> (Nike Golf, to manufacture, golf clubs) -> Nike Golf (5032ms) What companies manufacture golf clubs? Le Coq Sportif -0.333333333333 What companies manufacture golf clubs? -> $x: ($x, be manufacturer of, football) -> (Le Coq Sportif, were a major manufacturer of, football attire) -> Le Coq Sportif (5032ms) What companies manufacture golf clubs? Riddell -0.333333333333 What companies manufacture golf clubs? -> $x: ($x, be manufacturer of, football) -> (Riddell, is the leading manufacturer of, football helmets) -> Riddell (5032ms) What companies manufacture golf clubs? Golf Glider -1.555555555551 What companies manufacture golf clubs? -> $x: ($x, be manufacture of, golf) -> (Golf Glider, is the manufacture of, electronic golf caddies) -> Golf Glider (5032ms) What companies manufacture golf clubs? Discraft -1.666666666664 What companies manufacture golf clubs? -> $x: ($x, be manufacture, golf) -> (Discraft, has been manufacturing, their golf discs) -> Discraft (5034ms) What companies manufacture golf clubs? Utensils -1.666666666664 What companies manufacture golf clubs? -> $x: ($x, be manufacture, golf) -> (Utensils, are manufactured with, actual golf shafts and grips) -> Utensils (5033ms) What companies manufacture golf clubs? Tiananmen Square dissidents -1.666666666664 What companies manufacture golf clubs? -> $x: ($x, be manufacture, golf) -> (Tiananmen Square dissidents, were manufacturing, golfing socks) -> Tiananmen Square dissidents (5033ms) What companies manufacture golf clubs? Nike -1.666666666664 What companies manufacture golf clubs? -> $x: ($x, be manufacture, golf) -> (Nike, have been manufacturing, golf equipment) -> Nike (5032ms) What companies manufacture golf clubs? The putter grip -1.666666666664 What companies manufacture golf clubs? -> $x: ($x, be manufacture, golf) -> (The putter grip, is now being manufactured by, GOLF) -> The putter grip (5033ms) What companies manufacture golf clubs? Champ Golf -1.888888888885 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (Champ Golf, manufactures a variety of, golf equipment) -> Champ Golf (5035ms) What companies manufacture golf clubs? a growing business -1.888888888885 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (a growing business, manufactures all kinds of, golf hardware) -> a growing business (5036ms) What companies manufacture golf clubs? The American company -1.888888888885 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (The American company, manufactures, Callaway Golf woods) -> The American company (5036ms) What companies manufacture golf clubs? Materials -1.888888888885 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (Materials, used for manufacturing, both golf drivers) -> Materials (5036ms) What companies manufacture golf clubs? Wellzher -1.888888888885 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (Wellzher, now manufacture, Golf Cart and Stand bag models) -> Wellzher (5035ms) What companies manufacture golf clubs? golf carts -1.888888888885 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (golf carts, manufactured, E Z-Go Golf Carts) -> golf carts (5035ms) What companies manufacture golf clubs? Acushnet Company -1.888888888885 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (Acushnet Company, manufactures, golf equipment) -> Acushnet Company (5035ms) What companies manufacture golf clubs? Callaway Golf company -1.888888888885 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (Callaway Golf company, manufactures primarily, golf equipment) -> Callaway Golf company (5036ms) What companies manufacture golf clubs? Stewart Golf design -1.888888888885 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (Stewart Golf design, manufacture, luxury powered golf caddies) -> Stewart Golf design (5036ms) What companies manufacture golf clubs? 1990 Kumho Tires -1.888888888885 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (1990 Kumho Tires, began manufacturing, golf balls) -> 1990 Kumho Tires (5035ms) What companies manufacture golf clubs? JBSCANADA -1.888888888885 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (JBSCANADA, manufactures, quality golf accessories) -> JBSCANADA (5036ms) What companies manufacture golf clubs? a particular answer -1.888888888885 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (a particular answer, manufactured, golf :They) -> a particular answer (5036ms) What companies manufacture golf clubs? Adidas Golf -1.888888888885 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (Adidas Golf, manufactures, Adidas-brand golf apparel) -> Adidas Golf (5036ms) What companies manufacture golf clubs? sensation -1.888888888885 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (sensation, manufactured, this particular golf ball) -> sensation (5036ms) What companies manufacture golf clubs? A company -1.888888888885 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (A company, manufactures, golf balls) -> A company (5036ms) What companies manufacture golf clubs? The defendant -1.888888888885 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (The defendant, manufactured, a video golf game) -> The defendant (5033ms) What companies manufacture golf clubs? 2011 Club Glove -1.888888888885 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (2011 Club Glove, manufactures, golf bags) -> 2011 Club Glove (5036ms) What companies manufacture golf clubs? GigaGolf -1.888888888885 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (GigaGolf, manufactures, golf equipment) -> GigaGolf (5036ms) What companies manufacture golf clubs? E-Z-Go -1.888888888885 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (E-Z-Go, still manufactures, golf cars) -> E-Z-Go (5036ms) What companies manufacture golf clubs? adidas Golf -1.888888888885 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (adidas Golf, manufactures, adidas-brand golf apparel) -> adidas Golf (5034ms) What companies manufacture golf clubs? Solorider -1.888888888885 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (Solorider, has manufactured, adaptive golf cars) -> Solorider (5036ms) What companies manufacture golf clubs? a genuine golf ball skin inlay -1.888888888885 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (a genuine golf ball skin inlay, manufactured by, Callaway Golf) -> a genuine golf ball skin inlay (5036ms) What companies manufacture golf clubs? a motor vehicle -1.888888888885 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (a motor vehicle, manufactured on, a golf course) -> a motor vehicle (5034ms) What companies manufacture golf clubs? companies -1.888888888885 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (companies, manufacture, golf equipment) -> companies (5036ms) What companies manufacture golf clubs? such renowned golf club -1.888888888885 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (such renowned golf club, manufactures as, Nike Golf) -> such renowned golf club (5036ms) What companies manufacture golf clubs? Designs -1.888888888885 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (Designs, manufactures, new-technology golf equipment) -> Designs (5036ms) What companies manufacture golf clubs? Agogos Golf -1.888888888885 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (Agogos Golf, manufactures a line of, golf carts) -> Agogos Golf (5036ms) What companies manufacture golf clubs? Drive Daddy -1.888888888885 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (Drive Daddy, manufactures, hop-on powered golf trolleys) -> Drive Daddy (5034ms) What companies manufacture golf clubs? a McPherson , Kansas , company -1.888888888885 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (a McPherson , Kansas , company, manufactured, golf cars) -> a McPherson , Kansas , company (5034ms) What companies manufacture golf clubs? a club -1.888888888885 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (a club, manufactures, golf demo day) -> a club (5035ms) What companies manufacture golf clubs? the club -1.888888888885 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (the club, has manufactured speak while, using the golf ball) -> the club (5036ms) What companies manufacture golf clubs? The tall , free-wheeling lefty -1.888888888885 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (The tall , free-wheeling lefty, manufactures, golf shots) -> The tall , free-wheeling lefty (5034ms) What companies manufacture golf clubs? business -1.888888888885 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (business, manufactures, luxury golf carts) -> business (5035ms) What companies manufacture golf clubs? Pole-Kat Golf -1.888888888885 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (Pole-Kat Golf, manufactures, the highest quality golf equipment) -> Pole-Kat Golf (5033ms) What companies manufacture golf clubs? Fila Golf?s mission -1.888888888885 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (Fila Golf?s mission, manufacture, top-of-the-line golf apparel) -> Fila Golf?s mission (5034ms) What companies manufacture golf clubs? Canada U.S. companies -1.888888888885 What companies manufacture golf clubs? -> $x: ($x, manufacture, golf) -> (Canada U.S. companies, manufacture, golf) -> Canada U.S. companies (5036ms) What companies manufacture golf clubs? milled putters -2.555555555568 What companies manufacture golf clubs? -> $x: (golf, be manufacturer of, $x) -> (Daito Golf, is a Canada-based manufacturer of, milled putters) -> milled putters (5037ms) What companies manufacture golf clubs? golf clubs -2.555555555568 What companies manufacture golf clubs? -> $x: (golf, be manufacturer of, $x) -> (Callaway Golf, is the leading manufacturer of, golf clubs) -> golf clubs (5037ms) What companies manufacture golf clubs? golf tees -2.555555555568 What companies manufacture golf clubs? -> $x: (golf, be manufacturer of, $x) -> (Pride Golf Tee, has been the No.1 manufacturer of, golf tees) -> golf tees (5037ms) What is the phobia for number 13? 13 :1-18 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (13 :1-18, are numbered, 13 :2-19) -> 13 :1-18 (2232ms) What is the phobia for number 13? the baktun 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (the baktun, are numbered from, 1 to 13) -> the baktun (2183ms) What is the phobia for number 13? the extras 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (the extras, is numbered, 13a) -> the extras (2448ms) What is the phobia for number 13? Each reel 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (Each reel, is numbered, 1-13) -> Each reel (2183ms) What is the phobia for number 13? Yogas 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (Yogas, are the number of, 13 degree) -> Yogas (2425ms) What is the phobia for number 13? The three reels 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (The three reels, are numbered 1 to, 13) -> The three reels (2447ms) What is the phobia for number 13? Death 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (Death, is numbered, 13) -> Death (2448ms) What is the phobia for number 13? only 13 states 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (only 13 states, is the exact same number as, the 13 colonies) -> only 13 states (2394ms) What is the phobia for number 13? 630 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (630, is the number of, degree 13 irreducible polynomials) -> 630 (2425ms) What is the phobia for number 13? rooms and gates 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (rooms and gates, are numbered, 13) -> rooms and gates (2478ms) What is the phobia for number 13? North Carolina 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (North Carolina, was number one for, 13 weeks) -> North Carolina (2232ms) What is the phobia for number 13? The plate 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (The plate, is numbered, number 13) -> The plate (2183ms) What is the phobia for number 13? The top row 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (The top row, is numbered 1 to, 13) -> The top row (2394ms) What is the phobia for number 13? the records 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (the records, were numbered, 12/81 , 13/81) -> the records (2447ms) What is the phobia for number 13? Patti Page 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (Patti Page, was Number One for, 13 weeks) -> Patti Page (2372ms) What is the phobia for number 13? The days 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (The days, were numbered 1 to, 13) -> The days (2478ms) What is the phobia for number 13? Purchases 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (Purchases, will be numbered, 1-3 depending) -> Purchases (2447ms) What is the phobia for number 13? 150 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (150, will be numbered, 13/150) -> 150 (2394ms) What is the phobia for number 13? Close 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (Close, are a number of, tourist 1.3 km) -> Close (2232ms) What is the phobia for number 13? alcohol 0.999999999998 What is the phobia for number 13? -> $x: ($x, be factor for, 13) -> (alcohol, was a factor for, 13) -> alcohol (2066ms) What is the phobia for number 13? VHF television channels 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (VHF television channels, are numbered, 2 ? 13) -> VHF television channels (2447ms) What is the phobia for number 13? China 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (China, is number 1 at, 1.3 billion) -> China (2425ms) What is the phobia for number 13? a nursing facility 0.999999999998 What is the phobia for number 13? -> $x: ($x, be fear of, 13) -> (a nursing facility, is a fear of, 13 percent) -> a nursing facility (2394ms) What is the phobia for number 13? 12 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (12, is an even number between, 11 and 13) -> 12 (2232ms) What is the phobia for number 13? a tarot deck 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (a tarot deck, is numbered, 13) -> a tarot deck (2067ms) What is the phobia for number 13? An example 0.999999999998 What is the phobia for number 13? -> $x: ($x, be fear of, 13) -> (An example, might be fear of, the number 13) -> An example (2447ms) What is the phobia for number 13? the card 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (the card, is numbered, 1/3) -> the card (2425ms) What is the phobia for number 13? Triskaidekaphobia 0.999999999998 What is the phobia for number 13? -> $x: ($x, be fear of, 13) -> (Triskaidekaphobia, is the fear of, 13) -> Triskaidekaphobia (2448ms) What is the phobia for number 13? ? Triskaidekaphobia 0.999999999998 What is the phobia for number 13? -> $x: ($x, be fear of, 13) -> (? Triskaidekaphobia, is an irrational fear of, the number 13) -> ? Triskaidekaphobia (2372ms) What is the phobia for number 13? Walk Legs 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (Walk Legs, are numbered, 13-36) -> Walk Legs (2394ms) What is the phobia for number 13? The Death card 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (The Death card, is numbered, 13) -> The Death card (2425ms) What is the phobia for number 13? Tiles 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (Tiles, are numbered from, 1 to 13) -> Tiles (2372ms) What is the phobia for number 13? close These 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (close These, are the Part Numbers for, 84-85 13B 6-port Engines) -> close These (2394ms) What is the phobia for number 13? the pins 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (the pins, are numbered, 0-13) -> the pins (2183ms) What is the phobia for number 13? 1/4 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (1/4, is a smaller number than, 1/3) -> 1/4 (2066ms) What is the phobia for number 13? 13 :1-6 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (13 :1-6, is numbered, 13 :2-6) -> 13 :1-6 (2183ms) What is the phobia for number 13? The allowable sizes 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (The allowable sizes, are odd numbers from, 13) -> The allowable sizes (2478ms) What is the phobia for number 13? the EAN13 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (the EAN13, is the same number as, the new 13-digit ISMN.) -> the EAN13 (2372ms) What is the phobia for number 13? 9235 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (9235, is the number of, 13-iamonds) -> 9235 (2232ms) What is the phobia for number 13? The panels 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (The panels, are numbered 1 to, 13) -> The panels (2066ms) What is the phobia for number 13? The last pages 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (The last pages, are wrongly numbered, 13-16) -> The last pages (2447ms) What is the phobia for number 13? the Glu-D1o subunits 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (the Glu-D1o subunits, has been numbered, 13) -> the Glu-D1o subunits (2232ms) What is the phobia for number 13? the door 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (the door, is numbered, 13) -> the door (2425ms) What is the phobia for number 13? triskaidekaphobia 0.999999999998 What is the phobia for number 13? -> $x: ($x, be fear of, 13) -> (triskaidekaphobia, is the fear of, the number 13 Search) -> triskaidekaphobia (2066ms) What is the phobia for number 13? the four 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (the four, is the magic number between, a PG-13) -> the four (2066ms) What is the phobia for number 13? Triskadekaphobia 0.999999999998 What is the phobia for number 13? -> $x: ($x, be fear of, 13) -> (Triskadekaphobia, is fear of, the number 13) -> Triskadekaphobia (2447ms) What is the phobia for number 13? Anglers 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (Anglers, are landing decent numbers of, 1-3 lb) -> Anglers (2183ms) What is the phobia for number 13? ? Triskaidekaphobia 0.999999999998 What is the phobia for number 13? -> $x: ($x, be fear of, 13) -> (? Triskaidekaphobia, is the fear of, the number 13) -> ? Triskaidekaphobia (2394ms) What is the phobia for number 13? the new sets 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (the new sets, were numbered, 11 , 12 , 13 and 14) -> the new sets (2478ms) What is the phobia for number 13? Paraskevidekatriaphobia 0.999999999998 What is the phobia for number 13? -> $x: ($x, be fear of, 13) -> (Paraskevidekatriaphobia, is fear of, Friday 13th) -> Paraskevidekatriaphobia (2372ms) What is the phobia for number 13? the morning 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (the morning, is numbered, the 13th day) -> the morning (2372ms) What is the phobia for number 13? Each card 0.999999999998 What is the phobia for number 13? -> $x: ($x, be number, 13) -> (Each card, is numbered from, 1-13) -> Each card (2372ms) What is the phobia for number 13? friggatriskaidekaphobia 0.999999999998 What is the phobia for number 13? -> $x: ($x, be fear of, 13) -> (friggatriskaidekaphobia, is fear of, the number 13) -> friggatriskaidekaphobia (2232ms) What is the phobia for number 13? Galilean 0.888888888887 What is the phobia for number 13? -> $x: ($x, satellite, 13) -> (Galilean, satellites, 1.2 Longitude 1.3 1.4) -> Galilean (2481ms) What is the phobia for number 13? new.adjective.01 0.888888888887 What is the phobia for number 13? -> $x: ($x, satellite, 13) -> (new.adjective.01, satellite, hot.adjective.13) -> new.adjective.01 (2478ms) What is the phobia for number 13? dead.adjective.01 0.888888888887 What is the phobia for number 13? -> $x: ($x, satellite, 13) -> (dead.adjective.01, satellite, cold.adjective.13) -> dead.adjective.01 (2478ms) What is the phobia for number 13? easy.adjective.05 0.888888888887 What is the phobia for number 13? -> $x: ($x, satellite, 13) -> (easy.adjective.05, satellite, light.adjective.13) -> easy.adjective.05 (2478ms) What is the phobia for number 13? perfect.adjective.01 0.888888888887 What is the phobia for number 13? -> $x: ($x, satellite, 13) -> (perfect.adjective.01, satellite, clear.adjective.13) -> perfect.adjective.01 (2478ms) What is the phobia for number 13? thick.adjective.01 0.888888888887 What is the phobia for number 13? -> $x: ($x, satellite, 13) -> (thick.adjective.01, satellite, heavy.adjective.13) -> thick.adjective.01 (2478ms) What is the phobia for number 13? pregnant.adjective.01 0.888888888887 What is the phobia for number 13? -> $x: ($x, satellite, 13) -> (pregnant.adjective.01, satellite, big.adjective.13) -> pregnant.adjective.01 (2478ms) What is the phobia for number 13? full-time.adjective.01 0.888888888887 What is the phobia for number 13? -> $x: ($x, satellite, 13) -> (full-time.adjective.01, satellite, regular.adjective.13) -> full-time.adjective.01 (2481ms) What is the phobia for number 13? counterfeit.adjective.01 0.888888888887 What is the phobia for number 13? -> $x: ($x, satellite, 13) -> (counterfeit.adjective.01, satellite, bad.adjective.13) -> counterfeit.adjective.01 (2481ms) What is the phobia for number 13? fortunate.adjective.01 0.888888888887 What is the phobia for number 13? -> $x: ($x, satellite, 13) -> (fortunate.adjective.01, satellite, good.adjective.13) -> fortunate.adjective.01 (2481ms) What is the phobia for number 13? unsealed.adjective.02 0.888888888887 What is the phobia for number 13? -> $x: ($x, satellite, 13) -> (unsealed.adjective.02, satellite, open.adjective.13) -> unsealed.adjective.02 (2478ms) What is the phobia for number 13? eruptive.adjective.03 0.888888888887 What is the phobia for number 13? -> $x: ($x, satellite, 13) -> (eruptive.adjective.03, satellite, active.adjective.13) -> eruptive.adjective.03 (2478ms) What is the phobia for number 13? incomplete.adjective.01 0.888888888887 What is the phobia for number 13? -> $x: ($x, satellite, 13) -> (incomplete.adjective.01, satellite, broken.adjective.13) -> incomplete.adjective.01 (2478ms) What is the phobia for number 13? fair.adjective.01 0.888888888887 What is the phobia for number 13? -> $x: ($x, satellite, 13) -> (fair.adjective.01, satellite, clean.adjective.13) -> fair.adjective.01 (2478ms) What is the phobia for number 13? undiluted.adjective.01 0.888888888887 What is the phobia for number 13? -> $x: ($x, satellite, 13) -> (undiluted.adjective.01, satellite, black.adjective.13) -> undiluted.adjective.01 (2481ms) What is the phobia for number 13? Earth 0.888888888887 What is the phobia for number 13? -> $x: ($x, satellite, 13) -> (Earth, Artificial satellite(s), GOES 13) -> Earth (2481ms) What is the phobia for number 13? short.adjective.02 0.888888888887 What is the phobia for number 13? -> $x: ($x, satellite, 13) -> (short.adjective.02, satellite, close.adjective.13) -> short.adjective.02 (2478ms) What is the phobia for number 13? inoperative.adjective.01 0.888888888887 What is the phobia for number 13? -> $x: ($x, satellite, 13) -> (inoperative.adjective.01, satellite, dead.adjective.13) -> inoperative.adjective.01 (2478ms) What is the phobia for number 13? plain.adjective.02 0.888888888887 What is the phobia for number 13? -> $x: ($x, satellite, 13) -> (plain.adjective.02, satellite, dry.adjective.13) -> plain.adjective.02 (2481ms) What is the phobia for number 13? Leader Ibuprofen 100 chewable tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Leader Ibuprofen 100 chewable tablet, Size, 13.0) -> Leader Ibuprofen 100 chewable tablet (2483ms) What is the phobia for number 13? Nighttime Sleep Aid 25 film coated tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Nighttime Sleep Aid 25 film coated tablet, Size, 13.0) -> Nighttime Sleep Aid 25 film coated tablet (2481ms) What is the phobia for number 13? Mazda 1.3L 2 Cylinder FFS ROTARY 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Mazda 1.3L 2 Cylinder FFS ROTARY, Size, 1.3) -> Mazda 1.3L 2 Cylinder FFS ROTARY (2491ms) What is the phobia for number 13? Vimpat 50,100 kit 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Vimpat 50,100 kit, Size, 13.0) -> Vimpat 50,100 kit (2487ms) What is the phobia for number 13? 39.99 sizes 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (39.99 sizes, sizes, 13 sizes) -> 39.99 sizes (2487ms) What is the phobia for number 13? a queen 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (a queen, sized, ( 13' x) -> a queen (2485ms) What is the phobia for number 13? 358 grams 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (358 grams, Size, 13.58 oz) -> 358 grams (2487ms) What is the phobia for number 13? Fluvoxamine Maleate 100 tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Fluvoxamine Maleate 100 tablet, Size, 13.0) -> Fluvoxamine Maleate 100 tablet (2491ms) What is the phobia for number 13? Edition 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Edition, sized, 13 x) -> Edition (2491ms) What is the phobia for number 13? Sulfasalazine 500 tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Sulfasalazine 500 tablet, Size, 13.0) -> Sulfasalazine 500 tablet (2487ms) What is the phobia for number 13? Unisom SleepGels Nighttime Sleep-Aid 50 liquid filled capsule 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Unisom SleepGels Nighttime Sleep-Aid 50 liquid filled capsule, Size, 13.0) -> Unisom SleepGels Nighttime Sleep-Aid 50 liquid filled capsule (2485ms) What is the phobia for number 13? UK 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (UK, sizes, Child 13) -> UK (2489ms) What is the phobia for number 13? Sinemet CR 25/100 extended release tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Sinemet CR 25/100 extended release tablet, Size, 13.0) -> Sinemet CR 25/100 extended release tablet (2489ms) What is the phobia for number 13? Bupropion Hydrochloride 150 extended release film coated tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Bupropion Hydrochloride 150 extended release film coated tablet, Size, 13.0) -> Bupropion Hydrochloride 150 extended release film coated tablet (2491ms) What is the phobia for number 13? BUSPIRONE HCl 15 tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (BUSPIRONE HCl 15 tablet, Size, 13.0) -> BUSPIRONE HCl 15 tablet (2492ms) What is the phobia for number 13? 10 . Concellous screws-different 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (10 . Concellous screws-different, sizes, 13) -> 10 . Concellous screws-different (2487ms) What is the phobia for number 13? Thorlo Thorlo B Basketball Over-Calf Sock 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Thorlo Thorlo B Basketball Over-Calf Sock, sizes, 13) -> Thorlo Thorlo B Basketball Over-Calf Sock (2491ms) What is the phobia for number 13? Chloroquine 500 coated tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Chloroquine 500 coated tablet, Size, 13.0) -> Chloroquine 500 coated tablet (2491ms) What is the phobia for number 13? Minocycline 100 tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Minocycline 100 tablet, Size, 13.0) -> Minocycline 100 tablet (2487ms) What is the phobia for number 13? Mazda 1.3L 2 Cylinder ROTARY 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Mazda 1.3L 2 Cylinder ROTARY, Size, 1.3) -> Mazda 1.3L 2 Cylinder ROTARY (2483ms) What is the phobia for number 13? Diltiazem Hydrochloride 120 extended release tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Diltiazem Hydrochloride 120 extended release tablet, Size, 13.0) -> Diltiazem Hydrochloride 120 extended release tablet (2491ms) What is the phobia for number 13? Buspirone Hydrochloride 15 tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Buspirone Hydrochloride 15 tablet, Size, 13.0) -> Buspirone Hydrochloride 15 tablet (2485ms) What is the phobia for number 13? Tagamet HB 200 tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Tagamet HB 200 tablet, Size, 13.0) -> Tagamet HB 200 tablet (2483ms) What is the phobia for number 13? Multi-Vitamin With Fluoride 15/60/400/4.5/0.3/13.5/1.05/1.2/1/1.05/2500 chewable tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Multi-Vitamin With Fluoride 15/60/400/4.5/0.3/13.5/1.05/1.2/1/1.05/2500 chewable tablet, Size, 13.0) -> Multi-Vitamin With Fluoride 15/60/400/4.5/0.3/13.5/1.05/1.2/1/1.05/2500 chewable tablet (2492ms) What is the phobia for number 13? Naltrexone Hydrochloride 50 film coated tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Naltrexone Hydrochloride 50 film coated tablet, Size, 13.0) -> Naltrexone Hydrochloride 50 film coated tablet (2489ms) What is the phobia for number 13? Paroxetine 10 film coated tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Paroxetine 10 film coated tablet, Size, 13.0) -> Paroxetine 10 film coated tablet (2481ms) What is the phobia for number 13? neck 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (neck, sizes, 13) -> neck (2491ms) What is the phobia for number 13? Wheels 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Wheels, sized, 13) -> Wheels (2485ms) What is the phobia for number 13? Pentazocine Hydrochloride and Naloxone Hydrochloride 50/0.5 tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Pentazocine Hydrochloride and Naloxone Hydrochloride 50/0.5 tablet, Size, 13.0) -> Pentazocine Hydrochloride and Naloxone Hydrochloride 50/0.5 tablet (2489ms) What is the phobia for number 13? large fits 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (large fits, sizes, 11 -13) -> large fits (2483ms) What is the phobia for number 13? Mazda 1.3L 2 Cylinder FFS, TRBO ROTARY 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Mazda 1.3L 2 Cylinder FFS, TRBO ROTARY, Size, 1.3) -> Mazda 1.3L 2 Cylinder FFS, TRBO ROTARY (2481ms) What is the phobia for number 13? Fits child 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Fits child, sizes, 13) -> Fits child (2487ms) What is the phobia for number 13? Ankle 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Ankle, sizes, 13) -> Ankle (2485ms) What is the phobia for number 13? Hua Hin Events 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Hua Hin Events, Size, 13 items) -> Hua Hin Events (2487ms) What is the phobia for number 13? men?s 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (men?s, sizes, 7 ? 13) -> men?s (2489ms) What is the phobia for number 13? needle 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (needle, sizes, # 10 ? # 13) -> needle (2487ms) What is the phobia for number 13? Accutane 40 liquid filled capsule 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Accutane 40 liquid filled capsule, Size, 13.0) -> Accutane 40 liquid filled capsule (2492ms) What is the phobia for number 13? youth 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (youth, sizes, 13c) -> youth (2485ms) What is the phobia for number 13? Ibuprofen 400 film coated tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Ibuprofen 400 film coated tablet, Size, 13.0) -> Ibuprofen 400 film coated tablet (2485ms) What is the phobia for number 13? Mefloquine Hydrochloride 250 tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Mefloquine Hydrochloride 250 tablet, Size, 13.0) -> Mefloquine Hydrochloride 250 tablet (2483ms) What is the phobia for number 13? SunMark heartburn relief acid reducer 200 tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (SunMark heartburn relief acid reducer 200 tablet, Size, 13.0) -> SunMark heartburn relief acid reducer 200 tablet (2483ms) What is the phobia for number 13? Venlafaxine Hydrochloride 100 tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Venlafaxine Hydrochloride 100 tablet, Size, 13.0) -> Venlafaxine Hydrochloride 100 tablet (2487ms) What is the phobia for number 13? Youth 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Youth, sizes, 13 ? 6) -> Youth (2491ms) What is the phobia for number 13? Clozapine 200 tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Clozapine 200 tablet, Size, 13.0) -> Clozapine 200 tablet (2489ms) What is the phobia for number 13? Azathioprine 50 tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Azathioprine 50 tablet, Size, 13.0) -> Azathioprine 50 tablet (2483ms) What is the phobia for number 13? Benazepril and Hydrochlorothiazide 10/12.5 film coated tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Benazepril and Hydrochlorothiazide 10/12.5 film coated tablet, Size, 13.0) -> Benazepril and Hydrochlorothiazide 10/12.5 film coated tablet (2492ms) What is the phobia for number 13? socks 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (socks, sized, 13) -> socks (2487ms) What is the phobia for number 13? Non-Habit Forming Stool Softener 100 liquid filled capsule 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Non-Habit Forming Stool Softener 100 liquid filled capsule, Size, 13.0) -> Non-Habit Forming Stool Softener 100 liquid filled capsule (2483ms) What is the phobia for number 13? Glipizide and Metformin Hydrochloride 2.5/250 film coated tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Glipizide and Metformin Hydrochloride 2.5/250 film coated tablet, Size, 13.0) -> Glipizide and Metformin Hydrochloride 2.5/250 film coated tablet (2485ms) What is the phobia for number 13? Naratriptan 2.5 tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Naratriptan 2.5 tablet, Size, 13.0) -> Naratriptan 2.5 tablet (2489ms) What is the phobia for number 13? Features 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Features, Size, 13' H) -> Features (2491ms) What is the phobia for number 13? Fluoxetine 10 film coated tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Fluoxetine 10 film coated tablet, Size, 13.0) -> Fluoxetine 10 film coated tablet (2487ms) What is the phobia for number 13? Tasmar 200 film coated tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Tasmar 200 film coated tablet, Size, 13.0) -> Tasmar 200 film coated tablet (2492ms) What is the phobia for number 13? Metformin Hydrochloride 850 film coated tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Metformin Hydrochloride 850 film coated tablet, Size, 13.0) -> Metformin Hydrochloride 850 film coated tablet (2483ms) What is the phobia for number 13? ventilation Three-strap Velcro design 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (ventilation Three-strap Velcro design, sizes, youth 13) -> ventilation Three-strap Velcro design (2487ms) What is the phobia for number 13? Quinapril 40 film coated tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Quinapril 40 film coated tablet, Size, 13.0) -> Quinapril 40 film coated tablet (2483ms) What is the phobia for number 13? whole & half 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (whole & half, sizes, 4- 13) -> whole & half (2481ms) What is the phobia for number 13? Doxycycline Hyclate 75 delayed release tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Doxycycline Hyclate 75 delayed release tablet, Size, 13.0) -> Doxycycline Hyclate 75 delayed release tablet (2489ms) What is the phobia for number 13? Benazepril Hydrochloride and Hydrochlorothiazide 5/6.25 film coated tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Benazepril Hydrochloride and Hydrochlorothiazide 5/6.25 film coated tablet, Size, 13.0) -> Benazepril Hydrochloride and Hydrochlorothiazide 5/6.25 film coated tablet (2489ms) What is the phobia for number 13? Rosiglitazone Maleate 4 tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Rosiglitazone Maleate 4 tablet, Size, 13.0) -> Rosiglitazone Maleate 4 tablet (2485ms) What is the phobia for number 13? Isorsorbide Mononitrate Extended-release 30 coated tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Isorsorbide Mononitrate Extended-release 30 coated tablet, Size, 13.0) -> Isorsorbide Mononitrate Extended-release 30 coated tablet (2485ms) What is the phobia for number 13? Carbidopa and Levodopa 25/100 tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Carbidopa and Levodopa 25/100 tablet, Size, 13.0) -> Carbidopa and Levodopa 25/100 tablet (2485ms) What is the phobia for number 13? 6 scrapbook pages 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (6 scrapbook pages, Size, 13) -> 6 scrapbook pages (2487ms) What is the phobia for number 13? identical screen 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (identical screen, sizes, ( 13 inches) -> identical screen (2485ms) What is the phobia for number 13? Fosamax 70 tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Fosamax 70 tablet, Size, 13.0) -> Fosamax 70 tablet (2487ms) What is the phobia for number 13? Nuvigil 150 tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Nuvigil 150 tablet, Size, 13.0) -> Nuvigil 150 tablet (2489ms) What is the phobia for number 13? Benazepril and Hydrochlorothiazide 20/25 film coated tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Benazepril and Hydrochlorothiazide 20/25 film coated tablet, Size, 13.0) -> Benazepril and Hydrochlorothiazide 20/25 film coated tablet (2491ms) What is the phobia for number 13? Buprenorphine Hydrochloride 2 tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Buprenorphine Hydrochloride 2 tablet, Size, 13.0) -> Buprenorphine Hydrochloride 2 tablet (2491ms) What is the phobia for number 13? Tramadol Hydrochloride 300 extended release tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Tramadol Hydrochloride 300 extended release tablet, Size, 13.0) -> Tramadol Hydrochloride 300 extended release tablet (2483ms) What is the phobia for number 13? Anzemet 100 film coated tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Anzemet 100 film coated tablet, Size, 13.0) -> Anzemet 100 film coated tablet (2483ms) What is the phobia for number 13? Paroxetine 40 film coated tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Paroxetine 40 film coated tablet, Size, 13.0) -> Paroxetine 40 film coated tablet (2489ms) What is the phobia for number 13? Ultram 50 coated tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Ultram 50 coated tablet, Size, 13.0) -> Ultram 50 coated tablet (2481ms) What is the phobia for number 13? Ford 1.3L 4 Cylinder FFS 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Ford 1.3L 4 Cylinder FFS, Size, 1.3) -> Ford 1.3L 4 Cylinder FFS (2491ms) What is the phobia for number 13? Mvc 0.25/2500/60/400/15/1.05/1.2/13.5/1.05/0.3/4.5 chewable tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Mvc 0.25/2500/60/400/15/1.05/1.2/13.5/1.05/0.3/4.5 chewable tablet, Size, 13.0) -> Mvc 0.25/2500/60/400/15/1.05/1.2/13.5/1.05/0.3/4.5 chewable tablet (2489ms) What is the phobia for number 13? Up and up stool softener 100 liquid filled capsule 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Up and up stool softener 100 liquid filled capsule, Size, 13.0) -> Up and up stool softener 100 liquid filled capsule (2485ms) What is the phobia for number 13? Buprenorphine HCl 2 tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Buprenorphine HCl 2 tablet, Size, 13.0) -> Buprenorphine HCl 2 tablet (2491ms) What is the phobia for number 13? screen 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (screen, sizes, 13 inches) -> screen (2489ms) What is the phobia for number 13? child 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (child, sizes, $ 13) -> child (2489ms) What is the phobia for number 13? Fits 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Fits, size, 11-13 Price) -> Fits (2483ms) What is the phobia for number 13? Cyclosporine 25 liquid filled capsule 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Cyclosporine 25 liquid filled capsule, Size, 13.0) -> Cyclosporine 25 liquid filled capsule (2492ms) What is the phobia for number 13? Sertraline Hydrochloride Tablets 100 film coated tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Sertraline Hydrochloride Tablets 100 film coated tablet, Size, 13.0) -> Sertraline Hydrochloride Tablets 100 film coated tablet (2485ms) What is the phobia for number 13? Requip XL 8 extended release film coated tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Requip XL 8 extended release film coated tablet, Size, 13.0) -> Requip XL 8 extended release film coated tablet (2491ms) What is the phobia for number 13? a medium 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (a medium, sized, 13' x) -> a medium (2485ms) What is the phobia for number 13? Flying Fish No. 1009 Engineering 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Flying Fish No. 1009 Engineering, Size, 13.0) -> Flying Fish No. 1009 Engineering (2483ms) What is the phobia for number 13? Ground Pools 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Ground Pools, sized, 13 ft) -> Ground Pools (2489ms) What is the phobia for number 13? Fenoglide 40 tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Fenoglide 40 tablet, Size, 13.0) -> Fenoglide 40 tablet (2492ms) What is the phobia for number 13? White Ladies 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (White Ladies, sizes, 13 juv.) -> White Ladies (2492ms) What is the phobia for number 13? Ondansetron Hydrochloride 8 film coated tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Ondansetron Hydrochloride 8 film coated tablet, Size, 13.0) -> Ondansetron Hydrochloride 8 film coated tablet (2489ms) What is the phobia for number 13? Suprenza 30 orally disintegrating tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Suprenza 30 orally disintegrating tablet, Size, 13.0) -> Suprenza 30 orally disintegrating tablet (2481ms) What is the phobia for number 13? Sertraline Hydrochloride 50 tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Sertraline Hydrochloride 50 tablet, Size, 13.0) -> Sertraline Hydrochloride 50 tablet (2483ms) What is the phobia for number 13? Saddle Measurements 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Saddle Measurements, Size, 13) -> Saddle Measurements (2491ms) What is the phobia for number 13? the wall 7 piece package 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (the wall 7 piece package, sized, 13) -> the wall 7 piece package (2483ms) What is the phobia for number 13? Ludent 0.5 chewable tablet 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Ludent 0.5 chewable tablet, Size, 13.0) -> Ludent 0.5 chewable tablet (2487ms) What is the phobia for number 13? 200 full color photographs 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (200 full color photographs, Size, 13) -> 200 full color photographs (2492ms) What is the phobia for number 13? Full 0.777777777776 What is the phobia for number 13? -> $x: ($x, size, 13) -> (Full, sized, 13) -> Full (2485ms) What is the phobia for number 13? Goals 0.555555555555 What is the phobia for number 13? -> $x: ($x, be number, colony) -> (Goals, could be a certain number of, bells or colonies) -> Goals (2494ms) What is the phobia for number 13? The dependent variable 0.555555555555 What is the phobia for number 13? -> $x: ($x, be number, colony) -> (The dependent variable, is the number of, bacteria colonies) -> The dependent variable (2493ms) What is the phobia for number 13? america 0.555555555555 What is the phobia for number 13? -> $x: ($x, be number, colony) -> (america, was a number of, colonies) -> america (2493ms) What is the phobia for number 13? Freefall 0.555555555555 What is the phobia for number 13? -> $x: ($x, be number, amazing) -> (Freefall, as are a number of, amazing books) -> Freefall (2493ms) What is the phobia for number 13? snorkeling or diving 0.555555555555 What is the phobia for number 13? -> $x: ($x, be number, amazing) -> (snorkeling or diving, is number two on, amazing activities) -> snorkeling or diving (2492ms) What is the phobia for number 13? dental implants 0.555555555555 What is the phobia for number 13? -> $x: ($x, be number, amazing) -> (dental implants, There are a number of, amazing oral surgeons) -> dental implants (2493ms) What is the phobia for number 13? ecotypes 0.555555555555 What is the phobia for number 13? -> $x: ($x, be number, colony) -> (ecotypes, is number of, individual coral colony types) -> ecotypes (2493ms) What is the phobia for number 13? measurement 0.555555555555 What is the phobia for number 13? -> $x: ($x, be number, colony) -> (measurement, was to count the number of, microorganism colonies) -> measurement (2493ms) What is the phobia for number 13? The responding variable 0.555555555555 What is the phobia for number 13? -> $x: ($x, be number, colony) -> (The responding variable, was the number of, colonies) -> The responding variable (2493ms) What is the phobia for number 13? the mountains 0.555555555555 What is the phobia for number 13? -> $x: ($x, be number, colony) -> (the mountains, were a growing number of, human colonies) -> the mountains (2493ms) What is the phobia for number 13? Top Pot Bakery 0.555555555555 What is the phobia for number 13? -> $x: ($x, be number, amazing) -> (Top Pot Bakery, is the number of, amazing flavors and styles) -> Top Pot Bakery (2492ms) What is the phobia for number 13? The first level 0.555555555555 What is the phobia for number 13? -> $x: ($x, be number, colony) -> (The first level, is simply counting the number of, colonies) -> The first level (2492ms) What is the phobia for number 13? Vinland Saga 0.555555555555 What is the phobia for number 13? -> $x: ($x, be number, amazing) -> (Vinland Saga, is the number of, amazing action scenes) -> Vinland Saga (2493ms) What is the phobia for number 13? Zoe 0.555555555555 What is the phobia for number 13? -> $x: ($x, be number, colony) -> (Zoe, was n?t numbered with, the colony) -> Zoe (2493ms) What is the phobia for number 13? The yeast and mould count 0.555555555555 What is the phobia for number 13? -> $x: ($x, be number, colony) -> (The yeast and mould count, is the number of, those colonies) -> The yeast and mould count (2492ms) What is the phobia for number 13? a greener path 0.555555555555 What is the phobia for number 13? -> $x: ($x, be number, amazing) -> (a greener path, there are a number of, amazing products) -> a greener path (2493ms) What is the phobia for number 13? Thirteen 0.555555555555 What is the phobia for number 13? -> $x: ($x, be number, colony) -> (Thirteen, was the number of, the original Colonies) -> Thirteen (2493ms) What is the phobia for number 13? experience 0.555555555555 What is the phobia for number 13? -> $x: ($x, be factor for, amazing) -> (experience, is a major factor for, our amazing success) -> experience (2493ms) What is the phobia for number 13? sanctuary 0.555555555555 What is the phobia for number 13? -> $x: ($x, be number, colony) -> (sanctuary, .There were a number of, Jewish colonies) -> sanctuary (2493ms) What is the phobia for number 13? the compact camera 0.555555555555 What is the phobia for number 13? -> $x: ($x, be number, amazing) -> (the compact camera, is the sheer number of, amazing apps) -> the compact camera (2493ms) What is the phobia for number 13? Summary 0.555555555555 What is the phobia for number 13? -> $x: ($x, be number, colony) -> (Summary, is total numbers of, colonies) -> Summary (2493ms) What is the phobia for number 13? surprising.adjective.01 0.444444444444 What is the phobia for number 13? -> $x: ($x, satellite, amazing) -> (surprising.adjective.01, satellite, amazing.adjective.01) -> surprising.adjective.01 (2494ms) What is the phobia for number 13? impressive.adjective.01 0.444444444444 What is the phobia for number 13? -> $x: ($x, satellite, amazing) -> (impressive.adjective.01, satellite, amazing.adjective.02) -> impressive.adjective.01 (2494ms) What is the phobia for number 13? surprised.adjective.01 0.444444444444 What is the phobia for number 13? -> $x: ($x, satellite, amazing) -> (surprised.adjective.01, satellite, amazed.adjective.01) -> surprised.adjective.01 (2494ms) What is the phobia for number 13? India 0.444444444444 What is the phobia for number 13? -> $x: ($x, satellite, colony) -> (India, has satellite images of, all the colonies) -> India (2494ms) What is the phobia for number 13? Have students 0.333333333333 What is the phobia for number 13? -> $x: ($x, size, colony) -> (Have students, measure the size of, the fungal colony) -> Have students (2494ms) What is the phobia for number 13? Soft corals 0.333333333333 What is the phobia for number 13? -> $x: ($x, size, colony) -> (Soft corals, triple the size of, their colonies) -> Soft corals (2495ms) What is the phobia for number 13? ? Budding 0.333333333333 What is the phobia for number 13? -> $x: ($x, size, colony) -> (? Budding, expands the size of, a coral colony) -> ? Budding (2494ms) What is the phobia for number 13? the reef aquarium 0.333333333333 What is the phobia for number 13? -> $x: ($x, size, colony) -> (the reef aquarium, will increase the size of, their colony) -> the reef aquarium (2494ms) What is the phobia for number 13? medium 0.333333333333 What is the phobia for number 13? -> $x: ($x, size, colony) -> (medium, sized, colonies) -> medium (2495ms) What is the phobia for number 13? Philip Taaffe?s mural 0.333333333333 What is the phobia for number 13? -> $x: ($x, size, colony) -> (Philip Taaffe?s mural, sized, Tsuba Colony) -> Philip Taaffe?s mural (2495ms) What is the phobia for number 13? a grapefruit 0.333333333333 What is the phobia for number 13? -> $x: ($x, size, colony) -> (a grapefruit, sized, colony) -> a grapefruit (2495ms) What is the phobia for number 13? the coast 0.333333333333 What is the phobia for number 13? -> $x: ($x, size, colony) -> (the coast, sized, colony) -> the coast (2494ms) What is the phobia for number 13? native wildlife 0.333333333333 What is the phobia for number 13? -> $x: ($x, size, colony) -> (native wildlife, reduce the size of, feral cat colonies) -> native wildlife (2495ms) What is the phobia for number 13? clutch 0.333333333333 What is the phobia for number 13? -> $x: ($x, size, colony) -> (clutch, sizes at, five different colony sites) -> clutch (2494ms) What is the phobia for number 13? convicts 0.333333333333 What is the phobia for number 13? -> $x: ($x, size, colony) -> (convicts, boosted the size of, the colony) -> convicts (2495ms) What is the phobia for number 13? 1768 0.333333333333 What is the phobia for number 13? -> $x: ($x, size, colony) -> (1768, was nearly three times the size of, the colony) -> 1768 (2495ms) What is the phobia for number 13? bacteria 0.333333333333 What is the phobia for number 13? -> $x: ($x, size, colony) -> (bacteria, increases the size of, intestinal colonies) -> bacteria (2494ms) What is the phobia for number 13? Bladdernut 0.333333333333 What is the phobia for number 13? -> $x: ($x, size, colony) -> (Bladdernut, also reaches great size in, one colony) -> Bladdernut (2494ms) What is the phobia for number 13? Retrofits 0.333333333333 What is the phobia for number 13? -> $x: ($x, size, colony) -> (Retrofits, can be sized to accommodate, small or large colonies) -> Retrofits (2496ms) Where is South Bend? bed 0.222222222222 Where is South Bend? -> $x: (south bend, be find in, $x) -> (South Bend, was found dead in, bed) -> bed (1019ms) Where is South Bend? northern Indiana 0.111111111109 Where is South Bend? -> $x: (south bend, be locate in, $x) -> (Indiana South Bend, is located in, northern Indiana) -> northern Indiana (1019ms) Where is South Bend? Northern Indiana 0.111111111109 Where is South Bend? -> $x: (south bend, be locate in, $x) -> (South Bend, is located in, Northern Indiana) -> Northern Indiana (1019ms) Where is South Bend? South Bend 0.111111111109 Where is South Bend? -> $x: (south bend, be locate in, $x) -> (46634-7111 IU South Bend, is located in, South Bend) -> South Bend (1019ms) Where is South Bend? St 0.111111111109 Where is South Bend? -> $x: (south bend, be locate in, $x) -> (INTRODUCTION South Bend, is located in, St) -> St (1019ms) Where is South Bend? Indiana 0.111111111109 Where is South Bend? -> $x: (south bend, be locate in, $x) -> (Indiana University-South Bend, is located in, Indiana) -> Indiana (1019ms) Where is South Bend? ads -0.0 Where is South Bend? -> $x: ($x, go, south bend) -> (ads, are going up in, South Bend) -> ads (1445ms) Where is South Bend? Cheers -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Cheers, Contained by, South Bend) -> Cheers (3908ms) Where is South Bend? Benny -0.0 Where is South Bend? -> $x: ($x, go, south bend) -> (Benny, were going into, South Bend) -> Benny (3913ms) Where is South Bend? 2008 Shaw -0.0 Where is South Bend? -> $x: ($x, get, south bend) -> (2008 Shaw, got promoted to, South Bend) -> 2008 Shaw (3888ms) Where is South Bend? First Source Center -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (First Source Center, Contained by, South Bend) -> First Source Center (3888ms) Where is South Bend? boy -0.0 Where is South Bend? -> $x: ($x, kill, south bend) -> (boy, killed in, crash file lawsuit South Bend) -> boy (3882ms) Where is South Bend? Cass County, MI HUD Metro FMR Area -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Cass County, MI HUD Metro FMR Area, Contained by, South Bend-Mishawaka, IN-MI Metropolitan Statistical Area) -> Cass County, MI HUD Metro FMR Area (3882ms) Where is South Bend? South Shore -0.0 Where is South Bend? -> $x: ($x, go, south bend) -> (South Shore, went to, South Bend) -> South Shore (3888ms) Where is South Bend? course -0.0 Where is South Bend? -> $x: ($x, help, south bend) -> (course, had been helping, these South Bend kids) -> course (3903ms) Where is South Bend? Miami -0.0 Where is South Bend? -> $x: ($x, go, south bend) -> (Miami, went to, South Bend) -> Miami (3893ms) Where is South Bend? Louisiana -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Louisiana, Contains, South Bend) -> Louisiana (3882ms) Where is South Bend? counselors -0.0 Where is South Bend? -> $x: ($x, get, south bend) -> (counselors, get at, invaluable dating South Bend procedures) -> counselors (3882ms) Where is South Bend? two -0.0 Where is South Bend? -> $x: ($x, help, south bend) -> (two, helped, South Bend) -> two (1205ms) Where is South Bend? the Home Builder -0.0 Where is South Bend? -> $x: (south bend, do, $x) -> (SOUTH BEND, Does, the Home Builder) -> the Home Builder (3903ms) Where is South Bend? Trinity School at Greenlawn -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Trinity School at Greenlawn, Contained by, South Bend) -> Trinity School at Greenlawn (3903ms) Where is South Bend? John Allison -0.0 Where is South Bend? -> $x: ($x, go, south bend) -> (John Allison, went to, South Bend Wednesday evening) -> John Allison (3908ms) Where is South Bend? private companies -0.0 Where is South Bend? -> $x: (south bend, do, $x) -> (South Bend, is done by, private companies) -> private companies (3180ms) Where is South Bend? a wonderful articl e -0.0 Where is South Bend? -> $x: (south bend, do, $x) -> (the South Bend Tribune, did, a wonderful articl e) -> a wonderful articl e (3898ms) Where is South Bend? Robert J. Fischgrund Center for the Performing Arts -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Robert J. Fischgrund Center for the Performing Arts, Contained by, South Bend) -> Robert J. Fischgrund Center for the Performing Arts (3882ms) Where is South Bend? Joseph D. Oliver House -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Joseph D. Oliver House, Contained by, South Bend) -> Joseph D. Oliver House (2896ms) Where is South Bend? K. C. DeRhodes House -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (K. C. DeRhodes House, Contained by, South Bend) -> K. C. DeRhodes House (2086ms) Where is South Bend? Mendoza College of Business -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Mendoza College of Business, Contained by, South Bend) -> Mendoza College of Business (3822ms) Where is South Bend? Arkansas -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Arkansas, Contains, South Bend) -> Arkansas (3296ms) Where is South Bend? Armstrong County -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Armstrong County, Contains, South Bend) -> Armstrong County (3769ms) Where is South Bend? anyone else surprised Skip Holtz and USF -0.0 Where is South Bend? -> $x: ($x, go, south bend) -> (anyone else surprised Skip Holtz and USF, went into, South Bend) -> anyone else surprised Skip Holtz and USF (3893ms) Where is South Bend? open-mindedness -0.0 Where is South Bend? -> $x: (south bend, have history of, $x) -> (South Bend, has a long history of, open-mindedness) -> open-mindedness (3912ms) Where is South Bend? 29 / -0.0 Where is South Bend? -> $x: ($x, go, south bend) -> (29 /, Go, FishIN /South Bend Apr) -> 29 / (3893ms) Where is South Bend? the rankings -0.0 Where is South Bend? -> $x: (south bend, do, $x) -> (South Bend, had done so well in, the rankings) -> the rankings (3180ms) Where is South Bend? Vernon Parish -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Vernon Parish, Contains, South Toledo Bend State Park) -> Vernon Parish (2035ms) Where is South Bend? Jochum -0.0 Where is South Bend? -> $x: ($x, produce, south bend) -> (Jochum, produced solid performances for, South Bend) -> Jochum (1601ms) Where is South Bend? the Irish -0.0 Where is South Bend? -> $x: (south bend, do, $x) -> (South Bend, so did, the Irish) -> the Irish (3882ms) Where is South Bend? The Bears -0.0 Where is South Bend? -> $x: ($x, do, south bend) -> (The Bears, did fly to, South Bend) -> The Bears (3908ms) Where is South Bend? Simeri's Old Town Tap -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Simeri's Old Town Tap, Contained by, South Bend) -> Simeri's Old Town Tap (3898ms) Where is South Bend? Low-income families -0.0 Where is South Bend? -> $x: ($x, help, south bend) -> (Low-income families, can seek help from, the South Bend office) -> Low-income families (1205ms) Where is South Bend? the latter -0.0 Where is South Bend? -> $x: (south bend, do, $x) -> (South Bend schools, will do, the latter) -> the latter (3893ms) Where is South Bend? Colfax Cultural Center -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Colfax Cultural Center, Contained by, South Bend) -> Colfax Cultural Center (2896ms) Where is South Bend? 76481 -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (76481, Contains, South Bend, Texas) -> 76481 (3180ms) Where is South Bend? West Washington Historic District -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (West Washington Historic District, Contained by, South Bend) -> West Washington Historic District (3296ms) Where is South Bend? Mishawaka -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Mishawaka, Contains, Regency Beauty Institute-South Bend) -> Mishawaka (3898ms) Where is South Bend? Maine -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Maine, Contains, South West Bend) -> Maine (3898ms) Where is South Bend? Young County -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Young County, Contains, South Bend) -> Young County (3908ms) Where is South Bend? Radio ? -0.0 Where is South Bend? -> $x: ($x, get, south bend) -> (Radio ?, Get, Radio Jobs | South Bend) -> Radio ? (3768ms) Where is South Bend? God -0.0 Where is South Bend? -> $x: ($x, do, south bend) -> (God, is doing some crazy stuff in, South Bend) -> God (3912ms) Where is South Bend? Kansas -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Kansas, Contains, South Bend Township) -> Kansas (3882ms) Where is South Bend? the team -0.0 Where is South Bend? -> $x: ($x, do, south bend) -> (the team, has done in, South Bend) -> the team (1601ms) Where is South Bend? John BARNHISEL -0.0 Where is South Bend? -> $x: ($x, go, south bend) -> (John BARNHISEL, went to, South Bend) -> John BARNHISEL (1445ms) Where is South Bend? time -0.0 Where is South Bend? -> $x: ($x, get, south bend) -> (time, try to get to, South Bend) -> time (3903ms) Where is South Bend? Pacific County -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Pacific County, Contains, South Bend) -> Pacific County (2896ms) Where is South Bend? a New Year -0.0 Where is South Bend? -> $x: (south bend, do, $x) -> (South Bend Tribune Staff Writer CINCINNATI, Does, a New Year) -> a New Year (3888ms) Where is South Bend? A homeless man -0.0 Where is South Bend? -> $x: ($x, find, south bend) -> (A homeless man, was found on, a vacant property in South Bend) -> A homeless man (2896ms) Where is South Bend? one team -0.0 Where is South Bend? -> $x: ($x, help, south bend) -> (one team, will help, South Bend?s Center) -> one team (1205ms) Where is South Bend? Te -0.0 Where is South Bend? -> $x: ($x, do, south bend) -> (Te, did finally get to, South Bend) -> Te (3903ms) Where is South Bend? Wiseguys -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Wiseguys, Contained by, South Bend) -> Wiseguys (3179ms) Where is South Bend? Jacob SNEARLY -0.0 Where is South Bend? -> $x: ($x, go, south bend) -> (Jacob SNEARLY, went to, South Bend Wednesday) -> Jacob SNEARLY (1445ms) Where is South Bend? the ball -0.0 Where is South Bend? -> $x: ($x, do, south bend) -> (the ball, does still exist in, South Bend) -> the ball (1205ms) Where is South Bend? St. Joseph County -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (St. Joseph County, Contains, South Bend) -> St. Joseph County (3903ms) Where is South Bend? Neal -0.0 Where is South Bend? -> $x: ($x, go, south bend) -> (Neal, will be able to go to, South Bend) -> Neal (1445ms) Where is South Bend? Cass County -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Cass County, Contains, South Bend) -> Cass County (3296ms) Where is South Bend? cell phones -0.0 Where is South Bend? -> $x: (south bend, have use of, $x) -> (South Bend, has banned the use of, cell phones) -> cell phones (3898ms) Where is South Bend? January 9 , 1906 Mrs. John BRYANT -0.0 Where is South Bend? -> $x: ($x, go, south bend) -> (January 9 , 1906 Mrs. John BRYANT, went to, South Bend) -> January 9 , 1906 Mrs. John BRYANT (1601ms) Where is South Bend? The Diabetes Resource Center -0.0 Where is South Bend? -> $x: ($x, event, south bend) -> (The Diabetes Resource Center, held an event at, South Bend) -> The Diabetes Resource Center (3908ms) Where is South Bend? the Michigan Street exit -0.0 Where is South Bend? -> $x: ($x, go, south bend) -> (the Michigan Street exit, go north into, South Bend) -> the Michigan Street exit (3893ms) Where is South Bend? Brown Mackie College - South Bend -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Brown Mackie College - South Bend, Contained by, South Bend) -> Brown Mackie College - South Bend (3912ms) Where is South Bend? Pacific County Courthouse -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Pacific County Courthouse, Contained by, South Bend) -> Pacific County Courthouse (3888ms) Where is South Bend? Weis -0.0 Where is South Bend? -> $x: ($x, get, south bend) -> (Weis, got to, South Bend) -> Weis (3296ms) Where is South Bend? Newton County -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Newton County, Contains, South Toledo Bend) -> Newton County (2035ms) Where is South Bend? the place -0.0 Where is South Bend? -> $x: (south bend, do, $x) -> (South Bend, does n?t seem like, the place) -> the place (3898ms) Where is South Bend? Rockne -0.0 Where is South Bend? -> $x: ($x, fight, south bend) -> (Rockne, also fought semi-professionally in, South Bend) -> Rockne (3912ms) Where is South Bend? Merrimans' Playhouse -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Merrimans' Playhouse, Contained by, South Bend) -> Merrimans' Playhouse (3768ms) Where is South Bend? rail spurs -0.0 Where is South Bend? -> $x: ($x, go, south bend) -> (rail spurs, go as far away as, South Bend) -> rail spurs (1601ms) Where is South Bend? Lumber Exchange Building -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Lumber Exchange Building, Contained by, South Bend) -> Lumber Exchange Building (3903ms) Where is South Bend? the Michigan Southern -0.0 Where is South Bend? -> $x: ($x, found, south bend) -> (the Michigan Southern, found, a South Bend investor) -> the Michigan Southern (3898ms) Where is South Bend? South Bend Museum of Art -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (South Bend Museum of Art, Contained by, South Bend) -> South Bend Museum of Art (2035ms) Where is South Bend? Lou -0.0 Where is South Bend? -> $x: ($x, establish, south bend) -> (Lou, established permanent residence in, South Bend) -> Lou (3912ms) Where is South Bend? United States of America -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (United States of America, Contains, ITT Technical Institute-South Bend) -> United States of America (3912ms) Where is South Bend? the Arts -0.0 Where is South Bend? -> $x: ($x, help, south bend) -> (the Arts, helped organize, the two IU South Bend Piano Festivals) -> the Arts (3882ms) Where is South Bend? Jetty Mooney -0.0 Where is South Bend? -> $x: ($x, do, south bend) -> (Jetty Mooney, did likewise for, South Bend) -> Jetty Mooney (3888ms) Where is South Bend? Morse -0.0 Where is South Bend? -> $x: (south bend, do, $x) -> (the South Bend Branch, was all done by, Morse) -> Morse (3179ms) Where is South Bend? the A.A. -0.0 Where is South Bend? -> $x: ($x, establish, south bend) -> (the A.A., was established in, South Bend) -> the A.A. (3888ms) Where is South Bend? Barton County -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Barton County, Contains, South Bend Township) -> Barton County (3908ms) Where is South Bend? Charlie Weis -0.0 Where is South Bend? -> $x: ($x, do, south bend) -> (Charlie Weis, is really doing an incredible job in, South Bend) -> Charlie Weis (1601ms) Where is South Bend? Morris Performing Arts Center -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Morris Performing Arts Center, Contained by, South Bend) -> Morris Performing Arts Center (2035ms) Where is South Bend? Area code 574 -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Area code 574, Contains, South Bend) -> Area code 574 (3908ms) Where is South Bend? South Bend-Mishawaka, IN HUD Metro FMR Area -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (South Bend-Mishawaka, IN HUD Metro FMR Area, Contained by, South Bend-Mishawaka, IN-MI Metropolitan Statistical Area) -> South Bend-Mishawaka, IN HUD Metro FMR Area (3903ms) Where is South Bend? ITT Technical Institute-South Bend -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (ITT Technical Institute-South Bend, Contained by, South Bend) -> ITT Technical Institute-South Bend (2086ms) Where is South Bend? Texas -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Texas, Contains, South Bend) -> Texas (3822ms) Where is South Bend? Brey -0.0 Where is South Bend? -> $x: ($x, do, south bend) -> (Brey, is doing in, South Bend) -> Brey (1019ms) Where is South Bend? Brian Kelly -0.0 Where is South Bend? -> $x: ($x, get, south bend) -> (Brian Kelly, got to, South Bend) -> Brian Kelly (3898ms) Where is South Bend? La Salle Street Bridge -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (La Salle Street Bridge, Contained by, South Bend) -> La Salle Street Bridge (3822ms) Where is South Bend? poor legal advice -0.0 Where is South Bend? -> $x: (south bend, do, $x) -> (South Bend Tribune Writer NILES ?, Did, poor legal advice) -> poor legal advice (3908ms) Where is South Bend? Androscoggin County -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Androscoggin County, Contains, South West Bend) -> Androscoggin County (3912ms) Where is South Bend? Blue Earth County -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Blue Earth County, Contains, South Bend Township) -> Blue Earth County (3908ms) Where is South Bend? search jobs -0.0 Where is South Bend? -> $x: ($x, find, south bend) -> (search jobs, find jobs with, South Bend employers and recruiters) -> search jobs (3882ms) Where is South Bend? Taylor -0.0 Where is South Bend? -> $x: ($x, go, south bend) -> (Taylor, will go to, South Bend) -> Taylor (3888ms) Where is South Bend? God Exist? -0.0 Where is South Bend? -> $x: (south bend, do, $x) -> (South Bend, Does, God Exist?) -> God Exist? (3822ms) Where is South Bend? Kiel -0.0 Where is South Bend? -> $x: ($x, enroll, south bend) -> (Kiel, is expected to enroll in, South Bend) -> Kiel (3903ms) Where is South Bend? Club Landing -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Club Landing, Contained by, South Bend) -> Club Landing (3296ms) Where is South Bend? Minnesota -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Minnesota, Contains, South Bend Township) -> Minnesota (3822ms) Where is South Bend? rooms -0.0 Where is South Bend? -> $x: ($x, find, south bend) -> (rooms, are VERY hard to find in, South Bend) -> rooms (3893ms) Where is South Bend? fall -0.0 Where is South Bend? -> $x: ($x, go, south bend) -> (fall, is going on here in, South Bend) -> fall (3888ms) Where is South Bend? Washington -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Washington, Contains, South Bend) -> Washington (3822ms) Where is South Bend? Quincy's Cafe and Espresso -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Quincy's Cafe and Espresso, Contained by, South Bend) -> Quincy's Cafe and Espresso (3180ms) Where is South Bend? the clutch -0.0 Where is South Bend? -> $x: ($x, replace, south bend) -> (the clutch, has been replaced with, a South Bend unit) -> the clutch (1445ms) Where is South Bend? the Falcons -0.0 Where is South Bend? -> $x: ($x, go, south bend) -> (the Falcons, went into to, South Bend) -> the Falcons (3888ms) Where is South Bend? The other , Ty Willingham -0.0 Where is South Bend? -> $x: ($x, hate, south bend) -> (The other , Ty Willingham, hated living in, South Bend) -> The other , Ty Willingham (3822ms) Where is South Bend? Nebraska -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Nebraska, Contains, South Bend) -> Nebraska (2896ms) Where is South Bend? Cad CLARK -0.0 Where is South Bend? -> $x: ($x, go, south bend) -> (Cad CLARK, went to, South Bend Friday) -> Cad CLARK (1601ms) Where is South Bend? Lonoke County -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Lonoke County, Contains, South Bend) -> Lonoke County (3296ms) Where is South Bend? Riley -0.0 Where is South Bend? -> $x: ($x, found, south bend) -> (Riley, found his way to, South Bend) -> Riley (3882ms) Where is South Bend? Palais Royale Building -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Palais Royale Building, Contained by, South Bend) -> Palais Royale Building (3769ms) Where is South Bend? the final assembly and installation -0.0 Where is South Bend? -> $x: (south bend, do, $x) -> (South Bend, did, the final assembly and installation) -> the final assembly and installation (3893ms) Where is South Bend? St. Mary Parish -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (St. Mary Parish, Contains, South Bend) -> St. Mary Parish (2896ms) Where is South Bend? Potawatomi Zoo -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Potawatomi Zoo, Contained by, South Bend) -> Potawatomi Zoo (3888ms) Where is South Bend? South Bend Public Transportation Corporation -0.0 Where is South Bend? -> $x: ($x, find, south bend) -> (South Bend Public Transportation Corporation, can be found on Wikipedia at, http://en.wikipedia.org/wiki/South%20Bend%20TRANSPO) -> South Bend Public Transportation Corporation (3893ms) Where is South Bend? Michigan -0.0 Where is South Bend? -> $x: (south bend, do, $x) -> (South Bend, had everything to do with, Michigan) -> Michigan (3888ms) Where is South Bend? Minneopa State Park -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Minneopa State Park, Contained by, South Bend Township) -> Minneopa State Park (2086ms) Where is South Bend? Pennsylvania -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Pennsylvania, Contains, South Bend) -> Pennsylvania (3898ms) Where is South Bend? the best talent -0.0 Where is South Bend? -> $x: ($x, find, south bend) -> (the best talent, found nationwide to, South Bend) -> the best talent (3908ms) Where is South Bend? Notre Dame -0.0 Where is South Bend? -> $x: ($x, event, south bend) -> (Notre Dame, attended the event in, South Bend) -> Notre Dame (3893ms) Where is South Bend? 46628 -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (46628, Contains, South Bend) -> 46628 (3898ms) Where is South Bend? Fiddler's Hearth -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Fiddler's Hearth, Contained by, South Bend) -> Fiddler's Hearth (3898ms) Where is South Bend? South Bend Civic Theatre -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (South Bend Civic Theatre, Contained by, South Bend) -> South Bend Civic Theatre (3823ms) Where is South Bend? Red K. -0.0 Where is South Bend? -> $x: ($x, get, south bend) -> (Red K., got sober in, South Bend) -> Red K. (3912ms) Where is South Bend? The Wildcats -0.0 Where is South Bend? -> $x: ($x, go, south bend) -> (The Wildcats, go to, South Bend) -> The Wildcats (3912ms) Where is South Bend? Stanley Coveleski Regional Stadium -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Stanley Coveleski Regional Stadium, Contained by, South Bend) -> Stanley Coveleski Regional Stadium (2035ms) Where is South Bend? South Bend Regional Airport -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (South Bend Regional Airport, Contained by, South Bend) -> South Bend Regional Airport (3893ms) Where is South Bend? Elks Lodge 235 -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Elks Lodge 235, Contained by, South Bend) -> Elks Lodge 235 (3888ms) Where is South Bend? the human family-are -0.0 Where is South Bend? -> $x: ($x, happen in, south bend) -> (the human family-are, will happen in, South Bend) -> the human family-are (3898ms) Where is South Bend? George O'Neil -0.0 Where is South Bend? -> $x: ($x, design, south bend) -> (George O'Neil, Golf Courses Designed, South Bend Golf Course) -> George O'Neil (3908ms) Where is South Bend? viewers -0.0 Where is South Bend? -> $x: ($x, found, south bend) -> (viewers, will find the histories of, IU South Bend) -> viewers (3908ms) Where is South Bend? College Football Hall of Fame -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (College Football Hall of Fame, Contained by, South Bend) -> College Football Hall of Fame (3768ms) Where is South Bend? The next challenge -0.0 Where is South Bend? -> $x: ($x, happen in, south bend) -> (The next challenge, will happen right here in, South Bend) -> The next challenge (3296ms) Where is South Bend? DeBartolo Performing Arts Center -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (DeBartolo Performing Arts Center, Contained by, South Bend) -> DeBartolo Performing Arts Center (2896ms) Where is South Bend? St. Patrick's County Park -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (St. Patrick's County Park, Contained by, South Bend) -> St. Patrick's County Park (3893ms) Where is South Bend? Advertising Art -0.0 Where is South Bend? -> $x: ($x, go, south bend) -> (Advertising Art, had gone to, South Bend Business College) -> Advertising Art (3908ms) Where is South Bend? Clayton County -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Clayton County, Contains, South Bend) -> Clayton County (3888ms) Where is South Bend? The League -0.0 Where is South Bend? -> $x: ($x, help, south bend) -> (The League, looks forward to helping, South Bend move) -> The League (3893ms) Where is South Bend? South Bend Silverhawks -0.0 Where is South Bend? -> $x: ($x, find, south bend) -> (South Bend Silverhawks, can be found on Wikipedia at, http://en.wikipedia.org/wiki/South%20Bend%20Silver%20Hawks) -> South Bend Silverhawks (3908ms) Where is South Bend? students and colleagues -0.0 Where is South Bend? -> $x: ($x, find, south bend) -> (students and colleagues, found at, IU South Bend) -> students and colleagues (3888ms) Where is South Bend? Ivy Tech Community College-Northcentral -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Ivy Tech Community College-Northcentral, Contained by, South Bend) -> Ivy Tech Community College-Northcentral (3903ms) Where is South Bend? Tippecanoe Place -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Tippecanoe Place, Contained by, South Bend) -> Tippecanoe Place (3903ms) Where is South Bend? Indiana University South Bend -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Indiana University South Bend, Contained by, South Bend) -> Indiana University South Bend (3768ms) Where is South Bend? Club Fever -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Club Fever, Contained by, South Bend) -> Club Fever (3768ms) Where is South Bend? Property -0.0 Where is South Bend? -> $x: ($x, surround, south bend) -> (Property, surrounds, South Bend Cemetery) -> Property (3903ms) Where is South Bend? 114 listings -0.0 Where is South Bend? -> $x: ($x, find, south bend) -> (114 listings, were found in, the South Bend) -> 114 listings (3888ms) Where is South Bend? St Joseph County 4-H Fair Inc -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (St Joseph County 4-H Fair Inc, Contained by, South Bend) -> St Joseph County 4-H Fair Inc (3903ms) Where is South Bend? the summer league kids -0.0 Where is South Bend? -> $x: ($x, go, south bend) -> (the summer league kids, will have to go to, South Bend) -> the summer league kids (1601ms) Where is South Bend? Georgia -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Georgia, Contains, South Bend) -> Georgia (2086ms) Where is South Bend? Chicago South Shore and South Bend Railroad -0.0 Where is South Bend? -> $x: ($x, found, south bend) -> (Chicago South Shore and South Bend Railroad, can be found on Wikipedia at, http://en.wikipedia.org/wiki/Chicago%20SouthShore%20and%20South%20Bend%20Railroad) -> Chicago South Shore and South Bend Railroad (3903ms) Where is South Bend? South Bend-Mishawaka, IN-MI Metropolitan Statistical Area -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (South Bend-Mishawaka, IN-MI Metropolitan Statistical Area, Contains, South Bend-Mishawaka, IN HUD Metro FMR Area) -> South Bend-Mishawaka, IN-MI Metropolitan Statistical Area (3912ms) Where is South Bend? Century Center Convention Center -0.0 Where is South Bend? -> $x: ($x, contain, south bend) -> (Century Center Convention Center, Contained by, South Bend) -> Century Center Convention Center (3882ms) Where is South Bend? the Second Annual Meeting -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (the Second Annual Meeting, was held in, South Bend) -> the Second Annual Meeting (3921ms) Where is South Bend? Ashton Lundeby -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (Ashton Lundeby, was sentenced in, South Bend) -> Ashton Lundeby (3933ms) Where is South Bend? the USA -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (the USA, is based in, South Bend) -> the USA (3933ms) Where is South Bend? Owner and photographer Joshua Myers -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (Owner and photographer Joshua Myers, is based in, South Bend) -> Owner and photographer Joshua Myers (3925ms) Where is South Bend? a poor Irish immigrant of 1928 -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (a poor Irish immigrant of 1928, was ordained in, South Bend) -> a poor Irish immigrant of 1928 (3933ms) Where is South Bend? Heckathorn -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (Heckathorn, was born in, South Bend) -> Heckathorn (3921ms) Where is South Bend? THE KIRGIZ LAW ! ?Our company -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (THE KIRGIZ LAW ! ?Our company, is registered in, South Bend) -> THE KIRGIZ LAW ! ?Our company (3925ms) Where is South Bend? the Dons bench -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (the Dons bench, was in, South Bend) -> the Dons bench (3912ms) Where is South Bend? Harriet Foster -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (Harriet Foster, was raised in, South bend) -> Harriet Foster (3925ms) Where is South Bend? Jones-Young -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (Jones-Young, was born in, South Bend) -> Jones-Young (3917ms) Where is South Bend? the student -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (the student, is in, South Bend) -> the student (3940ms) Where is South Bend? five games -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (five games, would be played in, South Bend) -> five games (3917ms) Where is South Bend? Buttigieg -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (Buttigieg, was born in, South Bend) -> Buttigieg (3921ms) Where is South Bend? Dad -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (Dad, was a CPA in, South Bend) -> Dad (3933ms) Where is South Bend? Fame -0.111111111111 Where is South Bend? -> $x: ($x, be located in, south bend) -> (Fame, is currently located in, South Bend) -> Fame (3940ms) Where is South Bend? campus -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (campus, is in, South Bend) -> campus (3936ms) Where is South Bend? The deceased -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (The deceased, was born in, South Bend) -> The deceased (3929ms) Where is South Bend? THE AUTHOR Carlos Miller -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (THE AUTHOR Carlos Miller, was born in, South Bend) -> THE AUTHOR Carlos Miller (3933ms) Where is South Bend? Michiana Regional Airport -0.111111111111 Where is South Bend? -> $x: ($x, be located in, south bend) -> (Michiana Regional Airport, is located in, South Bend) -> Michiana Regional Airport (3925ms) Where is South Bend? The Pacific County capitol -0.111111111111 Where is South Bend? -> $x: ($x, be located in, south bend) -> (The Pacific County capitol, is located in, South Bend) -> The Pacific County capitol (3936ms) Where is South Bend? KEYS.? Gerstenkorn -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (KEYS.? Gerstenkorn, was born in, South Bend) -> KEYS.? Gerstenkorn (3936ms) Where is South Bend? The office -0.111111111111 Where is South Bend? -> $x: ($x, be located in, south bend) -> (The office, is located in, South Bend Indiana) -> The office (3943ms) Where is South Bend? Ken M. -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (Ken M., had been in, South Bend) -> Ken M. (3925ms) Where is South Bend? Carleton Inc. corporate offices -0.111111111111 Where is South Bend? -> $x: ($x, be located in, south bend) -> (Carleton Inc. corporate offices, are located in, South Bend) -> Carleton Inc. corporate offices (3929ms) Where is South Bend? Bruce Taylor Bruce Taylor -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (Bruce Taylor Bruce Taylor, was born in, South Bend) -> Bruce Taylor Bruce Taylor (3917ms) Where is South Bend? the oliver inn bed & breakfast -0.111111111111 Where is South Bend? -> $x: ($x, be located in, south bend) -> (the oliver inn bed & breakfast, is located in, south bend) -> the oliver inn bed & breakfast (3940ms) Where is South Bend? The big men -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (The big men, were a presence in, South Bend) -> The big men (3929ms) Where is South Bend? Burial -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (Burial, will be in, South Bend) -> Burial (3936ms) Where is South Bend? access Big Rock Valley -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (access Big Rock Valley, are in, South Bend) -> access Big Rock Valley (3921ms) Where is South Bend? the echoes -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (the echoes, are waking in, South Bend) -> the echoes (3933ms) Where is South Bend? Fat Tuesday -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (Fat Tuesday, is also celebrated in, South Bend) -> Fat Tuesday (3925ms) Where is South Bend? THE OLIVE BRANCH REMEDY COMPANY -0.111111111111 Where is South Bend? -> $x: ($x, be located in, south bend) -> (THE OLIVE BRANCH REMEDY COMPANY, was located in, SOUTH BEND) -> THE OLIVE BRANCH REMEDY COMPANY (3936ms) Where is South Bend? Notre Dame Law School -0.111111111111 Where is South Bend? -> $x: ($x, be located in, south bend) -> (Notre Dame Law School, is located in, South Bend) -> Notre Dame Law School (3940ms) Where is South Bend? MOM -0.111111111111 Where is South Bend? -> $x: ($x, be located in, south bend) -> (MOM, was located in, South Bend) -> MOM (3917ms) Where is South Bend? volunteers -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (volunteers, were in, South Bend) -> volunteers (3936ms) Where is South Bend? votes -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (votes, were cast in, South Bend) -> votes (3925ms) Where is South Bend? Saint Joseph -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (Saint Joseph, is a hospital in the city, SOUTH BEND) -> Saint Joseph (3929ms) Where is South Bend? Shipka and Pozzi -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (Shipka and Pozzi, were in, South Bend) -> Shipka and Pozzi (3925ms) Where is South Bend? the Studebaker company -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (the Studebaker company, was founded in, South Bend) -> the Studebaker company (3917ms) Where is South Bend? High speed DSL internet service -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (High speed DSL internet service, is available in, South Bend) -> High speed DSL internet service (3936ms) Where is South Bend? Mike Heuerman -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (Mike Heuerman, is currently in, South Bend) -> Mike Heuerman (3943ms) Where is South Bend? The hall -0.111111111111 Where is South Bend? -> $x: ($x, be located in, south bend) -> (The hall, is located in, South Bend) -> The hall (3940ms) Where is South Bend? The funeral services -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (The funeral services, will be held in, South Bend) -> The funeral services (3921ms) Where is South Bend? The ballroom -0.111111111111 Where is South Bend? -> $x: ($x, be located in, south bend) -> (The ballroom, is located in, South Bend) -> The ballroom (3933ms) Where is South Bend? Kleinow -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (Kleinow, was born in, South Bend) -> Kleinow (3921ms) Where is South Bend? Work -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (Work, will be performed in, South Bend) -> Work (3933ms) Where is South Bend? Kenneth Rexroth -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (Kenneth Rexroth, was born in, South Bend) -> Kenneth Rexroth (3929ms) Where is South Bend? BKR Studio -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (BKR Studio, is based in, South Bend) -> BKR Studio (3925ms) Where is South Bend? The Econo Lodge Airport -0.111111111111 Where is South Bend? -> $x: ($x, be located in, south bend) -> (The Econo Lodge Airport, is located in, South Bend) -> The Econo Lodge Airport (3921ms) Where is South Bend? Susan Choi -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (Susan Choi, was born in, South Bend) -> Susan Choi (3940ms) Where is South Bend? Hillary Clinton -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (Hillary Clinton, is in, South Bend) -> Hillary Clinton (3943ms) Where is South Bend? White Water Rafting -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (White Water Rafting, is in, South Bend) -> White Water Rafting (3917ms) Where is South Bend? Funeral services -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (Funeral services, were held in, South Bend) -> Funeral services (3921ms) Where is South Bend? Bob Golic -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (Bob Golic, was in, South Bend) -> Bob Golic (3921ms) Where is South Bend? Oliver -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (Oliver, was in, South Bend) -> Oliver (3929ms) Where is South Bend? Women Faculty ?Our campus -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (Women Faculty ?Our campus, is in, South Bend) -> Women Faculty ?Our campus (3936ms) Where is South Bend? Policinski -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (Policinski, was born in, South Bend) -> Policinski (3940ms) Where is South Bend? the phone -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (the phone, was being used in, South Bend) -> the phone (3940ms) Where is South Bend? Northwestern University Pat Fitzgerald -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (Northwestern University Pat Fitzgerald, will be in, South Bend) -> Northwestern University Pat Fitzgerald (3925ms) Where is South Bend? the local area mail operation -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (the local area mail operation, are stationed in, South Bend) -> the local area mail operation (3940ms) Where is South Bend? data center -0.111111111111 Where is South Bend? -> $x: ($x, be located in, south bend) -> (data center, is located in, South Bend) -> data center (3917ms) Where is South Bend? Craig Counsell -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (Craig Counsell, was originally born in, South Bend) -> Craig Counsell (3921ms) Where is South Bend? Notre-Dame -0.111111111111 Where is South Bend? -> $x: ($x, be the home of, south bend) -> (Notre-Dame, is the home city of the sports team, SOUTH BEND) -> Notre-Dame (3933ms) Where is South Bend? The game -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (The game, is in, South Bend) -> The game (3936ms) Where is South Bend? Funeral -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (Funeral, was in, South Bend) -> Funeral (3929ms) Where is South Bend? 46634-7111 IU South Bend -0.111111111111 Where is South Bend? -> $x: ($x, be located in, south bend) -> (46634-7111 IU South Bend, is located in, South Bend) -> 46634-7111 IU South Bend (3940ms) Where is South Bend? an American automobile brand -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (an American automobile brand, is based in, South Bend) -> an American automobile brand (3917ms) Where is South Bend? Carroll -0.111111111111 Where is South Bend? -> $x: ($x, cause, south bend) -> (Carroll, had caused previous stirs on, the South Bend Tribune) -> Carroll (3940ms) Where is South Bend? The school -0.111111111111 Where is South Bend? -> $x: ($x, be located in, south bend) -> (The school, is located in, South Bend) -> The school (3933ms) Where is South Bend? The Foundation -0.111111111111 Where is South Bend? -> $x: ($x, be located in, south bend) -> (The Foundation, is located in, South Bend) -> The Foundation (3936ms) Where is South Bend? The studio -0.111111111111 Where is South Bend? -> $x: ($x, be located in, south bend) -> (The studio, is located in, South Bend) -> The studio (3940ms) Where is South Bend? Bill Cavanaugh -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (Bill Cavanaugh, is speaking here in, South Bend) -> Bill Cavanaugh (3917ms) Where is South Bend? Raymond Loewy ? -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (Raymond Loewy ?, was down in, South Bend) -> Raymond Loewy ? (3925ms) Where is South Bend? Voss -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (Voss, was born in, South Bend) -> Voss (3933ms) Where is South Bend? Press Ganey?s main headquarters -0.111111111111 Where is South Bend? -> $x: ($x, be located in, south bend) -> (Press Ganey?s main headquarters, are located in, South Bend) -> Press Ganey?s main headquarters (3925ms) Where is South Bend? Sollmann -0.111111111111 Where is South Bend? -> $x: ($x, be name of, south bend) -> (Sollmann, was named MVP of, the South Bend Regional) -> Sollmann (3921ms) Where is South Bend? Fox -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (Fox, was born in, South Bend) -> Fox (3929ms) Where is South Bend? the game -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (the game, had been played in, south bend) -> the game (3929ms) Where is South Bend? Notre Dame University -0.111111111111 Where is South Bend? -> $x: ($x, be located in, south bend) -> (Notre Dame University, is located in, South Bend) -> Notre Dame University (3933ms) Where is South Bend? The Hall -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (The Hall, has been located in, South Bend) -> The Hall (3929ms) Where is South Bend? Natre Dame -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (Natre Dame, is in, South Bend) -> Natre Dame (3921ms) Where is South Bend? Studebaker -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (Studebaker, was based in, South Bend) -> Studebaker (3925ms) Where is South Bend? the Catholic Charismatic Renewal -0.111111111111 Where is South Bend? -> $x: ($x, be located in, south bend) -> (the Catholic Charismatic Renewal, is located in, South Bend) -> the Catholic Charismatic Renewal (3936ms) Where is South Bend? a 55,000-square-foot facility -0.111111111111 Where is South Bend? -> $x: ($x, be located in, south bend) -> (a 55,000-square-foot facility, is located in, South Bend) -> a 55,000-square-foot facility (3917ms) Where is South Bend? fame -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (fame, is in, South Bend) -> fame (3940ms) Where is South Bend? The Quality Inn University -0.111111111111 Where is South Bend? -> $x: ($x, be located in, south bend) -> (The Quality Inn University, is located in, South Bend) -> The Quality Inn University (3940ms) Where is South Bend? FREE GEEK MICHIANA -0.111111111111 Where is South Bend? -> $x: ($x, be in, south bend) -> (FREE GEEK MICHIANA, is based in, South Bend) -> FREE GEEK MICHIANA (3936ms) Where is South Bend? the movie -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, was featured in, the movie) -> the movie (3943ms) Where is South Bend? ZEST -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (the Raymond-South Bend area, are detailed in, ZEST) -> ZEST (3943ms) Where is South Bend? the two following games -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, were a rumor in, the two following games) -> the two following games (3946ms) Where is South Bend? 1933 -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (the South Bend Symphony, was founded in, 1933) -> 1933 (3948ms) Where is South Bend? snow -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, is blanketed in, snow) -> snow (3943ms) Where is South Bend? the heart -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (Hilton South Bend hotel, is in, the heart) -> the heart (3950ms) Where is South Bend? the same way -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend Cash Advance loans, are repaid in, the same way) -> the same way (3948ms) Where is South Bend? New York -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, is now back in, New York) -> New York (3946ms) Where is South Bend? the left hand menu -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (south bend, will be posted in, the left hand menu) -> the left hand menu (3950ms) Where is South Bend? the nation -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (January 21 , 2010 South Bend, is the best city in, the nation) -> the nation (3943ms) Where is South Bend? diverse and thriving neighborhoods -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, is seen in, diverse and thriving neighborhoods) -> diverse and thriving neighborhoods (3950ms) Where is South Bend? 1877 -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, was the founding in, 1877) -> 1877 (3946ms) Where is South Bend? a successful career -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, was the latest stop in, a successful career) -> a successful career (3950ms) Where is South Bend? extreme danger -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, is believed to be in, extreme danger) -> extreme danger (3950ms) Where is South Bend? 1957. -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (The South Bend Civic Theatre, was founded in, 1957.) -> 1957. (3950ms) Where is South Bend? a pleasant setting -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, is a pleasant town in, a pleasant setting) -> a pleasant setting (3946ms) Where is South Bend? the Ivy Tech network -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, are the only ones available in, the Ivy Tech network) -> the Ivy Tech network (3946ms) Where is South Bend? history -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (Your Favorite Activities South Bend, is a city rich in, history) -> history (3948ms) Where is South Bend? culture , heritage , history and fun -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, is rich in, culture , heritage , history and fun) -> culture , heritage , history and fun (3943ms) Where is South Bend? the release -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, was n?t included in, the release) -> the release (3950ms) Where is South Bend? the invasion -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, was involved in, the invasion) -> the invasion (3948ms) Where is South Bend? the air -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend Applause, was in, the air) -> the air (3943ms) Where is South Bend? Rice Cemetery -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, was buried in, Rice Cemetery) -> Rice Cemetery (3948ms) Where is South Bend? the St Joseph County -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (the South Bend, is in, the St Joseph County) -> the St Joseph County (3950ms) Where is South Bend? charge -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, was in, charge) -> charge (3950ms) Where is South Bend? the top five -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (1937 South Bend Medical Laboratory, was rated in, the top five) -> the top five (3950ms) Where is South Bend? a three way tie -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (The IU South Bend Titans, are now in, a three way tie) -> a three way tie (3948ms) Where is South Bend? 1979 -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, was founded in, 1979) -> 1979 (3948ms) Where is South Bend? 1903 -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend Railroad, was started in, 1903) -> 1903 (3943ms) Where is South Bend? 1865 -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, was incorporated as a city in, 1865) -> 1865 (3950ms) Where is South Bend? the mid-30 -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, are expected to be in, the mid-30) -> the mid-30 (3946ms) Where is South Bend? a series -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, is displayed in, a series) -> a series (3943ms) Where is South Bend? Belfast -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (the South Bend Tribune Jackson, was born in, Belfast) -> Belfast (3948ms) Where is South Bend? the Quaker Room -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend Friends, have been worshiping in, the Quaker Room) -> the Quaker Room (3943ms) Where is South Bend? 2008 -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (IU South Bend, was formed in, 2008) -> 2008 (3946ms) Where is South Bend? the U.S. District Court -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend lawsuit, was filed in, the U.S. District Court) -> the U.S. District Court (3950ms) Where is South Bend? touch -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (one of the home buyers in South Bend, will be in, touch) -> touch (3948ms) Where is South Bend? the Eastern Standard Time Zone -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, is in, the Eastern Standard Time Zone) -> the Eastern Standard Time Zone (3950ms) Where is South Bend? the process -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (non-wing sprints South Bend Motor Speedway, is in, the process) -> the process (3948ms) Where is South Bend? Bethel Cemetery -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, was buried in, Bethel Cemetery) -> Bethel Cemetery (3943ms) Where is South Bend? products -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (The more south central bent, is also evident in, products) -> products (3953ms) Where is South Bend? the north -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, is in, the north) -> the north (3950ms) Where is South Bend? the country -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, is rising faster than anywhere else in, the country) -> the country (3952ms) Where is South Bend? tradition and rich -0.111111111112 Where is South Bend? -> $x: (south bend, be in in, $x) -> (South Bend, is rich in, tradition and rich) -> tradition and rich (3950ms) Where is South Bend? great fields -0.222222222222 Where is South Bend? -> $x: (south bend, be for, $x) -> (7/1/2012 South Bend, are known for, great fields) -> great fields (3953ms) Where is South Bend? cycling -0.222222222222 Where is South Bend? -> $x: (south bend, be for, $x) -> (South Bend, is becoming an even better place for, cycling) -> cycling (3953ms) Where is South Bend? furniture making -0.222222222222 Where is South Bend? -> $x: (south bend, be for, $x) -> (South Bend, was an excellent location for, furniture making) -> furniture making (3955ms) Where is South Bend? Friday -0.222222222222 Where is South Bend? -> $x: (south bend, be for, $x) -> (a South Bend bicycle station, is set for, Friday) -> Friday (3953ms) Where is South Bend? indiana -0.222222222222 Where is South Bend? -> $x: (south bend, be for, $x) -> (SOUTH BEND, is a proxy for, indiana) -> indiana (3955ms) Where is South Bend? four games -0.222222222222 Where is South Bend? -> $x: (south bend, be for, $x) -> (South Bend, is home for, four games) -> four games (3955ms) Where is South Bend? the Studebaker family -0.222222222222 Where is South Bend? -> $x: (south bend, be for, $x) -> (the South Bend series, was a maid for, the Studebaker family) -> the Studebaker family (3955ms) Where is South Bend? the public 's help -0.222222222222 Where is South Bend? -> $x: (south bend, be for, $x) -> (Police in South Bend, are looking for, the public 's help) -> the public 's help (3953ms) Where is South Bend? design -0.222222222222 Where is South Bend? -> $x: ($x, become of, south bend) -> (design, would become the town of, South Bend) -> design (3953ms) Where is South Bend? Heartland values -0.222222222222 Where is South Bend? -> $x: (south bend, be for, $x) -> (South Bend, could be the poster children for, Heartland values) -> Heartland values (3953ms) Where is South Bend? the project -0.222222222222 Where is South Bend? -> $x: (south bend, be for, $x) -> (South Bend, was the general contractor for, the project) -> the project (3955ms) Where is South Bend? affordable living -0.222222222222 Where is South Bend? -> $x: (south bend, be for, $x) -> (South Bend, are a great choice for, affordable living) -> affordable living (3953ms) Where is South Bend? business ? ?We -0.222222222222 Where is South Bend? -> $x: (south bend, be for, $x) -> (South Bend, is ?open for, business ? ?We) -> business ? ?We (3953ms) Where is South Bend? diving -0.222222222222 Where is South Bend? -> $x: (south bend, be for, $x) -> (South Bend, can be your first step for, diving) -> diving (3953ms) Where is South Bend? a casino -0.222222222222 Where is South Bend? -> $x: (south bend, be for, $x) -> (South Bend, is a financially risky area for, a casino) -> a casino (3955ms) Where is South Bend? a modest fee -0.222222222222 Where is South Bend? -> $x: (south bend, be for, $x) -> (South Bend, are welcome for, a modest fee) -> a modest fee (3955ms) Where is South Bend? the public -0.222222222222 Where is South Bend? -> $x: (south bend, be for, $x) -> (South Bend, are also looking for, the public) -> the public (3953ms) Where is South Bend? Carpenters -0.222222222222 Where is South Bend? -> $x: (south bend, be for, $x) -> (South Bend, is looking for, Carpenters) -> Carpenters (3953ms) Where is South Bend? a Network Development Analyst -0.222222222222 Where is South Bend? -> $x: (south bend, be for, $x) -> (South Bend, is looking for, a Network Development Analyst) -> a Network Development Analyst (3955ms) Where is South Bend? business -0.222222222222 Where is South Bend? -> $x: (south bend, be for, $x) -> (South Bend, is ?open for, business) -> business (3955ms) Where is South Bend? meetings -0.222222222222 Where is South Bend? -> $x: (south bend, be for, $x) -> (Hilton Hotel South Bend, is the premier hotel for, meetings) -> meetings (3955ms) Where is South Bend? close Your default region -0.333333333333 Where is South Bend? -> $x: ($x, be be, south bend) -> (close Your default region, is now, South Bend) -> close Your default region (3961ms) Where is South Bend? the center -0.333333333333 Where is South Bend? -> $x: ($x, be be, south bend) -> (the center, is, South Bend) -> the center (3959ms) Where is South Bend? Joseph County -0.333333333333 Where is South Bend? -> $x: ($x, be be, south bend) -> (Joseph County, is, South Bend) -> Joseph County (3960ms) Where is South Bend? research -0.333333333333 Where is South Bend? -> $x: ($x, be be, south bend) -> (research, are from, South Bend) -> research (3961ms) Where is South Bend? The largest city -0.333333333333 Where is South Bend? -> $x: ($x, be be, south bend) -> (The largest city, is, South Bend) -> The largest city (3961ms) Where is South Bend? the Clintons -0.333333333333 Where is South Bend? -> $x: ($x, be be, south bend) -> (the Clintons, were visiting, South Bend) -> the Clintons (3959ms) Where is South Bend? The Young Invincibles -0.333333333333 Where is South Bend? -> $x: ($x, be be, south bend) -> (The Young Invincibles, are visiting, South Bend) -> The Young Invincibles (3956ms) Where is South Bend? Perkins -0.333333333333 Where is South Bend? -> $x: ($x, be be, south bend) -> (Perkins, is from, South Bend) -> Perkins (3959ms) Where is South Bend? The body -0.333333333333 Where is South Bend? -> $x: ($x, be be, south bend) -> (The body, was taken to, South Bend) -> The body (3956ms) Where is South Bend? Ivah Ellen Pickard -0.333333333333 Where is South Bend? -> $x: ($x, be be, south bend) -> (Ivah Ellen Pickard, was from, South Bend) -> Ivah Ellen Pickard (3959ms) Where is South Bend? The training -0.333333333333 Where is South Bend? -> $x: ($x, be be, south bend) -> (The training, will be, South Bend) -> The training (3961ms) Where is South Bend? Ignition Park -0.333333333333 Where is South Bend? -> $x: ($x, be be, south bend) -> (Ignition Park, is, South Bend) -> Ignition Park (3962ms) Where is South Bend? Breakfast -0.333333333333 Where is South Bend? -> $x: ($x, be be, south bend) -> (Breakfast, is, South Bend) -> Breakfast (3960ms) Where is South Bend? the region -0.333333333333 Where is South Bend? -> $x: ($x, be be, south bend) -> (the region, is, South Bend) -> the region (3962ms) Where is South Bend? Linda -0.333333333333 Where is South Bend? -> $x: ($x, be be, south bend) -> (Linda, was from, South Bend) -> Linda (3959ms) Where is South Bend? the east -0.333333333333 Where is South Bend? -> $x: ($x, be be, south bend) -> (the east, is, South Bend) -> the east (3956ms) Where is South Bend? The league -0.333333333333 Where is South Bend? -> $x: ($x, be be, south bend) -> (The league, was sending, South Bend) -> The league (3956ms) Where is South Bend? The 3850 dual-disc clutch -0.333333333333 Where is South Bend? -> $x: ($x, be be, south bend) -> (The 3850 dual-disc clutch, is from, South Bend) -> The 3850 dual-disc clutch (3956ms) Where is South Bend? the company -0.333333333333 Where is South Bend? -> $x: ($x, be be, south bend) -> (the company, is called, South Bend) -> the company (3956ms) Where is South Bend? NEWS Colleen -0.333333333333 Where is South Bend? -> $x: ($x, be be, south bend) -> (NEWS Colleen, is thrilled to be back in, South Bend) -> NEWS Colleen (3962ms) Where is South Bend? the surrounding area -0.333333333333 Where is South Bend? -> $x: ($x, be be, south bend) -> (the surrounding area, is from, South Bend) -> the surrounding area (3962ms) Where is South Bend? The Rivieras -0.333333333333 Where is South Bend? -> $x: ($x, be be, south bend) -> (The Rivieras, were from, South Bend) -> The Rivieras (3961ms) Where is South Bend? the brothers -0.333333333333 Where is South Bend? -> $x: ($x, be be, south bend) -> (the brothers, is now, South Bend) -> the brothers (3959ms) Where is South Bend? Phil Sinal -0.333333333333 Where is South Bend? -> $x: ($x, be be, south bend) -> (Phil Sinal, is from, South Bend) -> Phil Sinal (3962ms) Where is South Bend? ? Pictures -0.333333333333 Where is South Bend? -> $x: ($x, be be, south bend) -> (? Pictures, are from, South Bend) -> ? Pictures (3956ms) Where is South Bend? The co-op -0.333333333333 Where is South Bend? -> $x: ($x, be be, south bend) -> (The co-op, is transforming, South Bend) -> The co-op (3956ms) Where is South Bend? point -0.333333333333 Where is South Bend? -> $x: ($x, be be, south bend) -> (point, is, South Bend) -> point (3959ms) Where is South Bend? The first 2 -0.333333333333 Where is South Bend? -> $x: ($x, be be, south bend) -> (The first 2, are from, South Bend) -> The first 2 (3959ms) Where is South Bend? The study -0.333333333333 Where is South Bend? -> $x: ($x, be be, south bend) -> (The study, is using, South Bend) -> The study (3960ms) Where is South Bend? 1932 -0.333333333333 Where is South Bend? -> $x: ($x, be be, south bend) -> (1932, was to be, South Bend) -> 1932 (3960ms) Where is South Bend? flights -0.333333333333 Where is South Bend? -> $x: ($x, be be, south bend) -> (flights, should be booked to, South Bend) -> flights (3962ms) Where is South Bend? Games -0.333333333333 Where is South Bend? -> $x: ($x, be be, south bend) -> (Games, are at, South Bend) -> Games (3961ms) Where is South Bend? The workshops -0.333333333333 Where is South Bend? -> $x: ($x, be be, south bend) -> (The workshops, are to be held in, South Bend) -> The workshops (3956ms) Where is South Bend? Ivy Quad -0.333333333333 Where is South Bend? -> $x: ($x, be be, south bend) -> (Ivy Quad, are from, South Bend) -> Ivy Quad (3962ms) Where is South Bend? Kyle -0.333333333333 Where is South Bend? -> $x: ($x, be be, south bend) -> (Kyle, is from, South Bend) -> Kyle (3962ms) Where is South Bend? The county seat -0.333333333333 Where is South Bend? -> $x: ($x, be be, south bend) -> (The county seat, is, South Bend) -> The county seat (3957ms) Where is South Bend? WNDU -0.333333333333 Where is South Bend? -> $x: ($x, be be, south bend) -> (WNDU, is, South Bend) -> WNDU (3962ms) Where is South Bend? one hundred miles -0.666666666667 Where is South Bend? -> $x: (south bend, be about, $x) -> (South Bend, is about, one hundred miles) -> one hundred miles (3963ms) Where is South Bend? 100 miles -0.666666666667 Where is South Bend? -> $x: (south bend, be about, $x) -> (South Bend, is about, 100 miles) -> 100 miles (3963ms) Where is South Bend? 15 minutes -0.666666666667 Where is South Bend? -> $x: (south bend, be about, $x) -> (Air South Bend Regional Airport, is about, 15 minutes) -> 15 minutes (3963ms) Where is South Bend? self-reliance -0.666666666667 Where is South Bend? -> $x: (south bend, be about, $x) -> (my Dad?s South Bend, is about, self-reliance) -> self-reliance (3963ms) Where is South Bend? 500 miles -0.666666666667 Where is South Bend? -> $x: (south bend, be about, $x) -> (South Bend, is about, 500 miles) -> 500 miles (3963ms) Where is South Bend? interesting places and events -0.666666666667 Where is South Bend? -> $x: (south bend, be about, $x) -> (South Bend, is a blog about, interesting places and events) -> interesting places and events (3963ms) Where is South Bend? an hour -0.666666666667 Where is South Bend? -> $x: (south bend, be about, $x) -> (South Bend, is about, an hour) -> an hour (3963ms) Where is it? natural food stores 0.222222222222 Where is it? -> $x: (soda, be find in, $x) -> (The soda, would be found in, natural food stores) -> natural food stores (13119ms) Where is it? the Millennial Star 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (Copies of it, will be found in, the Millennial Star) -> the Millennial Star (13983ms) Where is it? every Miocene unit 0.222222222222 Where is it? -> $x: (lava, be find in, $x) -> (some lava flows, are found in almost, every Miocene unit) -> every Miocene unit (13983ms) Where is it? natural cosmetic products 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (Donkey milk, can be found in, natural cosmetic products) -> natural cosmetic products (14261ms) Where is it? Genesis 9:25 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (the matter, is found in, Genesis 9:25) -> Genesis 9:25 (12690ms) Where is it? the spinal cord 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (matter, are found in, the spinal cord) -> the spinal cord (13209ms) Where is it? the interactions 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, is found in, the interactions) -> the interactions (13523ms) Where is it? Ephesians 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (all heaven?, is found in, Ephesians) -> Ephesians (13238ms) Where is it? the eye sockets 0.222222222222 Where is it? -> $x: (silver, be find in, $x) -> (silver denarii, were found in, the eye sockets) -> the eye sockets (13354ms) Where is it? red meat 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (Iron, can be found in, red meat) -> red meat (14245ms) Where is it? the first four words 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (concentrated meaning, can be found in, the first four words) -> the first four words (14196ms) Where is it? Streeterville 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, can be found in, Streeterville) -> Streeterville (14145ms) Where is it? the spare tire 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (marijuana, were found in, the spare tire) -> the spare tire (14196ms) Where is it? the C API 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (each object, can be found in, the C API) -> the C API (13709ms) Where is it? the high forests 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (the small-fruited spotted gum, is found in, the high forests) -> the high forests (13410ms) Where is it? Maui 0.222222222222 Where is it? -> $x: (etiquette, be find in, $x) -> (massage techniques and etiquette, can also be found in, Maui) -> Maui (14055ms) Where is it? the First House 0.222222222222 Where is it? -> $x: (neptune, be find in, $x) -> (Neptune, is found in, the First House) -> the First House (14292ms) Where is it? saliva 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (marijuana, cannot be found in, saliva) -> saliva (14055ms) Where is it? the next subsection 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (this matter, is found in, the next subsection) -> the next subsection (14396ms) Where is it? childrens playgrounds 0.222222222222 Where is it? -> $x: (slide, be find in, $x) -> (a slide, is commonly found in, childrens playgrounds) -> childrens playgrounds (14020ms) Where is it? lowland tropical 0.222222222222 Where is it? -> $x: (toucan, be find in, $x) -> (The keel-billed toucan, is found in, lowland tropical) -> lowland tropical (13297ms) Where is it? concealers 0.222222222222 Where is it? -> $x: (titanium, be find in, $x) -> (Titanium dioxide, is found in, concealers) -> concealers (13683ms) Where is it? the Concerto 0.222222222222 Where is it? -> $x: (titanium, be find in, $x) -> (Goldfinger , Titanium and Stradivari, are found in, the Concerto) -> the Concerto (13468ms) Where is it? the many colors 0.222222222222 Where is it? -> $x: (rainbow, be find in, $x) -> (the rainbow, can also be found in, the many colors) -> the many colors (13890ms) Where is it? Attic Greek 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, can be found only in, Attic Greek) -> Attic Greek (13297ms) Where is it? southern Africa 0.222222222222 Where is it? -> $x: (penguin, be find in, $x) -> (African penguins, are found in, southern Africa) -> southern Africa (13179ms) Where is it? beer 0.222222222222 Where is it? -> $x: (silicon, be find in, $x) -> (Silicon, is found in, beer) -> beer (14424ms) Where is it? the wiki 0.222222222222 Where is it? -> $x: (slide, be find in, $x) -> (slides, may be found in, the wiki) -> the wiki (14292ms) Where is it? Funk 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (the meaning, as is found in, Funk) -> Funk (14090ms) Where is it? seafood 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (.It, can be found in, seafood) -> seafood (13709ms) Where is it? regular issue proofs 0.222222222222 Where is it? -> $x: (silver, be find in, $x) -> (silver, is often found in, regular issue proofs) -> regular issue proofs (13850ms) Where is it? the Mystery 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (Spring, are to be found in, the Mystery) -> the Mystery (14292ms) Where is it? the brains 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (these plaques, have been found in, the brains) -> the brains (14424ms) Where is it? the post 0.222222222222 Where is it? -> $x: (slide, be find in, $x) -> (the slides, can be found in, the post) -> the post (14410ms) Where is it? Linux 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (No matter, is found in, Linux) -> Linux (13119ms) Where is it? Himachal 0.222222222222 Where is it? -> $x: (rainbow, be find in, $x) -> (both Brown and Rainbow Trout, are to be found in, Himachal) -> Himachal (13927ms) Where is it? 60,7 % 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (milk, was found in, 60,7 %) -> 60,7 % (13410ms) Where is it? the provision 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (life, is only found in, the provision) -> the provision (14055ms) Where is it? pet stores 0.222222222222 Where is it? -> $x: (gravity, be find in, $x) -> (Gravity-flow water bottles, can be found in, pet stores) -> pet stores (13870ms) Where is it? the following foods 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (Iron, can be found in, the following foods) -> the following foods (13965ms) Where is it? Kingston 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (A Spring City nurse, was found in, Kingston) -> Kingston (13325ms) Where is it? Jesus 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (Life, is found in, Jesus) -> Jesus (13850ms) Where is it? Macintosh applications 0.222222222222 Where is it? -> $x: (smooth, be find in, $x) -> (The Smooth Graphics option, is found in, Macintosh applications) -> Macintosh applications (7951ms) Where is it? foods 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (Milk or milk products, may be found in, foods) -> foods (13928ms) Where is it? the seed 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (this matter, is found only in, the seed) -> the seed (14352ms) Where is it? the nature 0.222222222222 Where is it? -> $x: (octet, be find in, $x) -> (Octet ring, is also possible to be found in, the nature) -> the nature (13631ms) Where is it? seawater 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (iron, is found in, seawater) -> seawater (14261ms) Where is it? milk 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (Milk proteins, may be found in, milk) -> milk (13760ms) Where is it? Florida 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, are found in, Florida) -> Florida (13870ms) Where is it? the crust 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (Iron, can be found in, the crust) -> the crust (14307ms) Where is it? the toilet and police 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (marijuana, was found in, the toilet and police) -> the toilet and police (14125ms) Where is it? low areas 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (Smaller cypress-gum swamps, are found in, low areas) -> low areas (12961ms) Where is it? northern Eurasia and forms part 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (worlds, is found in, northern Eurasia and forms part) -> northern Eurasia and forms part (14438ms) Where is it? the condition 0.222222222222 Where is it? -> $x: (slavery, be find in, $x) -> (slavery, can be found in, the condition) -> the condition (14162ms) Where is it? the above-mentioned passage 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (the meaning, is found in, the above-mentioned passage) -> the above-mentioned passage (13055ms) Where is it? the tropics 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, are found in, the tropics) -> the tropics (13086ms) Where is it? the district 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (hot springs, can be found in, the district) -> the district (13909ms) Where is it? the various pagan 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (heaven, were found in, the various pagan) -> the various pagan (14162ms) Where is it? the frame 0.222222222222 Where is it? -> $x: (octet, be find in, $x) -> (these octets, are found in, the frame) -> the frame (14020ms) Where is it? DNA 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (matter, were to be found in, DNA) -> DNA (13928ms) Where is it? the help section 0.222222222222 Where is it? -> $x: (etiquette, be find in, $x) -> (?Pin Etiquette?, can be found in, the help section) -> the help section (13440ms) Where is it? Western religious thought 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (lives, is found in, Western religious thought) -> Western religious thought (11801ms) Where is it? the rocks 0.222222222222 Where is it? -> $x: (titanium, be find in, $x) -> (the god Titan.Titanium, can even be found in, the rocks) -> the rocks (14367ms) Where is it? atheromas 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (gum disease, have been found in, atheromas) -> atheromas (13297ms) Where is it? the WIPO Overview 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (this matter, can be found in, the WIPO Overview) -> the WIPO Overview (14108ms) Where is it? plaques 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (gum disease, have also been found in, plaques) -> plaques (13440ms) Where is it? the conflict 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, is found historically in, the conflict) -> the conflict (13909ms) Where is it? Canada 0.222222222222 Where is it? -> $x: (propane, be find in, $x) -> (yes propane, is easy to find in, Canada) -> Canada (13830ms) Where is it? the same state 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (the spring, might be found in, the same state) -> the same state (13890ms) Where is it? the teacher 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (the IT content, is found only in, the teacher) -> the teacher (14179ms) Where is it? zoos 0.222222222222 Where is it? -> $x: (penguin, be find in, $x) -> (These beautiful medium-sized penguins, are found in, zoos) -> zoos (14424ms) Where is it? RFC 1349 0.222222222222 Where is it? -> $x: (octet, be find in, $x) -> (the ToS octet, can be found in, RFC 1349) -> RFC 1349 (14277ms) Where is it? rock crystals 0.222222222222 Where is it? -> $x: (silicon, be find in, $x) -> (Silicon, is found in, rock crystals) -> rock crystals (14019ms) Where is it? practice 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (these two gums, is found satisfactory in, practice) -> practice (13870ms) Where is it? the mouth and gut 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (arterial plaque, are also found in, the mouth and gut) -> the mouth and gut (14108ms) Where is it? Lyuba 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> ('s milk, were even found in, Lyuba) -> Lyuba (13946ms) Where is it? hardened arteries 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (gum disease, is also found in, hardened arteries) -> hardened arteries (14179ms) Where is it? the jacket 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (marijuana, was found in, the jacket) -> the jacket (14037ms) Where is it? dye-sensitised solar cells 0.222222222222 Where is it? -> $x: (silicon, be find in, $x) -> (silicon solar cells, can be found in, dye-sensitised solar cells) -> dye-sensitised solar cells (5124ms) Where is it? THE BIBLE. 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (SIMILAR MEANING, IS FOUND IN, THE BIBLE.) -> THE BIBLE. (13024ms) Where is it? a single timeframe 0.222222222222 Where is it? -> $x: (volatile, be find in, $x) -> (highly volatile behavior, can be found in, a single timeframe) -> a single timeframe (13735ms) Where is it? the center 0.222222222222 Where is it? -> $x: (silicon, be find in, $x) -> (silicon deposits, have only been found in, the center) -> the center (13149ms) Where is it? Nago?s corpse 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (iron, can be found in, Nago?s corpse) -> Nago?s corpse (12961ms) Where is it? huge quantities 0.222222222222 Where is it? -> $x: (silver, be find in, $x) -> (silver, had been found in, huge quantities) -> huge quantities (13605ms) Where is it? the dark 0.222222222222 Where is it? -> $x: (smooth, be find in, $x) -> (The large , smooth finger-pieces, are easy to find in, the dark) -> the dark (13209ms) Where is it? humans 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, can be found in, humans) -> humans (14055ms) Where is it? narrow zone 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (chloride springs, are found in geographically, narrow zone) -> narrow zone (14322ms) Where is it? quick runs 0.222222222222 Where is it? -> $x: (rainbow, be find in, $x) -> (Rainbows and cutthroat, can be found in, quick runs) -> quick runs (14337ms) Where is it? Lee 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (56It, will be found entire in, Lee) -> Lee (12961ms) Where is it? considerable numbers 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (the heavens, are found in, considerable numbers) -> considerable numbers (14145ms) Where is it? West Africa 0.222222222222 Where is it? -> $x: (hemoglobin, be find in, $x) -> (Hemoglobin C disease, is found mainly in, West Africa) -> West Africa (13297ms) Where is it? the excellent Museum 0.222222222222 Where is it? -> $x: (neolithic, be find in, $x) -> (the Neolithic period, can be found in, the excellent Museum) -> the excellent Museum (14055ms) Where is it? a pile 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (Spring?s peach, can be found in, a pile) -> a pile (14352ms) Where is it? textbooks 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (objects, is found in, textbooks) -> textbooks (13523ms) Where is it? conglomerations 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (Gray matter, is also found in, conglomerations) -> conglomerations (5124ms) Where is it? the lives 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (Meaning, is found in, the lives) -> the lives (13605ms) Where is it? the light 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (a heaven, be found in, the light) -> the light (13909ms) Where is it? the Christian Bible 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (life, are also found in, the Christian Bible) -> the Christian Bible (13209ms) Where is it? a senseless accident 0.222222222222 Where is it? -> $x: (silver, be find in, $x) -> (silver lining, can be found in, a senseless accident) -> a senseless accident (13179ms) Where is it? the LXX , Vulgate , and Syriac. 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (this meaning, is found in, the LXX , Vulgate , and Syriac.) -> the LXX , Vulgate , and Syriac. (13735ms) Where is it? the Old Testament 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (heaven, is found in, the Old Testament) -> the Old Testament (14292ms) Where is it? plain or decorative patterns 0.222222222222 Where is it? -> $x: (slide, be find in, $x) -> (tie slides, can be found in, plain or decorative patterns) -> plain or decorative patterns (14212ms) Where is it? NLee 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, can be found in, NLee) -> NLee (13149ms) Where is it? England 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, are found in, England) -> England (13382ms) Where is it? toothpaste and ketchup 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (guar gum, is found in, toothpaste and ketchup) -> toothpaste and ketchup (13830ms) Where is it? the hearts 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (plaque, has been found in, the hearts) -> the hearts (14128ms) Where is it? southwest Georgia 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (such springs, are found in, southwest Georgia) -> southwest Georgia (13118ms) Where is it? any pet supplies 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (Milk replacers, can be found in, any pet supplies) -> any pet supplies (13268ms) Where is it? the install notes 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (installing VisIt, can be found in, the install notes) -> the install notes (13149ms) Where is it? the Gasconade Formation 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (Kratz Spring, is found in, the Gasconade Formation) -> the Gasconade Formation (13325ms) Where is it? a sugar free variety 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (Bazooka gum, can also be found in, a sugar free variety) -> a sugar free variety (14337ms) Where is it? the burial?s nobility 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (the objects, found were used in, the burial?s nobility) -> the burial?s nobility (13209ms) Where is it? Egyptian urns 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (traces of it, have been found in, Egyptian urns) -> Egyptian urns (14108ms) Where is it? 43 % 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (concomitant pleural plaques, were found in only, 43 %) -> 43 % (13468ms) Where is it? Emily Post 0.222222222222 Where is it? -> $x: (etiquette, be find in, $x) -> (an etiquette conundrum, cannot be found in, Emily Post) -> Emily Post (13179ms) Where is it? the courtyard 0.222222222222 Where is it? -> $x: (propane, be find in, $x) -> (Propane Tanks, can be found in, the courtyard) -> the courtyard (14037ms) Where is it? the Gulf 0.222222222222 Where is it? -> $x: (smooth, be find in, $x) -> (Smooth and thorny skates, are most commonly found in, the Gulf) -> the Gulf (14367ms) Where is it? TDWG data standards 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (objects, are found in, TDWG data standards) -> TDWG data standards (13785ms) Where is it? Tonopah 0.222222222222 Where is it? -> $x: (silver, be find in, $x) -> (Silver, was found in, Tonopah) -> Tonopah (13890ms) Where is it? the 70s 0.222222222222 Where is it? -> $x: (neolithic, be find in, $x) -> (neolithic human remains and tools, were found in, the 70s) -> the 70s (7951ms) Where is it? paint and plastics 0.222222222222 Where is it? -> $x: (volatile, be find in, $x) -> (volatile organic compounds, are found in, paint and plastics) -> paint and plastics (14424ms) Where is it? cheap wow gold 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (Ke?Theril.It, can be found in, cheap wow gold) -> cheap wow gold (14276ms) Where is it? the Orange County 0.222222222222 Where is it? -> $x: (newport, be find in, $x) -> (Newport Seashore, is found in, the Orange County) -> the Orange County (13850ms) Where is it? household cleaners 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (3. It, can be found in, household cleaners) -> household cleaners (13119ms) Where is it? the oil 0.222222222222 Where is it? -> $x: (silicon, be find in, $x) -> (Silicon, is often found in, the oil) -> the oil (13024ms) Where is it? the Rockies and west 0.222222222222 Where is it? -> $x: (rainbow, be find in, $x) -> (the rainbow trout, was found in, the Rockies and west) -> the Rockies and west (14292ms) Where is it? Muslim Names 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (the Faith ;it, is found in, Muslim Names) -> Muslim Names (13927ms) Where is it? Tel Yitzhak 0.222222222222 Where is it? -> $x: (silicon, be find in, $x) -> (silicon, were found in, Tel Yitzhak) -> Tel Yitzhak (13760ms) Where is it? the cities and towns 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (good milk, was hard to find in, the cities and towns) -> the cities and towns (13709ms) Where is it? the man?s pocket 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (marijuana, was found in, the man?s pocket) -> the man?s pocket (13709ms) Where is it? different sizes 0.222222222222 Where is it? -> $x: (propane, be find in, $x) -> (the propane outdoor grill, is found in, different sizes) -> different sizes (13928ms) Where is it? Fairley 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (Marijuana, was found in, Fairley) -> Fairley (13468ms) Where is it? Northern Kashmir 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (Ladakh.It, is found in, Northern Kashmir) -> Northern Kashmir (13890ms) Where is it? Surrey 0.222222222222 Where is it? -> $x: (thorpe park, be find in, $x) -> (Thorpe Park, is found in, Surrey) -> Surrey (13928ms) Where is it? northern California 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (The worlds, is found in, northern California) -> northern California (13946ms) Where is it? Clark Canyon Creek 0.222222222222 Where is it? -> $x: (rainbow, be find in, $x) -> (Colorful Rainbow Trout, can be found in, Clark Canyon Creek) -> Clark Canyon Creek (14367ms) Where is it? a hidden compartment 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (marijuana, were found in, a hidden compartment) -> a hidden compartment (13024ms) Where is it? the encounters 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (life, is found in, the encounters) -> the encounters (13149ms) Where is it? the Bay area 0.222222222222 Where is it? -> $x: (silicon, be find in, $x) -> (the Silicon Valley, can also be found in, the Bay area) -> the Bay area (13890ms) Where is it? 72 percent 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (Plaques, were found in, 72 percent) -> 72 percent (13965ms) Where is it? the ritual 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (Heaven, was also found in, the ritual) -> the ritual (14145ms) Where is it? legumes 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (a gum, can be found in, legumes) -> legumes (14020ms) Where is it? grasslands 0.222222222222 Where is it? -> $x: (smooth, be find in, $x) -> (Smooth Snakes, are found in, grasslands) -> grasslands (14424ms) Where is it? the same staircore 0.222222222222 Where is it? -> $x: (propane tank, be find in, $x) -> (A propane tank, was also found in, the same staircore) -> the same staircore (12961ms) Where is it? male construction workers 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (pleural plaques, were also found in, male construction workers) -> male construction workers (12961ms) Where is it? San Antonio 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (this gum, was nowhere to be found in, San Antonio) -> San Antonio (13086ms) Where is it? the city 0.222222222222 Where is it? -> $x: (neolithic, be find in, $x) -> (a neolithic site, has been found in, the city) -> the city (14277ms) Where is it? the depths 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (heaven, is to be found in, the depths) -> the depths (14367ms) Where is it? the village 0.222222222222 Where is it? -> $x: (neolithic, be find in, $x) -> (Neolithic remains, were found in, the village) -> the village (13551ms) Where is it? gravitational lens experiments 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (dark matter, has been found in, gravitational lens experiments) -> gravitational lens experiments (13889ms) Where is it? small portions 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world?s, is found only in, small portions) -> small portions (13983ms) Where is it? the life 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, are also found in, the life) -> the life (13468ms) Where is it? the Antarctic 0.222222222222 Where is it? -> $x: (penguin, be find in, $x) -> (Not all penguins, are found in, the Antarctic) -> the Antarctic (14337ms) Where is it? the ground 0.222222222222 Where is it? -> $x: (silver, be find in, $x) -> (the silver, was found in, the ground) -> the ground (13325ms) Where is it? Morning Sun Books 0.222222222222 Where is it? -> $x: (smooth, be find in, $x) -> (The smooth side slider, may be found in, Morning Sun Books) -> Morning Sun Books (13890ms) Where is it? organs & blood vessels 0.222222222222 Where is it? -> $x: (smooth, be find in, $x) -> (smooth muscle, is found in, organs & blood vessels) -> organs & blood vessels (13325ms) Where is it? the following books 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (All Worlds, may be found in, the following books) -> the following books (11050ms) Where is it? wonder and terror 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, can be found in, wonder and terror) -> wonder and terror (13683ms) Where is it? sections 0.222222222222 Where is it? -> $x: (kennel, be find in, $x) -> (a kennel, are found in, sections) -> sections (14108ms) Where is it? artery plaques 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (dental plaque, have also been found in, artery plaques) -> artery plaques (13631ms) Where is it? the works 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (Heaven, is found in, the works) -> the works (13354ms) Where is it? the real world 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (a world, can be find in, the real world) -> the real world (11049ms) Where is it? the samples/prolog/ducks 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (Duck World, can be found in, the samples/prolog/ducks) -> the samples/prolog/ducks (13927ms) Where is it? air and water 0.222222222222 Where is it? -> $x: (titanium, be find in, $x) -> (Some other titanium compounds, are also found in, air and water) -> air and water (14179ms) Where is it? the soap/detergent section 0.222222222222 Where is it? -> $x: (soda, be find in, $x) -> (Washing soda, can be found in, the soap/detergent section) -> the soap/detergent section (14229ms) Where is it? the laundry section 0.222222222222 Where is it? -> $x: (soda, be find in, $x) -> (Washing soda, can be found in, the laundry section) -> the laundry section (13268ms) Where is it? the reservoir and inlet waters 0.222222222222 Where is it? -> $x: (rainbow, be find in, $x) -> (Some nice rainbows, are found in, the reservoir and inlet waters) -> the reservoir and inlet waters (14229ms) Where is it? collection 0.222222222222 Where is it? -> $x: (slide, be find in, $x) -> (This slide collection, was found in, collection) -> collection (13440ms) Where is it? swamp areas 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (Hot Springs Hot springs, are typically found in, swamp areas) -> swamp areas (13180ms) Where is it? Robert 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (Objects, were found broken in, Robert) -> Robert (14073ms) Where is it? Toronto 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, can be found in, Toronto) -> Toronto (13325ms) Where is it? the righteousness 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (heaven, are found only in, the righteousness) -> the righteousness (13810ms) Where is it? the bottom 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (earthy matter, will be found in, the bottom) -> the bottom (14367ms) Where is it? red blood cells 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (Iron, is found in, red blood cells) -> red blood cells (14410ms) Where is it? cast away cloth 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (heaven and earth, would be found wrapped in, cast away cloth) -> cast away cloth (13785ms) Where is it? the red blood cells 0.222222222222 Where is it? -> $x: (hemoglobin, be find in, $x) -> (Hemoglobin, is a protein found in, the red blood cells) -> the red blood cells (14292ms) Where is it? Meniere?s patients 0.222222222222 Where is it? -> $x: (recruitment, be find in, $x) -> (Recruitment, is a common finding in, Meniere?s patients) -> Meniere?s patients (13382ms) Where is it? the neurofibrillary tangles 0.222222222222 Where is it? -> $x: (silicon, be find in, $x) -> (silicon, have been found in, the neurofibrillary tangles) -> the neurofibrillary tangles (13579ms) Where is it? transfigured parallel 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (heaven, is found in, transfigured parallel) -> transfigured parallel (13928ms) Where is it? dark green vegetables 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (Iron, is found in, dark green vegetables) -> dark green vegetables (13055ms) Where is it? large numbers 0.222222222222 Where is it? -> $x: (penguin, be find in, $x) -> (King penguins, are also found in, large numbers) -> large numbers (14322ms) Where is it? water additives 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (sugarless gum and toothpaste, is found in, water additives) -> water additives (14410ms) Where is it? Assyria 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (Cruciform objects, have been found in, Assyria) -> Assyria (13683ms) Where is it? the man?s sock 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (marijuana, was also found in, the man?s sock) -> the man?s sock (13965ms) Where is it? Thailand 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, can be found in, Thailand) -> Thailand (13238ms) Where is it? Maximum Milk Thistle? 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (milk thistle, is found in, Maximum Milk Thistle?) -> Maximum Milk Thistle? (11049ms) Where is it? the Good Company 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (Liberation and heaven, are found in, the Good Company) -> the Good Company (13658ms) Where is it? Nature 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (healthy teeth and gums, are found in, Nature) -> Nature (14162ms) Where is it? the lake 0.222222222222 Where is it? -> $x: (rainbow, be find in, $x) -> (rainbow trout and char, are found in, the lake) -> the lake (13927ms) Where is it? the words 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (Life, is found in, the words) -> the words (13579ms) Where is it? lumps 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (better?it, is found in, lumps) -> lumps (13830ms) Where is it? Dobuita 0.222222222222 Where is it? -> $x: (hot dog, be find in, $x) -> (a Hot Dog stand, can usually be found in, Dobuita) -> Dobuita (14424ms) Where is it? Newberg 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (life, can be found in, Newberg) -> Newberg (13268ms) Where is it? a water canal 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (candy and gum, were found dumped in, a water canal) -> a water canal (13119ms) Where is it? major destinations 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (hot springs, are found in, major destinations) -> major destinations (13890ms) Where is it? the pure state 0.222222222222 Where is it? -> $x: (silver, be find in, $x) -> (Silver, is found in, the pure state) -> the pure state (13238ms) Where is it? women 0.222222222222 Where is it? -> $x: (smooth, be find in, $x) -> (a solid , smooth , benign lump, is commonly found in, women) -> women (13086ms) Where is it? the Middle East 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (the world .It, is found in, the Middle East) -> the Middle East (13810ms) Where is it? neighborhoods 0.222222222222 Where is it? -> $x: (slavery, be find in, $x) -> (Sexual slavery, can also be found in, neighborhoods) -> neighborhoods (13760ms) Where is it? the groundwater 0.222222222222 Where is it? -> $x: (volatile, be find in, $x) -> (volatile organic compounds, were found in, the groundwater) -> the groundwater (13735ms) Where is it? the Temple 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (life, can be found in, the Temple) -> the Temple (14162ms) Where is it? the often-used terms 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, is found in, the often-used terms) -> the often-used terms (13149ms) Where is it? various stages 0.222222222222 Where is it? -> $x: (titanium, be find in, $x) -> (Bought titanium, can be found in, various stages) -> various stages (14337ms) Where is it? every area 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (Milking Shorthorns, are found in almost, every area) -> every area (12993ms) Where is it? open sea 0.222222222222 Where is it? -> $x: (rainbow, be find in, $x) -> (rainbow runners, are found both in, open sea) -> open sea (13551ms) Where is it? amber 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (life, have been found in, amber) -> amber (13055ms) Where is it? an exclusive cover story 0.222222222222 Where is it? -> $x: (rainbow, be find in, $x) -> ('s Rainbow 6 Patriots, can be found in, an exclusive cover story) -> an exclusive cover story (14410ms) Where is it? the southern hemisphere 0.222222222222 Where is it? -> $x: (penguin, be find in, $x) -> (All penguins, are found only in, the southern hemisphere) -> the southern hemisphere (14261ms) Where is it? a lot 0.222222222222 Where is it? -> $x: (soda, be find in, $x) -> (baking soda pop, is certainly already found in, a lot) -> a lot (14292ms) Where is it? a major secret drug tunnel 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (marijuana, was found in, a major secret drug tunnel) -> a major secret drug tunnel (14037ms) Where is it? such tissues 0.222222222222 Where is it? -> $x: (smooth, be find in, $x) -> (smooth muscle, is found in, such tissues) -> such tissues (14073ms) Where is it? following page 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (A link to it, is found in, following page) -> following page (14245ms) Where is it? the Muslim religion 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (Heaven, is found in, the Muslim religion) -> the Muslim religion (13297ms) Where is it? six individuals 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (Senile plaques, were found in, six individuals) -> six individuals (14108ms) Where is it? the latest issue 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, can be found in, the latest issue) -> the latest issue (13928ms) Where is it? the Mississippi 0.222222222222 Where is it? -> $x: (smooth, be find in, $x) -> (The smooth softshell, is found in, the Mississippi) -> the Mississippi (14212ms) Where is it? a standardized extract form 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (milk thistle, is usually found in, a standardized extract form) -> a standardized extract form (14229ms) Where is it? the Peninsula Valdes 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, can be found in, the Peninsula Valdes) -> the Peninsula Valdes (14090ms) Where is it? logical places 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (objects, are found in, logical places) -> logical places (13410ms) Where is it? diseased brains 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (no amyloid plaques, are found in, diseased brains) -> diseased brains (13382ms) Where is it? period 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (the object, is found in, period) -> period (14090ms) Where is it? one study 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (skimmed milk, was found in, one study) -> one study (13382ms) Where is it? the space 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, is found in, the space) -> the space (13683ms) Where is it? the heart 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (peace--it, is found in, the heart) -> the heart (13468ms) Where is it? a Blount Co. cemetery 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (This plaque, has yet to be found in, a Blount Co. cemetery) -> a Blount Co. cemetery (13551ms) Where is it? the soil gases 0.222222222222 Where is it? -> $x: (propane, be find in, $x) -> (ethane , propane and butanes, was found in, the soil gases) -> the soil gases (14261ms) Where is it? the minds 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (life, can be found in, the minds) -> the minds (13468ms) Where is it? any 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (heaven, may be found in, any) -> any (14395ms) Where is it? God 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, is found in, God) -> God (14395ms) Where is it? the backpack 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (Marijuana, was found in, the backpack) -> the backpack (14277ms) Where is it? Surveyors Lake 0.222222222222 Where is it? -> $x: (rainbow, be find in, $x) -> (Rainbow Trout, can be found in, Surveyors Lake) -> Surveyors Lake (13297ms) Where is it? black and tan , black and white 0.222222222222 Where is it? -> $x: (kennel, be find in, $x) -> (Gordon kennel, were found in, black and tan , black and white) -> black and tan , black and white (11050ms) Where is it? 65.5 % 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (Plaques moderate or large, were found in, 65.5 %) -> 65.5 % (13830ms) Where is it? the United States 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> ('s milk, is almost impossible to find in, the United States) -> the United States (14261ms) Where is it? Islamic countries 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, are found in, Islamic countries) -> Islamic countries (13830ms) Where is it? waters 0.222222222222 Where is it? -> $x: (penguin, be find in, $x) -> (Rescued Fairy penguin Dirk, was found swimming in, waters) -> waters (13946ms) Where is it? ?gina 0.222222222222 Where is it? -> $x: (silver, be find in, $x) -> (silver, have been found in, ?gina) -> ?gina (13238ms) Where is it? the fridge section 0.222222222222 Where is it? -> $x: (hot dog, be find in, $x) -> (hot dogs etc, can be found in, the fridge section) -> the fridge section (14322ms) Where is it? Brazil and Argentina 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, are consistently found in, Brazil and Argentina) -> Brazil and Argentina (14179ms) Where is it? the quantum vacuum 0.222222222222 Where is it? -> $x: (gravity, be find in, $x) -> (repulsive gravity, can be found in, the quantum vacuum) -> the quantum vacuum (13209ms) Where is it? the skins 0.222222222222 Where is it? -> $x: (silicon, be find in, $x) -> (Silicon, is found in, the skins) -> the skins (13983ms) Where is it? the blood vessels 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (the swollen gums, can now be found in, the blood vessels) -> the blood vessels (14037ms) Where is it? less educated people 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (3. It, is found more in, less educated people) -> less educated people (14229ms) Where is it? 3 different forms 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (Iron, can be found in, 3 different forms) -> 3 different forms (13983ms) Where is it? lakes 0.222222222222 Where is it? -> $x: (rainbow, be find in, $x) -> (lake trout and rainbow trout, are found in, lakes) -> lakes (13928ms) Where is it? massed hordes 0.222222222222 Where is it? -> $x: (silver, be find in, $x) -> (Silver, is commonly found in, massed hordes) -> massed hordes (13909ms) Where is it? the Benagerie Ridge 0.222222222222 Where is it? -> $x: (lava, be find in, $x) -> (minor lava flows, are also found in, the Benagerie Ridge) -> the Benagerie Ridge (14229ms) Where is it? the south 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (present it, is only found in, the south) -> the south (13830ms) Where is it? conjunction 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (life, is found in, conjunction) -> conjunction (12690ms) Where is it? each system 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (heaven, are found in, each system) -> each system (13325ms) Where is it? the dermis 0.222222222222 Where is it? -> $x: (smooth, be find in, $x) -> (Smooth muscle, is found in, the dermis) -> the dermis (12993ms) Where is it? select Sears and Macy?s retailers 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (Scarce World, can be found in, select Sears and Macy?s retailers) -> select Sears and Macy?s retailers (13605ms) Where is it? a swimming pool 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (fecal matter, is found in, a swimming pool) -> a swimming pool (14090ms) Where is it? the death and resurrection 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (Heaven, is found in, the death and resurrection) -> the death and resurrection (14381ms) Where is it? the dense core 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (matter, has been found in, the dense core) -> the dense core (14352ms) Where is it? the Selection Guide 0.222222222222 Where is it? -> $x: (silicon, be find in, $x) -> (silicon photodiodes, can be found in, the Selection Guide) -> the Selection Guide (14352ms) Where is it? the speech act 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, is found in, the speech act) -> the speech act (13468ms) Where is it? Yosemite Valley 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, are found in, Yosemite Valley) -> Yosemite Valley (13382ms) Where is it? plant and animal sources 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (Iron, is found in, plant and animal sources) -> plant and animal sources (14277ms) Where is it? verse 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (this matter, was found in, verse) -> verse (13325ms) Where is it? the cortex 0.222222222222 Where is it? -> $x: (slide, be find in, $x) -> (this slide, are to be found in, the cortex) -> the cortex (14213ms) Where is it? NGC 6726 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (Spring 2002 NGC6729, is found in, NGC 6726) -> NGC 6726 (13523ms) Where is it? great abundance 0.222222222222 Where is it? -> $x: (silicon, be find in, $x) -> (oxygen and silicon, is found in, great abundance) -> great abundance (14438ms) Where is it? section 2 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (this matter, can be found in, section 2) -> section 2 (14020ms) Where is it? a home 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (marijuana, was found stuffed in, a home) -> a home (14073ms) Where is it? the slower back eddies and pools 0.222222222222 Where is it? -> $x: (silver, be find in, $x) -> (Silver, can be found in, the slower back eddies and pools) -> the slower back eddies and pools (12993ms) Where is it? King Tutankhamen?s tomb 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (milk paint, were even found in, King Tutankhamen?s tomb) -> King Tutankhamen?s tomb (13983ms) Where is it? root vegetables 0.222222222222 Where is it? -> $x: (silicon, be find in, $x) -> (silicon, is found in, root vegetables) -> root vegetables (14381ms) Where is it? the livers of copper deficient animals 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (iron, has been found in, the livers of copper deficient animals) -> the livers of copper deficient animals (13297ms) Where is it? the following parable 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (life, is found in, the following parable) -> the following parable (14245ms) Where is it? a classroom 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (an object, can be found in, a classroom) -> a classroom (14277ms) Where is it? containers 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (milk, was found in, containers) -> containers (11049ms) Where is it? the nineties 0.222222222222 Where is it? -> $x: (gravity, be find in, $x) -> (gravity waves, was found in, the nineties) -> the nineties (14245ms) Where is it? iron-enriched cereals 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (Iron, is also found in, iron-enriched cereals) -> iron-enriched cereals (7951ms) Where is it? high concentrations 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (iron, is found in, high concentrations) -> high concentrations (14073ms) Where is it? hospitals 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (Milk banks, are often found in, hospitals) -> hospitals (12961ms) Where is it? Wolf Creek 0.222222222222 Where is it? -> $x: (rainbow, be find in, $x) -> (Rainbow and Brooke Trout, can be found in, Wolf Creek) -> Wolf Creek (14245ms) Where is it? the offering-burial complexes 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (objects, were found in, the offering-burial complexes) -> the offering-burial complexes (14145ms) Where is it? sand 0.222222222222 Where is it? -> $x: (silicon, be find in, $x) -> (silicon, is commonly found in, sand) -> sand (14410ms) Where is it? the top 20 feet 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (spring, will be found in, the top 20 feet) -> the top 20 feet (3660ms) Where is it? the form 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (Matter, is commonly found in, the form) -> the form (14179ms) Where is it? the shadows 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, is to be found in, the shadows) -> the shadows (14367ms) Where is it? the backtrace and frame responses 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (This object, can be found in, the backtrace and frame responses) -> the backtrace and frame responses (14337ms) Where is it? the inner sanctuary 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (life, are found only in, the inner sanctuary) -> the inner sanctuary (13909ms) Where is it? packages 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (rice milk, can be found in, packages) -> packages (14001ms) Where is it? the small town 0.222222222222 Where is it? -> $x: (neolithic, be find in, $x) -> (Neolithic settlements, have been found in, the small town) -> the small town (13119ms) Where is it? the directory 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (the object, is found in, the directory) -> the directory (14145ms) Where is it? suffering 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, can be found in, suffering) -> suffering (14322ms) Where is it? the late 0.222222222222 Where is it? -> $x: (titanium, be find in, $x) -> (Titanium, was found in, the late) -> the late (14292ms) Where is it? a Sumerian fable 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, can be found in, a Sumerian fable) -> a Sumerian fable (14125ms) Where is it? Meat 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (Iron, Is found in, Meat) -> Meat (13118ms) Where is it? 1846 0.222222222222 Where is it? -> $x: (neptune, be find in, $x) -> (Neptune, was found in, 1846) -> 1846 (13810ms) Where is it? the chaos 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, may be more often found in, the chaos) -> the chaos (14145ms) Where is it? a legend 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (It?s roots, are found in, a legend) -> a legend (14292ms) Where is it? the rear hatchback area 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (Marijuana, was found in, the rear hatchback area) -> the rear hatchback area (14196ms) Where is it? Crete 0.222222222222 Where is it? -> $x: (neolithic, be find in, $x) -> (similar Neolithic clay figures, are found in, Crete) -> Crete (14410ms) Where is it? veins 0.222222222222 Where is it? -> $x: (silver, be find in, $x) -> (The silver, is found in, veins) -> veins (13983ms) Where is it? plants 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (living matters, are found in, plants) -> plants (13605ms) Where is it? the river 0.222222222222 Where is it? -> $x: (rainbow, be find in, $x) -> (Rainbow Trout, may be found in, the river) -> the river (13382ms) Where is it? dairy products 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (milk sugar, is found in, dairy products) -> dairy products (14381ms) Where is it? A1 Ultra PC Cleaner 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (3-times.It, was found in, A1 Ultra PC Cleaner) -> A1 Ultra PC Cleaner (13238ms) Where is it? subcutaneous breast tissue 0.222222222222 Where is it? -> $x: (smooth, be find in, $x) -> (smooth muscle, may be found in, subcutaneous breast tissue) -> subcutaneous breast tissue (14367ms) Where is it? the Sacred Volume 0.222222222222 Where is it? -> $x: (slavery, be find in, $x) -> (Slavery, can anywhere be found in, the Sacred Volume) -> the Sacred Volume (12174ms) Where is it? dried fruit 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (Iron, can be found in, dried fruit) -> dried fruit (14125ms) Where is it? revelation 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (no idea of it, to be found in, revelation) -> revelation (13683ms) Where is it? the diary 0.222222222222 Where is it? -> $x: (slavery, be find in, $x) -> (slavery, is found in, the diary) -> the diary (13440ms) Where is it? the teachings and writings 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (Life, may be found in, the teachings and writings) -> the teachings and writings (13760ms) Where is it? either group 0.222222222222 Where is it? -> $x: (hemoglobin, be find in, $x) -> (glycated hemoglobin, were found in, either group) -> either group (14395ms) Where is it? John 6 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (its meaning, is found in, John 6) -> John 6 (14073ms) Where is it? the Cerbat Mountains 0.222222222222 Where is it? -> $x: (silver, be find in, $x) -> (silver, was found in, the Cerbat Mountains) -> the Cerbat Mountains (11801ms) Where is it? front 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (This Ontario Heritage Foundation plaque, can be found in, front) -> front (14381ms) Where is it? classrooms 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (the heavens, have been found in, classrooms) -> classrooms (14277ms) Where is it? the June 1996 Issue 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (world, can be found in, the June 1996 Issue) -> the June 1996 Issue (14019ms) Where is it? Tian Tan Park 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (Heaven, is found in, Tian Tan Park) -> Tian Tan Park (13735ms) Where is it? the Antarctica Region 0.222222222222 Where is it? -> $x: (penguin, be find in, $x) -> (the Penguins, can only be found in, the Antarctica Region) -> the Antarctica Region (14395ms) Where is it? the crater 0.222222222222 Where is it? -> $x: (lava, be find in, $x) -> (the long active lava lakes, are regularly found in, the crater) -> the crater (13268ms) Where is it? the expulsion 0.222222222222 Where is it? -> $x: (slavery, be find in, $x) -> (slavery, will be found neither in, the expulsion) -> the expulsion (14125ms) Where is it? Scripture 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (heaven, is to be found nowhere in, Scripture) -> Scripture (14229ms) Where is it? nature 0.222222222222 Where is it? -> $x: (titanium dioxide, be find in, $x) -> (Titanium dioxide, is found in, nature) -> nature (14395ms) Where is it? the Cathedral 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (Heaven, can be found in, the Cathedral) -> the Cathedral (13354ms) Where is it? the database 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (An object, to be found in, the database) -> the database (14162ms) Where is it? grains 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (Iron, is also found in, grains) -> grains (14381ms) Where is it? the IPR Policy 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (technical matters, should be found in, the IPR Policy) -> the IPR Policy (13354ms) Where is it? British soccer 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (last spring, was unable to find a job in, British soccer) -> British soccer (13024ms) Where is it? the project file repository 0.222222222222 Where is it? -> $x: (slide, be find in, $x) -> (the slides, can be found in, the project file repository) -> the project file repository (13631ms) Where is it? the margins 0.222222222222 Where is it? -> $x: (neolithic, be find in, $x) -> (Neolithic petroglyphs, are found floating in, the margins) -> the margins (13496ms) Where is it? countries but countries 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (now it, is found mainly in developing, countries but countries) -> countries but countries (13268ms) Where is it? Job 9:33 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (the idea it expresses, is found in, Job 9:33) -> Job 9:33 (13440ms) Where is it? localized patches 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (These psoriasis plaques, are usually found in, localized patches) -> localized patches (7951ms) Where is it? liver cells 0.222222222222 Where is it? -> $x: (smooth, be find in, $x) -> (smooth ER, are found in, liver cells) -> liver cells (14001ms) Where is it? the dead baby 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (gums, was found in, the dead baby) -> the dead baby (14055ms) Where is it? the resources page 0.222222222222 Where is it? -> $x: (slide, be find in, $x) -> (Lecture slides, can be found in, the resources page) -> the resources page (12174ms) Where is it? the carotid arteries 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (Atherosclerotic plaques, were found in, the carotid arteries) -> the carotid arteries (13180ms) Where is it? a region 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (These objects, are found in, a region) -> a region (14322ms) Where is it? the most unlikely corners 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (Heaven, can be found in, the most unlikely corners) -> the most unlikely corners (14145ms) Where is it? the physical , material creation 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (life, can be found in, the physical , material creation) -> the physical , material creation (13086ms) Where is it? the Lord 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (life, is found in, the Lord) -> the Lord (11049ms) Where is it? dreams 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (Lost objects, are frequently found in, dreams) -> dreams (13983ms) Where is it? the product catalogue 0.222222222222 Where is it? -> $x: (slide, be find in, $x) -> (chain and slide rail, can be found in, the product catalogue) -> the product catalogue (14292ms) Where is it? Satan 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, is found in, Satan) -> Satan (11801ms) Where is it? worldly and sensual persons 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (heaven, are found in, worldly and sensual persons) -> worldly and sensual persons (13658ms) Where is it? numbers 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (life, are found in, numbers) -> numbers (13870ms) Where is it? the aisle 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (Coconut milk, can be found in, the aisle) -> the aisle (13551ms) Where is it? one lot C sample unit 0.222222222222 Where is it? -> $x: (newport, be find in, $x) -> (serotype Newport, was found in, one lot C sample unit) -> one lot C sample unit (14424ms) Where is it? a barn 0.222222222222 Where is it? -> $x: (neon, be find in, $x) -> (the 1950s-era neon arrow sign, was found in, a barn) -> a barn (13890ms) Where is it? the very first book 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (life, is found in, the very first book) -> the very first book (13785ms) Where is it? recent excavations 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (objects, had been found in, recent excavations) -> recent excavations (13631ms) Where is it? dozens 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world?s, can be found in, dozens) -> dozens (14073ms) Where is it? the placenta 0.222222222222 Where is it? -> $x: (titanium, be find in, $x) -> (titanium dioxide nanoparticles, were found in, the placenta) -> the placenta (14352ms) Where is it? estuaries 0.222222222222 Where is it? -> $x: (smooth, be find in, $x) -> (The smooth flounder, is to be found in, estuaries) -> estuaries (14108ms) Where is it? Acts 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (heaven, is found in, Acts) -> Acts (14212ms) Where is it? the territory 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (an object, is found in, the territory) -> the territory (14179ms) Where is it? the kitchen 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (marijuana, were found in, the kitchen) -> the kitchen (13149ms) Where is it? the Gospel 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (heaven, is found only in, the Gospel) -> the Gospel (14438ms) Where is it? colonies 0.222222222222 Where is it? -> $x: (penguin, be find in, $x) -> (penguins, can be found in, colonies) -> colonies (12690ms) Where is it? the Bible 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (heaven, are found in, the Bible) -> the Bible (14179ms) Where is it? warm climates 0.222222222222 Where is it? -> $x: (penguin, be find in, $x) -> (the Megellanic penguin, is found in, warm climates) -> warm climates (14001ms) Where is it? large quantities 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (* Casein milk, is found in, large quantities) -> large quantities (13965ms) Where is it? a vacuum 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, cannot be found in, a vacuum) -> a vacuum (13410ms) Where is it? Iowa 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (milk snake, are found in, Iowa) -> Iowa (13946ms) Where is it? the JISC Legal Interception 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (this matter, can be found in, the JISC Legal Interception) -> the JISC Legal Interception (13965ms) Where is it? Jesus Christ 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, is found in, Jesus Christ) -> Jesus Christ (13410ms) Where is it? the AHEAD web site 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (World, can be found in, the AHEAD web site) -> the AHEAD web site (14128ms) Where is it? the soil 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (a valuable gum, could be found in, the soil) -> the soil (14090ms) Where is it? a garbage bag 0.222222222222 Where is it? -> $x: (slide, be find in, $x) -> (SHARE THIS SLIDE Harper, was found in, a garbage bag) -> a garbage bag (14108ms) Where is it? the Southern Hemisphere 0.222222222222 Where is it? -> $x: (penguin, be find in, $x) -> (Penguins, are found wild only in, the Southern Hemisphere) -> the Southern Hemisphere (14212ms) Where is it? the streams 0.222222222222 Where is it? -> $x: (rainbow, be find in, $x) -> (brown and Rainbow trout, are found in, the streams) -> the streams (13086ms) Where is it? New Zealand 0.222222222222 Where is it? -> $x: (penguin, be find in, $x) -> (the ?elegant ? penguin, were found in, New Zealand) -> New Zealand (14438ms) Where is it? the cache 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (the objects, are found in, the cache) -> the cache (14261ms) Where is it? elemental analysis 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (iron, was found in, elemental analysis) -> elemental analysis (14090ms) Where is it? the Native Americans 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (breast milk, have been found in, the Native Americans) -> the Native Americans (14352ms) Where is it? Europe 0.222222222222 Where is it? -> $x: (slavery, be find in, $x) -> (slavery, was found more firmly in, Europe) -> Europe (13523ms) Where is it? Italy 0.222222222222 Where is it? -> $x: (rainbow, be find in, $x) -> (the viticultural rainbow, can be found in, Italy) -> Italy (9146ms) Where is it? three major regions 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, can be found in, three major regions) -> three major regions (12690ms) Where is it? the Holy Bible 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (Heaven, is found in, the Holy Bible) -> the Holy Bible (14424ms) Where is it? the tomb 0.222222222222 Where is it? -> $x: (silver, be find in, $x) -> (Silver wires, were found in, the tomb) -> the tomb (13551ms) Where is it? the as 0.222222222222 Where is it? -> $x: (gravity, be find in, $x) -> (the explanation of gravity, to be found in, the as) -> the as (14352ms) Where is it? the Trent 0.222222222222 Where is it? -> $x: (neolithic, be find in, $x) -> (Neolithic skulls, was found in, the Trent) -> the Trent (14396ms) Where is it? Vostok 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (life, is found in, Vostok) -> Vostok (13496ms) Where is it? the product 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (milk, have been found in, the product) -> the product (14037ms) Where is it? Hispanic 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (Coconut milk, is found in, Hispanic) -> Hispanic (14277ms) Where is it? Central America 0.222222222222 Where is it? -> $x: (toucan, be find in, $x) -> (toucan, is found in, Central America) -> Central America (3660ms) Where is it? different forms 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (iron, is found in, different forms) -> different forms (14381ms) Where is it? abundance nor activity 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (life, is neither found in, abundance nor activity) -> abundance nor activity (14055ms) Where is it? animal meats 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (iron, is found mostly in, animal meats) -> animal meats (14381ms) Where is it? html form 0.222222222222 Where is it? -> $x: (slide, be find in, $x) -> (The slides, can be found in, html form) -> html form (14245ms) Where is it? Namibia 0.222222222222 Where is it? -> $x: (penguin, be find in, $x) -> (Penguins, are also found in, Namibia) -> Namibia (13086ms) Where is it? the > nature 0.222222222222 Where is it? -> $x: (octet, be find in, $x) -> (> Octet ring, is also possible to be found in, the > nature) -> the > nature (13983ms) Where is it? the bones 0.222222222222 Where is it? -> $x: (silicon, be find in, $x) -> (silicon, is found in, the bones) -> the bones (14410ms) Where is it? turf 0.222222222222 Where is it? -> $x: (smooth, be find in, $x) -> (smooth crabgrass, is more often found in, turf) -> turf (14322ms) Where is it? convenience 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (All Dentyne sugarless gum products, can be found in, convenience) -> convenience (13890ms) Where is it? the food 0.222222222222 Where is it? -> $x: (slavery, be find in, $x) -> (Slavery, can be found in, the food) -> the food (12993ms) Where is it? a double-blind trial 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (milk, was found in, a double-blind trial) -> a double-blind trial (13850ms) Where is it? gemba 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (objects, can be found in, gemba) -> gemba (13810ms) Where is it? several mounds 0.222222222222 Where is it? -> $x: (silver, be find in, $x) -> (Silver, has been found in, several mounds) -> several mounds (13830ms) Where is it? meat 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (Iron, is found in, meat) -> meat (14020ms) Where is it? Regent 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, is found in, Regent) -> Regent (13268ms) Where is it? the loss 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, be found in, the loss) -> the loss (13605ms) Where is it? the caves 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (heaven, are found in, the caves) -> the caves (14337ms) Where is it? a shelter 0.222222222222 Where is it? -> $x: (neolithic, be find in, $x) -> (Neolithic remains, were found in, a shelter) -> a shelter (14037ms) Where is it? Orkney 0.222222222222 Where is it? -> $x: (neolithic, be find in, $x) -> (a Neolithic village, was found in, Orkney) -> Orkney (14055ms) Where is it? the most unexpected places 0.222222222222 Where is it? -> $x: (gravity, be find in, $x) -> (Johnsonian gravity, will be found in, the most unexpected places) -> the most unexpected places (13496ms) Where is it? the Muslim slave trade 0.222222222222 Where is it? -> $x: (slavery, be find in, $x) -> (slavery, can be found in, the Muslim slave trade) -> the Muslim slave trade (13180ms) Where is it? the soldier 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (the milk, was found undigested in, the soldier) -> the soldier (13810ms) Where is it? the sixth 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (Heaven and Earth, is found in, the sixth) -> the sixth (13709ms) Where is it? the Title Searching section 0.222222222222 Where is it? -> $x: (title search, be find in, $x) -> (title searching, may be found in, the Title Searching section) -> the Title Searching section (13179ms) Where is it? couples 0.222222222222 Where is it? -> $x: (toucan, be find in, $x) -> (Toucans, are found in, couples) -> couples (13909ms) Where is it? Johns Hopkins Diabetes Guide 0.222222222222 Where is it? -> $x: (osteomyelitis, be find in, $x) -> (Osteomyelitis, was found in, Johns Hopkins Diabetes Guide) -> Johns Hopkins Diabetes Guide (13468ms) Where is it? large shoals 0.222222222222 Where is it? -> $x: (neon, be find in, $x) -> (neon tetras, can be found in, large shoals) -> large shoals (13946ms) Where is it? a variety 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (malted milk, is found in, a variety) -> a variety (14395ms) Where is it? silver cell batteries 0.222222222222 Where is it? -> $x: (silver, be find in, $x) -> (Silver, is found in, silver cell batteries) -> silver cell batteries (14292ms) Where is it? the universe 0.222222222222 Where is it? -> $x: (silicon, be find in, $x) -> (Silicon, is found everywhere in, the universe) -> the universe (13785ms) Where is it? the file 0.222222222222 Where is it? -> $x: (slide, be find in, $x) -> (PowerPoint 97 slides, can be found in, the file ) -> the file (12993ms) Where is it? town 0.222222222222 Where is it? -> $x: (neolithic, be find in, $x) -> (Two Neolithic arrowheads, have been found in, town) -> town (13354ms) Where is it? air 0.222222222222 Where is it? -> $x: (volatile, be find in, $x) -> (the most volatile, are found in, air) -> air (12961ms) Where is it? heavy users 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (marijuana, may be found in, heavy users) -> heavy users (13909ms) Where is it? Al-Muwatta 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (its meaning, is found in, Al-Muwatta) -> Al-Muwatta (13268ms) Where is it? any store 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (soy milk, can be found in almost, any store) -> any store (11801ms) Where is it? good works 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (,it, is even found in, good works) -> good works (13410ms) Where is it? Ancient Greece 0.222222222222 Where is it? -> $x: (slavery, be find in, $x) -> (The most advanced slavery, was found in, Ancient Greece) -> Ancient Greece (14212ms) Where is it? the military 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (life, was found in, the military) -> the military (13086ms) Where is it? a wide-spectrum 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> ('s IT, are found in, a wide-spectrum) -> a wide-spectrum (14352ms) Where is it? one piece 0.222222222222 Where is it? -> $x: (silver, be find in, $x) -> (silver, is to be found in, one piece) -> one piece (13850ms) Where is it? George Percy 0.222222222222 Where is it? -> $x: (etiquette, be find in, $x) -> (cardroom play and etiquette, can be found in, George Percy) -> George Percy (13946ms) Where is it? the glove compartment 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (marijuana, was found in, the glove compartment) -> the glove compartment (14145ms) Where is it? four door 0.222222222222 Where is it? -> $x: (limo, be find in, $x) -> (Limos, can be found in, four door) -> four door (13180ms) Where is it? binoculars 0.222222222222 Where is it? -> $x: (neptune, be find in, $x) -> (Uranus and Neptune, can be found in, binoculars) -> binoculars (13909ms) Where is it? the editor 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (space?it, can be found in, the editor) -> the editor (14307ms) Where is it? the home 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (marijuana, was also found in, the home) -> the home (14292ms) Where is it? teas 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (Milk thistle, can be found in, teas) -> teas (13870ms) Where is it? El Tajo Caves 0.222222222222 Where is it? -> $x: (neolithic, be find in, $x) -> (Neolithic remains, have been found in, El Tajo Caves) -> El Tajo Caves (13149ms) Where is it? complete compliance 0.222222222222 Where is it? -> $x: (kennel, be find in, $x) -> (Silvermine Kennel, was found to be in, complete compliance) -> complete compliance (14395ms) Where is it? the Serra Altura 0.222222222222 Where is it? -> $x: (neolithic, be find in, $x) -> (Neolithic times, have been found in, the Serra Altura) -> the Serra Altura (14020ms) Where is it? the Mushan Formation 0.222222222222 Where is it? -> $x: (lava, be find in, $x) -> (a few lava flows, are found in, the Mushan Formation) -> the Mushan Formation (13268ms) Where is it? quartz sand 0.222222222222 Where is it? -> $x: (silicon, be find in, $x) -> (silicon, can mainly be found in, quartz sand) -> quartz sand (14367ms) Where is it? a freezer 0.222222222222 Where is it? -> $x: (popsicle, be find in, $x) -> (Popsicle, was found in, a freezer) -> a freezer (13523ms) Where is it? Koetsu 0.222222222222 Where is it? -> $x: (silicon, be find in, $x) -> (silicon nitride, are typically found in, Koetsu) -> Koetsu (13658ms) Where is it? a host 0.222222222222 Where is it? -> $x: (soda, be find in, $x) -> (washing soda, are found in, a host) -> a host (13631ms) Where is it? various sizes 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (feminineness everywhereIt, can be found in, various sizes) -> various sizes (13209ms) Where is it? a wide range 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (milk proteins, are found in, a wide range) -> a wide range (14090ms) Where is it? such dramatic fashion 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (The spring, was found in, such dramatic fashion) -> such dramatic fashion (14307ms) Where is it? popular culture 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (an object, is found in, popular culture) -> popular culture (13850ms) Where is it? the cooking water 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (the majority of it, was found in, the cooking water) -> the cooking water (14322ms) Where is it? ilemite 0.222222222222 Where is it? -> $x: (titanium, be find in, $x) -> (Titanium, is found in, ilemite) -> ilemite (12961ms) Where is it? the former Soviet Union 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, are found in, the former Soviet Union) -> the former Soviet Union (14367ms) Where is it? native form 0.222222222222 Where is it? -> $x: (silver, be find in, $x) -> (Silver, is found in, native form) -> native form (14261ms) Where is it? Montana 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, are found in, Montana) -> Montana (14367ms) Where is it? the constructs 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, can be found in, the constructs) -> the constructs (14179ms) Where is it? the list 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (the object, is found in, the list) -> the list (14001ms) Where is it? Signpost 0.222222222222 Where is it? -> $x: (space exploration, be find in, $x) -> (Mars and space exploration, can be found in, Signpost) -> Signpost (13523ms) Where is it? the flowers 0.222222222222 Where is it? -> $x: (rainbow, be find in, $x) -> (rainbow and same colors, can be found in, the flowers) -> the flowers (14395ms) Where is it? Mammoth Cave 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (life, can be found in, Mammoth Cave) -> Mammoth Cave (13496ms) Where is it? Tricker 0.222222222222 Where is it? -> $x: (smooth, be find in, $x) -> (just smooth sightly curves, will be found in, Tricker) -> Tricker (13440ms) Where is it? Rome 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (A plaque, was found in, Rome) -> Rome (13119ms) Where is it? the spaces 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (Plaques, are found in, the spaces) -> the spaces (14162ms) Where is it? locations 0.222222222222 Where is it? -> $x: (neolithic, be find in, $x) -> (the neolithic period, would normally be found in, locations) -> locations (13238ms) Where is it? Bwindi 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, are found in, Bwindi) -> Bwindi (13709ms) Where is it? the action of Moses 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (The meaning, to be found in, the action of Moses) -> the action of Moses (13382ms) Where is it? the farm 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (all harmfull.It, was found in, the farm) -> the farm (9146ms) Where is it? the following example 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, can be found in, the following example) -> the following example (13946ms) Where is it? combinations 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, is found in, combinations) -> combinations (13086ms) Where is it? the early 1990s 0.222222222222 Where is it? -> $x: (neolithic, be find in, $x) -> (the Neolithic iceman, were found in, the early 1990s) -> the early 1990s (14162ms) Where is it? the region 0.222222222222 Where is it? -> $x: (neolithic, be find in, $x) -> (Neolithic origin, have been found in, the region) -> the region (14196ms) Where is it? old 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (heaven, are spurious--not found in, old) -> old (14073ms) Where is it? the personal finance space 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, can be found in, the personal finance space) -> the personal finance space (14162ms) Where is it? the Saadh Sangat 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (Liberation and heaven, are found in, the Saadh Sangat) -> the Saadh Sangat (13946ms) Where is it? a great number 0.222222222222 Where is it? -> $x: (rainbow, be find in, $x) -> (Rainbow, can be found in, a great number) -> a great number (13468ms) Where is it? the body 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (marijuana, can be found in, the body) -> the body (13983ms) Where is it? minute amounts 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (such it, is found in very, minute amounts) -> minute amounts (12175ms) Where is it? the deserted lots 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (marijuana, were found in, the deserted lots) -> the deserted lots (14261ms) Where is it? ore 0.222222222222 Where is it? -> $x: (silver, be find in, $x) -> (Silver, was often found in, ore) -> ore (14108ms) Where is it? the Council?s Preliminary Issues 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (this matter, can be found in, the Council?s Preliminary Issues) -> the Council?s Preliminary Issues (12993ms) Where is it? an underground manmade bunker 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (marijuana, was found stashed in, an underground manmade bunker) -> an underground manmade bunker (13631ms) Where is it? the Earth 0.222222222222 Where is it? -> $x: (gravity, be find in, $x) -> (gravity, is found in, the Earth) -> the Earth (13055ms) Where is it? Matt 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (The key to it, is found in, Matt) -> Matt (13658ms) Where is it? Matthew 22:23-30 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (Heaven, will be found in, Matthew 22:23-30) -> Matthew 22:23-30 (13410ms) Where is it? the Crypt 0.222222222222 Where is it? -> $x: (silver, be find in, $x) -> (silver, was found in, the Crypt) -> the Crypt (14307ms) Where is it? an ideal chainsaw 0.222222222222 Where is it? -> $x: (gravity, be find in, $x) -> (gravity, should be found in, an ideal chainsaw) -> an ideal chainsaw (14424ms) Where is it? association 0.222222222222 Where is it? -> $x: (silver, be find in, $x) -> (silver, is found in, association) -> association (14145ms) Where is it? only one verse 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world ?, is found in, only one verse) -> only one verse (13496ms) Where is it? any textbook 0.222222222222 Where is it? -> $x: (gravity, be find in, $x) -> (artificial gravity, can be found in, any textbook) -> any textbook (14196ms) Where is it? dried fruits and meats 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (Iron, is found in, dried fruits and meats) -> dried fruits and meats (13524ms) Where is it? plenty 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (Iron, is also found in, plenty) -> plenty (13760ms) Where is it? every red blood cell 0.222222222222 Where is it? -> $x: (hemoglobin, be find in, $x) -> (a hemoglobin molecule, are found in, every red blood cell) -> every red blood cell (13523ms) Where is it? Quine?s early writings 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, is to be found in, Quine?s early writings) -> Quine?s early writings (14292ms) Where is it? China 0.222222222222 Where is it? -> $x: (titanium, be find in, $x) -> (titanium, is mainly found in, China) -> China (14055ms) Where is it? sandpaintings 0.222222222222 Where is it? -> $x: (rainbow, be find in, $x) -> (Whirling Rainbow People, are found in, sandpaintings) -> sandpaintings (13551ms) Where is it? stores 0.222222222222 Where is it? -> $x: (titanium, be find in, $x) -> (Titanium rings, are hard to find in, stores) -> stores (14179ms) Where is it? Inuit 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, are found in, Inuit) -> Inuit (13209ms) Where is it? France 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (life, can be found in, France) -> France (14381ms) Where is it? various series 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (some matters, will be found in, various series) -> various series (13354ms) Where is it? a valley 0.222222222222 Where is it? -> $x: (neolithic, be find in, $x) -> (Neolithic artifacts, were found in, a valley) -> a valley (13965ms) Where is it? the boxes 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (No matter, is found in, the boxes) -> the boxes (13496ms) Where is it? the IList 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (the Object, is found in, the IList) -> the IList (13410ms) Where is it? museums 0.222222222222 Where is it? -> $x: (neon, be find in, $x) -> (the neon sign, can only be found in, museums) -> museums (14245ms) Where is it? a greater proportion 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (Plaque-predominant AD, was found in, a greater proportion) -> a greater proportion (13735ms) Where is it? 14 children 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (supragingival plaque, was found in, 14 children) -> 14 children (13850ms) Where is it? more open water 0.222222222222 Where is it? -> $x: (rainbow, be find in, $x) -> (Rainbows, will usually be found in, more open water) -> more open water (13785ms) Where is it? modest amounts 0.222222222222 Where is it? -> $x: (propane, be find in, $x) -> (charcoal propane gas grills, can be found in, modest amounts) -> modest amounts (12993ms) Where is it? brain autopsies 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (That plaque, has been found in, brain autopsies) -> brain autopsies (7951ms) Where is it? the cemetery 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the worlds, is found in, the cemetery) -> the cemetery (14438ms) Where is it? technology 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, can then only be found in, technology) -> technology (13551ms) Where is it? the cell walls 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (gums/mucilage, are found largely in, the cell walls) -> the cell walls (14001ms) Where is it? Texas 0.222222222222 Where is it? -> $x: (space shuttle, be find in, $x) -> (the space shuttle Columbia, has been found in, Texas) -> Texas (14196ms) Where is it? modern Egypt 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (Hamsa hand plaques, are also found in, modern Egypt) -> modern Egypt (14001ms) Where is it? Victoria? 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (the matter, be found in, Victoria?) -> Victoria? (14322ms) Where is it? woodlands 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (Milk snakes, are also found in, woodlands) -> woodlands (14179ms) Where is it? the marvelous book 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, can be found in, the marvelous book) -> the marvelous book (13683ms) Where is it? human 'spaces 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, is to be found in, human 'spaces) -> human 'spaces (13658ms) Where is it? the South Atlantic 0.222222222222 Where is it? -> $x: (penguin, be find in, $x) -> (The King Penguin, is found in, the South Atlantic) -> the South Atlantic (13760ms) Where is it? one place 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (heaven, can only be found in, one place) -> one place (14090ms) Where is it? adventure 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (life, is found in, adventure) -> adventure (13760ms) Where is it? lemons 0.222222222222 Where is it? -> $x: (volatile, be find in, $x) -> (a volatile oil, is also found in, lemons) -> lemons (14307ms) Where is it? controls 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (amyloid-beta plaque pathology, was found in, controls) -> controls (14381ms) Where is it? Latin America 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, is found in, Latin America) -> Latin America (14001ms) Where is it? Job 1:16 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (heaven, is also found in, Job 1:16) -> Job 1:16 (13055ms) Where is it? the full press release 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (IT services, can be found here in, the full press release) -> the full press release (13119ms) Where is it? the powder 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (milk sellers, was found in, the powder) -> the powder (13631ms) Where is it? paints 0.222222222222 Where is it? -> $x: (titanium, be find in, $x) -> (Titanium dioxide, is found in, paints) -> paints (14424ms) Where is it? a rider?s professional contract 0.222222222222 Where is it? -> $x: (recruitment, be find in, $x) -> (recruitment, is n?t found in, a rider?s professional contract) -> a rider?s professional contract (14212ms) Where is it? the flat and 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (marijuana, was found in, the flat and) -> the flat and (13551ms) Where is it? diseased arteries 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (diseased gums, are also found in, diseased arteries) -> diseased arteries (13631ms) Where is it? New Caledonia.It 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (the Araucariaceae family .It, is found only in, New Caledonia.It) -> New Caledonia.It (14395ms) Where is it? religion 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (some it, is found in, religion) -> religion (9146ms) Where is it? America 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, is found in, America) -> America (14337ms) Where is it? Buenos Aires 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, can be found in, Buenos Aires) -> Buenos Aires (13297ms) Where is it? the stone layers 0.222222222222 Where is it? -> $x: (lava, be find in, $x) -> (No fire rocks or lava, are found in, the stone layers) -> the stone layers (13785ms) Where is it? the second argument 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (world, is found in, the second argument) -> the second argument (14245ms) Where is it? Gold Caon 0.222222222222 Where is it? -> $x: (silver, be find in, $x) -> (Native silver, is found in, Gold Caon) -> Gold Caon (13760ms) Where is it? Australia 0.222222222222 Where is it? -> $x: (penguin, be find in, $x) -> (the smallest penguins, are found only in, Australia) -> Australia (14438ms) Where is it? careers services 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (Real World, can be found in, careers services) -> careers services (13870ms) Where is it? the firepit garden 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (A commemorative plaque, can be found in, the firepit garden) -> the firepit garden (13890ms) Where is it? channels 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (life, were found in, channels) -> channels (13297ms) Where is it? the mouth 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (the upper gum line, can also be found elsewhere in, the mouth) -> the mouth (13709ms) Where is it? two other test pits 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (Some objects, were found in, two other test pits) -> two other test pits (14125ms) Where is it? the New Testament 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, may be found in, the New Testament) -> the New Testament (13578ms) Where is it? Costa Rica 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (objects, have been found in, Costa Rica) -> Costa Rica (13024ms) Where is it? monoxida carbon 0.222222222222 Where is it? -> $x: (hemoglobin, be find in, $x) -> (the hemoglobin, was found in, monoxida carbon) -> monoxida carbon (13579ms) Where is it? the Universe 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (the objects, are found in, the Universe) -> the Universe (13354ms) Where is it? the proceedings 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (this spring, is to be found in, the proceedings) -> the proceedings (13496ms) Where is it? the enzyme ATP synthase 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (life, is found in, the enzyme ATP synthase) -> the enzyme ATP synthase (12690ms) Where is it? toothpastes 0.222222222222 Where is it? -> $x: (titanium dioxide, be find in, $x) -> (Titanium dioxide, can be found in, toothpastes) -> toothpastes (14307ms) Where is it? the Kobe area 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (hot spring, is also to be found in, the Kobe area) -> the Kobe area (14337ms) Where is it? Wace 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (its spring, is found in, Wace) -> Wace (12961ms) Where is it? the ?cotos 0.222222222222 Where is it? -> $x: (rainbow, be find in, $x) -> (rainbow trout, can be found in, the ?cotos) -> the ?cotos (13578ms) Where is it? the journey 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (life, is found in, the journey) -> the journey (14367ms) Where is it? men 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (gum disease, is more likely to be found in, men) -> men (13605ms) Where is it? great content 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (Iron, is found in, great content) -> great content (13760ms) Where is it? the lobby 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (Life, can be found in, the lobby) -> the lobby (14352ms) Where is it? the blood 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (iron, is found in, the blood) -> the blood (14307ms) Where is it? defendant?s pocket 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (marijuana, was found in, defendant?s pocket) -> defendant?s pocket (13410ms) Where is it? the nucleus 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (life, is found in, the nucleus) -> the nucleus (13605ms) Where is it? column four 0.222222222222 Where is it? -> $x: (titanium, be find in, $x) -> (Titanium, is found in, column four) -> column four (13440ms) Where is it? Hakemi Use 0.222222222222 Where is it? -> $x: (neolithic, be find in, $x) -> (a Late Neolithic settlement, have been found in, Hakemi Use) -> Hakemi Use (14001ms) Where is it? places 0.222222222222 Where is it? -> $x: (smooth, be find in, $x) -> (This hard smooth rock, can be found in, places) -> places (13927ms) Where is it? Brisbane 0.222222222222 Where is it? -> $x: (limo, be find in, $x) -> (limo rentals, could be found in, Brisbane) -> Brisbane (14337ms) Where is it? cold , clear water 0.222222222222 Where is it? -> $x: (rainbow, be find in, $x) -> (rainbow trout, are normally found in very, cold , clear water) -> cold , clear water (14261ms) Where is it? finger nails 0.222222222222 Where is it? -> $x: (titanium, be find in, $x) -> (Titanium, was regularly found in, finger nails) -> finger nails (14307ms) Where is it? a rescue 0.222222222222 Where is it? -> $x: (smooth, be find in, $x) -> (the coarse and smooth collie, can be found in, a rescue) -> a rescue (13382ms) Where is it? the U.S. horoscope 0.222222222222 Where is it? -> $x: (neptune, be find in, $x) -> (Mars and Neptune, is also found in, the U.S. horoscope) -> the U.S. horoscope (14438ms) Where is it? the Prep. 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (Matter, will be found in, the Prep.) -> the Prep. (13551ms) Where is it? Firestarters 1 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (Spring, may be found in, Firestarters 1) -> Firestarters 1 (13683ms) Where is it? the environment 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (No reports of it, being found in, the environment) -> the environment (13410ms) Where is it? death 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (life, is found in, death) -> death (13055ms) Where is it? a variety of foods 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (Iron, is found in, a variety of foods) -> a variety of foods (14261ms) Where is it? the X-Files office 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (2. It, can be frequently found in, the X-Files office) -> the X-Files office (13382ms) Where is it? the interior 0.222222222222 Where is it? -> $x: (gravity, be find in, $x) -> (strong time-varying gravity, may be found in, the interior) -> the interior (5678ms) Where is it? any one of three states 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (Matter, may be found in, any one of three states) -> any one of three states (14307ms) Where is it? the north corner 0.222222222222 Where is it? -> $x: (smooth, be find in, $x) -> (smooth and fluted tiles, was found in, the north corner) -> the north corner (13760ms) Where is it? coconut 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (breast milk ?, can also be found in, coconut) -> coconut (13578ms) Where is it? prayer or meditation 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (some it, is found in, prayer or meditation) -> prayer or meditation (13810ms) Where is it? a broad range 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (the spring, can be found in, a broad range) -> a broad range (14073ms) Where is it? Central Australia 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (The Ghost Gum, can be found in, Central Australia) -> Central Australia (13055ms) Where is it? myth 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, is found in, myth) -> myth (14090ms) Where is it? high concentration 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (milk, is found in, high concentration) -> high concentration (13709ms) Where is it? the pharmaceutical aisle 0.222222222222 Where is it? -> $x: (soda, be find in, $x) -> (The baking soda, can only be found in, the pharmaceutical aisle) -> the pharmaceutical aisle (13965ms) Where is it? Falls Park 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (This plaque, can be found in, Falls Park) -> Falls Park (13325ms) Where is it? the gut 0.222222222222 Where is it? -> $x: (neon, be find in, $x) -> (neon tetras, are often found in, the gut) -> the gut (13683ms) Where is it? pairs or groups 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (It?s gregarious, is generally found in, pairs or groups) -> pairs or groups (14196ms) Where is it? the desert 0.222222222222 Where is it? -> $x: (soda, be find in, $x) -> (soda, is found in, the desert) -> the desert (14410ms) Where is it? brake dust 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (Iron, is found in, brake dust) -> brake dust (12175ms) Where is it? history 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (Meaning, could be found in, history) -> history (13890ms) Where is it? brittle 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (milk powder, is most commonly found in, brittle) -> brittle (14424ms) Where is it? golf 0.222222222222 Where is it? -> $x: (etiquette, be find in, $x) -> (etiquette, is found in, golf) -> golf (14229ms) Where is it? toothpaste 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (Guar gum, is also found in, toothpaste) -> toothpaste (14162ms) Where is it? river valleys 0.222222222222 Where is it? -> $x: (smooth, be find in, $x) -> (smooth and fertile soil, is found in, river valleys) -> river valleys (14410ms) Where is it? Antarctica 0.222222222222 Where is it? -> $x: (penguin, be find in, $x) -> (penguins, are found in, Antarctica) -> Antarctica (14381ms) Where is it? the Petra basin 0.222222222222 Where is it? -> $x: (neolithic, be find in, $x) -> (Neolithic occupation, has been found in, the Petra basin) -> the Petra basin (14073ms) Where is it? the right hand column 0.222222222222 Where is it? -> $x: (kennel, be find in, $x) -> (St Giles kennels, can be found in, the right hand column) -> the right hand column (13055ms) Where is it? the Air Sparging 0.222222222222 Where is it? -> $x: (volatile, be find in, $x) -> (volatile contaminants, can be found in, the Air Sparging) -> the Air Sparging (14424ms) Where is it? Pittsburg 0.222222222222 Where is it? -> $x: (penguin, be find in, $x) -> (many Penguins, are found in, Pittsburg) -> Pittsburg (13946ms) Where is it? dye-sensitized solar cells 0.222222222222 Where is it? -> $x: (silicon, be find in, $x) -> (silicon solar cells, can be found in, dye-sensitized solar cells) -> dye-sensitized solar cells (14179ms) Where is it? shoes 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (Spring denim, is being found in, shoes) -> shoes (14212ms) Where is it? paints and solvents 0.222222222222 Where is it? -> $x: (volatile, be find in, $x) -> (volatile organic compounds, are found in, paints and solvents) -> paints and solvents (13830ms) Where is it? the central/downtown part 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (Colorado Springs, can be found in, the central/downtown part) -> the central/downtown part (13946ms) Where is it? the return 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (spring, is found in, the return) -> the return (13440ms) Where is it? various parts 0.222222222222 Where is it? -> $x: (penguin, be find in, $x) -> (these penguins, are currently found in, various parts) -> various parts (13382ms) Where is it? the surface layer 0.222222222222 Where is it? -> $x: (silicon, be find in, $x) -> (Phosphate and silicon, were found in, the surface layer) -> the surface layer (5124ms) Where is it? the kind 0.222222222222 Where is it? -> $x: (soda, be find in, $x) -> (soda glass, might be found in, the kind) -> the kind (13238ms) Where is it? large cities 0.222222222222 Where is it? -> $x: (slide, be find in, $x) -> (Slide films, are mostly only found in, large cities) -> large cities (13946ms) Where is it? lean red meats 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (Iron, is mostly found in, lean red meats) -> lean red meats (7703ms) Where is it? the St . Elias Mountains 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, can be found in, the St . Elias Mountains) -> the St . Elias Mountains (14337ms) Where is it? the National Gallery 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, can be found in, the National Gallery) -> the National Gallery (13325ms) Where is it? the charts 0.222222222222 Where is it? -> $x: (neptune, be find in, $x) -> (Neptune-Mars aspects, are often found in, the charts) -> the charts (13983ms) Where is it? the UK, 0.222222222222 Where is it? -> $x: (smooth, be find in, $x) -> (The smooth snake, is found in, the UK,) -> the UK, (13946ms) Where is it? the distraction 0.222222222222 Where is it? -> $x: (rainbow, be find in, $x) -> (the rainbow, is found in, the distraction) -> the distraction (14196ms) Where is it? bookstores 0.222222222222 Where is it? -> $x: (penguin, be find in, $x) -> (his many Penguin editions, are found in used, bookstores) -> bookstores (13297ms) Where is it? the South Sandwich Islands 0.222222222222 Where is it? -> $x: (penguin, be find in, $x) -> (penguin, is found in, the South Sandwich Islands) -> the South Sandwich Islands (13658ms) Where is it? various locations 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (rose gums, has been found in, various locations) -> various locations (14337ms) Where is it? the surrounding area 0.222222222222 Where is it? -> $x: (neolithic, be find in, $x) -> (Neolithic times, have been found in, the surrounding area) -> the surrounding area (14277ms) Where is it? the middle 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (both heaven and hell, are found in, the middle) -> the middle (14261ms) Where is it? the internal organs 0.222222222222 Where is it? -> $x: (smooth, be find in, $x) -> (Smooth muscle, is found in, the internal organs) -> the internal organs (14108ms) Where is it? deeper waters 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (matter, are usually found independently in, deeper waters) -> deeper waters (14037ms) Where is it? the PETSc website 0.222222222222 Where is it? -> $x: (slide, be find in, $x) -> (The tutorial slides, can be found in, the PETSc website) -> the PETSc website (13760ms) Where is it? swampy areas 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (Black Gum trees, are often found growing in, swampy areas) -> swampy areas (13909ms) Where is it? the central and northern portions 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> ('s springs, are found in, the central and northern portions) -> the central and northern portions (13149ms) Where is it? Ed 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (A plaque, was found in, Ed) -> Ed (13523ms) Where is it? pairs 0.222222222222 Where is it? -> $x: (toucan, be find in, $x) -> (Toucans, are usually found in, pairs) -> pairs (14352ms) Where is it? the female flowering plant 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (marijuana, is found in, the female flowering plant) -> the female flowering plant (14322ms) Where is it? the Panamints 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (Many springs, are found in, the Panamints) -> the Panamints (14337ms) Where is it? nearly every pond 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (spring peepers, are found in, nearly every pond) -> nearly every pond (13523ms) Where is it? the aorta 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (plaque, is found in, the aorta) -> the aorta (13382ms) Where is it? the eye 0.222222222222 Where is it? -> $x: (smooth, be find in, $x) -> (Smooth muscle, is found in, the eye) -> the eye (13024ms) Where is it? three forms 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (Iron, may be found in, three forms) -> three forms (14229ms) Where is it? the autograph 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (the matter, can be found in, the autograph) -> the autograph (13785ms) Where is it? the oil samples 0.222222222222 Where is it? -> $x: (slide, be find in, $x) -> (Significant sliding particles, were found in, the oil samples) -> the oil samples (13810ms) Where is it? John 1:29 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, is found in, John 1:29) -> John 1:29 (14108ms) Where is it? a liquid or semi liquid state 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (gums, are found in, a liquid or semi liquid state) -> a liquid or semi liquid state (13578ms) Where is it? Trailer Life 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (milk, can be found in, Trailer Life) -> Trailer Life (14438ms) Where is it? Madagascar 0.222222222222 Where is it? -> $x: (rainbow, be find in, $x) -> (Rainbow Moonstone, can also be found in, Madagascar) -> Madagascar (14162ms) Where is it? batteries 0.222222222222 Where is it? -> $x: (silver, be find in, $x) -> (Silver, is found in, batteries) -> batteries (12961ms) Where is it? the chapter 0.222222222222 Where is it? -> $x: (neon, be find in, $x) -> (neon sign transformers, can be found in, the chapter) -> the chapter (14125ms) Where is it? Tubby Dog 0.222222222222 Where is it? -> $x: (hot dog, be find in, $x) -> (hot dog enthusiasts, can be found in, Tubby Dog) -> Tubby Dog (14337ms) Where is it? two different types 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (Matter, may be found in, two different types) -> two different types (13468ms) Where is it? the second rampart 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (vitrified matter, are found in, the second rampart) -> the second rampart (13440ms) Where is it? compounds 0.222222222222 Where is it? -> $x: (silicon, be find in, $x) -> (Silicon, is most predominantly found in, compounds) -> compounds (14367ms) Where is it? open areas 0.222222222222 Where is it? -> $x: (toucan, be find in, $x) -> (Toucans, are found in, open areas) -> open areas (13297ms) Where is it? the Northern hemisphere 0.222222222222 Where is it? -> $x: (penguin, be find in, $x) -> (the penguin, were found in, the Northern hemisphere) -> the Northern hemisphere (13238ms) Where is it? March 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (The object, was found in, March) -> March (14090ms) Where is it? the relationship 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (Meaning, is found in, the relationship) -> the relationship (14352ms) Where is it? vertebrates 0.222222222222 Where is it? -> $x: (hemoglobin, be find in, $x) -> (Hemoglobin, is found in, vertebrates) -> vertebrates (13119ms) Where is it? the Fort Myers Beach Community park 0.222222222222 Where is it? -> $x: (slide, be find in, $x) -> (slides, can be found in, the Fort Myers Beach Community park) -> the Fort Myers Beach Community park (13870ms) Where is it? any literal translation 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (the Heaven, is to be found in, any literal translation) -> any literal translation (14001ms) Where is it? a mansion 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (the Heaven?s Gate cult, were found in, a mansion) -> a mansion (13496ms) Where is it? wetland areas 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (Spring peepers, are found in, wetland areas) -> wetland areas (14352ms) Where is it? mobile phones 0.222222222222 Where is it? -> $x: (silicon, be find in, $x) -> (CSR?s BlueCore silicon, is to be found in, mobile phones) -> mobile phones (13709ms) Where is it? the ash 0.222222222222 Where is it? -> $x: (silicon, be find in, $x) -> (Silicon, is found in, the ash) -> the ash (13983ms) Where is it? textile manufacture 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (gum arabic, was found to be useful in, textile manufacture) -> textile manufacture (13946ms) Where is it? any number 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (the matter, can be found in, any number) -> any number (13830ms) Where is it? the Third Fundamental proposition 0.222222222222 Where is it? -> $x: (slavery, be find in, $x) -> (slavery, is to be found in, the Third Fundamental proposition) -> the Third Fundamental proposition (14125ms) Where is it? the AAP brochure 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (breast milk, can be found in, the AAP brochure) -> the AAP brochure (14145ms) Where is it? cell culture 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (no plaque formation, was found in, cell culture) -> cell culture (7703ms) Where is it? three states 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (Matter, can be found in, three states) -> three states (13850ms) Where is it? South America 0.222222222222 Where is it? -> $x: (penguin, be find in, $x) -> (Gentoo penguins, were found in, South America) -> South America (13325ms) Where is it? a state 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (matter, is found to exist in, a state) -> a state (13631ms) Where is it? the Galapagos Islands 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, are found in, the Galapagos Islands) -> the Galapagos Islands (13209ms) Where is it? Genesis 12:1-3 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, is first found in, Genesis 12:1-3) -> Genesis 12:1-3 (13870ms) Where is it? Chapter 5 0.222222222222 Where is it? -> $x: (gravity, be find in, $x) -> (the gravity gun, is found in, Chapter 5) -> Chapter 5 (12690ms) Where is it? scripture 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (Heaven, can also be found in, scripture) -> scripture (13055ms) Where is it? the vessel 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (marijuana, were found in, the vessel) -> the vessel (13709ms) Where is it? the head 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (...Meaning, can only be found in, the head) -> the head (13890ms) Where is it? the offices 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (Similar gum sticks, were also found in, the offices) -> the offices (13382ms) Where is it? Augustine 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (matter, is to be found in, Augustine) -> Augustine (13830ms) Where is it? 33.7 percent 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (Carotid plaques, were found in, 33.7 percent) -> 33.7 percent (12961ms) Where is it? the midst 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, be found in, the midst) -> the midst (14037ms) Where is it? the natural order 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, cannot be found in, the natural order) -> the natural order (13605ms) Where is it? Catalhoyuk 0.222222222222 Where is it? -> $x: (neolithic, be find in, $x) -> (Neolithic Period, are found in, Catalhoyuk) -> Catalhoyuk (12961ms) Where is it? the fast water 0.222222222222 Where is it? -> $x: (rainbow, be find in, $x) -> (Rainbow trout, can be found in, the fast water) -> the fast water (14438ms) Where is it? the trunk 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (Marijuana, was found in, the trunk) -> the trunk (13683ms) Where is it? any quick and easy way 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (these matters, can be found in, any quick and easy way) -> any quick and easy way (13440ms) Where is it? jewelry 0.222222222222 Where is it? -> $x: (silver, be find in, $x) -> (silver, is usually found in, jewelry) -> jewelry (11801ms) Where is it? the Life Sciences chapter 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (Life, can be found in, the Life Sciences chapter) -> the Life Sciences chapter (13810ms) Where is it? the west-Jordan district 0.222222222222 Where is it? -> $x: (lava, be find in, $x) -> (No lava, is found in, the west-Jordan district) -> the west-Jordan district (13440ms) Where is it? the earth 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (Heaven, will then be found in, the earth) -> the earth (13657ms) Where is it? the emissions 0.222222222222 Where is it? -> $x: (volatile, be find in, $x) -> (Volatile Organic Compounds, are found in, the emissions) -> the emissions (13946ms) Where is it? the river basins 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (Milk production, is found primarily in, the river basins) -> the river basins (14322ms) Where is it? Queensland 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (spring, is found in, Queensland) -> Queensland (13709ms) Where is it? white 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (early spring, are most often found in, white) -> white (13180ms) Where is it? the early Theravada tradition 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (objects, is also found in, the early Theravada tradition) -> the early Theravada tradition (13850ms) Where is it? Genesis 9:1-16 0.222222222222 Where is it? -> $x: (rainbow, be find in, $x) -> (the rainbow, is found in, Genesis 9:1-16) -> Genesis 9:1-16 (14438ms) Where is it? the Georgians 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (no matter, might be found in, the Georgians) -> the Georgians (5124ms) Where is it? politics 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, is found in, politics) -> politics (13496ms) Where is it? the vehicle 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (Marijuana, was allegedly found in, the vehicle) -> the vehicle (14352ms) Where is it? Lamb 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (Marijuana, was found in, Lamb) -> Lamb (13709ms) Where is it? Fayum 0.222222222222 Where is it? -> $x: (neolithic, be find in, $x) -> (the Neolithic, was found in, Fayum) -> Fayum (13551ms) Where is it? areas 0.222222222222 Where is it? -> $x: (silicon, be find in, $x) -> (Silicon, is found in, areas) -> areas (14145ms) Where is it? an inner joint 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (? iron, was found in, an inner joint) -> an inner joint (13410ms) Where is it? the credits 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (world movies, can be found in, the credits) -> the credits (13965ms) Where is it? turkey 0.222222222222 Where is it? -> $x: (silver, be find in, $x) -> (silver, had been found in, turkey) -> turkey (13657ms) Where is it? excess 0.222222222222 Where is it? -> $x: (smooth, be find in, $x) -> (smooth flow, was found in, excess) -> excess (13683ms) Where is it? plain view 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (marijuana, was found in, plain view) -> plain view (13683ms) Where is it? fruit 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (cellulose and gums, are also found in, fruit) -> fruit (13551ms) Where is it? 45 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (Carotid plaque, was found in, 45) -> 45 (14037ms) Where is it? the enjoyment 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (his Heaven, is only found in, the enjoyment) -> the enjoyment (13325ms) Where is it? abundance 0.222222222222 Where is it? -> $x: (rainbow, be find in, $x) -> (cremation rainbow-colored sariras, were found in, abundance) -> abundance (14307ms) Where is it? Mexico 0.222222222222 Where is it? -> $x: (toucan, be find in, $x) -> (the toucans, are only found in, Mexico) -> Mexico (14162ms) Where is it? Internet 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (Many IT certification forums, can be found in, Internet) -> Internet (13735ms) Where is it? dead stars 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (matter, can be found in, dead stars) -> dead stars (14090ms) Where is it? standard textbooks 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (matter, can be found in, standard textbooks) -> standard textbooks (13354ms) Where is it? a parking lot 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (A Spring City nurse, was found in, a parking lot) -> a parking lot (14381ms) Where is it? the Ecuadorian rainforest 0.222222222222 Where is it? -> $x: (toucan, be find in, $x) -> (toucan species, are also found in, the Ecuadorian rainforest) -> the Ecuadorian rainforest (13965ms) Where is it? the combined state 0.222222222222 Where is it? -> $x: (silver, be find in, $x) -> (Silver, is generally found in, the combined state) -> the combined state (13325ms) Where is it? the Asian food sections 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (Coconut milk, can usually be found in, the Asian food sections) -> the Asian food sections (13325ms) Where is it? every nation 0.222222222222 Where is it? -> $x: (recruitment, be find in, $x) -> (sales recruitment agencies, can be found in, every nation) -> every nation (14367ms) Where is it? trust 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (Life, is found in, trust) -> trust (13468ms) Where is it? a beautiful residential neighborhood 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (Silver Spring, is found in, a beautiful residential neighborhood) -> a beautiful residential neighborhood (13468ms) Where is it? the urine 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (marijuana, is also found in, the urine) -> the urine (13870ms) Where is it? several bags 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (marijuana, was found in, several bags) -> several bags (13382ms) Where is it? India and Madagascar 0.222222222222 Where is it? -> $x: (rainbow, be find in, $x) -> (The rainbow variety, can be found in, India and Madagascar) -> India and Madagascar (13149ms) Where is it? human breastmilk 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> ('s milk, can be found in, human breastmilk) -> human breastmilk (14395ms) Where is it? excavation contexts 0.222222222222 Where is it? -> $x: (neolithic, be find in, $x) -> (the Neolithic period, have been found in, excavation contexts) -> excavation contexts (12690ms) Where is it? traditional , canonical literature 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, are found in, traditional , canonical literature) -> traditional , canonical literature (13209ms) Where is it? the Knossos region 0.222222222222 Where is it? -> $x: (neolithic, be find in, $x) -> (Neolithic Era, have been found in, the Knossos region) -> the Knossos region (14438ms) Where is it? the IT Support Module 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (the IT Induction, can be found in, the IT Support Module) -> the IT Support Module (12690ms) Where is it? two unlikely places 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the worlds, can be found in, two unlikely places) -> two unlikely places (14108ms) Where is it? red meat and poultry 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (Iron, can be found in, red meat and poultry) -> red meat and poultry (13735ms) Where is it? the biosphere 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (matter, are found in, the biosphere) -> the biosphere (12690ms) Where is it? the garden 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (an object, had been found in, the garden) -> the garden (14073ms) Where is it? rice milk 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (Xanthan gum, can be also found in, rice milk) -> rice milk (14438ms) Where is it? numerous dimensions 0.222222222222 Where is it? -> $x: (propane tank, be find in, $x) -> (Propane tanks, can be found in, numerous dimensions) -> numerous dimensions (13024ms) Where is it? bundles 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (White matter, is found in, bundles) -> bundles (13268ms) Where is it? full here 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (Milk, can be found in, full here) -> full here (14395ms) Where is it? the following passages 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (heavens, is found in, the following passages) -> the following passages (7703ms) Where is it? the north half and one 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (Spring Peeper, were found generally in, the north half and one) -> the north half and one (13830ms) Where is it? Jupiter 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (object, can be expected to be found in, Jupiter) -> Jupiter (14055ms) Where is it? rivers 0.222222222222 Where is it? -> $x: (smooth, be find in, $x) -> (Habitat Smooth softshells, are found in, rivers) -> rivers (12993ms) Where is it? the northwest section 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (Quail Springs Quail Springs, is found in, the northwest section) -> the northwest section (13785ms) Where is it? India and Dwaraka 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (Iron, was found in, India and Dwaraka) -> India and Dwaraka (13268ms) Where is it? the East Humber River 0.222222222222 Where is it? -> $x: (rainbow, be find in, $x) -> (rainbow trout, were found in, the East Humber River) -> the East Humber River (14410ms) Where is it? the link 0.222222222222 Where is it? -> $x: (slide, be find in, $x) -> (The slides, can be found in, the link) -> the link (14179ms) Where is it? Bad Ems 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (spring waters, can be found in, Bad Ems) -> Bad Ems (13658ms) Where is it? the coastal rivers 0.222222222222 Where is it? -> $x: (rainbow, be find in, $x) -> (Rainbow Trout, was found in, the coastal rivers) -> the coastal rivers (14261ms) Where is it? Fukushima prefecture 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (The contaminated milk, was found in, Fukushima prefecture) -> Fukushima prefecture (14229ms) Where is it? Two Treatises 0.222222222222 Where is it? -> $x: (slavery, be find in, $x) -> (Slavery, may be found in, Two Treatises) -> Two Treatises (14128ms) Where is it? protection/move logs 0.222222222222 Where is it? -> $x: (octet, be find in, $x) -> (255 octets, can be found in, protection/move logs) -> protection/move logs (13631ms) Where is it? small amounts 0.222222222222 Where is it? -> $x: (volatile, be find in, $x) -> (Volatile organic compounds, can even be found in, small amounts) -> small amounts (14212ms) Where is it? subjects 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (Less plaque accumulation, was found in, subjects) -> subjects (14322ms) Where is it? grocery stores 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (Soy Milk, may be found in, grocery stores) -> grocery stores (13297ms) Where is it? the house 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (marijuana, was found in, the house) -> the house (14307ms) Where is it? ores 0.222222222222 Where is it? -> $x: (silver, be find in, $x) -> (Silver, is found in, ores) -> ores (13850ms) Where is it? the teeth 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (decay and gum disease, are found in between, the teeth) -> the teeth (13354ms) Where is it? the central garage locker 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (Marijuana, was also found in, the central garage locker) -> the central garage locker (13354ms) Where is it? fresh water rivers and lakes 0.222222222222 Where is it? -> $x: (rainbow, be find in, $x) -> (The rainbow bass, is found only in, fresh water rivers and lakes) -> fresh water rivers and lakes (13605ms) Where is it? Cano Negro 0.222222222222 Where is it? -> $x: (rainbow, be find in, $x) -> (rainbows, are found in, Cano Negro) -> Cano Negro (13149ms) Where is it? wet and dry forest 0.222222222222 Where is it? -> $x: (rainbow, be find in, $x) -> (Habitat Rainbow boas, may be found in, wet and dry forest) -> wet and dry forest (14037ms) Where is it? a room 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (marijuana, was reportedly found in, a room) -> a room (14145ms) Where is it? the back seat 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (marijuana, was found in, the back seat) -> the back seat (13354ms) Where is it? urban markets 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (milk and milk products, is found in, urban markets) -> urban markets (13354ms) Where is it? the Word of God 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (Life, is only found in, the Word of God) -> the Word of God (14322ms) Where is it? the financial jungle 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (the mean, is found everywhere in, the financial jungle) -> the financial jungle (13268ms) Where is it? the plant kingdom 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (Iron, is found in, the plant kingdom) -> the plant kingdom (13870ms) Where is it? Pulse 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, is found in, Pulse) -> Pulse (14196ms) Where is it? fresh bone 0.222222222222 Where is it? -> $x: (hemoglobin, be find in, $x) -> (blood cells and hemoglobin, have been found in, fresh bone) -> fresh bone (13709ms) Where is it? Africa 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, are found in, Africa) -> Africa (14381ms) Where is it? aerospace machines 0.222222222222 Where is it? -> $x: (titanium, be find in, $x) -> (titanium, can be found in, aerospace machines) -> aerospace machines (13024ms) Where is it? Kathys purse 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (Marijuana, was found in, Kathys purse) -> Kathys purse (13810ms) Where is it? cities 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (life, can be found in, cities) -> cities (13496ms) Where is it? the Alps 0.222222222222 Where is it? -> $x: (neolithic, be find in, $x) -> (the Neolithic man, was found in, the Alps) -> the Alps (14212ms) Where is it? the communal practice 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, is to be found in, the communal practice) -> the communal practice (3151ms) Where is it? THE CELLS 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (A TRIPEPTIDE. IT, IS FOUND IN, THE CELLS) -> THE CELLS (13605ms) Where is it? instances 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (general it, generally is only found in, instances) -> instances (14337ms) Where is it? multiple cultures 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (milk production, is found in, multiple cultures) -> multiple cultures (14001ms) Where is it? versions 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (Springs, can only be found in, versions) -> versions (3660ms) Where is it? spinach 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (iron, is also found in, spinach) -> spinach (13810ms) Where is it? lymphatic vessels 0.222222222222 Where is it? -> $x: (smooth, be find in, $x) -> (Smooth muscle, is also found in, lymphatic vessels) -> lymphatic vessels (14125ms) Where is it? Pakistan 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (coconut milk, are rarely found in, Pakistan) -> Pakistan (14162ms) Where is it? several nearby grottos 0.222222222222 Where is it? -> $x: (neolithic, be find in, $x) -> (neolithic vestiges, were found in, several nearby grottos) -> several nearby grottos (13024ms) Where is it? 17 % 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (significant cholesterol plaque blockage, was found in, 17 %) -> 17 % (13870ms) Where is it? sweet tasting foods 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (plaque, are found In, sweet tasting foods) -> sweet tasting foods (13086ms) Where is it? the walls 0.222222222222 Where is it? -> $x: (smooth, be find in, $x) -> (Smooth muscle, is found in, the walls) -> the walls (14381ms) Where is it? the fittings 0.222222222222 Where is it? -> $x: (titanium, be find in, $x) -> (Aluminum metal and titanium metal, was found in, the fittings) -> the fittings (13850ms) Where is it? whey 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (milk oligosaccharides, are found in, whey) -> whey (14352ms) Where is it? clothespins 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (Torsion springs, are found in, clothespins) -> clothespins (3660ms) Where is it? formations 0.222222222222 Where is it? -> $x: (silicon, be find in, $x) -> (Perfectly round silicon dioxide, have been found in, formations) -> formations (14108ms) Where is it? Hansard 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (a matter, may be found in, Hansard) -> Hansard (13086ms) Where is it? a drop 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (worlds, can be found in, a drop) -> a drop (14352ms) Where is it? server rooms 0.222222222222 Where is it? -> $x: (slide, be find in, $x) -> (a slide, is normally found in, server rooms) -> server rooms (14090ms) Where is it? today?s Armenia 0.222222222222 Where is it? -> $x: (neolithic, be find in, $x) -> (The oldest Neolithic relics, are found in, today?s Armenia) -> today?s Armenia (14145ms) Where is it? soil 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (Pullularia :It, is normally found in, soil) -> soil (12690ms) Where is it? an old act 0.222222222222 Where is it? -> $x: (slavery, be find in, $x) -> (Slavery, is to be found in, an old act) -> an old act (12993ms) Where is it? the villages 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (Mineral springs, can be found in, the villages) -> the villages (12993ms) Where is it? 65.6 % 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (dental plaque, was found in, 65.6 %) -> 65.6 % (14073ms) Where is it? hemoglobin 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (Iron, is found in, hemoglobin) -> hemoglobin (14229ms) Where is it? sunscreens 0.222222222222 Where is it? -> $x: (titanium dioxide, be find in, $x) -> (titanium dioxide nanoparticles, are also found in, sunscreens) -> sunscreens (13605ms) Where is it? rain and snow 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (traces of it, are found in, rain and snow) -> rain and snow (13605ms) Where is it? The Following Departments 0.222222222222 Where is it? -> $x: (titanium, be find in, $x) -> (Titanium, Can Be Found In, The Following Departments) -> The Following Departments (13735ms) Where is it? the most surprising locations 0.222222222222 Where is it? -> $x: (penguin, be find in, $x) -> (penguins, can be found in, the most surprising locations) -> the most surprising locations (5678ms) Where is it? Fairley?s possession 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (Marijuana, was then found in, Fairley?s possession) -> Fairley?s possession (14322ms) Where is it? high levels 0.222222222222 Where is it? -> $x: (silicon, be find in, $x) -> (silicon Silicon, is found in, high levels) -> high levels (13551ms) Where is it? a garden 0.222222222222 Where is it? -> $x: (neolithic, be find in, $x) -> (the Neolithic Period, was found in, a garden) -> a garden (13086ms) Where is it? South 0.222222222222 Where is it? -> $x: (toucan, be find in, $x) -> (Toucans, are found in, South) -> South (13830ms) Where is it? the islands 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, can be found in, the islands) -> the islands (13468ms) Where is it? the doctrine 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (this matter, is found in, the doctrine) -> the doctrine (14424ms) Where is it? the Shades 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (This object, is found in, the Shades) -> the Shades (14395ms) Where is it? different designs and models 0.222222222222 Where is it? -> $x: (silver, be find in, $x) -> (Silver earrings, can be found in, different designs and models) -> different designs and models (13382ms) Where is it? a range 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (Iron, can be found in, a range) -> a range (14245ms) Where is it? 4kbit or 64kbit size 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (-It, usually is found in, 4kbit or 64kbit size) -> 4kbit or 64kbit size (14162ms) Where is it? depictions 0.222222222222 Where is it? -> $x: (smooth, be find in, $x) -> (smooth-feathered corbies, are found in, depictions) -> depictions (14162ms) Where is it? the concentration 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (life, is found in, the concentration) -> the concentration (13785ms) Where is it? fortified breakfast cereals 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (Iron, is also found in, fortified breakfast cereals) -> fortified breakfast cereals (7703ms) Where is it? Java 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (Objects, are found also in, Java) -> Java (13605ms) Where is it? solid or liquid forms 0.222222222222 Where is it? -> $x: (volatile, be find in, $x) -> (Volatile Organic Compounds, are found in, solid or liquid forms) -> solid or liquid forms (14001ms) Where is it? a sack 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (Gum opium, was found in, a sack) -> a sack (13735ms) Where is it? the sediments 0.222222222222 Where is it? -> $x: (silver, be find in, $x) -> (Silver, is also found in, the sediments) -> the sediments (13055ms) Where is it? ?structural comprehension? 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (mean values, were found in, ?structural comprehension?) -> ?structural comprehension? (13965ms) Where is it? a videotape 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, is found in, a videotape) -> a videotape (14292ms) Where is it? work or leisure 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (Meaning, cannot be found in, work or leisure) -> work or leisure (14196ms) Where is it? Section IV.A.2 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (this matter, can be found in, Section IV.A.2) -> Section IV.A.2 (14277ms) Where is it? more than 50 percent 0.222222222222 Where is it? -> $x: (silicon, be find in, $x) -> (silicon oils, can be found in, more than 50 percent) -> more than 50 percent (13468ms) Where is it? Genesis 9:25-27 0.222222222222 Where is it? -> $x: (slavery, be find in, $x) -> (slavery and segregation, is found in, Genesis 9:25-27) -> Genesis 9:25-27 (13238ms) Where is it? the bass playing 0.222222222222 Where is it? -> $x: (magma, be find in, $x) -> (a strong Magma feeling, is to be found in, the bass playing) -> the bass playing (3660ms) Where is it? pasteurized milk 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (milk, is found in, pasteurized milk) -> pasteurized milk (13180ms) Where is it? Pattaya 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world?s, best is found in, Pattaya) -> Pattaya (13870ms) Where is it? the toilet 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (marijuana, was found in, the toilet) -> the toilet (13657ms) Where is it? Ecuador 0.222222222222 Where is it? -> $x: (soda, be find in, $x) -> (soda, can be found everywhere in, Ecuador) -> Ecuador (12961ms) Where is it? the Torah 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (the heavens, is found a second time in, the Torah) -> the Torah (14395ms) Where is it? tumors 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (7. It, has been found in, tumors) -> tumors (14229ms) Where is it? the Council Conclusions 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (this spring, are to be found in, the Council Conclusions) -> the Council Conclusions (14438ms) Where is it? current political battles 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (Meaning, is to be found in, current political battles) -> current political battles (14196ms) Where is it? the treatment 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (gum, has also been found to be useful in, the treatment) -> the treatment (13354ms) Where is it? non-hematopoietic organs 0.222222222222 Where is it? -> $x: (hemoglobin, be find in, $x) -> (hemoglobin, has been found in, non-hematopoietic organs) -> non-hematopoietic organs (13209ms) Where is it? the medicine cabinet 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (only it, is to be found in, the medicine cabinet) -> the medicine cabinet (13657ms) Where is it? a plastic baggie 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (marijuana, were found in, a plastic baggie) -> a plastic baggie (13468ms) Where is it? The New Yorker 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (the matter, can be found in, The New Yorker) -> The New Yorker (13830ms) Where is it? meteorites 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (iron, is also found in, meteorites) -> meteorites (13496ms) Where is it? normal aging 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (plaques and tangles, can be found in, normal aging) -> normal aging (13325ms) Where is it? the brain 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (normal and senile plaque, was found in, the brain) -> the brain (14212ms) Where is it? New Guinea 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (gum trees, are found in, New Guinea) -> New Guinea (12174ms) Where is it? Maximum Milk Thistle? 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (milk thistle, is found in, Maximum Milk Thistle?) -> Maximum Milk Thistle? (14261ms) Where is it? Jerrold Katz 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, may be found in, Jerrold Katz) -> Jerrold Katz (14395ms) Where is it? every room 0.222222222222 Where is it? -> $x: (recycle bin, be find in, $x) -> (Recycling bins, can be found in, every room) -> every room (14179ms) Where is it? the building 0.222222222222 Where is it? -> $x: (propane, be find in, $x) -> (Six propane gas cylinders, were found in, the building) -> the building (14277ms) Where is it? the county 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (iron, is found in, the county) -> the county (13086ms) Where is it? the Atlantic Ocean 0.222222222222 Where is it? -> $x: (silver, be find in, $x) -> (silver, were recently found in, the Atlantic Ocean) -> the Atlantic Ocean (14073ms) Where is it? sufficient amounts 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (milk, are found in, sufficient amounts) -> sufficient amounts (14292ms) Where is it? currents 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, are found in, currents) -> currents (14261ms) Where is it? Iraq 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (matter, is found in, Iraq) -> Iraq (14307ms) Where is it? Southeast Idaho 0.222222222222 Where is it? -> $x: (lava, be find in, $x) -> (Lava Hot Spring, are found in, Southeast Idaho) -> Southeast Idaho (14352ms) Where is it? the appendix 0.222222222222 Where is it? -> $x: (slavery, be find in, $x) -> (slavery, can be found in, the appendix) -> the appendix (14212ms) Where is it? verses 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (to heaven, is found in, verses) -> verses (14055ms) Where is it? the gun barrel 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (brain matter, was found in, the gun barrel) -> the gun barrel (13965ms) Where is it? the published version 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (objects, can be found in, the published version) -> the published version (14179ms) Where is it? Dakar 0.222222222222 Where is it? -> $x: (neolithic, be find in, $x) -> (Paleolithic and Neolithic axes, have been found in, Dakar) -> Dakar (13024ms) Where is it? Ed 's bedroom 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (A plaque, was found in, Ed 's bedroom) -> Ed 's bedroom (14381ms) Where is it? the lowest , most barren places 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (This gum, is found in, the lowest , most barren places) -> the lowest , most barren places (14438ms) Where is it? sociological surveys 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (Heaven and Hell, is a routine finding in, sociological surveys) -> sociological surveys (14001ms) Where is it? surplus 0.222222222222 Where is it? -> $x: (neon, be find in, $x) -> (the flashing neon bulbs, are found in, surplus) -> surplus (13055ms) Where is it? personal encounter 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, is found only in, personal encounter) -> personal encounter (14438ms) Where is it? a cave 0.222222222222 Where is it? -> $x: (rainbow, be find in, $x) -> (a rainbow, was found in, a cave) -> a cave (14245ms) Where is it? a few places 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (heathland and snow gums, is only found in, a few places) -> a few places (5124ms) Where is it? the house of the LORD 0.222222222222 Where is it? -> $x: (silver, be find in, $x) -> (the silver, was found in, the house of the LORD) -> the house of the LORD (13850ms) Where is it? India 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (a worlds, are found in, India) -> India (11049ms) Where is it? two forms 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (Iron, is found in, two forms) -> two forms (14212ms) Where is it? ?interconnections 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, can be found in, ?interconnections) -> ?interconnections (13657ms) Where is it? space rocks 0.222222222222 Where is it? -> $x: (titanium, be find in, $x) -> (Titanium, can even be found in, space rocks) -> space rocks (13830ms) Where is it? a pool 0.222222222222 Where is it? -> $x: (soda, be find in, $x) -> (sodas, was found floating in, a pool) -> a pool (13785ms) Where is it? cultures 0.222222222222 Where is it? -> $x: (volatile, be find in, $x) -> (volatile selenium compounds, were found in, cultures) -> cultures (13631ms) Where is it? the inter-granular beta region 0.222222222222 Where is it? -> $x: (titanium, be find in, $x) -> (titanium, were found in, the inter-granular beta region) -> the inter-granular beta region (14020ms) Where is it? high counts 0.222222222222 Where is it? -> $x: (silicon, be find in, $x) -> (Silicon, was also found in, high counts) -> high counts (14410ms) Where is it? the September 14 newsletter 0.222222222222 Where is it? -> $x: (hot dog, be find in, $x) -> (Hot Dog Soup, can be found in, the September 14 newsletter) -> the September 14 newsletter (13578ms) Where is it? the Asian section 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (coconut milk, can be found in, the Asian section) -> the Asian section (13735ms) Where is it? large deposits 0.222222222222 Where is it? -> $x: (silver, be find in, $x) -> (silver, is often found in, large deposits) -> large deposits (14037ms) Where is it? the document 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (Spring 2012, are found in, the document) -> the document (13055ms) Where is it? five English counties 0.222222222222 Where is it? -> $x: (silver, be find in, $x) -> (Silver Hill, is also found in, five English counties) -> five English counties (13631ms) Where is it? Japan 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (hot springs, are found everywhere in, Japan) -> Japan (13928ms) Where is it? original purses 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (Monogram wood plaques, can be found in, original purses) -> original purses (13760ms) Where is it? experience 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (an object, be found in, experience) -> experience (3151ms) Where is it? the composition and structure 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (cow milk, is found in, the composition and structure) -> the composition and structure (13657ms) Where is it? essence 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (Matter, may ultimately be found to be the same in, essence) -> essence (5124ms) Where is it? the coastal plain 0.222222222222 Where is it? -> $x: (rainbow, be find in, $x) -> (Rainbow snakes, are found in, the coastal plain) -> the coastal plain (13382ms) Where is it? an image 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (no object, is found in, an image) -> an image (13410ms) Where is it? nonmeat items 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (Iron, can be found in, nonmeat items) -> nonmeat items (13785ms) Where is it? groups 0.222222222222 Where is it? -> $x: (gravity, be find in, $x) -> (Gravity-generating pull stars, are generally found in, groups) -> groups (14073ms) Where is it? a profound and wonderful relationship 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (Meaning, is found in, a profound and wonderful relationship) -> a profound and wonderful relationship (13209ms) Where is it? small numbers 0.222222222222 Where is it? -> $x: (penguin, be find in, $x) -> (Erect Crested Penguins, are found here in, small numbers) -> small numbers (13180ms) Where is it? the impact 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (The meaning, could be found in, the impact) -> the impact (13760ms) Where is it? sensual pleasures 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, is found in, sensual pleasures) -> sensual pleasures (13810ms) Where is it? the Unified Agenda 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (the Spring, are found in, the Unified Agenda) -> the Unified Agenda (14337ms) Where is it? the words `yoked ' and `fellowship 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, is found in, the words `yoked ' and `fellowship) -> the words `yoked ' and `fellowship (13909ms) Where is it? the upper part 0.222222222222 Where is it? -> $x: (rainbow, be find in, $x) -> (Rainbow and Brook Trout, can be found in, the upper part) -> the upper part (13735ms) Where is it? cow 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (milk, is a naturally-occurring sugar found in, cow) -> cow (14037ms) Where is it? extreme 0.222222222222 Where is it? -> $x: (penguin, be find in, $x) -> (Penguins, to be found in, extreme) -> extreme (13410ms) Where is it? the Cambrian 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (life, are found in, the Cambrian) -> the Cambrian (14381ms) Where is it? a number 0.222222222222 Where is it? -> $x: (smooth, be find in, $x) -> (Smooth Otters Smooth otters, are found in, a number) -> a number (13579ms) Where is it? the Asian foods aisle 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (Coconut milk, can usually be found in, the Asian foods aisle) -> the Asian foods aisle (13946ms) Where is it? India 15 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (Iron, was found in, India 15) -> India 15 (13983ms) Where is it? the photo 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (Meaning, can be found in, the photo) -> the photo (13909ms) Where is it? a person 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (marijuana, is usually found in, a person) -> a person (13523ms) Where is it? a universe 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (life, had been found in, a universe) -> a universe (13238ms) Where is it? the following locations 0.222222222222 Where is it? -> $x: (recycle bin, be find in, $x) -> (The recycling bins, can be found in, the following locations) -> the following locations (14322ms) Where is it? any condition 0.222222222222 Where is it? -> $x: (hemoglobin, be find in, $x) -> (hemoglobin, are found in, any condition) -> any condition (14037ms) Where is it? the experience 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, is found in, the experience) -> the experience (14261ms) Where is it? the hill ranges 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (these springs, are to be found in, the hill ranges) -> the hill ranges (12993ms) Where is it? the city center 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (Springs, may be found in, the city center) -> the city center (13149ms) Where is it? Christ 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (Life, is found in, Christ) -> Christ (13631ms) Where is it? Asian markets 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (Coconut milk, may sometimes be found frozen in, Asian markets) -> Asian markets (11801ms) Where is it? dense waters 0.222222222222 Where is it? -> $x: (neon, be find in, $x) -> (The Neon tetra, is found in, dense waters) -> dense waters (13209ms) Where is it? the giri , ninjo and bushido notions 0.222222222222 Where is it? -> $x: (etiquette, be find in, $x) -> (Etiquette, can be found in, the giri , ninjo and bushido notions) -> the giri , ninjo and bushido notions (14196ms) Where is it? gallons 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (milk packages, were found in, gallons) -> gallons (14212ms) Where is it? the Type picker 0.222222222222 Where is it? -> $x: (smooth, be find in, $x) -> (a Smooth blending option, can be found in, the Type picker) -> the Type picker (14424ms) Where is it? beauty 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, is only found in, beauty) -> beauty (14245ms) Where is it? a daily basis common existence 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (sometimes it, is found in on, a daily basis common existence) -> a daily basis common existence (13965ms) Where is it? the eyes 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (....it, is found in, the eyes) -> the eyes (13983ms) Where is it? numerous forms 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (Iron, is found in, numerous forms) -> numerous forms (14229ms) Where is it? a following section 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (this matter, can be found in, a following section) -> a following section (13890ms) Where is it? dried beans and peas 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (iron, can be found in, dried beans and peas) -> dried beans and peas (14020ms) Where is it? beans 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (Iron, is found in, beans) -> beans (13440ms) Where is it? brain tissue 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (the classic plaques and tangles, were found in, brain tissue) -> brain tissue (13683ms) Where is it? ordinary decisions 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (life matter, are found in rather, ordinary decisions) -> ordinary decisions (14410ms) Where is it? the declarations 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (the meaning, can be found in, the declarations) -> the declarations (14162ms) Where is it? the seat 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (marijuana, was also found in, the seat) -> the seat (5124ms) Where is it? the Manusmriti 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (heaven and hell, are also to be found in, the Manusmriti) -> the Manusmriti (13965ms) Where is it? the ornament 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (the forms--it, is found mainly in, the ornament) -> the ornament (14277ms) Where is it? placenames 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (spring, can be found in, placenames) -> placenames (14001ms) Where is it? Jazz Links 0.222222222222 Where is it? -> $x: (smooth, be find in, $x) -> (The SmoothViews homepage, can be found in, Jazz Links) -> Jazz Links (13928ms) Where is it? Pfizer 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (other matters, can be found in, Pfizer) -> Pfizer (14292ms) Where is it? Asia Minor 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (Bronze objects, have been found in, Asia Minor) -> Asia Minor (3151ms) Where is it? the strangest places 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (Meaning, is found in, the strangest places) -> the strangest places (13496ms) Where is it? tropical areas 0.222222222222 Where is it? -> $x: (toucan, be find in, $x) -> (? Toucans, are found only in, tropical areas) -> tropical areas (13087ms) Where is it? apparent association 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (These objects, were found in, apparent association) -> apparent association (14229ms) Where is it? the use 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, is found in, the use) -> the use (13928ms) Where is it? circuit boards 0.222222222222 Where is it? -> $x: (silver, be find in, $x) -> (silver, can be found in, circuit boards) -> circuit boards (14020ms) Where is it? every federal courthouse 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (only it, is found in, every federal courthouse) -> every federal courthouse (9146ms) Where is it? the theoretical gravitons 0.222222222222 Where is it? -> $x: (gravity, be find in, $x) -> (gravity, is found in, the theoretical gravitons) -> the theoretical gravitons (14245ms) Where is it? the title tag 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (the matter, is found in, the title tag) -> the title tag (13605ms) Where is it? bronze or amber 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (small bone plaques, can be found also in, bronze or amber) -> bronze or amber (13965ms) Where is it? the inner linings 0.222222222222 Where is it? -> $x: (smooth, be find in, $x) -> (visceral or smooth muscle, is found in, the inner linings) -> the inner linings (14424ms) Where is it? later contexts 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (objects, were found in, later contexts) -> later contexts (14125ms) Where is it? a vehicle 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (marijuana, was found hidden in, a vehicle) -> a vehicle (14322ms) Where is it? manufactured formula 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (breast milk, are found in, manufactured formula) -> manufactured formula (13440ms) Where is it? a global reservoir 0.222222222222 Where is it? -> $x: (magma, be find in, $x) -> ('s magma, is found in, a global reservoir) -> a global reservoir (14055ms) Where is it? fecal floats 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (weird objects, can be found in, fecal floats) -> fecal floats (14367ms) Where is it? the sky 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (objects, can be found in, the sky) -> the sky (14438ms) Where is it? the process 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, is found in, the process) -> the process (3151ms) Where is it? the placentas 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (inflamed gums, has been found in, the placentas) -> the placentas (13830ms) Where is it? Job 26 0.222222222222 Where is it? -> $x: (gravity, be find in, $x) -> (Gravity, can be found in, Job 26) -> Job 26 (14410ms) Where is it? Midgard and Hibernia 0.222222222222 Where is it? -> $x: (rainbow, be find in, $x) -> (( Rainbow sprites, can still be found in, Midgard and Hibernia) -> Midgard and Hibernia (14277ms) Where is it? data 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (This object, was found in, data) -> data (13268ms) Where is it? the writings 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the World, may be found in, the writings) -> the writings (13238ms) Where is it? Plato and Babylonian ideas 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (heaven and earth, is found in, Plato and Babylonian ideas) -> Plato and Babylonian ideas (13579ms) Where is it? the retinas 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (plaques, were found in, the retinas) -> the retinas (14322ms) Where is it? plant cells 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (pectins , gums and mucilage, are found mainly in, plant cells) -> plant cells (12690ms) Where is it? food 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (Iron, is found in, food) -> food (7703ms) Where is it? the laundry aisle 0.222222222222 Where is it? -> $x: (soda, be find in, $x) -> (Washing soda, is usually found in, the laundry aisle) -> the laundry aisle (13983ms) Where is it? the River Sabar gorge 0.222222222222 Where is it? -> $x: (neolithic, be find in, $x) -> (Neolithic remains, have been found in, the River Sabar gorge) -> the River Sabar gorge (14307ms) Where is it? muscle tissue 0.222222222222 Where is it? -> $x: (hemoglobin, be find in, $x) -> (hemoglobin, is found in, muscle tissue) -> muscle tissue (13238ms) Where is it? damaged arteries 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (the atheromatous plaque, is found in, damaged arteries) -> damaged arteries (13209ms) Where is it? books 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (This matter, can be found in, books) -> books (5678ms) Where is it? one case 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (senile plaques, was found in, one case) -> one case (14020ms) Where is it? electronics 0.222222222222 Where is it? -> $x: (silver, be find in, $x) -> (silver, is found in, electronics) -> electronics (13683ms) Where is it? firmer orthopedic mattresses 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (more springs, will be found in, firmer orthopedic mattresses) -> firmer orthopedic mattresses (14381ms) Where is it? Section 4 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (evidentiary matters, are found in, Section 4) -> Section 4 (13149ms) Where is it? parentheses 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (matter, is found in, parentheses) -> parentheses (13709ms) Where is it? the wild 0.222222222222 Where is it? -> $x: (penguin, be find in, $x) -> (these penguins, are found in, the wild) -> the wild (14055ms) Where is it? the clothes 0.222222222222 Where is it? -> $x: (slavery, be find in, $x) -> (slavery, can also be found in, the clothes) -> the clothes (14410ms) Where is it? sandstone 0.222222222222 Where is it? -> $x: (silver, be find in, $x) -> (silver, is found in, sandstone) -> sandstone (14090ms) Where is it? a multiplicity 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (heaven, are found in, a multiplicity) -> a multiplicity (14410ms) Where is it? the refrigerated sections 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (Almond milk, can be found in, the refrigerated sections) -> the refrigerated sections (13946ms) Where is it? mutual repair , population 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (( heaven, is found in, mutual repair , population) -> mutual repair , population (14367ms) Where is it? Fuji Velvia 0.222222222222 Where is it? -> $x: (slide, be find in, $x) -> (a slide film, are found in between, Fuji Velvia) -> Fuji Velvia (13909ms) Where is it? the hot springs of Banff 0.222222222222 Where is it? -> $x: (spring, be find in, $x) -> (the Banff Springs snails, are found in, the hot springs of Banff) -> the hot springs of Banff (13496ms) Where is it? dungeons 0.222222222222 Where is it? -> $x: (smooth, be find in, $x) -> (smooth floors, are found only in, dungeons) -> dungeons (13785ms) Where is it? southeastern Idaho 0.222222222222 Where is it? -> $x: (rainbow, be find in, $x) -> (This particular Rainbow Falls, is found in, southeastern Idaho) -> southeastern Idaho (14090ms) Where is it? the cabin 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (objects, should be found in, the cabin) -> the cabin (14424ms) Where is it? Todd et al 0.222222222222 Where is it? -> $x: (volatile, be find in, $x) -> (various volatile silicones materials, is found in, Todd et al) -> Todd et al (14245ms) Where is it? the accounts 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (the individual heavens, are found in, the accounts) -> the accounts (14037ms) Where is it? the fastest water 0.222222222222 Where is it? -> $x: (rainbow, be find in, $x) -> (Rainbows, are more likely found in, the fastest water) -> the fastest water (14125ms) Where is it? two passages 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (the world, is found in, two passages) -> two passages (14145ms) Where is it? barramundi and whiting 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (iron, were also found in, barramundi and whiting) -> barramundi and whiting (7703ms) Where is it? various forms 0.222222222222 Where is it? -> $x: (silicon, be find in, $x) -> (Silicon dioxide, is found naturally in, various forms) -> various forms (14108ms) Where is it? the ghettos 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (Heaven, is to be found in, the ghettos) -> the ghettos (13735ms) Where is it? origins 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, tends to be found only in, origins) -> origins (3151ms) Where is it? Istanbul 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (The world?s, are found in, Istanbul) -> Istanbul (14090ms) Where is it? the laundry detergent aisle 0.222222222222 Where is it? -> $x: (soda, be find in, $x) -> (baking soda, is often found in, the laundry detergent aisle) -> the laundry detergent aisle (13578ms) Where is it? NSW 0.222222222222 Where is it? -> $x: (penguin, be find in, $x) -> (Little Penguin colonies, are found in, NSW) -> NSW (14410ms) Where is it? cavities 0.222222222222 Where is it? -> $x: (gum, be find in, $x) -> (A gum resin, is found in, cavities) -> cavities (13086ms) Where is it? document 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (this matter, is found in, document) -> document (13579ms) Where is it? profusion 0.222222222222 Where is it? -> $x: (silver, be find in, $x) -> (Silver, was found in, profusion) -> profusion (14037ms) Where is it? modern design and architecture 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, is seldom found in, modern design and architecture) -> modern design and architecture (14277ms) Where is it? David Coyle 0.222222222222 Where is it? -> $x: (slavery, be find in, $x) -> (slavery ? story, can be found in, David Coyle) -> David Coyle (13024ms) Where is it? either Old or New Testaments 0.222222222222 Where is it? -> $x: (slavery, be find in, $x) -> (slavery, can be found in, either Old or New Testaments) -> either Old or New Testaments (13149ms) Where is it? a reconstruction 0.222222222222 Where is it? -> $x: (penguin, be find in, $x) -> (Cape penguins, can be found in, a reconstruction) -> a reconstruction (13889ms) Where is it? purpose 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (Meaning, is found in, purpose) -> purpose (14307ms) Where is it? horsetail 0.222222222222 Where is it? -> $x: (silicon, be find in, $x) -> (the silicon, is found in, horsetail) -> horsetail (13631ms) Where is it? scores 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (heaven, is found in, scores) -> scores (14145ms) Where is it? column 0.222222222222 Where is it? -> $x: (titanium, be find in, $x) -> (Titanium, is found in, column) -> column (13965ms) Where is it? whole grains 0.222222222222 Where is it? -> $x: (iron, be find in, $x) -> (Iron, is found in, whole grains) -> whole grains (13238ms) Where is it? a few bacteria 0.222222222222 Where is it? -> $x: (hemoglobin, be find in, $x) -> (hemoglobin-like proteins, are found in, a few bacteria) -> a few bacteria (13909ms) Where is it? the north 0.222222222222 Where is it? -> $x: (neolithic, be find in, $x) -> (a Neolithic culture, have been found in, the north) -> the north (13055ms) Where is it? a box 0.222222222222 Where is it? -> $x: (milk, be find in, $x) -> (Milk, can be found either in, a box) -> a box (14020ms) Where is it? the Deseret News 0.222222222222 Where is it? -> $x: (it, be find in, $x) -> (A copy of it, will be found in, the Deseret News) -> the Deseret News (14245ms) Where is it? the environment?and 0.222222222222 Where is it? -> $x: (silver, be find in, $x) -> (silver, are being found increasingly in, the environment?and) -> the environment?and (14245ms) Where is it? the collection 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (the object, was found in, the collection) -> the collection (3660ms) Where is it? Rev. 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (heaven, is found in, Rev.) -> Rev. (13760ms) Where is it? pattern and order 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, will be found in, pattern and order) -> pattern and order (13870ms) Where is it? the country 0.222222222222 Where is it? -> $x: (silver, be find in, $x) -> (silver, are also found in, the country) -> the country (13810ms) Where is it? the icy darkness 0.222222222222 Where is it? -> $x: (life, be find in, $x) -> (life, is found in, the icy darkness) -> the icy darkness (13410ms) Where is it? gasoline 0.222222222222 Where is it? -> $x: (volatile, be find in, $x) -> (Volatile solvents, are found in, gasoline) -> gasoline (13657ms) Where is it? different places 0.222222222222 Where is it? -> $x: (object, be find in, $x) -> (the objects, were found in, different places) -> different places (13735ms) Where is it? vacuum-sealed plastic bags 0.222222222222 Where is it? -> $x: (marijuana, be find in, $x) -> (marijuana, were found in, vacuum-sealed plastic bags) -> vacuum-sealed plastic bags (13830ms) Where is it? the summer 0.222222222222 Where is it? -> $x: (penguin, be find in, $x) -> (Magellanic Penguins, can be found in, the summer) -> the summer (13658ms) Where is it? manual 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (its meaning, can be found in, manual) -> manual (3151ms) Where is it? the sidewalks 0.222222222222 Where is it? -> $x: (plaque, be find in, $x) -> (30 bronze plaques, can be found in, the sidewalks) -> the sidewalks (13965ms) Where is it? a 8,13 % 0.222222222222 Where is it? -> $x: (silicon, be find in, $x) -> (silicon, is found in, a 8,13 %) -> a 8,13 % (14307ms) Where is it? Los Angeles 0.222222222222 Where is it? -> $x: (heaven, be find in, $x) -> (Heaven, is found in, Los Angeles) -> Los Angeles (7703ms) Where is it? simple poverty 0.222222222222 Where is it? -> $x: (world, be find in, $x) -> (world, needed was found in, simple poverty) -> simple poverty (14196ms) Where is it? the Company 0.222222222222 Where is it? -> $x: (matter, be find in, $x) -> (other matters, can be found in, the Company) -> the Company (14229ms) Where is it? the ancient Hymns 0.222222222222 Where is it? -> $x: (mean, be find in, $x) -> (meaning, are most often found in, the ancient Hymns) -> the ancient Hymns (13810ms) What is the gestation period for humans? Lymphocytes 0.111111111102 What is the gestation period for humans? -> $x: ($x, produce, gestation) -> (Lymphocytes, are produced early in, gestation) -> Lymphocytes (857ms) What is the gestation period for humans? a congenital deformity 0.111111111102 What is the gestation period for humans? -> $x: ($x, cause, gestation) -> (a congenital deformity, caused during, gestation) -> a congenital deformity (985ms) What is the gestation period for humans? One offspring 0.111111111102 What is the gestation period for humans? -> $x: ($x, produce, gestation) -> (One offspring, is produced following, a 210 to 225 day gestation) -> One offspring (985ms) What is the gestation period for humans? Delayed implantation 0.111111111102 What is the gestation period for humans? -> $x: ($x, produce, gestation) -> (Delayed implantation, produces varied, gestation times) -> Delayed implantation (857ms) What is the gestation period for humans? Burger King?s pork 0.111111111102 What is the gestation period for humans? -> $x: ($x, produce, gestation) -> (Burger King?s pork, was produced without, gestation stalls) -> Burger King?s pork (857ms) What is the gestation period for humans? the composting dung 0.111111111102 What is the gestation period for humans? -> $x: ($x, produce, gestation) -> (the composting dung, produces enough heat for, gestation) -> the composting dung (857ms) What is the gestation period for humans? turn 0.111111111102 What is the gestation period for humans? -> $x: ($x, cause, gestation) -> (turn, caused, the gestation period) -> turn (984ms) What is the gestation period for humans? late pregnancy 0.111111111102 What is the gestation period for humans? -> $x: ($x, cause, gestation) -> (late pregnancy, may cause prolonged, gestation , dystocia) -> late pregnancy (857ms) What is the gestation period for humans? A single offspring 0.111111111102 What is the gestation period for humans? -> $x: ($x, produce, gestation) -> (A single offspring, is generally produced after, gestation) -> A single offspring (857ms) What is the gestation period for humans? Normally one calf 0.111111111102 What is the gestation period for humans? -> $x: ($x, produce, gestation) -> (Normally one calf, is produced after, a gestation period) -> Normally one calf (857ms) What is the gestation period for humans? A single infant 0.111111111102 What is the gestation period for humans? -> $x: ($x, produce, gestation) -> (A single infant, is produced after, a gestation period) -> A single infant (984ms) What is the gestation period for humans? term infants 0.111111111102 What is the gestation period for humans? -> $x: ($x, size, gestation) -> (term infants, are appropriate size for, gestation) -> term infants (985ms) What is the gestation period for humans? the time -0.7777777777760001 What is the gestation period for humans? -> $x: (gestation, be important of, $x) -> (gestation, is obviously important most of, the time) -> the time (1080ms) What is the gestation period for humans? high protein manure -0.888888888886 What is the gestation period for humans? -> $x: (gestation, produce, $x) -> (a low gestation period, produces, high protein manure) -> high protein manure (1102ms) What is the gestation period for humans? extreme gender dysphorias -0.888888888886 What is the gestation period for humans? -> $x: (gestation, cause, $x) -> (gestation, is the main cause of, extreme gender dysphorias) -> extreme gender dysphorias (1081ms) What is the gestation period for humans? stage two -0.888888888886 What is the gestation period for humans? -> $x: (gestation, produce, $x) -> (Our gestation, produces, stage two) -> stage two (1103ms) What is the gestation period for humans? 2.8 -0.888888888886 What is the gestation period for humans? -> $x: (gestation, size, $x) -> (a gestation period, have an average litter size of, 2.8) -> 2.8 (1102ms) What is the gestation period for humans? 4-12 Hamsters -0.888888888886 What is the gestation period for humans? -> $x: (gestation, produce, $x) -> (One gestation, can produce, 4-12 Hamsters) -> 4-12 Hamsters (1101ms) What is the gestation period for humans? eyeballs -0.888888888886 What is the gestation period for humans? -> $x: (gestation, produce, $x) -> (gestation fifty-nine pigs, were produced without, eyeballs) -> eyeballs (1081ms) What is the gestation period for humans? a dozen young -0.888888888886 What is the gestation period for humans? -> $x: (gestation, produce, $x) -> (gestation, produces up to, a dozen young) -> a dozen young (1101ms) What is the gestation period for humans? cleft palate and open eyes -0.888888888886 What is the gestation period for humans? -> $x: (gestation, produce, $x) -> (gestation, produced, cleft palate and open eyes) -> cleft palate and open eyes (1080ms) What is the gestation period for humans? 3-5 hamsters -0.888888888886 What is the gestation period for humans? -> $x: (gestation, produce, $x) -> (The gestation, can produce, 3-5 hamsters) -> 3-5 hamsters (1101ms) What is the gestation period for humans? a higher incidence -0.888888888886 What is the gestation period for humans? -> $x: (gestation, cause, $x) -> (gestation, also caused, a higher incidence) -> a higher incidence (1102ms) What is the gestation period for humans? the degree -0.888888888886 What is the gestation period for humans? -> $x: (gestation, be example of, $x) -> (The long gestation period, is an example of, the degree) -> the degree (1101ms) What is the gestation period for humans? 15 pups -0.888888888886 What is the gestation period for humans? -> $x: (gestation, produce, $x) -> (a gestation period, typically produce 2 to, 15 pups) -> 15 pups (1102ms) What is the gestation period for humans? one baby -0.888888888886 What is the gestation period for humans? -> $x: (gestation, produce, $x) -> (Their gestation period, only produces, one baby) -> one baby (1102ms) What is the gestation period for humans? weight gain -0.888888888886 What is the gestation period for humans? -> $x: (gestation, produce, $x) -> (gestation, produced a dosage-related reduction of, weight gain) -> weight gain (1102ms) What is the gestation period for humans? a 25 % increase -0.888888888886 What is the gestation period for humans? -> $x: (gestation, produce, $x) -> (gestation, produces about, a 25 % increase) -> a 25 % increase (1102ms) What is the gestation period for humans? low birth weight -0.888888888886 What is the gestation period for humans? -> $x: (gestation, cause, $x) -> (gestation, causes, low birth weight) -> low birth weight (1102ms) What is the gestation period for humans? five -0.888888888886 What is the gestation period for humans? -> $x: (gestation, size, $x) -> (a gestation period, have an average litter size of, five) -> five (1080ms) What is the gestation period for humans? 1 offspring -0.888888888886 What is the gestation period for humans? -> $x: (gestation, produce, $x) -> (a 7-month gestation period, usually produce, 1 offspring) -> 1 offspring (1101ms) What is the gestation period for humans? death -0.888888888886 What is the gestation period for humans? -> $x: (gestation, cause, $x) -> (gestation ?, is the leading cause of, death) -> death (1101ms) What is the gestation period for humans? one 40 -0.888888888886 What is the gestation period for humans? -> $x: (gestation, produce, $x) -> (a gestation period, usually produce, one 40) -> one 40 (1102ms) What is the gestation period for humans? widespread health effects -0.888888888886 What is the gestation period for humans? -> $x: (gestation, cause, $x) -> (gestation, may be causing, widespread health effects) -> widespread health effects (1102ms) What is the gestation period for humans? intra-uterine deaths -0.888888888886 What is the gestation period for humans? -> $x: (gestation, cause, $x) -> (gestation, caused increased, intra-uterine deaths) -> intra-uterine deaths (1080ms) What is the gestation period for humans? heavier offspring -0.888888888886 What is the gestation period for humans? -> $x: (gestation, produce, $x) -> (gestation, produce, heavier offspring) -> heavier offspring (1102ms) What is the gestation period for humans? the offspring -0.888888888886 What is the gestation period for humans? -> $x: (gestation, size, $x) -> (gestation, is the size of, the offspring) -> the offspring (1101ms) What is the gestation period for humans? neonatal withdrawal -0.888888888886 What is the gestation period for humans? -> $x: (gestation, cause, $x) -> (gestation, can cause, neonatal withdrawal) -> neonatal withdrawal (1101ms) What is the gestation period for humans? further compromise -0.888888888886 What is the gestation period for humans? -> $x: (gestation, cause, $x) -> (advanced gestation, may cause, further compromise) -> further compromise (1101ms) What is the gestation period for humans? a litter of four capybara babies -0.888888888886 What is the gestation period for humans? -> $x: (gestation, produce, $x) -> (Capybara gestation, produces, a litter of four capybara babies) -> a litter of four capybara babies (1102ms) What is the gestation period for humans? a single pup -0.888888888886 What is the gestation period for humans? -> $x: (gestation, produce, $x) -> (Gestation period, produce, a single pup) -> a single pup (1102ms) What is the gestation period for humans? an epigenetic alteration -0.888888888886 What is the gestation period for humans? -> $x: (gestation, cause, $x) -> (gestation, seemed to cause, an epigenetic alteration) -> an epigenetic alteration (1102ms) What is the gestation period for humans? painful contractions -0.888888888886 What is the gestation period for humans? -> $x: (gestation, cause, $x) -> (gestation, may cause, painful contractions) -> painful contractions (1102ms) What is the gestation period for humans? neurobehavioral deficits -0.888888888886 What is the gestation period for humans? -> $x: (gestation, produce, $x) -> (gestation, produces, neurobehavioral deficits) -> neurobehavioral deficits (1101ms) What is the gestation period for humans? the incidence -0.888888888886 What is the gestation period for humans? -> $x: (gestation, cause, $x) -> (gestation, caused an increase in, the incidence) -> the incidence (1101ms) What is the gestation period for humans? less fertile offspring -0.888888888886 What is the gestation period for humans? -> $x: (gestation, produce, $x) -> (the gestation, produced, less fertile offspring) -> less fertile offspring (1103ms) What is the gestation period for humans? dystocia -0.888888888886 What is the gestation period for humans? -> $x: (gestation, cause, $x) -> (gestation Day, caused, dystocia) -> dystocia (1101ms) What is the gestation period for humans? conception rate -0.888888888886 What is the gestation period for humans? -> $x: (gestation, cause, $x) -> (gestation, caused a dose-related decrease in, conception rate) -> conception rate (1103ms) What is the gestation period for humans? malformations -0.888888888886 What is the gestation period for humans? -> $x: (gestation, produce, $x) -> (the gestation period, produces, malformations) -> malformations (1081ms) What is the gestation period for humans? buyers and suppliers -0.888888888886 What is the gestation period for humans? -> $x: (gestation, cause, $x) -> (gestation crates, caused, buyers and suppliers) -> buyers and suppliers (1101ms) What is the gestation period for humans? subtle neurological changes -0.888888888886 What is the gestation period for humans? -> $x: (gestation, produce, $x) -> (gestation, produced, subtle neurological changes) -> subtle neurological changes (1101ms) What is the gestation period for humans? birth defects -0.888888888886 What is the gestation period for humans? -> $x: (gestation, cause, $x) -> (gestation, can cause, birth defects) -> birth defects (1101ms) What is the gestation period for humans? great beauty -0.888888888886 What is the gestation period for humans? -> $x: (gestation, produce, $x) -> (gestation, have produced a film of, great beauty) -> great beauty (1101ms) What is the gestation period for humans? resorptions -0.888888888886 What is the gestation period for humans? -> $x: (gestation, produce, $x) -> (gestation, produced increased, resorptions) -> resorptions (1102ms) Where is it based? Armonk 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, is based in, Armonk) -> Armonk (4763ms) Where is it based? Sussex 1.0 Where is it based? -> $x: (it, be base in, $x) -> (IT problem-solvers, is based in, Sussex) -> Sussex (4797ms) Where is it based? College Hill 1.0 Where is it based? -> $x: (life, be base in, $x) -> (life, is currently based in, College Hill) -> College Hill (4822ms) Where is it based? Cape Town 1.0 Where is it based? -> $x: (silver, be base in, $x) -> (Pamela Silver, is an estate agent based in, Cape Town) -> Cape Town (4699ms) Where is it based? New England 1.0 Where is it based? -> $x: (life, be base in, $x) -> (her life, is now based in, New England) -> New England (4672ms) Where is it based? the States 1.0 Where is it based? -> $x: (silicon, be base in, $x) -> (SiliconCloud?s clients, are based in, the States) -> the States (4763ms) Where is it based? Mangatawhiri 1.0 Where is it based? -> $x: (milk, be base in, $x) -> (milk, is based in, Mangatawhiri) -> Mangatawhiri (4708ms) Where is it based? Houston 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world?s, is based in, Houston) -> Houston (4792ms) Where is it based? Port aux Basques 1.0 Where is it based? -> $x: (it, be base in, $x) -> (Marine Atlantic?s IT department, is based in, Port aux Basques) -> Port aux Basques (4826ms) Where is it based? Bangalore 1.0 Where is it based? -> $x: (it, be base in, $x) -> (Major Indian IT firms, are based in, Bangalore) -> Bangalore (4808ms) Where is it based? Afghanistan 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, were based in, Afghanistan) -> Afghanistan (3642ms) Where is it based? steampunk 1.0 Where is it based? -> $x: (world, be base in, $x) -> (this world, is mostly based in, steampunk) -> steampunk (4741ms) Where is it based? fantasy 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, is based in, fantasy) -> fantasy (4733ms) Where is it based? Las Cruces 1.0 Where is it based? -> $x: (it, be base in, $x) -> (An IT manager job, was based in, Las Cruces) -> Las Cruces (4763ms) Where is it based? Reedville 1.0 Where is it based? -> $x: (protein, be base in, $x) -> (Omega Protein?s Atlantic operations, are based in, Reedville) -> Reedville (4821ms) Where is it based? premises 1.0 Where is it based? -> $x: (life, be base in, $x) -> (The whole life, is based in, premises) -> premises (4716ms) Where is it based? the East Midlands 1.0 Where is it based? -> $x: (rainbow, be base in, $x) -> (the Rainbow hospice, is based in, the East Midlands) -> the East Midlands (1854ms) Where is it based? critical pedagogy 1.0 Where is it based? -> $x: (spring, be base in, $x) -> (This Alternative Spring Break, was based in, critical pedagogy) -> critical pedagogy (4763ms) Where is it based? Niskayuna 1.0 Where is it based? -> $x: (silicon, be base in, $x) -> (Silicon Imaging, is a privately held company based in, Niskayuna) -> Niskayuna (4733ms) Where is it based? Carrillo 1.0 Where is it based? -> $x: (silver, be base in, $x) -> (The Silver-Rod-O, is based in, Carrillo) -> Carrillo (4817ms) Where is it based? Miami 1.0 Where is it based? -> $x: (world, be base in, $x) -> (Racquet World, has been based in, Miami) -> Miami (4708ms) Where is it based? Lawrence 1.0 Where is it based? -> $x: (life, be base in, $x) -> (Our Life Sciences team, is based in, Lawrence) -> Lawrence (4672ms) Where is it based? the USA 1.0 Where is it based? -> $x: (life, be base in, $x) -> (a life science company, is based in, the USA) -> the USA (4817ms) Where is it based? Florida 1.0 Where is it based? -> $x: (silver, be base in, $x) -> (Silver Vase, is based in, Florida) -> Florida (4733ms) Where is it based? Bangkok 1.0 Where is it based? -> $x: (world, be base in, $x) -> (World Vision, is based in, Bangkok) -> Bangkok (4725ms) Where is it based? dense material reality 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, are based in, dense material reality) -> dense material reality (4798ms) Where is it based? reality 1.0 Where is it based? -> $x: (spring, be base in, $x) -> (the Spring Update, are based in, reality) -> reality (4803ms) Where is it based? the U.S. 1.0 Where is it based? -> $x: (it, be base in, $x) -> (an IT solution provider, be based in, the U.S.) -> the U.S. (4741ms) Where is it based? Leyland 1.0 Where is it based? -> $x: (it, be base in, $x) -> (DTech IT Services Ltd main office, is based in, Leyland) -> Leyland (4784ms) Where is it based? Canada 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, is based in, Canada) -> Canada (4699ms) Where is it based? Utsunomiya 1.0 Where is it based? -> $x: (recruitment, be base in, $x) -> (total recruitment services, is based in, Utsunomiya) -> Utsunomiya (4681ms) Where is it based? Santa Clara 1.0 Where is it based? -> $x: (silicon, be base in, $x) -> (Silicon Valley Bank, is based in, Santa Clara) -> Santa Clara (4812ms) Where is it based? Lincolnshire 1.0 Where is it based? -> $x: (kennel, be base in, $x) -> (The kennels, are based in, Lincolnshire) -> Lincolnshire (4808ms) Where is it based? Newport 1.0 Where is it based? -> $x: (recruitment, be base in, $x) -> (the national recruitment organisation, is based in, Newport) -> Newport (4725ms) Where is it based? ignorance and untruth 1.0 Where is it based? -> $x: (life, be base in, $x) -> (our lives, are based in, ignorance and untruth) -> ignorance and untruth (4777ms) Where is it based? Nevada 1.0 Where is it based? -> $x: (it, be base in, $x) -> (It?s All Good Buddy Inc., is based in, Nevada) -> Nevada (4803ms) Where is it based? Valencia 1.0 Where is it based? -> $x: (life, be base in, $x) -> (LifeSequencing LifeSequencing, is based in, Valencia) -> Valencia (4748ms) Where is it based? Sunnyvale 1.0 Where is it based? -> $x: (silicon, be base in, $x) -> (Silicon Image, is based in, Sunnyvale) -> Sunnyvale (4784ms) Where is it based? the quietest corner 1.0 Where is it based? -> $x: (limo, be base in, $x) -> (Limo Taboi, is based in, the quietest corner) -> the quietest corner (4812ms) Where is it based? Paris 1.0 Where is it based? -> $x: (object, be base in, $x) -> (Business Objects, is technically based in, Paris) -> Paris (4797ms) Where is it based? the beautiful market town 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world?s, has been based in, the beautiful market town) -> the beautiful market town (4808ms) Where is it based? Poland 1.0 Where is it based? -> $x: (it, be base in, $x) -> (Their European IT & Customer Service office, is based in, Poland) -> Poland (4725ms) Where is it based? the United Kingdom 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, is based in, the United Kingdom) -> the United Kingdom (4708ms) Where is it based? England 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, are now based in, England) -> England (4672ms) Where is it based? Rocky Mount 1.0 Where is it based? -> $x: (spring, be base in, $x) -> (Meadow Spring Land, has been based in, Rocky Mount) -> Rocky Mount (4803ms) Where is it based? the connection 1.0 Where is it based? -> $x: (life, be base in, $x) -> (Your complete daily life, is basically based in, the connection) -> the connection (4784ms) Where is it based? Santa Ana 1.0 Where is it based? -> $x: (iron, be base in, $x) -> (Iron Grip, is based in, Santa Ana) -> Santa Ana (4708ms) Where is it based? sin and remorse 1.0 Where is it based? -> $x: (life, be base in, $x) -> (the christian life, is based in, sin and remorse) -> sin and remorse (4690ms) Where is it based? Sugar Creek 1.0 Where is it based? -> $x: (milk, be base in, $x) -> (Gordon Milk Transport, is based in, Sugar Creek) -> Sugar Creek (4748ms) Where is it based? Nimbin 1.0 Where is it based? -> $x: (rainbow, be base in, $x) -> (Rainbow Region LETS, is based in, Nimbin) -> Nimbin (4708ms) Where is it based? Franklin 1.0 Where is it based? -> $x: (spring, be base in, $x) -> (Cool Springs, is based in, Franklin) -> Franklin (4748ms) Where is it based? Surrey 1.0 Where is it based? -> $x: (recruitment, be base in, $x) -> (Recruitment Revolution, are based in, Surrey) -> Surrey (4763ms) Where is it based? Yorkshire 1.0 Where is it based? -> $x: (penguin, be base in, $x) -> (Purple Penguin Media, are based in, Yorkshire) -> Yorkshire (4812ms) Where is it based? San Antonio 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, is based in, San Antonio) -> San Antonio (4733ms) Where is it based? the city 1.0 Where is it based? -> $x: (iron, be base in, $x) -> (Cat Power and Iron & Wine, are based in, the city) -> the city (4681ms) Where is it based? Hong Kong 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, is based in, Hong Kong) -> Hong Kong (4826ms) Where is it based? the Kansas City area 1.0 Where is it based? -> $x: (propane, be base in, $x) -> (buyer Inergy Propane LLC, are based in, the Kansas City area) -> the Kansas City area (4690ms) Where is it based? Denver 1.0 Where is it based? -> $x: (life, be base in, $x) -> (life, has been based only in, Denver) -> Denver (4681ms) Where is it based? Thunder Bay 1.0 Where is it based? -> $x: (iron, be base in, $x) -> (Bending Lake Iron Group Limited, is based in, Thunder Bay) -> Thunder Bay (4741ms) Where is it based? Israel 1.0 Where is it based? -> $x: (kennel, be base in, $x) -> (The kennel, is based in, Israel) -> Israel (3827ms) Where is it based? Coatbridge 1.0 Where is it based? -> $x: (recruitment, be base in, $x) -> (U Teach Recruitment, is based in, Coatbridge) -> Coatbridge (1800ms) Where is it based? Toronto 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the World, is based in, Toronto) -> Toronto (4808ms) Where is it based? Huntington Beach 1.0 Where is it based? -> $x: (space exploration, be base in, $x) -> (the Space Exploration division, is based in, Huntington Beach) -> Huntington Beach (2898ms) Where is it based? the uk 1.0 Where is it based? -> $x: (life, be base in, $x) -> (Standard life, was based in, the uk) -> the uk (4716ms) Where is it based? British Columbia 1.0 Where is it based? -> $x: (smooth, be base in, $x) -> (Smooth Media, is a production company based in, British Columbia) -> British Columbia (4777ms) Where is it based? the IT Technician 1.0 Where is it based? -> $x: (it, be base in, $x) -> (The IT Surgery, is based in, the IT Technician) -> the IT Technician (1929ms) Where is it based? interactions 1.0 Where is it based? -> $x: (object, be base in, $x) -> (quantum objects, is based in, interactions) -> interactions (4812ms) Where is it based? Navan 1.0 Where is it based? -> $x: (silver, be base in, $x) -> (Silver Lining Web Design, is based in, Navan) -> Navan (4756ms) Where is it based? Thorpe 1.0 Where is it based? -> $x: (limo, be base in, $x) -> (Our limos, are based in, Thorpe) -> Thorpe (1669ms) Where is it based? Sligo 1.0 Where is it based? -> $x: (newport, be base in, $x) -> (The Kim Newport band, was based in, Sligo) -> Sligo (4690ms) Where is it based? Aberlour 1.0 Where is it based? -> $x: (world, be base in, $x) -> (world, are based in, Aberlour) -> Aberlour (4748ms) Where is it based? Milan , Italy 1.0 Where is it based? -> $x: (it, be base in, $x) -> (InItalia .it, is based in, Milan , Italy) -> Milan , Italy (4725ms) Where is it based? Essex 1.0 Where is it based? -> $x: (limo, be base in, $x) -> (Dutch Limos, are based in, Essex) -> Essex (4803ms) Where is it based? Mumbai 1.0 Where is it based? -> $x: (it, be base in, $x) -> (NSE.IT, is based in, Mumbai) -> Mumbai (1668ms) Where is it based? Boston 1.0 Where is it based? -> $x: (life, be base in, $x) -> (Life Balance, is based in, Boston) -> Boston (4817ms) Where is it based? Sydney 1.0 Where is it based? -> $x: (life, be base in, $x) -> (Jesus and life, are now based in, Sydney) -> Sydney (4756ms) Where is it based? Olympia 1.0 Where is it based? -> $x: (life, be base in, $x) -> (Simply Life Farm, is based in, Olympia) -> Olympia (4770ms) Where is it based? Idaho 1.0 Where is it based? -> $x: (spring, be base in, $x) -> (Trinity Springs, is based in, Idaho) -> Idaho (4741ms) Where is it based? the heart 1.0 Where is it based? -> $x: (matter, be base in, $x) -> (French Property Matters, is based in, the heart) -> the heart (4803ms) Where is it based? Solana Beach 1.0 Where is it based? -> $x: (red lantern, be base in, $x) -> (Red Lantern, is a privately held company based in, Solana Beach) -> Solana Beach (4826ms) Where is it based? God 1.0 Where is it based? -> $x: (life, be base in, $x) -> (This life, is based in, God) -> God (4784ms) Where is it based? Southborough 1.0 Where is it based? -> $x: (iron, be base in, $x) -> (Iron Mountain Digital, is based in, Southborough) -> Southborough (4770ms) Where is it based? Love 1.0 Where is it based? -> $x: (life, be base in, $x) -> (life, is based in, Love) -> Love (4756ms) Where is it based? the United States 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, were based in, the United States) -> the United States (4784ms) Where is it based? London 1.0 Where is it based? -> $x: (silver, be base in, $x) -> (Silver Link, is based in, London) -> London (4817ms) Where is it based? Sacramento 1.0 Where is it based? -> $x: (spring, be base in, $x) -> (Mr. Spring, is based in, Sacramento) -> Sacramento (4763ms) Where is it based? Marina Del Rey 1.0 Where is it based? -> $x: (marijuana, be base in, $x) -> (Medical Marijuana, is based in, Marina Del Rey) -> Marina Del Rey (4770ms) Where is it based? Mississippi 1.0 Where is it based? -> $x: (spring, be base in, $x) -> (Ocean Springs, is based in, Mississippi) -> Mississippi (4716ms) Where is it based? NY 1.0 Where is it based? -> $x: (it, be base in, $x) -> (Intelligent IT Designs, is based in, NY) -> NY (4748ms) Where is it based? Oldham 1.0 Where is it based? -> $x: (world, be base in, $x) -> (Gym World, is based in, Oldham) -> Oldham (4663ms) Where is it based? the North 1.0 Where is it based? -> $x: (world, be base in, $x) -> (Ocean World, is based in, the North) -> the North (4663ms) Where is it based? Melbourne 1.0 Where is it based? -> $x: (spring, be base in, $x) -> (The Spring Program, has been based in, Melbourne) -> Melbourne (4741ms) Where is it based? the circle 1.0 Where is it based? -> $x: (life, be base in, $x) -> (our lives, be based in, the circle) -> the circle (4812ms) Where is it based? Scottish and Norse legend 1.0 Where is it based? -> $x: (world, be base in, $x) -> (a world, is based in, Scottish and Norse legend) -> Scottish and Norse legend (4763ms) Where is it based? Finland 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, is based in, Finland) -> Finland (4708ms) Where is it based? Phoenix 1.0 Where is it based? -> $x: (rainbow, be base in, $x) -> (Rainbow Studios Rainbow Studios, is based in, Phoenix) -> Phoenix (4681ms) Where is it based? Sydney metropolitan area 1.0 Where is it based? -> $x: (world, be base in, $x) -> (WORLD, is a business based in, Sydney metropolitan area) -> Sydney metropolitan area (4812ms) Where is it based? fact 1.0 Where is it based? -> $x: (life, be base in, $x) -> (the first lives, are historically based in, fact) -> fact (4699ms) Where is it based? Austria 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, is primarily based in, Austria) -> Austria (4725ms) Where is it based? Santiago or St . John?s 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, is based just in, Santiago or St . John?s) -> Santiago or St . John?s (4777ms) Where is it based? Riyadh 1.0 Where is it based? -> $x: (life, be base in, $x) -> (my life, are based in, Riyadh) -> Riyadh (4821ms) Where is it based? the language 1.0 Where is it based? -> $x: (life, be base in, $x) -> (Life?s reality code, is based in, the language) -> the language (4777ms) Where is it based? the UK and specialise 1.0 Where is it based? -> $x: (silver, be base in, $x) -> (AC Silver, are based in, the UK and specialise) -> the UK and specialise (4770ms) Where is it based? the WVU College 1.0 Where is it based? -> $x: (kennel, be base in, $x) -> (Kennel, is based in, the WVU College) -> the WVU College (4741ms) Where is it based? San Diego California 1.0 Where is it based? -> $x: (life, be base in, $x) -> (Real Life Radio, is based in, San Diego California) -> San Diego California (4748ms) Where is it based? the Twelve Steps 1.0 Where is it based? -> $x: (life, be base in, $x) -> (life, is based in, the Twelve Steps) -> the Twelve Steps (4797ms) Where is it based? New York 1.0 Where is it based? -> $x: (world, be base in, $x) -> (Visible World, is based in, New York) -> New York (4808ms) Where is it based? Batley 1.0 Where is it based? -> $x: (rainbow, be base in, $x) -> (Rainbow Designers, are a design agency based in, Batley) -> Batley (4699ms) Where is it based? one whole point 1.0 Where is it based? -> $x: (life, be base in, $x) -> (life, was based in, one whole point) -> one whole point (4763ms) Where is it based? Turkey 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, is based in, Turkey) -> Turkey (4822ms) Where is it based? the west 1.0 Where is it based? -> $x: (it, be base in, $x) -> (an independent IT Consultancy, are based in, the west) -> the west (4803ms) Where is it based? 2012 1.0 Where is it based? -> $x: (life, be base in, $x) -> (Desmond?s life, is based in, 2012) -> 2012 (4382ms) Where is it based? the Congo basin countries 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, is based in, the Congo basin countries) -> the Congo basin countries (4763ms) Where is it based? North America 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, were based in, North America) -> North America (4672ms) Where is it based? the Bible 1.0 Where is it based? -> $x: (slavery, be base in, $x) -> (slavery and segregation, was based in, the Bible) -> the Bible (2004ms) Where is it based? the UK and Sydney 1.0 Where is it based? -> $x: (recruitment, be base in, $x) -> (Recruitment specialist, is based both in, the UK and Sydney) -> the UK and Sydney (1800ms) Where is it based? anger 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, were based in, anger) -> anger (4381ms) Where is it based? an international network 1.0 Where is it based? -> $x: (it, be base in, $x) -> ('s IT professionals, are based in, an international network) -> an international network (4777ms) Where is it based? 1825 1.0 Where is it based? -> $x: (life, be base in, $x) -> (Standard life, was based in, 1825) -> 1825 (4681ms) Where is it based? troy ounces 1.0 Where is it based? -> $x: (silver, be base in, $x) -> (The silver price, is based in, troy ounces) -> troy ounces (4817ms) Where is it based? a purpose-built building 1.0 Where is it based? -> $x: (it, be base in, $x) -> (3. It, is based in, a purpose-built building) -> a purpose-built building (4784ms) Where is it based? Geneva 1.0 Where is it based? -> $x: (spring, be base in, $x) -> (Fellows Spring 2002 Michael Flynn, is a writer based in, Geneva) -> Geneva (4756ms) Where is it based? New Zealand 1.0 Where is it based? -> $x: (spring, be base in, $x) -> (Maruia Springs, is based in, New Zealand) -> New Zealand (4817ms) Where is it based? one form 1.0 Where is it based? -> $x: (life, be base in, $x) -> (our own lives, is based in, one form) -> one form (3826ms) Where is it based? Edinburgh 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, are now based in, Edinburgh) -> Edinburgh (4770ms) Where is it based? Europe 1.0 Where is it based? -> $x: (it, be base in, $x) -> (the ShareIt ShareIt, are based in, Europe) -> Europe (4822ms) Where is it based? the possibility 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, is based in, the possibility) -> the possibility (4716ms) Where is it based? the southern part 1.0 Where is it based? -> $x: (titanium, be base in, $x) -> (Our titanium jewelry company, is based in, the southern part) -> the southern part (4690ms) Where is it based? computation 1.0 Where is it based? -> $x: (world, be base in, $x) -> (our world, are based in, computation) -> computation (4817ms) Where is it based? an office building 1.0 Where is it based? -> $x: (it, be base in, $x) -> ('s IT professionals, are based in, an office building) -> an office building (4821ms) Where is it based? the Anglosphere 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, are based in, the Anglosphere) -> the Anglosphere (4792ms) Where is it based? Nashville 1.0 Where is it based? -> $x: (spring, be base in, $x) -> (HealthSpring, is based in, Nashville) -> Nashville (4822ms) Where is it based? the Bible passage 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, is firmly based in, the Bible passage) -> the Bible passage (4808ms) Where is it based? the context 1.0 Where is it based? -> $x: (object, be base in, $x) -> (a SPWeb object, is created based in, the context) -> the context (4681ms) Where is it based? the College 1.0 Where is it based? -> $x: (recruitment, be base in, $x) -> (the recruitment, are based in, the College) -> the College (4797ms) Where is it based? Wake Forest 1.0 Where is it based? -> $x: (silver, be base in, $x) -> (SilverLight, is based in, Wake Forest) -> Wake Forest (4797ms) Where is it based? Middleton 1.0 Where is it based? -> $x: (spring, be base in, $x) -> (Springs Window Fashions, is based in, Middleton) -> Middleton (4826ms) Where is it based? a virtual world 1.0 Where is it based? -> $x: (matter, be base in, $x) -> (matter, are based in, a virtual world) -> a virtual world (4699ms) Where is it based? Evergreen 1.0 Where is it based? -> $x: (life, be base in, $x) -> (LifeFlight 3, is based in, Evergreen) -> Evergreen (4797ms) Where is it based? the late 1920 's 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the World, were based in, the late 1920 's) -> the late 1920 's (4741ms) Where is it based? Maynard Boston area 1.0 Where is it based? -> $x: (iron, be base in, $x) -> (Iron Lore, is based in, Maynard Boston area) -> Maynard Boston area (4748ms) Where is it based? a variety 1.0 Where is it based? -> $x: (it, be base in, $x) -> (the IT Insurance Project Manager, can be based in, a variety) -> a variety (4756ms) Where is it based? different parts 1.0 Where is it based? -> $x: (gum, be base in, $x) -> (our GUM clinic, has been based in, different parts) -> different parts (2004ms) Where is it based? Utah 1.0 Where is it based? -> $x: (space shuttle, be base in, $x) -> (the space shuttles, is based in, Utah) -> Utah (4663ms) Where is it based? the Christian tradition 1.0 Where is it based? -> $x: (mean, be base in, $x) -> (meaning, is based in, the Christian tradition) -> the Christian tradition (4770ms) Where is it based? space 1.0 Where is it based? -> $x: (silver, be base in, $x) -> (SilverHawks, is also based in, space) -> space (4707ms) Where is it based? Lyons 1.0 Where is it based? -> $x: (spring, be base in, $x) -> (Spring Creek, is based in, Lyons) -> Lyons (4699ms) Where is it based? Oregon 1.0 Where is it based? -> $x: (heaven, be base in, $x) -> (Heaven, is based in, Oregon) -> Oregon (4663ms) Where is it based? the former Soviet Union 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, are based in, the former Soviet Union) -> the former Soviet Union (4777ms) Where is it based? Vancouver 1.0 Where is it based? -> $x: (iron, be base in, $x) -> (Flat Iron Specialists, is primarily based in, Vancouver) -> Vancouver (4826ms) Where is it based? the Maasai Mara 1.0 Where is it based? -> $x: (spring, be base in, $x) -> (The Siana Springs Camp, is home base in, the Maasai Mara) -> the Maasai Mara (4822ms) Where is it based? Hochheim 1.0 Where is it based? -> $x: (it, be base in, $x) -> (Technogroup IT-Service GmbH, is based in, Hochheim) -> Hochheim (4733ms) Where is it based? western Michigan 1.0 Where is it based? -> $x: (object, be base in, $x) -> (Atomic Object, is based in, western Michigan) -> western Michigan (2242ms) Where is it based? the gentle side 1.0 Where is it based? -> $x: (world, be base in, $x) -> (world wide, is more based in, the gentle side) -> the gentle side (3826ms) Where is it based? crystalline form 1.0 Where is it based? -> $x: (life, be base in, $x) -> (our lives, are based in, crystalline form) -> crystalline form (4725ms) Where is it based? Tokyo 1.0 Where is it based? -> $x: (it, be base in, $x) -> (an IT HEAD JAPAN, be based in, Tokyo) -> Tokyo (4792ms) Where is it based? Britain 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, is based in, Britain) -> Britain (3643ms) Where is it based? San Jose 1.0 Where is it based? -> $x: (iron, be base in, $x) -> (Iron Systems, is based in, San Jose) -> San Jose (4382ms) Where is it based? a New York Zoo 1.0 Where is it based? -> $x: (penguin, be base in, $x) -> (these penguins, are based in, a New York Zoo) -> a New York Zoo (4748ms) Where is it based? Bristol 1.0 Where is it based? -> $x: (silicon, be base in, $x) -> (Silicon Ltd., is based in, Bristol) -> Bristol (4672ms) Where is it based? 100 countries 1.0 Where is it based? -> $x: (world, be base in, $x) -> (?World Vision, is based in almost, 100 countries) -> 100 countries (3642ms) Where is it based? education 1.0 Where is it based? -> $x: (life, be base in, $x) -> ('s Life, is strongly based in, education) -> education (4725ms) Where is it based? Redmond and Bothell 1.0 Where is it based? -> $x: (it, be base in, $x) -> (the IT employees, are based in, Redmond and Bothell) -> Redmond and Bothell (4777ms) Where is it based? the nasty , sprawling settlement 1.0 Where is it based? -> $x: (soda, be base in, $x) -> (Soda-Club, is based in, the nasty , sprawling settlement) -> the nasty , sprawling settlement (4763ms) Where is it based? Washington DC 1.0 Where is it based? -> $x: (marijuana, be base in, $x) -> (the Marijuana Policy Project, are based in, Washington DC) -> Washington DC (4812ms) Where is it based? unimpeachable Scriptural authority 1.0 Where is it based? -> $x: (slavery, be base in, $x) -> (slavery, was based in, unimpeachable Scriptural authority) -> unimpeachable Scriptural authority (4733ms) Where is it based? Greenwich 1.0 Where is it based? -> $x: (silver, be base in, $x) -> (Silver Point Capital, is based in, Greenwich) -> Greenwich (1929ms) Where is it based? Irvine 1.0 Where is it based? -> $x: (newport, be base in, $x) -> (Newport, is a public company based in, Irvine) -> Irvine (4748ms) Where is it based? HCM City 1.0 Where is it based? -> $x: (frisbee, be base in, $x) -> (another Ultimate Frisbee player, was based in, HCM City) -> HCM City (4770ms) Where is it based? China 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, is based in, China) -> China (4690ms) Where is it based? France 1.0 Where is it based? -> $x: (life, be base in, $x) -> (Life, is based both in, France) -> France (4797ms) Where is it based? Arizona 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, is based in, Arizona) -> Arizona (4826ms) Where is it based? wisdom 1.0 Where is it based? -> $x: (life, be base in, $x) -> (your senses and life, are based in, wisdom) -> wisdom (4217ms) Where is it based? East Sussex 1.0 Where is it based? -> $x: (rainbow, be base in, $x) -> (The Cosmic Rainbows Healing Centre, is based in, East Sussex) -> East Sussex (4707ms) Where is it based? the Dells 1.0 Where is it based? -> $x: (world, be base in, $x) -> (this world, is simply based in, the Dells) -> the Dells (4821ms) Where is it based? Bardstown 1.0 Where is it based? -> $x: (heaven, be base in, $x) -> (Heaven Hill, is based in, Bardstown) -> Bardstown (4748ms) Where is it based? the antiaircraft division 1.0 Where is it based? -> $x: (object, be base in, $x) -> (these objects, are based in, the antiaircraft division) -> the antiaircraft division (4741ms) Where is it based? original slides/notes 1.0 Where is it based? -> $x: (slide, be base in, $x) -> (Slides, have been based in-part upon, original slides/notes) -> original slides/notes (4725ms) Where is it based? silico predictions 1.0 Where is it based? -> $x: (protein, be base in, $x) -> (secreted proteins, are based on in, silico predictions) -> silico predictions (4784ms) Where is it based? part 1.0 Where is it based? -> $x: (mean, be base in, $x) -> (Mean Girls, was based in, part) -> part (4822ms) Where is it based? San Francisco 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world?s, is based in, San Francisco) -> San Francisco (4681ms) Where is it based? a single example 1.0 Where is it based? -> $x: (life, be base in, $x) -> (our lives, is illogical based in, a single example) -> a single example (4381ms) Where is it based? Costa Rica 1.0 Where is it based? -> $x: (world, be base in, $x) -> (world, is based in, Costa Rica) -> Costa Rica (4792ms) Where is it based? Winnersh 1.0 Where is it based? -> $x: (recruitment, be base in, $x) -> (Connections Recruitment, is based in, Winnersh) -> Winnersh (4826ms) Where is it based? the fight 1.0 Where is it based? -> $x: (life, be base in, $x) -> (His life, was based in, the fight) -> the fight (4663ms) Where is it based? Leesburg 1.0 Where is it based? -> $x: (matter, be base in, $x) -> (Image Matters, is based in, Leesburg) -> Leesburg (4812ms) Where is it based? Beijing 1.0 Where is it based? -> $x: (it, be base in, $x) -> (Chinese furniture and art.It, is based in, Beijing) -> Beijing (4672ms) Where is it based? Girona 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, is based in, Girona) -> Girona (4741ms) Where is it based? Nassau 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the World, is based in, Nassau) -> Nassau (4382ms) Where is it based? Kalamazoo 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, is based in, Kalamazoo) -> Kalamazoo (4217ms) Where is it based? New Mexico 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, is based in, New Mexico) -> New Mexico (4741ms) Where is it based? Brisbane 1.0 Where is it based? -> $x: (it, be base in, $x) -> (Axle IT Axle IT, is a company based in, Brisbane) -> Brisbane (4808ms) Where is it based? Sterling 1.0 Where is it based? -> $x: (life, be base in, $x) -> (Lives, is based in, Sterling) -> Sterling (2898ms) Where is it based? Huntingdon 1.0 Where is it based? -> $x: (life, be base in, $x) -> (Huntingdon Life Sciences, is based in, Huntingdon) -> Huntingdon (4770ms) Where is it based? limerick 1.0 Where is it based? -> $x: (recruitment, be base in, $x) -> (Bdo recruitment, is based in, limerick) -> limerick (4798ms) Where is it based? mediated self-interest 1.0 Where is it based? -> $x: (life, be base in, $x) -> (Life style, is based in, mediated self-interest) -> mediated self-interest (4777ms) Where is it based? Seattle 1.0 Where is it based? -> $x: (gravity, be base in, $x) -> (Gravity Payments, is based in, Seattle) -> Seattle (4681ms) Where is it based? Thame 1.0 Where is it based? -> $x: (recruitment, be base in, $x) -> (Downtown Recruitment, are based in, Thame) -> Thame (4741ms) Where is it based? large measure 1.0 Where is it based? -> $x: (it, be base in, $x) -> (an IT Policy Process, was based in, large measure) -> large measure (4748ms) Where is it based? the Soho Street temple 1.0 Where is it based? -> $x: (life, be base in, $x) -> (Life, is based in, the Soho Street temple) -> the Soho Street temple (4741ms) Where is it based? Chicago 1.0 Where is it based? -> $x: (world, be base in, $x) -> (World Book, is based in, Chicago) -> Chicago (4822ms) Where is it based? Tempe 1.0 Where is it based? -> $x: (life, be base in, $x) -> (LifeLock, is based in, Tempe) -> Tempe (4792ms) Where is it based? Derby 1.0 Where is it based? -> $x: (matter, be base in, $x) -> (Foundation Matters, is based in, Derby) -> Derby (1854ms) Where is it based? Taipei 1.0 Where is it based? -> $x: (life, be base in, $x) -> (Fubon Life Fubon Life, is based in, Taipei) -> Taipei (4822ms) Where is it based? clusters 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, is based in, clusters) -> clusters (4663ms) Where is it based? understanding reality 1.0 Where is it based? -> $x: (world, be base in, $x) -> (world, is based in, understanding reality) -> understanding reality (4817ms) Where is it based? Portland 1.0 Where is it based? -> $x: (world, be base in, $x) -> (World Pulse, is based here in, Portland) -> Portland (4681ms) Where is it based? Atlanta 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, is based in, Atlanta) -> Atlanta (4699ms) Where is it based? Tucson 1.0 Where is it based? -> $x: (iron, be base in, $x) -> (Titan Iron Ore Corp. Titan, is based in, Tucson) -> Tucson (4777ms) Where is it based? Warrington 1.0 Where is it based? -> $x: (it, be base in, $x) -> (Accent IT Solutions, are based in, Warrington) -> Warrington (4733ms) Where is it based? Saudi Arabia 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, is based in, Saudi Arabia) -> Saudi Arabia (3643ms) Where is it based? New York City 1.0 Where is it based? -> $x: (it, be base in, $x) -> (It?s possible you?ll, be based in, New York City) -> New York City (4792ms) Where is it based? Washington 1.0 Where is it based? -> $x: (life, be base in, $x) -> (Four life sciences specialists, are based in, Washington) -> Washington (4817ms) Where is it based? East Sydney 1.0 Where is it based? -> $x: (it, be base in, $x) -> (Switch I.T., is based in, East Sydney) -> East Sydney (4784ms) Where is it based? Udaipur 1.0 Where is it based? -> $x: (life, be base in, $x) -> (our lives, were based in, Udaipur) -> Udaipur (4808ms) Where is it based? Co. Clare 1.0 Where is it based? -> $x: (it, be base in, $x) -> (this IT Administrator position, will be based in, Co. Clare) -> Co. Clare (4784ms) Where is it based? Mississauga 1.0 Where is it based? -> $x: (limo, be base in, $x) -> (Halton Elite Limos, are based in, Mississauga) -> Mississauga (4808ms) Where is it based? Canberra 1.0 Where is it based? -> $x: (thorpe, be base in, $x) -> (Rebecca Thorpe, is based in, Canberra) -> Canberra (2898ms) Where is it based? Henderson 1.0 Where is it based? -> $x: (silver, be base in, $x) -> (Silver State, was based in, Henderson) -> Henderson (1800ms) Where is it based? Allentown 1.0 Where is it based? -> $x: (iron, be base in, $x) -> (the Lehigh Valley IronPigs, are based in, Allentown) -> Allentown (4808ms) Where is it based? Welwyn Garden City 1.0 Where is it based? -> $x: (silver, be base in, $x) -> (Silver Fox, is a family business based in, Welwyn Garden City) -> Welwyn Garden City (2241ms) Where is it based? the Disney film Mulan 1.0 Where is it based? -> $x: (world, be base in, $x) -> (This world, is based in, the Disney film Mulan) -> the Disney film Mulan (4733ms) Where is it based? Saint Ouen sur 1.0 Where is it based? -> $x: (it, be base in, $x) -> (toggle fastener...It, is based in, Saint Ouen sur) -> Saint Ouen sur (4681ms) Where is it based? the natural abilities 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, was fortuitously based in, the natural abilities) -> the natural abilities (4748ms) Where is it based? Austin 1.0 Where is it based? -> $x: (neon, be base in, $x) -> (Neon Indian ?, is based in, Austin) -> Austin (4741ms) Where is it based? Nepal 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, is based in, Nepal) -> Nepal (4381ms) Where is it based? the UK 1.0 Where is it based? -> $x: (it, be base in, $x) -> (a IT jobs board, is based in, the UK) -> the UK (4784ms) Where is it based? the local government 1.0 Where is it based? -> $x: (it, be base in, $x) -> (some it, might be based mostly in, the local government) -> the local government (4792ms) Where is it based? Dubai 1.0 Where is it based? -> $x: (world, be base in, $x) -> (DP World, is based in, Dubai) -> Dubai (4812ms) Where is it based? foundations 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, are based in, foundations) -> foundations (4803ms) Where is it based? Chennai 1.0 Where is it based? -> $x: (recruitment, be base in, $x) -> (Our recruitment office, is based in, Chennai) -> Chennai (4797ms) Where is it based? the U.S. September 1.0 Where is it based? -> $x: (it, be base in, $x) -> (deep IT roles, are primarily based in, the U.S. September) -> the U.S. September (2004ms) Where is it based? large part 1.0 Where is it based? -> $x: (life, be base in, $x) -> (life insurance, are also based in, large part) -> large part (4803ms) Where is it based? San Diego 1.0 Where is it based? -> $x: (world, be base in, $x) -> (World Music, is currently based in, San Diego) -> San Diego (4681ms) Where is it based? altruistic aspirations 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, often are based in, altruistic aspirations) -> altruistic aspirations (4218ms) Where is it based? Calgary 1.0 Where is it based? -> $x: (it, be base in, $x) -> (the IT Manager, is based in, Calgary) -> Calgary (4797ms) Where is it based? Oxford 1.0 Where is it based? -> $x: (life, be base in, $x) -> ('s life, was based in, Oxford) -> Oxford (4792ms) Where is it based? Hamburg 1.0 Where is it based? -> $x: (world, be base in, $x) -> (Our world, is based in, Hamburg) -> Hamburg (3826ms) Where is it based? the physical reality 1.0 Where is it based? -> $x: (life, be base in, $x) -> (Life, is based in, the physical reality) -> the physical reality (4699ms) Where is it based? a wonderful city 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, is based in, a wonderful city) -> a wonderful city (4690ms) Where is it based? Framingham 1.0 Where is it based? -> $x: (iron, be base in, $x) -> (Iron Mountain Digital, is based in, Framingham) -> Framingham (4808ms) Where is it based? the hardscrabble reality 1.0 Where is it based? -> $x: (marijuana, be base in, $x) -> (marijuana, is based in, the hardscrabble reality) -> the hardscrabble reality (4792ms) Where is it based? the Pilbara region 1.0 Where is it based? -> $x: (iron, be base in, $x) -> (Its Australian Iron Ore assets, are based in, the Pilbara region) -> the Pilbara region (4763ms) Where is it based? Michigan 1.0 Where is it based? -> $x: (matter, be base in, $x) -> (All Children Matter, is based in, Michigan) -> Michigan (4748ms) Where is it based? Mannheim 1.0 Where is it based? -> $x: (it, be base in, $x) -> (IT and network solutions, is based in, Mannheim) -> Mannheim (4784ms) Where is it based? San Mateo 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, are based in, San Mateo) -> San Mateo (4821ms) Where is it based? California 1.0 Where is it based? -> $x: (life, be base in, $x) -> (Her whole life, was based in, California) -> California (4708ms) Where is it based? South Wales 1.0 Where is it based? -> $x: (limo, be base in, $x) -> (Limo Broker, is based in, South Wales) -> South Wales (4792ms) Where is it based? Ramallah 1.0 Where is it based? -> $x: (silver, be base in, $x) -> (Charlotte Silver, is a journalist based in, Ramallah) -> Ramallah (4808ms) Where is it based? Norway 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, is based in, Norway) -> Norway (4803ms) Where is it based? Rotterdam 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, is based in, Rotterdam) -> Rotterdam (4733ms) Where is it based? Ft 1.0 Where is it based? -> $x: (life, be base in, $x) -> (Life Coach Training, is based in, Ft) -> Ft (4756ms) Where is it based? Jacksonville Florida 1.0 Where is it based? -> $x: (life, be base in, $x) -> (Natural Life, is based in, Jacksonville Florida) -> Jacksonville Florida (4681ms) Where is it based? a purpose-built centre 1.0 Where is it based? -> $x: (it, be base in, $x) -> (The IT team, is based in, a purpose-built centre) -> a purpose-built centre (4770ms) Where is it based? Reno NV 1.0 Where is it based? -> $x: (silver, be base in, $x) -> (Silver Locks, is based in, Reno NV) -> Reno NV (4792ms) Where is it based? Aliso Viejo 1.0 Where is it based? -> $x: (silicon, be base in, $x) -> (SiliconSystems, is based in, Aliso Viejo) -> Aliso Viejo (4381ms) Where is it based? Romford 1.0 Where is it based? -> $x: (life, be base in, $x) -> (social lives, are based in, Romford) -> Romford (4663ms) Where is it based? Staines 1.0 Where is it based? -> $x: (recruitment, be base in, $x) -> (The recruitment consultant, will be based in, Staines) -> Staines (1929ms) Where is it based? Norfolk 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, is based in, Norfolk) -> Norfolk (4826ms) Where is it based? the City 1.0 Where is it based? -> $x: (recruitment, be base in, $x) -> (Nexus Recruitment, is based in, the City) -> the City (4784ms) Where is it based? World War Two 1.0 Where is it based? -> $x: (life, be base in, $x) -> (life, are based in, World War Two) -> World War Two (4690ms) Where is it based? University House 1.0 Where is it based? -> $x: (life, be base in, $x) -> (Student Life, are based in, University House) -> University House (4803ms) Where is it based? conflict 1.0 Where is it based? -> $x: (life, be base in, $x) -> (Human life, would be based in, conflict) -> conflict (4812ms) Where is it based? rules and laws 1.0 Where is it based? -> $x: (life, be base in, $x) -> (our daily life, is based in, rules and laws) -> rules and laws (4792ms) Where is it based? Asia 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, are based in, Asia) -> Asia (4690ms) Where is it based? perfection 1.0 Where is it based? -> $x: (life, be base in, $x) -> (life, is his base in, perfection) -> perfection (4218ms) Where is it based? Pakistan 1.0 Where is it based? -> $x: (it, be base in, $x) -> (Geoconsultant It, is based in, Pakistan) -> Pakistan (4821ms) Where is it based? Columbia 1.0 Where is it based? -> $x: (life, be base in, $x) -> (Colonial Life, is based in, Columbia) -> Columbia (4808ms) Where is it based? chaos and horror and murder 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, is truly based in, chaos and horror and murder) -> chaos and horror and murder (4725ms) Where is it based? a Biotech Region 1.0 Where is it based? -> $x: (protein, be base in, $x) -> (high quality recombinant proteins, is based in, a Biotech Region) -> a Biotech Region (2241ms) Where is it based? Plainfield 1.0 Where is it based? -> $x: (spring, be base in, $x) -> (Spring-Green, is based in, Plainfield) -> Plainfield (4748ms) Where is it based? the Wellington Region 1.0 Where is it based? -> $x: (life, be base in, $x) -> (civic life, are based in, the Wellington Region) -> the Wellington Region (4672ms) Where is it based? Bungonia/goulburn 1.0 Where is it based? -> $x: (slide, be base in, $x) -> (Sliding lodge performance horses, is based in, Bungonia/goulburn) -> Bungonia/goulburn (4672ms) Where is it based? Java 1.0 Where is it based? -> $x: (spring, be base in, $x) -> (ColdSpring, is based in-part on, Java) -> Java (4770ms) Where is it based? the cosmic manifestation 1.0 Where is it based? -> $x: (life, be base in, $x) -> (all life, is based in, the cosmic manifestation) -> the cosmic manifestation (4797ms) Where is it based? Leuven 1.0 Where is it based? -> $x: (it, be base in, $x) -> (Their international IT team, is based in, Leuven) -> Leuven (4763ms) Where is it based? Dunedin 1.0 Where is it based? -> $x: (neurosurgeon, be base in, $x) -> (three neurosurgeons, will eventually be based in, Dunedin) -> Dunedin (4803ms) Where is it based? reproductive rights 1.0 Where is it based? -> $x: (life, be base in, $x) -> (my life, is based in, reproductive rights) -> reproductive rights (4716ms) Where is it based? 26 countries 1.0 Where is it based? -> $x: (it, be base in, $x) -> (the IT landscape Gartner analysts, are based in, 26 countries) -> 26 countries (4725ms) Where is it based? Gillingham 1.0 Where is it based? -> $x: (it, be base in, $x) -> (IT Sales role, is based in, Gillingham) -> Gillingham (4777ms) Where is it based? a large part 1.0 Where is it based? -> $x: (titanium, be base in, $x) -> (Titanium, was based in, a large part) -> a large part (1854ms) Where is it based? St . Louis 1.0 Where is it based? -> $x: (milk, be base in, $x) -> ('s bottled milk sales, were based in, St . Louis) -> St . Louis (1854ms) Where is it based? the building 1.0 Where is it based? -> $x: (it, be base in, $x) -> (The Faculty IT team, are now based in, the building) -> the building (4716ms) Where is it based? the county 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, are based in, the county) -> the county (4725ms) Where is it based? Washington D.C. 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, are based in, Washington D.C.) -> Washington D.C. (4716ms) Where is it based? Stockport 1.0 Where is it based? -> $x: (seta, be base in, $x) -> (SETA, is based in, Stockport) -> Stockport (4821ms) Where is it based? fear 1.0 Where is it based? -> $x: (life, be base in, $x) -> (my life, is based in, fear) -> fear (4663ms) Where is it based? the West Bank 1.0 Where is it based? -> $x: (silver, be base in, $x) -> (Charlotte Silver, is a journalist based in, the West Bank) -> the West Bank (1929ms) Where is it based? Maryland 1.0 Where is it based? -> $x: (spring, be base in, $x) -> (Sandy Spring, is based in, Maryland) -> Maryland (4797ms) Where is it based? India 1.0 Where is it based? -> $x: (it, be base in, $x) -> (an IT Outsourcing Company, is based in, India) -> India (4763ms) Where is it based? happiness and fulfillment 1.0 Where is it based? -> $x: (life, be base in, $x) -> (life, is based in, happiness and fulfillment) -> happiness and fulfillment (4382ms) Where is it based? Redwood City 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, is based in, Redwood City) -> Redwood City (4803ms) Where is it based? Kentucky 1.0 Where is it based? -> $x: (spring, be base in, $x) -> (the spring Court, will be based in, Kentucky) -> Kentucky (4699ms) Where is it based? a principled way 1.0 Where is it based? -> $x: (life, be base in, $x) -> (our life choices, are based in, a principled way) -> a principled way (4716ms) Where is it based? the Middle 1.0 Where is it based? -> $x: (spring, be base in, $x) -> (The Springs, are based in, the Middle) -> the Middle (4812ms) Where is it based? Japan 1.0 Where is it based? -> $x: (it, be base in, $x) -> (an IT instructor & engineer, has been based in, Japan) -> Japan (4763ms) Where is it based? Bracknell 1.0 Where is it based? -> $x: (it, be base in, $x) -> (I.T., are based in, Bracknell) -> Bracknell (4708ms) Where is it based? Springdale 1.0 Where is it based? -> $x: (protein, be base in, $x) -> (the world?s number one protein provider, is based in, Springdale) -> Springdale (4663ms) Where is it based? the Monterey Park 1.0 Where is it based? -> $x: (it, be base in, $x) -> (The IT Intern, will be based in, the Monterey Park) -> the Monterey Park (4741ms) Where is it based? the UK. 1.0 Where is it based? -> $x: (life, be base in, $x) -> (my working life, has been based in, the UK.) -> the UK. (4756ms) Where is it based? Birmingham 1.0 Where is it based? -> $x: (recruitment, be base in, $x) -> (Aarca Sales recruitment, are based in, Birmingham) -> Birmingham (4826ms) Where is it based? Ada 1.0 Where is it based? -> $x: (world, be base in, $x) -> (world headquarters, is based in, Ada) -> Ada (3643ms) Where is it based? a number 1.0 Where is it based? -> $x: (recruitment, be base in, $x) -> (Our recruitment teams, are based in, a number) -> a number (4817ms) Where is it based? scientology 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, is based in, scientology) -> scientology (4777ms) Where is it based? Las Vegas 1.0 Where is it based? -> $x: (silver, be base in, $x) -> (Silver State Helicopters, was based in, Las Vegas) -> Las Vegas (4777ms) Where is it based? Astrology 1.0 Where is it based? -> $x: (heaven, be base in, $x) -> (heaven, is based in, Astrology) -> Astrology (4681ms) Where is it based? Christ 1.0 Where is it based? -> $x: (mean, be base in, $x) -> (the new meaning, is based in, Christ) -> Christ (1928ms) Where is it based? Minsk 1.0 Where is it based? -> $x: (it, be base in, $x) -> (the SputIT, is a software development company based in, Minsk) -> Minsk (4817ms) Where is it based? Ottawa 1.0 Where is it based? -> $x: (life, be base in, $x) -> (Canada Life Insurance, was based in, Ottawa) -> Ottawa (2898ms) Where is it based? Perth 1.0 Where is it based? -> $x: (neptune, be base in, $x) -> (Neptune Marine Services, are based in, Perth) -> Perth (4707ms) Where is it based? Burlingame 1.0 Where is it based? -> $x: (gravity, be base in, $x) -> (BitGravity, is based in, Burlingame) -> Burlingame (4802ms) Where is it based? a deductive process 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, must be based in, a deductive process) -> a deductive process (4826ms) Where is it based? Kelowna 1.0 Where is it based? -> $x: (penguin, be base in, $x) -> (Club Penguin, is based in, Kelowna) -> Kelowna (4663ms) Where is it based? Germany 1.0 Where is it based? -> $x: (it, be base in, $x) -> (ShareIt, is based in, Germany) -> Germany (4792ms) Where is it based? Scotland 1.0 Where is it based? -> $x: (silver, be base in, $x) -> (Silver Fox Books, is based in, Scotland) -> Scotland (4792ms) Where is it based? Philly 1.0 Where is it based? -> $x: (rainbow, be base in, $x) -> (?Rainbow Destroyer, is a zombie-pop duo based in, Philly) -> Philly (4817ms) Where is it based? ?Yap. 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, was based in, ?Yap.) -> ?Yap. (4817ms) Where is it based? Harpenden 1.0 Where is it based? -> $x: (it, be base in, $x) -> (Virtuosity IT Ltd, is based in, Harpenden) -> Harpenden (4699ms) Where is it based? Wisco 1.0 Where is it based? -> $x: (life, be base in, $x) -> (early life, was also based in, Wisco) -> Wisco (4792ms) Where is it based? the Palo Alto office 1.0 Where is it based? -> $x: (silicon, be base in, $x) -> (Silicon Valley ?, is based in, the Palo Alto office) -> the Palo Alto office (4812ms) Where is it based? Rochester 1.0 Where is it based? -> $x: (it, be base in, $x) -> ('s IT group, is based in, Rochester) -> Rochester (4812ms) Where is it based? southern California 1.0 Where is it based? -> $x: (etiquette, be base in, $x) -> (Etiquette Expert Elaine Swann, is based in, southern California) -> southern California (4699ms) Where is it based? Redcliffe 1.0 Where is it based? -> $x: (matter, be base in, $x) -> (Matter Solutions, are based in, Redcliffe) -> Redcliffe (4812ms) Where is it based? Freiburg 1.0 Where is it based? -> $x: (neolithic, be base in, $x) -> (the Neolithic period, is based in, Freiburg) -> Freiburg (4733ms) Where is it based? time and place 1.0 Where is it based? -> $x: (it, be base in, $x) -> (Princess--it, is solidly based in, time and place) -> time and place (4672ms) Where is it based? the Netherlands 1.0 Where is it based? -> $x: (it, be base in, $x) -> (Fox-IT, is based in, the Netherlands) -> the Netherlands (4672ms) Where is it based? Indiana 1.0 Where is it based? -> $x: (life, be base in, $x) -> (life, is based in, Indiana) -> Indiana (4808ms) Where is it based? Newark 1.0 Where is it based? -> $x: (rainbow, be base in, $x) -> ('s Rainbow Communications, is based in, Newark) -> Newark (4812ms) Where is it based? Hampshire 1.0 Where is it based? -> $x: (recruitment, be base in, $x) -> (1-1 Recruitment, has been based in, Hampshire) -> Hampshire (4785ms) Where is it based? the US. 1.0 Where is it based? -> $x: (world, be base in, $x) -> (the world, are based in, the US.) -> the US. (4826ms) Where is it based? Cupertino 1.0 Where is it based? -> $x: (silicon, be base in, $x) -> (Samsung Display Division Silicon Image, is based in, Cupertino) -> Cupertino (4817ms) Where is it based? Georgia 1.0 Where is it based? -> $x: (world, be base in, $x) -> (His world, is based in, Georgia) -> Georgia (4826ms) Where is it based? Ohio 1.0 Where is it based? -> $x: (life, be base in, $x) -> (Ohio Life, was a bank based in, Ohio) -> Ohio (4707ms) Where is it based? Hamilton 1.0 Where is it based? -> $x: (life, be base in, $x) -> (Life Exposure Life Exposure Photography, is based in, Hamilton) -> Hamilton (4699ms) Where is it based? Lewiston 1.0 Where is it based? -> $x: (rainbow, be base in, $x) -> (Rainbow FCU, is based in, Lewiston) -> Lewiston (4663ms) Where is it based? Jackson 1.0 Where is it based? -> $x: (life, be base in, $x) -> (Southern Jewish Life, is based in, Jackson) -> Jackson (4690ms) Where is it based? Los Angeles 1.0 Where is it based? -> $x: (silicon, be base in, $x) -> (Silicon Valley Heaps, is based in, Los Angeles) -> Los Angeles (4826ms) Where is it based? Regina 1.0 Where is it based? -> $x: (it, be base in, $x) -> (Check-It Monitoring Solutions Inc., is based in, Regina) -> Regina (4663ms) Where is it based? Lille 0.888888888889 Where is it based? -> $x: (automobile, be base in, $x) -> (Verbaere Automobiles, is based in, Lille) -> Lille (4830ms) Where is it based? Wuhu 0.888888888889 Where is it based? -> $x: (automobile, be base in, $x) -> (the automobile company Chery, is based in, Wuhu) -> Wuhu (4834ms) Where is it based? Pasadena 0.888888888889 Where is it based? -> $x: (earth, be base in, $x) -> (EarthLink Network, is based in, Pasadena) -> Pasadena (4838ms) Where is it based? Colorado 0.888888888889 Where is it based? -> $x: (earth, be base in, $x) -> (One Earth Future, is a private foundation based in, Colorado) -> Colorado (4838ms) Where is it based? Tolkien 0.888888888889 Where is it based? -> $x: (earth, be base in, $x) -> ('s fictional Middle-earth cosmology, are based in, Tolkien) -> Tolkien (4830ms) Where is it based? Auburn 0.888888888889 Where is it based? -> $x: (automobile, be base in, $x) -> (the Auburn Automobile Company, was based in, Auburn) -> Auburn (4838ms) Where is it based? Dallas 0.888888888889 Where is it based? -> $x: (entomologist, be base in, $x) -> (Extension entomologist Dr. Allen Knutson, is based in, Dallas) -> Dallas (4838ms) Where is it based? Tacoma 0.888888888889 Where is it based? -> $x: (earth, be base in, $x) -> (Earth Economics, is a non-profit organization based in, Tacoma) -> Tacoma (4830ms) Where is it based? the foothills of the Southern Alps 0.888888888889 Where is it based? -> $x: (earth, be base in, $x) -> (Blue Earth, is based in, the foothills of the Southern Alps) -> the foothills of the Southern Alps (4830ms) Where is it based? Brooklyn 0.888888888889 Where is it based? -> $x: (earth, be base in, $x) -> (Beautiful Earth, is based in, Brooklyn) -> Brooklyn (4826ms) Where is it based? Ithaca 0.888888888889 Where is it based? -> $x: (earth, be base in, $x) -> (the Earth, is a non-profit organization based in, Ithaca) -> Ithaca (4834ms) Where is it based? Trenton 0.888888888889 Where is it based? -> $x: (earth, be base in, $x) -> ('s largest earth-friendlycompanies, is based in, Trenton) -> Trenton (4834ms) Where is it based? South Bend 0.888888888889 Where is it based? -> $x: (automobile, be base in, $x) -> (an American automobile brand, is based in, South Bend) -> South Bend (4830ms) Where is it based? turn 0.888888888889 Where is it based? -> $x: (earth, be base in, $x) -> (the earth, is based in, turn) -> turn (4834ms) Where is it based? Germantown 0.888888888889 Where is it based? -> $x: (earth, be base in, $x) -> (Earth Networks, is based in, Germantown) -> Germantown (4830ms) Where is it based? Australia 0.888888888889 Where is it based? -> $x: (earth, be base in, $x) -> (Ocean Earth, is a company based in, Australia) -> Australia (4838ms) Where is it based? Virginia Beach 0.888888888889 Where is it based? -> $x: (cigarette, be base in, $x) -> (Premium Electronic Cigarette, is based in, Virginia Beach) -> Virginia Beach (4834ms) Where is it based? Lynnwood 0.888888888889 Where is it based? -> $x: (earth, be base in, $x) -> (Klean Earth Environmental Company, is based in, Lynnwood) -> Lynnwood (4838ms) Where is it based? the Snow Forts 0.888888888889 Where is it based? -> $x: (earth, be base in, $x) -> (The Earth Day Party 2012, is mainly based in, the Snow Forts) -> the Snow Forts (4830ms) Where is it based? Rhinebeck 0.888888888889 Where is it based? -> $x: (earth, be base in, $x) -> (EarthKind Energy Inc., currently is based in, Rhinebeck) -> Rhinebeck (4830ms) Where is it based? Carlisle 0.888888888889 Where is it based? -> $x: (earth, be base in, $x) -> (Project Earth, is based in, Carlisle) -> Carlisle (4838ms) Where is it based? Reno 0.888888888889 Where is it based? -> $x: (automobile, be base in, $x) -> (The National Automobile Museum, is based in, Reno) -> Reno (4838ms) Where is it based? Midvale 0.888888888889 Where is it based? -> $x: (earth, be base in, $x) -> (EarthFAX Engineering Corp, is based in, Midvale) -> Midvale (4838ms) Where is it based? the Department 0.888888888889 Where is it based? -> $x: (earth, be base in, $x) -> (the Earth System QUEST, is based in, the Department) -> the Department (4834ms) Where is it based? Asheville 0.888888888889 Where is it based? -> $x: (earth, be base in, $x) -> (Earth Fare, is based in, Asheville) -> Asheville (4834ms) Where is it based? South Africa 0.888888888889 Where is it based? -> $x: (earth, be base in, $x) -> (Earth-Touch, are based in, South Africa) -> South Africa (4834ms) Where is it based? Trollh?ttan 0.888888888889 Where is it based? -> $x: (automobile, be base in, $x) -> (The automobile division, was based in, Trollh?ttan) -> Trollh?ttan (4838ms) Where is it based? Camborne 0.888888888889 Where is it based? -> $x: (earth, be base in, $x) -> (Cool Earth, is based in, Camborne) -> Camborne (4830ms) Where is it based? Trollh?ttan 0.888888888889 Where is it based? -> $x: (automobile, be base in, $x) -> (The Saab Automobile division, was based in, Trollh?ttan) -> Trollh?ttan (4834ms) Where is it based? the foothills 0.888888888889 Where is it based? -> $x: (earth, be base in, $x) -> (BLUE EARTH Blue Earth, is based in, the foothills) -> the foothills (4834ms) Where is it based? Eland 0.888888888889 Where is it based? -> $x: (earth, be base in, $x) -> (EarthWatch volunteers, are based in, Eland) -> Eland (4834ms) Where is it based? Shenzhen 0.777777777778 Where is it based? -> $x: (china, be base in, $x) -> (800,000 employees in China, are based in, Shenzhen) -> Shenzhen (4855ms) Where is it based? semi-colonial and Beats Studio 0.777777777778 Where is it based? -> $x: (china, be base in, $x) -> (China, is based in, semi-colonial and Beats Studio) -> semi-colonial and Beats Studio (4842ms) Where is it based? a head office 0.777777777778 Where is it based? -> $x: (china, be base in, $x) -> (The Delcam China subsidiary, is based in, a head office) -> a head office (4851ms) Where is it based? Otahuhu 0.777777777778 Where is it based? -> $x: (auckland, be base in, $x) -> (motorhome hire Auckland, is based in, Otahuhu) -> Otahuhu (4853ms) Where is it based? Qingdao 0.777777777778 Where is it based? -> $x: (china, be base in, $x) -> (China law blog, is an American lawyer based in, Qingdao) -> Qingdao (4853ms) Where is it based? Nanjing 0.777777777778 Where is it based? -> $x: (china, be base in, $x) -> (China, are based in, Nanjing) -> Nanjing (4848ms) Where is it based? Taiwan 0.777777777778 Where is it based? -> $x: (china, be base in, $x) -> (China Airlines, is based in, Taiwan) -> Taiwan (4855ms) Where is it based? the centre 0.777777777778 Where is it based? -> $x: (dna, be base in, $x) -> (May 3 , 2009 DNA Tattoo Studio, is based in, the centre) -> the centre (4842ms) Where is it based? Guiyang 0.777777777778 Where is it based? -> $x: (china, be base in, $x) -> (China, is based in, Guiyang) -> Guiyang (4857ms) Where is it based? Guangzhou 0.777777777778 Where is it based? -> $x: (china, be base in, $x) -> (China ?s largest airline, is based in, Guangzhou) -> Guangzhou (4845ms) Where is it based? Kunming 0.777777777778 Where is it based? -> $x: (china, be base in, $x) -> (China Minds Abroad, is based in, Kunming) -> Kunming (4845ms) Where is it based? Xiamen 0.777777777778 Where is it based? -> $x: (china, be base in, $x) -> (PCT China, is based in, Xiamen) -> Xiamen (4853ms) Where is it based? Kunming City 0.777777777778 Where is it based? -> $x: (china, be base in, $x) -> (www .shoessunglass-china.com, is based in, Kunming City) -> Kunming City (4851ms) Where is it based? Dublin 0.777777777778 Where is it based? -> $x: (dna, be base in, $x) -> (easyDNA, is based in, Dublin) -> Dublin (4851ms) Where is it based? Chengdu 0.777777777778 Where is it based? -> $x: (china, be base in, $x) -> (Air China Southwest Branch Company, is based in, Chengdu) -> Chengdu (4855ms) Where is it based? the West 0.777777777778 Where is it based? -> $x: (china, be base in, $x) -> (China, are based in, the West) -> the West (4845ms) Where is it based? Xi'an 0.777777777778 Where is it based? -> $x: (china, be base in, $x) -> (China Recycling Energy, is based in, Xi'an) -> Xi'an (4855ms) Where is it based? Auckland City 0.777777777778 Where is it based? -> $x: (auckland, be base in, $x) -> (the Auckland Regional Council, is also based in, Auckland City) -> Auckland City (4853ms) Where is it based? Zhuhai 0.777777777778 Where is it based? -> $x: (china, be base in, $x) -> (The China venture, will be based in, Zhuhai) -> Zhuhai (4855ms) Where is it based? mainland China 0.777777777778 Where is it based? -> $x: (china, be base in, $x) -> (Giant China Co, is based in, mainland China) -> mainland China (4857ms) Where is it based? Ballina 0.777777777778 Where is it based? -> $x: (dna, be base in, $x) -> (DNA Digital, is based in, Ballina) -> Ballina (4851ms) Where is it based? Jiangxi Province 0.777777777778 Where is it based? -> $x: (china, be base in, $x) -> (Survivor China, will be based in, Jiangxi Province) -> Jiangxi Province (4855ms) Where is it based? Shouguang 0.777777777778 Where is it based? -> $x: (china, be base in, $x) -> (China New Borun, is based in, Shouguang) -> Shouguang (4848ms) Where is it based? Saddler Street 0.777777777778 Where is it based? -> $x: (durham, be base in, $x) -> (Durham Mustard, was based in, Saddler Street) -> Saddler Street (4845ms) Where is it based? large Part 0.777777777778 Where is it based? -> $x: (china, be base in, $x) -> (China, is based in, large Part) -> large Part (4853ms) Where is it based? HongKong 0.777777777778 Where is it based? -> $x: (china, be base in, $x) -> (China Motorcycle Tour, is based in, HongKong) -> HongKong (4857ms) Where is it based? Harbin 0.777777777778 Where is it based? -> $x: (china, be base in, $x) -> (China Education Alliance, is based in, Harbin) -> Harbin (4855ms) Where is it based? Shanghai 0.777777777778 Where is it based? -> $x: (china, be base in, $x) -> (China Eastern Airlines, is based in, Shanghai) -> Shanghai (4857ms) Where is it based? New York China 0.777777777778 Where is it based? -> $x: (china, be base in, $x) -> (China Labor Watch, is based in, New York China) -> New York China (4857ms) Where is it based? the size 0.777777777778 Where is it based? -> $x: (china, be base in, $x) -> (China, is clearly ahead in based on, the size) -> the size (4848ms) Where is it based? Chongqing 0.777777777778 Where is it based? -> $x: (china, be base in, $x) -> (China Southern, is building its base in, Chongqing) -> Chongqing (4845ms) Where is it based? research and development 0.777777777778 Where is it based? -> $x: (china, be base in, $x) -> (China, is building a strong base in, research and development) -> research and development (4848ms) Where is it based? Whakatane 0.777777777778 Where is it based? -> $x: (auckland, be base in, $x) -> (Auckland programme, will be based in, Whakatane) -> Whakatane (4848ms) Where is it based? the Auckland Domain 0.777777777778 Where is it based? -> $x: (auckland, be base in, $x) -> (The Auckland Museum, is based in, the Auckland Domain) -> the Auckland Domain (4851ms) Where is it based? Ballina NSW 0.777777777778 Where is it based? -> $x: (dna, be base in, $x) -> (DNA Digital, is an Australian company based in, Ballina NSW) -> Ballina NSW (4845ms) Where is it based? the busy , vibrant cities 0.777777777778 Where is it based? -> $x: (china, be base in, $x) -> (China, are based in, the busy , vibrant cities) -> the busy , vibrant cities (4857ms) Where is it based? the Beijing office 0.777777777778 Where is it based? -> $x: (china, be base in, $x) -> (China, is also based in, the Beijing office) -> the Beijing office (4857ms) Where is it based? the Division 0.777777777778 Where is it based? -> $x: (china, be base in, $x) -> (China, is based in, the Division) -> the Division (4851ms) Where is it based? the industrial port city 0.777777777778 Where is it based? -> $x: (china, be base in, $x) -> (Our China office, is based in, the industrial port city) -> the industrial port city (4842ms) Where is it based? Dalian 0.777777777778 Where is it based? -> $x: (china, be base in, $x) -> (China, will be based in, Dalian) -> Dalian (4848ms) Where is it based? big cities 0.777777777778 Where is it based? -> $x: (china, be base in, $x) -> (China, are large state-owned corporations based in, big cities) -> big cities (4853ms) Where is it based? the East 0.777777777778 Where is it based? -> $x: (china, be base in, $x) -> (China ?s mobile market, is based in, the East) -> the East (4853ms) Where is it based? Putian 0.777777777778 Where is it based? -> $x: (china, be base in, $x) -> (China Brand Sneaker World CO., are based in, Putian) -> Putian (4845ms) Where is it based? Pudong 0.777777777778 Where is it based? -> $x: (china, be base in, $x) -> ('s China head office, is based in, Pudong) -> Pudong (4857ms) Where is it based? the Chaoyang district 0.777777777778 Where is it based? -> $x: (china, be base in, $x) -> (Limerick China Office, is based in, the Chaoyang district) -> the Chaoyang district (4848ms) Where is it based? Brandon 0.777777777778 Where is it based? -> $x: (china, be base in, $x) -> (China northsunm32, is based in, Brandon) -> Brandon (4853ms) Where is it based? the country 0.777777777778 Where is it based? -> $x: (durham, be base in, $x) -> (Durham, be based elsewhere in, the country) -> the country (4848ms) Where is it based? Morrisville 0.666666666667 Where is it based? -> $x: (carolina, be base in, $x) -> (North Carolina, is based in, Morrisville) -> Morrisville (4857ms) Where is it based? West Columbia 0.666666666667 Where is it based? -> $x: (carolina, be base in, $x) -> (Carolina Culinary Foods, is based in, West Columbia) -> West Columbia (4859ms) Where is it based? rough proportion 0.666666666667 Where is it based? -> $x: (albany, be base in, $x) -> (The Albany Plan, was based in, rough proportion) -> rough proportion (4857ms) Where is it based? Raleigh 0.666666666667 Where is it based? -> $x: (carolina, be base in, $x) -> (Carolina, are a five-man group based in, Raleigh) -> Raleigh (4859ms) Where is it based? North Carolina 0.666666666667 Where is it based? -> $x: (carolina, be base in, $x) -> ('s Carolina League, is based in, North Carolina) -> North Carolina (4859ms) Where is it based? Hendersonville 0.666666666667 Where is it based? -> $x: (carolina, be base in, $x) -> (Western North Carolina, is based in, Hendersonville) -> Hendersonville (4859ms) Where is it based? Durham 0.666666666667 Where is it based? -> $x: (carolina, be base in, $x) -> (The Carolina Chocolate Drops, are based in, Durham) -> Durham (4861ms) Where is it based? Cedar Grove NC 0.666666666667 Where is it based? -> $x: (carolina, be base in, $x) -> (Carolina Security Systems, is based in, Cedar Grove NC) -> Cedar Grove NC (4857ms) Where is it based? Charlotte 0.666666666667 Where is it based? -> $x: (carolina, be base in, $x) -> (Weisberg and Meyers North Carolina, is based in, Charlotte) -> Charlotte (4861ms) Where is it based? Latham 0.666666666667 Where is it based? -> $x: (albany, be base in, $x) -> (Albany Broadcasting, is based in, Latham) -> Latham (4861ms) Where is it based? South Kalimantan 0.666666666667 Where is it based? -> $x: (coal, be base in, $x) -> (a world class coal terminal, is fully based in, South Kalimantan) -> South Kalimantan (4861ms) Where is it based? Greensboro 0.666666666667 Where is it based? -> $x: (carolina, be base in, $x) -> (North Carolina, is based in, Greensboro) -> Greensboro (4861ms) Where is it based? the school 0.666666666667 Where is it based? -> $x: (carolina, be base in, $x) -> (the Carolina Community Media Project, is based in, the school) -> the school (4859ms) Where is it based? Balitmore 0.666666666667 Where is it based? -> $x: (carolina, be base in, $x) -> (North Carolina, is now based in, Balitmore) -> Balitmore (4859ms) Where is it based? Harworth 0.666666666667 Where is it based? -> $x: (coal, be base in, $x) -> (UK Coal, is based in, Harworth) -> Harworth (4859ms) Where is it based? Ontario 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (Adventure Canada, is based in, Ontario) -> Ontario (4864ms) Where is it based? whole or 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (the US , Canada , and countries, is based in, whole or) -> whole or (4864ms) Where is it based? Missouri 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (the United States and Canada, are based in, Missouri) -> Missouri (4861ms) Where is it based? Southfield 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (United States and Canada, are based in, Southfield) -> Southfield (4862ms) Where is it based? Burlington 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (Siemens Canada, is based in, Burlington) -> Burlington (4862ms) Where is it based? Markham 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (Rolta Canada Limited, is based in, Markham) -> Markham (4865ms) Where is it based? St . John 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (Young Adult Cancer Canada, is based in, St . John) -> St . John (4862ms) Where is it based? Montreal 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (Canada, will be based in, Montreal) -> Montreal (4861ms) Where is it based? Thornhill 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (Nike Canada Ltd., is based in, Thornhill) -> Thornhill (4863ms) Where is it based? Peterborough 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (WCs Canada, is based in, Peterborough) -> Peterborough (4865ms) Where is it based? alliston 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (Honda of canada manufacturing, is based in, alliston) -> alliston (4864ms) Where is it based? Hudson 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (Canada Randall Reeves, is a consultant based in, Hudson) -> Hudson (4864ms) Where is it based? Inuvik 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (ICC-Canada, is based in, Inuvik) -> Inuvik (4866ms) Where is it based? Manotick 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (Archive CD Books Canada, is based in, Manotick) -> Manotick (4864ms) Where is it based? Texas 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (Apple Canada, is based in, Texas) -> Texas (4863ms) Where is it based? Alberta 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (United Safety Canada Ltd., is based in, Alberta) -> Alberta (4865ms) Where is it based? Belleville 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (Canada Junction Web Design, is based in, Belleville) -> Belleville (4862ms) Where is it based? Qu?bec City 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (Canada, is based in, Qu?bec City) -> Qu?bec City (4864ms) Where is it based? southern Ontario 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (Canada, are based in, southern Ontario) -> southern Ontario (4861ms) Where is it based? Oakville 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (CGU Group Canada Ltd. Pethealth, is based in, Oakville) -> Oakville (4864ms) Where is it based? the Harrisburg , Pennsylvania area 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (Canada, is based in, the Harrisburg , Pennsylvania area) -> the Harrisburg , Pennsylvania area (4864ms) Where is it based? winnipeg 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (the appraisal institute of canada, is based in, winnipeg) -> winnipeg (4864ms) Where is it based? Victoria 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (Canada?s Chinese population, was based in, Victoria) -> Victoria (4865ms) Where is it based? Encino 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (Canada, is based in, Encino) -> Encino (4864ms) Where is it based? Quebec 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (Canada, are based in, Quebec) -> Quebec (4864ms) Where is it based? Windsor 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (Chrysler Canada Inc., is based in, Windsor) -> Windsor (4865ms) Where is it based? Ottowa 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (Equine Canada, is based in, Ottowa) -> Ottowa (4864ms) Where is it based? Kahnawake 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (The online casino Canada, is mostly based in, Kahnawake) -> Kahnawake (4865ms) Where is it based? Winnipeg 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (**CANADA, is based in, Winnipeg) -> Winnipeg (4865ms) Where is it based? the fur trade 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (Canada, is based in, the fur trade) -> the fur trade (4862ms) Where is it based? Mississauga Ontario 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (Fujifilm Canada, is based in, Mississauga Ontario) -> Mississauga Ontario (4865ms) Where is it based? Richmond 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (two Mo Teleflex Canada, is based in, Richmond) -> Richmond (4865ms) Where is it based? Alliston 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (Canada Manufacturing, is based in, Alliston) -> Alliston (4862ms) Where is it based? major urban centers 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (Canada, are primarily based in, major urban centers) -> major urban centers (4865ms) Where is it based? Middlefield 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (Western Canada, is based in, Middlefield) -> Middlefield (4862ms) Where is it based? Charlottetown 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (Canada Leslie, is based in, Charlottetown) -> Charlottetown (4862ms) Where is it based? the Toronto suburb 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (Wal-Mart Canada, is based in, the Toronto suburb) -> the Toronto suburb (4865ms) Where is it based? Gatineau 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (Canada, is a privately owned company based in, Gatineau) -> Gatineau (4861ms) Where is it based? Campbell River 0.555555555556 Where is it based? -> $x: (canada, be base in, $x) -> (Marine Harvest Canada, is based in, Campbell River) -> Campbell River (4865ms) ================================================ FILE: oqa-data/predictions/paralex-webquestions.txt ================================================ [File too large to display: 20.4 MB] ================================================ FILE: oqa-data/predictions/paralex-wikianswers.txt ================================================ [File too large to display: 36.7 MB] ================================================ FILE: oqa-data/predictions/sempre-trec.txt ================================================ How many stores does Wal-Mart operate world-wide? Spreadsheet Upload about Nobel Prize in LIterature nominees 1934-1936 -5.656 formula (!fb:dataworld.information_source.data_operations fb:en.world_wide_web)) (value (list (name fb:m.0g4xdns "Spreadsheet Upload about Nobel Prize in LIterature nominees 1934-1936") (name fb:m.0g4xhws "Spreadsheet Upload about NOBEL prize in literature nominees 1927-1930") (name fb:m.0bvrwrf "Spreadsheet Upload about astrid lindgren nom 08-09") (name fb:m.0g4m9s6 "Spreadsheet Upload about Edgar Award Nominees paperback original 70-89") (name fb:m.0bvldfg "Spreadsheet Upload about twitter tag 8") (name fb:m.0cgss6d "Spreadsheet Upload about National Jewish Book Award 98-01") (name fb:m.0g4xrmt "Spreadsheet Upload about nobel prize in literature nominees 1901-1902") (name fb:m.0g4x9tr "Spreadsheet Upload about Nobel Prize in Literature nominees 1946-1948") (name fb:m.0g4npqx "Spreadsheet Upload about edgar award nominees - critical 77-93") (name fb:m.0g4nlhw "Spreadsheet Upload about edgar award crime fact 75-91 nominees"))) (type fb:dataworld.mass_data_operation) How many stores does Wal-Mart operate world-wide? Spreadsheet Upload about NOBEL prize in literature nominees 1927-1930 -5.656 formula (!fb:dataworld.information_source.data_operations fb:en.world_wide_web)) (value (list (name fb:m.0g4xdns "Spreadsheet Upload about Nobel Prize in LIterature nominees 1934-1936") (name fb:m.0g4xhws "Spreadsheet Upload about NOBEL prize in literature nominees 1927-1930") (name fb:m.0bvrwrf "Spreadsheet Upload about astrid lindgren nom 08-09") (name fb:m.0g4m9s6 "Spreadsheet Upload about Edgar Award Nominees paperback original 70-89") (name fb:m.0bvldfg "Spreadsheet Upload about twitter tag 8") (name fb:m.0cgss6d "Spreadsheet Upload about National Jewish Book Award 98-01") (name fb:m.0g4xrmt "Spreadsheet Upload about nobel prize in literature nominees 1901-1902") (name fb:m.0g4x9tr "Spreadsheet Upload about Nobel Prize in Literature nominees 1946-1948") (name fb:m.0g4npqx "Spreadsheet Upload about edgar award nominees - critical 77-93") (name fb:m.0g4nlhw "Spreadsheet Upload about edgar award crime fact 75-91 nominees"))) (type fb:dataworld.mass_data_operation) How many stores does Wal-Mart operate world-wide? Spreadsheet Upload about astrid lindgren nom 08-09 -5.656 formula (!fb:dataworld.information_source.data_operations fb:en.world_wide_web)) (value (list (name fb:m.0g4xdns "Spreadsheet Upload about Nobel Prize in LIterature nominees 1934-1936") (name fb:m.0g4xhws "Spreadsheet Upload about NOBEL prize in literature nominees 1927-1930") (name fb:m.0bvrwrf "Spreadsheet Upload about astrid lindgren nom 08-09") (name fb:m.0g4m9s6 "Spreadsheet Upload about Edgar Award Nominees paperback original 70-89") (name fb:m.0bvldfg "Spreadsheet Upload about twitter tag 8") (name fb:m.0cgss6d "Spreadsheet Upload about National Jewish Book Award 98-01") (name fb:m.0g4xrmt "Spreadsheet Upload about nobel prize in literature nominees 1901-1902") (name fb:m.0g4x9tr "Spreadsheet Upload about Nobel Prize in Literature nominees 1946-1948") (name fb:m.0g4npqx "Spreadsheet Upload about edgar award nominees - critical 77-93") (name fb:m.0g4nlhw "Spreadsheet Upload about edgar award crime fact 75-91 nominees"))) (type fb:dataworld.mass_data_operation) How many stores does Wal-Mart operate world-wide? Spreadsheet Upload about Edgar Award Nominees paperback original 70-89 -5.656 formula (!fb:dataworld.information_source.data_operations fb:en.world_wide_web)) (value (list (name fb:m.0g4xdns "Spreadsheet Upload about Nobel Prize in LIterature nominees 1934-1936") (name fb:m.0g4xhws "Spreadsheet Upload about NOBEL prize in literature nominees 1927-1930") (name fb:m.0bvrwrf "Spreadsheet Upload about astrid lindgren nom 08-09") (name fb:m.0g4m9s6 "Spreadsheet Upload about Edgar Award Nominees paperback original 70-89") (name fb:m.0bvldfg "Spreadsheet Upload about twitter tag 8") (name fb:m.0cgss6d "Spreadsheet Upload about National Jewish Book Award 98-01") (name fb:m.0g4xrmt "Spreadsheet Upload about nobel prize in literature nominees 1901-1902") (name fb:m.0g4x9tr "Spreadsheet Upload about Nobel Prize in Literature nominees 1946-1948") (name fb:m.0g4npqx "Spreadsheet Upload about edgar award nominees - critical 77-93") (name fb:m.0g4nlhw "Spreadsheet Upload about edgar award crime fact 75-91 nominees"))) (type fb:dataworld.mass_data_operation) How many stores does Wal-Mart operate world-wide? Spreadsheet Upload about twitter tag 8 -5.656 formula (!fb:dataworld.information_source.data_operations fb:en.world_wide_web)) (value (list (name fb:m.0g4xdns "Spreadsheet Upload about Nobel Prize in LIterature nominees 1934-1936") (name fb:m.0g4xhws "Spreadsheet Upload about NOBEL prize in literature nominees 1927-1930") (name fb:m.0bvrwrf "Spreadsheet Upload about astrid lindgren nom 08-09") (name fb:m.0g4m9s6 "Spreadsheet Upload about Edgar Award Nominees paperback original 70-89") (name fb:m.0bvldfg "Spreadsheet Upload about twitter tag 8") (name fb:m.0cgss6d "Spreadsheet Upload about National Jewish Book Award 98-01") (name fb:m.0g4xrmt "Spreadsheet Upload about nobel prize in literature nominees 1901-1902") (name fb:m.0g4x9tr "Spreadsheet Upload about Nobel Prize in Literature nominees 1946-1948") (name fb:m.0g4npqx "Spreadsheet Upload about edgar award nominees - critical 77-93") (name fb:m.0g4nlhw "Spreadsheet Upload about edgar award crime fact 75-91 nominees"))) (type fb:dataworld.mass_data_operation) How many stores does Wal-Mart operate world-wide? Spreadsheet Upload about National Jewish Book Award 98-01 -5.656 formula (!fb:dataworld.information_source.data_operations fb:en.world_wide_web)) (value (list (name fb:m.0g4xdns "Spreadsheet Upload about Nobel Prize in LIterature nominees 1934-1936") (name fb:m.0g4xhws "Spreadsheet Upload about NOBEL prize in literature nominees 1927-1930") (name fb:m.0bvrwrf "Spreadsheet Upload about astrid lindgren nom 08-09") (name fb:m.0g4m9s6 "Spreadsheet Upload about Edgar Award Nominees paperback original 70-89") (name fb:m.0bvldfg "Spreadsheet Upload about twitter tag 8") (name fb:m.0cgss6d "Spreadsheet Upload about National Jewish Book Award 98-01") (name fb:m.0g4xrmt "Spreadsheet Upload about nobel prize in literature nominees 1901-1902") (name fb:m.0g4x9tr "Spreadsheet Upload about Nobel Prize in Literature nominees 1946-1948") (name fb:m.0g4npqx "Spreadsheet Upload about edgar award nominees - critical 77-93") (name fb:m.0g4nlhw "Spreadsheet Upload about edgar award crime fact 75-91 nominees"))) (type fb:dataworld.mass_data_operation) How many stores does Wal-Mart operate world-wide? Spreadsheet Upload about nobel prize in literature nominees 1901-1902 -5.656 formula (!fb:dataworld.information_source.data_operations fb:en.world_wide_web)) (value (list (name fb:m.0g4xdns "Spreadsheet Upload about Nobel Prize in LIterature nominees 1934-1936") (name fb:m.0g4xhws "Spreadsheet Upload about NOBEL prize in literature nominees 1927-1930") (name fb:m.0bvrwrf "Spreadsheet Upload about astrid lindgren nom 08-09") (name fb:m.0g4m9s6 "Spreadsheet Upload about Edgar Award Nominees paperback original 70-89") (name fb:m.0bvldfg "Spreadsheet Upload about twitter tag 8") (name fb:m.0cgss6d "Spreadsheet Upload about National Jewish Book Award 98-01") (name fb:m.0g4xrmt "Spreadsheet Upload about nobel prize in literature nominees 1901-1902") (name fb:m.0g4x9tr "Spreadsheet Upload about Nobel Prize in Literature nominees 1946-1948") (name fb:m.0g4npqx "Spreadsheet Upload about edgar award nominees - critical 77-93") (name fb:m.0g4nlhw "Spreadsheet Upload about edgar award crime fact 75-91 nominees"))) (type fb:dataworld.mass_data_operation) How many stores does Wal-Mart operate world-wide? Spreadsheet Upload about Nobel Prize in Literature nominees 1946-1948 -5.656 formula (!fb:dataworld.information_source.data_operations fb:en.world_wide_web)) (value (list (name fb:m.0g4xdns "Spreadsheet Upload about Nobel Prize in LIterature nominees 1934-1936") (name fb:m.0g4xhws "Spreadsheet Upload about NOBEL prize in literature nominees 1927-1930") (name fb:m.0bvrwrf "Spreadsheet Upload about astrid lindgren nom 08-09") (name fb:m.0g4m9s6 "Spreadsheet Upload about Edgar Award Nominees paperback original 70-89") (name fb:m.0bvldfg "Spreadsheet Upload about twitter tag 8") (name fb:m.0cgss6d "Spreadsheet Upload about National Jewish Book Award 98-01") (name fb:m.0g4xrmt "Spreadsheet Upload about nobel prize in literature nominees 1901-1902") (name fb:m.0g4x9tr "Spreadsheet Upload about Nobel Prize in Literature nominees 1946-1948") (name fb:m.0g4npqx "Spreadsheet Upload about edgar award nominees - critical 77-93") (name fb:m.0g4nlhw "Spreadsheet Upload about edgar award crime fact 75-91 nominees"))) (type fb:dataworld.mass_data_operation) How many stores does Wal-Mart operate world-wide? Spreadsheet Upload about edgar award nominees - critical 77-93 -5.656 formula (!fb:dataworld.information_source.data_operations fb:en.world_wide_web)) (value (list (name fb:m.0g4xdns "Spreadsheet Upload about Nobel Prize in LIterature nominees 1934-1936") (name fb:m.0g4xhws "Spreadsheet Upload about NOBEL prize in literature nominees 1927-1930") (name fb:m.0bvrwrf "Spreadsheet Upload about astrid lindgren nom 08-09") (name fb:m.0g4m9s6 "Spreadsheet Upload about Edgar Award Nominees paperback original 70-89") (name fb:m.0bvldfg "Spreadsheet Upload about twitter tag 8") (name fb:m.0cgss6d "Spreadsheet Upload about National Jewish Book Award 98-01") (name fb:m.0g4xrmt "Spreadsheet Upload about nobel prize in literature nominees 1901-1902") (name fb:m.0g4x9tr "Spreadsheet Upload about Nobel Prize in Literature nominees 1946-1948") (name fb:m.0g4npqx "Spreadsheet Upload about edgar award nominees - critical 77-93") (name fb:m.0g4nlhw "Spreadsheet Upload about edgar award crime fact 75-91 nominees"))) (type fb:dataworld.mass_data_operation) How many stores does Wal-Mart operate world-wide? Spreadsheet Upload about edgar award crime fact 75-91 nominees -5.656 formula (!fb:dataworld.information_source.data_operations fb:en.world_wide_web)) (value (list (name fb:m.0g4xdns "Spreadsheet Upload about Nobel Prize in LIterature nominees 1934-1936") (name fb:m.0g4xhws "Spreadsheet Upload about NOBEL prize in literature nominees 1927-1930") (name fb:m.0bvrwrf "Spreadsheet Upload about astrid lindgren nom 08-09") (name fb:m.0g4m9s6 "Spreadsheet Upload about Edgar Award Nominees paperback original 70-89") (name fb:m.0bvldfg "Spreadsheet Upload about twitter tag 8") (name fb:m.0cgss6d "Spreadsheet Upload about National Jewish Book Award 98-01") (name fb:m.0g4xrmt "Spreadsheet Upload about nobel prize in literature nominees 1901-1902") (name fb:m.0g4x9tr "Spreadsheet Upload about Nobel Prize in Literature nominees 1946-1948") (name fb:m.0g4npqx "Spreadsheet Upload about edgar award nominees - critical 77-93") (name fb:m.0g4nlhw "Spreadsheet Upload about edgar award crime fact 75-91 nominees"))) (type fb:dataworld.mass_data_operation) What was Sinatra's first recording? What Was -1.484 formula (fb:music.release_track.recording fb:m.0qtvgr)) (value (list (name fb:m.0q7l89w "What Was") (name fb:m.0rs87kf "What Was") (name fb:m.0kns3y9 "What Was"))) (type fb:music.release_track) What was Sinatra's first recording? What Was -1.484 formula (fb:music.release_track.recording fb:m.0qtvgr)) (value (list (name fb:m.0q7l89w "What Was") (name fb:m.0rs87kf "What Was") (name fb:m.0kns3y9 "What Was"))) (type fb:music.release_track) What was Sinatra's first recording? What Was -1.484 formula (fb:music.release_track.recording fb:m.0qtvgr)) (value (list (name fb:m.0q7l89w "What Was") (name fb:m.0rs87kf "What Was") (name fb:m.0kns3y9 "What Was"))) (type fb:music.release_track) Who is Warren Moon's agent? Harold Moon -1.436 formula (and (fb:type.object.type fb:people.person) (!fb:people.person.parents fb:en.warren_moon))) (value (list (name fb:m.0v50t84 "Harold Moon") (name fb:m.0v50tb_ "Pat Moon"))) (type fb:people.person) Who is Warren Moon's agent? Pat Moon -1.436 formula (and (fb:type.object.type fb:people.person) (!fb:people.person.parents fb:en.warren_moon))) (value (list (name fb:m.0v50t84 "Harold Moon") (name fb:m.0v50tb_ "Pat Moon"))) (type fb:people.person) How many layers of skin do we have? Beyonce's L'Oreal ad: You can't do that in advertising! 2.136 formula ((lambda x (!fb:common.webpage.resource (!fb:common.topic.webpage (var x)))) fb:en.skin)) (value (list (name fb:m.09xfbtp "Beyonc��'s L'Or��al ad: You can't do that in advertising!") (name fb:m.0b45gzk "Let the Rumors Keep Swirling: Jennifer Lopez Loves ���Glee���") (name fb:m.09xb1zf "'Real Housewives of NYC': Work it, ladies"))) (type fb:common.resource) How many layers of skin do we have? Let the Rumors Keep Swirling: Jennifer Lopez Loves ���Glee��� 2.136 formula ((lambda x (!fb:common.webpage.resource (!fb:common.topic.webpage (var x)))) fb:en.skin)) (value (list (name fb:m.09xfbtp "Beyonc��'s L'Or��al ad: You can't do that in advertising!") (name fb:m.0b45gzk "Let the Rumors Keep Swirling: Jennifer Lopez Loves ���Glee���") (name fb:m.09xb1zf "'Real Housewives of NYC': Work it, ladies"))) (type fb:common.resource) How many layers of skin do we have? 'Real Housewives of NYC': Work it, ladies 2.136 formula ((lambda x (!fb:common.webpage.resource (!fb:common.topic.webpage (var x)))) fb:en.skin)) (value (list (name fb:m.09xfbtp "Beyonc��'s L'Or��al ad: You can't do that in advertising!") (name fb:m.0b45gzk "Let the Rumors Keep Swirling: Jennifer Lopez Loves ���Glee���") (name fb:m.09xb1zf "'Real Housewives of NYC': Work it, ladies"))) (type fb:common.resource) What was Bing Crosby's nickname? Bing Collins -3.426 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.actor (var x)))) fb:en.bing_crosby_family))) (value (list (name fb:en.bing_collins "Bing Collins"))) (type fb:tv.tv_character) When was U.S Naval Academy founded? George Bancroft -3.94 formula (fb:organization.organization_founder.organizations_founded fb:en.united_states_naval_academy)) (value (list (name fb:en.george_bancroft "George Bancroft") (name fb:en.james_k_polk "James K. Polk"))) (type fb:organization.organization_founder) When was U.S Naval Academy founded? James K. Polk -3.94 formula (fb:organization.organization_founder.organizations_founded fb:en.united_states_naval_academy)) (value (list (name fb:en.george_bancroft "George Bancroft") (name fb:en.james_k_polk "James K. Polk"))) (type fb:organization.organization_founder) Where did they honeymoon? Pinellas County -2.995 formula (and (fb:type.object.type fb:location.location) (!fb:location.location.containedby fb:en.honeymoon_island_state_park))) (value (list (name fb:en.pinellas_county "Pinellas County"))) (type fb:location.location) Who invented basketball? James Naismith -4.303 formula (and (fb:type.object.type fb:people.person) (!fb:law.invention.inventor fb:m.018w8))) (value (list (name fb:en.james_naismith "James Naismith"))) (type fb:law.inventor) What is Horatio's relationship to Hamlet? Blissful Master Index -3.757 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.hamlet_1948))) (value (list (name fb:m.0bvlr64 "Blissful Master Index"))) (type fb:common.annotation_index) How tall is St. Peter's Basilica? St. Peter's Basilica is often used by the pope -2.784 formula (!fb:common.topic.image fb:en.basilica)) (value (list (name fb:m.02bp7w4 "St. Peter's Basilica is often used by the pope"))) (type fb:common.image) Who is the governor of Alaska? Sean Parnell 2.294 formula (and (fb:type.object.type fb:people.person) (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.alaska) (fb:government.government_position_held.basic_title fb:en.governor))))) (value (list (name fb:en.sean_parnell "Sean Parnell") (name fb:en.sarah_palin "Sarah Palin") (name fb:en.tony_knowles_1943 "Tony Knowles") (name fb:en.jay_hammond "Jay Hammond") (name fb:en.william_allen_egan "William A. Egan") (name fb:en.steve_cowper "Steve Cowper") (name fb:en.frank_murkowski "Frank Murkowski") (name fb:en.bill_sheffield "Bill Sheffield") (name fb:en.walter_joseph_hickel "Wally Hickel") (name fb:en.keith_harvey_miller "Keith Harvey Miller"))) (type fb:government.politician) Who is the governor of Alaska? Sarah Palin 2.294 formula (and (fb:type.object.type fb:people.person) (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.alaska) (fb:government.government_position_held.basic_title fb:en.governor))))) (value (list (name fb:en.sean_parnell "Sean Parnell") (name fb:en.sarah_palin "Sarah Palin") (name fb:en.tony_knowles_1943 "Tony Knowles") (name fb:en.jay_hammond "Jay Hammond") (name fb:en.william_allen_egan "William A. Egan") (name fb:en.steve_cowper "Steve Cowper") (name fb:en.frank_murkowski "Frank Murkowski") (name fb:en.bill_sheffield "Bill Sheffield") (name fb:en.walter_joseph_hickel "Wally Hickel") (name fb:en.keith_harvey_miller "Keith Harvey Miller"))) (type fb:government.politician) Who is the governor of Alaska? Tony Knowles 2.294 formula (and (fb:type.object.type fb:people.person) (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.alaska) (fb:government.government_position_held.basic_title fb:en.governor))))) (value (list (name fb:en.sean_parnell "Sean Parnell") (name fb:en.sarah_palin "Sarah Palin") (name fb:en.tony_knowles_1943 "Tony Knowles") (name fb:en.jay_hammond "Jay Hammond") (name fb:en.william_allen_egan "William A. Egan") (name fb:en.steve_cowper "Steve Cowper") (name fb:en.frank_murkowski "Frank Murkowski") (name fb:en.bill_sheffield "Bill Sheffield") (name fb:en.walter_joseph_hickel "Wally Hickel") (name fb:en.keith_harvey_miller "Keith Harvey Miller"))) (type fb:government.politician) Who is the governor of Alaska? Jay Hammond 2.294 formula (and (fb:type.object.type fb:people.person) (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.alaska) (fb:government.government_position_held.basic_title fb:en.governor))))) (value (list (name fb:en.sean_parnell "Sean Parnell") (name fb:en.sarah_palin "Sarah Palin") (name fb:en.tony_knowles_1943 "Tony Knowles") (name fb:en.jay_hammond "Jay Hammond") (name fb:en.william_allen_egan "William A. Egan") (name fb:en.steve_cowper "Steve Cowper") (name fb:en.frank_murkowski "Frank Murkowski") (name fb:en.bill_sheffield "Bill Sheffield") (name fb:en.walter_joseph_hickel "Wally Hickel") (name fb:en.keith_harvey_miller "Keith Harvey Miller"))) (type fb:government.politician) Who is the governor of Alaska? William A. Egan 2.294 formula (and (fb:type.object.type fb:people.person) (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.alaska) (fb:government.government_position_held.basic_title fb:en.governor))))) (value (list (name fb:en.sean_parnell "Sean Parnell") (name fb:en.sarah_palin "Sarah Palin") (name fb:en.tony_knowles_1943 "Tony Knowles") (name fb:en.jay_hammond "Jay Hammond") (name fb:en.william_allen_egan "William A. Egan") (name fb:en.steve_cowper "Steve Cowper") (name fb:en.frank_murkowski "Frank Murkowski") (name fb:en.bill_sheffield "Bill Sheffield") (name fb:en.walter_joseph_hickel "Wally Hickel") (name fb:en.keith_harvey_miller "Keith Harvey Miller"))) (type fb:government.politician) Who is the governor of Alaska? Steve Cowper 2.294 formula (and (fb:type.object.type fb:people.person) (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.alaska) (fb:government.government_position_held.basic_title fb:en.governor))))) (value (list (name fb:en.sean_parnell "Sean Parnell") (name fb:en.sarah_palin "Sarah Palin") (name fb:en.tony_knowles_1943 "Tony Knowles") (name fb:en.jay_hammond "Jay Hammond") (name fb:en.william_allen_egan "William A. Egan") (name fb:en.steve_cowper "Steve Cowper") (name fb:en.frank_murkowski "Frank Murkowski") (name fb:en.bill_sheffield "Bill Sheffield") (name fb:en.walter_joseph_hickel "Wally Hickel") (name fb:en.keith_harvey_miller "Keith Harvey Miller"))) (type fb:government.politician) Who is the governor of Alaska? Frank Murkowski 2.294 formula (and (fb:type.object.type fb:people.person) (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.alaska) (fb:government.government_position_held.basic_title fb:en.governor))))) (value (list (name fb:en.sean_parnell "Sean Parnell") (name fb:en.sarah_palin "Sarah Palin") (name fb:en.tony_knowles_1943 "Tony Knowles") (name fb:en.jay_hammond "Jay Hammond") (name fb:en.william_allen_egan "William A. Egan") (name fb:en.steve_cowper "Steve Cowper") (name fb:en.frank_murkowski "Frank Murkowski") (name fb:en.bill_sheffield "Bill Sheffield") (name fb:en.walter_joseph_hickel "Wally Hickel") (name fb:en.keith_harvey_miller "Keith Harvey Miller"))) (type fb:government.politician) Who is the governor of Alaska? Bill Sheffield 2.294 formula (and (fb:type.object.type fb:people.person) (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.alaska) (fb:government.government_position_held.basic_title fb:en.governor))))) (value (list (name fb:en.sean_parnell "Sean Parnell") (name fb:en.sarah_palin "Sarah Palin") (name fb:en.tony_knowles_1943 "Tony Knowles") (name fb:en.jay_hammond "Jay Hammond") (name fb:en.william_allen_egan "William A. Egan") (name fb:en.steve_cowper "Steve Cowper") (name fb:en.frank_murkowski "Frank Murkowski") (name fb:en.bill_sheffield "Bill Sheffield") (name fb:en.walter_joseph_hickel "Wally Hickel") (name fb:en.keith_harvey_miller "Keith Harvey Miller"))) (type fb:government.politician) Who is the governor of Alaska? Wally Hickel 2.294 formula (and (fb:type.object.type fb:people.person) (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.alaska) (fb:government.government_position_held.basic_title fb:en.governor))))) (value (list (name fb:en.sean_parnell "Sean Parnell") (name fb:en.sarah_palin "Sarah Palin") (name fb:en.tony_knowles_1943 "Tony Knowles") (name fb:en.jay_hammond "Jay Hammond") (name fb:en.william_allen_egan "William A. Egan") (name fb:en.steve_cowper "Steve Cowper") (name fb:en.frank_murkowski "Frank Murkowski") (name fb:en.bill_sheffield "Bill Sheffield") (name fb:en.walter_joseph_hickel "Wally Hickel") (name fb:en.keith_harvey_miller "Keith Harvey Miller"))) (type fb:government.politician) Who is the governor of Alaska? Keith Harvey Miller 2.294 formula (and (fb:type.object.type fb:people.person) (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.alaska) (fb:government.government_position_held.basic_title fb:en.governor))))) (value (list (name fb:en.sean_parnell "Sean Parnell") (name fb:en.sarah_palin "Sarah Palin") (name fb:en.tony_knowles_1943 "Tony Knowles") (name fb:en.jay_hammond "Jay Hammond") (name fb:en.william_allen_egan "William A. Egan") (name fb:en.steve_cowper "Steve Cowper") (name fb:en.frank_murkowski "Frank Murkowski") (name fb:en.bill_sheffield "Bill Sheffield") (name fb:en.walter_joseph_hickel "Wally Hickel") (name fb:en.keith_harvey_miller "Keith Harvey Miller"))) (type fb:government.politician) What political party does Thabo Mbeki belong to? South African Communist Party -1.039 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:government.political_party.politicians_in_this_party (fb:government.political_party_tenure.politician (var x)))) fb:en.thabo_mbeki))) (value (list (name fb:en.south_african_communist_party "South African Communist Party") (name fb:en.african_national_congress "African National Congress"))) (type fb:government.political_party) What political party does Thabo Mbeki belong to? African National Congress -1.039 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:government.political_party.politicians_in_this_party (fb:government.political_party_tenure.politician (var x)))) fb:en.thabo_mbeki))) (value (list (name fb:en.south_african_communist_party "South African Communist Party") (name fb:en.african_national_congress "African National Congress"))) (type fb:government.political_party) What is Hong Kong's population? Internet users as percentage of population, World Development Indicators, World Bank 1.348 formula ((lambda x (!fb:measurement_unit.dated_percentage.source (!fb:location.statistical_region.internet_users_percent_population (var x)))) fb:en.hong_kong)) (value (list (name fb:g.1245ywqx8 "Internet users as percentage of population, World Development Indicators, World Bank") (name fb:m.0ndnhc0 "Internet users as percentage of population, World Development Indicators and Global Development Finance, World Bank"))) (type fb:dataworld.information_source) What is Hong Kong's population? Internet users as percentage of population, World Development Indicators and Global Development Finance, World Bank 1.348 formula ((lambda x (!fb:measurement_unit.dated_percentage.source (!fb:location.statistical_region.internet_users_percent_population (var x)))) fb:en.hong_kong)) (value (list (name fb:g.1245ywqx8 "Internet users as percentage of population, World Development Indicators, World Bank") (name fb:m.0ndnhc0 "Internet users as percentage of population, World Development Indicators and Global Development Finance, World Bank"))) (type fb:dataworld.information_source) What instrument did the jazz musician Art Tatum play? Jazz piano -1.899 formula (and (fb:type.object.type fb:common.topic) (!fb:music.group_member.instruments_played fb:en.art_tatum))) (value (list (name fb:en.piano Piano) (name fb:en.jazz_piano "Jazz piano"))) (type fb:music.instrument) Who developed the Macintosh computer? Steve Jobs -2.018 formula (fb:computer.computer_designer.computers_designed fb:en.macintosh)) (value (list (name fb:en.steve_jobs "Steve Jobs") (name fb:en.jef_raskin "Jef Raskin") (name fb:en.bill_atkinson "Bill Atkinson") (name fb:en.burrell_smith "Burrell Smith") (name fb:en.bud_tribble "Bud Tribble"))) (type fb:computer.computer_designer) Who developed the Macintosh computer? Jef Raskin -2.018 formula (fb:computer.computer_designer.computers_designed fb:en.macintosh)) (value (list (name fb:en.steve_jobs "Steve Jobs") (name fb:en.jef_raskin "Jef Raskin") (name fb:en.bill_atkinson "Bill Atkinson") (name fb:en.burrell_smith "Burrell Smith") (name fb:en.bud_tribble "Bud Tribble"))) (type fb:computer.computer_designer) Who developed the Macintosh computer? Bill Atkinson -2.018 formula (fb:computer.computer_designer.computers_designed fb:en.macintosh)) (value (list (name fb:en.steve_jobs "Steve Jobs") (name fb:en.jef_raskin "Jef Raskin") (name fb:en.bill_atkinson "Bill Atkinson") (name fb:en.burrell_smith "Burrell Smith") (name fb:en.bud_tribble "Bud Tribble"))) (type fb:computer.computer_designer) Who developed the Macintosh computer? Burrell Smith -2.018 formula (fb:computer.computer_designer.computers_designed fb:en.macintosh)) (value (list (name fb:en.steve_jobs "Steve Jobs") (name fb:en.jef_raskin "Jef Raskin") (name fb:en.bill_atkinson "Bill Atkinson") (name fb:en.burrell_smith "Burrell Smith") (name fb:en.bud_tribble "Bud Tribble"))) (type fb:computer.computer_designer) Who developed the Macintosh computer? Bud Tribble -2.018 formula (fb:computer.computer_designer.computers_designed fb:en.macintosh)) (value (list (name fb:en.steve_jobs "Steve Jobs") (name fb:en.jef_raskin "Jef Raskin") (name fb:en.bill_atkinson "Bill Atkinson") (name fb:en.burrell_smith "Burrell Smith") (name fb:en.bud_tribble "Bud Tribble"))) (type fb:computer.computer_designer) How old was Elvis Presley when he died? Myocardial infarction 0.398 formula (fb:people.cause_of_death.people fb:en.elvis_presley)) (value (list (name fb:en.heart_failure "Myocardial infarction"))) (type fb:people.cause_of_death) Who invented television? Philo Farnsworth -3.223 formula (and (fb:type.object.type fb:people.person) (!fb:law.invention.inventor fb:en.television))) (value (list (name fb:en.philo_farnsworth "Philo Farnsworth") (name fb:en.charles_francis_jenkins "Charles Francis Jenkins"))) (type fb:law.inventor) Who invented television? Charles Francis Jenkins -3.223 formula (and (fb:type.object.type fb:people.person) (!fb:law.invention.inventor fb:en.television))) (value (list (name fb:en.philo_farnsworth "Philo Farnsworth") (name fb:en.charles_francis_jenkins "Charles Francis Jenkins"))) (type fb:law.inventor) Who is the conductor of the Boston Pops? John Williams -0.3 formula (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops))) (value (list (name fb:en.john_willams "John Williams") (name fb:en.arthur_fiedler "Arthur Fiedler") (name fb:en.keith_lockhart "Keith Lockhart") (name fb:en.adolf_neuendorff "Adolf Neuendorff") (name fb:en.timothee_adamowski "Timothee Adamowski") (name fb:en.alfredo_casella "Alfredo Casella") (name fb:en.franz_kneisel "Franz Kneisel") (name fb:en.josef_pasternack "Josef Pasternack") (name fb:en.agide_jacchia "Agide Jacchia"))) (type fb:music.conductor) Who is the conductor of the Boston Pops? Arthur Fiedler -0.3 formula (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops))) (value (list (name fb:en.john_willams "John Williams") (name fb:en.arthur_fiedler "Arthur Fiedler") (name fb:en.keith_lockhart "Keith Lockhart") (name fb:en.adolf_neuendorff "Adolf Neuendorff") (name fb:en.timothee_adamowski "Timothee Adamowski") (name fb:en.alfredo_casella "Alfredo Casella") (name fb:en.franz_kneisel "Franz Kneisel") (name fb:en.josef_pasternack "Josef Pasternack") (name fb:en.agide_jacchia "Agide Jacchia"))) (type fb:music.conductor) Who is the conductor of the Boston Pops? Keith Lockhart -0.3 formula (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops))) (value (list (name fb:en.john_willams "John Williams") (name fb:en.arthur_fiedler "Arthur Fiedler") (name fb:en.keith_lockhart "Keith Lockhart") (name fb:en.adolf_neuendorff "Adolf Neuendorff") (name fb:en.timothee_adamowski "Timothee Adamowski") (name fb:en.alfredo_casella "Alfredo Casella") (name fb:en.franz_kneisel "Franz Kneisel") (name fb:en.josef_pasternack "Josef Pasternack") (name fb:en.agide_jacchia "Agide Jacchia"))) (type fb:music.conductor) Who is the conductor of the Boston Pops? Adolf Neuendorff -0.3 formula (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops))) (value (list (name fb:en.john_willams "John Williams") (name fb:en.arthur_fiedler "Arthur Fiedler") (name fb:en.keith_lockhart "Keith Lockhart") (name fb:en.adolf_neuendorff "Adolf Neuendorff") (name fb:en.timothee_adamowski "Timothee Adamowski") (name fb:en.alfredo_casella "Alfredo Casella") (name fb:en.franz_kneisel "Franz Kneisel") (name fb:en.josef_pasternack "Josef Pasternack") (name fb:en.agide_jacchia "Agide Jacchia"))) (type fb:music.conductor) Who is the conductor of the Boston Pops? Timothee Adamowski -0.3 formula (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops))) (value (list (name fb:en.john_willams "John Williams") (name fb:en.arthur_fiedler "Arthur Fiedler") (name fb:en.keith_lockhart "Keith Lockhart") (name fb:en.adolf_neuendorff "Adolf Neuendorff") (name fb:en.timothee_adamowski "Timothee Adamowski") (name fb:en.alfredo_casella "Alfredo Casella") (name fb:en.franz_kneisel "Franz Kneisel") (name fb:en.josef_pasternack "Josef Pasternack") (name fb:en.agide_jacchia "Agide Jacchia"))) (type fb:music.conductor) Who is the conductor of the Boston Pops? Alfredo Casella -0.3 formula (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops))) (value (list (name fb:en.john_willams "John Williams") (name fb:en.arthur_fiedler "Arthur Fiedler") (name fb:en.keith_lockhart "Keith Lockhart") (name fb:en.adolf_neuendorff "Adolf Neuendorff") (name fb:en.timothee_adamowski "Timothee Adamowski") (name fb:en.alfredo_casella "Alfredo Casella") (name fb:en.franz_kneisel "Franz Kneisel") (name fb:en.josef_pasternack "Josef Pasternack") (name fb:en.agide_jacchia "Agide Jacchia"))) (type fb:music.conductor) Who is the conductor of the Boston Pops? Franz Kneisel -0.3 formula (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops))) (value (list (name fb:en.john_willams "John Williams") (name fb:en.arthur_fiedler "Arthur Fiedler") (name fb:en.keith_lockhart "Keith Lockhart") (name fb:en.adolf_neuendorff "Adolf Neuendorff") (name fb:en.timothee_adamowski "Timothee Adamowski") (name fb:en.alfredo_casella "Alfredo Casella") (name fb:en.franz_kneisel "Franz Kneisel") (name fb:en.josef_pasternack "Josef Pasternack") (name fb:en.agide_jacchia "Agide Jacchia"))) (type fb:music.conductor) Who is the conductor of the Boston Pops? Josef Pasternack -0.3 formula (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops))) (value (list (name fb:en.john_willams "John Williams") (name fb:en.arthur_fiedler "Arthur Fiedler") (name fb:en.keith_lockhart "Keith Lockhart") (name fb:en.adolf_neuendorff "Adolf Neuendorff") (name fb:en.timothee_adamowski "Timothee Adamowski") (name fb:en.alfredo_casella "Alfredo Casella") (name fb:en.franz_kneisel "Franz Kneisel") (name fb:en.josef_pasternack "Josef Pasternack") (name fb:en.agide_jacchia "Agide Jacchia"))) (type fb:music.conductor) Who is the conductor of the Boston Pops? Agide Jacchia -0.3 formula (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops))) (value (list (name fb:en.john_willams "John Williams") (name fb:en.arthur_fiedler "Arthur Fiedler") (name fb:en.keith_lockhart "Keith Lockhart") (name fb:en.adolf_neuendorff "Adolf Neuendorff") (name fb:en.timothee_adamowski "Timothee Adamowski") (name fb:en.alfredo_casella "Alfredo Casella") (name fb:en.franz_kneisel "Franz Kneisel") (name fb:en.josef_pasternack "Josef Pasternack") (name fb:en.agide_jacchia "Agide Jacchia"))) (type fb:music.conductor) In what year was Warren Moon born? Pro Football Player -3.681 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:award.hall_of_fame_induction.category (!fb:award.hall_of_fame_inductee.hall_of_fame_inductions (var x)))) fb:en.warren_moon))) (value (list (name fb:en.pro_football_player "Pro Football Player"))) (type fb:award.hall_of_fame_induction_category) When was the Red Cross founded? Henry Dunant -2.679 formula (fb:organization.organization_founder.organizations_founded fb:en.international_committee_of_the_red_cross)) (value (list (name fb:en.henry_dunant "Henry Dunant"))) (type fb:organization.organization_founder) What books has Walter Mosley written? La mariposa blanca 1.258 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.walter_mosley)))) (value (list (name fb:en.la_mariposa_blanca "La mariposa blanca") (name fb:m.04zg3s_ "Little Scarlet") (name fb:en.cinnamon_kiss "Cinnamon Kiss") (name fb:en.devil_in_a_blue_dress "Devil in a Blue Dress") (name fb:m.04zg3n_ "A Little Yellow Dog") (name fb:en.always_outnumbered_always_outgunned "Always Outnumbered, Always Outgunned") (name fb:m.04zg3sn "Black Betty") (name fb:m.06ftsxs "The wave") (name fb:m.066bl9p Diablerie) (name fb:m.06ch2z3 "Blonde Faith"))) (type fb:book.book) What books has Walter Mosley written? Little Scarlet 1.258 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.walter_mosley)))) (value (list (name fb:en.la_mariposa_blanca "La mariposa blanca") (name fb:m.04zg3s_ "Little Scarlet") (name fb:en.cinnamon_kiss "Cinnamon Kiss") (name fb:en.devil_in_a_blue_dress "Devil in a Blue Dress") (name fb:m.04zg3n_ "A Little Yellow Dog") (name fb:en.always_outnumbered_always_outgunned "Always Outnumbered, Always Outgunned") (name fb:m.04zg3sn "Black Betty") (name fb:m.06ftsxs "The wave") (name fb:m.066bl9p Diablerie) (name fb:m.06ch2z3 "Blonde Faith"))) (type fb:book.book) What books has Walter Mosley written? Cinnamon Kiss 1.258 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.walter_mosley)))) (value (list (name fb:en.la_mariposa_blanca "La mariposa blanca") (name fb:m.04zg3s_ "Little Scarlet") (name fb:en.cinnamon_kiss "Cinnamon Kiss") (name fb:en.devil_in_a_blue_dress "Devil in a Blue Dress") (name fb:m.04zg3n_ "A Little Yellow Dog") (name fb:en.always_outnumbered_always_outgunned "Always Outnumbered, Always Outgunned") (name fb:m.04zg3sn "Black Betty") (name fb:m.06ftsxs "The wave") (name fb:m.066bl9p Diablerie) (name fb:m.06ch2z3 "Blonde Faith"))) (type fb:book.book) What books has Walter Mosley written? Devil in a Blue Dress 1.258 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.walter_mosley)))) (value (list (name fb:en.la_mariposa_blanca "La mariposa blanca") (name fb:m.04zg3s_ "Little Scarlet") (name fb:en.cinnamon_kiss "Cinnamon Kiss") (name fb:en.devil_in_a_blue_dress "Devil in a Blue Dress") (name fb:m.04zg3n_ "A Little Yellow Dog") (name fb:en.always_outnumbered_always_outgunned "Always Outnumbered, Always Outgunned") (name fb:m.04zg3sn "Black Betty") (name fb:m.06ftsxs "The wave") (name fb:m.066bl9p Diablerie) (name fb:m.06ch2z3 "Blonde Faith"))) (type fb:book.book) What books has Walter Mosley written? A Little Yellow Dog 1.258 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.walter_mosley)))) (value (list (name fb:en.la_mariposa_blanca "La mariposa blanca") (name fb:m.04zg3s_ "Little Scarlet") (name fb:en.cinnamon_kiss "Cinnamon Kiss") (name fb:en.devil_in_a_blue_dress "Devil in a Blue Dress") (name fb:m.04zg3n_ "A Little Yellow Dog") (name fb:en.always_outnumbered_always_outgunned "Always Outnumbered, Always Outgunned") (name fb:m.04zg3sn "Black Betty") (name fb:m.06ftsxs "The wave") (name fb:m.066bl9p Diablerie) (name fb:m.06ch2z3 "Blonde Faith"))) (type fb:book.book) What books has Walter Mosley written? Always Outnumbered, Always Outgunned 1.258 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.walter_mosley)))) (value (list (name fb:en.la_mariposa_blanca "La mariposa blanca") (name fb:m.04zg3s_ "Little Scarlet") (name fb:en.cinnamon_kiss "Cinnamon Kiss") (name fb:en.devil_in_a_blue_dress "Devil in a Blue Dress") (name fb:m.04zg3n_ "A Little Yellow Dog") (name fb:en.always_outnumbered_always_outgunned "Always Outnumbered, Always Outgunned") (name fb:m.04zg3sn "Black Betty") (name fb:m.06ftsxs "The wave") (name fb:m.066bl9p Diablerie) (name fb:m.06ch2z3 "Blonde Faith"))) (type fb:book.book) What books has Walter Mosley written? Black Betty 1.258 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.walter_mosley)))) (value (list (name fb:en.la_mariposa_blanca "La mariposa blanca") (name fb:m.04zg3s_ "Little Scarlet") (name fb:en.cinnamon_kiss "Cinnamon Kiss") (name fb:en.devil_in_a_blue_dress "Devil in a Blue Dress") (name fb:m.04zg3n_ "A Little Yellow Dog") (name fb:en.always_outnumbered_always_outgunned "Always Outnumbered, Always Outgunned") (name fb:m.04zg3sn "Black Betty") (name fb:m.06ftsxs "The wave") (name fb:m.066bl9p Diablerie) (name fb:m.06ch2z3 "Blonde Faith"))) (type fb:book.book) What books has Walter Mosley written? The wave 1.258 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.walter_mosley)))) (value (list (name fb:en.la_mariposa_blanca "La mariposa blanca") (name fb:m.04zg3s_ "Little Scarlet") (name fb:en.cinnamon_kiss "Cinnamon Kiss") (name fb:en.devil_in_a_blue_dress "Devil in a Blue Dress") (name fb:m.04zg3n_ "A Little Yellow Dog") (name fb:en.always_outnumbered_always_outgunned "Always Outnumbered, Always Outgunned") (name fb:m.04zg3sn "Black Betty") (name fb:m.06ftsxs "The wave") (name fb:m.066bl9p Diablerie) (name fb:m.06ch2z3 "Blonde Faith"))) (type fb:book.book) What books has Walter Mosley written? Blonde Faith 1.258 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.walter_mosley)))) (value (list (name fb:en.la_mariposa_blanca "La mariposa blanca") (name fb:m.04zg3s_ "Little Scarlet") (name fb:en.cinnamon_kiss "Cinnamon Kiss") (name fb:en.devil_in_a_blue_dress "Devil in a Blue Dress") (name fb:m.04zg3n_ "A Little Yellow Dog") (name fb:en.always_outnumbered_always_outgunned "Always Outnumbered, Always Outgunned") (name fb:m.04zg3sn "Black Betty") (name fb:m.06ftsxs "The wave") (name fb:m.066bl9p Diablerie) (name fb:m.06ch2z3 "Blonde Faith"))) (type fb:book.book) What is Africa's largest country? South Africa 0.918 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.africa)))) (value (list (name fb:en.south_africa "South Africa") (name fb:en.nigeria Nigeria) (name fb:en.cote_divoire "C��te d���Ivoire") (name fb:en.kenya Kenya) (name fb:en.sierra_leone "Sierra Leone") (name fb:en.ethiopia Ethiopia) (name fb:en.cape_verde "Cape Verde") (name fb:en.democratic_republic_of_the_congo "Democratic Republic of the Congo") (name fb:en.algeria Algeria) (name fb:en.chad Chad))) (type fb:location.country) What is Africa's largest country? C��te d���Ivoire 0.918 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.africa)))) (value (list (name fb:en.south_africa "South Africa") (name fb:en.nigeria Nigeria) (name fb:en.cote_divoire "C��te d���Ivoire") (name fb:en.kenya Kenya) (name fb:en.sierra_leone "Sierra Leone") (name fb:en.ethiopia Ethiopia) (name fb:en.cape_verde "Cape Verde") (name fb:en.democratic_republic_of_the_congo "Democratic Republic of the Congo") (name fb:en.algeria Algeria) (name fb:en.chad Chad))) (type fb:location.country) What is Africa's largest country? Sierra Leone 0.918 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.africa)))) (value (list (name fb:en.south_africa "South Africa") (name fb:en.nigeria Nigeria) (name fb:en.cote_divoire "C��te d���Ivoire") (name fb:en.kenya Kenya) (name fb:en.sierra_leone "Sierra Leone") (name fb:en.ethiopia Ethiopia) (name fb:en.cape_verde "Cape Verde") (name fb:en.democratic_republic_of_the_congo "Democratic Republic of the Congo") (name fb:en.algeria Algeria) (name fb:en.chad Chad))) (type fb:location.country) What is Africa's largest country? Cape Verde 0.918 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.africa)))) (value (list (name fb:en.south_africa "South Africa") (name fb:en.nigeria Nigeria) (name fb:en.cote_divoire "C��te d���Ivoire") (name fb:en.kenya Kenya) (name fb:en.sierra_leone "Sierra Leone") (name fb:en.ethiopia Ethiopia) (name fb:en.cape_verde "Cape Verde") (name fb:en.democratic_republic_of_the_congo "Democratic Republic of the Congo") (name fb:en.algeria Algeria) (name fb:en.chad Chad))) (type fb:location.country) What is Africa's largest country? Democratic Republic of the Congo 0.918 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.africa)))) (value (list (name fb:en.south_africa "South Africa") (name fb:en.nigeria Nigeria) (name fb:en.cote_divoire "C��te d���Ivoire") (name fb:en.kenya Kenya) (name fb:en.sierra_leone "Sierra Leone") (name fb:en.ethiopia Ethiopia) (name fb:en.cape_verde "Cape Verde") (name fb:en.democratic_republic_of_the_congo "Democratic Republic of the Congo") (name fb:en.algeria Algeria) (name fb:en.chad Chad))) (type fb:location.country) What was the world record time set in the 2006 competition? Jerk Out (Sexy Dub) -2.721 formula (and (fb:type.object.type fb:common.topic) (fb:music.recording.artist fb:en.the_time))) (value (list (name fb:m.0shlf6_ "Jerk Out (Sexy Dub)") (name fb:m.0sk54wk "Jerk Out (A Capella)") (name fb:m.0nn31bp "Jerk Out (a cappella)") (name fb:m.0shh1f7 "Jerk Out (Sexy Mix)") (name fb:m.0sr2qps "Jerk Out (Sexy Edit)") (name fb:m.0sk5gd4 "Jerk Out (Sexy Instrumental)") (name fb:m.0slk71k "Jerk Out (Sexy instrumental)"))) (type fb:music.recording) What was the world record time set in the 2006 competition? Jerk Out (A Capella) -2.721 formula (and (fb:type.object.type fb:common.topic) (fb:music.recording.artist fb:en.the_time))) (value (list (name fb:m.0shlf6_ "Jerk Out (Sexy Dub)") (name fb:m.0sk54wk "Jerk Out (A Capella)") (name fb:m.0nn31bp "Jerk Out (a cappella)") (name fb:m.0shh1f7 "Jerk Out (Sexy Mix)") (name fb:m.0sr2qps "Jerk Out (Sexy Edit)") (name fb:m.0sk5gd4 "Jerk Out (Sexy Instrumental)") (name fb:m.0slk71k "Jerk Out (Sexy instrumental)"))) (type fb:music.recording) What was the world record time set in the 2006 competition? Jerk Out (a cappella) -2.721 formula (and (fb:type.object.type fb:common.topic) (fb:music.recording.artist fb:en.the_time))) (value (list (name fb:m.0shlf6_ "Jerk Out (Sexy Dub)") (name fb:m.0sk54wk "Jerk Out (A Capella)") (name fb:m.0nn31bp "Jerk Out (a cappella)") (name fb:m.0shh1f7 "Jerk Out (Sexy Mix)") (name fb:m.0sr2qps "Jerk Out (Sexy Edit)") (name fb:m.0sk5gd4 "Jerk Out (Sexy Instrumental)") (name fb:m.0slk71k "Jerk Out (Sexy instrumental)"))) (type fb:music.recording) What was the world record time set in the 2006 competition? Jerk Out (Sexy Mix) -2.721 formula (and (fb:type.object.type fb:common.topic) (fb:music.recording.artist fb:en.the_time))) (value (list (name fb:m.0shlf6_ "Jerk Out (Sexy Dub)") (name fb:m.0sk54wk "Jerk Out (A Capella)") (name fb:m.0nn31bp "Jerk Out (a cappella)") (name fb:m.0shh1f7 "Jerk Out (Sexy Mix)") (name fb:m.0sr2qps "Jerk Out (Sexy Edit)") (name fb:m.0sk5gd4 "Jerk Out (Sexy Instrumental)") (name fb:m.0slk71k "Jerk Out (Sexy instrumental)"))) (type fb:music.recording) What was the world record time set in the 2006 competition? Jerk Out (Sexy Edit) -2.721 formula (and (fb:type.object.type fb:common.topic) (fb:music.recording.artist fb:en.the_time))) (value (list (name fb:m.0shlf6_ "Jerk Out (Sexy Dub)") (name fb:m.0sk54wk "Jerk Out (A Capella)") (name fb:m.0nn31bp "Jerk Out (a cappella)") (name fb:m.0shh1f7 "Jerk Out (Sexy Mix)") (name fb:m.0sr2qps "Jerk Out (Sexy Edit)") (name fb:m.0sk5gd4 "Jerk Out (Sexy Instrumental)") (name fb:m.0slk71k "Jerk Out (Sexy instrumental)"))) (type fb:music.recording) What was the world record time set in the 2006 competition? Jerk Out (Sexy Instrumental) -2.721 formula (and (fb:type.object.type fb:common.topic) (fb:music.recording.artist fb:en.the_time))) (value (list (name fb:m.0shlf6_ "Jerk Out (Sexy Dub)") (name fb:m.0sk54wk "Jerk Out (A Capella)") (name fb:m.0nn31bp "Jerk Out (a cappella)") (name fb:m.0shh1f7 "Jerk Out (Sexy Mix)") (name fb:m.0sr2qps "Jerk Out (Sexy Edit)") (name fb:m.0sk5gd4 "Jerk Out (Sexy Instrumental)") (name fb:m.0slk71k "Jerk Out (Sexy instrumental)"))) (type fb:music.recording) What was the world record time set in the 2006 competition? Jerk Out (Sexy instrumental) -2.721 formula (and (fb:type.object.type fb:common.topic) (fb:music.recording.artist fb:en.the_time))) (value (list (name fb:m.0shlf6_ "Jerk Out (Sexy Dub)") (name fb:m.0sk54wk "Jerk Out (A Capella)") (name fb:m.0nn31bp "Jerk Out (a cappella)") (name fb:m.0shh1f7 "Jerk Out (Sexy Mix)") (name fb:m.0sr2qps "Jerk Out (Sexy Edit)") (name fb:m.0sk5gd4 "Jerk Out (Sexy Instrumental)") (name fb:m.0slk71k "Jerk Out (Sexy instrumental)"))) (type fb:music.recording) When was the Organization of Islamic Conference organized? Vongola Family 0.082 formula (fb:fictional_universe.fictional_organization.type_of_organization fb:en.organized_crime)) (value (list (name fb:en.akatsuki Akatsuki) (name fb:en.vongola_family "Vongola Family") (name fb:en.team_rocket_organization "Team Rocket") (name fb:m.0cmy5nf "Bonanza Bros.") (name fb:m.0l17jlp "The Varia") (name fb:en.the_girls_of_old_town "The Girls of Old Town"))) (type fb:fictional_universe.fictional_organization) When was the Organization of Islamic Conference organized? Team Rocket 0.082 formula (fb:fictional_universe.fictional_organization.type_of_organization fb:en.organized_crime)) (value (list (name fb:en.akatsuki Akatsuki) (name fb:en.vongola_family "Vongola Family") (name fb:en.team_rocket_organization "Team Rocket") (name fb:m.0cmy5nf "Bonanza Bros.") (name fb:m.0l17jlp "The Varia") (name fb:en.the_girls_of_old_town "The Girls of Old Town"))) (type fb:fictional_universe.fictional_organization) When was the Organization of Islamic Conference organized? Bonanza Bros. 0.082 formula (fb:fictional_universe.fictional_organization.type_of_organization fb:en.organized_crime)) (value (list (name fb:en.akatsuki Akatsuki) (name fb:en.vongola_family "Vongola Family") (name fb:en.team_rocket_organization "Team Rocket") (name fb:m.0cmy5nf "Bonanza Bros.") (name fb:m.0l17jlp "The Varia") (name fb:en.the_girls_of_old_town "The Girls of Old Town"))) (type fb:fictional_universe.fictional_organization) When was the Organization of Islamic Conference organized? The Varia 0.082 formula (fb:fictional_universe.fictional_organization.type_of_organization fb:en.organized_crime)) (value (list (name fb:en.akatsuki Akatsuki) (name fb:en.vongola_family "Vongola Family") (name fb:en.team_rocket_organization "Team Rocket") (name fb:m.0cmy5nf "Bonanza Bros.") (name fb:m.0l17jlp "The Varia") (name fb:en.the_girls_of_old_town "The Girls of Old Town"))) (type fb:fictional_universe.fictional_organization) When was the Organization of Islamic Conference organized? The Girls of Old Town 0.082 formula (fb:fictional_universe.fictional_organization.type_of_organization fb:en.organized_crime)) (value (list (name fb:en.akatsuki Akatsuki) (name fb:en.vongola_family "Vongola Family") (name fb:en.team_rocket_organization "Team Rocket") (name fb:m.0cmy5nf "Bonanza Bros.") (name fb:m.0l17jlp "The Varia") (name fb:en.the_girls_of_old_town "The Girls of Old Town"))) (type fb:fictional_universe.fictional_organization) How old was Crosby when he died? House of Commons of the United Kingdom -0.877 formula ((lambda x (fb:government.governmental_body.members (fb:government.government_position_held.district_represented (var x)))) fb:en.crosby)) (value (list (name fb:en.british_house_of_commons "House of Commons of the United Kingdom"))) (type fb:government.governmental_body) How old was Joan of Arc when she died? RKO Pictures -0.506 formula ((lambda x (fb:film.film_distributor.films_distributed (fb:film.film_film_distributor_relationship.film (var x)))) fb:en.joan_of_arc_1948)) (value (list (name fb:en.rko_pictures "RKO Pictures"))) (type fb:film.film_distributor) What company published Jasper Fforde first book? The Fourth Bear -0.788 formula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y "The Fourth Bear") (name fb:en.the_fourth_bear_nursery_crime_audio "The Fourth Bear (Nursery Crime (Audio))") (name fb:m.04dnp19 "Lost in a Good Book") (name fb:m.04v_1dp "The Big Over Easy") (name fb:m.04v_4vp "The Eyre Affair") (name fb:m.04v_mqv "Something Rotten (Thursday Next)") (name fb:en.lost_in_a_good_book_thursday_next "Lost in a Good Book (Thursday Next)") (name fb:m.04v_1gr "The Big Over Easy") (name fb:m.04v_4xl "The Eyre Affair") (name fb:m.04v_4s8 "The Eyre Affair"))) (type fb:book.book_edition) What company published Jasper Fforde first book? The Fourth Bear (Nursery Crime (Audio)) -0.788 formula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y "The Fourth Bear") (name fb:en.the_fourth_bear_nursery_crime_audio "The Fourth Bear (Nursery Crime (Audio))") (name fb:m.04dnp19 "Lost in a Good Book") (name fb:m.04v_1dp "The Big Over Easy") (name fb:m.04v_4vp "The Eyre Affair") (name fb:m.04v_mqv "Something Rotten (Thursday Next)") (name fb:en.lost_in_a_good_book_thursday_next "Lost in a Good Book (Thursday Next)") (name fb:m.04v_1gr "The Big Over Easy") (name fb:m.04v_4xl "The Eyre Affair") (name fb:m.04v_4s8 "The Eyre Affair"))) (type fb:book.book_edition) What company published Jasper Fforde first book? Lost in a Good Book -0.788 formula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y "The Fourth Bear") (name fb:en.the_fourth_bear_nursery_crime_audio "The Fourth Bear (Nursery Crime (Audio))") (name fb:m.04dnp19 "Lost in a Good Book") (name fb:m.04v_1dp "The Big Over Easy") (name fb:m.04v_4vp "The Eyre Affair") (name fb:m.04v_mqv "Something Rotten (Thursday Next)") (name fb:en.lost_in_a_good_book_thursday_next "Lost in a Good Book (Thursday Next)") (name fb:m.04v_1gr "The Big Over Easy") (name fb:m.04v_4xl "The Eyre Affair") (name fb:m.04v_4s8 "The Eyre Affair"))) (type fb:book.book_edition) What company published Jasper Fforde first book? The Big Over Easy -0.788 formula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y "The Fourth Bear") (name fb:en.the_fourth_bear_nursery_crime_audio "The Fourth Bear (Nursery Crime (Audio))") (name fb:m.04dnp19 "Lost in a Good Book") (name fb:m.04v_1dp "The Big Over Easy") (name fb:m.04v_4vp "The Eyre Affair") (name fb:m.04v_mqv "Something Rotten (Thursday Next)") (name fb:en.lost_in_a_good_book_thursday_next "Lost in a Good Book (Thursday Next)") (name fb:m.04v_1gr "The Big Over Easy") (name fb:m.04v_4xl "The Eyre Affair") (name fb:m.04v_4s8 "The Eyre Affair"))) (type fb:book.book_edition) What company published Jasper Fforde first book? The Eyre Affair -0.788 formula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y "The Fourth Bear") (name fb:en.the_fourth_bear_nursery_crime_audio "The Fourth Bear (Nursery Crime (Audio))") (name fb:m.04dnp19 "Lost in a Good Book") (name fb:m.04v_1dp "The Big Over Easy") (name fb:m.04v_4vp "The Eyre Affair") (name fb:m.04v_mqv "Something Rotten (Thursday Next)") (name fb:en.lost_in_a_good_book_thursday_next "Lost in a Good Book (Thursday Next)") (name fb:m.04v_1gr "The Big Over Easy") (name fb:m.04v_4xl "The Eyre Affair") (name fb:m.04v_4s8 "The Eyre Affair"))) (type fb:book.book_edition) What company published Jasper Fforde first book? Something Rotten (Thursday Next) -0.788 formula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y "The Fourth Bear") (name fb:en.the_fourth_bear_nursery_crime_audio "The Fourth Bear (Nursery Crime (Audio))") (name fb:m.04dnp19 "Lost in a Good Book") (name fb:m.04v_1dp "The Big Over Easy") (name fb:m.04v_4vp "The Eyre Affair") (name fb:m.04v_mqv "Something Rotten (Thursday Next)") (name fb:en.lost_in_a_good_book_thursday_next "Lost in a Good Book (Thursday Next)") (name fb:m.04v_1gr "The Big Over Easy") (name fb:m.04v_4xl "The Eyre Affair") (name fb:m.04v_4s8 "The Eyre Affair"))) (type fb:book.book_edition) What company published Jasper Fforde first book? Lost in a Good Book (Thursday Next) -0.788 formula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y "The Fourth Bear") (name fb:en.the_fourth_bear_nursery_crime_audio "The Fourth Bear (Nursery Crime (Audio))") (name fb:m.04dnp19 "Lost in a Good Book") (name fb:m.04v_1dp "The Big Over Easy") (name fb:m.04v_4vp "The Eyre Affair") (name fb:m.04v_mqv "Something Rotten (Thursday Next)") (name fb:en.lost_in_a_good_book_thursday_next "Lost in a Good Book (Thursday Next)") (name fb:m.04v_1gr "The Big Over Easy") (name fb:m.04v_4xl "The Eyre Affair") (name fb:m.04v_4s8 "The Eyre Affair"))) (type fb:book.book_edition) What company published Jasper Fforde first book? The Big Over Easy -0.788 formula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y "The Fourth Bear") (name fb:en.the_fourth_bear_nursery_crime_audio "The Fourth Bear (Nursery Crime (Audio))") (name fb:m.04dnp19 "Lost in a Good Book") (name fb:m.04v_1dp "The Big Over Easy") (name fb:m.04v_4vp "The Eyre Affair") (name fb:m.04v_mqv "Something Rotten (Thursday Next)") (name fb:en.lost_in_a_good_book_thursday_next "Lost in a Good Book (Thursday Next)") (name fb:m.04v_1gr "The Big Over Easy") (name fb:m.04v_4xl "The Eyre Affair") (name fb:m.04v_4s8 "The Eyre Affair"))) (type fb:book.book_edition) What company published Jasper Fforde first book? The Eyre Affair -0.788 formula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y "The Fourth Bear") (name fb:en.the_fourth_bear_nursery_crime_audio "The Fourth Bear (Nursery Crime (Audio))") (name fb:m.04dnp19 "Lost in a Good Book") (name fb:m.04v_1dp "The Big Over Easy") (name fb:m.04v_4vp "The Eyre Affair") (name fb:m.04v_mqv "Something Rotten (Thursday Next)") (name fb:en.lost_in_a_good_book_thursday_next "Lost in a Good Book (Thursday Next)") (name fb:m.04v_1gr "The Big Over Easy") (name fb:m.04v_4xl "The Eyre Affair") (name fb:m.04v_4s8 "The Eyre Affair"))) (type fb:book.book_edition) What company published Jasper Fforde first book? The Eyre Affair -0.788 formula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y "The Fourth Bear") (name fb:en.the_fourth_bear_nursery_crime_audio "The Fourth Bear (Nursery Crime (Audio))") (name fb:m.04dnp19 "Lost in a Good Book") (name fb:m.04v_1dp "The Big Over Easy") (name fb:m.04v_4vp "The Eyre Affair") (name fb:m.04v_mqv "Something Rotten (Thursday Next)") (name fb:en.lost_in_a_good_book_thursday_next "Lost in a Good Book (Thursday Next)") (name fb:m.04v_1gr "The Big Over Easy") (name fb:m.04v_4xl "The Eyre Affair") (name fb:m.04v_4s8 "The Eyre Affair"))) (type fb:book.book_edition) Which college athletic teams are nicknamed the Cougars? Brigham Young University -10.156 formula (and (fb:type.object.type fb:education.university) (fb:education.educational_institution.sports_teams fb:en.byu_cougars_football))) (value (list (name fb:en.brigham_young_university "Brigham Young University"))) (type fb:education.university) When was it introduced into the U.S.? WSJ Film Index -0.517 formula ((lambda x (fb:base.articleindices.resource_topic_index.index_items (fb:base.articleindices.index_item.topic (var x)))) fb:en.the_us_versus_john_lennon)) (value (list (name fb:m.05v2mnn "WSJ Film Index") (name fb:en.ew_film_reviews "EW Film Reviews"))) (type fb:base.articleindices.resource_topic_index) When was it introduced into the U.S.? EW Film Reviews -0.517 formula ((lambda x (fb:base.articleindices.resource_topic_index.index_items (fb:base.articleindices.index_item.topic (var x)))) fb:en.the_us_versus_john_lennon)) (value (list (name fb:m.05v2mnn "WSJ Film Index") (name fb:en.ew_film_reviews "EW Film Reviews"))) (type fb:base.articleindices.resource_topic_index) How many grants does the Fulbright Program award each year? J. William Fulbright Prize for International Understanding -2.487 formula (!fb:award.award_presenting_organization.award_categories_presented fb:en.fulbright_program)) (value (list (name fb:m.0j2m65g "J. William Fulbright Prize for International Understanding") (name fb:en.fulbright_award "Fulbright Award"))) (type fb:award.award_category) How many grants does the Fulbright Program award each year? Fulbright Award -2.487 formula (!fb:award.award_presenting_organization.award_categories_presented fb:en.fulbright_program)) (value (list (name fb:m.0j2m65g "J. William Fulbright Prize for International Understanding") (name fb:en.fulbright_award "Fulbright Award"))) (type fb:award.award_category) When is Jennifer Lopez's birthday? Entertainment Weekly annotation index -1.541 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.jennier_lopez)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) When is Jennifer Lopez's birthday? WSJ Speakeasy Index -1.541 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.jennier_lopez)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) When is Jennifer Lopez's birthday? Blissful Master Index -1.541 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.jennier_lopez)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) When is Jennifer Lopez's birthday? Blissful Celebrities -1.541 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.jennier_lopez)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) How many Wal-Mart outlets are there in India? Cyclone Laila -4.208 formula (fb:meteorology.tropical_cyclone.affected_areas fb:en.india)) (value (list (name fb:m.0b__gj8 "Cyclone Laila") (name fb:en.cyclone_nargis "Cyclone Nargis") (name fb:en.cyclone_nisha "Cyclone Nisha") (name fb:en.cyclone_sidr "Cyclone Sidr") (name fb:en.cyclone_03b "Cyclone Yemyin") (name fb:m.0drwnsg "Cyclone Jal") (name fb:en.1970_bhola_cyclone "1970 Bhola cyclone") (name fb:m.0c40m49 "Cyclone Onil") (name fb:m.0dsdtbr "Cyclone Rashmi") (name fb:en.typhoon_gay "Typhoon Gay"))) (type fb:meteorology.tropical_cyclone) How many Wal-Mart outlets are there in India? Cyclone Nargis -4.208 formula (fb:meteorology.tropical_cyclone.affected_areas fb:en.india)) (value (list (name fb:m.0b__gj8 "Cyclone Laila") (name fb:en.cyclone_nargis "Cyclone Nargis") (name fb:en.cyclone_nisha "Cyclone Nisha") (name fb:en.cyclone_sidr "Cyclone Sidr") (name fb:en.cyclone_03b "Cyclone Yemyin") (name fb:m.0drwnsg "Cyclone Jal") (name fb:en.1970_bhola_cyclone "1970 Bhola cyclone") (name fb:m.0c40m49 "Cyclone Onil") (name fb:m.0dsdtbr "Cyclone Rashmi") (name fb:en.typhoon_gay "Typhoon Gay"))) (type fb:meteorology.tropical_cyclone) How many Wal-Mart outlets are there in India? Cyclone Nisha -4.208 formula (fb:meteorology.tropical_cyclone.affected_areas fb:en.india)) (value (list (name fb:m.0b__gj8 "Cyclone Laila") (name fb:en.cyclone_nargis "Cyclone Nargis") (name fb:en.cyclone_nisha "Cyclone Nisha") (name fb:en.cyclone_sidr "Cyclone Sidr") (name fb:en.cyclone_03b "Cyclone Yemyin") (name fb:m.0drwnsg "Cyclone Jal") (name fb:en.1970_bhola_cyclone "1970 Bhola cyclone") (name fb:m.0c40m49 "Cyclone Onil") (name fb:m.0dsdtbr "Cyclone Rashmi") (name fb:en.typhoon_gay "Typhoon Gay"))) (type fb:meteorology.tropical_cyclone) How many Wal-Mart outlets are there in India? Cyclone Sidr -4.208 formula (fb:meteorology.tropical_cyclone.affected_areas fb:en.india)) (value (list (name fb:m.0b__gj8 "Cyclone Laila") (name fb:en.cyclone_nargis "Cyclone Nargis") (name fb:en.cyclone_nisha "Cyclone Nisha") (name fb:en.cyclone_sidr "Cyclone Sidr") (name fb:en.cyclone_03b "Cyclone Yemyin") (name fb:m.0drwnsg "Cyclone Jal") (name fb:en.1970_bhola_cyclone "1970 Bhola cyclone") (name fb:m.0c40m49 "Cyclone Onil") (name fb:m.0dsdtbr "Cyclone Rashmi") (name fb:en.typhoon_gay "Typhoon Gay"))) (type fb:meteorology.tropical_cyclone) How many Wal-Mart outlets are there in India? Cyclone Yemyin -4.208 formula (fb:meteorology.tropical_cyclone.affected_areas fb:en.india)) (value (list (name fb:m.0b__gj8 "Cyclone Laila") (name fb:en.cyclone_nargis "Cyclone Nargis") (name fb:en.cyclone_nisha "Cyclone Nisha") (name fb:en.cyclone_sidr "Cyclone Sidr") (name fb:en.cyclone_03b "Cyclone Yemyin") (name fb:m.0drwnsg "Cyclone Jal") (name fb:en.1970_bhola_cyclone "1970 Bhola cyclone") (name fb:m.0c40m49 "Cyclone Onil") (name fb:m.0dsdtbr "Cyclone Rashmi") (name fb:en.typhoon_gay "Typhoon Gay"))) (type fb:meteorology.tropical_cyclone) How many Wal-Mart outlets are there in India? Cyclone Jal -4.208 formula (fb:meteorology.tropical_cyclone.affected_areas fb:en.india)) (value (list (name fb:m.0b__gj8 "Cyclone Laila") (name fb:en.cyclone_nargis "Cyclone Nargis") (name fb:en.cyclone_nisha "Cyclone Nisha") (name fb:en.cyclone_sidr "Cyclone Sidr") (name fb:en.cyclone_03b "Cyclone Yemyin") (name fb:m.0drwnsg "Cyclone Jal") (name fb:en.1970_bhola_cyclone "1970 Bhola cyclone") (name fb:m.0c40m49 "Cyclone Onil") (name fb:m.0dsdtbr "Cyclone Rashmi") (name fb:en.typhoon_gay "Typhoon Gay"))) (type fb:meteorology.tropical_cyclone) How many Wal-Mart outlets are there in India? 1970 Bhola cyclone -4.208 formula (fb:meteorology.tropical_cyclone.affected_areas fb:en.india)) (value (list (name fb:m.0b__gj8 "Cyclone Laila") (name fb:en.cyclone_nargis "Cyclone Nargis") (name fb:en.cyclone_nisha "Cyclone Nisha") (name fb:en.cyclone_sidr "Cyclone Sidr") (name fb:en.cyclone_03b "Cyclone Yemyin") (name fb:m.0drwnsg "Cyclone Jal") (name fb:en.1970_bhola_cyclone "1970 Bhola cyclone") (name fb:m.0c40m49 "Cyclone Onil") (name fb:m.0dsdtbr "Cyclone Rashmi") (name fb:en.typhoon_gay "Typhoon Gay"))) (type fb:meteorology.tropical_cyclone) How many Wal-Mart outlets are there in India? Cyclone Onil -4.208 formula (fb:meteorology.tropical_cyclone.affected_areas fb:en.india)) (value (list (name fb:m.0b__gj8 "Cyclone Laila") (name fb:en.cyclone_nargis "Cyclone Nargis") (name fb:en.cyclone_nisha "Cyclone Nisha") (name fb:en.cyclone_sidr "Cyclone Sidr") (name fb:en.cyclone_03b "Cyclone Yemyin") (name fb:m.0drwnsg "Cyclone Jal") (name fb:en.1970_bhola_cyclone "1970 Bhola cyclone") (name fb:m.0c40m49 "Cyclone Onil") (name fb:m.0dsdtbr "Cyclone Rashmi") (name fb:en.typhoon_gay "Typhoon Gay"))) (type fb:meteorology.tropical_cyclone) How many Wal-Mart outlets are there in India? Cyclone Rashmi -4.208 formula (fb:meteorology.tropical_cyclone.affected_areas fb:en.india)) (value (list (name fb:m.0b__gj8 "Cyclone Laila") (name fb:en.cyclone_nargis "Cyclone Nargis") (name fb:en.cyclone_nisha "Cyclone Nisha") (name fb:en.cyclone_sidr "Cyclone Sidr") (name fb:en.cyclone_03b "Cyclone Yemyin") (name fb:m.0drwnsg "Cyclone Jal") (name fb:en.1970_bhola_cyclone "1970 Bhola cyclone") (name fb:m.0c40m49 "Cyclone Onil") (name fb:m.0dsdtbr "Cyclone Rashmi") (name fb:en.typhoon_gay "Typhoon Gay"))) (type fb:meteorology.tropical_cyclone) How many Wal-Mart outlets are there in India? Typhoon Gay -4.208 formula (fb:meteorology.tropical_cyclone.affected_areas fb:en.india)) (value (list (name fb:m.0b__gj8 "Cyclone Laila") (name fb:en.cyclone_nargis "Cyclone Nargis") (name fb:en.cyclone_nisha "Cyclone Nisha") (name fb:en.cyclone_sidr "Cyclone Sidr") (name fb:en.cyclone_03b "Cyclone Yemyin") (name fb:m.0drwnsg "Cyclone Jal") (name fb:en.1970_bhola_cyclone "1970 Bhola cyclone") (name fb:m.0c40m49 "Cyclone Onil") (name fb:m.0dsdtbr "Cyclone Rashmi") (name fb:en.typhoon_gay "Typhoon Gay"))) (type fb:meteorology.tropical_cyclone) What year did South Dakota become a state? Wind Cave National Park -1.045 formula (and (fb:type.object.type fb:common.topic) (fb:base.usnationalparks.us_national_park.state fb:en.south_dakota))) (value (list (name fb:en.wind_cave_national_park "Wind Cave National Park") (name fb:en.mount_rushmore "Mount Rushmore National Memorial") (name fb:en.jewel_cave_national_monument "Jewel Cave National Monument") (name fb:en.missouri_national_recreational_river "Missouri National Recreational River") (name fb:en.minuteman_missile_national_historic_site "Minuteman Missile National Historic Site") (name fb:en.badlands_national_park "Badlands National Park"))) (type fb:base.usnationalparks.us_national_park) What year did South Dakota become a state? Mount Rushmore National Memorial -1.045 formula (and (fb:type.object.type fb:common.topic) (fb:base.usnationalparks.us_national_park.state fb:en.south_dakota))) (value (list (name fb:en.wind_cave_national_park "Wind Cave National Park") (name fb:en.mount_rushmore "Mount Rushmore National Memorial") (name fb:en.jewel_cave_national_monument "Jewel Cave National Monument") (name fb:en.missouri_national_recreational_river "Missouri National Recreational River") (name fb:en.minuteman_missile_national_historic_site "Minuteman Missile National Historic Site") (name fb:en.badlands_national_park "Badlands National Park"))) (type fb:base.usnationalparks.us_national_park) What year did South Dakota become a state? Jewel Cave National Monument -1.045 formula (and (fb:type.object.type fb:common.topic) (fb:base.usnationalparks.us_national_park.state fb:en.south_dakota))) (value (list (name fb:en.wind_cave_national_park "Wind Cave National Park") (name fb:en.mount_rushmore "Mount Rushmore National Memorial") (name fb:en.jewel_cave_national_monument "Jewel Cave National Monument") (name fb:en.missouri_national_recreational_river "Missouri National Recreational River") (name fb:en.minuteman_missile_national_historic_site "Minuteman Missile National Historic Site") (name fb:en.badlands_national_park "Badlands National Park"))) (type fb:base.usnationalparks.us_national_park) What year did South Dakota become a state? Missouri National Recreational River -1.045 formula (and (fb:type.object.type fb:common.topic) (fb:base.usnationalparks.us_national_park.state fb:en.south_dakota))) (value (list (name fb:en.wind_cave_national_park "Wind Cave National Park") (name fb:en.mount_rushmore "Mount Rushmore National Memorial") (name fb:en.jewel_cave_national_monument "Jewel Cave National Monument") (name fb:en.missouri_national_recreational_river "Missouri National Recreational River") (name fb:en.minuteman_missile_national_historic_site "Minuteman Missile National Historic Site") (name fb:en.badlands_national_park "Badlands National Park"))) (type fb:base.usnationalparks.us_national_park) What year did South Dakota become a state? Minuteman Missile National Historic Site -1.045 formula (and (fb:type.object.type fb:common.topic) (fb:base.usnationalparks.us_national_park.state fb:en.south_dakota))) (value (list (name fb:en.wind_cave_national_park "Wind Cave National Park") (name fb:en.mount_rushmore "Mount Rushmore National Memorial") (name fb:en.jewel_cave_national_monument "Jewel Cave National Monument") (name fb:en.missouri_national_recreational_river "Missouri National Recreational River") (name fb:en.minuteman_missile_national_historic_site "Minuteman Missile National Historic Site") (name fb:en.badlands_national_park "Badlands National Park"))) (type fb:base.usnationalparks.us_national_park) What year did South Dakota become a state? Badlands National Park -1.045 formula (and (fb:type.object.type fb:common.topic) (fb:base.usnationalparks.us_national_park.state fb:en.south_dakota))) (value (list (name fb:en.wind_cave_national_park "Wind Cave National Park") (name fb:en.mount_rushmore "Mount Rushmore National Memorial") (name fb:en.jewel_cave_national_monument "Jewel Cave National Monument") (name fb:en.missouri_national_recreational_river "Missouri National Recreational River") (name fb:en.minuteman_missile_national_historic_site "Minuteman Missile National Historic Site") (name fb:en.badlands_national_park "Badlands National Park"))) (type fb:base.usnationalparks.us_national_park) A normal human pregnancy lasts how many months? Entertainment Weekly annotation index -2.342 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.pregnancy)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index"))) (type fb:common.annotation_index) A normal human pregnancy lasts how many months? WSJ Speakeasy Index -2.342 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.pregnancy)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index"))) (type fb:common.annotation_index) What is neuropathy? Neurological disorder -5.854 formula (and (fb:type.object.type fb:common.topic) (fb:people.cause_of_death.includes_causes_of_death fb:en.neuropathy))) (value (list (name fb:en.neurological_disease "Neurological disorder"))) (type fb:people.cause_of_death) What movies did Judi Dench play in? Into the Arms of Strangers: Stories of the Kindertransport 0.706 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.personal_film_appearance.film (!fb:film.person_or_entity_appearing_in_film.films (var x)))) fb:en.judi_dench)))) (value (list (name fb:m.0bd1d4 "Into the Arms of Strangers: Stories of the Kindertransport") (name fb:en.the_abbey "The Abbey") (name fb:en.bond_girls_are_forever "Bond Girls Are Forever") (name fb:m.0crvjrb "Bugs!: A Rainforest Adventure"))) (type fb:film.film) What movies did Judi Dench play in? The Abbey 0.706 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.personal_film_appearance.film (!fb:film.person_or_entity_appearing_in_film.films (var x)))) fb:en.judi_dench)))) (value (list (name fb:m.0bd1d4 "Into the Arms of Strangers: Stories of the Kindertransport") (name fb:en.the_abbey "The Abbey") (name fb:en.bond_girls_are_forever "Bond Girls Are Forever") (name fb:m.0crvjrb "Bugs!: A Rainforest Adventure"))) (type fb:film.film) What movies did Judi Dench play in? Bond Girls Are Forever 0.706 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.personal_film_appearance.film (!fb:film.person_or_entity_appearing_in_film.films (var x)))) fb:en.judi_dench)))) (value (list (name fb:m.0bd1d4 "Into the Arms of Strangers: Stories of the Kindertransport") (name fb:en.the_abbey "The Abbey") (name fb:en.bond_girls_are_forever "Bond Girls Are Forever") (name fb:m.0crvjrb "Bugs!: A Rainforest Adventure"))) (type fb:film.film) What movies did Judi Dench play in? Bugs!: A Rainforest Adventure 0.706 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.personal_film_appearance.film (!fb:film.person_or_entity_appearing_in_film.films (var x)))) fb:en.judi_dench)))) (value (list (name fb:m.0bd1d4 "Into the Arms of Strangers: Stories of the Kindertransport") (name fb:en.the_abbey "The Abbey") (name fb:en.bond_girls_are_forever "Bond Girls Are Forever") (name fb:m.0crvjrb "Bugs!: A Rainforest Adventure"))) (type fb:film.film) What is the oldest sports trophy? Blissful Master Index -2.965 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.sport))) (value (list (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) What is the oldest sports trophy? Blissful Celebrities -2.965 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.sport))) (value (list (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) What was this person's relationship to the Prophet Mohammad? Paul the Apostle 0.809 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:people.person) (fb:people.person.profession fb:en.prophet)))) (value (list (name fb:en.muhammad Muhammad) (name fb:en.paul_of_tarsus "Paul the Apostle") (name fb:en.jesus "Jesus Christ") (name fb:en.david David) (name fb:en.moses Moses) (name fb:en.jacob Jacob) (name fb:en.tb_joshua "T. B. Joshua") (name fb:en.samuel Samuel) (name fb:en.joel Joel) (name fb:en.nuh Noah))) (type fb:people.person) What was this person's relationship to the Prophet Mohammad? Jesus Christ 0.809 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:people.person) (fb:people.person.profession fb:en.prophet)))) (value (list (name fb:en.muhammad Muhammad) (name fb:en.paul_of_tarsus "Paul the Apostle") (name fb:en.jesus "Jesus Christ") (name fb:en.david David) (name fb:en.moses Moses) (name fb:en.jacob Jacob) (name fb:en.tb_joshua "T. B. Joshua") (name fb:en.samuel Samuel) (name fb:en.joel Joel) (name fb:en.nuh Noah))) (type fb:people.person) What was this person's relationship to the Prophet Mohammad? T. B. Joshua 0.809 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:people.person) (fb:people.person.profession fb:en.prophet)))) (value (list (name fb:en.muhammad Muhammad) (name fb:en.paul_of_tarsus "Paul the Apostle") (name fb:en.jesus "Jesus Christ") (name fb:en.david David) (name fb:en.moses Moses) (name fb:en.jacob Jacob) (name fb:en.tb_joshua "T. B. Joshua") (name fb:en.samuel Samuel) (name fb:en.joel Joel) (name fb:en.nuh Noah))) (type fb:people.person) What are John C. Calhoun and Henry Clay known as? John Calhoun -3.324 formula (!fb:common.topic.alias fb:en.john_c_calhoun)) (value (list (string "John Calhoun"))) (type fb:type.text) When did John F. Kennedy get elected as President? Lyndon B. Johnson -4.091 formula (!fb:government.us_president.vice_president fb:en.john_f_kennedy)) (value (list (name fb:en.lyndon_b_johnson "Lyndon B. Johnson"))) (type fb:government.us_vice_president) How many official languages does Switzerland have? German Language 1.671 formula (!fb:location.country.official_language fb:en.switzerland)) (value (list (name fb:en.german_language "German Language") (name fb:en.italian "Italian Language") (name fb:en.french "French Language") (name fb:en.romansh "Romansh language"))) (type fb:language.human_language) How many official languages does Switzerland have? Italian Language 1.671 formula (!fb:location.country.official_language fb:en.switzerland)) (value (list (name fb:en.german_language "German Language") (name fb:en.italian "Italian Language") (name fb:en.french "French Language") (name fb:en.romansh "Romansh language"))) (type fb:language.human_language) How many official languages does Switzerland have? French Language 1.671 formula (!fb:location.country.official_language fb:en.switzerland)) (value (list (name fb:en.german_language "German Language") (name fb:en.italian "Italian Language") (name fb:en.french "French Language") (name fb:en.romansh "Romansh language"))) (type fb:language.human_language) How many official languages does Switzerland have? Romansh language 1.671 formula (!fb:location.country.official_language fb:en.switzerland)) (value (list (name fb:en.german_language "German Language") (name fb:en.italian "Italian Language") (name fb:en.french "French Language") (name fb:en.romansh "Romansh language"))) (type fb:language.human_language) Where is the Salton Sea? Whitewater River -2.492 formula (and (fb:type.object.type fb:location.location) (!fb:geography.lake.inflow fb:en.salton_sea))) (value (list (name fb:m.0ctxw6 "Whitewater River") (name fb:en.alamo_river "Alamo River") (name fb:m.083n6w "New River"))) (type fb:geography.body_of_water) Where is the Salton Sea? Alamo River -2.492 formula (and (fb:type.object.type fb:location.location) (!fb:geography.lake.inflow fb:en.salton_sea))) (value (list (name fb:m.0ctxw6 "Whitewater River") (name fb:en.alamo_river "Alamo River") (name fb:m.083n6w "New River"))) (type fb:geography.body_of_water) Where is the Salton Sea? New River -2.492 formula (and (fb:type.object.type fb:location.location) (!fb:geography.lake.inflow fb:en.salton_sea))) (value (list (name fb:m.0ctxw6 "Whitewater River") (name fb:en.alamo_river "Alamo River") (name fb:m.083n6w "New River"))) (type fb:geography.body_of_water) What year did Alaska become a state? Kobuk Valley National Park -0.963 formula (and (fb:type.object.type fb:common.topic) (fb:base.usnationalparks.us_national_park.state fb:en.alaska))) (value (list (name fb:en.kobuk_valley_national_park "Kobuk Valley National Park") (name fb:en.gates_of_the_arctic_national_park_and_preserve "Gates of the Arctic National Park and Preserve") (name fb:en.lake_clark_national_park_and_preserve "Lake Clark National Park and Preserve") (name fb:en.katmai_national_park_and_preserve "Katmai National Park and Preserve") (name fb:en.denali_national_park_and_preserve "Denali National Park and Preserve") (name fb:en.klondike_gold_rush_national_historical_park "Klondike Gold Rush National Historical Park") (name fb:en.glacier_bay_national_park_and_preserve "Glacier Bay National Park and Preserve") (name fb:en.wrangell_st_elias_national_park_and_preserve "Wrangell���St. Elias National Park and Preserve") (name fb:en.sitka_national_historical_park "Sitka National Historical Park") (name fb:en.bering_land_bridge_national_preserve "Bering Land Bridge National Preserve"))) (type fb:base.usnationalparks.us_national_park) What year did Alaska become a state? Gates of the Arctic National Park and Preserve -0.963 formula (and (fb:type.object.type fb:common.topic) (fb:base.usnationalparks.us_national_park.state fb:en.alaska))) (value (list (name fb:en.kobuk_valley_national_park "Kobuk Valley National Park") (name fb:en.gates_of_the_arctic_national_park_and_preserve "Gates of the Arctic National Park and Preserve") (name fb:en.lake_clark_national_park_and_preserve "Lake Clark National Park and Preserve") (name fb:en.katmai_national_park_and_preserve "Katmai National Park and Preserve") (name fb:en.denali_national_park_and_preserve "Denali National Park and Preserve") (name fb:en.klondike_gold_rush_national_historical_park "Klondike Gold Rush National Historical Park") (name fb:en.glacier_bay_national_park_and_preserve "Glacier Bay National Park and Preserve") (name fb:en.wrangell_st_elias_national_park_and_preserve "Wrangell���St. Elias National Park and Preserve") (name fb:en.sitka_national_historical_park "Sitka National Historical Park") (name fb:en.bering_land_bridge_national_preserve "Bering Land Bridge National Preserve"))) (type fb:base.usnationalparks.us_national_park) What year did Alaska become a state? Lake Clark National Park and Preserve -0.963 formula (and (fb:type.object.type fb:common.topic) (fb:base.usnationalparks.us_national_park.state fb:en.alaska))) (value (list (name fb:en.kobuk_valley_national_park "Kobuk Valley National Park") (name fb:en.gates_of_the_arctic_national_park_and_preserve "Gates of the Arctic National Park and Preserve") (name fb:en.lake_clark_national_park_and_preserve "Lake Clark National Park and Preserve") (name fb:en.katmai_national_park_and_preserve "Katmai National Park and Preserve") (name fb:en.denali_national_park_and_preserve "Denali National Park and Preserve") (name fb:en.klondike_gold_rush_national_historical_park "Klondike Gold Rush National Historical Park") (name fb:en.glacier_bay_national_park_and_preserve "Glacier Bay National Park and Preserve") (name fb:en.wrangell_st_elias_national_park_and_preserve "Wrangell���St. Elias National Park and Preserve") (name fb:en.sitka_national_historical_park "Sitka National Historical Park") (name fb:en.bering_land_bridge_national_preserve "Bering Land Bridge National Preserve"))) (type fb:base.usnationalparks.us_national_park) What year did Alaska become a state? Katmai National Park and Preserve -0.963 formula (and (fb:type.object.type fb:common.topic) (fb:base.usnationalparks.us_national_park.state fb:en.alaska))) (value (list (name fb:en.kobuk_valley_national_park "Kobuk Valley National Park") (name fb:en.gates_of_the_arctic_national_park_and_preserve "Gates of the Arctic National Park and Preserve") (name fb:en.lake_clark_national_park_and_preserve "Lake Clark National Park and Preserve") (name fb:en.katmai_national_park_and_preserve "Katmai National Park and Preserve") (name fb:en.denali_national_park_and_preserve "Denali National Park and Preserve") (name fb:en.klondike_gold_rush_national_historical_park "Klondike Gold Rush National Historical Park") (name fb:en.glacier_bay_national_park_and_preserve "Glacier Bay National Park and Preserve") (name fb:en.wrangell_st_elias_national_park_and_preserve "Wrangell���St. Elias National Park and Preserve") (name fb:en.sitka_national_historical_park "Sitka National Historical Park") (name fb:en.bering_land_bridge_national_preserve "Bering Land Bridge National Preserve"))) (type fb:base.usnationalparks.us_national_park) What year did Alaska become a state? Denali National Park and Preserve -0.963 formula (and (fb:type.object.type fb:common.topic) (fb:base.usnationalparks.us_national_park.state fb:en.alaska))) (value (list (name fb:en.kobuk_valley_national_park "Kobuk Valley National Park") (name fb:en.gates_of_the_arctic_national_park_and_preserve "Gates of the Arctic National Park and Preserve") (name fb:en.lake_clark_national_park_and_preserve "Lake Clark National Park and Preserve") (name fb:en.katmai_national_park_and_preserve "Katmai National Park and Preserve") (name fb:en.denali_national_park_and_preserve "Denali National Park and Preserve") (name fb:en.klondike_gold_rush_national_historical_park "Klondike Gold Rush National Historical Park") (name fb:en.glacier_bay_national_park_and_preserve "Glacier Bay National Park and Preserve") (name fb:en.wrangell_st_elias_national_park_and_preserve "Wrangell���St. Elias National Park and Preserve") (name fb:en.sitka_national_historical_park "Sitka National Historical Park") (name fb:en.bering_land_bridge_national_preserve "Bering Land Bridge National Preserve"))) (type fb:base.usnationalparks.us_national_park) What year did Alaska become a state? Klondike Gold Rush National Historical Park -0.963 formula (and (fb:type.object.type fb:common.topic) (fb:base.usnationalparks.us_national_park.state fb:en.alaska))) (value (list (name fb:en.kobuk_valley_national_park "Kobuk Valley National Park") (name fb:en.gates_of_the_arctic_national_park_and_preserve "Gates of the Arctic National Park and Preserve") (name fb:en.lake_clark_national_park_and_preserve "Lake Clark National Park and Preserve") (name fb:en.katmai_national_park_and_preserve "Katmai National Park and Preserve") (name fb:en.denali_national_park_and_preserve "Denali National Park and Preserve") (name fb:en.klondike_gold_rush_national_historical_park "Klondike Gold Rush National Historical Park") (name fb:en.glacier_bay_national_park_and_preserve "Glacier Bay National Park and Preserve") (name fb:en.wrangell_st_elias_national_park_and_preserve "Wrangell���St. Elias National Park and Preserve") (name fb:en.sitka_national_historical_park "Sitka National Historical Park") (name fb:en.bering_land_bridge_national_preserve "Bering Land Bridge National Preserve"))) (type fb:base.usnationalparks.us_national_park) What year did Alaska become a state? Glacier Bay National Park and Preserve -0.963 formula (and (fb:type.object.type fb:common.topic) (fb:base.usnationalparks.us_national_park.state fb:en.alaska))) (value (list (name fb:en.kobuk_valley_national_park "Kobuk Valley National Park") (name fb:en.gates_of_the_arctic_national_park_and_preserve "Gates of the Arctic National Park and Preserve") (name fb:en.lake_clark_national_park_and_preserve "Lake Clark National Park and Preserve") (name fb:en.katmai_national_park_and_preserve "Katmai National Park and Preserve") (name fb:en.denali_national_park_and_preserve "Denali National Park and Preserve") (name fb:en.klondike_gold_rush_national_historical_park "Klondike Gold Rush National Historical Park") (name fb:en.glacier_bay_national_park_and_preserve "Glacier Bay National Park and Preserve") (name fb:en.wrangell_st_elias_national_park_and_preserve "Wrangell���St. Elias National Park and Preserve") (name fb:en.sitka_national_historical_park "Sitka National Historical Park") (name fb:en.bering_land_bridge_national_preserve "Bering Land Bridge National Preserve"))) (type fb:base.usnationalparks.us_national_park) What year did Alaska become a state? Wrangell���St. Elias National Park and Preserve -0.963 formula (and (fb:type.object.type fb:common.topic) (fb:base.usnationalparks.us_national_park.state fb:en.alaska))) (value (list (name fb:en.kobuk_valley_national_park "Kobuk Valley National Park") (name fb:en.gates_of_the_arctic_national_park_and_preserve "Gates of the Arctic National Park and Preserve") (name fb:en.lake_clark_national_park_and_preserve "Lake Clark National Park and Preserve") (name fb:en.katmai_national_park_and_preserve "Katmai National Park and Preserve") (name fb:en.denali_national_park_and_preserve "Denali National Park and Preserve") (name fb:en.klondike_gold_rush_national_historical_park "Klondike Gold Rush National Historical Park") (name fb:en.glacier_bay_national_park_and_preserve "Glacier Bay National Park and Preserve") (name fb:en.wrangell_st_elias_national_park_and_preserve "Wrangell���St. Elias National Park and Preserve") (name fb:en.sitka_national_historical_park "Sitka National Historical Park") (name fb:en.bering_land_bridge_national_preserve "Bering Land Bridge National Preserve"))) (type fb:base.usnationalparks.us_national_park) What year did Alaska become a state? Sitka National Historical Park -0.963 formula (and (fb:type.object.type fb:common.topic) (fb:base.usnationalparks.us_national_park.state fb:en.alaska))) (value (list (name fb:en.kobuk_valley_national_park "Kobuk Valley National Park") (name fb:en.gates_of_the_arctic_national_park_and_preserve "Gates of the Arctic National Park and Preserve") (name fb:en.lake_clark_national_park_and_preserve "Lake Clark National Park and Preserve") (name fb:en.katmai_national_park_and_preserve "Katmai National Park and Preserve") (name fb:en.denali_national_park_and_preserve "Denali National Park and Preserve") (name fb:en.klondike_gold_rush_national_historical_park "Klondike Gold Rush National Historical Park") (name fb:en.glacier_bay_national_park_and_preserve "Glacier Bay National Park and Preserve") (name fb:en.wrangell_st_elias_national_park_and_preserve "Wrangell���St. Elias National Park and Preserve") (name fb:en.sitka_national_historical_park "Sitka National Historical Park") (name fb:en.bering_land_bridge_national_preserve "Bering Land Bridge National Preserve"))) (type fb:base.usnationalparks.us_national_park) What year did Alaska become a state? Bering Land Bridge National Preserve -0.963 formula (and (fb:type.object.type fb:common.topic) (fb:base.usnationalparks.us_national_park.state fb:en.alaska))) (value (list (name fb:en.kobuk_valley_national_park "Kobuk Valley National Park") (name fb:en.gates_of_the_arctic_national_park_and_preserve "Gates of the Arctic National Park and Preserve") (name fb:en.lake_clark_national_park_and_preserve "Lake Clark National Park and Preserve") (name fb:en.katmai_national_park_and_preserve "Katmai National Park and Preserve") (name fb:en.denali_national_park_and_preserve "Denali National Park and Preserve") (name fb:en.klondike_gold_rush_national_historical_park "Klondike Gold Rush National Historical Park") (name fb:en.glacier_bay_national_park_and_preserve "Glacier Bay National Park and Preserve") (name fb:en.wrangell_st_elias_national_park_and_preserve "Wrangell���St. Elias National Park and Preserve") (name fb:en.sitka_national_historical_park "Sitka National Historical Park") (name fb:en.bering_land_bridge_national_preserve "Bering Land Bridge National Preserve"))) (type fb:base.usnationalparks.us_national_park) Who was the sole survivor of Sago Mine disaster? Tiki Twirl -4.663 formula (and (fb:type.object.type fb:common.topic) (fb:amusement_parks.ride.theme fb:m.0nmsl))) (value (list (name fb:en.survivor_the_ride "Tiki Twirl"))) (type fb:amusement_parks.ride) What is the full name of conductor Seiji? Steven Landau -3.095 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:theater.theater_production_staff.theater_productions (fb:theater.theater_production_staff_gig.production_role (var x)))) fb:en.principal_conductor))) (value (list (name fb:m.0v328fd "Steven Landau") (name fb:en.dave_pepin "Dave Pepin"))) (type fb:theater.theater_production_staff) What is the full name of conductor Seiji? Dave Pepin -3.095 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:theater.theater_production_staff.theater_productions (fb:theater.theater_production_staff_gig.production_role (var x)))) fb:en.principal_conductor))) (value (list (name fb:m.0v328fd "Steven Landau") (name fb:en.dave_pepin "Dave Pepin"))) (type fb:theater.theater_production_staff) What is leukemia? Chronic myelogenous leukemia -4.211 formula (and (fb:type.object.type fb:common.topic) (!fb:medicine.disease.includes_diseases fb:en.leukemia))) (value (list (name fb:en.chronic_myelogenous_leukemia "Chronic myelogenous leukemia") (name fb:en.acute_leukemia "Acute Leukemia") (name fb:en.acute_myeloid_leukemia "Acute myeloid leukemia") (name fb:en.chronic_lymphocytic_leukemia "B-cell chronic lymphocytic leukemia") (name fb:en.pediatric_acute_lymphoblastic_leukemia "Pediatric Acute lymphoblastic leukemia") (name fb:en.acute_lymphoblastic_leukemia "Acute lymphoblastic leukemia") (name fb:en.leukemia_of_unspecified_cell_type_subacute "Leukemia of unspecified cell type, subacute") (name fb:en.chronic_leukemia "Chronic Leukemia"))) (type fb:medicine.disease) What is leukemia? Acute Leukemia -4.211 formula (and (fb:type.object.type fb:common.topic) (!fb:medicine.disease.includes_diseases fb:en.leukemia))) (value (list (name fb:en.chronic_myelogenous_leukemia "Chronic myelogenous leukemia") (name fb:en.acute_leukemia "Acute Leukemia") (name fb:en.acute_myeloid_leukemia "Acute myeloid leukemia") (name fb:en.chronic_lymphocytic_leukemia "B-cell chronic lymphocytic leukemia") (name fb:en.pediatric_acute_lymphoblastic_leukemia "Pediatric Acute lymphoblastic leukemia") (name fb:en.acute_lymphoblastic_leukemia "Acute lymphoblastic leukemia") (name fb:en.leukemia_of_unspecified_cell_type_subacute "Leukemia of unspecified cell type, subacute") (name fb:en.chronic_leukemia "Chronic Leukemia"))) (type fb:medicine.disease) What is leukemia? Acute myeloid leukemia -4.211 formula (and (fb:type.object.type fb:common.topic) (!fb:medicine.disease.includes_diseases fb:en.leukemia))) (value (list (name fb:en.chronic_myelogenous_leukemia "Chronic myelogenous leukemia") (name fb:en.acute_leukemia "Acute Leukemia") (name fb:en.acute_myeloid_leukemia "Acute myeloid leukemia") (name fb:en.chronic_lymphocytic_leukemia "B-cell chronic lymphocytic leukemia") (name fb:en.pediatric_acute_lymphoblastic_leukemia "Pediatric Acute lymphoblastic leukemia") (name fb:en.acute_lymphoblastic_leukemia "Acute lymphoblastic leukemia") (name fb:en.leukemia_of_unspecified_cell_type_subacute "Leukemia of unspecified cell type, subacute") (name fb:en.chronic_leukemia "Chronic Leukemia"))) (type fb:medicine.disease) What is leukemia? B-cell chronic lymphocytic leukemia -4.211 formula (and (fb:type.object.type fb:common.topic) (!fb:medicine.disease.includes_diseases fb:en.leukemia))) (value (list (name fb:en.chronic_myelogenous_leukemia "Chronic myelogenous leukemia") (name fb:en.acute_leukemia "Acute Leukemia") (name fb:en.acute_myeloid_leukemia "Acute myeloid leukemia") (name fb:en.chronic_lymphocytic_leukemia "B-cell chronic lymphocytic leukemia") (name fb:en.pediatric_acute_lymphoblastic_leukemia "Pediatric Acute lymphoblastic leukemia") (name fb:en.acute_lymphoblastic_leukemia "Acute lymphoblastic leukemia") (name fb:en.leukemia_of_unspecified_cell_type_subacute "Leukemia of unspecified cell type, subacute") (name fb:en.chronic_leukemia "Chronic Leukemia"))) (type fb:medicine.disease) What is leukemia? Pediatric Acute lymphoblastic leukemia -4.211 formula (and (fb:type.object.type fb:common.topic) (!fb:medicine.disease.includes_diseases fb:en.leukemia))) (value (list (name fb:en.chronic_myelogenous_leukemia "Chronic myelogenous leukemia") (name fb:en.acute_leukemia "Acute Leukemia") (name fb:en.acute_myeloid_leukemia "Acute myeloid leukemia") (name fb:en.chronic_lymphocytic_leukemia "B-cell chronic lymphocytic leukemia") (name fb:en.pediatric_acute_lymphoblastic_leukemia "Pediatric Acute lymphoblastic leukemia") (name fb:en.acute_lymphoblastic_leukemia "Acute lymphoblastic leukemia") (name fb:en.leukemia_of_unspecified_cell_type_subacute "Leukemia of unspecified cell type, subacute") (name fb:en.chronic_leukemia "Chronic Leukemia"))) (type fb:medicine.disease) What is leukemia? Acute lymphoblastic leukemia -4.211 formula (and (fb:type.object.type fb:common.topic) (!fb:medicine.disease.includes_diseases fb:en.leukemia))) (value (list (name fb:en.chronic_myelogenous_leukemia "Chronic myelogenous leukemia") (name fb:en.acute_leukemia "Acute Leukemia") (name fb:en.acute_myeloid_leukemia "Acute myeloid leukemia") (name fb:en.chronic_lymphocytic_leukemia "B-cell chronic lymphocytic leukemia") (name fb:en.pediatric_acute_lymphoblastic_leukemia "Pediatric Acute lymphoblastic leukemia") (name fb:en.acute_lymphoblastic_leukemia "Acute lymphoblastic leukemia") (name fb:en.leukemia_of_unspecified_cell_type_subacute "Leukemia of unspecified cell type, subacute") (name fb:en.chronic_leukemia "Chronic Leukemia"))) (type fb:medicine.disease) What is leukemia? Leukemia of unspecified cell type, subacute -4.211 formula (and (fb:type.object.type fb:common.topic) (!fb:medicine.disease.includes_diseases fb:en.leukemia))) (value (list (name fb:en.chronic_myelogenous_leukemia "Chronic myelogenous leukemia") (name fb:en.acute_leukemia "Acute Leukemia") (name fb:en.acute_myeloid_leukemia "Acute myeloid leukemia") (name fb:en.chronic_lymphocytic_leukemia "B-cell chronic lymphocytic leukemia") (name fb:en.pediatric_acute_lymphoblastic_leukemia "Pediatric Acute lymphoblastic leukemia") (name fb:en.acute_lymphoblastic_leukemia "Acute lymphoblastic leukemia") (name fb:en.leukemia_of_unspecified_cell_type_subacute "Leukemia of unspecified cell type, subacute") (name fb:en.chronic_leukemia "Chronic Leukemia"))) (type fb:medicine.disease) What is leukemia? Chronic Leukemia -4.211 formula (and (fb:type.object.type fb:common.topic) (!fb:medicine.disease.includes_diseases fb:en.leukemia))) (value (list (name fb:en.chronic_myelogenous_leukemia "Chronic myelogenous leukemia") (name fb:en.acute_leukemia "Acute Leukemia") (name fb:en.acute_myeloid_leukemia "Acute myeloid leukemia") (name fb:en.chronic_lymphocytic_leukemia "B-cell chronic lymphocytic leukemia") (name fb:en.pediatric_acute_lymphoblastic_leukemia "Pediatric Acute lymphoblastic leukemia") (name fb:en.acute_lymphoblastic_leukemia "Acute lymphoblastic leukemia") (name fb:en.leukemia_of_unspecified_cell_type_subacute "Leukemia of unspecified cell type, subacute") (name fb:en.chronic_leukemia "Chronic Leukemia"))) (type fb:medicine.disease) Who has employed Steffen? Odd Iversen -7.621 formula (and (fb:type.object.type fb:people.person) (fb:people.person.children fb:en.steffen_iversen))) (value (list (name fb:en.odd_iversen "Odd Iversen"))) (type fb:people.person) What is titanium? Titanium dioxide -5.386 formula (and (fb:type.object.type fb:common.topic) (!fb:medicine.drug_ingredient.more_specific_ingredient fb:en.titanium_dioxide))) (value (list (name fb:en.titanium_dioxide "Titanium dioxide"))) (type fb:medicine.drug_ingredient) What is the annual salary of the Boston Pops conductor? John Williams -0.608 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops)))) (value (list (name fb:en.john_willams "John Williams") (name fb:en.arthur_fiedler "Arthur Fiedler") (name fb:en.keith_lockhart "Keith Lockhart") (name fb:en.adolf_neuendorff "Adolf Neuendorff") (name fb:en.timothee_adamowski "Timothee Adamowski") (name fb:en.alfredo_casella "Alfredo Casella") (name fb:en.franz_kneisel "Franz Kneisel") (name fb:en.josef_pasternack "Josef Pasternack") (name fb:en.agide_jacchia "Agide Jacchia"))) (type fb:music.conductor) What is the annual salary of the Boston Pops conductor? Arthur Fiedler -0.608 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops)))) (value (list (name fb:en.john_willams "John Williams") (name fb:en.arthur_fiedler "Arthur Fiedler") (name fb:en.keith_lockhart "Keith Lockhart") (name fb:en.adolf_neuendorff "Adolf Neuendorff") (name fb:en.timothee_adamowski "Timothee Adamowski") (name fb:en.alfredo_casella "Alfredo Casella") (name fb:en.franz_kneisel "Franz Kneisel") (name fb:en.josef_pasternack "Josef Pasternack") (name fb:en.agide_jacchia "Agide Jacchia"))) (type fb:music.conductor) What is the annual salary of the Boston Pops conductor? Keith Lockhart -0.608 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops)))) (value (list (name fb:en.john_willams "John Williams") (name fb:en.arthur_fiedler "Arthur Fiedler") (name fb:en.keith_lockhart "Keith Lockhart") (name fb:en.adolf_neuendorff "Adolf Neuendorff") (name fb:en.timothee_adamowski "Timothee Adamowski") (name fb:en.alfredo_casella "Alfredo Casella") (name fb:en.franz_kneisel "Franz Kneisel") (name fb:en.josef_pasternack "Josef Pasternack") (name fb:en.agide_jacchia "Agide Jacchia"))) (type fb:music.conductor) What is the annual salary of the Boston Pops conductor? Adolf Neuendorff -0.608 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops)))) (value (list (name fb:en.john_willams "John Williams") (name fb:en.arthur_fiedler "Arthur Fiedler") (name fb:en.keith_lockhart "Keith Lockhart") (name fb:en.adolf_neuendorff "Adolf Neuendorff") (name fb:en.timothee_adamowski "Timothee Adamowski") (name fb:en.alfredo_casella "Alfredo Casella") (name fb:en.franz_kneisel "Franz Kneisel") (name fb:en.josef_pasternack "Josef Pasternack") (name fb:en.agide_jacchia "Agide Jacchia"))) (type fb:music.conductor) What is the annual salary of the Boston Pops conductor? Timothee Adamowski -0.608 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops)))) (value (list (name fb:en.john_willams "John Williams") (name fb:en.arthur_fiedler "Arthur Fiedler") (name fb:en.keith_lockhart "Keith Lockhart") (name fb:en.adolf_neuendorff "Adolf Neuendorff") (name fb:en.timothee_adamowski "Timothee Adamowski") (name fb:en.alfredo_casella "Alfredo Casella") (name fb:en.franz_kneisel "Franz Kneisel") (name fb:en.josef_pasternack "Josef Pasternack") (name fb:en.agide_jacchia "Agide Jacchia"))) (type fb:music.conductor) What is the annual salary of the Boston Pops conductor? Alfredo Casella -0.608 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops)))) (value (list (name fb:en.john_willams "John Williams") (name fb:en.arthur_fiedler "Arthur Fiedler") (name fb:en.keith_lockhart "Keith Lockhart") (name fb:en.adolf_neuendorff "Adolf Neuendorff") (name fb:en.timothee_adamowski "Timothee Adamowski") (name fb:en.alfredo_casella "Alfredo Casella") (name fb:en.franz_kneisel "Franz Kneisel") (name fb:en.josef_pasternack "Josef Pasternack") (name fb:en.agide_jacchia "Agide Jacchia"))) (type fb:music.conductor) What is the annual salary of the Boston Pops conductor? Franz Kneisel -0.608 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops)))) (value (list (name fb:en.john_willams "John Williams") (name fb:en.arthur_fiedler "Arthur Fiedler") (name fb:en.keith_lockhart "Keith Lockhart") (name fb:en.adolf_neuendorff "Adolf Neuendorff") (name fb:en.timothee_adamowski "Timothee Adamowski") (name fb:en.alfredo_casella "Alfredo Casella") (name fb:en.franz_kneisel "Franz Kneisel") (name fb:en.josef_pasternack "Josef Pasternack") (name fb:en.agide_jacchia "Agide Jacchia"))) (type fb:music.conductor) What is the annual salary of the Boston Pops conductor? Josef Pasternack -0.608 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops)))) (value (list (name fb:en.john_willams "John Williams") (name fb:en.arthur_fiedler "Arthur Fiedler") (name fb:en.keith_lockhart "Keith Lockhart") (name fb:en.adolf_neuendorff "Adolf Neuendorff") (name fb:en.timothee_adamowski "Timothee Adamowski") (name fb:en.alfredo_casella "Alfredo Casella") (name fb:en.franz_kneisel "Franz Kneisel") (name fb:en.josef_pasternack "Josef Pasternack") (name fb:en.agide_jacchia "Agide Jacchia"))) (type fb:music.conductor) What is the annual salary of the Boston Pops conductor? Agide Jacchia -0.608 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops)))) (value (list (name fb:en.john_willams "John Williams") (name fb:en.arthur_fiedler "Arthur Fiedler") (name fb:en.keith_lockhart "Keith Lockhart") (name fb:en.adolf_neuendorff "Adolf Neuendorff") (name fb:en.timothee_adamowski "Timothee Adamowski") (name fb:en.alfredo_casella "Alfredo Casella") (name fb:en.franz_kneisel "Franz Kneisel") (name fb:en.josef_pasternack "Josef Pasternack") (name fb:en.agide_jacchia "Agide Jacchia"))) (type fb:music.conductor) What actor first portrayed James Bond? Dr. No -3.672 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:film.performance.film (!fb:film.film_character.portrayed_in_films (var x)))) fb:m.0clpml))) (value (list (name fb:en.dr_no "Dr. No") (name fb:en.goldfinger_1964 Goldfinger) (name fb:en.bond_22 "Quantum of Solace") (name fb:en.tomorrow_never_dies "Tomorrow Never Dies") (name fb:en.the_world_is_not_enough "The World Is Not Enough") (name fb:en.casino_royale "Casino Royale") (name fb:en.die_another_day "Die Another Day") (name fb:en.a_view_to_a_kill "A View to a Kill") (name fb:en.goldeneye GoldenEye) (name fb:en.for_your_eyes_only_1981 "For Your Eyes Only"))) (type fb:film.film) What actor first portrayed James Bond? Quantum of Solace -3.672 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:film.performance.film (!fb:film.film_character.portrayed_in_films (var x)))) fb:m.0clpml))) (value (list (name fb:en.dr_no "Dr. No") (name fb:en.goldfinger_1964 Goldfinger) (name fb:en.bond_22 "Quantum of Solace") (name fb:en.tomorrow_never_dies "Tomorrow Never Dies") (name fb:en.the_world_is_not_enough "The World Is Not Enough") (name fb:en.casino_royale "Casino Royale") (name fb:en.die_another_day "Die Another Day") (name fb:en.a_view_to_a_kill "A View to a Kill") (name fb:en.goldeneye GoldenEye) (name fb:en.for_your_eyes_only_1981 "For Your Eyes Only"))) (type fb:film.film) What actor first portrayed James Bond? Tomorrow Never Dies -3.672 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:film.performance.film (!fb:film.film_character.portrayed_in_films (var x)))) fb:m.0clpml))) (value (list (name fb:en.dr_no "Dr. No") (name fb:en.goldfinger_1964 Goldfinger) (name fb:en.bond_22 "Quantum of Solace") (name fb:en.tomorrow_never_dies "Tomorrow Never Dies") (name fb:en.the_world_is_not_enough "The World Is Not Enough") (name fb:en.casino_royale "Casino Royale") (name fb:en.die_another_day "Die Another Day") (name fb:en.a_view_to_a_kill "A View to a Kill") (name fb:en.goldeneye GoldenEye) (name fb:en.for_your_eyes_only_1981 "For Your Eyes Only"))) (type fb:film.film) What actor first portrayed James Bond? The World Is Not Enough -3.672 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:film.performance.film (!fb:film.film_character.portrayed_in_films (var x)))) fb:m.0clpml))) (value (list (name fb:en.dr_no "Dr. No") (name fb:en.goldfinger_1964 Goldfinger) (name fb:en.bond_22 "Quantum of Solace") (name fb:en.tomorrow_never_dies "Tomorrow Never Dies") (name fb:en.the_world_is_not_enough "The World Is Not Enough") (name fb:en.casino_royale "Casino Royale") (name fb:en.die_another_day "Die Another Day") (name fb:en.a_view_to_a_kill "A View to a Kill") (name fb:en.goldeneye GoldenEye) (name fb:en.for_your_eyes_only_1981 "For Your Eyes Only"))) (type fb:film.film) What actor first portrayed James Bond? Casino Royale -3.672 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:film.performance.film (!fb:film.film_character.portrayed_in_films (var x)))) fb:m.0clpml))) (value (list (name fb:en.dr_no "Dr. No") (name fb:en.goldfinger_1964 Goldfinger) (name fb:en.bond_22 "Quantum of Solace") (name fb:en.tomorrow_never_dies "Tomorrow Never Dies") (name fb:en.the_world_is_not_enough "The World Is Not Enough") (name fb:en.casino_royale "Casino Royale") (name fb:en.die_another_day "Die Another Day") (name fb:en.a_view_to_a_kill "A View to a Kill") (name fb:en.goldeneye GoldenEye) (name fb:en.for_your_eyes_only_1981 "For Your Eyes Only"))) (type fb:film.film) What actor first portrayed James Bond? Die Another Day -3.672 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:film.performance.film (!fb:film.film_character.portrayed_in_films (var x)))) fb:m.0clpml))) (value (list (name fb:en.dr_no "Dr. No") (name fb:en.goldfinger_1964 Goldfinger) (name fb:en.bond_22 "Quantum of Solace") (name fb:en.tomorrow_never_dies "Tomorrow Never Dies") (name fb:en.the_world_is_not_enough "The World Is Not Enough") (name fb:en.casino_royale "Casino Royale") (name fb:en.die_another_day "Die Another Day") (name fb:en.a_view_to_a_kill "A View to a Kill") (name fb:en.goldeneye GoldenEye) (name fb:en.for_your_eyes_only_1981 "For Your Eyes Only"))) (type fb:film.film) What actor first portrayed James Bond? A View to a Kill -3.672 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:film.performance.film (!fb:film.film_character.portrayed_in_films (var x)))) fb:m.0clpml))) (value (list (name fb:en.dr_no "Dr. No") (name fb:en.goldfinger_1964 Goldfinger) (name fb:en.bond_22 "Quantum of Solace") (name fb:en.tomorrow_never_dies "Tomorrow Never Dies") (name fb:en.the_world_is_not_enough "The World Is Not Enough") (name fb:en.casino_royale "Casino Royale") (name fb:en.die_another_day "Die Another Day") (name fb:en.a_view_to_a_kill "A View to a Kill") (name fb:en.goldeneye GoldenEye) (name fb:en.for_your_eyes_only_1981 "For Your Eyes Only"))) (type fb:film.film) What actor first portrayed James Bond? For Your Eyes Only -3.672 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:film.performance.film (!fb:film.film_character.portrayed_in_films (var x)))) fb:m.0clpml))) (value (list (name fb:en.dr_no "Dr. No") (name fb:en.goldfinger_1964 Goldfinger) (name fb:en.bond_22 "Quantum of Solace") (name fb:en.tomorrow_never_dies "Tomorrow Never Dies") (name fb:en.the_world_is_not_enough "The World Is Not Enough") (name fb:en.casino_royale "Casino Royale") (name fb:en.die_another_day "Die Another Day") (name fb:en.a_view_to_a_kill "A View to a Kill") (name fb:en.goldeneye GoldenEye) (name fb:en.for_your_eyes_only_1981 "For Your Eyes Only"))) (type fb:film.film) What was Thailand's original name? Thai Bangkaew Dog 1.144 formula (and (fb:type.object.type fb:common.topic) (fb:biology.animal_breed.place_of_origin fb:en.thailand))) (value (list (name fb:en.thai_bangkaew_dog "Thai Bangkaew Dog") (name fb:en.siamese Siamese) (name fb:en.burmese Burmese) (name fb:en.korat Korat) (name fb:m.02zfy2 Bombay) (name fb:en.thai_ridgeback "Thai Ridgeback") (name fb:en.havana_brown "Havana Brown") (name fb:en.oriental_shorthair "Oriental Shorthair"))) (type fb:biology.animal_breed) What was Thailand's original name? Thai Ridgeback 1.144 formula (and (fb:type.object.type fb:common.topic) (fb:biology.animal_breed.place_of_origin fb:en.thailand))) (value (list (name fb:en.thai_bangkaew_dog "Thai Bangkaew Dog") (name fb:en.siamese Siamese) (name fb:en.burmese Burmese) (name fb:en.korat Korat) (name fb:m.02zfy2 Bombay) (name fb:en.thai_ridgeback "Thai Ridgeback") (name fb:en.havana_brown "Havana Brown") (name fb:en.oriental_shorthair "Oriental Shorthair"))) (type fb:biology.animal_breed) What was Thailand's original name? Havana Brown 1.144 formula (and (fb:type.object.type fb:common.topic) (fb:biology.animal_breed.place_of_origin fb:en.thailand))) (value (list (name fb:en.thai_bangkaew_dog "Thai Bangkaew Dog") (name fb:en.siamese Siamese) (name fb:en.burmese Burmese) (name fb:en.korat Korat) (name fb:m.02zfy2 Bombay) (name fb:en.thai_ridgeback "Thai Ridgeback") (name fb:en.havana_brown "Havana Brown") (name fb:en.oriental_shorthair "Oriental Shorthair"))) (type fb:biology.animal_breed) What was Thailand's original name? Oriental Shorthair 1.144 formula (and (fb:type.object.type fb:common.topic) (fb:biology.animal_breed.place_of_origin fb:en.thailand))) (value (list (name fb:en.thai_bangkaew_dog "Thai Bangkaew Dog") (name fb:en.siamese Siamese) (name fb:en.burmese Burmese) (name fb:en.korat Korat) (name fb:m.02zfy2 Bombay) (name fb:en.thai_ridgeback "Thai Ridgeback") (name fb:en.havana_brown "Havana Brown") (name fb:en.oriental_shorthair "Oriental Shorthair"))) (type fb:biology.animal_breed) When did the Dow first reach 2000? 2000 AD Prog 1 -7.362 formula (!fb:comic_books.comic_book_series.first_issue fb:en.2000_ad)) (value (list (name fb:en.2000_ad_prog_1 "2000 AD Prog 1"))) (type fb:comic_books.comic_book_issue) How big is a keg? Entertainment Weekly annotation index -2.261 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.keg)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index"))) (type fb:common.annotation_index) Where is Santa Lucia? Sierra Nevada -5.345 formula (and (fb:type.object.type fb:location.location) (!fb:people.deceased_person.place_of_death fb:en.lucia_zarate))) (value (list (name fb:en.sierra_nevada "Sierra Nevada"))) (type fb:location.location) In what spacecraft did U.S. astronaut Alan Shepard make his historic Mercury-Redstone 3 -3.397 formula (and (fb:type.object.type fb:common.topic) (!fb:spaceflight.astronaut.missions fb:en.alan_shepard))) (value (list (name fb:en.mercury-redstone_3 "Mercury-Redstone 3") (name fb:en.apollo_14 "Apollo 14"))) (type fb:spaceflight.space_mission) In what spacecraft did U.S. astronaut Alan Shepard make his historic Apollo 14 -3.397 formula (and (fb:type.object.type fb:common.topic) (!fb:spaceflight.astronaut.missions fb:en.alan_shepard))) (value (list (name fb:en.mercury-redstone_3 "Mercury-Redstone 3") (name fb:en.apollo_14 "Apollo 14"))) (type fb:spaceflight.space_mission) How long was Pope Pius XII's pontificate? Myocardial infarction -3.21 formula (fb:people.cause_of_death.people fb:en.pope_pius_xii)) (value (list (name fb:en.heart_failure "Myocardial infarction"))) (type fb:people.cause_of_death) What is his primary career? What Is... -0.945 formula (!fb:music.album.primary_release fb:en.what_is)) (value (list (name fb:m.039bs74 "What Is..."))) (type fb:music.release) How many competitors did the winner of the Miss Universe 2000 contest have? Sonija Kwok 1.192 formula (and (fb:type.object.type fb:award.competitor) (!fb:award.competition.competitors fb:en.miss_universe_2000))) (value (list (name fb:en.sonija_kwok "Sonija Kwok") (name fb:en.sonia_rolland "Sonia Rolland") (name fb:en.gilda_jovine "Gilda Jovine") (name fb:en.kulthida_yenprasert "Kulthida Yenprasert") (name fb:en.claudia_moreno "Claudia Moreno") (name fb:en.leticia_murray "Leticia Murray") (name fb:en.eunice_olsen "Eunice Olsen"))) (type fb:award.competitor) How many competitors did the winner of the Miss Universe 2000 contest have? Sonia Rolland 1.192 formula (and (fb:type.object.type fb:award.competitor) (!fb:award.competition.competitors fb:en.miss_universe_2000))) (value (list (name fb:en.sonija_kwok "Sonija Kwok") (name fb:en.sonia_rolland "Sonia Rolland") (name fb:en.gilda_jovine "Gilda Jovine") (name fb:en.kulthida_yenprasert "Kulthida Yenprasert") (name fb:en.claudia_moreno "Claudia Moreno") (name fb:en.leticia_murray "Leticia Murray") (name fb:en.eunice_olsen "Eunice Olsen"))) (type fb:award.competitor) How many competitors did the winner of the Miss Universe 2000 contest have? Gilda Jovine 1.192 formula (and (fb:type.object.type fb:award.competitor) (!fb:award.competition.competitors fb:en.miss_universe_2000))) (value (list (name fb:en.sonija_kwok "Sonija Kwok") (name fb:en.sonia_rolland "Sonia Rolland") (name fb:en.gilda_jovine "Gilda Jovine") (name fb:en.kulthida_yenprasert "Kulthida Yenprasert") (name fb:en.claudia_moreno "Claudia Moreno") (name fb:en.leticia_murray "Leticia Murray") (name fb:en.eunice_olsen "Eunice Olsen"))) (type fb:award.competitor) How many competitors did the winner of the Miss Universe 2000 contest have? Kulthida Yenprasert 1.192 formula (and (fb:type.object.type fb:award.competitor) (!fb:award.competition.competitors fb:en.miss_universe_2000))) (value (list (name fb:en.sonija_kwok "Sonija Kwok") (name fb:en.sonia_rolland "Sonia Rolland") (name fb:en.gilda_jovine "Gilda Jovine") (name fb:en.kulthida_yenprasert "Kulthida Yenprasert") (name fb:en.claudia_moreno "Claudia Moreno") (name fb:en.leticia_murray "Leticia Murray") (name fb:en.eunice_olsen "Eunice Olsen"))) (type fb:award.competitor) How many competitors did the winner of the Miss Universe 2000 contest have? Claudia Moreno 1.192 formula (and (fb:type.object.type fb:award.competitor) (!fb:award.competition.competitors fb:en.miss_universe_2000))) (value (list (name fb:en.sonija_kwok "Sonija Kwok") (name fb:en.sonia_rolland "Sonia Rolland") (name fb:en.gilda_jovine "Gilda Jovine") (name fb:en.kulthida_yenprasert "Kulthida Yenprasert") (name fb:en.claudia_moreno "Claudia Moreno") (name fb:en.leticia_murray "Leticia Murray") (name fb:en.eunice_olsen "Eunice Olsen"))) (type fb:award.competitor) How many competitors did the winner of the Miss Universe 2000 contest have? Leticia Murray 1.192 formula (and (fb:type.object.type fb:award.competitor) (!fb:award.competition.competitors fb:en.miss_universe_2000))) (value (list (name fb:en.sonija_kwok "Sonija Kwok") (name fb:en.sonia_rolland "Sonia Rolland") (name fb:en.gilda_jovine "Gilda Jovine") (name fb:en.kulthida_yenprasert "Kulthida Yenprasert") (name fb:en.claudia_moreno "Claudia Moreno") (name fb:en.leticia_murray "Leticia Murray") (name fb:en.eunice_olsen "Eunice Olsen"))) (type fb:award.competitor) How many competitors did the winner of the Miss Universe 2000 contest have? Eunice Olsen 1.192 formula (and (fb:type.object.type fb:award.competitor) (!fb:award.competition.competitors fb:en.miss_universe_2000))) (value (list (name fb:en.sonija_kwok "Sonija Kwok") (name fb:en.sonia_rolland "Sonia Rolland") (name fb:en.gilda_jovine "Gilda Jovine") (name fb:en.kulthida_yenprasert "Kulthida Yenprasert") (name fb:en.claudia_moreno "Claudia Moreno") (name fb:en.leticia_murray "Leticia Murray") (name fb:en.eunice_olsen "Eunice Olsen"))) (type fb:award.competitor) What songs did Al Jolson Sing? California, Here I Come 0.022 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:music.composition) (!fb:music.composer.compositions fb:en.al_jolson)))) (value (list (name fb:en.california_here_i_come "California, Here I Come"))) (type fb:music.composition) When did the Johnstown flood occur? Winter, or The Flood -5.68 formula (!fb:visual_art.art_subject.artwork_on_the_subject fb:m.02vdms)) (value (list (name fb:en.winter_or_the_flood "Winter, or The Flood"))) (type fb:visual_art.artwork) Who was the British Foreign Secretary at the time of of Hong Kong's return to Chinese sovereignty? United States dollar -3.059 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:measurement_unit.dated_money_value.currency (!fb:location.statistical_region.foreign_direct_investment_net_inflows (var x)))) fb:en.hong_kong))) (value (list (name fb:en.us "United States dollar"))) (type fb:finance.currency) How old was the dam? Dam Square in Amsterdam, with a View of the New Church -2.926 formula (!fb:visual_art.art_subject.artwork_on_the_subject fb:en.dam_square)) (value (list (name fb:m.05nl8g4 "Dam Square in Amsterdam, with a View of the New Church"))) (type fb:visual_art.artwork) Who was Abraham Lincoln? Lewis Powell -4.726 formula (and (fb:type.object.type fb:people.person) ((lambda x (!fb:user.dfhuynh.default_domain.assassination.conspirator (!fb:user.dfhuynh.default_domain.assassinated_person.assassination (var x)))) fb:en.abraham_lincoln))) (value (list (name fb:en.lewis_powell "Lewis Powell") (name fb:en.samuel_arnold_1838 "Samuel Arnold") (name fb:en.david_herold "David Herold") (name fb:en.john_surratt "John Surratt") (name fb:en.michael_olaughlen "Michael O'Laughlen") (name fb:en.george_atzerodt "George Atzerodt"))) (type fb:people.person) Who was Abraham Lincoln? Samuel Arnold -4.726 formula (and (fb:type.object.type fb:people.person) ((lambda x (!fb:user.dfhuynh.default_domain.assassination.conspirator (!fb:user.dfhuynh.default_domain.assassinated_person.assassination (var x)))) fb:en.abraham_lincoln))) (value (list (name fb:en.lewis_powell "Lewis Powell") (name fb:en.samuel_arnold_1838 "Samuel Arnold") (name fb:en.david_herold "David Herold") (name fb:en.john_surratt "John Surratt") (name fb:en.michael_olaughlen "Michael O'Laughlen") (name fb:en.george_atzerodt "George Atzerodt"))) (type fb:people.person) Who was Abraham Lincoln? David Herold -4.726 formula (and (fb:type.object.type fb:people.person) ((lambda x (!fb:user.dfhuynh.default_domain.assassination.conspirator (!fb:user.dfhuynh.default_domain.assassinated_person.assassination (var x)))) fb:en.abraham_lincoln))) (value (list (name fb:en.lewis_powell "Lewis Powell") (name fb:en.samuel_arnold_1838 "Samuel Arnold") (name fb:en.david_herold "David Herold") (name fb:en.john_surratt "John Surratt") (name fb:en.michael_olaughlen "Michael O'Laughlen") (name fb:en.george_atzerodt "George Atzerodt"))) (type fb:people.person) Who was Abraham Lincoln? John Surratt -4.726 formula (and (fb:type.object.type fb:people.person) ((lambda x (!fb:user.dfhuynh.default_domain.assassination.conspirator (!fb:user.dfhuynh.default_domain.assassinated_person.assassination (var x)))) fb:en.abraham_lincoln))) (value (list (name fb:en.lewis_powell "Lewis Powell") (name fb:en.samuel_arnold_1838 "Samuel Arnold") (name fb:en.david_herold "David Herold") (name fb:en.john_surratt "John Surratt") (name fb:en.michael_olaughlen "Michael O'Laughlen") (name fb:en.george_atzerodt "George Atzerodt"))) (type fb:people.person) Who was Abraham Lincoln? Michael O'Laughlen -4.726 formula (and (fb:type.object.type fb:people.person) ((lambda x (!fb:user.dfhuynh.default_domain.assassination.conspirator (!fb:user.dfhuynh.default_domain.assassinated_person.assassination (var x)))) fb:en.abraham_lincoln))) (value (list (name fb:en.lewis_powell "Lewis Powell") (name fb:en.samuel_arnold_1838 "Samuel Arnold") (name fb:en.david_herold "David Herold") (name fb:en.john_surratt "John Surratt") (name fb:en.michael_olaughlen "Michael O'Laughlen") (name fb:en.george_atzerodt "George Atzerodt"))) (type fb:people.person) Who was Abraham Lincoln? George Atzerodt -4.726 formula (and (fb:type.object.type fb:people.person) ((lambda x (!fb:user.dfhuynh.default_domain.assassination.conspirator (!fb:user.dfhuynh.default_domain.assassinated_person.assassination (var x)))) fb:en.abraham_lincoln))) (value (list (name fb:en.lewis_powell "Lewis Powell") (name fb:en.samuel_arnold_1838 "Samuel Arnold") (name fb:en.david_herold "David Herold") (name fb:en.john_surratt "John Surratt") (name fb:en.michael_olaughlen "Michael O'Laughlen") (name fb:en.george_atzerodt "George Atzerodt"))) (type fb:people.person) What is Dick Clark's date of birth? Mount Vernon -0.46 formula (and (fb:type.object.type fb:common.topic) (!fb:people.person.place_of_birth fb:en.dick_clark))) (value (list (name fb:en.mount_vernon_new_york "Mount Vernon"))) (type fb:location.location) What is the location of Lake Champlain? Richelieu River 0.667 formula (and (fb:type.object.type fb:location.location) (!fb:geography.lake.outflow fb:en.lake_champlain))) (value (list (name fb:en.richelieu_river "Richelieu River"))) (type fb:geography.body_of_water) List female astronauts or cosmonauts. Subsequent Light -3.343 formula (fb:music.release.track_list fb:m.0l5gdvx)) (value (list (name fb:m.034gshl "Subsequent Light"))) (type fb:music.release) Who was Virginia's first and most famous wine maker? Ted Kennedy 2.07 formula (and (fb:type.object.type fb:people.person) ((lambda x (fb:people.person.spouse_s (fb:people.marriage.location_of_ceremony (var x)))) fb:en.virginia))) (value (list (name fb:en.edward_m_kennedy "Ted Kennedy") (name fb:m.0n88yfw "Chris Dougherty") (name fb:en.victoria_reggie_kennedy "Victoria Reggie Kennedy") (name fb:en.reema_khan "Reema Khan") (name fb:en.francis_dodson "Francis Dodson") (name fb:en.leeann_tweeden "Leeann Tweeden") (name fb:en.elizabeth_harroldson "Elizabeth Harroldson") (name fb:m.0j88p2v "S. Tariq Shahab"))) (type fb:people.person) Who was Virginia's first and most famous wine maker? Chris Dougherty 2.07 formula (and (fb:type.object.type fb:people.person) ((lambda x (fb:people.person.spouse_s (fb:people.marriage.location_of_ceremony (var x)))) fb:en.virginia))) (value (list (name fb:en.edward_m_kennedy "Ted Kennedy") (name fb:m.0n88yfw "Chris Dougherty") (name fb:en.victoria_reggie_kennedy "Victoria Reggie Kennedy") (name fb:en.reema_khan "Reema Khan") (name fb:en.francis_dodson "Francis Dodson") (name fb:en.leeann_tweeden "Leeann Tweeden") (name fb:en.elizabeth_harroldson "Elizabeth Harroldson") (name fb:m.0j88p2v "S. Tariq Shahab"))) (type fb:people.person) Who was Virginia's first and most famous wine maker? Victoria Reggie Kennedy 2.07 formula (and (fb:type.object.type fb:people.person) ((lambda x (fb:people.person.spouse_s (fb:people.marriage.location_of_ceremony (var x)))) fb:en.virginia))) (value (list (name fb:en.edward_m_kennedy "Ted Kennedy") (name fb:m.0n88yfw "Chris Dougherty") (name fb:en.victoria_reggie_kennedy "Victoria Reggie Kennedy") (name fb:en.reema_khan "Reema Khan") (name fb:en.francis_dodson "Francis Dodson") (name fb:en.leeann_tweeden "Leeann Tweeden") (name fb:en.elizabeth_harroldson "Elizabeth Harroldson") (name fb:m.0j88p2v "S. Tariq Shahab"))) (type fb:people.person) Who was Virginia's first and most famous wine maker? Reema Khan 2.07 formula (and (fb:type.object.type fb:people.person) ((lambda x (fb:people.person.spouse_s (fb:people.marriage.location_of_ceremony (var x)))) fb:en.virginia))) (value (list (name fb:en.edward_m_kennedy "Ted Kennedy") (name fb:m.0n88yfw "Chris Dougherty") (name fb:en.victoria_reggie_kennedy "Victoria Reggie Kennedy") (name fb:en.reema_khan "Reema Khan") (name fb:en.francis_dodson "Francis Dodson") (name fb:en.leeann_tweeden "Leeann Tweeden") (name fb:en.elizabeth_harroldson "Elizabeth Harroldson") (name fb:m.0j88p2v "S. Tariq Shahab"))) (type fb:people.person) Who was Virginia's first and most famous wine maker? Francis Dodson 2.07 formula (and (fb:type.object.type fb:people.person) ((lambda x (fb:people.person.spouse_s (fb:people.marriage.location_of_ceremony (var x)))) fb:en.virginia))) (value (list (name fb:en.edward_m_kennedy "Ted Kennedy") (name fb:m.0n88yfw "Chris Dougherty") (name fb:en.victoria_reggie_kennedy "Victoria Reggie Kennedy") (name fb:en.reema_khan "Reema Khan") (name fb:en.francis_dodson "Francis Dodson") (name fb:en.leeann_tweeden "Leeann Tweeden") (name fb:en.elizabeth_harroldson "Elizabeth Harroldson") (name fb:m.0j88p2v "S. Tariq Shahab"))) (type fb:people.person) Who was Virginia's first and most famous wine maker? Leeann Tweeden 2.07 formula (and (fb:type.object.type fb:people.person) ((lambda x (fb:people.person.spouse_s (fb:people.marriage.location_of_ceremony (var x)))) fb:en.virginia))) (value (list (name fb:en.edward_m_kennedy "Ted Kennedy") (name fb:m.0n88yfw "Chris Dougherty") (name fb:en.victoria_reggie_kennedy "Victoria Reggie Kennedy") (name fb:en.reema_khan "Reema Khan") (name fb:en.francis_dodson "Francis Dodson") (name fb:en.leeann_tweeden "Leeann Tweeden") (name fb:en.elizabeth_harroldson "Elizabeth Harroldson") (name fb:m.0j88p2v "S. Tariq Shahab"))) (type fb:people.person) Who was Virginia's first and most famous wine maker? Elizabeth Harroldson 2.07 formula (and (fb:type.object.type fb:people.person) ((lambda x (fb:people.person.spouse_s (fb:people.marriage.location_of_ceremony (var x)))) fb:en.virginia))) (value (list (name fb:en.edward_m_kennedy "Ted Kennedy") (name fb:m.0n88yfw "Chris Dougherty") (name fb:en.victoria_reggie_kennedy "Victoria Reggie Kennedy") (name fb:en.reema_khan "Reema Khan") (name fb:en.francis_dodson "Francis Dodson") (name fb:en.leeann_tweeden "Leeann Tweeden") (name fb:en.elizabeth_harroldson "Elizabeth Harroldson") (name fb:m.0j88p2v "S. Tariq Shahab"))) (type fb:people.person) Who was Virginia's first and most famous wine maker? S. Tariq Shahab 2.07 formula (and (fb:type.object.type fb:people.person) ((lambda x (fb:people.person.spouse_s (fb:people.marriage.location_of_ceremony (var x)))) fb:en.virginia))) (value (list (name fb:en.edward_m_kennedy "Ted Kennedy") (name fb:m.0n88yfw "Chris Dougherty") (name fb:en.victoria_reggie_kennedy "Victoria Reggie Kennedy") (name fb:en.reema_khan "Reema Khan") (name fb:en.francis_dodson "Francis Dodson") (name fb:en.leeann_tweeden "Leeann Tweeden") (name fb:en.elizabeth_harroldson "Elizabeth Harroldson") (name fb:m.0j88p2v "S. Tariq Shahab"))) (type fb:people.person) On what date was the surgery performed? Horse-riding accident -1.773 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:base.disaster2.type_of_injury_causing_event.injuries_caused_this_way (fb:base.disaster2.injury.injury_treatment (var x)))) fb:en.surgery))) (value (list (name fb:en.gunshot Gunshot) (name fb:en.horse_riding_accident "Horse-riding accident") (name fb:en.domestic_violence "Domestic violence") (name fb:m.04f32c6 Falling) (name fb:en.skateboard_accident "Skateboard accident") (name fb:en.wrestling_accident "Wrestling accident"))) (type fb:base.disaster2.type_of_injury_causing_event) On what date was the surgery performed? Domestic violence -1.773 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:base.disaster2.type_of_injury_causing_event.injuries_caused_this_way (fb:base.disaster2.injury.injury_treatment (var x)))) fb:en.surgery))) (value (list (name fb:en.gunshot Gunshot) (name fb:en.horse_riding_accident "Horse-riding accident") (name fb:en.domestic_violence "Domestic violence") (name fb:m.04f32c6 Falling) (name fb:en.skateboard_accident "Skateboard accident") (name fb:en.wrestling_accident "Wrestling accident"))) (type fb:base.disaster2.type_of_injury_causing_event) On what date was the surgery performed? Skateboard accident -1.773 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:base.disaster2.type_of_injury_causing_event.injuries_caused_this_way (fb:base.disaster2.injury.injury_treatment (var x)))) fb:en.surgery))) (value (list (name fb:en.gunshot Gunshot) (name fb:en.horse_riding_accident "Horse-riding accident") (name fb:en.domestic_violence "Domestic violence") (name fb:m.04f32c6 Falling) (name fb:en.skateboard_accident "Skateboard accident") (name fb:en.wrestling_accident "Wrestling accident"))) (type fb:base.disaster2.type_of_injury_causing_event) On what date was the surgery performed? Wrestling accident -1.773 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:base.disaster2.type_of_injury_causing_event.injuries_caused_this_way (fb:base.disaster2.injury.injury_treatment (var x)))) fb:en.surgery))) (value (list (name fb:en.gunshot Gunshot) (name fb:en.horse_riding_accident "Horse-riding accident") (name fb:en.domestic_violence "Domestic violence") (name fb:m.04f32c6 Falling) (name fb:en.skateboard_accident "Skateboard accident") (name fb:en.wrestling_accident "Wrestling accident"))) (type fb:base.disaster2.type_of_injury_causing_event) What is sodium chloride? Phenylephrine hydrochloride -2.736 formula (and (fb:type.object.type fb:common.topic) (!fb:medicine.drug_ingredient.more_specific_ingredient fb:en.chloride_ion))) (value (list (name fb:m.0hqypfx "Phenylephrine hydrochloride") (name fb:en.potassium_chloride "Potassium chloride") (name fb:en.sodium_chloride "Sodium chloride") (name fb:m.0hqywp9 "Pseudoephedrine hydrochloride") (name fb:m.0hqxkk4 "Chlorcyclizine hydrochloride") (name fb:m.0j4j6m7 "Histamine dihydrochloride") (name fb:m.0hqxwq9 "Cyclizine hydrochloride") (name fb:m.0hqw5fn "Aluminum zirconium trichlorohydrex gly") (name fb:en.tubocurarine "Tubocurarine chloride") (name fb:en.benzethonium_chloride "Benzethonium chloride"))) (type fb:medicine.drug_ingredient) What is sodium chloride? Potassium chloride -2.736 formula (and (fb:type.object.type fb:common.topic) (!fb:medicine.drug_ingredient.more_specific_ingredient fb:en.chloride_ion))) (value (list (name fb:m.0hqypfx "Phenylephrine hydrochloride") (name fb:en.potassium_chloride "Potassium chloride") (name fb:en.sodium_chloride "Sodium chloride") (name fb:m.0hqywp9 "Pseudoephedrine hydrochloride") (name fb:m.0hqxkk4 "Chlorcyclizine hydrochloride") (name fb:m.0j4j6m7 "Histamine dihydrochloride") (name fb:m.0hqxwq9 "Cyclizine hydrochloride") (name fb:m.0hqw5fn "Aluminum zirconium trichlorohydrex gly") (name fb:en.tubocurarine "Tubocurarine chloride") (name fb:en.benzethonium_chloride "Benzethonium chloride"))) (type fb:medicine.drug_ingredient) What is sodium chloride? Sodium chloride -2.736 formula (and (fb:type.object.type fb:common.topic) (!fb:medicine.drug_ingredient.more_specific_ingredient fb:en.chloride_ion))) (value (list (name fb:m.0hqypfx "Phenylephrine hydrochloride") (name fb:en.potassium_chloride "Potassium chloride") (name fb:en.sodium_chloride "Sodium chloride") (name fb:m.0hqywp9 "Pseudoephedrine hydrochloride") (name fb:m.0hqxkk4 "Chlorcyclizine hydrochloride") (name fb:m.0j4j6m7 "Histamine dihydrochloride") (name fb:m.0hqxwq9 "Cyclizine hydrochloride") (name fb:m.0hqw5fn "Aluminum zirconium trichlorohydrex gly") (name fb:en.tubocurarine "Tubocurarine chloride") (name fb:en.benzethonium_chloride "Benzethonium chloride"))) (type fb:medicine.drug_ingredient) What is sodium chloride? Pseudoephedrine hydrochloride -2.736 formula (and (fb:type.object.type fb:common.topic) (!fb:medicine.drug_ingredient.more_specific_ingredient fb:en.chloride_ion))) (value (list (name fb:m.0hqypfx "Phenylephrine hydrochloride") (name fb:en.potassium_chloride "Potassium chloride") (name fb:en.sodium_chloride "Sodium chloride") (name fb:m.0hqywp9 "Pseudoephedrine hydrochloride") (name fb:m.0hqxkk4 "Chlorcyclizine hydrochloride") (name fb:m.0j4j6m7 "Histamine dihydrochloride") (name fb:m.0hqxwq9 "Cyclizine hydrochloride") (name fb:m.0hqw5fn "Aluminum zirconium trichlorohydrex gly") (name fb:en.tubocurarine "Tubocurarine chloride") (name fb:en.benzethonium_chloride "Benzethonium chloride"))) (type fb:medicine.drug_ingredient) What is sodium chloride? Chlorcyclizine hydrochloride -2.736 formula (and (fb:type.object.type fb:common.topic) (!fb:medicine.drug_ingredient.more_specific_ingredient fb:en.chloride_ion))) (value (list (name fb:m.0hqypfx "Phenylephrine hydrochloride") (name fb:en.potassium_chloride "Potassium chloride") (name fb:en.sodium_chloride "Sodium chloride") (name fb:m.0hqywp9 "Pseudoephedrine hydrochloride") (name fb:m.0hqxkk4 "Chlorcyclizine hydrochloride") (name fb:m.0j4j6m7 "Histamine dihydrochloride") (name fb:m.0hqxwq9 "Cyclizine hydrochloride") (name fb:m.0hqw5fn "Aluminum zirconium trichlorohydrex gly") (name fb:en.tubocurarine "Tubocurarine chloride") (name fb:en.benzethonium_chloride "Benzethonium chloride"))) (type fb:medicine.drug_ingredient) What is sodium chloride? Histamine dihydrochloride -2.736 formula (and (fb:type.object.type fb:common.topic) (!fb:medicine.drug_ingredient.more_specific_ingredient fb:en.chloride_ion))) (value (list (name fb:m.0hqypfx "Phenylephrine hydrochloride") (name fb:en.potassium_chloride "Potassium chloride") (name fb:en.sodium_chloride "Sodium chloride") (name fb:m.0hqywp9 "Pseudoephedrine hydrochloride") (name fb:m.0hqxkk4 "Chlorcyclizine hydrochloride") (name fb:m.0j4j6m7 "Histamine dihydrochloride") (name fb:m.0hqxwq9 "Cyclizine hydrochloride") (name fb:m.0hqw5fn "Aluminum zirconium trichlorohydrex gly") (name fb:en.tubocurarine "Tubocurarine chloride") (name fb:en.benzethonium_chloride "Benzethonium chloride"))) (type fb:medicine.drug_ingredient) What is sodium chloride? Cyclizine hydrochloride -2.736 formula (and (fb:type.object.type fb:common.topic) (!fb:medicine.drug_ingredient.more_specific_ingredient fb:en.chloride_ion))) (value (list (name fb:m.0hqypfx "Phenylephrine hydrochloride") (name fb:en.potassium_chloride "Potassium chloride") (name fb:en.sodium_chloride "Sodium chloride") (name fb:m.0hqywp9 "Pseudoephedrine hydrochloride") (name fb:m.0hqxkk4 "Chlorcyclizine hydrochloride") (name fb:m.0j4j6m7 "Histamine dihydrochloride") (name fb:m.0hqxwq9 "Cyclizine hydrochloride") (name fb:m.0hqw5fn "Aluminum zirconium trichlorohydrex gly") (name fb:en.tubocurarine "Tubocurarine chloride") (name fb:en.benzethonium_chloride "Benzethonium chloride"))) (type fb:medicine.drug_ingredient) What is sodium chloride? Aluminum zirconium trichlorohydrex gly -2.736 formula (and (fb:type.object.type fb:common.topic) (!fb:medicine.drug_ingredient.more_specific_ingredient fb:en.chloride_ion))) (value (list (name fb:m.0hqypfx "Phenylephrine hydrochloride") (name fb:en.potassium_chloride "Potassium chloride") (name fb:en.sodium_chloride "Sodium chloride") (name fb:m.0hqywp9 "Pseudoephedrine hydrochloride") (name fb:m.0hqxkk4 "Chlorcyclizine hydrochloride") (name fb:m.0j4j6m7 "Histamine dihydrochloride") (name fb:m.0hqxwq9 "Cyclizine hydrochloride") (name fb:m.0hqw5fn "Aluminum zirconium trichlorohydrex gly") (name fb:en.tubocurarine "Tubocurarine chloride") (name fb:en.benzethonium_chloride "Benzethonium chloride"))) (type fb:medicine.drug_ingredient) What is sodium chloride? Tubocurarine chloride -2.736 formula (and (fb:type.object.type fb:common.topic) (!fb:medicine.drug_ingredient.more_specific_ingredient fb:en.chloride_ion))) (value (list (name fb:m.0hqypfx "Phenylephrine hydrochloride") (name fb:en.potassium_chloride "Potassium chloride") (name fb:en.sodium_chloride "Sodium chloride") (name fb:m.0hqywp9 "Pseudoephedrine hydrochloride") (name fb:m.0hqxkk4 "Chlorcyclizine hydrochloride") (name fb:m.0j4j6m7 "Histamine dihydrochloride") (name fb:m.0hqxwq9 "Cyclizine hydrochloride") (name fb:m.0hqw5fn "Aluminum zirconium trichlorohydrex gly") (name fb:en.tubocurarine "Tubocurarine chloride") (name fb:en.benzethonium_chloride "Benzethonium chloride"))) (type fb:medicine.drug_ingredient) What is sodium chloride? Benzethonium chloride -2.736 formula (and (fb:type.object.type fb:common.topic) (!fb:medicine.drug_ingredient.more_specific_ingredient fb:en.chloride_ion))) (value (list (name fb:m.0hqypfx "Phenylephrine hydrochloride") (name fb:en.potassium_chloride "Potassium chloride") (name fb:en.sodium_chloride "Sodium chloride") (name fb:m.0hqywp9 "Pseudoephedrine hydrochloride") (name fb:m.0hqxkk4 "Chlorcyclizine hydrochloride") (name fb:m.0j4j6m7 "Histamine dihydrochloride") (name fb:m.0hqxwq9 "Cyclizine hydrochloride") (name fb:m.0hqw5fn "Aluminum zirconium trichlorohydrex gly") (name fb:en.tubocurarine "Tubocurarine chloride") (name fb:en.benzethonium_chloride "Benzethonium chloride"))) (type fb:medicine.drug_ingredient) What continent is Bolivia on? South America 1.275 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:location.continent) (!fb:location.location.containedby fb:en.bolivia)))) (value (list (name fb:en.south_america "South America"))) (type fb:location.continent) Which British teams has Manchester United played? Manchester City F.C. -9.325 formula (!fb:sports.sports_team_location.teams fb:en.manchester_united_kingdom)) (value (list (name fb:en.manchester_city_fc "Manchester City F.C."))) (type fb:sports.sports_team) How did Adolf Hitler die? Vegetarian food -2.025 formula (!fb:food.diet_follower.follows_diet fb:en.adolf_hitler)) (value (list (name fb:en.vegetarian "Vegetarian food"))) (type fb:food.diet) What movies did Meg Ryan star in? Prelude to a Kiss 0.559 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.meg_ryan)))) (value (list (name fb:m.03yfc89 "Prelude to a Kiss") (name fb:en.when_harry_met_sally "When Harry Met Sally...") (name fb:en.promised_land_1987 "Promised Land") (name fb:en.searching_for_debra_winger "Searching for Debra Winger") (name fb:m.03qfq78 "Serious Moonlight") (name fb:en.sleepless_in_seattle "Sleepless in Seattle") (name fb:en.youve_got_mail "You've Got Mail") (name fb:en.joe_versus_the_volcano "Joe Versus the Volcano") (name fb:en.the_doors_1991 "The Doors") (name fb:en.the_presidio "The Presidio"))) (type fb:film.film) What movies did Meg Ryan star in? When Harry Met Sally... 0.559 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.meg_ryan)))) (value (list (name fb:m.03yfc89 "Prelude to a Kiss") (name fb:en.when_harry_met_sally "When Harry Met Sally...") (name fb:en.promised_land_1987 "Promised Land") (name fb:en.searching_for_debra_winger "Searching for Debra Winger") (name fb:m.03qfq78 "Serious Moonlight") (name fb:en.sleepless_in_seattle "Sleepless in Seattle") (name fb:en.youve_got_mail "You've Got Mail") (name fb:en.joe_versus_the_volcano "Joe Versus the Volcano") (name fb:en.the_doors_1991 "The Doors") (name fb:en.the_presidio "The Presidio"))) (type fb:film.film) What movies did Meg Ryan star in? Promised Land 0.559 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.meg_ryan)))) (value (list (name fb:m.03yfc89 "Prelude to a Kiss") (name fb:en.when_harry_met_sally "When Harry Met Sally...") (name fb:en.promised_land_1987 "Promised Land") (name fb:en.searching_for_debra_winger "Searching for Debra Winger") (name fb:m.03qfq78 "Serious Moonlight") (name fb:en.sleepless_in_seattle "Sleepless in Seattle") (name fb:en.youve_got_mail "You've Got Mail") (name fb:en.joe_versus_the_volcano "Joe Versus the Volcano") (name fb:en.the_doors_1991 "The Doors") (name fb:en.the_presidio "The Presidio"))) (type fb:film.film) What movies did Meg Ryan star in? Searching for Debra Winger 0.559 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.meg_ryan)))) (value (list (name fb:m.03yfc89 "Prelude to a Kiss") (name fb:en.when_harry_met_sally "When Harry Met Sally...") (name fb:en.promised_land_1987 "Promised Land") (name fb:en.searching_for_debra_winger "Searching for Debra Winger") (name fb:m.03qfq78 "Serious Moonlight") (name fb:en.sleepless_in_seattle "Sleepless in Seattle") (name fb:en.youve_got_mail "You've Got Mail") (name fb:en.joe_versus_the_volcano "Joe Versus the Volcano") (name fb:en.the_doors_1991 "The Doors") (name fb:en.the_presidio "The Presidio"))) (type fb:film.film) What movies did Meg Ryan star in? Serious Moonlight 0.559 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.meg_ryan)))) (value (list (name fb:m.03yfc89 "Prelude to a Kiss") (name fb:en.when_harry_met_sally "When Harry Met Sally...") (name fb:en.promised_land_1987 "Promised Land") (name fb:en.searching_for_debra_winger "Searching for Debra Winger") (name fb:m.03qfq78 "Serious Moonlight") (name fb:en.sleepless_in_seattle "Sleepless in Seattle") (name fb:en.youve_got_mail "You've Got Mail") (name fb:en.joe_versus_the_volcano "Joe Versus the Volcano") (name fb:en.the_doors_1991 "The Doors") (name fb:en.the_presidio "The Presidio"))) (type fb:film.film) What movies did Meg Ryan star in? Sleepless in Seattle 0.559 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.meg_ryan)))) (value (list (name fb:m.03yfc89 "Prelude to a Kiss") (name fb:en.when_harry_met_sally "When Harry Met Sally...") (name fb:en.promised_land_1987 "Promised Land") (name fb:en.searching_for_debra_winger "Searching for Debra Winger") (name fb:m.03qfq78 "Serious Moonlight") (name fb:en.sleepless_in_seattle "Sleepless in Seattle") (name fb:en.youve_got_mail "You've Got Mail") (name fb:en.joe_versus_the_volcano "Joe Versus the Volcano") (name fb:en.the_doors_1991 "The Doors") (name fb:en.the_presidio "The Presidio"))) (type fb:film.film) What movies did Meg Ryan star in? You've Got Mail 0.559 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.meg_ryan)))) (value (list (name fb:m.03yfc89 "Prelude to a Kiss") (name fb:en.when_harry_met_sally "When Harry Met Sally...") (name fb:en.promised_land_1987 "Promised Land") (name fb:en.searching_for_debra_winger "Searching for Debra Winger") (name fb:m.03qfq78 "Serious Moonlight") (name fb:en.sleepless_in_seattle "Sleepless in Seattle") (name fb:en.youve_got_mail "You've Got Mail") (name fb:en.joe_versus_the_volcano "Joe Versus the Volcano") (name fb:en.the_doors_1991 "The Doors") (name fb:en.the_presidio "The Presidio"))) (type fb:film.film) What movies did Meg Ryan star in? Joe Versus the Volcano 0.559 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.meg_ryan)))) (value (list (name fb:m.03yfc89 "Prelude to a Kiss") (name fb:en.when_harry_met_sally "When Harry Met Sally...") (name fb:en.promised_land_1987 "Promised Land") (name fb:en.searching_for_debra_winger "Searching for Debra Winger") (name fb:m.03qfq78 "Serious Moonlight") (name fb:en.sleepless_in_seattle "Sleepless in Seattle") (name fb:en.youve_got_mail "You've Got Mail") (name fb:en.joe_versus_the_volcano "Joe Versus the Volcano") (name fb:en.the_doors_1991 "The Doors") (name fb:en.the_presidio "The Presidio"))) (type fb:film.film) What movies did Meg Ryan star in? The Doors 0.559 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.meg_ryan)))) (value (list (name fb:m.03yfc89 "Prelude to a Kiss") (name fb:en.when_harry_met_sally "When Harry Met Sally...") (name fb:en.promised_land_1987 "Promised Land") (name fb:en.searching_for_debra_winger "Searching for Debra Winger") (name fb:m.03qfq78 "Serious Moonlight") (name fb:en.sleepless_in_seattle "Sleepless in Seattle") (name fb:en.youve_got_mail "You've Got Mail") (name fb:en.joe_versus_the_volcano "Joe Versus the Volcano") (name fb:en.the_doors_1991 "The Doors") (name fb:en.the_presidio "The Presidio"))) (type fb:film.film) What movies did Meg Ryan star in? The Presidio 0.559 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.meg_ryan)))) (value (list (name fb:m.03yfc89 "Prelude to a Kiss") (name fb:en.when_harry_met_sally "When Harry Met Sally...") (name fb:en.promised_land_1987 "Promised Land") (name fb:en.searching_for_debra_winger "Searching for Debra Winger") (name fb:m.03qfq78 "Serious Moonlight") (name fb:en.sleepless_in_seattle "Sleepless in Seattle") (name fb:en.youve_got_mail "You've Got Mail") (name fb:en.joe_versus_the_volcano "Joe Versus the Volcano") (name fb:en.the_doors_1991 "The Doors") (name fb:en.the_presidio "The Presidio"))) (type fb:film.film) Who was the founder of Habitat for Humanity? Triangle Fraternity -3.693 formula (and (fb:type.object.type fb:common.topic) (fb:education.fraternity_sorority.official_charity fb:en.habitat_for_humanity_international))) (value (list (name fb:en.triangle_fraternity "Triangle Fraternity") (name fb:en.alpha_delta_gamma "Alpha Delta Gamma") (name fb:en.alpha_sigma_tau "Alpha Sigma Tau"))) (type fb:education.fraternity_sorority) Who was the founder of Habitat for Humanity? Alpha Delta Gamma -3.693 formula (and (fb:type.object.type fb:common.topic) (fb:education.fraternity_sorority.official_charity fb:en.habitat_for_humanity_international))) (value (list (name fb:en.triangle_fraternity "Triangle Fraternity") (name fb:en.alpha_delta_gamma "Alpha Delta Gamma") (name fb:en.alpha_sigma_tau "Alpha Sigma Tau"))) (type fb:education.fraternity_sorority) Who was the founder of Habitat for Humanity? Alpha Sigma Tau -3.693 formula (and (fb:type.object.type fb:common.topic) (fb:education.fraternity_sorority.official_charity fb:en.habitat_for_humanity_international))) (value (list (name fb:en.triangle_fraternity "Triangle Fraternity") (name fb:en.alpha_delta_gamma "Alpha Delta Gamma") (name fb:en.alpha_sigma_tau "Alpha Sigma Tau"))) (type fb:education.fraternity_sorority) Who won the 2004 World Series? For episode LA Dodgers vs. Oakland Athletics -2.483 formula ((lambda x (!fb:award.award_honor.notes_description (!fb:award.award_winning_work.awards_won (var x)))) fb:m.07cg6yj)) (value (list (string "For episode LA Dodgers vs. Oakland Athletics") (string "For episode New York Mets vs. Boston Red Sox"))) (type fb:type.text) Who won the 2004 World Series? For episode New York Mets vs. Boston Red Sox -2.483 formula ((lambda x (!fb:award.award_honor.notes_description (!fb:award.award_winning_work.awards_won (var x)))) fb:m.07cg6yj)) (value (list (string "For episode LA Dodgers vs. Oakland Athletics") (string "For episode New York Mets vs. Boston Red Sox"))) (type fb:type.text) What are pomegranates? Everything Is Alive -5.546 formula (and (fb:type.object.type fb:common.topic) (fb:music.album.artist fb:en.pomegranates))) (value (list (name fb:m.0ft3z9x "Everything Is Alive") (name fb:m.0fdxf6_ "Everybody Come Outside!") (name fb:m.0sp_1rn Heaven) (name fb:m.0h3pp1j "One of Us") (name fb:m.0fvcpb3 "Two Eyes"))) (type fb:music.album) What are pomegranates? Everybody Come Outside! -5.546 formula (and (fb:type.object.type fb:common.topic) (fb:music.album.artist fb:en.pomegranates))) (value (list (name fb:m.0ft3z9x "Everything Is Alive") (name fb:m.0fdxf6_ "Everybody Come Outside!") (name fb:m.0sp_1rn Heaven) (name fb:m.0h3pp1j "One of Us") (name fb:m.0fvcpb3 "Two Eyes"))) (type fb:music.album) What are pomegranates? One of Us -5.546 formula (and (fb:type.object.type fb:common.topic) (fb:music.album.artist fb:en.pomegranates))) (value (list (name fb:m.0ft3z9x "Everything Is Alive") (name fb:m.0fdxf6_ "Everybody Come Outside!") (name fb:m.0sp_1rn Heaven) (name fb:m.0h3pp1j "One of Us") (name fb:m.0fvcpb3 "Two Eyes"))) (type fb:music.album) What are pomegranates? Two Eyes -5.546 formula (and (fb:type.object.type fb:common.topic) (fb:music.album.artist fb:en.pomegranates))) (value (list (name fb:m.0ft3z9x "Everything Is Alive") (name fb:m.0fdxf6_ "Everybody Come Outside!") (name fb:m.0sp_1rn Heaven) (name fb:m.0h3pp1j "One of Us") (name fb:m.0fvcpb3 "Two Eyes"))) (type fb:music.album) How many events are part of the LPGA tour? 1999 Tour de France 1.465 formula (and (fb:type.object.type fb:time.event) (fb:time.event.instance_of_recurring_event fb:en.tour_de_france))) (value (list (name fb:en.1999_tour_de_france "1999 Tour de France") (name fb:en.1986_tour_de_france "1986 Tour de France") (name fb:en.2008_tour_de_france "2008 Tour de France") (name fb:en.2009_tour_de_france "2009 Tour de France") (name fb:en.2011_tour_de_france "2011 Tour de France") (name fb:m.0ch500q "2012 Tour de France") (name fb:en.2003_tour_de_france "2003 Tour de France") (name fb:en.2004_tour_de_france "2004 Tour de France") (name fb:en.2002_tour_de_france "2002 Tour de France") (name fb:en.2010_tour_de_france "2010 Tour de France"))) (type fb:time.event) How many events are part of the LPGA tour? 1986 Tour de France 1.465 formula (and (fb:type.object.type fb:time.event) (fb:time.event.instance_of_recurring_event fb:en.tour_de_france))) (value (list (name fb:en.1999_tour_de_france "1999 Tour de France") (name fb:en.1986_tour_de_france "1986 Tour de France") (name fb:en.2008_tour_de_france "2008 Tour de France") (name fb:en.2009_tour_de_france "2009 Tour de France") (name fb:en.2011_tour_de_france "2011 Tour de France") (name fb:m.0ch500q "2012 Tour de France") (name fb:en.2003_tour_de_france "2003 Tour de France") (name fb:en.2004_tour_de_france "2004 Tour de France") (name fb:en.2002_tour_de_france "2002 Tour de France") (name fb:en.2010_tour_de_france "2010 Tour de France"))) (type fb:time.event) How many events are part of the LPGA tour? 2008 Tour de France 1.465 formula (and (fb:type.object.type fb:time.event) (fb:time.event.instance_of_recurring_event fb:en.tour_de_france))) (value (list (name fb:en.1999_tour_de_france "1999 Tour de France") (name fb:en.1986_tour_de_france "1986 Tour de France") (name fb:en.2008_tour_de_france "2008 Tour de France") (name fb:en.2009_tour_de_france "2009 Tour de France") (name fb:en.2011_tour_de_france "2011 Tour de France") (name fb:m.0ch500q "2012 Tour de France") (name fb:en.2003_tour_de_france "2003 Tour de France") (name fb:en.2004_tour_de_france "2004 Tour de France") (name fb:en.2002_tour_de_france "2002 Tour de France") (name fb:en.2010_tour_de_france "2010 Tour de France"))) (type fb:time.event) How many events are part of the LPGA tour? 2009 Tour de France 1.465 formula (and (fb:type.object.type fb:time.event) (fb:time.event.instance_of_recurring_event fb:en.tour_de_france))) (value (list (name fb:en.1999_tour_de_france "1999 Tour de France") (name fb:en.1986_tour_de_france "1986 Tour de France") (name fb:en.2008_tour_de_france "2008 Tour de France") (name fb:en.2009_tour_de_france "2009 Tour de France") (name fb:en.2011_tour_de_france "2011 Tour de France") (name fb:m.0ch500q "2012 Tour de France") (name fb:en.2003_tour_de_france "2003 Tour de France") (name fb:en.2004_tour_de_france "2004 Tour de France") (name fb:en.2002_tour_de_france "2002 Tour de France") (name fb:en.2010_tour_de_france "2010 Tour de France"))) (type fb:time.event) How many events are part of the LPGA tour? 2011 Tour de France 1.465 formula (and (fb:type.object.type fb:time.event) (fb:time.event.instance_of_recurring_event fb:en.tour_de_france))) (value (list (name fb:en.1999_tour_de_france "1999 Tour de France") (name fb:en.1986_tour_de_france "1986 Tour de France") (name fb:en.2008_tour_de_france "2008 Tour de France") (name fb:en.2009_tour_de_france "2009 Tour de France") (name fb:en.2011_tour_de_france "2011 Tour de France") (name fb:m.0ch500q "2012 Tour de France") (name fb:en.2003_tour_de_france "2003 Tour de France") (name fb:en.2004_tour_de_france "2004 Tour de France") (name fb:en.2002_tour_de_france "2002 Tour de France") (name fb:en.2010_tour_de_france "2010 Tour de France"))) (type fb:time.event) How many events are part of the LPGA tour? 2012 Tour de France 1.465 formula (and (fb:type.object.type fb:time.event) (fb:time.event.instance_of_recurring_event fb:en.tour_de_france))) (value (list (name fb:en.1999_tour_de_france "1999 Tour de France") (name fb:en.1986_tour_de_france "1986 Tour de France") (name fb:en.2008_tour_de_france "2008 Tour de France") (name fb:en.2009_tour_de_france "2009 Tour de France") (name fb:en.2011_tour_de_france "2011 Tour de France") (name fb:m.0ch500q "2012 Tour de France") (name fb:en.2003_tour_de_france "2003 Tour de France") (name fb:en.2004_tour_de_france "2004 Tour de France") (name fb:en.2002_tour_de_france "2002 Tour de France") (name fb:en.2010_tour_de_france "2010 Tour de France"))) (type fb:time.event) How many events are part of the LPGA tour? 2003 Tour de France 1.465 formula (and (fb:type.object.type fb:time.event) (fb:time.event.instance_of_recurring_event fb:en.tour_de_france))) (value (list (name fb:en.1999_tour_de_france "1999 Tour de France") (name fb:en.1986_tour_de_france "1986 Tour de France") (name fb:en.2008_tour_de_france "2008 Tour de France") (name fb:en.2009_tour_de_france "2009 Tour de France") (name fb:en.2011_tour_de_france "2011 Tour de France") (name fb:m.0ch500q "2012 Tour de France") (name fb:en.2003_tour_de_france "2003 Tour de France") (name fb:en.2004_tour_de_france "2004 Tour de France") (name fb:en.2002_tour_de_france "2002 Tour de France") (name fb:en.2010_tour_de_france "2010 Tour de France"))) (type fb:time.event) How many events are part of the LPGA tour? 2004 Tour de France 1.465 formula (and (fb:type.object.type fb:time.event) (fb:time.event.instance_of_recurring_event fb:en.tour_de_france))) (value (list (name fb:en.1999_tour_de_france "1999 Tour de France") (name fb:en.1986_tour_de_france "1986 Tour de France") (name fb:en.2008_tour_de_france "2008 Tour de France") (name fb:en.2009_tour_de_france "2009 Tour de France") (name fb:en.2011_tour_de_france "2011 Tour de France") (name fb:m.0ch500q "2012 Tour de France") (name fb:en.2003_tour_de_france "2003 Tour de France") (name fb:en.2004_tour_de_france "2004 Tour de France") (name fb:en.2002_tour_de_france "2002 Tour de France") (name fb:en.2010_tour_de_france "2010 Tour de France"))) (type fb:time.event) How many events are part of the LPGA tour? 2002 Tour de France 1.465 formula (and (fb:type.object.type fb:time.event) (fb:time.event.instance_of_recurring_event fb:en.tour_de_france))) (value (list (name fb:en.1999_tour_de_france "1999 Tour de France") (name fb:en.1986_tour_de_france "1986 Tour de France") (name fb:en.2008_tour_de_france "2008 Tour de France") (name fb:en.2009_tour_de_france "2009 Tour de France") (name fb:en.2011_tour_de_france "2011 Tour de France") (name fb:m.0ch500q "2012 Tour de France") (name fb:en.2003_tour_de_france "2003 Tour de France") (name fb:en.2004_tour_de_france "2004 Tour de France") (name fb:en.2002_tour_de_france "2002 Tour de France") (name fb:en.2010_tour_de_france "2010 Tour de France"))) (type fb:time.event) How many events are part of the LPGA tour? 2010 Tour de France 1.465 formula (and (fb:type.object.type fb:time.event) (fb:time.event.instance_of_recurring_event fb:en.tour_de_france))) (value (list (name fb:en.1999_tour_de_france "1999 Tour de France") (name fb:en.1986_tour_de_france "1986 Tour de France") (name fb:en.2008_tour_de_france "2008 Tour de France") (name fb:en.2009_tour_de_france "2009 Tour de France") (name fb:en.2011_tour_de_france "2011 Tour de France") (name fb:m.0ch500q "2012 Tour de France") (name fb:en.2003_tour_de_france "2003 Tour de France") (name fb:en.2004_tour_de_france "2004 Tour de France") (name fb:en.2002_tour_de_france "2002 Tour de France") (name fb:en.2010_tour_de_france "2010 Tour de France"))) (type fb:time.event) What was Sammy Sosa's team? Chicago White Sox 0.426 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:baseball.batting_statistics.team (!fb:baseball.baseball_player.batting_stats (var x)))) fb:en.sammy_sosa))) (value (list (name fb:en.chicago_white_sox "Chicago White Sox") (name fb:en.baltimore_orioles "Baltimore Orioles") (name fb:en.chicago_cubs "Chicago Cubs") (name fb:en.texas_rangers "Texas Rangers"))) (type fb:baseball.baseball_team) What was Sammy Sosa's team? Baltimore Orioles 0.426 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:baseball.batting_statistics.team (!fb:baseball.baseball_player.batting_stats (var x)))) fb:en.sammy_sosa))) (value (list (name fb:en.chicago_white_sox "Chicago White Sox") (name fb:en.baltimore_orioles "Baltimore Orioles") (name fb:en.chicago_cubs "Chicago Cubs") (name fb:en.texas_rangers "Texas Rangers"))) (type fb:baseball.baseball_team) What was Sammy Sosa's team? Chicago Cubs 0.426 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:baseball.batting_statistics.team (!fb:baseball.baseball_player.batting_stats (var x)))) fb:en.sammy_sosa))) (value (list (name fb:en.chicago_white_sox "Chicago White Sox") (name fb:en.baltimore_orioles "Baltimore Orioles") (name fb:en.chicago_cubs "Chicago Cubs") (name fb:en.texas_rangers "Texas Rangers"))) (type fb:baseball.baseball_team) What was Sammy Sosa's team? Texas Rangers 0.426 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:baseball.batting_statistics.team (!fb:baseball.baseball_player.batting_stats (var x)))) fb:en.sammy_sosa))) (value (list (name fb:en.chicago_white_sox "Chicago White Sox") (name fb:en.baltimore_orioles "Baltimore Orioles") (name fb:en.chicago_cubs "Chicago Cubs") (name fb:en.texas_rangers "Texas Rangers"))) (type fb:baseball.baseball_team) How many times a day do observant Muslims pray? Mortality rate -0.757 formula (fb:base.birdinfo.population_rate.measurement_time fb:en.day)) (value (list (name fb:en.mortality_rate "Mortality rate") (name fb:en.nesting_success "Nesting success"))) (type fb:base.birdinfo.population_rate) How many times a day do observant Muslims pray? Nesting success -0.757 formula (fb:base.birdinfo.population_rate.measurement_time fb:en.day)) (value (list (name fb:en.mortality_rate "Mortality rate") (name fb:en.nesting_success "Nesting success"))) (type fb:base.birdinfo.population_rate) What city is Lake Washington by? North Bend 0.428 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:location.citytown) (!fb:location.location.contains fb:en.washington)))) (value (list (name fb:en.seattle Seattle) (name fb:en.aberdeen_washington Aberdeen) (name fb:en.kirkland Kirkland) (name fb:en.yakima Yakima) (name fb:en.north_bend_washington "North Bend") (name fb:en.vancouver Vancouver) (name fb:en.puyallup Puyallup) (name fb:en.curlew_washington Curlew) (name fb:en.spokane Spokane) (name fb:m.04c4lpb Bissel))) (type fb:location.citytown) What UN organization hosts internships under the Fulbright Program? J. William Fulbright Prize for International Understanding -5.829 formula (and (fb:type.object.type fb:common.topic) (fb:award.award_category.presenting_organization fb:en.fulbright_program))) (value (list (name fb:m.0j2m65g "J. William Fulbright Prize for International Understanding") (name fb:en.fulbright_award "Fulbright Award"))) (type fb:award.award_category) What UN organization hosts internships under the Fulbright Program? Fulbright Award -5.829 formula (and (fb:type.object.type fb:common.topic) (fb:award.award_category.presenting_organization fb:en.fulbright_program))) (value (list (name fb:m.0j2m65g "J. William Fulbright Prize for International Understanding") (name fb:en.fulbright_award "Fulbright Award"))) (type fb:award.award_category) Which film won three awards at the festival? Satellite Award for Best Film Musical or Comedy -5.018 formula (!fb:award.award_discipline.awards_in_this_discipline fb:m.02vxn)) (value (list (name fb:en.satellite_award_for_best_film_musical_or_comedy "Satellite Award for Best Film ��� Musical or Comedy") (name fb:en.golden_globe_award_for_best_motion_picture_-_musical_or_comedy "Golden Globe Award for Best Film - Musical or Comedy") (name fb:m.0775yqp "Japan Academy Prize for Outstanding Achievement in Music") (name fb:en.golden_globe_award_for_best_supporting_actor_-_motion_picture "Golden Globe Award for Best Supporting Actor - Film") (name fb:en.golden_globe_award_for_best_supporting_actress_-_motion_picture "Golden Globe Award for Best Supporting Actress - Film") (name fb:en.golden_globe_award_for_best_actress_-_motion_picture_drama "Golden Globe Award for Best Actress - Drama Film") (name fb:en.golden_globe_award_for_best_motion_picture_-_drama "Golden Globe Award for Best Drama Film") (name fb:en.david_di_donatello_for_best_supporting_actor "David di Donatello for Best Supporting Actor") (name fb:en.satellite_award_for_best_foreign_language_film "Satellite Award for Best Foreign Language Film") (name fb:m.09dyj_r "DGA Award for Outstanding Directorial Achievement in Feature Film"))) (type fb:award.award_category) Which film won three awards at the festival? Golden Globe Award for Best Film - Musical or Comedy -5.018 formula (!fb:award.award_discipline.awards_in_this_discipline fb:m.02vxn)) (value (list (name fb:en.satellite_award_for_best_film_musical_or_comedy "Satellite Award for Best Film ��� Musical or Comedy") (name fb:en.golden_globe_award_for_best_motion_picture_-_musical_or_comedy "Golden Globe Award for Best Film - Musical or Comedy") (name fb:m.0775yqp "Japan Academy Prize for Outstanding Achievement in Music") (name fb:en.golden_globe_award_for_best_supporting_actor_-_motion_picture "Golden Globe Award for Best Supporting Actor - Film") (name fb:en.golden_globe_award_for_best_supporting_actress_-_motion_picture "Golden Globe Award for Best Supporting Actress - Film") (name fb:en.golden_globe_award_for_best_actress_-_motion_picture_drama "Golden Globe Award for Best Actress - Drama Film") (name fb:en.golden_globe_award_for_best_motion_picture_-_drama "Golden Globe Award for Best Drama Film") (name fb:en.david_di_donatello_for_best_supporting_actor "David di Donatello for Best Supporting Actor") (name fb:en.satellite_award_for_best_foreign_language_film "Satellite Award for Best Foreign Language Film") (name fb:m.09dyj_r "DGA Award for Outstanding Directorial Achievement in Feature Film"))) (type fb:award.award_category) Which film won three awards at the festival? Japan Academy Prize for Outstanding Achievement in Music -5.018 formula (!fb:award.award_discipline.awards_in_this_discipline fb:m.02vxn)) (value (list (name fb:en.satellite_award_for_best_film_musical_or_comedy "Satellite Award for Best Film ��� Musical or Comedy") (name fb:en.golden_globe_award_for_best_motion_picture_-_musical_or_comedy "Golden Globe Award for Best Film - Musical or Comedy") (name fb:m.0775yqp "Japan Academy Prize for Outstanding Achievement in Music") (name fb:en.golden_globe_award_for_best_supporting_actor_-_motion_picture "Golden Globe Award for Best Supporting Actor - Film") (name fb:en.golden_globe_award_for_best_supporting_actress_-_motion_picture "Golden Globe Award for Best Supporting Actress - Film") (name fb:en.golden_globe_award_for_best_actress_-_motion_picture_drama "Golden Globe Award for Best Actress - Drama Film") (name fb:en.golden_globe_award_for_best_motion_picture_-_drama "Golden Globe Award for Best Drama Film") (name fb:en.david_di_donatello_for_best_supporting_actor "David di Donatello for Best Supporting Actor") (name fb:en.satellite_award_for_best_foreign_language_film "Satellite Award for Best Foreign Language Film") (name fb:m.09dyj_r "DGA Award for Outstanding Directorial Achievement in Feature Film"))) (type fb:award.award_category) Which film won three awards at the festival? Golden Globe Award for Best Supporting Actor - Film -5.018 formula (!fb:award.award_discipline.awards_in_this_discipline fb:m.02vxn)) (value (list (name fb:en.satellite_award_for_best_film_musical_or_comedy "Satellite Award for Best Film ��� Musical or Comedy") (name fb:en.golden_globe_award_for_best_motion_picture_-_musical_or_comedy "Golden Globe Award for Best Film - Musical or Comedy") (name fb:m.0775yqp "Japan Academy Prize for Outstanding Achievement in Music") (name fb:en.golden_globe_award_for_best_supporting_actor_-_motion_picture "Golden Globe Award for Best Supporting Actor - Film") (name fb:en.golden_globe_award_for_best_supporting_actress_-_motion_picture "Golden Globe Award for Best Supporting Actress - Film") (name fb:en.golden_globe_award_for_best_actress_-_motion_picture_drama "Golden Globe Award for Best Actress - Drama Film") (name fb:en.golden_globe_award_for_best_motion_picture_-_drama "Golden Globe Award for Best Drama Film") (name fb:en.david_di_donatello_for_best_supporting_actor "David di Donatello for Best Supporting Actor") (name fb:en.satellite_award_for_best_foreign_language_film "Satellite Award for Best Foreign Language Film") (name fb:m.09dyj_r "DGA Award for Outstanding Directorial Achievement in Feature Film"))) (type fb:award.award_category) Which film won three awards at the festival? Golden Globe Award for Best Supporting Actress - Film -5.018 formula (!fb:award.award_discipline.awards_in_this_discipline fb:m.02vxn)) (value (list (name fb:en.satellite_award_for_best_film_musical_or_comedy "Satellite Award for Best Film ��� Musical or Comedy") (name fb:en.golden_globe_award_for_best_motion_picture_-_musical_or_comedy "Golden Globe Award for Best Film - Musical or Comedy") (name fb:m.0775yqp "Japan Academy Prize for Outstanding Achievement in Music") (name fb:en.golden_globe_award_for_best_supporting_actor_-_motion_picture "Golden Globe Award for Best Supporting Actor - Film") (name fb:en.golden_globe_award_for_best_supporting_actress_-_motion_picture "Golden Globe Award for Best Supporting Actress - Film") (name fb:en.golden_globe_award_for_best_actress_-_motion_picture_drama "Golden Globe Award for Best Actress - Drama Film") (name fb:en.golden_globe_award_for_best_motion_picture_-_drama "Golden Globe Award for Best Drama Film") (name fb:en.david_di_donatello_for_best_supporting_actor "David di Donatello for Best Supporting Actor") (name fb:en.satellite_award_for_best_foreign_language_film "Satellite Award for Best Foreign Language Film") (name fb:m.09dyj_r "DGA Award for Outstanding Directorial Achievement in Feature Film"))) (type fb:award.award_category) Which film won three awards at the festival? Golden Globe Award for Best Actress - Drama Film -5.018 formula (!fb:award.award_discipline.awards_in_this_discipline fb:m.02vxn)) (value (list (name fb:en.satellite_award_for_best_film_musical_or_comedy "Satellite Award for Best Film ��� Musical or Comedy") (name fb:en.golden_globe_award_for_best_motion_picture_-_musical_or_comedy "Golden Globe Award for Best Film - Musical or Comedy") (name fb:m.0775yqp "Japan Academy Prize for Outstanding Achievement in Music") (name fb:en.golden_globe_award_for_best_supporting_actor_-_motion_picture "Golden Globe Award for Best Supporting Actor - Film") (name fb:en.golden_globe_award_for_best_supporting_actress_-_motion_picture "Golden Globe Award for Best Supporting Actress - Film") (name fb:en.golden_globe_award_for_best_actress_-_motion_picture_drama "Golden Globe Award for Best Actress - Drama Film") (name fb:en.golden_globe_award_for_best_motion_picture_-_drama "Golden Globe Award for Best Drama Film") (name fb:en.david_di_donatello_for_best_supporting_actor "David di Donatello for Best Supporting Actor") (name fb:en.satellite_award_for_best_foreign_language_film "Satellite Award for Best Foreign Language Film") (name fb:m.09dyj_r "DGA Award for Outstanding Directorial Achievement in Feature Film"))) (type fb:award.award_category) Which film won three awards at the festival? Golden Globe Award for Best Drama Film -5.018 formula (!fb:award.award_discipline.awards_in_this_discipline fb:m.02vxn)) (value (list (name fb:en.satellite_award_for_best_film_musical_or_comedy "Satellite Award for Best Film ��� Musical or Comedy") (name fb:en.golden_globe_award_for_best_motion_picture_-_musical_or_comedy "Golden Globe Award for Best Film - Musical or Comedy") (name fb:m.0775yqp "Japan Academy Prize for Outstanding Achievement in Music") (name fb:en.golden_globe_award_for_best_supporting_actor_-_motion_picture "Golden Globe Award for Best Supporting Actor - Film") (name fb:en.golden_globe_award_for_best_supporting_actress_-_motion_picture "Golden Globe Award for Best Supporting Actress - Film") (name fb:en.golden_globe_award_for_best_actress_-_motion_picture_drama "Golden Globe Award for Best Actress - Drama Film") (name fb:en.golden_globe_award_for_best_motion_picture_-_drama "Golden Globe Award for Best Drama Film") (name fb:en.david_di_donatello_for_best_supporting_actor "David di Donatello for Best Supporting Actor") (name fb:en.satellite_award_for_best_foreign_language_film "Satellite Award for Best Foreign Language Film") (name fb:m.09dyj_r "DGA Award for Outstanding Directorial Achievement in Feature Film"))) (type fb:award.award_category) Which film won three awards at the festival? David di Donatello for Best Supporting Actor -5.018 formula (!fb:award.award_discipline.awards_in_this_discipline fb:m.02vxn)) (value (list (name fb:en.satellite_award_for_best_film_musical_or_comedy "Satellite Award for Best Film ��� Musical or Comedy") (name fb:en.golden_globe_award_for_best_motion_picture_-_musical_or_comedy "Golden Globe Award for Best Film - Musical or Comedy") (name fb:m.0775yqp "Japan Academy Prize for Outstanding Achievement in Music") (name fb:en.golden_globe_award_for_best_supporting_actor_-_motion_picture "Golden Globe Award for Best Supporting Actor - Film") (name fb:en.golden_globe_award_for_best_supporting_actress_-_motion_picture "Golden Globe Award for Best Supporting Actress - Film") (name fb:en.golden_globe_award_for_best_actress_-_motion_picture_drama "Golden Globe Award for Best Actress - Drama Film") (name fb:en.golden_globe_award_for_best_motion_picture_-_drama "Golden Globe Award for Best Drama Film") (name fb:en.david_di_donatello_for_best_supporting_actor "David di Donatello for Best Supporting Actor") (name fb:en.satellite_award_for_best_foreign_language_film "Satellite Award for Best Foreign Language Film") (name fb:m.09dyj_r "DGA Award for Outstanding Directorial Achievement in Feature Film"))) (type fb:award.award_category) Which film won three awards at the festival? Satellite Award for Best Foreign Language Film -5.018 formula (!fb:award.award_discipline.awards_in_this_discipline fb:m.02vxn)) (value (list (name fb:en.satellite_award_for_best_film_musical_or_comedy "Satellite Award for Best Film ��� Musical or Comedy") (name fb:en.golden_globe_award_for_best_motion_picture_-_musical_or_comedy "Golden Globe Award for Best Film - Musical or Comedy") (name fb:m.0775yqp "Japan Academy Prize for Outstanding Achievement in Music") (name fb:en.golden_globe_award_for_best_supporting_actor_-_motion_picture "Golden Globe Award for Best Supporting Actor - Film") (name fb:en.golden_globe_award_for_best_supporting_actress_-_motion_picture "Golden Globe Award for Best Supporting Actress - Film") (name fb:en.golden_globe_award_for_best_actress_-_motion_picture_drama "Golden Globe Award for Best Actress - Drama Film") (name fb:en.golden_globe_award_for_best_motion_picture_-_drama "Golden Globe Award for Best Drama Film") (name fb:en.david_di_donatello_for_best_supporting_actor "David di Donatello for Best Supporting Actor") (name fb:en.satellite_award_for_best_foreign_language_film "Satellite Award for Best Foreign Language Film") (name fb:m.09dyj_r "DGA Award for Outstanding Directorial Achievement in Feature Film"))) (type fb:award.award_category) Which film won three awards at the festival? DGA Award for Outstanding Directorial Achievement in Feature Film -5.018 formula (!fb:award.award_discipline.awards_in_this_discipline fb:m.02vxn)) (value (list (name fb:en.satellite_award_for_best_film_musical_or_comedy "Satellite Award for Best Film ��� Musical or Comedy") (name fb:en.golden_globe_award_for_best_motion_picture_-_musical_or_comedy "Golden Globe Award for Best Film - Musical or Comedy") (name fb:m.0775yqp "Japan Academy Prize for Outstanding Achievement in Music") (name fb:en.golden_globe_award_for_best_supporting_actor_-_motion_picture "Golden Globe Award for Best Supporting Actor - Film") (name fb:en.golden_globe_award_for_best_supporting_actress_-_motion_picture "Golden Globe Award for Best Supporting Actress - Film") (name fb:en.golden_globe_award_for_best_actress_-_motion_picture_drama "Golden Globe Award for Best Actress - Drama Film") (name fb:en.golden_globe_award_for_best_motion_picture_-_drama "Golden Globe Award for Best Drama Film") (name fb:en.david_di_donatello_for_best_supporting_actor "David di Donatello for Best Supporting Actor") (name fb:en.satellite_award_for_best_foreign_language_film "Satellite Award for Best Foreign Language Film") (name fb:m.09dyj_r "DGA Award for Outstanding Directorial Achievement in Feature Film"))) (type fb:award.award_category) Who is Paul Newman married to? Welcome to Freebase -6.068 formula (fb:freebase.freebase_homepage.example_concepts fb:en.paul_newman)) (value (list (name fb:en.welcome_to_freebase "Welcome to Freebase"))) (type fb:freebase.freebase_homepage) What country is Mahmud Ahmadinejad president of? 2010 Nigerian coup d'etat -2.465 formula (and (fb:type.object.type fb:common.topic) (fb:base.culturalevent.event.entity_involved fb:en.president))) (value (list (name fb:en.2010_nigerien_coup_detat "2010 Nigerien coup d'��tat") (name fb:en.may_coup "May Coup") (name fb:en.operation_golden_pheasant "Operation Golden Pheasant"))) (type fb:base.culturalevent.event) What country is Mahmud Ahmadinejad president of? May Coup -2.465 formula (and (fb:type.object.type fb:common.topic) (fb:base.culturalevent.event.entity_involved fb:en.president))) (value (list (name fb:en.2010_nigerien_coup_detat "2010 Nigerien coup d'��tat") (name fb:en.may_coup "May Coup") (name fb:en.operation_golden_pheasant "Operation Golden Pheasant"))) (type fb:base.culturalevent.event) What country is Mahmud Ahmadinejad president of? Operation Golden Pheasant -2.465 formula (and (fb:type.object.type fb:common.topic) (fb:base.culturalevent.event.entity_involved fb:en.president))) (value (list (name fb:en.2010_nigerien_coup_detat "2010 Nigerien coup d'��tat") (name fb:en.may_coup "May Coup") (name fb:en.operation_golden_pheasant "Operation Golden Pheasant"))) (type fb:base.culturalevent.event) Who was Meg Ryan's male lead in Hanging Entertainment Weekly annotation index -4.796 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.meg_ryan)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) Who was Meg Ryan's male lead in Hanging WSJ Speakeasy Index -4.796 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.meg_ryan)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) Who was Meg Ryan's male lead in Hanging Blissful Master Index -4.796 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.meg_ryan)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) Who was Meg Ryan's male lead in Hanging Blissful Celebrities -4.796 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.meg_ryan)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) What breed of horse was used to found the Lipizzaner? Mustang horse -4.573 formula (and (fb:type.object.type fb:common.topic) (fb:biology.animal_breed.breed_of fb:en.domesticated_horse))) (value (list (name fb:en.mustang "Mustang horse") (name fb:en.arabian_horse "Arabian horse") (name fb:en.thoroughbred Thoroughbred) (name fb:en.mongolian_horse "Mongolian horse") (name fb:en.belgian "Belgian horse") (name fb:en.american_quarter_horse "American Quarter Horse") (name fb:en.andalusian_horse "Andalusian horse") (name fb:en.american_saddlebred "American Saddlebred") (name fb:en.peruvian_paso "Peruvian Paso") (name fb:en.akhal-teke Akhal-Teke))) (type fb:biology.animal_breed) What breed of horse was used to found the Lipizzaner? Arabian horse -4.573 formula (and (fb:type.object.type fb:common.topic) (fb:biology.animal_breed.breed_of fb:en.domesticated_horse))) (value (list (name fb:en.mustang "Mustang horse") (name fb:en.arabian_horse "Arabian horse") (name fb:en.thoroughbred Thoroughbred) (name fb:en.mongolian_horse "Mongolian horse") (name fb:en.belgian "Belgian horse") (name fb:en.american_quarter_horse "American Quarter Horse") (name fb:en.andalusian_horse "Andalusian horse") (name fb:en.american_saddlebred "American Saddlebred") (name fb:en.peruvian_paso "Peruvian Paso") (name fb:en.akhal-teke Akhal-Teke))) (type fb:biology.animal_breed) What breed of horse was used to found the Lipizzaner? Mongolian horse -4.573 formula (and (fb:type.object.type fb:common.topic) (fb:biology.animal_breed.breed_of fb:en.domesticated_horse))) (value (list (name fb:en.mustang "Mustang horse") (name fb:en.arabian_horse "Arabian horse") (name fb:en.thoroughbred Thoroughbred) (name fb:en.mongolian_horse "Mongolian horse") (name fb:en.belgian "Belgian horse") (name fb:en.american_quarter_horse "American Quarter Horse") (name fb:en.andalusian_horse "Andalusian horse") (name fb:en.american_saddlebred "American Saddlebred") (name fb:en.peruvian_paso "Peruvian Paso") (name fb:en.akhal-teke Akhal-Teke))) (type fb:biology.animal_breed) What breed of horse was used to found the Lipizzaner? Belgian horse -4.573 formula (and (fb:type.object.type fb:common.topic) (fb:biology.animal_breed.breed_of fb:en.domesticated_horse))) (value (list (name fb:en.mustang "Mustang horse") (name fb:en.arabian_horse "Arabian horse") (name fb:en.thoroughbred Thoroughbred) (name fb:en.mongolian_horse "Mongolian horse") (name fb:en.belgian "Belgian horse") (name fb:en.american_quarter_horse "American Quarter Horse") (name fb:en.andalusian_horse "Andalusian horse") (name fb:en.american_saddlebred "American Saddlebred") (name fb:en.peruvian_paso "Peruvian Paso") (name fb:en.akhal-teke Akhal-Teke))) (type fb:biology.animal_breed) What breed of horse was used to found the Lipizzaner? American Quarter Horse -4.573 formula (and (fb:type.object.type fb:common.topic) (fb:biology.animal_breed.breed_of fb:en.domesticated_horse))) (value (list (name fb:en.mustang "Mustang horse") (name fb:en.arabian_horse "Arabian horse") (name fb:en.thoroughbred Thoroughbred) (name fb:en.mongolian_horse "Mongolian horse") (name fb:en.belgian "Belgian horse") (name fb:en.american_quarter_horse "American Quarter Horse") (name fb:en.andalusian_horse "Andalusian horse") (name fb:en.american_saddlebred "American Saddlebred") (name fb:en.peruvian_paso "Peruvian Paso") (name fb:en.akhal-teke Akhal-Teke))) (type fb:biology.animal_breed) What breed of horse was used to found the Lipizzaner? Andalusian horse -4.573 formula (and (fb:type.object.type fb:common.topic) (fb:biology.animal_breed.breed_of fb:en.domesticated_horse))) (value (list (name fb:en.mustang "Mustang horse") (name fb:en.arabian_horse "Arabian horse") (name fb:en.thoroughbred Thoroughbred) (name fb:en.mongolian_horse "Mongolian horse") (name fb:en.belgian "Belgian horse") (name fb:en.american_quarter_horse "American Quarter Horse") (name fb:en.andalusian_horse "Andalusian horse") (name fb:en.american_saddlebred "American Saddlebred") (name fb:en.peruvian_paso "Peruvian Paso") (name fb:en.akhal-teke Akhal-Teke))) (type fb:biology.animal_breed) What breed of horse was used to found the Lipizzaner? American Saddlebred -4.573 formula (and (fb:type.object.type fb:common.topic) (fb:biology.animal_breed.breed_of fb:en.domesticated_horse))) (value (list (name fb:en.mustang "Mustang horse") (name fb:en.arabian_horse "Arabian horse") (name fb:en.thoroughbred Thoroughbred) (name fb:en.mongolian_horse "Mongolian horse") (name fb:en.belgian "Belgian horse") (name fb:en.american_quarter_horse "American Quarter Horse") (name fb:en.andalusian_horse "Andalusian horse") (name fb:en.american_saddlebred "American Saddlebred") (name fb:en.peruvian_paso "Peruvian Paso") (name fb:en.akhal-teke Akhal-Teke))) (type fb:biology.animal_breed) What breed of horse was used to found the Lipizzaner? Peruvian Paso -4.573 formula (and (fb:type.object.type fb:common.topic) (fb:biology.animal_breed.breed_of fb:en.domesticated_horse))) (value (list (name fb:en.mustang "Mustang horse") (name fb:en.arabian_horse "Arabian horse") (name fb:en.thoroughbred Thoroughbred) (name fb:en.mongolian_horse "Mongolian horse") (name fb:en.belgian "Belgian horse") (name fb:en.american_quarter_horse "American Quarter Horse") (name fb:en.andalusian_horse "Andalusian horse") (name fb:en.american_saddlebred "American Saddlebred") (name fb:en.peruvian_paso "Peruvian Paso") (name fb:en.akhal-teke Akhal-Teke))) (type fb:biology.animal_breed) Where did the Hindenburg disaster occur? Naval Air Engineering Station Lakehurst -4.467 formula (and (fb:type.object.type fb:location.location) (fb:location.location.events fb:en.hindenburg_disaster))) (value (list (name fb:en.naval_air_engineering_station_lakehurst "Naval Air Engineering Station Lakehurst"))) (type fb:location.location) What was Rachel Carson's vocation? Breast cancer -3.598 formula (and (fb:type.object.type fb:common.topic) (fb:people.cause_of_death.people fb:en.rachel_carson))) (value (list (name fb:en.breast_cancer "Breast cancer"))) (type fb:people.cause_of_death) What comedy team was John Cleese part of? Sherlock Holmes -1.983 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.actor (var x)))) fb:en.john_cleese))) (value (list (name fb:en.presenter Presenter) (name fb:en.sherlock_holmes "Sherlock Holmes") (name fb:en.narrator Narrator) (name fb:m.0gy9vf5 "Mr Grime") (name fb:m.0h13g82 "Lyle Finster") (name fb:m.0h13g6k Passer-By) (name fb:m.0h13g64 "Dr. Liam Neesam") (name fb:en.basil_fawlty "Basil Fawlty") (name fb:en.mr_praline "Mr Praline") (name fb:m.0h13g3b Minister))) (type fb:tv.tv_character) What comedy team was John Cleese part of? Mr Grime -1.983 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.actor (var x)))) fb:en.john_cleese))) (value (list (name fb:en.presenter Presenter) (name fb:en.sherlock_holmes "Sherlock Holmes") (name fb:en.narrator Narrator) (name fb:m.0gy9vf5 "Mr Grime") (name fb:m.0h13g82 "Lyle Finster") (name fb:m.0h13g6k Passer-By) (name fb:m.0h13g64 "Dr. Liam Neesam") (name fb:en.basil_fawlty "Basil Fawlty") (name fb:en.mr_praline "Mr Praline") (name fb:m.0h13g3b Minister))) (type fb:tv.tv_character) What comedy team was John Cleese part of? Lyle Finster -1.983 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.actor (var x)))) fb:en.john_cleese))) (value (list (name fb:en.presenter Presenter) (name fb:en.sherlock_holmes "Sherlock Holmes") (name fb:en.narrator Narrator) (name fb:m.0gy9vf5 "Mr Grime") (name fb:m.0h13g82 "Lyle Finster") (name fb:m.0h13g6k Passer-By) (name fb:m.0h13g64 "Dr. Liam Neesam") (name fb:en.basil_fawlty "Basil Fawlty") (name fb:en.mr_praline "Mr Praline") (name fb:m.0h13g3b Minister))) (type fb:tv.tv_character) What comedy team was John Cleese part of? Dr. Liam Neesam -1.983 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.actor (var x)))) fb:en.john_cleese))) (value (list (name fb:en.presenter Presenter) (name fb:en.sherlock_holmes "Sherlock Holmes") (name fb:en.narrator Narrator) (name fb:m.0gy9vf5 "Mr Grime") (name fb:m.0h13g82 "Lyle Finster") (name fb:m.0h13g6k Passer-By) (name fb:m.0h13g64 "Dr. Liam Neesam") (name fb:en.basil_fawlty "Basil Fawlty") (name fb:en.mr_praline "Mr Praline") (name fb:m.0h13g3b Minister))) (type fb:tv.tv_character) What comedy team was John Cleese part of? Basil Fawlty -1.983 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.actor (var x)))) fb:en.john_cleese))) (value (list (name fb:en.presenter Presenter) (name fb:en.sherlock_holmes "Sherlock Holmes") (name fb:en.narrator Narrator) (name fb:m.0gy9vf5 "Mr Grime") (name fb:m.0h13g82 "Lyle Finster") (name fb:m.0h13g6k Passer-By) (name fb:m.0h13g64 "Dr. Liam Neesam") (name fb:en.basil_fawlty "Basil Fawlty") (name fb:en.mr_praline "Mr Praline") (name fb:m.0h13g3b Minister))) (type fb:tv.tv_character) What comedy team was John Cleese part of? Mr Praline -1.983 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.actor (var x)))) fb:en.john_cleese))) (value (list (name fb:en.presenter Presenter) (name fb:en.sherlock_holmes "Sherlock Holmes") (name fb:en.narrator Narrator) (name fb:m.0gy9vf5 "Mr Grime") (name fb:m.0h13g82 "Lyle Finster") (name fb:m.0h13g6k Passer-By) (name fb:m.0h13g64 "Dr. Liam Neesam") (name fb:en.basil_fawlty "Basil Fawlty") (name fb:en.mr_praline "Mr Praline") (name fb:m.0h13g3b Minister))) (type fb:tv.tv_character) How old was Foreman when he first won the heavyweight championship? WBA World Champion -1.897 formula ((lambda x (fb:boxing.boxing_title.champions (fb:boxing.boxing_title_tenure.weight (var x)))) fb:en.heavyweight)) (value (list (name fb:m.0chgh2j "WBA World Champion"))) (type fb:boxing.boxing_title) Which actress co-starred in the most Superman movies with Reeve? Identity Crisis #1 -9.692 formula (!fb:comic_books.comic_book_character.cover_appearances fb:en.superman)) (value (list (name fb:en.identity_crisis_1 "Identity Crisis #1") (name fb:en.the_superman_madman_hullabaloo_3 "The Superman Madman Hullabaloo #3") (name fb:en.the_superman_madman_hullabaloo_2 "The Superman Madman Hullabaloo #2") (name fb:en.the_superman_madman_hullabaloo_1 "The Superman Madman Hullabaloo #1") (name fb:en.secret_origins_vol_1 "Secret Origins, Vol. 1") (name fb:en.batman_612 "Batman #612") (name fb:en.action_comics_1 "Action Comics #1") (name fb:en.superman_batman_47 "Superman/Batman #47") (name fb:en.worlds_finest_comics_3 "World's Finest Comics #3"))) (type fb:comic_books.comic_book_issue) Which actress co-starred in the most Superman movies with Reeve? The Superman Madman Hullabaloo #3 -9.692 formula (!fb:comic_books.comic_book_character.cover_appearances fb:en.superman)) (value (list (name fb:en.identity_crisis_1 "Identity Crisis #1") (name fb:en.the_superman_madman_hullabaloo_3 "The Superman Madman Hullabaloo #3") (name fb:en.the_superman_madman_hullabaloo_2 "The Superman Madman Hullabaloo #2") (name fb:en.the_superman_madman_hullabaloo_1 "The Superman Madman Hullabaloo #1") (name fb:en.secret_origins_vol_1 "Secret Origins, Vol. 1") (name fb:en.batman_612 "Batman #612") (name fb:en.action_comics_1 "Action Comics #1") (name fb:en.superman_batman_47 "Superman/Batman #47") (name fb:en.worlds_finest_comics_3 "World's Finest Comics #3"))) (type fb:comic_books.comic_book_issue) Which actress co-starred in the most Superman movies with Reeve? The Superman Madman Hullabaloo #2 -9.692 formula (!fb:comic_books.comic_book_character.cover_appearances fb:en.superman)) (value (list (name fb:en.identity_crisis_1 "Identity Crisis #1") (name fb:en.the_superman_madman_hullabaloo_3 "The Superman Madman Hullabaloo #3") (name fb:en.the_superman_madman_hullabaloo_2 "The Superman Madman Hullabaloo #2") (name fb:en.the_superman_madman_hullabaloo_1 "The Superman Madman Hullabaloo #1") (name fb:en.secret_origins_vol_1 "Secret Origins, Vol. 1") (name fb:en.batman_612 "Batman #612") (name fb:en.action_comics_1 "Action Comics #1") (name fb:en.superman_batman_47 "Superman/Batman #47") (name fb:en.worlds_finest_comics_3 "World's Finest Comics #3"))) (type fb:comic_books.comic_book_issue) Which actress co-starred in the most Superman movies with Reeve? The Superman Madman Hullabaloo #1 -9.692 formula (!fb:comic_books.comic_book_character.cover_appearances fb:en.superman)) (value (list (name fb:en.identity_crisis_1 "Identity Crisis #1") (name fb:en.the_superman_madman_hullabaloo_3 "The Superman Madman Hullabaloo #3") (name fb:en.the_superman_madman_hullabaloo_2 "The Superman Madman Hullabaloo #2") (name fb:en.the_superman_madman_hullabaloo_1 "The Superman Madman Hullabaloo #1") (name fb:en.secret_origins_vol_1 "Secret Origins, Vol. 1") (name fb:en.batman_612 "Batman #612") (name fb:en.action_comics_1 "Action Comics #1") (name fb:en.superman_batman_47 "Superman/Batman #47") (name fb:en.worlds_finest_comics_3 "World's Finest Comics #3"))) (type fb:comic_books.comic_book_issue) Which actress co-starred in the most Superman movies with Reeve? Secret Origins, Vol. 1 -9.692 formula (!fb:comic_books.comic_book_character.cover_appearances fb:en.superman)) (value (list (name fb:en.identity_crisis_1 "Identity Crisis #1") (name fb:en.the_superman_madman_hullabaloo_3 "The Superman Madman Hullabaloo #3") (name fb:en.the_superman_madman_hullabaloo_2 "The Superman Madman Hullabaloo #2") (name fb:en.the_superman_madman_hullabaloo_1 "The Superman Madman Hullabaloo #1") (name fb:en.secret_origins_vol_1 "Secret Origins, Vol. 1") (name fb:en.batman_612 "Batman #612") (name fb:en.action_comics_1 "Action Comics #1") (name fb:en.superman_batman_47 "Superman/Batman #47") (name fb:en.worlds_finest_comics_3 "World's Finest Comics #3"))) (type fb:comic_books.comic_book_issue) Which actress co-starred in the most Superman movies with Reeve? Batman #612 -9.692 formula (!fb:comic_books.comic_book_character.cover_appearances fb:en.superman)) (value (list (name fb:en.identity_crisis_1 "Identity Crisis #1") (name fb:en.the_superman_madman_hullabaloo_3 "The Superman Madman Hullabaloo #3") (name fb:en.the_superman_madman_hullabaloo_2 "The Superman Madman Hullabaloo #2") (name fb:en.the_superman_madman_hullabaloo_1 "The Superman Madman Hullabaloo #1") (name fb:en.secret_origins_vol_1 "Secret Origins, Vol. 1") (name fb:en.batman_612 "Batman #612") (name fb:en.action_comics_1 "Action Comics #1") (name fb:en.superman_batman_47 "Superman/Batman #47") (name fb:en.worlds_finest_comics_3 "World's Finest Comics #3"))) (type fb:comic_books.comic_book_issue) Which actress co-starred in the most Superman movies with Reeve? Action Comics #1 -9.692 formula (!fb:comic_books.comic_book_character.cover_appearances fb:en.superman)) (value (list (name fb:en.identity_crisis_1 "Identity Crisis #1") (name fb:en.the_superman_madman_hullabaloo_3 "The Superman Madman Hullabaloo #3") (name fb:en.the_superman_madman_hullabaloo_2 "The Superman Madman Hullabaloo #2") (name fb:en.the_superman_madman_hullabaloo_1 "The Superman Madman Hullabaloo #1") (name fb:en.secret_origins_vol_1 "Secret Origins, Vol. 1") (name fb:en.batman_612 "Batman #612") (name fb:en.action_comics_1 "Action Comics #1") (name fb:en.superman_batman_47 "Superman/Batman #47") (name fb:en.worlds_finest_comics_3 "World's Finest Comics #3"))) (type fb:comic_books.comic_book_issue) Which actress co-starred in the most Superman movies with Reeve? Superman/Batman #47 -9.692 formula (!fb:comic_books.comic_book_character.cover_appearances fb:en.superman)) (value (list (name fb:en.identity_crisis_1 "Identity Crisis #1") (name fb:en.the_superman_madman_hullabaloo_3 "The Superman Madman Hullabaloo #3") (name fb:en.the_superman_madman_hullabaloo_2 "The Superman Madman Hullabaloo #2") (name fb:en.the_superman_madman_hullabaloo_1 "The Superman Madman Hullabaloo #1") (name fb:en.secret_origins_vol_1 "Secret Origins, Vol. 1") (name fb:en.batman_612 "Batman #612") (name fb:en.action_comics_1 "Action Comics #1") (name fb:en.superman_batman_47 "Superman/Batman #47") (name fb:en.worlds_finest_comics_3 "World's Finest Comics #3"))) (type fb:comic_books.comic_book_issue) Which actress co-starred in the most Superman movies with Reeve? World's Finest Comics #3 -9.692 formula (!fb:comic_books.comic_book_character.cover_appearances fb:en.superman)) (value (list (name fb:en.identity_crisis_1 "Identity Crisis #1") (name fb:en.the_superman_madman_hullabaloo_3 "The Superman Madman Hullabaloo #3") (name fb:en.the_superman_madman_hullabaloo_2 "The Superman Madman Hullabaloo #2") (name fb:en.the_superman_madman_hullabaloo_1 "The Superman Madman Hullabaloo #1") (name fb:en.secret_origins_vol_1 "Secret Origins, Vol. 1") (name fb:en.batman_612 "Batman #612") (name fb:en.action_comics_1 "Action Comics #1") (name fb:en.superman_batman_47 "Superman/Batman #47") (name fb:en.worlds_finest_comics_3 "World's Finest Comics #3"))) (type fb:comic_books.comic_book_issue) What is Ursa Major? Michael Smerconish / Stay the Course -4.849 formula (and (fb:type.object.type fb:common.topic) (fb:tv.the_colbert_report_episode.intro_topics fb:en.major_league_baseball))) (value (list (name fb:m.02nx8_r "Michael Smerconish / Stay the Course"))) (type fb:tv.the_colbert_report_episode) When was the company founded? Walt Disney -0.45 formula (fb:organization.organization_founder.organizations_founded fb:en.the_walt_disney_company)) (value (list (name fb:en.walter_disney "Walt Disney") (name fb:en.roy_o_disney "Roy O. Disney"))) (type fb:organization.organization_founder) When was the company founded? Roy O. Disney -0.45 formula (fb:organization.organization_founder.organizations_founded fb:en.the_walt_disney_company)) (value (list (name fb:en.walter_disney "Walt Disney") (name fb:en.roy_o_disney "Roy O. Disney"))) (type fb:organization.organization_founder) What peninsula is Spain part of? Antigua and Barbuda -1.419 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:location.imports_and_exports.imported_from (!fb:location.statistical_region.places_imported_from (var x)))) fb:en.spain))) (value (list (name fb:en.scotland Scotland) (name fb:en.algeria Algeria) (name fb:en.antigua_and_barbuda "Antigua and Barbuda"))) (type fb:location.statistical_region) Who was the founding member of the Pink Floyd band? Roger Waters -2.498 formula (and (fb:type.object.type fb:people.person) ((lambda x (fb:music.group_member.membership (fb:music.group_membership.group (var x)))) fb:en.pink_floyd))) (value (list (name fb:en.roger_waters "Roger Waters") (name fb:en.nick_mason "Nick Mason") (name fb:en.david_gilmour "David Gilmour") (name fb:en.syd_barrett "Syd Barrett") (name fb:en.richard_wright "Richard Wright") (name fb:en.bob_klose "Bob Klose"))) (type fb:music.group_member) Who was the founding member of the Pink Floyd band? Nick Mason -2.498 formula (and (fb:type.object.type fb:people.person) ((lambda x (fb:music.group_member.membership (fb:music.group_membership.group (var x)))) fb:en.pink_floyd))) (value (list (name fb:en.roger_waters "Roger Waters") (name fb:en.nick_mason "Nick Mason") (name fb:en.david_gilmour "David Gilmour") (name fb:en.syd_barrett "Syd Barrett") (name fb:en.richard_wright "Richard Wright") (name fb:en.bob_klose "Bob Klose"))) (type fb:music.group_member) Who was the founding member of the Pink Floyd band? David Gilmour -2.498 formula (and (fb:type.object.type fb:people.person) ((lambda x (fb:music.group_member.membership (fb:music.group_membership.group (var x)))) fb:en.pink_floyd))) (value (list (name fb:en.roger_waters "Roger Waters") (name fb:en.nick_mason "Nick Mason") (name fb:en.david_gilmour "David Gilmour") (name fb:en.syd_barrett "Syd Barrett") (name fb:en.richard_wright "Richard Wright") (name fb:en.bob_klose "Bob Klose"))) (type fb:music.group_member) Who was the founding member of the Pink Floyd band? Syd Barrett -2.498 formula (and (fb:type.object.type fb:people.person) ((lambda x (fb:music.group_member.membership (fb:music.group_membership.group (var x)))) fb:en.pink_floyd))) (value (list (name fb:en.roger_waters "Roger Waters") (name fb:en.nick_mason "Nick Mason") (name fb:en.david_gilmour "David Gilmour") (name fb:en.syd_barrett "Syd Barrett") (name fb:en.richard_wright "Richard Wright") (name fb:en.bob_klose "Bob Klose"))) (type fb:music.group_member) Who was the founding member of the Pink Floyd band? Richard Wright -2.498 formula (and (fb:type.object.type fb:people.person) ((lambda x (fb:music.group_member.membership (fb:music.group_membership.group (var x)))) fb:en.pink_floyd))) (value (list (name fb:en.roger_waters "Roger Waters") (name fb:en.nick_mason "Nick Mason") (name fb:en.david_gilmour "David Gilmour") (name fb:en.syd_barrett "Syd Barrett") (name fb:en.richard_wright "Richard Wright") (name fb:en.bob_klose "Bob Klose"))) (type fb:music.group_member) Who was the founding member of the Pink Floyd band? Bob Klose -2.498 formula (and (fb:type.object.type fb:people.person) ((lambda x (fb:music.group_member.membership (fb:music.group_membership.group (var x)))) fb:en.pink_floyd))) (value (list (name fb:en.roger_waters "Roger Waters") (name fb:en.nick_mason "Nick Mason") (name fb:en.david_gilmour "David Gilmour") (name fb:en.syd_barrett "Syd Barrett") (name fb:en.richard_wright "Richard Wright") (name fb:en.bob_klose "Bob Klose"))) (type fb:music.group_member) Where are the National Archives? United Kingdom -3.689 formula (and (fb:type.object.type fb:location.location) (!fb:music.release.region fb:m.0tpz12_))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom"))) (type fb:location.location) What countries supplied aid? United States of America -4.458 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:location.country) (fb:location.location.contains fb:m.04b0wvw)))) (value (list (name fb:en.united_states_of_america "United States of America"))) (type fb:location.country) On what date was the 2005 presidential election in Egypt held? Charlie and the Chocolate Factory 0.12 formula (and (fb:type.object.type fb:common.topic) (fb:film.film.release_date_s (and (fb:film.film_regional_release_date.film_release_region fb:en.egypt) (fb:film.film_regional_release_date.release_date (date 2005 -1 -1)))))) (value (list (name fb:en.charlie_and_the_chocolate_factory_2005 "Charlie and the Chocolate Factory") (name fb:en.doom_2005 Doom) (name fb:en.batman_begins "Batman Begins") (name fb:en.house_of_flying_daggers "House of Flying Daggers") (name fb:en.sky_captain_and_the_world_of_tomorrow "Sky Captain and the World of Tomorrow") (name fb:en.ella_enchanted_2004 "Ella Enchanted") (name fb:en.chicken_little "Chicken Little") (name fb:en.the_gate_of_sun "The Gate of Sun") (name fb:en.the_grudge "The Grudge") (name fb:en.saw_2004 Saw))) (type fb:film.film) On what date was the 2005 presidential election in Egypt held? Batman Begins 0.12 formula (and (fb:type.object.type fb:common.topic) (fb:film.film.release_date_s (and (fb:film.film_regional_release_date.film_release_region fb:en.egypt) (fb:film.film_regional_release_date.release_date (date 2005 -1 -1)))))) (value (list (name fb:en.charlie_and_the_chocolate_factory_2005 "Charlie and the Chocolate Factory") (name fb:en.doom_2005 Doom) (name fb:en.batman_begins "Batman Begins") (name fb:en.house_of_flying_daggers "House of Flying Daggers") (name fb:en.sky_captain_and_the_world_of_tomorrow "Sky Captain and the World of Tomorrow") (name fb:en.ella_enchanted_2004 "Ella Enchanted") (name fb:en.chicken_little "Chicken Little") (name fb:en.the_gate_of_sun "The Gate of Sun") (name fb:en.the_grudge "The Grudge") (name fb:en.saw_2004 Saw))) (type fb:film.film) On what date was the 2005 presidential election in Egypt held? House of Flying Daggers 0.12 formula (and (fb:type.object.type fb:common.topic) (fb:film.film.release_date_s (and (fb:film.film_regional_release_date.film_release_region fb:en.egypt) (fb:film.film_regional_release_date.release_date (date 2005 -1 -1)))))) (value (list (name fb:en.charlie_and_the_chocolate_factory_2005 "Charlie and the Chocolate Factory") (name fb:en.doom_2005 Doom) (name fb:en.batman_begins "Batman Begins") (name fb:en.house_of_flying_daggers "House of Flying Daggers") (name fb:en.sky_captain_and_the_world_of_tomorrow "Sky Captain and the World of Tomorrow") (name fb:en.ella_enchanted_2004 "Ella Enchanted") (name fb:en.chicken_little "Chicken Little") (name fb:en.the_gate_of_sun "The Gate of Sun") (name fb:en.the_grudge "The Grudge") (name fb:en.saw_2004 Saw))) (type fb:film.film) On what date was the 2005 presidential election in Egypt held? Sky Captain and the World of Tomorrow 0.12 formula (and (fb:type.object.type fb:common.topic) (fb:film.film.release_date_s (and (fb:film.film_regional_release_date.film_release_region fb:en.egypt) (fb:film.film_regional_release_date.release_date (date 2005 -1 -1)))))) (value (list (name fb:en.charlie_and_the_chocolate_factory_2005 "Charlie and the Chocolate Factory") (name fb:en.doom_2005 Doom) (name fb:en.batman_begins "Batman Begins") (name fb:en.house_of_flying_daggers "House of Flying Daggers") (name fb:en.sky_captain_and_the_world_of_tomorrow "Sky Captain and the World of Tomorrow") (name fb:en.ella_enchanted_2004 "Ella Enchanted") (name fb:en.chicken_little "Chicken Little") (name fb:en.the_gate_of_sun "The Gate of Sun") (name fb:en.the_grudge "The Grudge") (name fb:en.saw_2004 Saw))) (type fb:film.film) On what date was the 2005 presidential election in Egypt held? Ella Enchanted 0.12 formula (and (fb:type.object.type fb:common.topic) (fb:film.film.release_date_s (and (fb:film.film_regional_release_date.film_release_region fb:en.egypt) (fb:film.film_regional_release_date.release_date (date 2005 -1 -1)))))) (value (list (name fb:en.charlie_and_the_chocolate_factory_2005 "Charlie and the Chocolate Factory") (name fb:en.doom_2005 Doom) (name fb:en.batman_begins "Batman Begins") (name fb:en.house_of_flying_daggers "House of Flying Daggers") (name fb:en.sky_captain_and_the_world_of_tomorrow "Sky Captain and the World of Tomorrow") (name fb:en.ella_enchanted_2004 "Ella Enchanted") (name fb:en.chicken_little "Chicken Little") (name fb:en.the_gate_of_sun "The Gate of Sun") (name fb:en.the_grudge "The Grudge") (name fb:en.saw_2004 Saw))) (type fb:film.film) On what date was the 2005 presidential election in Egypt held? Chicken Little 0.12 formula (and (fb:type.object.type fb:common.topic) (fb:film.film.release_date_s (and (fb:film.film_regional_release_date.film_release_region fb:en.egypt) (fb:film.film_regional_release_date.release_date (date 2005 -1 -1)))))) (value (list (name fb:en.charlie_and_the_chocolate_factory_2005 "Charlie and the Chocolate Factory") (name fb:en.doom_2005 Doom) (name fb:en.batman_begins "Batman Begins") (name fb:en.house_of_flying_daggers "House of Flying Daggers") (name fb:en.sky_captain_and_the_world_of_tomorrow "Sky Captain and the World of Tomorrow") (name fb:en.ella_enchanted_2004 "Ella Enchanted") (name fb:en.chicken_little "Chicken Little") (name fb:en.the_gate_of_sun "The Gate of Sun") (name fb:en.the_grudge "The Grudge") (name fb:en.saw_2004 Saw))) (type fb:film.film) On what date was the 2005 presidential election in Egypt held? The Gate of Sun 0.12 formula (and (fb:type.object.type fb:common.topic) (fb:film.film.release_date_s (and (fb:film.film_regional_release_date.film_release_region fb:en.egypt) (fb:film.film_regional_release_date.release_date (date 2005 -1 -1)))))) (value (list (name fb:en.charlie_and_the_chocolate_factory_2005 "Charlie and the Chocolate Factory") (name fb:en.doom_2005 Doom) (name fb:en.batman_begins "Batman Begins") (name fb:en.house_of_flying_daggers "House of Flying Daggers") (name fb:en.sky_captain_and_the_world_of_tomorrow "Sky Captain and the World of Tomorrow") (name fb:en.ella_enchanted_2004 "Ella Enchanted") (name fb:en.chicken_little "Chicken Little") (name fb:en.the_gate_of_sun "The Gate of Sun") (name fb:en.the_grudge "The Grudge") (name fb:en.saw_2004 Saw))) (type fb:film.film) On what date was the 2005 presidential election in Egypt held? The Grudge 0.12 formula (and (fb:type.object.type fb:common.topic) (fb:film.film.release_date_s (and (fb:film.film_regional_release_date.film_release_region fb:en.egypt) (fb:film.film_regional_release_date.release_date (date 2005 -1 -1)))))) (value (list (name fb:en.charlie_and_the_chocolate_factory_2005 "Charlie and the Chocolate Factory") (name fb:en.doom_2005 Doom) (name fb:en.batman_begins "Batman Begins") (name fb:en.house_of_flying_daggers "House of Flying Daggers") (name fb:en.sky_captain_and_the_world_of_tomorrow "Sky Captain and the World of Tomorrow") (name fb:en.ella_enchanted_2004 "Ella Enchanted") (name fb:en.chicken_little "Chicken Little") (name fb:en.the_gate_of_sun "The Gate of Sun") (name fb:en.the_grudge "The Grudge") (name fb:en.saw_2004 Saw))) (type fb:film.film) What Jeopardy contestant is the biggest money-winner in television game show history? Alex Trebek -1.365 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.jeopardy))) (value (list (name fb:en.alex_trebek "Alex Trebek") (name fb:m.0k1cmf5 "Debbie Griffin") (name fb:en.merv_griffin "Merv Griffin") (name fb:m.0ln1czc "Gary Johnson") (name fb:en.terrence_mcdonnell "Terrence McDonnell") (name fb:m.0ncmxny "Dick Schneider") (name fb:m.087s3n "Kevin McCarthy") (name fb:m.0k1cmdr "Rocky Schmidt") (name fb:m.0gh7pk0 "Harry Friedman") (name fb:m.0mztjjr "Lisa Finneran"))) (type fb:award.award_winner) What Jeopardy contestant is the biggest money-winner in television game show history? Debbie Griffin -1.365 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.jeopardy))) (value (list (name fb:en.alex_trebek "Alex Trebek") (name fb:m.0k1cmf5 "Debbie Griffin") (name fb:en.merv_griffin "Merv Griffin") (name fb:m.0ln1czc "Gary Johnson") (name fb:en.terrence_mcdonnell "Terrence McDonnell") (name fb:m.0ncmxny "Dick Schneider") (name fb:m.087s3n "Kevin McCarthy") (name fb:m.0k1cmdr "Rocky Schmidt") (name fb:m.0gh7pk0 "Harry Friedman") (name fb:m.0mztjjr "Lisa Finneran"))) (type fb:award.award_winner) What Jeopardy contestant is the biggest money-winner in television game show history? Merv Griffin -1.365 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.jeopardy))) (value (list (name fb:en.alex_trebek "Alex Trebek") (name fb:m.0k1cmf5 "Debbie Griffin") (name fb:en.merv_griffin "Merv Griffin") (name fb:m.0ln1czc "Gary Johnson") (name fb:en.terrence_mcdonnell "Terrence McDonnell") (name fb:m.0ncmxny "Dick Schneider") (name fb:m.087s3n "Kevin McCarthy") (name fb:m.0k1cmdr "Rocky Schmidt") (name fb:m.0gh7pk0 "Harry Friedman") (name fb:m.0mztjjr "Lisa Finneran"))) (type fb:award.award_winner) What Jeopardy contestant is the biggest money-winner in television game show history? Gary Johnson -1.365 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.jeopardy))) (value (list (name fb:en.alex_trebek "Alex Trebek") (name fb:m.0k1cmf5 "Debbie Griffin") (name fb:en.merv_griffin "Merv Griffin") (name fb:m.0ln1czc "Gary Johnson") (name fb:en.terrence_mcdonnell "Terrence McDonnell") (name fb:m.0ncmxny "Dick Schneider") (name fb:m.087s3n "Kevin McCarthy") (name fb:m.0k1cmdr "Rocky Schmidt") (name fb:m.0gh7pk0 "Harry Friedman") (name fb:m.0mztjjr "Lisa Finneran"))) (type fb:award.award_winner) What Jeopardy contestant is the biggest money-winner in television game show history? Terrence McDonnell -1.365 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.jeopardy))) (value (list (name fb:en.alex_trebek "Alex Trebek") (name fb:m.0k1cmf5 "Debbie Griffin") (name fb:en.merv_griffin "Merv Griffin") (name fb:m.0ln1czc "Gary Johnson") (name fb:en.terrence_mcdonnell "Terrence McDonnell") (name fb:m.0ncmxny "Dick Schneider") (name fb:m.087s3n "Kevin McCarthy") (name fb:m.0k1cmdr "Rocky Schmidt") (name fb:m.0gh7pk0 "Harry Friedman") (name fb:m.0mztjjr "Lisa Finneran"))) (type fb:award.award_winner) What Jeopardy contestant is the biggest money-winner in television game show history? Dick Schneider -1.365 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.jeopardy))) (value (list (name fb:en.alex_trebek "Alex Trebek") (name fb:m.0k1cmf5 "Debbie Griffin") (name fb:en.merv_griffin "Merv Griffin") (name fb:m.0ln1czc "Gary Johnson") (name fb:en.terrence_mcdonnell "Terrence McDonnell") (name fb:m.0ncmxny "Dick Schneider") (name fb:m.087s3n "Kevin McCarthy") (name fb:m.0k1cmdr "Rocky Schmidt") (name fb:m.0gh7pk0 "Harry Friedman") (name fb:m.0mztjjr "Lisa Finneran"))) (type fb:award.award_winner) What Jeopardy contestant is the biggest money-winner in television game show history? Kevin McCarthy -1.365 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.jeopardy))) (value (list (name fb:en.alex_trebek "Alex Trebek") (name fb:m.0k1cmf5 "Debbie Griffin") (name fb:en.merv_griffin "Merv Griffin") (name fb:m.0ln1czc "Gary Johnson") (name fb:en.terrence_mcdonnell "Terrence McDonnell") (name fb:m.0ncmxny "Dick Schneider") (name fb:m.087s3n "Kevin McCarthy") (name fb:m.0k1cmdr "Rocky Schmidt") (name fb:m.0gh7pk0 "Harry Friedman") (name fb:m.0mztjjr "Lisa Finneran"))) (type fb:award.award_winner) What Jeopardy contestant is the biggest money-winner in television game show history? Rocky Schmidt -1.365 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.jeopardy))) (value (list (name fb:en.alex_trebek "Alex Trebek") (name fb:m.0k1cmf5 "Debbie Griffin") (name fb:en.merv_griffin "Merv Griffin") (name fb:m.0ln1czc "Gary Johnson") (name fb:en.terrence_mcdonnell "Terrence McDonnell") (name fb:m.0ncmxny "Dick Schneider") (name fb:m.087s3n "Kevin McCarthy") (name fb:m.0k1cmdr "Rocky Schmidt") (name fb:m.0gh7pk0 "Harry Friedman") (name fb:m.0mztjjr "Lisa Finneran"))) (type fb:award.award_winner) What Jeopardy contestant is the biggest money-winner in television game show history? Harry Friedman -1.365 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.jeopardy))) (value (list (name fb:en.alex_trebek "Alex Trebek") (name fb:m.0k1cmf5 "Debbie Griffin") (name fb:en.merv_griffin "Merv Griffin") (name fb:m.0ln1czc "Gary Johnson") (name fb:en.terrence_mcdonnell "Terrence McDonnell") (name fb:m.0ncmxny "Dick Schneider") (name fb:m.087s3n "Kevin McCarthy") (name fb:m.0k1cmdr "Rocky Schmidt") (name fb:m.0gh7pk0 "Harry Friedman") (name fb:m.0mztjjr "Lisa Finneran"))) (type fb:award.award_winner) What Jeopardy contestant is the biggest money-winner in television game show history? Lisa Finneran -1.365 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.jeopardy))) (value (list (name fb:en.alex_trebek "Alex Trebek") (name fb:m.0k1cmf5 "Debbie Griffin") (name fb:en.merv_griffin "Merv Griffin") (name fb:m.0ln1czc "Gary Johnson") (name fb:en.terrence_mcdonnell "Terrence McDonnell") (name fb:m.0ncmxny "Dick Schneider") (name fb:m.087s3n "Kevin McCarthy") (name fb:m.0k1cmdr "Rocky Schmidt") (name fb:m.0gh7pk0 "Harry Friedman") (name fb:m.0mztjjr "Lisa Finneran"))) (type fb:award.award_winner) What year was Desmond Mpilo Tutu awarded the Nobel Peace Prize? Nobel Peace Prize -2.534 formula (and (fb:type.object.type fb:common.topic) (!fb:award.award_honor.award (and (!fb:award.award_winner.awards_won fb:en.desmond_tutu) (!fb:award.award_category.winners fb:en.nobel_peace_prize))))) (value (list (name fb:en.nobel_peace_prize "Nobel Peace Prize"))) (type fb:award.award_category) When was Hong Kong returned to Chinese sovereignty? Never Enough -0.498 formula (!fb:book.book_subject.works fb:en.hong_kong)) (value (list (name fb:m.03h5710 "Never Enough") (name fb:m.04wb5hm "House on fire") (name fb:m.04w3pz0 "Riding the snake") (name fb:en.pearl_moon "Pearl moon") (name fb:en.kowloon_tong_a_novel_of_hong_kong "Kowloon Tong: A Novel of Hong Kong") (name fb:en.noble_house "Noble House") (name fb:m.04w27_h "Knife edge") (name fb:en.the_language_of_threads "The language of threads") (name fb:en.tai_pan "Tai-Pan: A Novel of Hong Kong") (name fb:m.04w9_9z "Yellowthread Street"))) (type fb:book.written_work) When was Hong Kong returned to Chinese sovereignty? House on fire -0.498 formula (!fb:book.book_subject.works fb:en.hong_kong)) (value (list (name fb:m.03h5710 "Never Enough") (name fb:m.04wb5hm "House on fire") (name fb:m.04w3pz0 "Riding the snake") (name fb:en.pearl_moon "Pearl moon") (name fb:en.kowloon_tong_a_novel_of_hong_kong "Kowloon Tong: A Novel of Hong Kong") (name fb:en.noble_house "Noble House") (name fb:m.04w27_h "Knife edge") (name fb:en.the_language_of_threads "The language of threads") (name fb:en.tai_pan "Tai-Pan: A Novel of Hong Kong") (name fb:m.04w9_9z "Yellowthread Street"))) (type fb:book.written_work) When was Hong Kong returned to Chinese sovereignty? Riding the snake -0.498 formula (!fb:book.book_subject.works fb:en.hong_kong)) (value (list (name fb:m.03h5710 "Never Enough") (name fb:m.04wb5hm "House on fire") (name fb:m.04w3pz0 "Riding the snake") (name fb:en.pearl_moon "Pearl moon") (name fb:en.kowloon_tong_a_novel_of_hong_kong "Kowloon Tong: A Novel of Hong Kong") (name fb:en.noble_house "Noble House") (name fb:m.04w27_h "Knife edge") (name fb:en.the_language_of_threads "The language of threads") (name fb:en.tai_pan "Tai-Pan: A Novel of Hong Kong") (name fb:m.04w9_9z "Yellowthread Street"))) (type fb:book.written_work) When was Hong Kong returned to Chinese sovereignty? Pearl moon -0.498 formula (!fb:book.book_subject.works fb:en.hong_kong)) (value (list (name fb:m.03h5710 "Never Enough") (name fb:m.04wb5hm "House on fire") (name fb:m.04w3pz0 "Riding the snake") (name fb:en.pearl_moon "Pearl moon") (name fb:en.kowloon_tong_a_novel_of_hong_kong "Kowloon Tong: A Novel of Hong Kong") (name fb:en.noble_house "Noble House") (name fb:m.04w27_h "Knife edge") (name fb:en.the_language_of_threads "The language of threads") (name fb:en.tai_pan "Tai-Pan: A Novel of Hong Kong") (name fb:m.04w9_9z "Yellowthread Street"))) (type fb:book.written_work) When was Hong Kong returned to Chinese sovereignty? Kowloon Tong: A Novel of Hong Kong -0.498 formula (!fb:book.book_subject.works fb:en.hong_kong)) (value (list (name fb:m.03h5710 "Never Enough") (name fb:m.04wb5hm "House on fire") (name fb:m.04w3pz0 "Riding the snake") (name fb:en.pearl_moon "Pearl moon") (name fb:en.kowloon_tong_a_novel_of_hong_kong "Kowloon Tong: A Novel of Hong Kong") (name fb:en.noble_house "Noble House") (name fb:m.04w27_h "Knife edge") (name fb:en.the_language_of_threads "The language of threads") (name fb:en.tai_pan "Tai-Pan: A Novel of Hong Kong") (name fb:m.04w9_9z "Yellowthread Street"))) (type fb:book.written_work) When was Hong Kong returned to Chinese sovereignty? Noble House -0.498 formula (!fb:book.book_subject.works fb:en.hong_kong)) (value (list (name fb:m.03h5710 "Never Enough") (name fb:m.04wb5hm "House on fire") (name fb:m.04w3pz0 "Riding the snake") (name fb:en.pearl_moon "Pearl moon") (name fb:en.kowloon_tong_a_novel_of_hong_kong "Kowloon Tong: A Novel of Hong Kong") (name fb:en.noble_house "Noble House") (name fb:m.04w27_h "Knife edge") (name fb:en.the_language_of_threads "The language of threads") (name fb:en.tai_pan "Tai-Pan: A Novel of Hong Kong") (name fb:m.04w9_9z "Yellowthread Street"))) (type fb:book.written_work) When was Hong Kong returned to Chinese sovereignty? Knife edge -0.498 formula (!fb:book.book_subject.works fb:en.hong_kong)) (value (list (name fb:m.03h5710 "Never Enough") (name fb:m.04wb5hm "House on fire") (name fb:m.04w3pz0 "Riding the snake") (name fb:en.pearl_moon "Pearl moon") (name fb:en.kowloon_tong_a_novel_of_hong_kong "Kowloon Tong: A Novel of Hong Kong") (name fb:en.noble_house "Noble House") (name fb:m.04w27_h "Knife edge") (name fb:en.the_language_of_threads "The language of threads") (name fb:en.tai_pan "Tai-Pan: A Novel of Hong Kong") (name fb:m.04w9_9z "Yellowthread Street"))) (type fb:book.written_work) When was Hong Kong returned to Chinese sovereignty? The language of threads -0.498 formula (!fb:book.book_subject.works fb:en.hong_kong)) (value (list (name fb:m.03h5710 "Never Enough") (name fb:m.04wb5hm "House on fire") (name fb:m.04w3pz0 "Riding the snake") (name fb:en.pearl_moon "Pearl moon") (name fb:en.kowloon_tong_a_novel_of_hong_kong "Kowloon Tong: A Novel of Hong Kong") (name fb:en.noble_house "Noble House") (name fb:m.04w27_h "Knife edge") (name fb:en.the_language_of_threads "The language of threads") (name fb:en.tai_pan "Tai-Pan: A Novel of Hong Kong") (name fb:m.04w9_9z "Yellowthread Street"))) (type fb:book.written_work) When was Hong Kong returned to Chinese sovereignty? Tai-Pan: A Novel of Hong Kong -0.498 formula (!fb:book.book_subject.works fb:en.hong_kong)) (value (list (name fb:m.03h5710 "Never Enough") (name fb:m.04wb5hm "House on fire") (name fb:m.04w3pz0 "Riding the snake") (name fb:en.pearl_moon "Pearl moon") (name fb:en.kowloon_tong_a_novel_of_hong_kong "Kowloon Tong: A Novel of Hong Kong") (name fb:en.noble_house "Noble House") (name fb:m.04w27_h "Knife edge") (name fb:en.the_language_of_threads "The language of threads") (name fb:en.tai_pan "Tai-Pan: A Novel of Hong Kong") (name fb:m.04w9_9z "Yellowthread Street"))) (type fb:book.written_work) When was Hong Kong returned to Chinese sovereignty? Yellowthread Street -0.498 formula (!fb:book.book_subject.works fb:en.hong_kong)) (value (list (name fb:m.03h5710 "Never Enough") (name fb:m.04wb5hm "House on fire") (name fb:m.04w3pz0 "Riding the snake") (name fb:en.pearl_moon "Pearl moon") (name fb:en.kowloon_tong_a_novel_of_hong_kong "Kowloon Tong: A Novel of Hong Kong") (name fb:en.noble_house "Noble House") (name fb:m.04w27_h "Knife edge") (name fb:en.the_language_of_threads "The language of threads") (name fb:en.tai_pan "Tai-Pan: A Novel of Hong Kong") (name fb:m.04w9_9z "Yellowthread Street"))) (type fb:book.written_work) Who have coached Warren Moon in professional football? Luciano Spalletti -2.04 formula (and (fb:type.object.type fb:people.person) (fb:sports.sports_team_coach.sports_coached fb:en.football))) (value (list (name fb:en.luciano_spalletti "Luciano Spalletti") (name fb:en.jesualdo_ferreira "Jesualdo Ferreira") (name fb:m.0n521k4 "Ivo Pulga") (name fb:m.03c1q38 "Paulo Jorge Rebelo Duarte"))) (type fb:sports.sports_team_coach) Who have coached Warren Moon in professional football? Jesualdo Ferreira -2.04 formula (and (fb:type.object.type fb:people.person) (fb:sports.sports_team_coach.sports_coached fb:en.football))) (value (list (name fb:en.luciano_spalletti "Luciano Spalletti") (name fb:en.jesualdo_ferreira "Jesualdo Ferreira") (name fb:m.0n521k4 "Ivo Pulga") (name fb:m.03c1q38 "Paulo Jorge Rebelo Duarte"))) (type fb:sports.sports_team_coach) Who have coached Warren Moon in professional football? Ivo Pulga -2.04 formula (and (fb:type.object.type fb:people.person) (fb:sports.sports_team_coach.sports_coached fb:en.football))) (value (list (name fb:en.luciano_spalletti "Luciano Spalletti") (name fb:en.jesualdo_ferreira "Jesualdo Ferreira") (name fb:m.0n521k4 "Ivo Pulga") (name fb:m.03c1q38 "Paulo Jorge Rebelo Duarte"))) (type fb:sports.sports_team_coach) Who have coached Warren Moon in professional football? Paulo Jorge Rebelo Duarte -2.04 formula (and (fb:type.object.type fb:people.person) (fb:sports.sports_team_coach.sports_coached fb:en.football))) (value (list (name fb:en.luciano_spalletti "Luciano Spalletti") (name fb:en.jesualdo_ferreira "Jesualdo Ferreira") (name fb:m.0n521k4 "Ivo Pulga") (name fb:m.03c1q38 "Paulo Jorge Rebelo Duarte"))) (type fb:sports.sports_team_coach) What two European countries are connected by the St. Gotthard Tunnel One Life One Soul (Best of Ballads) -7.904 formula (and (fb:type.object.type fb:common.topic) (fb:music.album.artist fb:en.gotthard))) (value (list (name fb:en.one_life_one_soul "One Life One Soul (Best of Ballads)") (name fb:en.one_team_one_spirit "One Team One Spirit") (name fb:en.dial_hard "Dial Hard") (name fb:m.0285nb_ Open) (name fb:en.made_in_switzerland "Made in Switzerland") (name fb:m.0284h1p Gotthard) (name fb:en.the_hamburg_tapes "The Hamburg Tapes") (name fb:m.01l6hyx Heaven) (name fb:m.0q9j3lb Firebirth) (name fb:m.0285rwr "Human Zoo"))) (type fb:music.album) What two European countries are connected by the St. Gotthard Tunnel One Team One Spirit -7.904 formula (and (fb:type.object.type fb:common.topic) (fb:music.album.artist fb:en.gotthard))) (value (list (name fb:en.one_life_one_soul "One Life One Soul (Best of Ballads)") (name fb:en.one_team_one_spirit "One Team One Spirit") (name fb:en.dial_hard "Dial Hard") (name fb:m.0285nb_ Open) (name fb:en.made_in_switzerland "Made in Switzerland") (name fb:m.0284h1p Gotthard) (name fb:en.the_hamburg_tapes "The Hamburg Tapes") (name fb:m.01l6hyx Heaven) (name fb:m.0q9j3lb Firebirth) (name fb:m.0285rwr "Human Zoo"))) (type fb:music.album) What two European countries are connected by the St. Gotthard Tunnel Dial Hard -7.904 formula (and (fb:type.object.type fb:common.topic) (fb:music.album.artist fb:en.gotthard))) (value (list (name fb:en.one_life_one_soul "One Life One Soul (Best of Ballads)") (name fb:en.one_team_one_spirit "One Team One Spirit") (name fb:en.dial_hard "Dial Hard") (name fb:m.0285nb_ Open) (name fb:en.made_in_switzerland "Made in Switzerland") (name fb:m.0284h1p Gotthard) (name fb:en.the_hamburg_tapes "The Hamburg Tapes") (name fb:m.01l6hyx Heaven) (name fb:m.0q9j3lb Firebirth) (name fb:m.0285rwr "Human Zoo"))) (type fb:music.album) What two European countries are connected by the St. Gotthard Tunnel Made in Switzerland -7.904 formula (and (fb:type.object.type fb:common.topic) (fb:music.album.artist fb:en.gotthard))) (value (list (name fb:en.one_life_one_soul "One Life One Soul (Best of Ballads)") (name fb:en.one_team_one_spirit "One Team One Spirit") (name fb:en.dial_hard "Dial Hard") (name fb:m.0285nb_ Open) (name fb:en.made_in_switzerland "Made in Switzerland") (name fb:m.0284h1p Gotthard) (name fb:en.the_hamburg_tapes "The Hamburg Tapes") (name fb:m.01l6hyx Heaven) (name fb:m.0q9j3lb Firebirth) (name fb:m.0285rwr "Human Zoo"))) (type fb:music.album) What two European countries are connected by the St. Gotthard Tunnel The Hamburg Tapes -7.904 formula (and (fb:type.object.type fb:common.topic) (fb:music.album.artist fb:en.gotthard))) (value (list (name fb:en.one_life_one_soul "One Life One Soul (Best of Ballads)") (name fb:en.one_team_one_spirit "One Team One Spirit") (name fb:en.dial_hard "Dial Hard") (name fb:m.0285nb_ Open) (name fb:en.made_in_switzerland "Made in Switzerland") (name fb:m.0284h1p Gotthard) (name fb:en.the_hamburg_tapes "The Hamburg Tapes") (name fb:m.01l6hyx Heaven) (name fb:m.0q9j3lb Firebirth) (name fb:m.0285rwr "Human Zoo"))) (type fb:music.album) What two European countries are connected by the St. Gotthard Tunnel Human Zoo -7.904 formula (and (fb:type.object.type fb:common.topic) (fb:music.album.artist fb:en.gotthard))) (value (list (name fb:en.one_life_one_soul "One Life One Soul (Best of Ballads)") (name fb:en.one_team_one_spirit "One Team One Spirit") (name fb:en.dial_hard "Dial Hard") (name fb:m.0285nb_ Open) (name fb:en.made_in_switzerland "Made in Switzerland") (name fb:m.0284h1p Gotthard) (name fb:en.the_hamburg_tapes "The Hamburg Tapes") (name fb:m.01l6hyx Heaven) (name fb:m.0q9j3lb Firebirth) (name fb:m.0285rwr "Human Zoo"))) (type fb:music.album) What Latin American country is the leading exporter of sugar cane? Powdered sugar -1.486 formula (and (fb:type.object.type fb:common.topic) (!fb:food.ingredient.more_specific_ingredient fb:en.sugar))) (value (list (name fb:m.0725gl Demerara) (name fb:en.powdered_sugar "Powdered sugar") (name fb:en.brown_sugar "Brown sugar"))) (type fb:food.ingredient) What Latin American country is the leading exporter of sugar cane? Brown sugar -1.486 formula (and (fb:type.object.type fb:common.topic) (!fb:food.ingredient.more_specific_ingredient fb:en.sugar))) (value (list (name fb:m.0725gl Demerara) (name fb:en.powdered_sugar "Powdered sugar") (name fb:en.brown_sugar "Brown sugar"))) (type fb:food.ingredient) What countries participated in the Food-for-Oil agreement by providing food or medicine? Sierra Leone -3.421 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:location.country) ((lambda x (fb:location.statistical_region.major_imports (fb:location.imports_exports_by_industry.industry (var x)))) fb:en.food_industry)))) (value (list (name fb:en.sierra_leone "Sierra Leone") (name fb:en.bangladesh Bangladesh) (name fb:en.algeria Algeria) (name fb:en.angola Angola) (name fb:en.madagascar Madagascar) (name fb:en.antigua_and_barbuda "Antigua and Barbuda") (name fb:en.anguilla Anguilla) (name fb:en.tuvalu Tuvalu) (name fb:en.djibouti Djibouti) (name fb:en.andorra Andorra))) (type fb:location.country) What countries participated in the Food-for-Oil agreement by providing food or medicine? Antigua and Barbuda -3.421 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:location.country) ((lambda x (fb:location.statistical_region.major_imports (fb:location.imports_exports_by_industry.industry (var x)))) fb:en.food_industry)))) (value (list (name fb:en.sierra_leone "Sierra Leone") (name fb:en.bangladesh Bangladesh) (name fb:en.algeria Algeria) (name fb:en.angola Angola) (name fb:en.madagascar Madagascar) (name fb:en.antigua_and_barbuda "Antigua and Barbuda") (name fb:en.anguilla Anguilla) (name fb:en.tuvalu Tuvalu) (name fb:en.djibouti Djibouti) (name fb:en.andorra Andorra))) (type fb:location.country) Employees of what companies are receiving benefits from this [PBGC] organization? Trade union -7.69 formula (!fb:organization.organization.organization_type fb:en.canadian_union_of_public_employees)) (value (list (name fb:en.trade_union "Trade union"))) (type fb:organization.organization_type) When did Hawaii become a state? Puukohola Heiau National Historic Site 0.328 formula (fb:base.usnationalparks.us_national_park.state fb:en.hawaii)) (value (list (name fb:en.puukohola_heiau_national_historic_site "Puukohola Heiau National Historic Site") (name fb:en.hawaii_volcanoes_national_park "Hawai��i Volcanoes National Park") (name fb:en.uss_arizona_memorial "USS Arizona Memorial") (name fb:en.puuhonua_o_honaunau_national_historical_park "Pu��uhonua o H��naunau National Historical Park") (name fb:en.haleakala_national_park "Haleakal�� National Park") (name fb:en.kaloko-honokohau_national_historical_park "Honok��hau Settlement and Kaloko-Honok��hau National Historical Park") (name fb:en.kalaupapa_national_historical_park "Kalaupapa Leprosy Settlement and National Historical Park") (name fb:en.world_war_ii_valor_in_the_pacific_national_monument "World War II Valor in the Pacific National Monument"))) (type fb:base.usnationalparks.us_national_park) When did Hawaii become a state? Hawai��i Volcanoes National Park 0.328 formula (fb:base.usnationalparks.us_national_park.state fb:en.hawaii)) (value (list (name fb:en.puukohola_heiau_national_historic_site "Puukohola Heiau National Historic Site") (name fb:en.hawaii_volcanoes_national_park "Hawai��i Volcanoes National Park") (name fb:en.uss_arizona_memorial "USS Arizona Memorial") (name fb:en.puuhonua_o_honaunau_national_historical_park "Pu��uhonua o H��naunau National Historical Park") (name fb:en.haleakala_national_park "Haleakal�� National Park") (name fb:en.kaloko-honokohau_national_historical_park "Honok��hau Settlement and Kaloko-Honok��hau National Historical Park") (name fb:en.kalaupapa_national_historical_park "Kalaupapa Leprosy Settlement and National Historical Park") (name fb:en.world_war_ii_valor_in_the_pacific_national_monument "World War II Valor in the Pacific National Monument"))) (type fb:base.usnationalparks.us_national_park) When did Hawaii become a state? USS Arizona Memorial 0.328 formula (fb:base.usnationalparks.us_national_park.state fb:en.hawaii)) (value (list (name fb:en.puukohola_heiau_national_historic_site "Puukohola Heiau National Historic Site") (name fb:en.hawaii_volcanoes_national_park "Hawai��i Volcanoes National Park") (name fb:en.uss_arizona_memorial "USS Arizona Memorial") (name fb:en.puuhonua_o_honaunau_national_historical_park "Pu��uhonua o H��naunau National Historical Park") (name fb:en.haleakala_national_park "Haleakal�� National Park") (name fb:en.kaloko-honokohau_national_historical_park "Honok��hau Settlement and Kaloko-Honok��hau National Historical Park") (name fb:en.kalaupapa_national_historical_park "Kalaupapa Leprosy Settlement and National Historical Park") (name fb:en.world_war_ii_valor_in_the_pacific_national_monument "World War II Valor in the Pacific National Monument"))) (type fb:base.usnationalparks.us_national_park) When did Hawaii become a state? Pu��uhonua o H��naunau National Historical Park 0.328 formula (fb:base.usnationalparks.us_national_park.state fb:en.hawaii)) (value (list (name fb:en.puukohola_heiau_national_historic_site "Puukohola Heiau National Historic Site") (name fb:en.hawaii_volcanoes_national_park "Hawai��i Volcanoes National Park") (name fb:en.uss_arizona_memorial "USS Arizona Memorial") (name fb:en.puuhonua_o_honaunau_national_historical_park "Pu��uhonua o H��naunau National Historical Park") (name fb:en.haleakala_national_park "Haleakal�� National Park") (name fb:en.kaloko-honokohau_national_historical_park "Honok��hau Settlement and Kaloko-Honok��hau National Historical Park") (name fb:en.kalaupapa_national_historical_park "Kalaupapa Leprosy Settlement and National Historical Park") (name fb:en.world_war_ii_valor_in_the_pacific_national_monument "World War II Valor in the Pacific National Monument"))) (type fb:base.usnationalparks.us_national_park) When did Hawaii become a state? Haleakal�� National Park 0.328 formula (fb:base.usnationalparks.us_national_park.state fb:en.hawaii)) (value (list (name fb:en.puukohola_heiau_national_historic_site "Puukohola Heiau National Historic Site") (name fb:en.hawaii_volcanoes_national_park "Hawai��i Volcanoes National Park") (name fb:en.uss_arizona_memorial "USS Arizona Memorial") (name fb:en.puuhonua_o_honaunau_national_historical_park "Pu��uhonua o H��naunau National Historical Park") (name fb:en.haleakala_national_park "Haleakal�� National Park") (name fb:en.kaloko-honokohau_national_historical_park "Honok��hau Settlement and Kaloko-Honok��hau National Historical Park") (name fb:en.kalaupapa_national_historical_park "Kalaupapa Leprosy Settlement and National Historical Park") (name fb:en.world_war_ii_valor_in_the_pacific_national_monument "World War II Valor in the Pacific National Monument"))) (type fb:base.usnationalparks.us_national_park) When did Hawaii become a state? Honok��hau Settlement and Kaloko-Honok��hau National Historical Park 0.328 formula (fb:base.usnationalparks.us_national_park.state fb:en.hawaii)) (value (list (name fb:en.puukohola_heiau_national_historic_site "Puukohola Heiau National Historic Site") (name fb:en.hawaii_volcanoes_national_park "Hawai��i Volcanoes National Park") (name fb:en.uss_arizona_memorial "USS Arizona Memorial") (name fb:en.puuhonua_o_honaunau_national_historical_park "Pu��uhonua o H��naunau National Historical Park") (name fb:en.haleakala_national_park "Haleakal�� National Park") (name fb:en.kaloko-honokohau_national_historical_park "Honok��hau Settlement and Kaloko-Honok��hau National Historical Park") (name fb:en.kalaupapa_national_historical_park "Kalaupapa Leprosy Settlement and National Historical Park") (name fb:en.world_war_ii_valor_in_the_pacific_national_monument "World War II Valor in the Pacific National Monument"))) (type fb:base.usnationalparks.us_national_park) When did Hawaii become a state? Kalaupapa Leprosy Settlement and National Historical Park 0.328 formula (fb:base.usnationalparks.us_national_park.state fb:en.hawaii)) (value (list (name fb:en.puukohola_heiau_national_historic_site "Puukohola Heiau National Historic Site") (name fb:en.hawaii_volcanoes_national_park "Hawai��i Volcanoes National Park") (name fb:en.uss_arizona_memorial "USS Arizona Memorial") (name fb:en.puuhonua_o_honaunau_national_historical_park "Pu��uhonua o H��naunau National Historical Park") (name fb:en.haleakala_national_park "Haleakal�� National Park") (name fb:en.kaloko-honokohau_national_historical_park "Honok��hau Settlement and Kaloko-Honok��hau National Historical Park") (name fb:en.kalaupapa_national_historical_park "Kalaupapa Leprosy Settlement and National Historical Park") (name fb:en.world_war_ii_valor_in_the_pacific_national_monument "World War II Valor in the Pacific National Monument"))) (type fb:base.usnationalparks.us_national_park) When did Hawaii become a state? World War II Valor in the Pacific National Monument 0.328 formula (fb:base.usnationalparks.us_national_park.state fb:en.hawaii)) (value (list (name fb:en.puukohola_heiau_national_historic_site "Puukohola Heiau National Historic Site") (name fb:en.hawaii_volcanoes_national_park "Hawai��i Volcanoes National Park") (name fb:en.uss_arizona_memorial "USS Arizona Memorial") (name fb:en.puuhonua_o_honaunau_national_historical_park "Pu��uhonua o H��naunau National Historical Park") (name fb:en.haleakala_national_park "Haleakal�� National Park") (name fb:en.kaloko-honokohau_national_historical_park "Honok��hau Settlement and Kaloko-Honok��hau National Historical Park") (name fb:en.kalaupapa_national_historical_park "Kalaupapa Leprosy Settlement and National Historical Park") (name fb:en.world_war_ii_valor_in_the_pacific_national_monument "World War II Valor in the Pacific National Monument"))) (type fb:base.usnationalparks.us_national_park) What is the population of Venezuela? Population Growth Rate, World Development Indicators and Global Development Finance, World Bank -2.253 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:measurement_unit.dated_percentage.source (!fb:location.statistical_region.population_growth_rate (var x)))) fb:en.venezuela))) (value (list (name fb:m.0ndpz08 "Population Growth Rate, World Development Indicators and Global Development Finance, World Bank"))) (type fb:dataworld.information_source) List previous conductors of the Boston Pops. John Williams 1.618 formula (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops))) (value (list (name fb:en.john_willams "John Williams") (name fb:en.arthur_fiedler "Arthur Fiedler") (name fb:en.keith_lockhart "Keith Lockhart") (name fb:en.adolf_neuendorff "Adolf Neuendorff") (name fb:en.timothee_adamowski "Timothee Adamowski") (name fb:en.alfredo_casella "Alfredo Casella") (name fb:en.franz_kneisel "Franz Kneisel") (name fb:en.josef_pasternack "Josef Pasternack") (name fb:en.agide_jacchia "Agide Jacchia"))) (type fb:music.conductor) List previous conductors of the Boston Pops. Arthur Fiedler 1.618 formula (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops))) (value (list (name fb:en.john_willams "John Williams") (name fb:en.arthur_fiedler "Arthur Fiedler") (name fb:en.keith_lockhart "Keith Lockhart") (name fb:en.adolf_neuendorff "Adolf Neuendorff") (name fb:en.timothee_adamowski "Timothee Adamowski") (name fb:en.alfredo_casella "Alfredo Casella") (name fb:en.franz_kneisel "Franz Kneisel") (name fb:en.josef_pasternack "Josef Pasternack") (name fb:en.agide_jacchia "Agide Jacchia"))) (type fb:music.conductor) List previous conductors of the Boston Pops. Keith Lockhart 1.618 formula (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops))) (value (list (name fb:en.john_willams "John Williams") (name fb:en.arthur_fiedler "Arthur Fiedler") (name fb:en.keith_lockhart "Keith Lockhart") (name fb:en.adolf_neuendorff "Adolf Neuendorff") (name fb:en.timothee_adamowski "Timothee Adamowski") (name fb:en.alfredo_casella "Alfredo Casella") (name fb:en.franz_kneisel "Franz Kneisel") (name fb:en.josef_pasternack "Josef Pasternack") (name fb:en.agide_jacchia "Agide Jacchia"))) (type fb:music.conductor) List previous conductors of the Boston Pops. Adolf Neuendorff 1.618 formula (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops))) (value (list (name fb:en.john_willams "John Williams") (name fb:en.arthur_fiedler "Arthur Fiedler") (name fb:en.keith_lockhart "Keith Lockhart") (name fb:en.adolf_neuendorff "Adolf Neuendorff") (name fb:en.timothee_adamowski "Timothee Adamowski") (name fb:en.alfredo_casella "Alfredo Casella") (name fb:en.franz_kneisel "Franz Kneisel") (name fb:en.josef_pasternack "Josef Pasternack") (name fb:en.agide_jacchia "Agide Jacchia"))) (type fb:music.conductor) List previous conductors of the Boston Pops. Timothee Adamowski 1.618 formula (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops))) (value (list (name fb:en.john_willams "John Williams") (name fb:en.arthur_fiedler "Arthur Fiedler") (name fb:en.keith_lockhart "Keith Lockhart") (name fb:en.adolf_neuendorff "Adolf Neuendorff") (name fb:en.timothee_adamowski "Timothee Adamowski") (name fb:en.alfredo_casella "Alfredo Casella") (name fb:en.franz_kneisel "Franz Kneisel") (name fb:en.josef_pasternack "Josef Pasternack") (name fb:en.agide_jacchia "Agide Jacchia"))) (type fb:music.conductor) List previous conductors of the Boston Pops. Alfredo Casella 1.618 formula (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops))) (value (list (name fb:en.john_willams "John Williams") (name fb:en.arthur_fiedler "Arthur Fiedler") (name fb:en.keith_lockhart "Keith Lockhart") (name fb:en.adolf_neuendorff "Adolf Neuendorff") (name fb:en.timothee_adamowski "Timothee Adamowski") (name fb:en.alfredo_casella "Alfredo Casella") (name fb:en.franz_kneisel "Franz Kneisel") (name fb:en.josef_pasternack "Josef Pasternack") (name fb:en.agide_jacchia "Agide Jacchia"))) (type fb:music.conductor) List previous conductors of the Boston Pops. Franz Kneisel 1.618 formula (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops))) (value (list (name fb:en.john_willams "John Williams") (name fb:en.arthur_fiedler "Arthur Fiedler") (name fb:en.keith_lockhart "Keith Lockhart") (name fb:en.adolf_neuendorff "Adolf Neuendorff") (name fb:en.timothee_adamowski "Timothee Adamowski") (name fb:en.alfredo_casella "Alfredo Casella") (name fb:en.franz_kneisel "Franz Kneisel") (name fb:en.josef_pasternack "Josef Pasternack") (name fb:en.agide_jacchia "Agide Jacchia"))) (type fb:music.conductor) List previous conductors of the Boston Pops. Josef Pasternack 1.618 formula (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops))) (value (list (name fb:en.john_willams "John Williams") (name fb:en.arthur_fiedler "Arthur Fiedler") (name fb:en.keith_lockhart "Keith Lockhart") (name fb:en.adolf_neuendorff "Adolf Neuendorff") (name fb:en.timothee_adamowski "Timothee Adamowski") (name fb:en.alfredo_casella "Alfredo Casella") (name fb:en.franz_kneisel "Franz Kneisel") (name fb:en.josef_pasternack "Josef Pasternack") (name fb:en.agide_jacchia "Agide Jacchia"))) (type fb:music.conductor) List previous conductors of the Boston Pops. Agide Jacchia 1.618 formula (and (fb:type.object.type fb:music.conductor) ((lambda x (!fb:music.conducting_tenure.conductor (!fb:music.conducted_ensemble.conductors (var x)))) fb:en.the_boston_pops))) (value (list (name fb:en.john_willams "John Williams") (name fb:en.arthur_fiedler "Arthur Fiedler") (name fb:en.keith_lockhart "Keith Lockhart") (name fb:en.adolf_neuendorff "Adolf Neuendorff") (name fb:en.timothee_adamowski "Timothee Adamowski") (name fb:en.alfredo_casella "Alfredo Casella") (name fb:en.franz_kneisel "Franz Kneisel") (name fb:en.josef_pasternack "Josef Pasternack") (name fb:en.agide_jacchia "Agide Jacchia"))) (type fb:music.conductor) When was the Food-for-Oil Agreement signed? Avobenzone and octocrylene and oxybenzone 0.005/0.035/0.015 oil -1.55 formula (!fb:medicine.drug_dosage_form.formulations_available_in_this_form fb:en.oil)) (value (list (name fb:m.0hqrzj4 "Avobenzone and octocrylene and oxybenzone 0.005/0.035/0.015 oil") (name fb:m.0hqs11n "Soybean 0.391 oil") (name fb:m.0hqs2vw "Aconitum napellus, bryonia alba, geranium maculatum, hypericum 0.0508/0.0339/0.0339/0.0508 oil") (name fb:m.0hqv0b9 "Aconitum napellus, bryonia alba, hypericum 0.0508/0.0339/0.0508 oil") (name fb:m.0hqthqz "Camphor, menthol, methyl salicylate 0.04/0.0145/0.184 oil") (name fb:m.0hqtmhr "Camphor, menthol, and methyl salicylate 60/146/400 oil") (name fb:m.0hqrf09 "Tea tree oil 1 oil") (name fb:m.0jxldwb "Avobenzone homosalate octisalate octocrylene oxybenzone 0.03/0.15/0.05/0.07/0.06 oil") (name fb:m.0hqv1kn "Fluocinolone acetonide 0.00093 oil") (name fb:m.0jxp3qm "Fluocinolone acetonide 0.11 oil"))) (type fb:medicine.drug_formulation) When was the Food-for-Oil Agreement signed? Soybean 0.391 oil -1.55 formula (!fb:medicine.drug_dosage_form.formulations_available_in_this_form fb:en.oil)) (value (list (name fb:m.0hqrzj4 "Avobenzone and octocrylene and oxybenzone 0.005/0.035/0.015 oil") (name fb:m.0hqs11n "Soybean 0.391 oil") (name fb:m.0hqs2vw "Aconitum napellus, bryonia alba, geranium maculatum, hypericum 0.0508/0.0339/0.0339/0.0508 oil") (name fb:m.0hqv0b9 "Aconitum napellus, bryonia alba, hypericum 0.0508/0.0339/0.0508 oil") (name fb:m.0hqthqz "Camphor, menthol, methyl salicylate 0.04/0.0145/0.184 oil") (name fb:m.0hqtmhr "Camphor, menthol, and methyl salicylate 60/146/400 oil") (name fb:m.0hqrf09 "Tea tree oil 1 oil") (name fb:m.0jxldwb "Avobenzone homosalate octisalate octocrylene oxybenzone 0.03/0.15/0.05/0.07/0.06 oil") (name fb:m.0hqv1kn "Fluocinolone acetonide 0.00093 oil") (name fb:m.0jxp3qm "Fluocinolone acetonide 0.11 oil"))) (type fb:medicine.drug_formulation) When was the Food-for-Oil Agreement signed? Aconitum napellus, bryonia alba, geranium maculatum, hypericum 0.0508/0.0339/0.0339/0.0508 oil -1.55 formula (!fb:medicine.drug_dosage_form.formulations_available_in_this_form fb:en.oil)) (value (list (name fb:m.0hqrzj4 "Avobenzone and octocrylene and oxybenzone 0.005/0.035/0.015 oil") (name fb:m.0hqs11n "Soybean 0.391 oil") (name fb:m.0hqs2vw "Aconitum napellus, bryonia alba, geranium maculatum, hypericum 0.0508/0.0339/0.0339/0.0508 oil") (name fb:m.0hqv0b9 "Aconitum napellus, bryonia alba, hypericum 0.0508/0.0339/0.0508 oil") (name fb:m.0hqthqz "Camphor, menthol, methyl salicylate 0.04/0.0145/0.184 oil") (name fb:m.0hqtmhr "Camphor, menthol, and methyl salicylate 60/146/400 oil") (name fb:m.0hqrf09 "Tea tree oil 1 oil") (name fb:m.0jxldwb "Avobenzone homosalate octisalate octocrylene oxybenzone 0.03/0.15/0.05/0.07/0.06 oil") (name fb:m.0hqv1kn "Fluocinolone acetonide 0.00093 oil") (name fb:m.0jxp3qm "Fluocinolone acetonide 0.11 oil"))) (type fb:medicine.drug_formulation) When was the Food-for-Oil Agreement signed? Aconitum napellus, bryonia alba, hypericum 0.0508/0.0339/0.0508 oil -1.55 formula (!fb:medicine.drug_dosage_form.formulations_available_in_this_form fb:en.oil)) (value (list (name fb:m.0hqrzj4 "Avobenzone and octocrylene and oxybenzone 0.005/0.035/0.015 oil") (name fb:m.0hqs11n "Soybean 0.391 oil") (name fb:m.0hqs2vw "Aconitum napellus, bryonia alba, geranium maculatum, hypericum 0.0508/0.0339/0.0339/0.0508 oil") (name fb:m.0hqv0b9 "Aconitum napellus, bryonia alba, hypericum 0.0508/0.0339/0.0508 oil") (name fb:m.0hqthqz "Camphor, menthol, methyl salicylate 0.04/0.0145/0.184 oil") (name fb:m.0hqtmhr "Camphor, menthol, and methyl salicylate 60/146/400 oil") (name fb:m.0hqrf09 "Tea tree oil 1 oil") (name fb:m.0jxldwb "Avobenzone homosalate octisalate octocrylene oxybenzone 0.03/0.15/0.05/0.07/0.06 oil") (name fb:m.0hqv1kn "Fluocinolone acetonide 0.00093 oil") (name fb:m.0jxp3qm "Fluocinolone acetonide 0.11 oil"))) (type fb:medicine.drug_formulation) When was the Food-for-Oil Agreement signed? Camphor, menthol, methyl salicylate 0.04/0.0145/0.184 oil -1.55 formula (!fb:medicine.drug_dosage_form.formulations_available_in_this_form fb:en.oil)) (value (list (name fb:m.0hqrzj4 "Avobenzone and octocrylene and oxybenzone 0.005/0.035/0.015 oil") (name fb:m.0hqs11n "Soybean 0.391 oil") (name fb:m.0hqs2vw "Aconitum napellus, bryonia alba, geranium maculatum, hypericum 0.0508/0.0339/0.0339/0.0508 oil") (name fb:m.0hqv0b9 "Aconitum napellus, bryonia alba, hypericum 0.0508/0.0339/0.0508 oil") (name fb:m.0hqthqz "Camphor, menthol, methyl salicylate 0.04/0.0145/0.184 oil") (name fb:m.0hqtmhr "Camphor, menthol, and methyl salicylate 60/146/400 oil") (name fb:m.0hqrf09 "Tea tree oil 1 oil") (name fb:m.0jxldwb "Avobenzone homosalate octisalate octocrylene oxybenzone 0.03/0.15/0.05/0.07/0.06 oil") (name fb:m.0hqv1kn "Fluocinolone acetonide 0.00093 oil") (name fb:m.0jxp3qm "Fluocinolone acetonide 0.11 oil"))) (type fb:medicine.drug_formulation) When was the Food-for-Oil Agreement signed? Camphor, menthol, and methyl salicylate 60/146/400 oil -1.55 formula (!fb:medicine.drug_dosage_form.formulations_available_in_this_form fb:en.oil)) (value (list (name fb:m.0hqrzj4 "Avobenzone and octocrylene and oxybenzone 0.005/0.035/0.015 oil") (name fb:m.0hqs11n "Soybean 0.391 oil") (name fb:m.0hqs2vw "Aconitum napellus, bryonia alba, geranium maculatum, hypericum 0.0508/0.0339/0.0339/0.0508 oil") (name fb:m.0hqv0b9 "Aconitum napellus, bryonia alba, hypericum 0.0508/0.0339/0.0508 oil") (name fb:m.0hqthqz "Camphor, menthol, methyl salicylate 0.04/0.0145/0.184 oil") (name fb:m.0hqtmhr "Camphor, menthol, and methyl salicylate 60/146/400 oil") (name fb:m.0hqrf09 "Tea tree oil 1 oil") (name fb:m.0jxldwb "Avobenzone homosalate octisalate octocrylene oxybenzone 0.03/0.15/0.05/0.07/0.06 oil") (name fb:m.0hqv1kn "Fluocinolone acetonide 0.00093 oil") (name fb:m.0jxp3qm "Fluocinolone acetonide 0.11 oil"))) (type fb:medicine.drug_formulation) When was the Food-for-Oil Agreement signed? Tea tree oil 1 oil -1.55 formula (!fb:medicine.drug_dosage_form.formulations_available_in_this_form fb:en.oil)) (value (list (name fb:m.0hqrzj4 "Avobenzone and octocrylene and oxybenzone 0.005/0.035/0.015 oil") (name fb:m.0hqs11n "Soybean 0.391 oil") (name fb:m.0hqs2vw "Aconitum napellus, bryonia alba, geranium maculatum, hypericum 0.0508/0.0339/0.0339/0.0508 oil") (name fb:m.0hqv0b9 "Aconitum napellus, bryonia alba, hypericum 0.0508/0.0339/0.0508 oil") (name fb:m.0hqthqz "Camphor, menthol, methyl salicylate 0.04/0.0145/0.184 oil") (name fb:m.0hqtmhr "Camphor, menthol, and methyl salicylate 60/146/400 oil") (name fb:m.0hqrf09 "Tea tree oil 1 oil") (name fb:m.0jxldwb "Avobenzone homosalate octisalate octocrylene oxybenzone 0.03/0.15/0.05/0.07/0.06 oil") (name fb:m.0hqv1kn "Fluocinolone acetonide 0.00093 oil") (name fb:m.0jxp3qm "Fluocinolone acetonide 0.11 oil"))) (type fb:medicine.drug_formulation) When was the Food-for-Oil Agreement signed? Avobenzone homosalate octisalate octocrylene oxybenzone 0.03/0.15/0.05/0.07/0.06 oil -1.55 formula (!fb:medicine.drug_dosage_form.formulations_available_in_this_form fb:en.oil)) (value (list (name fb:m.0hqrzj4 "Avobenzone and octocrylene and oxybenzone 0.005/0.035/0.015 oil") (name fb:m.0hqs11n "Soybean 0.391 oil") (name fb:m.0hqs2vw "Aconitum napellus, bryonia alba, geranium maculatum, hypericum 0.0508/0.0339/0.0339/0.0508 oil") (name fb:m.0hqv0b9 "Aconitum napellus, bryonia alba, hypericum 0.0508/0.0339/0.0508 oil") (name fb:m.0hqthqz "Camphor, menthol, methyl salicylate 0.04/0.0145/0.184 oil") (name fb:m.0hqtmhr "Camphor, menthol, and methyl salicylate 60/146/400 oil") (name fb:m.0hqrf09 "Tea tree oil 1 oil") (name fb:m.0jxldwb "Avobenzone homosalate octisalate octocrylene oxybenzone 0.03/0.15/0.05/0.07/0.06 oil") (name fb:m.0hqv1kn "Fluocinolone acetonide 0.00093 oil") (name fb:m.0jxp3qm "Fluocinolone acetonide 0.11 oil"))) (type fb:medicine.drug_formulation) When was the Food-for-Oil Agreement signed? Fluocinolone acetonide 0.00093 oil -1.55 formula (!fb:medicine.drug_dosage_form.formulations_available_in_this_form fb:en.oil)) (value (list (name fb:m.0hqrzj4 "Avobenzone and octocrylene and oxybenzone 0.005/0.035/0.015 oil") (name fb:m.0hqs11n "Soybean 0.391 oil") (name fb:m.0hqs2vw "Aconitum napellus, bryonia alba, geranium maculatum, hypericum 0.0508/0.0339/0.0339/0.0508 oil") (name fb:m.0hqv0b9 "Aconitum napellus, bryonia alba, hypericum 0.0508/0.0339/0.0508 oil") (name fb:m.0hqthqz "Camphor, menthol, methyl salicylate 0.04/0.0145/0.184 oil") (name fb:m.0hqtmhr "Camphor, menthol, and methyl salicylate 60/146/400 oil") (name fb:m.0hqrf09 "Tea tree oil 1 oil") (name fb:m.0jxldwb "Avobenzone homosalate octisalate octocrylene oxybenzone 0.03/0.15/0.05/0.07/0.06 oil") (name fb:m.0hqv1kn "Fluocinolone acetonide 0.00093 oil") (name fb:m.0jxp3qm "Fluocinolone acetonide 0.11 oil"))) (type fb:medicine.drug_formulation) When was the Food-for-Oil Agreement signed? Fluocinolone acetonide 0.11 oil -1.55 formula (!fb:medicine.drug_dosage_form.formulations_available_in_this_form fb:en.oil)) (value (list (name fb:m.0hqrzj4 "Avobenzone and octocrylene and oxybenzone 0.005/0.035/0.015 oil") (name fb:m.0hqs11n "Soybean 0.391 oil") (name fb:m.0hqs2vw "Aconitum napellus, bryonia alba, geranium maculatum, hypericum 0.0508/0.0339/0.0339/0.0508 oil") (name fb:m.0hqv0b9 "Aconitum napellus, bryonia alba, hypericum 0.0508/0.0339/0.0508 oil") (name fb:m.0hqthqz "Camphor, menthol, methyl salicylate 0.04/0.0145/0.184 oil") (name fb:m.0hqtmhr "Camphor, menthol, and methyl salicylate 60/146/400 oil") (name fb:m.0hqrf09 "Tea tree oil 1 oil") (name fb:m.0jxldwb "Avobenzone homosalate octisalate octocrylene oxybenzone 0.03/0.15/0.05/0.07/0.06 oil") (name fb:m.0hqv1kn "Fluocinolone acetonide 0.00093 oil") (name fb:m.0jxp3qm "Fluocinolone acetonide 0.11 oil"))) (type fb:medicine.drug_formulation) What was the original estimated cost of the Big Dig? United States dollar 0.757 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:measurement_unit.dated_money_value.currency (!fb:projects.project.actual_cost (var x)))) fb:en.big_dig))) (value (list (name fb:en.us "United States dollar"))) (type fb:finance.currency) What year was the phonograph invented? Thomas Edison -6.133 formula (and (fb:type.object.type fb:common.topic) (!fb:law.invention.inventor fb:en.phonograph))) (value (list (name fb:en.thomas_edison "Thomas Edison") (name fb:en.emile_berliner "Emile Berliner") (name fb:en.eldridge_r_johnson "Eldridge R. Johnson"))) (type fb:law.inventor) What year was the phonograph invented? Emile Berliner -6.133 formula (and (fb:type.object.type fb:common.topic) (!fb:law.invention.inventor fb:en.phonograph))) (value (list (name fb:en.thomas_edison "Thomas Edison") (name fb:en.emile_berliner "Emile Berliner") (name fb:en.eldridge_r_johnson "Eldridge R. Johnson"))) (type fb:law.inventor) What year was the phonograph invented? Eldridge R. Johnson -6.133 formula (and (fb:type.object.type fb:common.topic) (!fb:law.invention.inventor fb:en.phonograph))) (value (list (name fb:en.thomas_edison "Thomas Edison") (name fb:en.emile_berliner "Emile Berliner") (name fb:en.eldridge_r_johnson "Eldridge R. Johnson"))) (type fb:law.inventor) What team drafted Brett Favre? Green Bay Packers 0.113 formula (and (fb:type.object.type fb:common.topic) (!fb:user.szaijan.fantasy_football.player.nfl_team fb:en.brett_favre))) (value (list (name fb:en.green_bay_packers "Green Bay Packers"))) (type fb:american_football.football_team) What is the inner peel of an orange called? Blissful Master Index -1.754 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.orange_peel))) (value (list (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) What is the inner peel of an orange called? Blissful Celebrities -1.754 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.orange_peel))) (value (list (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) Where is Rider College located? Trinity College, Cambridge -5.468 formula (and (fb:type.object.type fb:education.educational_institution) (!fb:education.school_category.schools_of_this_kind fb:en.college))) (value (list (name fb:en.trinity_college_cambridge "Trinity College, Cambridge") (name fb:en.christ_church_oxford "Christ Church, Oxford") (name fb:en.jesus_college_cambridge "Jesus College, Cambridge") (name fb:en.the_art_institute_of_california_hollywood "The Art Institute of California - Hollywood") (name fb:en.northern_new_mexico_college "Northern New Mexico College") (name fb:en.claremont_mckenna_college "Claremont McKenna College") (name fb:en.st_catherines_college_oxford "St Catherine's College, Oxford") (name fb:en.the_art_institute_of_austin "The Art Institute of Austin") (name fb:en.clare_college_cambridge "Clare College, Cambridge") (name fb:en.pomona_college "Pomona College"))) (type fb:education.educational_institution) Where is Rider College located? Christ Church, Oxford -5.468 formula (and (fb:type.object.type fb:education.educational_institution) (!fb:education.school_category.schools_of_this_kind fb:en.college))) (value (list (name fb:en.trinity_college_cambridge "Trinity College, Cambridge") (name fb:en.christ_church_oxford "Christ Church, Oxford") (name fb:en.jesus_college_cambridge "Jesus College, Cambridge") (name fb:en.the_art_institute_of_california_hollywood "The Art Institute of California - Hollywood") (name fb:en.northern_new_mexico_college "Northern New Mexico College") (name fb:en.claremont_mckenna_college "Claremont McKenna College") (name fb:en.st_catherines_college_oxford "St Catherine's College, Oxford") (name fb:en.the_art_institute_of_austin "The Art Institute of Austin") (name fb:en.clare_college_cambridge "Clare College, Cambridge") (name fb:en.pomona_college "Pomona College"))) (type fb:education.educational_institution) Where is Rider College located? Jesus College, Cambridge -5.468 formula (and (fb:type.object.type fb:education.educational_institution) (!fb:education.school_category.schools_of_this_kind fb:en.college))) (value (list (name fb:en.trinity_college_cambridge "Trinity College, Cambridge") (name fb:en.christ_church_oxford "Christ Church, Oxford") (name fb:en.jesus_college_cambridge "Jesus College, Cambridge") (name fb:en.the_art_institute_of_california_hollywood "The Art Institute of California - Hollywood") (name fb:en.northern_new_mexico_college "Northern New Mexico College") (name fb:en.claremont_mckenna_college "Claremont McKenna College") (name fb:en.st_catherines_college_oxford "St Catherine's College, Oxford") (name fb:en.the_art_institute_of_austin "The Art Institute of Austin") (name fb:en.clare_college_cambridge "Clare College, Cambridge") (name fb:en.pomona_college "Pomona College"))) (type fb:education.educational_institution) Where is Rider College located? The Art Institute of California - Hollywood -5.468 formula (and (fb:type.object.type fb:education.educational_institution) (!fb:education.school_category.schools_of_this_kind fb:en.college))) (value (list (name fb:en.trinity_college_cambridge "Trinity College, Cambridge") (name fb:en.christ_church_oxford "Christ Church, Oxford") (name fb:en.jesus_college_cambridge "Jesus College, Cambridge") (name fb:en.the_art_institute_of_california_hollywood "The Art Institute of California - Hollywood") (name fb:en.northern_new_mexico_college "Northern New Mexico College") (name fb:en.claremont_mckenna_college "Claremont McKenna College") (name fb:en.st_catherines_college_oxford "St Catherine's College, Oxford") (name fb:en.the_art_institute_of_austin "The Art Institute of Austin") (name fb:en.clare_college_cambridge "Clare College, Cambridge") (name fb:en.pomona_college "Pomona College"))) (type fb:education.educational_institution) Where is Rider College located? Northern New Mexico College -5.468 formula (and (fb:type.object.type fb:education.educational_institution) (!fb:education.school_category.schools_of_this_kind fb:en.college))) (value (list (name fb:en.trinity_college_cambridge "Trinity College, Cambridge") (name fb:en.christ_church_oxford "Christ Church, Oxford") (name fb:en.jesus_college_cambridge "Jesus College, Cambridge") (name fb:en.the_art_institute_of_california_hollywood "The Art Institute of California - Hollywood") (name fb:en.northern_new_mexico_college "Northern New Mexico College") (name fb:en.claremont_mckenna_college "Claremont McKenna College") (name fb:en.st_catherines_college_oxford "St Catherine's College, Oxford") (name fb:en.the_art_institute_of_austin "The Art Institute of Austin") (name fb:en.clare_college_cambridge "Clare College, Cambridge") (name fb:en.pomona_college "Pomona College"))) (type fb:education.educational_institution) Where is Rider College located? Claremont McKenna College -5.468 formula (and (fb:type.object.type fb:education.educational_institution) (!fb:education.school_category.schools_of_this_kind fb:en.college))) (value (list (name fb:en.trinity_college_cambridge "Trinity College, Cambridge") (name fb:en.christ_church_oxford "Christ Church, Oxford") (name fb:en.jesus_college_cambridge "Jesus College, Cambridge") (name fb:en.the_art_institute_of_california_hollywood "The Art Institute of California - Hollywood") (name fb:en.northern_new_mexico_college "Northern New Mexico College") (name fb:en.claremont_mckenna_college "Claremont McKenna College") (name fb:en.st_catherines_college_oxford "St Catherine's College, Oxford") (name fb:en.the_art_institute_of_austin "The Art Institute of Austin") (name fb:en.clare_college_cambridge "Clare College, Cambridge") (name fb:en.pomona_college "Pomona College"))) (type fb:education.educational_institution) Where is Rider College located? St Catherine's College, Oxford -5.468 formula (and (fb:type.object.type fb:education.educational_institution) (!fb:education.school_category.schools_of_this_kind fb:en.college))) (value (list (name fb:en.trinity_college_cambridge "Trinity College, Cambridge") (name fb:en.christ_church_oxford "Christ Church, Oxford") (name fb:en.jesus_college_cambridge "Jesus College, Cambridge") (name fb:en.the_art_institute_of_california_hollywood "The Art Institute of California - Hollywood") (name fb:en.northern_new_mexico_college "Northern New Mexico College") (name fb:en.claremont_mckenna_college "Claremont McKenna College") (name fb:en.st_catherines_college_oxford "St Catherine's College, Oxford") (name fb:en.the_art_institute_of_austin "The Art Institute of Austin") (name fb:en.clare_college_cambridge "Clare College, Cambridge") (name fb:en.pomona_college "Pomona College"))) (type fb:education.educational_institution) Where is Rider College located? The Art Institute of Austin -5.468 formula (and (fb:type.object.type fb:education.educational_institution) (!fb:education.school_category.schools_of_this_kind fb:en.college))) (value (list (name fb:en.trinity_college_cambridge "Trinity College, Cambridge") (name fb:en.christ_church_oxford "Christ Church, Oxford") (name fb:en.jesus_college_cambridge "Jesus College, Cambridge") (name fb:en.the_art_institute_of_california_hollywood "The Art Institute of California - Hollywood") (name fb:en.northern_new_mexico_college "Northern New Mexico College") (name fb:en.claremont_mckenna_college "Claremont McKenna College") (name fb:en.st_catherines_college_oxford "St Catherine's College, Oxford") (name fb:en.the_art_institute_of_austin "The Art Institute of Austin") (name fb:en.clare_college_cambridge "Clare College, Cambridge") (name fb:en.pomona_college "Pomona College"))) (type fb:education.educational_institution) Where is Rider College located? Clare College, Cambridge -5.468 formula (and (fb:type.object.type fb:education.educational_institution) (!fb:education.school_category.schools_of_this_kind fb:en.college))) (value (list (name fb:en.trinity_college_cambridge "Trinity College, Cambridge") (name fb:en.christ_church_oxford "Christ Church, Oxford") (name fb:en.jesus_college_cambridge "Jesus College, Cambridge") (name fb:en.the_art_institute_of_california_hollywood "The Art Institute of California - Hollywood") (name fb:en.northern_new_mexico_college "Northern New Mexico College") (name fb:en.claremont_mckenna_college "Claremont McKenna College") (name fb:en.st_catherines_college_oxford "St Catherine's College, Oxford") (name fb:en.the_art_institute_of_austin "The Art Institute of Austin") (name fb:en.clare_college_cambridge "Clare College, Cambridge") (name fb:en.pomona_college "Pomona College"))) (type fb:education.educational_institution) Where is Rider College located? Pomona College -5.468 formula (and (fb:type.object.type fb:education.educational_institution) (!fb:education.school_category.schools_of_this_kind fb:en.college))) (value (list (name fb:en.trinity_college_cambridge "Trinity College, Cambridge") (name fb:en.christ_church_oxford "Christ Church, Oxford") (name fb:en.jesus_college_cambridge "Jesus College, Cambridge") (name fb:en.the_art_institute_of_california_hollywood "The Art Institute of California - Hollywood") (name fb:en.northern_new_mexico_college "Northern New Mexico College") (name fb:en.claremont_mckenna_college "Claremont McKenna College") (name fb:en.st_catherines_college_oxford "St Catherine's College, Oxford") (name fb:en.the_art_institute_of_austin "The Art Institute of Austin") (name fb:en.clare_college_cambridge "Clare College, Cambridge") (name fb:en.pomona_college "Pomona College"))) (type fb:education.educational_institution) What year was the first Little League World Series played? Major League Baseball -3.259 formula (and (fb:type.object.type fb:common.topic) (!fb:sports.sports_championship.league fb:en.world_series))) (value (list (name fb:en.major_league_baseball "Major League Baseball"))) (type fb:sports.sports_league) The extinct Tasmanian tiger is known by what other name? Tigris regalis 0.561 formula (!fb:biology.organism_classification.synonym_scientific_name fb:en.tiger)) (value (list (string "Tigris regalis") (string "Tigris striatus"))) (type fb:type.text) The extinct Tasmanian tiger is known by what other name? Tigris striatus 0.561 formula (!fb:biology.organism_classification.synonym_scientific_name fb:en.tiger)) (value (list (string "Tigris regalis") (string "Tigris striatus"))) (type fb:type.text) Which U.S.A. president appeared on Laugh-In? 2010 Nigerian coup d'etat -6.58 formula (fb:base.culturalevent.event.entity_involved fb:en.president)) (value (list (name fb:en.2010_nigerien_coup_detat "2010 Nigerien coup d'��tat") (name fb:en.may_coup "May Coup") (name fb:en.operation_golden_pheasant "Operation Golden Pheasant"))) (type fb:base.culturalevent.event) Which U.S.A. president appeared on Laugh-In? May Coup -6.58 formula (fb:base.culturalevent.event.entity_involved fb:en.president)) (value (list (name fb:en.2010_nigerien_coup_detat "2010 Nigerien coup d'��tat") (name fb:en.may_coup "May Coup") (name fb:en.operation_golden_pheasant "Operation Golden Pheasant"))) (type fb:base.culturalevent.event) Which U.S.A. president appeared on Laugh-In? Operation Golden Pheasant -6.58 formula (fb:base.culturalevent.event.entity_involved fb:en.president)) (value (list (name fb:en.2010_nigerien_coup_detat "2010 Nigerien coup d'��tat") (name fb:en.may_coup "May Coup") (name fb:en.operation_golden_pheasant "Operation Golden Pheasant"))) (type fb:base.culturalevent.event) What did George Washington call his house? Mount Vernon -0.909 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:architecture.house) (!fb:people.deceased_person.place_of_death fb:en.george_washington)))) (value (list (name fb:en.mount_vernon "Mount Vernon"))) (type fb:architecture.house) In what year was the final episode telecast? Live: Episode 9 -1.576 formula (and (fb:type.object.type fb:common.topic) (!fb:tv.tv_series_episode.previous_episode fb:m.05dfs88))) (value (list (name fb:m.05dfs8r "Live: Episode 9"))) (type fb:tv.tv_series_episode) Name the Virginia wine festivals. Rosa virginiana -3.4 formula (fb:base.roses.roses.named_after fb:en.virginia)) (value (list (name fb:en.rosa_virginiana "Rosa virginiana"))) (type fb:base.roses.roses) What percent of the nation's cheese does Wisconsin produce? Pleasant Ridge Reserve 2.352 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:food.cheese) (fb:food.cheese.region fb:en.wisconsin)))) (value (list (name fb:en.pleasant_ridge_reserve "Pleasant Ridge Reserve") (name fb:m.02h8b9t Benedictine))) (type fb:food.cheese) What was author Jasper Fforde's first book? The Fourth Bear 1.674 formula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y "The Fourth Bear") (name fb:en.the_fourth_bear_nursery_crime_audio "The Fourth Bear (Nursery Crime (Audio))") (name fb:m.04dnp19 "Lost in a Good Book") (name fb:m.04v_1dp "The Big Over Easy") (name fb:m.04v_4vp "The Eyre Affair") (name fb:m.04v_mqv "Something Rotten (Thursday Next)") (name fb:en.lost_in_a_good_book_thursday_next "Lost in a Good Book (Thursday Next)") (name fb:m.04v_1gr "The Big Over Easy") (name fb:m.04v_4xl "The Eyre Affair") (name fb:m.04v_4s8 "The Eyre Affair"))) (type fb:book.book_edition) What was author Jasper Fforde's first book? The Fourth Bear (Nursery Crime (Audio)) 1.674 formula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y "The Fourth Bear") (name fb:en.the_fourth_bear_nursery_crime_audio "The Fourth Bear (Nursery Crime (Audio))") (name fb:m.04dnp19 "Lost in a Good Book") (name fb:m.04v_1dp "The Big Over Easy") (name fb:m.04v_4vp "The Eyre Affair") (name fb:m.04v_mqv "Something Rotten (Thursday Next)") (name fb:en.lost_in_a_good_book_thursday_next "Lost in a Good Book (Thursday Next)") (name fb:m.04v_1gr "The Big Over Easy") (name fb:m.04v_4xl "The Eyre Affair") (name fb:m.04v_4s8 "The Eyre Affair"))) (type fb:book.book_edition) What was author Jasper Fforde's first book? Lost in a Good Book 1.674 formula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y "The Fourth Bear") (name fb:en.the_fourth_bear_nursery_crime_audio "The Fourth Bear (Nursery Crime (Audio))") (name fb:m.04dnp19 "Lost in a Good Book") (name fb:m.04v_1dp "The Big Over Easy") (name fb:m.04v_4vp "The Eyre Affair") (name fb:m.04v_mqv "Something Rotten (Thursday Next)") (name fb:en.lost_in_a_good_book_thursday_next "Lost in a Good Book (Thursday Next)") (name fb:m.04v_1gr "The Big Over Easy") (name fb:m.04v_4xl "The Eyre Affair") (name fb:m.04v_4s8 "The Eyre Affair"))) (type fb:book.book_edition) What was author Jasper Fforde's first book? The Big Over Easy 1.674 formula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y "The Fourth Bear") (name fb:en.the_fourth_bear_nursery_crime_audio "The Fourth Bear (Nursery Crime (Audio))") (name fb:m.04dnp19 "Lost in a Good Book") (name fb:m.04v_1dp "The Big Over Easy") (name fb:m.04v_4vp "The Eyre Affair") (name fb:m.04v_mqv "Something Rotten (Thursday Next)") (name fb:en.lost_in_a_good_book_thursday_next "Lost in a Good Book (Thursday Next)") (name fb:m.04v_1gr "The Big Over Easy") (name fb:m.04v_4xl "The Eyre Affair") (name fb:m.04v_4s8 "The Eyre Affair"))) (type fb:book.book_edition) What was author Jasper Fforde's first book? The Eyre Affair 1.674 formula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y "The Fourth Bear") (name fb:en.the_fourth_bear_nursery_crime_audio "The Fourth Bear (Nursery Crime (Audio))") (name fb:m.04dnp19 "Lost in a Good Book") (name fb:m.04v_1dp "The Big Over Easy") (name fb:m.04v_4vp "The Eyre Affair") (name fb:m.04v_mqv "Something Rotten (Thursday Next)") (name fb:en.lost_in_a_good_book_thursday_next "Lost in a Good Book (Thursday Next)") (name fb:m.04v_1gr "The Big Over Easy") (name fb:m.04v_4xl "The Eyre Affair") (name fb:m.04v_4s8 "The Eyre Affair"))) (type fb:book.book_edition) What was author Jasper Fforde's first book? Something Rotten (Thursday Next) 1.674 formula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y "The Fourth Bear") (name fb:en.the_fourth_bear_nursery_crime_audio "The Fourth Bear (Nursery Crime (Audio))") (name fb:m.04dnp19 "Lost in a Good Book") (name fb:m.04v_1dp "The Big Over Easy") (name fb:m.04v_4vp "The Eyre Affair") (name fb:m.04v_mqv "Something Rotten (Thursday Next)") (name fb:en.lost_in_a_good_book_thursday_next "Lost in a Good Book (Thursday Next)") (name fb:m.04v_1gr "The Big Over Easy") (name fb:m.04v_4xl "The Eyre Affair") (name fb:m.04v_4s8 "The Eyre Affair"))) (type fb:book.book_edition) What was author Jasper Fforde's first book? Lost in a Good Book (Thursday Next) 1.674 formula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y "The Fourth Bear") (name fb:en.the_fourth_bear_nursery_crime_audio "The Fourth Bear (Nursery Crime (Audio))") (name fb:m.04dnp19 "Lost in a Good Book") (name fb:m.04v_1dp "The Big Over Easy") (name fb:m.04v_4vp "The Eyre Affair") (name fb:m.04v_mqv "Something Rotten (Thursday Next)") (name fb:en.lost_in_a_good_book_thursday_next "Lost in a Good Book (Thursday Next)") (name fb:m.04v_1gr "The Big Over Easy") (name fb:m.04v_4xl "The Eyre Affair") (name fb:m.04v_4s8 "The Eyre Affair"))) (type fb:book.book_edition) What was author Jasper Fforde's first book? The Big Over Easy 1.674 formula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y "The Fourth Bear") (name fb:en.the_fourth_bear_nursery_crime_audio "The Fourth Bear (Nursery Crime (Audio))") (name fb:m.04dnp19 "Lost in a Good Book") (name fb:m.04v_1dp "The Big Over Easy") (name fb:m.04v_4vp "The Eyre Affair") (name fb:m.04v_mqv "Something Rotten (Thursday Next)") (name fb:en.lost_in_a_good_book_thursday_next "Lost in a Good Book (Thursday Next)") (name fb:m.04v_1gr "The Big Over Easy") (name fb:m.04v_4xl "The Eyre Affair") (name fb:m.04v_4s8 "The Eyre Affair"))) (type fb:book.book_edition) What was author Jasper Fforde's first book? The Eyre Affair 1.674 formula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y "The Fourth Bear") (name fb:en.the_fourth_bear_nursery_crime_audio "The Fourth Bear (Nursery Crime (Audio))") (name fb:m.04dnp19 "Lost in a Good Book") (name fb:m.04v_1dp "The Big Over Easy") (name fb:m.04v_4vp "The Eyre Affair") (name fb:m.04v_mqv "Something Rotten (Thursday Next)") (name fb:en.lost_in_a_good_book_thursday_next "Lost in a Good Book (Thursday Next)") (name fb:m.04v_1gr "The Big Over Easy") (name fb:m.04v_4xl "The Eyre Affair") (name fb:m.04v_4s8 "The Eyre Affair"))) (type fb:book.book_edition) What was author Jasper Fforde's first book? The Eyre Affair 1.674 formula (and (fb:type.object.type fb:common.topic) (!fb:book.author.book_editions_published fb:en.jasper_fforde))) (value (list (name fb:m.04tp45y "The Fourth Bear") (name fb:en.the_fourth_bear_nursery_crime_audio "The Fourth Bear (Nursery Crime (Audio))") (name fb:m.04dnp19 "Lost in a Good Book") (name fb:m.04v_1dp "The Big Over Easy") (name fb:m.04v_4vp "The Eyre Affair") (name fb:m.04v_mqv "Something Rotten (Thursday Next)") (name fb:en.lost_in_a_good_book_thursday_next "Lost in a Good Book (Thursday Next)") (name fb:m.04v_1gr "The Big Over Easy") (name fb:m.04v_4xl "The Eyre Affair") (name fb:m.04v_4s8 "The Eyre Affair"))) (type fb:book.book_edition) What was Malcolm X's original surname? United States of America -0.974 formula (and (fb:type.object.type fb:common.topic) (!fb:film.film.country fb:en.malcolm_x_1992))) (value (list (name fb:en.united_states_of_america "United States of America"))) (type fb:location.country) In what year was the Guinness Brewery founded? Gluten-free diet -2.452 formula (and (fb:type.object.type fb:common.topic) (!fb:food.ingredient.incompatible_with_dietary_restrictions fb:en.guinness))) (value (list (name fb:en.gluten-free_diet "Gluten-free diet") (name fb:en.veganism Veganism))) (type fb:food.dietary_restriction) How close is Mesa to Phoenix? Gloss Mountains -0.844 formula (!fb:common.topic.image fb:m.02289q)) (value (list (name fb:m.03qw6k6 "Gloss Mountains") (name fb:m.0g_k2pl IslandInTheSky) (name fb:m.0ccl0hj IslandInTheSky))) (type fb:common.image) Who founded the House of Chanel? Coco Chanel -2.883 formula (and (fb:type.object.type fb:common.topic) (fb:organization.organization_founder.organizations_founded fb:en.chanel))) (value (list (name fb:en.coco_chanel "Coco Chanel"))) (type fb:organization.organization_founder) At what age did Rossini stop writing opera? Tough Love from Author Enablers Helps Get the Writing Job Done -5.37 formula (and (fb:type.object.type fb:common.topic) (!fb:common.topic.subject_of fb:en.writing))) (value (list (name fb:m.0gtq6dj "Tough Love from Author Enablers Helps Get the Writing Job Done") (name fb:m.0g5n39t "Regarding Rituals, Elegies, and This New Year 2011") (name fb:m.0gw8dwg "The Approaching 100th Anniversary of the Harlem Renaissance (part 1)"))) (type fb:common.topic) At what age did Rossini stop writing opera? Regarding Rituals, Elegies, and This New Year 2011 -5.37 formula (and (fb:type.object.type fb:common.topic) (!fb:common.topic.subject_of fb:en.writing))) (value (list (name fb:m.0gtq6dj "Tough Love from Author Enablers Helps Get the Writing Job Done") (name fb:m.0g5n39t "Regarding Rituals, Elegies, and This New Year 2011") (name fb:m.0gw8dwg "The Approaching 100th Anniversary of the Harlem Renaissance (part 1)"))) (type fb:common.topic) At what age did Rossini stop writing opera? The Approaching 100th Anniversary of the Harlem Renaissance (part 1) -5.37 formula (and (fb:type.object.type fb:common.topic) (!fb:common.topic.subject_of fb:en.writing))) (value (list (name fb:m.0gtq6dj "Tough Love from Author Enablers Helps Get the Writing Job Done") (name fb:m.0g5n39t "Regarding Rituals, Elegies, and This New Year 2011") (name fb:m.0gw8dwg "The Approaching 100th Anniversary of the Harlem Renaissance (part 1)"))) (type fb:common.topic) Who founded Wal-Mart? Jack Little -8.016 formula (and (fb:type.object.type fb:people.person) (fb:people.person.place_of_birth fb:en.mart))) (value (list (name fb:m.05b08vy "Jack Little") (name fb:en.cindy_walker "Cindy Walker") (name fb:en.quan_cosby "Quan Cosby") (name fb:m.0hr4pp8 "Frankie Lee") (name fb:en.tony_miles_1978 "Tony Miles") (name fb:en.e_donnall_thomas "E. Donnall Thomas") (name fb:m.0gc37d5 "Florine McKinney") (name fb:m.0hzqtzt "Buck Freeman"))) (type fb:people.person) Who founded Wal-Mart? Cindy Walker -8.016 formula (and (fb:type.object.type fb:people.person) (fb:people.person.place_of_birth fb:en.mart))) (value (list (name fb:m.05b08vy "Jack Little") (name fb:en.cindy_walker "Cindy Walker") (name fb:en.quan_cosby "Quan Cosby") (name fb:m.0hr4pp8 "Frankie Lee") (name fb:en.tony_miles_1978 "Tony Miles") (name fb:en.e_donnall_thomas "E. Donnall Thomas") (name fb:m.0gc37d5 "Florine McKinney") (name fb:m.0hzqtzt "Buck Freeman"))) (type fb:people.person) Who founded Wal-Mart? Quan Cosby -8.016 formula (and (fb:type.object.type fb:people.person) (fb:people.person.place_of_birth fb:en.mart))) (value (list (name fb:m.05b08vy "Jack Little") (name fb:en.cindy_walker "Cindy Walker") (name fb:en.quan_cosby "Quan Cosby") (name fb:m.0hr4pp8 "Frankie Lee") (name fb:en.tony_miles_1978 "Tony Miles") (name fb:en.e_donnall_thomas "E. Donnall Thomas") (name fb:m.0gc37d5 "Florine McKinney") (name fb:m.0hzqtzt "Buck Freeman"))) (type fb:people.person) Who founded Wal-Mart? Frankie Lee -8.016 formula (and (fb:type.object.type fb:people.person) (fb:people.person.place_of_birth fb:en.mart))) (value (list (name fb:m.05b08vy "Jack Little") (name fb:en.cindy_walker "Cindy Walker") (name fb:en.quan_cosby "Quan Cosby") (name fb:m.0hr4pp8 "Frankie Lee") (name fb:en.tony_miles_1978 "Tony Miles") (name fb:en.e_donnall_thomas "E. Donnall Thomas") (name fb:m.0gc37d5 "Florine McKinney") (name fb:m.0hzqtzt "Buck Freeman"))) (type fb:people.person) Who founded Wal-Mart? Tony Miles -8.016 formula (and (fb:type.object.type fb:people.person) (fb:people.person.place_of_birth fb:en.mart))) (value (list (name fb:m.05b08vy "Jack Little") (name fb:en.cindy_walker "Cindy Walker") (name fb:en.quan_cosby "Quan Cosby") (name fb:m.0hr4pp8 "Frankie Lee") (name fb:en.tony_miles_1978 "Tony Miles") (name fb:en.e_donnall_thomas "E. Donnall Thomas") (name fb:m.0gc37d5 "Florine McKinney") (name fb:m.0hzqtzt "Buck Freeman"))) (type fb:people.person) Who founded Wal-Mart? E. Donnall Thomas -8.016 formula (and (fb:type.object.type fb:people.person) (fb:people.person.place_of_birth fb:en.mart))) (value (list (name fb:m.05b08vy "Jack Little") (name fb:en.cindy_walker "Cindy Walker") (name fb:en.quan_cosby "Quan Cosby") (name fb:m.0hr4pp8 "Frankie Lee") (name fb:en.tony_miles_1978 "Tony Miles") (name fb:en.e_donnall_thomas "E. Donnall Thomas") (name fb:m.0gc37d5 "Florine McKinney") (name fb:m.0hzqtzt "Buck Freeman"))) (type fb:people.person) Who founded Wal-Mart? Florine McKinney -8.016 formula (and (fb:type.object.type fb:people.person) (fb:people.person.place_of_birth fb:en.mart))) (value (list (name fb:m.05b08vy "Jack Little") (name fb:en.cindy_walker "Cindy Walker") (name fb:en.quan_cosby "Quan Cosby") (name fb:m.0hr4pp8 "Frankie Lee") (name fb:en.tony_miles_1978 "Tony Miles") (name fb:en.e_donnall_thomas "E. Donnall Thomas") (name fb:m.0gc37d5 "Florine McKinney") (name fb:m.0hzqtzt "Buck Freeman"))) (type fb:people.person) Who founded Wal-Mart? Buck Freeman -8.016 formula (and (fb:type.object.type fb:people.person) (fb:people.person.place_of_birth fb:en.mart))) (value (list (name fb:m.05b08vy "Jack Little") (name fb:en.cindy_walker "Cindy Walker") (name fb:en.quan_cosby "Quan Cosby") (name fb:m.0hr4pp8 "Frankie Lee") (name fb:en.tony_miles_1978 "Tony Miles") (name fb:en.e_donnall_thomas "E. Donnall Thomas") (name fb:m.0gc37d5 "Florine McKinney") (name fb:m.0hzqtzt "Buck Freeman"))) (type fb:people.person) What is Susan B. Anthony's birthday? Trelawny Parish -1.835 formula (and (fb:type.object.type fb:common.topic) (!fb:people.person.place_of_birth fb:en.anthony_b))) (value (list (name fb:en.trelawny_parish_jamaica "Trelawny Parish"))) (type fb:location.location) What day did Pearl Harbor occur? Coastal Breakwater Harbor -4.525 formula (and (fb:type.object.type fb:common.topic) (!fb:common.topic.subject_of fb:en.harbor))) (value (list (name fb:en.coastal_breakwater_harbor "Coastal Breakwater Harbor") (name fb:en.river_natural_harbor "River Natural Harbor") (name fb:en.coastal_natural_harbor "Coastal Natural Harbor") (name fb:en.canal_lake_harbor "Canal (Lake) Harbor") (name fb:en.river_tide_gate_harbor "River Tide Gate Harbor") (name fb:en.open_roadstead_harbor "Open Roadstead Harbor") (name fb:en.coastal_tide_gate_harbor "Coastal Tide Gate Harbor") (name fb:en.river_basin_harbor "River Basin Harbor"))) (type fb:common.topic) What day did Pearl Harbor occur? River Natural Harbor -4.525 formula (and (fb:type.object.type fb:common.topic) (!fb:common.topic.subject_of fb:en.harbor))) (value (list (name fb:en.coastal_breakwater_harbor "Coastal Breakwater Harbor") (name fb:en.river_natural_harbor "River Natural Harbor") (name fb:en.coastal_natural_harbor "Coastal Natural Harbor") (name fb:en.canal_lake_harbor "Canal (Lake) Harbor") (name fb:en.river_tide_gate_harbor "River Tide Gate Harbor") (name fb:en.open_roadstead_harbor "Open Roadstead Harbor") (name fb:en.coastal_tide_gate_harbor "Coastal Tide Gate Harbor") (name fb:en.river_basin_harbor "River Basin Harbor"))) (type fb:common.topic) What day did Pearl Harbor occur? Coastal Natural Harbor -4.525 formula (and (fb:type.object.type fb:common.topic) (!fb:common.topic.subject_of fb:en.harbor))) (value (list (name fb:en.coastal_breakwater_harbor "Coastal Breakwater Harbor") (name fb:en.river_natural_harbor "River Natural Harbor") (name fb:en.coastal_natural_harbor "Coastal Natural Harbor") (name fb:en.canal_lake_harbor "Canal (Lake) Harbor") (name fb:en.river_tide_gate_harbor "River Tide Gate Harbor") (name fb:en.open_roadstead_harbor "Open Roadstead Harbor") (name fb:en.coastal_tide_gate_harbor "Coastal Tide Gate Harbor") (name fb:en.river_basin_harbor "River Basin Harbor"))) (type fb:common.topic) What day did Pearl Harbor occur? Canal (Lake) Harbor -4.525 formula (and (fb:type.object.type fb:common.topic) (!fb:common.topic.subject_of fb:en.harbor))) (value (list (name fb:en.coastal_breakwater_harbor "Coastal Breakwater Harbor") (name fb:en.river_natural_harbor "River Natural Harbor") (name fb:en.coastal_natural_harbor "Coastal Natural Harbor") (name fb:en.canal_lake_harbor "Canal (Lake) Harbor") (name fb:en.river_tide_gate_harbor "River Tide Gate Harbor") (name fb:en.open_roadstead_harbor "Open Roadstead Harbor") (name fb:en.coastal_tide_gate_harbor "Coastal Tide Gate Harbor") (name fb:en.river_basin_harbor "River Basin Harbor"))) (type fb:common.topic) What day did Pearl Harbor occur? River Tide Gate Harbor -4.525 formula (and (fb:type.object.type fb:common.topic) (!fb:common.topic.subject_of fb:en.harbor))) (value (list (name fb:en.coastal_breakwater_harbor "Coastal Breakwater Harbor") (name fb:en.river_natural_harbor "River Natural Harbor") (name fb:en.coastal_natural_harbor "Coastal Natural Harbor") (name fb:en.canal_lake_harbor "Canal (Lake) Harbor") (name fb:en.river_tide_gate_harbor "River Tide Gate Harbor") (name fb:en.open_roadstead_harbor "Open Roadstead Harbor") (name fb:en.coastal_tide_gate_harbor "Coastal Tide Gate Harbor") (name fb:en.river_basin_harbor "River Basin Harbor"))) (type fb:common.topic) What day did Pearl Harbor occur? Open Roadstead Harbor -4.525 formula (and (fb:type.object.type fb:common.topic) (!fb:common.topic.subject_of fb:en.harbor))) (value (list (name fb:en.coastal_breakwater_harbor "Coastal Breakwater Harbor") (name fb:en.river_natural_harbor "River Natural Harbor") (name fb:en.coastal_natural_harbor "Coastal Natural Harbor") (name fb:en.canal_lake_harbor "Canal (Lake) Harbor") (name fb:en.river_tide_gate_harbor "River Tide Gate Harbor") (name fb:en.open_roadstead_harbor "Open Roadstead Harbor") (name fb:en.coastal_tide_gate_harbor "Coastal Tide Gate Harbor") (name fb:en.river_basin_harbor "River Basin Harbor"))) (type fb:common.topic) What day did Pearl Harbor occur? Coastal Tide Gate Harbor -4.525 formula (and (fb:type.object.type fb:common.topic) (!fb:common.topic.subject_of fb:en.harbor))) (value (list (name fb:en.coastal_breakwater_harbor "Coastal Breakwater Harbor") (name fb:en.river_natural_harbor "River Natural Harbor") (name fb:en.coastal_natural_harbor "Coastal Natural Harbor") (name fb:en.canal_lake_harbor "Canal (Lake) Harbor") (name fb:en.river_tide_gate_harbor "River Tide Gate Harbor") (name fb:en.open_roadstead_harbor "Open Roadstead Harbor") (name fb:en.coastal_tide_gate_harbor "Coastal Tide Gate Harbor") (name fb:en.river_basin_harbor "River Basin Harbor"))) (type fb:common.topic) What day did Pearl Harbor occur? River Basin Harbor -4.525 formula (and (fb:type.object.type fb:common.topic) (!fb:common.topic.subject_of fb:en.harbor))) (value (list (name fb:en.coastal_breakwater_harbor "Coastal Breakwater Harbor") (name fb:en.river_natural_harbor "River Natural Harbor") (name fb:en.coastal_natural_harbor "Coastal Natural Harbor") (name fb:en.canal_lake_harbor "Canal (Lake) Harbor") (name fb:en.river_tide_gate_harbor "River Tide Gate Harbor") (name fb:en.open_roadstead_harbor "Open Roadstead Harbor") (name fb:en.coastal_tide_gate_harbor "Coastal Tide Gate Harbor") (name fb:en.river_basin_harbor "River Basin Harbor"))) (type fb:common.topic) Which U.S. government employees (either military or civilian) have been accused of spying for foreign countries? Ministry of Information -7.826 formula (!fb:organization.organization_sector.organizations_in_this_sector fb:m.036nz)) (value (list (name fb:en.terminalfour TERMINALFOUR) (name fb:m.0tkjppz Worksafe) (name fb:m.0v3d71g "Ministry of Information"))) (type fb:organization.organization) List the songs he recorded. The Dance 2.098 formula (!fb:music.release.track_list fb:m.049p7qy)) (value (list (name fb:m.0m7lrlj Aesthetics) (name fb:m.0m7lrdp Society) (name fb:m.0m7ltz3 "The Dance") (name fb:m.0m7ltf8 Airplanes) (name fb:m.0m7lrbw "We're In") (name fb:m.0m7ltkr "Dance the Bomb") (name fb:m.0m7ltv1 Civilization) (name fb:m.0m7ltpx "Get the Groove") (name fb:m.0m7lrhm "My Woman"))) (type fb:music.release_track) List the songs he recorded. We're In 2.098 formula (!fb:music.release.track_list fb:m.049p7qy)) (value (list (name fb:m.0m7lrlj Aesthetics) (name fb:m.0m7lrdp Society) (name fb:m.0m7ltz3 "The Dance") (name fb:m.0m7ltf8 Airplanes) (name fb:m.0m7lrbw "We're In") (name fb:m.0m7ltkr "Dance the Bomb") (name fb:m.0m7ltv1 Civilization) (name fb:m.0m7ltpx "Get the Groove") (name fb:m.0m7lrhm "My Woman"))) (type fb:music.release_track) List the songs he recorded. Dance the Bomb 2.098 formula (!fb:music.release.track_list fb:m.049p7qy)) (value (list (name fb:m.0m7lrlj Aesthetics) (name fb:m.0m7lrdp Society) (name fb:m.0m7ltz3 "The Dance") (name fb:m.0m7ltf8 Airplanes) (name fb:m.0m7lrbw "We're In") (name fb:m.0m7ltkr "Dance the Bomb") (name fb:m.0m7ltv1 Civilization) (name fb:m.0m7ltpx "Get the Groove") (name fb:m.0m7lrhm "My Woman"))) (type fb:music.release_track) List the songs he recorded. Get the Groove 2.098 formula (!fb:music.release.track_list fb:m.049p7qy)) (value (list (name fb:m.0m7lrlj Aesthetics) (name fb:m.0m7lrdp Society) (name fb:m.0m7ltz3 "The Dance") (name fb:m.0m7ltf8 Airplanes) (name fb:m.0m7lrbw "We're In") (name fb:m.0m7ltkr "Dance the Bomb") (name fb:m.0m7ltv1 Civilization) (name fb:m.0m7ltpx "Get the Groove") (name fb:m.0m7lrhm "My Woman"))) (type fb:music.release_track) List the songs he recorded. My Woman 2.098 formula (!fb:music.release.track_list fb:m.049p7qy)) (value (list (name fb:m.0m7lrlj Aesthetics) (name fb:m.0m7lrdp Society) (name fb:m.0m7ltz3 "The Dance") (name fb:m.0m7ltf8 Airplanes) (name fb:m.0m7lrbw "We're In") (name fb:m.0m7ltkr "Dance the Bomb") (name fb:m.0m7ltv1 Civilization) (name fb:m.0m7ltpx "Get the Groove") (name fb:m.0m7lrhm "My Woman"))) (type fb:music.release_track) Which African country's major export is coffee? Sierra Leone 3.861 formula (and (fb:type.object.type fb:location.country) ((lambda x (fb:location.statistical_region.major_exports (fb:location.imports_exports_by_industry.industry (var x)))) fb:en.coffee))) (value (list (name fb:en.sierra_leone "Sierra Leone") (name fb:en.angola Angola) (name fb:en.tanzania Tanzania) (name fb:en.madagascar Madagascar) (name fb:en.laos Laos))) (type fb:location.country) Where was Shakespeare born? United States of America -4.785 formula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:film.film_regional_release_date.film_release_region (!fb:film.film.release_date_s (var x)))) fb:m.09vxfhk))) (value (list (name fb:en.united_states_of_america "United States of America") (name fb:en.spain Spain) (name fb:en.germany Germany))) (type fb:location.location) Who is the keeper for Manchester United? Archie Jay Lomas -2.671 formula (and (fb:type.object.type fb:people.person) (!fb:people.place_of_interment.interred_here fb:en.manchester_united_kingdom))) (value (list (name fb:m.0gfp9ns "Archie Jay Lomas") (name fb:en.john_prettyjohns "John Prettyjohns"))) (type fb:people.deceased_person) Who is the keeper for Manchester United? John Prettyjohns -2.671 formula (and (fb:type.object.type fb:people.person) (!fb:people.place_of_interment.interred_here fb:en.manchester_united_kingdom))) (value (list (name fb:m.0gfp9ns "Archie Jay Lomas") (name fb:en.john_prettyjohns "John Prettyjohns"))) (type fb:people.deceased_person) What is amitriptyline? Chlordiazepoxide and amitriptyline 5/12.5 film coated tablet -5.026 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:medicine.drug_formulation.strength (fb:medicine.drug_strength.active_ingredient (var x)))) fb:en.amitriptyline))) (value (list (name fb:m.0hqspz4 "Chlordiazepoxide and amitriptyline 5/12.5 film coated tablet") (name fb:m.0hqszmp "Chlordiazepoxide and amitriptyline 10/25 film coated tablet"))) (type fb:medicine.drug_formulation) What is amitriptyline? Chlordiazepoxide and amitriptyline 10/25 film coated tablet -5.026 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:medicine.drug_formulation.strength (fb:medicine.drug_strength.active_ingredient (var x)))) fb:en.amitriptyline))) (value (list (name fb:m.0hqspz4 "Chlordiazepoxide and amitriptyline 5/12.5 film coated tablet") (name fb:m.0hqszmp "Chlordiazepoxide and amitriptyline 10/25 film coated tablet"))) (type fb:medicine.drug_formulation) Name unusual flavors created by Ben & Jerry's. The Seven of Hearts -3.321 formula (fb:fictional_universe.fictional_character.character_created_by fb:en.ben_edlund)) (value (list (name fb:m.0769fn Arthur) (name fb:en.batmanuel Batmanuel) (name fb:en.the_seven_of_hearts "The Seven of Hearts") (name fb:en.the_tick Tick) (name fb:en.omnipotus Omnipotus) (name fb:en.paul_the_samurai "Paul the Samurai") (name fb:en.thrakkorzog Thrakkorzog) (name fb:en.clark_oppenheimer "Clark Oppenheimer") (name fb:en.chainsaw_vigilante "Chainsaw Vigilante") (name fb:en.tuun_la Tuun-La))) (type fb:fictional_universe.fictional_character) Name unusual flavors created by Ben & Jerry's. Paul the Samurai -3.321 formula (fb:fictional_universe.fictional_character.character_created_by fb:en.ben_edlund)) (value (list (name fb:m.0769fn Arthur) (name fb:en.batmanuel Batmanuel) (name fb:en.the_seven_of_hearts "The Seven of Hearts") (name fb:en.the_tick Tick) (name fb:en.omnipotus Omnipotus) (name fb:en.paul_the_samurai "Paul the Samurai") (name fb:en.thrakkorzog Thrakkorzog) (name fb:en.clark_oppenheimer "Clark Oppenheimer") (name fb:en.chainsaw_vigilante "Chainsaw Vigilante") (name fb:en.tuun_la Tuun-La))) (type fb:fictional_universe.fictional_character) Name unusual flavors created by Ben & Jerry's. Clark Oppenheimer -3.321 formula (fb:fictional_universe.fictional_character.character_created_by fb:en.ben_edlund)) (value (list (name fb:m.0769fn Arthur) (name fb:en.batmanuel Batmanuel) (name fb:en.the_seven_of_hearts "The Seven of Hearts") (name fb:en.the_tick Tick) (name fb:en.omnipotus Omnipotus) (name fb:en.paul_the_samurai "Paul the Samurai") (name fb:en.thrakkorzog Thrakkorzog) (name fb:en.clark_oppenheimer "Clark Oppenheimer") (name fb:en.chainsaw_vigilante "Chainsaw Vigilante") (name fb:en.tuun_la Tuun-La))) (type fb:fictional_universe.fictional_character) Name unusual flavors created by Ben & Jerry's. Chainsaw Vigilante -3.321 formula (fb:fictional_universe.fictional_character.character_created_by fb:en.ben_edlund)) (value (list (name fb:m.0769fn Arthur) (name fb:en.batmanuel Batmanuel) (name fb:en.the_seven_of_hearts "The Seven of Hearts") (name fb:en.the_tick Tick) (name fb:en.omnipotus Omnipotus) (name fb:en.paul_the_samurai "Paul the Samurai") (name fb:en.thrakkorzog Thrakkorzog) (name fb:en.clark_oppenheimer "Clark Oppenheimer") (name fb:en.chainsaw_vigilante "Chainsaw Vigilante") (name fb:en.tuun_la Tuun-La))) (type fb:fictional_universe.fictional_character) Which airlines use Dulles? Independence Air -8.634 formula (and (fb:type.object.type fb:aviation.airline) ((lambda x (!fb:aviation.airline_airport_presence.airline (!fb:aviation.airport.airlines (var x)))) fb:en.washington_dulles_international_airport))) (value (list (name fb:en.independence_air "Independence Air"))) (type fb:aviation.airline) Where was the first golf course in the United States? South Carolina 0.378 formula (and (fb:type.object.type fb:location.location) (!fb:location.country.first_level_divisions fb:en.united_states_of_america))) (value (list (name fb:en.texas Texas) (name fb:en.utah Utah) (name fb:en.louisiana Louisiana) (name fb:en.south_carolina "South Carolina") (name fb:en.west_virginia "West Virginia") (name fb:en.wyoming Wyoming) (name fb:en.virginia Virginia) (name fb:en.washington Washington) (name fb:en.wisconsin Wisconsin) (name fb:en.new_york_state "New York"))) (type fb:location.administrative_division) Where was the first golf course in the United States? West Virginia 0.378 formula (and (fb:type.object.type fb:location.location) (!fb:location.country.first_level_divisions fb:en.united_states_of_america))) (value (list (name fb:en.texas Texas) (name fb:en.utah Utah) (name fb:en.louisiana Louisiana) (name fb:en.south_carolina "South Carolina") (name fb:en.west_virginia "West Virginia") (name fb:en.wyoming Wyoming) (name fb:en.virginia Virginia) (name fb:en.washington Washington) (name fb:en.wisconsin Wisconsin) (name fb:en.new_york_state "New York"))) (type fb:location.administrative_division) Where was the first golf course in the United States? New York 0.378 formula (and (fb:type.object.type fb:location.location) (!fb:location.country.first_level_divisions fb:en.united_states_of_america))) (value (list (name fb:en.texas Texas) (name fb:en.utah Utah) (name fb:en.louisiana Louisiana) (name fb:en.south_carolina "South Carolina") (name fb:en.west_virginia "West Virginia") (name fb:en.wyoming Wyoming) (name fb:en.virginia Virginia) (name fb:en.washington Washington) (name fb:en.wisconsin Wisconsin) (name fb:en.new_york_state "New York"))) (type fb:location.administrative_division) Who was the first king of England? Loulou de la Falaise -2.404 formula (and (fb:type.object.type fb:people.person) (fb:people.person.place_of_birth fb:en.england))) (value (list (name fb:en.loulou_de_la_falaise "Loulou de la Falaise") (name fb:en.doctor_rokit Herbert) (name fb:m.01w_hrs "Duncan MacKay") (name fb:en.stephen_cleobury "Stephen Cleobury") (name fb:en.christie_allen "Christie Allen") (name fb:en.liza_walker "Liza Walker") (name fb:en.bruce_gowers "Bruce Gowers") (name fb:en.charles_sedley "Sir Charles Sedley, 5th Baronet") (name fb:en.basia_ahern "Basia A'Hern") (name fb:en.peter_le_neve "Peter Le Neve"))) (type fb:people.person) Who was the first king of England? Duncan MacKay -2.404 formula (and (fb:type.object.type fb:people.person) (fb:people.person.place_of_birth fb:en.england))) (value (list (name fb:en.loulou_de_la_falaise "Loulou de la Falaise") (name fb:en.doctor_rokit Herbert) (name fb:m.01w_hrs "Duncan MacKay") (name fb:en.stephen_cleobury "Stephen Cleobury") (name fb:en.christie_allen "Christie Allen") (name fb:en.liza_walker "Liza Walker") (name fb:en.bruce_gowers "Bruce Gowers") (name fb:en.charles_sedley "Sir Charles Sedley, 5th Baronet") (name fb:en.basia_ahern "Basia A'Hern") (name fb:en.peter_le_neve "Peter Le Neve"))) (type fb:people.person) Who was the first king of England? Stephen Cleobury -2.404 formula (and (fb:type.object.type fb:people.person) (fb:people.person.place_of_birth fb:en.england))) (value (list (name fb:en.loulou_de_la_falaise "Loulou de la Falaise") (name fb:en.doctor_rokit Herbert) (name fb:m.01w_hrs "Duncan MacKay") (name fb:en.stephen_cleobury "Stephen Cleobury") (name fb:en.christie_allen "Christie Allen") (name fb:en.liza_walker "Liza Walker") (name fb:en.bruce_gowers "Bruce Gowers") (name fb:en.charles_sedley "Sir Charles Sedley, 5th Baronet") (name fb:en.basia_ahern "Basia A'Hern") (name fb:en.peter_le_neve "Peter Le Neve"))) (type fb:people.person) Who was the first king of England? Christie Allen -2.404 formula (and (fb:type.object.type fb:people.person) (fb:people.person.place_of_birth fb:en.england))) (value (list (name fb:en.loulou_de_la_falaise "Loulou de la Falaise") (name fb:en.doctor_rokit Herbert) (name fb:m.01w_hrs "Duncan MacKay") (name fb:en.stephen_cleobury "Stephen Cleobury") (name fb:en.christie_allen "Christie Allen") (name fb:en.liza_walker "Liza Walker") (name fb:en.bruce_gowers "Bruce Gowers") (name fb:en.charles_sedley "Sir Charles Sedley, 5th Baronet") (name fb:en.basia_ahern "Basia A'Hern") (name fb:en.peter_le_neve "Peter Le Neve"))) (type fb:people.person) Who was the first king of England? Liza Walker -2.404 formula (and (fb:type.object.type fb:people.person) (fb:people.person.place_of_birth fb:en.england))) (value (list (name fb:en.loulou_de_la_falaise "Loulou de la Falaise") (name fb:en.doctor_rokit Herbert) (name fb:m.01w_hrs "Duncan MacKay") (name fb:en.stephen_cleobury "Stephen Cleobury") (name fb:en.christie_allen "Christie Allen") (name fb:en.liza_walker "Liza Walker") (name fb:en.bruce_gowers "Bruce Gowers") (name fb:en.charles_sedley "Sir Charles Sedley, 5th Baronet") (name fb:en.basia_ahern "Basia A'Hern") (name fb:en.peter_le_neve "Peter Le Neve"))) (type fb:people.person) Who was the first king of England? Bruce Gowers -2.404 formula (and (fb:type.object.type fb:people.person) (fb:people.person.place_of_birth fb:en.england))) (value (list (name fb:en.loulou_de_la_falaise "Loulou de la Falaise") (name fb:en.doctor_rokit Herbert) (name fb:m.01w_hrs "Duncan MacKay") (name fb:en.stephen_cleobury "Stephen Cleobury") (name fb:en.christie_allen "Christie Allen") (name fb:en.liza_walker "Liza Walker") (name fb:en.bruce_gowers "Bruce Gowers") (name fb:en.charles_sedley "Sir Charles Sedley, 5th Baronet") (name fb:en.basia_ahern "Basia A'Hern") (name fb:en.peter_le_neve "Peter Le Neve"))) (type fb:people.person) Who was the first king of England? Sir Charles Sedley, 5th Baronet -2.404 formula (and (fb:type.object.type fb:people.person) (fb:people.person.place_of_birth fb:en.england))) (value (list (name fb:en.loulou_de_la_falaise "Loulou de la Falaise") (name fb:en.doctor_rokit Herbert) (name fb:m.01w_hrs "Duncan MacKay") (name fb:en.stephen_cleobury "Stephen Cleobury") (name fb:en.christie_allen "Christie Allen") (name fb:en.liza_walker "Liza Walker") (name fb:en.bruce_gowers "Bruce Gowers") (name fb:en.charles_sedley "Sir Charles Sedley, 5th Baronet") (name fb:en.basia_ahern "Basia A'Hern") (name fb:en.peter_le_neve "Peter Le Neve"))) (type fb:people.person) Who was the first king of England? Basia A'Hern -2.404 formula (and (fb:type.object.type fb:people.person) (fb:people.person.place_of_birth fb:en.england))) (value (list (name fb:en.loulou_de_la_falaise "Loulou de la Falaise") (name fb:en.doctor_rokit Herbert) (name fb:m.01w_hrs "Duncan MacKay") (name fb:en.stephen_cleobury "Stephen Cleobury") (name fb:en.christie_allen "Christie Allen") (name fb:en.liza_walker "Liza Walker") (name fb:en.bruce_gowers "Bruce Gowers") (name fb:en.charles_sedley "Sir Charles Sedley, 5th Baronet") (name fb:en.basia_ahern "Basia A'Hern") (name fb:en.peter_le_neve "Peter Le Neve"))) (type fb:people.person) Who was the first king of England? Peter Le Neve -2.404 formula (and (fb:type.object.type fb:people.person) (fb:people.person.place_of_birth fb:en.england))) (value (list (name fb:en.loulou_de_la_falaise "Loulou de la Falaise") (name fb:en.doctor_rokit Herbert) (name fb:m.01w_hrs "Duncan MacKay") (name fb:en.stephen_cleobury "Stephen Cleobury") (name fb:en.christie_allen "Christie Allen") (name fb:en.liza_walker "Liza Walker") (name fb:en.bruce_gowers "Bruce Gowers") (name fb:en.charles_sedley "Sir Charles Sedley, 5th Baronet") (name fb:en.basia_ahern "Basia A'Hern") (name fb:en.peter_le_neve "Peter Le Neve"))) (type fb:people.person) Where is the Orinoco River? Meta River 0.006 formula (and (fb:type.object.type fb:location.location) (and (fb:type.object.type fb:geography.river) (fb:geography.river.mouth fb:en.orinoco)))) (value (list (name fb:en.meta_river "Meta River") (name fb:en.apure_river "Apure River") (name fb:en.arauca_river "Arauca River") (name fb:en.guaviare_river "Guaviare River"))) (type fb:geography.river) Where is the Orinoco River? Apure River 0.006 formula (and (fb:type.object.type fb:location.location) (and (fb:type.object.type fb:geography.river) (fb:geography.river.mouth fb:en.orinoco)))) (value (list (name fb:en.meta_river "Meta River") (name fb:en.apure_river "Apure River") (name fb:en.arauca_river "Arauca River") (name fb:en.guaviare_river "Guaviare River"))) (type fb:geography.river) Where is the Orinoco River? Arauca River 0.006 formula (and (fb:type.object.type fb:location.location) (and (fb:type.object.type fb:geography.river) (fb:geography.river.mouth fb:en.orinoco)))) (value (list (name fb:en.meta_river "Meta River") (name fb:en.apure_river "Apure River") (name fb:en.arauca_river "Arauca River") (name fb:en.guaviare_river "Guaviare River"))) (type fb:geography.river) Where is the Orinoco River? Guaviare River 0.006 formula (and (fb:type.object.type fb:location.location) (and (fb:type.object.type fb:geography.river) (fb:geography.river.mouth fb:en.orinoco)))) (value (list (name fb:en.meta_river "Meta River") (name fb:en.apure_river "Apure River") (name fb:en.arauca_river "Arauca River") (name fb:en.guaviare_river "Guaviare River"))) (type fb:geography.river) What government officials have been influenced by Ayn Rand's philosophy? Philip Lader -4.588 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:business.board_member.organization_board_memberships (fb:organization.organization_board_membership.organization (var x)))) fb:en.rand))) (value (list (name fb:en.philip_lader "Philip Lader") (name fb:en.karen_l_katen "Karen L. Katen") (name fb:en.walter_e_massey "Walter E. Massey") (name fb:en.michael_k_powell "Michael Powell") (name fb:en.condoleezza_rice "Condoleezza Rice") (name fb:en.ronald_olson "Ronald Olson") (name fb:en.sam_ginn "Sam Ginn") (name fb:en.frank_stanton "Frank Stanton"))) (type fb:business.board_member) What government officials have been influenced by Ayn Rand's philosophy? Karen L. Katen -4.588 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:business.board_member.organization_board_memberships (fb:organization.organization_board_membership.organization (var x)))) fb:en.rand))) (value (list (name fb:en.philip_lader "Philip Lader") (name fb:en.karen_l_katen "Karen L. Katen") (name fb:en.walter_e_massey "Walter E. Massey") (name fb:en.michael_k_powell "Michael Powell") (name fb:en.condoleezza_rice "Condoleezza Rice") (name fb:en.ronald_olson "Ronald Olson") (name fb:en.sam_ginn "Sam Ginn") (name fb:en.frank_stanton "Frank Stanton"))) (type fb:business.board_member) What government officials have been influenced by Ayn Rand's philosophy? Walter E. Massey -4.588 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:business.board_member.organization_board_memberships (fb:organization.organization_board_membership.organization (var x)))) fb:en.rand))) (value (list (name fb:en.philip_lader "Philip Lader") (name fb:en.karen_l_katen "Karen L. Katen") (name fb:en.walter_e_massey "Walter E. Massey") (name fb:en.michael_k_powell "Michael Powell") (name fb:en.condoleezza_rice "Condoleezza Rice") (name fb:en.ronald_olson "Ronald Olson") (name fb:en.sam_ginn "Sam Ginn") (name fb:en.frank_stanton "Frank Stanton"))) (type fb:business.board_member) What government officials have been influenced by Ayn Rand's philosophy? Michael Powell -4.588 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:business.board_member.organization_board_memberships (fb:organization.organization_board_membership.organization (var x)))) fb:en.rand))) (value (list (name fb:en.philip_lader "Philip Lader") (name fb:en.karen_l_katen "Karen L. Katen") (name fb:en.walter_e_massey "Walter E. Massey") (name fb:en.michael_k_powell "Michael Powell") (name fb:en.condoleezza_rice "Condoleezza Rice") (name fb:en.ronald_olson "Ronald Olson") (name fb:en.sam_ginn "Sam Ginn") (name fb:en.frank_stanton "Frank Stanton"))) (type fb:business.board_member) What government officials have been influenced by Ayn Rand's philosophy? Condoleezza Rice -4.588 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:business.board_member.organization_board_memberships (fb:organization.organization_board_membership.organization (var x)))) fb:en.rand))) (value (list (name fb:en.philip_lader "Philip Lader") (name fb:en.karen_l_katen "Karen L. Katen") (name fb:en.walter_e_massey "Walter E. Massey") (name fb:en.michael_k_powell "Michael Powell") (name fb:en.condoleezza_rice "Condoleezza Rice") (name fb:en.ronald_olson "Ronald Olson") (name fb:en.sam_ginn "Sam Ginn") (name fb:en.frank_stanton "Frank Stanton"))) (type fb:business.board_member) What government officials have been influenced by Ayn Rand's philosophy? Ronald Olson -4.588 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:business.board_member.organization_board_memberships (fb:organization.organization_board_membership.organization (var x)))) fb:en.rand))) (value (list (name fb:en.philip_lader "Philip Lader") (name fb:en.karen_l_katen "Karen L. Katen") (name fb:en.walter_e_massey "Walter E. Massey") (name fb:en.michael_k_powell "Michael Powell") (name fb:en.condoleezza_rice "Condoleezza Rice") (name fb:en.ronald_olson "Ronald Olson") (name fb:en.sam_ginn "Sam Ginn") (name fb:en.frank_stanton "Frank Stanton"))) (type fb:business.board_member) What government officials have been influenced by Ayn Rand's philosophy? Sam Ginn -4.588 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:business.board_member.organization_board_memberships (fb:organization.organization_board_membership.organization (var x)))) fb:en.rand))) (value (list (name fb:en.philip_lader "Philip Lader") (name fb:en.karen_l_katen "Karen L. Katen") (name fb:en.walter_e_massey "Walter E. Massey") (name fb:en.michael_k_powell "Michael Powell") (name fb:en.condoleezza_rice "Condoleezza Rice") (name fb:en.ronald_olson "Ronald Olson") (name fb:en.sam_ginn "Sam Ginn") (name fb:en.frank_stanton "Frank Stanton"))) (type fb:business.board_member) What government officials have been influenced by Ayn Rand's philosophy? Frank Stanton -4.588 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:business.board_member.organization_board_memberships (fb:organization.organization_board_membership.organization (var x)))) fb:en.rand))) (value (list (name fb:en.philip_lader "Philip Lader") (name fb:en.karen_l_katen "Karen L. Katen") (name fb:en.walter_e_massey "Walter E. Massey") (name fb:en.michael_k_powell "Michael Powell") (name fb:en.condoleezza_rice "Condoleezza Rice") (name fb:en.ronald_olson "Ronald Olson") (name fb:en.sam_ginn "Sam Ginn") (name fb:en.frank_stanton "Frank Stanton"))) (type fb:business.board_member) What was Rose Crumb's occupation? Mike Swift -5.976 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.series (var x)))) fb:m.04yfh85))) (value (list (name fb:m.0h5dwyw "Mike Swift"))) (type fb:tv.tv_character) What is Valentine's Day? Blissful Master Index -3.081 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.valentine_2001))) (value (list (name fb:m.0bvlr64 "Blissful Master Index"))) (type fb:common.annotation_index) Who was the first host of Jeopardy? Jeopardy! theme music -3.939 formula (and (fb:type.object.type fb:common.topic) (fb:tv.tv_theme_song.theme_song_for fb:en.jeopardy))) (value (list (name fb:en.jeopardy_theme_music "Jeopardy! theme music"))) (type fb:tv.tv_theme_song) Where did Dr. King give his speech in Washington? Pioneer Church -6.554 formula (and (fb:type.object.type fb:location.location) ((lambda x (fb:location.location.street_address (fb:location.mailing_address.state_province_region (var x)))) fb:en.washington))) (value (list (name fb:m.0pk_036 "Pioneer Church") (name fb:m.0gyp49_ "Beaumont Apartments") (name fb:en.crystal_mountain "Crystal Mountain") (name fb:en.gold_mountain_golf_club "Gold Mountain Golf Club") (name fb:m.0p770xk "Magnolia Park") (name fb:m.0pl173p "First Christian Church") (name fb:en.semiahmoo_golf_and_country_club "Semiahmoo Golf and Country Club") (name fb:m.0mvnsh8 "Seattle Airport Marriott") (name fb:m.0mvnshc "Seattle Marriott Waterfront") (name fb:m.0mvnsh5 "Redmond Marriott Town Center"))) (type fb:location.location) Where did Dr. King give his speech in Washington? Beaumont Apartments -6.554 formula (and (fb:type.object.type fb:location.location) ((lambda x (fb:location.location.street_address (fb:location.mailing_address.state_province_region (var x)))) fb:en.washington))) (value (list (name fb:m.0pk_036 "Pioneer Church") (name fb:m.0gyp49_ "Beaumont Apartments") (name fb:en.crystal_mountain "Crystal Mountain") (name fb:en.gold_mountain_golf_club "Gold Mountain Golf Club") (name fb:m.0p770xk "Magnolia Park") (name fb:m.0pl173p "First Christian Church") (name fb:en.semiahmoo_golf_and_country_club "Semiahmoo Golf and Country Club") (name fb:m.0mvnsh8 "Seattle Airport Marriott") (name fb:m.0mvnshc "Seattle Marriott Waterfront") (name fb:m.0mvnsh5 "Redmond Marriott Town Center"))) (type fb:location.location) Where did Dr. King give his speech in Washington? Crystal Mountain -6.554 formula (and (fb:type.object.type fb:location.location) ((lambda x (fb:location.location.street_address (fb:location.mailing_address.state_province_region (var x)))) fb:en.washington))) (value (list (name fb:m.0pk_036 "Pioneer Church") (name fb:m.0gyp49_ "Beaumont Apartments") (name fb:en.crystal_mountain "Crystal Mountain") (name fb:en.gold_mountain_golf_club "Gold Mountain Golf Club") (name fb:m.0p770xk "Magnolia Park") (name fb:m.0pl173p "First Christian Church") (name fb:en.semiahmoo_golf_and_country_club "Semiahmoo Golf and Country Club") (name fb:m.0mvnsh8 "Seattle Airport Marriott") (name fb:m.0mvnshc "Seattle Marriott Waterfront") (name fb:m.0mvnsh5 "Redmond Marriott Town Center"))) (type fb:location.location) Where did Dr. King give his speech in Washington? Gold Mountain Golf Club -6.554 formula (and (fb:type.object.type fb:location.location) ((lambda x (fb:location.location.street_address (fb:location.mailing_address.state_province_region (var x)))) fb:en.washington))) (value (list (name fb:m.0pk_036 "Pioneer Church") (name fb:m.0gyp49_ "Beaumont Apartments") (name fb:en.crystal_mountain "Crystal Mountain") (name fb:en.gold_mountain_golf_club "Gold Mountain Golf Club") (name fb:m.0p770xk "Magnolia Park") (name fb:m.0pl173p "First Christian Church") (name fb:en.semiahmoo_golf_and_country_club "Semiahmoo Golf and Country Club") (name fb:m.0mvnsh8 "Seattle Airport Marriott") (name fb:m.0mvnshc "Seattle Marriott Waterfront") (name fb:m.0mvnsh5 "Redmond Marriott Town Center"))) (type fb:location.location) Where did Dr. King give his speech in Washington? Magnolia Park -6.554 formula (and (fb:type.object.type fb:location.location) ((lambda x (fb:location.location.street_address (fb:location.mailing_address.state_province_region (var x)))) fb:en.washington))) (value (list (name fb:m.0pk_036 "Pioneer Church") (name fb:m.0gyp49_ "Beaumont Apartments") (name fb:en.crystal_mountain "Crystal Mountain") (name fb:en.gold_mountain_golf_club "Gold Mountain Golf Club") (name fb:m.0p770xk "Magnolia Park") (name fb:m.0pl173p "First Christian Church") (name fb:en.semiahmoo_golf_and_country_club "Semiahmoo Golf and Country Club") (name fb:m.0mvnsh8 "Seattle Airport Marriott") (name fb:m.0mvnshc "Seattle Marriott Waterfront") (name fb:m.0mvnsh5 "Redmond Marriott Town Center"))) (type fb:location.location) Where did Dr. King give his speech in Washington? First Christian Church -6.554 formula (and (fb:type.object.type fb:location.location) ((lambda x (fb:location.location.street_address (fb:location.mailing_address.state_province_region (var x)))) fb:en.washington))) (value (list (name fb:m.0pk_036 "Pioneer Church") (name fb:m.0gyp49_ "Beaumont Apartments") (name fb:en.crystal_mountain "Crystal Mountain") (name fb:en.gold_mountain_golf_club "Gold Mountain Golf Club") (name fb:m.0p770xk "Magnolia Park") (name fb:m.0pl173p "First Christian Church") (name fb:en.semiahmoo_golf_and_country_club "Semiahmoo Golf and Country Club") (name fb:m.0mvnsh8 "Seattle Airport Marriott") (name fb:m.0mvnshc "Seattle Marriott Waterfront") (name fb:m.0mvnsh5 "Redmond Marriott Town Center"))) (type fb:location.location) Where did Dr. King give his speech in Washington? Semiahmoo Golf and Country Club -6.554 formula (and (fb:type.object.type fb:location.location) ((lambda x (fb:location.location.street_address (fb:location.mailing_address.state_province_region (var x)))) fb:en.washington))) (value (list (name fb:m.0pk_036 "Pioneer Church") (name fb:m.0gyp49_ "Beaumont Apartments") (name fb:en.crystal_mountain "Crystal Mountain") (name fb:en.gold_mountain_golf_club "Gold Mountain Golf Club") (name fb:m.0p770xk "Magnolia Park") (name fb:m.0pl173p "First Christian Church") (name fb:en.semiahmoo_golf_and_country_club "Semiahmoo Golf and Country Club") (name fb:m.0mvnsh8 "Seattle Airport Marriott") (name fb:m.0mvnshc "Seattle Marriott Waterfront") (name fb:m.0mvnsh5 "Redmond Marriott Town Center"))) (type fb:location.location) Where did Dr. King give his speech in Washington? Seattle Airport Marriott -6.554 formula (and (fb:type.object.type fb:location.location) ((lambda x (fb:location.location.street_address (fb:location.mailing_address.state_province_region (var x)))) fb:en.washington))) (value (list (name fb:m.0pk_036 "Pioneer Church") (name fb:m.0gyp49_ "Beaumont Apartments") (name fb:en.crystal_mountain "Crystal Mountain") (name fb:en.gold_mountain_golf_club "Gold Mountain Golf Club") (name fb:m.0p770xk "Magnolia Park") (name fb:m.0pl173p "First Christian Church") (name fb:en.semiahmoo_golf_and_country_club "Semiahmoo Golf and Country Club") (name fb:m.0mvnsh8 "Seattle Airport Marriott") (name fb:m.0mvnshc "Seattle Marriott Waterfront") (name fb:m.0mvnsh5 "Redmond Marriott Town Center"))) (type fb:location.location) Where did Dr. King give his speech in Washington? Seattle Marriott Waterfront -6.554 formula (and (fb:type.object.type fb:location.location) ((lambda x (fb:location.location.street_address (fb:location.mailing_address.state_province_region (var x)))) fb:en.washington))) (value (list (name fb:m.0pk_036 "Pioneer Church") (name fb:m.0gyp49_ "Beaumont Apartments") (name fb:en.crystal_mountain "Crystal Mountain") (name fb:en.gold_mountain_golf_club "Gold Mountain Golf Club") (name fb:m.0p770xk "Magnolia Park") (name fb:m.0pl173p "First Christian Church") (name fb:en.semiahmoo_golf_and_country_club "Semiahmoo Golf and Country Club") (name fb:m.0mvnsh8 "Seattle Airport Marriott") (name fb:m.0mvnshc "Seattle Marriott Waterfront") (name fb:m.0mvnsh5 "Redmond Marriott Town Center"))) (type fb:location.location) Where did Dr. King give his speech in Washington? Redmond Marriott Town Center -6.554 formula (and (fb:type.object.type fb:location.location) ((lambda x (fb:location.location.street_address (fb:location.mailing_address.state_province_region (var x)))) fb:en.washington))) (value (list (name fb:m.0pk_036 "Pioneer Church") (name fb:m.0gyp49_ "Beaumont Apartments") (name fb:en.crystal_mountain "Crystal Mountain") (name fb:en.gold_mountain_golf_club "Gold Mountain Golf Club") (name fb:m.0p770xk "Magnolia Park") (name fb:m.0pl173p "First Christian Church") (name fb:en.semiahmoo_golf_and_country_club "Semiahmoo Golf and Country Club") (name fb:m.0mvnsh8 "Seattle Airport Marriott") (name fb:m.0mvnshc "Seattle Marriott Waterfront") (name fb:m.0mvnsh5 "Redmond Marriott Town Center"))) (type fb:location.location) Who is Terrence Malick? Michele Morette -5.672 formula (and (fb:type.object.type fb:people.person) ((lambda x (!fb:people.marriage.spouse (!fb:people.person.spouse_s (var x)))) fb:en.terrence_malick))) (value (list (name fb:m.0hypm7t "Michele Morette") (name fb:m.0gj4mrm "Jill Jakes") (name fb:m.0h9x8rz "Alexandra Wallace"))) (type fb:people.person) Who is Terrence Malick? Jill Jakes -5.672 formula (and (fb:type.object.type fb:people.person) ((lambda x (!fb:people.marriage.spouse (!fb:people.person.spouse_s (var x)))) fb:en.terrence_malick))) (value (list (name fb:m.0hypm7t "Michele Morette") (name fb:m.0gj4mrm "Jill Jakes") (name fb:m.0h9x8rz "Alexandra Wallace"))) (type fb:people.person) Who is Terrence Malick? Alexandra Wallace -5.672 formula (and (fb:type.object.type fb:people.person) ((lambda x (!fb:people.marriage.spouse (!fb:people.person.spouse_s (var x)))) fb:en.terrence_malick))) (value (list (name fb:m.0hypm7t "Michele Morette") (name fb:m.0gj4mrm "Jill Jakes") (name fb:m.0h9x8rz "Alexandra Wallace"))) (type fb:people.person) What is foot and mouth disease? Infectious disease 1.674 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:medicine.disease) (!fb:medicine.disease.parent_disease fb:en.hand_foot_and_mouth_disease)))) (value (list (name fb:en.infectious_disease "Infectious disease") (name fb:en.specific_diseases_due_to_coxsackie_virus "Specific diseases due to Coxsackie virus"))) (type fb:medicine.disease) What is foot and mouth disease? Specific diseases due to Coxsackie virus 1.674 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:medicine.disease) (!fb:medicine.disease.parent_disease fb:en.hand_foot_and_mouth_disease)))) (value (list (name fb:en.infectious_disease "Infectious disease") (name fb:en.specific_diseases_due_to_coxsackie_virus "Specific diseases due to Coxsackie virus"))) (type fb:medicine.disease) What U.S. government entity sponsors the Fulbright Program? May Coup -8.608 formula (and (fb:type.object.type fb:common.topic) (fb:base.culturalevent.event.entity_involved fb:m.036nz))) (value (list (name fb:en.may_coup "May Coup"))) (type fb:base.culturalevent.event) What province in Canada is Niagara Falls located in? Niagara County -2.264 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:location.administrative_division) (fb:location.location.contains fb:en.niagara_falls)))) (value (list (name fb:en.canada Canada) (name fb:en.ontario Ontario) (name fb:en.niagara_county "Niagara County"))) (type fb:location.administrative_division) What university did Thomas Jefferson found? University of Virginia -0.738 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:education.university) (fb:organization.organization.founders fb:en.thomas_jefferson)))) (value (list (name fb:en.university_of_virginia "University of Virginia") (name fb:en.united_states_military_academy "United States Military Academy") (name fb:en.university_of_virginia_school_of_law "University of Virginia School of Law"))) (type fb:education.university) What university did Thomas Jefferson found? United States Military Academy -0.738 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:education.university) (fb:organization.organization.founders fb:en.thomas_jefferson)))) (value (list (name fb:en.university_of_virginia "University of Virginia") (name fb:en.united_states_military_academy "United States Military Academy") (name fb:en.university_of_virginia_school_of_law "University of Virginia School of Law"))) (type fb:education.university) What university did Thomas Jefferson found? University of Virginia School of Law -0.738 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:education.university) (fb:organization.organization.founders fb:en.thomas_jefferson)))) (value (list (name fb:en.university_of_virginia "University of Virginia") (name fb:en.united_states_military_academy "United States Military Academy") (name fb:en.university_of_virginia_school_of_law "University of Virginia School of Law"))) (type fb:education.university) What is Tufts' current endowment? United States dollar -0.745 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:measurement_unit.dated_money_value.currency (!fb:organization.endowed_organization.endowment (var x)))) fb:en.tufts_university))) (value (list (name fb:en.us "United States dollar"))) (type fb:finance.currency) How many states were still united after the southern states seceded? United States of America -0.166 formula (and (fb:type.object.type fb:location.administrative_division) (fb:location.location.contains fb:en.southern_united_states))) (value (list (name fb:en.united_states_of_america "United States of America"))) (type (union fb:location.administrative_division)) Who testified in defense of Susan McDougal? Jim McDougal -6.332 formula (and (fb:type.object.type fb:people.person) ((lambda x (!fb:people.marriage.spouse (!fb:people.person.spouse_s (var x)))) fb:en.susan_mcdougal))) (value (list (name fb:en.james_mcdougal "Jim McDougal"))) (type fb:people.person) Where is Venezuela? United States of America -3.127 formula (and (fb:type.object.type fb:location.location) ((lambda x (fb:location.statistical_region.places_imported_from (fb:location.imports_and_exports.imported_from (var x)))) fb:en.venezuela))) (value (list (name fb:en.united_states_of_america "United States of America"))) (type fb:location.statistical_region) Who developed potlatch? Pat Shea -6.388 formula (and (fb:type.object.type fb:people.person) (!fb:location.location.people_born_here fb:en.potlatch_idaho))) (value (list (name fb:en.pat_shea "Pat Shea") (name fb:en.guyle_fielder "Guyle Fielder"))) (type fb:people.person) Who developed potlatch? Guyle Fielder -6.388 formula (and (fb:type.object.type fb:people.person) (!fb:location.location.people_born_here fb:en.potlatch_idaho))) (value (list (name fb:en.pat_shea "Pat Shea") (name fb:en.guyle_fielder "Guyle Fielder"))) (type fb:people.person) List 10 countries where motorcycles are produced. Mind Fusion, Volume 3 -5.973 formula (fb:music.release.track_list fb:m.0nstghq)) (value (list (name fb:m.0fvqd_y "Mind Fusion, Volume 3"))) (type fb:music.release) In what mountain range does the Amazon River rise? Nevado Mismi -1.348 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:geography.mountain) (!fb:geography.river.origin fb:en.amazon_river)))) (value (list (name fb:en.nevado_mismi "Nevado Mismi"))) (type fb:geography.mountain) What are some Bon Jovi hits? Bobby Bandiera -5.195 formula (and (fb:type.object.type fb:common.topic) (fb:music.group_member.artists_supported fb:en.bon_jovi))) (value (list (name fb:en.bobby_bandiera "Bobby Bandiera") (name fb:en.phil_x "Phil X") (name fb:en.hugh_mcdonald "Hugh McDonald"))) (type fb:music.group_member) What are some Bon Jovi hits? Phil X -5.195 formula (and (fb:type.object.type fb:common.topic) (fb:music.group_member.artists_supported fb:en.bon_jovi))) (value (list (name fb:en.bobby_bandiera "Bobby Bandiera") (name fb:en.phil_x "Phil X") (name fb:en.hugh_mcdonald "Hugh McDonald"))) (type fb:music.group_member) What are some Bon Jovi hits? Hugh McDonald -5.195 formula (and (fb:type.object.type fb:common.topic) (fb:music.group_member.artists_supported fb:en.bon_jovi))) (value (list (name fb:en.bobby_bandiera "Bobby Bandiera") (name fb:en.phil_x "Phil X") (name fb:en.hugh_mcdonald "Hugh McDonald"))) (type fb:music.group_member) What is the largest variety of cactus? Blissful Master Index -2.415 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.variety))) (value (list (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) What is the largest variety of cactus? Blissful Celebrities -2.415 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.variety))) (value (list (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) What do most tourists visit in Reims? Montagne de Reims Regional Natural Park -2.146 formula (and (fb:type.object.type fb:common.topic) (!fb:travel.travel_destination.tourist_attractions fb:en.reims))) (value (list (name fb:m.0jt0kx7 "Montagne de Reims Regional Natural Park") (name fb:en.reims-gueux Reims-Gueux) (name fb:en.notre-dame_de_reims "Reims Cathedral") (name fb:en.abbey_of_saint-remi "Abbey of Saint-Remi") (name fb:en.porte_de_mars "Porte Mars") (name fb:en.palace_of_tau "Palace of Tau") (name fb:en.chateau_de_conde "Ch��teau de Cond��") (name fb:m.0gg8v_l "Museum of Fine Arts, Rheims") (name fb:en.carnegie_library_of_reims "Carnegie Library of Reims") (name fb:en.foujita_chapel "Foujita Chapel"))) (type fb:travel.tourist_attraction) What do most tourists visit in Reims? Reims Cathedral -2.146 formula (and (fb:type.object.type fb:common.topic) (!fb:travel.travel_destination.tourist_attractions fb:en.reims))) (value (list (name fb:m.0jt0kx7 "Montagne de Reims Regional Natural Park") (name fb:en.reims-gueux Reims-Gueux) (name fb:en.notre-dame_de_reims "Reims Cathedral") (name fb:en.abbey_of_saint-remi "Abbey of Saint-Remi") (name fb:en.porte_de_mars "Porte Mars") (name fb:en.palace_of_tau "Palace of Tau") (name fb:en.chateau_de_conde "Ch��teau de Cond��") (name fb:m.0gg8v_l "Museum of Fine Arts, Rheims") (name fb:en.carnegie_library_of_reims "Carnegie Library of Reims") (name fb:en.foujita_chapel "Foujita Chapel"))) (type fb:travel.tourist_attraction) What do most tourists visit in Reims? Abbey of Saint-Remi -2.146 formula (and (fb:type.object.type fb:common.topic) (!fb:travel.travel_destination.tourist_attractions fb:en.reims))) (value (list (name fb:m.0jt0kx7 "Montagne de Reims Regional Natural Park") (name fb:en.reims-gueux Reims-Gueux) (name fb:en.notre-dame_de_reims "Reims Cathedral") (name fb:en.abbey_of_saint-remi "Abbey of Saint-Remi") (name fb:en.porte_de_mars "Porte Mars") (name fb:en.palace_of_tau "Palace of Tau") (name fb:en.chateau_de_conde "Ch��teau de Cond��") (name fb:m.0gg8v_l "Museum of Fine Arts, Rheims") (name fb:en.carnegie_library_of_reims "Carnegie Library of Reims") (name fb:en.foujita_chapel "Foujita Chapel"))) (type fb:travel.tourist_attraction) What do most tourists visit in Reims? Porte Mars -2.146 formula (and (fb:type.object.type fb:common.topic) (!fb:travel.travel_destination.tourist_attractions fb:en.reims))) (value (list (name fb:m.0jt0kx7 "Montagne de Reims Regional Natural Park") (name fb:en.reims-gueux Reims-Gueux) (name fb:en.notre-dame_de_reims "Reims Cathedral") (name fb:en.abbey_of_saint-remi "Abbey of Saint-Remi") (name fb:en.porte_de_mars "Porte Mars") (name fb:en.palace_of_tau "Palace of Tau") (name fb:en.chateau_de_conde "Ch��teau de Cond��") (name fb:m.0gg8v_l "Museum of Fine Arts, Rheims") (name fb:en.carnegie_library_of_reims "Carnegie Library of Reims") (name fb:en.foujita_chapel "Foujita Chapel"))) (type fb:travel.tourist_attraction) What do most tourists visit in Reims? Palace of Tau -2.146 formula (and (fb:type.object.type fb:common.topic) (!fb:travel.travel_destination.tourist_attractions fb:en.reims))) (value (list (name fb:m.0jt0kx7 "Montagne de Reims Regional Natural Park") (name fb:en.reims-gueux Reims-Gueux) (name fb:en.notre-dame_de_reims "Reims Cathedral") (name fb:en.abbey_of_saint-remi "Abbey of Saint-Remi") (name fb:en.porte_de_mars "Porte Mars") (name fb:en.palace_of_tau "Palace of Tau") (name fb:en.chateau_de_conde "Ch��teau de Cond��") (name fb:m.0gg8v_l "Museum of Fine Arts, Rheims") (name fb:en.carnegie_library_of_reims "Carnegie Library of Reims") (name fb:en.foujita_chapel "Foujita Chapel"))) (type fb:travel.tourist_attraction) What do most tourists visit in Reims? Ch��teau de Cond�� -2.146 formula (and (fb:type.object.type fb:common.topic) (!fb:travel.travel_destination.tourist_attractions fb:en.reims))) (value (list (name fb:m.0jt0kx7 "Montagne de Reims Regional Natural Park") (name fb:en.reims-gueux Reims-Gueux) (name fb:en.notre-dame_de_reims "Reims Cathedral") (name fb:en.abbey_of_saint-remi "Abbey of Saint-Remi") (name fb:en.porte_de_mars "Porte Mars") (name fb:en.palace_of_tau "Palace of Tau") (name fb:en.chateau_de_conde "Ch��teau de Cond��") (name fb:m.0gg8v_l "Museum of Fine Arts, Rheims") (name fb:en.carnegie_library_of_reims "Carnegie Library of Reims") (name fb:en.foujita_chapel "Foujita Chapel"))) (type fb:travel.tourist_attraction) What do most tourists visit in Reims? Museum of Fine Arts, Rheims -2.146 formula (and (fb:type.object.type fb:common.topic) (!fb:travel.travel_destination.tourist_attractions fb:en.reims))) (value (list (name fb:m.0jt0kx7 "Montagne de Reims Regional Natural Park") (name fb:en.reims-gueux Reims-Gueux) (name fb:en.notre-dame_de_reims "Reims Cathedral") (name fb:en.abbey_of_saint-remi "Abbey of Saint-Remi") (name fb:en.porte_de_mars "Porte Mars") (name fb:en.palace_of_tau "Palace of Tau") (name fb:en.chateau_de_conde "Ch��teau de Cond��") (name fb:m.0gg8v_l "Museum of Fine Arts, Rheims") (name fb:en.carnegie_library_of_reims "Carnegie Library of Reims") (name fb:en.foujita_chapel "Foujita Chapel"))) (type fb:travel.tourist_attraction) What do most tourists visit in Reims? Carnegie Library of Reims -2.146 formula (and (fb:type.object.type fb:common.topic) (!fb:travel.travel_destination.tourist_attractions fb:en.reims))) (value (list (name fb:m.0jt0kx7 "Montagne de Reims Regional Natural Park") (name fb:en.reims-gueux Reims-Gueux) (name fb:en.notre-dame_de_reims "Reims Cathedral") (name fb:en.abbey_of_saint-remi "Abbey of Saint-Remi") (name fb:en.porte_de_mars "Porte Mars") (name fb:en.palace_of_tau "Palace of Tau") (name fb:en.chateau_de_conde "Ch��teau de Cond��") (name fb:m.0gg8v_l "Museum of Fine Arts, Rheims") (name fb:en.carnegie_library_of_reims "Carnegie Library of Reims") (name fb:en.foujita_chapel "Foujita Chapel"))) (type fb:travel.tourist_attraction) What do most tourists visit in Reims? Foujita Chapel -2.146 formula (and (fb:type.object.type fb:common.topic) (!fb:travel.travel_destination.tourist_attractions fb:en.reims))) (value (list (name fb:m.0jt0kx7 "Montagne de Reims Regional Natural Park") (name fb:en.reims-gueux Reims-Gueux) (name fb:en.notre-dame_de_reims "Reims Cathedral") (name fb:en.abbey_of_saint-remi "Abbey of Saint-Remi") (name fb:en.porte_de_mars "Porte Mars") (name fb:en.palace_of_tau "Palace of Tau") (name fb:en.chateau_de_conde "Ch��teau de Cond��") (name fb:m.0gg8v_l "Museum of Fine Arts, Rheims") (name fb:en.carnegie_library_of_reims "Carnegie Library of Reims") (name fb:en.foujita_chapel "Foujita Chapel"))) (type fb:travel.tourist_attraction) Where is South Bend? Mendoza College of Business -4.016 formula (and (fb:type.object.type fb:location.location) (fb:location.location.containedby fb:en.south_bend))) (value (list (name fb:en.mendoza_college_of_business "Mendoza College of Business") (name fb:en.indiana_university_south_bend "Indiana University South Bend") (name fb:en.south_bend_regional_airport "South Bend Regional Airport") (name fb:en.fiddlers_hearth "Fiddler's Hearth") (name fb:m.0k1bx1p "College Football Hall of Fame") (name fb:en.la_salle_street_bridge "La Salle Street Bridge") (name fb:en.stanley_coveleski_regional_stadium "Stanley Coveleski Regional Stadium") (name fb:en.west_washington_historic_district "West Washington Historic District") (name fb:en.brown_mackie_college_south_bend "Brown Mackie College - South Bend") (name fb:m.0k1bdks "South Bend Civic Theatre"))) (type fb:location.location) Where is South Bend? Indiana University South Bend -4.016 formula (and (fb:type.object.type fb:location.location) (fb:location.location.containedby fb:en.south_bend))) (value (list (name fb:en.mendoza_college_of_business "Mendoza College of Business") (name fb:en.indiana_university_south_bend "Indiana University South Bend") (name fb:en.south_bend_regional_airport "South Bend Regional Airport") (name fb:en.fiddlers_hearth "Fiddler's Hearth") (name fb:m.0k1bx1p "College Football Hall of Fame") (name fb:en.la_salle_street_bridge "La Salle Street Bridge") (name fb:en.stanley_coveleski_regional_stadium "Stanley Coveleski Regional Stadium") (name fb:en.west_washington_historic_district "West Washington Historic District") (name fb:en.brown_mackie_college_south_bend "Brown Mackie College - South Bend") (name fb:m.0k1bdks "South Bend Civic Theatre"))) (type fb:location.location) Where is South Bend? South Bend Regional Airport -4.016 formula (and (fb:type.object.type fb:location.location) (fb:location.location.containedby fb:en.south_bend))) (value (list (name fb:en.mendoza_college_of_business "Mendoza College of Business") (name fb:en.indiana_university_south_bend "Indiana University South Bend") (name fb:en.south_bend_regional_airport "South Bend Regional Airport") (name fb:en.fiddlers_hearth "Fiddler's Hearth") (name fb:m.0k1bx1p "College Football Hall of Fame") (name fb:en.la_salle_street_bridge "La Salle Street Bridge") (name fb:en.stanley_coveleski_regional_stadium "Stanley Coveleski Regional Stadium") (name fb:en.west_washington_historic_district "West Washington Historic District") (name fb:en.brown_mackie_college_south_bend "Brown Mackie College - South Bend") (name fb:m.0k1bdks "South Bend Civic Theatre"))) (type fb:location.location) Where is South Bend? Fiddler's Hearth -4.016 formula (and (fb:type.object.type fb:location.location) (fb:location.location.containedby fb:en.south_bend))) (value (list (name fb:en.mendoza_college_of_business "Mendoza College of Business") (name fb:en.indiana_university_south_bend "Indiana University South Bend") (name fb:en.south_bend_regional_airport "South Bend Regional Airport") (name fb:en.fiddlers_hearth "Fiddler's Hearth") (name fb:m.0k1bx1p "College Football Hall of Fame") (name fb:en.la_salle_street_bridge "La Salle Street Bridge") (name fb:en.stanley_coveleski_regional_stadium "Stanley Coveleski Regional Stadium") (name fb:en.west_washington_historic_district "West Washington Historic District") (name fb:en.brown_mackie_college_south_bend "Brown Mackie College - South Bend") (name fb:m.0k1bdks "South Bend Civic Theatre"))) (type fb:location.location) Where is South Bend? College Football Hall of Fame -4.016 formula (and (fb:type.object.type fb:location.location) (fb:location.location.containedby fb:en.south_bend))) (value (list (name fb:en.mendoza_college_of_business "Mendoza College of Business") (name fb:en.indiana_university_south_bend "Indiana University South Bend") (name fb:en.south_bend_regional_airport "South Bend Regional Airport") (name fb:en.fiddlers_hearth "Fiddler's Hearth") (name fb:m.0k1bx1p "College Football Hall of Fame") (name fb:en.la_salle_street_bridge "La Salle Street Bridge") (name fb:en.stanley_coveleski_regional_stadium "Stanley Coveleski Regional Stadium") (name fb:en.west_washington_historic_district "West Washington Historic District") (name fb:en.brown_mackie_college_south_bend "Brown Mackie College - South Bend") (name fb:m.0k1bdks "South Bend Civic Theatre"))) (type fb:location.location) Where is South Bend? La Salle Street Bridge -4.016 formula (and (fb:type.object.type fb:location.location) (fb:location.location.containedby fb:en.south_bend))) (value (list (name fb:en.mendoza_college_of_business "Mendoza College of Business") (name fb:en.indiana_university_south_bend "Indiana University South Bend") (name fb:en.south_bend_regional_airport "South Bend Regional Airport") (name fb:en.fiddlers_hearth "Fiddler's Hearth") (name fb:m.0k1bx1p "College Football Hall of Fame") (name fb:en.la_salle_street_bridge "La Salle Street Bridge") (name fb:en.stanley_coveleski_regional_stadium "Stanley Coveleski Regional Stadium") (name fb:en.west_washington_historic_district "West Washington Historic District") (name fb:en.brown_mackie_college_south_bend "Brown Mackie College - South Bend") (name fb:m.0k1bdks "South Bend Civic Theatre"))) (type fb:location.location) Where is South Bend? Stanley Coveleski Regional Stadium -4.016 formula (and (fb:type.object.type fb:location.location) (fb:location.location.containedby fb:en.south_bend))) (value (list (name fb:en.mendoza_college_of_business "Mendoza College of Business") (name fb:en.indiana_university_south_bend "Indiana University South Bend") (name fb:en.south_bend_regional_airport "South Bend Regional Airport") (name fb:en.fiddlers_hearth "Fiddler's Hearth") (name fb:m.0k1bx1p "College Football Hall of Fame") (name fb:en.la_salle_street_bridge "La Salle Street Bridge") (name fb:en.stanley_coveleski_regional_stadium "Stanley Coveleski Regional Stadium") (name fb:en.west_washington_historic_district "West Washington Historic District") (name fb:en.brown_mackie_college_south_bend "Brown Mackie College - South Bend") (name fb:m.0k1bdks "South Bend Civic Theatre"))) (type fb:location.location) Where is South Bend? West Washington Historic District -4.016 formula (and (fb:type.object.type fb:location.location) (fb:location.location.containedby fb:en.south_bend))) (value (list (name fb:en.mendoza_college_of_business "Mendoza College of Business") (name fb:en.indiana_university_south_bend "Indiana University South Bend") (name fb:en.south_bend_regional_airport "South Bend Regional Airport") (name fb:en.fiddlers_hearth "Fiddler's Hearth") (name fb:m.0k1bx1p "College Football Hall of Fame") (name fb:en.la_salle_street_bridge "La Salle Street Bridge") (name fb:en.stanley_coveleski_regional_stadium "Stanley Coveleski Regional Stadium") (name fb:en.west_washington_historic_district "West Washington Historic District") (name fb:en.brown_mackie_college_south_bend "Brown Mackie College - South Bend") (name fb:m.0k1bdks "South Bend Civic Theatre"))) (type fb:location.location) Where is South Bend? Brown Mackie College - South Bend -4.016 formula (and (fb:type.object.type fb:location.location) (fb:location.location.containedby fb:en.south_bend))) (value (list (name fb:en.mendoza_college_of_business "Mendoza College of Business") (name fb:en.indiana_university_south_bend "Indiana University South Bend") (name fb:en.south_bend_regional_airport "South Bend Regional Airport") (name fb:en.fiddlers_hearth "Fiddler's Hearth") (name fb:m.0k1bx1p "College Football Hall of Fame") (name fb:en.la_salle_street_bridge "La Salle Street Bridge") (name fb:en.stanley_coveleski_regional_stadium "Stanley Coveleski Regional Stadium") (name fb:en.west_washington_historic_district "West Washington Historic District") (name fb:en.brown_mackie_college_south_bend "Brown Mackie College - South Bend") (name fb:m.0k1bdks "South Bend Civic Theatre"))) (type fb:location.location) Where is South Bend? South Bend Civic Theatre -4.016 formula (and (fb:type.object.type fb:location.location) (fb:location.location.containedby fb:en.south_bend))) (value (list (name fb:en.mendoza_college_of_business "Mendoza College of Business") (name fb:en.indiana_university_south_bend "Indiana University South Bend") (name fb:en.south_bend_regional_airport "South Bend Regional Airport") (name fb:en.fiddlers_hearth "Fiddler's Hearth") (name fb:m.0k1bx1p "College Football Hall of Fame") (name fb:en.la_salle_street_bridge "La Salle Street Bridge") (name fb:en.stanley_coveleski_regional_stadium "Stanley Coveleski Regional Stadium") (name fb:en.west_washington_historic_district "West Washington Historic District") (name fb:en.brown_mackie_college_south_bend "Brown Mackie College - South Bend") (name fb:m.0k1bdks "South Bend Civic Theatre"))) (type fb:location.location) Who was the third Imam of Shiite Muslims? Ahmed Yassin -0.512 formula (and (fb:type.object.type fb:people.person) (!fb:people.profession.people_with_this_profession fb:en.imam))) (value (list (name fb:en.ahmed_yassin "Ahmed Yassin") (name fb:en.siraj_wahhaj "Siraj Wahhaj") (name fb:en.warith_deen_muhammad "Warith Deen Mohammed") (name fb:en.anwar_al-awlaki "Anwar al-Aulaqi") (name fb:m.0hhr9bq "Muhammad bin Yahya al-Ninowy") (name fb:en.izz_ad-din_al-qassam "Izz ad-Din al-Qassam") (name fb:en.saud_al-shuraim "Saud Al-Shuraim") (name fb:en.elijah_muhammad "Elijah Muhammad") (name fb:en.imam_ghalib_bin_ali "Ghalib Bin Ali") (name fb:en.shaker_elsayed "Shaker Elsayed"))) (type fb:people.person) Who was the third Imam of Shiite Muslims? Siraj Wahhaj -0.512 formula (and (fb:type.object.type fb:people.person) (!fb:people.profession.people_with_this_profession fb:en.imam))) (value (list (name fb:en.ahmed_yassin "Ahmed Yassin") (name fb:en.siraj_wahhaj "Siraj Wahhaj") (name fb:en.warith_deen_muhammad "Warith Deen Mohammed") (name fb:en.anwar_al-awlaki "Anwar al-Aulaqi") (name fb:m.0hhr9bq "Muhammad bin Yahya al-Ninowy") (name fb:en.izz_ad-din_al-qassam "Izz ad-Din al-Qassam") (name fb:en.saud_al-shuraim "Saud Al-Shuraim") (name fb:en.elijah_muhammad "Elijah Muhammad") (name fb:en.imam_ghalib_bin_ali "Ghalib Bin Ali") (name fb:en.shaker_elsayed "Shaker Elsayed"))) (type fb:people.person) Who was the third Imam of Shiite Muslims? Warith Deen Mohammed -0.512 formula (and (fb:type.object.type fb:people.person) (!fb:people.profession.people_with_this_profession fb:en.imam))) (value (list (name fb:en.ahmed_yassin "Ahmed Yassin") (name fb:en.siraj_wahhaj "Siraj Wahhaj") (name fb:en.warith_deen_muhammad "Warith Deen Mohammed") (name fb:en.anwar_al-awlaki "Anwar al-Aulaqi") (name fb:m.0hhr9bq "Muhammad bin Yahya al-Ninowy") (name fb:en.izz_ad-din_al-qassam "Izz ad-Din al-Qassam") (name fb:en.saud_al-shuraim "Saud Al-Shuraim") (name fb:en.elijah_muhammad "Elijah Muhammad") (name fb:en.imam_ghalib_bin_ali "Ghalib Bin Ali") (name fb:en.shaker_elsayed "Shaker Elsayed"))) (type fb:people.person) Who was the third Imam of Shiite Muslims? Anwar al-Aulaqi -0.512 formula (and (fb:type.object.type fb:people.person) (!fb:people.profession.people_with_this_profession fb:en.imam))) (value (list (name fb:en.ahmed_yassin "Ahmed Yassin") (name fb:en.siraj_wahhaj "Siraj Wahhaj") (name fb:en.warith_deen_muhammad "Warith Deen Mohammed") (name fb:en.anwar_al-awlaki "Anwar al-Aulaqi") (name fb:m.0hhr9bq "Muhammad bin Yahya al-Ninowy") (name fb:en.izz_ad-din_al-qassam "Izz ad-Din al-Qassam") (name fb:en.saud_al-shuraim "Saud Al-Shuraim") (name fb:en.elijah_muhammad "Elijah Muhammad") (name fb:en.imam_ghalib_bin_ali "Ghalib Bin Ali") (name fb:en.shaker_elsayed "Shaker Elsayed"))) (type fb:people.person) Who was the third Imam of Shiite Muslims? Muhammad bin Yahya al-Ninowy -0.512 formula (and (fb:type.object.type fb:people.person) (!fb:people.profession.people_with_this_profession fb:en.imam))) (value (list (name fb:en.ahmed_yassin "Ahmed Yassin") (name fb:en.siraj_wahhaj "Siraj Wahhaj") (name fb:en.warith_deen_muhammad "Warith Deen Mohammed") (name fb:en.anwar_al-awlaki "Anwar al-Aulaqi") (name fb:m.0hhr9bq "Muhammad bin Yahya al-Ninowy") (name fb:en.izz_ad-din_al-qassam "Izz ad-Din al-Qassam") (name fb:en.saud_al-shuraim "Saud Al-Shuraim") (name fb:en.elijah_muhammad "Elijah Muhammad") (name fb:en.imam_ghalib_bin_ali "Ghalib Bin Ali") (name fb:en.shaker_elsayed "Shaker Elsayed"))) (type fb:people.person) Who was the third Imam of Shiite Muslims? Izz ad-Din al-Qassam -0.512 formula (and (fb:type.object.type fb:people.person) (!fb:people.profession.people_with_this_profession fb:en.imam))) (value (list (name fb:en.ahmed_yassin "Ahmed Yassin") (name fb:en.siraj_wahhaj "Siraj Wahhaj") (name fb:en.warith_deen_muhammad "Warith Deen Mohammed") (name fb:en.anwar_al-awlaki "Anwar al-Aulaqi") (name fb:m.0hhr9bq "Muhammad bin Yahya al-Ninowy") (name fb:en.izz_ad-din_al-qassam "Izz ad-Din al-Qassam") (name fb:en.saud_al-shuraim "Saud Al-Shuraim") (name fb:en.elijah_muhammad "Elijah Muhammad") (name fb:en.imam_ghalib_bin_ali "Ghalib Bin Ali") (name fb:en.shaker_elsayed "Shaker Elsayed"))) (type fb:people.person) Who was the third Imam of Shiite Muslims? Saud Al-Shuraim -0.512 formula (and (fb:type.object.type fb:people.person) (!fb:people.profession.people_with_this_profession fb:en.imam))) (value (list (name fb:en.ahmed_yassin "Ahmed Yassin") (name fb:en.siraj_wahhaj "Siraj Wahhaj") (name fb:en.warith_deen_muhammad "Warith Deen Mohammed") (name fb:en.anwar_al-awlaki "Anwar al-Aulaqi") (name fb:m.0hhr9bq "Muhammad bin Yahya al-Ninowy") (name fb:en.izz_ad-din_al-qassam "Izz ad-Din al-Qassam") (name fb:en.saud_al-shuraim "Saud Al-Shuraim") (name fb:en.elijah_muhammad "Elijah Muhammad") (name fb:en.imam_ghalib_bin_ali "Ghalib Bin Ali") (name fb:en.shaker_elsayed "Shaker Elsayed"))) (type fb:people.person) Who was the third Imam of Shiite Muslims? Elijah Muhammad -0.512 formula (and (fb:type.object.type fb:people.person) (!fb:people.profession.people_with_this_profession fb:en.imam))) (value (list (name fb:en.ahmed_yassin "Ahmed Yassin") (name fb:en.siraj_wahhaj "Siraj Wahhaj") (name fb:en.warith_deen_muhammad "Warith Deen Mohammed") (name fb:en.anwar_al-awlaki "Anwar al-Aulaqi") (name fb:m.0hhr9bq "Muhammad bin Yahya al-Ninowy") (name fb:en.izz_ad-din_al-qassam "Izz ad-Din al-Qassam") (name fb:en.saud_al-shuraim "Saud Al-Shuraim") (name fb:en.elijah_muhammad "Elijah Muhammad") (name fb:en.imam_ghalib_bin_ali "Ghalib Bin Ali") (name fb:en.shaker_elsayed "Shaker Elsayed"))) (type fb:people.person) Who was the third Imam of Shiite Muslims? Ghalib Bin Ali -0.512 formula (and (fb:type.object.type fb:people.person) (!fb:people.profession.people_with_this_profession fb:en.imam))) (value (list (name fb:en.ahmed_yassin "Ahmed Yassin") (name fb:en.siraj_wahhaj "Siraj Wahhaj") (name fb:en.warith_deen_muhammad "Warith Deen Mohammed") (name fb:en.anwar_al-awlaki "Anwar al-Aulaqi") (name fb:m.0hhr9bq "Muhammad bin Yahya al-Ninowy") (name fb:en.izz_ad-din_al-qassam "Izz ad-Din al-Qassam") (name fb:en.saud_al-shuraim "Saud Al-Shuraim") (name fb:en.elijah_muhammad "Elijah Muhammad") (name fb:en.imam_ghalib_bin_ali "Ghalib Bin Ali") (name fb:en.shaker_elsayed "Shaker Elsayed"))) (type fb:people.person) Who was the third Imam of Shiite Muslims? Shaker Elsayed -0.512 formula (and (fb:type.object.type fb:people.person) (!fb:people.profession.people_with_this_profession fb:en.imam))) (value (list (name fb:en.ahmed_yassin "Ahmed Yassin") (name fb:en.siraj_wahhaj "Siraj Wahhaj") (name fb:en.warith_deen_muhammad "Warith Deen Mohammed") (name fb:en.anwar_al-awlaki "Anwar al-Aulaqi") (name fb:m.0hhr9bq "Muhammad bin Yahya al-Ninowy") (name fb:en.izz_ad-din_al-qassam "Izz ad-Din al-Qassam") (name fb:en.saud_al-shuraim "Saud Al-Shuraim") (name fb:en.elijah_muhammad "Elijah Muhammad") (name fb:en.imam_ghalib_bin_ali "Ghalib Bin Ali") (name fb:en.shaker_elsayed "Shaker Elsayed"))) (type fb:people.person) Whom did the Chicago Bulls beat in the 1993 championship? 1996 NBA Finals -2.068 formula (!fb:sports.sports_team.championships fb:en.chicago_bulls)) (value (list (name fb:en.1996_nba_finals "1996 NBA Finals") (name fb:en.1993_nba_finals "1993 NBA Finals") (name fb:en.1991_nba_finals "1991 NBA Finals") (name fb:en.1998_nba_finals "1998 NBA Finals") (name fb:en.1992_nba_finals "1992 NBA Finals") (name fb:en.1997_nba_finals "1997 NBA Finals"))) (type fb:sports.sports_championship_event) Whom did the Chicago Bulls beat in the 1993 championship? 1993 NBA Finals -2.068 formula (!fb:sports.sports_team.championships fb:en.chicago_bulls)) (value (list (name fb:en.1996_nba_finals "1996 NBA Finals") (name fb:en.1993_nba_finals "1993 NBA Finals") (name fb:en.1991_nba_finals "1991 NBA Finals") (name fb:en.1998_nba_finals "1998 NBA Finals") (name fb:en.1992_nba_finals "1992 NBA Finals") (name fb:en.1997_nba_finals "1997 NBA Finals"))) (type fb:sports.sports_championship_event) Whom did the Chicago Bulls beat in the 1993 championship? 1991 NBA Finals -2.068 formula (!fb:sports.sports_team.championships fb:en.chicago_bulls)) (value (list (name fb:en.1996_nba_finals "1996 NBA Finals") (name fb:en.1993_nba_finals "1993 NBA Finals") (name fb:en.1991_nba_finals "1991 NBA Finals") (name fb:en.1998_nba_finals "1998 NBA Finals") (name fb:en.1992_nba_finals "1992 NBA Finals") (name fb:en.1997_nba_finals "1997 NBA Finals"))) (type fb:sports.sports_championship_event) Whom did the Chicago Bulls beat in the 1993 championship? 1998 NBA Finals -2.068 formula (!fb:sports.sports_team.championships fb:en.chicago_bulls)) (value (list (name fb:en.1996_nba_finals "1996 NBA Finals") (name fb:en.1993_nba_finals "1993 NBA Finals") (name fb:en.1991_nba_finals "1991 NBA Finals") (name fb:en.1998_nba_finals "1998 NBA Finals") (name fb:en.1992_nba_finals "1992 NBA Finals") (name fb:en.1997_nba_finals "1997 NBA Finals"))) (type fb:sports.sports_championship_event) Whom did the Chicago Bulls beat in the 1993 championship? 1992 NBA Finals -2.068 formula (!fb:sports.sports_team.championships fb:en.chicago_bulls)) (value (list (name fb:en.1996_nba_finals "1996 NBA Finals") (name fb:en.1993_nba_finals "1993 NBA Finals") (name fb:en.1991_nba_finals "1991 NBA Finals") (name fb:en.1998_nba_finals "1998 NBA Finals") (name fb:en.1992_nba_finals "1992 NBA Finals") (name fb:en.1997_nba_finals "1997 NBA Finals"))) (type fb:sports.sports_championship_event) Whom did the Chicago Bulls beat in the 1993 championship? 1997 NBA Finals -2.068 formula (!fb:sports.sports_team.championships fb:en.chicago_bulls)) (value (list (name fb:en.1996_nba_finals "1996 NBA Finals") (name fb:en.1993_nba_finals "1993 NBA Finals") (name fb:en.1991_nba_finals "1991 NBA Finals") (name fb:en.1998_nba_finals "1998 NBA Finals") (name fb:en.1992_nba_finals "1992 NBA Finals") (name fb:en.1997_nba_finals "1997 NBA Finals"))) (type fb:sports.sports_championship_event) For whom was the state of Pennsylvania named? Secretary of the Commonwealth of Pennsylvania -2.99 formula (!fb:government.government_position_held.office_position_or_title (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.pennsylvania) (fb:government.government_position_held.basic_title fb:m.09n5b9)))) (value (list (name fb:en.secretary_of_the_commonwealth_of_pennsylvania "Secretary of the Commonwealth of Pennsylvania"))) (type fb:government.government_office_or_title) ================================================ FILE: oqa-data/predictions/sempre-webquestions.txt ================================================ what does jamaican people speak? Chinese Jamaicans 7.457 formula (fb:people.ethnicity.languages_spoken fb:en.jamaican_creole)) (value (list (name fb:en.chinese_jamaican "Chinese Jamaicans") (name fb:en.jamaicans_of_african_ancestry "Jamaicans of African ancestry") (name fb:en.jamaican_american "Jamaican American") (name fb:en.indo-caribbean Indo-Caribbean) (name fb:en.jamaican_british "British Jamaican") (name fb:en.jamaican_australian "Jamaican Australian") (name fb:en.jamaican_canadian "Jamaican Canadian") (name fb:m.0hnb50_ "Lebanese immigration to Jamaica") (name fb:m.0dgnbjt "Igbo people in Jamaica") (name fb:en.chinese_caribbean "Chinese Caribbean"))) (type fb:people.ethnicity) what does jamaican people speak? Jamaicans of African ancestry 7.457 formula (fb:people.ethnicity.languages_spoken fb:en.jamaican_creole)) (value (list (name fb:en.chinese_jamaican "Chinese Jamaicans") (name fb:en.jamaicans_of_african_ancestry "Jamaicans of African ancestry") (name fb:en.jamaican_american "Jamaican American") (name fb:en.indo-caribbean Indo-Caribbean) (name fb:en.jamaican_british "British Jamaican") (name fb:en.jamaican_australian "Jamaican Australian") (name fb:en.jamaican_canadian "Jamaican Canadian") (name fb:m.0hnb50_ "Lebanese immigration to Jamaica") (name fb:m.0dgnbjt "Igbo people in Jamaica") (name fb:en.chinese_caribbean "Chinese Caribbean"))) (type fb:people.ethnicity) what does jamaican people speak? Jamaican American 7.457 formula (fb:people.ethnicity.languages_spoken fb:en.jamaican_creole)) (value (list (name fb:en.chinese_jamaican "Chinese Jamaicans") (name fb:en.jamaicans_of_african_ancestry "Jamaicans of African ancestry") (name fb:en.jamaican_american "Jamaican American") (name fb:en.indo-caribbean Indo-Caribbean) (name fb:en.jamaican_british "British Jamaican") (name fb:en.jamaican_australian "Jamaican Australian") (name fb:en.jamaican_canadian "Jamaican Canadian") (name fb:m.0hnb50_ "Lebanese immigration to Jamaica") (name fb:m.0dgnbjt "Igbo people in Jamaica") (name fb:en.chinese_caribbean "Chinese Caribbean"))) (type fb:people.ethnicity) what does jamaican people speak? British Jamaican 7.457 formula (fb:people.ethnicity.languages_spoken fb:en.jamaican_creole)) (value (list (name fb:en.chinese_jamaican "Chinese Jamaicans") (name fb:en.jamaicans_of_african_ancestry "Jamaicans of African ancestry") (name fb:en.jamaican_american "Jamaican American") (name fb:en.indo-caribbean Indo-Caribbean) (name fb:en.jamaican_british "British Jamaican") (name fb:en.jamaican_australian "Jamaican Australian") (name fb:en.jamaican_canadian "Jamaican Canadian") (name fb:m.0hnb50_ "Lebanese immigration to Jamaica") (name fb:m.0dgnbjt "Igbo people in Jamaica") (name fb:en.chinese_caribbean "Chinese Caribbean"))) (type fb:people.ethnicity) what does jamaican people speak? Jamaican Australian 7.457 formula (fb:people.ethnicity.languages_spoken fb:en.jamaican_creole)) (value (list (name fb:en.chinese_jamaican "Chinese Jamaicans") (name fb:en.jamaicans_of_african_ancestry "Jamaicans of African ancestry") (name fb:en.jamaican_american "Jamaican American") (name fb:en.indo-caribbean Indo-Caribbean) (name fb:en.jamaican_british "British Jamaican") (name fb:en.jamaican_australian "Jamaican Australian") (name fb:en.jamaican_canadian "Jamaican Canadian") (name fb:m.0hnb50_ "Lebanese immigration to Jamaica") (name fb:m.0dgnbjt "Igbo people in Jamaica") (name fb:en.chinese_caribbean "Chinese Caribbean"))) (type fb:people.ethnicity) what does jamaican people speak? Jamaican Canadian 7.457 formula (fb:people.ethnicity.languages_spoken fb:en.jamaican_creole)) (value (list (name fb:en.chinese_jamaican "Chinese Jamaicans") (name fb:en.jamaicans_of_african_ancestry "Jamaicans of African ancestry") (name fb:en.jamaican_american "Jamaican American") (name fb:en.indo-caribbean Indo-Caribbean) (name fb:en.jamaican_british "British Jamaican") (name fb:en.jamaican_australian "Jamaican Australian") (name fb:en.jamaican_canadian "Jamaican Canadian") (name fb:m.0hnb50_ "Lebanese immigration to Jamaica") (name fb:m.0dgnbjt "Igbo people in Jamaica") (name fb:en.chinese_caribbean "Chinese Caribbean"))) (type fb:people.ethnicity) what does jamaican people speak? Lebanese immigration to Jamaica 7.457 formula (fb:people.ethnicity.languages_spoken fb:en.jamaican_creole)) (value (list (name fb:en.chinese_jamaican "Chinese Jamaicans") (name fb:en.jamaicans_of_african_ancestry "Jamaicans of African ancestry") (name fb:en.jamaican_american "Jamaican American") (name fb:en.indo-caribbean Indo-Caribbean) (name fb:en.jamaican_british "British Jamaican") (name fb:en.jamaican_australian "Jamaican Australian") (name fb:en.jamaican_canadian "Jamaican Canadian") (name fb:m.0hnb50_ "Lebanese immigration to Jamaica") (name fb:m.0dgnbjt "Igbo people in Jamaica") (name fb:en.chinese_caribbean "Chinese Caribbean"))) (type fb:people.ethnicity) what does jamaican people speak? Igbo people in Jamaica 7.457 formula (fb:people.ethnicity.languages_spoken fb:en.jamaican_creole)) (value (list (name fb:en.chinese_jamaican "Chinese Jamaicans") (name fb:en.jamaicans_of_african_ancestry "Jamaicans of African ancestry") (name fb:en.jamaican_american "Jamaican American") (name fb:en.indo-caribbean Indo-Caribbean) (name fb:en.jamaican_british "British Jamaican") (name fb:en.jamaican_australian "Jamaican Australian") (name fb:en.jamaican_canadian "Jamaican Canadian") (name fb:m.0hnb50_ "Lebanese immigration to Jamaica") (name fb:m.0dgnbjt "Igbo people in Jamaica") (name fb:en.chinese_caribbean "Chinese Caribbean"))) (type fb:people.ethnicity) what does jamaican people speak? Chinese Caribbean 7.457 formula (fb:people.ethnicity.languages_spoken fb:en.jamaican_creole)) (value (list (name fb:en.chinese_jamaican "Chinese Jamaicans") (name fb:en.jamaicans_of_african_ancestry "Jamaicans of African ancestry") (name fb:en.jamaican_american "Jamaican American") (name fb:en.indo-caribbean Indo-Caribbean) (name fb:en.jamaican_british "British Jamaican") (name fb:en.jamaican_australian "Jamaican Australian") (name fb:en.jamaican_canadian "Jamaican Canadian") (name fb:m.0hnb50_ "Lebanese immigration to Jamaica") (name fb:m.0dgnbjt "Igbo people in Jamaica") (name fb:en.chinese_caribbean "Chinese Caribbean"))) (type fb:people.ethnicity) what did james k polk do before he was president? George M. Dallas 16.894 formula (and (fb:type.object.type fb:government.us_vice_president) (!fb:government.us_president.vice_president fb:en.james_k_polk))) (value (list (name fb:en.george_m_dallas "George M. Dallas"))) (type (union fb:government.us_vice_president)) who plays ken barlow in coronation street? Power forward 5.2 formula (fb:basketball.basketball_position.players fb:m.03wfmtk)) (value (list (name fb:en.power_forward "Power forward") (name fb:en.small_forward "Small forward"))) (type fb:basketball.basketball_position) who plays ken barlow in coronation street? Small forward 5.2 formula (fb:basketball.basketball_position.players fb:m.03wfmtk)) (value (list (name fb:en.power_forward "Power forward") (name fb:en.small_forward "Small forward"))) (type fb:basketball.basketball_position) who was richard nixon married to? Pat Nixon 19.122 formula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.richard_nixon)) (value (list (name fb:en.pat_nixon "Pat Nixon"))) (type fb:people.person) what country did germany invade first in ww1? United States of America 20.997 formula (and (fb:type.object.type fb:location.country) ((lambda x (fb:location.statistical_region.places_imported_from (fb:location.imports_and_exports.imported_from (var x)))) fb:en.germany))) (value (list (name fb:en.algeria Algeria) (name fb:en.albania_france Albania) (name fb:en.afghanistan Afghanistan) (name fb:en.united_states_of_america "United States of America"))) (type (union fb:location.country)) who is governor of ohio 2011? Kris Jordan 16.025 formula (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.ohio) (fb:government.government_position_held.from (date 2011 -1 -1))))) (value (list (name fb:en.kris_jordan "Kris Jordan") (name fb:en.mike_dewine "Mike DeWine") (name fb:en.john_kasich "John Kasich") (name fb:m.0fq17s0 "Lou Gentile") (name fb:en.scott_oelslager "Scott Oelslager") (name fb:m.05p5589 "Kevin Bacon") (name fb:en.jon_husted "Jon A. Husted"))) (type fb:government.politician) who is governor of ohio 2011? Mike DeWine 16.025 formula (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.ohio) (fb:government.government_position_held.from (date 2011 -1 -1))))) (value (list (name fb:en.kris_jordan "Kris Jordan") (name fb:en.mike_dewine "Mike DeWine") (name fb:en.john_kasich "John Kasich") (name fb:m.0fq17s0 "Lou Gentile") (name fb:en.scott_oelslager "Scott Oelslager") (name fb:m.05p5589 "Kevin Bacon") (name fb:en.jon_husted "Jon A. Husted"))) (type fb:government.politician) who is governor of ohio 2011? John Kasich 16.025 formula (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.ohio) (fb:government.government_position_held.from (date 2011 -1 -1))))) (value (list (name fb:en.kris_jordan "Kris Jordan") (name fb:en.mike_dewine "Mike DeWine") (name fb:en.john_kasich "John Kasich") (name fb:m.0fq17s0 "Lou Gentile") (name fb:en.scott_oelslager "Scott Oelslager") (name fb:m.05p5589 "Kevin Bacon") (name fb:en.jon_husted "Jon A. Husted"))) (type fb:government.politician) who is governor of ohio 2011? Lou Gentile 16.025 formula (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.ohio) (fb:government.government_position_held.from (date 2011 -1 -1))))) (value (list (name fb:en.kris_jordan "Kris Jordan") (name fb:en.mike_dewine "Mike DeWine") (name fb:en.john_kasich "John Kasich") (name fb:m.0fq17s0 "Lou Gentile") (name fb:en.scott_oelslager "Scott Oelslager") (name fb:m.05p5589 "Kevin Bacon") (name fb:en.jon_husted "Jon A. Husted"))) (type fb:government.politician) who is governor of ohio 2011? Scott Oelslager 16.025 formula (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.ohio) (fb:government.government_position_held.from (date 2011 -1 -1))))) (value (list (name fb:en.kris_jordan "Kris Jordan") (name fb:en.mike_dewine "Mike DeWine") (name fb:en.john_kasich "John Kasich") (name fb:m.0fq17s0 "Lou Gentile") (name fb:en.scott_oelslager "Scott Oelslager") (name fb:m.05p5589 "Kevin Bacon") (name fb:en.jon_husted "Jon A. Husted"))) (type fb:government.politician) who is governor of ohio 2011? Kevin Bacon 16.025 formula (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.ohio) (fb:government.government_position_held.from (date 2011 -1 -1))))) (value (list (name fb:en.kris_jordan "Kris Jordan") (name fb:en.mike_dewine "Mike DeWine") (name fb:en.john_kasich "John Kasich") (name fb:m.0fq17s0 "Lou Gentile") (name fb:en.scott_oelslager "Scott Oelslager") (name fb:m.05p5589 "Kevin Bacon") (name fb:en.jon_husted "Jon A. Husted"))) (type fb:government.politician) who is governor of ohio 2011? Jon A. Husted 16.025 formula (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.ohio) (fb:government.government_position_held.from (date 2011 -1 -1))))) (value (list (name fb:en.kris_jordan "Kris Jordan") (name fb:en.mike_dewine "Mike DeWine") (name fb:en.john_kasich "John Kasich") (name fb:m.0fq17s0 "Lou Gentile") (name fb:en.scott_oelslager "Scott Oelslager") (name fb:m.05p5589 "Kevin Bacon") (name fb:en.jon_husted "Jon A. Husted"))) (type fb:government.politician) who was vice president after kennedy died? Lyndon B. Johnson 13.041 formula (fb:government.us_vice_president.to_president fb:en.john_f_kennedy)) (value (list (name fb:en.lyndon_b_johnson "Lyndon B. Johnson"))) (type fb:government.us_vice_president) who is the minority leader of the house of representatives now? Kerry Knott 14.478 formula ((lambda x (!fb:business.employment_tenure.person (!fb:business.employer.employees (var x)))) fb:en.united_states_house_of_representatives)) (value (list (name fb:en.kerry_knott "Kerry Knott") (name fb:en.laurie_s_fulton "Laurie S. Fulton") (name fb:en.leon_panetta "Leon Panetta") (name fb:en.robert_gibbs "Robert Gibbs") (name fb:en.julia_allison "Julia Allison") (name fb:en.ziad_s_ojakli "Ziad S. Ojakli") (name fb:en.john_m_mchugh "John M. McHugh") (name fb:en.phil_schiliro "Phil Schiliro") (name fb:en.ray_lahood "Ray LaHood") (name fb:en.shephard_w_hill "Shephard W. Hill"))) (type fb:people.person) who is the minority leader of the house of representatives now? Laurie S. Fulton 14.478 formula ((lambda x (!fb:business.employment_tenure.person (!fb:business.employer.employees (var x)))) fb:en.united_states_house_of_representatives)) (value (list (name fb:en.kerry_knott "Kerry Knott") (name fb:en.laurie_s_fulton "Laurie S. Fulton") (name fb:en.leon_panetta "Leon Panetta") (name fb:en.robert_gibbs "Robert Gibbs") (name fb:en.julia_allison "Julia Allison") (name fb:en.ziad_s_ojakli "Ziad S. Ojakli") (name fb:en.john_m_mchugh "John M. McHugh") (name fb:en.phil_schiliro "Phil Schiliro") (name fb:en.ray_lahood "Ray LaHood") (name fb:en.shephard_w_hill "Shephard W. Hill"))) (type fb:people.person) who is the minority leader of the house of representatives now? Leon Panetta 14.478 formula ((lambda x (!fb:business.employment_tenure.person (!fb:business.employer.employees (var x)))) fb:en.united_states_house_of_representatives)) (value (list (name fb:en.kerry_knott "Kerry Knott") (name fb:en.laurie_s_fulton "Laurie S. Fulton") (name fb:en.leon_panetta "Leon Panetta") (name fb:en.robert_gibbs "Robert Gibbs") (name fb:en.julia_allison "Julia Allison") (name fb:en.ziad_s_ojakli "Ziad S. Ojakli") (name fb:en.john_m_mchugh "John M. McHugh") (name fb:en.phil_schiliro "Phil Schiliro") (name fb:en.ray_lahood "Ray LaHood") (name fb:en.shephard_w_hill "Shephard W. Hill"))) (type fb:people.person) who is the minority leader of the house of representatives now? Robert Gibbs 14.478 formula ((lambda x (!fb:business.employment_tenure.person (!fb:business.employer.employees (var x)))) fb:en.united_states_house_of_representatives)) (value (list (name fb:en.kerry_knott "Kerry Knott") (name fb:en.laurie_s_fulton "Laurie S. Fulton") (name fb:en.leon_panetta "Leon Panetta") (name fb:en.robert_gibbs "Robert Gibbs") (name fb:en.julia_allison "Julia Allison") (name fb:en.ziad_s_ojakli "Ziad S. Ojakli") (name fb:en.john_m_mchugh "John M. McHugh") (name fb:en.phil_schiliro "Phil Schiliro") (name fb:en.ray_lahood "Ray LaHood") (name fb:en.shephard_w_hill "Shephard W. Hill"))) (type fb:people.person) who is the minority leader of the house of representatives now? Julia Allison 14.478 formula ((lambda x (!fb:business.employment_tenure.person (!fb:business.employer.employees (var x)))) fb:en.united_states_house_of_representatives)) (value (list (name fb:en.kerry_knott "Kerry Knott") (name fb:en.laurie_s_fulton "Laurie S. Fulton") (name fb:en.leon_panetta "Leon Panetta") (name fb:en.robert_gibbs "Robert Gibbs") (name fb:en.julia_allison "Julia Allison") (name fb:en.ziad_s_ojakli "Ziad S. Ojakli") (name fb:en.john_m_mchugh "John M. McHugh") (name fb:en.phil_schiliro "Phil Schiliro") (name fb:en.ray_lahood "Ray LaHood") (name fb:en.shephard_w_hill "Shephard W. Hill"))) (type fb:people.person) who is the minority leader of the house of representatives now? Ziad S. Ojakli 14.478 formula ((lambda x (!fb:business.employment_tenure.person (!fb:business.employer.employees (var x)))) fb:en.united_states_house_of_representatives)) (value (list (name fb:en.kerry_knott "Kerry Knott") (name fb:en.laurie_s_fulton "Laurie S. Fulton") (name fb:en.leon_panetta "Leon Panetta") (name fb:en.robert_gibbs "Robert Gibbs") (name fb:en.julia_allison "Julia Allison") (name fb:en.ziad_s_ojakli "Ziad S. Ojakli") (name fb:en.john_m_mchugh "John M. McHugh") (name fb:en.phil_schiliro "Phil Schiliro") (name fb:en.ray_lahood "Ray LaHood") (name fb:en.shephard_w_hill "Shephard W. Hill"))) (type fb:people.person) who is the minority leader of the house of representatives now? John M. McHugh 14.478 formula ((lambda x (!fb:business.employment_tenure.person (!fb:business.employer.employees (var x)))) fb:en.united_states_house_of_representatives)) (value (list (name fb:en.kerry_knott "Kerry Knott") (name fb:en.laurie_s_fulton "Laurie S. Fulton") (name fb:en.leon_panetta "Leon Panetta") (name fb:en.robert_gibbs "Robert Gibbs") (name fb:en.julia_allison "Julia Allison") (name fb:en.ziad_s_ojakli "Ziad S. Ojakli") (name fb:en.john_m_mchugh "John M. McHugh") (name fb:en.phil_schiliro "Phil Schiliro") (name fb:en.ray_lahood "Ray LaHood") (name fb:en.shephard_w_hill "Shephard W. Hill"))) (type fb:people.person) who is the minority leader of the house of representatives now? Phil Schiliro 14.478 formula ((lambda x (!fb:business.employment_tenure.person (!fb:business.employer.employees (var x)))) fb:en.united_states_house_of_representatives)) (value (list (name fb:en.kerry_knott "Kerry Knott") (name fb:en.laurie_s_fulton "Laurie S. Fulton") (name fb:en.leon_panetta "Leon Panetta") (name fb:en.robert_gibbs "Robert Gibbs") (name fb:en.julia_allison "Julia Allison") (name fb:en.ziad_s_ojakli "Ziad S. Ojakli") (name fb:en.john_m_mchugh "John M. McHugh") (name fb:en.phil_schiliro "Phil Schiliro") (name fb:en.ray_lahood "Ray LaHood") (name fb:en.shephard_w_hill "Shephard W. Hill"))) (type fb:people.person) who is the minority leader of the house of representatives now? Ray LaHood 14.478 formula ((lambda x (!fb:business.employment_tenure.person (!fb:business.employer.employees (var x)))) fb:en.united_states_house_of_representatives)) (value (list (name fb:en.kerry_knott "Kerry Knott") (name fb:en.laurie_s_fulton "Laurie S. Fulton") (name fb:en.leon_panetta "Leon Panetta") (name fb:en.robert_gibbs "Robert Gibbs") (name fb:en.julia_allison "Julia Allison") (name fb:en.ziad_s_ojakli "Ziad S. Ojakli") (name fb:en.john_m_mchugh "John M. McHugh") (name fb:en.phil_schiliro "Phil Schiliro") (name fb:en.ray_lahood "Ray LaHood") (name fb:en.shephard_w_hill "Shephard W. Hill"))) (type fb:people.person) who is the minority leader of the house of representatives now? Shephard W. Hill 14.478 formula ((lambda x (!fb:business.employment_tenure.person (!fb:business.employer.employees (var x)))) fb:en.united_states_house_of_representatives)) (value (list (name fb:en.kerry_knott "Kerry Knott") (name fb:en.laurie_s_fulton "Laurie S. Fulton") (name fb:en.leon_panetta "Leon Panetta") (name fb:en.robert_gibbs "Robert Gibbs") (name fb:en.julia_allison "Julia Allison") (name fb:en.ziad_s_ojakli "Ziad S. Ojakli") (name fb:en.john_m_mchugh "John M. McHugh") (name fb:en.phil_schiliro "Phil Schiliro") (name fb:en.ray_lahood "Ray LaHood") (name fb:en.shephard_w_hill "Shephard W. Hill"))) (type fb:people.person) what countries are part of the uk? United Kingdom 16.912 formula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland "Northern Ireland") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain "Kingdom of Great Britain") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england "Kingdom of England") (name fb:en.isle_of_man "Isle of Man"))) (type (union fb:location.country)) what countries are part of the uk? Northern Ireland 16.912 formula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland "Northern Ireland") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain "Kingdom of Great Britain") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england "Kingdom of England") (name fb:en.isle_of_man "Isle of Man"))) (type (union fb:location.country)) what countries are part of the uk? Kingdom of Great Britain 16.912 formula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland "Northern Ireland") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain "Kingdom of Great Britain") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england "Kingdom of England") (name fb:en.isle_of_man "Isle of Man"))) (type (union fb:location.country)) what countries are part of the uk? Kingdom of England 16.912 formula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland "Northern Ireland") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain "Kingdom of Great Britain") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england "Kingdom of England") (name fb:en.isle_of_man "Isle of Man"))) (type (union fb:location.country)) what countries are part of the uk? Isle of Man 16.912 formula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland "Northern Ireland") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain "Kingdom of Great Britain") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england "Kingdom of England") (name fb:en.isle_of_man "Isle of Man"))) (type (union fb:location.country)) who plays bilbo baggins in the hobbit? Martin Freeman 9.116 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.bilbo_baggins)) (value (list (name fb:en.martin_freeman "Martin Freeman") (name fb:en.norman_bird "Norman Bird") (name fb:en.ian_holm "Ian Holm"))) (type fb:film.actor) who plays bilbo baggins in the hobbit? Norman Bird 9.116 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.bilbo_baggins)) (value (list (name fb:en.martin_freeman "Martin Freeman") (name fb:en.norman_bird "Norman Bird") (name fb:en.ian_holm "Ian Holm"))) (type fb:film.actor) who plays bilbo baggins in the hobbit? Ian Holm 9.116 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.bilbo_baggins)) (value (list (name fb:en.martin_freeman "Martin Freeman") (name fb:en.norman_bird "Norman Bird") (name fb:en.ian_holm "Ian Holm"))) (type fb:film.actor) what things did martin luther king do? Martin Luther King Bridge 11.651 formula (!fb:symbols.name_source.namesakes fb:en.martin_luther_king_jr)) (value (list (name fb:en.martin_luther_king_bridge "Martin Luther King Bridge") (name fb:en.martin_luther_king_jr_high_school "Martin Luther King, Jr. High School") (name fb:en.martin_luther_king_day "Martin Luther King, Jr. Day") (name fb:en.martin_luther_king_jr_middle_school "Martin Luther King Jr. Middle School") (name fb:en.martin_luther_king_jr_memorial_library "Martin Luther King Jr. Memorial Library") (name fb:en.martin_luther_king_iii "Martin Luther King III") (name fb:en.dr_martin_luther_king_jr_library "Dr. Martin Luther King, Jr. Library") (name fb:en.martin_luther_king_jr_academy "Martin Luther King, Jr. Academy") (name fb:m.03d4pqv "Martin Luther King High School") (name fb:en.martin_luther_king_jr_shoreline "Martin Luther King Jr. Shoreline"))) (type fb:symbols.namesake) what things did martin luther king do? Martin Luther King, Jr. High School 11.651 formula (!fb:symbols.name_source.namesakes fb:en.martin_luther_king_jr)) (value (list (name fb:en.martin_luther_king_bridge "Martin Luther King Bridge") (name fb:en.martin_luther_king_jr_high_school "Martin Luther King, Jr. High School") (name fb:en.martin_luther_king_day "Martin Luther King, Jr. Day") (name fb:en.martin_luther_king_jr_middle_school "Martin Luther King Jr. Middle School") (name fb:en.martin_luther_king_jr_memorial_library "Martin Luther King Jr. Memorial Library") (name fb:en.martin_luther_king_iii "Martin Luther King III") (name fb:en.dr_martin_luther_king_jr_library "Dr. Martin Luther King, Jr. Library") (name fb:en.martin_luther_king_jr_academy "Martin Luther King, Jr. Academy") (name fb:m.03d4pqv "Martin Luther King High School") (name fb:en.martin_luther_king_jr_shoreline "Martin Luther King Jr. Shoreline"))) (type fb:symbols.namesake) what things did martin luther king do? Martin Luther King, Jr. Day 11.651 formula (!fb:symbols.name_source.namesakes fb:en.martin_luther_king_jr)) (value (list (name fb:en.martin_luther_king_bridge "Martin Luther King Bridge") (name fb:en.martin_luther_king_jr_high_school "Martin Luther King, Jr. High School") (name fb:en.martin_luther_king_day "Martin Luther King, Jr. Day") (name fb:en.martin_luther_king_jr_middle_school "Martin Luther King Jr. Middle School") (name fb:en.martin_luther_king_jr_memorial_library "Martin Luther King Jr. Memorial Library") (name fb:en.martin_luther_king_iii "Martin Luther King III") (name fb:en.dr_martin_luther_king_jr_library "Dr. Martin Luther King, Jr. Library") (name fb:en.martin_luther_king_jr_academy "Martin Luther King, Jr. Academy") (name fb:m.03d4pqv "Martin Luther King High School") (name fb:en.martin_luther_king_jr_shoreline "Martin Luther King Jr. Shoreline"))) (type fb:symbols.namesake) what things did martin luther king do? Martin Luther King Jr. Middle School 11.651 formula (!fb:symbols.name_source.namesakes fb:en.martin_luther_king_jr)) (value (list (name fb:en.martin_luther_king_bridge "Martin Luther King Bridge") (name fb:en.martin_luther_king_jr_high_school "Martin Luther King, Jr. High School") (name fb:en.martin_luther_king_day "Martin Luther King, Jr. Day") (name fb:en.martin_luther_king_jr_middle_school "Martin Luther King Jr. Middle School") (name fb:en.martin_luther_king_jr_memorial_library "Martin Luther King Jr. Memorial Library") (name fb:en.martin_luther_king_iii "Martin Luther King III") (name fb:en.dr_martin_luther_king_jr_library "Dr. Martin Luther King, Jr. Library") (name fb:en.martin_luther_king_jr_academy "Martin Luther King, Jr. Academy") (name fb:m.03d4pqv "Martin Luther King High School") (name fb:en.martin_luther_king_jr_shoreline "Martin Luther King Jr. Shoreline"))) (type fb:symbols.namesake) what things did martin luther king do? Martin Luther King Jr. Memorial Library 11.651 formula (!fb:symbols.name_source.namesakes fb:en.martin_luther_king_jr)) (value (list (name fb:en.martin_luther_king_bridge "Martin Luther King Bridge") (name fb:en.martin_luther_king_jr_high_school "Martin Luther King, Jr. High School") (name fb:en.martin_luther_king_day "Martin Luther King, Jr. Day") (name fb:en.martin_luther_king_jr_middle_school "Martin Luther King Jr. Middle School") (name fb:en.martin_luther_king_jr_memorial_library "Martin Luther King Jr. Memorial Library") (name fb:en.martin_luther_king_iii "Martin Luther King III") (name fb:en.dr_martin_luther_king_jr_library "Dr. Martin Luther King, Jr. Library") (name fb:en.martin_luther_king_jr_academy "Martin Luther King, Jr. Academy") (name fb:m.03d4pqv "Martin Luther King High School") (name fb:en.martin_luther_king_jr_shoreline "Martin Luther King Jr. Shoreline"))) (type fb:symbols.namesake) what things did martin luther king do? Martin Luther King III 11.651 formula (!fb:symbols.name_source.namesakes fb:en.martin_luther_king_jr)) (value (list (name fb:en.martin_luther_king_bridge "Martin Luther King Bridge") (name fb:en.martin_luther_king_jr_high_school "Martin Luther King, Jr. High School") (name fb:en.martin_luther_king_day "Martin Luther King, Jr. Day") (name fb:en.martin_luther_king_jr_middle_school "Martin Luther King Jr. Middle School") (name fb:en.martin_luther_king_jr_memorial_library "Martin Luther King Jr. Memorial Library") (name fb:en.martin_luther_king_iii "Martin Luther King III") (name fb:en.dr_martin_luther_king_jr_library "Dr. Martin Luther King, Jr. Library") (name fb:en.martin_luther_king_jr_academy "Martin Luther King, Jr. Academy") (name fb:m.03d4pqv "Martin Luther King High School") (name fb:en.martin_luther_king_jr_shoreline "Martin Luther King Jr. Shoreline"))) (type fb:symbols.namesake) what things did martin luther king do? Dr. Martin Luther King, Jr. Library 11.651 formula (!fb:symbols.name_source.namesakes fb:en.martin_luther_king_jr)) (value (list (name fb:en.martin_luther_king_bridge "Martin Luther King Bridge") (name fb:en.martin_luther_king_jr_high_school "Martin Luther King, Jr. High School") (name fb:en.martin_luther_king_day "Martin Luther King, Jr. Day") (name fb:en.martin_luther_king_jr_middle_school "Martin Luther King Jr. Middle School") (name fb:en.martin_luther_king_jr_memorial_library "Martin Luther King Jr. Memorial Library") (name fb:en.martin_luther_king_iii "Martin Luther King III") (name fb:en.dr_martin_luther_king_jr_library "Dr. Martin Luther King, Jr. Library") (name fb:en.martin_luther_king_jr_academy "Martin Luther King, Jr. Academy") (name fb:m.03d4pqv "Martin Luther King High School") (name fb:en.martin_luther_king_jr_shoreline "Martin Luther King Jr. Shoreline"))) (type fb:symbols.namesake) what things did martin luther king do? Martin Luther King, Jr. Academy 11.651 formula (!fb:symbols.name_source.namesakes fb:en.martin_luther_king_jr)) (value (list (name fb:en.martin_luther_king_bridge "Martin Luther King Bridge") (name fb:en.martin_luther_king_jr_high_school "Martin Luther King, Jr. High School") (name fb:en.martin_luther_king_day "Martin Luther King, Jr. Day") (name fb:en.martin_luther_king_jr_middle_school "Martin Luther King Jr. Middle School") (name fb:en.martin_luther_king_jr_memorial_library "Martin Luther King Jr. Memorial Library") (name fb:en.martin_luther_king_iii "Martin Luther King III") (name fb:en.dr_martin_luther_king_jr_library "Dr. Martin Luther King, Jr. Library") (name fb:en.martin_luther_king_jr_academy "Martin Luther King, Jr. Academy") (name fb:m.03d4pqv "Martin Luther King High School") (name fb:en.martin_luther_king_jr_shoreline "Martin Luther King Jr. Shoreline"))) (type fb:symbols.namesake) what things did martin luther king do? Martin Luther King High School 11.651 formula (!fb:symbols.name_source.namesakes fb:en.martin_luther_king_jr)) (value (list (name fb:en.martin_luther_king_bridge "Martin Luther King Bridge") (name fb:en.martin_luther_king_jr_high_school "Martin Luther King, Jr. High School") (name fb:en.martin_luther_king_day "Martin Luther King, Jr. Day") (name fb:en.martin_luther_king_jr_middle_school "Martin Luther King Jr. Middle School") (name fb:en.martin_luther_king_jr_memorial_library "Martin Luther King Jr. Memorial Library") (name fb:en.martin_luther_king_iii "Martin Luther King III") (name fb:en.dr_martin_luther_king_jr_library "Dr. Martin Luther King, Jr. Library") (name fb:en.martin_luther_king_jr_academy "Martin Luther King, Jr. Academy") (name fb:m.03d4pqv "Martin Luther King High School") (name fb:en.martin_luther_king_jr_shoreline "Martin Luther King Jr. Shoreline"))) (type fb:symbols.namesake) what things did martin luther king do? Martin Luther King Jr. Shoreline 11.651 formula (!fb:symbols.name_source.namesakes fb:en.martin_luther_king_jr)) (value (list (name fb:en.martin_luther_king_bridge "Martin Luther King Bridge") (name fb:en.martin_luther_king_jr_high_school "Martin Luther King, Jr. High School") (name fb:en.martin_luther_king_day "Martin Luther King, Jr. Day") (name fb:en.martin_luther_king_jr_middle_school "Martin Luther King Jr. Middle School") (name fb:en.martin_luther_king_jr_memorial_library "Martin Luther King Jr. Memorial Library") (name fb:en.martin_luther_king_iii "Martin Luther King III") (name fb:en.dr_martin_luther_king_jr_library "Dr. Martin Luther King, Jr. Library") (name fb:en.martin_luther_king_jr_academy "Martin Luther King, Jr. Academy") (name fb:m.03d4pqv "Martin Luther King High School") (name fb:en.martin_luther_king_jr_shoreline "Martin Luther King Jr. Shoreline"))) (type fb:symbols.namesake) what is my timezone in louisiana? Central Time Zone 9.746 formula (!fb:location.location.time_zones fb:en.louisiana)) (value (list (name fb:en.central_time_zone "Central Time Zone") (name fb:en.utc-6 UTC−06:00))) (type fb:time.time_zone) who is keyshia cole dad? Entertainment Weekly annotation index 4.702 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.keyshia_cole)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) who is keyshia cole dad? Blissful Master Index 4.702 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.keyshia_cole)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) who is keyshia cole dad? Blissful Celebrities 4.702 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.keyshia_cole)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) what kind government does egypt have? Unitary state 13.422 formula (!fb:location.country.form_of_government fb:en.egypt)) (value (list (name fb:en.unitary_state "Unitary state") (name fb:en.republic Republic) (name fb:en.semi-presidential_system "Semi-presidential system"))) (type fb:government.form_of_government) what kind government does egypt have? Semi-presidential system 13.422 formula (!fb:location.country.form_of_government fb:en.egypt)) (value (list (name fb:en.unitary_state "Unitary state") (name fb:en.republic Republic) (name fb:en.semi-presidential_system "Semi-presidential system"))) (type fb:government.form_of_government) when did charles goodyear invented rubber? Improvement in the Art of Preparing Caoutchouc 12.084 formula (fb:law.invention.inventor fb:en.charles_goodyear)) (value (list (name fb:en.vulcanization Vulcanization) (name fb:en.improvement_in_the_art_of_preparing_caoutchouc "Improvement in the Art of Preparing Caoutchouc"))) (type fb:law.invention) what electorate does anna bligh represent? Electoral district of South Brisbane 8.04 formula ((lambda x (fb:government.political_district.representatives (fb:government.government_position_held.office_holder (var x)))) fb:en.anna_bligh)) (value (list (name fb:en.electoral_district_of_south_brisbane "Electoral district of South Brisbane"))) (type fb:government.political_district) what are some of the traditions of islam? Eid al-Adha 10.579 formula (and (fb:type.object.type fb:time.holiday) (fb:time.holiday.featured_in_religions fb:en.islam))) (value (list (name fb:en.eid_ul-adha "Eid al-Adha") (name fb:en.ramadan Ramadan) (name fb:en.isra_and_miraj "Isra and Mi'raj") (name fb:en.eid_ul-fitr "Eid al-Fitr"))) (type (union fb:time.holiday)) what are some of the traditions of islam? Isra and Mi'raj 10.579 formula (and (fb:type.object.type fb:time.holiday) (fb:time.holiday.featured_in_religions fb:en.islam))) (value (list (name fb:en.eid_ul-adha "Eid al-Adha") (name fb:en.ramadan Ramadan) (name fb:en.isra_and_miraj "Isra and Mi'raj") (name fb:en.eid_ul-fitr "Eid al-Fitr"))) (type (union fb:time.holiday)) what are some of the traditions of islam? Eid al-Fitr 10.579 formula (and (fb:type.object.type fb:time.holiday) (fb:time.holiday.featured_in_religions fb:en.islam))) (value (list (name fb:en.eid_ul-adha "Eid al-Adha") (name fb:en.ramadan Ramadan) (name fb:en.isra_and_miraj "Isra and Mi'raj") (name fb:en.eid_ul-fitr "Eid al-Fitr"))) (type (union fb:time.holiday)) what is the australian dollar called? Australian dollar 10.653 formula ((lambda x (!fb:measurement_unit.dated_money_value.currency (!fb:education.university.international_tuition (var x)))) fb:en.australian_catholic_university)) (value (list (name fb:en.australian_dollar "Australian dollar"))) (type fb:finance.currency) what timezone is sweden? Central European Time 7.348 formula (!fb:location.location.time_zones fb:en.swedem)) (value (list (name fb:en.central_european_time "Central European Time") (name fb:en.utcplus1 UTC+01:00))) (type fb:time.time_zone) who did cam newton sign with? Florida Gators football 9.546 formula ((lambda x (!fb:sports.sports_team_roster.team (!fb:sports.pro_athlete.teams (var x)))) fb:en.cameron_newton)) (value (list (name fb:en.florida_gators_football "Florida Gators football") (name fb:en.carolina_panthers "Carolina Panthers"))) (type fb:sports.sports_team) who did cam newton sign with? Carolina Panthers 9.546 formula ((lambda x (!fb:sports.sports_team_roster.team (!fb:sports.pro_athlete.teams (var x)))) fb:en.cameron_newton)) (value (list (name fb:en.florida_gators_football "Florida Gators football") (name fb:en.carolina_panthers "Carolina Panthers"))) (type fb:sports.sports_team) what county is frederick md in? Frederick County 11.351 formula (!fb:location.hud_county_place.county fb:en.frederick)) (value (list (name fb:en.frederick_county "Frederick County"))) (type fb:location.us_county) what highschool did harper lee go to? University of Oxford 11.389 formula ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.harper_lee)) (value (list (name fb:en.university_of_oxford "University of Oxford") (name fb:en.university_of_alabama_school_of_law "University of Alabama School of Law") (name fb:m.0crdc8g "Monroe County High School") (name fb:en.huntingdon_college "Huntingdon College") (name fb:en.university_of_alabama "University of Alabama"))) (type fb:education.educational_institution) what highschool did harper lee go to? University of Alabama School of Law 11.389 formula ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.harper_lee)) (value (list (name fb:en.university_of_oxford "University of Oxford") (name fb:en.university_of_alabama_school_of_law "University of Alabama School of Law") (name fb:m.0crdc8g "Monroe County High School") (name fb:en.huntingdon_college "Huntingdon College") (name fb:en.university_of_alabama "University of Alabama"))) (type fb:education.educational_institution) what highschool did harper lee go to? Monroe County High School 11.389 formula ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.harper_lee)) (value (list (name fb:en.university_of_oxford "University of Oxford") (name fb:en.university_of_alabama_school_of_law "University of Alabama School of Law") (name fb:m.0crdc8g "Monroe County High School") (name fb:en.huntingdon_college "Huntingdon College") (name fb:en.university_of_alabama "University of Alabama"))) (type fb:education.educational_institution) what highschool did harper lee go to? Huntingdon College 11.389 formula ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.harper_lee)) (value (list (name fb:en.university_of_oxford "University of Oxford") (name fb:en.university_of_alabama_school_of_law "University of Alabama School of Law") (name fb:m.0crdc8g "Monroe County High School") (name fb:en.huntingdon_college "Huntingdon College") (name fb:en.university_of_alabama "University of Alabama"))) (type fb:education.educational_institution) what highschool did harper lee go to? University of Alabama 11.389 formula ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.harper_lee)) (value (list (name fb:en.university_of_oxford "University of Oxford") (name fb:en.university_of_alabama_school_of_law "University of Alabama School of Law") (name fb:m.0crdc8g "Monroe County High School") (name fb:en.huntingdon_college "Huntingdon College") (name fb:en.university_of_alabama "University of Alabama"))) (type fb:education.educational_institution) what timezone is utah in? Mountain Time Zone 7.315 formula (!fb:location.location.time_zones fb:en.utah)) (value (list (name fb:en.mountain_time_zone "Mountain Time Zone") (name fb:en.utc-7 UTC−07:00))) (type fb:time.time_zone) who is niall ferguson's wife? Susan Douglas 9.79 formula ((lambda x (!fb:people.marriage.spouse (!fb:people.person.spouse_s (var x)))) fb:en.niall_ferguson)) (value (list (name fb:en.susan_douglas "Susan Douglas") (name fb:en.ayaan_hirsi_ali "Ayaan Hirsi Ali"))) (type fb:people.person) who is niall ferguson's wife? Ayaan Hirsi Ali 9.79 formula ((lambda x (!fb:people.marriage.spouse (!fb:people.person.spouse_s (var x)))) fb:en.niall_ferguson)) (value (list (name fb:en.susan_douglas "Susan Douglas") (name fb:en.ayaan_hirsi_ali "Ayaan Hirsi Ali"))) (type fb:people.person) who was the leader of soviet union during wwii? Joseph Stalin 13.519 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin "Joseph Stalin") (name fb:en.vladimir_lenin "Vladimir Lenin") (name fb:en.leonid_ilich_brezhnev "Leonid Brezhnev") (name fb:en.nikita_khrushchev "Nikita Khrushchev") (name fb:en.vagit_alekperov "Vagit Alekperov") (name fb:en.mikhail_gorbachev "Mikhail Gorbachev") (name fb:en.vyacheslav_molotov "Vyacheslav Molotov") (name fb:en.vladimir_ivashko "Vladimir Ivashko") (name fb:en.yuri_andropov "Yuri Andropov") (name fb:en.georgy_malenkov "Georgy Malenkov"))) (type fb:government.politician) who was the leader of soviet union during wwii? Vladimir Lenin 13.519 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin "Joseph Stalin") (name fb:en.vladimir_lenin "Vladimir Lenin") (name fb:en.leonid_ilich_brezhnev "Leonid Brezhnev") (name fb:en.nikita_khrushchev "Nikita Khrushchev") (name fb:en.vagit_alekperov "Vagit Alekperov") (name fb:en.mikhail_gorbachev "Mikhail Gorbachev") (name fb:en.vyacheslav_molotov "Vyacheslav Molotov") (name fb:en.vladimir_ivashko "Vladimir Ivashko") (name fb:en.yuri_andropov "Yuri Andropov") (name fb:en.georgy_malenkov "Georgy Malenkov"))) (type fb:government.politician) who was the leader of soviet union during wwii? Leonid Brezhnev 13.519 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin "Joseph Stalin") (name fb:en.vladimir_lenin "Vladimir Lenin") (name fb:en.leonid_ilich_brezhnev "Leonid Brezhnev") (name fb:en.nikita_khrushchev "Nikita Khrushchev") (name fb:en.vagit_alekperov "Vagit Alekperov") (name fb:en.mikhail_gorbachev "Mikhail Gorbachev") (name fb:en.vyacheslav_molotov "Vyacheslav Molotov") (name fb:en.vladimir_ivashko "Vladimir Ivashko") (name fb:en.yuri_andropov "Yuri Andropov") (name fb:en.georgy_malenkov "Georgy Malenkov"))) (type fb:government.politician) who was the leader of soviet union during wwii? Nikita Khrushchev 13.519 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin "Joseph Stalin") (name fb:en.vladimir_lenin "Vladimir Lenin") (name fb:en.leonid_ilich_brezhnev "Leonid Brezhnev") (name fb:en.nikita_khrushchev "Nikita Khrushchev") (name fb:en.vagit_alekperov "Vagit Alekperov") (name fb:en.mikhail_gorbachev "Mikhail Gorbachev") (name fb:en.vyacheslav_molotov "Vyacheslav Molotov") (name fb:en.vladimir_ivashko "Vladimir Ivashko") (name fb:en.yuri_andropov "Yuri Andropov") (name fb:en.georgy_malenkov "Georgy Malenkov"))) (type fb:government.politician) who was the leader of soviet union during wwii? Vagit Alekperov 13.519 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin "Joseph Stalin") (name fb:en.vladimir_lenin "Vladimir Lenin") (name fb:en.leonid_ilich_brezhnev "Leonid Brezhnev") (name fb:en.nikita_khrushchev "Nikita Khrushchev") (name fb:en.vagit_alekperov "Vagit Alekperov") (name fb:en.mikhail_gorbachev "Mikhail Gorbachev") (name fb:en.vyacheslav_molotov "Vyacheslav Molotov") (name fb:en.vladimir_ivashko "Vladimir Ivashko") (name fb:en.yuri_andropov "Yuri Andropov") (name fb:en.georgy_malenkov "Georgy Malenkov"))) (type fb:government.politician) who was the leader of soviet union during wwii? Mikhail Gorbachev 13.519 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin "Joseph Stalin") (name fb:en.vladimir_lenin "Vladimir Lenin") (name fb:en.leonid_ilich_brezhnev "Leonid Brezhnev") (name fb:en.nikita_khrushchev "Nikita Khrushchev") (name fb:en.vagit_alekperov "Vagit Alekperov") (name fb:en.mikhail_gorbachev "Mikhail Gorbachev") (name fb:en.vyacheslav_molotov "Vyacheslav Molotov") (name fb:en.vladimir_ivashko "Vladimir Ivashko") (name fb:en.yuri_andropov "Yuri Andropov") (name fb:en.georgy_malenkov "Georgy Malenkov"))) (type fb:government.politician) who was the leader of soviet union during wwii? Vyacheslav Molotov 13.519 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin "Joseph Stalin") (name fb:en.vladimir_lenin "Vladimir Lenin") (name fb:en.leonid_ilich_brezhnev "Leonid Brezhnev") (name fb:en.nikita_khrushchev "Nikita Khrushchev") (name fb:en.vagit_alekperov "Vagit Alekperov") (name fb:en.mikhail_gorbachev "Mikhail Gorbachev") (name fb:en.vyacheslav_molotov "Vyacheslav Molotov") (name fb:en.vladimir_ivashko "Vladimir Ivashko") (name fb:en.yuri_andropov "Yuri Andropov") (name fb:en.georgy_malenkov "Georgy Malenkov"))) (type fb:government.politician) who was the leader of soviet union during wwii? Vladimir Ivashko 13.519 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin "Joseph Stalin") (name fb:en.vladimir_lenin "Vladimir Lenin") (name fb:en.leonid_ilich_brezhnev "Leonid Brezhnev") (name fb:en.nikita_khrushchev "Nikita Khrushchev") (name fb:en.vagit_alekperov "Vagit Alekperov") (name fb:en.mikhail_gorbachev "Mikhail Gorbachev") (name fb:en.vyacheslav_molotov "Vyacheslav Molotov") (name fb:en.vladimir_ivashko "Vladimir Ivashko") (name fb:en.yuri_andropov "Yuri Andropov") (name fb:en.georgy_malenkov "Georgy Malenkov"))) (type fb:government.politician) who was the leader of soviet union during wwii? Yuri Andropov 13.519 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin "Joseph Stalin") (name fb:en.vladimir_lenin "Vladimir Lenin") (name fb:en.leonid_ilich_brezhnev "Leonid Brezhnev") (name fb:en.nikita_khrushchev "Nikita Khrushchev") (name fb:en.vagit_alekperov "Vagit Alekperov") (name fb:en.mikhail_gorbachev "Mikhail Gorbachev") (name fb:en.vyacheslav_molotov "Vyacheslav Molotov") (name fb:en.vladimir_ivashko "Vladimir Ivashko") (name fb:en.yuri_andropov "Yuri Andropov") (name fb:en.georgy_malenkov "Georgy Malenkov"))) (type fb:government.politician) who was the leader of soviet union during wwii? Georgy Malenkov 13.519 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin "Joseph Stalin") (name fb:en.vladimir_lenin "Vladimir Lenin") (name fb:en.leonid_ilich_brezhnev "Leonid Brezhnev") (name fb:en.nikita_khrushchev "Nikita Khrushchev") (name fb:en.vagit_alekperov "Vagit Alekperov") (name fb:en.mikhail_gorbachev "Mikhail Gorbachev") (name fb:en.vyacheslav_molotov "Vyacheslav Molotov") (name fb:en.vladimir_ivashko "Vladimir Ivashko") (name fb:en.yuri_andropov "Yuri Andropov") (name fb:en.georgy_malenkov "Georgy Malenkov"))) (type fb:government.politician) what is the state flower of arizona? Ditat Deus 12.96 formula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.arizona)) (value (list (name fb:en.saguaro Saguaro) (name fb:en.ditat_deus "Ditat Deus") (name fb:en.apache_trout "Apache trout") (name fb:en.petrified_wood "Petrified wood") (name fb:en.parkinsonia_florida "Parkinsonia florida") (name fb:en.hyla_eximia "Mountain tree frog") (name fb:en.cactus_wren "Cactus Wren"))) (type fb:location.symbol_of_administrative_division) what is the state flower of arizona? Apache trout 12.96 formula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.arizona)) (value (list (name fb:en.saguaro Saguaro) (name fb:en.ditat_deus "Ditat Deus") (name fb:en.apache_trout "Apache trout") (name fb:en.petrified_wood "Petrified wood") (name fb:en.parkinsonia_florida "Parkinsonia florida") (name fb:en.hyla_eximia "Mountain tree frog") (name fb:en.cactus_wren "Cactus Wren"))) (type fb:location.symbol_of_administrative_division) what is the state flower of arizona? Petrified wood 12.96 formula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.arizona)) (value (list (name fb:en.saguaro Saguaro) (name fb:en.ditat_deus "Ditat Deus") (name fb:en.apache_trout "Apache trout") (name fb:en.petrified_wood "Petrified wood") (name fb:en.parkinsonia_florida "Parkinsonia florida") (name fb:en.hyla_eximia "Mountain tree frog") (name fb:en.cactus_wren "Cactus Wren"))) (type fb:location.symbol_of_administrative_division) what is the state flower of arizona? Parkinsonia florida 12.96 formula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.arizona)) (value (list (name fb:en.saguaro Saguaro) (name fb:en.ditat_deus "Ditat Deus") (name fb:en.apache_trout "Apache trout") (name fb:en.petrified_wood "Petrified wood") (name fb:en.parkinsonia_florida "Parkinsonia florida") (name fb:en.hyla_eximia "Mountain tree frog") (name fb:en.cactus_wren "Cactus Wren"))) (type fb:location.symbol_of_administrative_division) what is the state flower of arizona? Mountain tree frog 12.96 formula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.arizona)) (value (list (name fb:en.saguaro Saguaro) (name fb:en.ditat_deus "Ditat Deus") (name fb:en.apache_trout "Apache trout") (name fb:en.petrified_wood "Petrified wood") (name fb:en.parkinsonia_florida "Parkinsonia florida") (name fb:en.hyla_eximia "Mountain tree frog") (name fb:en.cactus_wren "Cactus Wren"))) (type fb:location.symbol_of_administrative_division) what is the state flower of arizona? Cactus Wren 12.96 formula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.arizona)) (value (list (name fb:en.saguaro Saguaro) (name fb:en.ditat_deus "Ditat Deus") (name fb:en.apache_trout "Apache trout") (name fb:en.petrified_wood "Petrified wood") (name fb:en.parkinsonia_florida "Parkinsonia florida") (name fb:en.hyla_eximia "Mountain tree frog") (name fb:en.cactus_wren "Cactus Wren"))) (type fb:location.symbol_of_administrative_division) where was rihanna born and raised? Saint Michael Parish 17.382 formula (and (fb:type.object.type fb:location.location) (!fb:people.person.place_of_birth fb:en.rihanna_jay_z))) (value (list (name fb:en.saint_michael_parish_barbados "Saint Michael Parish"))) (type fb:location.location) what year did president william henry harrison take office? John Tyler 9.93 formula (and (fb:type.object.type fb:government.us_vice_president) (!fb:government.us_president.vice_president fb:en.william_henry_harrison))) (value (list (name fb:en.john_tyler "John Tyler"))) (type (union fb:government.us_vice_president)) where george lopez was born? Mission Hills 10.605 formula (and (fb:type.object.type fb:location.location) (!fb:people.person.place_of_birth fb:en.george_lopez_1961))) (value (list (name fb:en.mission_hills_california "Mission Hills"))) (type fb:location.location) who will play mr gray in the film? Better Or Worse? 10.154 formula (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.film_character.portrayed_in_films (var x)))) fb:m.0n281pb))) (value (list (name fb:m.075ndc3 "Better Or Worse?"))) (type (union fb:film.film)) who won the battle of gettysburg union or confederate? Kate Carin 8.104 formula ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.gettysburg_1993)) (value (list (name fb:en.kate_carin "Kate Carin") (name fb:m.090f9d1 "Abigail Metcalfe") (name fb:m.0h0x45s "Mark Herzog") (name fb:en.ridley_scott "Ridley Scott") (name fb:en.tony_scott "Tony Scott") (name fb:m.0hc8l_g "Christopher G. Cowen") (name fb:m.0ghsk_v "David McKillop") (name fb:m.0hc8lwn "Mary Lisio") (name fb:en.mary_donahue "Mary Donahue") (name fb:m.0r62yzr "Ben Fox"))) (type fb:award.award_winner) who won the battle of gettysburg union or confederate? Abigail Metcalfe 8.104 formula ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.gettysburg_1993)) (value (list (name fb:en.kate_carin "Kate Carin") (name fb:m.090f9d1 "Abigail Metcalfe") (name fb:m.0h0x45s "Mark Herzog") (name fb:en.ridley_scott "Ridley Scott") (name fb:en.tony_scott "Tony Scott") (name fb:m.0hc8l_g "Christopher G. Cowen") (name fb:m.0ghsk_v "David McKillop") (name fb:m.0hc8lwn "Mary Lisio") (name fb:en.mary_donahue "Mary Donahue") (name fb:m.0r62yzr "Ben Fox"))) (type fb:award.award_winner) who won the battle of gettysburg union or confederate? Mark Herzog 8.104 formula ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.gettysburg_1993)) (value (list (name fb:en.kate_carin "Kate Carin") (name fb:m.090f9d1 "Abigail Metcalfe") (name fb:m.0h0x45s "Mark Herzog") (name fb:en.ridley_scott "Ridley Scott") (name fb:en.tony_scott "Tony Scott") (name fb:m.0hc8l_g "Christopher G. Cowen") (name fb:m.0ghsk_v "David McKillop") (name fb:m.0hc8lwn "Mary Lisio") (name fb:en.mary_donahue "Mary Donahue") (name fb:m.0r62yzr "Ben Fox"))) (type fb:award.award_winner) who won the battle of gettysburg union or confederate? Ridley Scott 8.104 formula ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.gettysburg_1993)) (value (list (name fb:en.kate_carin "Kate Carin") (name fb:m.090f9d1 "Abigail Metcalfe") (name fb:m.0h0x45s "Mark Herzog") (name fb:en.ridley_scott "Ridley Scott") (name fb:en.tony_scott "Tony Scott") (name fb:m.0hc8l_g "Christopher G. Cowen") (name fb:m.0ghsk_v "David McKillop") (name fb:m.0hc8lwn "Mary Lisio") (name fb:en.mary_donahue "Mary Donahue") (name fb:m.0r62yzr "Ben Fox"))) (type fb:award.award_winner) who won the battle of gettysburg union or confederate? Tony Scott 8.104 formula ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.gettysburg_1993)) (value (list (name fb:en.kate_carin "Kate Carin") (name fb:m.090f9d1 "Abigail Metcalfe") (name fb:m.0h0x45s "Mark Herzog") (name fb:en.ridley_scott "Ridley Scott") (name fb:en.tony_scott "Tony Scott") (name fb:m.0hc8l_g "Christopher G. Cowen") (name fb:m.0ghsk_v "David McKillop") (name fb:m.0hc8lwn "Mary Lisio") (name fb:en.mary_donahue "Mary Donahue") (name fb:m.0r62yzr "Ben Fox"))) (type fb:award.award_winner) who won the battle of gettysburg union or confederate? Christopher G. Cowen 8.104 formula ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.gettysburg_1993)) (value (list (name fb:en.kate_carin "Kate Carin") (name fb:m.090f9d1 "Abigail Metcalfe") (name fb:m.0h0x45s "Mark Herzog") (name fb:en.ridley_scott "Ridley Scott") (name fb:en.tony_scott "Tony Scott") (name fb:m.0hc8l_g "Christopher G. Cowen") (name fb:m.0ghsk_v "David McKillop") (name fb:m.0hc8lwn "Mary Lisio") (name fb:en.mary_donahue "Mary Donahue") (name fb:m.0r62yzr "Ben Fox"))) (type fb:award.award_winner) who won the battle of gettysburg union or confederate? David McKillop 8.104 formula ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.gettysburg_1993)) (value (list (name fb:en.kate_carin "Kate Carin") (name fb:m.090f9d1 "Abigail Metcalfe") (name fb:m.0h0x45s "Mark Herzog") (name fb:en.ridley_scott "Ridley Scott") (name fb:en.tony_scott "Tony Scott") (name fb:m.0hc8l_g "Christopher G. Cowen") (name fb:m.0ghsk_v "David McKillop") (name fb:m.0hc8lwn "Mary Lisio") (name fb:en.mary_donahue "Mary Donahue") (name fb:m.0r62yzr "Ben Fox"))) (type fb:award.award_winner) who won the battle of gettysburg union or confederate? Mary Lisio 8.104 formula ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.gettysburg_1993)) (value (list (name fb:en.kate_carin "Kate Carin") (name fb:m.090f9d1 "Abigail Metcalfe") (name fb:m.0h0x45s "Mark Herzog") (name fb:en.ridley_scott "Ridley Scott") (name fb:en.tony_scott "Tony Scott") (name fb:m.0hc8l_g "Christopher G. Cowen") (name fb:m.0ghsk_v "David McKillop") (name fb:m.0hc8lwn "Mary Lisio") (name fb:en.mary_donahue "Mary Donahue") (name fb:m.0r62yzr "Ben Fox"))) (type fb:award.award_winner) who won the battle of gettysburg union or confederate? Mary Donahue 8.104 formula ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.gettysburg_1993)) (value (list (name fb:en.kate_carin "Kate Carin") (name fb:m.090f9d1 "Abigail Metcalfe") (name fb:m.0h0x45s "Mark Herzog") (name fb:en.ridley_scott "Ridley Scott") (name fb:en.tony_scott "Tony Scott") (name fb:m.0hc8l_g "Christopher G. Cowen") (name fb:m.0ghsk_v "David McKillop") (name fb:m.0hc8lwn "Mary Lisio") (name fb:en.mary_donahue "Mary Donahue") (name fb:m.0r62yzr "Ben Fox"))) (type fb:award.award_winner) who won the battle of gettysburg union or confederate? Ben Fox 8.104 formula ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:en.gettysburg_1993)) (value (list (name fb:en.kate_carin "Kate Carin") (name fb:m.090f9d1 "Abigail Metcalfe") (name fb:m.0h0x45s "Mark Herzog") (name fb:en.ridley_scott "Ridley Scott") (name fb:en.tony_scott "Tony Scott") (name fb:m.0hc8l_g "Christopher G. Cowen") (name fb:m.0ghsk_v "David McKillop") (name fb:m.0hc8lwn "Mary Lisio") (name fb:en.mary_donahue "Mary Donahue") (name fb:m.0r62yzr "Ben Fox"))) (type fb:award.award_winner) what county is kansas city kansas? Platte County 14.937 formula (!fb:location.hud_county_place.county fb:en.kansas_city)) (value (list (name fb:en.platte_county "Platte County"))) (type fb:location.us_county) what was john quincy adams famous for? Cerebral hemorrhage 9.149 formula (fb:people.cause_of_death.people fb:en.john_quincy_adams)) (value (list (name fb:en.intra-axial_hematoma "Cerebral hemorrhage"))) (type fb:people.cause_of_death) who did jackie robinson first play for? Brooklyn Dodgers 17.747 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.jackie_robinson)) (value (list (name fb:m.05fc8c9 "Brooklyn Dodgers") (name fb:en.kansas_city_monarchs "Kansas City Monarchs") (name fb:en.ucla_bruins_football "UCLA Bruins football") (name fb:en.los_angeles_bulldogs "Los Angeles Bulldogs") (name fb:en.montreal_royals "Montreal Royals"))) (type fb:sports.sports_team) who did jackie robinson first play for? Kansas City Monarchs 17.747 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.jackie_robinson)) (value (list (name fb:m.05fc8c9 "Brooklyn Dodgers") (name fb:en.kansas_city_monarchs "Kansas City Monarchs") (name fb:en.ucla_bruins_football "UCLA Bruins football") (name fb:en.los_angeles_bulldogs "Los Angeles Bulldogs") (name fb:en.montreal_royals "Montreal Royals"))) (type fb:sports.sports_team) who did jackie robinson first play for? UCLA Bruins football 17.747 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.jackie_robinson)) (value (list (name fb:m.05fc8c9 "Brooklyn Dodgers") (name fb:en.kansas_city_monarchs "Kansas City Monarchs") (name fb:en.ucla_bruins_football "UCLA Bruins football") (name fb:en.los_angeles_bulldogs "Los Angeles Bulldogs") (name fb:en.montreal_royals "Montreal Royals"))) (type fb:sports.sports_team) who did jackie robinson first play for? Los Angeles Bulldogs 17.747 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.jackie_robinson)) (value (list (name fb:m.05fc8c9 "Brooklyn Dodgers") (name fb:en.kansas_city_monarchs "Kansas City Monarchs") (name fb:en.ucla_bruins_football "UCLA Bruins football") (name fb:en.los_angeles_bulldogs "Los Angeles Bulldogs") (name fb:en.montreal_royals "Montreal Royals"))) (type fb:sports.sports_team) who did jackie robinson first play for? Montreal Royals 17.747 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.jackie_robinson)) (value (list (name fb:m.05fc8c9 "Brooklyn Dodgers") (name fb:en.kansas_city_monarchs "Kansas City Monarchs") (name fb:en.ucla_bruins_football "UCLA Bruins football") (name fb:en.los_angeles_bulldogs "Los Angeles Bulldogs") (name fb:en.montreal_royals "Montreal Royals"))) (type fb:sports.sports_team) when did annie open? No More I Love You's 8.021 formula (fb:music.music_video.artist fb:en.annie_lennox)) (value (list (name fb:m.0mv6php Why) (name fb:m.0nfv4bg Diva) (name fb:m.0my3s6g "No More I Love You's") (name fb:m.0m08jmf "Walking on Broken Glass") (name fb:m.0n1xfgg "Put A Little Love In Your Heart"))) (type fb:music.music_video) when did annie open? Walking on Broken Glass 8.021 formula (fb:music.music_video.artist fb:en.annie_lennox)) (value (list (name fb:m.0mv6php Why) (name fb:m.0nfv4bg Diva) (name fb:m.0my3s6g "No More I Love You's") (name fb:m.0m08jmf "Walking on Broken Glass") (name fb:m.0n1xfgg "Put A Little Love In Your Heart"))) (type fb:music.music_video) when did annie open? Put A Little Love In Your Heart 8.021 formula (fb:music.music_video.artist fb:en.annie_lennox)) (value (list (name fb:m.0mv6php Why) (name fb:m.0nfv4bg Diva) (name fb:m.0my3s6g "No More I Love You's") (name fb:m.0m08jmf "Walking on Broken Glass") (name fb:m.0n1xfgg "Put A Little Love In Your Heart"))) (type fb:music.music_video) where did eleanor roosevelt die? New York City 9.433 formula (and (fb:type.object.type fb:location.location) (!fb:people.deceased_person.place_of_death fb:en.eleanor_roosevelt))) (value (list (name fb:en.new_york_ny "New York City"))) (type fb:location.location) what other books did charles dickens write? Drood: A Novel 16.064 formula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.charles_dickens))) (value (list (name fb:en.drood "Drood: A Novel") (name fb:en.coffee_with_dickens "Coffee with Dickens"))) (type (union fb:book.book)) what other books did charles dickens write? Coffee with Dickens 16.064 formula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.charles_dickens))) (value (list (name fb:en.drood "Drood: A Novel") (name fb:en.coffee_with_dickens "Coffee with Dickens"))) (type (union fb:book.book)) who was the first dictator of the soviet union? Joseph Stalin 16.969 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin "Joseph Stalin") (name fb:en.vladimir_lenin "Vladimir Lenin") (name fb:en.leonid_ilich_brezhnev "Leonid Brezhnev") (name fb:en.nikita_khrushchev "Nikita Khrushchev") (name fb:en.vagit_alekperov "Vagit Alekperov") (name fb:en.mikhail_gorbachev "Mikhail Gorbachev") (name fb:en.vyacheslav_molotov "Vyacheslav Molotov") (name fb:en.vladimir_ivashko "Vladimir Ivashko") (name fb:en.yuri_andropov "Yuri Andropov") (name fb:en.georgy_malenkov "Georgy Malenkov"))) (type fb:government.politician) who was the first dictator of the soviet union? Vladimir Lenin 16.969 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin "Joseph Stalin") (name fb:en.vladimir_lenin "Vladimir Lenin") (name fb:en.leonid_ilich_brezhnev "Leonid Brezhnev") (name fb:en.nikita_khrushchev "Nikita Khrushchev") (name fb:en.vagit_alekperov "Vagit Alekperov") (name fb:en.mikhail_gorbachev "Mikhail Gorbachev") (name fb:en.vyacheslav_molotov "Vyacheslav Molotov") (name fb:en.vladimir_ivashko "Vladimir Ivashko") (name fb:en.yuri_andropov "Yuri Andropov") (name fb:en.georgy_malenkov "Georgy Malenkov"))) (type fb:government.politician) who was the first dictator of the soviet union? Leonid Brezhnev 16.969 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin "Joseph Stalin") (name fb:en.vladimir_lenin "Vladimir Lenin") (name fb:en.leonid_ilich_brezhnev "Leonid Brezhnev") (name fb:en.nikita_khrushchev "Nikita Khrushchev") (name fb:en.vagit_alekperov "Vagit Alekperov") (name fb:en.mikhail_gorbachev "Mikhail Gorbachev") (name fb:en.vyacheslav_molotov "Vyacheslav Molotov") (name fb:en.vladimir_ivashko "Vladimir Ivashko") (name fb:en.yuri_andropov "Yuri Andropov") (name fb:en.georgy_malenkov "Georgy Malenkov"))) (type fb:government.politician) who was the first dictator of the soviet union? Nikita Khrushchev 16.969 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin "Joseph Stalin") (name fb:en.vladimir_lenin "Vladimir Lenin") (name fb:en.leonid_ilich_brezhnev "Leonid Brezhnev") (name fb:en.nikita_khrushchev "Nikita Khrushchev") (name fb:en.vagit_alekperov "Vagit Alekperov") (name fb:en.mikhail_gorbachev "Mikhail Gorbachev") (name fb:en.vyacheslav_molotov "Vyacheslav Molotov") (name fb:en.vladimir_ivashko "Vladimir Ivashko") (name fb:en.yuri_andropov "Yuri Andropov") (name fb:en.georgy_malenkov "Georgy Malenkov"))) (type fb:government.politician) who was the first dictator of the soviet union? Vagit Alekperov 16.969 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin "Joseph Stalin") (name fb:en.vladimir_lenin "Vladimir Lenin") (name fb:en.leonid_ilich_brezhnev "Leonid Brezhnev") (name fb:en.nikita_khrushchev "Nikita Khrushchev") (name fb:en.vagit_alekperov "Vagit Alekperov") (name fb:en.mikhail_gorbachev "Mikhail Gorbachev") (name fb:en.vyacheslav_molotov "Vyacheslav Molotov") (name fb:en.vladimir_ivashko "Vladimir Ivashko") (name fb:en.yuri_andropov "Yuri Andropov") (name fb:en.georgy_malenkov "Georgy Malenkov"))) (type fb:government.politician) who was the first dictator of the soviet union? Mikhail Gorbachev 16.969 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin "Joseph Stalin") (name fb:en.vladimir_lenin "Vladimir Lenin") (name fb:en.leonid_ilich_brezhnev "Leonid Brezhnev") (name fb:en.nikita_khrushchev "Nikita Khrushchev") (name fb:en.vagit_alekperov "Vagit Alekperov") (name fb:en.mikhail_gorbachev "Mikhail Gorbachev") (name fb:en.vyacheslav_molotov "Vyacheslav Molotov") (name fb:en.vladimir_ivashko "Vladimir Ivashko") (name fb:en.yuri_andropov "Yuri Andropov") (name fb:en.georgy_malenkov "Georgy Malenkov"))) (type fb:government.politician) who was the first dictator of the soviet union? Vyacheslav Molotov 16.969 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin "Joseph Stalin") (name fb:en.vladimir_lenin "Vladimir Lenin") (name fb:en.leonid_ilich_brezhnev "Leonid Brezhnev") (name fb:en.nikita_khrushchev "Nikita Khrushchev") (name fb:en.vagit_alekperov "Vagit Alekperov") (name fb:en.mikhail_gorbachev "Mikhail Gorbachev") (name fb:en.vyacheslav_molotov "Vyacheslav Molotov") (name fb:en.vladimir_ivashko "Vladimir Ivashko") (name fb:en.yuri_andropov "Yuri Andropov") (name fb:en.georgy_malenkov "Georgy Malenkov"))) (type fb:government.politician) who was the first dictator of the soviet union? Vladimir Ivashko 16.969 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin "Joseph Stalin") (name fb:en.vladimir_lenin "Vladimir Lenin") (name fb:en.leonid_ilich_brezhnev "Leonid Brezhnev") (name fb:en.nikita_khrushchev "Nikita Khrushchev") (name fb:en.vagit_alekperov "Vagit Alekperov") (name fb:en.mikhail_gorbachev "Mikhail Gorbachev") (name fb:en.vyacheslav_molotov "Vyacheslav Molotov") (name fb:en.vladimir_ivashko "Vladimir Ivashko") (name fb:en.yuri_andropov "Yuri Andropov") (name fb:en.georgy_malenkov "Georgy Malenkov"))) (type fb:government.politician) who was the first dictator of the soviet union? Yuri Andropov 16.969 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin "Joseph Stalin") (name fb:en.vladimir_lenin "Vladimir Lenin") (name fb:en.leonid_ilich_brezhnev "Leonid Brezhnev") (name fb:en.nikita_khrushchev "Nikita Khrushchev") (name fb:en.vagit_alekperov "Vagit Alekperov") (name fb:en.mikhail_gorbachev "Mikhail Gorbachev") (name fb:en.vyacheslav_molotov "Vyacheslav Molotov") (name fb:en.vladimir_ivashko "Vladimir Ivashko") (name fb:en.yuri_andropov "Yuri Andropov") (name fb:en.georgy_malenkov "Georgy Malenkov"))) (type fb:government.politician) who was the first dictator of the soviet union? Georgy Malenkov 16.969 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.soviet_union)) (value (list (name fb:en.joseph_stalin "Joseph Stalin") (name fb:en.vladimir_lenin "Vladimir Lenin") (name fb:en.leonid_ilich_brezhnev "Leonid Brezhnev") (name fb:en.nikita_khrushchev "Nikita Khrushchev") (name fb:en.vagit_alekperov "Vagit Alekperov") (name fb:en.mikhail_gorbachev "Mikhail Gorbachev") (name fb:en.vyacheslav_molotov "Vyacheslav Molotov") (name fb:en.vladimir_ivashko "Vladimir Ivashko") (name fb:en.yuri_andropov "Yuri Andropov") (name fb:en.georgy_malenkov "Georgy Malenkov"))) (type fb:government.politician) what is the currency of puerto rico called? United States dollar 19.308 formula (!fb:location.country.currency_used fb:en.puerto_rico)) (value (list (name fb:en.us "United States dollar"))) (type fb:finance.currency) what kind of cancer did carl wilson have? Lung cancer 11.862 formula (and (fb:type.object.type fb:people.cause_of_death) (fb:people.cause_of_death.people fb:en.carl_wilson))) (value (list (name fb:en.lung_cancer "Lung cancer") (name fb:en.brain_tumors "Brain tumor"))) (type (union fb:people.cause_of_death)) what kind of cancer did carl wilson have? Brain tumor 11.862 formula (and (fb:type.object.type fb:people.cause_of_death) (fb:people.cause_of_death.people fb:en.carl_wilson))) (value (list (name fb:en.lung_cancer "Lung cancer") (name fb:en.brain_tumors "Brain tumor"))) (type (union fb:people.cause_of_death)) who plays the voice of kitt in knight rider? William Daniels 7.995 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.kitt)) (value (list (name fb:en.william_daniels "William Daniels"))) (type fb:film.actor) what county is brentwood tennessee in? Contra Costa County 8.655 formula (!fb:location.hud_county_place.county fb:en.brentwood_california)) (value (list (name fb:en.contra_costa_county "Contra Costa County"))) (type fb:location.us_county) who is moira en x men? (For each individual x (it is possible that (x obtains personal development) 3.293 formula (fb:user.avic.assertion_modeling_kit.freebase_proposition.input_1 fb:en.x)) (value (list (name fb:m.04j8tlt "(For each individual x (it is possible that (x obtains personal development)"))) (type fb:user.avic.assertion_modeling_kit.freebase_proposition) who did michael j fox marry? Tracy Pollan 9.638 formula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.michael_j_fox)) (value (list (name fb:en.tracy_pollan "Tracy Pollan"))) (type fb:people.person) what battles did stonewall jackson fight in? Battle of Cedar Mountain 11.277 formula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.stonewall_jackson))) (value (list (name fb:en.battle_of_cedar_mountain "Battle of Cedar Mountain") (name fb:en.battle_of_hokes_run "Battle of Hoke's Run") (name fb:en.battle_of_harpers_ferry "Battle of Harpers Ferry") (name fb:en.second_battle_of_bull_run "Second Battle of Bull Run") (name fb:en.battle_of_kernstown_i "First Battle of Kernstown") (name fb:en.battle_of_chancellorsville "Battle of Chancellorsville") (name fb:en.battle_of_manassas_station_ops "Manassas Station Operations") (name fb:en.battle_of_chantilly "Battle of Chantilly") (name fb:en.battle_of_mcdowell "Battle of McDowell") (name fb:en.battle_of_front_royal "Battle of Front Royal"))) (type (union fb:military.military_conflict)) what battles did stonewall jackson fight in? Battle of Hoke's Run 11.277 formula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.stonewall_jackson))) (value (list (name fb:en.battle_of_cedar_mountain "Battle of Cedar Mountain") (name fb:en.battle_of_hokes_run "Battle of Hoke's Run") (name fb:en.battle_of_harpers_ferry "Battle of Harpers Ferry") (name fb:en.second_battle_of_bull_run "Second Battle of Bull Run") (name fb:en.battle_of_kernstown_i "First Battle of Kernstown") (name fb:en.battle_of_chancellorsville "Battle of Chancellorsville") (name fb:en.battle_of_manassas_station_ops "Manassas Station Operations") (name fb:en.battle_of_chantilly "Battle of Chantilly") (name fb:en.battle_of_mcdowell "Battle of McDowell") (name fb:en.battle_of_front_royal "Battle of Front Royal"))) (type (union fb:military.military_conflict)) what battles did stonewall jackson fight in? Battle of Harpers Ferry 11.277 formula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.stonewall_jackson))) (value (list (name fb:en.battle_of_cedar_mountain "Battle of Cedar Mountain") (name fb:en.battle_of_hokes_run "Battle of Hoke's Run") (name fb:en.battle_of_harpers_ferry "Battle of Harpers Ferry") (name fb:en.second_battle_of_bull_run "Second Battle of Bull Run") (name fb:en.battle_of_kernstown_i "First Battle of Kernstown") (name fb:en.battle_of_chancellorsville "Battle of Chancellorsville") (name fb:en.battle_of_manassas_station_ops "Manassas Station Operations") (name fb:en.battle_of_chantilly "Battle of Chantilly") (name fb:en.battle_of_mcdowell "Battle of McDowell") (name fb:en.battle_of_front_royal "Battle of Front Royal"))) (type (union fb:military.military_conflict)) what battles did stonewall jackson fight in? Second Battle of Bull Run 11.277 formula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.stonewall_jackson))) (value (list (name fb:en.battle_of_cedar_mountain "Battle of Cedar Mountain") (name fb:en.battle_of_hokes_run "Battle of Hoke's Run") (name fb:en.battle_of_harpers_ferry "Battle of Harpers Ferry") (name fb:en.second_battle_of_bull_run "Second Battle of Bull Run") (name fb:en.battle_of_kernstown_i "First Battle of Kernstown") (name fb:en.battle_of_chancellorsville "Battle of Chancellorsville") (name fb:en.battle_of_manassas_station_ops "Manassas Station Operations") (name fb:en.battle_of_chantilly "Battle of Chantilly") (name fb:en.battle_of_mcdowell "Battle of McDowell") (name fb:en.battle_of_front_royal "Battle of Front Royal"))) (type (union fb:military.military_conflict)) what battles did stonewall jackson fight in? First Battle of Kernstown 11.277 formula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.stonewall_jackson))) (value (list (name fb:en.battle_of_cedar_mountain "Battle of Cedar Mountain") (name fb:en.battle_of_hokes_run "Battle of Hoke's Run") (name fb:en.battle_of_harpers_ferry "Battle of Harpers Ferry") (name fb:en.second_battle_of_bull_run "Second Battle of Bull Run") (name fb:en.battle_of_kernstown_i "First Battle of Kernstown") (name fb:en.battle_of_chancellorsville "Battle of Chancellorsville") (name fb:en.battle_of_manassas_station_ops "Manassas Station Operations") (name fb:en.battle_of_chantilly "Battle of Chantilly") (name fb:en.battle_of_mcdowell "Battle of McDowell") (name fb:en.battle_of_front_royal "Battle of Front Royal"))) (type (union fb:military.military_conflict)) what battles did stonewall jackson fight in? Battle of Chancellorsville 11.277 formula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.stonewall_jackson))) (value (list (name fb:en.battle_of_cedar_mountain "Battle of Cedar Mountain") (name fb:en.battle_of_hokes_run "Battle of Hoke's Run") (name fb:en.battle_of_harpers_ferry "Battle of Harpers Ferry") (name fb:en.second_battle_of_bull_run "Second Battle of Bull Run") (name fb:en.battle_of_kernstown_i "First Battle of Kernstown") (name fb:en.battle_of_chancellorsville "Battle of Chancellorsville") (name fb:en.battle_of_manassas_station_ops "Manassas Station Operations") (name fb:en.battle_of_chantilly "Battle of Chantilly") (name fb:en.battle_of_mcdowell "Battle of McDowell") (name fb:en.battle_of_front_royal "Battle of Front Royal"))) (type (union fb:military.military_conflict)) what battles did stonewall jackson fight in? Manassas Station Operations 11.277 formula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.stonewall_jackson))) (value (list (name fb:en.battle_of_cedar_mountain "Battle of Cedar Mountain") (name fb:en.battle_of_hokes_run "Battle of Hoke's Run") (name fb:en.battle_of_harpers_ferry "Battle of Harpers Ferry") (name fb:en.second_battle_of_bull_run "Second Battle of Bull Run") (name fb:en.battle_of_kernstown_i "First Battle of Kernstown") (name fb:en.battle_of_chancellorsville "Battle of Chancellorsville") (name fb:en.battle_of_manassas_station_ops "Manassas Station Operations") (name fb:en.battle_of_chantilly "Battle of Chantilly") (name fb:en.battle_of_mcdowell "Battle of McDowell") (name fb:en.battle_of_front_royal "Battle of Front Royal"))) (type (union fb:military.military_conflict)) what battles did stonewall jackson fight in? Battle of Chantilly 11.277 formula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.stonewall_jackson))) (value (list (name fb:en.battle_of_cedar_mountain "Battle of Cedar Mountain") (name fb:en.battle_of_hokes_run "Battle of Hoke's Run") (name fb:en.battle_of_harpers_ferry "Battle of Harpers Ferry") (name fb:en.second_battle_of_bull_run "Second Battle of Bull Run") (name fb:en.battle_of_kernstown_i "First Battle of Kernstown") (name fb:en.battle_of_chancellorsville "Battle of Chancellorsville") (name fb:en.battle_of_manassas_station_ops "Manassas Station Operations") (name fb:en.battle_of_chantilly "Battle of Chantilly") (name fb:en.battle_of_mcdowell "Battle of McDowell") (name fb:en.battle_of_front_royal "Battle of Front Royal"))) (type (union fb:military.military_conflict)) what battles did stonewall jackson fight in? Battle of McDowell 11.277 formula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.stonewall_jackson))) (value (list (name fb:en.battle_of_cedar_mountain "Battle of Cedar Mountain") (name fb:en.battle_of_hokes_run "Battle of Hoke's Run") (name fb:en.battle_of_harpers_ferry "Battle of Harpers Ferry") (name fb:en.second_battle_of_bull_run "Second Battle of Bull Run") (name fb:en.battle_of_kernstown_i "First Battle of Kernstown") (name fb:en.battle_of_chancellorsville "Battle of Chancellorsville") (name fb:en.battle_of_manassas_station_ops "Manassas Station Operations") (name fb:en.battle_of_chantilly "Battle of Chantilly") (name fb:en.battle_of_mcdowell "Battle of McDowell") (name fb:en.battle_of_front_royal "Battle of Front Royal"))) (type (union fb:military.military_conflict)) what battles did stonewall jackson fight in? Battle of Front Royal 11.277 formula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.stonewall_jackson))) (value (list (name fb:en.battle_of_cedar_mountain "Battle of Cedar Mountain") (name fb:en.battle_of_hokes_run "Battle of Hoke's Run") (name fb:en.battle_of_harpers_ferry "Battle of Harpers Ferry") (name fb:en.second_battle_of_bull_run "Second Battle of Bull Run") (name fb:en.battle_of_kernstown_i "First Battle of Kernstown") (name fb:en.battle_of_chancellorsville "Battle of Chancellorsville") (name fb:en.battle_of_manassas_station_ops "Manassas Station Operations") (name fb:en.battle_of_chantilly "Battle of Chantilly") (name fb:en.battle_of_mcdowell "Battle of McDowell") (name fb:en.battle_of_front_royal "Battle of Front Royal"))) (type (union fb:military.military_conflict)) what language do the maasai tribe speak? Maasai Language 10.97 formula (and (fb:type.object.type fb:language.human_language) (!fb:people.ethnicity.languages_spoken fb:en.maasai))) (value (list (name fb:en.maasai_language "Maasai Language"))) (type fb:language.human_language) who did benjamin franklin get married to? Deborah Read 19.365 formula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.benjamin_franklin)) (value (list (name fb:en.deborah_read "Deborah Read"))) (type fb:people.person) what disease did patrick swayze died from? Pancreatic cancer 18.169 formula (fb:people.cause_of_death.people fb:en.patrick_swayze)) (value (list (name fb:en.malignant_pancreatic_neoplasm "Pancreatic cancer"))) (type fb:people.cause_of_death) what county is greeley colorado in? United States of America 8.511 formula (and (fb:type.object.type fb:location.administrative_division) (fb:location.location.contains fb:en.colorado))) (value (list (name fb:en.united_states_of_america "United States of America") (name fb:m.0hzc9m5 "United States, with Territories"))) (type (union fb:location.administrative_division)) what county is greeley colorado in? United States, with Territories 8.511 formula (and (fb:type.object.type fb:location.administrative_division) (fb:location.location.contains fb:en.colorado))) (value (list (name fb:en.united_states_of_america "United States of America") (name fb:m.0hzc9m5 "United States, with Territories"))) (type (union fb:location.administrative_division)) where is the ellen degenerous show filmed? The Ellen DeGeneres Show 11.713 formula (and (fb:type.object.type fb:tv.tv_program) ((lambda x (!fb:tv.tv_program_writer_relationship.tv_program (!fb:tv.tv_writer.tv_programs (var x)))) fb:en.ellen_degeneres))) (value (list (name fb:en.ellen Ellen) (name fb:en.the_ellen_degeneres_show "The Ellen DeGeneres Show"))) (type (union fb:tv.tv_program)) what did peter tchaikovsky do? Symphony No. 5 1.547 formula (fb:book.written_work.author fb:en.piotr_tchaikovsky)) (value (list (name fb:m.06k57ng "Symphony No. 5") (name fb:en.none_but_the_lonely_heart_and_other_songs "None But the Lonely Heart and Other Songs") (name fb:en.the_seasons_and_other_works_for_solo_piano "The Seasons and Other Works for Solo Piano") (name fb:en.symphonies_nos_4_6_for_solo_piano "Symphonies Nos. 4-6 for Solo Piano") (name fb:en.the_queen_of_spades_op_68 "The Queen of Spades, Op. 68") (name fb:en.great_symphonies_for_piano_solo_vol_1 "Great Symphonies for Piano Solo, Vol. 1") (name fb:m.06jr7_7 "Music Minus One Piano") (name fb:m.06d3bqc "Eugene Onegin") (name fb:en.fourth_fifth_and_sixth_symphonies_in_full_score "Fourth, Fifth and Sixth Symphonies in Full Score") (name fb:m.06n_ttb "Complete String Quartets"))) (type fb:book.written_work) what did peter tchaikovsky do? None But the Lonely Heart and Other Songs 1.547 formula (fb:book.written_work.author fb:en.piotr_tchaikovsky)) (value (list (name fb:m.06k57ng "Symphony No. 5") (name fb:en.none_but_the_lonely_heart_and_other_songs "None But the Lonely Heart and Other Songs") (name fb:en.the_seasons_and_other_works_for_solo_piano "The Seasons and Other Works for Solo Piano") (name fb:en.symphonies_nos_4_6_for_solo_piano "Symphonies Nos. 4-6 for Solo Piano") (name fb:en.the_queen_of_spades_op_68 "The Queen of Spades, Op. 68") (name fb:en.great_symphonies_for_piano_solo_vol_1 "Great Symphonies for Piano Solo, Vol. 1") (name fb:m.06jr7_7 "Music Minus One Piano") (name fb:m.06d3bqc "Eugene Onegin") (name fb:en.fourth_fifth_and_sixth_symphonies_in_full_score "Fourth, Fifth and Sixth Symphonies in Full Score") (name fb:m.06n_ttb "Complete String Quartets"))) (type fb:book.written_work) what did peter tchaikovsky do? The Seasons and Other Works for Solo Piano 1.547 formula (fb:book.written_work.author fb:en.piotr_tchaikovsky)) (value (list (name fb:m.06k57ng "Symphony No. 5") (name fb:en.none_but_the_lonely_heart_and_other_songs "None But the Lonely Heart and Other Songs") (name fb:en.the_seasons_and_other_works_for_solo_piano "The Seasons and Other Works for Solo Piano") (name fb:en.symphonies_nos_4_6_for_solo_piano "Symphonies Nos. 4-6 for Solo Piano") (name fb:en.the_queen_of_spades_op_68 "The Queen of Spades, Op. 68") (name fb:en.great_symphonies_for_piano_solo_vol_1 "Great Symphonies for Piano Solo, Vol. 1") (name fb:m.06jr7_7 "Music Minus One Piano") (name fb:m.06d3bqc "Eugene Onegin") (name fb:en.fourth_fifth_and_sixth_symphonies_in_full_score "Fourth, Fifth and Sixth Symphonies in Full Score") (name fb:m.06n_ttb "Complete String Quartets"))) (type fb:book.written_work) what did peter tchaikovsky do? Symphonies Nos. 4-6 for Solo Piano 1.547 formula (fb:book.written_work.author fb:en.piotr_tchaikovsky)) (value (list (name fb:m.06k57ng "Symphony No. 5") (name fb:en.none_but_the_lonely_heart_and_other_songs "None But the Lonely Heart and Other Songs") (name fb:en.the_seasons_and_other_works_for_solo_piano "The Seasons and Other Works for Solo Piano") (name fb:en.symphonies_nos_4_6_for_solo_piano "Symphonies Nos. 4-6 for Solo Piano") (name fb:en.the_queen_of_spades_op_68 "The Queen of Spades, Op. 68") (name fb:en.great_symphonies_for_piano_solo_vol_1 "Great Symphonies for Piano Solo, Vol. 1") (name fb:m.06jr7_7 "Music Minus One Piano") (name fb:m.06d3bqc "Eugene Onegin") (name fb:en.fourth_fifth_and_sixth_symphonies_in_full_score "Fourth, Fifth and Sixth Symphonies in Full Score") (name fb:m.06n_ttb "Complete String Quartets"))) (type fb:book.written_work) what did peter tchaikovsky do? The Queen of Spades, Op. 68 1.547 formula (fb:book.written_work.author fb:en.piotr_tchaikovsky)) (value (list (name fb:m.06k57ng "Symphony No. 5") (name fb:en.none_but_the_lonely_heart_and_other_songs "None But the Lonely Heart and Other Songs") (name fb:en.the_seasons_and_other_works_for_solo_piano "The Seasons and Other Works for Solo Piano") (name fb:en.symphonies_nos_4_6_for_solo_piano "Symphonies Nos. 4-6 for Solo Piano") (name fb:en.the_queen_of_spades_op_68 "The Queen of Spades, Op. 68") (name fb:en.great_symphonies_for_piano_solo_vol_1 "Great Symphonies for Piano Solo, Vol. 1") (name fb:m.06jr7_7 "Music Minus One Piano") (name fb:m.06d3bqc "Eugene Onegin") (name fb:en.fourth_fifth_and_sixth_symphonies_in_full_score "Fourth, Fifth and Sixth Symphonies in Full Score") (name fb:m.06n_ttb "Complete String Quartets"))) (type fb:book.written_work) what did peter tchaikovsky do? Great Symphonies for Piano Solo, Vol. 1 1.547 formula (fb:book.written_work.author fb:en.piotr_tchaikovsky)) (value (list (name fb:m.06k57ng "Symphony No. 5") (name fb:en.none_but_the_lonely_heart_and_other_songs "None But the Lonely Heart and Other Songs") (name fb:en.the_seasons_and_other_works_for_solo_piano "The Seasons and Other Works for Solo Piano") (name fb:en.symphonies_nos_4_6_for_solo_piano "Symphonies Nos. 4-6 for Solo Piano") (name fb:en.the_queen_of_spades_op_68 "The Queen of Spades, Op. 68") (name fb:en.great_symphonies_for_piano_solo_vol_1 "Great Symphonies for Piano Solo, Vol. 1") (name fb:m.06jr7_7 "Music Minus One Piano") (name fb:m.06d3bqc "Eugene Onegin") (name fb:en.fourth_fifth_and_sixth_symphonies_in_full_score "Fourth, Fifth and Sixth Symphonies in Full Score") (name fb:m.06n_ttb "Complete String Quartets"))) (type fb:book.written_work) what did peter tchaikovsky do? Music Minus One Piano 1.547 formula (fb:book.written_work.author fb:en.piotr_tchaikovsky)) (value (list (name fb:m.06k57ng "Symphony No. 5") (name fb:en.none_but_the_lonely_heart_and_other_songs "None But the Lonely Heart and Other Songs") (name fb:en.the_seasons_and_other_works_for_solo_piano "The Seasons and Other Works for Solo Piano") (name fb:en.symphonies_nos_4_6_for_solo_piano "Symphonies Nos. 4-6 for Solo Piano") (name fb:en.the_queen_of_spades_op_68 "The Queen of Spades, Op. 68") (name fb:en.great_symphonies_for_piano_solo_vol_1 "Great Symphonies for Piano Solo, Vol. 1") (name fb:m.06jr7_7 "Music Minus One Piano") (name fb:m.06d3bqc "Eugene Onegin") (name fb:en.fourth_fifth_and_sixth_symphonies_in_full_score "Fourth, Fifth and Sixth Symphonies in Full Score") (name fb:m.06n_ttb "Complete String Quartets"))) (type fb:book.written_work) what did peter tchaikovsky do? Eugene Onegin 1.547 formula (fb:book.written_work.author fb:en.piotr_tchaikovsky)) (value (list (name fb:m.06k57ng "Symphony No. 5") (name fb:en.none_but_the_lonely_heart_and_other_songs "None But the Lonely Heart and Other Songs") (name fb:en.the_seasons_and_other_works_for_solo_piano "The Seasons and Other Works for Solo Piano") (name fb:en.symphonies_nos_4_6_for_solo_piano "Symphonies Nos. 4-6 for Solo Piano") (name fb:en.the_queen_of_spades_op_68 "The Queen of Spades, Op. 68") (name fb:en.great_symphonies_for_piano_solo_vol_1 "Great Symphonies for Piano Solo, Vol. 1") (name fb:m.06jr7_7 "Music Minus One Piano") (name fb:m.06d3bqc "Eugene Onegin") (name fb:en.fourth_fifth_and_sixth_symphonies_in_full_score "Fourth, Fifth and Sixth Symphonies in Full Score") (name fb:m.06n_ttb "Complete String Quartets"))) (type fb:book.written_work) what did peter tchaikovsky do? Fourth, Fifth and Sixth Symphonies in Full Score 1.547 formula (fb:book.written_work.author fb:en.piotr_tchaikovsky)) (value (list (name fb:m.06k57ng "Symphony No. 5") (name fb:en.none_but_the_lonely_heart_and_other_songs "None But the Lonely Heart and Other Songs") (name fb:en.the_seasons_and_other_works_for_solo_piano "The Seasons and Other Works for Solo Piano") (name fb:en.symphonies_nos_4_6_for_solo_piano "Symphonies Nos. 4-6 for Solo Piano") (name fb:en.the_queen_of_spades_op_68 "The Queen of Spades, Op. 68") (name fb:en.great_symphonies_for_piano_solo_vol_1 "Great Symphonies for Piano Solo, Vol. 1") (name fb:m.06jr7_7 "Music Minus One Piano") (name fb:m.06d3bqc "Eugene Onegin") (name fb:en.fourth_fifth_and_sixth_symphonies_in_full_score "Fourth, Fifth and Sixth Symphonies in Full Score") (name fb:m.06n_ttb "Complete String Quartets"))) (type fb:book.written_work) what did peter tchaikovsky do? Complete String Quartets 1.547 formula (fb:book.written_work.author fb:en.piotr_tchaikovsky)) (value (list (name fb:m.06k57ng "Symphony No. 5") (name fb:en.none_but_the_lonely_heart_and_other_songs "None But the Lonely Heart and Other Songs") (name fb:en.the_seasons_and_other_works_for_solo_piano "The Seasons and Other Works for Solo Piano") (name fb:en.symphonies_nos_4_6_for_solo_piano "Symphonies Nos. 4-6 for Solo Piano") (name fb:en.the_queen_of_spades_op_68 "The Queen of Spades, Op. 68") (name fb:en.great_symphonies_for_piano_solo_vol_1 "Great Symphonies for Piano Solo, Vol. 1") (name fb:m.06jr7_7 "Music Minus One Piano") (name fb:m.06d3bqc "Eugene Onegin") (name fb:en.fourth_fifth_and_sixth_symphonies_in_full_score "Fourth, Fifth and Sixth Symphonies in Full Score") (name fb:m.06n_ttb "Complete String Quartets"))) (type fb:book.written_work) which countries speak german officially? Nazi Germany 18.891 formula (and (fb:type.object.type fb:location.country) (fb:location.country.official_language fb:en.german_language))) (value (list (name fb:en.switzerland Switzerland) (name fb:en.austria-hungary Austria-Hungary) (name fb:en.germany Germany) (name fb:en.austria Austria) (name fb:en.luxembourg Luxembourg) (name fb:en.belgium Belgium) (name fb:en.nazi_germany "Nazi Germany") (name fb:en.weimar_republic "Weimar Republic") (name fb:en.german_democratic_republic "German Democratic Republic") (name fb:en.nedics_serbia "Nedić's Serbia"))) (type fb:location.country) which countries speak german officially? Weimar Republic 18.891 formula (and (fb:type.object.type fb:location.country) (fb:location.country.official_language fb:en.german_language))) (value (list (name fb:en.switzerland Switzerland) (name fb:en.austria-hungary Austria-Hungary) (name fb:en.germany Germany) (name fb:en.austria Austria) (name fb:en.luxembourg Luxembourg) (name fb:en.belgium Belgium) (name fb:en.nazi_germany "Nazi Germany") (name fb:en.weimar_republic "Weimar Republic") (name fb:en.german_democratic_republic "German Democratic Republic") (name fb:en.nedics_serbia "Nedić's Serbia"))) (type fb:location.country) which countries speak german officially? German Democratic Republic 18.891 formula (and (fb:type.object.type fb:location.country) (fb:location.country.official_language fb:en.german_language))) (value (list (name fb:en.switzerland Switzerland) (name fb:en.austria-hungary Austria-Hungary) (name fb:en.germany Germany) (name fb:en.austria Austria) (name fb:en.luxembourg Luxembourg) (name fb:en.belgium Belgium) (name fb:en.nazi_germany "Nazi Germany") (name fb:en.weimar_republic "Weimar Republic") (name fb:en.german_democratic_republic "German Democratic Republic") (name fb:en.nedics_serbia "Nedić's Serbia"))) (type fb:location.country) which countries speak german officially? Nedić's Serbia 18.891 formula (and (fb:type.object.type fb:location.country) (fb:location.country.official_language fb:en.german_language))) (value (list (name fb:en.switzerland Switzerland) (name fb:en.austria-hungary Austria-Hungary) (name fb:en.germany Germany) (name fb:en.austria Austria) (name fb:en.luxembourg Luxembourg) (name fb:en.belgium Belgium) (name fb:en.nazi_germany "Nazi Germany") (name fb:en.weimar_republic "Weimar Republic") (name fb:en.german_democratic_republic "German Democratic Republic") (name fb:en.nedics_serbia "Nedić's Serbia"))) (type fb:location.country) what type of music did john lennon sing? Rock music 12.589 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.john_lennon))) (value (list (name fb:en.rock_music "Rock music") (name fb:en.pop_music "Pop music") (name fb:en.experimental_rock "Experimental rock") (name fb:en.art_rock "Art rock") (name fb:en.soft_rock "Soft rock") (name fb:en.blues-rock Blues-rock) (name fb:en.psychedelic_rock "Psychedelic rock") (name fb:m.03ckfl9 "Experimental music") (name fb:en.pop_rock "Pop rock"))) (type (union fb:music.genre)) what type of music did john lennon sing? Pop music 12.589 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.john_lennon))) (value (list (name fb:en.rock_music "Rock music") (name fb:en.pop_music "Pop music") (name fb:en.experimental_rock "Experimental rock") (name fb:en.art_rock "Art rock") (name fb:en.soft_rock "Soft rock") (name fb:en.blues-rock Blues-rock) (name fb:en.psychedelic_rock "Psychedelic rock") (name fb:m.03ckfl9 "Experimental music") (name fb:en.pop_rock "Pop rock"))) (type (union fb:music.genre)) what type of music did john lennon sing? Experimental rock 12.589 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.john_lennon))) (value (list (name fb:en.rock_music "Rock music") (name fb:en.pop_music "Pop music") (name fb:en.experimental_rock "Experimental rock") (name fb:en.art_rock "Art rock") (name fb:en.soft_rock "Soft rock") (name fb:en.blues-rock Blues-rock) (name fb:en.psychedelic_rock "Psychedelic rock") (name fb:m.03ckfl9 "Experimental music") (name fb:en.pop_rock "Pop rock"))) (type (union fb:music.genre)) what type of music did john lennon sing? Art rock 12.589 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.john_lennon))) (value (list (name fb:en.rock_music "Rock music") (name fb:en.pop_music "Pop music") (name fb:en.experimental_rock "Experimental rock") (name fb:en.art_rock "Art rock") (name fb:en.soft_rock "Soft rock") (name fb:en.blues-rock Blues-rock) (name fb:en.psychedelic_rock "Psychedelic rock") (name fb:m.03ckfl9 "Experimental music") (name fb:en.pop_rock "Pop rock"))) (type (union fb:music.genre)) what type of music did john lennon sing? Soft rock 12.589 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.john_lennon))) (value (list (name fb:en.rock_music "Rock music") (name fb:en.pop_music "Pop music") (name fb:en.experimental_rock "Experimental rock") (name fb:en.art_rock "Art rock") (name fb:en.soft_rock "Soft rock") (name fb:en.blues-rock Blues-rock) (name fb:en.psychedelic_rock "Psychedelic rock") (name fb:m.03ckfl9 "Experimental music") (name fb:en.pop_rock "Pop rock"))) (type (union fb:music.genre)) what type of music did john lennon sing? Psychedelic rock 12.589 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.john_lennon))) (value (list (name fb:en.rock_music "Rock music") (name fb:en.pop_music "Pop music") (name fb:en.experimental_rock "Experimental rock") (name fb:en.art_rock "Art rock") (name fb:en.soft_rock "Soft rock") (name fb:en.blues-rock Blues-rock) (name fb:en.psychedelic_rock "Psychedelic rock") (name fb:m.03ckfl9 "Experimental music") (name fb:en.pop_rock "Pop rock"))) (type (union fb:music.genre)) what type of music did john lennon sing? Experimental music 12.589 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.john_lennon))) (value (list (name fb:en.rock_music "Rock music") (name fb:en.pop_music "Pop music") (name fb:en.experimental_rock "Experimental rock") (name fb:en.art_rock "Art rock") (name fb:en.soft_rock "Soft rock") (name fb:en.blues-rock Blues-rock) (name fb:en.psychedelic_rock "Psychedelic rock") (name fb:m.03ckfl9 "Experimental music") (name fb:en.pop_rock "Pop rock"))) (type (union fb:music.genre)) what type of music did john lennon sing? Pop rock 12.589 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.john_lennon))) (value (list (name fb:en.rock_music "Rock music") (name fb:en.pop_music "Pop music") (name fb:en.experimental_rock "Experimental rock") (name fb:en.art_rock "Art rock") (name fb:en.soft_rock "Soft rock") (name fb:en.blues-rock Blues-rock) (name fb:en.psychedelic_rock "Psychedelic rock") (name fb:m.03ckfl9 "Experimental music") (name fb:en.pop_rock "Pop rock"))) (type (union fb:music.genre)) who are the colorado representatives? Henry M. Teller 10.592 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.colorado)) (value (list (name fb:en.henry_moore_teller "Henry M. Teller") (name fb:en.floyd_k_haskell "Floyd K. Haskell") (name fb:en.eugene_donald_millikin "Eugene Millikin") (name fb:en.nathaniel_p_hill "Nathaniel P. Hill") (name fb:en.ken_salazar "Ken Salazar") (name fb:en.edwin_c_johnson "Edwin C. Johnson") (name fb:m.0cvj70 "Walter Walker") (name fb:en.alva_b_adams "Alva B. Adams") (name fb:en.george_m_chilcott "George M. Chilcott") (name fb:en.ben_nighthorse_campbell "Ben Nighthorse Campbell"))) (type fb:government.politician) who are the colorado representatives? Floyd K. Haskell 10.592 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.colorado)) (value (list (name fb:en.henry_moore_teller "Henry M. Teller") (name fb:en.floyd_k_haskell "Floyd K. Haskell") (name fb:en.eugene_donald_millikin "Eugene Millikin") (name fb:en.nathaniel_p_hill "Nathaniel P. Hill") (name fb:en.ken_salazar "Ken Salazar") (name fb:en.edwin_c_johnson "Edwin C. Johnson") (name fb:m.0cvj70 "Walter Walker") (name fb:en.alva_b_adams "Alva B. Adams") (name fb:en.george_m_chilcott "George M. Chilcott") (name fb:en.ben_nighthorse_campbell "Ben Nighthorse Campbell"))) (type fb:government.politician) who are the colorado representatives? Eugene Millikin 10.592 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.colorado)) (value (list (name fb:en.henry_moore_teller "Henry M. Teller") (name fb:en.floyd_k_haskell "Floyd K. Haskell") (name fb:en.eugene_donald_millikin "Eugene Millikin") (name fb:en.nathaniel_p_hill "Nathaniel P. Hill") (name fb:en.ken_salazar "Ken Salazar") (name fb:en.edwin_c_johnson "Edwin C. Johnson") (name fb:m.0cvj70 "Walter Walker") (name fb:en.alva_b_adams "Alva B. Adams") (name fb:en.george_m_chilcott "George M. Chilcott") (name fb:en.ben_nighthorse_campbell "Ben Nighthorse Campbell"))) (type fb:government.politician) who are the colorado representatives? Nathaniel P. Hill 10.592 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.colorado)) (value (list (name fb:en.henry_moore_teller "Henry M. Teller") (name fb:en.floyd_k_haskell "Floyd K. Haskell") (name fb:en.eugene_donald_millikin "Eugene Millikin") (name fb:en.nathaniel_p_hill "Nathaniel P. Hill") (name fb:en.ken_salazar "Ken Salazar") (name fb:en.edwin_c_johnson "Edwin C. Johnson") (name fb:m.0cvj70 "Walter Walker") (name fb:en.alva_b_adams "Alva B. Adams") (name fb:en.george_m_chilcott "George M. Chilcott") (name fb:en.ben_nighthorse_campbell "Ben Nighthorse Campbell"))) (type fb:government.politician) who are the colorado representatives? Ken Salazar 10.592 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.colorado)) (value (list (name fb:en.henry_moore_teller "Henry M. Teller") (name fb:en.floyd_k_haskell "Floyd K. Haskell") (name fb:en.eugene_donald_millikin "Eugene Millikin") (name fb:en.nathaniel_p_hill "Nathaniel P. Hill") (name fb:en.ken_salazar "Ken Salazar") (name fb:en.edwin_c_johnson "Edwin C. Johnson") (name fb:m.0cvj70 "Walter Walker") (name fb:en.alva_b_adams "Alva B. Adams") (name fb:en.george_m_chilcott "George M. Chilcott") (name fb:en.ben_nighthorse_campbell "Ben Nighthorse Campbell"))) (type fb:government.politician) who are the colorado representatives? Edwin C. Johnson 10.592 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.colorado)) (value (list (name fb:en.henry_moore_teller "Henry M. Teller") (name fb:en.floyd_k_haskell "Floyd K. Haskell") (name fb:en.eugene_donald_millikin "Eugene Millikin") (name fb:en.nathaniel_p_hill "Nathaniel P. Hill") (name fb:en.ken_salazar "Ken Salazar") (name fb:en.edwin_c_johnson "Edwin C. Johnson") (name fb:m.0cvj70 "Walter Walker") (name fb:en.alva_b_adams "Alva B. Adams") (name fb:en.george_m_chilcott "George M. Chilcott") (name fb:en.ben_nighthorse_campbell "Ben Nighthorse Campbell"))) (type fb:government.politician) who are the colorado representatives? Walter Walker 10.592 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.colorado)) (value (list (name fb:en.henry_moore_teller "Henry M. Teller") (name fb:en.floyd_k_haskell "Floyd K. Haskell") (name fb:en.eugene_donald_millikin "Eugene Millikin") (name fb:en.nathaniel_p_hill "Nathaniel P. Hill") (name fb:en.ken_salazar "Ken Salazar") (name fb:en.edwin_c_johnson "Edwin C. Johnson") (name fb:m.0cvj70 "Walter Walker") (name fb:en.alva_b_adams "Alva B. Adams") (name fb:en.george_m_chilcott "George M. Chilcott") (name fb:en.ben_nighthorse_campbell "Ben Nighthorse Campbell"))) (type fb:government.politician) who are the colorado representatives? Alva B. Adams 10.592 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.colorado)) (value (list (name fb:en.henry_moore_teller "Henry M. Teller") (name fb:en.floyd_k_haskell "Floyd K. Haskell") (name fb:en.eugene_donald_millikin "Eugene Millikin") (name fb:en.nathaniel_p_hill "Nathaniel P. Hill") (name fb:en.ken_salazar "Ken Salazar") (name fb:en.edwin_c_johnson "Edwin C. Johnson") (name fb:m.0cvj70 "Walter Walker") (name fb:en.alva_b_adams "Alva B. Adams") (name fb:en.george_m_chilcott "George M. Chilcott") (name fb:en.ben_nighthorse_campbell "Ben Nighthorse Campbell"))) (type fb:government.politician) who are the colorado representatives? George M. Chilcott 10.592 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.colorado)) (value (list (name fb:en.henry_moore_teller "Henry M. Teller") (name fb:en.floyd_k_haskell "Floyd K. Haskell") (name fb:en.eugene_donald_millikin "Eugene Millikin") (name fb:en.nathaniel_p_hill "Nathaniel P. Hill") (name fb:en.ken_salazar "Ken Salazar") (name fb:en.edwin_c_johnson "Edwin C. Johnson") (name fb:m.0cvj70 "Walter Walker") (name fb:en.alva_b_adams "Alva B. Adams") (name fb:en.george_m_chilcott "George M. Chilcott") (name fb:en.ben_nighthorse_campbell "Ben Nighthorse Campbell"))) (type fb:government.politician) who are the colorado representatives? Ben Nighthorse Campbell 10.592 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.colorado)) (value (list (name fb:en.henry_moore_teller "Henry M. Teller") (name fb:en.floyd_k_haskell "Floyd K. Haskell") (name fb:en.eugene_donald_millikin "Eugene Millikin") (name fb:en.nathaniel_p_hill "Nathaniel P. Hill") (name fb:en.ken_salazar "Ken Salazar") (name fb:en.edwin_c_johnson "Edwin C. Johnson") (name fb:m.0cvj70 "Walter Walker") (name fb:en.alva_b_adams "Alva B. Adams") (name fb:en.george_m_chilcott "George M. Chilcott") (name fb:en.ben_nighthorse_campbell "Ben Nighthorse Campbell"))) (type fb:government.politician) who is willow smith mom name? Will Smith 7.648 formula (!fb:people.person.parents fb:en.willow_smith)) (value (list (name fb:en.will_smith "Will Smith") (name fb:en.jada_pinkett_smith "Jada Pinkett Smith"))) (type fb:people.person) who is willow smith mom name? Jada Pinkett Smith 7.648 formula (!fb:people.person.parents fb:en.willow_smith)) (value (list (name fb:en.will_smith "Will Smith") (name fb:en.jada_pinkett_smith "Jada Pinkett Smith"))) (type fb:people.person) what do you call the chinese writing system? 'Phags-pa script 12.536 formula (!fb:language.human_language.writing_system fb:en.chinese_language)) (value (list (name fb:en.phagspa_script "'Phags-pa script") (name fb:en.nu_shu "Nüshu script") (name fb:en.chinese_character "Chinese characters") (name fb:en.traditional_chinese_character "Traditional Chinese characters") (name fb:m.03wzk9c Chinese) (name fb:en.simplified_chinese_character "Simplified Chinese character"))) (type fb:language.language_writing_system) what do you call the chinese writing system? Nüshu script 12.536 formula (!fb:language.human_language.writing_system fb:en.chinese_language)) (value (list (name fb:en.phagspa_script "'Phags-pa script") (name fb:en.nu_shu "Nüshu script") (name fb:en.chinese_character "Chinese characters") (name fb:en.traditional_chinese_character "Traditional Chinese characters") (name fb:m.03wzk9c Chinese) (name fb:en.simplified_chinese_character "Simplified Chinese character"))) (type fb:language.language_writing_system) what do you call the chinese writing system? Chinese characters 12.536 formula (!fb:language.human_language.writing_system fb:en.chinese_language)) (value (list (name fb:en.phagspa_script "'Phags-pa script") (name fb:en.nu_shu "Nüshu script") (name fb:en.chinese_character "Chinese characters") (name fb:en.traditional_chinese_character "Traditional Chinese characters") (name fb:m.03wzk9c Chinese) (name fb:en.simplified_chinese_character "Simplified Chinese character"))) (type fb:language.language_writing_system) what do you call the chinese writing system? Traditional Chinese characters 12.536 formula (!fb:language.human_language.writing_system fb:en.chinese_language)) (value (list (name fb:en.phagspa_script "'Phags-pa script") (name fb:en.nu_shu "Nüshu script") (name fb:en.chinese_character "Chinese characters") (name fb:en.traditional_chinese_character "Traditional Chinese characters") (name fb:m.03wzk9c Chinese) (name fb:en.simplified_chinese_character "Simplified Chinese character"))) (type fb:language.language_writing_system) what do you call the chinese writing system? Simplified Chinese character 12.536 formula (!fb:language.human_language.writing_system fb:en.chinese_language)) (value (list (name fb:en.phagspa_script "'Phags-pa script") (name fb:en.nu_shu "Nüshu script") (name fb:en.chinese_character "Chinese characters") (name fb:en.traditional_chinese_character "Traditional Chinese characters") (name fb:m.03wzk9c Chinese) (name fb:en.simplified_chinese_character "Simplified Chinese character"))) (type fb:language.language_writing_system) who played on the jeffersons? Paul Benedict 4.568 formula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.the_jeffersons)) (value (list (name fb:en.paul_benedict "Paul Benedict") (name fb:en.franklin_cover "Franklin Cover") (name fb:en.marla_gibbs "Marla Gibbs") (name fb:en.mike_evans_1949 "Mike Evans") (name fb:en.damon_evans "Damon Evans") (name fb:en.jay_hammer "Jay Hammer") (name fb:en.zara_cully "Zara Cully") (name fb:en.berlinda_tolbert "Berlinda Tolbert") (name fb:en.isabel_sanford "Isabel Sanford") (name fb:en.sherman_hemsley "Sherman Hemsley"))) (type fb:tv.tv_actor) who played on the jeffersons? Franklin Cover 4.568 formula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.the_jeffersons)) (value (list (name fb:en.paul_benedict "Paul Benedict") (name fb:en.franklin_cover "Franklin Cover") (name fb:en.marla_gibbs "Marla Gibbs") (name fb:en.mike_evans_1949 "Mike Evans") (name fb:en.damon_evans "Damon Evans") (name fb:en.jay_hammer "Jay Hammer") (name fb:en.zara_cully "Zara Cully") (name fb:en.berlinda_tolbert "Berlinda Tolbert") (name fb:en.isabel_sanford "Isabel Sanford") (name fb:en.sherman_hemsley "Sherman Hemsley"))) (type fb:tv.tv_actor) who played on the jeffersons? Marla Gibbs 4.568 formula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.the_jeffersons)) (value (list (name fb:en.paul_benedict "Paul Benedict") (name fb:en.franklin_cover "Franklin Cover") (name fb:en.marla_gibbs "Marla Gibbs") (name fb:en.mike_evans_1949 "Mike Evans") (name fb:en.damon_evans "Damon Evans") (name fb:en.jay_hammer "Jay Hammer") (name fb:en.zara_cully "Zara Cully") (name fb:en.berlinda_tolbert "Berlinda Tolbert") (name fb:en.isabel_sanford "Isabel Sanford") (name fb:en.sherman_hemsley "Sherman Hemsley"))) (type fb:tv.tv_actor) who played on the jeffersons? Mike Evans 4.568 formula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.the_jeffersons)) (value (list (name fb:en.paul_benedict "Paul Benedict") (name fb:en.franklin_cover "Franklin Cover") (name fb:en.marla_gibbs "Marla Gibbs") (name fb:en.mike_evans_1949 "Mike Evans") (name fb:en.damon_evans "Damon Evans") (name fb:en.jay_hammer "Jay Hammer") (name fb:en.zara_cully "Zara Cully") (name fb:en.berlinda_tolbert "Berlinda Tolbert") (name fb:en.isabel_sanford "Isabel Sanford") (name fb:en.sherman_hemsley "Sherman Hemsley"))) (type fb:tv.tv_actor) who played on the jeffersons? Damon Evans 4.568 formula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.the_jeffersons)) (value (list (name fb:en.paul_benedict "Paul Benedict") (name fb:en.franklin_cover "Franklin Cover") (name fb:en.marla_gibbs "Marla Gibbs") (name fb:en.mike_evans_1949 "Mike Evans") (name fb:en.damon_evans "Damon Evans") (name fb:en.jay_hammer "Jay Hammer") (name fb:en.zara_cully "Zara Cully") (name fb:en.berlinda_tolbert "Berlinda Tolbert") (name fb:en.isabel_sanford "Isabel Sanford") (name fb:en.sherman_hemsley "Sherman Hemsley"))) (type fb:tv.tv_actor) who played on the jeffersons? Jay Hammer 4.568 formula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.the_jeffersons)) (value (list (name fb:en.paul_benedict "Paul Benedict") (name fb:en.franklin_cover "Franklin Cover") (name fb:en.marla_gibbs "Marla Gibbs") (name fb:en.mike_evans_1949 "Mike Evans") (name fb:en.damon_evans "Damon Evans") (name fb:en.jay_hammer "Jay Hammer") (name fb:en.zara_cully "Zara Cully") (name fb:en.berlinda_tolbert "Berlinda Tolbert") (name fb:en.isabel_sanford "Isabel Sanford") (name fb:en.sherman_hemsley "Sherman Hemsley"))) (type fb:tv.tv_actor) who played on the jeffersons? Zara Cully 4.568 formula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.the_jeffersons)) (value (list (name fb:en.paul_benedict "Paul Benedict") (name fb:en.franklin_cover "Franklin Cover") (name fb:en.marla_gibbs "Marla Gibbs") (name fb:en.mike_evans_1949 "Mike Evans") (name fb:en.damon_evans "Damon Evans") (name fb:en.jay_hammer "Jay Hammer") (name fb:en.zara_cully "Zara Cully") (name fb:en.berlinda_tolbert "Berlinda Tolbert") (name fb:en.isabel_sanford "Isabel Sanford") (name fb:en.sherman_hemsley "Sherman Hemsley"))) (type fb:tv.tv_actor) who played on the jeffersons? Berlinda Tolbert 4.568 formula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.the_jeffersons)) (value (list (name fb:en.paul_benedict "Paul Benedict") (name fb:en.franklin_cover "Franklin Cover") (name fb:en.marla_gibbs "Marla Gibbs") (name fb:en.mike_evans_1949 "Mike Evans") (name fb:en.damon_evans "Damon Evans") (name fb:en.jay_hammer "Jay Hammer") (name fb:en.zara_cully "Zara Cully") (name fb:en.berlinda_tolbert "Berlinda Tolbert") (name fb:en.isabel_sanford "Isabel Sanford") (name fb:en.sherman_hemsley "Sherman Hemsley"))) (type fb:tv.tv_actor) who played on the jeffersons? Isabel Sanford 4.568 formula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.the_jeffersons)) (value (list (name fb:en.paul_benedict "Paul Benedict") (name fb:en.franklin_cover "Franklin Cover") (name fb:en.marla_gibbs "Marla Gibbs") (name fb:en.mike_evans_1949 "Mike Evans") (name fb:en.damon_evans "Damon Evans") (name fb:en.jay_hammer "Jay Hammer") (name fb:en.zara_cully "Zara Cully") (name fb:en.berlinda_tolbert "Berlinda Tolbert") (name fb:en.isabel_sanford "Isabel Sanford") (name fb:en.sherman_hemsley "Sherman Hemsley"))) (type fb:tv.tv_actor) who played on the jeffersons? Sherman Hemsley 4.568 formula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.the_jeffersons)) (value (list (name fb:en.paul_benedict "Paul Benedict") (name fb:en.franklin_cover "Franklin Cover") (name fb:en.marla_gibbs "Marla Gibbs") (name fb:en.mike_evans_1949 "Mike Evans") (name fb:en.damon_evans "Damon Evans") (name fb:en.jay_hammer "Jay Hammer") (name fb:en.zara_cully "Zara Cully") (name fb:en.berlinda_tolbert "Berlinda Tolbert") (name fb:en.isabel_sanford "Isabel Sanford") (name fb:en.sherman_hemsley "Sherman Hemsley"))) (type fb:tv.tv_actor) what is the name of the san francisco newspaper? San Francisco Daily 13.783 formula (!fb:periodicals.newspaper_circulation_area.newspapers fb:en.san_francisco)) (value (list (name fb:en.san_francisco_daily "San Francisco Daily") (name fb:en.sing_tao_daily "Sing Tao Daily") (name fb:en.san_francisco_bay_view "San Francisco Bay View") (name fb:en.san_francisco_bay_guardian "San Francisco Bay Guardian") (name fb:en.san_francisco_examiner "The San Francisco Examiner") (name fb:en.san_francisco_chronicle "San Francisco Chronicle") (name fb:en.golden_era "The Golden Era") (name fb:en.street_sheet "Street Sheet") (name fb:en.san_francisco_foghorn "San Francisco Foghorn") (name fb:m.04j38b3 Synapse))) (type fb:book.newspaper) what is the name of the san francisco newspaper? Sing Tao Daily 13.783 formula (!fb:periodicals.newspaper_circulation_area.newspapers fb:en.san_francisco)) (value (list (name fb:en.san_francisco_daily "San Francisco Daily") (name fb:en.sing_tao_daily "Sing Tao Daily") (name fb:en.san_francisco_bay_view "San Francisco Bay View") (name fb:en.san_francisco_bay_guardian "San Francisco Bay Guardian") (name fb:en.san_francisco_examiner "The San Francisco Examiner") (name fb:en.san_francisco_chronicle "San Francisco Chronicle") (name fb:en.golden_era "The Golden Era") (name fb:en.street_sheet "Street Sheet") (name fb:en.san_francisco_foghorn "San Francisco Foghorn") (name fb:m.04j38b3 Synapse))) (type fb:book.newspaper) what is the name of the san francisco newspaper? San Francisco Bay View 13.783 formula (!fb:periodicals.newspaper_circulation_area.newspapers fb:en.san_francisco)) (value (list (name fb:en.san_francisco_daily "San Francisco Daily") (name fb:en.sing_tao_daily "Sing Tao Daily") (name fb:en.san_francisco_bay_view "San Francisco Bay View") (name fb:en.san_francisco_bay_guardian "San Francisco Bay Guardian") (name fb:en.san_francisco_examiner "The San Francisco Examiner") (name fb:en.san_francisco_chronicle "San Francisco Chronicle") (name fb:en.golden_era "The Golden Era") (name fb:en.street_sheet "Street Sheet") (name fb:en.san_francisco_foghorn "San Francisco Foghorn") (name fb:m.04j38b3 Synapse))) (type fb:book.newspaper) what is the name of the san francisco newspaper? San Francisco Bay Guardian 13.783 formula (!fb:periodicals.newspaper_circulation_area.newspapers fb:en.san_francisco)) (value (list (name fb:en.san_francisco_daily "San Francisco Daily") (name fb:en.sing_tao_daily "Sing Tao Daily") (name fb:en.san_francisco_bay_view "San Francisco Bay View") (name fb:en.san_francisco_bay_guardian "San Francisco Bay Guardian") (name fb:en.san_francisco_examiner "The San Francisco Examiner") (name fb:en.san_francisco_chronicle "San Francisco Chronicle") (name fb:en.golden_era "The Golden Era") (name fb:en.street_sheet "Street Sheet") (name fb:en.san_francisco_foghorn "San Francisco Foghorn") (name fb:m.04j38b3 Synapse))) (type fb:book.newspaper) what is the name of the san francisco newspaper? The San Francisco Examiner 13.783 formula (!fb:periodicals.newspaper_circulation_area.newspapers fb:en.san_francisco)) (value (list (name fb:en.san_francisco_daily "San Francisco Daily") (name fb:en.sing_tao_daily "Sing Tao Daily") (name fb:en.san_francisco_bay_view "San Francisco Bay View") (name fb:en.san_francisco_bay_guardian "San Francisco Bay Guardian") (name fb:en.san_francisco_examiner "The San Francisco Examiner") (name fb:en.san_francisco_chronicle "San Francisco Chronicle") (name fb:en.golden_era "The Golden Era") (name fb:en.street_sheet "Street Sheet") (name fb:en.san_francisco_foghorn "San Francisco Foghorn") (name fb:m.04j38b3 Synapse))) (type fb:book.newspaper) what is the name of the san francisco newspaper? San Francisco Chronicle 13.783 formula (!fb:periodicals.newspaper_circulation_area.newspapers fb:en.san_francisco)) (value (list (name fb:en.san_francisco_daily "San Francisco Daily") (name fb:en.sing_tao_daily "Sing Tao Daily") (name fb:en.san_francisco_bay_view "San Francisco Bay View") (name fb:en.san_francisco_bay_guardian "San Francisco Bay Guardian") (name fb:en.san_francisco_examiner "The San Francisco Examiner") (name fb:en.san_francisco_chronicle "San Francisco Chronicle") (name fb:en.golden_era "The Golden Era") (name fb:en.street_sheet "Street Sheet") (name fb:en.san_francisco_foghorn "San Francisco Foghorn") (name fb:m.04j38b3 Synapse))) (type fb:book.newspaper) what is the name of the san francisco newspaper? The Golden Era 13.783 formula (!fb:periodicals.newspaper_circulation_area.newspapers fb:en.san_francisco)) (value (list (name fb:en.san_francisco_daily "San Francisco Daily") (name fb:en.sing_tao_daily "Sing Tao Daily") (name fb:en.san_francisco_bay_view "San Francisco Bay View") (name fb:en.san_francisco_bay_guardian "San Francisco Bay Guardian") (name fb:en.san_francisco_examiner "The San Francisco Examiner") (name fb:en.san_francisco_chronicle "San Francisco Chronicle") (name fb:en.golden_era "The Golden Era") (name fb:en.street_sheet "Street Sheet") (name fb:en.san_francisco_foghorn "San Francisco Foghorn") (name fb:m.04j38b3 Synapse))) (type fb:book.newspaper) what is the name of the san francisco newspaper? Street Sheet 13.783 formula (!fb:periodicals.newspaper_circulation_area.newspapers fb:en.san_francisco)) (value (list (name fb:en.san_francisco_daily "San Francisco Daily") (name fb:en.sing_tao_daily "Sing Tao Daily") (name fb:en.san_francisco_bay_view "San Francisco Bay View") (name fb:en.san_francisco_bay_guardian "San Francisco Bay Guardian") (name fb:en.san_francisco_examiner "The San Francisco Examiner") (name fb:en.san_francisco_chronicle "San Francisco Chronicle") (name fb:en.golden_era "The Golden Era") (name fb:en.street_sheet "Street Sheet") (name fb:en.san_francisco_foghorn "San Francisco Foghorn") (name fb:m.04j38b3 Synapse))) (type fb:book.newspaper) what is the name of the san francisco newspaper? San Francisco Foghorn 13.783 formula (!fb:periodicals.newspaper_circulation_area.newspapers fb:en.san_francisco)) (value (list (name fb:en.san_francisco_daily "San Francisco Daily") (name fb:en.sing_tao_daily "Sing Tao Daily") (name fb:en.san_francisco_bay_view "San Francisco Bay View") (name fb:en.san_francisco_bay_guardian "San Francisco Bay Guardian") (name fb:en.san_francisco_examiner "The San Francisco Examiner") (name fb:en.san_francisco_chronicle "San Francisco Chronicle") (name fb:en.golden_era "The Golden Era") (name fb:en.street_sheet "Street Sheet") (name fb:en.san_francisco_foghorn "San Francisco Foghorn") (name fb:m.04j38b3 Synapse))) (type fb:book.newspaper) what made the soviet union fall? The Color of Pomegranates 12.088 formula ((lambda x (fb:film.film.runtime (fb:film.film_cut.film_release_region (var x)))) fb:en.soviet_union)) (value (list (name fb:en.the_color_of_pomegranates "The Color of Pomegranates") (name fb:en.the_adventures_of_sherlock_holmes_and_dr_watson "The Adventures of Sherlock Holmes and Dr. Watson") (name fb:en.teheran_43 "Teheran 43") (name fb:m.0chkmmp "I Love") (name fb:m.0chkmt5 Lermontov) (name fb:en.ilya_muromets_1956 "The Sword and the Dragon") (name fb:m.03c1hxv "Love at First Sight") (name fb:m.082yvg "War and Peace") (name fb:m.0gqn2l "Adventures of Mowgli") (name fb:m.0chkmrx "Journey to the April"))) (type fb:film.film) what made the soviet union fall? The Adventures of Sherlock Holmes and Dr. Watson 12.088 formula ((lambda x (fb:film.film.runtime (fb:film.film_cut.film_release_region (var x)))) fb:en.soviet_union)) (value (list (name fb:en.the_color_of_pomegranates "The Color of Pomegranates") (name fb:en.the_adventures_of_sherlock_holmes_and_dr_watson "The Adventures of Sherlock Holmes and Dr. Watson") (name fb:en.teheran_43 "Teheran 43") (name fb:m.0chkmmp "I Love") (name fb:m.0chkmt5 Lermontov) (name fb:en.ilya_muromets_1956 "The Sword and the Dragon") (name fb:m.03c1hxv "Love at First Sight") (name fb:m.082yvg "War and Peace") (name fb:m.0gqn2l "Adventures of Mowgli") (name fb:m.0chkmrx "Journey to the April"))) (type fb:film.film) what made the soviet union fall? Teheran 43 12.088 formula ((lambda x (fb:film.film.runtime (fb:film.film_cut.film_release_region (var x)))) fb:en.soviet_union)) (value (list (name fb:en.the_color_of_pomegranates "The Color of Pomegranates") (name fb:en.the_adventures_of_sherlock_holmes_and_dr_watson "The Adventures of Sherlock Holmes and Dr. Watson") (name fb:en.teheran_43 "Teheran 43") (name fb:m.0chkmmp "I Love") (name fb:m.0chkmt5 Lermontov) (name fb:en.ilya_muromets_1956 "The Sword and the Dragon") (name fb:m.03c1hxv "Love at First Sight") (name fb:m.082yvg "War and Peace") (name fb:m.0gqn2l "Adventures of Mowgli") (name fb:m.0chkmrx "Journey to the April"))) (type fb:film.film) what made the soviet union fall? I Love 12.088 formula ((lambda x (fb:film.film.runtime (fb:film.film_cut.film_release_region (var x)))) fb:en.soviet_union)) (value (list (name fb:en.the_color_of_pomegranates "The Color of Pomegranates") (name fb:en.the_adventures_of_sherlock_holmes_and_dr_watson "The Adventures of Sherlock Holmes and Dr. Watson") (name fb:en.teheran_43 "Teheran 43") (name fb:m.0chkmmp "I Love") (name fb:m.0chkmt5 Lermontov) (name fb:en.ilya_muromets_1956 "The Sword and the Dragon") (name fb:m.03c1hxv "Love at First Sight") (name fb:m.082yvg "War and Peace") (name fb:m.0gqn2l "Adventures of Mowgli") (name fb:m.0chkmrx "Journey to the April"))) (type fb:film.film) what made the soviet union fall? The Sword and the Dragon 12.088 formula ((lambda x (fb:film.film.runtime (fb:film.film_cut.film_release_region (var x)))) fb:en.soviet_union)) (value (list (name fb:en.the_color_of_pomegranates "The Color of Pomegranates") (name fb:en.the_adventures_of_sherlock_holmes_and_dr_watson "The Adventures of Sherlock Holmes and Dr. Watson") (name fb:en.teheran_43 "Teheran 43") (name fb:m.0chkmmp "I Love") (name fb:m.0chkmt5 Lermontov) (name fb:en.ilya_muromets_1956 "The Sword and the Dragon") (name fb:m.03c1hxv "Love at First Sight") (name fb:m.082yvg "War and Peace") (name fb:m.0gqn2l "Adventures of Mowgli") (name fb:m.0chkmrx "Journey to the April"))) (type fb:film.film) what made the soviet union fall? Love at First Sight 12.088 formula ((lambda x (fb:film.film.runtime (fb:film.film_cut.film_release_region (var x)))) fb:en.soviet_union)) (value (list (name fb:en.the_color_of_pomegranates "The Color of Pomegranates") (name fb:en.the_adventures_of_sherlock_holmes_and_dr_watson "The Adventures of Sherlock Holmes and Dr. Watson") (name fb:en.teheran_43 "Teheran 43") (name fb:m.0chkmmp "I Love") (name fb:m.0chkmt5 Lermontov) (name fb:en.ilya_muromets_1956 "The Sword and the Dragon") (name fb:m.03c1hxv "Love at First Sight") (name fb:m.082yvg "War and Peace") (name fb:m.0gqn2l "Adventures of Mowgli") (name fb:m.0chkmrx "Journey to the April"))) (type fb:film.film) what made the soviet union fall? War and Peace 12.088 formula ((lambda x (fb:film.film.runtime (fb:film.film_cut.film_release_region (var x)))) fb:en.soviet_union)) (value (list (name fb:en.the_color_of_pomegranates "The Color of Pomegranates") (name fb:en.the_adventures_of_sherlock_holmes_and_dr_watson "The Adventures of Sherlock Holmes and Dr. Watson") (name fb:en.teheran_43 "Teheran 43") (name fb:m.0chkmmp "I Love") (name fb:m.0chkmt5 Lermontov) (name fb:en.ilya_muromets_1956 "The Sword and the Dragon") (name fb:m.03c1hxv "Love at First Sight") (name fb:m.082yvg "War and Peace") (name fb:m.0gqn2l "Adventures of Mowgli") (name fb:m.0chkmrx "Journey to the April"))) (type fb:film.film) what made the soviet union fall? Adventures of Mowgli 12.088 formula ((lambda x (fb:film.film.runtime (fb:film.film_cut.film_release_region (var x)))) fb:en.soviet_union)) (value (list (name fb:en.the_color_of_pomegranates "The Color of Pomegranates") (name fb:en.the_adventures_of_sherlock_holmes_and_dr_watson "The Adventures of Sherlock Holmes and Dr. Watson") (name fb:en.teheran_43 "Teheran 43") (name fb:m.0chkmmp "I Love") (name fb:m.0chkmt5 Lermontov) (name fb:en.ilya_muromets_1956 "The Sword and the Dragon") (name fb:m.03c1hxv "Love at First Sight") (name fb:m.082yvg "War and Peace") (name fb:m.0gqn2l "Adventures of Mowgli") (name fb:m.0chkmrx "Journey to the April"))) (type fb:film.film) what made the soviet union fall? Journey to the April 12.088 formula ((lambda x (fb:film.film.runtime (fb:film.film_cut.film_release_region (var x)))) fb:en.soviet_union)) (value (list (name fb:en.the_color_of_pomegranates "The Color of Pomegranates") (name fb:en.the_adventures_of_sherlock_holmes_and_dr_watson "The Adventures of Sherlock Holmes and Dr. Watson") (name fb:en.teheran_43 "Teheran 43") (name fb:m.0chkmmp "I Love") (name fb:m.0chkmt5 Lermontov) (name fb:en.ilya_muromets_1956 "The Sword and the Dragon") (name fb:m.03c1hxv "Love at First Sight") (name fb:m.082yvg "War and Peace") (name fb:m.0gqn2l "Adventures of Mowgli") (name fb:m.0chkmrx "Journey to the April"))) (type fb:film.film) what did randy savage died of? Myocardial infarction 18.686 formula (fb:people.cause_of_death.people fb:en.macho_man_randy_savage)) (value (list (name fb:en.heart_failure "Myocardial infarction") (name fb:en.car_accident "Traffic collision"))) (type fb:people.cause_of_death) what did randy savage died of? Traffic collision 18.686 formula (fb:people.cause_of_death.people fb:en.macho_man_randy_savage)) (value (list (name fb:en.heart_failure "Myocardial infarction") (name fb:en.car_accident "Traffic collision"))) (type fb:people.cause_of_death) what was the title of the book charles darwin wrote? Charles Darwin: Voyaging 13.916 formula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.charles_darwin))) (value (list (name fb:en.charles_darwin_voyaging "Charles Darwin: Voyaging") (name fb:en.charles_darwin_the_power_of_place "Charles Darwin: The Power of Place") (name fb:en.charles_darwin_in_cyberspace "Charles Darwin in Cyberspace") (name fb:m.04t22yt "Charles Darwin") (name fb:en.darwin_and_the_darwinian_revolution "Darwin and the Darwinian revolution") (name fb:en.darwin_and_his_great_discovery "Darwin and His Great Discovery") (name fb:en.the_tree_of_life_charles_darwin "The Tree of Life: Charles Darwin") (name fb:m.066lv1x "The Politics of Evolution: Morphology, Medicine, and Reform in Radical London") (name fb:en.darwin_on_trial "Darwin on Trial") (name fb:en.the_darwin_conspiracy "The Darwin conspiracy"))) (type (union fb:book.book)) what was the title of the book charles darwin wrote? Charles Darwin: The Power of Place 13.916 formula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.charles_darwin))) (value (list (name fb:en.charles_darwin_voyaging "Charles Darwin: Voyaging") (name fb:en.charles_darwin_the_power_of_place "Charles Darwin: The Power of Place") (name fb:en.charles_darwin_in_cyberspace "Charles Darwin in Cyberspace") (name fb:m.04t22yt "Charles Darwin") (name fb:en.darwin_and_the_darwinian_revolution "Darwin and the Darwinian revolution") (name fb:en.darwin_and_his_great_discovery "Darwin and His Great Discovery") (name fb:en.the_tree_of_life_charles_darwin "The Tree of Life: Charles Darwin") (name fb:m.066lv1x "The Politics of Evolution: Morphology, Medicine, and Reform in Radical London") (name fb:en.darwin_on_trial "Darwin on Trial") (name fb:en.the_darwin_conspiracy "The Darwin conspiracy"))) (type (union fb:book.book)) what was the title of the book charles darwin wrote? Charles Darwin in Cyberspace 13.916 formula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.charles_darwin))) (value (list (name fb:en.charles_darwin_voyaging "Charles Darwin: Voyaging") (name fb:en.charles_darwin_the_power_of_place "Charles Darwin: The Power of Place") (name fb:en.charles_darwin_in_cyberspace "Charles Darwin in Cyberspace") (name fb:m.04t22yt "Charles Darwin") (name fb:en.darwin_and_the_darwinian_revolution "Darwin and the Darwinian revolution") (name fb:en.darwin_and_his_great_discovery "Darwin and His Great Discovery") (name fb:en.the_tree_of_life_charles_darwin "The Tree of Life: Charles Darwin") (name fb:m.066lv1x "The Politics of Evolution: Morphology, Medicine, and Reform in Radical London") (name fb:en.darwin_on_trial "Darwin on Trial") (name fb:en.the_darwin_conspiracy "The Darwin conspiracy"))) (type (union fb:book.book)) what was the title of the book charles darwin wrote? Charles Darwin 13.916 formula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.charles_darwin))) (value (list (name fb:en.charles_darwin_voyaging "Charles Darwin: Voyaging") (name fb:en.charles_darwin_the_power_of_place "Charles Darwin: The Power of Place") (name fb:en.charles_darwin_in_cyberspace "Charles Darwin in Cyberspace") (name fb:m.04t22yt "Charles Darwin") (name fb:en.darwin_and_the_darwinian_revolution "Darwin and the Darwinian revolution") (name fb:en.darwin_and_his_great_discovery "Darwin and His Great Discovery") (name fb:en.the_tree_of_life_charles_darwin "The Tree of Life: Charles Darwin") (name fb:m.066lv1x "The Politics of Evolution: Morphology, Medicine, and Reform in Radical London") (name fb:en.darwin_on_trial "Darwin on Trial") (name fb:en.the_darwin_conspiracy "The Darwin conspiracy"))) (type (union fb:book.book)) what was the title of the book charles darwin wrote? Darwin and the Darwinian revolution 13.916 formula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.charles_darwin))) (value (list (name fb:en.charles_darwin_voyaging "Charles Darwin: Voyaging") (name fb:en.charles_darwin_the_power_of_place "Charles Darwin: The Power of Place") (name fb:en.charles_darwin_in_cyberspace "Charles Darwin in Cyberspace") (name fb:m.04t22yt "Charles Darwin") (name fb:en.darwin_and_the_darwinian_revolution "Darwin and the Darwinian revolution") (name fb:en.darwin_and_his_great_discovery "Darwin and His Great Discovery") (name fb:en.the_tree_of_life_charles_darwin "The Tree of Life: Charles Darwin") (name fb:m.066lv1x "The Politics of Evolution: Morphology, Medicine, and Reform in Radical London") (name fb:en.darwin_on_trial "Darwin on Trial") (name fb:en.the_darwin_conspiracy "The Darwin conspiracy"))) (type (union fb:book.book)) what was the title of the book charles darwin wrote? Darwin and His Great Discovery 13.916 formula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.charles_darwin))) (value (list (name fb:en.charles_darwin_voyaging "Charles Darwin: Voyaging") (name fb:en.charles_darwin_the_power_of_place "Charles Darwin: The Power of Place") (name fb:en.charles_darwin_in_cyberspace "Charles Darwin in Cyberspace") (name fb:m.04t22yt "Charles Darwin") (name fb:en.darwin_and_the_darwinian_revolution "Darwin and the Darwinian revolution") (name fb:en.darwin_and_his_great_discovery "Darwin and His Great Discovery") (name fb:en.the_tree_of_life_charles_darwin "The Tree of Life: Charles Darwin") (name fb:m.066lv1x "The Politics of Evolution: Morphology, Medicine, and Reform in Radical London") (name fb:en.darwin_on_trial "Darwin on Trial") (name fb:en.the_darwin_conspiracy "The Darwin conspiracy"))) (type (union fb:book.book)) what was the title of the book charles darwin wrote? The Tree of Life: Charles Darwin 13.916 formula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.charles_darwin))) (value (list (name fb:en.charles_darwin_voyaging "Charles Darwin: Voyaging") (name fb:en.charles_darwin_the_power_of_place "Charles Darwin: The Power of Place") (name fb:en.charles_darwin_in_cyberspace "Charles Darwin in Cyberspace") (name fb:m.04t22yt "Charles Darwin") (name fb:en.darwin_and_the_darwinian_revolution "Darwin and the Darwinian revolution") (name fb:en.darwin_and_his_great_discovery "Darwin and His Great Discovery") (name fb:en.the_tree_of_life_charles_darwin "The Tree of Life: Charles Darwin") (name fb:m.066lv1x "The Politics of Evolution: Morphology, Medicine, and Reform in Radical London") (name fb:en.darwin_on_trial "Darwin on Trial") (name fb:en.the_darwin_conspiracy "The Darwin conspiracy"))) (type (union fb:book.book)) what was the title of the book charles darwin wrote? The Politics of Evolution: Morphology, Medicine, and Reform in Radical London 13.916 formula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.charles_darwin))) (value (list (name fb:en.charles_darwin_voyaging "Charles Darwin: Voyaging") (name fb:en.charles_darwin_the_power_of_place "Charles Darwin: The Power of Place") (name fb:en.charles_darwin_in_cyberspace "Charles Darwin in Cyberspace") (name fb:m.04t22yt "Charles Darwin") (name fb:en.darwin_and_the_darwinian_revolution "Darwin and the Darwinian revolution") (name fb:en.darwin_and_his_great_discovery "Darwin and His Great Discovery") (name fb:en.the_tree_of_life_charles_darwin "The Tree of Life: Charles Darwin") (name fb:m.066lv1x "The Politics of Evolution: Morphology, Medicine, and Reform in Radical London") (name fb:en.darwin_on_trial "Darwin on Trial") (name fb:en.the_darwin_conspiracy "The Darwin conspiracy"))) (type (union fb:book.book)) what was the title of the book charles darwin wrote? Darwin on Trial 13.916 formula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.charles_darwin))) (value (list (name fb:en.charles_darwin_voyaging "Charles Darwin: Voyaging") (name fb:en.charles_darwin_the_power_of_place "Charles Darwin: The Power of Place") (name fb:en.charles_darwin_in_cyberspace "Charles Darwin in Cyberspace") (name fb:m.04t22yt "Charles Darwin") (name fb:en.darwin_and_the_darwinian_revolution "Darwin and the Darwinian revolution") (name fb:en.darwin_and_his_great_discovery "Darwin and His Great Discovery") (name fb:en.the_tree_of_life_charles_darwin "The Tree of Life: Charles Darwin") (name fb:m.066lv1x "The Politics of Evolution: Morphology, Medicine, and Reform in Radical London") (name fb:en.darwin_on_trial "Darwin on Trial") (name fb:en.the_darwin_conspiracy "The Darwin conspiracy"))) (type (union fb:book.book)) what was the title of the book charles darwin wrote? The Darwin conspiracy 13.916 formula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.charles_darwin))) (value (list (name fb:en.charles_darwin_voyaging "Charles Darwin: Voyaging") (name fb:en.charles_darwin_the_power_of_place "Charles Darwin: The Power of Place") (name fb:en.charles_darwin_in_cyberspace "Charles Darwin in Cyberspace") (name fb:m.04t22yt "Charles Darwin") (name fb:en.darwin_and_the_darwinian_revolution "Darwin and the Darwinian revolution") (name fb:en.darwin_and_his_great_discovery "Darwin and His Great Discovery") (name fb:en.the_tree_of_life_charles_darwin "The Tree of Life: Charles Darwin") (name fb:m.066lv1x "The Politics of Evolution: Morphology, Medicine, and Reform in Radical London") (name fb:en.darwin_on_trial "Darwin on Trial") (name fb:en.the_darwin_conspiracy "The Darwin conspiracy"))) (type (union fb:book.book)) where did richard nixon die? Cerebral edema 9.89 formula (fb:people.cause_of_death.people fb:en.richard_nixon)) (value (list (name fb:en.stroke Stroke) (name fb:en.cerebral_edema "Cerebral edema"))) (type fb:people.cause_of_death) what songs does smokey robinson sing? My Guy 15.154 formula (and (fb:type.object.type fb:music.composition) (!fb:music.composer.compositions fb:en.smokey_robinson))) (value (list (name fb:en.my_guy "My Guy") (name fb:en.my_girl "My Girl") (name fb:en.the_tracks_of_my_tears "The Tracks of My Tears") (name fb:m.0ql5dpr "Come Spy With Me"))) (type (union fb:music.composition)) what songs does smokey robinson sing? My Girl 15.154 formula (and (fb:type.object.type fb:music.composition) (!fb:music.composer.compositions fb:en.smokey_robinson))) (value (list (name fb:en.my_guy "My Guy") (name fb:en.my_girl "My Girl") (name fb:en.the_tracks_of_my_tears "The Tracks of My Tears") (name fb:m.0ql5dpr "Come Spy With Me"))) (type (union fb:music.composition)) what songs does smokey robinson sing? The Tracks of My Tears 15.154 formula (and (fb:type.object.type fb:music.composition) (!fb:music.composer.compositions fb:en.smokey_robinson))) (value (list (name fb:en.my_guy "My Guy") (name fb:en.my_girl "My Girl") (name fb:en.the_tracks_of_my_tears "The Tracks of My Tears") (name fb:m.0ql5dpr "Come Spy With Me"))) (type (union fb:music.composition)) what songs does smokey robinson sing? Come Spy With Me 15.154 formula (and (fb:type.object.type fb:music.composition) (!fb:music.composer.compositions fb:en.smokey_robinson))) (value (list (name fb:en.my_guy "My Guy") (name fb:en.my_girl "My Girl") (name fb:en.the_tracks_of_my_tears "The Tracks of My Tears") (name fb:m.0ql5dpr "Come Spy With Me"))) (type (union fb:music.composition)) what is serbian language called? Serbian language 9.842 formula (!fb:language.language_writing_system.languages fb:en.serbian_cyrillic_alphabet)) (value (list (name fb:en.serbian_language "Serbian language"))) (type fb:language.human_language) what language is spoken in haiti today? French Language 16.482 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.haiti))) (value (list (name fb:en.french "French Language") (name fb:en.haitian_creole_language "Haitian Creole French Language"))) (type (union fb:language.human_language)) what language is spoken in haiti today? Haitian Creole French Language 16.482 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.haiti))) (value (list (name fb:en.french "French Language") (name fb:en.haitian_creole_language "Haitian Creole French Language"))) (type (union fb:language.human_language)) what are the names of the city states in ancient greece? Makry Gialos 18.144 formula (and (fb:type.object.type fb:location.citytown) (!fb:location.location.contains fb:en.greece))) (value (list (name fb:en.patras Patras) (name fb:en.athens Athens) (name fb:en.ierapetra Ierapetra) (name fb:en.oichalia_greece Oichalia) (name fb:en.makrygialos "Makry Gialos") (name fb:en.mytilene Mytilene) (name fb:en.gargalianoi Gargalianoi) (name fb:en.livadeia Livadeia) (name fb:en.salonika_greece Thessaloniki) (name fb:en.ismara Ismara))) (type fb:location.citytown) who played barbara gordon batgirl? Melissa Gilbert 5.763 formula ((lambda x (fb:tv.tv_actor.starring_roles (fb:tv.regular_tv_appearance.character (var x)))) fb:en.barbara_gordon)) (value (list (name fb:en.melissa_gilbert "Melissa Gilbert") (name fb:en.yvonne_craig "Yvonne Craig"))) (type fb:tv.tv_actor) who played barbara gordon batgirl? Yvonne Craig 5.763 formula ((lambda x (fb:tv.tv_actor.starring_roles (fb:tv.regular_tv_appearance.character (var x)))) fb:en.barbara_gordon)) (value (list (name fb:en.melissa_gilbert "Melissa Gilbert") (name fb:en.yvonne_craig "Yvonne Craig"))) (type fb:tv.tv_actor) what basketball teams has shaq played for? Tony Gwynn 5.168 formula ((lambda x (fb:sports.pro_athlete.sports_played_professionally (fb:sports.pro_sports_played.sport (var x)))) fb:m.018w8)) (value (list (name fb:en.tony_gwynn "Tony Gwynn") (name fb:en.dan_bonner "Dan Bonner") (name fb:en.stephen_black "Stephen Black") (name fb:en.peter_scantlebury "Peter Scantlebury") (name fb:en.lindsay_bowen "Lindsay Bowen") (name fb:en.kelvin_dela_pena "Kelvin dela Peña") (name fb:en.joe_ruklick "Joe Ruklick") (name fb:en.maurice_girardot "Maurice Girardot") (name fb:en.fred_hill_1959 "Fred Hill") (name fb:en.emir_preld_i "Emir Preldžić"))) (type fb:sports.pro_athlete) what basketball teams has shaq played for? Dan Bonner 5.168 formula ((lambda x (fb:sports.pro_athlete.sports_played_professionally (fb:sports.pro_sports_played.sport (var x)))) fb:m.018w8)) (value (list (name fb:en.tony_gwynn "Tony Gwynn") (name fb:en.dan_bonner "Dan Bonner") (name fb:en.stephen_black "Stephen Black") (name fb:en.peter_scantlebury "Peter Scantlebury") (name fb:en.lindsay_bowen "Lindsay Bowen") (name fb:en.kelvin_dela_pena "Kelvin dela Peña") (name fb:en.joe_ruklick "Joe Ruklick") (name fb:en.maurice_girardot "Maurice Girardot") (name fb:en.fred_hill_1959 "Fred Hill") (name fb:en.emir_preld_i "Emir Preldžić"))) (type fb:sports.pro_athlete) what basketball teams has shaq played for? Stephen Black 5.168 formula ((lambda x (fb:sports.pro_athlete.sports_played_professionally (fb:sports.pro_sports_played.sport (var x)))) fb:m.018w8)) (value (list (name fb:en.tony_gwynn "Tony Gwynn") (name fb:en.dan_bonner "Dan Bonner") (name fb:en.stephen_black "Stephen Black") (name fb:en.peter_scantlebury "Peter Scantlebury") (name fb:en.lindsay_bowen "Lindsay Bowen") (name fb:en.kelvin_dela_pena "Kelvin dela Peña") (name fb:en.joe_ruklick "Joe Ruklick") (name fb:en.maurice_girardot "Maurice Girardot") (name fb:en.fred_hill_1959 "Fred Hill") (name fb:en.emir_preld_i "Emir Preldžić"))) (type fb:sports.pro_athlete) what basketball teams has shaq played for? Peter Scantlebury 5.168 formula ((lambda x (fb:sports.pro_athlete.sports_played_professionally (fb:sports.pro_sports_played.sport (var x)))) fb:m.018w8)) (value (list (name fb:en.tony_gwynn "Tony Gwynn") (name fb:en.dan_bonner "Dan Bonner") (name fb:en.stephen_black "Stephen Black") (name fb:en.peter_scantlebury "Peter Scantlebury") (name fb:en.lindsay_bowen "Lindsay Bowen") (name fb:en.kelvin_dela_pena "Kelvin dela Peña") (name fb:en.joe_ruklick "Joe Ruklick") (name fb:en.maurice_girardot "Maurice Girardot") (name fb:en.fred_hill_1959 "Fred Hill") (name fb:en.emir_preld_i "Emir Preldžić"))) (type fb:sports.pro_athlete) what basketball teams has shaq played for? Lindsay Bowen 5.168 formula ((lambda x (fb:sports.pro_athlete.sports_played_professionally (fb:sports.pro_sports_played.sport (var x)))) fb:m.018w8)) (value (list (name fb:en.tony_gwynn "Tony Gwynn") (name fb:en.dan_bonner "Dan Bonner") (name fb:en.stephen_black "Stephen Black") (name fb:en.peter_scantlebury "Peter Scantlebury") (name fb:en.lindsay_bowen "Lindsay Bowen") (name fb:en.kelvin_dela_pena "Kelvin dela Peña") (name fb:en.joe_ruklick "Joe Ruklick") (name fb:en.maurice_girardot "Maurice Girardot") (name fb:en.fred_hill_1959 "Fred Hill") (name fb:en.emir_preld_i "Emir Preldžić"))) (type fb:sports.pro_athlete) what basketball teams has shaq played for? Kelvin dela Peña 5.168 formula ((lambda x (fb:sports.pro_athlete.sports_played_professionally (fb:sports.pro_sports_played.sport (var x)))) fb:m.018w8)) (value (list (name fb:en.tony_gwynn "Tony Gwynn") (name fb:en.dan_bonner "Dan Bonner") (name fb:en.stephen_black "Stephen Black") (name fb:en.peter_scantlebury "Peter Scantlebury") (name fb:en.lindsay_bowen "Lindsay Bowen") (name fb:en.kelvin_dela_pena "Kelvin dela Peña") (name fb:en.joe_ruklick "Joe Ruklick") (name fb:en.maurice_girardot "Maurice Girardot") (name fb:en.fred_hill_1959 "Fred Hill") (name fb:en.emir_preld_i "Emir Preldžić"))) (type fb:sports.pro_athlete) what basketball teams has shaq played for? Joe Ruklick 5.168 formula ((lambda x (fb:sports.pro_athlete.sports_played_professionally (fb:sports.pro_sports_played.sport (var x)))) fb:m.018w8)) (value (list (name fb:en.tony_gwynn "Tony Gwynn") (name fb:en.dan_bonner "Dan Bonner") (name fb:en.stephen_black "Stephen Black") (name fb:en.peter_scantlebury "Peter Scantlebury") (name fb:en.lindsay_bowen "Lindsay Bowen") (name fb:en.kelvin_dela_pena "Kelvin dela Peña") (name fb:en.joe_ruklick "Joe Ruklick") (name fb:en.maurice_girardot "Maurice Girardot") (name fb:en.fred_hill_1959 "Fred Hill") (name fb:en.emir_preld_i "Emir Preldžić"))) (type fb:sports.pro_athlete) what basketball teams has shaq played for? Maurice Girardot 5.168 formula ((lambda x (fb:sports.pro_athlete.sports_played_professionally (fb:sports.pro_sports_played.sport (var x)))) fb:m.018w8)) (value (list (name fb:en.tony_gwynn "Tony Gwynn") (name fb:en.dan_bonner "Dan Bonner") (name fb:en.stephen_black "Stephen Black") (name fb:en.peter_scantlebury "Peter Scantlebury") (name fb:en.lindsay_bowen "Lindsay Bowen") (name fb:en.kelvin_dela_pena "Kelvin dela Peña") (name fb:en.joe_ruklick "Joe Ruklick") (name fb:en.maurice_girardot "Maurice Girardot") (name fb:en.fred_hill_1959 "Fred Hill") (name fb:en.emir_preld_i "Emir Preldžić"))) (type fb:sports.pro_athlete) what basketball teams has shaq played for? Fred Hill 5.168 formula ((lambda x (fb:sports.pro_athlete.sports_played_professionally (fb:sports.pro_sports_played.sport (var x)))) fb:m.018w8)) (value (list (name fb:en.tony_gwynn "Tony Gwynn") (name fb:en.dan_bonner "Dan Bonner") (name fb:en.stephen_black "Stephen Black") (name fb:en.peter_scantlebury "Peter Scantlebury") (name fb:en.lindsay_bowen "Lindsay Bowen") (name fb:en.kelvin_dela_pena "Kelvin dela Peña") (name fb:en.joe_ruklick "Joe Ruklick") (name fb:en.maurice_girardot "Maurice Girardot") (name fb:en.fred_hill_1959 "Fred Hill") (name fb:en.emir_preld_i "Emir Preldžić"))) (type fb:sports.pro_athlete) what basketball teams has shaq played for? Emir Preldžić 5.168 formula ((lambda x (fb:sports.pro_athlete.sports_played_professionally (fb:sports.pro_sports_played.sport (var x)))) fb:m.018w8)) (value (list (name fb:en.tony_gwynn "Tony Gwynn") (name fb:en.dan_bonner "Dan Bonner") (name fb:en.stephen_black "Stephen Black") (name fb:en.peter_scantlebury "Peter Scantlebury") (name fb:en.lindsay_bowen "Lindsay Bowen") (name fb:en.kelvin_dela_pena "Kelvin dela Peña") (name fb:en.joe_ruklick "Joe Ruklick") (name fb:en.maurice_girardot "Maurice Girardot") (name fb:en.fred_hill_1959 "Fred Hill") (name fb:en.emir_preld_i "Emir Preldžić"))) (type fb:sports.pro_athlete) where is jay leno from? Judd Apatow 1.009 formula (fb:influence.influence_node.influenced_by fb:en.jay_leno)) (value (list (name fb:en.judd_apatow "Judd Apatow") (name fb:en.conan_obrien "Conan O'Brien") (name fb:en.jimmy_fallon "Jimmy Fallon") (name fb:en.patton_oswalt "Patton Oswalt") (name fb:en.dennis_miller "Dennis Miller") (name fb:en.jimmy_dore "Jimmy Dore") (name fb:en.ray_ellin "Ray Ellin") (name fb:en.cyrus_broacha "Cyrus Broacha"))) (type fb:influence.influence_node) where is jay leno from? Conan O'Brien 1.009 formula (fb:influence.influence_node.influenced_by fb:en.jay_leno)) (value (list (name fb:en.judd_apatow "Judd Apatow") (name fb:en.conan_obrien "Conan O'Brien") (name fb:en.jimmy_fallon "Jimmy Fallon") (name fb:en.patton_oswalt "Patton Oswalt") (name fb:en.dennis_miller "Dennis Miller") (name fb:en.jimmy_dore "Jimmy Dore") (name fb:en.ray_ellin "Ray Ellin") (name fb:en.cyrus_broacha "Cyrus Broacha"))) (type fb:influence.influence_node) where is jay leno from? Jimmy Fallon 1.009 formula (fb:influence.influence_node.influenced_by fb:en.jay_leno)) (value (list (name fb:en.judd_apatow "Judd Apatow") (name fb:en.conan_obrien "Conan O'Brien") (name fb:en.jimmy_fallon "Jimmy Fallon") (name fb:en.patton_oswalt "Patton Oswalt") (name fb:en.dennis_miller "Dennis Miller") (name fb:en.jimmy_dore "Jimmy Dore") (name fb:en.ray_ellin "Ray Ellin") (name fb:en.cyrus_broacha "Cyrus Broacha"))) (type fb:influence.influence_node) where is jay leno from? Patton Oswalt 1.009 formula (fb:influence.influence_node.influenced_by fb:en.jay_leno)) (value (list (name fb:en.judd_apatow "Judd Apatow") (name fb:en.conan_obrien "Conan O'Brien") (name fb:en.jimmy_fallon "Jimmy Fallon") (name fb:en.patton_oswalt "Patton Oswalt") (name fb:en.dennis_miller "Dennis Miller") (name fb:en.jimmy_dore "Jimmy Dore") (name fb:en.ray_ellin "Ray Ellin") (name fb:en.cyrus_broacha "Cyrus Broacha"))) (type fb:influence.influence_node) where is jay leno from? Dennis Miller 1.009 formula (fb:influence.influence_node.influenced_by fb:en.jay_leno)) (value (list (name fb:en.judd_apatow "Judd Apatow") (name fb:en.conan_obrien "Conan O'Brien") (name fb:en.jimmy_fallon "Jimmy Fallon") (name fb:en.patton_oswalt "Patton Oswalt") (name fb:en.dennis_miller "Dennis Miller") (name fb:en.jimmy_dore "Jimmy Dore") (name fb:en.ray_ellin "Ray Ellin") (name fb:en.cyrus_broacha "Cyrus Broacha"))) (type fb:influence.influence_node) where is jay leno from? Jimmy Dore 1.009 formula (fb:influence.influence_node.influenced_by fb:en.jay_leno)) (value (list (name fb:en.judd_apatow "Judd Apatow") (name fb:en.conan_obrien "Conan O'Brien") (name fb:en.jimmy_fallon "Jimmy Fallon") (name fb:en.patton_oswalt "Patton Oswalt") (name fb:en.dennis_miller "Dennis Miller") (name fb:en.jimmy_dore "Jimmy Dore") (name fb:en.ray_ellin "Ray Ellin") (name fb:en.cyrus_broacha "Cyrus Broacha"))) (type fb:influence.influence_node) where is jay leno from? Ray Ellin 1.009 formula (fb:influence.influence_node.influenced_by fb:en.jay_leno)) (value (list (name fb:en.judd_apatow "Judd Apatow") (name fb:en.conan_obrien "Conan O'Brien") (name fb:en.jimmy_fallon "Jimmy Fallon") (name fb:en.patton_oswalt "Patton Oswalt") (name fb:en.dennis_miller "Dennis Miller") (name fb:en.jimmy_dore "Jimmy Dore") (name fb:en.ray_ellin "Ray Ellin") (name fb:en.cyrus_broacha "Cyrus Broacha"))) (type fb:influence.influence_node) where is jay leno from? Cyrus Broacha 1.009 formula (fb:influence.influence_node.influenced_by fb:en.jay_leno)) (value (list (name fb:en.judd_apatow "Judd Apatow") (name fb:en.conan_obrien "Conan O'Brien") (name fb:en.jimmy_fallon "Jimmy Fallon") (name fb:en.patton_oswalt "Patton Oswalt") (name fb:en.dennis_miller "Dennis Miller") (name fb:en.jimmy_dore "Jimmy Dore") (name fb:en.ray_ellin "Ray Ellin") (name fb:en.cyrus_broacha "Cyrus Broacha"))) (type fb:influence.influence_node) what language do people from thailand speak? Thai Language 11.28 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.thailand))) (value (list (name fb:en.thai_language "Thai Language"))) (type (union fb:language.human_language)) who did armie hammer play in the social network? Tyler Winklevoss 11.348 formula (!fb:film.performance.character (and (!fb:film.actor.film fb:en.armie_hammer) (fb:film.performance.film fb:en.the_social_network)))) (value (list (name fb:m.09tb_f3 "Tyler Winklevoss") (name fb:m.09tbj8d "Cameron Winklevoss"))) (type fb:film.film_character) who did armie hammer play in the social network? Cameron Winklevoss 11.348 formula (!fb:film.performance.character (and (!fb:film.actor.film fb:en.armie_hammer) (fb:film.performance.film fb:en.the_social_network)))) (value (list (name fb:m.09tb_f3 "Tyler Winklevoss") (name fb:m.09tbj8d "Cameron Winklevoss"))) (type fb:film.film_character) what was thomas jefferson role in the declaration of independence? Associate Justice of the Supreme Court of the United States 9.897 formula ((lambda x (!fb:people.appointment.appointed_role (!fb:people.appointer.appointment_made (var x)))) fb:en.thomas_jefferson)) (value (list (name fb:en.associate_justice_of_the_supreme_court_of_the_united_states "Associate Justice of the Supreme Court of the United States"))) (type fb:people.appointed_role) what was the book written by charles darwin? The Correspondence of Charles Darwin, Volume 1: 1821-1836 18.37 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.charles_darwin))) (value (list (name fb:m.0d_3d1b "The Correspondence of Charles Darwin, Volume 1: 1821-1836") (name fb:en.origen_de_las_especies "Origen De Las Especies") (name fb:en.the_origin_of_species "The Origin of Species") (name fb:en.the_expression_of_the_emotions_in_man_and_animals "The Expression of the Emotions in Man and Animals") (name fb:en.diary_of_the_voyage_of_h_m_s_beagle "Diary of the voyage of H.M.S. Beagle") (name fb:m.0c1t1nf "The zoology of the voyage of H.M.S. Beagle during the years 1832-1836") (name fb:m.0f0c2xv "The Correspondence of Charles Darwin, Volume 4: 1847-1850") (name fb:m.0c1t1n1 "On the origin of species by means of natural selection") (name fb:m.05f9n1z "The Structure and Distribution of Coral Reefs") (name fb:m.0f0jl1d "The Correspondence of Charles Darwin, Volume 18: 1870"))) (type (union fb:book.book)) what was the book written by charles darwin? Origen De Las Especies 18.37 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.charles_darwin))) (value (list (name fb:m.0d_3d1b "The Correspondence of Charles Darwin, Volume 1: 1821-1836") (name fb:en.origen_de_las_especies "Origen De Las Especies") (name fb:en.the_origin_of_species "The Origin of Species") (name fb:en.the_expression_of_the_emotions_in_man_and_animals "The Expression of the Emotions in Man and Animals") (name fb:en.diary_of_the_voyage_of_h_m_s_beagle "Diary of the voyage of H.M.S. Beagle") (name fb:m.0c1t1nf "The zoology of the voyage of H.M.S. Beagle during the years 1832-1836") (name fb:m.0f0c2xv "The Correspondence of Charles Darwin, Volume 4: 1847-1850") (name fb:m.0c1t1n1 "On the origin of species by means of natural selection") (name fb:m.05f9n1z "The Structure and Distribution of Coral Reefs") (name fb:m.0f0jl1d "The Correspondence of Charles Darwin, Volume 18: 1870"))) (type (union fb:book.book)) what was the book written by charles darwin? The Origin of Species 18.37 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.charles_darwin))) (value (list (name fb:m.0d_3d1b "The Correspondence of Charles Darwin, Volume 1: 1821-1836") (name fb:en.origen_de_las_especies "Origen De Las Especies") (name fb:en.the_origin_of_species "The Origin of Species") (name fb:en.the_expression_of_the_emotions_in_man_and_animals "The Expression of the Emotions in Man and Animals") (name fb:en.diary_of_the_voyage_of_h_m_s_beagle "Diary of the voyage of H.M.S. Beagle") (name fb:m.0c1t1nf "The zoology of the voyage of H.M.S. Beagle during the years 1832-1836") (name fb:m.0f0c2xv "The Correspondence of Charles Darwin, Volume 4: 1847-1850") (name fb:m.0c1t1n1 "On the origin of species by means of natural selection") (name fb:m.05f9n1z "The Structure and Distribution of Coral Reefs") (name fb:m.0f0jl1d "The Correspondence of Charles Darwin, Volume 18: 1870"))) (type (union fb:book.book)) what was the book written by charles darwin? The Expression of the Emotions in Man and Animals 18.37 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.charles_darwin))) (value (list (name fb:m.0d_3d1b "The Correspondence of Charles Darwin, Volume 1: 1821-1836") (name fb:en.origen_de_las_especies "Origen De Las Especies") (name fb:en.the_origin_of_species "The Origin of Species") (name fb:en.the_expression_of_the_emotions_in_man_and_animals "The Expression of the Emotions in Man and Animals") (name fb:en.diary_of_the_voyage_of_h_m_s_beagle "Diary of the voyage of H.M.S. Beagle") (name fb:m.0c1t1nf "The zoology of the voyage of H.M.S. Beagle during the years 1832-1836") (name fb:m.0f0c2xv "The Correspondence of Charles Darwin, Volume 4: 1847-1850") (name fb:m.0c1t1n1 "On the origin of species by means of natural selection") (name fb:m.05f9n1z "The Structure and Distribution of Coral Reefs") (name fb:m.0f0jl1d "The Correspondence of Charles Darwin, Volume 18: 1870"))) (type (union fb:book.book)) what was the book written by charles darwin? Diary of the voyage of H.M.S. Beagle 18.37 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.charles_darwin))) (value (list (name fb:m.0d_3d1b "The Correspondence of Charles Darwin, Volume 1: 1821-1836") (name fb:en.origen_de_las_especies "Origen De Las Especies") (name fb:en.the_origin_of_species "The Origin of Species") (name fb:en.the_expression_of_the_emotions_in_man_and_animals "The Expression of the Emotions in Man and Animals") (name fb:en.diary_of_the_voyage_of_h_m_s_beagle "Diary of the voyage of H.M.S. Beagle") (name fb:m.0c1t1nf "The zoology of the voyage of H.M.S. Beagle during the years 1832-1836") (name fb:m.0f0c2xv "The Correspondence of Charles Darwin, Volume 4: 1847-1850") (name fb:m.0c1t1n1 "On the origin of species by means of natural selection") (name fb:m.05f9n1z "The Structure and Distribution of Coral Reefs") (name fb:m.0f0jl1d "The Correspondence of Charles Darwin, Volume 18: 1870"))) (type (union fb:book.book)) what was the book written by charles darwin? The zoology of the voyage of H.M.S. Beagle during the years 1832-1836 18.37 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.charles_darwin))) (value (list (name fb:m.0d_3d1b "The Correspondence of Charles Darwin, Volume 1: 1821-1836") (name fb:en.origen_de_las_especies "Origen De Las Especies") (name fb:en.the_origin_of_species "The Origin of Species") (name fb:en.the_expression_of_the_emotions_in_man_and_animals "The Expression of the Emotions in Man and Animals") (name fb:en.diary_of_the_voyage_of_h_m_s_beagle "Diary of the voyage of H.M.S. Beagle") (name fb:m.0c1t1nf "The zoology of the voyage of H.M.S. Beagle during the years 1832-1836") (name fb:m.0f0c2xv "The Correspondence of Charles Darwin, Volume 4: 1847-1850") (name fb:m.0c1t1n1 "On the origin of species by means of natural selection") (name fb:m.05f9n1z "The Structure and Distribution of Coral Reefs") (name fb:m.0f0jl1d "The Correspondence of Charles Darwin, Volume 18: 1870"))) (type (union fb:book.book)) what was the book written by charles darwin? The Correspondence of Charles Darwin, Volume 4: 1847-1850 18.37 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.charles_darwin))) (value (list (name fb:m.0d_3d1b "The Correspondence of Charles Darwin, Volume 1: 1821-1836") (name fb:en.origen_de_las_especies "Origen De Las Especies") (name fb:en.the_origin_of_species "The Origin of Species") (name fb:en.the_expression_of_the_emotions_in_man_and_animals "The Expression of the Emotions in Man and Animals") (name fb:en.diary_of_the_voyage_of_h_m_s_beagle "Diary of the voyage of H.M.S. Beagle") (name fb:m.0c1t1nf "The zoology of the voyage of H.M.S. Beagle during the years 1832-1836") (name fb:m.0f0c2xv "The Correspondence of Charles Darwin, Volume 4: 1847-1850") (name fb:m.0c1t1n1 "On the origin of species by means of natural selection") (name fb:m.05f9n1z "The Structure and Distribution of Coral Reefs") (name fb:m.0f0jl1d "The Correspondence of Charles Darwin, Volume 18: 1870"))) (type (union fb:book.book)) what was the book written by charles darwin? On the origin of species by means of natural selection 18.37 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.charles_darwin))) (value (list (name fb:m.0d_3d1b "The Correspondence of Charles Darwin, Volume 1: 1821-1836") (name fb:en.origen_de_las_especies "Origen De Las Especies") (name fb:en.the_origin_of_species "The Origin of Species") (name fb:en.the_expression_of_the_emotions_in_man_and_animals "The Expression of the Emotions in Man and Animals") (name fb:en.diary_of_the_voyage_of_h_m_s_beagle "Diary of the voyage of H.M.S. Beagle") (name fb:m.0c1t1nf "The zoology of the voyage of H.M.S. Beagle during the years 1832-1836") (name fb:m.0f0c2xv "The Correspondence of Charles Darwin, Volume 4: 1847-1850") (name fb:m.0c1t1n1 "On the origin of species by means of natural selection") (name fb:m.05f9n1z "The Structure and Distribution of Coral Reefs") (name fb:m.0f0jl1d "The Correspondence of Charles Darwin, Volume 18: 1870"))) (type (union fb:book.book)) what was the book written by charles darwin? The Structure and Distribution of Coral Reefs 18.37 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.charles_darwin))) (value (list (name fb:m.0d_3d1b "The Correspondence of Charles Darwin, Volume 1: 1821-1836") (name fb:en.origen_de_las_especies "Origen De Las Especies") (name fb:en.the_origin_of_species "The Origin of Species") (name fb:en.the_expression_of_the_emotions_in_man_and_animals "The Expression of the Emotions in Man and Animals") (name fb:en.diary_of_the_voyage_of_h_m_s_beagle "Diary of the voyage of H.M.S. Beagle") (name fb:m.0c1t1nf "The zoology of the voyage of H.M.S. Beagle during the years 1832-1836") (name fb:m.0f0c2xv "The Correspondence of Charles Darwin, Volume 4: 1847-1850") (name fb:m.0c1t1n1 "On the origin of species by means of natural selection") (name fb:m.05f9n1z "The Structure and Distribution of Coral Reefs") (name fb:m.0f0jl1d "The Correspondence of Charles Darwin, Volume 18: 1870"))) (type (union fb:book.book)) what was the book written by charles darwin? The Correspondence of Charles Darwin, Volume 18: 1870 18.37 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.charles_darwin))) (value (list (name fb:m.0d_3d1b "The Correspondence of Charles Darwin, Volume 1: 1821-1836") (name fb:en.origen_de_las_especies "Origen De Las Especies") (name fb:en.the_origin_of_species "The Origin of Species") (name fb:en.the_expression_of_the_emotions_in_man_and_animals "The Expression of the Emotions in Man and Animals") (name fb:en.diary_of_the_voyage_of_h_m_s_beagle "Diary of the voyage of H.M.S. Beagle") (name fb:m.0c1t1nf "The zoology of the voyage of H.M.S. Beagle during the years 1832-1836") (name fb:m.0f0c2xv "The Correspondence of Charles Darwin, Volume 4: 1847-1850") (name fb:m.0c1t1n1 "On the origin of species by means of natural selection") (name fb:m.05f9n1z "The Structure and Distribution of Coral Reefs") (name fb:m.0f0jl1d "The Correspondence of Charles Darwin, Volume 18: 1870"))) (type (union fb:book.book)) who did tim tebow play college football for? University of Florida 6.551 formula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.tim_tebow))) (value (list (name fb:en.uf "University of Florida"))) (type (union fb:education.university)) who does peyton manning play football for? Indianapolis Colts 8.754 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.peyton_manning)) (value (list (name fb:en.indianapolis_colts "Indianapolis Colts") (name fb:en.denver_broncos "Denver Broncos"))) (type fb:sports.sports_team) who does peyton manning play football for? Denver Broncos 8.754 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.peyton_manning)) (value (list (name fb:en.indianapolis_colts "Indianapolis Colts") (name fb:en.denver_broncos "Denver Broncos"))) (type fb:sports.sports_team) what was robert burns? Myocardial infarction 1.119 formula (fb:people.cause_of_death.people fb:en.robert_burns_woodward)) (value (list (name fb:en.heart_failure "Myocardial infarction"))) (type fb:people.cause_of_death) what did anton van leeuwenhoek contribute to our knowledge of cells? Leeuwenhoek Medal 9.791 formula (fb:symbols.namesake.named_after fb:en.anton_van_leeuwenhoek)) (value (list (name fb:en.leeuwenhoek_medal "Leeuwenhoek Medal") (name fb:en.2766_leeuwenhoek "2766 Leeuwenhoek") (name fb:en.leeuwenhoek_lecture "Leeuwenhoek Lecture") (name fb:en.leeuwenhoek Leeuwenhoek))) (type fb:symbols.namesake) what did anton van leeuwenhoek contribute to our knowledge of cells? 2766 Leeuwenhoek 9.791 formula (fb:symbols.namesake.named_after fb:en.anton_van_leeuwenhoek)) (value (list (name fb:en.leeuwenhoek_medal "Leeuwenhoek Medal") (name fb:en.2766_leeuwenhoek "2766 Leeuwenhoek") (name fb:en.leeuwenhoek_lecture "Leeuwenhoek Lecture") (name fb:en.leeuwenhoek Leeuwenhoek))) (type fb:symbols.namesake) what did anton van leeuwenhoek contribute to our knowledge of cells? Leeuwenhoek Lecture 9.791 formula (fb:symbols.namesake.named_after fb:en.anton_van_leeuwenhoek)) (value (list (name fb:en.leeuwenhoek_medal "Leeuwenhoek Medal") (name fb:en.2766_leeuwenhoek "2766 Leeuwenhoek") (name fb:en.leeuwenhoek_lecture "Leeuwenhoek Lecture") (name fb:en.leeuwenhoek Leeuwenhoek))) (type fb:symbols.namesake) who did the voice of darth vader in episode 3? David Prowse 15.283 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who did the voice of darth vader in episode 3? James Earl Jones 15.283 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who did the voice of darth vader in episode 3? Hayden Christensen 15.283 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who did the voice of darth vader in episode 3? Matt Lanter 15.283 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who did the voice of darth vader in episode 3? Sebastian Shaw 15.283 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who did the voice of darth vader in episode 3? Robert E. Bean 15.283 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who did the voice of darth vader in episode 3? Jake Lloyd 15.283 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) what super bowl did peyton manning win? Kids' Choice Award for Favorite Male Athlete 10.502 formula ((lambda x (fb:award.award_category.winners (fb:award.award_honor.award_winner (var x)))) fb:en.peyton_manning)) (value (list (name fb:m.0sgkp4y "Kids' Choice Award for Favorite Male Athlete") (name fb:en.james_e_sullivan_award "James E. Sullivan Award"))) (type fb:award.award_category) what super bowl did peyton manning win? James E. Sullivan Award 10.502 formula ((lambda x (fb:award.award_category.winners (fb:award.award_honor.award_winner (var x)))) fb:en.peyton_manning)) (value (list (name fb:m.0sgkp4y "Kids' Choice Award for Favorite Male Athlete") (name fb:en.james_e_sullivan_award "James E. Sullivan Award"))) (type fb:award.award_category) who fought in the gulf war 1991? Colin Powell 8.689 formula (!fb:military.military_conflict.military_personnel_involved fb:en.gulf_war)) (value (list (name fb:en.colin_powell "Colin Powell") (name fb:en.james_l_jones "James L. Jones") (name fb:en.jeffrey_chessani "Jeffrey Chessani") (name fb:en.julian_1970 Julian) (name fb:en.shaggy Shaggy) (name fb:en.mystikal_nivea Mystikal) (name fb:m.0glrts4 "John J. Yeosock") (name fb:en.chuck_horner "Chuck Horner") (name fb:en.jeffrey_shears_ashby "Jeffrey Ashby") (name fb:en.anthony_loyd "Anthony Loyd"))) (type fb:military.military_person) who fought in the gulf war 1991? James L. Jones 8.689 formula (!fb:military.military_conflict.military_personnel_involved fb:en.gulf_war)) (value (list (name fb:en.colin_powell "Colin Powell") (name fb:en.james_l_jones "James L. Jones") (name fb:en.jeffrey_chessani "Jeffrey Chessani") (name fb:en.julian_1970 Julian) (name fb:en.shaggy Shaggy) (name fb:en.mystikal_nivea Mystikal) (name fb:m.0glrts4 "John J. Yeosock") (name fb:en.chuck_horner "Chuck Horner") (name fb:en.jeffrey_shears_ashby "Jeffrey Ashby") (name fb:en.anthony_loyd "Anthony Loyd"))) (type fb:military.military_person) who fought in the gulf war 1991? Jeffrey Chessani 8.689 formula (!fb:military.military_conflict.military_personnel_involved fb:en.gulf_war)) (value (list (name fb:en.colin_powell "Colin Powell") (name fb:en.james_l_jones "James L. Jones") (name fb:en.jeffrey_chessani "Jeffrey Chessani") (name fb:en.julian_1970 Julian) (name fb:en.shaggy Shaggy) (name fb:en.mystikal_nivea Mystikal) (name fb:m.0glrts4 "John J. Yeosock") (name fb:en.chuck_horner "Chuck Horner") (name fb:en.jeffrey_shears_ashby "Jeffrey Ashby") (name fb:en.anthony_loyd "Anthony Loyd"))) (type fb:military.military_person) who fought in the gulf war 1991? John J. Yeosock 8.689 formula (!fb:military.military_conflict.military_personnel_involved fb:en.gulf_war)) (value (list (name fb:en.colin_powell "Colin Powell") (name fb:en.james_l_jones "James L. Jones") (name fb:en.jeffrey_chessani "Jeffrey Chessani") (name fb:en.julian_1970 Julian) (name fb:en.shaggy Shaggy) (name fb:en.mystikal_nivea Mystikal) (name fb:m.0glrts4 "John J. Yeosock") (name fb:en.chuck_horner "Chuck Horner") (name fb:en.jeffrey_shears_ashby "Jeffrey Ashby") (name fb:en.anthony_loyd "Anthony Loyd"))) (type fb:military.military_person) who fought in the gulf war 1991? Chuck Horner 8.689 formula (!fb:military.military_conflict.military_personnel_involved fb:en.gulf_war)) (value (list (name fb:en.colin_powell "Colin Powell") (name fb:en.james_l_jones "James L. Jones") (name fb:en.jeffrey_chessani "Jeffrey Chessani") (name fb:en.julian_1970 Julian) (name fb:en.shaggy Shaggy) (name fb:en.mystikal_nivea Mystikal) (name fb:m.0glrts4 "John J. Yeosock") (name fb:en.chuck_horner "Chuck Horner") (name fb:en.jeffrey_shears_ashby "Jeffrey Ashby") (name fb:en.anthony_loyd "Anthony Loyd"))) (type fb:military.military_person) who fought in the gulf war 1991? Jeffrey Ashby 8.689 formula (!fb:military.military_conflict.military_personnel_involved fb:en.gulf_war)) (value (list (name fb:en.colin_powell "Colin Powell") (name fb:en.james_l_jones "James L. Jones") (name fb:en.jeffrey_chessani "Jeffrey Chessani") (name fb:en.julian_1970 Julian) (name fb:en.shaggy Shaggy) (name fb:en.mystikal_nivea Mystikal) (name fb:m.0glrts4 "John J. Yeosock") (name fb:en.chuck_horner "Chuck Horner") (name fb:en.jeffrey_shears_ashby "Jeffrey Ashby") (name fb:en.anthony_loyd "Anthony Loyd"))) (type fb:military.military_person) who fought in the gulf war 1991? Anthony Loyd 8.689 formula (!fb:military.military_conflict.military_personnel_involved fb:en.gulf_war)) (value (list (name fb:en.colin_powell "Colin Powell") (name fb:en.james_l_jones "James L. Jones") (name fb:en.jeffrey_chessani "Jeffrey Chessani") (name fb:en.julian_1970 Julian) (name fb:en.shaggy Shaggy) (name fb:en.mystikal_nivea Mystikal) (name fb:m.0glrts4 "John J. Yeosock") (name fb:en.chuck_horner "Chuck Horner") (name fb:en.jeffrey_shears_ashby "Jeffrey Ashby") (name fb:en.anthony_loyd "Anthony Loyd"))) (type fb:military.military_person) who plays london tipton in suite life on deck? Brenda Song 3.849 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.london_tipton)) (value (list (name fb:en.brenda_song "Brenda Song"))) (type fb:film.actor) what was the ancient chinese writing system? 'Phags-pa script 9.104 formula (!fb:language.human_language.writing_system fb:en.chinese_language)) (value (list (name fb:en.phagspa_script "'Phags-pa script") (name fb:en.nu_shu "Nüshu script") (name fb:en.chinese_character "Chinese characters") (name fb:en.traditional_chinese_character "Traditional Chinese characters") (name fb:m.03wzk9c Chinese) (name fb:en.simplified_chinese_character "Simplified Chinese character"))) (type fb:language.language_writing_system) what was the ancient chinese writing system? Nüshu script 9.104 formula (!fb:language.human_language.writing_system fb:en.chinese_language)) (value (list (name fb:en.phagspa_script "'Phags-pa script") (name fb:en.nu_shu "Nüshu script") (name fb:en.chinese_character "Chinese characters") (name fb:en.traditional_chinese_character "Traditional Chinese characters") (name fb:m.03wzk9c Chinese) (name fb:en.simplified_chinese_character "Simplified Chinese character"))) (type fb:language.language_writing_system) what was the ancient chinese writing system? Chinese characters 9.104 formula (!fb:language.human_language.writing_system fb:en.chinese_language)) (value (list (name fb:en.phagspa_script "'Phags-pa script") (name fb:en.nu_shu "Nüshu script") (name fb:en.chinese_character "Chinese characters") (name fb:en.traditional_chinese_character "Traditional Chinese characters") (name fb:m.03wzk9c Chinese) (name fb:en.simplified_chinese_character "Simplified Chinese character"))) (type fb:language.language_writing_system) what was the ancient chinese writing system? Traditional Chinese characters 9.104 formula (!fb:language.human_language.writing_system fb:en.chinese_language)) (value (list (name fb:en.phagspa_script "'Phags-pa script") (name fb:en.nu_shu "Nüshu script") (name fb:en.chinese_character "Chinese characters") (name fb:en.traditional_chinese_character "Traditional Chinese characters") (name fb:m.03wzk9c Chinese) (name fb:en.simplified_chinese_character "Simplified Chinese character"))) (type fb:language.language_writing_system) what was the ancient chinese writing system? Simplified Chinese character 9.104 formula (!fb:language.human_language.writing_system fb:en.chinese_language)) (value (list (name fb:en.phagspa_script "'Phags-pa script") (name fb:en.nu_shu "Nüshu script") (name fb:en.chinese_character "Chinese characters") (name fb:en.traditional_chinese_character "Traditional Chinese characters") (name fb:m.03wzk9c Chinese) (name fb:en.simplified_chinese_character "Simplified Chinese character"))) (type fb:language.language_writing_system) what team did david beckham play for in 2011? Real Madrid C.F. 18.67 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham))) (value (list (name fb:en.real_madrid "Real Madrid C.F.") (name fb:en.los_angeles_galaxy "LA Galaxy") (name fb:en.ac_milan "A.C. Milan") (name fb:en.paris_saint-germain_fc "Paris Saint-Germain F.C.") (name fb:en.preston_north_end_fc "Preston North End F.C.") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.england_national_under-21_football_team "England national under-21 football team") (name fb:en.england_national_football_team "England national football team"))) (type fb:soccer.football_team) what team did david beckham play for in 2011? LA Galaxy 18.67 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham))) (value (list (name fb:en.real_madrid "Real Madrid C.F.") (name fb:en.los_angeles_galaxy "LA Galaxy") (name fb:en.ac_milan "A.C. Milan") (name fb:en.paris_saint-germain_fc "Paris Saint-Germain F.C.") (name fb:en.preston_north_end_fc "Preston North End F.C.") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.england_national_under-21_football_team "England national under-21 football team") (name fb:en.england_national_football_team "England national football team"))) (type fb:soccer.football_team) what team did david beckham play for in 2011? A.C. Milan 18.67 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham))) (value (list (name fb:en.real_madrid "Real Madrid C.F.") (name fb:en.los_angeles_galaxy "LA Galaxy") (name fb:en.ac_milan "A.C. Milan") (name fb:en.paris_saint-germain_fc "Paris Saint-Germain F.C.") (name fb:en.preston_north_end_fc "Preston North End F.C.") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.england_national_under-21_football_team "England national under-21 football team") (name fb:en.england_national_football_team "England national football team"))) (type fb:soccer.football_team) what team did david beckham play for in 2011? Paris Saint-Germain F.C. 18.67 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham))) (value (list (name fb:en.real_madrid "Real Madrid C.F.") (name fb:en.los_angeles_galaxy "LA Galaxy") (name fb:en.ac_milan "A.C. Milan") (name fb:en.paris_saint-germain_fc "Paris Saint-Germain F.C.") (name fb:en.preston_north_end_fc "Preston North End F.C.") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.england_national_under-21_football_team "England national under-21 football team") (name fb:en.england_national_football_team "England national football team"))) (type fb:soccer.football_team) what team did david beckham play for in 2011? Preston North End F.C. 18.67 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham))) (value (list (name fb:en.real_madrid "Real Madrid C.F.") (name fb:en.los_angeles_galaxy "LA Galaxy") (name fb:en.ac_milan "A.C. Milan") (name fb:en.paris_saint-germain_fc "Paris Saint-Germain F.C.") (name fb:en.preston_north_end_fc "Preston North End F.C.") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.england_national_under-21_football_team "England national under-21 football team") (name fb:en.england_national_football_team "England national football team"))) (type fb:soccer.football_team) what team did david beckham play for in 2011? Manchester United F.C. 18.67 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham))) (value (list (name fb:en.real_madrid "Real Madrid C.F.") (name fb:en.los_angeles_galaxy "LA Galaxy") (name fb:en.ac_milan "A.C. Milan") (name fb:en.paris_saint-germain_fc "Paris Saint-Germain F.C.") (name fb:en.preston_north_end_fc "Preston North End F.C.") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.england_national_under-21_football_team "England national under-21 football team") (name fb:en.england_national_football_team "England national football team"))) (type fb:soccer.football_team) what team did david beckham play for in 2011? England national under-21 football team 18.67 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham))) (value (list (name fb:en.real_madrid "Real Madrid C.F.") (name fb:en.los_angeles_galaxy "LA Galaxy") (name fb:en.ac_milan "A.C. Milan") (name fb:en.paris_saint-germain_fc "Paris Saint-Germain F.C.") (name fb:en.preston_north_end_fc "Preston North End F.C.") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.england_national_under-21_football_team "England national under-21 football team") (name fb:en.england_national_football_team "England national football team"))) (type fb:soccer.football_team) what team did david beckham play for in 2011? England national football team 18.67 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham))) (value (list (name fb:en.real_madrid "Real Madrid C.F.") (name fb:en.los_angeles_galaxy "LA Galaxy") (name fb:en.ac_milan "A.C. Milan") (name fb:en.paris_saint-germain_fc "Paris Saint-Germain F.C.") (name fb:en.preston_north_end_fc "Preston North End F.C.") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.england_national_under-21_football_team "England national under-21 football team") (name fb:en.england_national_football_team "England national football team"))) (type fb:soccer.football_team) what all does google now do? Google Earth 15.241 formula ((lambda x (fb:business.consumer_product.company (fb:business.company_product_relationship.company (var x)))) fb:en.google)) (value (list (name fb:en.google_earth "Google Earth") (name fb:en.google_maps "Google Maps") (name fb:en.nexus_one "Nexus One") (name fb:m.0b6g2kz "Google Buzz") (name fb:en.google_wave "Google Wave") (name fb:m.0k0p036 "Nexus 7") (name fb:m.0nb7n8f "Nexus 10") (name fb:en.google_chrome "Google Chrome") (name fb:m.0fpj3tb "Nexus S"))) (type fb:business.consumer_product) what all does google now do? Google Maps 15.241 formula ((lambda x (fb:business.consumer_product.company (fb:business.company_product_relationship.company (var x)))) fb:en.google)) (value (list (name fb:en.google_earth "Google Earth") (name fb:en.google_maps "Google Maps") (name fb:en.nexus_one "Nexus One") (name fb:m.0b6g2kz "Google Buzz") (name fb:en.google_wave "Google Wave") (name fb:m.0k0p036 "Nexus 7") (name fb:m.0nb7n8f "Nexus 10") (name fb:en.google_chrome "Google Chrome") (name fb:m.0fpj3tb "Nexus S"))) (type fb:business.consumer_product) what all does google now do? Nexus One 15.241 formula ((lambda x (fb:business.consumer_product.company (fb:business.company_product_relationship.company (var x)))) fb:en.google)) (value (list (name fb:en.google_earth "Google Earth") (name fb:en.google_maps "Google Maps") (name fb:en.nexus_one "Nexus One") (name fb:m.0b6g2kz "Google Buzz") (name fb:en.google_wave "Google Wave") (name fb:m.0k0p036 "Nexus 7") (name fb:m.0nb7n8f "Nexus 10") (name fb:en.google_chrome "Google Chrome") (name fb:m.0fpj3tb "Nexus S"))) (type fb:business.consumer_product) what all does google now do? Google Buzz 15.241 formula ((lambda x (fb:business.consumer_product.company (fb:business.company_product_relationship.company (var x)))) fb:en.google)) (value (list (name fb:en.google_earth "Google Earth") (name fb:en.google_maps "Google Maps") (name fb:en.nexus_one "Nexus One") (name fb:m.0b6g2kz "Google Buzz") (name fb:en.google_wave "Google Wave") (name fb:m.0k0p036 "Nexus 7") (name fb:m.0nb7n8f "Nexus 10") (name fb:en.google_chrome "Google Chrome") (name fb:m.0fpj3tb "Nexus S"))) (type fb:business.consumer_product) what all does google now do? Google Wave 15.241 formula ((lambda x (fb:business.consumer_product.company (fb:business.company_product_relationship.company (var x)))) fb:en.google)) (value (list (name fb:en.google_earth "Google Earth") (name fb:en.google_maps "Google Maps") (name fb:en.nexus_one "Nexus One") (name fb:m.0b6g2kz "Google Buzz") (name fb:en.google_wave "Google Wave") (name fb:m.0k0p036 "Nexus 7") (name fb:m.0nb7n8f "Nexus 10") (name fb:en.google_chrome "Google Chrome") (name fb:m.0fpj3tb "Nexus S"))) (type fb:business.consumer_product) what all does google now do? Nexus 7 15.241 formula ((lambda x (fb:business.consumer_product.company (fb:business.company_product_relationship.company (var x)))) fb:en.google)) (value (list (name fb:en.google_earth "Google Earth") (name fb:en.google_maps "Google Maps") (name fb:en.nexus_one "Nexus One") (name fb:m.0b6g2kz "Google Buzz") (name fb:en.google_wave "Google Wave") (name fb:m.0k0p036 "Nexus 7") (name fb:m.0nb7n8f "Nexus 10") (name fb:en.google_chrome "Google Chrome") (name fb:m.0fpj3tb "Nexus S"))) (type fb:business.consumer_product) what all does google now do? Nexus 10 15.241 formula ((lambda x (fb:business.consumer_product.company (fb:business.company_product_relationship.company (var x)))) fb:en.google)) (value (list (name fb:en.google_earth "Google Earth") (name fb:en.google_maps "Google Maps") (name fb:en.nexus_one "Nexus One") (name fb:m.0b6g2kz "Google Buzz") (name fb:en.google_wave "Google Wave") (name fb:m.0k0p036 "Nexus 7") (name fb:m.0nb7n8f "Nexus 10") (name fb:en.google_chrome "Google Chrome") (name fb:m.0fpj3tb "Nexus S"))) (type fb:business.consumer_product) what all does google now do? Google Chrome 15.241 formula ((lambda x (fb:business.consumer_product.company (fb:business.company_product_relationship.company (var x)))) fb:en.google)) (value (list (name fb:en.google_earth "Google Earth") (name fb:en.google_maps "Google Maps") (name fb:en.nexus_one "Nexus One") (name fb:m.0b6g2kz "Google Buzz") (name fb:en.google_wave "Google Wave") (name fb:m.0k0p036 "Nexus 7") (name fb:m.0nb7n8f "Nexus 10") (name fb:en.google_chrome "Google Chrome") (name fb:m.0fpj3tb "Nexus S"))) (type fb:business.consumer_product) what all does google now do? Nexus S 15.241 formula ((lambda x (fb:business.consumer_product.company (fb:business.company_product_relationship.company (var x)))) fb:en.google)) (value (list (name fb:en.google_earth "Google Earth") (name fb:en.google_maps "Google Maps") (name fb:en.nexus_one "Nexus One") (name fb:m.0b6g2kz "Google Buzz") (name fb:en.google_wave "Google Wave") (name fb:m.0k0p036 "Nexus 7") (name fb:m.0nb7n8f "Nexus 10") (name fb:en.google_chrome "Google Chrome") (name fb:m.0fpj3tb "Nexus S"))) (type fb:business.consumer_product) what language does egyptian people speak? Egyptian language 7.341 formula (!fb:language.language_writing_system.languages fb:en.egyptian_hieroglyphs)) (value (list (name fb:en.egyptian_languages "Egyptian language"))) (type fb:language.human_language) what are abraham sons names? Abrahamic religions 9.09 formula (!fb:religion.founding_figure.religion_founded fb:en.abraham)) (value (list (name fb:en.judaism Judaism) (name fb:en.abrahamic_religion "Abrahamic religions"))) (type fb:religion.religion) who wrote the jana gana mana? Rabindranath Tagore 5.901 formula (!fb:music.composition.composer fb:en.jana_gana_mana)) (value (list (name fb:en.rabindranath_tagore "Rabindranath Tagore") (name fb:en.ram_singh_thakur "Ram Singh Thakur"))) (type fb:music.composer) who wrote the jana gana mana? Ram Singh Thakur 5.901 formula (!fb:music.composition.composer fb:en.jana_gana_mana)) (value (list (name fb:en.rabindranath_tagore "Rabindranath Tagore") (name fb:en.ram_singh_thakur "Ram Singh Thakur"))) (type fb:music.composer) what type of cancer did gilda radner die of? Ovarian cancer 17.681 formula (and (fb:type.object.type fb:people.cause_of_death) (fb:people.cause_of_death.people fb:en.gilda_radner))) (value (list (name fb:en.ovarian_cancer "Ovarian cancer"))) (type fb:people.cause_of_death) who plays juni cortez? Daryl Sabara 6.052 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.juni_cortez)) (value (list (name fb:en.daryl_sabara "Daryl Sabara"))) (type fb:film.actor) what was lucille ball? Lucy Barker 4.367 formula ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.actor (var x)))) fb:en.lucille_ball)) (value (list (name fb:m.0gz7n28 "Lucy Barker") (name fb:m.0gz7n2k "Lucy Carter") (name fb:m.0rz85y9 "Lucy Ricardo") (name fb:m.0gz6vvg "Lucy Carmichael"))) (type fb:tv.tv_character) what was lucille ball? Lucy Carter 4.367 formula ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.actor (var x)))) fb:en.lucille_ball)) (value (list (name fb:m.0gz7n28 "Lucy Barker") (name fb:m.0gz7n2k "Lucy Carter") (name fb:m.0rz85y9 "Lucy Ricardo") (name fb:m.0gz6vvg "Lucy Carmichael"))) (type fb:tv.tv_character) what was lucille ball? Lucy Ricardo 4.367 formula ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.actor (var x)))) fb:en.lucille_ball)) (value (list (name fb:m.0gz7n28 "Lucy Barker") (name fb:m.0gz7n2k "Lucy Carter") (name fb:m.0rz85y9 "Lucy Ricardo") (name fb:m.0gz6vvg "Lucy Carmichael"))) (type fb:tv.tv_character) what was lucille ball? Lucy Carmichael 4.367 formula ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.actor (var x)))) fb:en.lucille_ball)) (value (list (name fb:m.0gz7n28 "Lucy Barker") (name fb:m.0gz7n2k "Lucy Carter") (name fb:m.0rz85y9 "Lucy Ricardo") (name fb:m.0gz6vvg "Lucy Carmichael"))) (type fb:tv.tv_character) who did carrie ann inaba get engaged to? Jesse Sloan 12.951 formula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.carrie_ann_inaba)) (value (list (name fb:m.0j6j0lv "Jesse Sloan"))) (type fb:people.person) who inspired obama? Adam Frankel 2.439 formula (and (fb:type.object.type fb:people.person) ((lambda x (!fb:business.employment_tenure.person (!fb:business.employer.employees (var x)))) fb:en.barack_obama))) (value (list (name fb:en.adam_frankel "Adam Frankel") (name fb:m.04j4_qc "Ben Rhodes"))) (type fb:people.person) who inspired obama? Ben Rhodes 2.439 formula (and (fb:type.object.type fb:people.person) ((lambda x (!fb:business.employment_tenure.person (!fb:business.employer.employees (var x)))) fb:en.barack_obama))) (value (list (name fb:en.adam_frankel "Adam Frankel") (name fb:m.04j4_qc "Ben Rhodes"))) (type fb:people.person) who is michael j fox wife? Tracy Pollan 10.069 formula ((lambda x (!fb:people.marriage.spouse (!fb:people.person.spouse_s (var x)))) fb:en.michael_j_fox)) (value (list (name fb:en.tracy_pollan "Tracy Pollan"))) (type fb:people.person) what type of books did agatha christie wrote? The Complete Christie: An Agatha Christie Encyclopedia 9.891 formula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.agatha_christie))) (value (list (name fb:m.06_fjgf "The Complete Christie: An Agatha Christie Encyclopedia") (name fb:en.the_getaway_guide_to_agatha_christies_england "The Getaway Guide to Agatha Christie's England") (name fb:en.agatha_christie_and_the_eleven_missing_days "Agatha Christie and the Eleven Missing Days"))) (type (union fb:book.book)) what type of books did agatha christie wrote? The Getaway Guide to Agatha Christie's England 9.891 formula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.agatha_christie))) (value (list (name fb:m.06_fjgf "The Complete Christie: An Agatha Christie Encyclopedia") (name fb:en.the_getaway_guide_to_agatha_christies_england "The Getaway Guide to Agatha Christie's England") (name fb:en.agatha_christie_and_the_eleven_missing_days "Agatha Christie and the Eleven Missing Days"))) (type (union fb:book.book)) what type of books did agatha christie wrote? Agatha Christie and the Eleven Missing Days 9.891 formula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.agatha_christie))) (value (list (name fb:m.06_fjgf "The Complete Christie: An Agatha Christie Encyclopedia") (name fb:en.the_getaway_guide_to_agatha_christies_england "The Getaway Guide to Agatha Christie's England") (name fb:en.agatha_christie_and_the_eleven_missing_days "Agatha Christie and the Eleven Missing Days"))) (type (union fb:book.book)) what is jimi hendrix purple haze about? Bass guitar 7.488 formula (!fb:music.group_member.instruments_played fb:en.jimi_hendrix)) (value (list (name fb:en.piano Piano) (name fb:en.guitar Guitar) (name fb:en.bass_guitar "Bass guitar") (name fb:en.electric_guitar "Electric guitar") (name fb:en.drum Drum) (name fb:en.recorder recorder) (name fb:en.harpsichord harpsichord))) (type fb:music.instrument) what is jimi hendrix purple haze about? Electric guitar 7.488 formula (!fb:music.group_member.instruments_played fb:en.jimi_hendrix)) (value (list (name fb:en.piano Piano) (name fb:en.guitar Guitar) (name fb:en.bass_guitar "Bass guitar") (name fb:en.electric_guitar "Electric guitar") (name fb:en.drum Drum) (name fb:en.recorder recorder) (name fb:en.harpsichord harpsichord))) (type fb:music.instrument) what are the four main languages spoken in spain? Spanish Language 19.291 formula (!fb:location.country.official_language fb:en.spain)) (value (list (name fb:en.spanish "Spanish Language"))) (type fb:language.human_language) what is the song anna kendrick sings in pitch perfect? High Society 7.847 formula ((lambda x (fb:theater.theater_production.cast (fb:theater.theater_role.actor (var x)))) fb:en.anna_kendrick)) (value (list (name fb:m.0ly0vsq "High Society"))) (type fb:theater.theater_production) who developed the tcp ip reference model? Books and Writers 4.147 formula (fb:internet.website.category fb:en.reference)) (value (list (name fb:m.0hgwnyb "Books and Writers") (name fb:en.encyclopedia_of_life "Encyclopedia of Life") (name fb:en.stands4 STANDS4) (name fb:en.ritchiewiki RitchieWiki) (name fb:en.wordster Wordster) (name fb:m.0hgwpbk "Elizabeth Nesbitt Illustrators") (name fb:en.wordnik Wordnik) (name fb:m.0hgwq1v "Jacket Flap"))) (type fb:internet.website) who developed the tcp ip reference model? Encyclopedia of Life 4.147 formula (fb:internet.website.category fb:en.reference)) (value (list (name fb:m.0hgwnyb "Books and Writers") (name fb:en.encyclopedia_of_life "Encyclopedia of Life") (name fb:en.stands4 STANDS4) (name fb:en.ritchiewiki RitchieWiki) (name fb:en.wordster Wordster) (name fb:m.0hgwpbk "Elizabeth Nesbitt Illustrators") (name fb:en.wordnik Wordnik) (name fb:m.0hgwq1v "Jacket Flap"))) (type fb:internet.website) who developed the tcp ip reference model? Elizabeth Nesbitt Illustrators 4.147 formula (fb:internet.website.category fb:en.reference)) (value (list (name fb:m.0hgwnyb "Books and Writers") (name fb:en.encyclopedia_of_life "Encyclopedia of Life") (name fb:en.stands4 STANDS4) (name fb:en.ritchiewiki RitchieWiki) (name fb:en.wordster Wordster) (name fb:m.0hgwpbk "Elizabeth Nesbitt Illustrators") (name fb:en.wordnik Wordnik) (name fb:m.0hgwq1v "Jacket Flap"))) (type fb:internet.website) who developed the tcp ip reference model? Jacket Flap 4.147 formula (fb:internet.website.category fb:en.reference)) (value (list (name fb:m.0hgwnyb "Books and Writers") (name fb:en.encyclopedia_of_life "Encyclopedia of Life") (name fb:en.stands4 STANDS4) (name fb:en.ritchiewiki RitchieWiki) (name fb:en.wordster Wordster) (name fb:m.0hgwpbk "Elizabeth Nesbitt Illustrators") (name fb:en.wordnik Wordnik) (name fb:m.0hgwq1v "Jacket Flap"))) (type fb:internet.website) who founded the pittsburgh steelers in 1933? Kevin Colbert 9.959 formula ((lambda x (!fb:business.employment_tenure.person (!fb:business.employer.employees (var x)))) fb:en.pittsburgh_steelers)) (value (list (name fb:en.kevin_colbert "Kevin Colbert"))) (type fb:people.person) what college did albert einstein go to? ETH Zurich 19.53 formula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.albert_einstein))) (value (list (name fb:en.eth_zurich "ETH Zurich") (name fb:en.university_of_zurich "University of Zurich"))) (type fb:education.university) what college did albert einstein go to? University of Zurich 19.53 formula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.albert_einstein))) (value (list (name fb:en.eth_zurich "ETH Zurich") (name fb:en.university_of_zurich "University of Zurich"))) (type fb:education.university) what team does jordan own? Anadolu Efes S.K. 14.89 formula ((lambda x (!fb:basketball.basketball_roster_position.team (!fb:basketball.basketball_player.team (var x)))) fb:en.jordan_farmar)) (value (list (name fb:en.efes_pilsen_sk "Anadolu Efes S.K."))) (type fb:basketball.basketball_team) who is the state governor of tennessee? Robert E. Cooper, Jr. 13.088 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.tennesee)) (value (list (name fb:en.robert_e_cooper_jr "Robert E. Cooper, Jr.") (name fb:en.andrew_johnson "Andrew Johnson") (name fb:en.bill_haslam "Bill Haslam") (name fb:en.phil_bredesen "Phil Bredesen") (name fb:en.james_k_polk "James K. Polk") (name fb:en.tre_hargett "Tre Hargett") (name fb:m.0cm8q_b "Ken Givens"))) (type fb:government.politician) who is the state governor of tennessee? Andrew Johnson 13.088 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.tennesee)) (value (list (name fb:en.robert_e_cooper_jr "Robert E. Cooper, Jr.") (name fb:en.andrew_johnson "Andrew Johnson") (name fb:en.bill_haslam "Bill Haslam") (name fb:en.phil_bredesen "Phil Bredesen") (name fb:en.james_k_polk "James K. Polk") (name fb:en.tre_hargett "Tre Hargett") (name fb:m.0cm8q_b "Ken Givens"))) (type fb:government.politician) who is the state governor of tennessee? Bill Haslam 13.088 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.tennesee)) (value (list (name fb:en.robert_e_cooper_jr "Robert E. Cooper, Jr.") (name fb:en.andrew_johnson "Andrew Johnson") (name fb:en.bill_haslam "Bill Haslam") (name fb:en.phil_bredesen "Phil Bredesen") (name fb:en.james_k_polk "James K. Polk") (name fb:en.tre_hargett "Tre Hargett") (name fb:m.0cm8q_b "Ken Givens"))) (type fb:government.politician) who is the state governor of tennessee? Phil Bredesen 13.088 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.tennesee)) (value (list (name fb:en.robert_e_cooper_jr "Robert E. Cooper, Jr.") (name fb:en.andrew_johnson "Andrew Johnson") (name fb:en.bill_haslam "Bill Haslam") (name fb:en.phil_bredesen "Phil Bredesen") (name fb:en.james_k_polk "James K. Polk") (name fb:en.tre_hargett "Tre Hargett") (name fb:m.0cm8q_b "Ken Givens"))) (type fb:government.politician) who is the state governor of tennessee? James K. Polk 13.088 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.tennesee)) (value (list (name fb:en.robert_e_cooper_jr "Robert E. Cooper, Jr.") (name fb:en.andrew_johnson "Andrew Johnson") (name fb:en.bill_haslam "Bill Haslam") (name fb:en.phil_bredesen "Phil Bredesen") (name fb:en.james_k_polk "James K. Polk") (name fb:en.tre_hargett "Tre Hargett") (name fb:m.0cm8q_b "Ken Givens"))) (type fb:government.politician) who is the state governor of tennessee? Tre Hargett 13.088 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.tennesee)) (value (list (name fb:en.robert_e_cooper_jr "Robert E. Cooper, Jr.") (name fb:en.andrew_johnson "Andrew Johnson") (name fb:en.bill_haslam "Bill Haslam") (name fb:en.phil_bredesen "Phil Bredesen") (name fb:en.james_k_polk "James K. Polk") (name fb:en.tre_hargett "Tre Hargett") (name fb:m.0cm8q_b "Ken Givens"))) (type fb:government.politician) who is the state governor of tennessee? Ken Givens 13.088 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.tennesee)) (value (list (name fb:en.robert_e_cooper_jr "Robert E. Cooper, Jr.") (name fb:en.andrew_johnson "Andrew Johnson") (name fb:en.bill_haslam "Bill Haslam") (name fb:en.phil_bredesen "Phil Bredesen") (name fb:en.james_k_polk "James K. Polk") (name fb:en.tre_hargett "Tre Hargett") (name fb:m.0cm8q_b "Ken Givens"))) (type fb:government.politician) who is eli whitney and what did he invent? Cotton gin 23.479 formula (fb:law.invention.inventor fb:en.eli_whitney)) (value (list (name fb:en.cotton_gin "Cotton gin") (name fb:en.milling_machine Milling) (name fb:en.interchangeable_parts "Interchangeable parts"))) (type fb:law.invention) who is eli whitney and what did he invent? Interchangeable parts 23.479 formula (fb:law.invention.inventor fb:en.eli_whitney)) (value (list (name fb:en.cotton_gin "Cotton gin") (name fb:en.milling_machine Milling) (name fb:en.interchangeable_parts "Interchangeable parts"))) (type fb:law.invention) what do portuguese people speak? Portuguese Language 10.925 formula (!fb:people.ethnicity.languages_spoken fb:en.portuguese_people)) (value (list (name fb:en.portuguese "Portuguese Language"))) (type fb:language.human_language) what language does cuba speak? Spanish Language 16.572 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.cuba))) (value (list (name fb:en.spanish "Spanish Language"))) (type (union fb:language.human_language)) where did aaron rodgers go to high school? University of California, Berkeley 14.918 formula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.aaron_rodgers)))) (value (list (name fb:en.university_of_california_berkeley "University of California, Berkeley") (name fb:en.butte_college "Butte College") (name fb:en.pleasant_valley_high_school "Pleasant Valley High School"))) (type fb:education.educational_institution) where did aaron rodgers go to high school? Butte College 14.918 formula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.aaron_rodgers)))) (value (list (name fb:en.university_of_california_berkeley "University of California, Berkeley") (name fb:en.butte_college "Butte College") (name fb:en.pleasant_valley_high_school "Pleasant Valley High School"))) (type fb:education.educational_institution) where did aaron rodgers go to high school? Pleasant Valley High School 14.918 formula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.aaron_rodgers)))) (value (list (name fb:en.university_of_california_berkeley "University of California, Berkeley") (name fb:en.butte_college "Butte College") (name fb:en.pleasant_valley_high_school "Pleasant Valley High School"))) (type fb:education.educational_institution) what are the sights to see in madrid? Museo del Prado 12.444 formula (!fb:travel.travel_destination.tourist_attractions fb:en.madrid)) (value (list (name fb:en.prado_museum "Museo del Prado") (name fb:en.plaza_mayor_of_madrid "Plaza Mayor, Madrid") (name fb:en.madrid_arena "Madrid Arena") (name fb:en.el_escorial "El Escorial") (name fb:en.museo_thyssen-bornemisza "Thyssen-Bornemisza Museum") (name fb:en.museo_sorolla "Museo Sorolla") (name fb:en.royal_palace_of_madrid "Royal Palace of Madrid") (name fb:en.museo_nacional_centro_de_arte_reina_sofia "Museo Nacional Centro de Arte Reina Sofía") (name fb:en.parque_warner_madrid "Parque Warner Madrid") (name fb:en.paseo_del_prado "Paseo del Prado"))) (type fb:travel.tourist_attraction) what are the sights to see in madrid? Plaza Mayor, Madrid 12.444 formula (!fb:travel.travel_destination.tourist_attractions fb:en.madrid)) (value (list (name fb:en.prado_museum "Museo del Prado") (name fb:en.plaza_mayor_of_madrid "Plaza Mayor, Madrid") (name fb:en.madrid_arena "Madrid Arena") (name fb:en.el_escorial "El Escorial") (name fb:en.museo_thyssen-bornemisza "Thyssen-Bornemisza Museum") (name fb:en.museo_sorolla "Museo Sorolla") (name fb:en.royal_palace_of_madrid "Royal Palace of Madrid") (name fb:en.museo_nacional_centro_de_arte_reina_sofia "Museo Nacional Centro de Arte Reina Sofía") (name fb:en.parque_warner_madrid "Parque Warner Madrid") (name fb:en.paseo_del_prado "Paseo del Prado"))) (type fb:travel.tourist_attraction) what are the sights to see in madrid? Madrid Arena 12.444 formula (!fb:travel.travel_destination.tourist_attractions fb:en.madrid)) (value (list (name fb:en.prado_museum "Museo del Prado") (name fb:en.plaza_mayor_of_madrid "Plaza Mayor, Madrid") (name fb:en.madrid_arena "Madrid Arena") (name fb:en.el_escorial "El Escorial") (name fb:en.museo_thyssen-bornemisza "Thyssen-Bornemisza Museum") (name fb:en.museo_sorolla "Museo Sorolla") (name fb:en.royal_palace_of_madrid "Royal Palace of Madrid") (name fb:en.museo_nacional_centro_de_arte_reina_sofia "Museo Nacional Centro de Arte Reina Sofía") (name fb:en.parque_warner_madrid "Parque Warner Madrid") (name fb:en.paseo_del_prado "Paseo del Prado"))) (type fb:travel.tourist_attraction) what are the sights to see in madrid? El Escorial 12.444 formula (!fb:travel.travel_destination.tourist_attractions fb:en.madrid)) (value (list (name fb:en.prado_museum "Museo del Prado") (name fb:en.plaza_mayor_of_madrid "Plaza Mayor, Madrid") (name fb:en.madrid_arena "Madrid Arena") (name fb:en.el_escorial "El Escorial") (name fb:en.museo_thyssen-bornemisza "Thyssen-Bornemisza Museum") (name fb:en.museo_sorolla "Museo Sorolla") (name fb:en.royal_palace_of_madrid "Royal Palace of Madrid") (name fb:en.museo_nacional_centro_de_arte_reina_sofia "Museo Nacional Centro de Arte Reina Sofía") (name fb:en.parque_warner_madrid "Parque Warner Madrid") (name fb:en.paseo_del_prado "Paseo del Prado"))) (type fb:travel.tourist_attraction) what are the sights to see in madrid? Thyssen-Bornemisza Museum 12.444 formula (!fb:travel.travel_destination.tourist_attractions fb:en.madrid)) (value (list (name fb:en.prado_museum "Museo del Prado") (name fb:en.plaza_mayor_of_madrid "Plaza Mayor, Madrid") (name fb:en.madrid_arena "Madrid Arena") (name fb:en.el_escorial "El Escorial") (name fb:en.museo_thyssen-bornemisza "Thyssen-Bornemisza Museum") (name fb:en.museo_sorolla "Museo Sorolla") (name fb:en.royal_palace_of_madrid "Royal Palace of Madrid") (name fb:en.museo_nacional_centro_de_arte_reina_sofia "Museo Nacional Centro de Arte Reina Sofía") (name fb:en.parque_warner_madrid "Parque Warner Madrid") (name fb:en.paseo_del_prado "Paseo del Prado"))) (type fb:travel.tourist_attraction) what are the sights to see in madrid? Museo Sorolla 12.444 formula (!fb:travel.travel_destination.tourist_attractions fb:en.madrid)) (value (list (name fb:en.prado_museum "Museo del Prado") (name fb:en.plaza_mayor_of_madrid "Plaza Mayor, Madrid") (name fb:en.madrid_arena "Madrid Arena") (name fb:en.el_escorial "El Escorial") (name fb:en.museo_thyssen-bornemisza "Thyssen-Bornemisza Museum") (name fb:en.museo_sorolla "Museo Sorolla") (name fb:en.royal_palace_of_madrid "Royal Palace of Madrid") (name fb:en.museo_nacional_centro_de_arte_reina_sofia "Museo Nacional Centro de Arte Reina Sofía") (name fb:en.parque_warner_madrid "Parque Warner Madrid") (name fb:en.paseo_del_prado "Paseo del Prado"))) (type fb:travel.tourist_attraction) what are the sights to see in madrid? Royal Palace of Madrid 12.444 formula (!fb:travel.travel_destination.tourist_attractions fb:en.madrid)) (value (list (name fb:en.prado_museum "Museo del Prado") (name fb:en.plaza_mayor_of_madrid "Plaza Mayor, Madrid") (name fb:en.madrid_arena "Madrid Arena") (name fb:en.el_escorial "El Escorial") (name fb:en.museo_thyssen-bornemisza "Thyssen-Bornemisza Museum") (name fb:en.museo_sorolla "Museo Sorolla") (name fb:en.royal_palace_of_madrid "Royal Palace of Madrid") (name fb:en.museo_nacional_centro_de_arte_reina_sofia "Museo Nacional Centro de Arte Reina Sofía") (name fb:en.parque_warner_madrid "Parque Warner Madrid") (name fb:en.paseo_del_prado "Paseo del Prado"))) (type fb:travel.tourist_attraction) what are the sights to see in madrid? Museo Nacional Centro de Arte Reina Sofía 12.444 formula (!fb:travel.travel_destination.tourist_attractions fb:en.madrid)) (value (list (name fb:en.prado_museum "Museo del Prado") (name fb:en.plaza_mayor_of_madrid "Plaza Mayor, Madrid") (name fb:en.madrid_arena "Madrid Arena") (name fb:en.el_escorial "El Escorial") (name fb:en.museo_thyssen-bornemisza "Thyssen-Bornemisza Museum") (name fb:en.museo_sorolla "Museo Sorolla") (name fb:en.royal_palace_of_madrid "Royal Palace of Madrid") (name fb:en.museo_nacional_centro_de_arte_reina_sofia "Museo Nacional Centro de Arte Reina Sofía") (name fb:en.parque_warner_madrid "Parque Warner Madrid") (name fb:en.paseo_del_prado "Paseo del Prado"))) (type fb:travel.tourist_attraction) what are the sights to see in madrid? Parque Warner Madrid 12.444 formula (!fb:travel.travel_destination.tourist_attractions fb:en.madrid)) (value (list (name fb:en.prado_museum "Museo del Prado") (name fb:en.plaza_mayor_of_madrid "Plaza Mayor, Madrid") (name fb:en.madrid_arena "Madrid Arena") (name fb:en.el_escorial "El Escorial") (name fb:en.museo_thyssen-bornemisza "Thyssen-Bornemisza Museum") (name fb:en.museo_sorolla "Museo Sorolla") (name fb:en.royal_palace_of_madrid "Royal Palace of Madrid") (name fb:en.museo_nacional_centro_de_arte_reina_sofia "Museo Nacional Centro de Arte Reina Sofía") (name fb:en.parque_warner_madrid "Parque Warner Madrid") (name fb:en.paseo_del_prado "Paseo del Prado"))) (type fb:travel.tourist_attraction) what are the sights to see in madrid? Paseo del Prado 12.444 formula (!fb:travel.travel_destination.tourist_attractions fb:en.madrid)) (value (list (name fb:en.prado_museum "Museo del Prado") (name fb:en.plaza_mayor_of_madrid "Plaza Mayor, Madrid") (name fb:en.madrid_arena "Madrid Arena") (name fb:en.el_escorial "El Escorial") (name fb:en.museo_thyssen-bornemisza "Thyssen-Bornemisza Museum") (name fb:en.museo_sorolla "Museo Sorolla") (name fb:en.royal_palace_of_madrid "Royal Palace of Madrid") (name fb:en.museo_nacional_centro_de_arte_reina_sofia "Museo Nacional Centro de Arte Reina Sofía") (name fb:en.parque_warner_madrid "Parque Warner Madrid") (name fb:en.paseo_del_prado "Paseo del Prado"))) (type fb:travel.tourist_attraction) what year was george w bush elected? Contra Costa County 9.526 formula ((lambda x (fb:user.coco.voting.voting_stat_region.election_results (fb:user.coco.voting.election_results.politician (var x)))) fb:en.george_w_bush)) (value (list (name fb:en.contra_costa_county "Contra Costa County") (name fb:en.napa_county "Napa County") (name fb:en.alameda_county "Alameda County"))) (type fb:user.coco.voting.voting_stat_region) what year was george w bush elected? Napa County 9.526 formula ((lambda x (fb:user.coco.voting.voting_stat_region.election_results (fb:user.coco.voting.election_results.politician (var x)))) fb:en.george_w_bush)) (value (list (name fb:en.contra_costa_county "Contra Costa County") (name fb:en.napa_county "Napa County") (name fb:en.alameda_county "Alameda County"))) (type fb:user.coco.voting.voting_stat_region) what year was george w bush elected? Alameda County 9.526 formula ((lambda x (fb:user.coco.voting.voting_stat_region.election_results (fb:user.coco.voting.election_results.politician (var x)))) fb:en.george_w_bush)) (value (list (name fb:en.contra_costa_county "Contra Costa County") (name fb:en.napa_county "Napa County") (name fb:en.alameda_county "Alameda County"))) (type fb:user.coco.voting.voting_stat_region) what time zone am i in california? Pacific Time Zone 27.27 formula (and (fb:type.object.type fb:time.time_zone) (fb:time.time_zone.locations_in_this_time_zone fb:en.california))) (value (list (name fb:en.pacific_time_zone "Pacific Time Zone") (name fb:en.utc-8 UTC-8))) (type (union fb:time.time_zone)) where is mission san buenaventura located? Ventura County 6.34 formula (and (fb:type.object.type fb:location.location) (!fb:location.location.containedby fb:en.mission_san_buenaventura))) (value (list (name fb:en.93001 93001) (name fb:en.ventura_county "Ventura County"))) (type fb:location.location) who was the italian leader in ww1? Entertainment Weekly annotation index 7.413 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.italian)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index"))) (type fb:common.annotation_index) who was the italian leader in ww1? WSJ Speakeasy Index 7.413 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.italian)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index"))) (type fb:common.annotation_index) what time in hilo hawaii? Hawaii–Aleutian Time Zone 2.662 formula (!fb:location.location.time_zones fb:en.hilo)) (value (list (name fb:en.hawaii-aleutian_time_zone "Hawaii–Aleutian Time Zone"))) (type fb:time.time_zone) where did rudolf virchow conduct his research? German Empire 4.333 formula (and (fb:type.object.type fb:location.location) (!fb:people.deceased_person.place_of_death fb:en.rudolf_ludwig_karl_virchow))) (value (list (name fb:en.german_empire "German Empire"))) (type fb:location.location) what university did gordon brown attend? University of Edinburgh 12.746 formula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.gordon_brown))) (value (list (name fb:en.university_of_edinburgh "University of Edinburgh"))) (type fb:education.university) what countries does greece share borders with? Republic of Macedonia 19.949 formula (and (fb:type.object.type fb:location.country) ((lambda x (!fb:location.adjoining_relationship.adjoins (!fb:location.location.adjoin_s (var x)))) fb:en.greece))) (value (list (name fb:en.bulgaria Bulgaria) (name fb:en.republic_of_macedonia "Republic of Macedonia") (name fb:en.albania_france Albania) (name fb:en.turkey Turkey))) (type fb:location.country) what year did the seahawks win the superbowl? Super Bowl XL 10.661 formula (and (fb:type.object.type fb:sports.sports_championship_event) (fb:sports.sports_championship_event.runner_up fb:en.seattle_seahawks))) (value (list (name fb:en.super_bowl_xl "Super Bowl XL"))) (type (union fb:sports.sports_championship_event)) who plays donna noble? Catherine Tate 5.787 formula ((lambda x (fb:tv.tv_actor.starring_roles (fb:tv.regular_tv_appearance.character (var x)))) fb:en.donna_noble)) (value (list (name fb:en.catherine_tate "Catherine Tate"))) (type fb:tv.tv_actor) what was dr seuss education? Dartmouth College 15.355 formula ((lambda x (!fb:education.education.institution (!fb:people.person.education (var x)))) fb:en.dr_seuss)) (value (list (name fb:en.dartmouth_college "Dartmouth College") (name fb:en.university_of_oxford "University of Oxford") (name fb:en.lincoln_college_oxford "Lincoln College, Oxford"))) (type fb:education.educational_institution) what was dr seuss education? University of Oxford 15.355 formula ((lambda x (!fb:education.education.institution (!fb:people.person.education (var x)))) fb:en.dr_seuss)) (value (list (name fb:en.dartmouth_college "Dartmouth College") (name fb:en.university_of_oxford "University of Oxford") (name fb:en.lincoln_college_oxford "Lincoln College, Oxford"))) (type fb:education.educational_institution) what was dr seuss education? Lincoln College, Oxford 15.355 formula ((lambda x (!fb:education.education.institution (!fb:people.person.education (var x)))) fb:en.dr_seuss)) (value (list (name fb:en.dartmouth_college "Dartmouth College") (name fb:en.university_of_oxford "University of Oxford") (name fb:en.lincoln_college_oxford "Lincoln College, Oxford"))) (type fb:education.educational_institution) where did queensland get its name from? Queen Victoria 6.523 formula (!fb:symbols.namesake.named_after fb:en.queensland)) (value (list (name fb:en.victoria_of_the_united_kingdom "Queen Victoria"))) (type fb:symbols.name_source) what document did james madison write? United States Constitution 11.195 formula (!fb:user.tfmorris.default_domain.signatory.documents_signed fb:en.james_madison)) (value (list (name fb:en.united_states_constitution "United States Constitution"))) (type fb:user.tfmorris.default_domain.document) what are the three official languages of belgium? Dutch Language 22.112 formula (!fb:location.country.official_language fb:en.belgium)) (value (list (name fb:en.dutch_language "Dutch Language") (name fb:en.german_language "German Language") (name fb:en.french "French Language"))) (type fb:language.human_language) what are the three official languages of belgium? German Language 22.112 formula (!fb:location.country.official_language fb:en.belgium)) (value (list (name fb:en.dutch_language "Dutch Language") (name fb:en.german_language "German Language") (name fb:en.french "French Language"))) (type fb:language.human_language) what are the three official languages of belgium? French Language 22.112 formula (!fb:location.country.official_language fb:en.belgium)) (value (list (name fb:en.dutch_language "Dutch Language") (name fb:en.german_language "German Language") (name fb:en.french "French Language"))) (type fb:language.human_language) who played bilbo in lord of the rings? Martin Freeman 6.219 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.bilbo_baggins)) (value (list (name fb:en.martin_freeman "Martin Freeman") (name fb:en.norman_bird "Norman Bird") (name fb:en.ian_holm "Ian Holm"))) (type fb:film.actor) who played bilbo in lord of the rings? Norman Bird 6.219 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.bilbo_baggins)) (value (list (name fb:en.martin_freeman "Martin Freeman") (name fb:en.norman_bird "Norman Bird") (name fb:en.ian_holm "Ian Holm"))) (type fb:film.actor) who played bilbo in lord of the rings? Ian Holm 6.219 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.bilbo_baggins)) (value (list (name fb:en.martin_freeman "Martin Freeman") (name fb:en.norman_bird "Norman Bird") (name fb:en.ian_holm "Ian Holm"))) (type fb:film.actor) what airport do you fly into to get to destin fl? Northwest Florida Regional Airport 24.596 formula (!fb:location.location.nearby_airports fb:en.destin)) (value (list (name fb:en.okaloosa_regional_airport "Northwest Florida Regional Airport") (name fb:en.destin_fort_walton_beach_airport "Destin–Fort Walton Beach Airport"))) (type fb:aviation.airport) what airport do you fly into to get to destin fl? Destin–Fort Walton Beach Airport 24.596 formula (!fb:location.location.nearby_airports fb:en.destin)) (value (list (name fb:en.okaloosa_regional_airport "Northwest Florida Regional Airport") (name fb:en.destin_fort_walton_beach_airport "Destin–Fort Walton Beach Airport"))) (type fb:aviation.airport) what do you call members of the senate? Andrew Pulkrabek 14.871 formula ((lambda x (fb:music.group_member.membership (fb:music.group_membership.group (var x)))) fb:m.0dnmtk4)) (value (list (name fb:m.0dxf27k "Andrew Pulkrabek") (name fb:m.0dsq4hl "Oliver Franklin") (name fb:m.0dt32_j "Nick Drummond"))) (type fb:music.group_member) what do you call members of the senate? Oliver Franklin 14.871 formula ((lambda x (fb:music.group_member.membership (fb:music.group_membership.group (var x)))) fb:m.0dnmtk4)) (value (list (name fb:m.0dxf27k "Andrew Pulkrabek") (name fb:m.0dsq4hl "Oliver Franklin") (name fb:m.0dt32_j "Nick Drummond"))) (type fb:music.group_member) what do you call members of the senate? Nick Drummond 14.871 formula ((lambda x (fb:music.group_member.membership (fb:music.group_membership.group (var x)))) fb:m.0dnmtk4)) (value (list (name fb:m.0dxf27k "Andrew Pulkrabek") (name fb:m.0dsq4hl "Oliver Franklin") (name fb:m.0dt32_j "Nick Drummond"))) (type fb:music.group_member) what team does colin kaepernick play for? San Francisco 49ers 14.875 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.colin_kaepernick))) (value (list (name fb:en.san_francisco_49ers "San Francisco 49ers") (name fb:en.nevada_wolf_pack_football "Nevada Wolf Pack football"))) (type fb:sports.sports_team) what team does colin kaepernick play for? Nevada Wolf Pack football 14.875 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.colin_kaepernick))) (value (list (name fb:en.san_francisco_49ers "San Francisco 49ers") (name fb:en.nevada_wolf_pack_football "Nevada Wolf Pack football"))) (type fb:sports.sports_team) where did joe flacco attend college? University of Delaware 9.343 formula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.drafted_athlete.drafted (var x)))) fb:en.joe_flacco)))) (value (list (name fb:en.university_of_delaware "University of Delaware"))) (type fb:education.university) who is emma stone father? Krista Stone 12.266 formula (!fb:people.person.parents fb:en.emily_stone)) (value (list (name fb:m.0gx3qyj "Krista Stone") (name fb:m.0gx3qys "Jeff Stone"))) (type fb:people.person) who is emma stone father? Jeff Stone 12.266 formula (!fb:people.person.parents fb:en.emily_stone)) (value (list (name fb:m.0gx3qyj "Krista Stone") (name fb:m.0gx3qys "Jeff Stone"))) (type fb:people.person) where was theodore roosevelt buried? Youngs Memorial Cemetery 8.355 formula (and (fb:type.object.type fb:location.location) (fb:people.place_of_interment.interred_here fb:en.theodore_roosevelt))) (value (list (name fb:en.youngs_memorial_cemetery "Youngs Memorial Cemetery"))) (type fb:people.place_of_interment) where the missouri river ends? Glacier National Park 2.565 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.missouri_river))) (value (list (name fb:en.glacier_national_park "Glacier National Park") (name fb:en.lewis_and_clark_national_historic_trail "Lewis and Clark National Historic Trail"))) (type fb:travel.tourist_attraction) where the missouri river ends? Lewis and Clark National Historic Trail 2.565 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.missouri_river))) (value (list (name fb:en.glacier_national_park "Glacier National Park") (name fb:en.lewis_and_clark_national_historic_trail "Lewis and Clark National Historic Trail"))) (type fb:travel.tourist_attraction) what type of currency do they use in thailand? Thai baht 22.106 formula (!fb:location.country.currency_used fb:en.thailand)) (value (list (name fb:en.thai_baht "Thai baht"))) (type fb:finance.currency) what type of government does france use? CFP franc 17.049 formula (fb:finance.currency.countries_used fb:en.france)) (value (list (name fb:en.euro Euro) (name fb:en.cfp_franc "CFP franc"))) (type fb:finance.currency) who rules denmark right now? Christian X of Denmark 19.412 formula (!fb:royalty.kingdom.rulers fb:en.denmark)) (value (list (name fb:en.christian_x_of_denmark "Christian X of Denmark") (name fb:en.frederick_ii_of_denmark "Frederick II of Denmark") (name fb:en.frederick_iv_of_denmark "Frederick IV of Denmark") (name fb:en.eric_i_of_denmark "Eric I of Denmark") (name fb:en.canute_the_great "Cnut the Great") (name fb:en.christian_v_of_denmark "Christian V of Denmark") (name fb:en.margrethe_ii_of_denmark "Margrethe II of Denmark") (name fb:en.harthacanute Harthacnut) (name fb:en.frederick_i_of_denmark "Frederick I of Denmark") (name fb:en.frederick_vii_of_denmark "Frederick VII of Denmark"))) (type fb:royalty.monarch) who rules denmark right now? Frederick II of Denmark 19.412 formula (!fb:royalty.kingdom.rulers fb:en.denmark)) (value (list (name fb:en.christian_x_of_denmark "Christian X of Denmark") (name fb:en.frederick_ii_of_denmark "Frederick II of Denmark") (name fb:en.frederick_iv_of_denmark "Frederick IV of Denmark") (name fb:en.eric_i_of_denmark "Eric I of Denmark") (name fb:en.canute_the_great "Cnut the Great") (name fb:en.christian_v_of_denmark "Christian V of Denmark") (name fb:en.margrethe_ii_of_denmark "Margrethe II of Denmark") (name fb:en.harthacanute Harthacnut) (name fb:en.frederick_i_of_denmark "Frederick I of Denmark") (name fb:en.frederick_vii_of_denmark "Frederick VII of Denmark"))) (type fb:royalty.monarch) who rules denmark right now? Frederick IV of Denmark 19.412 formula (!fb:royalty.kingdom.rulers fb:en.denmark)) (value (list (name fb:en.christian_x_of_denmark "Christian X of Denmark") (name fb:en.frederick_ii_of_denmark "Frederick II of Denmark") (name fb:en.frederick_iv_of_denmark "Frederick IV of Denmark") (name fb:en.eric_i_of_denmark "Eric I of Denmark") (name fb:en.canute_the_great "Cnut the Great") (name fb:en.christian_v_of_denmark "Christian V of Denmark") (name fb:en.margrethe_ii_of_denmark "Margrethe II of Denmark") (name fb:en.harthacanute Harthacnut) (name fb:en.frederick_i_of_denmark "Frederick I of Denmark") (name fb:en.frederick_vii_of_denmark "Frederick VII of Denmark"))) (type fb:royalty.monarch) who rules denmark right now? Eric I of Denmark 19.412 formula (!fb:royalty.kingdom.rulers fb:en.denmark)) (value (list (name fb:en.christian_x_of_denmark "Christian X of Denmark") (name fb:en.frederick_ii_of_denmark "Frederick II of Denmark") (name fb:en.frederick_iv_of_denmark "Frederick IV of Denmark") (name fb:en.eric_i_of_denmark "Eric I of Denmark") (name fb:en.canute_the_great "Cnut the Great") (name fb:en.christian_v_of_denmark "Christian V of Denmark") (name fb:en.margrethe_ii_of_denmark "Margrethe II of Denmark") (name fb:en.harthacanute Harthacnut) (name fb:en.frederick_i_of_denmark "Frederick I of Denmark") (name fb:en.frederick_vii_of_denmark "Frederick VII of Denmark"))) (type fb:royalty.monarch) who rules denmark right now? Cnut the Great 19.412 formula (!fb:royalty.kingdom.rulers fb:en.denmark)) (value (list (name fb:en.christian_x_of_denmark "Christian X of Denmark") (name fb:en.frederick_ii_of_denmark "Frederick II of Denmark") (name fb:en.frederick_iv_of_denmark "Frederick IV of Denmark") (name fb:en.eric_i_of_denmark "Eric I of Denmark") (name fb:en.canute_the_great "Cnut the Great") (name fb:en.christian_v_of_denmark "Christian V of Denmark") (name fb:en.margrethe_ii_of_denmark "Margrethe II of Denmark") (name fb:en.harthacanute Harthacnut) (name fb:en.frederick_i_of_denmark "Frederick I of Denmark") (name fb:en.frederick_vii_of_denmark "Frederick VII of Denmark"))) (type fb:royalty.monarch) who rules denmark right now? Christian V of Denmark 19.412 formula (!fb:royalty.kingdom.rulers fb:en.denmark)) (value (list (name fb:en.christian_x_of_denmark "Christian X of Denmark") (name fb:en.frederick_ii_of_denmark "Frederick II of Denmark") (name fb:en.frederick_iv_of_denmark "Frederick IV of Denmark") (name fb:en.eric_i_of_denmark "Eric I of Denmark") (name fb:en.canute_the_great "Cnut the Great") (name fb:en.christian_v_of_denmark "Christian V of Denmark") (name fb:en.margrethe_ii_of_denmark "Margrethe II of Denmark") (name fb:en.harthacanute Harthacnut) (name fb:en.frederick_i_of_denmark "Frederick I of Denmark") (name fb:en.frederick_vii_of_denmark "Frederick VII of Denmark"))) (type fb:royalty.monarch) who rules denmark right now? Margrethe II of Denmark 19.412 formula (!fb:royalty.kingdom.rulers fb:en.denmark)) (value (list (name fb:en.christian_x_of_denmark "Christian X of Denmark") (name fb:en.frederick_ii_of_denmark "Frederick II of Denmark") (name fb:en.frederick_iv_of_denmark "Frederick IV of Denmark") (name fb:en.eric_i_of_denmark "Eric I of Denmark") (name fb:en.canute_the_great "Cnut the Great") (name fb:en.christian_v_of_denmark "Christian V of Denmark") (name fb:en.margrethe_ii_of_denmark "Margrethe II of Denmark") (name fb:en.harthacanute Harthacnut) (name fb:en.frederick_i_of_denmark "Frederick I of Denmark") (name fb:en.frederick_vii_of_denmark "Frederick VII of Denmark"))) (type fb:royalty.monarch) who rules denmark right now? Frederick I of Denmark 19.412 formula (!fb:royalty.kingdom.rulers fb:en.denmark)) (value (list (name fb:en.christian_x_of_denmark "Christian X of Denmark") (name fb:en.frederick_ii_of_denmark "Frederick II of Denmark") (name fb:en.frederick_iv_of_denmark "Frederick IV of Denmark") (name fb:en.eric_i_of_denmark "Eric I of Denmark") (name fb:en.canute_the_great "Cnut the Great") (name fb:en.christian_v_of_denmark "Christian V of Denmark") (name fb:en.margrethe_ii_of_denmark "Margrethe II of Denmark") (name fb:en.harthacanute Harthacnut) (name fb:en.frederick_i_of_denmark "Frederick I of Denmark") (name fb:en.frederick_vii_of_denmark "Frederick VII of Denmark"))) (type fb:royalty.monarch) who rules denmark right now? Frederick VII of Denmark 19.412 formula (!fb:royalty.kingdom.rulers fb:en.denmark)) (value (list (name fb:en.christian_x_of_denmark "Christian X of Denmark") (name fb:en.frederick_ii_of_denmark "Frederick II of Denmark") (name fb:en.frederick_iv_of_denmark "Frederick IV of Denmark") (name fb:en.eric_i_of_denmark "Eric I of Denmark") (name fb:en.canute_the_great "Cnut the Great") (name fb:en.christian_v_of_denmark "Christian V of Denmark") (name fb:en.margrethe_ii_of_denmark "Margrethe II of Denmark") (name fb:en.harthacanute Harthacnut) (name fb:en.frederick_i_of_denmark "Frederick I of Denmark") (name fb:en.frederick_vii_of_denmark "Frederick VII of Denmark"))) (type fb:royalty.monarch) where did bristol palin go to school? Juneau-Douglas High School 9.865 formula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.bristol_palin)))) (value (list (name fb:en.juneau-douglas_high_school "Juneau-Douglas High School") (name fb:en.wasilla_high_school "Wasilla High School") (name fb:en.west_anchorage_high_school "West Anchorage High School"))) (type fb:education.educational_institution) where did bristol palin go to school? Wasilla High School 9.865 formula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.bristol_palin)))) (value (list (name fb:en.juneau-douglas_high_school "Juneau-Douglas High School") (name fb:en.wasilla_high_school "Wasilla High School") (name fb:en.west_anchorage_high_school "West Anchorage High School"))) (type fb:education.educational_institution) where did bristol palin go to school? West Anchorage High School 9.865 formula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.bristol_palin)))) (value (list (name fb:en.juneau-douglas_high_school "Juneau-Douglas High School") (name fb:en.wasilla_high_school "Wasilla High School") (name fb:en.west_anchorage_high_school "West Anchorage High School"))) (type fb:education.educational_institution) what region of the world is egypt associated with? Minya Governorate 16.178 formula (!fb:location.country.first_level_divisions fb:en.egypt)) (value (list (name fb:en.al_minya_governorate "Minya Governorate") (name fb:en.ash_sharqiyah_governorate "Al Sharqia Governorate") (name fb:en.al_minufiyah "Al Minufiyah") (name fb:en.matruh "Matrouh Governorate") (name fb:en.al_wadi_al_jadid "New Valley Governorate") (name fb:en.ad_daqahliyah "Dakahlia Governorate") (name fb:en.al_gharbiyah_governorate "Gharbia Governorate") (name fb:en.al_bahr_al_ahmar "Red Sea Governorate") (name fb:en.shamal_sina "North Sinai Governorate") (name fb:en.janub_sina "South Sinai Governorate"))) (type fb:location.administrative_division) what region of the world is egypt associated with? Al Sharqia Governorate 16.178 formula (!fb:location.country.first_level_divisions fb:en.egypt)) (value (list (name fb:en.al_minya_governorate "Minya Governorate") (name fb:en.ash_sharqiyah_governorate "Al Sharqia Governorate") (name fb:en.al_minufiyah "Al Minufiyah") (name fb:en.matruh "Matrouh Governorate") (name fb:en.al_wadi_al_jadid "New Valley Governorate") (name fb:en.ad_daqahliyah "Dakahlia Governorate") (name fb:en.al_gharbiyah_governorate "Gharbia Governorate") (name fb:en.al_bahr_al_ahmar "Red Sea Governorate") (name fb:en.shamal_sina "North Sinai Governorate") (name fb:en.janub_sina "South Sinai Governorate"))) (type fb:location.administrative_division) what region of the world is egypt associated with? Al Minufiyah 16.178 formula (!fb:location.country.first_level_divisions fb:en.egypt)) (value (list (name fb:en.al_minya_governorate "Minya Governorate") (name fb:en.ash_sharqiyah_governorate "Al Sharqia Governorate") (name fb:en.al_minufiyah "Al Minufiyah") (name fb:en.matruh "Matrouh Governorate") (name fb:en.al_wadi_al_jadid "New Valley Governorate") (name fb:en.ad_daqahliyah "Dakahlia Governorate") (name fb:en.al_gharbiyah_governorate "Gharbia Governorate") (name fb:en.al_bahr_al_ahmar "Red Sea Governorate") (name fb:en.shamal_sina "North Sinai Governorate") (name fb:en.janub_sina "South Sinai Governorate"))) (type fb:location.administrative_division) what region of the world is egypt associated with? Matrouh Governorate 16.178 formula (!fb:location.country.first_level_divisions fb:en.egypt)) (value (list (name fb:en.al_minya_governorate "Minya Governorate") (name fb:en.ash_sharqiyah_governorate "Al Sharqia Governorate") (name fb:en.al_minufiyah "Al Minufiyah") (name fb:en.matruh "Matrouh Governorate") (name fb:en.al_wadi_al_jadid "New Valley Governorate") (name fb:en.ad_daqahliyah "Dakahlia Governorate") (name fb:en.al_gharbiyah_governorate "Gharbia Governorate") (name fb:en.al_bahr_al_ahmar "Red Sea Governorate") (name fb:en.shamal_sina "North Sinai Governorate") (name fb:en.janub_sina "South Sinai Governorate"))) (type fb:location.administrative_division) what region of the world is egypt associated with? New Valley Governorate 16.178 formula (!fb:location.country.first_level_divisions fb:en.egypt)) (value (list (name fb:en.al_minya_governorate "Minya Governorate") (name fb:en.ash_sharqiyah_governorate "Al Sharqia Governorate") (name fb:en.al_minufiyah "Al Minufiyah") (name fb:en.matruh "Matrouh Governorate") (name fb:en.al_wadi_al_jadid "New Valley Governorate") (name fb:en.ad_daqahliyah "Dakahlia Governorate") (name fb:en.al_gharbiyah_governorate "Gharbia Governorate") (name fb:en.al_bahr_al_ahmar "Red Sea Governorate") (name fb:en.shamal_sina "North Sinai Governorate") (name fb:en.janub_sina "South Sinai Governorate"))) (type fb:location.administrative_division) what region of the world is egypt associated with? Dakahlia Governorate 16.178 formula (!fb:location.country.first_level_divisions fb:en.egypt)) (value (list (name fb:en.al_minya_governorate "Minya Governorate") (name fb:en.ash_sharqiyah_governorate "Al Sharqia Governorate") (name fb:en.al_minufiyah "Al Minufiyah") (name fb:en.matruh "Matrouh Governorate") (name fb:en.al_wadi_al_jadid "New Valley Governorate") (name fb:en.ad_daqahliyah "Dakahlia Governorate") (name fb:en.al_gharbiyah_governorate "Gharbia Governorate") (name fb:en.al_bahr_al_ahmar "Red Sea Governorate") (name fb:en.shamal_sina "North Sinai Governorate") (name fb:en.janub_sina "South Sinai Governorate"))) (type fb:location.administrative_division) what region of the world is egypt associated with? Gharbia Governorate 16.178 formula (!fb:location.country.first_level_divisions fb:en.egypt)) (value (list (name fb:en.al_minya_governorate "Minya Governorate") (name fb:en.ash_sharqiyah_governorate "Al Sharqia Governorate") (name fb:en.al_minufiyah "Al Minufiyah") (name fb:en.matruh "Matrouh Governorate") (name fb:en.al_wadi_al_jadid "New Valley Governorate") (name fb:en.ad_daqahliyah "Dakahlia Governorate") (name fb:en.al_gharbiyah_governorate "Gharbia Governorate") (name fb:en.al_bahr_al_ahmar "Red Sea Governorate") (name fb:en.shamal_sina "North Sinai Governorate") (name fb:en.janub_sina "South Sinai Governorate"))) (type fb:location.administrative_division) what region of the world is egypt associated with? Red Sea Governorate 16.178 formula (!fb:location.country.first_level_divisions fb:en.egypt)) (value (list (name fb:en.al_minya_governorate "Minya Governorate") (name fb:en.ash_sharqiyah_governorate "Al Sharqia Governorate") (name fb:en.al_minufiyah "Al Minufiyah") (name fb:en.matruh "Matrouh Governorate") (name fb:en.al_wadi_al_jadid "New Valley Governorate") (name fb:en.ad_daqahliyah "Dakahlia Governorate") (name fb:en.al_gharbiyah_governorate "Gharbia Governorate") (name fb:en.al_bahr_al_ahmar "Red Sea Governorate") (name fb:en.shamal_sina "North Sinai Governorate") (name fb:en.janub_sina "South Sinai Governorate"))) (type fb:location.administrative_division) what region of the world is egypt associated with? North Sinai Governorate 16.178 formula (!fb:location.country.first_level_divisions fb:en.egypt)) (value (list (name fb:en.al_minya_governorate "Minya Governorate") (name fb:en.ash_sharqiyah_governorate "Al Sharqia Governorate") (name fb:en.al_minufiyah "Al Minufiyah") (name fb:en.matruh "Matrouh Governorate") (name fb:en.al_wadi_al_jadid "New Valley Governorate") (name fb:en.ad_daqahliyah "Dakahlia Governorate") (name fb:en.al_gharbiyah_governorate "Gharbia Governorate") (name fb:en.al_bahr_al_ahmar "Red Sea Governorate") (name fb:en.shamal_sina "North Sinai Governorate") (name fb:en.janub_sina "South Sinai Governorate"))) (type fb:location.administrative_division) what region of the world is egypt associated with? South Sinai Governorate 16.178 formula (!fb:location.country.first_level_divisions fb:en.egypt)) (value (list (name fb:en.al_minya_governorate "Minya Governorate") (name fb:en.ash_sharqiyah_governorate "Al Sharqia Governorate") (name fb:en.al_minufiyah "Al Minufiyah") (name fb:en.matruh "Matrouh Governorate") (name fb:en.al_wadi_al_jadid "New Valley Governorate") (name fb:en.ad_daqahliyah "Dakahlia Governorate") (name fb:en.al_gharbiyah_governorate "Gharbia Governorate") (name fb:en.al_bahr_al_ahmar "Red Sea Governorate") (name fb:en.shamal_sina "North Sinai Governorate") (name fb:en.janub_sina "South Sinai Governorate"))) (type fb:location.administrative_division) what did dr. seuss do? Geisel Library 7.152 formula (fb:symbols.namesake.named_after fb:en.dr_seuss)) (value (list (name fb:en.geisel_library "Geisel Library") (name fb:en.dr_seuss_memorial "Dr. Seuss Memorial"))) (type fb:symbols.namesake) what did dr. seuss do? Dr. Seuss Memorial 7.152 formula (fb:symbols.namesake.named_after fb:en.dr_seuss)) (value (list (name fb:en.geisel_library "Geisel Library") (name fb:en.dr_seuss_memorial "Dr. Seuss Memorial"))) (type fb:symbols.namesake) where did drew brees go to college wikianswers? Stanford Graduate School of Business 11.198 formula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.drew_brees)))) (value (list (name fb:en.stanford_graduate_school_of_business "Stanford Graduate School of Business") (name fb:en.purdue_university "Purdue University"))) (type fb:education.university) where did drew brees go to college wikianswers? Purdue University 11.198 formula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.drew_brees)))) (value (list (name fb:en.stanford_graduate_school_of_business "Stanford Graduate School of Business") (name fb:en.purdue_university "Purdue University"))) (type fb:education.university) what school did ben roethlisberger go to? Miami University 17.838 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.ben_roethlisberger))) (value (list (name fb:en.miami_university "Miami University"))) (type fb:education.educational_institution) what kind of guitar did george harrison use? Fender Stratocaster 17.799 formula (and (fb:type.object.type fb:music.guitar) (!fb:music.guitarist.guitars_played fb:en.george_harrison))) (value (list (name fb:en.fender_stratocaster "Fender Stratocaster") (name fb:en.rickenbacker_360_12 "Rickenbacker 360/12"))) (type (union fb:music.guitar)) what kind of guitar did george harrison use? Rickenbacker 360/12 17.799 formula (and (fb:type.object.type fb:music.guitar) (!fb:music.guitarist.guitars_played fb:en.george_harrison))) (value (list (name fb:en.fender_stratocaster "Fender Stratocaster") (name fb:en.rickenbacker_360_12 "Rickenbacker 360/12"))) (type (union fb:music.guitar)) what language do navajo people speak? English Language 13.038 formula (and (fb:type.object.type fb:language.human_language) (!fb:people.ethnicity.languages_spoken fb:en.navajo_people))) (value (list (name fb:en.english "English Language") (name fb:en.spanish "Spanish Language") (name fb:en.navajo_language "Navajo Language"))) (type fb:language.human_language) what language do navajo people speak? Spanish Language 13.038 formula (and (fb:type.object.type fb:language.human_language) (!fb:people.ethnicity.languages_spoken fb:en.navajo_people))) (value (list (name fb:en.english "English Language") (name fb:en.spanish "Spanish Language") (name fb:en.navajo_language "Navajo Language"))) (type fb:language.human_language) what language do navajo people speak? Navajo Language 13.038 formula (and (fb:type.object.type fb:language.human_language) (!fb:people.ethnicity.languages_spoken fb:en.navajo_people))) (value (list (name fb:en.english "English Language") (name fb:en.spanish "Spanish Language") (name fb:en.navajo_language "Navajo Language"))) (type fb:language.human_language) what are the landlocked countries in latin america? El Salvador 16.667 formula (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.latin_america))) (value (list (name fb:en.mexico Mexico) (name fb:en.nicaragua Nicaragua) (name fb:en.venezuela Venezuela) (name fb:en.cuba Cuba) (name fb:en.haiti Haiti) (name fb:en.peru Peru) (name fb:en.bolivia Bolivia) (name fb:en.chile Chile) (name fb:en.el_salvador "El Salvador") (name fb:en.dominican_republic "Dominican Republic"))) (type (union fb:location.country)) what are the landlocked countries in latin america? Dominican Republic 16.667 formula (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.latin_america))) (value (list (name fb:en.mexico Mexico) (name fb:en.nicaragua Nicaragua) (name fb:en.venezuela Venezuela) (name fb:en.cuba Cuba) (name fb:en.haiti Haiti) (name fb:en.peru Peru) (name fb:en.bolivia Bolivia) (name fb:en.chile Chile) (name fb:en.el_salvador "El Salvador") (name fb:en.dominican_republic "Dominican Republic"))) (type (union fb:location.country)) what type of government does iraq have now? Parliamentary system 15.011 formula (fb:government.form_of_government.countries fb:en.iraq)) (value (list (name fb:en.parliamentary_system "Parliamentary system") (name fb:en.republic Republic) (name fb:en.parliamentary_republic "Parliamentary republic") (name fb:en.federal_republic "Federal republic"))) (type fb:government.form_of_government) what type of government does iraq have now? Parliamentary republic 15.011 formula (fb:government.form_of_government.countries fb:en.iraq)) (value (list (name fb:en.parliamentary_system "Parliamentary system") (name fb:en.republic Republic) (name fb:en.parliamentary_republic "Parliamentary republic") (name fb:en.federal_republic "Federal republic"))) (type fb:government.form_of_government) what type of government does iraq have now? Federal republic 15.011 formula (fb:government.form_of_government.countries fb:en.iraq)) (value (list (name fb:en.parliamentary_system "Parliamentary system") (name fb:en.republic Republic) (name fb:en.parliamentary_republic "Parliamentary republic") (name fb:en.federal_republic "Federal republic"))) (type fb:government.form_of_government) where was the vietnam war location? Southeast Asia 12.078 formula (and (fb:type.object.type fb:location.location) (and (fb:type.object.type fb:location.location) (!fb:time.event.locations fb:en.vietnam_war)))) (value (list (name fb:en.southeast_asia "Southeast Asia") (name fb:en.vietnam Vietnam) (name fb:en.cambodia Cambodia) (name fb:en.laos Laos) (name fb:en.north_vietnam "North Vietnam") (name fb:en.south_vietnam "South Vietnam"))) (type fb:location.location) where was the vietnam war location? North Vietnam 12.078 formula (and (fb:type.object.type fb:location.location) (and (fb:type.object.type fb:location.location) (!fb:time.event.locations fb:en.vietnam_war)))) (value (list (name fb:en.southeast_asia "Southeast Asia") (name fb:en.vietnam Vietnam) (name fb:en.cambodia Cambodia) (name fb:en.laos Laos) (name fb:en.north_vietnam "North Vietnam") (name fb:en.south_vietnam "South Vietnam"))) (type fb:location.location) where was the vietnam war location? South Vietnam 12.078 formula (and (fb:type.object.type fb:location.location) (and (fb:type.object.type fb:location.location) (!fb:time.event.locations fb:en.vietnam_war)))) (value (list (name fb:en.southeast_asia "Southeast Asia") (name fb:en.vietnam Vietnam) (name fb:en.cambodia Cambodia) (name fb:en.laos Laos) (name fb:en.north_vietnam "North Vietnam") (name fb:en.south_vietnam "South Vietnam"))) (type fb:location.location) who did gerald ford select as his vice president when he became president? Richard Nixon 15.694 formula (!fb:government.us_vice_president.to_president fb:en.gerald_ford)) (value (list (name fb:en.richard_nixon "Richard Nixon"))) (type fb:government.us_president) who is jamie little engaged to? Cody Selman 11.909 formula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.jamie_little)) (value (list (name fb:m.0j6jzzy "Cody Selman"))) (type fb:people.person) what school did sir ernest rutherford go to? University of Cambridge 15.869 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.ernest_rutherford))) (value (list (name fb:en.university_of_cambridge "University of Cambridge") (name fb:en.university_of_new_zealand "University of New Zealand") (name fb:en.university_of_canterbury "University of Canterbury") (name fb:en.trinity_college_cambridge "Trinity College, Cambridge") (name fb:en.nelson_college "Nelson College"))) (type fb:education.educational_institution) what school did sir ernest rutherford go to? University of New Zealand 15.869 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.ernest_rutherford))) (value (list (name fb:en.university_of_cambridge "University of Cambridge") (name fb:en.university_of_new_zealand "University of New Zealand") (name fb:en.university_of_canterbury "University of Canterbury") (name fb:en.trinity_college_cambridge "Trinity College, Cambridge") (name fb:en.nelson_college "Nelson College"))) (type fb:education.educational_institution) what school did sir ernest rutherford go to? University of Canterbury 15.869 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.ernest_rutherford))) (value (list (name fb:en.university_of_cambridge "University of Cambridge") (name fb:en.university_of_new_zealand "University of New Zealand") (name fb:en.university_of_canterbury "University of Canterbury") (name fb:en.trinity_college_cambridge "Trinity College, Cambridge") (name fb:en.nelson_college "Nelson College"))) (type fb:education.educational_institution) what school did sir ernest rutherford go to? Trinity College, Cambridge 15.869 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.ernest_rutherford))) (value (list (name fb:en.university_of_cambridge "University of Cambridge") (name fb:en.university_of_new_zealand "University of New Zealand") (name fb:en.university_of_canterbury "University of Canterbury") (name fb:en.trinity_college_cambridge "Trinity College, Cambridge") (name fb:en.nelson_college "Nelson College"))) (type fb:education.educational_institution) what school did sir ernest rutherford go to? Nelson College 15.869 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.ernest_rutherford))) (value (list (name fb:en.university_of_cambridge "University of Cambridge") (name fb:en.university_of_new_zealand "University of New Zealand") (name fb:en.university_of_canterbury "University of Canterbury") (name fb:en.trinity_college_cambridge "Trinity College, Cambridge") (name fb:en.nelson_college "Nelson College"))) (type fb:education.educational_institution) what does janelle brown work? Becoming Sister Wives: The Story of an Unconventional Marriage 6.806 formula (!fb:book.author.works_written fb:m.0k31qr6)) (value (list (name fb:m.0k31q43 "Becoming Sister Wives: The Story of an Unconventional Marriage"))) (type fb:book.written_work) where is tyrese gibson from? Los Angeles 1.007 formula (and (fb:type.object.type fb:location.location) (!fb:music.artist.origin fb:en.tyrese))) (value (list (name fb:en.los_angeles "Los Angeles"))) (type fb:location.location) what countries are near italy? Vatican City 13.972 formula (and (fb:type.object.type fb:location.country) (fb:user.lapax.default_domain.landlocked_country.surrounded_by fb:en.italy))) (value (list (name fb:en.switzerland Switzerland) (name fb:en.austria Austria) (name fb:en.vatican_city "Vatican City"))) (type fb:user.lapax.default_domain.landlocked_country) which states does the colorado river run through? Yule Marble 13.052 formula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.colorado)) (value (list (name fb:en.yule_marble "Yule Marble") (name fb:en.blue_spruce "Picea pungens") (name fb:en.greenback_cutthroat_trout "Greenback cutthroat trout") (name fb:en.nil_sine_numine "Nil sine numine") (name fb:en.aquilegia_saximontana "Aquilegia saximontana") (name fb:en.painted_turtle "Painted turtle") (name fb:en.stegosaurus Stegosaurus) (name fb:en.lark_bunting "Lark Bunting"))) (type fb:location.symbol_of_administrative_division) which states does the colorado river run through? Picea pungens 13.052 formula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.colorado)) (value (list (name fb:en.yule_marble "Yule Marble") (name fb:en.blue_spruce "Picea pungens") (name fb:en.greenback_cutthroat_trout "Greenback cutthroat trout") (name fb:en.nil_sine_numine "Nil sine numine") (name fb:en.aquilegia_saximontana "Aquilegia saximontana") (name fb:en.painted_turtle "Painted turtle") (name fb:en.stegosaurus Stegosaurus) (name fb:en.lark_bunting "Lark Bunting"))) (type fb:location.symbol_of_administrative_division) which states does the colorado river run through? Greenback cutthroat trout 13.052 formula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.colorado)) (value (list (name fb:en.yule_marble "Yule Marble") (name fb:en.blue_spruce "Picea pungens") (name fb:en.greenback_cutthroat_trout "Greenback cutthroat trout") (name fb:en.nil_sine_numine "Nil sine numine") (name fb:en.aquilegia_saximontana "Aquilegia saximontana") (name fb:en.painted_turtle "Painted turtle") (name fb:en.stegosaurus Stegosaurus) (name fb:en.lark_bunting "Lark Bunting"))) (type fb:location.symbol_of_administrative_division) which states does the colorado river run through? Nil sine numine 13.052 formula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.colorado)) (value (list (name fb:en.yule_marble "Yule Marble") (name fb:en.blue_spruce "Picea pungens") (name fb:en.greenback_cutthroat_trout "Greenback cutthroat trout") (name fb:en.nil_sine_numine "Nil sine numine") (name fb:en.aquilegia_saximontana "Aquilegia saximontana") (name fb:en.painted_turtle "Painted turtle") (name fb:en.stegosaurus Stegosaurus) (name fb:en.lark_bunting "Lark Bunting"))) (type fb:location.symbol_of_administrative_division) which states does the colorado river run through? Aquilegia saximontana 13.052 formula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.colorado)) (value (list (name fb:en.yule_marble "Yule Marble") (name fb:en.blue_spruce "Picea pungens") (name fb:en.greenback_cutthroat_trout "Greenback cutthroat trout") (name fb:en.nil_sine_numine "Nil sine numine") (name fb:en.aquilegia_saximontana "Aquilegia saximontana") (name fb:en.painted_turtle "Painted turtle") (name fb:en.stegosaurus Stegosaurus) (name fb:en.lark_bunting "Lark Bunting"))) (type fb:location.symbol_of_administrative_division) which states does the colorado river run through? Painted turtle 13.052 formula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.colorado)) (value (list (name fb:en.yule_marble "Yule Marble") (name fb:en.blue_spruce "Picea pungens") (name fb:en.greenback_cutthroat_trout "Greenback cutthroat trout") (name fb:en.nil_sine_numine "Nil sine numine") (name fb:en.aquilegia_saximontana "Aquilegia saximontana") (name fb:en.painted_turtle "Painted turtle") (name fb:en.stegosaurus Stegosaurus) (name fb:en.lark_bunting "Lark Bunting"))) (type fb:location.symbol_of_administrative_division) which states does the colorado river run through? Lark Bunting 13.052 formula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.colorado)) (value (list (name fb:en.yule_marble "Yule Marble") (name fb:en.blue_spruce "Picea pungens") (name fb:en.greenback_cutthroat_trout "Greenback cutthroat trout") (name fb:en.nil_sine_numine "Nil sine numine") (name fb:en.aquilegia_saximontana "Aquilegia saximontana") (name fb:en.painted_turtle "Painted turtle") (name fb:en.stegosaurus Stegosaurus) (name fb:en.lark_bunting "Lark Bunting"))) (type fb:location.symbol_of_administrative_division) when did the wright brothers created their first plane? Wilbur Wright 13.727 formula (!fb:organization.organization.founders fb:en.wright_brothers)) (value (list (name fb:en.wilbur_wright "Wilbur Wright") (name fb:en.orville_wright "Orville Wright"))) (type fb:organization.organization_founder) when did the wright brothers created their first plane? Orville Wright 13.727 formula (!fb:organization.organization.founders fb:en.wright_brothers)) (value (list (name fb:en.wilbur_wright "Wilbur Wright") (name fb:en.orville_wright "Orville Wright"))) (type fb:organization.organization_founder) what language turkey people speak? Turkish Language 9.748 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.turkey))) (value (list (name fb:en.turkish_language "Turkish Language"))) (type (union fb:language.human_language)) who does jeremy lin play for? Houston Rockets 11.8 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.jeremy_lin)) (value (list (name fb:en.houston_rockets "Houston Rockets") (name fb:en.new_york_knicks "New York Knicks"))) (type fb:sports.sports_team) who does jeremy lin play for? New York Knicks 11.8 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.jeremy_lin)) (value (list (name fb:en.houston_rockets "Houston Rockets") (name fb:en.new_york_knicks "New York Knicks"))) (type fb:sports.sports_team) where is the seychelles on world map? Internet users as percentage of population, World Development Indicators and Global Development Finance, World Bank 3.773 formula ((lambda x (!fb:measurement_unit.dated_percentage.source (!fb:location.statistical_region.internet_users_percent_population (var x)))) fb:en.seychelles)) (value (list (name fb:m.0ndnhc0 "Internet users as percentage of population, World Development Indicators and Global Development Finance, World Bank") (name fb:g.1245ywqx8 "Internet users as percentage of population, World Development Indicators, World Bank"))) (type fb:dataworld.information_source) where is the seychelles on world map? Internet users as percentage of population, World Development Indicators, World Bank 3.773 formula ((lambda x (!fb:measurement_unit.dated_percentage.source (!fb:location.statistical_region.internet_users_percent_population (var x)))) fb:en.seychelles)) (value (list (name fb:m.0ndnhc0 "Internet users as percentage of population, World Development Indicators and Global Development Finance, World Bank") (name fb:g.1245ywqx8 "Internet users as percentage of population, World Development Indicators, World Bank"))) (type fb:dataworld.information_source) where did william morris go to college? University of Oxford 14.126 formula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.william_morris)))) (value (list (name fb:en.university_of_oxford "University of Oxford") (name fb:en.exeter_college_oxford "Exeter College, Oxford"))) (type fb:education.university) where did william morris go to college? Exeter College, Oxford 14.126 formula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.william_morris)))) (value (list (name fb:en.university_of_oxford "University of Oxford") (name fb:en.exeter_college_oxford "Exeter College, Oxford"))) (type fb:education.university) who is jimmy savile? Entertainment Weekly annotation index 0.697 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.jimmy_savile)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) who is jimmy savile? Blissful Master Index 0.697 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.jimmy_savile)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) who is jimmy savile? Blissful Celebrities 0.697 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.jimmy_savile)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) where were the seneca indians located? New York 3.971 formula (and (fb:type.object.type fb:location.location) (!fb:people.ethnicity.geographic_distribution fb:en.seneca_nation))) (value (list (name fb:en.new_york_state "New York"))) (type fb:location.location) what state is washington d.c. located? Wood Thrush 12.319 formula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.washington_united_states)) (value (list (name fb:en.wood_thrush "Wood Thrush") (name fb:en.scarlet_oak "Quercus coccinea"))) (type fb:location.symbol_of_administrative_division) what state is washington d.c. located? Quercus coccinea 12.319 formula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.washington_united_states)) (value (list (name fb:en.wood_thrush "Wood Thrush") (name fb:en.scarlet_oak "Quercus coccinea"))) (type fb:location.symbol_of_administrative_division) where to exchange euros in new york city? American Museum of Natural History 8.956 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_york_ny))) (value (list (name fb:en.american_museum_of_natural_history "American Museum of Natural History") (name fb:en.metropolitan_museum_of_art "Metropolitan Museum of Art") (name fb:en.the_george_gustav_heye_center "George Gustav Heye Center") (name fb:en.central_park "Central Park") (name fb:en.the_cloisters "The Cloisters") (name fb:en.national_academy_of_design "National Academy of Design") (name fb:en.rockefeller_center "Rockefeller Center") (name fb:en.morgan_library "Morgan Library") (name fb:en.empire_state_building "Empire State Building") (name fb:en.st_patricks_cathedral_new_york "St. Patrick's Cathedral"))) (type fb:travel.tourist_attraction) where to exchange euros in new york city? Metropolitan Museum of Art 8.956 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_york_ny))) (value (list (name fb:en.american_museum_of_natural_history "American Museum of Natural History") (name fb:en.metropolitan_museum_of_art "Metropolitan Museum of Art") (name fb:en.the_george_gustav_heye_center "George Gustav Heye Center") (name fb:en.central_park "Central Park") (name fb:en.the_cloisters "The Cloisters") (name fb:en.national_academy_of_design "National Academy of Design") (name fb:en.rockefeller_center "Rockefeller Center") (name fb:en.morgan_library "Morgan Library") (name fb:en.empire_state_building "Empire State Building") (name fb:en.st_patricks_cathedral_new_york "St. Patrick's Cathedral"))) (type fb:travel.tourist_attraction) where to exchange euros in new york city? George Gustav Heye Center 8.956 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_york_ny))) (value (list (name fb:en.american_museum_of_natural_history "American Museum of Natural History") (name fb:en.metropolitan_museum_of_art "Metropolitan Museum of Art") (name fb:en.the_george_gustav_heye_center "George Gustav Heye Center") (name fb:en.central_park "Central Park") (name fb:en.the_cloisters "The Cloisters") (name fb:en.national_academy_of_design "National Academy of Design") (name fb:en.rockefeller_center "Rockefeller Center") (name fb:en.morgan_library "Morgan Library") (name fb:en.empire_state_building "Empire State Building") (name fb:en.st_patricks_cathedral_new_york "St. Patrick's Cathedral"))) (type fb:travel.tourist_attraction) where to exchange euros in new york city? Central Park 8.956 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_york_ny))) (value (list (name fb:en.american_museum_of_natural_history "American Museum of Natural History") (name fb:en.metropolitan_museum_of_art "Metropolitan Museum of Art") (name fb:en.the_george_gustav_heye_center "George Gustav Heye Center") (name fb:en.central_park "Central Park") (name fb:en.the_cloisters "The Cloisters") (name fb:en.national_academy_of_design "National Academy of Design") (name fb:en.rockefeller_center "Rockefeller Center") (name fb:en.morgan_library "Morgan Library") (name fb:en.empire_state_building "Empire State Building") (name fb:en.st_patricks_cathedral_new_york "St. Patrick's Cathedral"))) (type fb:travel.tourist_attraction) where to exchange euros in new york city? The Cloisters 8.956 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_york_ny))) (value (list (name fb:en.american_museum_of_natural_history "American Museum of Natural History") (name fb:en.metropolitan_museum_of_art "Metropolitan Museum of Art") (name fb:en.the_george_gustav_heye_center "George Gustav Heye Center") (name fb:en.central_park "Central Park") (name fb:en.the_cloisters "The Cloisters") (name fb:en.national_academy_of_design "National Academy of Design") (name fb:en.rockefeller_center "Rockefeller Center") (name fb:en.morgan_library "Morgan Library") (name fb:en.empire_state_building "Empire State Building") (name fb:en.st_patricks_cathedral_new_york "St. Patrick's Cathedral"))) (type fb:travel.tourist_attraction) where to exchange euros in new york city? National Academy of Design 8.956 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_york_ny))) (value (list (name fb:en.american_museum_of_natural_history "American Museum of Natural History") (name fb:en.metropolitan_museum_of_art "Metropolitan Museum of Art") (name fb:en.the_george_gustav_heye_center "George Gustav Heye Center") (name fb:en.central_park "Central Park") (name fb:en.the_cloisters "The Cloisters") (name fb:en.national_academy_of_design "National Academy of Design") (name fb:en.rockefeller_center "Rockefeller Center") (name fb:en.morgan_library "Morgan Library") (name fb:en.empire_state_building "Empire State Building") (name fb:en.st_patricks_cathedral_new_york "St. Patrick's Cathedral"))) (type fb:travel.tourist_attraction) where to exchange euros in new york city? Rockefeller Center 8.956 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_york_ny))) (value (list (name fb:en.american_museum_of_natural_history "American Museum of Natural History") (name fb:en.metropolitan_museum_of_art "Metropolitan Museum of Art") (name fb:en.the_george_gustav_heye_center "George Gustav Heye Center") (name fb:en.central_park "Central Park") (name fb:en.the_cloisters "The Cloisters") (name fb:en.national_academy_of_design "National Academy of Design") (name fb:en.rockefeller_center "Rockefeller Center") (name fb:en.morgan_library "Morgan Library") (name fb:en.empire_state_building "Empire State Building") (name fb:en.st_patricks_cathedral_new_york "St. Patrick's Cathedral"))) (type fb:travel.tourist_attraction) where to exchange euros in new york city? Morgan Library 8.956 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_york_ny))) (value (list (name fb:en.american_museum_of_natural_history "American Museum of Natural History") (name fb:en.metropolitan_museum_of_art "Metropolitan Museum of Art") (name fb:en.the_george_gustav_heye_center "George Gustav Heye Center") (name fb:en.central_park "Central Park") (name fb:en.the_cloisters "The Cloisters") (name fb:en.national_academy_of_design "National Academy of Design") (name fb:en.rockefeller_center "Rockefeller Center") (name fb:en.morgan_library "Morgan Library") (name fb:en.empire_state_building "Empire State Building") (name fb:en.st_patricks_cathedral_new_york "St. Patrick's Cathedral"))) (type fb:travel.tourist_attraction) where to exchange euros in new york city? Empire State Building 8.956 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_york_ny))) (value (list (name fb:en.american_museum_of_natural_history "American Museum of Natural History") (name fb:en.metropolitan_museum_of_art "Metropolitan Museum of Art") (name fb:en.the_george_gustav_heye_center "George Gustav Heye Center") (name fb:en.central_park "Central Park") (name fb:en.the_cloisters "The Cloisters") (name fb:en.national_academy_of_design "National Academy of Design") (name fb:en.rockefeller_center "Rockefeller Center") (name fb:en.morgan_library "Morgan Library") (name fb:en.empire_state_building "Empire State Building") (name fb:en.st_patricks_cathedral_new_york "St. Patrick's Cathedral"))) (type fb:travel.tourist_attraction) where to exchange euros in new york city? St. Patrick's Cathedral 8.956 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_york_ny))) (value (list (name fb:en.american_museum_of_natural_history "American Museum of Natural History") (name fb:en.metropolitan_museum_of_art "Metropolitan Museum of Art") (name fb:en.the_george_gustav_heye_center "George Gustav Heye Center") (name fb:en.central_park "Central Park") (name fb:en.the_cloisters "The Cloisters") (name fb:en.national_academy_of_design "National Academy of Design") (name fb:en.rockefeller_center "Rockefeller Center") (name fb:en.morgan_library "Morgan Library") (name fb:en.empire_state_building "Empire State Building") (name fb:en.st_patricks_cathedral_new_york "St. Patrick's Cathedral"))) (type fb:travel.tourist_attraction) when did florida marlins join mlb? Lebanese American 5.962 formula (fb:people.ethnicity.geographic_distribution fb:en.florida)) (value (list (name fb:en.lebanese_americans "Lebanese American"))) (type fb:people.ethnicity) what countries does the panama canal go through? Costa Rica 17.338 formula (and (fb:type.object.type fb:location.country) ((lambda x (fb:location.location.adjoin_s (fb:location.adjoining_relationship.adjoins (var x)))) fb:en.panama))) (value (list (name fb:en.colombia Colombia) (name fb:en.costa_rica "Costa Rica"))) (type (union fb:location.country)) who did the chargers draft in 2011? Antonio Cromartie 10.816 formula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.san_diego_chargers)) (value (list (name fb:en.antonio_cromartie "Antonio Cromartie") (name fb:en.antoine_cason "Antoine Cason") (name fb:en.sammy_davis "Sammy Davis") (name fb:en.luis_castillo_1983 "Luis Castillo") (name fb:en.kellen_winslow "Kellen Winslow") (name fb:m.0t_cmyc "Steve Williams") (name fb:en.doug_buffone "Doug Buffone") (name fb:en.eli_manning "Eli Manning") (name fb:en.shawne_merriman "Shawne Merriman") (name fb:en.ladainian_tomlinson "LaDainian Tomlinson"))) (type fb:sports.drafted_athlete) who did the chargers draft in 2011? Antoine Cason 10.816 formula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.san_diego_chargers)) (value (list (name fb:en.antonio_cromartie "Antonio Cromartie") (name fb:en.antoine_cason "Antoine Cason") (name fb:en.sammy_davis "Sammy Davis") (name fb:en.luis_castillo_1983 "Luis Castillo") (name fb:en.kellen_winslow "Kellen Winslow") (name fb:m.0t_cmyc "Steve Williams") (name fb:en.doug_buffone "Doug Buffone") (name fb:en.eli_manning "Eli Manning") (name fb:en.shawne_merriman "Shawne Merriman") (name fb:en.ladainian_tomlinson "LaDainian Tomlinson"))) (type fb:sports.drafted_athlete) who did the chargers draft in 2011? Sammy Davis 10.816 formula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.san_diego_chargers)) (value (list (name fb:en.antonio_cromartie "Antonio Cromartie") (name fb:en.antoine_cason "Antoine Cason") (name fb:en.sammy_davis "Sammy Davis") (name fb:en.luis_castillo_1983 "Luis Castillo") (name fb:en.kellen_winslow "Kellen Winslow") (name fb:m.0t_cmyc "Steve Williams") (name fb:en.doug_buffone "Doug Buffone") (name fb:en.eli_manning "Eli Manning") (name fb:en.shawne_merriman "Shawne Merriman") (name fb:en.ladainian_tomlinson "LaDainian Tomlinson"))) (type fb:sports.drafted_athlete) who did the chargers draft in 2011? Luis Castillo 10.816 formula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.san_diego_chargers)) (value (list (name fb:en.antonio_cromartie "Antonio Cromartie") (name fb:en.antoine_cason "Antoine Cason") (name fb:en.sammy_davis "Sammy Davis") (name fb:en.luis_castillo_1983 "Luis Castillo") (name fb:en.kellen_winslow "Kellen Winslow") (name fb:m.0t_cmyc "Steve Williams") (name fb:en.doug_buffone "Doug Buffone") (name fb:en.eli_manning "Eli Manning") (name fb:en.shawne_merriman "Shawne Merriman") (name fb:en.ladainian_tomlinson "LaDainian Tomlinson"))) (type fb:sports.drafted_athlete) who did the chargers draft in 2011? Kellen Winslow 10.816 formula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.san_diego_chargers)) (value (list (name fb:en.antonio_cromartie "Antonio Cromartie") (name fb:en.antoine_cason "Antoine Cason") (name fb:en.sammy_davis "Sammy Davis") (name fb:en.luis_castillo_1983 "Luis Castillo") (name fb:en.kellen_winslow "Kellen Winslow") (name fb:m.0t_cmyc "Steve Williams") (name fb:en.doug_buffone "Doug Buffone") (name fb:en.eli_manning "Eli Manning") (name fb:en.shawne_merriman "Shawne Merriman") (name fb:en.ladainian_tomlinson "LaDainian Tomlinson"))) (type fb:sports.drafted_athlete) who did the chargers draft in 2011? Steve Williams 10.816 formula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.san_diego_chargers)) (value (list (name fb:en.antonio_cromartie "Antonio Cromartie") (name fb:en.antoine_cason "Antoine Cason") (name fb:en.sammy_davis "Sammy Davis") (name fb:en.luis_castillo_1983 "Luis Castillo") (name fb:en.kellen_winslow "Kellen Winslow") (name fb:m.0t_cmyc "Steve Williams") (name fb:en.doug_buffone "Doug Buffone") (name fb:en.eli_manning "Eli Manning") (name fb:en.shawne_merriman "Shawne Merriman") (name fb:en.ladainian_tomlinson "LaDainian Tomlinson"))) (type fb:sports.drafted_athlete) who did the chargers draft in 2011? Doug Buffone 10.816 formula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.san_diego_chargers)) (value (list (name fb:en.antonio_cromartie "Antonio Cromartie") (name fb:en.antoine_cason "Antoine Cason") (name fb:en.sammy_davis "Sammy Davis") (name fb:en.luis_castillo_1983 "Luis Castillo") (name fb:en.kellen_winslow "Kellen Winslow") (name fb:m.0t_cmyc "Steve Williams") (name fb:en.doug_buffone "Doug Buffone") (name fb:en.eli_manning "Eli Manning") (name fb:en.shawne_merriman "Shawne Merriman") (name fb:en.ladainian_tomlinson "LaDainian Tomlinson"))) (type fb:sports.drafted_athlete) who did the chargers draft in 2011? Eli Manning 10.816 formula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.san_diego_chargers)) (value (list (name fb:en.antonio_cromartie "Antonio Cromartie") (name fb:en.antoine_cason "Antoine Cason") (name fb:en.sammy_davis "Sammy Davis") (name fb:en.luis_castillo_1983 "Luis Castillo") (name fb:en.kellen_winslow "Kellen Winslow") (name fb:m.0t_cmyc "Steve Williams") (name fb:en.doug_buffone "Doug Buffone") (name fb:en.eli_manning "Eli Manning") (name fb:en.shawne_merriman "Shawne Merriman") (name fb:en.ladainian_tomlinson "LaDainian Tomlinson"))) (type fb:sports.drafted_athlete) who did the chargers draft in 2011? Shawne Merriman 10.816 formula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.san_diego_chargers)) (value (list (name fb:en.antonio_cromartie "Antonio Cromartie") (name fb:en.antoine_cason "Antoine Cason") (name fb:en.sammy_davis "Sammy Davis") (name fb:en.luis_castillo_1983 "Luis Castillo") (name fb:en.kellen_winslow "Kellen Winslow") (name fb:m.0t_cmyc "Steve Williams") (name fb:en.doug_buffone "Doug Buffone") (name fb:en.eli_manning "Eli Manning") (name fb:en.shawne_merriman "Shawne Merriman") (name fb:en.ladainian_tomlinson "LaDainian Tomlinson"))) (type fb:sports.drafted_athlete) who did the chargers draft in 2011? LaDainian Tomlinson 10.816 formula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.san_diego_chargers)) (value (list (name fb:en.antonio_cromartie "Antonio Cromartie") (name fb:en.antoine_cason "Antoine Cason") (name fb:en.sammy_davis "Sammy Davis") (name fb:en.luis_castillo_1983 "Luis Castillo") (name fb:en.kellen_winslow "Kellen Winslow") (name fb:m.0t_cmyc "Steve Williams") (name fb:en.doug_buffone "Doug Buffone") (name fb:en.eli_manning "Eli Manning") (name fb:en.shawne_merriman "Shawne Merriman") (name fb:en.ladainian_tomlinson "LaDainian Tomlinson"))) (type fb:sports.drafted_athlete) what colleges did albert einstein teach at? ETH Zurich 16.347 formula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.albert_einstein))) (value (list (name fb:en.eth_zurich "ETH Zurich") (name fb:en.university_of_zurich "University of Zurich"))) (type (union fb:education.university)) what colleges did albert einstein teach at? University of Zurich 16.347 formula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.albert_einstein))) (value (list (name fb:en.eth_zurich "ETH Zurich") (name fb:en.university_of_zurich "University of Zurich"))) (type (union fb:education.university)) who plays the voice of brian on family guy? Seth MacFarlane 9.568 formula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane "Seth MacFarlane") (name fb:m.0f87jy "Mike Henry") (name fb:en.lacey_chabert "Lacey Chabert") (name fb:en.patrick_warburton "Patrick Warburton") (name fb:en.alex_borstein "Alex Borstein") (name fb:en.seth_green "Seth Green") (name fb:en.alec_sulkin "Alec Sulkin") (name fb:en.mila_kunis "Mila Kunis") (name fb:en.danny_smith "Danny Smith") (name fb:en.adam_west "Adam West"))) (type fb:tv.tv_actor) who plays the voice of brian on family guy? Mike Henry 9.568 formula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane "Seth MacFarlane") (name fb:m.0f87jy "Mike Henry") (name fb:en.lacey_chabert "Lacey Chabert") (name fb:en.patrick_warburton "Patrick Warburton") (name fb:en.alex_borstein "Alex Borstein") (name fb:en.seth_green "Seth Green") (name fb:en.alec_sulkin "Alec Sulkin") (name fb:en.mila_kunis "Mila Kunis") (name fb:en.danny_smith "Danny Smith") (name fb:en.adam_west "Adam West"))) (type fb:tv.tv_actor) who plays the voice of brian on family guy? Lacey Chabert 9.568 formula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane "Seth MacFarlane") (name fb:m.0f87jy "Mike Henry") (name fb:en.lacey_chabert "Lacey Chabert") (name fb:en.patrick_warburton "Patrick Warburton") (name fb:en.alex_borstein "Alex Borstein") (name fb:en.seth_green "Seth Green") (name fb:en.alec_sulkin "Alec Sulkin") (name fb:en.mila_kunis "Mila Kunis") (name fb:en.danny_smith "Danny Smith") (name fb:en.adam_west "Adam West"))) (type fb:tv.tv_actor) who plays the voice of brian on family guy? Patrick Warburton 9.568 formula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane "Seth MacFarlane") (name fb:m.0f87jy "Mike Henry") (name fb:en.lacey_chabert "Lacey Chabert") (name fb:en.patrick_warburton "Patrick Warburton") (name fb:en.alex_borstein "Alex Borstein") (name fb:en.seth_green "Seth Green") (name fb:en.alec_sulkin "Alec Sulkin") (name fb:en.mila_kunis "Mila Kunis") (name fb:en.danny_smith "Danny Smith") (name fb:en.adam_west "Adam West"))) (type fb:tv.tv_actor) who plays the voice of brian on family guy? Alex Borstein 9.568 formula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane "Seth MacFarlane") (name fb:m.0f87jy "Mike Henry") (name fb:en.lacey_chabert "Lacey Chabert") (name fb:en.patrick_warburton "Patrick Warburton") (name fb:en.alex_borstein "Alex Borstein") (name fb:en.seth_green "Seth Green") (name fb:en.alec_sulkin "Alec Sulkin") (name fb:en.mila_kunis "Mila Kunis") (name fb:en.danny_smith "Danny Smith") (name fb:en.adam_west "Adam West"))) (type fb:tv.tv_actor) who plays the voice of brian on family guy? Seth Green 9.568 formula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane "Seth MacFarlane") (name fb:m.0f87jy "Mike Henry") (name fb:en.lacey_chabert "Lacey Chabert") (name fb:en.patrick_warburton "Patrick Warburton") (name fb:en.alex_borstein "Alex Borstein") (name fb:en.seth_green "Seth Green") (name fb:en.alec_sulkin "Alec Sulkin") (name fb:en.mila_kunis "Mila Kunis") (name fb:en.danny_smith "Danny Smith") (name fb:en.adam_west "Adam West"))) (type fb:tv.tv_actor) who plays the voice of brian on family guy? Alec Sulkin 9.568 formula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane "Seth MacFarlane") (name fb:m.0f87jy "Mike Henry") (name fb:en.lacey_chabert "Lacey Chabert") (name fb:en.patrick_warburton "Patrick Warburton") (name fb:en.alex_borstein "Alex Borstein") (name fb:en.seth_green "Seth Green") (name fb:en.alec_sulkin "Alec Sulkin") (name fb:en.mila_kunis "Mila Kunis") (name fb:en.danny_smith "Danny Smith") (name fb:en.adam_west "Adam West"))) (type fb:tv.tv_actor) who plays the voice of brian on family guy? Mila Kunis 9.568 formula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane "Seth MacFarlane") (name fb:m.0f87jy "Mike Henry") (name fb:en.lacey_chabert "Lacey Chabert") (name fb:en.patrick_warburton "Patrick Warburton") (name fb:en.alex_borstein "Alex Borstein") (name fb:en.seth_green "Seth Green") (name fb:en.alec_sulkin "Alec Sulkin") (name fb:en.mila_kunis "Mila Kunis") (name fb:en.danny_smith "Danny Smith") (name fb:en.adam_west "Adam West"))) (type fb:tv.tv_actor) who plays the voice of brian on family guy? Danny Smith 9.568 formula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane "Seth MacFarlane") (name fb:m.0f87jy "Mike Henry") (name fb:en.lacey_chabert "Lacey Chabert") (name fb:en.patrick_warburton "Patrick Warburton") (name fb:en.alex_borstein "Alex Borstein") (name fb:en.seth_green "Seth Green") (name fb:en.alec_sulkin "Alec Sulkin") (name fb:en.mila_kunis "Mila Kunis") (name fb:en.danny_smith "Danny Smith") (name fb:en.adam_west "Adam West"))) (type fb:tv.tv_actor) who plays the voice of brian on family guy? Adam West 9.568 formula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane "Seth MacFarlane") (name fb:m.0f87jy "Mike Henry") (name fb:en.lacey_chabert "Lacey Chabert") (name fb:en.patrick_warburton "Patrick Warburton") (name fb:en.alex_borstein "Alex Borstein") (name fb:en.seth_green "Seth Green") (name fb:en.alec_sulkin "Alec Sulkin") (name fb:en.mila_kunis "Mila Kunis") (name fb:en.danny_smith "Danny Smith") (name fb:en.adam_west "Adam West"))) (type fb:tv.tv_actor) what make of bike did steve mcqueen ride in the great escape? Film Producer 8.094 formula (fb:people.profession.people_with_this_profession fb:en.steve_mcqueen)) (value (list (name fb:en.film_producer "Film Producer") (name fb:en.film_actor Actor))) (type fb:people.profession) where did george w bush live as a child? Washington, D.C. 7.031 formula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.george_w_bush))) (value (list (name fb:en.midland Midland) (name fb:en.washington_united_states "Washington, D.C."))) (type fb:location.location) which dawkins book to read first? River out of Eden 9.187 formula (!fb:book.author.book_editions_published fb:en.richard_dawkins)) (value (list (name fb:m.04vdvk9 "River out of Eden") (name fb:en.river_out_of_eden_science_masters "River Out of Eden (Science Masters)") (name fb:m.04ttg2d "River Out of Eden") (name fb:m.04vdvls "River out of eden") (name fb:m.04vdvpy "River Out of Eden (\"Daily Telegraph\" Talking Science)") (name fb:m.04ttg31 "Der entzauberte Regenbogen. Wissenschaft, Aberglaube und die Kraft der Phantasie.") (name fb:m.04ttf_0 "A devil's chaplain") (name fb:en.selfish_gene "Selfish Gene") (name fb:m.04vdwjn "The Selfish Gene") (name fb:m.04vdwjx "The Selfish Gene"))) (type fb:book.book_edition) which dawkins book to read first? River Out of Eden (Science Masters) 9.187 formula (!fb:book.author.book_editions_published fb:en.richard_dawkins)) (value (list (name fb:m.04vdvk9 "River out of Eden") (name fb:en.river_out_of_eden_science_masters "River Out of Eden (Science Masters)") (name fb:m.04ttg2d "River Out of Eden") (name fb:m.04vdvls "River out of eden") (name fb:m.04vdvpy "River Out of Eden (\"Daily Telegraph\" Talking Science)") (name fb:m.04ttg31 "Der entzauberte Regenbogen. Wissenschaft, Aberglaube und die Kraft der Phantasie.") (name fb:m.04ttf_0 "A devil's chaplain") (name fb:en.selfish_gene "Selfish Gene") (name fb:m.04vdwjn "The Selfish Gene") (name fb:m.04vdwjx "The Selfish Gene"))) (type fb:book.book_edition) which dawkins book to read first? River Out of Eden 9.187 formula (!fb:book.author.book_editions_published fb:en.richard_dawkins)) (value (list (name fb:m.04vdvk9 "River out of Eden") (name fb:en.river_out_of_eden_science_masters "River Out of Eden (Science Masters)") (name fb:m.04ttg2d "River Out of Eden") (name fb:m.04vdvls "River out of eden") (name fb:m.04vdvpy "River Out of Eden (\"Daily Telegraph\" Talking Science)") (name fb:m.04ttg31 "Der entzauberte Regenbogen. Wissenschaft, Aberglaube und die Kraft der Phantasie.") (name fb:m.04ttf_0 "A devil's chaplain") (name fb:en.selfish_gene "Selfish Gene") (name fb:m.04vdwjn "The Selfish Gene") (name fb:m.04vdwjx "The Selfish Gene"))) (type fb:book.book_edition) which dawkins book to read first? River out of eden 9.187 formula (!fb:book.author.book_editions_published fb:en.richard_dawkins)) (value (list (name fb:m.04vdvk9 "River out of Eden") (name fb:en.river_out_of_eden_science_masters "River Out of Eden (Science Masters)") (name fb:m.04ttg2d "River Out of Eden") (name fb:m.04vdvls "River out of eden") (name fb:m.04vdvpy "River Out of Eden (\"Daily Telegraph\" Talking Science)") (name fb:m.04ttg31 "Der entzauberte Regenbogen. Wissenschaft, Aberglaube und die Kraft der Phantasie.") (name fb:m.04ttf_0 "A devil's chaplain") (name fb:en.selfish_gene "Selfish Gene") (name fb:m.04vdwjn "The Selfish Gene") (name fb:m.04vdwjx "The Selfish Gene"))) (type fb:book.book_edition) which dawkins book to read first? River Out of Eden (\ 9.187 formula (!fb:book.author.book_editions_published fb:en.richard_dawkins)) (value (list (name fb:m.04vdvk9 "River out of Eden") (name fb:en.river_out_of_eden_science_masters "River Out of Eden (Science Masters)") (name fb:m.04ttg2d "River Out of Eden") (name fb:m.04vdvls "River out of eden") (name fb:m.04vdvpy "River Out of Eden (\"Daily Telegraph\" Talking Science)") (name fb:m.04ttg31 "Der entzauberte Regenbogen. Wissenschaft, Aberglaube und die Kraft der Phantasie.") (name fb:m.04ttf_0 "A devil's chaplain") (name fb:en.selfish_gene "Selfish Gene") (name fb:m.04vdwjn "The Selfish Gene") (name fb:m.04vdwjx "The Selfish Gene"))) (type fb:book.book_edition) which dawkins book to read first? Talking Science) 9.187 formula (!fb:book.author.book_editions_published fb:en.richard_dawkins)) (value (list (name fb:m.04vdvk9 "River out of Eden") (name fb:en.river_out_of_eden_science_masters "River Out of Eden (Science Masters)") (name fb:m.04ttg2d "River Out of Eden") (name fb:m.04vdvls "River out of eden") (name fb:m.04vdvpy "River Out of Eden (\"Daily Telegraph\" Talking Science)") (name fb:m.04ttg31 "Der entzauberte Regenbogen. Wissenschaft, Aberglaube und die Kraft der Phantasie.") (name fb:m.04ttf_0 "A devil's chaplain") (name fb:en.selfish_gene "Selfish Gene") (name fb:m.04vdwjn "The Selfish Gene") (name fb:m.04vdwjx "The Selfish Gene"))) (type fb:book.book_edition) which dawkins book to read first? Der entzauberte Regenbogen. Wissenschaft, Aberglaube und die Kraft der Phantasie. 9.187 formula (!fb:book.author.book_editions_published fb:en.richard_dawkins)) (value (list (name fb:m.04vdvk9 "River out of Eden") (name fb:en.river_out_of_eden_science_masters "River Out of Eden (Science Masters)") (name fb:m.04ttg2d "River Out of Eden") (name fb:m.04vdvls "River out of eden") (name fb:m.04vdvpy "River Out of Eden (\"Daily Telegraph\" Talking Science)") (name fb:m.04ttg31 "Der entzauberte Regenbogen. Wissenschaft, Aberglaube und die Kraft der Phantasie.") (name fb:m.04ttf_0 "A devil's chaplain") (name fb:en.selfish_gene "Selfish Gene") (name fb:m.04vdwjn "The Selfish Gene") (name fb:m.04vdwjx "The Selfish Gene"))) (type fb:book.book_edition) which dawkins book to read first? A devil's chaplain 9.187 formula (!fb:book.author.book_editions_published fb:en.richard_dawkins)) (value (list (name fb:m.04vdvk9 "River out of Eden") (name fb:en.river_out_of_eden_science_masters "River Out of Eden (Science Masters)") (name fb:m.04ttg2d "River Out of Eden") (name fb:m.04vdvls "River out of eden") (name fb:m.04vdvpy "River Out of Eden (\"Daily Telegraph\" Talking Science)") (name fb:m.04ttg31 "Der entzauberte Regenbogen. Wissenschaft, Aberglaube und die Kraft der Phantasie.") (name fb:m.04ttf_0 "A devil's chaplain") (name fb:en.selfish_gene "Selfish Gene") (name fb:m.04vdwjn "The Selfish Gene") (name fb:m.04vdwjx "The Selfish Gene"))) (type fb:book.book_edition) which dawkins book to read first? Selfish Gene 9.187 formula (!fb:book.author.book_editions_published fb:en.richard_dawkins)) (value (list (name fb:m.04vdvk9 "River out of Eden") (name fb:en.river_out_of_eden_science_masters "River Out of Eden (Science Masters)") (name fb:m.04ttg2d "River Out of Eden") (name fb:m.04vdvls "River out of eden") (name fb:m.04vdvpy "River Out of Eden (\"Daily Telegraph\" Talking Science)") (name fb:m.04ttg31 "Der entzauberte Regenbogen. Wissenschaft, Aberglaube und die Kraft der Phantasie.") (name fb:m.04ttf_0 "A devil's chaplain") (name fb:en.selfish_gene "Selfish Gene") (name fb:m.04vdwjn "The Selfish Gene") (name fb:m.04vdwjx "The Selfish Gene"))) (type fb:book.book_edition) which dawkins book to read first? The Selfish Gene 9.187 formula (!fb:book.author.book_editions_published fb:en.richard_dawkins)) (value (list (name fb:m.04vdvk9 "River out of Eden") (name fb:en.river_out_of_eden_science_masters "River Out of Eden (Science Masters)") (name fb:m.04ttg2d "River Out of Eden") (name fb:m.04vdvls "River out of eden") (name fb:m.04vdvpy "River Out of Eden (\"Daily Telegraph\" Talking Science)") (name fb:m.04ttg31 "Der entzauberte Regenbogen. Wissenschaft, Aberglaube und die Kraft der Phantasie.") (name fb:m.04ttf_0 "A devil's chaplain") (name fb:en.selfish_gene "Selfish Gene") (name fb:m.04vdwjn "The Selfish Gene") (name fb:m.04vdwjx "The Selfish Gene"))) (type fb:book.book_edition) which dawkins book to read first? The Selfish Gene 9.187 formula (!fb:book.author.book_editions_published fb:en.richard_dawkins)) (value (list (name fb:m.04vdvk9 "River out of Eden") (name fb:en.river_out_of_eden_science_masters "River Out of Eden (Science Masters)") (name fb:m.04ttg2d "River Out of Eden") (name fb:m.04vdvls "River out of eden") (name fb:m.04vdvpy "River Out of Eden (\"Daily Telegraph\" Talking Science)") (name fb:m.04ttg31 "Der entzauberte Regenbogen. Wissenschaft, Aberglaube und die Kraft der Phantasie.") (name fb:m.04ttf_0 "A devil's chaplain") (name fb:en.selfish_gene "Selfish Gene") (name fb:m.04vdwjn "The Selfish Gene") (name fb:m.04vdwjx "The Selfish Gene"))) (type fb:book.book_edition) what was nikola tesla inventions? Induction motor 15.823 formula (!fb:law.inventor.inventions fb:en.nikola_tesla)) (value (list (name fb:en.induction_motor "Induction motor") (name fb:en.remote_control "Remote control") (name fb:en.alternating_current "Alternating current") (name fb:en.wireless_telegraphy "Wireless telegraphy") (name fb:en.tesla_coil "Tesla coil") (name fb:en.neon_lamp "Neon lamp"))) (type fb:law.invention) what was nikola tesla inventions? Remote control 15.823 formula (!fb:law.inventor.inventions fb:en.nikola_tesla)) (value (list (name fb:en.induction_motor "Induction motor") (name fb:en.remote_control "Remote control") (name fb:en.alternating_current "Alternating current") (name fb:en.wireless_telegraphy "Wireless telegraphy") (name fb:en.tesla_coil "Tesla coil") (name fb:en.neon_lamp "Neon lamp"))) (type fb:law.invention) what was nikola tesla inventions? Alternating current 15.823 formula (!fb:law.inventor.inventions fb:en.nikola_tesla)) (value (list (name fb:en.induction_motor "Induction motor") (name fb:en.remote_control "Remote control") (name fb:en.alternating_current "Alternating current") (name fb:en.wireless_telegraphy "Wireless telegraphy") (name fb:en.tesla_coil "Tesla coil") (name fb:en.neon_lamp "Neon lamp"))) (type fb:law.invention) what was nikola tesla inventions? Wireless telegraphy 15.823 formula (!fb:law.inventor.inventions fb:en.nikola_tesla)) (value (list (name fb:en.induction_motor "Induction motor") (name fb:en.remote_control "Remote control") (name fb:en.alternating_current "Alternating current") (name fb:en.wireless_telegraphy "Wireless telegraphy") (name fb:en.tesla_coil "Tesla coil") (name fb:en.neon_lamp "Neon lamp"))) (type fb:law.invention) what was nikola tesla inventions? Tesla coil 15.823 formula (!fb:law.inventor.inventions fb:en.nikola_tesla)) (value (list (name fb:en.induction_motor "Induction motor") (name fb:en.remote_control "Remote control") (name fb:en.alternating_current "Alternating current") (name fb:en.wireless_telegraphy "Wireless telegraphy") (name fb:en.tesla_coil "Tesla coil") (name fb:en.neon_lamp "Neon lamp"))) (type fb:law.invention) what was nikola tesla inventions? Neon lamp 15.823 formula (!fb:law.inventor.inventions fb:en.nikola_tesla)) (value (list (name fb:en.induction_motor "Induction motor") (name fb:en.remote_control "Remote control") (name fb:en.alternating_current "Alternating current") (name fb:en.wireless_telegraphy "Wireless telegraphy") (name fb:en.tesla_coil "Tesla coil") (name fb:en.neon_lamp "Neon lamp"))) (type fb:law.invention) where did flemish people come from? United States of America 6.033 formula (and (fb:type.object.type fb:location.location) (!fb:people.ethnicity.geographic_distribution fb:en.flemish_people))) (value (list (name fb:en.united_states_of_america "United States of America") (name fb:en.france France) (name fb:en.canada Canada) (name fb:en.south_africa "South Africa") (name fb:en.brazil Brazil) (name fb:en.belgium Belgium) (name fb:en.australia Australia))) (type fb:location.location) where did flemish people come from? South Africa 6.033 formula (and (fb:type.object.type fb:location.location) (!fb:people.ethnicity.geographic_distribution fb:en.flemish_people))) (value (list (name fb:en.united_states_of_america "United States of America") (name fb:en.france France) (name fb:en.canada Canada) (name fb:en.south_africa "South Africa") (name fb:en.brazil Brazil) (name fb:en.belgium Belgium) (name fb:en.australia Australia))) (type fb:location.location) what state new york city belong to? New Jersey 15.08 formula (and (fb:type.object.type fb:location.us_state) ((lambda x (fb:location.location.adjoin_s (fb:location.adjoining_relationship.adjoins (var x)))) fb:en.new_york_ny))) (value (list (name fb:en.pennsylvania Pennsylvania) (name fb:en.new_jersey "New Jersey"))) (type (union fb:location.us_state)) what type of currency do they use in england? UK £ 21.937 formula (!fb:location.country.currency_used fb:en.england)) (value (list (name fb:en.uk "UK £"))) (type fb:finance.currency) where was benjamin franklin educated? Boston Latin School 8.054 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.benjamin_franklin))) (value (list (name fb:en.boston_latin_school "Boston Latin School"))) (type fb:education.educational_institution) what countries included in the uk? United Kingdom 15.311 formula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland "Northern Ireland") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain "Kingdom of Great Britain") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england "Kingdom of England") (name fb:en.isle_of_man "Isle of Man"))) (type (union fb:location.country)) what countries included in the uk? Northern Ireland 15.311 formula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland "Northern Ireland") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain "Kingdom of Great Britain") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england "Kingdom of England") (name fb:en.isle_of_man "Isle of Man"))) (type (union fb:location.country)) what countries included in the uk? Kingdom of Great Britain 15.311 formula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland "Northern Ireland") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain "Kingdom of Great Britain") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england "Kingdom of England") (name fb:en.isle_of_man "Isle of Man"))) (type (union fb:location.country)) what countries included in the uk? Kingdom of England 15.311 formula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland "Northern Ireland") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain "Kingdom of Great Britain") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england "Kingdom of England") (name fb:en.isle_of_man "Isle of Man"))) (type (union fb:location.country)) what countries included in the uk? Isle of Man 15.311 formula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland "Northern Ireland") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain "Kingdom of Great Britain") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england "Kingdom of England") (name fb:en.isle_of_man "Isle of Man"))) (type (union fb:location.country)) what countries in the world speak chinese? Hong Kong 15.325 formula (and (fb:type.object.type fb:location.country) (!fb:language.human_language.countries_spoken_in fb:en.chinese_yue))) (value (list (name fb:en.hong_kong "Hong Kong") (name fb:en.china China) (name fb:en.malaysia Malaysia))) (type (union fb:location.country)) where obama went to school? State Elementary School Menteng 01 12.346 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.barack_obama))) (value (list (name fb:en.basuki_school "State Elementary School Menteng 01") (name fb:en.punahou_school_campus "Punahou School") (name fb:m.0nbyhz3 "St. Francis of Assisi Catholic School") (name fb:en.occidental_college "Occidental College") (name fb:en.columbia_university "Columbia University") (name fb:en.noelani_elementary_school "Noelani Elementary School") (name fb:en.harvard_law_school "Harvard Law School"))) (type fb:education.educational_institution) where obama went to school? Punahou School 12.346 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.barack_obama))) (value (list (name fb:en.basuki_school "State Elementary School Menteng 01") (name fb:en.punahou_school_campus "Punahou School") (name fb:m.0nbyhz3 "St. Francis of Assisi Catholic School") (name fb:en.occidental_college "Occidental College") (name fb:en.columbia_university "Columbia University") (name fb:en.noelani_elementary_school "Noelani Elementary School") (name fb:en.harvard_law_school "Harvard Law School"))) (type fb:education.educational_institution) where obama went to school? St. Francis of Assisi Catholic School 12.346 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.barack_obama))) (value (list (name fb:en.basuki_school "State Elementary School Menteng 01") (name fb:en.punahou_school_campus "Punahou School") (name fb:m.0nbyhz3 "St. Francis of Assisi Catholic School") (name fb:en.occidental_college "Occidental College") (name fb:en.columbia_university "Columbia University") (name fb:en.noelani_elementary_school "Noelani Elementary School") (name fb:en.harvard_law_school "Harvard Law School"))) (type fb:education.educational_institution) where obama went to school? Occidental College 12.346 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.barack_obama))) (value (list (name fb:en.basuki_school "State Elementary School Menteng 01") (name fb:en.punahou_school_campus "Punahou School") (name fb:m.0nbyhz3 "St. Francis of Assisi Catholic School") (name fb:en.occidental_college "Occidental College") (name fb:en.columbia_university "Columbia University") (name fb:en.noelani_elementary_school "Noelani Elementary School") (name fb:en.harvard_law_school "Harvard Law School"))) (type fb:education.educational_institution) where obama went to school? Columbia University 12.346 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.barack_obama))) (value (list (name fb:en.basuki_school "State Elementary School Menteng 01") (name fb:en.punahou_school_campus "Punahou School") (name fb:m.0nbyhz3 "St. Francis of Assisi Catholic School") (name fb:en.occidental_college "Occidental College") (name fb:en.columbia_university "Columbia University") (name fb:en.noelani_elementary_school "Noelani Elementary School") (name fb:en.harvard_law_school "Harvard Law School"))) (type fb:education.educational_institution) where obama went to school? Noelani Elementary School 12.346 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.barack_obama))) (value (list (name fb:en.basuki_school "State Elementary School Menteng 01") (name fb:en.punahou_school_campus "Punahou School") (name fb:m.0nbyhz3 "St. Francis of Assisi Catholic School") (name fb:en.occidental_college "Occidental College") (name fb:en.columbia_university "Columbia University") (name fb:en.noelani_elementary_school "Noelani Elementary School") (name fb:en.harvard_law_school "Harvard Law School"))) (type fb:education.educational_institution) where obama went to school? Harvard Law School 12.346 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.barack_obama))) (value (list (name fb:en.basuki_school "State Elementary School Menteng 01") (name fb:en.punahou_school_campus "Punahou School") (name fb:m.0nbyhz3 "St. Francis of Assisi Catholic School") (name fb:en.occidental_college "Occidental College") (name fb:en.columbia_university "Columbia University") (name fb:en.noelani_elementary_school "Noelani Elementary School") (name fb:en.harvard_law_school "Harvard Law School"))) (type fb:education.educational_institution) what is the primary language of china? Standard Mandarin 19.802 formula (!fb:location.country.official_language fb:en.china)) (value (list (name fb:en.standard_mandarin "Standard Mandarin"))) (type fb:language.human_language) who was the soviet leader during world war ii? Stuka Ju-87 ARF 7.351 formula (fb:business.consumer_product.themes fb:en.world_war_ii)) (value (list (name fb:m.0gcqy4f "Stuka Ju-87 ARF"))) (type fb:business.consumer_product) where was david berkowitz arrested? New York City 5.739 formula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.david_berkowitz))) (value (list (name fb:en.new_york_ny "New York City") (name fb:en.kings_county_new_york Brooklyn) (name fb:en.yonkers Yonkers))) (type fb:location.location) where was the city of david? Los Angeles 12.436 formula (and (fb:type.object.type fb:location.location) (and (fb:type.object.type fb:location.citytown) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.david_beckham)))) (value (list (name fb:en.los_angeles "Los Angeles") (name fb:en.beverly_hills "Beverly Hills"))) (type fb:location.citytown) where was the city of david? Beverly Hills 12.436 formula (and (fb:type.object.type fb:location.location) (and (fb:type.object.type fb:location.citytown) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.david_beckham)))) (value (list (name fb:en.los_angeles "Los Angeles") (name fb:en.beverly_hills "Beverly Hills"))) (type fb:location.citytown) what tv shows did shawnee smith play in? All is Forgiven 15.005 formula (and (fb:type.object.type fb:tv.tv_program) ((lambda x (!fb:tv.regular_tv_appearance.series (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.shawnee_smith))) (value (list (name fb:m.07chqg3 "All is Forgiven") (name fb:en.30_days_of_night_dust_to_dust "30 Days of Night: Dust to Dust") (name fb:m.07cgvhn "Brand New Life") (name fb:en.becker Becker) (name fb:en.scream_queens "Scream Queens") (name fb:m.0j635r0 "Anger Management") (name fb:en.the_tom_show "The Tom Show") (name fb:en.the_stand_1994 "The Stand") (name fb:m.0gvvdpf Arsenio))) (type (union fb:tv.tv_program)) what tv shows did shawnee smith play in? 30 Days of Night: Dust to Dust 15.005 formula (and (fb:type.object.type fb:tv.tv_program) ((lambda x (!fb:tv.regular_tv_appearance.series (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.shawnee_smith))) (value (list (name fb:m.07chqg3 "All is Forgiven") (name fb:en.30_days_of_night_dust_to_dust "30 Days of Night: Dust to Dust") (name fb:m.07cgvhn "Brand New Life") (name fb:en.becker Becker) (name fb:en.scream_queens "Scream Queens") (name fb:m.0j635r0 "Anger Management") (name fb:en.the_tom_show "The Tom Show") (name fb:en.the_stand_1994 "The Stand") (name fb:m.0gvvdpf Arsenio))) (type (union fb:tv.tv_program)) what tv shows did shawnee smith play in? Brand New Life 15.005 formula (and (fb:type.object.type fb:tv.tv_program) ((lambda x (!fb:tv.regular_tv_appearance.series (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.shawnee_smith))) (value (list (name fb:m.07chqg3 "All is Forgiven") (name fb:en.30_days_of_night_dust_to_dust "30 Days of Night: Dust to Dust") (name fb:m.07cgvhn "Brand New Life") (name fb:en.becker Becker) (name fb:en.scream_queens "Scream Queens") (name fb:m.0j635r0 "Anger Management") (name fb:en.the_tom_show "The Tom Show") (name fb:en.the_stand_1994 "The Stand") (name fb:m.0gvvdpf Arsenio))) (type (union fb:tv.tv_program)) what tv shows did shawnee smith play in? Scream Queens 15.005 formula (and (fb:type.object.type fb:tv.tv_program) ((lambda x (!fb:tv.regular_tv_appearance.series (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.shawnee_smith))) (value (list (name fb:m.07chqg3 "All is Forgiven") (name fb:en.30_days_of_night_dust_to_dust "30 Days of Night: Dust to Dust") (name fb:m.07cgvhn "Brand New Life") (name fb:en.becker Becker) (name fb:en.scream_queens "Scream Queens") (name fb:m.0j635r0 "Anger Management") (name fb:en.the_tom_show "The Tom Show") (name fb:en.the_stand_1994 "The Stand") (name fb:m.0gvvdpf Arsenio))) (type (union fb:tv.tv_program)) what tv shows did shawnee smith play in? Anger Management 15.005 formula (and (fb:type.object.type fb:tv.tv_program) ((lambda x (!fb:tv.regular_tv_appearance.series (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.shawnee_smith))) (value (list (name fb:m.07chqg3 "All is Forgiven") (name fb:en.30_days_of_night_dust_to_dust "30 Days of Night: Dust to Dust") (name fb:m.07cgvhn "Brand New Life") (name fb:en.becker Becker) (name fb:en.scream_queens "Scream Queens") (name fb:m.0j635r0 "Anger Management") (name fb:en.the_tom_show "The Tom Show") (name fb:en.the_stand_1994 "The Stand") (name fb:m.0gvvdpf Arsenio))) (type (union fb:tv.tv_program)) what tv shows did shawnee smith play in? The Tom Show 15.005 formula (and (fb:type.object.type fb:tv.tv_program) ((lambda x (!fb:tv.regular_tv_appearance.series (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.shawnee_smith))) (value (list (name fb:m.07chqg3 "All is Forgiven") (name fb:en.30_days_of_night_dust_to_dust "30 Days of Night: Dust to Dust") (name fb:m.07cgvhn "Brand New Life") (name fb:en.becker Becker) (name fb:en.scream_queens "Scream Queens") (name fb:m.0j635r0 "Anger Management") (name fb:en.the_tom_show "The Tom Show") (name fb:en.the_stand_1994 "The Stand") (name fb:m.0gvvdpf Arsenio))) (type (union fb:tv.tv_program)) what tv shows did shawnee smith play in? The Stand 15.005 formula (and (fb:type.object.type fb:tv.tv_program) ((lambda x (!fb:tv.regular_tv_appearance.series (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.shawnee_smith))) (value (list (name fb:m.07chqg3 "All is Forgiven") (name fb:en.30_days_of_night_dust_to_dust "30 Days of Night: Dust to Dust") (name fb:m.07cgvhn "Brand New Life") (name fb:en.becker Becker) (name fb:en.scream_queens "Scream Queens") (name fb:m.0j635r0 "Anger Management") (name fb:en.the_tom_show "The Tom Show") (name fb:en.the_stand_1994 "The Stand") (name fb:m.0gvvdpf Arsenio))) (type (union fb:tv.tv_program)) what does australia use for currency? Australian dollar 17.896 formula (!fb:location.country.currency_used fb:en.australia)) (value (list (name fb:en.australian_dollar "Australian dollar"))) (type fb:finance.currency) which airport to fly into rome? Leonardo da Vinci–Fiumicino Airport 17.364 formula (!fb:location.location.nearby_airports fb:en.rome)) (value (list (name fb:en.leonardo_da_vinci_international_airport "Leonardo da Vinci–Fiumicino Airport") (name fb:en.italian_met_office_airport "Italian Met Office Airport") (name fb:en.ciampino_airport "Ciampino–G. B. Pastine International Airport") (name fb:en.rome_viterbo_airport "Rome Viterbo Airport") (name fb:en.urbe_airport "Urbe Airport"))) (type fb:aviation.airport) which airport to fly into rome? Italian Met Office Airport 17.364 formula (!fb:location.location.nearby_airports fb:en.rome)) (value (list (name fb:en.leonardo_da_vinci_international_airport "Leonardo da Vinci–Fiumicino Airport") (name fb:en.italian_met_office_airport "Italian Met Office Airport") (name fb:en.ciampino_airport "Ciampino–G. B. Pastine International Airport") (name fb:en.rome_viterbo_airport "Rome Viterbo Airport") (name fb:en.urbe_airport "Urbe Airport"))) (type fb:aviation.airport) which airport to fly into rome? Ciampino–G. B. Pastine International Airport 17.364 formula (!fb:location.location.nearby_airports fb:en.rome)) (value (list (name fb:en.leonardo_da_vinci_international_airport "Leonardo da Vinci–Fiumicino Airport") (name fb:en.italian_met_office_airport "Italian Met Office Airport") (name fb:en.ciampino_airport "Ciampino–G. B. Pastine International Airport") (name fb:en.rome_viterbo_airport "Rome Viterbo Airport") (name fb:en.urbe_airport "Urbe Airport"))) (type fb:aviation.airport) which airport to fly into rome? Rome Viterbo Airport 17.364 formula (!fb:location.location.nearby_airports fb:en.rome)) (value (list (name fb:en.leonardo_da_vinci_international_airport "Leonardo da Vinci–Fiumicino Airport") (name fb:en.italian_met_office_airport "Italian Met Office Airport") (name fb:en.ciampino_airport "Ciampino–G. B. Pastine International Airport") (name fb:en.rome_viterbo_airport "Rome Viterbo Airport") (name fb:en.urbe_airport "Urbe Airport"))) (type fb:aviation.airport) which airport to fly into rome? Urbe Airport 17.364 formula (!fb:location.location.nearby_airports fb:en.rome)) (value (list (name fb:en.leonardo_da_vinci_international_airport "Leonardo da Vinci–Fiumicino Airport") (name fb:en.italian_met_office_airport "Italian Met Office Airport") (name fb:en.ciampino_airport "Ciampino–G. B. Pastine International Airport") (name fb:en.rome_viterbo_airport "Rome Viterbo Airport") (name fb:en.urbe_airport "Urbe Airport"))) (type fb:aviation.airport) what year was lebron james rookie season? 2003–04 NBA season 10.38 formula (and (fb:type.object.type fb:time.event) ((lambda x (!fb:sports.sports_award.season (!fb:sports.sports_award_winner.awards (var x)))) fb:en.lebron_james))) (value (list (name fb:en.2003-04_nba_season "2003–04 NBA season") (name fb:m.0gfhvd4 "2011–12 NBA season") (name fb:en.2008_09_nba_season "2008–09 NBA season") (name fb:en.2007-08_nba_season "2007–08 NBA season") (name fb:en.2005-06_nba_season "2005–06 NBA season"))) (type fb:sports.sports_league_season) what year was lebron james rookie season? 2011–12 NBA season 10.38 formula (and (fb:type.object.type fb:time.event) ((lambda x (!fb:sports.sports_award.season (!fb:sports.sports_award_winner.awards (var x)))) fb:en.lebron_james))) (value (list (name fb:en.2003-04_nba_season "2003–04 NBA season") (name fb:m.0gfhvd4 "2011–12 NBA season") (name fb:en.2008_09_nba_season "2008–09 NBA season") (name fb:en.2007-08_nba_season "2007–08 NBA season") (name fb:en.2005-06_nba_season "2005–06 NBA season"))) (type fb:sports.sports_league_season) what year was lebron james rookie season? 2008–09 NBA season 10.38 formula (and (fb:type.object.type fb:time.event) ((lambda x (!fb:sports.sports_award.season (!fb:sports.sports_award_winner.awards (var x)))) fb:en.lebron_james))) (value (list (name fb:en.2003-04_nba_season "2003–04 NBA season") (name fb:m.0gfhvd4 "2011–12 NBA season") (name fb:en.2008_09_nba_season "2008–09 NBA season") (name fb:en.2007-08_nba_season "2007–08 NBA season") (name fb:en.2005-06_nba_season "2005–06 NBA season"))) (type fb:sports.sports_league_season) what year was lebron james rookie season? 2007–08 NBA season 10.38 formula (and (fb:type.object.type fb:time.event) ((lambda x (!fb:sports.sports_award.season (!fb:sports.sports_award_winner.awards (var x)))) fb:en.lebron_james))) (value (list (name fb:en.2003-04_nba_season "2003–04 NBA season") (name fb:m.0gfhvd4 "2011–12 NBA season") (name fb:en.2008_09_nba_season "2008–09 NBA season") (name fb:en.2007-08_nba_season "2007–08 NBA season") (name fb:en.2005-06_nba_season "2005–06 NBA season"))) (type fb:sports.sports_league_season) what year was lebron james rookie season? 2005–06 NBA season 10.38 formula (and (fb:type.object.type fb:time.event) ((lambda x (!fb:sports.sports_award.season (!fb:sports.sports_award_winner.awards (var x)))) fb:en.lebron_james))) (value (list (name fb:en.2003-04_nba_season "2003–04 NBA season") (name fb:m.0gfhvd4 "2011–12 NBA season") (name fb:en.2008_09_nba_season "2008–09 NBA season") (name fb:en.2007-08_nba_season "2007–08 NBA season") (name fb:en.2005-06_nba_season "2005–06 NBA season"))) (type fb:sports.sports_league_season) where does delaware river start? Mount Jefferson 5.483 formula (and (fb:type.object.type fb:location.location) (!fb:geography.river.origin fb:en.delaware_river))) (value (list (name fb:en.mount_jefferson_new_york "Mount Jefferson") (name fb:en.west_branch_delaware_river "West Branch Delaware River"))) (type fb:location.location) where does delaware river start? West Branch Delaware River 5.483 formula (and (fb:type.object.type fb:location.location) (!fb:geography.river.origin fb:en.delaware_river))) (value (list (name fb:en.mount_jefferson_new_york "Mount Jefferson") (name fb:en.west_branch_delaware_river "West Branch Delaware River"))) (type fb:location.location) what kind of monarchy does japan have? House of Representatives 8.211 formula ((lambda x (!fb:government.government_position_held.governmental_body (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.japan)) (value (list (name fb:en.house_of_representatives_of_japan "House of Representatives") (name fb:en.house_of_councillors "House of Councillors"))) (type fb:government.governmental_body) what kind of monarchy does japan have? House of Councillors 8.211 formula ((lambda x (!fb:government.government_position_held.governmental_body (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.japan)) (value (list (name fb:en.house_of_representatives_of_japan "House of Representatives") (name fb:en.house_of_councillors "House of Councillors"))) (type fb:government.governmental_body) where did mitt romney's parents come from? Bloomfield Hills 5.806 formula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.mitt_romney))) (value (list (name fb:en.bloomfield_hills "Bloomfield Hills") (name fb:en.massachusetts Massachusetts))) (type fb:location.location) what places in japan were bombed? United States of America 11.101 formula (and (fb:type.object.type fb:location.country) ((lambda x (fb:location.statistical_region.places_imported_from (fb:location.imports_and_exports.imported_from (var x)))) fb:en.japan))) (value (list (name fb:en.sudan Sudan) (name fb:en.tuvalu Tuvalu) (name fb:en.united_states_of_america "United States of America") (name fb:en.kiribati Kiribati) (name fb:en.canada Canada))) (type (union fb:location.country)) when did michael jordan return to the nba? Birmingham Barons 13.044 formula ((lambda x (fb:baseball.baseball_team.historical_roster (fb:baseball.baseball_historical_roster_position.player (var x)))) fb:en.michael_jordan)) (value (list (name fb:en.birmingham_barons "Birmingham Barons") (name fb:en.scottsdale_scorpions "Scottsdale Scorpions"))) (type fb:baseball.baseball_team) when did michael jordan return to the nba? Scottsdale Scorpions 13.044 formula ((lambda x (fb:baseball.baseball_team.historical_roster (fb:baseball.baseball_historical_roster_position.player (var x)))) fb:en.michael_jordan)) (value (list (name fb:en.birmingham_barons "Birmingham Barons") (name fb:en.scottsdale_scorpions "Scottsdale Scorpions"))) (type fb:baseball.baseball_team) what type of economy exists in china? Communist state 10.626 formula (!fb:location.country.form_of_government fb:en.china)) (value (list (name fb:en.communist_state "Communist state") (name fb:en.socialist_state "Socialist state") (name fb:en.single-party_state "Single-party state"))) (type fb:government.form_of_government) what type of economy exists in china? Socialist state 10.626 formula (!fb:location.country.form_of_government fb:en.china)) (value (list (name fb:en.communist_state "Communist state") (name fb:en.socialist_state "Socialist state") (name fb:en.single-party_state "Single-party state"))) (type fb:government.form_of_government) what type of economy exists in china? Single-party state 10.626 formula (!fb:location.country.form_of_government fb:en.china)) (value (list (name fb:en.communist_state "Communist state") (name fb:en.socialist_state "Socialist state") (name fb:en.single-party_state "Single-party state"))) (type fb:government.form_of_government) what is the currency in egypt 2012? Egyptian pound 22.142 formula (!fb:location.country.currency_used fb:en.egypt)) (value (list (name fb:en.egyptian_pound "Egyptian pound"))) (type fb:finance.currency) where was mission san rafael located? San Rafael City Elementary School District 3.544 formula (fb:education.school_district.locations_served fb:en.san_rafael)) (value (list (name fb:en.san_rafael_city_elementary_school_district "San Rafael City Elementary School District"))) (type fb:education.school_district) who was esther's husband? Benjamin Hoar 8.645 formula ((lambda x (!fb:people.marriage.spouse (!fb:people.person.spouse_s (var x)))) fb:m.0fpqn20)) (value (list (name fb:m.0fpqn1t "Benjamin Hoar"))) (type fb:people.person) who's dating claire danes? Carla Danes 0.06 formula (and (fb:type.object.type fb:people.person) (!fb:people.person.parents fb:en.claire_danes))) (value (list (name fb:en.carla_danes "Carla Danes") (name fb:en.christopher_danes "Christopher Danes"))) (type fb:people.person) who's dating claire danes? Christopher Danes 0.06 formula (and (fb:type.object.type fb:people.person) (!fb:people.person.parents fb:en.claire_danes))) (value (list (name fb:en.carla_danes "Carla Danes") (name fb:en.christopher_danes "Christopher Danes"))) (type fb:people.person) what county is st paul va in? Collin County 10.933 formula (!fb:location.hud_county_place.county fb:en.st_paul_texas)) (value (list (name fb:en.collin_county "Collin County"))) (type fb:location.us_county) what produce does florida export? Peter and the Wolf 8.702 formula ((lambda x (fb:film.film.release_date_s (fb:film.film_regional_release_date.film_release_region (var x)))) fb:en.florida)) (value (list (name fb:en.peter_and_the_wolf_2006 "Peter and the Wolf") (name fb:m.05sqdhf "A Matter of Size") (name fb:en.hope_springs "Hope Springs") (name fb:en.radio_cape_cod "Radio Cape Cod"))) (type fb:film.film) what produce does florida export? A Matter of Size 8.702 formula ((lambda x (fb:film.film.release_date_s (fb:film.film_regional_release_date.film_release_region (var x)))) fb:en.florida)) (value (list (name fb:en.peter_and_the_wolf_2006 "Peter and the Wolf") (name fb:m.05sqdhf "A Matter of Size") (name fb:en.hope_springs "Hope Springs") (name fb:en.radio_cape_cod "Radio Cape Cod"))) (type fb:film.film) what produce does florida export? Hope Springs 8.702 formula ((lambda x (fb:film.film.release_date_s (fb:film.film_regional_release_date.film_release_region (var x)))) fb:en.florida)) (value (list (name fb:en.peter_and_the_wolf_2006 "Peter and the Wolf") (name fb:m.05sqdhf "A Matter of Size") (name fb:en.hope_springs "Hope Springs") (name fb:en.radio_cape_cod "Radio Cape Cod"))) (type fb:film.film) what produce does florida export? Radio Cape Cod 8.702 formula ((lambda x (fb:film.film.release_date_s (fb:film.film_regional_release_date.film_release_region (var x)))) fb:en.florida)) (value (list (name fb:en.peter_and_the_wolf_2006 "Peter and the Wolf") (name fb:m.05sqdhf "A Matter of Size") (name fb:en.hope_springs "Hope Springs") (name fb:en.radio_cape_cod "Radio Cape Cod"))) (type fb:film.film) what type of sports do japanese play? Creative Work 9.179 formula (!fb:common.topic.notable_types fb:m.039ngn4)) (value (list (name fb:media_common.creative_work "Creative Work") (name fb:music.release "Musical Release"))) (type fb:type.type) what type of sports do japanese play? Musical Release 9.179 formula (!fb:common.topic.notable_types fb:m.039ngn4)) (value (list (name fb:media_common.creative_work "Creative Work") (name fb:music.release "Musical Release"))) (type fb:type.type) what did drita find out? The Forgiveness of Blood 3.023 formula ((lambda x (!fb:film.performance.film (!fb:film.film_character.portrayed_in_films (var x)))) fb:m.0nf_kb_)) (value (list (name fb:m.0g9z69t "The Forgiveness of Blood"))) (type fb:film.film) where did the latin language originate from? Roman Republic 13.497 formula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.latin))) (value (list (name fb:en.roman_republic "Roman Republic") (name fb:en.byzantine_empire "Byzantine Empire") (name fb:en.roman_empire "Roman Empire") (name fb:en.holy_roman_empire "Holy Roman Empire") (name fb:en.papal_states "Papal States"))) (type fb:location.country) where did the latin language originate from? Byzantine Empire 13.497 formula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.latin))) (value (list (name fb:en.roman_republic "Roman Republic") (name fb:en.byzantine_empire "Byzantine Empire") (name fb:en.roman_empire "Roman Empire") (name fb:en.holy_roman_empire "Holy Roman Empire") (name fb:en.papal_states "Papal States"))) (type fb:location.country) where did the latin language originate from? Roman Empire 13.497 formula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.latin))) (value (list (name fb:en.roman_republic "Roman Republic") (name fb:en.byzantine_empire "Byzantine Empire") (name fb:en.roman_empire "Roman Empire") (name fb:en.holy_roman_empire "Holy Roman Empire") (name fb:en.papal_states "Papal States"))) (type fb:location.country) where did the latin language originate from? Holy Roman Empire 13.497 formula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.latin))) (value (list (name fb:en.roman_republic "Roman Republic") (name fb:en.byzantine_empire "Byzantine Empire") (name fb:en.roman_empire "Roman Empire") (name fb:en.holy_roman_empire "Holy Roman Empire") (name fb:en.papal_states "Papal States"))) (type fb:location.country) where did the latin language originate from? Papal States 13.497 formula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.latin))) (value (list (name fb:en.roman_republic "Roman Republic") (name fb:en.byzantine_empire "Byzantine Empire") (name fb:en.roman_empire "Roman Empire") (name fb:en.holy_roman_empire "Holy Roman Empire") (name fb:en.papal_states "Papal States"))) (type fb:location.country) what school did karl benz go to? University of Karlsruhe 17.155 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.karl_benz))) (value (list (name fb:en.university_of_karlsruhe "University of Karlsruhe") (name fb:en.karlsruhe_institute_of_technology "Karlsruhe Institute of Technology"))) (type fb:education.educational_institution) what school did karl benz go to? Karlsruhe Institute of Technology 17.155 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.karl_benz))) (value (list (name fb:en.university_of_karlsruhe "University of Karlsruhe") (name fb:en.karlsruhe_institute_of_technology "Karlsruhe Institute of Technology"))) (type fb:education.educational_institution) what movies has carmen electra been in? Starsky & Hutch 12.795 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.carmen_electra))) (value (list (name fb:en.starsky_hutch_2004 "Starsky & Hutch") (name fb:en.dirty_love "Dirty Love") (name fb:en.disaster_movie "Disaster Movie") (name fb:en.meet_the_spartans "Meet the Spartans") (name fb:en.scary_movie_4 "Scary Movie 4") (name fb:en.date_movie "Date Movie") (name fb:en.epic_movie "Epic Movie"))) (type (union fb:award.award_nominated_work)) what movies has carmen electra been in? Dirty Love 12.795 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.carmen_electra))) (value (list (name fb:en.starsky_hutch_2004 "Starsky & Hutch") (name fb:en.dirty_love "Dirty Love") (name fb:en.disaster_movie "Disaster Movie") (name fb:en.meet_the_spartans "Meet the Spartans") (name fb:en.scary_movie_4 "Scary Movie 4") (name fb:en.date_movie "Date Movie") (name fb:en.epic_movie "Epic Movie"))) (type (union fb:award.award_nominated_work)) what movies has carmen electra been in? Disaster Movie 12.795 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.carmen_electra))) (value (list (name fb:en.starsky_hutch_2004 "Starsky & Hutch") (name fb:en.dirty_love "Dirty Love") (name fb:en.disaster_movie "Disaster Movie") (name fb:en.meet_the_spartans "Meet the Spartans") (name fb:en.scary_movie_4 "Scary Movie 4") (name fb:en.date_movie "Date Movie") (name fb:en.epic_movie "Epic Movie"))) (type (union fb:award.award_nominated_work)) what movies has carmen electra been in? Meet the Spartans 12.795 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.carmen_electra))) (value (list (name fb:en.starsky_hutch_2004 "Starsky & Hutch") (name fb:en.dirty_love "Dirty Love") (name fb:en.disaster_movie "Disaster Movie") (name fb:en.meet_the_spartans "Meet the Spartans") (name fb:en.scary_movie_4 "Scary Movie 4") (name fb:en.date_movie "Date Movie") (name fb:en.epic_movie "Epic Movie"))) (type (union fb:award.award_nominated_work)) what movies has carmen electra been in? Scary Movie 4 12.795 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.carmen_electra))) (value (list (name fb:en.starsky_hutch_2004 "Starsky & Hutch") (name fb:en.dirty_love "Dirty Love") (name fb:en.disaster_movie "Disaster Movie") (name fb:en.meet_the_spartans "Meet the Spartans") (name fb:en.scary_movie_4 "Scary Movie 4") (name fb:en.date_movie "Date Movie") (name fb:en.epic_movie "Epic Movie"))) (type (union fb:award.award_nominated_work)) what movies has carmen electra been in? Date Movie 12.795 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.carmen_electra))) (value (list (name fb:en.starsky_hutch_2004 "Starsky & Hutch") (name fb:en.dirty_love "Dirty Love") (name fb:en.disaster_movie "Disaster Movie") (name fb:en.meet_the_spartans "Meet the Spartans") (name fb:en.scary_movie_4 "Scary Movie 4") (name fb:en.date_movie "Date Movie") (name fb:en.epic_movie "Epic Movie"))) (type (union fb:award.award_nominated_work)) what movies has carmen electra been in? Epic Movie 12.795 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.carmen_electra))) (value (list (name fb:en.starsky_hutch_2004 "Starsky & Hutch") (name fb:en.dirty_love "Dirty Love") (name fb:en.disaster_movie "Disaster Movie") (name fb:en.meet_the_spartans "Meet the Spartans") (name fb:en.scary_movie_4 "Scary Movie 4") (name fb:en.date_movie "Date Movie") (name fb:en.epic_movie "Epic Movie"))) (type (union fb:award.award_nominated_work)) when do world war ii end? 20th century 11.168 formula (fb:time.event.includes_event fb:en.world_war_ii)) (value (list (name fb:en.20th_century "20th century") (name fb:en.1940s 1940s))) (type fb:time.event) what do christians believe about heaven hell and purgatory? Sirhan Sirhan 6.659 formula (fb:people.person.religion fb:en.palestinian_christian)) (value (list (name fb:en.sirhan_sirhan "Sirhan Sirhan") (name fb:en.edward_said "Edward Said") (name fb:en.aous_shakra "Aous Shakra") (name fb:en.hanna_siniora "Hanna Siniora"))) (type fb:people.person) what do christians believe about heaven hell and purgatory? Edward Said 6.659 formula (fb:people.person.religion fb:en.palestinian_christian)) (value (list (name fb:en.sirhan_sirhan "Sirhan Sirhan") (name fb:en.edward_said "Edward Said") (name fb:en.aous_shakra "Aous Shakra") (name fb:en.hanna_siniora "Hanna Siniora"))) (type fb:people.person) what do christians believe about heaven hell and purgatory? Aous Shakra 6.659 formula (fb:people.person.religion fb:en.palestinian_christian)) (value (list (name fb:en.sirhan_sirhan "Sirhan Sirhan") (name fb:en.edward_said "Edward Said") (name fb:en.aous_shakra "Aous Shakra") (name fb:en.hanna_siniora "Hanna Siniora"))) (type fb:people.person) what do christians believe about heaven hell and purgatory? Hanna Siniora 6.659 formula (fb:people.person.religion fb:en.palestinian_christian)) (value (list (name fb:en.sirhan_sirhan "Sirhan Sirhan") (name fb:en.edward_said "Edward Said") (name fb:en.aous_shakra "Aous Shakra") (name fb:en.hanna_siniora "Hanna Siniora"))) (type fb:people.person) where did morgan freeman graduate? Los Angeles City College 7.564 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.morgan_freeman))) (value (list (name fb:en.los_angeles_city_college "Los Angeles City College") (name fb:en.jackson_state_university "Jackson State University"))) (type fb:education.educational_institution) where did morgan freeman graduate? Jackson State University 7.564 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.morgan_freeman))) (value (list (name fb:en.los_angeles_city_college "Los Angeles City College") (name fb:en.jackson_state_university "Jackson State University"))) (type fb:education.educational_institution) who did queen elizabeth 1 executed? Elizabeth of York 6.292 formula (and (fb:type.object.type fb:theater.theater_character) (fb:fictional_universe.fictional_character.based_on fb:en.elizabeth_of_york))) (value (list (name fb:m.0j103ml "Elizabeth of York"))) (type (union fb:theater.theater_character)) where is arabic most spoken? South Africa 11.041 formula (and (fb:type.object.type fb:location.location) (fb:location.country.languages_spoken fb:en.arabic_language))) (value (list (name fb:en.canada Canada) (name fb:en.south_africa "South Africa") (name fb:en.iran Iran) (name fb:en.egypt Egypt) (name fb:en.israel Israel) (name fb:en.turkey Turkey) (name fb:en.saudi_arabia "Saudi Arabia") (name fb:en.algeria Algeria) (name fb:en.yemen Yemen) (name fb:en.syria Syria))) (type fb:location.country) where is arabic most spoken? Saudi Arabia 11.041 formula (and (fb:type.object.type fb:location.location) (fb:location.country.languages_spoken fb:en.arabic_language))) (value (list (name fb:en.canada Canada) (name fb:en.south_africa "South Africa") (name fb:en.iran Iran) (name fb:en.egypt Egypt) (name fb:en.israel Israel) (name fb:en.turkey Turkey) (name fb:en.saudi_arabia "Saudi Arabia") (name fb:en.algeria Algeria) (name fb:en.yemen Yemen) (name fb:en.syria Syria))) (type fb:location.country) what type of government does germany have now? Parliamentary republic 18.302 formula (fb:government.form_of_government.countries fb:en.germany)) (value (list (name fb:en.parliamentary_republic "Parliamentary republic") (name fb:en.federal_republic "Federal republic") (name fb:en.representative_democracy "Representative democracy") (name fb:en.constitutional_republic "Constitutional republic"))) (type fb:government.form_of_government) what type of government does germany have now? Federal republic 18.302 formula (fb:government.form_of_government.countries fb:en.germany)) (value (list (name fb:en.parliamentary_republic "Parliamentary republic") (name fb:en.federal_republic "Federal republic") (name fb:en.representative_democracy "Representative democracy") (name fb:en.constitutional_republic "Constitutional republic"))) (type fb:government.form_of_government) what type of government does germany have now? Representative democracy 18.302 formula (fb:government.form_of_government.countries fb:en.germany)) (value (list (name fb:en.parliamentary_republic "Parliamentary republic") (name fb:en.federal_republic "Federal republic") (name fb:en.representative_democracy "Representative democracy") (name fb:en.constitutional_republic "Constitutional republic"))) (type fb:government.form_of_government) what type of government does germany have now? Constitutional republic 18.302 formula (fb:government.form_of_government.countries fb:en.germany)) (value (list (name fb:en.parliamentary_republic "Parliamentary republic") (name fb:en.federal_republic "Federal republic") (name fb:en.representative_democracy "Representative democracy") (name fb:en.constitutional_republic "Constitutional republic"))) (type fb:government.form_of_government) what kind of government does libya have today? Parliamentary republic 11.843 formula (!fb:location.country.form_of_government fb:en.libya)) (value (list (name fb:en.parliamentary_republic "Parliamentary republic") (name fb:en.provisional_government "Provisional government"))) (type fb:government.form_of_government) what kind of government does libya have today? Provisional government 11.843 formula (!fb:location.country.form_of_government fb:en.libya)) (value (list (name fb:en.parliamentary_republic "Parliamentary republic") (name fb:en.provisional_government "Provisional government"))) (type fb:government.form_of_government) what time zone is anaheim california? Pacific Time Zone 13.004 formula (and (fb:type.object.type fb:time.time_zone) (fb:time.time_zone.locations_in_this_time_zone fb:en.anaheim))) (value (list (name fb:en.pacific_time_zone "Pacific Time Zone"))) (type (union fb:time.time_zone)) what year did the orioles go to the world series? 1970 World Series 15.282 formula (and (fb:type.object.type fb:sports.sports_championship_event) (fb:sports.sports_championship_event.champion fb:en.baltimore_orioles))) (value (list (name fb:en.1970_world_series "1970 World Series") (name fb:en.1983_world_series "1983 World Series") (name fb:en.1966_world_series "1966 World Series"))) (type fb:sports.sports_championship_event) what year did the orioles go to the world series? 1983 World Series 15.282 formula (and (fb:type.object.type fb:sports.sports_championship_event) (fb:sports.sports_championship_event.champion fb:en.baltimore_orioles))) (value (list (name fb:en.1970_world_series "1970 World Series") (name fb:en.1983_world_series "1983 World Series") (name fb:en.1966_world_series "1966 World Series"))) (type fb:sports.sports_championship_event) what year did the orioles go to the world series? 1966 World Series 15.282 formula (and (fb:type.object.type fb:sports.sports_championship_event) (fb:sports.sports_championship_event.champion fb:en.baltimore_orioles))) (value (list (name fb:en.1970_world_series "1970 World Series") (name fb:en.1983_world_series "1983 World Series") (name fb:en.1966_world_series "1966 World Series"))) (type fb:sports.sports_championship_event) what would ap xin zhao do? State of Zhao(bronzeware script, ca. 800 BC) 1.973 formula (fb:common.image.appears_in_topic_gallery fb:en.zhao)) (value (list (name fb:m.04s8d4b "State of Zhao(bronzeware script, ca. 800 BC)") (name fb:m.0df_wkn "State of Zhao 300 BCE") (name fb:m.02cfvww "State of Zhao(small seal script, 220 BC)"))) (type fb:common.image) what would ap xin zhao do? State of Zhao 300 BCE 1.973 formula (fb:common.image.appears_in_topic_gallery fb:en.zhao)) (value (list (name fb:m.04s8d4b "State of Zhao(bronzeware script, ca. 800 BC)") (name fb:m.0df_wkn "State of Zhao 300 BCE") (name fb:m.02cfvww "State of Zhao(small seal script, 220 BC)"))) (type fb:common.image) what would ap xin zhao do? State of Zhao(small seal script, 220 BC) 1.973 formula (fb:common.image.appears_in_topic_gallery fb:en.zhao)) (value (list (name fb:m.04s8d4b "State of Zhao(bronzeware script, ca. 800 BC)") (name fb:m.0df_wkn "State of Zhao 300 BCE") (name fb:m.02cfvww "State of Zhao(small seal script, 220 BC)"))) (type fb:common.image) what are the official colors of the dallas cowboys? Navy Blue 24.506 formula (and (fb:type.object.type fb:visual_art.color) (!fb:sports.sports_team.colors fb:en.dallas_cowboys))) (value (list (name fb:en.blue Blue) (name fb:en.white White) (name fb:m.03vtbc Silver) (name fb:en.navy_blue "Navy Blue") (name fb:en.royal_blue "Royal blue"))) (type (union fb:visual_art.color)) what are the official colors of the dallas cowboys? Royal blue 24.506 formula (and (fb:type.object.type fb:visual_art.color) (!fb:sports.sports_team.colors fb:en.dallas_cowboys))) (value (list (name fb:en.blue Blue) (name fb:en.white White) (name fb:m.03vtbc Silver) (name fb:en.navy_blue "Navy Blue") (name fb:en.royal_blue "Royal blue"))) (type (union fb:visual_art.color)) where did margaret hoover go to college? Davidson College 9.87 formula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.margaret_hoover)))) (value (list (name fb:en.davidson_college "Davidson College"))) (type fb:education.university) what is jamie oliver children names? Sally Oliver 5.84 formula (!fb:people.person.parents fb:en.jamie_oliver)) (value (list (name fb:m.0q52s40 "Sally Oliver") (name fb:m.0q52sfr "Trevor Oliver"))) (type fb:people.person) what is jamie oliver children names? Trevor Oliver 5.84 formula (!fb:people.person.parents fb:en.jamie_oliver)) (value (list (name fb:m.0q52s40 "Sally Oliver") (name fb:m.0q52sfr "Trevor Oliver"))) (type fb:people.person) where does bradley walsh live? Los Angeles 6.197 formula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.bradley_walsh))) (value (list (name fb:en.toronto Toronto) (name fb:en.los_angeles "Los Angeles"))) (type fb:location.location) who is the head coach of inter milan? Giuseppe Baresi 12.926 formula (and (fb:people.person.profession fb:en.coach) ((lambda x (!fb:sports.sports_team_coach_tenure.coach (!fb:sports.sports_team.coaches (var x)))) fb:en.fc_internazionale_milano))) (value (list (name fb:en.giuseppe_baresi "Giuseppe Baresi"))) (type fb:sports.sports_team_coach) where does the shannon river start and end? Shannon Estuary 8.404 formula (and (fb:type.object.type fb:location.location) (!fb:geography.river.mouth fb:en.river_shannon))) (value (list (name fb:en.shannon_estuary "Shannon Estuary"))) (type fb:location.location) who did reese witherspoon get married to? Ryan Phillippe 16.593 formula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.reese_witherspoon)) (value (list (name fb:en.ryan_phillippe "Ryan Phillippe") (name fb:m.0gxm_yg "Jim Toth"))) (type fb:people.person) who did reese witherspoon get married to? Jim Toth 16.593 formula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.reese_witherspoon)) (value (list (name fb:en.ryan_phillippe "Ryan Phillippe") (name fb:m.0gxm_yg "Jim Toth"))) (type fb:people.person) where did dutch language come from? Union of South Africa 10.207 formula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.dutch_language))) (value (list (name fb:en.netherlands Netherlands) (name fb:en.belgium Belgium) (name fb:en.suriname Suriname) (name fb:en.aruba Aruba) (name fb:en.union_of_south_africa "Union of South Africa") (name fb:en.curacao Curaçao) (name fb:en.kingdom_of_the_netherlands "Kingdom of the Netherlands") (name fb:en.netherlands_antilles "Netherlands Antilles") (name fb:en.sint_maarten "Sint Maarten") (name fb:en.bonaire Bonaire))) (type fb:location.country) where did dutch language come from? Kingdom of the Netherlands 10.207 formula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.dutch_language))) (value (list (name fb:en.netherlands Netherlands) (name fb:en.belgium Belgium) (name fb:en.suriname Suriname) (name fb:en.aruba Aruba) (name fb:en.union_of_south_africa "Union of South Africa") (name fb:en.curacao Curaçao) (name fb:en.kingdom_of_the_netherlands "Kingdom of the Netherlands") (name fb:en.netherlands_antilles "Netherlands Antilles") (name fb:en.sint_maarten "Sint Maarten") (name fb:en.bonaire Bonaire))) (type fb:location.country) where did dutch language come from? Netherlands Antilles 10.207 formula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.dutch_language))) (value (list (name fb:en.netherlands Netherlands) (name fb:en.belgium Belgium) (name fb:en.suriname Suriname) (name fb:en.aruba Aruba) (name fb:en.union_of_south_africa "Union of South Africa") (name fb:en.curacao Curaçao) (name fb:en.kingdom_of_the_netherlands "Kingdom of the Netherlands") (name fb:en.netherlands_antilles "Netherlands Antilles") (name fb:en.sint_maarten "Sint Maarten") (name fb:en.bonaire Bonaire))) (type fb:location.country) where did dutch language come from? Sint Maarten 10.207 formula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.dutch_language))) (value (list (name fb:en.netherlands Netherlands) (name fb:en.belgium Belgium) (name fb:en.suriname Suriname) (name fb:en.aruba Aruba) (name fb:en.union_of_south_africa "Union of South Africa") (name fb:en.curacao Curaçao) (name fb:en.kingdom_of_the_netherlands "Kingdom of the Netherlands") (name fb:en.netherlands_antilles "Netherlands Antilles") (name fb:en.sint_maarten "Sint Maarten") (name fb:en.bonaire Bonaire))) (type fb:location.country) what kind of money should i take to costa rica? Inflation, World Development Indicators, World Bank 14.923 formula ((lambda x (!fb:measurement_unit.dated_percentage.source (!fb:location.statistical_region.cpi_inflation_rate (var x)))) fb:en.costa_rica)) (value (list (name fb:g.124x8gy8f "Inflation, World Development Indicators, World Bank"))) (type fb:dataworld.information_source) who plays captain kirk in star trek? Jimmy Bennett 5.059 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.james_t_kirk)) (value (list (name fb:en.jimmy_bennett "Jimmy Bennett") (name fb:en.chris_pine "Chris Pine") (name fb:en.william_shatner "William Shatner"))) (type fb:film.actor) who plays captain kirk in star trek? Chris Pine 5.059 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.james_t_kirk)) (value (list (name fb:en.jimmy_bennett "Jimmy Bennett") (name fb:en.chris_pine "Chris Pine") (name fb:en.william_shatner "William Shatner"))) (type fb:film.actor) who plays captain kirk in star trek? William Shatner 5.059 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.james_t_kirk)) (value (list (name fb:en.jimmy_bennett "Jimmy Bennett") (name fb:en.chris_pine "Chris Pine") (name fb:en.william_shatner "William Shatner"))) (type fb:film.actor) who does albert pujols play for 2012? Los Angeles Angels of Anaheim 17.063 formula (fb:sports.sports_team.roster (and (fb:sports.sports_team_roster.player fb:en.albert_pujols) (fb:sports.sports_team_roster.from (date 2012 -1 -1))))) (value (list (name fb:en.los_angeles_angels_of_anaheim "Los Angeles Angels of Anaheim"))) (type fb:sports.sports_team) what kind of government is sweden? Unitary state 8.746 formula (!fb:location.country.form_of_government fb:en.swedem)) (value (list (name fb:en.unitary_state "Unitary state") (name fb:en.parliamentary_system "Parliamentary system") (name fb:en.constitutional_monarchy "Constitutional monarchy") (name fb:en.representative_democracy "Representative democracy") (name fb:en.hereditary_monarchy "Hereditary monarchy"))) (type fb:government.form_of_government) what kind of government is sweden? Parliamentary system 8.746 formula (!fb:location.country.form_of_government fb:en.swedem)) (value (list (name fb:en.unitary_state "Unitary state") (name fb:en.parliamentary_system "Parliamentary system") (name fb:en.constitutional_monarchy "Constitutional monarchy") (name fb:en.representative_democracy "Representative democracy") (name fb:en.hereditary_monarchy "Hereditary monarchy"))) (type fb:government.form_of_government) what kind of government is sweden? Constitutional monarchy 8.746 formula (!fb:location.country.form_of_government fb:en.swedem)) (value (list (name fb:en.unitary_state "Unitary state") (name fb:en.parliamentary_system "Parliamentary system") (name fb:en.constitutional_monarchy "Constitutional monarchy") (name fb:en.representative_democracy "Representative democracy") (name fb:en.hereditary_monarchy "Hereditary monarchy"))) (type fb:government.form_of_government) what kind of government is sweden? Representative democracy 8.746 formula (!fb:location.country.form_of_government fb:en.swedem)) (value (list (name fb:en.unitary_state "Unitary state") (name fb:en.parliamentary_system "Parliamentary system") (name fb:en.constitutional_monarchy "Constitutional monarchy") (name fb:en.representative_democracy "Representative democracy") (name fb:en.hereditary_monarchy "Hereditary monarchy"))) (type fb:government.form_of_government) what kind of government is sweden? Hereditary monarchy 8.746 formula (!fb:location.country.form_of_government fb:en.swedem)) (value (list (name fb:en.unitary_state "Unitary state") (name fb:en.parliamentary_system "Parliamentary system") (name fb:en.constitutional_monarchy "Constitutional monarchy") (name fb:en.representative_democracy "Representative democracy") (name fb:en.hereditary_monarchy "Hereditary monarchy"))) (type fb:government.form_of_government) where was country singer george jones born? United States of America 12.91 formula (and (fb:type.object.type fb:location.location) (and (fb:type.object.type fb:location.country) (!fb:people.person.nationality fb:en.thumber_jones)))) (value (list (name fb:en.united_states_of_america "United States of America"))) (type fb:location.country) what is the money of switzerland called? United States of America 10.297 formula ((lambda x (!fb:location.imports_and_exports.imported_from (!fb:location.statistical_region.places_imported_from (var x)))) fb:en.switzerland)) (value (list (name fb:en.scotland Scotland) (name fb:en.united_states_of_america "United States of America"))) (type fb:location.statistical_region) what to see near grand canyon? Grand Canyon National Park 13.231 formula (fb:travel.travel_destination.tourist_attractions fb:en.grand_canyon)) (value (list (name fb:en.phoenix_az Phoenix) (name fb:en.grand_canyon_national_park "Grand Canyon National Park") (name fb:en.lake_powell "Lake Powell"))) (type fb:travel.travel_destination) what to see near grand canyon? Lake Powell 13.231 formula (fb:travel.travel_destination.tourist_attractions fb:en.grand_canyon)) (value (list (name fb:en.phoenix_az Phoenix) (name fb:en.grand_canyon_national_park "Grand Canyon National Park") (name fb:en.lake_powell "Lake Powell"))) (type fb:travel.travel_destination) when did the jews stop making animal sacrifices? Indie rock 4.435 formula (fb:music.genre.artists fb:en.silver_jews)) (value (list (name fb:en.indie_rock "Indie rock") (name fb:en.country_rock "Country rock") (name fb:en.alternative_country "Alternative country") (name fb:m.05rwpb Indie))) (type fb:music.genre) when did the jews stop making animal sacrifices? Country rock 4.435 formula (fb:music.genre.artists fb:en.silver_jews)) (value (list (name fb:en.indie_rock "Indie rock") (name fb:en.country_rock "Country rock") (name fb:en.alternative_country "Alternative country") (name fb:m.05rwpb Indie))) (type fb:music.genre) when did the jews stop making animal sacrifices? Alternative country 4.435 formula (fb:music.genre.artists fb:en.silver_jews)) (value (list (name fb:en.indie_rock "Indie rock") (name fb:en.country_rock "Country rock") (name fb:en.alternative_country "Alternative country") (name fb:m.05rwpb Indie))) (type fb:music.genre) what do people in australia speak? English Language 10.027 formula (fb:language.human_language.countries_spoken_in fb:en.australia)) (value (list (name fb:en.english "English Language") (name fb:en.lojban Lojban) (name fb:en.esperanto "Esperanto Language"))) (type fb:language.human_language) what do people in australia speak? Esperanto Language 10.027 formula (fb:language.human_language.countries_spoken_in fb:en.australia)) (value (list (name fb:en.english "English Language") (name fb:en.lojban Lojban) (name fb:en.esperanto "Esperanto Language"))) (type fb:language.human_language) what has ian somerhalder acted in? National Lampoon's TV: The Movie 10.389 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.ian_somerhalder)) (value (list (name fb:m.0cnbrgy Wake) (name fb:en.celebrity_1998 Celebrity) (name fb:en.national_lampoons_tv_the_movie "National Lampoon's TV: The Movie") (name fb:m.05q8gln "Marco Polo") (name fb:m.0dqpx9 Fearless) (name fb:m.0vsjfsp "The Anomaly") (name fb:m.0cs0g8b Fireball) (name fb:m.04j2fyc "Changing Hearts") (name fb:en.anatomy_of_a_hate_crime "Anatomy of a Hate Crime") (name fb:m.0crts8b "The Lost Samaritan"))) (type fb:film.film) what has ian somerhalder acted in? Marco Polo 10.389 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.ian_somerhalder)) (value (list (name fb:m.0cnbrgy Wake) (name fb:en.celebrity_1998 Celebrity) (name fb:en.national_lampoons_tv_the_movie "National Lampoon's TV: The Movie") (name fb:m.05q8gln "Marco Polo") (name fb:m.0dqpx9 Fearless) (name fb:m.0vsjfsp "The Anomaly") (name fb:m.0cs0g8b Fireball) (name fb:m.04j2fyc "Changing Hearts") (name fb:en.anatomy_of_a_hate_crime "Anatomy of a Hate Crime") (name fb:m.0crts8b "The Lost Samaritan"))) (type fb:film.film) what has ian somerhalder acted in? The Anomaly 10.389 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.ian_somerhalder)) (value (list (name fb:m.0cnbrgy Wake) (name fb:en.celebrity_1998 Celebrity) (name fb:en.national_lampoons_tv_the_movie "National Lampoon's TV: The Movie") (name fb:m.05q8gln "Marco Polo") (name fb:m.0dqpx9 Fearless) (name fb:m.0vsjfsp "The Anomaly") (name fb:m.0cs0g8b Fireball) (name fb:m.04j2fyc "Changing Hearts") (name fb:en.anatomy_of_a_hate_crime "Anatomy of a Hate Crime") (name fb:m.0crts8b "The Lost Samaritan"))) (type fb:film.film) what has ian somerhalder acted in? Changing Hearts 10.389 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.ian_somerhalder)) (value (list (name fb:m.0cnbrgy Wake) (name fb:en.celebrity_1998 Celebrity) (name fb:en.national_lampoons_tv_the_movie "National Lampoon's TV: The Movie") (name fb:m.05q8gln "Marco Polo") (name fb:m.0dqpx9 Fearless) (name fb:m.0vsjfsp "The Anomaly") (name fb:m.0cs0g8b Fireball) (name fb:m.04j2fyc "Changing Hearts") (name fb:en.anatomy_of_a_hate_crime "Anatomy of a Hate Crime") (name fb:m.0crts8b "The Lost Samaritan"))) (type fb:film.film) what has ian somerhalder acted in? Anatomy of a Hate Crime 10.389 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.ian_somerhalder)) (value (list (name fb:m.0cnbrgy Wake) (name fb:en.celebrity_1998 Celebrity) (name fb:en.national_lampoons_tv_the_movie "National Lampoon's TV: The Movie") (name fb:m.05q8gln "Marco Polo") (name fb:m.0dqpx9 Fearless) (name fb:m.0vsjfsp "The Anomaly") (name fb:m.0cs0g8b Fireball) (name fb:m.04j2fyc "Changing Hearts") (name fb:en.anatomy_of_a_hate_crime "Anatomy of a Hate Crime") (name fb:m.0crts8b "The Lost Samaritan"))) (type fb:film.film) what has ian somerhalder acted in? The Lost Samaritan 10.389 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.ian_somerhalder)) (value (list (name fb:m.0cnbrgy Wake) (name fb:en.celebrity_1998 Celebrity) (name fb:en.national_lampoons_tv_the_movie "National Lampoon's TV: The Movie") (name fb:m.05q8gln "Marco Polo") (name fb:m.0dqpx9 Fearless) (name fb:m.0vsjfsp "The Anomaly") (name fb:m.0cs0g8b Fireball) (name fb:m.04j2fyc "Changing Hearts") (name fb:en.anatomy_of_a_hate_crime "Anatomy of a Hate Crime") (name fb:m.0crts8b "The Lost Samaritan"))) (type fb:film.film) what movies did ron howard director? Arrested Development 7.682 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.ron_howard))) (value (list (name fb:en.arrested_development "Arrested Development") (name fb:m.0bq97g "Curious George") (name fb:en.apollo_13_1995 "Apollo 13") (name fb:en.cocoon Cocoon) (name fb:m.02kk_c "From the Earth to the Moon") (name fb:en.frost_nixon_2008 Frost/Nixon) (name fb:en.a_beautiful_mind "A Beautiful Mind") (name fb:en.the_da_vinci_code_2006 "The Da Vinci Code") (name fb:en.sports_night "Sports Night") (name fb:en.the_shootist "The Shootist"))) (type (union fb:award.award_nominated_work)) what movies did ron howard director? Curious George 7.682 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.ron_howard))) (value (list (name fb:en.arrested_development "Arrested Development") (name fb:m.0bq97g "Curious George") (name fb:en.apollo_13_1995 "Apollo 13") (name fb:en.cocoon Cocoon) (name fb:m.02kk_c "From the Earth to the Moon") (name fb:en.frost_nixon_2008 Frost/Nixon) (name fb:en.a_beautiful_mind "A Beautiful Mind") (name fb:en.the_da_vinci_code_2006 "The Da Vinci Code") (name fb:en.sports_night "Sports Night") (name fb:en.the_shootist "The Shootist"))) (type (union fb:award.award_nominated_work)) what movies did ron howard director? Apollo 13 7.682 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.ron_howard))) (value (list (name fb:en.arrested_development "Arrested Development") (name fb:m.0bq97g "Curious George") (name fb:en.apollo_13_1995 "Apollo 13") (name fb:en.cocoon Cocoon) (name fb:m.02kk_c "From the Earth to the Moon") (name fb:en.frost_nixon_2008 Frost/Nixon) (name fb:en.a_beautiful_mind "A Beautiful Mind") (name fb:en.the_da_vinci_code_2006 "The Da Vinci Code") (name fb:en.sports_night "Sports Night") (name fb:en.the_shootist "The Shootist"))) (type (union fb:award.award_nominated_work)) what movies did ron howard director? From the Earth to the Moon 7.682 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.ron_howard))) (value (list (name fb:en.arrested_development "Arrested Development") (name fb:m.0bq97g "Curious George") (name fb:en.apollo_13_1995 "Apollo 13") (name fb:en.cocoon Cocoon) (name fb:m.02kk_c "From the Earth to the Moon") (name fb:en.frost_nixon_2008 Frost/Nixon) (name fb:en.a_beautiful_mind "A Beautiful Mind") (name fb:en.the_da_vinci_code_2006 "The Da Vinci Code") (name fb:en.sports_night "Sports Night") (name fb:en.the_shootist "The Shootist"))) (type (union fb:award.award_nominated_work)) what movies did ron howard director? A Beautiful Mind 7.682 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.ron_howard))) (value (list (name fb:en.arrested_development "Arrested Development") (name fb:m.0bq97g "Curious George") (name fb:en.apollo_13_1995 "Apollo 13") (name fb:en.cocoon Cocoon) (name fb:m.02kk_c "From the Earth to the Moon") (name fb:en.frost_nixon_2008 Frost/Nixon) (name fb:en.a_beautiful_mind "A Beautiful Mind") (name fb:en.the_da_vinci_code_2006 "The Da Vinci Code") (name fb:en.sports_night "Sports Night") (name fb:en.the_shootist "The Shootist"))) (type (union fb:award.award_nominated_work)) what movies did ron howard director? The Da Vinci Code 7.682 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.ron_howard))) (value (list (name fb:en.arrested_development "Arrested Development") (name fb:m.0bq97g "Curious George") (name fb:en.apollo_13_1995 "Apollo 13") (name fb:en.cocoon Cocoon) (name fb:m.02kk_c "From the Earth to the Moon") (name fb:en.frost_nixon_2008 Frost/Nixon) (name fb:en.a_beautiful_mind "A Beautiful Mind") (name fb:en.the_da_vinci_code_2006 "The Da Vinci Code") (name fb:en.sports_night "Sports Night") (name fb:en.the_shootist "The Shootist"))) (type (union fb:award.award_nominated_work)) what movies did ron howard director? Sports Night 7.682 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.ron_howard))) (value (list (name fb:en.arrested_development "Arrested Development") (name fb:m.0bq97g "Curious George") (name fb:en.apollo_13_1995 "Apollo 13") (name fb:en.cocoon Cocoon) (name fb:m.02kk_c "From the Earth to the Moon") (name fb:en.frost_nixon_2008 Frost/Nixon) (name fb:en.a_beautiful_mind "A Beautiful Mind") (name fb:en.the_da_vinci_code_2006 "The Da Vinci Code") (name fb:en.sports_night "Sports Night") (name fb:en.the_shootist "The Shootist"))) (type (union fb:award.award_nominated_work)) what movies did ron howard director? The Shootist 7.682 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.ron_howard))) (value (list (name fb:en.arrested_development "Arrested Development") (name fb:m.0bq97g "Curious George") (name fb:en.apollo_13_1995 "Apollo 13") (name fb:en.cocoon Cocoon) (name fb:m.02kk_c "From the Earth to the Moon") (name fb:en.frost_nixon_2008 Frost/Nixon) (name fb:en.a_beautiful_mind "A Beautiful Mind") (name fb:en.the_da_vinci_code_2006 "The Da Vinci Code") (name fb:en.sports_night "Sports Night") (name fb:en.the_shootist "The Shootist"))) (type (union fb:award.award_nominated_work)) what role did alexander hamilton play in the constitution? Bishop of Jarrow 9.628 formula ((lambda x (!fb:religion.religious_organization_leadership.role (!fb:religion.religious_leader.religious_leadership (var x)))) fb:en.alexander_kenneth_hamilton)) (value (list (name fb:en.bishop_of_jarrow "Bishop of Jarrow"))) (type fb:religion.religious_leadership_title) who is shakira married to? Gerard Piqué 15.578 formula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.shakira)) (value (list (name fb:en.gerard_pique "Gerard Piqué") (name fb:en.antonio_de_la_rua "Antonio de la Rúa"))) (type fb:people.person) who is shakira married to? Antonio de la Rúa 15.578 formula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.shakira)) (value (list (name fb:en.gerard_pique "Gerard Piqué") (name fb:en.antonio_de_la_rua "Antonio de la Rúa"))) (type fb:people.person) what did gerald r ford die from? Cardiovascular disease 17.352 formula (fb:people.cause_of_death.people fb:en.gerald_ford)) (value (list (name fb:en.cardiovascular_disease "Cardiovascular disease"))) (type fb:people.cause_of_death) where did kevin love go to college? Lake Oswego High School 11.29 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:education.education.institution (!fb:people.person.education (var x)))) fb:en.kevin_love_1988))) (value (list (name fb:en.lake_oswego_high_school "Lake Oswego High School") (name fb:en.university_of_california_los_angeles "University of California, Los Angeles"))) (type fb:education.educational_institution) where did kevin love go to college? University of California, Los Angeles 11.29 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:education.education.institution (!fb:people.person.education (var x)))) fb:en.kevin_love_1988))) (value (list (name fb:en.lake_oswego_high_school "Lake Oswego High School") (name fb:en.university_of_california_los_angeles "University of California, Los Angeles"))) (type fb:education.educational_institution) what type of government was formed when italy unified? Parliamentary republic 11.653 formula (fb:government.form_of_government.countries fb:en.italy)) (value (list (name fb:en.parliamentary_republic "Parliamentary republic") (name fb:en.constitutional_republic "Constitutional republic") (name fb:m.0v265vn "Unitary republic"))) (type fb:government.form_of_government) what type of government was formed when italy unified? Constitutional republic 11.653 formula (fb:government.form_of_government.countries fb:en.italy)) (value (list (name fb:en.parliamentary_republic "Parliamentary republic") (name fb:en.constitutional_republic "Constitutional republic") (name fb:m.0v265vn "Unitary republic"))) (type fb:government.form_of_government) what type of government was formed when italy unified? Unitary republic 11.653 formula (fb:government.form_of_government.countries fb:en.italy)) (value (list (name fb:en.parliamentary_republic "Parliamentary republic") (name fb:en.constitutional_republic "Constitutional republic") (name fb:m.0v265vn "Unitary republic"))) (type fb:government.form_of_government) what was the ancient egyptians spoken language? Coptic Language 18.78 formula (!fb:people.ethnicity.languages_spoken fb:en.egyptians)) (value (list (name fb:en.coptic_language "Coptic Language") (name fb:en.languages_of_egypt "Languages of Egypt") (name fb:en.egyptian_languages "Egyptian language") (name fb:en.saidi_arabic "Sa'idi Arabic") (name fb:en.egyptian_arabic "Egyptian Arabic"))) (type fb:language.human_language) what was the ancient egyptians spoken language? Languages of Egypt 18.78 formula (!fb:people.ethnicity.languages_spoken fb:en.egyptians)) (value (list (name fb:en.coptic_language "Coptic Language") (name fb:en.languages_of_egypt "Languages of Egypt") (name fb:en.egyptian_languages "Egyptian language") (name fb:en.saidi_arabic "Sa'idi Arabic") (name fb:en.egyptian_arabic "Egyptian Arabic"))) (type fb:language.human_language) what was the ancient egyptians spoken language? Egyptian language 18.78 formula (!fb:people.ethnicity.languages_spoken fb:en.egyptians)) (value (list (name fb:en.coptic_language "Coptic Language") (name fb:en.languages_of_egypt "Languages of Egypt") (name fb:en.egyptian_languages "Egyptian language") (name fb:en.saidi_arabic "Sa'idi Arabic") (name fb:en.egyptian_arabic "Egyptian Arabic"))) (type fb:language.human_language) what was the ancient egyptians spoken language? Sa'idi Arabic 18.78 formula (!fb:people.ethnicity.languages_spoken fb:en.egyptians)) (value (list (name fb:en.coptic_language "Coptic Language") (name fb:en.languages_of_egypt "Languages of Egypt") (name fb:en.egyptian_languages "Egyptian language") (name fb:en.saidi_arabic "Sa'idi Arabic") (name fb:en.egyptian_arabic "Egyptian Arabic"))) (type fb:language.human_language) what was the ancient egyptians spoken language? Egyptian Arabic 18.78 formula (!fb:people.ethnicity.languages_spoken fb:en.egyptians)) (value (list (name fb:en.coptic_language "Coptic Language") (name fb:en.languages_of_egypt "Languages of Egypt") (name fb:en.egyptian_languages "Egyptian language") (name fb:en.saidi_arabic "Sa'idi Arabic") (name fb:en.egyptian_arabic "Egyptian Arabic"))) (type fb:language.human_language) who is the senior senator of louisiana? Alexandre Mouton 16.203 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton "Alexandre Mouton") (name fb:en.jean_n_destrehan "Jean Noel Destréhan") (name fb:en.william_c_c_claiborne "William C. C. Claiborne") (name fb:en.alexander_barrow "Alexander Barrow") (name fb:en.huey_long "Huey Long") (name fb:en.charles_dominique_joseph_bouligny "Charles Dominique Joseph Bouligny") (name fb:en.james_brown_1766 "James Brown") (name fb:en.josiah_s_johnston "Josiah S. Johnston") (name fb:en.henry_johnson "Henry Johnson") (name fb:en.george_a_waggaman "George A. Waggaman"))) (type fb:government.politician) who is the senior senator of louisiana? Jean Noel Destréhan 16.203 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton "Alexandre Mouton") (name fb:en.jean_n_destrehan "Jean Noel Destréhan") (name fb:en.william_c_c_claiborne "William C. C. Claiborne") (name fb:en.alexander_barrow "Alexander Barrow") (name fb:en.huey_long "Huey Long") (name fb:en.charles_dominique_joseph_bouligny "Charles Dominique Joseph Bouligny") (name fb:en.james_brown_1766 "James Brown") (name fb:en.josiah_s_johnston "Josiah S. Johnston") (name fb:en.henry_johnson "Henry Johnson") (name fb:en.george_a_waggaman "George A. Waggaman"))) (type fb:government.politician) who is the senior senator of louisiana? William C. C. Claiborne 16.203 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton "Alexandre Mouton") (name fb:en.jean_n_destrehan "Jean Noel Destréhan") (name fb:en.william_c_c_claiborne "William C. C. Claiborne") (name fb:en.alexander_barrow "Alexander Barrow") (name fb:en.huey_long "Huey Long") (name fb:en.charles_dominique_joseph_bouligny "Charles Dominique Joseph Bouligny") (name fb:en.james_brown_1766 "James Brown") (name fb:en.josiah_s_johnston "Josiah S. Johnston") (name fb:en.henry_johnson "Henry Johnson") (name fb:en.george_a_waggaman "George A. Waggaman"))) (type fb:government.politician) who is the senior senator of louisiana? Alexander Barrow 16.203 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton "Alexandre Mouton") (name fb:en.jean_n_destrehan "Jean Noel Destréhan") (name fb:en.william_c_c_claiborne "William C. C. Claiborne") (name fb:en.alexander_barrow "Alexander Barrow") (name fb:en.huey_long "Huey Long") (name fb:en.charles_dominique_joseph_bouligny "Charles Dominique Joseph Bouligny") (name fb:en.james_brown_1766 "James Brown") (name fb:en.josiah_s_johnston "Josiah S. Johnston") (name fb:en.henry_johnson "Henry Johnson") (name fb:en.george_a_waggaman "George A. Waggaman"))) (type fb:government.politician) who is the senior senator of louisiana? Huey Long 16.203 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton "Alexandre Mouton") (name fb:en.jean_n_destrehan "Jean Noel Destréhan") (name fb:en.william_c_c_claiborne "William C. C. Claiborne") (name fb:en.alexander_barrow "Alexander Barrow") (name fb:en.huey_long "Huey Long") (name fb:en.charles_dominique_joseph_bouligny "Charles Dominique Joseph Bouligny") (name fb:en.james_brown_1766 "James Brown") (name fb:en.josiah_s_johnston "Josiah S. Johnston") (name fb:en.henry_johnson "Henry Johnson") (name fb:en.george_a_waggaman "George A. Waggaman"))) (type fb:government.politician) who is the senior senator of louisiana? Charles Dominique Joseph Bouligny 16.203 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton "Alexandre Mouton") (name fb:en.jean_n_destrehan "Jean Noel Destréhan") (name fb:en.william_c_c_claiborne "William C. C. Claiborne") (name fb:en.alexander_barrow "Alexander Barrow") (name fb:en.huey_long "Huey Long") (name fb:en.charles_dominique_joseph_bouligny "Charles Dominique Joseph Bouligny") (name fb:en.james_brown_1766 "James Brown") (name fb:en.josiah_s_johnston "Josiah S. Johnston") (name fb:en.henry_johnson "Henry Johnson") (name fb:en.george_a_waggaman "George A. Waggaman"))) (type fb:government.politician) who is the senior senator of louisiana? James Brown 16.203 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton "Alexandre Mouton") (name fb:en.jean_n_destrehan "Jean Noel Destréhan") (name fb:en.william_c_c_claiborne "William C. C. Claiborne") (name fb:en.alexander_barrow "Alexander Barrow") (name fb:en.huey_long "Huey Long") (name fb:en.charles_dominique_joseph_bouligny "Charles Dominique Joseph Bouligny") (name fb:en.james_brown_1766 "James Brown") (name fb:en.josiah_s_johnston "Josiah S. Johnston") (name fb:en.henry_johnson "Henry Johnson") (name fb:en.george_a_waggaman "George A. Waggaman"))) (type fb:government.politician) who is the senior senator of louisiana? Josiah S. Johnston 16.203 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton "Alexandre Mouton") (name fb:en.jean_n_destrehan "Jean Noel Destréhan") (name fb:en.william_c_c_claiborne "William C. C. Claiborne") (name fb:en.alexander_barrow "Alexander Barrow") (name fb:en.huey_long "Huey Long") (name fb:en.charles_dominique_joseph_bouligny "Charles Dominique Joseph Bouligny") (name fb:en.james_brown_1766 "James Brown") (name fb:en.josiah_s_johnston "Josiah S. Johnston") (name fb:en.henry_johnson "Henry Johnson") (name fb:en.george_a_waggaman "George A. Waggaman"))) (type fb:government.politician) who is the senior senator of louisiana? Henry Johnson 16.203 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton "Alexandre Mouton") (name fb:en.jean_n_destrehan "Jean Noel Destréhan") (name fb:en.william_c_c_claiborne "William C. C. Claiborne") (name fb:en.alexander_barrow "Alexander Barrow") (name fb:en.huey_long "Huey Long") (name fb:en.charles_dominique_joseph_bouligny "Charles Dominique Joseph Bouligny") (name fb:en.james_brown_1766 "James Brown") (name fb:en.josiah_s_johnston "Josiah S. Johnston") (name fb:en.henry_johnson "Henry Johnson") (name fb:en.george_a_waggaman "George A. Waggaman"))) (type fb:government.politician) who is the senior senator of louisiana? George A. Waggaman 16.203 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton "Alexandre Mouton") (name fb:en.jean_n_destrehan "Jean Noel Destréhan") (name fb:en.william_c_c_claiborne "William C. C. Claiborne") (name fb:en.alexander_barrow "Alexander Barrow") (name fb:en.huey_long "Huey Long") (name fb:en.charles_dominique_joseph_bouligny "Charles Dominique Joseph Bouligny") (name fb:en.james_brown_1766 "James Brown") (name fb:en.josiah_s_johnston "Josiah S. Johnston") (name fb:en.henry_johnson "Henry Johnson") (name fb:en.george_a_waggaman "George A. Waggaman"))) (type fb:government.politician) what movies did morgan freeman star in? Driving Miss Daisy 12.08 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.morgan_freeman))) (value (list (name fb:en.se7en Seven) (name fb:en.driving_miss_daisy "Driving Miss Daisy") (name fb:m.07yk1xz Invictus) (name fb:en.amistad_1997 Amistad) (name fb:en.million_dollar_baby "Million Dollar Baby") (name fb:en.street_smart "Street Smart") (name fb:en.the_dark_knight "The Dark Knight") (name fb:m.0n27j7m "The Mighty Gents") (name fb:en.robin_hood_prince_of_thieves "Robin Hood: Prince of Thieves") (name fb:en.gone_baby_gone "Gone Baby Gone"))) (type fb:award.award_nominated_work) what movies did morgan freeman star in? Million Dollar Baby 12.08 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.morgan_freeman))) (value (list (name fb:en.se7en Seven) (name fb:en.driving_miss_daisy "Driving Miss Daisy") (name fb:m.07yk1xz Invictus) (name fb:en.amistad_1997 Amistad) (name fb:en.million_dollar_baby "Million Dollar Baby") (name fb:en.street_smart "Street Smart") (name fb:en.the_dark_knight "The Dark Knight") (name fb:m.0n27j7m "The Mighty Gents") (name fb:en.robin_hood_prince_of_thieves "Robin Hood: Prince of Thieves") (name fb:en.gone_baby_gone "Gone Baby Gone"))) (type fb:award.award_nominated_work) what movies did morgan freeman star in? Street Smart 12.08 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.morgan_freeman))) (value (list (name fb:en.se7en Seven) (name fb:en.driving_miss_daisy "Driving Miss Daisy") (name fb:m.07yk1xz Invictus) (name fb:en.amistad_1997 Amistad) (name fb:en.million_dollar_baby "Million Dollar Baby") (name fb:en.street_smart "Street Smart") (name fb:en.the_dark_knight "The Dark Knight") (name fb:m.0n27j7m "The Mighty Gents") (name fb:en.robin_hood_prince_of_thieves "Robin Hood: Prince of Thieves") (name fb:en.gone_baby_gone "Gone Baby Gone"))) (type fb:award.award_nominated_work) what movies did morgan freeman star in? The Dark Knight 12.08 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.morgan_freeman))) (value (list (name fb:en.se7en Seven) (name fb:en.driving_miss_daisy "Driving Miss Daisy") (name fb:m.07yk1xz Invictus) (name fb:en.amistad_1997 Amistad) (name fb:en.million_dollar_baby "Million Dollar Baby") (name fb:en.street_smart "Street Smart") (name fb:en.the_dark_knight "The Dark Knight") (name fb:m.0n27j7m "The Mighty Gents") (name fb:en.robin_hood_prince_of_thieves "Robin Hood: Prince of Thieves") (name fb:en.gone_baby_gone "Gone Baby Gone"))) (type fb:award.award_nominated_work) what movies did morgan freeman star in? The Mighty Gents 12.08 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.morgan_freeman))) (value (list (name fb:en.se7en Seven) (name fb:en.driving_miss_daisy "Driving Miss Daisy") (name fb:m.07yk1xz Invictus) (name fb:en.amistad_1997 Amistad) (name fb:en.million_dollar_baby "Million Dollar Baby") (name fb:en.street_smart "Street Smart") (name fb:en.the_dark_knight "The Dark Knight") (name fb:m.0n27j7m "The Mighty Gents") (name fb:en.robin_hood_prince_of_thieves "Robin Hood: Prince of Thieves") (name fb:en.gone_baby_gone "Gone Baby Gone"))) (type fb:award.award_nominated_work) what movies did morgan freeman star in? Robin Hood: Prince of Thieves 12.08 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.morgan_freeman))) (value (list (name fb:en.se7en Seven) (name fb:en.driving_miss_daisy "Driving Miss Daisy") (name fb:m.07yk1xz Invictus) (name fb:en.amistad_1997 Amistad) (name fb:en.million_dollar_baby "Million Dollar Baby") (name fb:en.street_smart "Street Smart") (name fb:en.the_dark_knight "The Dark Knight") (name fb:m.0n27j7m "The Mighty Gents") (name fb:en.robin_hood_prince_of_thieves "Robin Hood: Prince of Thieves") (name fb:en.gone_baby_gone "Gone Baby Gone"))) (type fb:award.award_nominated_work) what movies did morgan freeman star in? Gone Baby Gone 12.08 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.morgan_freeman))) (value (list (name fb:en.se7en Seven) (name fb:en.driving_miss_daisy "Driving Miss Daisy") (name fb:m.07yk1xz Invictus) (name fb:en.amistad_1997 Amistad) (name fb:en.million_dollar_baby "Million Dollar Baby") (name fb:en.street_smart "Street Smart") (name fb:en.the_dark_knight "The Dark Knight") (name fb:m.0n27j7m "The Mighty Gents") (name fb:en.robin_hood_prince_of_thieves "Robin Hood: Prince of Thieves") (name fb:en.gone_baby_gone "Gone Baby Gone"))) (type fb:award.award_nominated_work) who did john kennedy have affairs with? Judith Exner 5.619 formula ((lambda x (fb:celebrities.celebrity.sexual_relationships (fb:celebrities.romantic_relationship.celebrity (var x)))) fb:en.john_f_kennedy)) (value (list (name fb:en.judith_exner "Judith Exner") (name fb:en.marliyn_monroe "Marilyn Monroe"))) (type fb:celebrities.celebrity) who did john kennedy have affairs with? Marilyn Monroe 5.619 formula ((lambda x (fb:celebrities.celebrity.sexual_relationships (fb:celebrities.romantic_relationship.celebrity (var x)))) fb:en.john_f_kennedy)) (value (list (name fb:en.judith_exner "Judith Exner") (name fb:en.marliyn_monroe "Marilyn Monroe"))) (type fb:celebrities.celebrity) what type of money to take to cuba? Unitary state 16.518 formula (fb:government.form_of_government.countries fb:en.cuba)) (value (list (name fb:en.unitary_state "Unitary state") (name fb:en.republic Republic) (name fb:en.socialist_state "Socialist state") (name fb:en.semi-presidential_system "Semi-presidential system"))) (type fb:government.form_of_government) what type of money to take to cuba? Socialist state 16.518 formula (fb:government.form_of_government.countries fb:en.cuba)) (value (list (name fb:en.unitary_state "Unitary state") (name fb:en.republic Republic) (name fb:en.socialist_state "Socialist state") (name fb:en.semi-presidential_system "Semi-presidential system"))) (type fb:government.form_of_government) what type of money to take to cuba? Semi-presidential system 16.518 formula (fb:government.form_of_government.countries fb:en.cuba)) (value (list (name fb:en.unitary_state "Unitary state") (name fb:en.republic Republic) (name fb:en.socialist_state "Socialist state") (name fb:en.semi-presidential_system "Semi-presidential system"))) (type fb:government.form_of_government) what currency should you take to morocco? Moroccan dirham 24.338 formula (!fb:location.country.currency_used fb:en.morocco)) (value (list (name fb:en.moroccan_dirham "Moroccan dirham"))) (type fb:finance.currency) what do they call money in japan? Internet users as percentage of population, World Development Indicators, World Bank 11.846 formula ((lambda x (!fb:measurement_unit.dated_percentage.source (!fb:location.statistical_region.internet_users_percent_population (var x)))) fb:en.japan)) (value (list (name fb:g.1245ywqx8 "Internet users as percentage of population, World Development Indicators, World Bank") (name fb:m.0ndnhc0 "Internet users as percentage of population, World Development Indicators and Global Development Finance, World Bank"))) (type fb:dataworld.information_source) what do they call money in japan? Internet users as percentage of population, World Development Indicators and Global Development Finance, World Bank 11.846 formula ((lambda x (!fb:measurement_unit.dated_percentage.source (!fb:location.statistical_region.internet_users_percent_population (var x)))) fb:en.japan)) (value (list (name fb:g.1245ywqx8 "Internet users as percentage of population, World Development Indicators, World Bank") (name fb:m.0ndnhc0 "Internet users as percentage of population, World Development Indicators and Global Development Finance, World Bank"))) (type fb:dataworld.information_source) who is richard pryor son? Elizabeth Pryor 10.845 formula (!fb:people.person.children fb:en.richard_pryor)) (value (list (name fb:en.elizabeth_pryor "Elizabeth Pryor") (name fb:en.rain_pryor "Rain Pryor") (name fb:en.renee_pryor "Renee Pryor") (name fb:en.kelsey_pryor "Kelsey Pryor") (name fb:en.steven_pryor "Steven Pryor") (name fb:en.franklin_pryor "Franklin Pryor") (name fb:en.richard_pryor_jr "Richard Pryor Jr."))) (type fb:people.person) who is richard pryor son? Rain Pryor 10.845 formula (!fb:people.person.children fb:en.richard_pryor)) (value (list (name fb:en.elizabeth_pryor "Elizabeth Pryor") (name fb:en.rain_pryor "Rain Pryor") (name fb:en.renee_pryor "Renee Pryor") (name fb:en.kelsey_pryor "Kelsey Pryor") (name fb:en.steven_pryor "Steven Pryor") (name fb:en.franklin_pryor "Franklin Pryor") (name fb:en.richard_pryor_jr "Richard Pryor Jr."))) (type fb:people.person) who is richard pryor son? Renee Pryor 10.845 formula (!fb:people.person.children fb:en.richard_pryor)) (value (list (name fb:en.elizabeth_pryor "Elizabeth Pryor") (name fb:en.rain_pryor "Rain Pryor") (name fb:en.renee_pryor "Renee Pryor") (name fb:en.kelsey_pryor "Kelsey Pryor") (name fb:en.steven_pryor "Steven Pryor") (name fb:en.franklin_pryor "Franklin Pryor") (name fb:en.richard_pryor_jr "Richard Pryor Jr."))) (type fb:people.person) who is richard pryor son? Kelsey Pryor 10.845 formula (!fb:people.person.children fb:en.richard_pryor)) (value (list (name fb:en.elizabeth_pryor "Elizabeth Pryor") (name fb:en.rain_pryor "Rain Pryor") (name fb:en.renee_pryor "Renee Pryor") (name fb:en.kelsey_pryor "Kelsey Pryor") (name fb:en.steven_pryor "Steven Pryor") (name fb:en.franklin_pryor "Franklin Pryor") (name fb:en.richard_pryor_jr "Richard Pryor Jr."))) (type fb:people.person) who is richard pryor son? Steven Pryor 10.845 formula (!fb:people.person.children fb:en.richard_pryor)) (value (list (name fb:en.elizabeth_pryor "Elizabeth Pryor") (name fb:en.rain_pryor "Rain Pryor") (name fb:en.renee_pryor "Renee Pryor") (name fb:en.kelsey_pryor "Kelsey Pryor") (name fb:en.steven_pryor "Steven Pryor") (name fb:en.franklin_pryor "Franklin Pryor") (name fb:en.richard_pryor_jr "Richard Pryor Jr."))) (type fb:people.person) who is richard pryor son? Franklin Pryor 10.845 formula (!fb:people.person.children fb:en.richard_pryor)) (value (list (name fb:en.elizabeth_pryor "Elizabeth Pryor") (name fb:en.rain_pryor "Rain Pryor") (name fb:en.renee_pryor "Renee Pryor") (name fb:en.kelsey_pryor "Kelsey Pryor") (name fb:en.steven_pryor "Steven Pryor") (name fb:en.franklin_pryor "Franklin Pryor") (name fb:en.richard_pryor_jr "Richard Pryor Jr."))) (type fb:people.person) who is richard pryor son? Richard Pryor Jr. 10.845 formula (!fb:people.person.children fb:en.richard_pryor)) (value (list (name fb:en.elizabeth_pryor "Elizabeth Pryor") (name fb:en.rain_pryor "Rain Pryor") (name fb:en.renee_pryor "Renee Pryor") (name fb:en.kelsey_pryor "Kelsey Pryor") (name fb:en.steven_pryor "Steven Pryor") (name fb:en.franklin_pryor "Franklin Pryor") (name fb:en.richard_pryor_jr "Richard Pryor Jr."))) (type fb:people.person) what countries have english as their official language? United Kingdom 24.135 formula (and (fb:type.object.type fb:location.country) (fb:location.country.official_language fb:en.english))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.canada Canada) (name fb:en.south_africa "South Africa") (name fb:en.philippines Philippines) (name fb:en.hong_kong "Hong Kong") (name fb:en.republic_of_ireland Ireland) (name fb:en.nigeria Nigeria) (name fb:en.northern_ireland "Northern Ireland"))) (type fb:location.country) what countries have english as their official language? South Africa 24.135 formula (and (fb:type.object.type fb:location.country) (fb:location.country.official_language fb:en.english))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.canada Canada) (name fb:en.south_africa "South Africa") (name fb:en.philippines Philippines) (name fb:en.hong_kong "Hong Kong") (name fb:en.republic_of_ireland Ireland) (name fb:en.nigeria Nigeria) (name fb:en.northern_ireland "Northern Ireland"))) (type fb:location.country) what countries have english as their official language? Hong Kong 24.135 formula (and (fb:type.object.type fb:location.country) (fb:location.country.official_language fb:en.english))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.canada Canada) (name fb:en.south_africa "South Africa") (name fb:en.philippines Philippines) (name fb:en.hong_kong "Hong Kong") (name fb:en.republic_of_ireland Ireland) (name fb:en.nigeria Nigeria) (name fb:en.northern_ireland "Northern Ireland"))) (type fb:location.country) what countries have english as their official language? Northern Ireland 24.135 formula (and (fb:type.object.type fb:location.country) (fb:location.country.official_language fb:en.english))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.canada Canada) (name fb:en.south_africa "South Africa") (name fb:en.philippines Philippines) (name fb:en.hong_kong "Hong Kong") (name fb:en.republic_of_ireland Ireland) (name fb:en.nigeria Nigeria) (name fb:en.northern_ireland "Northern Ireland"))) (type fb:location.country) what international organizations is china part of? Program for Appropriate Technology in Health 17.175 formula (and (fb:type.object.type fb:organization.organization) (!fb:organization.organization_scope.organizations_with_this_scope fb:en.china))) (value (list (name fb:m.0jvtcq4 iProspect) (name fb:en.program_for_appropriate_technology_in_health "Program for Appropriate Technology in Health") (name fb:en.communist_party_of_china "Communist Party of China") (name fb:m.05b2y78 "Department of Health") (name fb:m.0cc6qz3 "Committee for National Revolution") (name fb:m.0cm6c29 TeleTOP) (name fb:m.0b_m912 "Cultural Development Center for Rural Women") (name fb:en.chinese_volleyball_association "Chinese Volleyball Association") (name fb:m.0fn_20 "Progressive Party") (name fb:en.google_china "Google China"))) (type (union fb:organization.organization)) what international organizations is china part of? Communist Party of China 17.175 formula (and (fb:type.object.type fb:organization.organization) (!fb:organization.organization_scope.organizations_with_this_scope fb:en.china))) (value (list (name fb:m.0jvtcq4 iProspect) (name fb:en.program_for_appropriate_technology_in_health "Program for Appropriate Technology in Health") (name fb:en.communist_party_of_china "Communist Party of China") (name fb:m.05b2y78 "Department of Health") (name fb:m.0cc6qz3 "Committee for National Revolution") (name fb:m.0cm6c29 TeleTOP) (name fb:m.0b_m912 "Cultural Development Center for Rural Women") (name fb:en.chinese_volleyball_association "Chinese Volleyball Association") (name fb:m.0fn_20 "Progressive Party") (name fb:en.google_china "Google China"))) (type (union fb:organization.organization)) what international organizations is china part of? Department of Health 17.175 formula (and (fb:type.object.type fb:organization.organization) (!fb:organization.organization_scope.organizations_with_this_scope fb:en.china))) (value (list (name fb:m.0jvtcq4 iProspect) (name fb:en.program_for_appropriate_technology_in_health "Program for Appropriate Technology in Health") (name fb:en.communist_party_of_china "Communist Party of China") (name fb:m.05b2y78 "Department of Health") (name fb:m.0cc6qz3 "Committee for National Revolution") (name fb:m.0cm6c29 TeleTOP) (name fb:m.0b_m912 "Cultural Development Center for Rural Women") (name fb:en.chinese_volleyball_association "Chinese Volleyball Association") (name fb:m.0fn_20 "Progressive Party") (name fb:en.google_china "Google China"))) (type (union fb:organization.organization)) what international organizations is china part of? Committee for National Revolution 17.175 formula (and (fb:type.object.type fb:organization.organization) (!fb:organization.organization_scope.organizations_with_this_scope fb:en.china))) (value (list (name fb:m.0jvtcq4 iProspect) (name fb:en.program_for_appropriate_technology_in_health "Program for Appropriate Technology in Health") (name fb:en.communist_party_of_china "Communist Party of China") (name fb:m.05b2y78 "Department of Health") (name fb:m.0cc6qz3 "Committee for National Revolution") (name fb:m.0cm6c29 TeleTOP) (name fb:m.0b_m912 "Cultural Development Center for Rural Women") (name fb:en.chinese_volleyball_association "Chinese Volleyball Association") (name fb:m.0fn_20 "Progressive Party") (name fb:en.google_china "Google China"))) (type (union fb:organization.organization)) what international organizations is china part of? Cultural Development Center for Rural Women 17.175 formula (and (fb:type.object.type fb:organization.organization) (!fb:organization.organization_scope.organizations_with_this_scope fb:en.china))) (value (list (name fb:m.0jvtcq4 iProspect) (name fb:en.program_for_appropriate_technology_in_health "Program for Appropriate Technology in Health") (name fb:en.communist_party_of_china "Communist Party of China") (name fb:m.05b2y78 "Department of Health") (name fb:m.0cc6qz3 "Committee for National Revolution") (name fb:m.0cm6c29 TeleTOP) (name fb:m.0b_m912 "Cultural Development Center for Rural Women") (name fb:en.chinese_volleyball_association "Chinese Volleyball Association") (name fb:m.0fn_20 "Progressive Party") (name fb:en.google_china "Google China"))) (type (union fb:organization.organization)) what international organizations is china part of? Chinese Volleyball Association 17.175 formula (and (fb:type.object.type fb:organization.organization) (!fb:organization.organization_scope.organizations_with_this_scope fb:en.china))) (value (list (name fb:m.0jvtcq4 iProspect) (name fb:en.program_for_appropriate_technology_in_health "Program for Appropriate Technology in Health") (name fb:en.communist_party_of_china "Communist Party of China") (name fb:m.05b2y78 "Department of Health") (name fb:m.0cc6qz3 "Committee for National Revolution") (name fb:m.0cm6c29 TeleTOP) (name fb:m.0b_m912 "Cultural Development Center for Rural Women") (name fb:en.chinese_volleyball_association "Chinese Volleyball Association") (name fb:m.0fn_20 "Progressive Party") (name fb:en.google_china "Google China"))) (type (union fb:organization.organization)) what international organizations is china part of? Progressive Party 17.175 formula (and (fb:type.object.type fb:organization.organization) (!fb:organization.organization_scope.organizations_with_this_scope fb:en.china))) (value (list (name fb:m.0jvtcq4 iProspect) (name fb:en.program_for_appropriate_technology_in_health "Program for Appropriate Technology in Health") (name fb:en.communist_party_of_china "Communist Party of China") (name fb:m.05b2y78 "Department of Health") (name fb:m.0cc6qz3 "Committee for National Revolution") (name fb:m.0cm6c29 TeleTOP) (name fb:m.0b_m912 "Cultural Development Center for Rural Women") (name fb:en.chinese_volleyball_association "Chinese Volleyball Association") (name fb:m.0fn_20 "Progressive Party") (name fb:en.google_china "Google China"))) (type (union fb:organization.organization)) what international organizations is china part of? Google China 17.175 formula (and (fb:type.object.type fb:organization.organization) (!fb:organization.organization_scope.organizations_with_this_scope fb:en.china))) (value (list (name fb:m.0jvtcq4 iProspect) (name fb:en.program_for_appropriate_technology_in_health "Program for Appropriate Technology in Health") (name fb:en.communist_party_of_china "Communist Party of China") (name fb:m.05b2y78 "Department of Health") (name fb:m.0cc6qz3 "Committee for National Revolution") (name fb:m.0cm6c29 TeleTOP) (name fb:m.0b_m912 "Cultural Development Center for Rural Women") (name fb:en.chinese_volleyball_association "Chinese Volleyball Association") (name fb:m.0fn_20 "Progressive Party") (name fb:en.google_china "Google China"))) (type (union fb:organization.organization)) what county is west st paul in? Dakota County 12.55 formula (!fb:location.hud_county_place.county fb:en.west_st_paul)) (value (list (name fb:en.dakota_county "Dakota County"))) (type fb:location.us_county) what college did magic johnson play for? Michigan State University 15.264 formula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.magic_johnson))) (value (list (name fb:en.michigan_state_university "Michigan State University"))) (type (union fb:education.university)) what did baron de montesquie influence? Zygmunt Bauman 8.336 formula (fb:influence.influence_node.influenced_by fb:en.anthony_giddens)) (value (list (name fb:en.zygmunt_bauman "Zygmunt Bauman") (name fb:en.stephen_r_barley "Stephen R. Barley") (name fb:en.wanda_orlikowski "Wanda Orlikowski"))) (type fb:influence.influence_node) what did baron de montesquie influence? Stephen R. Barley 8.336 formula (fb:influence.influence_node.influenced_by fb:en.anthony_giddens)) (value (list (name fb:en.zygmunt_bauman "Zygmunt Bauman") (name fb:en.stephen_r_barley "Stephen R. Barley") (name fb:en.wanda_orlikowski "Wanda Orlikowski"))) (type fb:influence.influence_node) what did baron de montesquie influence? Wanda Orlikowski 8.336 formula (fb:influence.influence_node.influenced_by fb:en.anthony_giddens)) (value (list (name fb:en.zygmunt_bauman "Zygmunt Bauman") (name fb:en.stephen_r_barley "Stephen R. Barley") (name fb:en.wanda_orlikowski "Wanda Orlikowski"))) (type fb:influence.influence_node) who did carlos boozer play for? Chicago Bulls 13.875 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.carlos_boozer)) (value (list (name fb:en.chicago_bulls "Chicago Bulls") (name fb:en.duke_blue_devils_basketball "Duke Blue Devils men's basketball"))) (type fb:sports.sports_team) who did carlos boozer play for? Duke Blue Devils men's basketball 13.875 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.carlos_boozer)) (value (list (name fb:en.chicago_bulls "Chicago Bulls") (name fb:en.duke_blue_devils_basketball "Duke Blue Devils men's basketball"))) (type fb:sports.sports_team) who owns the portland press herald? Blethen Maine Newspapers, Inc. 4.156 formula (!fb:book.newspaper.owner fb:en.portland_press_herald)) (value (list (name fb:en.blethen_maine_newspapers_inc "Blethen Maine Newspapers, Inc."))) (type fb:book.newspaper_owner) what did albert speer design? Olympic Stadium 8.561 formula (!fb:architecture.architect.structures_designed fb:en.albert_speer)) (value (list (name fb:en.olympiastadion_berlin "Olympic Stadium") (name fb:en.reich_chancellery "Reich Chancellery") (name fb:en.deutsches_stadion "Deutsches Stadion") (name fb:en.volkshalle Volkshalle))) (type fb:architecture.structure) what did albert speer design? Reich Chancellery 8.561 formula (!fb:architecture.architect.structures_designed fb:en.albert_speer)) (value (list (name fb:en.olympiastadion_berlin "Olympic Stadium") (name fb:en.reich_chancellery "Reich Chancellery") (name fb:en.deutsches_stadion "Deutsches Stadion") (name fb:en.volkshalle Volkshalle))) (type fb:architecture.structure) what did albert speer design? Deutsches Stadion 8.561 formula (!fb:architecture.architect.structures_designed fb:en.albert_speer)) (value (list (name fb:en.olympiastadion_berlin "Olympic Stadium") (name fb:en.reich_chancellery "Reich Chancellery") (name fb:en.deutsches_stadion "Deutsches Stadion") (name fb:en.volkshalle Volkshalle))) (type fb:architecture.structure) who does jordan palmer play for? Arizona Rattlers 12.074 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.jordan_palmer_1984)) (value (list (name fb:en.arizona_rattlers "Arizona Rattlers") (name fb:en.washington_redskins "Washington Redskins") (name fb:en.jacksonville_jaguars "Jacksonville Jaguars") (name fb:en.cincinnati_bengals "Cincinnati Bengals") (name fb:m.0gfjfrn "UTEP Miners football") (name fb:en.ufl_san_francisco_sacramento "Sacramento Mountain Lions"))) (type fb:sports.sports_team) who does jordan palmer play for? Washington Redskins 12.074 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.jordan_palmer_1984)) (value (list (name fb:en.arizona_rattlers "Arizona Rattlers") (name fb:en.washington_redskins "Washington Redskins") (name fb:en.jacksonville_jaguars "Jacksonville Jaguars") (name fb:en.cincinnati_bengals "Cincinnati Bengals") (name fb:m.0gfjfrn "UTEP Miners football") (name fb:en.ufl_san_francisco_sacramento "Sacramento Mountain Lions"))) (type fb:sports.sports_team) who does jordan palmer play for? Jacksonville Jaguars 12.074 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.jordan_palmer_1984)) (value (list (name fb:en.arizona_rattlers "Arizona Rattlers") (name fb:en.washington_redskins "Washington Redskins") (name fb:en.jacksonville_jaguars "Jacksonville Jaguars") (name fb:en.cincinnati_bengals "Cincinnati Bengals") (name fb:m.0gfjfrn "UTEP Miners football") (name fb:en.ufl_san_francisco_sacramento "Sacramento Mountain Lions"))) (type fb:sports.sports_team) who does jordan palmer play for? Cincinnati Bengals 12.074 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.jordan_palmer_1984)) (value (list (name fb:en.arizona_rattlers "Arizona Rattlers") (name fb:en.washington_redskins "Washington Redskins") (name fb:en.jacksonville_jaguars "Jacksonville Jaguars") (name fb:en.cincinnati_bengals "Cincinnati Bengals") (name fb:m.0gfjfrn "UTEP Miners football") (name fb:en.ufl_san_francisco_sacramento "Sacramento Mountain Lions"))) (type fb:sports.sports_team) who does jordan palmer play for? UTEP Miners football 12.074 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.jordan_palmer_1984)) (value (list (name fb:en.arizona_rattlers "Arizona Rattlers") (name fb:en.washington_redskins "Washington Redskins") (name fb:en.jacksonville_jaguars "Jacksonville Jaguars") (name fb:en.cincinnati_bengals "Cincinnati Bengals") (name fb:m.0gfjfrn "UTEP Miners football") (name fb:en.ufl_san_francisco_sacramento "Sacramento Mountain Lions"))) (type fb:sports.sports_team) who does jordan palmer play for? Sacramento Mountain Lions 12.074 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.jordan_palmer_1984)) (value (list (name fb:en.arizona_rattlers "Arizona Rattlers") (name fb:en.washington_redskins "Washington Redskins") (name fb:en.jacksonville_jaguars "Jacksonville Jaguars") (name fb:en.cincinnati_bengals "Cincinnati Bengals") (name fb:m.0gfjfrn "UTEP Miners football") (name fb:en.ufl_san_francisco_sacramento "Sacramento Mountain Lions"))) (type fb:sports.sports_team) what art movement did leonardo da vinci belong to? High Renaissance 18.924 formula (and (fb:type.object.type fb:visual_art.art_period_movement) (!fb:visual_art.visual_artist.associated_periods_or_movements fb:en.leonardo_da_vinci))) (value (list (name fb:en.high_renaissance "High Renaissance"))) (type (union fb:visual_art.art_period_movement)) what time does american horror story air? Samoa Time Zone 5.182 formula (!fb:location.location.time_zones fb:en.american_samoa)) (value (list (name fb:en.utc-11 UTC−11:00) (name fb:en.samoa_time_zone "Samoa Time Zone"))) (type fb:time.time_zone) what airport is near arlington tx? Ronald Reagan Washington National Airport 11.082 formula (and (fb:type.object.type fb:aviation.airport) (!fb:location.location.nearby_airports fb:en.arlington))) (value (list (name fb:en.ronald_reagan_washington_national_airport "Ronald Reagan Washington National Airport"))) (type (union fb:aviation.airport)) who did vasco de gama explore for? Dubai International Airport 4.319 formula (fb:aviation.airport.hub_for fb:en.gama_aviation)) (value (list (name fb:en.dubai_international_airport "Dubai International Airport") (name fb:en.bradley_international_airport "Bradley International Airport") (name fb:en.farnborough_airfield "Farnborough Airport"))) (type fb:aviation.airport) who did vasco de gama explore for? Bradley International Airport 4.319 formula (fb:aviation.airport.hub_for fb:en.gama_aviation)) (value (list (name fb:en.dubai_international_airport "Dubai International Airport") (name fb:en.bradley_international_airport "Bradley International Airport") (name fb:en.farnborough_airfield "Farnborough Airport"))) (type fb:aviation.airport) who did vasco de gama explore for? Farnborough Airport 4.319 formula (fb:aviation.airport.hub_for fb:en.gama_aviation)) (value (list (name fb:en.dubai_international_airport "Dubai International Airport") (name fb:en.bradley_international_airport "Bradley International Airport") (name fb:en.farnborough_airfield "Farnborough Airport"))) (type fb:aviation.airport) what team does heskey play for? Wigan Athletic F.C. 14.456 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.emile_heskey))) (value (list (name fb:en.wigan_athletic_fc "Wigan Athletic F.C.") (name fb:en.aston_villa_fc "Aston Villa F.C.") (name fb:en.newcastle_united_jets "Newcastle Jets FC"))) (type fb:soccer.football_team) what team does heskey play for? Aston Villa F.C. 14.456 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.emile_heskey))) (value (list (name fb:en.wigan_athletic_fc "Wigan Athletic F.C.") (name fb:en.aston_villa_fc "Aston Villa F.C.") (name fb:en.newcastle_united_jets "Newcastle Jets FC"))) (type fb:soccer.football_team) what team does heskey play for? Newcastle Jets FC 14.456 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.emile_heskey))) (value (list (name fb:en.wigan_athletic_fc "Wigan Athletic F.C.") (name fb:en.aston_villa_fc "Aston Villa F.C.") (name fb:en.newcastle_united_jets "Newcastle Jets FC"))) (type fb:soccer.football_team) where did emperor hirohito live? Ōmiya Palace 3.213 formula (and (fb:type.object.type fb:location.location) (!fb:people.deceased_person.place_of_death fb:en.hirohito))) (value (list (name fb:en.miya_palace "Ōmiya Palace"))) (type fb:location.location) what language do british speak? English Language 11.374 formula (!fb:people.ethnicity.languages_spoken fb:en.british_pakistanis)) (value (list (name fb:en.english "English Language") (name fb:en.urdu "Urdu Language") (name fb:en.panjabi_eastern "Punjabi language") (name fb:en.pashto_language "Pashto language") (name fb:en.kashmiri_language "Kashmiri Language") (name fb:en.pothohari_language "Pahari-Potwari Language"))) (type fb:language.human_language) what language do british speak? Urdu Language 11.374 formula (!fb:people.ethnicity.languages_spoken fb:en.british_pakistanis)) (value (list (name fb:en.english "English Language") (name fb:en.urdu "Urdu Language") (name fb:en.panjabi_eastern "Punjabi language") (name fb:en.pashto_language "Pashto language") (name fb:en.kashmiri_language "Kashmiri Language") (name fb:en.pothohari_language "Pahari-Potwari Language"))) (type fb:language.human_language) what language do british speak? Punjabi language 11.374 formula (!fb:people.ethnicity.languages_spoken fb:en.british_pakistanis)) (value (list (name fb:en.english "English Language") (name fb:en.urdu "Urdu Language") (name fb:en.panjabi_eastern "Punjabi language") (name fb:en.pashto_language "Pashto language") (name fb:en.kashmiri_language "Kashmiri Language") (name fb:en.pothohari_language "Pahari-Potwari Language"))) (type fb:language.human_language) what language do british speak? Pashto language 11.374 formula (!fb:people.ethnicity.languages_spoken fb:en.british_pakistanis)) (value (list (name fb:en.english "English Language") (name fb:en.urdu "Urdu Language") (name fb:en.panjabi_eastern "Punjabi language") (name fb:en.pashto_language "Pashto language") (name fb:en.kashmiri_language "Kashmiri Language") (name fb:en.pothohari_language "Pahari-Potwari Language"))) (type fb:language.human_language) what language do british speak? Kashmiri Language 11.374 formula (!fb:people.ethnicity.languages_spoken fb:en.british_pakistanis)) (value (list (name fb:en.english "English Language") (name fb:en.urdu "Urdu Language") (name fb:en.panjabi_eastern "Punjabi language") (name fb:en.pashto_language "Pashto language") (name fb:en.kashmiri_language "Kashmiri Language") (name fb:en.pothohari_language "Pahari-Potwari Language"))) (type fb:language.human_language) what language do british speak? Pahari-Potwari Language 11.374 formula (!fb:people.ethnicity.languages_spoken fb:en.british_pakistanis)) (value (list (name fb:en.english "English Language") (name fb:en.urdu "Urdu Language") (name fb:en.panjabi_eastern "Punjabi language") (name fb:en.pashto_language "Pashto language") (name fb:en.kashmiri_language "Kashmiri Language") (name fb:en.pothohari_language "Pahari-Potwari Language"))) (type fb:language.human_language) what high school did lil wayne graduate from? University of Houston 17.309 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.lil_wayne))) (value (list (name fb:en.university_of_houston "University of Houston") (name fb:m.075_jk3 "Lafayette Elementary School") (name fb:en.university_of_phoenix "University of Phoenix") (name fb:m.0h2_zh0 "Eleanor McMain Secondary School") (name fb:en.mcmain_magnet_secondary_school "Mcmain Magnet Secondary School"))) (type fb:education.educational_institution) what high school did lil wayne graduate from? Lafayette Elementary School 17.309 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.lil_wayne))) (value (list (name fb:en.university_of_houston "University of Houston") (name fb:m.075_jk3 "Lafayette Elementary School") (name fb:en.university_of_phoenix "University of Phoenix") (name fb:m.0h2_zh0 "Eleanor McMain Secondary School") (name fb:en.mcmain_magnet_secondary_school "Mcmain Magnet Secondary School"))) (type fb:education.educational_institution) what high school did lil wayne graduate from? University of Phoenix 17.309 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.lil_wayne))) (value (list (name fb:en.university_of_houston "University of Houston") (name fb:m.075_jk3 "Lafayette Elementary School") (name fb:en.university_of_phoenix "University of Phoenix") (name fb:m.0h2_zh0 "Eleanor McMain Secondary School") (name fb:en.mcmain_magnet_secondary_school "Mcmain Magnet Secondary School"))) (type fb:education.educational_institution) what high school did lil wayne graduate from? Eleanor McMain Secondary School 17.309 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.lil_wayne))) (value (list (name fb:en.university_of_houston "University of Houston") (name fb:m.075_jk3 "Lafayette Elementary School") (name fb:en.university_of_phoenix "University of Phoenix") (name fb:m.0h2_zh0 "Eleanor McMain Secondary School") (name fb:en.mcmain_magnet_secondary_school "Mcmain Magnet Secondary School"))) (type fb:education.educational_institution) what high school did lil wayne graduate from? Mcmain Magnet Secondary School 17.309 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.lil_wayne))) (value (list (name fb:en.university_of_houston "University of Houston") (name fb:m.075_jk3 "Lafayette Elementary School") (name fb:en.university_of_phoenix "University of Phoenix") (name fb:m.0h2_zh0 "Eleanor McMain Secondary School") (name fb:en.mcmain_magnet_secondary_school "Mcmain Magnet Secondary School"))) (type fb:education.educational_institution) who is washington redskins backup qb? Entertainment Weekly annotation index 3.93 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.washington_redskins)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index"))) (type fb:common.annotation_index) what language do people speak in the netherlands? Dutch Language 17.5 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.netherlands))) (value (list (name fb:en.dutch_language "Dutch Language"))) (type (union fb:language.human_language)) what are the major languages spoken in greece? Greek Language 23.472 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.greece))) (value (list (name fb:en.greek_language "Greek Language") (name fb:en.albanian_language "Albanian language"))) (type fb:language.human_language) what are the major languages spoken in greece? Albanian language 23.472 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.greece))) (value (list (name fb:en.greek_language "Greek Language") (name fb:en.albanian_language "Albanian language"))) (type fb:language.human_language) what movies has john williams score? E.T. The Extra-Terrestrial 11.074 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.john_willams))) (value (list (name fb:m.01h9dz8 "E.T. The Extra-Terrestrial") (name fb:en.star_wars_episode_vi_return_of_the_jedi "Star Wars Episode VI: Return of the Jedi") (name fb:en.saving_private_ryan "Saving Private Ryan") (name fb:m.0j_jdf5 "Olympic Fanfare and Theme") (name fb:en.schindlers_list "Schindler's List") (name fb:m.01h9j2c "Raiders of the Lost Ark") (name fb:en.star_wars_episode_iv_a_new_hope "Star Wars Episode IV: A New Hope") (name fb:en.born_on_the_fourth_of_july_1989 "Born on the Fourth of July") (name fb:m.02psgy6 "Seven Years in Tibet") (name fb:m.0wvjl3 Flying))) (type (union fb:award.award_nominated_work)) what movies has john williams score? Star Wars Episode VI: Return of the Jedi 11.074 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.john_willams))) (value (list (name fb:m.01h9dz8 "E.T. The Extra-Terrestrial") (name fb:en.star_wars_episode_vi_return_of_the_jedi "Star Wars Episode VI: Return of the Jedi") (name fb:en.saving_private_ryan "Saving Private Ryan") (name fb:m.0j_jdf5 "Olympic Fanfare and Theme") (name fb:en.schindlers_list "Schindler's List") (name fb:m.01h9j2c "Raiders of the Lost Ark") (name fb:en.star_wars_episode_iv_a_new_hope "Star Wars Episode IV: A New Hope") (name fb:en.born_on_the_fourth_of_july_1989 "Born on the Fourth of July") (name fb:m.02psgy6 "Seven Years in Tibet") (name fb:m.0wvjl3 Flying))) (type (union fb:award.award_nominated_work)) what movies has john williams score? Saving Private Ryan 11.074 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.john_willams))) (value (list (name fb:m.01h9dz8 "E.T. The Extra-Terrestrial") (name fb:en.star_wars_episode_vi_return_of_the_jedi "Star Wars Episode VI: Return of the Jedi") (name fb:en.saving_private_ryan "Saving Private Ryan") (name fb:m.0j_jdf5 "Olympic Fanfare and Theme") (name fb:en.schindlers_list "Schindler's List") (name fb:m.01h9j2c "Raiders of the Lost Ark") (name fb:en.star_wars_episode_iv_a_new_hope "Star Wars Episode IV: A New Hope") (name fb:en.born_on_the_fourth_of_july_1989 "Born on the Fourth of July") (name fb:m.02psgy6 "Seven Years in Tibet") (name fb:m.0wvjl3 Flying))) (type (union fb:award.award_nominated_work)) what movies has john williams score? Olympic Fanfare and Theme 11.074 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.john_willams))) (value (list (name fb:m.01h9dz8 "E.T. The Extra-Terrestrial") (name fb:en.star_wars_episode_vi_return_of_the_jedi "Star Wars Episode VI: Return of the Jedi") (name fb:en.saving_private_ryan "Saving Private Ryan") (name fb:m.0j_jdf5 "Olympic Fanfare and Theme") (name fb:en.schindlers_list "Schindler's List") (name fb:m.01h9j2c "Raiders of the Lost Ark") (name fb:en.star_wars_episode_iv_a_new_hope "Star Wars Episode IV: A New Hope") (name fb:en.born_on_the_fourth_of_july_1989 "Born on the Fourth of July") (name fb:m.02psgy6 "Seven Years in Tibet") (name fb:m.0wvjl3 Flying))) (type (union fb:award.award_nominated_work)) what movies has john williams score? Schindler's List 11.074 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.john_willams))) (value (list (name fb:m.01h9dz8 "E.T. The Extra-Terrestrial") (name fb:en.star_wars_episode_vi_return_of_the_jedi "Star Wars Episode VI: Return of the Jedi") (name fb:en.saving_private_ryan "Saving Private Ryan") (name fb:m.0j_jdf5 "Olympic Fanfare and Theme") (name fb:en.schindlers_list "Schindler's List") (name fb:m.01h9j2c "Raiders of the Lost Ark") (name fb:en.star_wars_episode_iv_a_new_hope "Star Wars Episode IV: A New Hope") (name fb:en.born_on_the_fourth_of_july_1989 "Born on the Fourth of July") (name fb:m.02psgy6 "Seven Years in Tibet") (name fb:m.0wvjl3 Flying))) (type (union fb:award.award_nominated_work)) what movies has john williams score? Raiders of the Lost Ark 11.074 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.john_willams))) (value (list (name fb:m.01h9dz8 "E.T. The Extra-Terrestrial") (name fb:en.star_wars_episode_vi_return_of_the_jedi "Star Wars Episode VI: Return of the Jedi") (name fb:en.saving_private_ryan "Saving Private Ryan") (name fb:m.0j_jdf5 "Olympic Fanfare and Theme") (name fb:en.schindlers_list "Schindler's List") (name fb:m.01h9j2c "Raiders of the Lost Ark") (name fb:en.star_wars_episode_iv_a_new_hope "Star Wars Episode IV: A New Hope") (name fb:en.born_on_the_fourth_of_july_1989 "Born on the Fourth of July") (name fb:m.02psgy6 "Seven Years in Tibet") (name fb:m.0wvjl3 Flying))) (type (union fb:award.award_nominated_work)) what movies has john williams score? Star Wars Episode IV: A New Hope 11.074 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.john_willams))) (value (list (name fb:m.01h9dz8 "E.T. The Extra-Terrestrial") (name fb:en.star_wars_episode_vi_return_of_the_jedi "Star Wars Episode VI: Return of the Jedi") (name fb:en.saving_private_ryan "Saving Private Ryan") (name fb:m.0j_jdf5 "Olympic Fanfare and Theme") (name fb:en.schindlers_list "Schindler's List") (name fb:m.01h9j2c "Raiders of the Lost Ark") (name fb:en.star_wars_episode_iv_a_new_hope "Star Wars Episode IV: A New Hope") (name fb:en.born_on_the_fourth_of_july_1989 "Born on the Fourth of July") (name fb:m.02psgy6 "Seven Years in Tibet") (name fb:m.0wvjl3 Flying))) (type (union fb:award.award_nominated_work)) what movies has john williams score? Born on the Fourth of July 11.074 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.john_willams))) (value (list (name fb:m.01h9dz8 "E.T. The Extra-Terrestrial") (name fb:en.star_wars_episode_vi_return_of_the_jedi "Star Wars Episode VI: Return of the Jedi") (name fb:en.saving_private_ryan "Saving Private Ryan") (name fb:m.0j_jdf5 "Olympic Fanfare and Theme") (name fb:en.schindlers_list "Schindler's List") (name fb:m.01h9j2c "Raiders of the Lost Ark") (name fb:en.star_wars_episode_iv_a_new_hope "Star Wars Episode IV: A New Hope") (name fb:en.born_on_the_fourth_of_july_1989 "Born on the Fourth of July") (name fb:m.02psgy6 "Seven Years in Tibet") (name fb:m.0wvjl3 Flying))) (type (union fb:award.award_nominated_work)) what movies has john williams score? Seven Years in Tibet 11.074 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.john_willams))) (value (list (name fb:m.01h9dz8 "E.T. The Extra-Terrestrial") (name fb:en.star_wars_episode_vi_return_of_the_jedi "Star Wars Episode VI: Return of the Jedi") (name fb:en.saving_private_ryan "Saving Private Ryan") (name fb:m.0j_jdf5 "Olympic Fanfare and Theme") (name fb:en.schindlers_list "Schindler's List") (name fb:m.01h9j2c "Raiders of the Lost Ark") (name fb:en.star_wars_episode_iv_a_new_hope "Star Wars Episode IV: A New Hope") (name fb:en.born_on_the_fourth_of_july_1989 "Born on the Fourth of July") (name fb:m.02psgy6 "Seven Years in Tibet") (name fb:m.0wvjl3 Flying))) (type (union fb:award.award_nominated_work)) what to do in richardson dallas? FC Dallas Stadium 3.992 formula (!fb:travel.travel_destination.tourist_attractions fb:en.dallas)) (value (list (name fb:en.pizza_hut_park "FC Dallas Stadium") (name fb:en.nasher_sculpture_center "Nasher Sculpture Center") (name fb:en.dallas_convention_center "Kay Bailey Hutchison Convention Center") (name fb:en.meadows_museum "Meadows Museum") (name fb:en.dealey_plaza_sixth_floor_museum "Sixth Floor Museum") (name fb:en.dallas_museum_of_art "Dallas Museum of Art") (name fb:en.the_trammell_margaret_crow_collection_of_asian_art "The Trammell & Margaret Crow Collection of Asian Art") (name fb:en.new_cowboys_stadium "Cowboys Stadium") (name fb:en.dallas_zoo "Dallas Zoo") (name fb:en.george_w_bush_presidential_library "George W. Bush Presidential Center"))) (type fb:travel.tourist_attraction) what to do in richardson dallas? Nasher Sculpture Center 3.992 formula (!fb:travel.travel_destination.tourist_attractions fb:en.dallas)) (value (list (name fb:en.pizza_hut_park "FC Dallas Stadium") (name fb:en.nasher_sculpture_center "Nasher Sculpture Center") (name fb:en.dallas_convention_center "Kay Bailey Hutchison Convention Center") (name fb:en.meadows_museum "Meadows Museum") (name fb:en.dealey_plaza_sixth_floor_museum "Sixth Floor Museum") (name fb:en.dallas_museum_of_art "Dallas Museum of Art") (name fb:en.the_trammell_margaret_crow_collection_of_asian_art "The Trammell & Margaret Crow Collection of Asian Art") (name fb:en.new_cowboys_stadium "Cowboys Stadium") (name fb:en.dallas_zoo "Dallas Zoo") (name fb:en.george_w_bush_presidential_library "George W. Bush Presidential Center"))) (type fb:travel.tourist_attraction) what to do in richardson dallas? Kay Bailey Hutchison Convention Center 3.992 formula (!fb:travel.travel_destination.tourist_attractions fb:en.dallas)) (value (list (name fb:en.pizza_hut_park "FC Dallas Stadium") (name fb:en.nasher_sculpture_center "Nasher Sculpture Center") (name fb:en.dallas_convention_center "Kay Bailey Hutchison Convention Center") (name fb:en.meadows_museum "Meadows Museum") (name fb:en.dealey_plaza_sixth_floor_museum "Sixth Floor Museum") (name fb:en.dallas_museum_of_art "Dallas Museum of Art") (name fb:en.the_trammell_margaret_crow_collection_of_asian_art "The Trammell & Margaret Crow Collection of Asian Art") (name fb:en.new_cowboys_stadium "Cowboys Stadium") (name fb:en.dallas_zoo "Dallas Zoo") (name fb:en.george_w_bush_presidential_library "George W. Bush Presidential Center"))) (type fb:travel.tourist_attraction) what to do in richardson dallas? Meadows Museum 3.992 formula (!fb:travel.travel_destination.tourist_attractions fb:en.dallas)) (value (list (name fb:en.pizza_hut_park "FC Dallas Stadium") (name fb:en.nasher_sculpture_center "Nasher Sculpture Center") (name fb:en.dallas_convention_center "Kay Bailey Hutchison Convention Center") (name fb:en.meadows_museum "Meadows Museum") (name fb:en.dealey_plaza_sixth_floor_museum "Sixth Floor Museum") (name fb:en.dallas_museum_of_art "Dallas Museum of Art") (name fb:en.the_trammell_margaret_crow_collection_of_asian_art "The Trammell & Margaret Crow Collection of Asian Art") (name fb:en.new_cowboys_stadium "Cowboys Stadium") (name fb:en.dallas_zoo "Dallas Zoo") (name fb:en.george_w_bush_presidential_library "George W. Bush Presidential Center"))) (type fb:travel.tourist_attraction) what to do in richardson dallas? Sixth Floor Museum 3.992 formula (!fb:travel.travel_destination.tourist_attractions fb:en.dallas)) (value (list (name fb:en.pizza_hut_park "FC Dallas Stadium") (name fb:en.nasher_sculpture_center "Nasher Sculpture Center") (name fb:en.dallas_convention_center "Kay Bailey Hutchison Convention Center") (name fb:en.meadows_museum "Meadows Museum") (name fb:en.dealey_plaza_sixth_floor_museum "Sixth Floor Museum") (name fb:en.dallas_museum_of_art "Dallas Museum of Art") (name fb:en.the_trammell_margaret_crow_collection_of_asian_art "The Trammell & Margaret Crow Collection of Asian Art") (name fb:en.new_cowboys_stadium "Cowboys Stadium") (name fb:en.dallas_zoo "Dallas Zoo") (name fb:en.george_w_bush_presidential_library "George W. Bush Presidential Center"))) (type fb:travel.tourist_attraction) what to do in richardson dallas? Dallas Museum of Art 3.992 formula (!fb:travel.travel_destination.tourist_attractions fb:en.dallas)) (value (list (name fb:en.pizza_hut_park "FC Dallas Stadium") (name fb:en.nasher_sculpture_center "Nasher Sculpture Center") (name fb:en.dallas_convention_center "Kay Bailey Hutchison Convention Center") (name fb:en.meadows_museum "Meadows Museum") (name fb:en.dealey_plaza_sixth_floor_museum "Sixth Floor Museum") (name fb:en.dallas_museum_of_art "Dallas Museum of Art") (name fb:en.the_trammell_margaret_crow_collection_of_asian_art "The Trammell & Margaret Crow Collection of Asian Art") (name fb:en.new_cowboys_stadium "Cowboys Stadium") (name fb:en.dallas_zoo "Dallas Zoo") (name fb:en.george_w_bush_presidential_library "George W. Bush Presidential Center"))) (type fb:travel.tourist_attraction) what to do in richardson dallas? The Trammell & Margaret Crow Collection of Asian Art 3.992 formula (!fb:travel.travel_destination.tourist_attractions fb:en.dallas)) (value (list (name fb:en.pizza_hut_park "FC Dallas Stadium") (name fb:en.nasher_sculpture_center "Nasher Sculpture Center") (name fb:en.dallas_convention_center "Kay Bailey Hutchison Convention Center") (name fb:en.meadows_museum "Meadows Museum") (name fb:en.dealey_plaza_sixth_floor_museum "Sixth Floor Museum") (name fb:en.dallas_museum_of_art "Dallas Museum of Art") (name fb:en.the_trammell_margaret_crow_collection_of_asian_art "The Trammell & Margaret Crow Collection of Asian Art") (name fb:en.new_cowboys_stadium "Cowboys Stadium") (name fb:en.dallas_zoo "Dallas Zoo") (name fb:en.george_w_bush_presidential_library "George W. Bush Presidential Center"))) (type fb:travel.tourist_attraction) what to do in richardson dallas? Cowboys Stadium 3.992 formula (!fb:travel.travel_destination.tourist_attractions fb:en.dallas)) (value (list (name fb:en.pizza_hut_park "FC Dallas Stadium") (name fb:en.nasher_sculpture_center "Nasher Sculpture Center") (name fb:en.dallas_convention_center "Kay Bailey Hutchison Convention Center") (name fb:en.meadows_museum "Meadows Museum") (name fb:en.dealey_plaza_sixth_floor_museum "Sixth Floor Museum") (name fb:en.dallas_museum_of_art "Dallas Museum of Art") (name fb:en.the_trammell_margaret_crow_collection_of_asian_art "The Trammell & Margaret Crow Collection of Asian Art") (name fb:en.new_cowboys_stadium "Cowboys Stadium") (name fb:en.dallas_zoo "Dallas Zoo") (name fb:en.george_w_bush_presidential_library "George W. Bush Presidential Center"))) (type fb:travel.tourist_attraction) what to do in richardson dallas? Dallas Zoo 3.992 formula (!fb:travel.travel_destination.tourist_attractions fb:en.dallas)) (value (list (name fb:en.pizza_hut_park "FC Dallas Stadium") (name fb:en.nasher_sculpture_center "Nasher Sculpture Center") (name fb:en.dallas_convention_center "Kay Bailey Hutchison Convention Center") (name fb:en.meadows_museum "Meadows Museum") (name fb:en.dealey_plaza_sixth_floor_museum "Sixth Floor Museum") (name fb:en.dallas_museum_of_art "Dallas Museum of Art") (name fb:en.the_trammell_margaret_crow_collection_of_asian_art "The Trammell & Margaret Crow Collection of Asian Art") (name fb:en.new_cowboys_stadium "Cowboys Stadium") (name fb:en.dallas_zoo "Dallas Zoo") (name fb:en.george_w_bush_presidential_library "George W. Bush Presidential Center"))) (type fb:travel.tourist_attraction) what to do in richardson dallas? George W. Bush Presidential Center 3.992 formula (!fb:travel.travel_destination.tourist_attractions fb:en.dallas)) (value (list (name fb:en.pizza_hut_park "FC Dallas Stadium") (name fb:en.nasher_sculpture_center "Nasher Sculpture Center") (name fb:en.dallas_convention_center "Kay Bailey Hutchison Convention Center") (name fb:en.meadows_museum "Meadows Museum") (name fb:en.dealey_plaza_sixth_floor_museum "Sixth Floor Museum") (name fb:en.dallas_museum_of_art "Dallas Museum of Art") (name fb:en.the_trammell_margaret_crow_collection_of_asian_art "The Trammell & Margaret Crow Collection of Asian Art") (name fb:en.new_cowboys_stadium "Cowboys Stadium") (name fb:en.dallas_zoo "Dallas Zoo") (name fb:en.george_w_bush_presidential_library "George W. Bush Presidential Center"))) (type fb:travel.tourist_attraction) what type of artist is henri matisse? Blue Nudes Series 10.003 formula (fb:visual_art.art_series.artist fb:en.henri_matisse)) (value (list (name fb:m.0k0xmct "Blue Nudes Series") (name fb:m.0gj8w8y "The Back Series") (name fb:en.yellow_odalisque "Yellow Odalisque"))) (type fb:visual_art.art_series) what type of artist is henri matisse? The Back Series 10.003 formula (fb:visual_art.art_series.artist fb:en.henri_matisse)) (value (list (name fb:m.0k0xmct "Blue Nudes Series") (name fb:m.0gj8w8y "The Back Series") (name fb:en.yellow_odalisque "Yellow Odalisque"))) (type fb:visual_art.art_series) what type of artist is henri matisse? Yellow Odalisque 10.003 formula (fb:visual_art.art_series.artist fb:en.henri_matisse)) (value (list (name fb:m.0k0xmct "Blue Nudes Series") (name fb:m.0gj8w8y "The Back Series") (name fb:en.yellow_odalisque "Yellow Odalisque"))) (type fb:visual_art.art_series) what was the first book charles dickens wrote? Drood: A Novel 15.631 formula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.charles_dickens))) (value (list (name fb:en.drood "Drood: A Novel") (name fb:en.coffee_with_dickens "Coffee with Dickens"))) (type (union fb:book.book)) what was the first book charles dickens wrote? Coffee with Dickens 15.631 formula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.charles_dickens))) (value (list (name fb:en.drood "Drood: A Novel") (name fb:en.coffee_with_dickens "Coffee with Dickens"))) (type (union fb:book.book)) what books did agatha christie wrote? The Complete Christie: An Agatha Christie Encyclopedia 10.399 formula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.agatha_christie))) (value (list (name fb:m.06_fjgf "The Complete Christie: An Agatha Christie Encyclopedia") (name fb:en.the_getaway_guide_to_agatha_christies_england "The Getaway Guide to Agatha Christie's England") (name fb:en.agatha_christie_and_the_eleven_missing_days "Agatha Christie and the Eleven Missing Days"))) (type (union fb:book.book)) what books did agatha christie wrote? The Getaway Guide to Agatha Christie's England 10.399 formula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.agatha_christie))) (value (list (name fb:m.06_fjgf "The Complete Christie: An Agatha Christie Encyclopedia") (name fb:en.the_getaway_guide_to_agatha_christies_england "The Getaway Guide to Agatha Christie's England") (name fb:en.agatha_christie_and_the_eleven_missing_days "Agatha Christie and the Eleven Missing Days"))) (type (union fb:book.book)) what books did agatha christie wrote? Agatha Christie and the Eleven Missing Days 10.399 formula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.agatha_christie))) (value (list (name fb:m.06_fjgf "The Complete Christie: An Agatha Christie Encyclopedia") (name fb:en.the_getaway_guide_to_agatha_christies_england "The Getaway Guide to Agatha Christie's England") (name fb:en.agatha_christie_and_the_eleven_missing_days "Agatha Christie and the Eleven Missing Days"))) (type (union fb:book.book)) what school did michael jordan attend? University of North Carolina at Chapel Hill 18.52 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.michael_jordan))) (value (list (name fb:en.university_of_north_carolina_at_chapel_hill "University of North Carolina at Chapel Hill") (name fb:en.emsley_a_laney_high_school "Emsley A. Laney High School"))) (type fb:education.educational_institution) what school did michael jordan attend? Emsley A. Laney High School 18.52 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.michael_jordan))) (value (list (name fb:en.university_of_north_carolina_at_chapel_hill "University of North Carolina at Chapel Hill") (name fb:en.emsley_a_laney_high_school "Emsley A. Laney High School"))) (type fb:education.educational_institution) where is mount st helens volcano? Crater Glacier 3.539 formula (and (fb:type.object.type fb:location.location) (!fb:location.location.contains fb:en.mount_st_helens))) (value (list (name fb:en.tulutson_glacier "Crater Glacier") (name fb:m.032097 "Spirit Lake"))) (type fb:location.location) where is mount st helens volcano? Spirit Lake 3.539 formula (and (fb:type.object.type fb:location.location) (!fb:location.location.contains fb:en.mount_st_helens))) (value (list (name fb:en.tulutson_glacier "Crater Glacier") (name fb:m.032097 "Spirit Lake"))) (type fb:location.location) what book did tupac write? The rose that grew from concrete 10.709 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.tupac_shakur))) (value (list (name fb:m.04w30vn "The rose that grew from concrete") (name fb:m.04w30vx Tupac) (name fb:m.0hrcl9y "The Rose That Grew from Concrete") (name fb:en.the_tupac_shakur_collection "The Tupac Shakur Collection") (name fb:en.ke_onke_ui_rite_ui_esoi_pe_in_changmi "KÊ»onkÊ»ŭritÊ»ŭ esŏ pÊ»in changmi ="))) (type (union fb:book.book)) what book did tupac write? The Rose That Grew from Concrete 10.709 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.tupac_shakur))) (value (list (name fb:m.04w30vn "The rose that grew from concrete") (name fb:m.04w30vx Tupac) (name fb:m.0hrcl9y "The Rose That Grew from Concrete") (name fb:en.the_tupac_shakur_collection "The Tupac Shakur Collection") (name fb:en.ke_onke_ui_rite_ui_esoi_pe_in_changmi "KÊ»onkÊ»ŭritÊ»ŭ esŏ pÊ»in changmi ="))) (type (union fb:book.book)) what book did tupac write? The Tupac Shakur Collection 10.709 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.tupac_shakur))) (value (list (name fb:m.04w30vn "The rose that grew from concrete") (name fb:m.04w30vx Tupac) (name fb:m.0hrcl9y "The Rose That Grew from Concrete") (name fb:en.the_tupac_shakur_collection "The Tupac Shakur Collection") (name fb:en.ke_onke_ui_rite_ui_esoi_pe_in_changmi "KÊ»onkÊ»ŭritÊ»ŭ esŏ pÊ»in changmi ="))) (type (union fb:book.book)) what book did tupac write? KÊ»onkÊ»ŭritÊ»ŭ esŏ pÊ»in changmi = 10.709 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.tupac_shakur))) (value (list (name fb:m.04w30vn "The rose that grew from concrete") (name fb:m.04w30vx Tupac) (name fb:m.0hrcl9y "The Rose That Grew from Concrete") (name fb:en.the_tupac_shakur_collection "The Tupac Shakur Collection") (name fb:en.ke_onke_ui_rite_ui_esoi_pe_in_changmi "KÊ»onkÊ»ŭritÊ»ŭ esŏ pÊ»in changmi ="))) (type (union fb:book.book)) what language do chinese people write in? Yue Chinese 8.562 formula (!fb:people.ethnicity.languages_spoken fb:m.02p1pl6)) (value (list (name fb:en.chinese_yue "Yue Chinese") (name fb:en.standard_mandarin "Standard Mandarin"))) (type fb:language.human_language) what language do chinese people write in? Standard Mandarin 8.562 formula (!fb:people.ethnicity.languages_spoken fb:m.02p1pl6)) (value (list (name fb:en.chinese_yue "Yue Chinese") (name fb:en.standard_mandarin "Standard Mandarin"))) (type fb:language.human_language) who is the next governor of indiana? Isaac P. Gray 17.436 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.indiana)) (value (list (name fb:en.isaac_p_gray "Isaac P. Gray") (name fb:en.noah_noble "Noah Noble") (name fb:m.0jwrdvc "Sue Ellspermann") (name fb:en.conrad_baker "Conrad Baker") (name fb:en.greg_zoeller "Greg Zoeller") (name fb:en.joseph_a_wright "Joseph A. Wright") (name fb:en.henry_f_schricker "Henry F. Schricker") (name fb:en.winfield_t_durbin "Winfield T. Durbin") (name fb:en.mike_pence "Mike Pence") (name fb:en.harry_g_leslie "Harry G. Leslie"))) (type fb:government.politician) who is the next governor of indiana? Noah Noble 17.436 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.indiana)) (value (list (name fb:en.isaac_p_gray "Isaac P. Gray") (name fb:en.noah_noble "Noah Noble") (name fb:m.0jwrdvc "Sue Ellspermann") (name fb:en.conrad_baker "Conrad Baker") (name fb:en.greg_zoeller "Greg Zoeller") (name fb:en.joseph_a_wright "Joseph A. Wright") (name fb:en.henry_f_schricker "Henry F. Schricker") (name fb:en.winfield_t_durbin "Winfield T. Durbin") (name fb:en.mike_pence "Mike Pence") (name fb:en.harry_g_leslie "Harry G. Leslie"))) (type fb:government.politician) who is the next governor of indiana? Sue Ellspermann 17.436 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.indiana)) (value (list (name fb:en.isaac_p_gray "Isaac P. Gray") (name fb:en.noah_noble "Noah Noble") (name fb:m.0jwrdvc "Sue Ellspermann") (name fb:en.conrad_baker "Conrad Baker") (name fb:en.greg_zoeller "Greg Zoeller") (name fb:en.joseph_a_wright "Joseph A. Wright") (name fb:en.henry_f_schricker "Henry F. Schricker") (name fb:en.winfield_t_durbin "Winfield T. Durbin") (name fb:en.mike_pence "Mike Pence") (name fb:en.harry_g_leslie "Harry G. Leslie"))) (type fb:government.politician) who is the next governor of indiana? Conrad Baker 17.436 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.indiana)) (value (list (name fb:en.isaac_p_gray "Isaac P. Gray") (name fb:en.noah_noble "Noah Noble") (name fb:m.0jwrdvc "Sue Ellspermann") (name fb:en.conrad_baker "Conrad Baker") (name fb:en.greg_zoeller "Greg Zoeller") (name fb:en.joseph_a_wright "Joseph A. Wright") (name fb:en.henry_f_schricker "Henry F. Schricker") (name fb:en.winfield_t_durbin "Winfield T. Durbin") (name fb:en.mike_pence "Mike Pence") (name fb:en.harry_g_leslie "Harry G. Leslie"))) (type fb:government.politician) who is the next governor of indiana? Greg Zoeller 17.436 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.indiana)) (value (list (name fb:en.isaac_p_gray "Isaac P. Gray") (name fb:en.noah_noble "Noah Noble") (name fb:m.0jwrdvc "Sue Ellspermann") (name fb:en.conrad_baker "Conrad Baker") (name fb:en.greg_zoeller "Greg Zoeller") (name fb:en.joseph_a_wright "Joseph A. Wright") (name fb:en.henry_f_schricker "Henry F. Schricker") (name fb:en.winfield_t_durbin "Winfield T. Durbin") (name fb:en.mike_pence "Mike Pence") (name fb:en.harry_g_leslie "Harry G. Leslie"))) (type fb:government.politician) who is the next governor of indiana? Joseph A. Wright 17.436 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.indiana)) (value (list (name fb:en.isaac_p_gray "Isaac P. Gray") (name fb:en.noah_noble "Noah Noble") (name fb:m.0jwrdvc "Sue Ellspermann") (name fb:en.conrad_baker "Conrad Baker") (name fb:en.greg_zoeller "Greg Zoeller") (name fb:en.joseph_a_wright "Joseph A. Wright") (name fb:en.henry_f_schricker "Henry F. Schricker") (name fb:en.winfield_t_durbin "Winfield T. Durbin") (name fb:en.mike_pence "Mike Pence") (name fb:en.harry_g_leslie "Harry G. Leslie"))) (type fb:government.politician) who is the next governor of indiana? Henry F. Schricker 17.436 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.indiana)) (value (list (name fb:en.isaac_p_gray "Isaac P. Gray") (name fb:en.noah_noble "Noah Noble") (name fb:m.0jwrdvc "Sue Ellspermann") (name fb:en.conrad_baker "Conrad Baker") (name fb:en.greg_zoeller "Greg Zoeller") (name fb:en.joseph_a_wright "Joseph A. Wright") (name fb:en.henry_f_schricker "Henry F. Schricker") (name fb:en.winfield_t_durbin "Winfield T. Durbin") (name fb:en.mike_pence "Mike Pence") (name fb:en.harry_g_leslie "Harry G. Leslie"))) (type fb:government.politician) who is the next governor of indiana? Winfield T. Durbin 17.436 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.indiana)) (value (list (name fb:en.isaac_p_gray "Isaac P. Gray") (name fb:en.noah_noble "Noah Noble") (name fb:m.0jwrdvc "Sue Ellspermann") (name fb:en.conrad_baker "Conrad Baker") (name fb:en.greg_zoeller "Greg Zoeller") (name fb:en.joseph_a_wright "Joseph A. Wright") (name fb:en.henry_f_schricker "Henry F. Schricker") (name fb:en.winfield_t_durbin "Winfield T. Durbin") (name fb:en.mike_pence "Mike Pence") (name fb:en.harry_g_leslie "Harry G. Leslie"))) (type fb:government.politician) who is the next governor of indiana? Mike Pence 17.436 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.indiana)) (value (list (name fb:en.isaac_p_gray "Isaac P. Gray") (name fb:en.noah_noble "Noah Noble") (name fb:m.0jwrdvc "Sue Ellspermann") (name fb:en.conrad_baker "Conrad Baker") (name fb:en.greg_zoeller "Greg Zoeller") (name fb:en.joseph_a_wright "Joseph A. Wright") (name fb:en.henry_f_schricker "Henry F. Schricker") (name fb:en.winfield_t_durbin "Winfield T. Durbin") (name fb:en.mike_pence "Mike Pence") (name fb:en.harry_g_leslie "Harry G. Leslie"))) (type fb:government.politician) who is the next governor of indiana? Harry G. Leslie 17.436 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.indiana)) (value (list (name fb:en.isaac_p_gray "Isaac P. Gray") (name fb:en.noah_noble "Noah Noble") (name fb:m.0jwrdvc "Sue Ellspermann") (name fb:en.conrad_baker "Conrad Baker") (name fb:en.greg_zoeller "Greg Zoeller") (name fb:en.joseph_a_wright "Joseph A. Wright") (name fb:en.henry_f_schricker "Henry F. Schricker") (name fb:en.winfield_t_durbin "Winfield T. Durbin") (name fb:en.mike_pence "Mike Pence") (name fb:en.harry_g_leslie "Harry G. Leslie"))) (type fb:government.politician) what are the important holidays of islam? Eid al-Adha 19.653 formula (and (fb:type.object.type fb:time.holiday) (!fb:religion.religion.holidays fb:en.islam))) (value (list (name fb:en.eid_ul-adha "Eid al-Adha") (name fb:en.ramadan Ramadan) (name fb:en.isra_and_miraj "Isra and Mi'raj") (name fb:en.eid_ul-fitr "Eid al-Fitr"))) (type (union fb:time.holiday)) what are the important holidays of islam? Isra and Mi'raj 19.653 formula (and (fb:type.object.type fb:time.holiday) (!fb:religion.religion.holidays fb:en.islam))) (value (list (name fb:en.eid_ul-adha "Eid al-Adha") (name fb:en.ramadan Ramadan) (name fb:en.isra_and_miraj "Isra and Mi'raj") (name fb:en.eid_ul-fitr "Eid al-Fitr"))) (type (union fb:time.holiday)) what are the important holidays of islam? Eid al-Fitr 19.653 formula (and (fb:type.object.type fb:time.holiday) (!fb:religion.religion.holidays fb:en.islam))) (value (list (name fb:en.eid_ul-adha "Eid al-Adha") (name fb:en.ramadan Ramadan) (name fb:en.isra_and_miraj "Isra and Mi'raj") (name fb:en.eid_ul-fitr "Eid al-Fitr"))) (type (union fb:time.holiday)) what type of music did claude debussy play? Classical music 13.094 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.claude_debussy))) (value (list (name fb:en.european_classical_music "Classical music") (name fb:en.art_song "Art song") (name fb:en.20th_century_classical_music "20th-century classical music") (name fb:m.021dvj Ballet) (name fb:en.incidental_music "Incidental music") (name fb:en.french_opera "French opera"))) (type (union fb:music.genre)) what type of music did claude debussy play? Art song 13.094 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.claude_debussy))) (value (list (name fb:en.european_classical_music "Classical music") (name fb:en.art_song "Art song") (name fb:en.20th_century_classical_music "20th-century classical music") (name fb:m.021dvj Ballet) (name fb:en.incidental_music "Incidental music") (name fb:en.french_opera "French opera"))) (type (union fb:music.genre)) what type of music did claude debussy play? 20th-century classical music 13.094 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.claude_debussy))) (value (list (name fb:en.european_classical_music "Classical music") (name fb:en.art_song "Art song") (name fb:en.20th_century_classical_music "20th-century classical music") (name fb:m.021dvj Ballet) (name fb:en.incidental_music "Incidental music") (name fb:en.french_opera "French opera"))) (type (union fb:music.genre)) what type of music did claude debussy play? Incidental music 13.094 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.claude_debussy))) (value (list (name fb:en.european_classical_music "Classical music") (name fb:en.art_song "Art song") (name fb:en.20th_century_classical_music "20th-century classical music") (name fb:m.021dvj Ballet) (name fb:en.incidental_music "Incidental music") (name fb:en.french_opera "French opera"))) (type (union fb:music.genre)) what type of music did claude debussy play? French opera 13.094 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.claude_debussy))) (value (list (name fb:en.european_classical_music "Classical music") (name fb:en.art_song "Art song") (name fb:en.20th_century_classical_music "20th-century classical music") (name fb:m.021dvj Ballet) (name fb:en.incidental_music "Incidental music") (name fb:en.french_opera "French opera"))) (type (union fb:music.genre)) what currency does russia use 2012? Russian ruble 20.735 formula (!fb:location.country.currency_used fb:en.russia)) (value (list (name fb:en.russian_ruble "Russian ruble"))) (type fb:finance.currency) what team is hank baskett on 2010? Philadelphia Eagles 18.055 formula (!fb:american_football.football_historical_roster_position.team (and (!fb:american_football.football_player.former_teams fb:en.hank_baskett) (fb:american_football.football_historical_roster_position.from (date 2010 -1 -1))))) (value (list (name fb:en.philadelphia_eagles "Philadelphia Eagles"))) (type fb:american_football.football_team) what are the two official languages of paraguay? Spanish Language 18.768 formula (!fb:location.country.official_language fb:en.paraguay)) (value (list (name fb:en.spanish "Spanish Language") (name fb:en.guarani_language "Paraguayan Guaraní"))) (type fb:language.human_language) what are the two official languages of paraguay? Paraguayan Guaraní 18.768 formula (!fb:location.country.official_language fb:en.paraguay)) (value (list (name fb:en.spanish "Spanish Language") (name fb:en.guarani_language "Paraguayan Guaraní"))) (type fb:language.human_language) who is hammurabi and what did he do? Milkau Oberer Teil der Stele mit dem Text von Hammurapis Gesetzescode 369-2 16.024 formula (!fb:common.topic.image fb:en.hammurabi)) (value (list (name fb:m.03rvr8q "Milkau Oberer Teil der Stele mit dem Text von Hammurapis Gesetzescode 369-2") (name fb:m.0bn4fmx "Milkau Oberer Teil der Stele mit dem Text von Hammurapis Gesetzescode 369-2"))) (type fb:common.image) who is hammurabi and what did he do? Milkau Oberer Teil der Stele mit dem Text von Hammurapis Gesetzescode 369-2 16.024 formula (!fb:common.topic.image fb:en.hammurabi)) (value (list (name fb:m.03rvr8q "Milkau Oberer Teil der Stele mit dem Text von Hammurapis Gesetzescode 369-2") (name fb:m.0bn4fmx "Milkau Oberer Teil der Stele mit dem Text von Hammurapis Gesetzescode 369-2"))) (type fb:common.image) what state is the steelers from? Entertainment Weekly annotation index 9.581 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.pittsburgh_steelers)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) what state is the steelers from? WSJ Speakeasy Index 9.581 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.pittsburgh_steelers)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) what state is the steelers from? Blissful Master Index 9.581 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.pittsburgh_steelers)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) what state is the steelers from? Blissful Celebrities 9.581 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.pittsburgh_steelers)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) what college did sir isaac newton go to? Trinity College, Cambridge 18.813 formula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.sir_newton_isaac))) (value (list (name fb:en.trinity_college_cambridge "Trinity College, Cambridge"))) (type fb:education.university) where is the university of the rockies located? Gallatin County 10.023 formula (and (fb:type.object.type fb:location.location) (!fb:location.location.containedby fb:en.museum_of_the_rockies))) (value (list (name fb:en.gallatin_county "Gallatin County") (name fb:en.59715 59715))) (type fb:location.location) what disease does robin roberts have? Breast cancer 18.021 formula (and (fb:type.object.type fb:medicine.disease) (fb:medicine.disease.notable_people_with_this_condition fb:en.robin_roberts))) (value (list (name fb:en.breast_cancer "Breast cancer") (name fb:en.myelodysplastic_syndrome "Myelodysplastic syndrome"))) (type (union fb:medicine.disease)) what disease does robin roberts have? Myelodysplastic syndrome 18.021 formula (and (fb:type.object.type fb:medicine.disease) (fb:medicine.disease.notable_people_with_this_condition fb:en.robin_roberts))) (value (list (name fb:en.breast_cancer "Breast cancer") (name fb:en.myelodysplastic_syndrome "Myelodysplastic syndrome"))) (type (union fb:medicine.disease)) who plays edward scissorhands? Johnny Depp 5.398 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:m.0gmm518)) (value (list (name fb:en.johnny_depp "Johnny Depp"))) (type fb:film.actor) what kind of language does turkey speak? Turkish Language 13.29 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.turkey))) (value (list (name fb:en.turkish_language "Turkish Language"))) (type (union fb:language.human_language)) what was lebron james first team? Miami Heat 14.184 formula ((lambda x (!fb:basketball.basketball_roster_position.team (!fb:basketball.basketball_player.team (var x)))) fb:en.lebron_james)) (value (list (name fb:en.miami_heat "Miami Heat"))) (type fb:basketball.basketball_team) who fought the battle of gettysburg? American Civil War 8.507 formula (and (fb:type.object.type fb:military.military_conflict) (fb:time.event.includes_event fb:en.battle_of_gettysburg))) (value (list (name fb:en.american_civil_war "American Civil War") (name fb:en.gettysburg_campaign "Gettysburg Campaign"))) (type (union fb:military.military_conflict)) who fought the battle of gettysburg? Gettysburg Campaign 8.507 formula (and (fb:type.object.type fb:military.military_conflict) (fb:time.event.includes_event fb:en.battle_of_gettysburg))) (value (list (name fb:en.american_civil_war "American Civil War") (name fb:en.gettysburg_campaign "Gettysburg Campaign"))) (type (union fb:military.military_conflict)) who is the coach of the sf giants? Tom Coughlin 9.005 formula (and (fb:people.person.profession fb:en.coach) (!fb:american_football.football_team.current_head_coach fb:en.new_york_giants))) (value (list (name fb:en.tom_coughlin "Tom Coughlin"))) (type fb:american_football.football_coach) which university did michael bay graduated from? Art Center College of Design 11.321 formula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.michael_bay))) (value (list (name fb:en.art_center_college_of_design "Art Center College of Design") (name fb:en.wesleyan_university "Wesleyan University"))) (type fb:education.university) which university did michael bay graduated from? Wesleyan University 11.321 formula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.michael_bay))) (value (list (name fb:en.art_center_college_of_design "Art Center College of Design") (name fb:en.wesleyan_university "Wesleyan University"))) (type fb:education.university) what did queen victoria say about the suffragettes? Statue of Queen Victoria 10.74 formula (fb:visual_art.artwork.art_subject fb:en.victoria_of_the_united_kingdom)) (value (list (name fb:en.statue_of_queen_victoria "Statue of Queen Victoria"))) (type fb:visual_art.artwork) what is st anthony patron saint of? Patron of Prisoners.jpg 7.412 formula (fb:common.image.image_tags fb:en.patron_saint)) (value (list (name fb:m.0cjc_cz PatronSaint.jpg) (name fb:m.0cj3yn0 "Patron of Prisoners.jpg") (name fb:m.0cj0tnt "Patron of Prisoners.jpg") (name fb:m.0cj0qny "Patron of Prisoners.jpg") (name fb:m.0cj7kts PatronSaint.jpg))) (type fb:common.image) what is st anthony patron saint of? Patron of Prisoners.jpg 7.412 formula (fb:common.image.image_tags fb:en.patron_saint)) (value (list (name fb:m.0cjc_cz PatronSaint.jpg) (name fb:m.0cj3yn0 "Patron of Prisoners.jpg") (name fb:m.0cj0tnt "Patron of Prisoners.jpg") (name fb:m.0cj0qny "Patron of Prisoners.jpg") (name fb:m.0cj7kts PatronSaint.jpg))) (type fb:common.image) what is st anthony patron saint of? Patron of Prisoners.jpg 7.412 formula (fb:common.image.image_tags fb:en.patron_saint)) (value (list (name fb:m.0cjc_cz PatronSaint.jpg) (name fb:m.0cj3yn0 "Patron of Prisoners.jpg") (name fb:m.0cj0tnt "Patron of Prisoners.jpg") (name fb:m.0cj0qny "Patron of Prisoners.jpg") (name fb:m.0cj7kts PatronSaint.jpg))) (type fb:common.image) who does brian dawkins play for 2011? Philadelphia Eagles 13.298 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.brian_dawkins)) (value (list (name fb:en.philadelphia_eagles "Philadelphia Eagles") (name fb:en.denver_broncos "Denver Broncos") (name fb:en.clemson_tigers_football "Clemson Tigers football"))) (type fb:sports.sports_team) who does brian dawkins play for 2011? Denver Broncos 13.298 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.brian_dawkins)) (value (list (name fb:en.philadelphia_eagles "Philadelphia Eagles") (name fb:en.denver_broncos "Denver Broncos") (name fb:en.clemson_tigers_football "Clemson Tigers football"))) (type fb:sports.sports_team) who does brian dawkins play for 2011? Clemson Tigers football 13.298 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.brian_dawkins)) (value (list (name fb:en.philadelphia_eagles "Philadelphia Eagles") (name fb:en.denver_broncos "Denver Broncos") (name fb:en.clemson_tigers_football "Clemson Tigers football"))) (type fb:sports.sports_team) what movies did tupac star in? California Love (album version) 8.938 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.tupac_shakur))) (value (list (name fb:m.0dr6vz_ "California Love (album version)") (name fb:m.0mv8gvb "California Love") (name fb:m.0167psb Changes) (name fb:en.all_eyez_on_me_disc_2_book_2 "All Eyez on Me") (name fb:en.me_against_the_world "Me Against the World") (name fb:m.0m0q4kd Changes) (name fb:m.0txjj3 "How Do U Want It") (name fb:m.0zhg5s "Dear Mama") (name fb:m.0mw77b3 "Thugz Mansion"))) (type fb:award.award_nominated_work) what movies did tupac star in? California Love 8.938 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.tupac_shakur))) (value (list (name fb:m.0dr6vz_ "California Love (album version)") (name fb:m.0mv8gvb "California Love") (name fb:m.0167psb Changes) (name fb:en.all_eyez_on_me_disc_2_book_2 "All Eyez on Me") (name fb:en.me_against_the_world "Me Against the World") (name fb:m.0m0q4kd Changes) (name fb:m.0txjj3 "How Do U Want It") (name fb:m.0zhg5s "Dear Mama") (name fb:m.0mw77b3 "Thugz Mansion"))) (type fb:award.award_nominated_work) what movies did tupac star in? All Eyez on Me 8.938 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.tupac_shakur))) (value (list (name fb:m.0dr6vz_ "California Love (album version)") (name fb:m.0mv8gvb "California Love") (name fb:m.0167psb Changes) (name fb:en.all_eyez_on_me_disc_2_book_2 "All Eyez on Me") (name fb:en.me_against_the_world "Me Against the World") (name fb:m.0m0q4kd Changes) (name fb:m.0txjj3 "How Do U Want It") (name fb:m.0zhg5s "Dear Mama") (name fb:m.0mw77b3 "Thugz Mansion"))) (type fb:award.award_nominated_work) what movies did tupac star in? Me Against the World 8.938 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.tupac_shakur))) (value (list (name fb:m.0dr6vz_ "California Love (album version)") (name fb:m.0mv8gvb "California Love") (name fb:m.0167psb Changes) (name fb:en.all_eyez_on_me_disc_2_book_2 "All Eyez on Me") (name fb:en.me_against_the_world "Me Against the World") (name fb:m.0m0q4kd Changes) (name fb:m.0txjj3 "How Do U Want It") (name fb:m.0zhg5s "Dear Mama") (name fb:m.0mw77b3 "Thugz Mansion"))) (type fb:award.award_nominated_work) what movies did tupac star in? How Do U Want It 8.938 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.tupac_shakur))) (value (list (name fb:m.0dr6vz_ "California Love (album version)") (name fb:m.0mv8gvb "California Love") (name fb:m.0167psb Changes) (name fb:en.all_eyez_on_me_disc_2_book_2 "All Eyez on Me") (name fb:en.me_against_the_world "Me Against the World") (name fb:m.0m0q4kd Changes) (name fb:m.0txjj3 "How Do U Want It") (name fb:m.0zhg5s "Dear Mama") (name fb:m.0mw77b3 "Thugz Mansion"))) (type fb:award.award_nominated_work) what movies did tupac star in? Dear Mama 8.938 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.tupac_shakur))) (value (list (name fb:m.0dr6vz_ "California Love (album version)") (name fb:m.0mv8gvb "California Love") (name fb:m.0167psb Changes) (name fb:en.all_eyez_on_me_disc_2_book_2 "All Eyez on Me") (name fb:en.me_against_the_world "Me Against the World") (name fb:m.0m0q4kd Changes) (name fb:m.0txjj3 "How Do U Want It") (name fb:m.0zhg5s "Dear Mama") (name fb:m.0mw77b3 "Thugz Mansion"))) (type fb:award.award_nominated_work) what movies did tupac star in? Thugz Mansion 8.938 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.tupac_shakur))) (value (list (name fb:m.0dr6vz_ "California Love (album version)") (name fb:m.0mv8gvb "California Love") (name fb:m.0167psb Changes) (name fb:en.all_eyez_on_me_disc_2_book_2 "All Eyez on Me") (name fb:en.me_against_the_world "Me Against the World") (name fb:m.0m0q4kd Changes) (name fb:m.0txjj3 "How Do U Want It") (name fb:m.0zhg5s "Dear Mama") (name fb:m.0mw77b3 "Thugz Mansion"))) (type fb:award.award_nominated_work) who plays kenneth? Malcolm Barrett 5.398 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:m.09_w7pn)) (value (list (name fb:en.malcolm_barrett "Malcolm Barrett"))) (type fb:film.actor) what league are the indianapolis colts in? AFC South 14.454 formula (and (fb:type.object.type fb:sports.sports_league) ((lambda x (!fb:sports.sports_league_participation.league (!fb:sports.sports_team.league (var x)))) fb:en.indianapolis_colts))) (value (list (name fb:en.afc_south "AFC South") (name fb:en.american_football_conference "American Football Conference") (name fb:en.national_football_league "National Football League"))) (type (union fb:sports.sports_league)) what league are the indianapolis colts in? American Football Conference 14.454 formula (and (fb:type.object.type fb:sports.sports_league) ((lambda x (!fb:sports.sports_league_participation.league (!fb:sports.sports_team.league (var x)))) fb:en.indianapolis_colts))) (value (list (name fb:en.afc_south "AFC South") (name fb:en.american_football_conference "American Football Conference") (name fb:en.national_football_league "National Football League"))) (type (union fb:sports.sports_league)) what league are the indianapolis colts in? National Football League 14.454 formula (and (fb:type.object.type fb:sports.sports_league) ((lambda x (!fb:sports.sports_league_participation.league (!fb:sports.sports_team.league (var x)))) fb:en.indianapolis_colts))) (value (list (name fb:en.afc_south "AFC South") (name fb:en.american_football_conference "American Football Conference") (name fb:en.national_football_league "National Football League"))) (type (union fb:sports.sports_league)) what country did magellan represent? Kingdom of Portugal 15.173 formula (and (fb:type.object.type fb:location.country) (!fb:people.person.nationality fb:en.ferdinand_magellan))) (value (list (name fb:en.portugal Portugal) (name fb:en.kingdom_of_portugal "Kingdom of Portugal"))) (type (union fb:location.country)) who did kim richards marry? John Jackson 11.392 formula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.kim_richards)) (value (list (name fb:m.0kv3rtr "John Jackson") (name fb:m.0mtnbfr "Gregg Davis") (name fb:en.g_monty_brinson "G. Monty Brinson"))) (type fb:people.person) who did kim richards marry? Gregg Davis 11.392 formula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.kim_richards)) (value (list (name fb:m.0kv3rtr "John Jackson") (name fb:m.0mtnbfr "Gregg Davis") (name fb:en.g_monty_brinson "G. Monty Brinson"))) (type fb:people.person) who did kim richards marry? G. Monty Brinson 11.392 formula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.kim_richards)) (value (list (name fb:m.0kv3rtr "John Jackson") (name fb:m.0mtnbfr "Gregg Davis") (name fb:en.g_monty_brinson "G. Monty Brinson"))) (type fb:people.person) when's the last time the steelers won the superbowl? Super Bowl XIII 16.629 formula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.pittsburgh_steelers))) (value (list (name fb:en.super_bowl_xiii "Super Bowl XIII") (name fb:en.super_bowl_xl "Super Bowl XL") (name fb:en.super_bowl_xliii "Super Bowl XLIII") (name fb:en.super_bowl_x "Super Bowl X") (name fb:en.super_bowl_xiv "Super Bowl XIV") (name fb:en.super_bowl_ix "Super Bowl IX"))) (type fb:sports.sports_championship_event) when's the last time the steelers won the superbowl? Super Bowl XL 16.629 formula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.pittsburgh_steelers))) (value (list (name fb:en.super_bowl_xiii "Super Bowl XIII") (name fb:en.super_bowl_xl "Super Bowl XL") (name fb:en.super_bowl_xliii "Super Bowl XLIII") (name fb:en.super_bowl_x "Super Bowl X") (name fb:en.super_bowl_xiv "Super Bowl XIV") (name fb:en.super_bowl_ix "Super Bowl IX"))) (type fb:sports.sports_championship_event) when's the last time the steelers won the superbowl? Super Bowl XLIII 16.629 formula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.pittsburgh_steelers))) (value (list (name fb:en.super_bowl_xiii "Super Bowl XIII") (name fb:en.super_bowl_xl "Super Bowl XL") (name fb:en.super_bowl_xliii "Super Bowl XLIII") (name fb:en.super_bowl_x "Super Bowl X") (name fb:en.super_bowl_xiv "Super Bowl XIV") (name fb:en.super_bowl_ix "Super Bowl IX"))) (type fb:sports.sports_championship_event) when's the last time the steelers won the superbowl? Super Bowl X 16.629 formula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.pittsburgh_steelers))) (value (list (name fb:en.super_bowl_xiii "Super Bowl XIII") (name fb:en.super_bowl_xl "Super Bowl XL") (name fb:en.super_bowl_xliii "Super Bowl XLIII") (name fb:en.super_bowl_x "Super Bowl X") (name fb:en.super_bowl_xiv "Super Bowl XIV") (name fb:en.super_bowl_ix "Super Bowl IX"))) (type fb:sports.sports_championship_event) when's the last time the steelers won the superbowl? Super Bowl XIV 16.629 formula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.pittsburgh_steelers))) (value (list (name fb:en.super_bowl_xiii "Super Bowl XIII") (name fb:en.super_bowl_xl "Super Bowl XL") (name fb:en.super_bowl_xliii "Super Bowl XLIII") (name fb:en.super_bowl_x "Super Bowl X") (name fb:en.super_bowl_xiv "Super Bowl XIV") (name fb:en.super_bowl_ix "Super Bowl IX"))) (type fb:sports.sports_championship_event) when's the last time the steelers won the superbowl? Super Bowl IX 16.629 formula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.pittsburgh_steelers))) (value (list (name fb:en.super_bowl_xiii "Super Bowl XIII") (name fb:en.super_bowl_xl "Super Bowl XL") (name fb:en.super_bowl_xliii "Super Bowl XLIII") (name fb:en.super_bowl_x "Super Bowl X") (name fb:en.super_bowl_xiv "Super Bowl XIV") (name fb:en.super_bowl_ix "Super Bowl IX"))) (type fb:sports.sports_championship_event) where english is spoken? United Kingdom 17.022 formula (and (fb:type.object.type fb:location.location) (!fb:language.human_language.countries_spoken_in fb:en.english))) (value (list (name fb:en.india India) (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.wales Wales) (name fb:en.japan Japan) (name fb:en.england England) (name fb:en.canada Canada) (name fb:en.south_africa "South Africa") (name fb:en.scotland Scotland) (name fb:en.philippines Philippines) (name fb:en.australia Australia))) (type fb:location.country) where english is spoken? South Africa 17.022 formula (and (fb:type.object.type fb:location.location) (!fb:language.human_language.countries_spoken_in fb:en.english))) (value (list (name fb:en.india India) (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.wales Wales) (name fb:en.japan Japan) (name fb:en.england England) (name fb:en.canada Canada) (name fb:en.south_africa "South Africa") (name fb:en.scotland Scotland) (name fb:en.philippines Philippines) (name fb:en.australia Australia))) (type fb:location.country) where is giza pyramids located? Danny Hillis on top of the Great Pyramid 4.01 formula (fb:common.image.image_tags fb:en.great_pyramid_of_giza)) (value (list (name fb:m.02xlrth "Danny Hillis on top of the Great Pyramid"))) (type fb:common.image) what language does australians speak? English Language 12.676 formula (and (fb:type.object.type fb:language.human_language) (!fb:people.ethnicity.languages_spoken fb:en.australian_people))) (value (list (name fb:en.english "English Language") (name fb:en.italian "Italian Language") (name fb:en.chinese_language "Chinese language") (name fb:en.greek_language "Greek Language"))) (type fb:language.human_language) what language does australians speak? Italian Language 12.676 formula (and (fb:type.object.type fb:language.human_language) (!fb:people.ethnicity.languages_spoken fb:en.australian_people))) (value (list (name fb:en.english "English Language") (name fb:en.italian "Italian Language") (name fb:en.chinese_language "Chinese language") (name fb:en.greek_language "Greek Language"))) (type fb:language.human_language) what language does australians speak? Chinese language 12.676 formula (and (fb:type.object.type fb:language.human_language) (!fb:people.ethnicity.languages_spoken fb:en.australian_people))) (value (list (name fb:en.english "English Language") (name fb:en.italian "Italian Language") (name fb:en.chinese_language "Chinese language") (name fb:en.greek_language "Greek Language"))) (type fb:language.human_language) what language does australians speak? Greek Language 12.676 formula (and (fb:type.object.type fb:language.human_language) (!fb:people.ethnicity.languages_spoken fb:en.australian_people))) (value (list (name fb:en.english "English Language") (name fb:en.italian "Italian Language") (name fb:en.chinese_language "Chinese language") (name fb:en.greek_language "Greek Language"))) (type fb:language.human_language) who did annie oakley married? Frank E. Butler 9.295 formula ((lambda x (!fb:people.marriage.spouse (!fb:people.person.spouse_s (var x)))) fb:en.annie_oakley)) (value (list (name fb:en.frank_e_butler "Frank E. Butler"))) (type fb:people.person) who has played lex luthor? Clancy Brown 13.201 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.lex_luthor)) (value (list (name fb:en.clancy_brown "Clancy Brown") (name fb:en.gene_hackman "Gene Hackman") (name fb:en.powers_boothe "Powers Boothe") (name fb:en.anthony_lapaglia "Anthony LaPaglia") (name fb:en.kevin_spacey "Kevin Spacey") (name fb:en.james_marsters "James Marsters") (name fb:en.chris_noth "Chris Noth"))) (type fb:film.actor) who has played lex luthor? Gene Hackman 13.201 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.lex_luthor)) (value (list (name fb:en.clancy_brown "Clancy Brown") (name fb:en.gene_hackman "Gene Hackman") (name fb:en.powers_boothe "Powers Boothe") (name fb:en.anthony_lapaglia "Anthony LaPaglia") (name fb:en.kevin_spacey "Kevin Spacey") (name fb:en.james_marsters "James Marsters") (name fb:en.chris_noth "Chris Noth"))) (type fb:film.actor) who has played lex luthor? Powers Boothe 13.201 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.lex_luthor)) (value (list (name fb:en.clancy_brown "Clancy Brown") (name fb:en.gene_hackman "Gene Hackman") (name fb:en.powers_boothe "Powers Boothe") (name fb:en.anthony_lapaglia "Anthony LaPaglia") (name fb:en.kevin_spacey "Kevin Spacey") (name fb:en.james_marsters "James Marsters") (name fb:en.chris_noth "Chris Noth"))) (type fb:film.actor) who has played lex luthor? Anthony LaPaglia 13.201 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.lex_luthor)) (value (list (name fb:en.clancy_brown "Clancy Brown") (name fb:en.gene_hackman "Gene Hackman") (name fb:en.powers_boothe "Powers Boothe") (name fb:en.anthony_lapaglia "Anthony LaPaglia") (name fb:en.kevin_spacey "Kevin Spacey") (name fb:en.james_marsters "James Marsters") (name fb:en.chris_noth "Chris Noth"))) (type fb:film.actor) who has played lex luthor? Kevin Spacey 13.201 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.lex_luthor)) (value (list (name fb:en.clancy_brown "Clancy Brown") (name fb:en.gene_hackman "Gene Hackman") (name fb:en.powers_boothe "Powers Boothe") (name fb:en.anthony_lapaglia "Anthony LaPaglia") (name fb:en.kevin_spacey "Kevin Spacey") (name fb:en.james_marsters "James Marsters") (name fb:en.chris_noth "Chris Noth"))) (type fb:film.actor) who has played lex luthor? James Marsters 13.201 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.lex_luthor)) (value (list (name fb:en.clancy_brown "Clancy Brown") (name fb:en.gene_hackman "Gene Hackman") (name fb:en.powers_boothe "Powers Boothe") (name fb:en.anthony_lapaglia "Anthony LaPaglia") (name fb:en.kevin_spacey "Kevin Spacey") (name fb:en.james_marsters "James Marsters") (name fb:en.chris_noth "Chris Noth"))) (type fb:film.actor) who has played lex luthor? Chris Noth 13.201 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.lex_luthor)) (value (list (name fb:en.clancy_brown "Clancy Brown") (name fb:en.gene_hackman "Gene Hackman") (name fb:en.powers_boothe "Powers Boothe") (name fb:en.anthony_lapaglia "Anthony LaPaglia") (name fb:en.kevin_spacey "Kevin Spacey") (name fb:en.james_marsters "James Marsters") (name fb:en.chris_noth "Chris Noth"))) (type fb:film.actor) where does the zambezi river start? Indian Ocean 2.73 formula (and (fb:type.object.type fb:location.location) (!fb:geography.river.mouth fb:en.zambezi))) (value (list (name fb:en.indian_ocean "Indian Ocean"))) (type fb:location.location) where will tebow go in 2013? Puerto Rico 7.197 formula (and (fb:type.object.type fb:location.location) ((lambda x (fb:government.governmental_jurisdiction.governing_officials (fb:government.government_position_held.from (var x)))) (date 2013 -1 -1)))) (value (list (name fb:en.arizona Arizona) (name fb:en.stuttgart Stuttgart) (name fb:en.puerto_rico "Puerto Rico") (name fb:en.american_samoa "American Samoa") (name fb:en.ningxia Ningxia) (name fb:en.south_korea "South Korea") (name fb:en.central_african_republic "Central African Republic") (name fb:en.sao_paulo "São Paulo") (name fb:en.west_virginia "West Virginia") (name fb:en.victoria Victoria))) (type fb:government.governmental_jurisdiction) where will tebow go in 2013? American Samoa 7.197 formula (and (fb:type.object.type fb:location.location) ((lambda x (fb:government.governmental_jurisdiction.governing_officials (fb:government.government_position_held.from (var x)))) (date 2013 -1 -1)))) (value (list (name fb:en.arizona Arizona) (name fb:en.stuttgart Stuttgart) (name fb:en.puerto_rico "Puerto Rico") (name fb:en.american_samoa "American Samoa") (name fb:en.ningxia Ningxia) (name fb:en.south_korea "South Korea") (name fb:en.central_african_republic "Central African Republic") (name fb:en.sao_paulo "São Paulo") (name fb:en.west_virginia "West Virginia") (name fb:en.victoria Victoria))) (type fb:government.governmental_jurisdiction) where will tebow go in 2013? South Korea 7.197 formula (and (fb:type.object.type fb:location.location) ((lambda x (fb:government.governmental_jurisdiction.governing_officials (fb:government.government_position_held.from (var x)))) (date 2013 -1 -1)))) (value (list (name fb:en.arizona Arizona) (name fb:en.stuttgart Stuttgart) (name fb:en.puerto_rico "Puerto Rico") (name fb:en.american_samoa "American Samoa") (name fb:en.ningxia Ningxia) (name fb:en.south_korea "South Korea") (name fb:en.central_african_republic "Central African Republic") (name fb:en.sao_paulo "São Paulo") (name fb:en.west_virginia "West Virginia") (name fb:en.victoria Victoria))) (type fb:government.governmental_jurisdiction) where will tebow go in 2013? Central African Republic 7.197 formula (and (fb:type.object.type fb:location.location) ((lambda x (fb:government.governmental_jurisdiction.governing_officials (fb:government.government_position_held.from (var x)))) (date 2013 -1 -1)))) (value (list (name fb:en.arizona Arizona) (name fb:en.stuttgart Stuttgart) (name fb:en.puerto_rico "Puerto Rico") (name fb:en.american_samoa "American Samoa") (name fb:en.ningxia Ningxia) (name fb:en.south_korea "South Korea") (name fb:en.central_african_republic "Central African Republic") (name fb:en.sao_paulo "São Paulo") (name fb:en.west_virginia "West Virginia") (name fb:en.victoria Victoria))) (type fb:government.governmental_jurisdiction) where will tebow go in 2013? São Paulo 7.197 formula (and (fb:type.object.type fb:location.location) ((lambda x (fb:government.governmental_jurisdiction.governing_officials (fb:government.government_position_held.from (var x)))) (date 2013 -1 -1)))) (value (list (name fb:en.arizona Arizona) (name fb:en.stuttgart Stuttgart) (name fb:en.puerto_rico "Puerto Rico") (name fb:en.american_samoa "American Samoa") (name fb:en.ningxia Ningxia) (name fb:en.south_korea "South Korea") (name fb:en.central_african_republic "Central African Republic") (name fb:en.sao_paulo "São Paulo") (name fb:en.west_virginia "West Virginia") (name fb:en.victoria Victoria))) (type fb:government.governmental_jurisdiction) where will tebow go in 2013? West Virginia 7.197 formula (and (fb:type.object.type fb:location.location) ((lambda x (fb:government.governmental_jurisdiction.governing_officials (fb:government.government_position_held.from (var x)))) (date 2013 -1 -1)))) (value (list (name fb:en.arizona Arizona) (name fb:en.stuttgart Stuttgart) (name fb:en.puerto_rico "Puerto Rico") (name fb:en.american_samoa "American Samoa") (name fb:en.ningxia Ningxia) (name fb:en.south_korea "South Korea") (name fb:en.central_african_republic "Central African Republic") (name fb:en.sao_paulo "São Paulo") (name fb:en.west_virginia "West Virginia") (name fb:en.victoria Victoria))) (type fb:government.governmental_jurisdiction) what is the nigeria time? West Africa Time 10.269 formula (!fb:location.location.time_zones fb:en.nigeria)) (value (list (name fb:en.utcplus1 UTC+01:00) (name fb:en.west_africa_time "West Africa Time"))) (type fb:time.time_zone) where did they find jenni rivera's body? United States of America 5.268 formula (and (fb:type.object.type fb:location.location) (!fb:people.person.nationality fb:en.jenny_rivera))) (value (list (name fb:en.united_states_of_america "United States of America"))) (type fb:location.country) what university did romney graduated from? Brigham Young University 13.976 formula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.ann_romney_1949))) (value (list (name fb:en.brigham_young_university "Brigham Young University") (name fb:en.harvard_extension_school "Harvard Extension School"))) (type fb:education.university) what university did romney graduated from? Harvard Extension School 13.976 formula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.ann_romney_1949))) (value (list (name fb:en.brigham_young_university "Brigham Young University") (name fb:en.harvard_extension_school "Harvard Extension School"))) (type fb:education.university) where is the time zone line in south dakota? Central Time Zone 14.752 formula (and (fb:type.object.type fb:time.time_zone) (fb:time.time_zone.locations_in_this_time_zone fb:en.south_dakota))) (value (list (name fb:en.central_time_zone "Central Time Zone") (name fb:en.mountain_time_zone "Mountain Time Zone") (name fb:en.utc-7 UTC−07:00) (name fb:en.utc-6 UTC−06:00))) (type (union fb:time.time_zone)) where is the time zone line in south dakota? Mountain Time Zone 14.752 formula (and (fb:type.object.type fb:time.time_zone) (fb:time.time_zone.locations_in_this_time_zone fb:en.south_dakota))) (value (list (name fb:en.central_time_zone "Central Time Zone") (name fb:en.mountain_time_zone "Mountain Time Zone") (name fb:en.utc-7 UTC−07:00) (name fb:en.utc-6 UTC−06:00))) (type (union fb:time.time_zone)) what killed john bonham? Inhalation of vomit 6.852 formula (!fb:people.deceased_person.cause_of_death fb:en.john_bonham)) (value (list (name fb:en.inhalation_of_vomit "Inhalation of vomit"))) (type fb:people.cause_of_death) what industry does walmart operate in? Department Stores 15.174 formula (and (fb:type.object.type fb:business.industry) (fb:business.industry.companies fb:en.wal-mart))) (value (list (name fb:en.retailing Retail) (name fb:en.department_stores "Department Stores") (name fb:en.variety_stores "Variety Stores"))) (type (union fb:business.industry)) what industry does walmart operate in? Variety Stores 15.174 formula (and (fb:type.object.type fb:business.industry) (fb:business.industry.companies fb:en.wal-mart))) (value (list (name fb:en.retailing Retail) (name fb:en.department_stores "Department Stores") (name fb:en.variety_stores "Variety Stores"))) (type (union fb:business.industry)) what county is texarkana arkansas in? United States of America 8.234 formula (and (fb:type.object.type fb:location.administrative_division) (fb:location.location.contains fb:en.arkansas))) (value (list (name fb:en.united_states_of_america "United States of America") (name fb:m.0hzc9m5 "United States, with Territories"))) (type (union fb:location.administrative_division)) what county is texarkana arkansas in? United States, with Territories 8.234 formula (and (fb:type.object.type fb:location.administrative_division) (fb:location.location.contains fb:en.arkansas))) (value (list (name fb:en.united_states_of_america "United States of America") (name fb:m.0hzc9m5 "United States, with Territories"))) (type (union fb:location.administrative_division)) what team was chris paul on? Los Angeles Clippers 15.551 formula ((lambda x (!fb:basketball.basketball_roster_position.team (!fb:basketball.basketball_player.team (var x)))) fb:en.chris_paul)) (value (list (name fb:en.los_angeles_clippers "Los Angeles Clippers"))) (type fb:basketball.basketball_team) what music period did beethoven live in? Classical music 13.682 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.ludwig_van_beethoven))) (value (list (name fb:en.european_classical_music "Classical music") (name fb:m.05lls Opera))) (type (union fb:music.genre)) what did laura ingalls wilder wrote? Little Town on the Prairie 8.816 formula (!fb:book.author.works_written fb:en.laura_ingalls_wilder)) (value (list (name fb:en.little_town_on_the_prairie "Little Town on the Prairie") (name fb:en.on_the_way_home "On the Way Home") (name fb:m.0j3zd0c "Little House on the Prairie") (name fb:en.little_house_in_the_big_woods "Little House in the Big Woods") (name fb:m.06_tw6s "A Little House Traveler") (name fb:en.these_happy_golden_years "These Happy Golden Years") (name fb:en.west_from_home "West from Home") (name fb:en.farmer_boy "Farmer Boy") (name fb:en.on_the_banks_of_plum_creek "On the Banks of Plum Creek") (name fb:m.02q8085 "The First Four Years"))) (type fb:book.written_work) what did laura ingalls wilder wrote? On the Way Home 8.816 formula (!fb:book.author.works_written fb:en.laura_ingalls_wilder)) (value (list (name fb:en.little_town_on_the_prairie "Little Town on the Prairie") (name fb:en.on_the_way_home "On the Way Home") (name fb:m.0j3zd0c "Little House on the Prairie") (name fb:en.little_house_in_the_big_woods "Little House in the Big Woods") (name fb:m.06_tw6s "A Little House Traveler") (name fb:en.these_happy_golden_years "These Happy Golden Years") (name fb:en.west_from_home "West from Home") (name fb:en.farmer_boy "Farmer Boy") (name fb:en.on_the_banks_of_plum_creek "On the Banks of Plum Creek") (name fb:m.02q8085 "The First Four Years"))) (type fb:book.written_work) what did laura ingalls wilder wrote? Little House on the Prairie 8.816 formula (!fb:book.author.works_written fb:en.laura_ingalls_wilder)) (value (list (name fb:en.little_town_on_the_prairie "Little Town on the Prairie") (name fb:en.on_the_way_home "On the Way Home") (name fb:m.0j3zd0c "Little House on the Prairie") (name fb:en.little_house_in_the_big_woods "Little House in the Big Woods") (name fb:m.06_tw6s "A Little House Traveler") (name fb:en.these_happy_golden_years "These Happy Golden Years") (name fb:en.west_from_home "West from Home") (name fb:en.farmer_boy "Farmer Boy") (name fb:en.on_the_banks_of_plum_creek "On the Banks of Plum Creek") (name fb:m.02q8085 "The First Four Years"))) (type fb:book.written_work) what did laura ingalls wilder wrote? Little House in the Big Woods 8.816 formula (!fb:book.author.works_written fb:en.laura_ingalls_wilder)) (value (list (name fb:en.little_town_on_the_prairie "Little Town on the Prairie") (name fb:en.on_the_way_home "On the Way Home") (name fb:m.0j3zd0c "Little House on the Prairie") (name fb:en.little_house_in_the_big_woods "Little House in the Big Woods") (name fb:m.06_tw6s "A Little House Traveler") (name fb:en.these_happy_golden_years "These Happy Golden Years") (name fb:en.west_from_home "West from Home") (name fb:en.farmer_boy "Farmer Boy") (name fb:en.on_the_banks_of_plum_creek "On the Banks of Plum Creek") (name fb:m.02q8085 "The First Four Years"))) (type fb:book.written_work) what did laura ingalls wilder wrote? A Little House Traveler 8.816 formula (!fb:book.author.works_written fb:en.laura_ingalls_wilder)) (value (list (name fb:en.little_town_on_the_prairie "Little Town on the Prairie") (name fb:en.on_the_way_home "On the Way Home") (name fb:m.0j3zd0c "Little House on the Prairie") (name fb:en.little_house_in_the_big_woods "Little House in the Big Woods") (name fb:m.06_tw6s "A Little House Traveler") (name fb:en.these_happy_golden_years "These Happy Golden Years") (name fb:en.west_from_home "West from Home") (name fb:en.farmer_boy "Farmer Boy") (name fb:en.on_the_banks_of_plum_creek "On the Banks of Plum Creek") (name fb:m.02q8085 "The First Four Years"))) (type fb:book.written_work) what did laura ingalls wilder wrote? These Happy Golden Years 8.816 formula (!fb:book.author.works_written fb:en.laura_ingalls_wilder)) (value (list (name fb:en.little_town_on_the_prairie "Little Town on the Prairie") (name fb:en.on_the_way_home "On the Way Home") (name fb:m.0j3zd0c "Little House on the Prairie") (name fb:en.little_house_in_the_big_woods "Little House in the Big Woods") (name fb:m.06_tw6s "A Little House Traveler") (name fb:en.these_happy_golden_years "These Happy Golden Years") (name fb:en.west_from_home "West from Home") (name fb:en.farmer_boy "Farmer Boy") (name fb:en.on_the_banks_of_plum_creek "On the Banks of Plum Creek") (name fb:m.02q8085 "The First Four Years"))) (type fb:book.written_work) what did laura ingalls wilder wrote? West from Home 8.816 formula (!fb:book.author.works_written fb:en.laura_ingalls_wilder)) (value (list (name fb:en.little_town_on_the_prairie "Little Town on the Prairie") (name fb:en.on_the_way_home "On the Way Home") (name fb:m.0j3zd0c "Little House on the Prairie") (name fb:en.little_house_in_the_big_woods "Little House in the Big Woods") (name fb:m.06_tw6s "A Little House Traveler") (name fb:en.these_happy_golden_years "These Happy Golden Years") (name fb:en.west_from_home "West from Home") (name fb:en.farmer_boy "Farmer Boy") (name fb:en.on_the_banks_of_plum_creek "On the Banks of Plum Creek") (name fb:m.02q8085 "The First Four Years"))) (type fb:book.written_work) what did laura ingalls wilder wrote? Farmer Boy 8.816 formula (!fb:book.author.works_written fb:en.laura_ingalls_wilder)) (value (list (name fb:en.little_town_on_the_prairie "Little Town on the Prairie") (name fb:en.on_the_way_home "On the Way Home") (name fb:m.0j3zd0c "Little House on the Prairie") (name fb:en.little_house_in_the_big_woods "Little House in the Big Woods") (name fb:m.06_tw6s "A Little House Traveler") (name fb:en.these_happy_golden_years "These Happy Golden Years") (name fb:en.west_from_home "West from Home") (name fb:en.farmer_boy "Farmer Boy") (name fb:en.on_the_banks_of_plum_creek "On the Banks of Plum Creek") (name fb:m.02q8085 "The First Four Years"))) (type fb:book.written_work) what did laura ingalls wilder wrote? On the Banks of Plum Creek 8.816 formula (!fb:book.author.works_written fb:en.laura_ingalls_wilder)) (value (list (name fb:en.little_town_on_the_prairie "Little Town on the Prairie") (name fb:en.on_the_way_home "On the Way Home") (name fb:m.0j3zd0c "Little House on the Prairie") (name fb:en.little_house_in_the_big_woods "Little House in the Big Woods") (name fb:m.06_tw6s "A Little House Traveler") (name fb:en.these_happy_golden_years "These Happy Golden Years") (name fb:en.west_from_home "West from Home") (name fb:en.farmer_boy "Farmer Boy") (name fb:en.on_the_banks_of_plum_creek "On the Banks of Plum Creek") (name fb:m.02q8085 "The First Four Years"))) (type fb:book.written_work) what did laura ingalls wilder wrote? The First Four Years 8.816 formula (!fb:book.author.works_written fb:en.laura_ingalls_wilder)) (value (list (name fb:en.little_town_on_the_prairie "Little Town on the Prairie") (name fb:en.on_the_way_home "On the Way Home") (name fb:m.0j3zd0c "Little House on the Prairie") (name fb:en.little_house_in_the_big_woods "Little House in the Big Woods") (name fb:m.06_tw6s "A Little House Traveler") (name fb:en.these_happy_golden_years "These Happy Golden Years") (name fb:en.west_from_home "West from Home") (name fb:en.farmer_boy "Farmer Boy") (name fb:en.on_the_banks_of_plum_creek "On the Banks of Plum Creek") (name fb:m.02q8085 "The First Four Years"))) (type fb:book.written_work) what type of government system does italy have? Parliamentary republic 9.143 formula (fb:government.form_of_government.countries fb:en.italy)) (value (list (name fb:en.parliamentary_republic "Parliamentary republic") (name fb:en.constitutional_republic "Constitutional republic") (name fb:m.0v265vn "Unitary republic"))) (type fb:government.form_of_government) what type of government system does italy have? Constitutional republic 9.143 formula (fb:government.form_of_government.countries fb:en.italy)) (value (list (name fb:en.parliamentary_republic "Parliamentary republic") (name fb:en.constitutional_republic "Constitutional republic") (name fb:m.0v265vn "Unitary republic"))) (type fb:government.form_of_government) what type of government system does italy have? Unitary republic 9.143 formula (fb:government.form_of_government.countries fb:en.italy)) (value (list (name fb:en.parliamentary_republic "Parliamentary republic") (name fb:en.constitutional_republic "Constitutional republic") (name fb:m.0v265vn "Unitary republic"))) (type fb:government.form_of_government) what did john irving wrote? Simon Birch 7.766 formula (fb:film.film.story_by fb:en.john_irving)) (value (list (name fb:en.simon_birch "Simon Birch") (name fb:en.the_cider_house_rules_1999 "The Cider House Rules") (name fb:m.0d9jjx "The Hotel New Hampshire") (name fb:en.the_door_in_the_floor "The Door in the Floor") (name fb:m.026w0m_ "The World According to Garp"))) (type fb:film.film) what did john irving wrote? The Cider House Rules 7.766 formula (fb:film.film.story_by fb:en.john_irving)) (value (list (name fb:en.simon_birch "Simon Birch") (name fb:en.the_cider_house_rules_1999 "The Cider House Rules") (name fb:m.0d9jjx "The Hotel New Hampshire") (name fb:en.the_door_in_the_floor "The Door in the Floor") (name fb:m.026w0m_ "The World According to Garp"))) (type fb:film.film) what did john irving wrote? The Hotel New Hampshire 7.766 formula (fb:film.film.story_by fb:en.john_irving)) (value (list (name fb:en.simon_birch "Simon Birch") (name fb:en.the_cider_house_rules_1999 "The Cider House Rules") (name fb:m.0d9jjx "The Hotel New Hampshire") (name fb:en.the_door_in_the_floor "The Door in the Floor") (name fb:m.026w0m_ "The World According to Garp"))) (type fb:film.film) what did john irving wrote? The Door in the Floor 7.766 formula (fb:film.film.story_by fb:en.john_irving)) (value (list (name fb:en.simon_birch "Simon Birch") (name fb:en.the_cider_house_rules_1999 "The Cider House Rules") (name fb:m.0d9jjx "The Hotel New Hampshire") (name fb:en.the_door_in_the_floor "The Door in the Floor") (name fb:m.026w0m_ "The World According to Garp"))) (type fb:film.film) what did john irving wrote? The World According to Garp 7.766 formula (fb:film.film.story_by fb:en.john_irving)) (value (list (name fb:en.simon_birch "Simon Birch") (name fb:en.the_cider_house_rules_1999 "The Cider House Rules") (name fb:m.0d9jjx "The Hotel New Hampshire") (name fb:en.the_door_in_the_floor "The Door in the Floor") (name fb:m.026w0m_ "The World According to Garp"))) (type fb:film.film) what is the national flower of hawaii? Reef triggerfish 19.148 formula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.hawaii)) (value (list (name fb:en.reef_triggerfish "Reef triggerfish") (name fb:en.hawaiian_goose Nene) (name fb:en.ua_mau_ke_ea_o_ka_aina_i_ka_pono "Ua Mau ke Ea o ka Aina i ka Pono") (name fb:en.hawaiian_hibiscus "Hawaiian hibiscus") (name fb:en.candlenut Candlenut) (name fb:en.gold_dust_day_gecko "Gold dust day gecko"))) (type fb:location.symbol_of_administrative_division) what is the national flower of hawaii? Ua Mau ke Ea o ka Aina i ka Pono 19.148 formula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.hawaii)) (value (list (name fb:en.reef_triggerfish "Reef triggerfish") (name fb:en.hawaiian_goose Nene) (name fb:en.ua_mau_ke_ea_o_ka_aina_i_ka_pono "Ua Mau ke Ea o ka Aina i ka Pono") (name fb:en.hawaiian_hibiscus "Hawaiian hibiscus") (name fb:en.candlenut Candlenut) (name fb:en.gold_dust_day_gecko "Gold dust day gecko"))) (type fb:location.symbol_of_administrative_division) what is the national flower of hawaii? Hawaiian hibiscus 19.148 formula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.hawaii)) (value (list (name fb:en.reef_triggerfish "Reef triggerfish") (name fb:en.hawaiian_goose Nene) (name fb:en.ua_mau_ke_ea_o_ka_aina_i_ka_pono "Ua Mau ke Ea o ka Aina i ka Pono") (name fb:en.hawaiian_hibiscus "Hawaiian hibiscus") (name fb:en.candlenut Candlenut) (name fb:en.gold_dust_day_gecko "Gold dust day gecko"))) (type fb:location.symbol_of_administrative_division) what is the national flower of hawaii? Gold dust day gecko 19.148 formula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.hawaii)) (value (list (name fb:en.reef_triggerfish "Reef triggerfish") (name fb:en.hawaiian_goose Nene) (name fb:en.ua_mau_ke_ea_o_ka_aina_i_ka_pono "Ua Mau ke Ea o ka Aina i ka Pono") (name fb:en.hawaiian_hibiscus "Hawaiian hibiscus") (name fb:en.candlenut Candlenut) (name fb:en.gold_dust_day_gecko "Gold dust day gecko"))) (type fb:location.symbol_of_administrative_division) what did alice paul accomplish? Iron Jawed Angels -0.559 formula ((lambda x (fb:film.film.starring (fb:film.performance.character (var x)))) fb:m.0gyd6jg)) (value (list (name fb:en.iron_jawed_angels "Iron Jawed Angels"))) (type fb:film.film) what languages do they speak in costa rica? Spanish Language 18.896 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.costa_rica))) (value (list (name fb:en.spanish "Spanish Language"))) (type (union fb:language.human_language)) when did chipper jones get drafted? 1990 Major League Baseball Draft 17.237 formula ((lambda x (!fb:sports.sports_league_draft_pick.draft (!fb:sports.drafted_athlete.drafted (var x)))) fb:en.chipper_jones)) (value (list (name fb:en.1990_major_league_baseball_draft "1990 Major League Baseball Draft"))) (type fb:sports.sports_league_draft) what part did winona ryder play in star trek? Alien Resurrection 8.135 formula ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.winona_ryder)) (value (list (name fb:en.heathers Heathers) (name fb:en.alien_resurrection "Alien Resurrection") (name fb:en.how_to_make_an_american_quilt "How to Make an American Quilt") (name fb:m.09k56b7 "Black Swan") (name fb:en.mr_deeds "Mr Deeds") (name fb:en.little_women_1994 "Little Women") (name fb:en.the_age_of_innocence_1993 "The Age of Innocence") (name fb:en.mermaids Mermaids) (name fb:en.reality_bites "Reality Bites") (name fb:en.bram_stokers_dracula "Bram Stoker's Dracula"))) (type fb:award.award_nominated_work) what part did winona ryder play in star trek? How to Make an American Quilt 8.135 formula ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.winona_ryder)) (value (list (name fb:en.heathers Heathers) (name fb:en.alien_resurrection "Alien Resurrection") (name fb:en.how_to_make_an_american_quilt "How to Make an American Quilt") (name fb:m.09k56b7 "Black Swan") (name fb:en.mr_deeds "Mr Deeds") (name fb:en.little_women_1994 "Little Women") (name fb:en.the_age_of_innocence_1993 "The Age of Innocence") (name fb:en.mermaids Mermaids) (name fb:en.reality_bites "Reality Bites") (name fb:en.bram_stokers_dracula "Bram Stoker's Dracula"))) (type fb:award.award_nominated_work) what part did winona ryder play in star trek? Black Swan 8.135 formula ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.winona_ryder)) (value (list (name fb:en.heathers Heathers) (name fb:en.alien_resurrection "Alien Resurrection") (name fb:en.how_to_make_an_american_quilt "How to Make an American Quilt") (name fb:m.09k56b7 "Black Swan") (name fb:en.mr_deeds "Mr Deeds") (name fb:en.little_women_1994 "Little Women") (name fb:en.the_age_of_innocence_1993 "The Age of Innocence") (name fb:en.mermaids Mermaids) (name fb:en.reality_bites "Reality Bites") (name fb:en.bram_stokers_dracula "Bram Stoker's Dracula"))) (type fb:award.award_nominated_work) what part did winona ryder play in star trek? Mr Deeds 8.135 formula ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.winona_ryder)) (value (list (name fb:en.heathers Heathers) (name fb:en.alien_resurrection "Alien Resurrection") (name fb:en.how_to_make_an_american_quilt "How to Make an American Quilt") (name fb:m.09k56b7 "Black Swan") (name fb:en.mr_deeds "Mr Deeds") (name fb:en.little_women_1994 "Little Women") (name fb:en.the_age_of_innocence_1993 "The Age of Innocence") (name fb:en.mermaids Mermaids) (name fb:en.reality_bites "Reality Bites") (name fb:en.bram_stokers_dracula "Bram Stoker's Dracula"))) (type fb:award.award_nominated_work) what part did winona ryder play in star trek? Little Women 8.135 formula ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.winona_ryder)) (value (list (name fb:en.heathers Heathers) (name fb:en.alien_resurrection "Alien Resurrection") (name fb:en.how_to_make_an_american_quilt "How to Make an American Quilt") (name fb:m.09k56b7 "Black Swan") (name fb:en.mr_deeds "Mr Deeds") (name fb:en.little_women_1994 "Little Women") (name fb:en.the_age_of_innocence_1993 "The Age of Innocence") (name fb:en.mermaids Mermaids) (name fb:en.reality_bites "Reality Bites") (name fb:en.bram_stokers_dracula "Bram Stoker's Dracula"))) (type fb:award.award_nominated_work) what part did winona ryder play in star trek? The Age of Innocence 8.135 formula ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.winona_ryder)) (value (list (name fb:en.heathers Heathers) (name fb:en.alien_resurrection "Alien Resurrection") (name fb:en.how_to_make_an_american_quilt "How to Make an American Quilt") (name fb:m.09k56b7 "Black Swan") (name fb:en.mr_deeds "Mr Deeds") (name fb:en.little_women_1994 "Little Women") (name fb:en.the_age_of_innocence_1993 "The Age of Innocence") (name fb:en.mermaids Mermaids) (name fb:en.reality_bites "Reality Bites") (name fb:en.bram_stokers_dracula "Bram Stoker's Dracula"))) (type fb:award.award_nominated_work) what part did winona ryder play in star trek? Reality Bites 8.135 formula ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.winona_ryder)) (value (list (name fb:en.heathers Heathers) (name fb:en.alien_resurrection "Alien Resurrection") (name fb:en.how_to_make_an_american_quilt "How to Make an American Quilt") (name fb:m.09k56b7 "Black Swan") (name fb:en.mr_deeds "Mr Deeds") (name fb:en.little_women_1994 "Little Women") (name fb:en.the_age_of_innocence_1993 "The Age of Innocence") (name fb:en.mermaids Mermaids) (name fb:en.reality_bites "Reality Bites") (name fb:en.bram_stokers_dracula "Bram Stoker's Dracula"))) (type fb:award.award_nominated_work) what part did winona ryder play in star trek? Bram Stoker's Dracula 8.135 formula ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.winona_ryder)) (value (list (name fb:en.heathers Heathers) (name fb:en.alien_resurrection "Alien Resurrection") (name fb:en.how_to_make_an_american_quilt "How to Make an American Quilt") (name fb:m.09k56b7 "Black Swan") (name fb:en.mr_deeds "Mr Deeds") (name fb:en.little_women_1994 "Little Women") (name fb:en.the_age_of_innocence_1993 "The Age of Innocence") (name fb:en.mermaids Mermaids) (name fb:en.reality_bites "Reality Bites") (name fb:en.bram_stokers_dracula "Bram Stoker's Dracula"))) (type fb:award.award_nominated_work) what did president carter do in office? Walter Mondale 11.966 formula (and (fb:type.object.type fb:government.us_vice_president) (!fb:government.us_president.vice_president fb:en.jimmy_carter))) (value (list (name fb:en.walter_mondale "Walter Mondale"))) (type (union fb:government.us_vice_president)) what war did hitler lose? Western Front 16.942 formula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (!fb:military.military_command.military_conflict (!fb:military.military_commander.military_commands (var x)))) fb:en.adolf_hitler))) (value (list (name fb:m.02kxjx "Western Front") (name fb:en.operation_neptune "Normandy landings") (name fb:en.central_europe_campaign "Western Allied invasion of Germany") (name fb:en.operation_sealion "Operation Sea Lion") (name fb:en.beer_hall_putsch "Beer Hall Putsch") (name fb:en.occupation_of_baltic_republics "Occupation of the Baltic states") (name fb:en.battle_of_the_bulge "Battle of the Bulge") (name fb:en.battle_of_stalingrad "Battle of Stalingrad") (name fb:en.operation_cockade "Operation Cockade") (name fb:en.great_patriotic_war "Great Patriotic War"))) (type (union fb:military.military_conflict)) what war did hitler lose? Normandy landings 16.942 formula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (!fb:military.military_command.military_conflict (!fb:military.military_commander.military_commands (var x)))) fb:en.adolf_hitler))) (value (list (name fb:m.02kxjx "Western Front") (name fb:en.operation_neptune "Normandy landings") (name fb:en.central_europe_campaign "Western Allied invasion of Germany") (name fb:en.operation_sealion "Operation Sea Lion") (name fb:en.beer_hall_putsch "Beer Hall Putsch") (name fb:en.occupation_of_baltic_republics "Occupation of the Baltic states") (name fb:en.battle_of_the_bulge "Battle of the Bulge") (name fb:en.battle_of_stalingrad "Battle of Stalingrad") (name fb:en.operation_cockade "Operation Cockade") (name fb:en.great_patriotic_war "Great Patriotic War"))) (type (union fb:military.military_conflict)) what war did hitler lose? Western Allied invasion of Germany 16.942 formula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (!fb:military.military_command.military_conflict (!fb:military.military_commander.military_commands (var x)))) fb:en.adolf_hitler))) (value (list (name fb:m.02kxjx "Western Front") (name fb:en.operation_neptune "Normandy landings") (name fb:en.central_europe_campaign "Western Allied invasion of Germany") (name fb:en.operation_sealion "Operation Sea Lion") (name fb:en.beer_hall_putsch "Beer Hall Putsch") (name fb:en.occupation_of_baltic_republics "Occupation of the Baltic states") (name fb:en.battle_of_the_bulge "Battle of the Bulge") (name fb:en.battle_of_stalingrad "Battle of Stalingrad") (name fb:en.operation_cockade "Operation Cockade") (name fb:en.great_patriotic_war "Great Patriotic War"))) (type (union fb:military.military_conflict)) what war did hitler lose? Operation Sea Lion 16.942 formula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (!fb:military.military_command.military_conflict (!fb:military.military_commander.military_commands (var x)))) fb:en.adolf_hitler))) (value (list (name fb:m.02kxjx "Western Front") (name fb:en.operation_neptune "Normandy landings") (name fb:en.central_europe_campaign "Western Allied invasion of Germany") (name fb:en.operation_sealion "Operation Sea Lion") (name fb:en.beer_hall_putsch "Beer Hall Putsch") (name fb:en.occupation_of_baltic_republics "Occupation of the Baltic states") (name fb:en.battle_of_the_bulge "Battle of the Bulge") (name fb:en.battle_of_stalingrad "Battle of Stalingrad") (name fb:en.operation_cockade "Operation Cockade") (name fb:en.great_patriotic_war "Great Patriotic War"))) (type (union fb:military.military_conflict)) what war did hitler lose? Beer Hall Putsch 16.942 formula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (!fb:military.military_command.military_conflict (!fb:military.military_commander.military_commands (var x)))) fb:en.adolf_hitler))) (value (list (name fb:m.02kxjx "Western Front") (name fb:en.operation_neptune "Normandy landings") (name fb:en.central_europe_campaign "Western Allied invasion of Germany") (name fb:en.operation_sealion "Operation Sea Lion") (name fb:en.beer_hall_putsch "Beer Hall Putsch") (name fb:en.occupation_of_baltic_republics "Occupation of the Baltic states") (name fb:en.battle_of_the_bulge "Battle of the Bulge") (name fb:en.battle_of_stalingrad "Battle of Stalingrad") (name fb:en.operation_cockade "Operation Cockade") (name fb:en.great_patriotic_war "Great Patriotic War"))) (type (union fb:military.military_conflict)) what war did hitler lose? Occupation of the Baltic states 16.942 formula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (!fb:military.military_command.military_conflict (!fb:military.military_commander.military_commands (var x)))) fb:en.adolf_hitler))) (value (list (name fb:m.02kxjx "Western Front") (name fb:en.operation_neptune "Normandy landings") (name fb:en.central_europe_campaign "Western Allied invasion of Germany") (name fb:en.operation_sealion "Operation Sea Lion") (name fb:en.beer_hall_putsch "Beer Hall Putsch") (name fb:en.occupation_of_baltic_republics "Occupation of the Baltic states") (name fb:en.battle_of_the_bulge "Battle of the Bulge") (name fb:en.battle_of_stalingrad "Battle of Stalingrad") (name fb:en.operation_cockade "Operation Cockade") (name fb:en.great_patriotic_war "Great Patriotic War"))) (type (union fb:military.military_conflict)) what war did hitler lose? Battle of the Bulge 16.942 formula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (!fb:military.military_command.military_conflict (!fb:military.military_commander.military_commands (var x)))) fb:en.adolf_hitler))) (value (list (name fb:m.02kxjx "Western Front") (name fb:en.operation_neptune "Normandy landings") (name fb:en.central_europe_campaign "Western Allied invasion of Germany") (name fb:en.operation_sealion "Operation Sea Lion") (name fb:en.beer_hall_putsch "Beer Hall Putsch") (name fb:en.occupation_of_baltic_republics "Occupation of the Baltic states") (name fb:en.battle_of_the_bulge "Battle of the Bulge") (name fb:en.battle_of_stalingrad "Battle of Stalingrad") (name fb:en.operation_cockade "Operation Cockade") (name fb:en.great_patriotic_war "Great Patriotic War"))) (type (union fb:military.military_conflict)) what war did hitler lose? Battle of Stalingrad 16.942 formula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (!fb:military.military_command.military_conflict (!fb:military.military_commander.military_commands (var x)))) fb:en.adolf_hitler))) (value (list (name fb:m.02kxjx "Western Front") (name fb:en.operation_neptune "Normandy landings") (name fb:en.central_europe_campaign "Western Allied invasion of Germany") (name fb:en.operation_sealion "Operation Sea Lion") (name fb:en.beer_hall_putsch "Beer Hall Putsch") (name fb:en.occupation_of_baltic_republics "Occupation of the Baltic states") (name fb:en.battle_of_the_bulge "Battle of the Bulge") (name fb:en.battle_of_stalingrad "Battle of Stalingrad") (name fb:en.operation_cockade "Operation Cockade") (name fb:en.great_patriotic_war "Great Patriotic War"))) (type (union fb:military.military_conflict)) what war did hitler lose? Operation Cockade 16.942 formula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (!fb:military.military_command.military_conflict (!fb:military.military_commander.military_commands (var x)))) fb:en.adolf_hitler))) (value (list (name fb:m.02kxjx "Western Front") (name fb:en.operation_neptune "Normandy landings") (name fb:en.central_europe_campaign "Western Allied invasion of Germany") (name fb:en.operation_sealion "Operation Sea Lion") (name fb:en.beer_hall_putsch "Beer Hall Putsch") (name fb:en.occupation_of_baltic_republics "Occupation of the Baltic states") (name fb:en.battle_of_the_bulge "Battle of the Bulge") (name fb:en.battle_of_stalingrad "Battle of Stalingrad") (name fb:en.operation_cockade "Operation Cockade") (name fb:en.great_patriotic_war "Great Patriotic War"))) (type (union fb:military.military_conflict)) what war did hitler lose? Great Patriotic War 16.942 formula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (!fb:military.military_command.military_conflict (!fb:military.military_commander.military_commands (var x)))) fb:en.adolf_hitler))) (value (list (name fb:m.02kxjx "Western Front") (name fb:en.operation_neptune "Normandy landings") (name fb:en.central_europe_campaign "Western Allied invasion of Germany") (name fb:en.operation_sealion "Operation Sea Lion") (name fb:en.beer_hall_putsch "Beer Hall Putsch") (name fb:en.occupation_of_baltic_republics "Occupation of the Baltic states") (name fb:en.battle_of_the_bulge "Battle of the Bulge") (name fb:en.battle_of_stalingrad "Battle of Stalingrad") (name fb:en.operation_cockade "Operation Cockade") (name fb:en.great_patriotic_war "Great Patriotic War"))) (type (union fb:military.military_conflict)) where did clay matthews go to school? University of Southern California 8.608 formula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.clay_matthews)))) (value (list (name fb:en.university_of_southern_california "University of Southern California"))) (type fb:education.educational_institution) what time is it in texas houston right now? Central Time Zone 15.61 formula (!fb:location.location.time_zones fb:en.texas)) (value (list (name fb:en.central_time_zone "Central Time Zone") (name fb:en.mountain_time_zone "Mountain Time Zone") (name fb:en.utc-7 UTC−07:00) (name fb:en.utc-6 UTC−06:00))) (type fb:time.time_zone) what time is it in texas houston right now? Mountain Time Zone 15.61 formula (!fb:location.location.time_zones fb:en.texas)) (value (list (name fb:en.central_time_zone "Central Time Zone") (name fb:en.mountain_time_zone "Mountain Time Zone") (name fb:en.utc-7 UTC−07:00) (name fb:en.utc-6 UTC−06:00))) (type fb:time.time_zone) who is princess leia in star wars? Carrie Fisher 6.972 formula ((lambda x (fb:tv.tv_actor.starring_roles (fb:tv.regular_tv_appearance.character (var x)))) fb:en.princess_leia_organa)) (value (list (name fb:en.carrie_fisher "Carrie Fisher") (name fb:en.amy_smart "Amy Smart"))) (type fb:tv.tv_actor) who is princess leia in star wars? Amy Smart 6.972 formula ((lambda x (fb:tv.tv_actor.starring_roles (fb:tv.regular_tv_appearance.character (var x)))) fb:en.princess_leia_organa)) (value (list (name fb:en.carrie_fisher "Carrie Fisher") (name fb:en.amy_smart "Amy Smart"))) (type fb:tv.tv_actor) what is the political structure of china? Sun Yat-sen Mausoleum 14.844 formula (and (fb:type.object.type fb:architecture.structure) (fb:location.location.containedby fb:en.china))) (value (list (name fb:en.sun_yat-sen_mausoleum "Sun Yat-sen Mausoleum") (name fb:en.hunan_provincial_museum "Hunan Provincial Museum") (name fb:en.saint_sophia_cathedral_in_harbin "Saint Sophia Cathedral in Harbin") (name fb:en.shanghai_ocean_aquarium "Shanghai Ocean Aquarium") (name fb:en.minsheng_bank_building "Minsheng Bank Building") (name fb:en.purple_mountain_observatory "Purple Mountain Observatory") (name fb:en.jinan_yellow_river_bridge "Jinan Yellow River Bridge") (name fb:en.st_michaels_cathedral_qingdao "St. Michael's Cathedral, Qingdao") (name fb:en.tianwan_nuclear_power_plant "Tianwan Nuclear Power Plant") (name fb:en.qinshan_nuclear_power_plant "Qinshan Nuclear Power Plant"))) (type (union fb:architecture.structure)) what is the political structure of china? Hunan Provincial Museum 14.844 formula (and (fb:type.object.type fb:architecture.structure) (fb:location.location.containedby fb:en.china))) (value (list (name fb:en.sun_yat-sen_mausoleum "Sun Yat-sen Mausoleum") (name fb:en.hunan_provincial_museum "Hunan Provincial Museum") (name fb:en.saint_sophia_cathedral_in_harbin "Saint Sophia Cathedral in Harbin") (name fb:en.shanghai_ocean_aquarium "Shanghai Ocean Aquarium") (name fb:en.minsheng_bank_building "Minsheng Bank Building") (name fb:en.purple_mountain_observatory "Purple Mountain Observatory") (name fb:en.jinan_yellow_river_bridge "Jinan Yellow River Bridge") (name fb:en.st_michaels_cathedral_qingdao "St. Michael's Cathedral, Qingdao") (name fb:en.tianwan_nuclear_power_plant "Tianwan Nuclear Power Plant") (name fb:en.qinshan_nuclear_power_plant "Qinshan Nuclear Power Plant"))) (type (union fb:architecture.structure)) what is the political structure of china? Saint Sophia Cathedral in Harbin 14.844 formula (and (fb:type.object.type fb:architecture.structure) (fb:location.location.containedby fb:en.china))) (value (list (name fb:en.sun_yat-sen_mausoleum "Sun Yat-sen Mausoleum") (name fb:en.hunan_provincial_museum "Hunan Provincial Museum") (name fb:en.saint_sophia_cathedral_in_harbin "Saint Sophia Cathedral in Harbin") (name fb:en.shanghai_ocean_aquarium "Shanghai Ocean Aquarium") (name fb:en.minsheng_bank_building "Minsheng Bank Building") (name fb:en.purple_mountain_observatory "Purple Mountain Observatory") (name fb:en.jinan_yellow_river_bridge "Jinan Yellow River Bridge") (name fb:en.st_michaels_cathedral_qingdao "St. Michael's Cathedral, Qingdao") (name fb:en.tianwan_nuclear_power_plant "Tianwan Nuclear Power Plant") (name fb:en.qinshan_nuclear_power_plant "Qinshan Nuclear Power Plant"))) (type (union fb:architecture.structure)) what is the political structure of china? Shanghai Ocean Aquarium 14.844 formula (and (fb:type.object.type fb:architecture.structure) (fb:location.location.containedby fb:en.china))) (value (list (name fb:en.sun_yat-sen_mausoleum "Sun Yat-sen Mausoleum") (name fb:en.hunan_provincial_museum "Hunan Provincial Museum") (name fb:en.saint_sophia_cathedral_in_harbin "Saint Sophia Cathedral in Harbin") (name fb:en.shanghai_ocean_aquarium "Shanghai Ocean Aquarium") (name fb:en.minsheng_bank_building "Minsheng Bank Building") (name fb:en.purple_mountain_observatory "Purple Mountain Observatory") (name fb:en.jinan_yellow_river_bridge "Jinan Yellow River Bridge") (name fb:en.st_michaels_cathedral_qingdao "St. Michael's Cathedral, Qingdao") (name fb:en.tianwan_nuclear_power_plant "Tianwan Nuclear Power Plant") (name fb:en.qinshan_nuclear_power_plant "Qinshan Nuclear Power Plant"))) (type (union fb:architecture.structure)) what is the political structure of china? Minsheng Bank Building 14.844 formula (and (fb:type.object.type fb:architecture.structure) (fb:location.location.containedby fb:en.china))) (value (list (name fb:en.sun_yat-sen_mausoleum "Sun Yat-sen Mausoleum") (name fb:en.hunan_provincial_museum "Hunan Provincial Museum") (name fb:en.saint_sophia_cathedral_in_harbin "Saint Sophia Cathedral in Harbin") (name fb:en.shanghai_ocean_aquarium "Shanghai Ocean Aquarium") (name fb:en.minsheng_bank_building "Minsheng Bank Building") (name fb:en.purple_mountain_observatory "Purple Mountain Observatory") (name fb:en.jinan_yellow_river_bridge "Jinan Yellow River Bridge") (name fb:en.st_michaels_cathedral_qingdao "St. Michael's Cathedral, Qingdao") (name fb:en.tianwan_nuclear_power_plant "Tianwan Nuclear Power Plant") (name fb:en.qinshan_nuclear_power_plant "Qinshan Nuclear Power Plant"))) (type (union fb:architecture.structure)) what is the political structure of china? Purple Mountain Observatory 14.844 formula (and (fb:type.object.type fb:architecture.structure) (fb:location.location.containedby fb:en.china))) (value (list (name fb:en.sun_yat-sen_mausoleum "Sun Yat-sen Mausoleum") (name fb:en.hunan_provincial_museum "Hunan Provincial Museum") (name fb:en.saint_sophia_cathedral_in_harbin "Saint Sophia Cathedral in Harbin") (name fb:en.shanghai_ocean_aquarium "Shanghai Ocean Aquarium") (name fb:en.minsheng_bank_building "Minsheng Bank Building") (name fb:en.purple_mountain_observatory "Purple Mountain Observatory") (name fb:en.jinan_yellow_river_bridge "Jinan Yellow River Bridge") (name fb:en.st_michaels_cathedral_qingdao "St. Michael's Cathedral, Qingdao") (name fb:en.tianwan_nuclear_power_plant "Tianwan Nuclear Power Plant") (name fb:en.qinshan_nuclear_power_plant "Qinshan Nuclear Power Plant"))) (type (union fb:architecture.structure)) what is the political structure of china? Jinan Yellow River Bridge 14.844 formula (and (fb:type.object.type fb:architecture.structure) (fb:location.location.containedby fb:en.china))) (value (list (name fb:en.sun_yat-sen_mausoleum "Sun Yat-sen Mausoleum") (name fb:en.hunan_provincial_museum "Hunan Provincial Museum") (name fb:en.saint_sophia_cathedral_in_harbin "Saint Sophia Cathedral in Harbin") (name fb:en.shanghai_ocean_aquarium "Shanghai Ocean Aquarium") (name fb:en.minsheng_bank_building "Minsheng Bank Building") (name fb:en.purple_mountain_observatory "Purple Mountain Observatory") (name fb:en.jinan_yellow_river_bridge "Jinan Yellow River Bridge") (name fb:en.st_michaels_cathedral_qingdao "St. Michael's Cathedral, Qingdao") (name fb:en.tianwan_nuclear_power_plant "Tianwan Nuclear Power Plant") (name fb:en.qinshan_nuclear_power_plant "Qinshan Nuclear Power Plant"))) (type (union fb:architecture.structure)) what is the political structure of china? St. Michael's Cathedral, Qingdao 14.844 formula (and (fb:type.object.type fb:architecture.structure) (fb:location.location.containedby fb:en.china))) (value (list (name fb:en.sun_yat-sen_mausoleum "Sun Yat-sen Mausoleum") (name fb:en.hunan_provincial_museum "Hunan Provincial Museum") (name fb:en.saint_sophia_cathedral_in_harbin "Saint Sophia Cathedral in Harbin") (name fb:en.shanghai_ocean_aquarium "Shanghai Ocean Aquarium") (name fb:en.minsheng_bank_building "Minsheng Bank Building") (name fb:en.purple_mountain_observatory "Purple Mountain Observatory") (name fb:en.jinan_yellow_river_bridge "Jinan Yellow River Bridge") (name fb:en.st_michaels_cathedral_qingdao "St. Michael's Cathedral, Qingdao") (name fb:en.tianwan_nuclear_power_plant "Tianwan Nuclear Power Plant") (name fb:en.qinshan_nuclear_power_plant "Qinshan Nuclear Power Plant"))) (type (union fb:architecture.structure)) what is the political structure of china? Tianwan Nuclear Power Plant 14.844 formula (and (fb:type.object.type fb:architecture.structure) (fb:location.location.containedby fb:en.china))) (value (list (name fb:en.sun_yat-sen_mausoleum "Sun Yat-sen Mausoleum") (name fb:en.hunan_provincial_museum "Hunan Provincial Museum") (name fb:en.saint_sophia_cathedral_in_harbin "Saint Sophia Cathedral in Harbin") (name fb:en.shanghai_ocean_aquarium "Shanghai Ocean Aquarium") (name fb:en.minsheng_bank_building "Minsheng Bank Building") (name fb:en.purple_mountain_observatory "Purple Mountain Observatory") (name fb:en.jinan_yellow_river_bridge "Jinan Yellow River Bridge") (name fb:en.st_michaels_cathedral_qingdao "St. Michael's Cathedral, Qingdao") (name fb:en.tianwan_nuclear_power_plant "Tianwan Nuclear Power Plant") (name fb:en.qinshan_nuclear_power_plant "Qinshan Nuclear Power Plant"))) (type (union fb:architecture.structure)) what is the political structure of china? Qinshan Nuclear Power Plant 14.844 formula (and (fb:type.object.type fb:architecture.structure) (fb:location.location.containedby fb:en.china))) (value (list (name fb:en.sun_yat-sen_mausoleum "Sun Yat-sen Mausoleum") (name fb:en.hunan_provincial_museum "Hunan Provincial Museum") (name fb:en.saint_sophia_cathedral_in_harbin "Saint Sophia Cathedral in Harbin") (name fb:en.shanghai_ocean_aquarium "Shanghai Ocean Aquarium") (name fb:en.minsheng_bank_building "Minsheng Bank Building") (name fb:en.purple_mountain_observatory "Purple Mountain Observatory") (name fb:en.jinan_yellow_river_bridge "Jinan Yellow River Bridge") (name fb:en.st_michaels_cathedral_qingdao "St. Michael's Cathedral, Qingdao") (name fb:en.tianwan_nuclear_power_plant "Tianwan Nuclear Power Plant") (name fb:en.qinshan_nuclear_power_plant "Qinshan Nuclear Power Plant"))) (type (union fb:architecture.structure)) what is new york city airport? John F. Kennedy International Airport 17.021 formula (!fb:location.location.nearby_airports fb:en.new_york_ny)) (value (list (name fb:en.john_f_kennedy_international_airport "John F. Kennedy International Airport") (name fb:en.laguardia_airport "LaGuardia Airport") (name fb:en.downtown_manhattan_heliport "Downtown Manhattan Heliport") (name fb:en.mitchel_air_force_base "Mitchel Air Force Base") (name fb:en.east_34th_street_heliport "East 34th Street Heliport") (name fb:en.flushing_airport "Flushing Airport") (name fb:en.new_york_skyports_inc_seaplane_base "New York Skyports Inc. Seaplane Base"))) (type fb:aviation.airport) what is new york city airport? LaGuardia Airport 17.021 formula (!fb:location.location.nearby_airports fb:en.new_york_ny)) (value (list (name fb:en.john_f_kennedy_international_airport "John F. Kennedy International Airport") (name fb:en.laguardia_airport "LaGuardia Airport") (name fb:en.downtown_manhattan_heliport "Downtown Manhattan Heliport") (name fb:en.mitchel_air_force_base "Mitchel Air Force Base") (name fb:en.east_34th_street_heliport "East 34th Street Heliport") (name fb:en.flushing_airport "Flushing Airport") (name fb:en.new_york_skyports_inc_seaplane_base "New York Skyports Inc. Seaplane Base"))) (type fb:aviation.airport) what is new york city airport? Downtown Manhattan Heliport 17.021 formula (!fb:location.location.nearby_airports fb:en.new_york_ny)) (value (list (name fb:en.john_f_kennedy_international_airport "John F. Kennedy International Airport") (name fb:en.laguardia_airport "LaGuardia Airport") (name fb:en.downtown_manhattan_heliport "Downtown Manhattan Heliport") (name fb:en.mitchel_air_force_base "Mitchel Air Force Base") (name fb:en.east_34th_street_heliport "East 34th Street Heliport") (name fb:en.flushing_airport "Flushing Airport") (name fb:en.new_york_skyports_inc_seaplane_base "New York Skyports Inc. Seaplane Base"))) (type fb:aviation.airport) what is new york city airport? Mitchel Air Force Base 17.021 formula (!fb:location.location.nearby_airports fb:en.new_york_ny)) (value (list (name fb:en.john_f_kennedy_international_airport "John F. Kennedy International Airport") (name fb:en.laguardia_airport "LaGuardia Airport") (name fb:en.downtown_manhattan_heliport "Downtown Manhattan Heliport") (name fb:en.mitchel_air_force_base "Mitchel Air Force Base") (name fb:en.east_34th_street_heliport "East 34th Street Heliport") (name fb:en.flushing_airport "Flushing Airport") (name fb:en.new_york_skyports_inc_seaplane_base "New York Skyports Inc. Seaplane Base"))) (type fb:aviation.airport) what is new york city airport? East 34th Street Heliport 17.021 formula (!fb:location.location.nearby_airports fb:en.new_york_ny)) (value (list (name fb:en.john_f_kennedy_international_airport "John F. Kennedy International Airport") (name fb:en.laguardia_airport "LaGuardia Airport") (name fb:en.downtown_manhattan_heliport "Downtown Manhattan Heliport") (name fb:en.mitchel_air_force_base "Mitchel Air Force Base") (name fb:en.east_34th_street_heliport "East 34th Street Heliport") (name fb:en.flushing_airport "Flushing Airport") (name fb:en.new_york_skyports_inc_seaplane_base "New York Skyports Inc. Seaplane Base"))) (type fb:aviation.airport) what is new york city airport? Flushing Airport 17.021 formula (!fb:location.location.nearby_airports fb:en.new_york_ny)) (value (list (name fb:en.john_f_kennedy_international_airport "John F. Kennedy International Airport") (name fb:en.laguardia_airport "LaGuardia Airport") (name fb:en.downtown_manhattan_heliport "Downtown Manhattan Heliport") (name fb:en.mitchel_air_force_base "Mitchel Air Force Base") (name fb:en.east_34th_street_heliport "East 34th Street Heliport") (name fb:en.flushing_airport "Flushing Airport") (name fb:en.new_york_skyports_inc_seaplane_base "New York Skyports Inc. Seaplane Base"))) (type fb:aviation.airport) what is new york city airport? New York Skyports Inc. Seaplane Base 17.021 formula (!fb:location.location.nearby_airports fb:en.new_york_ny)) (value (list (name fb:en.john_f_kennedy_international_airport "John F. Kennedy International Airport") (name fb:en.laguardia_airport "LaGuardia Airport") (name fb:en.downtown_manhattan_heliport "Downtown Manhattan Heliport") (name fb:en.mitchel_air_force_base "Mitchel Air Force Base") (name fb:en.east_34th_street_heliport "East 34th Street Heliport") (name fb:en.flushing_airport "Flushing Airport") (name fb:en.new_york_skyports_inc_seaplane_base "New York Skyports Inc. Seaplane Base"))) (type fb:aviation.airport) what language brazil speak? Portuguese Language 12.494 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.brazil))) (value (list (name fb:en.portuguese "Portuguese Language"))) (type (union fb:language.human_language)) who played obi wan in episode 2? Kevin Walsh 5.102 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:m.0jw_nn_)) (value (list (name fb:m.0g4tx2t "Kevin Walsh"))) (type fb:film.actor) what currency is used in panama? United States dollar 22.851 formula (and (fb:type.object.type fb:finance.currency) (fb:finance.currency.countries_used fb:en.panama))) (value (list (name fb:en.us "United States dollar") (name fb:en.panamanian_balboa "Panamanian balboa"))) (type fb:finance.currency) what currency is used in panama? Panamanian balboa 22.851 formula (and (fb:type.object.type fb:finance.currency) (fb:finance.currency.countries_used fb:en.panama))) (value (list (name fb:en.us "United States dollar") (name fb:en.panamanian_balboa "Panamanian balboa"))) (type fb:finance.currency) what countries do the united nations help? United States of America 14.345 formula (and (fb:type.object.type fb:location.country) ((lambda x (!fb:user.skud.embassies_and_consulates.ambassadorial_tenure.to_countries (!fb:user.skud.embassies_and_consulates.embassy.ambassadors (var x)))) fb:en.united_kingdom_of_great_britain_and_ireland))) (value (list (name fb:en.portugal Portugal) (name fb:en.austria Austria) (name fb:en.spain Spain) (name fb:en.united_states_of_america "United States of America") (name fb:en.greece Greece) (name fb:en.empire_of_japan "Empire of Japan") (name fb:en.kingdom_of_portugal "Kingdom of Portugal") (name fb:en.colombia Colombia))) (type (union fb:location.country)) what countries do the united nations help? Empire of Japan 14.345 formula (and (fb:type.object.type fb:location.country) ((lambda x (!fb:user.skud.embassies_and_consulates.ambassadorial_tenure.to_countries (!fb:user.skud.embassies_and_consulates.embassy.ambassadors (var x)))) fb:en.united_kingdom_of_great_britain_and_ireland))) (value (list (name fb:en.portugal Portugal) (name fb:en.austria Austria) (name fb:en.spain Spain) (name fb:en.united_states_of_america "United States of America") (name fb:en.greece Greece) (name fb:en.empire_of_japan "Empire of Japan") (name fb:en.kingdom_of_portugal "Kingdom of Portugal") (name fb:en.colombia Colombia))) (type (union fb:location.country)) what countries do the united nations help? Kingdom of Portugal 14.345 formula (and (fb:type.object.type fb:location.country) ((lambda x (!fb:user.skud.embassies_and_consulates.ambassadorial_tenure.to_countries (!fb:user.skud.embassies_and_consulates.embassy.ambassadors (var x)))) fb:en.united_kingdom_of_great_britain_and_ireland))) (value (list (name fb:en.portugal Portugal) (name fb:en.austria Austria) (name fb:en.spain Spain) (name fb:en.united_states_of_america "United States of America") (name fb:en.greece Greece) (name fb:en.empire_of_japan "Empire of Japan") (name fb:en.kingdom_of_portugal "Kingdom of Portugal") (name fb:en.colombia Colombia))) (type (union fb:location.country)) what team did ronaldo play for in 2003? A.C. Milan 20.331 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.ronaldo))) (value (list (name fb:en.ac_milan "A.C. Milan") (name fb:en.fc_internazionale_milano "Inter Milan") (name fb:en.psv_eindhoven "PSV Eindhoven") (name fb:en.fc_barcelona "FC Barcelona") (name fb:en.cruzeiro_esporte_clube "Cruzeiro Esporte Clube") (name fb:en.real_madrid "Real Madrid C.F.") (name fb:en.sport_club_corinthians_paulista "Sport Club Corinthians Paulista"))) (type fb:soccer.football_team) what team did ronaldo play for in 2003? Inter Milan 20.331 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.ronaldo))) (value (list (name fb:en.ac_milan "A.C. Milan") (name fb:en.fc_internazionale_milano "Inter Milan") (name fb:en.psv_eindhoven "PSV Eindhoven") (name fb:en.fc_barcelona "FC Barcelona") (name fb:en.cruzeiro_esporte_clube "Cruzeiro Esporte Clube") (name fb:en.real_madrid "Real Madrid C.F.") (name fb:en.sport_club_corinthians_paulista "Sport Club Corinthians Paulista"))) (type fb:soccer.football_team) what team did ronaldo play for in 2003? PSV Eindhoven 20.331 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.ronaldo))) (value (list (name fb:en.ac_milan "A.C. Milan") (name fb:en.fc_internazionale_milano "Inter Milan") (name fb:en.psv_eindhoven "PSV Eindhoven") (name fb:en.fc_barcelona "FC Barcelona") (name fb:en.cruzeiro_esporte_clube "Cruzeiro Esporte Clube") (name fb:en.real_madrid "Real Madrid C.F.") (name fb:en.sport_club_corinthians_paulista "Sport Club Corinthians Paulista"))) (type fb:soccer.football_team) what team did ronaldo play for in 2003? FC Barcelona 20.331 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.ronaldo))) (value (list (name fb:en.ac_milan "A.C. Milan") (name fb:en.fc_internazionale_milano "Inter Milan") (name fb:en.psv_eindhoven "PSV Eindhoven") (name fb:en.fc_barcelona "FC Barcelona") (name fb:en.cruzeiro_esporte_clube "Cruzeiro Esporte Clube") (name fb:en.real_madrid "Real Madrid C.F.") (name fb:en.sport_club_corinthians_paulista "Sport Club Corinthians Paulista"))) (type fb:soccer.football_team) what team did ronaldo play for in 2003? Cruzeiro Esporte Clube 20.331 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.ronaldo))) (value (list (name fb:en.ac_milan "A.C. Milan") (name fb:en.fc_internazionale_milano "Inter Milan") (name fb:en.psv_eindhoven "PSV Eindhoven") (name fb:en.fc_barcelona "FC Barcelona") (name fb:en.cruzeiro_esporte_clube "Cruzeiro Esporte Clube") (name fb:en.real_madrid "Real Madrid C.F.") (name fb:en.sport_club_corinthians_paulista "Sport Club Corinthians Paulista"))) (type fb:soccer.football_team) what team did ronaldo play for in 2003? Real Madrid C.F. 20.331 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.ronaldo))) (value (list (name fb:en.ac_milan "A.C. Milan") (name fb:en.fc_internazionale_milano "Inter Milan") (name fb:en.psv_eindhoven "PSV Eindhoven") (name fb:en.fc_barcelona "FC Barcelona") (name fb:en.cruzeiro_esporte_clube "Cruzeiro Esporte Clube") (name fb:en.real_madrid "Real Madrid C.F.") (name fb:en.sport_club_corinthians_paulista "Sport Club Corinthians Paulista"))) (type fb:soccer.football_team) what team did ronaldo play for in 2003? Sport Club Corinthians Paulista 20.331 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.ronaldo))) (value (list (name fb:en.ac_milan "A.C. Milan") (name fb:en.fc_internazionale_milano "Inter Milan") (name fb:en.psv_eindhoven "PSV Eindhoven") (name fb:en.fc_barcelona "FC Barcelona") (name fb:en.cruzeiro_esporte_clube "Cruzeiro Esporte Clube") (name fb:en.real_madrid "Real Madrid C.F.") (name fb:en.sport_club_corinthians_paulista "Sport Club Corinthians Paulista"))) (type fb:soccer.football_team) where does robin williams live 2011? Bloomfield Hills 7.851 formula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.robin_williams))) (value (list (name fb:en.bloomfield_hills "Bloomfield Hills") (name fb:en.san_francisco "San Francisco"))) (type fb:location.location) where does robin williams live 2011? San Francisco 7.851 formula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.robin_williams))) (value (list (name fb:en.bloomfield_hills "Bloomfield Hills") (name fb:en.san_francisco "San Francisco"))) (type fb:location.location) who played jacob black in twilight? Taylor Lautner 12.11 formula (fb:film.actor.film (and (fb:film.performance.character fb:en.jacob_black) (fb:film.performance.film fb:m.03nm_fh)))) (value (list (name fb:en.taylor_lautner "Taylor Lautner"))) (type fb:film.actor) when was president john adams elected? Thomas Jefferson 15.178 formula (and (fb:type.object.type fb:government.us_vice_president) (!fb:government.us_president.vice_president fb:en.john_adams))) (value (list (name fb:en.thomas_jefferson "Thomas Jefferson"))) (type (union fb:government.us_vice_president)) who does lee clark manager? Birmingham City F.C. 6.694 formula ((lambda x (fb:soccer.football_team.manager (fb:soccer.football_team_management_tenure.manager (var x)))) fb:en.lee_clark)) (value (list (name fb:en.birmingham_city_fc "Birmingham City F.C.") (name fb:en.huddersfield_town_fc "Huddersfield Town F.C."))) (type fb:soccer.football_team) who does lee clark manager? Huddersfield Town F.C. 6.694 formula ((lambda x (fb:soccer.football_team.manager (fb:soccer.football_team_management_tenure.manager (var x)))) fb:en.lee_clark)) (value (list (name fb:en.birmingham_city_fc "Birmingham City F.C.") (name fb:en.huddersfield_town_fc "Huddersfield Town F.C."))) (type fb:soccer.football_team) which airport to fly into in buenos aires? Ministro Pistarini International Airport 15.941 formula (!fb:location.location.nearby_airports fb:en.buenos_aires)) (value (list (name fb:en.ministro_pistarini_international_airport "Ministro Pistarini International Airport") (name fb:en.aeroparque_jorge_newbery "Aeroparque Jorge Newbery") (name fb:en.don_torcuato_airport "Don Torcuato Airport"))) (type fb:aviation.airport) which airport to fly into in buenos aires? Aeroparque Jorge Newbery 15.941 formula (!fb:location.location.nearby_airports fb:en.buenos_aires)) (value (list (name fb:en.ministro_pistarini_international_airport "Ministro Pistarini International Airport") (name fb:en.aeroparque_jorge_newbery "Aeroparque Jorge Newbery") (name fb:en.don_torcuato_airport "Don Torcuato Airport"))) (type fb:aviation.airport) which airport to fly into in buenos aires? Don Torcuato Airport 15.941 formula (!fb:location.location.nearby_airports fb:en.buenos_aires)) (value (list (name fb:en.ministro_pistarini_international_airport "Ministro Pistarini International Airport") (name fb:en.aeroparque_jorge_newbery "Aeroparque Jorge Newbery") (name fb:en.don_torcuato_airport "Don Torcuato Airport"))) (type fb:aviation.airport) where to get a marriage license in long island? Long Island Rail Road 4.961 formula (fb:metropolitan_transit.transit_system.area_served fb:en.long_island)) (value (list (name fb:en.long_island_rail_road "Long Island Rail Road"))) (type fb:metropolitan_transit.transit_system) what team did adrian peterson play for in college? Minnesota Vikings 14.613 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.adrian_peterson))) (value (list (name fb:en.minnesota_vikings "Minnesota Vikings"))) (type fb:sports.sports_team) where does name pennsylvania come from? USS Pennsylvania (SSBN-735) 7.742 formula (fb:symbols.namesake.named_after fb:en.pennsylvania)) (value (list (name fb:m.036y42 "USS Pennsylvania (SSBN-735)") (name fb:m.01j375 "USS Pennsylvania") (name fb:m.01cyj6 "USS Pennsylvania (ACR-4)") (name fb:en.uss_pennsylvania "USS Pennsylvania (BB-38)"))) (type fb:symbols.namesake) where does name pennsylvania come from? USS Pennsylvania 7.742 formula (fb:symbols.namesake.named_after fb:en.pennsylvania)) (value (list (name fb:m.036y42 "USS Pennsylvania (SSBN-735)") (name fb:m.01j375 "USS Pennsylvania") (name fb:m.01cyj6 "USS Pennsylvania (ACR-4)") (name fb:en.uss_pennsylvania "USS Pennsylvania (BB-38)"))) (type fb:symbols.namesake) where does name pennsylvania come from? USS Pennsylvania (ACR-4) 7.742 formula (fb:symbols.namesake.named_after fb:en.pennsylvania)) (value (list (name fb:m.036y42 "USS Pennsylvania (SSBN-735)") (name fb:m.01j375 "USS Pennsylvania") (name fb:m.01cyj6 "USS Pennsylvania (ACR-4)") (name fb:en.uss_pennsylvania "USS Pennsylvania (BB-38)"))) (type fb:symbols.namesake) where does name pennsylvania come from? USS Pennsylvania (BB-38) 7.742 formula (fb:symbols.namesake.named_after fb:en.pennsylvania)) (value (list (name fb:m.036y42 "USS Pennsylvania (SSBN-735)") (name fb:m.01j375 "USS Pennsylvania") (name fb:m.01cyj6 "USS Pennsylvania (ACR-4)") (name fb:en.uss_pennsylvania "USS Pennsylvania (BB-38)"))) (type fb:symbols.namesake) who plays blaine in batman? Will Friedle 8.052 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.batman)) (value (list (name fb:en.will_friedle "Will Friedle") (name fb:m.0r9k3kz "Charles Stanley") (name fb:en.bruce_greenwood "Bruce Greenwood") (name fb:en.benjamin_mckenzie "Benjamin McKenzie") (name fb:en.christian_bale "Christian Bale") (name fb:en.jing_abalos "Jing Abalos") (name fb:en.adam_west "Adam West") (name fb:m.0gj68b4 "Joe Krajcar") (name fb:en.sam_rockwell "Sam Rockwell") (name fb:en.kevin_conroy "Kevin Conroy"))) (type fb:film.actor) who plays blaine in batman? Charles Stanley 8.052 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.batman)) (value (list (name fb:en.will_friedle "Will Friedle") (name fb:m.0r9k3kz "Charles Stanley") (name fb:en.bruce_greenwood "Bruce Greenwood") (name fb:en.benjamin_mckenzie "Benjamin McKenzie") (name fb:en.christian_bale "Christian Bale") (name fb:en.jing_abalos "Jing Abalos") (name fb:en.adam_west "Adam West") (name fb:m.0gj68b4 "Joe Krajcar") (name fb:en.sam_rockwell "Sam Rockwell") (name fb:en.kevin_conroy "Kevin Conroy"))) (type fb:film.actor) who plays blaine in batman? Bruce Greenwood 8.052 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.batman)) (value (list (name fb:en.will_friedle "Will Friedle") (name fb:m.0r9k3kz "Charles Stanley") (name fb:en.bruce_greenwood "Bruce Greenwood") (name fb:en.benjamin_mckenzie "Benjamin McKenzie") (name fb:en.christian_bale "Christian Bale") (name fb:en.jing_abalos "Jing Abalos") (name fb:en.adam_west "Adam West") (name fb:m.0gj68b4 "Joe Krajcar") (name fb:en.sam_rockwell "Sam Rockwell") (name fb:en.kevin_conroy "Kevin Conroy"))) (type fb:film.actor) who plays blaine in batman? Benjamin McKenzie 8.052 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.batman)) (value (list (name fb:en.will_friedle "Will Friedle") (name fb:m.0r9k3kz "Charles Stanley") (name fb:en.bruce_greenwood "Bruce Greenwood") (name fb:en.benjamin_mckenzie "Benjamin McKenzie") (name fb:en.christian_bale "Christian Bale") (name fb:en.jing_abalos "Jing Abalos") (name fb:en.adam_west "Adam West") (name fb:m.0gj68b4 "Joe Krajcar") (name fb:en.sam_rockwell "Sam Rockwell") (name fb:en.kevin_conroy "Kevin Conroy"))) (type fb:film.actor) who plays blaine in batman? Christian Bale 8.052 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.batman)) (value (list (name fb:en.will_friedle "Will Friedle") (name fb:m.0r9k3kz "Charles Stanley") (name fb:en.bruce_greenwood "Bruce Greenwood") (name fb:en.benjamin_mckenzie "Benjamin McKenzie") (name fb:en.christian_bale "Christian Bale") (name fb:en.jing_abalos "Jing Abalos") (name fb:en.adam_west "Adam West") (name fb:m.0gj68b4 "Joe Krajcar") (name fb:en.sam_rockwell "Sam Rockwell") (name fb:en.kevin_conroy "Kevin Conroy"))) (type fb:film.actor) who plays blaine in batman? Jing Abalos 8.052 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.batman)) (value (list (name fb:en.will_friedle "Will Friedle") (name fb:m.0r9k3kz "Charles Stanley") (name fb:en.bruce_greenwood "Bruce Greenwood") (name fb:en.benjamin_mckenzie "Benjamin McKenzie") (name fb:en.christian_bale "Christian Bale") (name fb:en.jing_abalos "Jing Abalos") (name fb:en.adam_west "Adam West") (name fb:m.0gj68b4 "Joe Krajcar") (name fb:en.sam_rockwell "Sam Rockwell") (name fb:en.kevin_conroy "Kevin Conroy"))) (type fb:film.actor) who plays blaine in batman? Adam West 8.052 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.batman)) (value (list (name fb:en.will_friedle "Will Friedle") (name fb:m.0r9k3kz "Charles Stanley") (name fb:en.bruce_greenwood "Bruce Greenwood") (name fb:en.benjamin_mckenzie "Benjamin McKenzie") (name fb:en.christian_bale "Christian Bale") (name fb:en.jing_abalos "Jing Abalos") (name fb:en.adam_west "Adam West") (name fb:m.0gj68b4 "Joe Krajcar") (name fb:en.sam_rockwell "Sam Rockwell") (name fb:en.kevin_conroy "Kevin Conroy"))) (type fb:film.actor) who plays blaine in batman? Joe Krajcar 8.052 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.batman)) (value (list (name fb:en.will_friedle "Will Friedle") (name fb:m.0r9k3kz "Charles Stanley") (name fb:en.bruce_greenwood "Bruce Greenwood") (name fb:en.benjamin_mckenzie "Benjamin McKenzie") (name fb:en.christian_bale "Christian Bale") (name fb:en.jing_abalos "Jing Abalos") (name fb:en.adam_west "Adam West") (name fb:m.0gj68b4 "Joe Krajcar") (name fb:en.sam_rockwell "Sam Rockwell") (name fb:en.kevin_conroy "Kevin Conroy"))) (type fb:film.actor) who plays blaine in batman? Sam Rockwell 8.052 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.batman)) (value (list (name fb:en.will_friedle "Will Friedle") (name fb:m.0r9k3kz "Charles Stanley") (name fb:en.bruce_greenwood "Bruce Greenwood") (name fb:en.benjamin_mckenzie "Benjamin McKenzie") (name fb:en.christian_bale "Christian Bale") (name fb:en.jing_abalos "Jing Abalos") (name fb:en.adam_west "Adam West") (name fb:m.0gj68b4 "Joe Krajcar") (name fb:en.sam_rockwell "Sam Rockwell") (name fb:en.kevin_conroy "Kevin Conroy"))) (type fb:film.actor) who plays blaine in batman? Kevin Conroy 8.052 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.batman)) (value (list (name fb:en.will_friedle "Will Friedle") (name fb:m.0r9k3kz "Charles Stanley") (name fb:en.bruce_greenwood "Bruce Greenwood") (name fb:en.benjamin_mckenzie "Benjamin McKenzie") (name fb:en.christian_bale "Christian Bale") (name fb:en.jing_abalos "Jing Abalos") (name fb:en.adam_west "Adam West") (name fb:m.0gj68b4 "Joe Krajcar") (name fb:en.sam_rockwell "Sam Rockwell") (name fb:en.kevin_conroy "Kevin Conroy"))) (type fb:film.actor) what language does australia use? English Language 11.898 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.australia))) (value (list (name fb:en.english "English Language") (name fb:en.lojban Lojban) (name fb:en.esperanto "Esperanto Language"))) (type (union fb:language.human_language)) what language does australia use? Esperanto Language 11.898 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.australia))) (value (list (name fb:en.english "English Language") (name fb:en.lojban Lojban) (name fb:en.esperanto "Esperanto Language"))) (type (union fb:language.human_language)) what position did vince lombardi play in college? Fordham University 11.79 formula (and (fb:type.object.type fb:education.university) ((lambda x (!fb:education.education.institution (!fb:people.person.education (var x)))) fb:en.vince_lombardi))) (value (list (name fb:en.fordham_university "Fordham University"))) (type (union fb:education.university)) what kind of government did the united states have after the revolution? Federal republic 15.279 formula (!fb:location.country.form_of_government fb:en.united_states_of_america)) (value (list (name fb:en.federal_republic "Federal republic") (name fb:en.presidential_system "Presidential system") (name fb:en.constitutional_republic "Constitutional republic"))) (type fb:government.form_of_government) what kind of government did the united states have after the revolution? Presidential system 15.279 formula (!fb:location.country.form_of_government fb:en.united_states_of_america)) (value (list (name fb:en.federal_republic "Federal republic") (name fb:en.presidential_system "Presidential system") (name fb:en.constitutional_republic "Constitutional republic"))) (type fb:government.form_of_government) what kind of government did the united states have after the revolution? Constitutional republic 15.279 formula (!fb:location.country.form_of_government fb:en.united_states_of_america)) (value (list (name fb:en.federal_republic "Federal republic") (name fb:en.presidential_system "Presidential system") (name fb:en.constitutional_republic "Constitutional republic"))) (type fb:government.form_of_government) who did veronica lake mary? Renal failure 1.91 formula (fb:people.cause_of_death.people fb:en.veronica_lake)) (value (list (name fb:en.renal_failure "Renal failure") (name fb:en.hepatitis Hepatitis) (name fb:en.acute_kidney_injury "Acute renal failure"))) (type fb:people.cause_of_death) who did veronica lake mary? Acute renal failure 1.91 formula (fb:people.cause_of_death.people fb:en.veronica_lake)) (value (list (name fb:en.renal_failure "Renal failure") (name fb:en.hepatitis Hepatitis) (name fb:en.acute_kidney_injury "Acute renal failure"))) (type fb:people.cause_of_death) who did sir francis drake marry? Elizabeth Sydenham 12.438 formula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.francis_drake)) (value (list (name fb:m.0k1nmzm "Elizabeth Sydenham") (name fb:m.0k1nmz5 "Mary Newman"))) (type fb:people.person) who did sir francis drake marry? Mary Newman 12.438 formula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.francis_drake)) (value (list (name fb:m.0k1nmzm "Elizabeth Sydenham") (name fb:m.0k1nmz5 "Mary Newman"))) (type fb:people.person) who plays stephanie plum in one for the money? Katherine Heigl 12.552 formula (fb:film.actor.film (and (fb:film.performance.character fb:en.stephanie_plum) (fb:film.performance.film fb:m.0g5sxb4)))) (value (list (name fb:en.katherine_heigl "Katherine Heigl"))) (type fb:film.actor) what does ringo sing? Rock music 7.904 formula (fb:music.genre.artists fb:en.ringo_starr)) (value (list (name fb:en.rock_music "Rock music") (name fb:en.pop_music "Pop music") (name fb:en.psychedelic_rock "Psychedelic rock") (name fb:en.world_music "World music"))) (type fb:music.genre) what does ringo sing? Pop music 7.904 formula (fb:music.genre.artists fb:en.ringo_starr)) (value (list (name fb:en.rock_music "Rock music") (name fb:en.pop_music "Pop music") (name fb:en.psychedelic_rock "Psychedelic rock") (name fb:en.world_music "World music"))) (type fb:music.genre) what does ringo sing? Psychedelic rock 7.904 formula (fb:music.genre.artists fb:en.ringo_starr)) (value (list (name fb:en.rock_music "Rock music") (name fb:en.pop_music "Pop music") (name fb:en.psychedelic_rock "Psychedelic rock") (name fb:en.world_music "World music"))) (type fb:music.genre) what does ringo sing? World music 7.904 formula (fb:music.genre.artists fb:en.ringo_starr)) (value (list (name fb:en.rock_music "Rock music") (name fb:en.pop_music "Pop music") (name fb:en.psychedelic_rock "Psychedelic rock") (name fb:en.world_music "World music"))) (type fb:music.genre) what type of government does australia have? Parliamentary system 13.515 formula (fb:government.form_of_government.countries fb:en.australia)) (value (list (name fb:en.parliamentary_system "Parliamentary system") (name fb:en.constitutional_monarchy "Constitutional monarchy") (name fb:en.federal_constitutional_monarchy "Federal monarchy"))) (type fb:government.form_of_government) what type of government does australia have? Constitutional monarchy 13.515 formula (fb:government.form_of_government.countries fb:en.australia)) (value (list (name fb:en.parliamentary_system "Parliamentary system") (name fb:en.constitutional_monarchy "Constitutional monarchy") (name fb:en.federal_constitutional_monarchy "Federal monarchy"))) (type fb:government.form_of_government) what type of government does australia have? Federal monarchy 13.515 formula (fb:government.form_of_government.countries fb:en.australia)) (value (list (name fb:en.parliamentary_system "Parliamentary system") (name fb:en.constitutional_monarchy "Constitutional monarchy") (name fb:en.federal_constitutional_monarchy "Federal monarchy"))) (type fb:government.form_of_government) where is the university of maryland medical school? United States of America 9.163 formula (and (fb:type.object.type fb:location.location) (!fb:location.location.containedby fb:en.maryland))) (value (list (name fb:en.united_states_of_america "United States of America") (name fb:m.0hzc9m5 "United States, with Territories") (name fb:en.conterminous_united_states "Contiguous United States"))) (type fb:location.location) where is the university of maryland medical school? United States, with Territories 9.163 formula (and (fb:type.object.type fb:location.location) (!fb:location.location.containedby fb:en.maryland))) (value (list (name fb:en.united_states_of_america "United States of America") (name fb:m.0hzc9m5 "United States, with Territories") (name fb:en.conterminous_united_states "Contiguous United States"))) (type fb:location.location) where is the university of maryland medical school? Contiguous United States 9.163 formula (and (fb:type.object.type fb:location.location) (!fb:location.location.containedby fb:en.maryland))) (value (list (name fb:en.united_states_of_america "United States of America") (name fb:m.0hzc9m5 "United States, with Territories") (name fb:en.conterminous_united_states "Contiguous United States"))) (type fb:location.location) where did salvador dali study art? New York City 0.893 formula (and (fb:type.object.type fb:location.location) (!fb:book.book_edition.place_of_publication fb:m.0c5psvt))) (value (list (name fb:en.new_york_ny "New York City"))) (type fb:location.location) who was the father of king george vi? George V 12.739 formula (!fb:people.person.parents fb:en.george_vi_of_the_united_kingdom)) (value (list (name fb:en.george_v_of_the_united_kingdom "George V") (name fb:en.mary_of_teck "Mary of Teck"))) (type fb:people.person) who was the father of king george vi? Mary of Teck 12.739 formula (!fb:people.person.parents fb:en.george_vi_of_the_united_kingdom)) (value (list (name fb:en.george_v_of_the_united_kingdom "George V") (name fb:en.mary_of_teck "Mary of Teck"))) (type fb:people.person) what national team does cristiano ronaldo play for? Portugal national football team 18.051 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo))) (value (list (name fb:en.portugal_national_football_team "Portugal national football team") (name fb:en.sporting_clube_de_portugal "Sporting Clube de Portugal") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.real_madrid "Real Madrid C.F."))) (type fb:soccer.football_team) what national team does cristiano ronaldo play for? Sporting Clube de Portugal 18.051 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo))) (value (list (name fb:en.portugal_national_football_team "Portugal national football team") (name fb:en.sporting_clube_de_portugal "Sporting Clube de Portugal") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.real_madrid "Real Madrid C.F."))) (type fb:soccer.football_team) what national team does cristiano ronaldo play for? Manchester United F.C. 18.051 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo))) (value (list (name fb:en.portugal_national_football_team "Portugal national football team") (name fb:en.sporting_clube_de_portugal "Sporting Clube de Portugal") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.real_madrid "Real Madrid C.F."))) (type fb:soccer.football_team) what national team does cristiano ronaldo play for? Real Madrid C.F. 18.051 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo))) (value (list (name fb:en.portugal_national_football_team "Portugal national football team") (name fb:en.sporting_clube_de_portugal "Sporting Clube de Portugal") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.real_madrid "Real Madrid C.F."))) (type fb:soccer.football_team) what flower is on the oklahoma quarter? Papilio polyxenes 12.738 formula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.oklahoma)) (value (list (name fb:en.milk Milk) (name fb:en.black_swallowtail "Papilio polyxenes") (name fb:en.labor_omnia_vincit "Labor omnia vincit") (name fb:en.white_bass "White bass") (name fb:en.oklahoma_rose "Rosa 'Oklahoma'") (name fb:en.common_collared_lizard "Common collared lizard") (name fb:en.bullfrog "American bullfrog") (name fb:en.eastern_redbud "Cercis canadensis") (name fb:en.scissor-tailed_flycatcher "Scissor-tailed Flycatcher"))) (type fb:location.symbol_of_administrative_division) what flower is on the oklahoma quarter? Labor omnia vincit 12.738 formula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.oklahoma)) (value (list (name fb:en.milk Milk) (name fb:en.black_swallowtail "Papilio polyxenes") (name fb:en.labor_omnia_vincit "Labor omnia vincit") (name fb:en.white_bass "White bass") (name fb:en.oklahoma_rose "Rosa 'Oklahoma'") (name fb:en.common_collared_lizard "Common collared lizard") (name fb:en.bullfrog "American bullfrog") (name fb:en.eastern_redbud "Cercis canadensis") (name fb:en.scissor-tailed_flycatcher "Scissor-tailed Flycatcher"))) (type fb:location.symbol_of_administrative_division) what flower is on the oklahoma quarter? White bass 12.738 formula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.oklahoma)) (value (list (name fb:en.milk Milk) (name fb:en.black_swallowtail "Papilio polyxenes") (name fb:en.labor_omnia_vincit "Labor omnia vincit") (name fb:en.white_bass "White bass") (name fb:en.oklahoma_rose "Rosa 'Oklahoma'") (name fb:en.common_collared_lizard "Common collared lizard") (name fb:en.bullfrog "American bullfrog") (name fb:en.eastern_redbud "Cercis canadensis") (name fb:en.scissor-tailed_flycatcher "Scissor-tailed Flycatcher"))) (type fb:location.symbol_of_administrative_division) what flower is on the oklahoma quarter? Rosa 'Oklahoma' 12.738 formula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.oklahoma)) (value (list (name fb:en.milk Milk) (name fb:en.black_swallowtail "Papilio polyxenes") (name fb:en.labor_omnia_vincit "Labor omnia vincit") (name fb:en.white_bass "White bass") (name fb:en.oklahoma_rose "Rosa 'Oklahoma'") (name fb:en.common_collared_lizard "Common collared lizard") (name fb:en.bullfrog "American bullfrog") (name fb:en.eastern_redbud "Cercis canadensis") (name fb:en.scissor-tailed_flycatcher "Scissor-tailed Flycatcher"))) (type fb:location.symbol_of_administrative_division) what flower is on the oklahoma quarter? Common collared lizard 12.738 formula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.oklahoma)) (value (list (name fb:en.milk Milk) (name fb:en.black_swallowtail "Papilio polyxenes") (name fb:en.labor_omnia_vincit "Labor omnia vincit") (name fb:en.white_bass "White bass") (name fb:en.oklahoma_rose "Rosa 'Oklahoma'") (name fb:en.common_collared_lizard "Common collared lizard") (name fb:en.bullfrog "American bullfrog") (name fb:en.eastern_redbud "Cercis canadensis") (name fb:en.scissor-tailed_flycatcher "Scissor-tailed Flycatcher"))) (type fb:location.symbol_of_administrative_division) what flower is on the oklahoma quarter? American bullfrog 12.738 formula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.oklahoma)) (value (list (name fb:en.milk Milk) (name fb:en.black_swallowtail "Papilio polyxenes") (name fb:en.labor_omnia_vincit "Labor omnia vincit") (name fb:en.white_bass "White bass") (name fb:en.oklahoma_rose "Rosa 'Oklahoma'") (name fb:en.common_collared_lizard "Common collared lizard") (name fb:en.bullfrog "American bullfrog") (name fb:en.eastern_redbud "Cercis canadensis") (name fb:en.scissor-tailed_flycatcher "Scissor-tailed Flycatcher"))) (type fb:location.symbol_of_administrative_division) what flower is on the oklahoma quarter? Cercis canadensis 12.738 formula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.oklahoma)) (value (list (name fb:en.milk Milk) (name fb:en.black_swallowtail "Papilio polyxenes") (name fb:en.labor_omnia_vincit "Labor omnia vincit") (name fb:en.white_bass "White bass") (name fb:en.oklahoma_rose "Rosa 'Oklahoma'") (name fb:en.common_collared_lizard "Common collared lizard") (name fb:en.bullfrog "American bullfrog") (name fb:en.eastern_redbud "Cercis canadensis") (name fb:en.scissor-tailed_flycatcher "Scissor-tailed Flycatcher"))) (type fb:location.symbol_of_administrative_division) what flower is on the oklahoma quarter? Scissor-tailed Flycatcher 12.738 formula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.oklahoma)) (value (list (name fb:en.milk Milk) (name fb:en.black_swallowtail "Papilio polyxenes") (name fb:en.labor_omnia_vincit "Labor omnia vincit") (name fb:en.white_bass "White bass") (name fb:en.oklahoma_rose "Rosa 'Oklahoma'") (name fb:en.common_collared_lizard "Common collared lizard") (name fb:en.bullfrog "American bullfrog") (name fb:en.eastern_redbud "Cercis canadensis") (name fb:en.scissor-tailed_flycatcher "Scissor-tailed Flycatcher"))) (type fb:location.symbol_of_administrative_division) what language is spoken in switzerland? German Language 17.305 formula (!fb:location.country.official_language fb:en.switzerland)) (value (list (name fb:en.german_language "German Language") (name fb:en.italian "Italian Language") (name fb:en.french "French Language") (name fb:en.romansh "Romansh language"))) (type fb:language.human_language) what language is spoken in switzerland? Italian Language 17.305 formula (!fb:location.country.official_language fb:en.switzerland)) (value (list (name fb:en.german_language "German Language") (name fb:en.italian "Italian Language") (name fb:en.french "French Language") (name fb:en.romansh "Romansh language"))) (type fb:language.human_language) what language is spoken in switzerland? French Language 17.305 formula (!fb:location.country.official_language fb:en.switzerland)) (value (list (name fb:en.german_language "German Language") (name fb:en.italian "Italian Language") (name fb:en.french "French Language") (name fb:en.romansh "Romansh language"))) (type fb:language.human_language) what language is spoken in switzerland? Romansh language 17.305 formula (!fb:location.country.official_language fb:en.switzerland)) (value (list (name fb:en.german_language "German Language") (name fb:en.italian "Italian Language") (name fb:en.french "French Language") (name fb:en.romansh "Romansh language"))) (type fb:language.human_language) who was philip in acts chapter 8? The Secrets of the Golden Compass 4.939 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.philip_pullman)) (value (list (name fb:m.0crvjmz "The Secrets of the Golden Compass") (name fb:m.0csbmxj "The World of Philip Pullman"))) (type fb:film.film) who was philip in acts chapter 8? The World of Philip Pullman 4.939 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.philip_pullman)) (value (list (name fb:m.0crvjmz "The Secrets of the Golden Compass") (name fb:m.0csbmxj "The World of Philip Pullman"))) (type fb:film.film) what islands did darwin study finches on? Skycity Darwin 7.51 formula (!fb:travel.travel_destination.tourist_attractions fb:en.darwin)) (value (list (name fb:en.skycity_darwin "Skycity Darwin") (name fb:en.darwin_entertainment_centre "Darwin Entertainment Centre") (name fb:m.0406950 "Bicentennial Park") (name fb:en.east_point_military_museum "Darwin Military Museum") (name fb:en.government_house_darwin "Government House, Darwin") (name fb:en.parliament_house_darwin "Parliament House, Darwin") (name fb:en.museum_and_art_gallery_of_the_northern_territory "Museum and Art Gallery of the Northern Territory") (name fb:en.darwin_convention_centre "Darwin Convention Centre") (name fb:en.darwin_international_guitar_festival "Darwin International Guitar Festival") (name fb:en.mindil_beach_northern_territory "Mindil Beach"))) (type fb:travel.tourist_attraction) what islands did darwin study finches on? Darwin Entertainment Centre 7.51 formula (!fb:travel.travel_destination.tourist_attractions fb:en.darwin)) (value (list (name fb:en.skycity_darwin "Skycity Darwin") (name fb:en.darwin_entertainment_centre "Darwin Entertainment Centre") (name fb:m.0406950 "Bicentennial Park") (name fb:en.east_point_military_museum "Darwin Military Museum") (name fb:en.government_house_darwin "Government House, Darwin") (name fb:en.parliament_house_darwin "Parliament House, Darwin") (name fb:en.museum_and_art_gallery_of_the_northern_territory "Museum and Art Gallery of the Northern Territory") (name fb:en.darwin_convention_centre "Darwin Convention Centre") (name fb:en.darwin_international_guitar_festival "Darwin International Guitar Festival") (name fb:en.mindil_beach_northern_territory "Mindil Beach"))) (type fb:travel.tourist_attraction) what islands did darwin study finches on? Bicentennial Park 7.51 formula (!fb:travel.travel_destination.tourist_attractions fb:en.darwin)) (value (list (name fb:en.skycity_darwin "Skycity Darwin") (name fb:en.darwin_entertainment_centre "Darwin Entertainment Centre") (name fb:m.0406950 "Bicentennial Park") (name fb:en.east_point_military_museum "Darwin Military Museum") (name fb:en.government_house_darwin "Government House, Darwin") (name fb:en.parliament_house_darwin "Parliament House, Darwin") (name fb:en.museum_and_art_gallery_of_the_northern_territory "Museum and Art Gallery of the Northern Territory") (name fb:en.darwin_convention_centre "Darwin Convention Centre") (name fb:en.darwin_international_guitar_festival "Darwin International Guitar Festival") (name fb:en.mindil_beach_northern_territory "Mindil Beach"))) (type fb:travel.tourist_attraction) what islands did darwin study finches on? Darwin Military Museum 7.51 formula (!fb:travel.travel_destination.tourist_attractions fb:en.darwin)) (value (list (name fb:en.skycity_darwin "Skycity Darwin") (name fb:en.darwin_entertainment_centre "Darwin Entertainment Centre") (name fb:m.0406950 "Bicentennial Park") (name fb:en.east_point_military_museum "Darwin Military Museum") (name fb:en.government_house_darwin "Government House, Darwin") (name fb:en.parliament_house_darwin "Parliament House, Darwin") (name fb:en.museum_and_art_gallery_of_the_northern_territory "Museum and Art Gallery of the Northern Territory") (name fb:en.darwin_convention_centre "Darwin Convention Centre") (name fb:en.darwin_international_guitar_festival "Darwin International Guitar Festival") (name fb:en.mindil_beach_northern_territory "Mindil Beach"))) (type fb:travel.tourist_attraction) what islands did darwin study finches on? Government House, Darwin 7.51 formula (!fb:travel.travel_destination.tourist_attractions fb:en.darwin)) (value (list (name fb:en.skycity_darwin "Skycity Darwin") (name fb:en.darwin_entertainment_centre "Darwin Entertainment Centre") (name fb:m.0406950 "Bicentennial Park") (name fb:en.east_point_military_museum "Darwin Military Museum") (name fb:en.government_house_darwin "Government House, Darwin") (name fb:en.parliament_house_darwin "Parliament House, Darwin") (name fb:en.museum_and_art_gallery_of_the_northern_territory "Museum and Art Gallery of the Northern Territory") (name fb:en.darwin_convention_centre "Darwin Convention Centre") (name fb:en.darwin_international_guitar_festival "Darwin International Guitar Festival") (name fb:en.mindil_beach_northern_territory "Mindil Beach"))) (type fb:travel.tourist_attraction) what islands did darwin study finches on? Parliament House, Darwin 7.51 formula (!fb:travel.travel_destination.tourist_attractions fb:en.darwin)) (value (list (name fb:en.skycity_darwin "Skycity Darwin") (name fb:en.darwin_entertainment_centre "Darwin Entertainment Centre") (name fb:m.0406950 "Bicentennial Park") (name fb:en.east_point_military_museum "Darwin Military Museum") (name fb:en.government_house_darwin "Government House, Darwin") (name fb:en.parliament_house_darwin "Parliament House, Darwin") (name fb:en.museum_and_art_gallery_of_the_northern_territory "Museum and Art Gallery of the Northern Territory") (name fb:en.darwin_convention_centre "Darwin Convention Centre") (name fb:en.darwin_international_guitar_festival "Darwin International Guitar Festival") (name fb:en.mindil_beach_northern_territory "Mindil Beach"))) (type fb:travel.tourist_attraction) what islands did darwin study finches on? Museum and Art Gallery of the Northern Territory 7.51 formula (!fb:travel.travel_destination.tourist_attractions fb:en.darwin)) (value (list (name fb:en.skycity_darwin "Skycity Darwin") (name fb:en.darwin_entertainment_centre "Darwin Entertainment Centre") (name fb:m.0406950 "Bicentennial Park") (name fb:en.east_point_military_museum "Darwin Military Museum") (name fb:en.government_house_darwin "Government House, Darwin") (name fb:en.parliament_house_darwin "Parliament House, Darwin") (name fb:en.museum_and_art_gallery_of_the_northern_territory "Museum and Art Gallery of the Northern Territory") (name fb:en.darwin_convention_centre "Darwin Convention Centre") (name fb:en.darwin_international_guitar_festival "Darwin International Guitar Festival") (name fb:en.mindil_beach_northern_territory "Mindil Beach"))) (type fb:travel.tourist_attraction) what islands did darwin study finches on? Darwin Convention Centre 7.51 formula (!fb:travel.travel_destination.tourist_attractions fb:en.darwin)) (value (list (name fb:en.skycity_darwin "Skycity Darwin") (name fb:en.darwin_entertainment_centre "Darwin Entertainment Centre") (name fb:m.0406950 "Bicentennial Park") (name fb:en.east_point_military_museum "Darwin Military Museum") (name fb:en.government_house_darwin "Government House, Darwin") (name fb:en.parliament_house_darwin "Parliament House, Darwin") (name fb:en.museum_and_art_gallery_of_the_northern_territory "Museum and Art Gallery of the Northern Territory") (name fb:en.darwin_convention_centre "Darwin Convention Centre") (name fb:en.darwin_international_guitar_festival "Darwin International Guitar Festival") (name fb:en.mindil_beach_northern_territory "Mindil Beach"))) (type fb:travel.tourist_attraction) what islands did darwin study finches on? Darwin International Guitar Festival 7.51 formula (!fb:travel.travel_destination.tourist_attractions fb:en.darwin)) (value (list (name fb:en.skycity_darwin "Skycity Darwin") (name fb:en.darwin_entertainment_centre "Darwin Entertainment Centre") (name fb:m.0406950 "Bicentennial Park") (name fb:en.east_point_military_museum "Darwin Military Museum") (name fb:en.government_house_darwin "Government House, Darwin") (name fb:en.parliament_house_darwin "Parliament House, Darwin") (name fb:en.museum_and_art_gallery_of_the_northern_territory "Museum and Art Gallery of the Northern Territory") (name fb:en.darwin_convention_centre "Darwin Convention Centre") (name fb:en.darwin_international_guitar_festival "Darwin International Guitar Festival") (name fb:en.mindil_beach_northern_territory "Mindil Beach"))) (type fb:travel.tourist_attraction) what islands did darwin study finches on? Mindil Beach 7.51 formula (!fb:travel.travel_destination.tourist_attractions fb:en.darwin)) (value (list (name fb:en.skycity_darwin "Skycity Darwin") (name fb:en.darwin_entertainment_centre "Darwin Entertainment Centre") (name fb:m.0406950 "Bicentennial Park") (name fb:en.east_point_military_museum "Darwin Military Museum") (name fb:en.government_house_darwin "Government House, Darwin") (name fb:en.parliament_house_darwin "Parliament House, Darwin") (name fb:en.museum_and_art_gallery_of_the_northern_territory "Museum and Art Gallery of the Northern Territory") (name fb:en.darwin_convention_centre "Darwin Convention Centre") (name fb:en.darwin_international_guitar_festival "Darwin International Guitar Festival") (name fb:en.mindil_beach_northern_territory "Mindil Beach"))) (type fb:travel.tourist_attraction) what the time zone in england? Greenwich Mean Time 19.685 formula (and (fb:type.object.type fb:time.time_zone) (fb:time.time_zone.locations_in_this_time_zone fb:en.england))) (value (list (name fb:en.greenwich_mean_time "Greenwich Mean Time") (name fb:en.utcplus0 UTC±00:00))) (type (union fb:time.time_zone)) what does egfr african american mean on a blood test? Entertainment Weekly annotation index 9.703 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.blood_test)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index"))) (type fb:common.annotation_index) what is the best currency to take to turkey? Turkish lira 23.03 formula (!fb:location.country.currency_used fb:en.turkey)) (value (list (name fb:en.turkish_lira "Turkish lira"))) (type fb:finance.currency) what system of government is practiced in nigeria? Federal republic 12.106 formula (!fb:location.country.form_of_government fb:en.nigeria)) (value (list (name fb:en.federal_republic "Federal republic") (name fb:en.presidential_system "Presidential system"))) (type fb:government.form_of_government) what system of government is practiced in nigeria? Presidential system 12.106 formula (!fb:location.country.form_of_government fb:en.nigeria)) (value (list (name fb:en.federal_republic "Federal republic") (name fb:en.presidential_system "Presidential system"))) (type fb:government.form_of_government) where did holly madison get her breast implants? Las Vegas 3.723 formula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.holly_madison))) (value (list (name fb:en.las_vegas "Las Vegas") (name fb:en.prince_of_wales_island "Prince of Wales Island") (name fb:en.oregon Oregon) (name fb:en.los_angeles "Los Angeles"))) (type fb:location.location) where did holly madison get her breast implants? Prince of Wales Island 3.723 formula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.holly_madison))) (value (list (name fb:en.las_vegas "Las Vegas") (name fb:en.prince_of_wales_island "Prince of Wales Island") (name fb:en.oregon Oregon) (name fb:en.los_angeles "Los Angeles"))) (type fb:location.location) where did holly madison get her breast implants? Los Angeles 3.723 formula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.holly_madison))) (value (list (name fb:en.las_vegas "Las Vegas") (name fb:en.prince_of_wales_island "Prince of Wales Island") (name fb:en.oregon Oregon) (name fb:en.los_angeles "Los Angeles"))) (type fb:location.location) who were mary shelley? Mary Wollstonecraft 3.143 formula (and (fb:type.object.type fb:people.person) (fb:people.person.children fb:en.mary_shelley))) (value (list (name fb:en.mary_wollstonecraft "Mary Wollstonecraft") (name fb:en.william_godwin "William Godwin"))) (type fb:people.person) who were mary shelley? William Godwin 3.143 formula (and (fb:type.object.type fb:people.person) (fb:people.person.children fb:en.mary_shelley))) (value (list (name fb:en.mary_wollstonecraft "Mary Wollstonecraft") (name fb:en.william_godwin "William Godwin"))) (type fb:people.person) what language do most australians speak? English Language 12.952 formula (!fb:people.ethnicity.languages_spoken fb:en.australian_people)) (value (list (name fb:en.english "English Language") (name fb:en.italian "Italian Language") (name fb:en.chinese_language "Chinese language") (name fb:en.greek_language "Greek Language"))) (type fb:language.human_language) what language do most australians speak? Italian Language 12.952 formula (!fb:people.ethnicity.languages_spoken fb:en.australian_people)) (value (list (name fb:en.english "English Language") (name fb:en.italian "Italian Language") (name fb:en.chinese_language "Chinese language") (name fb:en.greek_language "Greek Language"))) (type fb:language.human_language) what language do most australians speak? Chinese language 12.952 formula (!fb:people.ethnicity.languages_spoken fb:en.australian_people)) (value (list (name fb:en.english "English Language") (name fb:en.italian "Italian Language") (name fb:en.chinese_language "Chinese language") (name fb:en.greek_language "Greek Language"))) (type fb:language.human_language) what language do most australians speak? Greek Language 12.952 formula (!fb:people.ethnicity.languages_spoken fb:en.australian_people)) (value (list (name fb:en.english "English Language") (name fb:en.italian "Italian Language") (name fb:en.chinese_language "Chinese language") (name fb:en.greek_language "Greek Language"))) (type fb:language.human_language) where was teddy roosevelt's house? James Wilson -1.903 formula ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.series (var x)))) fb:m.04p5cr)) (value (list (name fb:m.0cfp9_ "James Wilson") (name fb:en.eric_foreman "Eric Foreman") (name fb:en.robert_chase "Robert Chase") (name fb:en.gregory_house "Dr. Gregory House") (name fb:en.chris_taub "Chris Taub") (name fb:en.lisa_cuddy "Lisa Cuddy") (name fb:en.allison_cameron "Allison Cameron") (name fb:m.0nf3bkl "Dr. Amber Volakis") (name fb:en.lawrence_kutner "Lawrence Kutner") (name fb:m.0nf3byp "Rachel Taub"))) (type fb:tv.tv_character) where was teddy roosevelt's house? Eric Foreman -1.903 formula ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.series (var x)))) fb:m.04p5cr)) (value (list (name fb:m.0cfp9_ "James Wilson") (name fb:en.eric_foreman "Eric Foreman") (name fb:en.robert_chase "Robert Chase") (name fb:en.gregory_house "Dr. Gregory House") (name fb:en.chris_taub "Chris Taub") (name fb:en.lisa_cuddy "Lisa Cuddy") (name fb:en.allison_cameron "Allison Cameron") (name fb:m.0nf3bkl "Dr. Amber Volakis") (name fb:en.lawrence_kutner "Lawrence Kutner") (name fb:m.0nf3byp "Rachel Taub"))) (type fb:tv.tv_character) where was teddy roosevelt's house? Robert Chase -1.903 formula ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.series (var x)))) fb:m.04p5cr)) (value (list (name fb:m.0cfp9_ "James Wilson") (name fb:en.eric_foreman "Eric Foreman") (name fb:en.robert_chase "Robert Chase") (name fb:en.gregory_house "Dr. Gregory House") (name fb:en.chris_taub "Chris Taub") (name fb:en.lisa_cuddy "Lisa Cuddy") (name fb:en.allison_cameron "Allison Cameron") (name fb:m.0nf3bkl "Dr. Amber Volakis") (name fb:en.lawrence_kutner "Lawrence Kutner") (name fb:m.0nf3byp "Rachel Taub"))) (type fb:tv.tv_character) where was teddy roosevelt's house? Dr. Gregory House -1.903 formula ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.series (var x)))) fb:m.04p5cr)) (value (list (name fb:m.0cfp9_ "James Wilson") (name fb:en.eric_foreman "Eric Foreman") (name fb:en.robert_chase "Robert Chase") (name fb:en.gregory_house "Dr. Gregory House") (name fb:en.chris_taub "Chris Taub") (name fb:en.lisa_cuddy "Lisa Cuddy") (name fb:en.allison_cameron "Allison Cameron") (name fb:m.0nf3bkl "Dr. Amber Volakis") (name fb:en.lawrence_kutner "Lawrence Kutner") (name fb:m.0nf3byp "Rachel Taub"))) (type fb:tv.tv_character) where was teddy roosevelt's house? Chris Taub -1.903 formula ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.series (var x)))) fb:m.04p5cr)) (value (list (name fb:m.0cfp9_ "James Wilson") (name fb:en.eric_foreman "Eric Foreman") (name fb:en.robert_chase "Robert Chase") (name fb:en.gregory_house "Dr. Gregory House") (name fb:en.chris_taub "Chris Taub") (name fb:en.lisa_cuddy "Lisa Cuddy") (name fb:en.allison_cameron "Allison Cameron") (name fb:m.0nf3bkl "Dr. Amber Volakis") (name fb:en.lawrence_kutner "Lawrence Kutner") (name fb:m.0nf3byp "Rachel Taub"))) (type fb:tv.tv_character) where was teddy roosevelt's house? Lisa Cuddy -1.903 formula ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.series (var x)))) fb:m.04p5cr)) (value (list (name fb:m.0cfp9_ "James Wilson") (name fb:en.eric_foreman "Eric Foreman") (name fb:en.robert_chase "Robert Chase") (name fb:en.gregory_house "Dr. Gregory House") (name fb:en.chris_taub "Chris Taub") (name fb:en.lisa_cuddy "Lisa Cuddy") (name fb:en.allison_cameron "Allison Cameron") (name fb:m.0nf3bkl "Dr. Amber Volakis") (name fb:en.lawrence_kutner "Lawrence Kutner") (name fb:m.0nf3byp "Rachel Taub"))) (type fb:tv.tv_character) where was teddy roosevelt's house? Allison Cameron -1.903 formula ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.series (var x)))) fb:m.04p5cr)) (value (list (name fb:m.0cfp9_ "James Wilson") (name fb:en.eric_foreman "Eric Foreman") (name fb:en.robert_chase "Robert Chase") (name fb:en.gregory_house "Dr. Gregory House") (name fb:en.chris_taub "Chris Taub") (name fb:en.lisa_cuddy "Lisa Cuddy") (name fb:en.allison_cameron "Allison Cameron") (name fb:m.0nf3bkl "Dr. Amber Volakis") (name fb:en.lawrence_kutner "Lawrence Kutner") (name fb:m.0nf3byp "Rachel Taub"))) (type fb:tv.tv_character) where was teddy roosevelt's house? Dr. Amber Volakis -1.903 formula ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.series (var x)))) fb:m.04p5cr)) (value (list (name fb:m.0cfp9_ "James Wilson") (name fb:en.eric_foreman "Eric Foreman") (name fb:en.robert_chase "Robert Chase") (name fb:en.gregory_house "Dr. Gregory House") (name fb:en.chris_taub "Chris Taub") (name fb:en.lisa_cuddy "Lisa Cuddy") (name fb:en.allison_cameron "Allison Cameron") (name fb:m.0nf3bkl "Dr. Amber Volakis") (name fb:en.lawrence_kutner "Lawrence Kutner") (name fb:m.0nf3byp "Rachel Taub"))) (type fb:tv.tv_character) where was teddy roosevelt's house? Lawrence Kutner -1.903 formula ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.series (var x)))) fb:m.04p5cr)) (value (list (name fb:m.0cfp9_ "James Wilson") (name fb:en.eric_foreman "Eric Foreman") (name fb:en.robert_chase "Robert Chase") (name fb:en.gregory_house "Dr. Gregory House") (name fb:en.chris_taub "Chris Taub") (name fb:en.lisa_cuddy "Lisa Cuddy") (name fb:en.allison_cameron "Allison Cameron") (name fb:m.0nf3bkl "Dr. Amber Volakis") (name fb:en.lawrence_kutner "Lawrence Kutner") (name fb:m.0nf3byp "Rachel Taub"))) (type fb:tv.tv_character) where was teddy roosevelt's house? Rachel Taub -1.903 formula ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.series (var x)))) fb:m.04p5cr)) (value (list (name fb:m.0cfp9_ "James Wilson") (name fb:en.eric_foreman "Eric Foreman") (name fb:en.robert_chase "Robert Chase") (name fb:en.gregory_house "Dr. Gregory House") (name fb:en.chris_taub "Chris Taub") (name fb:en.lisa_cuddy "Lisa Cuddy") (name fb:en.allison_cameron "Allison Cameron") (name fb:m.0nf3bkl "Dr. Amber Volakis") (name fb:en.lawrence_kutner "Lawrence Kutner") (name fb:m.0nf3byp "Rachel Taub"))) (type fb:tv.tv_character) what is the government system of malaysia? Parliamentary system 12.059 formula (!fb:location.country.form_of_government fb:en.malaysia)) (value (list (name fb:en.democracy Democracy) (name fb:en.parliamentary_system "Parliamentary system") (name fb:en.constitutional_monarchy "Constitutional monarchy") (name fb:en.elective_monarchy "Elective monarchy"))) (type fb:government.form_of_government) what is the government system of malaysia? Constitutional monarchy 12.059 formula (!fb:location.country.form_of_government fb:en.malaysia)) (value (list (name fb:en.democracy Democracy) (name fb:en.parliamentary_system "Parliamentary system") (name fb:en.constitutional_monarchy "Constitutional monarchy") (name fb:en.elective_monarchy "Elective monarchy"))) (type fb:government.form_of_government) what is the government system of malaysia? Elective monarchy 12.059 formula (!fb:location.country.form_of_government fb:en.malaysia)) (value (list (name fb:en.democracy Democracy) (name fb:en.parliamentary_system "Parliamentary system") (name fb:en.constitutional_monarchy "Constitutional monarchy") (name fb:en.elective_monarchy "Elective monarchy"))) (type fb:government.form_of_government) what do people speak in canada? English Language 10.536 formula (!fb:location.country.official_language fb:en.canada)) (value (list (name fb:en.english "English Language") (name fb:en.french "French Language"))) (type fb:language.human_language) what do people speak in canada? French Language 10.536 formula (!fb:location.country.official_language fb:en.canada)) (value (list (name fb:en.english "English Language") (name fb:en.french "French Language"))) (type fb:language.human_language) what type of money do they use in costa rica? Costa Rican colón 16.751 formula (fb:finance.currency.countries_used fb:en.costa_rica)) (value (list (name fb:en.costa_rican_colon "Costa Rican colón"))) (type fb:finance.currency) what timezone is nashville tn? Entertainment Weekly annotation index 8.303 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.nashville_tennessee)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index"))) (type fb:common.annotation_index) what timezone is nashville tn? WSJ Speakeasy Index 8.303 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.nashville_tennessee)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index"))) (type fb:common.annotation_index) what is the largest nation in europe? Kingdom of the Netherlands 17.164 formula (and (fb:type.object.type fb:location.country) (!fb:location.location.contains_major_portion_of fb:en.europe))) (value (list (name fb:en.france France) (name fb:en.spain Spain) (name fb:en.netherlands Netherlands) (name fb:en.portugal Portugal) (name fb:en.kingdom_of_the_netherlands "Kingdom of the Netherlands"))) (type (union fb:location.country)) where was the first gulf war fought? Saudi Arabia 9.078 formula (and (fb:type.object.type fb:location.location) (fb:location.location.events fb:en.gulf_war))) (value (list (name fb:en.israel Israel) (name fb:en.saudi_arabia "Saudi Arabia") (name fb:en.iraq Iraq) (name fb:en.kuwait Kuwait) (name fb:en.persian_gulf "Persian Gulf") (name fb:en.arabian_peninsula "Arabian Peninsula"))) (type fb:location.location) where was the first gulf war fought? Persian Gulf 9.078 formula (and (fb:type.object.type fb:location.location) (fb:location.location.events fb:en.gulf_war))) (value (list (name fb:en.israel Israel) (name fb:en.saudi_arabia "Saudi Arabia") (name fb:en.iraq Iraq) (name fb:en.kuwait Kuwait) (name fb:en.persian_gulf "Persian Gulf") (name fb:en.arabian_peninsula "Arabian Peninsula"))) (type fb:location.location) where was the first gulf war fought? Arabian Peninsula 9.078 formula (and (fb:type.object.type fb:location.location) (fb:location.location.events fb:en.gulf_war))) (value (list (name fb:en.israel Israel) (name fb:en.saudi_arabia "Saudi Arabia") (name fb:en.iraq Iraq) (name fb:en.kuwait Kuwait) (name fb:en.persian_gulf "Persian Gulf") (name fb:en.arabian_peninsula "Arabian Peninsula"))) (type fb:location.location) who are the senators of virginia 2013? Tim Kaine 18.298 formula (!fb:government.government_position_held.office_holder (and (!fb:government.political_district.representatives fb:en.virginia) (fb:government.government_position_held.from (date 2013 -1 -1))))) (value (list (name fb:en.tim_kaine "Tim Kaine"))) (type fb:government.politician) what band was george clinton in? The Parliaments 8.44 formula ((lambda x (!fb:music.group_membership.group (!fb:music.group_member.membership (var x)))) fb:en.george_clinton)) (value (list (name fb:en.parliament-funkadelic Parliament-Funkadelic) (name fb:en.funkadelic Funkadelic) (name fb:en.the_parliaments "The Parliaments") (name fb:m.01q_34l "P-Funk All Stars") (name fb:en.george_clinton_bootsy_collins "George Clinton & Bootsy Collins"))) (type fb:music.musical_group) what band was george clinton in? P-Funk All Stars 8.44 formula ((lambda x (!fb:music.group_membership.group (!fb:music.group_member.membership (var x)))) fb:en.george_clinton)) (value (list (name fb:en.parliament-funkadelic Parliament-Funkadelic) (name fb:en.funkadelic Funkadelic) (name fb:en.the_parliaments "The Parliaments") (name fb:m.01q_34l "P-Funk All Stars") (name fb:en.george_clinton_bootsy_collins "George Clinton & Bootsy Collins"))) (type fb:music.musical_group) what band was george clinton in? George Clinton & Bootsy Collins 8.44 formula ((lambda x (!fb:music.group_membership.group (!fb:music.group_member.membership (var x)))) fb:en.george_clinton)) (value (list (name fb:en.parliament-funkadelic Parliament-Funkadelic) (name fb:en.funkadelic Funkadelic) (name fb:en.the_parliaments "The Parliaments") (name fb:m.01q_34l "P-Funk All Stars") (name fb:en.george_clinton_bootsy_collins "George Clinton & Bootsy Collins"))) (type fb:music.musical_group) what country borders slovakia? Czech Republic 9.568 formula (and (fb:type.object.type fb:location.country) ((lambda x (!fb:location.adjoining_relationship.adjoins (!fb:location.location.adjoin_s (var x)))) fb:en.slovakia))) (value (list (name fb:en.hungary Hungary) (name fb:en.austria Austria) (name fb:en.poland Poland) (name fb:en.ukraine Ukraine) (name fb:en.czech_republic "Czech Republic"))) (type fb:location.country) what was james garfield most known for? Myocardial infarction 7.395 formula (fb:people.cause_of_death.people fb:en.james_garfield)) (value (list (name fb:en.pneumonia Pneumonia) (name fb:en.heart_failure "Myocardial infarction") (name fb:en.sepsis Sepsis))) (type fb:people.cause_of_death) where did paula deen go to school? Albany High School 10.321 formula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.paula_deen)))) (value (list (name fb:m.0610np "Albany High School"))) (type fb:education.educational_institution) what style of music does michael jackson perform? Rock music 15.681 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.michael_jackson))) (value (list (name fb:en.rock_music "Rock music") (name fb:en.pop_music "Pop music") (name fb:en.dance_music "Dance music") (name fb:en.new_jack_swing "New jack swing") (name fb:en.dance-pop Dance-pop) (name fb:en.contemporary_r_b "Contemporary R&B") (name fb:en.electronic_music "Electronic music") (name fb:en.rhythm_and_blues "Rhythm and blues") (name fb:en.soul_music "Soul music") (name fb:en.funk Funk))) (type (union fb:music.genre)) what style of music does michael jackson perform? Pop music 15.681 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.michael_jackson))) (value (list (name fb:en.rock_music "Rock music") (name fb:en.pop_music "Pop music") (name fb:en.dance_music "Dance music") (name fb:en.new_jack_swing "New jack swing") (name fb:en.dance-pop Dance-pop) (name fb:en.contemporary_r_b "Contemporary R&B") (name fb:en.electronic_music "Electronic music") (name fb:en.rhythm_and_blues "Rhythm and blues") (name fb:en.soul_music "Soul music") (name fb:en.funk Funk))) (type (union fb:music.genre)) what style of music does michael jackson perform? Dance music 15.681 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.michael_jackson))) (value (list (name fb:en.rock_music "Rock music") (name fb:en.pop_music "Pop music") (name fb:en.dance_music "Dance music") (name fb:en.new_jack_swing "New jack swing") (name fb:en.dance-pop Dance-pop) (name fb:en.contemporary_r_b "Contemporary R&B") (name fb:en.electronic_music "Electronic music") (name fb:en.rhythm_and_blues "Rhythm and blues") (name fb:en.soul_music "Soul music") (name fb:en.funk Funk))) (type (union fb:music.genre)) what style of music does michael jackson perform? New jack swing 15.681 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.michael_jackson))) (value (list (name fb:en.rock_music "Rock music") (name fb:en.pop_music "Pop music") (name fb:en.dance_music "Dance music") (name fb:en.new_jack_swing "New jack swing") (name fb:en.dance-pop Dance-pop) (name fb:en.contemporary_r_b "Contemporary R&B") (name fb:en.electronic_music "Electronic music") (name fb:en.rhythm_and_blues "Rhythm and blues") (name fb:en.soul_music "Soul music") (name fb:en.funk Funk))) (type (union fb:music.genre)) what style of music does michael jackson perform? Contemporary R&B 15.681 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.michael_jackson))) (value (list (name fb:en.rock_music "Rock music") (name fb:en.pop_music "Pop music") (name fb:en.dance_music "Dance music") (name fb:en.new_jack_swing "New jack swing") (name fb:en.dance-pop Dance-pop) (name fb:en.contemporary_r_b "Contemporary R&B") (name fb:en.electronic_music "Electronic music") (name fb:en.rhythm_and_blues "Rhythm and blues") (name fb:en.soul_music "Soul music") (name fb:en.funk Funk))) (type (union fb:music.genre)) what style of music does michael jackson perform? Electronic music 15.681 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.michael_jackson))) (value (list (name fb:en.rock_music "Rock music") (name fb:en.pop_music "Pop music") (name fb:en.dance_music "Dance music") (name fb:en.new_jack_swing "New jack swing") (name fb:en.dance-pop Dance-pop) (name fb:en.contemporary_r_b "Contemporary R&B") (name fb:en.electronic_music "Electronic music") (name fb:en.rhythm_and_blues "Rhythm and blues") (name fb:en.soul_music "Soul music") (name fb:en.funk Funk))) (type (union fb:music.genre)) what style of music does michael jackson perform? Rhythm and blues 15.681 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.michael_jackson))) (value (list (name fb:en.rock_music "Rock music") (name fb:en.pop_music "Pop music") (name fb:en.dance_music "Dance music") (name fb:en.new_jack_swing "New jack swing") (name fb:en.dance-pop Dance-pop) (name fb:en.contemporary_r_b "Contemporary R&B") (name fb:en.electronic_music "Electronic music") (name fb:en.rhythm_and_blues "Rhythm and blues") (name fb:en.soul_music "Soul music") (name fb:en.funk Funk))) (type (union fb:music.genre)) what style of music does michael jackson perform? Soul music 15.681 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.michael_jackson))) (value (list (name fb:en.rock_music "Rock music") (name fb:en.pop_music "Pop music") (name fb:en.dance_music "Dance music") (name fb:en.new_jack_swing "New jack swing") (name fb:en.dance-pop Dance-pop) (name fb:en.contemporary_r_b "Contemporary R&B") (name fb:en.electronic_music "Electronic music") (name fb:en.rhythm_and_blues "Rhythm and blues") (name fb:en.soul_music "Soul music") (name fb:en.funk Funk))) (type (union fb:music.genre)) what does david beckham play? Real Madrid C.F. 13.349 formula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham)) (value (list (name fb:en.real_madrid "Real Madrid C.F.") (name fb:en.los_angeles_galaxy "LA Galaxy") (name fb:en.ac_milan "A.C. Milan") (name fb:en.paris_saint-germain_fc "Paris Saint-Germain F.C.") (name fb:en.preston_north_end_fc "Preston North End F.C.") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.england_national_under-21_football_team "England national under-21 football team") (name fb:en.england_national_football_team "England national football team"))) (type fb:soccer.football_team) what does david beckham play? LA Galaxy 13.349 formula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham)) (value (list (name fb:en.real_madrid "Real Madrid C.F.") (name fb:en.los_angeles_galaxy "LA Galaxy") (name fb:en.ac_milan "A.C. Milan") (name fb:en.paris_saint-germain_fc "Paris Saint-Germain F.C.") (name fb:en.preston_north_end_fc "Preston North End F.C.") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.england_national_under-21_football_team "England national under-21 football team") (name fb:en.england_national_football_team "England national football team"))) (type fb:soccer.football_team) what does david beckham play? A.C. Milan 13.349 formula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham)) (value (list (name fb:en.real_madrid "Real Madrid C.F.") (name fb:en.los_angeles_galaxy "LA Galaxy") (name fb:en.ac_milan "A.C. Milan") (name fb:en.paris_saint-germain_fc "Paris Saint-Germain F.C.") (name fb:en.preston_north_end_fc "Preston North End F.C.") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.england_national_under-21_football_team "England national under-21 football team") (name fb:en.england_national_football_team "England national football team"))) (type fb:soccer.football_team) what does david beckham play? Paris Saint-Germain F.C. 13.349 formula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham)) (value (list (name fb:en.real_madrid "Real Madrid C.F.") (name fb:en.los_angeles_galaxy "LA Galaxy") (name fb:en.ac_milan "A.C. Milan") (name fb:en.paris_saint-germain_fc "Paris Saint-Germain F.C.") (name fb:en.preston_north_end_fc "Preston North End F.C.") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.england_national_under-21_football_team "England national under-21 football team") (name fb:en.england_national_football_team "England national football team"))) (type fb:soccer.football_team) what does david beckham play? Preston North End F.C. 13.349 formula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham)) (value (list (name fb:en.real_madrid "Real Madrid C.F.") (name fb:en.los_angeles_galaxy "LA Galaxy") (name fb:en.ac_milan "A.C. Milan") (name fb:en.paris_saint-germain_fc "Paris Saint-Germain F.C.") (name fb:en.preston_north_end_fc "Preston North End F.C.") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.england_national_under-21_football_team "England national under-21 football team") (name fb:en.england_national_football_team "England national football team"))) (type fb:soccer.football_team) what does david beckham play? Manchester United F.C. 13.349 formula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham)) (value (list (name fb:en.real_madrid "Real Madrid C.F.") (name fb:en.los_angeles_galaxy "LA Galaxy") (name fb:en.ac_milan "A.C. Milan") (name fb:en.paris_saint-germain_fc "Paris Saint-Germain F.C.") (name fb:en.preston_north_end_fc "Preston North End F.C.") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.england_national_under-21_football_team "England national under-21 football team") (name fb:en.england_national_football_team "England national football team"))) (type fb:soccer.football_team) what does david beckham play? England national under-21 football team 13.349 formula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham)) (value (list (name fb:en.real_madrid "Real Madrid C.F.") (name fb:en.los_angeles_galaxy "LA Galaxy") (name fb:en.ac_milan "A.C. Milan") (name fb:en.paris_saint-germain_fc "Paris Saint-Germain F.C.") (name fb:en.preston_north_end_fc "Preston North End F.C.") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.england_national_under-21_football_team "England national under-21 football team") (name fb:en.england_national_football_team "England national football team"))) (type fb:soccer.football_team) what does david beckham play? England national football team 13.349 formula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham)) (value (list (name fb:en.real_madrid "Real Madrid C.F.") (name fb:en.los_angeles_galaxy "LA Galaxy") (name fb:en.ac_milan "A.C. Milan") (name fb:en.paris_saint-germain_fc "Paris Saint-Germain F.C.") (name fb:en.preston_north_end_fc "Preston North End F.C.") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.england_national_under-21_football_team "England national under-21 football team") (name fb:en.england_national_football_team "England national football team"))) (type fb:soccer.football_team) what does julian lennon do? Domestic partnership 3.883 formula ((lambda x (!fb:people.marriage.type_of_union (!fb:people.person.spouse_s (var x)))) fb:en.julian_lennon)) (value (list (name fb:en.domestic_partnership "Domestic partnership"))) (type fb:people.marriage_union_type) what is the milwaukee brewers mascot? Bernie Brewer 18.065 formula (and (fb:type.object.type fb:sports.mascot) (!fb:sports.sports_team.team_mascot fb:en.milwaukee_brewers))) (value (list (name fb:en.bernie_brewer "Bernie Brewer") (name fb:en.bonnie_brewer "Bonnie Brewer"))) (type (union fb:sports.mascot)) what is the milwaukee brewers mascot? Bonnie Brewer 18.065 formula (and (fb:type.object.type fb:sports.mascot) (!fb:sports.sports_team.team_mascot fb:en.milwaukee_brewers))) (value (list (name fb:en.bernie_brewer "Bernie Brewer") (name fb:en.bonnie_brewer "Bonnie Brewer"))) (type (union fb:sports.mascot)) what is the second biggest state in the united states? Matagorda County 17.392 formula (and (fb:type.object.type fb:location.administrative_division) (!fb:location.country.second_level_divisions fb:en.united_states_of_america))) (value (list (name fb:en.matagorda_county "Matagorda County") (name fb:en.medina_county_texas "Medina County") (name fb:en.wilbarger_county "Wilbarger County") (name fb:en.fairfax_county "Fairfax County, Virginia") (name fb:en.marion_county_west_virginia "Marion County") (name fb:en.mineral_county "Mineral County") (name fb:en.chippewa_county_wisconsin "Chippewa County") (name fb:en.menominee_county_wisconsin "Menominee County") (name fb:en.evangeline_parish "Evangeline Parish") (name fb:en.fayette_county_west_virginia "Fayette County"))) (type (union fb:location.administrative_division)) what is the second biggest state in the united states? Medina County 17.392 formula (and (fb:type.object.type fb:location.administrative_division) (!fb:location.country.second_level_divisions fb:en.united_states_of_america))) (value (list (name fb:en.matagorda_county "Matagorda County") (name fb:en.medina_county_texas "Medina County") (name fb:en.wilbarger_county "Wilbarger County") (name fb:en.fairfax_county "Fairfax County, Virginia") (name fb:en.marion_county_west_virginia "Marion County") (name fb:en.mineral_county "Mineral County") (name fb:en.chippewa_county_wisconsin "Chippewa County") (name fb:en.menominee_county_wisconsin "Menominee County") (name fb:en.evangeline_parish "Evangeline Parish") (name fb:en.fayette_county_west_virginia "Fayette County"))) (type (union fb:location.administrative_division)) what is the second biggest state in the united states? Wilbarger County 17.392 formula (and (fb:type.object.type fb:location.administrative_division) (!fb:location.country.second_level_divisions fb:en.united_states_of_america))) (value (list (name fb:en.matagorda_county "Matagorda County") (name fb:en.medina_county_texas "Medina County") (name fb:en.wilbarger_county "Wilbarger County") (name fb:en.fairfax_county "Fairfax County, Virginia") (name fb:en.marion_county_west_virginia "Marion County") (name fb:en.mineral_county "Mineral County") (name fb:en.chippewa_county_wisconsin "Chippewa County") (name fb:en.menominee_county_wisconsin "Menominee County") (name fb:en.evangeline_parish "Evangeline Parish") (name fb:en.fayette_county_west_virginia "Fayette County"))) (type (union fb:location.administrative_division)) what is the second biggest state in the united states? Fairfax County, Virginia 17.392 formula (and (fb:type.object.type fb:location.administrative_division) (!fb:location.country.second_level_divisions fb:en.united_states_of_america))) (value (list (name fb:en.matagorda_county "Matagorda County") (name fb:en.medina_county_texas "Medina County") (name fb:en.wilbarger_county "Wilbarger County") (name fb:en.fairfax_county "Fairfax County, Virginia") (name fb:en.marion_county_west_virginia "Marion County") (name fb:en.mineral_county "Mineral County") (name fb:en.chippewa_county_wisconsin "Chippewa County") (name fb:en.menominee_county_wisconsin "Menominee County") (name fb:en.evangeline_parish "Evangeline Parish") (name fb:en.fayette_county_west_virginia "Fayette County"))) (type (union fb:location.administrative_division)) what is the second biggest state in the united states? Marion County 17.392 formula (and (fb:type.object.type fb:location.administrative_division) (!fb:location.country.second_level_divisions fb:en.united_states_of_america))) (value (list (name fb:en.matagorda_county "Matagorda County") (name fb:en.medina_county_texas "Medina County") (name fb:en.wilbarger_county "Wilbarger County") (name fb:en.fairfax_county "Fairfax County, Virginia") (name fb:en.marion_county_west_virginia "Marion County") (name fb:en.mineral_county "Mineral County") (name fb:en.chippewa_county_wisconsin "Chippewa County") (name fb:en.menominee_county_wisconsin "Menominee County") (name fb:en.evangeline_parish "Evangeline Parish") (name fb:en.fayette_county_west_virginia "Fayette County"))) (type (union fb:location.administrative_division)) what is the second biggest state in the united states? Mineral County 17.392 formula (and (fb:type.object.type fb:location.administrative_division) (!fb:location.country.second_level_divisions fb:en.united_states_of_america))) (value (list (name fb:en.matagorda_county "Matagorda County") (name fb:en.medina_county_texas "Medina County") (name fb:en.wilbarger_county "Wilbarger County") (name fb:en.fairfax_county "Fairfax County, Virginia") (name fb:en.marion_county_west_virginia "Marion County") (name fb:en.mineral_county "Mineral County") (name fb:en.chippewa_county_wisconsin "Chippewa County") (name fb:en.menominee_county_wisconsin "Menominee County") (name fb:en.evangeline_parish "Evangeline Parish") (name fb:en.fayette_county_west_virginia "Fayette County"))) (type (union fb:location.administrative_division)) what is the second biggest state in the united states? Chippewa County 17.392 formula (and (fb:type.object.type fb:location.administrative_division) (!fb:location.country.second_level_divisions fb:en.united_states_of_america))) (value (list (name fb:en.matagorda_county "Matagorda County") (name fb:en.medina_county_texas "Medina County") (name fb:en.wilbarger_county "Wilbarger County") (name fb:en.fairfax_county "Fairfax County, Virginia") (name fb:en.marion_county_west_virginia "Marion County") (name fb:en.mineral_county "Mineral County") (name fb:en.chippewa_county_wisconsin "Chippewa County") (name fb:en.menominee_county_wisconsin "Menominee County") (name fb:en.evangeline_parish "Evangeline Parish") (name fb:en.fayette_county_west_virginia "Fayette County"))) (type (union fb:location.administrative_division)) what is the second biggest state in the united states? Menominee County 17.392 formula (and (fb:type.object.type fb:location.administrative_division) (!fb:location.country.second_level_divisions fb:en.united_states_of_america))) (value (list (name fb:en.matagorda_county "Matagorda County") (name fb:en.medina_county_texas "Medina County") (name fb:en.wilbarger_county "Wilbarger County") (name fb:en.fairfax_county "Fairfax County, Virginia") (name fb:en.marion_county_west_virginia "Marion County") (name fb:en.mineral_county "Mineral County") (name fb:en.chippewa_county_wisconsin "Chippewa County") (name fb:en.menominee_county_wisconsin "Menominee County") (name fb:en.evangeline_parish "Evangeline Parish") (name fb:en.fayette_county_west_virginia "Fayette County"))) (type (union fb:location.administrative_division)) what is the second biggest state in the united states? Evangeline Parish 17.392 formula (and (fb:type.object.type fb:location.administrative_division) (!fb:location.country.second_level_divisions fb:en.united_states_of_america))) (value (list (name fb:en.matagorda_county "Matagorda County") (name fb:en.medina_county_texas "Medina County") (name fb:en.wilbarger_county "Wilbarger County") (name fb:en.fairfax_county "Fairfax County, Virginia") (name fb:en.marion_county_west_virginia "Marion County") (name fb:en.mineral_county "Mineral County") (name fb:en.chippewa_county_wisconsin "Chippewa County") (name fb:en.menominee_county_wisconsin "Menominee County") (name fb:en.evangeline_parish "Evangeline Parish") (name fb:en.fayette_county_west_virginia "Fayette County"))) (type (union fb:location.administrative_division)) what is the second biggest state in the united states? Fayette County 17.392 formula (and (fb:type.object.type fb:location.administrative_division) (!fb:location.country.second_level_divisions fb:en.united_states_of_america))) (value (list (name fb:en.matagorda_county "Matagorda County") (name fb:en.medina_county_texas "Medina County") (name fb:en.wilbarger_county "Wilbarger County") (name fb:en.fairfax_county "Fairfax County, Virginia") (name fb:en.marion_county_west_virginia "Marion County") (name fb:en.mineral_county "Mineral County") (name fb:en.chippewa_county_wisconsin "Chippewa County") (name fb:en.menominee_county_wisconsin "Menominee County") (name fb:en.evangeline_parish "Evangeline Parish") (name fb:en.fayette_county_west_virginia "Fayette County"))) (type (union fb:location.administrative_division)) what has charlie hunnam been in? WSJ Speakeasy Index 3.023 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.charlie_hunnam)) (value (list (name fb:m.0b3y3gx "WSJ Speakeasy Index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities") (name fb:m.08vh4w5 "Entertainment Weekly annotation index"))) (type fb:common.annotation_index) what has charlie hunnam been in? Blissful Master Index 3.023 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.charlie_hunnam)) (value (list (name fb:m.0b3y3gx "WSJ Speakeasy Index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities") (name fb:m.08vh4w5 "Entertainment Weekly annotation index"))) (type fb:common.annotation_index) what has charlie hunnam been in? Blissful Celebrities 3.023 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.charlie_hunnam)) (value (list (name fb:m.0b3y3gx "WSJ Speakeasy Index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities") (name fb:m.08vh4w5 "Entertainment Weekly annotation index"))) (type fb:common.annotation_index) what has charlie hunnam been in? Entertainment Weekly annotation index 3.023 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.charlie_hunnam)) (value (list (name fb:m.0b3y3gx "WSJ Speakeasy Index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities") (name fb:m.08vh4w5 "Entertainment Weekly annotation index"))) (type fb:common.annotation_index) what are all the movies taylor swift has been in? I Knew You Were Trouble 15.655 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.taylor_swift))) (value (list (name fb:m.0lhbn1z "I Knew You Were Trouble") (name fb:m.04glrxj Fearless) (name fb:m.0dx58l3 "Breathe (feat. Colbie Caillat)") (name fb:m.06_wqk4 "Valentine's Day") (name fb:m.0l8mh7y Red) (name fb:m.0lhbb78 "We Are Never Ever Getting Back Together") (name fb:m.0my6p0g "Teardrops on My Guitar") (name fb:m.0l8n493 "We Are Never Ever Getting Back Together") (name fb:m.05226nb "White Horse") (name fb:m.0n3p09z Fifteen))) (type (union fb:award.award_nominated_work)) what are all the movies taylor swift has been in? Breathe (feat. Colbie Caillat) 15.655 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.taylor_swift))) (value (list (name fb:m.0lhbn1z "I Knew You Were Trouble") (name fb:m.04glrxj Fearless) (name fb:m.0dx58l3 "Breathe (feat. Colbie Caillat)") (name fb:m.06_wqk4 "Valentine's Day") (name fb:m.0l8mh7y Red) (name fb:m.0lhbb78 "We Are Never Ever Getting Back Together") (name fb:m.0my6p0g "Teardrops on My Guitar") (name fb:m.0l8n493 "We Are Never Ever Getting Back Together") (name fb:m.05226nb "White Horse") (name fb:m.0n3p09z Fifteen))) (type (union fb:award.award_nominated_work)) what are all the movies taylor swift has been in? Valentine's Day 15.655 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.taylor_swift))) (value (list (name fb:m.0lhbn1z "I Knew You Were Trouble") (name fb:m.04glrxj Fearless) (name fb:m.0dx58l3 "Breathe (feat. Colbie Caillat)") (name fb:m.06_wqk4 "Valentine's Day") (name fb:m.0l8mh7y Red) (name fb:m.0lhbb78 "We Are Never Ever Getting Back Together") (name fb:m.0my6p0g "Teardrops on My Guitar") (name fb:m.0l8n493 "We Are Never Ever Getting Back Together") (name fb:m.05226nb "White Horse") (name fb:m.0n3p09z Fifteen))) (type (union fb:award.award_nominated_work)) what are all the movies taylor swift has been in? We Are Never Ever Getting Back Together 15.655 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.taylor_swift))) (value (list (name fb:m.0lhbn1z "I Knew You Were Trouble") (name fb:m.04glrxj Fearless) (name fb:m.0dx58l3 "Breathe (feat. Colbie Caillat)") (name fb:m.06_wqk4 "Valentine's Day") (name fb:m.0l8mh7y Red) (name fb:m.0lhbb78 "We Are Never Ever Getting Back Together") (name fb:m.0my6p0g "Teardrops on My Guitar") (name fb:m.0l8n493 "We Are Never Ever Getting Back Together") (name fb:m.05226nb "White Horse") (name fb:m.0n3p09z Fifteen))) (type (union fb:award.award_nominated_work)) what are all the movies taylor swift has been in? Teardrops on My Guitar 15.655 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.taylor_swift))) (value (list (name fb:m.0lhbn1z "I Knew You Were Trouble") (name fb:m.04glrxj Fearless) (name fb:m.0dx58l3 "Breathe (feat. Colbie Caillat)") (name fb:m.06_wqk4 "Valentine's Day") (name fb:m.0l8mh7y Red) (name fb:m.0lhbb78 "We Are Never Ever Getting Back Together") (name fb:m.0my6p0g "Teardrops on My Guitar") (name fb:m.0l8n493 "We Are Never Ever Getting Back Together") (name fb:m.05226nb "White Horse") (name fb:m.0n3p09z Fifteen))) (type (union fb:award.award_nominated_work)) what are all the movies taylor swift has been in? We Are Never Ever Getting Back Together 15.655 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.taylor_swift))) (value (list (name fb:m.0lhbn1z "I Knew You Were Trouble") (name fb:m.04glrxj Fearless) (name fb:m.0dx58l3 "Breathe (feat. Colbie Caillat)") (name fb:m.06_wqk4 "Valentine's Day") (name fb:m.0l8mh7y Red) (name fb:m.0lhbb78 "We Are Never Ever Getting Back Together") (name fb:m.0my6p0g "Teardrops on My Guitar") (name fb:m.0l8n493 "We Are Never Ever Getting Back Together") (name fb:m.05226nb "White Horse") (name fb:m.0n3p09z Fifteen))) (type (union fb:award.award_nominated_work)) what are all the movies taylor swift has been in? White Horse 15.655 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.taylor_swift))) (value (list (name fb:m.0lhbn1z "I Knew You Were Trouble") (name fb:m.04glrxj Fearless) (name fb:m.0dx58l3 "Breathe (feat. Colbie Caillat)") (name fb:m.06_wqk4 "Valentine's Day") (name fb:m.0l8mh7y Red) (name fb:m.0lhbb78 "We Are Never Ever Getting Back Together") (name fb:m.0my6p0g "Teardrops on My Guitar") (name fb:m.0l8n493 "We Are Never Ever Getting Back Together") (name fb:m.05226nb "White Horse") (name fb:m.0n3p09z Fifteen))) (type (union fb:award.award_nominated_work)) what school did michael jackson go to high school? Montclair College Preparatory School 19.224 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.michael_jackson))) (value (list (name fb:en.montclair_college_preparatory_school "Montclair College Preparatory School"))) (type fb:education.educational_institution) what college did brett favre? The University of Southern Mississippi 13.691 formula (and (fb:type.object.type fb:education.university) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.drafted_athlete.drafted (var x)))) fb:en.brett_favre))) (value (list (name fb:en.university_of_southern_mississippi "The University of Southern Mississippi"))) (type (union fb:education.university)) what time does registration open portland state? Pacific Time Zone 7.804 formula (!fb:location.location.time_zones fb:en.portland)) (value (list (name fb:en.pacific_time_zone "Pacific Time Zone"))) (type fb:time.time_zone) where did alex chilton die? New Orleans 5.965 formula (and (fb:type.object.type fb:location.location) (!fb:people.deceased_person.place_of_death fb:en.alex_chilton))) (value (list (name fb:en.new_orleans "New Orleans"))) (type fb:location.location) what college did martin luther king jr go to? Crozer Theological Seminary 23.186 formula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.martin_luther_king_jr))) (value (list (name fb:en.crozer_theological_seminary "Crozer Theological Seminary") (name fb:en.boston_university "Boston University") (name fb:en.morehouse_college "Morehouse College"))) (type fb:education.university) what college did martin luther king jr go to? Boston University 23.186 formula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.martin_luther_king_jr))) (value (list (name fb:en.crozer_theological_seminary "Crozer Theological Seminary") (name fb:en.boston_university "Boston University") (name fb:en.morehouse_college "Morehouse College"))) (type fb:education.university) what college did martin luther king jr go to? Morehouse College 23.186 formula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.martin_luther_king_jr))) (value (list (name fb:en.crozer_theological_seminary "Crozer Theological Seminary") (name fb:en.boston_university "Boston University") (name fb:en.morehouse_college "Morehouse College"))) (type fb:education.university) what kind of cancer did farrah fawcett die of? Anal cancer 17.986 formula (and (fb:type.object.type fb:people.cause_of_death) (fb:people.cause_of_death.people fb:en.farrah_fawcett))) (value (list (name fb:en.anal_cancer "Anal cancer"))) (type fb:people.cause_of_death) who is michael j fox's wife? Tracy Pollan 8.324 formula ((lambda x (!fb:people.marriage.spouse (!fb:people.person.spouse_s (var x)))) fb:en.michael_j_fox)) (value (list (name fb:en.tracy_pollan "Tracy Pollan"))) (type fb:people.person) what money do i use in costa rica? Costa Rican colón 17.259 formula (fb:finance.currency.countries_used fb:en.costa_rica)) (value (list (name fb:en.costa_rican_colon "Costa Rican colón"))) (type fb:finance.currency) what guitar did joe walsh play? Fender Stratocaster 15.186 formula (and (fb:type.object.type fb:music.guitar) (!fb:music.guitarist.guitars_played fb:en.joe_walsh))) (value (list (name fb:en.fender_stratocaster "Fender Stratocaster"))) (type (union fb:music.guitar)) what is ryan seacrest radio show? Entertainment Weekly annotation index 6.605 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.ryan_seacrest)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) what is ryan seacrest radio show? WSJ Speakeasy Index 6.605 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.ryan_seacrest)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) what is ryan seacrest radio show? Blissful Master Index 6.605 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.ryan_seacrest)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) what is ryan seacrest radio show? Blissful Celebrities 6.605 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.ryan_seacrest)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) what language do most italians speak? Italian Language 8.421 formula (and (fb:type.object.type fb:language.human_language) (!fb:film.film.language fb:m.0c4f761))) (value (list (name fb:en.italian "Italian Language"))) (type (union fb:language.human_language)) what broncos are in the pro bowl? Entertainment Weekly annotation index 8.415 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.denver_broncos)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index"))) (type fb:common.annotation_index) who voiced darth vader? David Prowse 9.301 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who voiced darth vader? James Earl Jones 9.301 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who voiced darth vader? Hayden Christensen 9.301 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who voiced darth vader? Matt Lanter 9.301 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who voiced darth vader? Sebastian Shaw 9.301 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who voiced darth vader? Robert E. Bean 9.301 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who voiced darth vader? Jake Lloyd 9.301 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) where are the texas rangers playing? Rangers Ballpark in Arlington 10.198 formula (and (fb:type.object.type fb:location.location) (fb:sports.sports_facility.teams fb:en.texas_rangers))) (value (list (name fb:en.ameriquest_field_in_arlington "Rangers Ballpark in Arlington"))) (type fb:sports.sports_facility) what did andrew johnson accomplish as president? Abraham Lincoln 13.996 formula (!fb:government.us_vice_president.to_president fb:en.andrew_johnson)) (value (list (name fb:en.abraham_lincoln "Abraham Lincoln"))) (type fb:government.us_president) what is arkansas state capitol? Little Rock 7.812 formula (!fb:location.us_state.capital fb:en.arkansas)) (value (list (name fb:en.little_rock "Little Rock"))) (type fb:location.citytown) what is the best tour to egypt? Internet users as percentage of population, World Development Indicators and Global Development Finance, World Bank 13.623 formula ((lambda x (!fb:measurement_unit.dated_percentage.source (!fb:location.statistical_region.internet_users_percent_population (var x)))) fb:en.egypt)) (value (list (name fb:m.0ndnhc0 "Internet users as percentage of population, World Development Indicators and Global Development Finance, World Bank") (name fb:g.1245ywqx8 "Internet users as percentage of population, World Development Indicators, World Bank"))) (type fb:dataworld.information_source) what is the best tour to egypt? Internet users as percentage of population, World Development Indicators, World Bank 13.623 formula ((lambda x (!fb:measurement_unit.dated_percentage.source (!fb:location.statistical_region.internet_users_percent_population (var x)))) fb:en.egypt)) (value (list (name fb:m.0ndnhc0 "Internet users as percentage of population, World Development Indicators and Global Development Finance, World Bank") (name fb:g.1245ywqx8 "Internet users as percentage of population, World Development Indicators, World Bank"))) (type fb:dataworld.information_source) when did michael vick start playing for the eagles? Philadelphia Eagles 15.886 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.michael_vick)) (value (list (name fb:en.philadelphia_eagles "Philadelphia Eagles") (name fb:en.virginia_tech_hokies_football "Virginia Tech Hokies football") (name fb:en.atlanta_falcons "Atlanta Falcons"))) (type fb:sports.sports_team) when did michael vick start playing for the eagles? Virginia Tech Hokies football 15.886 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.michael_vick)) (value (list (name fb:en.philadelphia_eagles "Philadelphia Eagles") (name fb:en.virginia_tech_hokies_football "Virginia Tech Hokies football") (name fb:en.atlanta_falcons "Atlanta Falcons"))) (type fb:sports.sports_team) when did michael vick start playing for the eagles? Atlanta Falcons 15.886 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.michael_vick)) (value (list (name fb:en.philadelphia_eagles "Philadelphia Eagles") (name fb:en.virginia_tech_hokies_football "Virginia Tech Hokies football") (name fb:en.atlanta_falcons "Atlanta Falcons"))) (type fb:sports.sports_team) where do kfc get their chicken from? United Kingdom 8.663 formula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:common.phone_number.service_location (!fb:organization.organization.phone_number (var x)))) fb:en.kfc))) (value (list (name fb:en.canada Canada) (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.united_states_of_america "United States of America"))) (type fb:location.location) where do kfc get their chicken from? United States of America 8.663 formula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:common.phone_number.service_location (!fb:organization.organization.phone_number (var x)))) fb:en.kfc))) (value (list (name fb:en.canada Canada) (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.united_states_of_america "United States of America"))) (type fb:location.location) how large is kony army? Joseph Kony (296444792) 0.686 formula (!fb:common.topic.image fb:en.joseph_kony)) (value (list (name fb:m.04s33xq "Joseph Kony (296444792)") (name fb:m.03str0p "Joseph Kony in November 2006"))) (type fb:common.image) how large is kony army? Joseph Kony in November 2006 0.686 formula (!fb:common.topic.image fb:en.joseph_kony)) (value (list (name fb:m.04s33xq "Joseph Kony (296444792)") (name fb:m.03str0p "Joseph Kony in November 2006"))) (type fb:common.image) who is louisiana state senator? Alexandre Mouton 9.189 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton "Alexandre Mouton") (name fb:en.jean_n_destrehan "Jean Noel Destréhan") (name fb:en.william_c_c_claiborne "William C. C. Claiborne") (name fb:en.alexander_barrow "Alexander Barrow") (name fb:en.huey_long "Huey Long") (name fb:en.charles_dominique_joseph_bouligny "Charles Dominique Joseph Bouligny") (name fb:en.james_brown_1766 "James Brown") (name fb:en.josiah_s_johnston "Josiah S. Johnston") (name fb:en.henry_johnson "Henry Johnson") (name fb:en.george_a_waggaman "George A. Waggaman"))) (type fb:government.politician) who is louisiana state senator? Jean Noel Destréhan 9.189 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton "Alexandre Mouton") (name fb:en.jean_n_destrehan "Jean Noel Destréhan") (name fb:en.william_c_c_claiborne "William C. C. Claiborne") (name fb:en.alexander_barrow "Alexander Barrow") (name fb:en.huey_long "Huey Long") (name fb:en.charles_dominique_joseph_bouligny "Charles Dominique Joseph Bouligny") (name fb:en.james_brown_1766 "James Brown") (name fb:en.josiah_s_johnston "Josiah S. Johnston") (name fb:en.henry_johnson "Henry Johnson") (name fb:en.george_a_waggaman "George A. Waggaman"))) (type fb:government.politician) who is louisiana state senator? William C. C. Claiborne 9.189 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton "Alexandre Mouton") (name fb:en.jean_n_destrehan "Jean Noel Destréhan") (name fb:en.william_c_c_claiborne "William C. C. Claiborne") (name fb:en.alexander_barrow "Alexander Barrow") (name fb:en.huey_long "Huey Long") (name fb:en.charles_dominique_joseph_bouligny "Charles Dominique Joseph Bouligny") (name fb:en.james_brown_1766 "James Brown") (name fb:en.josiah_s_johnston "Josiah S. Johnston") (name fb:en.henry_johnson "Henry Johnson") (name fb:en.george_a_waggaman "George A. Waggaman"))) (type fb:government.politician) who is louisiana state senator? Alexander Barrow 9.189 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton "Alexandre Mouton") (name fb:en.jean_n_destrehan "Jean Noel Destréhan") (name fb:en.william_c_c_claiborne "William C. C. Claiborne") (name fb:en.alexander_barrow "Alexander Barrow") (name fb:en.huey_long "Huey Long") (name fb:en.charles_dominique_joseph_bouligny "Charles Dominique Joseph Bouligny") (name fb:en.james_brown_1766 "James Brown") (name fb:en.josiah_s_johnston "Josiah S. Johnston") (name fb:en.henry_johnson "Henry Johnson") (name fb:en.george_a_waggaman "George A. Waggaman"))) (type fb:government.politician) who is louisiana state senator? Huey Long 9.189 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton "Alexandre Mouton") (name fb:en.jean_n_destrehan "Jean Noel Destréhan") (name fb:en.william_c_c_claiborne "William C. C. Claiborne") (name fb:en.alexander_barrow "Alexander Barrow") (name fb:en.huey_long "Huey Long") (name fb:en.charles_dominique_joseph_bouligny "Charles Dominique Joseph Bouligny") (name fb:en.james_brown_1766 "James Brown") (name fb:en.josiah_s_johnston "Josiah S. Johnston") (name fb:en.henry_johnson "Henry Johnson") (name fb:en.george_a_waggaman "George A. Waggaman"))) (type fb:government.politician) who is louisiana state senator? Charles Dominique Joseph Bouligny 9.189 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton "Alexandre Mouton") (name fb:en.jean_n_destrehan "Jean Noel Destréhan") (name fb:en.william_c_c_claiborne "William C. C. Claiborne") (name fb:en.alexander_barrow "Alexander Barrow") (name fb:en.huey_long "Huey Long") (name fb:en.charles_dominique_joseph_bouligny "Charles Dominique Joseph Bouligny") (name fb:en.james_brown_1766 "James Brown") (name fb:en.josiah_s_johnston "Josiah S. Johnston") (name fb:en.henry_johnson "Henry Johnson") (name fb:en.george_a_waggaman "George A. Waggaman"))) (type fb:government.politician) who is louisiana state senator? James Brown 9.189 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton "Alexandre Mouton") (name fb:en.jean_n_destrehan "Jean Noel Destréhan") (name fb:en.william_c_c_claiborne "William C. C. Claiborne") (name fb:en.alexander_barrow "Alexander Barrow") (name fb:en.huey_long "Huey Long") (name fb:en.charles_dominique_joseph_bouligny "Charles Dominique Joseph Bouligny") (name fb:en.james_brown_1766 "James Brown") (name fb:en.josiah_s_johnston "Josiah S. Johnston") (name fb:en.henry_johnson "Henry Johnson") (name fb:en.george_a_waggaman "George A. Waggaman"))) (type fb:government.politician) who is louisiana state senator? Josiah S. Johnston 9.189 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton "Alexandre Mouton") (name fb:en.jean_n_destrehan "Jean Noel Destréhan") (name fb:en.william_c_c_claiborne "William C. C. Claiborne") (name fb:en.alexander_barrow "Alexander Barrow") (name fb:en.huey_long "Huey Long") (name fb:en.charles_dominique_joseph_bouligny "Charles Dominique Joseph Bouligny") (name fb:en.james_brown_1766 "James Brown") (name fb:en.josiah_s_johnston "Josiah S. Johnston") (name fb:en.henry_johnson "Henry Johnson") (name fb:en.george_a_waggaman "George A. Waggaman"))) (type fb:government.politician) who is louisiana state senator? Henry Johnson 9.189 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton "Alexandre Mouton") (name fb:en.jean_n_destrehan "Jean Noel Destréhan") (name fb:en.william_c_c_claiborne "William C. C. Claiborne") (name fb:en.alexander_barrow "Alexander Barrow") (name fb:en.huey_long "Huey Long") (name fb:en.charles_dominique_joseph_bouligny "Charles Dominique Joseph Bouligny") (name fb:en.james_brown_1766 "James Brown") (name fb:en.josiah_s_johnston "Josiah S. Johnston") (name fb:en.henry_johnson "Henry Johnson") (name fb:en.george_a_waggaman "George A. Waggaman"))) (type fb:government.politician) who is louisiana state senator? George A. Waggaman 9.189 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.louisiana)) (value (list (name fb:en.alexander_mouton "Alexandre Mouton") (name fb:en.jean_n_destrehan "Jean Noel Destréhan") (name fb:en.william_c_c_claiborne "William C. C. Claiborne") (name fb:en.alexander_barrow "Alexander Barrow") (name fb:en.huey_long "Huey Long") (name fb:en.charles_dominique_joseph_bouligny "Charles Dominique Joseph Bouligny") (name fb:en.james_brown_1766 "James Brown") (name fb:en.josiah_s_johnston "Josiah S. Johnston") (name fb:en.henry_johnson "Henry Johnson") (name fb:en.george_a_waggaman "George A. Waggaman"))) (type fb:government.politician) what are the 7 countries that are part of central america? El Salvador 18.511 formula (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.central_america))) (value (list (name fb:en.el_salvador "El Salvador") (name fb:en.guatemala Guatemala) (name fb:en.costa_rica "Costa Rica") (name fb:en.honduras Honduras) (name fb:en.greater_colombia "Gran Colombia") (name fb:en.panama Panama) (name fb:en.belize Belize))) (type (union fb:location.country)) what are the 7 countries that are part of central america? Costa Rica 18.511 formula (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.central_america))) (value (list (name fb:en.el_salvador "El Salvador") (name fb:en.guatemala Guatemala) (name fb:en.costa_rica "Costa Rica") (name fb:en.honduras Honduras) (name fb:en.greater_colombia "Gran Colombia") (name fb:en.panama Panama) (name fb:en.belize Belize))) (type (union fb:location.country)) what are the 7 countries that are part of central america? Gran Colombia 18.511 formula (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.central_america))) (value (list (name fb:en.el_salvador "El Salvador") (name fb:en.guatemala Guatemala) (name fb:en.costa_rica "Costa Rica") (name fb:en.honduras Honduras) (name fb:en.greater_colombia "Gran Colombia") (name fb:en.panama Panama) (name fb:en.belize Belize))) (type (union fb:location.country)) where did derek fisher go to college? University of Arkansas 15.305 formula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.derek_fisher)))) (value (list (name fb:en.university_of_arkansas "University of Arkansas") (name fb:en.university_of_arkansas_at_little_rock "University of Arkansas at Little Rock"))) (type fb:education.university) where did derek fisher go to college? University of Arkansas at Little Rock 15.305 formula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.derek_fisher)))) (value (list (name fb:en.university_of_arkansas "University of Arkansas") (name fb:en.university_of_arkansas_at_little_rock "University of Arkansas at Little Rock"))) (type fb:education.university) who was kobe bryant drafted by? 1996 NBA Draft 16.846 formula ((lambda x (!fb:sports.sports_league_draft_pick.draft (!fb:sports.drafted_athlete.drafted (var x)))) fb:en.kobe_bryant)) (value (list (name fb:en.1996_nba_draft "1996 NBA Draft"))) (type fb:sports.sports_league_draft) where are the new orleans hornets moving to? French Quarter 7.685 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_orleans))) (value (list (name fb:en.french_quarter "French Quarter") (name fb:en.new_orleans_museum_of_art "New Orleans Museum of Art") (name fb:en.napoleon_house "Napoleon House") (name fb:en.louisiana_superdome "Mercedes-Benz Superdome") (name fb:en.audubon_zoo "Audubon Zoo") (name fb:en.jean_lafitte_national_historical_park_and_preserve "Jean Lafitte National Historical Park and Preserve") (name fb:en.the_presbytere "The Presbytere") (name fb:en.st_louis_cathedral_new_orleans "St. Louis Cathedral") (name fb:en.lafittes_blacksmith_shop "Lafitte's Blacksmith Shop") (name fb:en.preservation_hall "Preservation Hall"))) (type fb:travel.tourist_attraction) where are the new orleans hornets moving to? New Orleans Museum of Art 7.685 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_orleans))) (value (list (name fb:en.french_quarter "French Quarter") (name fb:en.new_orleans_museum_of_art "New Orleans Museum of Art") (name fb:en.napoleon_house "Napoleon House") (name fb:en.louisiana_superdome "Mercedes-Benz Superdome") (name fb:en.audubon_zoo "Audubon Zoo") (name fb:en.jean_lafitte_national_historical_park_and_preserve "Jean Lafitte National Historical Park and Preserve") (name fb:en.the_presbytere "The Presbytere") (name fb:en.st_louis_cathedral_new_orleans "St. Louis Cathedral") (name fb:en.lafittes_blacksmith_shop "Lafitte's Blacksmith Shop") (name fb:en.preservation_hall "Preservation Hall"))) (type fb:travel.tourist_attraction) where are the new orleans hornets moving to? Napoleon House 7.685 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_orleans))) (value (list (name fb:en.french_quarter "French Quarter") (name fb:en.new_orleans_museum_of_art "New Orleans Museum of Art") (name fb:en.napoleon_house "Napoleon House") (name fb:en.louisiana_superdome "Mercedes-Benz Superdome") (name fb:en.audubon_zoo "Audubon Zoo") (name fb:en.jean_lafitte_national_historical_park_and_preserve "Jean Lafitte National Historical Park and Preserve") (name fb:en.the_presbytere "The Presbytere") (name fb:en.st_louis_cathedral_new_orleans "St. Louis Cathedral") (name fb:en.lafittes_blacksmith_shop "Lafitte's Blacksmith Shop") (name fb:en.preservation_hall "Preservation Hall"))) (type fb:travel.tourist_attraction) where are the new orleans hornets moving to? Mercedes-Benz Superdome 7.685 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_orleans))) (value (list (name fb:en.french_quarter "French Quarter") (name fb:en.new_orleans_museum_of_art "New Orleans Museum of Art") (name fb:en.napoleon_house "Napoleon House") (name fb:en.louisiana_superdome "Mercedes-Benz Superdome") (name fb:en.audubon_zoo "Audubon Zoo") (name fb:en.jean_lafitte_national_historical_park_and_preserve "Jean Lafitte National Historical Park and Preserve") (name fb:en.the_presbytere "The Presbytere") (name fb:en.st_louis_cathedral_new_orleans "St. Louis Cathedral") (name fb:en.lafittes_blacksmith_shop "Lafitte's Blacksmith Shop") (name fb:en.preservation_hall "Preservation Hall"))) (type fb:travel.tourist_attraction) where are the new orleans hornets moving to? Audubon Zoo 7.685 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_orleans))) (value (list (name fb:en.french_quarter "French Quarter") (name fb:en.new_orleans_museum_of_art "New Orleans Museum of Art") (name fb:en.napoleon_house "Napoleon House") (name fb:en.louisiana_superdome "Mercedes-Benz Superdome") (name fb:en.audubon_zoo "Audubon Zoo") (name fb:en.jean_lafitte_national_historical_park_and_preserve "Jean Lafitte National Historical Park and Preserve") (name fb:en.the_presbytere "The Presbytere") (name fb:en.st_louis_cathedral_new_orleans "St. Louis Cathedral") (name fb:en.lafittes_blacksmith_shop "Lafitte's Blacksmith Shop") (name fb:en.preservation_hall "Preservation Hall"))) (type fb:travel.tourist_attraction) where are the new orleans hornets moving to? Jean Lafitte National Historical Park and Preserve 7.685 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_orleans))) (value (list (name fb:en.french_quarter "French Quarter") (name fb:en.new_orleans_museum_of_art "New Orleans Museum of Art") (name fb:en.napoleon_house "Napoleon House") (name fb:en.louisiana_superdome "Mercedes-Benz Superdome") (name fb:en.audubon_zoo "Audubon Zoo") (name fb:en.jean_lafitte_national_historical_park_and_preserve "Jean Lafitte National Historical Park and Preserve") (name fb:en.the_presbytere "The Presbytere") (name fb:en.st_louis_cathedral_new_orleans "St. Louis Cathedral") (name fb:en.lafittes_blacksmith_shop "Lafitte's Blacksmith Shop") (name fb:en.preservation_hall "Preservation Hall"))) (type fb:travel.tourist_attraction) where are the new orleans hornets moving to? The Presbytere 7.685 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_orleans))) (value (list (name fb:en.french_quarter "French Quarter") (name fb:en.new_orleans_museum_of_art "New Orleans Museum of Art") (name fb:en.napoleon_house "Napoleon House") (name fb:en.louisiana_superdome "Mercedes-Benz Superdome") (name fb:en.audubon_zoo "Audubon Zoo") (name fb:en.jean_lafitte_national_historical_park_and_preserve "Jean Lafitte National Historical Park and Preserve") (name fb:en.the_presbytere "The Presbytere") (name fb:en.st_louis_cathedral_new_orleans "St. Louis Cathedral") (name fb:en.lafittes_blacksmith_shop "Lafitte's Blacksmith Shop") (name fb:en.preservation_hall "Preservation Hall"))) (type fb:travel.tourist_attraction) where are the new orleans hornets moving to? St. Louis Cathedral 7.685 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_orleans))) (value (list (name fb:en.french_quarter "French Quarter") (name fb:en.new_orleans_museum_of_art "New Orleans Museum of Art") (name fb:en.napoleon_house "Napoleon House") (name fb:en.louisiana_superdome "Mercedes-Benz Superdome") (name fb:en.audubon_zoo "Audubon Zoo") (name fb:en.jean_lafitte_national_historical_park_and_preserve "Jean Lafitte National Historical Park and Preserve") (name fb:en.the_presbytere "The Presbytere") (name fb:en.st_louis_cathedral_new_orleans "St. Louis Cathedral") (name fb:en.lafittes_blacksmith_shop "Lafitte's Blacksmith Shop") (name fb:en.preservation_hall "Preservation Hall"))) (type fb:travel.tourist_attraction) where are the new orleans hornets moving to? Lafitte's Blacksmith Shop 7.685 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_orleans))) (value (list (name fb:en.french_quarter "French Quarter") (name fb:en.new_orleans_museum_of_art "New Orleans Museum of Art") (name fb:en.napoleon_house "Napoleon House") (name fb:en.louisiana_superdome "Mercedes-Benz Superdome") (name fb:en.audubon_zoo "Audubon Zoo") (name fb:en.jean_lafitte_national_historical_park_and_preserve "Jean Lafitte National Historical Park and Preserve") (name fb:en.the_presbytere "The Presbytere") (name fb:en.st_louis_cathedral_new_orleans "St. Louis Cathedral") (name fb:en.lafittes_blacksmith_shop "Lafitte's Blacksmith Shop") (name fb:en.preservation_hall "Preservation Hall"))) (type fb:travel.tourist_attraction) where are the new orleans hornets moving to? Preservation Hall 7.685 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.new_orleans))) (value (list (name fb:en.french_quarter "French Quarter") (name fb:en.new_orleans_museum_of_art "New Orleans Museum of Art") (name fb:en.napoleon_house "Napoleon House") (name fb:en.louisiana_superdome "Mercedes-Benz Superdome") (name fb:en.audubon_zoo "Audubon Zoo") (name fb:en.jean_lafitte_national_historical_park_and_preserve "Jean Lafitte National Historical Park and Preserve") (name fb:en.the_presbytere "The Presbytere") (name fb:en.st_louis_cathedral_new_orleans "St. Louis Cathedral") (name fb:en.lafittes_blacksmith_shop "Lafitte's Blacksmith Shop") (name fb:en.preservation_hall "Preservation Hall"))) (type fb:travel.tourist_attraction) what language does algerian people speak? Rachid Bouchareb 3.895 formula (!fb:people.ethnicity.people fb:m.05ysft4)) (value (list (name fb:en.rachid_bouchareb "Rachid Bouchareb") (name fb:en.assia_djebar "Assia Djebar") (name fb:en.samy_naceri "Samy Naceri") (name fb:en.khaled Khaled) (name fb:m.0h1nftd "Carina Bleeth") (name fb:en.kamel_amar "Kamel Amar") (name fb:m.0h2sbx7 "Mohammed Cherif Adjani"))) (type fb:people.person) what language does algerian people speak? Assia Djebar 3.895 formula (!fb:people.ethnicity.people fb:m.05ysft4)) (value (list (name fb:en.rachid_bouchareb "Rachid Bouchareb") (name fb:en.assia_djebar "Assia Djebar") (name fb:en.samy_naceri "Samy Naceri") (name fb:en.khaled Khaled) (name fb:m.0h1nftd "Carina Bleeth") (name fb:en.kamel_amar "Kamel Amar") (name fb:m.0h2sbx7 "Mohammed Cherif Adjani"))) (type fb:people.person) what language does algerian people speak? Samy Naceri 3.895 formula (!fb:people.ethnicity.people fb:m.05ysft4)) (value (list (name fb:en.rachid_bouchareb "Rachid Bouchareb") (name fb:en.assia_djebar "Assia Djebar") (name fb:en.samy_naceri "Samy Naceri") (name fb:en.khaled Khaled) (name fb:m.0h1nftd "Carina Bleeth") (name fb:en.kamel_amar "Kamel Amar") (name fb:m.0h2sbx7 "Mohammed Cherif Adjani"))) (type fb:people.person) what language does algerian people speak? Carina Bleeth 3.895 formula (!fb:people.ethnicity.people fb:m.05ysft4)) (value (list (name fb:en.rachid_bouchareb "Rachid Bouchareb") (name fb:en.assia_djebar "Assia Djebar") (name fb:en.samy_naceri "Samy Naceri") (name fb:en.khaled Khaled) (name fb:m.0h1nftd "Carina Bleeth") (name fb:en.kamel_amar "Kamel Amar") (name fb:m.0h2sbx7 "Mohammed Cherif Adjani"))) (type fb:people.person) what language does algerian people speak? Kamel Amar 3.895 formula (!fb:people.ethnicity.people fb:m.05ysft4)) (value (list (name fb:en.rachid_bouchareb "Rachid Bouchareb") (name fb:en.assia_djebar "Assia Djebar") (name fb:en.samy_naceri "Samy Naceri") (name fb:en.khaled Khaled) (name fb:m.0h1nftd "Carina Bleeth") (name fb:en.kamel_amar "Kamel Amar") (name fb:m.0h2sbx7 "Mohammed Cherif Adjani"))) (type fb:people.person) what language does algerian people speak? Mohammed Cherif Adjani 3.895 formula (!fb:people.ethnicity.people fb:m.05ysft4)) (value (list (name fb:en.rachid_bouchareb "Rachid Bouchareb") (name fb:en.assia_djebar "Assia Djebar") (name fb:en.samy_naceri "Samy Naceri") (name fb:en.khaled Khaled) (name fb:m.0h1nftd "Carina Bleeth") (name fb:en.kamel_amar "Kamel Amar") (name fb:m.0h2sbx7 "Mohammed Cherif Adjani"))) (type fb:people.person) what school did martin luther king jr received his doctorate degree from? Crozer Theological Seminary 17.344 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.martin_luther_king_jr))) (value (list (name fb:en.crozer_theological_seminary "Crozer Theological Seminary") (name fb:m.0479w_2 "Washington High School") (name fb:en.boston_university "Boston University") (name fb:en.morehouse_college "Morehouse College"))) (type (union fb:education.educational_institution)) what school did martin luther king jr received his doctorate degree from? Washington High School 17.344 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.martin_luther_king_jr))) (value (list (name fb:en.crozer_theological_seminary "Crozer Theological Seminary") (name fb:m.0479w_2 "Washington High School") (name fb:en.boston_university "Boston University") (name fb:en.morehouse_college "Morehouse College"))) (type (union fb:education.educational_institution)) what school did martin luther king jr received his doctorate degree from? Boston University 17.344 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.martin_luther_king_jr))) (value (list (name fb:en.crozer_theological_seminary "Crozer Theological Seminary") (name fb:m.0479w_2 "Washington High School") (name fb:en.boston_university "Boston University") (name fb:en.morehouse_college "Morehouse College"))) (type (union fb:education.educational_institution)) what school did martin luther king jr received his doctorate degree from? Morehouse College 17.344 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.martin_luther_king_jr))) (value (list (name fb:en.crozer_theological_seminary "Crozer Theological Seminary") (name fb:m.0479w_2 "Washington High School") (name fb:en.boston_university "Boston University") (name fb:en.morehouse_college "Morehouse College"))) (type (union fb:education.educational_institution)) what type of cancer did larry hagman have? Head and neck cancer 13.909 formula (and (fb:type.object.type fb:people.cause_of_death) (fb:people.cause_of_death.people fb:en.larry_hagman))) (value (list (name fb:en.cancer Cancer) (name fb:en.head_and_neck_cancer "Head and neck cancer") (name fb:en.leukemia Leukemia))) (type (union fb:people.cause_of_death)) what wars did robert e lee served in? Battle of Darbytown and New Market Roads 11.902 formula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.robert_e_lee))) (value (list (name fb:en.battle_of_darbytown_and_new_market_roads "Battle of Darbytown and New Market Roads") (name fb:en.battle_of_totopotomoy_creek "Battle of Totopotomoy Creek") (name fb:en.overland_campaign "Overland Campaign") (name fb:en.battle_of_franklins_crossing "Battle of Franklin's Crossing") (name fb:en.battle_of_beaver_dam_creek "Battle of Beaver Dam Creek") (name fb:en.northern_virginia_campaign "Northern Virginia Campaign") (name fb:en.battle_of_antietam "Battle of Antietam") (name fb:en.battle_of_fredericksburg "Battle of Fredericksburg") (name fb:m.0c00cv3 "Richmond in the American Civil War") (name fb:en.second_battle_of_bull_run "Second Battle of Bull Run"))) (type (union fb:military.military_conflict)) what wars did robert e lee served in? Battle of Totopotomoy Creek 11.902 formula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.robert_e_lee))) (value (list (name fb:en.battle_of_darbytown_and_new_market_roads "Battle of Darbytown and New Market Roads") (name fb:en.battle_of_totopotomoy_creek "Battle of Totopotomoy Creek") (name fb:en.overland_campaign "Overland Campaign") (name fb:en.battle_of_franklins_crossing "Battle of Franklin's Crossing") (name fb:en.battle_of_beaver_dam_creek "Battle of Beaver Dam Creek") (name fb:en.northern_virginia_campaign "Northern Virginia Campaign") (name fb:en.battle_of_antietam "Battle of Antietam") (name fb:en.battle_of_fredericksburg "Battle of Fredericksburg") (name fb:m.0c00cv3 "Richmond in the American Civil War") (name fb:en.second_battle_of_bull_run "Second Battle of Bull Run"))) (type (union fb:military.military_conflict)) what wars did robert e lee served in? Overland Campaign 11.902 formula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.robert_e_lee))) (value (list (name fb:en.battle_of_darbytown_and_new_market_roads "Battle of Darbytown and New Market Roads") (name fb:en.battle_of_totopotomoy_creek "Battle of Totopotomoy Creek") (name fb:en.overland_campaign "Overland Campaign") (name fb:en.battle_of_franklins_crossing "Battle of Franklin's Crossing") (name fb:en.battle_of_beaver_dam_creek "Battle of Beaver Dam Creek") (name fb:en.northern_virginia_campaign "Northern Virginia Campaign") (name fb:en.battle_of_antietam "Battle of Antietam") (name fb:en.battle_of_fredericksburg "Battle of Fredericksburg") (name fb:m.0c00cv3 "Richmond in the American Civil War") (name fb:en.second_battle_of_bull_run "Second Battle of Bull Run"))) (type (union fb:military.military_conflict)) what wars did robert e lee served in? Battle of Franklin's Crossing 11.902 formula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.robert_e_lee))) (value (list (name fb:en.battle_of_darbytown_and_new_market_roads "Battle of Darbytown and New Market Roads") (name fb:en.battle_of_totopotomoy_creek "Battle of Totopotomoy Creek") (name fb:en.overland_campaign "Overland Campaign") (name fb:en.battle_of_franklins_crossing "Battle of Franklin's Crossing") (name fb:en.battle_of_beaver_dam_creek "Battle of Beaver Dam Creek") (name fb:en.northern_virginia_campaign "Northern Virginia Campaign") (name fb:en.battle_of_antietam "Battle of Antietam") (name fb:en.battle_of_fredericksburg "Battle of Fredericksburg") (name fb:m.0c00cv3 "Richmond in the American Civil War") (name fb:en.second_battle_of_bull_run "Second Battle of Bull Run"))) (type (union fb:military.military_conflict)) what wars did robert e lee served in? Battle of Beaver Dam Creek 11.902 formula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.robert_e_lee))) (value (list (name fb:en.battle_of_darbytown_and_new_market_roads "Battle of Darbytown and New Market Roads") (name fb:en.battle_of_totopotomoy_creek "Battle of Totopotomoy Creek") (name fb:en.overland_campaign "Overland Campaign") (name fb:en.battle_of_franklins_crossing "Battle of Franklin's Crossing") (name fb:en.battle_of_beaver_dam_creek "Battle of Beaver Dam Creek") (name fb:en.northern_virginia_campaign "Northern Virginia Campaign") (name fb:en.battle_of_antietam "Battle of Antietam") (name fb:en.battle_of_fredericksburg "Battle of Fredericksburg") (name fb:m.0c00cv3 "Richmond in the American Civil War") (name fb:en.second_battle_of_bull_run "Second Battle of Bull Run"))) (type (union fb:military.military_conflict)) what wars did robert e lee served in? Northern Virginia Campaign 11.902 formula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.robert_e_lee))) (value (list (name fb:en.battle_of_darbytown_and_new_market_roads "Battle of Darbytown and New Market Roads") (name fb:en.battle_of_totopotomoy_creek "Battle of Totopotomoy Creek") (name fb:en.overland_campaign "Overland Campaign") (name fb:en.battle_of_franklins_crossing "Battle of Franklin's Crossing") (name fb:en.battle_of_beaver_dam_creek "Battle of Beaver Dam Creek") (name fb:en.northern_virginia_campaign "Northern Virginia Campaign") (name fb:en.battle_of_antietam "Battle of Antietam") (name fb:en.battle_of_fredericksburg "Battle of Fredericksburg") (name fb:m.0c00cv3 "Richmond in the American Civil War") (name fb:en.second_battle_of_bull_run "Second Battle of Bull Run"))) (type (union fb:military.military_conflict)) what wars did robert e lee served in? Battle of Antietam 11.902 formula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.robert_e_lee))) (value (list (name fb:en.battle_of_darbytown_and_new_market_roads "Battle of Darbytown and New Market Roads") (name fb:en.battle_of_totopotomoy_creek "Battle of Totopotomoy Creek") (name fb:en.overland_campaign "Overland Campaign") (name fb:en.battle_of_franklins_crossing "Battle of Franklin's Crossing") (name fb:en.battle_of_beaver_dam_creek "Battle of Beaver Dam Creek") (name fb:en.northern_virginia_campaign "Northern Virginia Campaign") (name fb:en.battle_of_antietam "Battle of Antietam") (name fb:en.battle_of_fredericksburg "Battle of Fredericksburg") (name fb:m.0c00cv3 "Richmond in the American Civil War") (name fb:en.second_battle_of_bull_run "Second Battle of Bull Run"))) (type (union fb:military.military_conflict)) what wars did robert e lee served in? Battle of Fredericksburg 11.902 formula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.robert_e_lee))) (value (list (name fb:en.battle_of_darbytown_and_new_market_roads "Battle of Darbytown and New Market Roads") (name fb:en.battle_of_totopotomoy_creek "Battle of Totopotomoy Creek") (name fb:en.overland_campaign "Overland Campaign") (name fb:en.battle_of_franklins_crossing "Battle of Franklin's Crossing") (name fb:en.battle_of_beaver_dam_creek "Battle of Beaver Dam Creek") (name fb:en.northern_virginia_campaign "Northern Virginia Campaign") (name fb:en.battle_of_antietam "Battle of Antietam") (name fb:en.battle_of_fredericksburg "Battle of Fredericksburg") (name fb:m.0c00cv3 "Richmond in the American Civil War") (name fb:en.second_battle_of_bull_run "Second Battle of Bull Run"))) (type (union fb:military.military_conflict)) what wars did robert e lee served in? Richmond in the American Civil War 11.902 formula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.robert_e_lee))) (value (list (name fb:en.battle_of_darbytown_and_new_market_roads "Battle of Darbytown and New Market Roads") (name fb:en.battle_of_totopotomoy_creek "Battle of Totopotomoy Creek") (name fb:en.overland_campaign "Overland Campaign") (name fb:en.battle_of_franklins_crossing "Battle of Franklin's Crossing") (name fb:en.battle_of_beaver_dam_creek "Battle of Beaver Dam Creek") (name fb:en.northern_virginia_campaign "Northern Virginia Campaign") (name fb:en.battle_of_antietam "Battle of Antietam") (name fb:en.battle_of_fredericksburg "Battle of Fredericksburg") (name fb:m.0c00cv3 "Richmond in the American Civil War") (name fb:en.second_battle_of_bull_run "Second Battle of Bull Run"))) (type (union fb:military.military_conflict)) what wars did robert e lee served in? Second Battle of Bull Run 11.902 formula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_commander (var x)))) fb:en.robert_e_lee))) (value (list (name fb:en.battle_of_darbytown_and_new_market_roads "Battle of Darbytown and New Market Roads") (name fb:en.battle_of_totopotomoy_creek "Battle of Totopotomoy Creek") (name fb:en.overland_campaign "Overland Campaign") (name fb:en.battle_of_franklins_crossing "Battle of Franklin's Crossing") (name fb:en.battle_of_beaver_dam_creek "Battle of Beaver Dam Creek") (name fb:en.northern_virginia_campaign "Northern Virginia Campaign") (name fb:en.battle_of_antietam "Battle of Antietam") (name fb:en.battle_of_fredericksburg "Battle of Fredericksburg") (name fb:m.0c00cv3 "Richmond in the American Civil War") (name fb:en.second_battle_of_bull_run "Second Battle of Bull Run"))) (type (union fb:military.military_conflict)) what russian language called? Russian Language 12.495 formula (!fb:people.ethnicity.languages_spoken fb:en.russians)) (value (list (name fb:en.russian_language "Russian Language"))) (type fb:language.human_language) who is in charge of libya now? Abdul Hafiz Ghoga 11.535 formula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 "Abdul Hafiz Ghoga") (name fb:m.0kvg5wq "Mohammed Ali Salim") (name fb:en.muammar_al-gaddafi "Muammar al-Gaddafi") (name fb:en.mahmud_sulayman_al_maghribi "Mahmud Sulayman al-Maghribi") (name fb:en.abdessalam_jalloud "Abdessalam Jalloud") (name fb:m.0h96pms "Mohammed Magariaf") (name fb:m.0hglttd "Abdurrahim El-Keib") (name fb:en.baghdadi_mahmudi "Baghdadi Mahmudi") (name fb:m.0r3w6t0 "Mohamed Abdelaziz") (name fb:m.0gjbh05 "Ali Tarhouni"))) (type fb:government.politician) who is in charge of libya now? Mohammed Ali Salim 11.535 formula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 "Abdul Hafiz Ghoga") (name fb:m.0kvg5wq "Mohammed Ali Salim") (name fb:en.muammar_al-gaddafi "Muammar al-Gaddafi") (name fb:en.mahmud_sulayman_al_maghribi "Mahmud Sulayman al-Maghribi") (name fb:en.abdessalam_jalloud "Abdessalam Jalloud") (name fb:m.0h96pms "Mohammed Magariaf") (name fb:m.0hglttd "Abdurrahim El-Keib") (name fb:en.baghdadi_mahmudi "Baghdadi Mahmudi") (name fb:m.0r3w6t0 "Mohamed Abdelaziz") (name fb:m.0gjbh05 "Ali Tarhouni"))) (type fb:government.politician) who is in charge of libya now? Muammar al-Gaddafi 11.535 formula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 "Abdul Hafiz Ghoga") (name fb:m.0kvg5wq "Mohammed Ali Salim") (name fb:en.muammar_al-gaddafi "Muammar al-Gaddafi") (name fb:en.mahmud_sulayman_al_maghribi "Mahmud Sulayman al-Maghribi") (name fb:en.abdessalam_jalloud "Abdessalam Jalloud") (name fb:m.0h96pms "Mohammed Magariaf") (name fb:m.0hglttd "Abdurrahim El-Keib") (name fb:en.baghdadi_mahmudi "Baghdadi Mahmudi") (name fb:m.0r3w6t0 "Mohamed Abdelaziz") (name fb:m.0gjbh05 "Ali Tarhouni"))) (type fb:government.politician) who is in charge of libya now? Mahmud Sulayman al-Maghribi 11.535 formula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 "Abdul Hafiz Ghoga") (name fb:m.0kvg5wq "Mohammed Ali Salim") (name fb:en.muammar_al-gaddafi "Muammar al-Gaddafi") (name fb:en.mahmud_sulayman_al_maghribi "Mahmud Sulayman al-Maghribi") (name fb:en.abdessalam_jalloud "Abdessalam Jalloud") (name fb:m.0h96pms "Mohammed Magariaf") (name fb:m.0hglttd "Abdurrahim El-Keib") (name fb:en.baghdadi_mahmudi "Baghdadi Mahmudi") (name fb:m.0r3w6t0 "Mohamed Abdelaziz") (name fb:m.0gjbh05 "Ali Tarhouni"))) (type fb:government.politician) who is in charge of libya now? Abdessalam Jalloud 11.535 formula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 "Abdul Hafiz Ghoga") (name fb:m.0kvg5wq "Mohammed Ali Salim") (name fb:en.muammar_al-gaddafi "Muammar al-Gaddafi") (name fb:en.mahmud_sulayman_al_maghribi "Mahmud Sulayman al-Maghribi") (name fb:en.abdessalam_jalloud "Abdessalam Jalloud") (name fb:m.0h96pms "Mohammed Magariaf") (name fb:m.0hglttd "Abdurrahim El-Keib") (name fb:en.baghdadi_mahmudi "Baghdadi Mahmudi") (name fb:m.0r3w6t0 "Mohamed Abdelaziz") (name fb:m.0gjbh05 "Ali Tarhouni"))) (type fb:government.politician) who is in charge of libya now? Mohammed Magariaf 11.535 formula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 "Abdul Hafiz Ghoga") (name fb:m.0kvg5wq "Mohammed Ali Salim") (name fb:en.muammar_al-gaddafi "Muammar al-Gaddafi") (name fb:en.mahmud_sulayman_al_maghribi "Mahmud Sulayman al-Maghribi") (name fb:en.abdessalam_jalloud "Abdessalam Jalloud") (name fb:m.0h96pms "Mohammed Magariaf") (name fb:m.0hglttd "Abdurrahim El-Keib") (name fb:en.baghdadi_mahmudi "Baghdadi Mahmudi") (name fb:m.0r3w6t0 "Mohamed Abdelaziz") (name fb:m.0gjbh05 "Ali Tarhouni"))) (type fb:government.politician) who is in charge of libya now? Abdurrahim El-Keib 11.535 formula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 "Abdul Hafiz Ghoga") (name fb:m.0kvg5wq "Mohammed Ali Salim") (name fb:en.muammar_al-gaddafi "Muammar al-Gaddafi") (name fb:en.mahmud_sulayman_al_maghribi "Mahmud Sulayman al-Maghribi") (name fb:en.abdessalam_jalloud "Abdessalam Jalloud") (name fb:m.0h96pms "Mohammed Magariaf") (name fb:m.0hglttd "Abdurrahim El-Keib") (name fb:en.baghdadi_mahmudi "Baghdadi Mahmudi") (name fb:m.0r3w6t0 "Mohamed Abdelaziz") (name fb:m.0gjbh05 "Ali Tarhouni"))) (type fb:government.politician) who is in charge of libya now? Baghdadi Mahmudi 11.535 formula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 "Abdul Hafiz Ghoga") (name fb:m.0kvg5wq "Mohammed Ali Salim") (name fb:en.muammar_al-gaddafi "Muammar al-Gaddafi") (name fb:en.mahmud_sulayman_al_maghribi "Mahmud Sulayman al-Maghribi") (name fb:en.abdessalam_jalloud "Abdessalam Jalloud") (name fb:m.0h96pms "Mohammed Magariaf") (name fb:m.0hglttd "Abdurrahim El-Keib") (name fb:en.baghdadi_mahmudi "Baghdadi Mahmudi") (name fb:m.0r3w6t0 "Mohamed Abdelaziz") (name fb:m.0gjbh05 "Ali Tarhouni"))) (type fb:government.politician) who is in charge of libya now? Mohamed Abdelaziz 11.535 formula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 "Abdul Hafiz Ghoga") (name fb:m.0kvg5wq "Mohammed Ali Salim") (name fb:en.muammar_al-gaddafi "Muammar al-Gaddafi") (name fb:en.mahmud_sulayman_al_maghribi "Mahmud Sulayman al-Maghribi") (name fb:en.abdessalam_jalloud "Abdessalam Jalloud") (name fb:m.0h96pms "Mohammed Magariaf") (name fb:m.0hglttd "Abdurrahim El-Keib") (name fb:en.baghdadi_mahmudi "Baghdadi Mahmudi") (name fb:m.0r3w6t0 "Mohamed Abdelaziz") (name fb:m.0gjbh05 "Ali Tarhouni"))) (type fb:government.politician) who is in charge of libya now? Ali Tarhouni 11.535 formula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 "Abdul Hafiz Ghoga") (name fb:m.0kvg5wq "Mohammed Ali Salim") (name fb:en.muammar_al-gaddafi "Muammar al-Gaddafi") (name fb:en.mahmud_sulayman_al_maghribi "Mahmud Sulayman al-Maghribi") (name fb:en.abdessalam_jalloud "Abdessalam Jalloud") (name fb:m.0h96pms "Mohammed Magariaf") (name fb:m.0hglttd "Abdurrahim El-Keib") (name fb:en.baghdadi_mahmudi "Baghdadi Mahmudi") (name fb:m.0r3w6t0 "Mohamed Abdelaziz") (name fb:m.0gjbh05 "Ali Tarhouni"))) (type fb:government.politician) what currency does australia use 2012? Australian dollar 17.004 formula (!fb:location.country.currency_used fb:en.australia)) (value (list (name fb:en.australian_dollar "Australian dollar"))) (type fb:finance.currency) what kind of disease does montel williams have? Multiple sclerosis 15.894 formula (and (fb:type.object.type fb:medicine.disease) (fb:medicine.disease.notable_people_with_this_condition fb:en.montel_williams))) (value (list (name fb:en.multiple_sclerosis "Multiple sclerosis"))) (type (union fb:medicine.disease)) when is the last time the ravens won a superbowl? Super Bowl XLVII 19.788 formula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.baltimore_ravens))) (value (list (name fb:en.super_bowl_xlvii "Super Bowl XLVII") (name fb:en.super_bowl_xxxv "Super Bowl XXXV"))) (type fb:sports.sports_championship_event) when is the last time the ravens won a superbowl? Super Bowl XXXV 19.788 formula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.baltimore_ravens))) (value (list (name fb:en.super_bowl_xlvii "Super Bowl XLVII") (name fb:en.super_bowl_xxxv "Super Bowl XXXV"))) (type fb:sports.sports_championship_event) where did kansas city royals come from? University of North Carolina at Chapel Hill 5.091 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.kansas_city_royals))) (value (list (name fb:en.university_of_north_carolina_at_chapel_hill "University of North Carolina at Chapel Hill") (name fb:en.university_of_alabama_in_huntsville "University of Alabama in Huntsville") (name fb:en.seton_hall_university "Seton Hall University") (name fb:en.middle_tennessee_state_university "Middle Tennessee State University") (name fb:en.university_of_nebraska_omaha "University of Nebraska at Omaha") (name fb:en.chatsworth_high_school "Chatsworth High School") (name fb:en.antelope_valley_college "Antelope Valley College") (name fb:en.virginia_commonwealth_university "Virginia Commonwealth University") (name fb:en.stanford_university "Stanford University") (name fb:en.texas_a_m_university "Texas A&M University"))) (type fb:education.educational_institution) where did kansas city royals come from? University of Alabama in Huntsville 5.091 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.kansas_city_royals))) (value (list (name fb:en.university_of_north_carolina_at_chapel_hill "University of North Carolina at Chapel Hill") (name fb:en.university_of_alabama_in_huntsville "University of Alabama in Huntsville") (name fb:en.seton_hall_university "Seton Hall University") (name fb:en.middle_tennessee_state_university "Middle Tennessee State University") (name fb:en.university_of_nebraska_omaha "University of Nebraska at Omaha") (name fb:en.chatsworth_high_school "Chatsworth High School") (name fb:en.antelope_valley_college "Antelope Valley College") (name fb:en.virginia_commonwealth_university "Virginia Commonwealth University") (name fb:en.stanford_university "Stanford University") (name fb:en.texas_a_m_university "Texas A&M University"))) (type fb:education.educational_institution) where did kansas city royals come from? Seton Hall University 5.091 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.kansas_city_royals))) (value (list (name fb:en.university_of_north_carolina_at_chapel_hill "University of North Carolina at Chapel Hill") (name fb:en.university_of_alabama_in_huntsville "University of Alabama in Huntsville") (name fb:en.seton_hall_university "Seton Hall University") (name fb:en.middle_tennessee_state_university "Middle Tennessee State University") (name fb:en.university_of_nebraska_omaha "University of Nebraska at Omaha") (name fb:en.chatsworth_high_school "Chatsworth High School") (name fb:en.antelope_valley_college "Antelope Valley College") (name fb:en.virginia_commonwealth_university "Virginia Commonwealth University") (name fb:en.stanford_university "Stanford University") (name fb:en.texas_a_m_university "Texas A&M University"))) (type fb:education.educational_institution) where did kansas city royals come from? Middle Tennessee State University 5.091 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.kansas_city_royals))) (value (list (name fb:en.university_of_north_carolina_at_chapel_hill "University of North Carolina at Chapel Hill") (name fb:en.university_of_alabama_in_huntsville "University of Alabama in Huntsville") (name fb:en.seton_hall_university "Seton Hall University") (name fb:en.middle_tennessee_state_university "Middle Tennessee State University") (name fb:en.university_of_nebraska_omaha "University of Nebraska at Omaha") (name fb:en.chatsworth_high_school "Chatsworth High School") (name fb:en.antelope_valley_college "Antelope Valley College") (name fb:en.virginia_commonwealth_university "Virginia Commonwealth University") (name fb:en.stanford_university "Stanford University") (name fb:en.texas_a_m_university "Texas A&M University"))) (type fb:education.educational_institution) where did kansas city royals come from? University of Nebraska at Omaha 5.091 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.kansas_city_royals))) (value (list (name fb:en.university_of_north_carolina_at_chapel_hill "University of North Carolina at Chapel Hill") (name fb:en.university_of_alabama_in_huntsville "University of Alabama in Huntsville") (name fb:en.seton_hall_university "Seton Hall University") (name fb:en.middle_tennessee_state_university "Middle Tennessee State University") (name fb:en.university_of_nebraska_omaha "University of Nebraska at Omaha") (name fb:en.chatsworth_high_school "Chatsworth High School") (name fb:en.antelope_valley_college "Antelope Valley College") (name fb:en.virginia_commonwealth_university "Virginia Commonwealth University") (name fb:en.stanford_university "Stanford University") (name fb:en.texas_a_m_university "Texas A&M University"))) (type fb:education.educational_institution) where did kansas city royals come from? Chatsworth High School 5.091 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.kansas_city_royals))) (value (list (name fb:en.university_of_north_carolina_at_chapel_hill "University of North Carolina at Chapel Hill") (name fb:en.university_of_alabama_in_huntsville "University of Alabama in Huntsville") (name fb:en.seton_hall_university "Seton Hall University") (name fb:en.middle_tennessee_state_university "Middle Tennessee State University") (name fb:en.university_of_nebraska_omaha "University of Nebraska at Omaha") (name fb:en.chatsworth_high_school "Chatsworth High School") (name fb:en.antelope_valley_college "Antelope Valley College") (name fb:en.virginia_commonwealth_university "Virginia Commonwealth University") (name fb:en.stanford_university "Stanford University") (name fb:en.texas_a_m_university "Texas A&M University"))) (type fb:education.educational_institution) where did kansas city royals come from? Antelope Valley College 5.091 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.kansas_city_royals))) (value (list (name fb:en.university_of_north_carolina_at_chapel_hill "University of North Carolina at Chapel Hill") (name fb:en.university_of_alabama_in_huntsville "University of Alabama in Huntsville") (name fb:en.seton_hall_university "Seton Hall University") (name fb:en.middle_tennessee_state_university "Middle Tennessee State University") (name fb:en.university_of_nebraska_omaha "University of Nebraska at Omaha") (name fb:en.chatsworth_high_school "Chatsworth High School") (name fb:en.antelope_valley_college "Antelope Valley College") (name fb:en.virginia_commonwealth_university "Virginia Commonwealth University") (name fb:en.stanford_university "Stanford University") (name fb:en.texas_a_m_university "Texas A&M University"))) (type fb:education.educational_institution) where did kansas city royals come from? Virginia Commonwealth University 5.091 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.kansas_city_royals))) (value (list (name fb:en.university_of_north_carolina_at_chapel_hill "University of North Carolina at Chapel Hill") (name fb:en.university_of_alabama_in_huntsville "University of Alabama in Huntsville") (name fb:en.seton_hall_university "Seton Hall University") (name fb:en.middle_tennessee_state_university "Middle Tennessee State University") (name fb:en.university_of_nebraska_omaha "University of Nebraska at Omaha") (name fb:en.chatsworth_high_school "Chatsworth High School") (name fb:en.antelope_valley_college "Antelope Valley College") (name fb:en.virginia_commonwealth_university "Virginia Commonwealth University") (name fb:en.stanford_university "Stanford University") (name fb:en.texas_a_m_university "Texas A&M University"))) (type fb:education.educational_institution) where did kansas city royals come from? Stanford University 5.091 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.kansas_city_royals))) (value (list (name fb:en.university_of_north_carolina_at_chapel_hill "University of North Carolina at Chapel Hill") (name fb:en.university_of_alabama_in_huntsville "University of Alabama in Huntsville") (name fb:en.seton_hall_university "Seton Hall University") (name fb:en.middle_tennessee_state_university "Middle Tennessee State University") (name fb:en.university_of_nebraska_omaha "University of Nebraska at Omaha") (name fb:en.chatsworth_high_school "Chatsworth High School") (name fb:en.antelope_valley_college "Antelope Valley College") (name fb:en.virginia_commonwealth_university "Virginia Commonwealth University") (name fb:en.stanford_university "Stanford University") (name fb:en.texas_a_m_university "Texas A&M University"))) (type fb:education.educational_institution) where did kansas city royals come from? Texas A&M University 5.091 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.kansas_city_royals))) (value (list (name fb:en.university_of_north_carolina_at_chapel_hill "University of North Carolina at Chapel Hill") (name fb:en.university_of_alabama_in_huntsville "University of Alabama in Huntsville") (name fb:en.seton_hall_university "Seton Hall University") (name fb:en.middle_tennessee_state_university "Middle Tennessee State University") (name fb:en.university_of_nebraska_omaha "University of Nebraska at Omaha") (name fb:en.chatsworth_high_school "Chatsworth High School") (name fb:en.antelope_valley_college "Antelope Valley College") (name fb:en.virginia_commonwealth_university "Virginia Commonwealth University") (name fb:en.stanford_university "Stanford University") (name fb:en.texas_a_m_university "Texas A&M University"))) (type fb:education.educational_institution) what style of music does john mayer play? Rock music 14.799 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.john_mayer))) (value (list (name fb:en.rock_music "Rock music") (name fb:en.soul_rock "Soul rock") (name fb:en.pop_music "Pop music") (name fb:en.indie_rock "Indie rock") (name fb:en.acoustic_music "Acoustic music") (name fb:en.soft_rock "Soft rock") (name fb:en.blues-rock Blues-rock) (name fb:en.alternative_rock "Alternative rock") (name fb:en.soul_music "Soul music") (name fb:en.pop_rock "Pop rock"))) (type (union fb:music.genre)) what style of music does john mayer play? Soul rock 14.799 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.john_mayer))) (value (list (name fb:en.rock_music "Rock music") (name fb:en.soul_rock "Soul rock") (name fb:en.pop_music "Pop music") (name fb:en.indie_rock "Indie rock") (name fb:en.acoustic_music "Acoustic music") (name fb:en.soft_rock "Soft rock") (name fb:en.blues-rock Blues-rock) (name fb:en.alternative_rock "Alternative rock") (name fb:en.soul_music "Soul music") (name fb:en.pop_rock "Pop rock"))) (type (union fb:music.genre)) what style of music does john mayer play? Pop music 14.799 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.john_mayer))) (value (list (name fb:en.rock_music "Rock music") (name fb:en.soul_rock "Soul rock") (name fb:en.pop_music "Pop music") (name fb:en.indie_rock "Indie rock") (name fb:en.acoustic_music "Acoustic music") (name fb:en.soft_rock "Soft rock") (name fb:en.blues-rock Blues-rock) (name fb:en.alternative_rock "Alternative rock") (name fb:en.soul_music "Soul music") (name fb:en.pop_rock "Pop rock"))) (type (union fb:music.genre)) what style of music does john mayer play? Indie rock 14.799 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.john_mayer))) (value (list (name fb:en.rock_music "Rock music") (name fb:en.soul_rock "Soul rock") (name fb:en.pop_music "Pop music") (name fb:en.indie_rock "Indie rock") (name fb:en.acoustic_music "Acoustic music") (name fb:en.soft_rock "Soft rock") (name fb:en.blues-rock Blues-rock) (name fb:en.alternative_rock "Alternative rock") (name fb:en.soul_music "Soul music") (name fb:en.pop_rock "Pop rock"))) (type (union fb:music.genre)) what style of music does john mayer play? Acoustic music 14.799 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.john_mayer))) (value (list (name fb:en.rock_music "Rock music") (name fb:en.soul_rock "Soul rock") (name fb:en.pop_music "Pop music") (name fb:en.indie_rock "Indie rock") (name fb:en.acoustic_music "Acoustic music") (name fb:en.soft_rock "Soft rock") (name fb:en.blues-rock Blues-rock) (name fb:en.alternative_rock "Alternative rock") (name fb:en.soul_music "Soul music") (name fb:en.pop_rock "Pop rock"))) (type (union fb:music.genre)) what style of music does john mayer play? Soft rock 14.799 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.john_mayer))) (value (list (name fb:en.rock_music "Rock music") (name fb:en.soul_rock "Soul rock") (name fb:en.pop_music "Pop music") (name fb:en.indie_rock "Indie rock") (name fb:en.acoustic_music "Acoustic music") (name fb:en.soft_rock "Soft rock") (name fb:en.blues-rock Blues-rock) (name fb:en.alternative_rock "Alternative rock") (name fb:en.soul_music "Soul music") (name fb:en.pop_rock "Pop rock"))) (type (union fb:music.genre)) what style of music does john mayer play? Alternative rock 14.799 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.john_mayer))) (value (list (name fb:en.rock_music "Rock music") (name fb:en.soul_rock "Soul rock") (name fb:en.pop_music "Pop music") (name fb:en.indie_rock "Indie rock") (name fb:en.acoustic_music "Acoustic music") (name fb:en.soft_rock "Soft rock") (name fb:en.blues-rock Blues-rock) (name fb:en.alternative_rock "Alternative rock") (name fb:en.soul_music "Soul music") (name fb:en.pop_rock "Pop rock"))) (type (union fb:music.genre)) what style of music does john mayer play? Soul music 14.799 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.john_mayer))) (value (list (name fb:en.rock_music "Rock music") (name fb:en.soul_rock "Soul rock") (name fb:en.pop_music "Pop music") (name fb:en.indie_rock "Indie rock") (name fb:en.acoustic_music "Acoustic music") (name fb:en.soft_rock "Soft rock") (name fb:en.blues-rock Blues-rock) (name fb:en.alternative_rock "Alternative rock") (name fb:en.soul_music "Soul music") (name fb:en.pop_rock "Pop rock"))) (type (union fb:music.genre)) what style of music does john mayer play? Pop rock 14.799 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.john_mayer))) (value (list (name fb:en.rock_music "Rock music") (name fb:en.soul_rock "Soul rock") (name fb:en.pop_music "Pop music") (name fb:en.indie_rock "Indie rock") (name fb:en.acoustic_music "Acoustic music") (name fb:en.soft_rock "Soft rock") (name fb:en.blues-rock Blues-rock) (name fb:en.alternative_rock "Alternative rock") (name fb:en.soul_music "Soul music") (name fb:en.pop_rock "Pop rock"))) (type (union fb:music.genre)) what is the theme of scarlet letter by nathaniel hawthorne? Dark romanticism 10.204 formula (fb:user.agroschim.default_domain.literary_movement.important_writers fb:en.nathaniel_hawthorne)) (value (list (name fb:en.dark_romanticism "Dark romanticism"))) (type fb:user.agroschim.default_domain.literary_movement) what inventions did thomas edison invent list? Phonograph cylinder 16.164 formula (!fb:law.inventor.inventions fb:en.thomas_edison)) (value (list (name fb:en.phonograph_cylinder "Phonograph cylinder") (name fb:en.phonograph Phonograph) (name fb:en.electricity_distribution "Electric power distribution") (name fb:en.incandescent_light_bulb "Incandescent light bulb") (name fb:en.movie_camera "Movie camera") (name fb:en.quadruplex_telegraph "Quadruplex telegraph") (name fb:en.carbon_microphone "Carbon microphone") (name fb:en.mimeograph_machine Mimeograph))) (type fb:law.invention) what inventions did thomas edison invent list? Electric power distribution 16.164 formula (!fb:law.inventor.inventions fb:en.thomas_edison)) (value (list (name fb:en.phonograph_cylinder "Phonograph cylinder") (name fb:en.phonograph Phonograph) (name fb:en.electricity_distribution "Electric power distribution") (name fb:en.incandescent_light_bulb "Incandescent light bulb") (name fb:en.movie_camera "Movie camera") (name fb:en.quadruplex_telegraph "Quadruplex telegraph") (name fb:en.carbon_microphone "Carbon microphone") (name fb:en.mimeograph_machine Mimeograph))) (type fb:law.invention) what inventions did thomas edison invent list? Incandescent light bulb 16.164 formula (!fb:law.inventor.inventions fb:en.thomas_edison)) (value (list (name fb:en.phonograph_cylinder "Phonograph cylinder") (name fb:en.phonograph Phonograph) (name fb:en.electricity_distribution "Electric power distribution") (name fb:en.incandescent_light_bulb "Incandescent light bulb") (name fb:en.movie_camera "Movie camera") (name fb:en.quadruplex_telegraph "Quadruplex telegraph") (name fb:en.carbon_microphone "Carbon microphone") (name fb:en.mimeograph_machine Mimeograph))) (type fb:law.invention) what inventions did thomas edison invent list? Movie camera 16.164 formula (!fb:law.inventor.inventions fb:en.thomas_edison)) (value (list (name fb:en.phonograph_cylinder "Phonograph cylinder") (name fb:en.phonograph Phonograph) (name fb:en.electricity_distribution "Electric power distribution") (name fb:en.incandescent_light_bulb "Incandescent light bulb") (name fb:en.movie_camera "Movie camera") (name fb:en.quadruplex_telegraph "Quadruplex telegraph") (name fb:en.carbon_microphone "Carbon microphone") (name fb:en.mimeograph_machine Mimeograph))) (type fb:law.invention) what inventions did thomas edison invent list? Quadruplex telegraph 16.164 formula (!fb:law.inventor.inventions fb:en.thomas_edison)) (value (list (name fb:en.phonograph_cylinder "Phonograph cylinder") (name fb:en.phonograph Phonograph) (name fb:en.electricity_distribution "Electric power distribution") (name fb:en.incandescent_light_bulb "Incandescent light bulb") (name fb:en.movie_camera "Movie camera") (name fb:en.quadruplex_telegraph "Quadruplex telegraph") (name fb:en.carbon_microphone "Carbon microphone") (name fb:en.mimeograph_machine Mimeograph))) (type fb:law.invention) what inventions did thomas edison invent list? Carbon microphone 16.164 formula (!fb:law.inventor.inventions fb:en.thomas_edison)) (value (list (name fb:en.phonograph_cylinder "Phonograph cylinder") (name fb:en.phonograph Phonograph) (name fb:en.electricity_distribution "Electric power distribution") (name fb:en.incandescent_light_bulb "Incandescent light bulb") (name fb:en.movie_camera "Movie camera") (name fb:en.quadruplex_telegraph "Quadruplex telegraph") (name fb:en.carbon_microphone "Carbon microphone") (name fb:en.mimeograph_machine Mimeograph))) (type fb:law.invention) who is the arizona cardinals backup quarterback? Entertainment Weekly annotation index 4.475 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.arizona_cardinals)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index"))) (type fb:common.annotation_index) who is the arizona cardinals backup quarterback? WSJ Speakeasy Index 4.475 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.arizona_cardinals)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index"))) (type fb:common.annotation_index) what kind of music did jimi hendrix play? Rock music 14.943 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.jimi_hendrix))) (value (list (name fb:en.rock_music "Rock music") (name fb:en.hard_rock "Hard rock") (name fb:en.experimental_rock "Experimental rock") (name fb:en.heavy_metal "Heavy metal") (name fb:en.funk-rock "Funk rock") (name fb:en.blues-rock Blues-rock) (name fb:en.psychedelic_rock "Psychedelic rock") (name fb:en.progressive_rock "Progressive rock") (name fb:en.blues Blues) (name fb:en.psychedelia Psychedelia))) (type (union fb:music.genre)) what kind of music did jimi hendrix play? Hard rock 14.943 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.jimi_hendrix))) (value (list (name fb:en.rock_music "Rock music") (name fb:en.hard_rock "Hard rock") (name fb:en.experimental_rock "Experimental rock") (name fb:en.heavy_metal "Heavy metal") (name fb:en.funk-rock "Funk rock") (name fb:en.blues-rock Blues-rock) (name fb:en.psychedelic_rock "Psychedelic rock") (name fb:en.progressive_rock "Progressive rock") (name fb:en.blues Blues) (name fb:en.psychedelia Psychedelia))) (type (union fb:music.genre)) what kind of music did jimi hendrix play? Experimental rock 14.943 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.jimi_hendrix))) (value (list (name fb:en.rock_music "Rock music") (name fb:en.hard_rock "Hard rock") (name fb:en.experimental_rock "Experimental rock") (name fb:en.heavy_metal "Heavy metal") (name fb:en.funk-rock "Funk rock") (name fb:en.blues-rock Blues-rock) (name fb:en.psychedelic_rock "Psychedelic rock") (name fb:en.progressive_rock "Progressive rock") (name fb:en.blues Blues) (name fb:en.psychedelia Psychedelia))) (type (union fb:music.genre)) what kind of music did jimi hendrix play? Heavy metal 14.943 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.jimi_hendrix))) (value (list (name fb:en.rock_music "Rock music") (name fb:en.hard_rock "Hard rock") (name fb:en.experimental_rock "Experimental rock") (name fb:en.heavy_metal "Heavy metal") (name fb:en.funk-rock "Funk rock") (name fb:en.blues-rock Blues-rock) (name fb:en.psychedelic_rock "Psychedelic rock") (name fb:en.progressive_rock "Progressive rock") (name fb:en.blues Blues) (name fb:en.psychedelia Psychedelia))) (type (union fb:music.genre)) what kind of music did jimi hendrix play? Funk rock 14.943 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.jimi_hendrix))) (value (list (name fb:en.rock_music "Rock music") (name fb:en.hard_rock "Hard rock") (name fb:en.experimental_rock "Experimental rock") (name fb:en.heavy_metal "Heavy metal") (name fb:en.funk-rock "Funk rock") (name fb:en.blues-rock Blues-rock) (name fb:en.psychedelic_rock "Psychedelic rock") (name fb:en.progressive_rock "Progressive rock") (name fb:en.blues Blues) (name fb:en.psychedelia Psychedelia))) (type (union fb:music.genre)) what kind of music did jimi hendrix play? Psychedelic rock 14.943 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.jimi_hendrix))) (value (list (name fb:en.rock_music "Rock music") (name fb:en.hard_rock "Hard rock") (name fb:en.experimental_rock "Experimental rock") (name fb:en.heavy_metal "Heavy metal") (name fb:en.funk-rock "Funk rock") (name fb:en.blues-rock Blues-rock) (name fb:en.psychedelic_rock "Psychedelic rock") (name fb:en.progressive_rock "Progressive rock") (name fb:en.blues Blues) (name fb:en.psychedelia Psychedelia))) (type (union fb:music.genre)) what kind of music did jimi hendrix play? Progressive rock 14.943 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.jimi_hendrix))) (value (list (name fb:en.rock_music "Rock music") (name fb:en.hard_rock "Hard rock") (name fb:en.experimental_rock "Experimental rock") (name fb:en.heavy_metal "Heavy metal") (name fb:en.funk-rock "Funk rock") (name fb:en.blues-rock Blues-rock) (name fb:en.psychedelic_rock "Psychedelic rock") (name fb:en.progressive_rock "Progressive rock") (name fb:en.blues Blues) (name fb:en.psychedelia Psychedelia))) (type (union fb:music.genre)) what degrees did obama get in college? Bachelor of Arts 16.107 formula (and (fb:type.object.type fb:education.educational_degree) ((lambda x (fb:education.educational_degree.people_with_this_degree (fb:education.education.student (var x)))) fb:en.barack_obama))) (value (list (name fb:en.a_b "Bachelor of Arts") (name fb:en.juris_doctor "Juris Doctor"))) (type (union fb:education.educational_degree)) what degrees did obama get in college? Juris Doctor 16.107 formula (and (fb:type.object.type fb:education.educational_degree) ((lambda x (fb:education.educational_degree.people_with_this_degree (fb:education.education.student (var x)))) fb:en.barack_obama))) (value (list (name fb:en.a_b "Bachelor of Arts") (name fb:en.juris_doctor "Juris Doctor"))) (type (union fb:education.educational_degree)) who were alexander graham bell's siblings? Melville James Bell 14.645 formula ((lambda x (!fb:people.sibling_relationship.sibling (!fb:people.person.sibling_s (var x)))) fb:en.alexander_graham_bell)) (value (list (name fb:m.0k257qt "Melville James Bell") (name fb:en.chichester_bell "Chichester Bell"))) (type fb:people.person) who were alexander graham bell's siblings? Chichester Bell 14.645 formula ((lambda x (!fb:people.sibling_relationship.sibling (!fb:people.person.sibling_s (var x)))) fb:en.alexander_graham_bell)) (value (list (name fb:m.0k257qt "Melville James Bell") (name fb:en.chichester_bell "Chichester Bell"))) (type fb:people.person) when tupac was shot? Respiratory failure 8.652 formula (fb:people.cause_of_death.people fb:en.tupac_shakur)) (value (list (name fb:en.murder Murder) (name fb:en.respiratory_failure "Respiratory failure") (name fb:en.firearm Firearm) (name fb:en.gunshot Gunshot))) (type fb:people.cause_of_death) when did liverpool fc last win the champions league? 1991–92 FA Cup 13.975 formula (fb:sports.sports_championship_event.champion fb:en.liverpool_fc)) (value (list (name fb:en.fa_cup_1991_92 "1991–92 FA Cup") (name fb:en.fa_cup_final_1992 "1992 FA Cup Final") (name fb:en.fa_cup_final_1986 "1986 FA Cup Final") (name fb:en.fa_cup_1985_86 "1985–86 FA Cup") (name fb:en.fa_cup_final_2006 "2006 FA Cup Final") (name fb:en.fa_cup_final_1974 "1974 FA Cup Final") (name fb:en.football_league_cup_final_2003 "2003 Football League Cup Final") (name fb:en.fa_cup_2005-06 "2005–06 FA Cup") (name fb:en.fa_cup_1964_65 "1964–65 FA Cup") (name fb:en.uefa_cup_2000-01 "2000–01 UEFA Cup"))) (type fb:sports.sports_championship_event) when did liverpool fc last win the champions league? 1992 FA Cup Final 13.975 formula (fb:sports.sports_championship_event.champion fb:en.liverpool_fc)) (value (list (name fb:en.fa_cup_1991_92 "1991–92 FA Cup") (name fb:en.fa_cup_final_1992 "1992 FA Cup Final") (name fb:en.fa_cup_final_1986 "1986 FA Cup Final") (name fb:en.fa_cup_1985_86 "1985–86 FA Cup") (name fb:en.fa_cup_final_2006 "2006 FA Cup Final") (name fb:en.fa_cup_final_1974 "1974 FA Cup Final") (name fb:en.football_league_cup_final_2003 "2003 Football League Cup Final") (name fb:en.fa_cup_2005-06 "2005–06 FA Cup") (name fb:en.fa_cup_1964_65 "1964–65 FA Cup") (name fb:en.uefa_cup_2000-01 "2000–01 UEFA Cup"))) (type fb:sports.sports_championship_event) when did liverpool fc last win the champions league? 1986 FA Cup Final 13.975 formula (fb:sports.sports_championship_event.champion fb:en.liverpool_fc)) (value (list (name fb:en.fa_cup_1991_92 "1991–92 FA Cup") (name fb:en.fa_cup_final_1992 "1992 FA Cup Final") (name fb:en.fa_cup_final_1986 "1986 FA Cup Final") (name fb:en.fa_cup_1985_86 "1985–86 FA Cup") (name fb:en.fa_cup_final_2006 "2006 FA Cup Final") (name fb:en.fa_cup_final_1974 "1974 FA Cup Final") (name fb:en.football_league_cup_final_2003 "2003 Football League Cup Final") (name fb:en.fa_cup_2005-06 "2005–06 FA Cup") (name fb:en.fa_cup_1964_65 "1964–65 FA Cup") (name fb:en.uefa_cup_2000-01 "2000–01 UEFA Cup"))) (type fb:sports.sports_championship_event) when did liverpool fc last win the champions league? 1985–86 FA Cup 13.975 formula (fb:sports.sports_championship_event.champion fb:en.liverpool_fc)) (value (list (name fb:en.fa_cup_1991_92 "1991–92 FA Cup") (name fb:en.fa_cup_final_1992 "1992 FA Cup Final") (name fb:en.fa_cup_final_1986 "1986 FA Cup Final") (name fb:en.fa_cup_1985_86 "1985–86 FA Cup") (name fb:en.fa_cup_final_2006 "2006 FA Cup Final") (name fb:en.fa_cup_final_1974 "1974 FA Cup Final") (name fb:en.football_league_cup_final_2003 "2003 Football League Cup Final") (name fb:en.fa_cup_2005-06 "2005–06 FA Cup") (name fb:en.fa_cup_1964_65 "1964–65 FA Cup") (name fb:en.uefa_cup_2000-01 "2000–01 UEFA Cup"))) (type fb:sports.sports_championship_event) when did liverpool fc last win the champions league? 2006 FA Cup Final 13.975 formula (fb:sports.sports_championship_event.champion fb:en.liverpool_fc)) (value (list (name fb:en.fa_cup_1991_92 "1991–92 FA Cup") (name fb:en.fa_cup_final_1992 "1992 FA Cup Final") (name fb:en.fa_cup_final_1986 "1986 FA Cup Final") (name fb:en.fa_cup_1985_86 "1985–86 FA Cup") (name fb:en.fa_cup_final_2006 "2006 FA Cup Final") (name fb:en.fa_cup_final_1974 "1974 FA Cup Final") (name fb:en.football_league_cup_final_2003 "2003 Football League Cup Final") (name fb:en.fa_cup_2005-06 "2005–06 FA Cup") (name fb:en.fa_cup_1964_65 "1964–65 FA Cup") (name fb:en.uefa_cup_2000-01 "2000–01 UEFA Cup"))) (type fb:sports.sports_championship_event) when did liverpool fc last win the champions league? 1974 FA Cup Final 13.975 formula (fb:sports.sports_championship_event.champion fb:en.liverpool_fc)) (value (list (name fb:en.fa_cup_1991_92 "1991–92 FA Cup") (name fb:en.fa_cup_final_1992 "1992 FA Cup Final") (name fb:en.fa_cup_final_1986 "1986 FA Cup Final") (name fb:en.fa_cup_1985_86 "1985–86 FA Cup") (name fb:en.fa_cup_final_2006 "2006 FA Cup Final") (name fb:en.fa_cup_final_1974 "1974 FA Cup Final") (name fb:en.football_league_cup_final_2003 "2003 Football League Cup Final") (name fb:en.fa_cup_2005-06 "2005–06 FA Cup") (name fb:en.fa_cup_1964_65 "1964–65 FA Cup") (name fb:en.uefa_cup_2000-01 "2000–01 UEFA Cup"))) (type fb:sports.sports_championship_event) when did liverpool fc last win the champions league? 2003 Football League Cup Final 13.975 formula (fb:sports.sports_championship_event.champion fb:en.liverpool_fc)) (value (list (name fb:en.fa_cup_1991_92 "1991–92 FA Cup") (name fb:en.fa_cup_final_1992 "1992 FA Cup Final") (name fb:en.fa_cup_final_1986 "1986 FA Cup Final") (name fb:en.fa_cup_1985_86 "1985–86 FA Cup") (name fb:en.fa_cup_final_2006 "2006 FA Cup Final") (name fb:en.fa_cup_final_1974 "1974 FA Cup Final") (name fb:en.football_league_cup_final_2003 "2003 Football League Cup Final") (name fb:en.fa_cup_2005-06 "2005–06 FA Cup") (name fb:en.fa_cup_1964_65 "1964–65 FA Cup") (name fb:en.uefa_cup_2000-01 "2000–01 UEFA Cup"))) (type fb:sports.sports_championship_event) when did liverpool fc last win the champions league? 2005–06 FA Cup 13.975 formula (fb:sports.sports_championship_event.champion fb:en.liverpool_fc)) (value (list (name fb:en.fa_cup_1991_92 "1991–92 FA Cup") (name fb:en.fa_cup_final_1992 "1992 FA Cup Final") (name fb:en.fa_cup_final_1986 "1986 FA Cup Final") (name fb:en.fa_cup_1985_86 "1985–86 FA Cup") (name fb:en.fa_cup_final_2006 "2006 FA Cup Final") (name fb:en.fa_cup_final_1974 "1974 FA Cup Final") (name fb:en.football_league_cup_final_2003 "2003 Football League Cup Final") (name fb:en.fa_cup_2005-06 "2005–06 FA Cup") (name fb:en.fa_cup_1964_65 "1964–65 FA Cup") (name fb:en.uefa_cup_2000-01 "2000–01 UEFA Cup"))) (type fb:sports.sports_championship_event) when did liverpool fc last win the champions league? 1964–65 FA Cup 13.975 formula (fb:sports.sports_championship_event.champion fb:en.liverpool_fc)) (value (list (name fb:en.fa_cup_1991_92 "1991–92 FA Cup") (name fb:en.fa_cup_final_1992 "1992 FA Cup Final") (name fb:en.fa_cup_final_1986 "1986 FA Cup Final") (name fb:en.fa_cup_1985_86 "1985–86 FA Cup") (name fb:en.fa_cup_final_2006 "2006 FA Cup Final") (name fb:en.fa_cup_final_1974 "1974 FA Cup Final") (name fb:en.football_league_cup_final_2003 "2003 Football League Cup Final") (name fb:en.fa_cup_2005-06 "2005–06 FA Cup") (name fb:en.fa_cup_1964_65 "1964–65 FA Cup") (name fb:en.uefa_cup_2000-01 "2000–01 UEFA Cup"))) (type fb:sports.sports_championship_event) when did liverpool fc last win the champions league? 2000–01 UEFA Cup 13.975 formula (fb:sports.sports_championship_event.champion fb:en.liverpool_fc)) (value (list (name fb:en.fa_cup_1991_92 "1991–92 FA Cup") (name fb:en.fa_cup_final_1992 "1992 FA Cup Final") (name fb:en.fa_cup_final_1986 "1986 FA Cup Final") (name fb:en.fa_cup_1985_86 "1985–86 FA Cup") (name fb:en.fa_cup_final_2006 "2006 FA Cup Final") (name fb:en.fa_cup_final_1974 "1974 FA Cup Final") (name fb:en.football_league_cup_final_2003 "2003 Football League Cup Final") (name fb:en.fa_cup_2005-06 "2005–06 FA Cup") (name fb:en.fa_cup_1964_65 "1964–65 FA Cup") (name fb:en.uefa_cup_2000-01 "2000–01 UEFA Cup"))) (type fb:sports.sports_championship_event) who played jeannie? Helen Hunt 5.114 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:m.0bdpjtb)) (value (list (name fb:en.helen_hunt "Helen Hunt"))) (type fb:film.actor) what kind of shoes do french people wear? Bachelor's degree 4.911 formula ((lambda x (fb:education.educational_degree.people_with_this_degree (fb:education.education.major_field_of_study (var x)))) fb:en.french)) (value (list (name fb:en.bachelors_degree "Bachelor's degree") (name fb:en.a_b "Bachelor of Arts") (name fb:en.bachelor_of_science "Bachelor of Science") (name fb:en.masters_degree "Master's Degree") (name fb:en.bachelor_of_arts_international "Bachelor of Arts International"))) (type fb:education.educational_degree) what kind of shoes do french people wear? Bachelor of Arts 4.911 formula ((lambda x (fb:education.educational_degree.people_with_this_degree (fb:education.education.major_field_of_study (var x)))) fb:en.french)) (value (list (name fb:en.bachelors_degree "Bachelor's degree") (name fb:en.a_b "Bachelor of Arts") (name fb:en.bachelor_of_science "Bachelor of Science") (name fb:en.masters_degree "Master's Degree") (name fb:en.bachelor_of_arts_international "Bachelor of Arts International"))) (type fb:education.educational_degree) what kind of shoes do french people wear? Bachelor of Science 4.911 formula ((lambda x (fb:education.educational_degree.people_with_this_degree (fb:education.education.major_field_of_study (var x)))) fb:en.french)) (value (list (name fb:en.bachelors_degree "Bachelor's degree") (name fb:en.a_b "Bachelor of Arts") (name fb:en.bachelor_of_science "Bachelor of Science") (name fb:en.masters_degree "Master's Degree") (name fb:en.bachelor_of_arts_international "Bachelor of Arts International"))) (type fb:education.educational_degree) what kind of shoes do french people wear? Master's Degree 4.911 formula ((lambda x (fb:education.educational_degree.people_with_this_degree (fb:education.education.major_field_of_study (var x)))) fb:en.french)) (value (list (name fb:en.bachelors_degree "Bachelor's degree") (name fb:en.a_b "Bachelor of Arts") (name fb:en.bachelor_of_science "Bachelor of Science") (name fb:en.masters_degree "Master's Degree") (name fb:en.bachelor_of_arts_international "Bachelor of Arts International"))) (type fb:education.educational_degree) what kind of shoes do french people wear? Bachelor of Arts International 4.911 formula ((lambda x (fb:education.educational_degree.people_with_this_degree (fb:education.education.major_field_of_study (var x)))) fb:en.french)) (value (list (name fb:en.bachelors_degree "Bachelor's degree") (name fb:en.a_b "Bachelor of Arts") (name fb:en.bachelor_of_science "Bachelor of Science") (name fb:en.masters_degree "Master's Degree") (name fb:en.bachelor_of_arts_international "Bachelor of Arts International"))) (type fb:education.educational_degree) who does jeremy shockey play for in 2012? New Orleans Saints 11.277 formula ((lambda x (!fb:american_football.player_game_statistics.team (!fb:american_football.football_player.games (var x)))) fb:en.jeremy_shockey)) (value (list (name fb:en.new_orleans_saints "New Orleans Saints"))) (type fb:american_football.football_team) what college did deion sanders jr go to? Florida State University 15.985 formula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.deion_sanders))) (value (list (name fb:en.florida_state_university "Florida State University"))) (type fb:education.university) what were the names of henry viii's three children? Henry VIII and His Chopping Block 8.133 formula (!fb:book.book_character.appears_in_book fb:m.0j1d8w6)) (value (list (name fb:en.henry_viii_and_his_chopping_block "Henry VIII and His Chopping Block") (name fb:m.0j0_zl7 "Henry VIII and his wicked wives"))) (type fb:book.book) what were the names of henry viii's three children? Henry VIII and his wicked wives 8.133 formula (!fb:book.book_character.appears_in_book fb:m.0j1d8w6)) (value (list (name fb:en.henry_viii_and_his_chopping_block "Henry VIII and His Chopping Block") (name fb:m.0j0_zl7 "Henry VIII and his wicked wives"))) (type fb:book.book) what was queen elizabeth ii childhood nickname? United Kingdom 6.786 formula (fb:royalty.kingdom.rulers fb:en.elizabeth_ii_of_the_united_kingdom)) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.canada Canada) (name fb:en.australia Australia) (name fb:en.jamaica Jamaica) (name fb:en.barbados Barbados) (name fb:en.new_zealand "New Zealand") (name fb:en.papua_new_guinea "Papua New Guinea") (name fb:en.antigua_and_barbuda "Antigua and Barbuda") (name fb:en.saint_kitts_and_nevis "Saint Kitts and Nevis") (name fb:en.the_bahamas Bahamas))) (type fb:royalty.kingdom) what was queen elizabeth ii childhood nickname? New Zealand 6.786 formula (fb:royalty.kingdom.rulers fb:en.elizabeth_ii_of_the_united_kingdom)) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.canada Canada) (name fb:en.australia Australia) (name fb:en.jamaica Jamaica) (name fb:en.barbados Barbados) (name fb:en.new_zealand "New Zealand") (name fb:en.papua_new_guinea "Papua New Guinea") (name fb:en.antigua_and_barbuda "Antigua and Barbuda") (name fb:en.saint_kitts_and_nevis "Saint Kitts and Nevis") (name fb:en.the_bahamas Bahamas))) (type fb:royalty.kingdom) what was queen elizabeth ii childhood nickname? Papua New Guinea 6.786 formula (fb:royalty.kingdom.rulers fb:en.elizabeth_ii_of_the_united_kingdom)) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.canada Canada) (name fb:en.australia Australia) (name fb:en.jamaica Jamaica) (name fb:en.barbados Barbados) (name fb:en.new_zealand "New Zealand") (name fb:en.papua_new_guinea "Papua New Guinea") (name fb:en.antigua_and_barbuda "Antigua and Barbuda") (name fb:en.saint_kitts_and_nevis "Saint Kitts and Nevis") (name fb:en.the_bahamas Bahamas))) (type fb:royalty.kingdom) what was queen elizabeth ii childhood nickname? Antigua and Barbuda 6.786 formula (fb:royalty.kingdom.rulers fb:en.elizabeth_ii_of_the_united_kingdom)) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.canada Canada) (name fb:en.australia Australia) (name fb:en.jamaica Jamaica) (name fb:en.barbados Barbados) (name fb:en.new_zealand "New Zealand") (name fb:en.papua_new_guinea "Papua New Guinea") (name fb:en.antigua_and_barbuda "Antigua and Barbuda") (name fb:en.saint_kitts_and_nevis "Saint Kitts and Nevis") (name fb:en.the_bahamas Bahamas))) (type fb:royalty.kingdom) what was queen elizabeth ii childhood nickname? Saint Kitts and Nevis 6.786 formula (fb:royalty.kingdom.rulers fb:en.elizabeth_ii_of_the_united_kingdom)) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.canada Canada) (name fb:en.australia Australia) (name fb:en.jamaica Jamaica) (name fb:en.barbados Barbados) (name fb:en.new_zealand "New Zealand") (name fb:en.papua_new_guinea "Papua New Guinea") (name fb:en.antigua_and_barbuda "Antigua and Barbuda") (name fb:en.saint_kitts_and_nevis "Saint Kitts and Nevis") (name fb:en.the_bahamas Bahamas))) (type fb:royalty.kingdom) where is chesapeake bay bridge? Chesapeake Bay Bridge 9.11 formula (and (fb:type.object.type fb:location.location) (and (fb:type.object.type fb:transportation.bridge) (!fb:geography.body_of_water.bridges fb:en.chesapeake_bay)))) (value (list (name fb:en.chesapeake_bay_bridge "Chesapeake Bay Bridge") (name fb:en.chesapeake_bay_bridge-tunnel "Chesapeake Bay Bridge-Tunnel"))) (type fb:transportation.bridge) where is chesapeake bay bridge? Chesapeake Bay Bridge-Tunnel 9.11 formula (and (fb:type.object.type fb:location.location) (and (fb:type.object.type fb:transportation.bridge) (!fb:geography.body_of_water.bridges fb:en.chesapeake_bay)))) (value (list (name fb:en.chesapeake_bay_bridge "Chesapeake Bay Bridge") (name fb:en.chesapeake_bay_bridge-tunnel "Chesapeake Bay Bridge-Tunnel"))) (type fb:transportation.bridge) who played victoria barkley? Jessica Lange 5.114 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.victoria_barkley)) (value (list (name fb:en.jessica_lange "Jessica Lange"))) (type fb:film.actor) what countries have german as the official language? South Africa 18.193 formula (and (fb:type.object.type fb:location.country) (!fb:language.human_language.countries_spoken_in fb:en.german_language))) (value (list (name fb:en.denmark Denmark) (name fb:en.switzerland Switzerland) (name fb:en.germany Germany) (name fb:en.canada Canada) (name fb:en.south_africa "South Africa") (name fb:en.austria Austria) (name fb:en.luxembourg Luxembourg) (name fb:en.belgium Belgium) (name fb:en.second_polish_republic "Second Polish Republic") (name fb:en.west_germany "West Germany"))) (type (union fb:location.country)) what countries have german as the official language? Second Polish Republic 18.193 formula (and (fb:type.object.type fb:location.country) (!fb:language.human_language.countries_spoken_in fb:en.german_language))) (value (list (name fb:en.denmark Denmark) (name fb:en.switzerland Switzerland) (name fb:en.germany Germany) (name fb:en.canada Canada) (name fb:en.south_africa "South Africa") (name fb:en.austria Austria) (name fb:en.luxembourg Luxembourg) (name fb:en.belgium Belgium) (name fb:en.second_polish_republic "Second Polish Republic") (name fb:en.west_germany "West Germany"))) (type (union fb:location.country)) what countries have german as the official language? West Germany 18.193 formula (and (fb:type.object.type fb:location.country) (!fb:language.human_language.countries_spoken_in fb:en.german_language))) (value (list (name fb:en.denmark Denmark) (name fb:en.switzerland Switzerland) (name fb:en.germany Germany) (name fb:en.canada Canada) (name fb:en.south_africa "South Africa") (name fb:en.austria Austria) (name fb:en.luxembourg Luxembourg) (name fb:en.belgium Belgium) (name fb:en.second_polish_republic "Second Polish Republic") (name fb:en.west_germany "West Germany"))) (type (union fb:location.country)) where did the taliban began? Operation Accius 5.426 formula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.taliban_movement)) (value (list (name fb:en.operation_accius "Operation Accius") (name fb:en.fall_of_kandahar "Fall of Kandahar") (name fb:en.battle_of_swat "First Battle of Swat") (name fb:en.battle_of_lashkagar "Friendly fire incident at Sangin") (name fb:en.battle_of_wana "Battle of Wana") (name fb:en.battle_of_tarin_kowt "Battle of Tarin Kowt") (name fb:m.0gj92h1 "Battle of Afghanya") (name fb:en.lal_masjid_siege "Siege of Lal Masjid") (name fb:en.operation_cobras_anger "Operation Cobra's Anger") (name fb:en.siege_of_kunduz "Siege of Kunduz"))) (type fb:military.military_conflict) where did the taliban began? Fall of Kandahar 5.426 formula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.taliban_movement)) (value (list (name fb:en.operation_accius "Operation Accius") (name fb:en.fall_of_kandahar "Fall of Kandahar") (name fb:en.battle_of_swat "First Battle of Swat") (name fb:en.battle_of_lashkagar "Friendly fire incident at Sangin") (name fb:en.battle_of_wana "Battle of Wana") (name fb:en.battle_of_tarin_kowt "Battle of Tarin Kowt") (name fb:m.0gj92h1 "Battle of Afghanya") (name fb:en.lal_masjid_siege "Siege of Lal Masjid") (name fb:en.operation_cobras_anger "Operation Cobra's Anger") (name fb:en.siege_of_kunduz "Siege of Kunduz"))) (type fb:military.military_conflict) where did the taliban began? First Battle of Swat 5.426 formula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.taliban_movement)) (value (list (name fb:en.operation_accius "Operation Accius") (name fb:en.fall_of_kandahar "Fall of Kandahar") (name fb:en.battle_of_swat "First Battle of Swat") (name fb:en.battle_of_lashkagar "Friendly fire incident at Sangin") (name fb:en.battle_of_wana "Battle of Wana") (name fb:en.battle_of_tarin_kowt "Battle of Tarin Kowt") (name fb:m.0gj92h1 "Battle of Afghanya") (name fb:en.lal_masjid_siege "Siege of Lal Masjid") (name fb:en.operation_cobras_anger "Operation Cobra's Anger") (name fb:en.siege_of_kunduz "Siege of Kunduz"))) (type fb:military.military_conflict) where did the taliban began? Friendly fire incident at Sangin 5.426 formula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.taliban_movement)) (value (list (name fb:en.operation_accius "Operation Accius") (name fb:en.fall_of_kandahar "Fall of Kandahar") (name fb:en.battle_of_swat "First Battle of Swat") (name fb:en.battle_of_lashkagar "Friendly fire incident at Sangin") (name fb:en.battle_of_wana "Battle of Wana") (name fb:en.battle_of_tarin_kowt "Battle of Tarin Kowt") (name fb:m.0gj92h1 "Battle of Afghanya") (name fb:en.lal_masjid_siege "Siege of Lal Masjid") (name fb:en.operation_cobras_anger "Operation Cobra's Anger") (name fb:en.siege_of_kunduz "Siege of Kunduz"))) (type fb:military.military_conflict) where did the taliban began? Battle of Wana 5.426 formula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.taliban_movement)) (value (list (name fb:en.operation_accius "Operation Accius") (name fb:en.fall_of_kandahar "Fall of Kandahar") (name fb:en.battle_of_swat "First Battle of Swat") (name fb:en.battle_of_lashkagar "Friendly fire incident at Sangin") (name fb:en.battle_of_wana "Battle of Wana") (name fb:en.battle_of_tarin_kowt "Battle of Tarin Kowt") (name fb:m.0gj92h1 "Battle of Afghanya") (name fb:en.lal_masjid_siege "Siege of Lal Masjid") (name fb:en.operation_cobras_anger "Operation Cobra's Anger") (name fb:en.siege_of_kunduz "Siege of Kunduz"))) (type fb:military.military_conflict) where did the taliban began? Battle of Tarin Kowt 5.426 formula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.taliban_movement)) (value (list (name fb:en.operation_accius "Operation Accius") (name fb:en.fall_of_kandahar "Fall of Kandahar") (name fb:en.battle_of_swat "First Battle of Swat") (name fb:en.battle_of_lashkagar "Friendly fire incident at Sangin") (name fb:en.battle_of_wana "Battle of Wana") (name fb:en.battle_of_tarin_kowt "Battle of Tarin Kowt") (name fb:m.0gj92h1 "Battle of Afghanya") (name fb:en.lal_masjid_siege "Siege of Lal Masjid") (name fb:en.operation_cobras_anger "Operation Cobra's Anger") (name fb:en.siege_of_kunduz "Siege of Kunduz"))) (type fb:military.military_conflict) where did the taliban began? Battle of Afghanya 5.426 formula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.taliban_movement)) (value (list (name fb:en.operation_accius "Operation Accius") (name fb:en.fall_of_kandahar "Fall of Kandahar") (name fb:en.battle_of_swat "First Battle of Swat") (name fb:en.battle_of_lashkagar "Friendly fire incident at Sangin") (name fb:en.battle_of_wana "Battle of Wana") (name fb:en.battle_of_tarin_kowt "Battle of Tarin Kowt") (name fb:m.0gj92h1 "Battle of Afghanya") (name fb:en.lal_masjid_siege "Siege of Lal Masjid") (name fb:en.operation_cobras_anger "Operation Cobra's Anger") (name fb:en.siege_of_kunduz "Siege of Kunduz"))) (type fb:military.military_conflict) where did the taliban began? Siege of Lal Masjid 5.426 formula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.taliban_movement)) (value (list (name fb:en.operation_accius "Operation Accius") (name fb:en.fall_of_kandahar "Fall of Kandahar") (name fb:en.battle_of_swat "First Battle of Swat") (name fb:en.battle_of_lashkagar "Friendly fire incident at Sangin") (name fb:en.battle_of_wana "Battle of Wana") (name fb:en.battle_of_tarin_kowt "Battle of Tarin Kowt") (name fb:m.0gj92h1 "Battle of Afghanya") (name fb:en.lal_masjid_siege "Siege of Lal Masjid") (name fb:en.operation_cobras_anger "Operation Cobra's Anger") (name fb:en.siege_of_kunduz "Siege of Kunduz"))) (type fb:military.military_conflict) where did the taliban began? Operation Cobra's Anger 5.426 formula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.taliban_movement)) (value (list (name fb:en.operation_accius "Operation Accius") (name fb:en.fall_of_kandahar "Fall of Kandahar") (name fb:en.battle_of_swat "First Battle of Swat") (name fb:en.battle_of_lashkagar "Friendly fire incident at Sangin") (name fb:en.battle_of_wana "Battle of Wana") (name fb:en.battle_of_tarin_kowt "Battle of Tarin Kowt") (name fb:m.0gj92h1 "Battle of Afghanya") (name fb:en.lal_masjid_siege "Siege of Lal Masjid") (name fb:en.operation_cobras_anger "Operation Cobra's Anger") (name fb:en.siege_of_kunduz "Siege of Kunduz"))) (type fb:military.military_conflict) where did the taliban began? Siege of Kunduz 5.426 formula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.taliban_movement)) (value (list (name fb:en.operation_accius "Operation Accius") (name fb:en.fall_of_kandahar "Fall of Kandahar") (name fb:en.battle_of_swat "First Battle of Swat") (name fb:en.battle_of_lashkagar "Friendly fire incident at Sangin") (name fb:en.battle_of_wana "Battle of Wana") (name fb:en.battle_of_tarin_kowt "Battle of Tarin Kowt") (name fb:m.0gj92h1 "Battle of Afghanya") (name fb:en.lal_masjid_siege "Siege of Lal Masjid") (name fb:en.operation_cobras_anger "Operation Cobra's Anger") (name fb:en.siege_of_kunduz "Siege of Kunduz"))) (type fb:military.military_conflict) what kind of government system did ancient egypt have? Unitary state 14.143 formula (!fb:location.country.form_of_government fb:en.egypt)) (value (list (name fb:en.unitary_state "Unitary state") (name fb:en.republic Republic) (name fb:en.semi-presidential_system "Semi-presidential system"))) (type fb:government.form_of_government) what kind of government system did ancient egypt have? Semi-presidential system 14.143 formula (!fb:location.country.form_of_government fb:en.egypt)) (value (list (name fb:en.unitary_state "Unitary state") (name fb:en.republic Republic) (name fb:en.semi-presidential_system "Semi-presidential system"))) (type fb:government.form_of_government) who plays elena gilbert on vampire diaries? Nina Dobrev 4.405 formula (fb:tv.tv_actor.starring_roles (and (fb:tv.regular_tv_appearance.character fb:en.elena_gilbert) (fb:tv.regular_tv_appearance.series fb:m.05sy2k_)))) (value (list (name fb:en.nina_dobrev "Nina Dobrev"))) (type fb:tv.tv_actor) what does the missouri river bisect? River Scene 0.966 formula (!fb:visual_art.art_subject.artwork_on_the_subject fb:en.river)) (value (list (name fb:en.river_scene "River Scene"))) (type fb:visual_art.artwork) what nationality is taylor lautner jacob black? United States of America 6.745 formula (!fb:people.person.nationality fb:en.taylor_lautner)) (value (list (name fb:en.united_states_of_america "United States of America"))) (type fb:location.country) what animal represents california? Frank Putnam Flint 10.178 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.california)) (value (list (name fb:en.frank_p_flint "Frank Putnam Flint") (name fb:en.john_franklin_miller_1831 "John Franklin Miller") (name fb:en.abram_p_williams "Abram Williams") (name fb:en.david_c_broderick "David C. Broderick") (name fb:en.henry_p_haun "Henry P. Haun") (name fb:en.pierre_salinger "Pierre Salinger") (name fb:en.john_s_hager "John S. Hager") (name fb:en.richard_nixon "Richard Nixon") (name fb:en.james_d_phelan "James D. Phelan") (name fb:en.barbara_boxer "Barbara Boxer"))) (type fb:government.politician) what animal represents california? John Franklin Miller 10.178 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.california)) (value (list (name fb:en.frank_p_flint "Frank Putnam Flint") (name fb:en.john_franklin_miller_1831 "John Franklin Miller") (name fb:en.abram_p_williams "Abram Williams") (name fb:en.david_c_broderick "David C. Broderick") (name fb:en.henry_p_haun "Henry P. Haun") (name fb:en.pierre_salinger "Pierre Salinger") (name fb:en.john_s_hager "John S. Hager") (name fb:en.richard_nixon "Richard Nixon") (name fb:en.james_d_phelan "James D. Phelan") (name fb:en.barbara_boxer "Barbara Boxer"))) (type fb:government.politician) what animal represents california? Abram Williams 10.178 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.california)) (value (list (name fb:en.frank_p_flint "Frank Putnam Flint") (name fb:en.john_franklin_miller_1831 "John Franklin Miller") (name fb:en.abram_p_williams "Abram Williams") (name fb:en.david_c_broderick "David C. Broderick") (name fb:en.henry_p_haun "Henry P. Haun") (name fb:en.pierre_salinger "Pierre Salinger") (name fb:en.john_s_hager "John S. Hager") (name fb:en.richard_nixon "Richard Nixon") (name fb:en.james_d_phelan "James D. Phelan") (name fb:en.barbara_boxer "Barbara Boxer"))) (type fb:government.politician) what animal represents california? David C. Broderick 10.178 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.california)) (value (list (name fb:en.frank_p_flint "Frank Putnam Flint") (name fb:en.john_franklin_miller_1831 "John Franklin Miller") (name fb:en.abram_p_williams "Abram Williams") (name fb:en.david_c_broderick "David C. Broderick") (name fb:en.henry_p_haun "Henry P. Haun") (name fb:en.pierre_salinger "Pierre Salinger") (name fb:en.john_s_hager "John S. Hager") (name fb:en.richard_nixon "Richard Nixon") (name fb:en.james_d_phelan "James D. Phelan") (name fb:en.barbara_boxer "Barbara Boxer"))) (type fb:government.politician) what animal represents california? Henry P. Haun 10.178 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.california)) (value (list (name fb:en.frank_p_flint "Frank Putnam Flint") (name fb:en.john_franklin_miller_1831 "John Franklin Miller") (name fb:en.abram_p_williams "Abram Williams") (name fb:en.david_c_broderick "David C. Broderick") (name fb:en.henry_p_haun "Henry P. Haun") (name fb:en.pierre_salinger "Pierre Salinger") (name fb:en.john_s_hager "John S. Hager") (name fb:en.richard_nixon "Richard Nixon") (name fb:en.james_d_phelan "James D. Phelan") (name fb:en.barbara_boxer "Barbara Boxer"))) (type fb:government.politician) what animal represents california? Pierre Salinger 10.178 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.california)) (value (list (name fb:en.frank_p_flint "Frank Putnam Flint") (name fb:en.john_franklin_miller_1831 "John Franklin Miller") (name fb:en.abram_p_williams "Abram Williams") (name fb:en.david_c_broderick "David C. Broderick") (name fb:en.henry_p_haun "Henry P. Haun") (name fb:en.pierre_salinger "Pierre Salinger") (name fb:en.john_s_hager "John S. Hager") (name fb:en.richard_nixon "Richard Nixon") (name fb:en.james_d_phelan "James D. Phelan") (name fb:en.barbara_boxer "Barbara Boxer"))) (type fb:government.politician) what animal represents california? John S. Hager 10.178 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.california)) (value (list (name fb:en.frank_p_flint "Frank Putnam Flint") (name fb:en.john_franklin_miller_1831 "John Franklin Miller") (name fb:en.abram_p_williams "Abram Williams") (name fb:en.david_c_broderick "David C. Broderick") (name fb:en.henry_p_haun "Henry P. Haun") (name fb:en.pierre_salinger "Pierre Salinger") (name fb:en.john_s_hager "John S. Hager") (name fb:en.richard_nixon "Richard Nixon") (name fb:en.james_d_phelan "James D. Phelan") (name fb:en.barbara_boxer "Barbara Boxer"))) (type fb:government.politician) what animal represents california? Richard Nixon 10.178 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.california)) (value (list (name fb:en.frank_p_flint "Frank Putnam Flint") (name fb:en.john_franklin_miller_1831 "John Franklin Miller") (name fb:en.abram_p_williams "Abram Williams") (name fb:en.david_c_broderick "David C. Broderick") (name fb:en.henry_p_haun "Henry P. Haun") (name fb:en.pierre_salinger "Pierre Salinger") (name fb:en.john_s_hager "John S. Hager") (name fb:en.richard_nixon "Richard Nixon") (name fb:en.james_d_phelan "James D. Phelan") (name fb:en.barbara_boxer "Barbara Boxer"))) (type fb:government.politician) what animal represents california? James D. Phelan 10.178 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.california)) (value (list (name fb:en.frank_p_flint "Frank Putnam Flint") (name fb:en.john_franklin_miller_1831 "John Franklin Miller") (name fb:en.abram_p_williams "Abram Williams") (name fb:en.david_c_broderick "David C. Broderick") (name fb:en.henry_p_haun "Henry P. Haun") (name fb:en.pierre_salinger "Pierre Salinger") (name fb:en.john_s_hager "John S. Hager") (name fb:en.richard_nixon "Richard Nixon") (name fb:en.james_d_phelan "James D. Phelan") (name fb:en.barbara_boxer "Barbara Boxer"))) (type fb:government.politician) what animal represents california? Barbara Boxer 10.178 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.california)) (value (list (name fb:en.frank_p_flint "Frank Putnam Flint") (name fb:en.john_franklin_miller_1831 "John Franklin Miller") (name fb:en.abram_p_williams "Abram Williams") (name fb:en.david_c_broderick "David C. Broderick") (name fb:en.henry_p_haun "Henry P. Haun") (name fb:en.pierre_salinger "Pierre Salinger") (name fb:en.john_s_hager "John S. Hager") (name fb:en.richard_nixon "Richard Nixon") (name fb:en.james_d_phelan "James D. Phelan") (name fb:en.barbara_boxer "Barbara Boxer"))) (type fb:government.politician) what company does nike own? Nike Golf 11.2 formula (and (fb:type.object.type fb:business.business_operation) ((lambda x (fb:business.business_operation.competitive_space (fb:business.competitive_space_mediator.brand (var x)))) fb:m.0cnsqjb))) (value (list (name fb:m.0cnsqj1 "Nike Golf"))) (type (union fb:business.business_operation)) what language do colombian people speak? Spanish Language 10.91 formula (and (fb:type.object.type fb:language.human_language) (!fb:people.ethnicity.languages_spoken fb:en.colombian_people))) (value (list (name fb:en.spanish "Spanish Language"))) (type fb:language.human_language) what year did ray allen join the nba? Miami Heat 8.989 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.ray_allen)) (value (list (name fb:en.miami_heat "Miami Heat") (name fb:en.boston_celtics "Boston Celtics") (name fb:en.milwaukee_bucks "Milwaukee Bucks") (name fb:en.connecticut_huskies_mens_basketball "Connecticut Huskies men's basketball") (name fb:en.seattle_supersonics "Seattle Supersonics"))) (type fb:sports.sports_team) what year did ray allen join the nba? Boston Celtics 8.989 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.ray_allen)) (value (list (name fb:en.miami_heat "Miami Heat") (name fb:en.boston_celtics "Boston Celtics") (name fb:en.milwaukee_bucks "Milwaukee Bucks") (name fb:en.connecticut_huskies_mens_basketball "Connecticut Huskies men's basketball") (name fb:en.seattle_supersonics "Seattle Supersonics"))) (type fb:sports.sports_team) what year did ray allen join the nba? Milwaukee Bucks 8.989 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.ray_allen)) (value (list (name fb:en.miami_heat "Miami Heat") (name fb:en.boston_celtics "Boston Celtics") (name fb:en.milwaukee_bucks "Milwaukee Bucks") (name fb:en.connecticut_huskies_mens_basketball "Connecticut Huskies men's basketball") (name fb:en.seattle_supersonics "Seattle Supersonics"))) (type fb:sports.sports_team) what year did ray allen join the nba? Connecticut Huskies men's basketball 8.989 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.ray_allen)) (value (list (name fb:en.miami_heat "Miami Heat") (name fb:en.boston_celtics "Boston Celtics") (name fb:en.milwaukee_bucks "Milwaukee Bucks") (name fb:en.connecticut_huskies_mens_basketball "Connecticut Huskies men's basketball") (name fb:en.seattle_supersonics "Seattle Supersonics"))) (type fb:sports.sports_team) what year did ray allen join the nba? Seattle Supersonics 8.989 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.ray_allen)) (value (list (name fb:en.miami_heat "Miami Heat") (name fb:en.boston_celtics "Boston Celtics") (name fb:en.milwaukee_bucks "Milwaukee Bucks") (name fb:en.connecticut_huskies_mens_basketball "Connecticut Huskies men's basketball") (name fb:en.seattle_supersonics "Seattle Supersonics"))) (type fb:sports.sports_team) what is claire danes famous for? WSJ Topic Index 8.922 formula ((lambda x (fb:base.articleindices.resource_topic_index.index_items (fb:base.articleindices.index_item.topic (var x)))) fb:en.claire_danes)) (value (list (name fb:en.wsj_topic_index "WSJ Topic Index") (name fb:en.people_celebrities "People Celebrities"))) (type fb:base.articleindices.resource_topic_index) what is claire danes famous for? People Celebrities 8.922 formula ((lambda x (fb:base.articleindices.resource_topic_index.index_items (fb:base.articleindices.index_item.topic (var x)))) fb:en.claire_danes)) (value (list (name fb:en.wsj_topic_index "WSJ Topic Index") (name fb:en.people_celebrities "People Celebrities"))) (type fb:base.articleindices.resource_topic_index) what county is san antonio in? Comal County 16.178 formula (!fb:location.hud_county_place.county fb:en.san_antonio)) (value (list (name fb:en.comal_county "Comal County"))) (type fb:location.us_county) what characters does matt stone do? Kyle Broflovski 13.61 formula ((lambda x (!fb:tv.regular_tv_appearance.character (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.matt_stone)) (value (list (name fb:en.kyle_broflovski "Kyle Broflovski") (name fb:en.kenny_mccormick "Kenny McCormick") (name fb:en.butters_stotch "Butters Stotch") (name fb:m.0h0z4gc "Ichabod Jones/Carlos/Rom") (name fb:m.0cnd7sr Terrance) (name fb:en.jimbo_kern "Jimbo Kern") (name fb:en.tweek "Tweek Tweak"))) (type fb:tv.tv_character) what characters does matt stone do? Kenny McCormick 13.61 formula ((lambda x (!fb:tv.regular_tv_appearance.character (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.matt_stone)) (value (list (name fb:en.kyle_broflovski "Kyle Broflovski") (name fb:en.kenny_mccormick "Kenny McCormick") (name fb:en.butters_stotch "Butters Stotch") (name fb:m.0h0z4gc "Ichabod Jones/Carlos/Rom") (name fb:m.0cnd7sr Terrance) (name fb:en.jimbo_kern "Jimbo Kern") (name fb:en.tweek "Tweek Tweak"))) (type fb:tv.tv_character) what characters does matt stone do? Butters Stotch 13.61 formula ((lambda x (!fb:tv.regular_tv_appearance.character (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.matt_stone)) (value (list (name fb:en.kyle_broflovski "Kyle Broflovski") (name fb:en.kenny_mccormick "Kenny McCormick") (name fb:en.butters_stotch "Butters Stotch") (name fb:m.0h0z4gc "Ichabod Jones/Carlos/Rom") (name fb:m.0cnd7sr Terrance) (name fb:en.jimbo_kern "Jimbo Kern") (name fb:en.tweek "Tweek Tweak"))) (type fb:tv.tv_character) what characters does matt stone do? Ichabod Jones/Carlos/Rom 13.61 formula ((lambda x (!fb:tv.regular_tv_appearance.character (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.matt_stone)) (value (list (name fb:en.kyle_broflovski "Kyle Broflovski") (name fb:en.kenny_mccormick "Kenny McCormick") (name fb:en.butters_stotch "Butters Stotch") (name fb:m.0h0z4gc "Ichabod Jones/Carlos/Rom") (name fb:m.0cnd7sr Terrance) (name fb:en.jimbo_kern "Jimbo Kern") (name fb:en.tweek "Tweek Tweak"))) (type fb:tv.tv_character) what characters does matt stone do? Jimbo Kern 13.61 formula ((lambda x (!fb:tv.regular_tv_appearance.character (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.matt_stone)) (value (list (name fb:en.kyle_broflovski "Kyle Broflovski") (name fb:en.kenny_mccormick "Kenny McCormick") (name fb:en.butters_stotch "Butters Stotch") (name fb:m.0h0z4gc "Ichabod Jones/Carlos/Rom") (name fb:m.0cnd7sr Terrance) (name fb:en.jimbo_kern "Jimbo Kern") (name fb:en.tweek "Tweek Tweak"))) (type fb:tv.tv_character) what characters does matt stone do? Tweek Tweak 13.61 formula ((lambda x (!fb:tv.regular_tv_appearance.character (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.matt_stone)) (value (list (name fb:en.kyle_broflovski "Kyle Broflovski") (name fb:en.kenny_mccormick "Kenny McCormick") (name fb:en.butters_stotch "Butters Stotch") (name fb:m.0h0z4gc "Ichabod Jones/Carlos/Rom") (name fb:m.0cnd7sr Terrance) (name fb:en.jimbo_kern "Jimbo Kern") (name fb:en.tweek "Tweek Tweak"))) (type fb:tv.tv_character) what timezone is the state of michigan and? Painted turtle 17.141 formula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.michigan)) (value (list (name fb:en.painted_turtle "Painted turtle") (name fb:en.brook_trout "Brook trout") (name fb:en.eastern_white_pine "Pinus strobus") (name fb:en.si_quaeris_peninsulam_amoenam_circumspice "Si quaeris peninsulam amoenam circumspice") (name fb:m.0hzbd21 "Apple Blossom") (name fb:en.american_robin "American Robin") (name fb:en.american_mastodon "American mastodon"))) (type fb:location.symbol_of_administrative_division) what timezone is the state of michigan and? Brook trout 17.141 formula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.michigan)) (value (list (name fb:en.painted_turtle "Painted turtle") (name fb:en.brook_trout "Brook trout") (name fb:en.eastern_white_pine "Pinus strobus") (name fb:en.si_quaeris_peninsulam_amoenam_circumspice "Si quaeris peninsulam amoenam circumspice") (name fb:m.0hzbd21 "Apple Blossom") (name fb:en.american_robin "American Robin") (name fb:en.american_mastodon "American mastodon"))) (type fb:location.symbol_of_administrative_division) what timezone is the state of michigan and? Pinus strobus 17.141 formula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.michigan)) (value (list (name fb:en.painted_turtle "Painted turtle") (name fb:en.brook_trout "Brook trout") (name fb:en.eastern_white_pine "Pinus strobus") (name fb:en.si_quaeris_peninsulam_amoenam_circumspice "Si quaeris peninsulam amoenam circumspice") (name fb:m.0hzbd21 "Apple Blossom") (name fb:en.american_robin "American Robin") (name fb:en.american_mastodon "American mastodon"))) (type fb:location.symbol_of_administrative_division) what timezone is the state of michigan and? Si quaeris peninsulam amoenam circumspice 17.141 formula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.michigan)) (value (list (name fb:en.painted_turtle "Painted turtle") (name fb:en.brook_trout "Brook trout") (name fb:en.eastern_white_pine "Pinus strobus") (name fb:en.si_quaeris_peninsulam_amoenam_circumspice "Si quaeris peninsulam amoenam circumspice") (name fb:m.0hzbd21 "Apple Blossom") (name fb:en.american_robin "American Robin") (name fb:en.american_mastodon "American mastodon"))) (type fb:location.symbol_of_administrative_division) what timezone is the state of michigan and? Apple Blossom 17.141 formula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.michigan)) (value (list (name fb:en.painted_turtle "Painted turtle") (name fb:en.brook_trout "Brook trout") (name fb:en.eastern_white_pine "Pinus strobus") (name fb:en.si_quaeris_peninsulam_amoenam_circumspice "Si quaeris peninsulam amoenam circumspice") (name fb:m.0hzbd21 "Apple Blossom") (name fb:en.american_robin "American Robin") (name fb:en.american_mastodon "American mastodon"))) (type fb:location.symbol_of_administrative_division) what timezone is the state of michigan and? American Robin 17.141 formula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.michigan)) (value (list (name fb:en.painted_turtle "Painted turtle") (name fb:en.brook_trout "Brook trout") (name fb:en.eastern_white_pine "Pinus strobus") (name fb:en.si_quaeris_peninsulam_amoenam_circumspice "Si quaeris peninsulam amoenam circumspice") (name fb:m.0hzbd21 "Apple Blossom") (name fb:en.american_robin "American Robin") (name fb:en.american_mastodon "American mastodon"))) (type fb:location.symbol_of_administrative_division) what timezone is the state of michigan and? American mastodon 17.141 formula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.michigan)) (value (list (name fb:en.painted_turtle "Painted turtle") (name fb:en.brook_trout "Brook trout") (name fb:en.eastern_white_pine "Pinus strobus") (name fb:en.si_quaeris_peninsulam_amoenam_circumspice "Si quaeris peninsulam amoenam circumspice") (name fb:m.0hzbd21 "Apple Blossom") (name fb:en.american_robin "American Robin") (name fb:en.american_mastodon "American mastodon"))) (type fb:location.symbol_of_administrative_division) what type of government did soviet union have? Communist state 15.16 formula (fb:government.form_of_government.countries fb:en.soviet_union)) (value (list (name fb:en.communist_state "Communist state") (name fb:en.socialist_state "Socialist state") (name fb:en.soviet_democracy "Soviet democracy"))) (type fb:government.form_of_government) what type of government did soviet union have? Socialist state 15.16 formula (fb:government.form_of_government.countries fb:en.soviet_union)) (value (list (name fb:en.communist_state "Communist state") (name fb:en.socialist_state "Socialist state") (name fb:en.soviet_democracy "Soviet democracy"))) (type fb:government.form_of_government) what type of government did soviet union have? Soviet democracy 15.16 formula (fb:government.form_of_government.countries fb:en.soviet_union)) (value (list (name fb:en.communist_state "Communist state") (name fb:en.socialist_state "Socialist state") (name fb:en.soviet_democracy "Soviet democracy"))) (type fb:government.form_of_government) what languages are there in japan? English Language 11.859 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.japan))) (value (list (name fb:en.english "English Language") (name fb:en.japanese "Japanese Language") (name fb:en.korean_language "Korean Language") (name fb:en.esperanto "Esperanto Language") (name fb:en.ainu_language "Ainu Language"))) (type (union fb:language.human_language)) what languages are there in japan? Japanese Language 11.859 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.japan))) (value (list (name fb:en.english "English Language") (name fb:en.japanese "Japanese Language") (name fb:en.korean_language "Korean Language") (name fb:en.esperanto "Esperanto Language") (name fb:en.ainu_language "Ainu Language"))) (type (union fb:language.human_language)) what languages are there in japan? Korean Language 11.859 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.japan))) (value (list (name fb:en.english "English Language") (name fb:en.japanese "Japanese Language") (name fb:en.korean_language "Korean Language") (name fb:en.esperanto "Esperanto Language") (name fb:en.ainu_language "Ainu Language"))) (type (union fb:language.human_language)) what languages are there in japan? Esperanto Language 11.859 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.japan))) (value (list (name fb:en.english "English Language") (name fb:en.japanese "Japanese Language") (name fb:en.korean_language "Korean Language") (name fb:en.esperanto "Esperanto Language") (name fb:en.ainu_language "Ainu Language"))) (type (union fb:language.human_language)) what languages are there in japan? Ainu Language 11.859 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.japan))) (value (list (name fb:en.english "English Language") (name fb:en.japanese "Japanese Language") (name fb:en.korean_language "Korean Language") (name fb:en.esperanto "Esperanto Language") (name fb:en.ainu_language "Ainu Language"))) (type (union fb:language.human_language)) who was saint paul the apostle? Mr. White's Confession: A Novel 6.579 formula (!fb:book.book_subject.works fb:en.saint_paul)) (value (list (name fb:en.mr_whites_confession "Mr. White's Confession: A Novel"))) (type fb:book.written_work) what hemisphere is africa located in? World War I 12.597 formula (fb:user.pvonstackelberg.Futures_Studies.event.location fb:en.africa)) (value (list (name fb:en.world_war_i "World War I") (name fb:en.allied_forces_invade_german_togoland "Allied forces invade German Togoland") (name fb:en.timeline_of_computing "Mechanical sequence control invented"))) (type fb:user.pvonstackelberg.Futures_Studies.event) what hemisphere is africa located in? Allied forces invade German Togoland 12.597 formula (fb:user.pvonstackelberg.Futures_Studies.event.location fb:en.africa)) (value (list (name fb:en.world_war_i "World War I") (name fb:en.allied_forces_invade_german_togoland "Allied forces invade German Togoland") (name fb:en.timeline_of_computing "Mechanical sequence control invented"))) (type fb:user.pvonstackelberg.Futures_Studies.event) what hemisphere is africa located in? Mechanical sequence control invented 12.597 formula (fb:user.pvonstackelberg.Futures_Studies.event.location fb:en.africa)) (value (list (name fb:en.world_war_i "World War I") (name fb:en.allied_forces_invade_german_togoland "Allied forces invade German Togoland") (name fb:en.timeline_of_computing "Mechanical sequence control invented"))) (type fb:user.pvonstackelberg.Futures_Studies.event) what famous people are from el salvador? Embassy of El Salvador in Ottawa 10.031 formula (fb:user.skud.embassies_and_consulates.embassy.from_country fb:en.el_salvador)) (value (list (name fb:en.embassy_of_el_salvador_in_ottawa "Embassy of El Salvador in Ottawa") (name fb:en.embassy_of_el_salvador_in_washington "Embassy of El Salvador in Washington"))) (type fb:user.skud.embassies_and_consulates.embassy) what famous people are from el salvador? Embassy of El Salvador in Washington 10.031 formula (fb:user.skud.embassies_and_consulates.embassy.from_country fb:en.el_salvador)) (value (list (name fb:en.embassy_of_el_salvador_in_ottawa "Embassy of El Salvador in Ottawa") (name fb:en.embassy_of_el_salvador_in_washington "Embassy of El Salvador in Washington"))) (type fb:user.skud.embassies_and_consulates.embassy) where did mary bell live? Newcastle upon Tyne 3.864 formula (and (fb:type.object.type fb:location.location) (!fb:people.person.place_of_birth fb:en.mary_bell))) (value (list (name fb:en.newcastle_upon_tyne "Newcastle upon Tyne"))) (type fb:location.location) what other movies has ryan gosling been in? Half Nelson 14.912 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.ryan_gosling))) (value (list (name fb:en.half_nelson "Half Nelson") (name fb:m.047tsx3 "The Notebook") (name fb:m.0g4vmj8 Drive) (name fb:en.the_believer "The Believer") (name fb:en.lars_and_the_real_girl "Lars and the Real Girl") (name fb:m.0gg5qcw "The Ides of March") (name fb:m.0ddf2bm "Crazy, Stupid, Love.") (name fb:m.093d8j0 "Blue Valentine"))) (type (union fb:award.award_nominated_work)) what other movies has ryan gosling been in? The Notebook 14.912 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.ryan_gosling))) (value (list (name fb:en.half_nelson "Half Nelson") (name fb:m.047tsx3 "The Notebook") (name fb:m.0g4vmj8 Drive) (name fb:en.the_believer "The Believer") (name fb:en.lars_and_the_real_girl "Lars and the Real Girl") (name fb:m.0gg5qcw "The Ides of March") (name fb:m.0ddf2bm "Crazy, Stupid, Love.") (name fb:m.093d8j0 "Blue Valentine"))) (type (union fb:award.award_nominated_work)) what other movies has ryan gosling been in? The Believer 14.912 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.ryan_gosling))) (value (list (name fb:en.half_nelson "Half Nelson") (name fb:m.047tsx3 "The Notebook") (name fb:m.0g4vmj8 Drive) (name fb:en.the_believer "The Believer") (name fb:en.lars_and_the_real_girl "Lars and the Real Girl") (name fb:m.0gg5qcw "The Ides of March") (name fb:m.0ddf2bm "Crazy, Stupid, Love.") (name fb:m.093d8j0 "Blue Valentine"))) (type (union fb:award.award_nominated_work)) what other movies has ryan gosling been in? Lars and the Real Girl 14.912 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.ryan_gosling))) (value (list (name fb:en.half_nelson "Half Nelson") (name fb:m.047tsx3 "The Notebook") (name fb:m.0g4vmj8 Drive) (name fb:en.the_believer "The Believer") (name fb:en.lars_and_the_real_girl "Lars and the Real Girl") (name fb:m.0gg5qcw "The Ides of March") (name fb:m.0ddf2bm "Crazy, Stupid, Love.") (name fb:m.093d8j0 "Blue Valentine"))) (type (union fb:award.award_nominated_work)) what other movies has ryan gosling been in? The Ides of March 14.912 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.ryan_gosling))) (value (list (name fb:en.half_nelson "Half Nelson") (name fb:m.047tsx3 "The Notebook") (name fb:m.0g4vmj8 Drive) (name fb:en.the_believer "The Believer") (name fb:en.lars_and_the_real_girl "Lars and the Real Girl") (name fb:m.0gg5qcw "The Ides of March") (name fb:m.0ddf2bm "Crazy, Stupid, Love.") (name fb:m.093d8j0 "Blue Valentine"))) (type (union fb:award.award_nominated_work)) what other movies has ryan gosling been in? Crazy, Stupid, Love. 14.912 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.ryan_gosling))) (value (list (name fb:en.half_nelson "Half Nelson") (name fb:m.047tsx3 "The Notebook") (name fb:m.0g4vmj8 Drive) (name fb:en.the_believer "The Believer") (name fb:en.lars_and_the_real_girl "Lars and the Real Girl") (name fb:m.0gg5qcw "The Ides of March") (name fb:m.0ddf2bm "Crazy, Stupid, Love.") (name fb:m.093d8j0 "Blue Valentine"))) (type (union fb:award.award_nominated_work)) what other movies has ryan gosling been in? Blue Valentine 14.912 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.ryan_gosling))) (value (list (name fb:en.half_nelson "Half Nelson") (name fb:m.047tsx3 "The Notebook") (name fb:m.0g4vmj8 Drive) (name fb:en.the_believer "The Believer") (name fb:en.lars_and_the_real_girl "Lars and the Real Girl") (name fb:m.0gg5qcw "The Ides of March") (name fb:m.0ddf2bm "Crazy, Stupid, Love.") (name fb:m.093d8j0 "Blue Valentine"))) (type (union fb:award.award_nominated_work)) what political party does julia gillard belong to? Queensland Labor Party 17.901 formula (and (fb:type.object.type fb:government.political_party) ((lambda x (fb:government.political_party.politicians_in_this_party (fb:government.political_party_tenure.politician (var x)))) fb:en.julia_gillard))) (value (list (name fb:en.queensland_labor_party "Queensland Labor Party") (name fb:en.australian_labor_party "Australian Labor Party"))) (type (union fb:government.political_party)) what political party does julia gillard belong to? Australian Labor Party 17.901 formula (and (fb:type.object.type fb:government.political_party) ((lambda x (fb:government.political_party.politicians_in_this_party (fb:government.political_party_tenure.politician (var x)))) fb:en.julia_gillard))) (value (list (name fb:en.queensland_labor_party "Queensland Labor Party") (name fb:en.australian_labor_party "Australian Labor Party"))) (type (union fb:government.political_party)) who did denise van outen married? Lee Mead 7.85 formula ((lambda x (!fb:people.marriage.spouse (!fb:people.person.spouse_s (var x)))) fb:en.denise_van_outen)) (value (list (name fb:en.lee_mead "Lee Mead"))) (type fb:people.person) what are egyptian money called? Egyptian Armed Forces 4.773 formula (!fb:military.military_unit.armed_force fb:en.egyptian_army)) (value (list (name fb:m.0l8bt9k "Egyptian Armed Forces"))) (type fb:military.armed_force) who is the president of costa rica in 2012? Laura Chinchilla 12.523 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.costa_rica)) (value (list (name fb:en.laura_chinchilla_miranda "Laura Chinchilla"))) (type fb:government.politician) what form of government is the uk? Celtic Pharma 8.384 formula ((lambda x (fb:base.bioventurist.bv_venture_investor.investment_round (fb:base.bioventurist.bv_investment_round.currency (var x)))) fb:en.uk)) (value (list (name fb:en.celtic_pharma "Celtic Pharma") (name fb:en.imperial_innovations "Imperial Innovations") (name fb:en.clarus_ventures "Clarus Ventures") (name fb:en.mvm_life_science_partners "MVM Life Science Partners") (name fb:en.novartis_option_fund "Novartis Option Fund"))) (type fb:base.bioventurist.bv_venture_investor) what form of government is the uk? Imperial Innovations 8.384 formula ((lambda x (fb:base.bioventurist.bv_venture_investor.investment_round (fb:base.bioventurist.bv_investment_round.currency (var x)))) fb:en.uk)) (value (list (name fb:en.celtic_pharma "Celtic Pharma") (name fb:en.imperial_innovations "Imperial Innovations") (name fb:en.clarus_ventures "Clarus Ventures") (name fb:en.mvm_life_science_partners "MVM Life Science Partners") (name fb:en.novartis_option_fund "Novartis Option Fund"))) (type fb:base.bioventurist.bv_venture_investor) what form of government is the uk? Clarus Ventures 8.384 formula ((lambda x (fb:base.bioventurist.bv_venture_investor.investment_round (fb:base.bioventurist.bv_investment_round.currency (var x)))) fb:en.uk)) (value (list (name fb:en.celtic_pharma "Celtic Pharma") (name fb:en.imperial_innovations "Imperial Innovations") (name fb:en.clarus_ventures "Clarus Ventures") (name fb:en.mvm_life_science_partners "MVM Life Science Partners") (name fb:en.novartis_option_fund "Novartis Option Fund"))) (type fb:base.bioventurist.bv_venture_investor) what form of government is the uk? MVM Life Science Partners 8.384 formula ((lambda x (fb:base.bioventurist.bv_venture_investor.investment_round (fb:base.bioventurist.bv_investment_round.currency (var x)))) fb:en.uk)) (value (list (name fb:en.celtic_pharma "Celtic Pharma") (name fb:en.imperial_innovations "Imperial Innovations") (name fb:en.clarus_ventures "Clarus Ventures") (name fb:en.mvm_life_science_partners "MVM Life Science Partners") (name fb:en.novartis_option_fund "Novartis Option Fund"))) (type fb:base.bioventurist.bv_venture_investor) what form of government is the uk? Novartis Option Fund 8.384 formula ((lambda x (fb:base.bioventurist.bv_venture_investor.investment_round (fb:base.bioventurist.bv_investment_round.currency (var x)))) fb:en.uk)) (value (list (name fb:en.celtic_pharma "Celtic Pharma") (name fb:en.imperial_innovations "Imperial Innovations") (name fb:en.clarus_ventures "Clarus Ventures") (name fb:en.mvm_life_science_partners "MVM Life Science Partners") (name fb:en.novartis_option_fund "Novartis Option Fund"))) (type fb:base.bioventurist.bv_venture_investor) what college football team did john elway play for? Denver Broncos 15.242 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.john_elway))) (value (list (name fb:en.denver_broncos "Denver Broncos") (name fb:en.stanford_cardinal_football "Stanford Cardinal football"))) (type fb:sports.sports_team) what college football team did john elway play for? Stanford Cardinal football 15.242 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.john_elway))) (value (list (name fb:en.denver_broncos "Denver Broncos") (name fb:en.stanford_cardinal_football "Stanford Cardinal football"))) (type fb:sports.sports_team) who did nasri play for before arsenal? Manchester City F.C. 11.653 formula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.samir_nasri)) (value (list (name fb:en.manchester_city_fc "Manchester City F.C.") (name fb:en.arsenal_fc "Arsenal F.C.") (name fb:en.olympique_de_marseille "Olympique de Marseille") (name fb:en.france_national_football_team "France national football team"))) (type fb:soccer.football_team) who did nasri play for before arsenal? Arsenal F.C. 11.653 formula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.samir_nasri)) (value (list (name fb:en.manchester_city_fc "Manchester City F.C.") (name fb:en.arsenal_fc "Arsenal F.C.") (name fb:en.olympique_de_marseille "Olympique de Marseille") (name fb:en.france_national_football_team "France national football team"))) (type fb:soccer.football_team) who did nasri play for before arsenal? Olympique de Marseille 11.653 formula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.samir_nasri)) (value (list (name fb:en.manchester_city_fc "Manchester City F.C.") (name fb:en.arsenal_fc "Arsenal F.C.") (name fb:en.olympique_de_marseille "Olympique de Marseille") (name fb:en.france_national_football_team "France national football team"))) (type fb:soccer.football_team) who did nasri play for before arsenal? France national football team 11.653 formula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.samir_nasri)) (value (list (name fb:en.manchester_city_fc "Manchester City F.C.") (name fb:en.arsenal_fc "Arsenal F.C.") (name fb:en.olympique_de_marseille "Olympique de Marseille") (name fb:en.france_national_football_team "France national football team"))) (type fb:soccer.football_team) what currency does the czech republic use now? Czech koruna 19.839 formula (!fb:location.country.currency_used fb:en.czech_republic)) (value (list (name fb:en.czech_koruna "Czech koruna"))) (type fb:finance.currency) what age did william penn get married? Gulielma Maria Springett 10.121 formula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.william_penn)) (value (list (name fb:m.0j6bdtg "Gulielma Maria Springett") (name fb:en.hannah_callowhill_penn "Hannah Callowhill Penn"))) (type fb:people.person) what age did william penn get married? Hannah Callowhill Penn 10.121 formula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.william_penn)) (value (list (name fb:m.0j6bdtg "Gulielma Maria Springett") (name fb:en.hannah_callowhill_penn "Hannah Callowhill Penn"))) (type fb:people.person) what was firefox programmed in? Cascading Style Sheets 11.66 formula (!fb:computer.software.languages_used fb:en.mozilla_firefox)) (value (list (name fb:en.cplusplus C++) (name fb:en.cascading_style_sheets "Cascading Style Sheets") (name fb:en.javascript JavaScript) (name fb:en.xbl XBL) (name fb:en.xul XUL))) (type fb:computer.programming_language) what government does new zealand have? Unitary state 14.412 formula (!fb:location.country.form_of_government fb:en.new_zealand)) (value (list (name fb:en.unitary_state "Unitary state") (name fb:en.parliamentary_system "Parliamentary system") (name fb:en.constitutional_monarchy "Constitutional monarchy"))) (type fb:government.form_of_government) what government does new zealand have? Parliamentary system 14.412 formula (!fb:location.country.form_of_government fb:en.new_zealand)) (value (list (name fb:en.unitary_state "Unitary state") (name fb:en.parliamentary_system "Parliamentary system") (name fb:en.constitutional_monarchy "Constitutional monarchy"))) (type fb:government.form_of_government) what government does new zealand have? Constitutional monarchy 14.412 formula (!fb:location.country.form_of_government fb:en.new_zealand)) (value (list (name fb:en.unitary_state "Unitary state") (name fb:en.parliamentary_system "Parliamentary system") (name fb:en.constitutional_monarchy "Constitutional monarchy"))) (type fb:government.form_of_government) what has kristen stewart acted in? The Thirteenth Year 11.832 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.kristen_stewart)) (value (list (name fb:en.the_thirteenth_year "The Thirteenth Year") (name fb:en.the_flintstones_in_viva_rock_vegas "The Flintstones in Viva Rock Vegas") (name fb:en.welcome_to_the_rileys "Welcome to the Rileys") (name fb:en.in_search_of_on_the_road_a_work_in_progress "On the Road") (name fb:en.the_messengers "The Messengers") (name fb:m.0n4n1y_ "Snow White and the Huntsman 2") (name fb:m.05b3kq9 Cutlass) (name fb:m.0djz0rc "The Twilight Saga: Breaking Dawn - Part 2") (name fb:m.0g5qs2k "Snow White and the Huntsman") (name fb:m.075wx7_ Eclipse))) (type fb:film.film) what has kristen stewart acted in? The Flintstones in Viva Rock Vegas 11.832 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.kristen_stewart)) (value (list (name fb:en.the_thirteenth_year "The Thirteenth Year") (name fb:en.the_flintstones_in_viva_rock_vegas "The Flintstones in Viva Rock Vegas") (name fb:en.welcome_to_the_rileys "Welcome to the Rileys") (name fb:en.in_search_of_on_the_road_a_work_in_progress "On the Road") (name fb:en.the_messengers "The Messengers") (name fb:m.0n4n1y_ "Snow White and the Huntsman 2") (name fb:m.05b3kq9 Cutlass) (name fb:m.0djz0rc "The Twilight Saga: Breaking Dawn - Part 2") (name fb:m.0g5qs2k "Snow White and the Huntsman") (name fb:m.075wx7_ Eclipse))) (type fb:film.film) what has kristen stewart acted in? Welcome to the Rileys 11.832 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.kristen_stewart)) (value (list (name fb:en.the_thirteenth_year "The Thirteenth Year") (name fb:en.the_flintstones_in_viva_rock_vegas "The Flintstones in Viva Rock Vegas") (name fb:en.welcome_to_the_rileys "Welcome to the Rileys") (name fb:en.in_search_of_on_the_road_a_work_in_progress "On the Road") (name fb:en.the_messengers "The Messengers") (name fb:m.0n4n1y_ "Snow White and the Huntsman 2") (name fb:m.05b3kq9 Cutlass) (name fb:m.0djz0rc "The Twilight Saga: Breaking Dawn - Part 2") (name fb:m.0g5qs2k "Snow White and the Huntsman") (name fb:m.075wx7_ Eclipse))) (type fb:film.film) what has kristen stewart acted in? On the Road 11.832 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.kristen_stewart)) (value (list (name fb:en.the_thirteenth_year "The Thirteenth Year") (name fb:en.the_flintstones_in_viva_rock_vegas "The Flintstones in Viva Rock Vegas") (name fb:en.welcome_to_the_rileys "Welcome to the Rileys") (name fb:en.in_search_of_on_the_road_a_work_in_progress "On the Road") (name fb:en.the_messengers "The Messengers") (name fb:m.0n4n1y_ "Snow White and the Huntsman 2") (name fb:m.05b3kq9 Cutlass) (name fb:m.0djz0rc "The Twilight Saga: Breaking Dawn - Part 2") (name fb:m.0g5qs2k "Snow White and the Huntsman") (name fb:m.075wx7_ Eclipse))) (type fb:film.film) what has kristen stewart acted in? The Messengers 11.832 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.kristen_stewart)) (value (list (name fb:en.the_thirteenth_year "The Thirteenth Year") (name fb:en.the_flintstones_in_viva_rock_vegas "The Flintstones in Viva Rock Vegas") (name fb:en.welcome_to_the_rileys "Welcome to the Rileys") (name fb:en.in_search_of_on_the_road_a_work_in_progress "On the Road") (name fb:en.the_messengers "The Messengers") (name fb:m.0n4n1y_ "Snow White and the Huntsman 2") (name fb:m.05b3kq9 Cutlass) (name fb:m.0djz0rc "The Twilight Saga: Breaking Dawn - Part 2") (name fb:m.0g5qs2k "Snow White and the Huntsman") (name fb:m.075wx7_ Eclipse))) (type fb:film.film) what has kristen stewart acted in? Snow White and the Huntsman 2 11.832 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.kristen_stewart)) (value (list (name fb:en.the_thirteenth_year "The Thirteenth Year") (name fb:en.the_flintstones_in_viva_rock_vegas "The Flintstones in Viva Rock Vegas") (name fb:en.welcome_to_the_rileys "Welcome to the Rileys") (name fb:en.in_search_of_on_the_road_a_work_in_progress "On the Road") (name fb:en.the_messengers "The Messengers") (name fb:m.0n4n1y_ "Snow White and the Huntsman 2") (name fb:m.05b3kq9 Cutlass) (name fb:m.0djz0rc "The Twilight Saga: Breaking Dawn - Part 2") (name fb:m.0g5qs2k "Snow White and the Huntsman") (name fb:m.075wx7_ Eclipse))) (type fb:film.film) what has kristen stewart acted in? The Twilight Saga: Breaking Dawn - Part 2 11.832 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.kristen_stewart)) (value (list (name fb:en.the_thirteenth_year "The Thirteenth Year") (name fb:en.the_flintstones_in_viva_rock_vegas "The Flintstones in Viva Rock Vegas") (name fb:en.welcome_to_the_rileys "Welcome to the Rileys") (name fb:en.in_search_of_on_the_road_a_work_in_progress "On the Road") (name fb:en.the_messengers "The Messengers") (name fb:m.0n4n1y_ "Snow White and the Huntsman 2") (name fb:m.05b3kq9 Cutlass) (name fb:m.0djz0rc "The Twilight Saga: Breaking Dawn - Part 2") (name fb:m.0g5qs2k "Snow White and the Huntsman") (name fb:m.075wx7_ Eclipse))) (type fb:film.film) what has kristen stewart acted in? Snow White and the Huntsman 11.832 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.kristen_stewart)) (value (list (name fb:en.the_thirteenth_year "The Thirteenth Year") (name fb:en.the_flintstones_in_viva_rock_vegas "The Flintstones in Viva Rock Vegas") (name fb:en.welcome_to_the_rileys "Welcome to the Rileys") (name fb:en.in_search_of_on_the_road_a_work_in_progress "On the Road") (name fb:en.the_messengers "The Messengers") (name fb:m.0n4n1y_ "Snow White and the Huntsman 2") (name fb:m.05b3kq9 Cutlass) (name fb:m.0djz0rc "The Twilight Saga: Breaking Dawn - Part 2") (name fb:m.0g5qs2k "Snow White and the Huntsman") (name fb:m.075wx7_ Eclipse))) (type fb:film.film) what kind of language does egypt speak? Modern Standard Arabic 16.424 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.egypt))) (value (list (name fb:en.literary_arabic "Modern Standard Arabic"))) (type (union fb:language.human_language)) who are the senators of hawaii 2012? Brian Schatz 18.215 formula (!fb:government.government_position_held.office_holder (and (!fb:government.political_district.representatives fb:en.hawaii) (fb:government.government_position_held.from (date 2012 -1 -1))))) (value (list (name fb:en.brian_e_schatz "Brian Schatz"))) (type fb:government.politician) what form of government does north korea have? Family dictatorship 14.788 formula (fb:government.form_of_government.countries fb:en.north_korea)) (value (list (name fb:en.family_dictatorship "Family dictatorship") (name fb:en.totalitarianism Totalitarianism) (name fb:en.single-party_state "Single-party state") (name fb:en.juche Juche))) (type fb:government.form_of_government) what form of government does north korea have? Single-party state 14.788 formula (fb:government.form_of_government.countries fb:en.north_korea)) (value (list (name fb:en.family_dictatorship "Family dictatorship") (name fb:en.totalitarianism Totalitarianism) (name fb:en.single-party_state "Single-party state") (name fb:en.juche Juche))) (type fb:government.form_of_government) where did robert kardashian go to college? University of Southern California 11.36 formula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.robert_kardashian)))) (value (list (name fb:en.university_of_southern_california "University of Southern California") (name fb:en.university_of_san_diego "University of San Diego") (name fb:en.university_of_san_diego_school_of_law "University of San Diego School of Law"))) (type fb:education.university) where did robert kardashian go to college? University of San Diego 11.36 formula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.robert_kardashian)))) (value (list (name fb:en.university_of_southern_california "University of Southern California") (name fb:en.university_of_san_diego "University of San Diego") (name fb:en.university_of_san_diego_school_of_law "University of San Diego School of Law"))) (type fb:education.university) where did robert kardashian go to college? University of San Diego School of Law 11.36 formula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.robert_kardashian)))) (value (list (name fb:en.university_of_southern_california "University of Southern California") (name fb:en.university_of_san_diego "University of San Diego") (name fb:en.university_of_san_diego_school_of_law "University of San Diego School of Law"))) (type fb:education.university) what happened at chernobyl? Chernobyl disaster 2.926 formula (!fb:location.location.events fb:en.chernobyl)) (value (list (name fb:en.chernobyl_disaster "Chernobyl disaster"))) (type fb:time.event) what county is st james city fl in? Craven County 12.964 formula (!fb:location.hud_county_place.county fb:en.james_city)) (value (list (name fb:en.craven_county "Craven County"))) (type fb:location.us_county) after how many years are the olympic games held? 2006 Winter Olympics 11.093 formula (and (fb:type.object.type fb:sports.sports_championship_event) (fb:time.event.instance_of_recurring_event fb:en.winter_olympic_games))) (value (list (name fb:en.2006_winter_olympics "2006 Winter Olympics"))) (type (union fb:sports.sports_championship_event)) what system of government does guyana have? Unitary state 12.174 formula (!fb:location.country.form_of_government fb:en.guyana)) (value (list (name fb:en.unitary_state "Unitary state") (name fb:en.republic Republic) (name fb:en.semi-presidential_system "Semi-presidential system"))) (type fb:government.form_of_government) what system of government does guyana have? Semi-presidential system 12.174 formula (!fb:location.country.form_of_government fb:en.guyana)) (value (list (name fb:en.unitary_state "Unitary state") (name fb:en.republic Republic) (name fb:en.semi-presidential_system "Semi-presidential system"))) (type fb:government.form_of_government) when was the last time the ny knicks won a playoff game? News magazine 7.385 formula (!fb:book.magazine.genre fb:en.time)) (value (list (name fb:en.newsmagazine "News magazine"))) (type fb:book.magazine_genre) who is the president of the european union 2012? Mário Soares 13.91 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.european_union)) (value (list (name fb:en.mario_soares "Mário Soares") (name fb:en.jerzy_buzek "Jerzy Buzek") (name fb:en.keith_taylor "Keith Taylor") (name fb:en.christian_engstrom "Christian Engström") (name fb:en.bas_eickhout "Bas Eickhout") (name fb:en.caroline_lucas "Caroline Lucas") (name fb:en.catherine_bearder "Catherine Bearder") (name fb:en.emilie_turunen "Emilie Turunen") (name fb:en.amelia_andersdotter "Amelia Andersdotter") (name fb:en.jana_bobosikova "Jana Bobošíková"))) (type fb:government.politician) who is the president of the european union 2012? Jerzy Buzek 13.91 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.european_union)) (value (list (name fb:en.mario_soares "Mário Soares") (name fb:en.jerzy_buzek "Jerzy Buzek") (name fb:en.keith_taylor "Keith Taylor") (name fb:en.christian_engstrom "Christian Engström") (name fb:en.bas_eickhout "Bas Eickhout") (name fb:en.caroline_lucas "Caroline Lucas") (name fb:en.catherine_bearder "Catherine Bearder") (name fb:en.emilie_turunen "Emilie Turunen") (name fb:en.amelia_andersdotter "Amelia Andersdotter") (name fb:en.jana_bobosikova "Jana Bobošíková"))) (type fb:government.politician) who is the president of the european union 2012? Keith Taylor 13.91 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.european_union)) (value (list (name fb:en.mario_soares "Mário Soares") (name fb:en.jerzy_buzek "Jerzy Buzek") (name fb:en.keith_taylor "Keith Taylor") (name fb:en.christian_engstrom "Christian Engström") (name fb:en.bas_eickhout "Bas Eickhout") (name fb:en.caroline_lucas "Caroline Lucas") (name fb:en.catherine_bearder "Catherine Bearder") (name fb:en.emilie_turunen "Emilie Turunen") (name fb:en.amelia_andersdotter "Amelia Andersdotter") (name fb:en.jana_bobosikova "Jana Bobošíková"))) (type fb:government.politician) who is the president of the european union 2012? Christian Engström 13.91 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.european_union)) (value (list (name fb:en.mario_soares "Mário Soares") (name fb:en.jerzy_buzek "Jerzy Buzek") (name fb:en.keith_taylor "Keith Taylor") (name fb:en.christian_engstrom "Christian Engström") (name fb:en.bas_eickhout "Bas Eickhout") (name fb:en.caroline_lucas "Caroline Lucas") (name fb:en.catherine_bearder "Catherine Bearder") (name fb:en.emilie_turunen "Emilie Turunen") (name fb:en.amelia_andersdotter "Amelia Andersdotter") (name fb:en.jana_bobosikova "Jana Bobošíková"))) (type fb:government.politician) who is the president of the european union 2012? Bas Eickhout 13.91 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.european_union)) (value (list (name fb:en.mario_soares "Mário Soares") (name fb:en.jerzy_buzek "Jerzy Buzek") (name fb:en.keith_taylor "Keith Taylor") (name fb:en.christian_engstrom "Christian Engström") (name fb:en.bas_eickhout "Bas Eickhout") (name fb:en.caroline_lucas "Caroline Lucas") (name fb:en.catherine_bearder "Catherine Bearder") (name fb:en.emilie_turunen "Emilie Turunen") (name fb:en.amelia_andersdotter "Amelia Andersdotter") (name fb:en.jana_bobosikova "Jana Bobošíková"))) (type fb:government.politician) who is the president of the european union 2012? Caroline Lucas 13.91 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.european_union)) (value (list (name fb:en.mario_soares "Mário Soares") (name fb:en.jerzy_buzek "Jerzy Buzek") (name fb:en.keith_taylor "Keith Taylor") (name fb:en.christian_engstrom "Christian Engström") (name fb:en.bas_eickhout "Bas Eickhout") (name fb:en.caroline_lucas "Caroline Lucas") (name fb:en.catherine_bearder "Catherine Bearder") (name fb:en.emilie_turunen "Emilie Turunen") (name fb:en.amelia_andersdotter "Amelia Andersdotter") (name fb:en.jana_bobosikova "Jana Bobošíková"))) (type fb:government.politician) who is the president of the european union 2012? Catherine Bearder 13.91 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.european_union)) (value (list (name fb:en.mario_soares "Mário Soares") (name fb:en.jerzy_buzek "Jerzy Buzek") (name fb:en.keith_taylor "Keith Taylor") (name fb:en.christian_engstrom "Christian Engström") (name fb:en.bas_eickhout "Bas Eickhout") (name fb:en.caroline_lucas "Caroline Lucas") (name fb:en.catherine_bearder "Catherine Bearder") (name fb:en.emilie_turunen "Emilie Turunen") (name fb:en.amelia_andersdotter "Amelia Andersdotter") (name fb:en.jana_bobosikova "Jana Bobošíková"))) (type fb:government.politician) who is the president of the european union 2012? Emilie Turunen 13.91 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.european_union)) (value (list (name fb:en.mario_soares "Mário Soares") (name fb:en.jerzy_buzek "Jerzy Buzek") (name fb:en.keith_taylor "Keith Taylor") (name fb:en.christian_engstrom "Christian Engström") (name fb:en.bas_eickhout "Bas Eickhout") (name fb:en.caroline_lucas "Caroline Lucas") (name fb:en.catherine_bearder "Catherine Bearder") (name fb:en.emilie_turunen "Emilie Turunen") (name fb:en.amelia_andersdotter "Amelia Andersdotter") (name fb:en.jana_bobosikova "Jana Bobošíková"))) (type fb:government.politician) who is the president of the european union 2012? Amelia Andersdotter 13.91 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.european_union)) (value (list (name fb:en.mario_soares "Mário Soares") (name fb:en.jerzy_buzek "Jerzy Buzek") (name fb:en.keith_taylor "Keith Taylor") (name fb:en.christian_engstrom "Christian Engström") (name fb:en.bas_eickhout "Bas Eickhout") (name fb:en.caroline_lucas "Caroline Lucas") (name fb:en.catherine_bearder "Catherine Bearder") (name fb:en.emilie_turunen "Emilie Turunen") (name fb:en.amelia_andersdotter "Amelia Andersdotter") (name fb:en.jana_bobosikova "Jana Bobošíková"))) (type fb:government.politician) who is the president of the european union 2012? Jana Bobošíková 13.91 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.european_union)) (value (list (name fb:en.mario_soares "Mário Soares") (name fb:en.jerzy_buzek "Jerzy Buzek") (name fb:en.keith_taylor "Keith Taylor") (name fb:en.christian_engstrom "Christian Engström") (name fb:en.bas_eickhout "Bas Eickhout") (name fb:en.caroline_lucas "Caroline Lucas") (name fb:en.catherine_bearder "Catherine Bearder") (name fb:en.emilie_turunen "Emilie Turunen") (name fb:en.amelia_andersdotter "Amelia Andersdotter") (name fb:en.jana_bobosikova "Jana Bobošíková"))) (type fb:government.politician) what sort of government does nigeria have? Federal republic 12.03 formula (!fb:location.country.form_of_government fb:en.nigeria)) (value (list (name fb:en.federal_republic "Federal republic") (name fb:en.presidential_system "Presidential system"))) (type fb:government.form_of_government) what sort of government does nigeria have? Presidential system 12.03 formula (!fb:location.country.form_of_government fb:en.nigeria)) (value (list (name fb:en.federal_republic "Federal republic") (name fb:en.presidential_system "Presidential system"))) (type fb:government.form_of_government) when the atlanta braves won the world series? 1995 World Series 14.795 formula (fb:sports.sports_championship_event.champion fb:en.atlanta_braves)) (value (list (name fb:en.1995_world_series "1995 World Series"))) (type fb:sports.sports_championship_event) what is lamar odom doing now july 2012? Les Tres Riches Heures du duc de Berry juillet 7.14 formula (!fb:common.topic.image fb:en.july)) (value (list (name fb:m.02bftm8 "Les Très Riches Heures du duc de Berry juillet"))) (type fb:common.image) what kind of language do they speak in iran? Persian Language 21.107 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.iran))) (value (list (name fb:en.persian_language "Persian Language"))) (type (union fb:language.human_language)) what was the first language spoken in spain? Spanish Language 19.08 formula (!fb:location.country.official_language fb:en.spain)) (value (list (name fb:en.spanish "Spanish Language"))) (type fb:language.human_language) which hemingway book to read? A Moveable Feast 6.868 formula (!fb:book.author.book_editions_published fb:en.ernest_hemingway)) (value (list (name fb:m.04v_b2r "A Moveable Feast") (name fb:en.a_moveable_feast_scribner_classic "A Moveable Feast (Scribner Classic)") (name fb:m.04trgq3 "A moveable feast") (name fb:m.04v_b49 "A Moveable Feast") (name fb:m.04v_b1z "A Moveable Feast") (name fb:m.04v_b41 "A Moveable Feast") (name fb:m.04v_b38 "A Moveable Feast") (name fb:m.028yb72 "A Moveable Feast") (name fb:en.a_moveable_feast_moveable_feast_srs "A Moveable Feast (Moveable Feast Srs)") (name fb:m.04v_b4k "A Moveable Feast"))) (type fb:book.book_edition) which hemingway book to read? A Moveable Feast (Scribner Classic) 6.868 formula (!fb:book.author.book_editions_published fb:en.ernest_hemingway)) (value (list (name fb:m.04v_b2r "A Moveable Feast") (name fb:en.a_moveable_feast_scribner_classic "A Moveable Feast (Scribner Classic)") (name fb:m.04trgq3 "A moveable feast") (name fb:m.04v_b49 "A Moveable Feast") (name fb:m.04v_b1z "A Moveable Feast") (name fb:m.04v_b41 "A Moveable Feast") (name fb:m.04v_b38 "A Moveable Feast") (name fb:m.028yb72 "A Moveable Feast") (name fb:en.a_moveable_feast_moveable_feast_srs "A Moveable Feast (Moveable Feast Srs)") (name fb:m.04v_b4k "A Moveable Feast"))) (type fb:book.book_edition) which hemingway book to read? A moveable feast 6.868 formula (!fb:book.author.book_editions_published fb:en.ernest_hemingway)) (value (list (name fb:m.04v_b2r "A Moveable Feast") (name fb:en.a_moveable_feast_scribner_classic "A Moveable Feast (Scribner Classic)") (name fb:m.04trgq3 "A moveable feast") (name fb:m.04v_b49 "A Moveable Feast") (name fb:m.04v_b1z "A Moveable Feast") (name fb:m.04v_b41 "A Moveable Feast") (name fb:m.04v_b38 "A Moveable Feast") (name fb:m.028yb72 "A Moveable Feast") (name fb:en.a_moveable_feast_moveable_feast_srs "A Moveable Feast (Moveable Feast Srs)") (name fb:m.04v_b4k "A Moveable Feast"))) (type fb:book.book_edition) which hemingway book to read? A Moveable Feast 6.868 formula (!fb:book.author.book_editions_published fb:en.ernest_hemingway)) (value (list (name fb:m.04v_b2r "A Moveable Feast") (name fb:en.a_moveable_feast_scribner_classic "A Moveable Feast (Scribner Classic)") (name fb:m.04trgq3 "A moveable feast") (name fb:m.04v_b49 "A Moveable Feast") (name fb:m.04v_b1z "A Moveable Feast") (name fb:m.04v_b41 "A Moveable Feast") (name fb:m.04v_b38 "A Moveable Feast") (name fb:m.028yb72 "A Moveable Feast") (name fb:en.a_moveable_feast_moveable_feast_srs "A Moveable Feast (Moveable Feast Srs)") (name fb:m.04v_b4k "A Moveable Feast"))) (type fb:book.book_edition) which hemingway book to read? A Moveable Feast 6.868 formula (!fb:book.author.book_editions_published fb:en.ernest_hemingway)) (value (list (name fb:m.04v_b2r "A Moveable Feast") (name fb:en.a_moveable_feast_scribner_classic "A Moveable Feast (Scribner Classic)") (name fb:m.04trgq3 "A moveable feast") (name fb:m.04v_b49 "A Moveable Feast") (name fb:m.04v_b1z "A Moveable Feast") (name fb:m.04v_b41 "A Moveable Feast") (name fb:m.04v_b38 "A Moveable Feast") (name fb:m.028yb72 "A Moveable Feast") (name fb:en.a_moveable_feast_moveable_feast_srs "A Moveable Feast (Moveable Feast Srs)") (name fb:m.04v_b4k "A Moveable Feast"))) (type fb:book.book_edition) which hemingway book to read? A Moveable Feast 6.868 formula (!fb:book.author.book_editions_published fb:en.ernest_hemingway)) (value (list (name fb:m.04v_b2r "A Moveable Feast") (name fb:en.a_moveable_feast_scribner_classic "A Moveable Feast (Scribner Classic)") (name fb:m.04trgq3 "A moveable feast") (name fb:m.04v_b49 "A Moveable Feast") (name fb:m.04v_b1z "A Moveable Feast") (name fb:m.04v_b41 "A Moveable Feast") (name fb:m.04v_b38 "A Moveable Feast") (name fb:m.028yb72 "A Moveable Feast") (name fb:en.a_moveable_feast_moveable_feast_srs "A Moveable Feast (Moveable Feast Srs)") (name fb:m.04v_b4k "A Moveable Feast"))) (type fb:book.book_edition) which hemingway book to read? A Moveable Feast 6.868 formula (!fb:book.author.book_editions_published fb:en.ernest_hemingway)) (value (list (name fb:m.04v_b2r "A Moveable Feast") (name fb:en.a_moveable_feast_scribner_classic "A Moveable Feast (Scribner Classic)") (name fb:m.04trgq3 "A moveable feast") (name fb:m.04v_b49 "A Moveable Feast") (name fb:m.04v_b1z "A Moveable Feast") (name fb:m.04v_b41 "A Moveable Feast") (name fb:m.04v_b38 "A Moveable Feast") (name fb:m.028yb72 "A Moveable Feast") (name fb:en.a_moveable_feast_moveable_feast_srs "A Moveable Feast (Moveable Feast Srs)") (name fb:m.04v_b4k "A Moveable Feast"))) (type fb:book.book_edition) which hemingway book to read? A Moveable Feast 6.868 formula (!fb:book.author.book_editions_published fb:en.ernest_hemingway)) (value (list (name fb:m.04v_b2r "A Moveable Feast") (name fb:en.a_moveable_feast_scribner_classic "A Moveable Feast (Scribner Classic)") (name fb:m.04trgq3 "A moveable feast") (name fb:m.04v_b49 "A Moveable Feast") (name fb:m.04v_b1z "A Moveable Feast") (name fb:m.04v_b41 "A Moveable Feast") (name fb:m.04v_b38 "A Moveable Feast") (name fb:m.028yb72 "A Moveable Feast") (name fb:en.a_moveable_feast_moveable_feast_srs "A Moveable Feast (Moveable Feast Srs)") (name fb:m.04v_b4k "A Moveable Feast"))) (type fb:book.book_edition) which hemingway book to read? A Moveable Feast (Moveable Feast Srs) 6.868 formula (!fb:book.author.book_editions_published fb:en.ernest_hemingway)) (value (list (name fb:m.04v_b2r "A Moveable Feast") (name fb:en.a_moveable_feast_scribner_classic "A Moveable Feast (Scribner Classic)") (name fb:m.04trgq3 "A moveable feast") (name fb:m.04v_b49 "A Moveable Feast") (name fb:m.04v_b1z "A Moveable Feast") (name fb:m.04v_b41 "A Moveable Feast") (name fb:m.04v_b38 "A Moveable Feast") (name fb:m.028yb72 "A Moveable Feast") (name fb:en.a_moveable_feast_moveable_feast_srs "A Moveable Feast (Moveable Feast Srs)") (name fb:m.04v_b4k "A Moveable Feast"))) (type fb:book.book_edition) which hemingway book to read? A Moveable Feast 6.868 formula (!fb:book.author.book_editions_published fb:en.ernest_hemingway)) (value (list (name fb:m.04v_b2r "A Moveable Feast") (name fb:en.a_moveable_feast_scribner_classic "A Moveable Feast (Scribner Classic)") (name fb:m.04trgq3 "A moveable feast") (name fb:m.04v_b49 "A Moveable Feast") (name fb:m.04v_b1z "A Moveable Feast") (name fb:m.04v_b41 "A Moveable Feast") (name fb:m.04v_b38 "A Moveable Feast") (name fb:m.028yb72 "A Moveable Feast") (name fb:en.a_moveable_feast_moveable_feast_srs "A Moveable Feast (Moveable Feast Srs)") (name fb:m.04v_b4k "A Moveable Feast"))) (type fb:book.book_edition) what language do most people speak in afghanistan? Farsi, Eastern Language 11.275 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.afghanistan))) (value (list (name fb:en.dari "Farsi, Eastern Language") (name fb:en.pashto_language "Pashto language"))) (type (union fb:language.human_language)) what language do most people speak in afghanistan? Pashto language 11.275 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.afghanistan))) (value (list (name fb:en.dari "Farsi, Eastern Language") (name fb:en.pashto_language "Pashto language"))) (type (union fb:language.human_language)) who is the prime minister of jamaica west indies? Inflation, World Development Indicators, World Bank 5.57 formula ((lambda x (!fb:measurement_unit.dated_percentage.source (!fb:location.statistical_region.cpi_inflation_rate (var x)))) fb:en.jamaica)) (value (list (name fb:g.124x8gy8f "Inflation, World Development Indicators, World Bank"))) (type fb:dataworld.information_source) when did juventus win the champions league? 1996 UEFA Champions League Final 13.111 formula (fb:sports.sports_championship_event.champion fb:en.juventus_fc)) (value (list (name fb:en.1996_uefa_champions_league_final "1996 UEFA Champions League Final") (name fb:en.1985_european_cup_final "1985 European Cup Final"))) (type fb:sports.sports_championship_event) when did juventus win the champions league? 1985 European Cup Final 13.111 formula (fb:sports.sports_championship_event.champion fb:en.juventus_fc)) (value (list (name fb:en.1996_uefa_champions_league_final "1996 UEFA Champions League Final") (name fb:en.1985_european_cup_final "1985 European Cup Final"))) (type fb:sports.sports_championship_event) when does school start for the university of oregon? Robert D. Clark Honors College 17.779 formula (and (fb:type.object.type fb:education.educational_institution) (!fb:education.educational_institution.subsidiary_or_constituent_schools fb:en.university_of_oregon))) (value (list (name fb:en.robert_d_clark_honors_college "Robert D. Clark Honors College") (name fb:en.charles_h_lundquist_college_of_business "Charles H. Lundquist College of Business") (name fb:en.university_of_oregon_school_of_law "University of Oregon School of Law"))) (type (union fb:education.educational_institution)) when does school start for the university of oregon? Charles H. Lundquist College of Business 17.779 formula (and (fb:type.object.type fb:education.educational_institution) (!fb:education.educational_institution.subsidiary_or_constituent_schools fb:en.university_of_oregon))) (value (list (name fb:en.robert_d_clark_honors_college "Robert D. Clark Honors College") (name fb:en.charles_h_lundquist_college_of_business "Charles H. Lundquist College of Business") (name fb:en.university_of_oregon_school_of_law "University of Oregon School of Law"))) (type (union fb:education.educational_institution)) when does school start for the university of oregon? University of Oregon School of Law 17.779 formula (and (fb:type.object.type fb:education.educational_institution) (!fb:education.educational_institution.subsidiary_or_constituent_schools fb:en.university_of_oregon))) (value (list (name fb:en.robert_d_clark_honors_college "Robert D. Clark Honors College") (name fb:en.charles_h_lundquist_college_of_business "Charles H. Lundquist College of Business") (name fb:en.university_of_oregon_school_of_law "University of Oregon School of Law"))) (type (union fb:education.educational_institution)) who is robin roberts father? Lawrence E. Roberts 14.226 formula (!fb:people.person.parents fb:en.robin_roberts)) (value (list (name fb:m.0czc1yg "Lawrence E. Roberts") (name fb:m.0kcbtkw "Lucimarian Tolliver"))) (type fb:people.person) who is robin roberts father? Lucimarian Tolliver 14.226 formula (!fb:people.person.parents fb:en.robin_roberts)) (value (list (name fb:m.0czc1yg "Lawrence E. Roberts") (name fb:m.0kcbtkw "Lucimarian Tolliver"))) (type fb:people.person) where is french spoken most? French Language 11.166 formula (!fb:people.ethnicity.languages_spoken fb:en.french_people)) (value (list (name fb:en.french "French Language"))) (type fb:language.human_language) what team is reggie bush on 2011? Miami Dolphins 17.62 formula (!fb:american_football.football_historical_roster_position.team (and (!fb:american_football.football_player.former_teams fb:en.reggie_bush) (fb:american_football.football_historical_roster_position.from (date 2011 -1 -1))))) (value (list (name fb:en.miami_dolphins "Miami Dolphins"))) (type fb:american_football.football_team) what highschool did emily osment go to? Flintridge Preparatory School 10.378 formula ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.emily_osment)) (value (list (name fb:en.flintridge_preparatory_school "Flintridge Preparatory School"))) (type fb:education.educational_institution) what currency should i take to mexico? Mexican peso 24.262 formula (!fb:location.country.currency_used fb:en.mexico)) (value (list (name fb:en.mexican_peso "Mexican peso"))) (type fb:finance.currency) where did troy aikman play football? West Covina 5.423 formula (and (fb:type.object.type fb:location.location) (!fb:people.person.place_of_birth fb:en.troy_aikman))) (value (list (name fb:en.west_covina "West Covina"))) (type fb:location.location) who played cletus hogg? Jack Polick 5.114 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.cletus_hogg)) (value (list (name fb:en.jack_polick "Jack Polick"))) (type fb:film.actor) who won fa cup 1976? Chelsea F.C. 6.559 formula (!fb:sports.sports_championship_event.champion fb:en.fa_cup_final_2007)) (value (list (name fb:en.chelsea_fc "Chelsea F.C."))) (type fb:sports.sports_team) who plays chuck bass in gossip girl? Ed Westwick 7.29 formula (fb:tv.tv_actor.starring_roles (and (fb:tv.regular_tv_appearance.character fb:en.chuck_bass) (fb:tv.regular_tv_appearance.series fb:m.0gfzgl)))) (value (list (name fb:en.ed_westwick "Ed Westwick"))) (type fb:tv.tv_actor) what countries have territories in oceania? Marshall Islands 12.969 formula (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.oceania))) (value (list (name fb:en.australia Australia) (name fb:en.indonesia Indonesia) (name fb:en.samoa Samoa) (name fb:en.marshall_islands "Marshall Islands") (name fb:en.new_zealand "New Zealand") (name fb:en.vanuatu Vanuatu) (name fb:en.fiji Fiji) (name fb:en.papua_new_guinea "Papua New Guinea") (name fb:en.french_polynesia "French Polynesia") (name fb:en.american_samoa "American Samoa"))) (type (union fb:location.country)) what countries have territories in oceania? New Zealand 12.969 formula (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.oceania))) (value (list (name fb:en.australia Australia) (name fb:en.indonesia Indonesia) (name fb:en.samoa Samoa) (name fb:en.marshall_islands "Marshall Islands") (name fb:en.new_zealand "New Zealand") (name fb:en.vanuatu Vanuatu) (name fb:en.fiji Fiji) (name fb:en.papua_new_guinea "Papua New Guinea") (name fb:en.french_polynesia "French Polynesia") (name fb:en.american_samoa "American Samoa"))) (type (union fb:location.country)) what countries have territories in oceania? Papua New Guinea 12.969 formula (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.oceania))) (value (list (name fb:en.australia Australia) (name fb:en.indonesia Indonesia) (name fb:en.samoa Samoa) (name fb:en.marshall_islands "Marshall Islands") (name fb:en.new_zealand "New Zealand") (name fb:en.vanuatu Vanuatu) (name fb:en.fiji Fiji) (name fb:en.papua_new_guinea "Papua New Guinea") (name fb:en.french_polynesia "French Polynesia") (name fb:en.american_samoa "American Samoa"))) (type (union fb:location.country)) what countries have territories in oceania? French Polynesia 12.969 formula (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.oceania))) (value (list (name fb:en.australia Australia) (name fb:en.indonesia Indonesia) (name fb:en.samoa Samoa) (name fb:en.marshall_islands "Marshall Islands") (name fb:en.new_zealand "New Zealand") (name fb:en.vanuatu Vanuatu) (name fb:en.fiji Fiji) (name fb:en.papua_new_guinea "Papua New Guinea") (name fb:en.french_polynesia "French Polynesia") (name fb:en.american_samoa "American Samoa"))) (type (union fb:location.country)) what countries have territories in oceania? American Samoa 12.969 formula (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.oceania))) (value (list (name fb:en.australia Australia) (name fb:en.indonesia Indonesia) (name fb:en.samoa Samoa) (name fb:en.marshall_islands "Marshall Islands") (name fb:en.new_zealand "New Zealand") (name fb:en.vanuatu Vanuatu) (name fb:en.fiji Fiji) (name fb:en.papua_new_guinea "Papua New Guinea") (name fb:en.french_polynesia "French Polynesia") (name fb:en.american_samoa "American Samoa"))) (type (union fb:location.country)) what county is st. louis park in? Hennepin County 12.55 formula (!fb:location.hud_county_place.county fb:en.st_louis_park)) (value (list (name fb:en.hennepin_county "Hennepin County"))) (type fb:location.us_county) when does parliament sit in canberra? Territory of New Guinea 2.136 formula (fb:location.country.capital fb:en.canberra)) (value (list (name fb:en.australia Australia) (name fb:en.territory_of_new_guinea "Territory of New Guinea") (name fb:en.territory_of_papua_and_new_guinea "Territory of Papua and New Guinea"))) (type fb:location.country) when does parliament sit in canberra? Territory of Papua and New Guinea 2.136 formula (fb:location.country.capital fb:en.canberra)) (value (list (name fb:en.australia Australia) (name fb:en.territory_of_new_guinea "Territory of New Guinea") (name fb:en.territory_of_papua_and_new_guinea "Territory of Papua and New Guinea"))) (type fb:location.country) what language group does germany belong to? German Language 19.469 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.germany))) (value (list (name fb:en.german_language "German Language"))) (type (union fb:language.human_language)) what timezone is tucson arizona in right now? Mountain Time Zone 10.621 formula (!fb:location.location.time_zones fb:en.arizona)) (value (list (name fb:en.mountain_time_zone "Mountain Time Zone") (name fb:en.utc-7 UTC−07:00))) (type fb:time.time_zone) when was lucy lawless born? Mount Albert, New Zealand 8.654 formula (!fb:people.person.place_of_birth fb:en.lucy_lawless)) (value (list (name fb:en.mount_albert_new_zealand "Mount Albert, New Zealand"))) (type fb:location.location) which political party does barack obama represent? Democratic Party 13.831 formula ((lambda x (!fb:government.political_party_tenure.party (!fb:government.politician.party (var x)))) fb:en.barack_obama)) (value (list (name fb:en.democrat_party "Democratic Party"))) (type fb:government.political_party) where is the empire of ghana? Ho East 6.557 formula (and (fb:type.object.type fb:location.location) ((lambda x (fb:government.political_district.representatives (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.ghana))) (value (list (name fb:en.komenda_edina_eguafo_abirem Komenda-Edina-Eguafo-Abirem) (name fb:en.ho_east "Ho East"))) (type fb:government.political_district) what kind of leukemia did jill clayburgh have? B-cell chronic lymphocytic leukemia 7.484 formula (and (fb:type.object.type fb:people.cause_of_death) (fb:people.cause_of_death.people fb:en.jill_clayburgh))) (value (list (name fb:en.leukemia Leukemia) (name fb:en.chronic_lymphocytic_leukemia "B-cell chronic lymphocytic leukemia"))) (type (union fb:people.cause_of_death)) what is the name of the book hitler wrote in jail? Rede an die Welt 16.656 formula (and (fb:type.object.type fb:book.book) (fb:book.written_work.author fb:en.adolf_hitler))) (value (list (name fb:en.rede_an_die_welt "Rede an die Welt") (name fb:en.mein_kampf "Mein Kampf") (name fb:m.066zf3v "Speech by the Fuehrer and Chancellor Adolf Hitler in the Reichstag on March 7th, 1936") (name fb:en.hitler_et_la_france "Hitler et la France") (name fb:en.hitlers_lagebesprechungen "Hitlers Lagebesprechungen") (name fb:m.06flch2 "Reichskanzler Adolf Hitler addressing the German Reichstag on May 17, 1933") (name fb:en.junge_deutschland_will_arbeit_und_frieden "Das junge Deutschland will Arbeit und Frieden") (name fb:m.06df93_ "Table talk, 1941-1944") (name fb:en.hitler_speeches_and_proclamations "Hitler: Speeches and Proclamations") (name fb:en.reden_und_proklamationen_1932_1945 "Reden und Proklamationen, 1932-1945"))) (type fb:book.book) what is the name of the book hitler wrote in jail? Mein Kampf 16.656 formula (and (fb:type.object.type fb:book.book) (fb:book.written_work.author fb:en.adolf_hitler))) (value (list (name fb:en.rede_an_die_welt "Rede an die Welt") (name fb:en.mein_kampf "Mein Kampf") (name fb:m.066zf3v "Speech by the Fuehrer and Chancellor Adolf Hitler in the Reichstag on March 7th, 1936") (name fb:en.hitler_et_la_france "Hitler et la France") (name fb:en.hitlers_lagebesprechungen "Hitlers Lagebesprechungen") (name fb:m.06flch2 "Reichskanzler Adolf Hitler addressing the German Reichstag on May 17, 1933") (name fb:en.junge_deutschland_will_arbeit_und_frieden "Das junge Deutschland will Arbeit und Frieden") (name fb:m.06df93_ "Table talk, 1941-1944") (name fb:en.hitler_speeches_and_proclamations "Hitler: Speeches and Proclamations") (name fb:en.reden_und_proklamationen_1932_1945 "Reden und Proklamationen, 1932-1945"))) (type fb:book.book) what is the name of the book hitler wrote in jail? Speech by the Fuehrer and Chancellor Adolf Hitler in the Reichstag on March 7th, 1936 16.656 formula (and (fb:type.object.type fb:book.book) (fb:book.written_work.author fb:en.adolf_hitler))) (value (list (name fb:en.rede_an_die_welt "Rede an die Welt") (name fb:en.mein_kampf "Mein Kampf") (name fb:m.066zf3v "Speech by the Fuehrer and Chancellor Adolf Hitler in the Reichstag on March 7th, 1936") (name fb:en.hitler_et_la_france "Hitler et la France") (name fb:en.hitlers_lagebesprechungen "Hitlers Lagebesprechungen") (name fb:m.06flch2 "Reichskanzler Adolf Hitler addressing the German Reichstag on May 17, 1933") (name fb:en.junge_deutschland_will_arbeit_und_frieden "Das junge Deutschland will Arbeit und Frieden") (name fb:m.06df93_ "Table talk, 1941-1944") (name fb:en.hitler_speeches_and_proclamations "Hitler: Speeches and Proclamations") (name fb:en.reden_und_proklamationen_1932_1945 "Reden und Proklamationen, 1932-1945"))) (type fb:book.book) what is the name of the book hitler wrote in jail? Hitler et la France 16.656 formula (and (fb:type.object.type fb:book.book) (fb:book.written_work.author fb:en.adolf_hitler))) (value (list (name fb:en.rede_an_die_welt "Rede an die Welt") (name fb:en.mein_kampf "Mein Kampf") (name fb:m.066zf3v "Speech by the Fuehrer and Chancellor Adolf Hitler in the Reichstag on March 7th, 1936") (name fb:en.hitler_et_la_france "Hitler et la France") (name fb:en.hitlers_lagebesprechungen "Hitlers Lagebesprechungen") (name fb:m.06flch2 "Reichskanzler Adolf Hitler addressing the German Reichstag on May 17, 1933") (name fb:en.junge_deutschland_will_arbeit_und_frieden "Das junge Deutschland will Arbeit und Frieden") (name fb:m.06df93_ "Table talk, 1941-1944") (name fb:en.hitler_speeches_and_proclamations "Hitler: Speeches and Proclamations") (name fb:en.reden_und_proklamationen_1932_1945 "Reden und Proklamationen, 1932-1945"))) (type fb:book.book) what is the name of the book hitler wrote in jail? Hitlers Lagebesprechungen 16.656 formula (and (fb:type.object.type fb:book.book) (fb:book.written_work.author fb:en.adolf_hitler))) (value (list (name fb:en.rede_an_die_welt "Rede an die Welt") (name fb:en.mein_kampf "Mein Kampf") (name fb:m.066zf3v "Speech by the Fuehrer and Chancellor Adolf Hitler in the Reichstag on March 7th, 1936") (name fb:en.hitler_et_la_france "Hitler et la France") (name fb:en.hitlers_lagebesprechungen "Hitlers Lagebesprechungen") (name fb:m.06flch2 "Reichskanzler Adolf Hitler addressing the German Reichstag on May 17, 1933") (name fb:en.junge_deutschland_will_arbeit_und_frieden "Das junge Deutschland will Arbeit und Frieden") (name fb:m.06df93_ "Table talk, 1941-1944") (name fb:en.hitler_speeches_and_proclamations "Hitler: Speeches and Proclamations") (name fb:en.reden_und_proklamationen_1932_1945 "Reden und Proklamationen, 1932-1945"))) (type fb:book.book) what is the name of the book hitler wrote in jail? Reichskanzler Adolf Hitler addressing the German Reichstag on May 17, 1933 16.656 formula (and (fb:type.object.type fb:book.book) (fb:book.written_work.author fb:en.adolf_hitler))) (value (list (name fb:en.rede_an_die_welt "Rede an die Welt") (name fb:en.mein_kampf "Mein Kampf") (name fb:m.066zf3v "Speech by the Fuehrer and Chancellor Adolf Hitler in the Reichstag on March 7th, 1936") (name fb:en.hitler_et_la_france "Hitler et la France") (name fb:en.hitlers_lagebesprechungen "Hitlers Lagebesprechungen") (name fb:m.06flch2 "Reichskanzler Adolf Hitler addressing the German Reichstag on May 17, 1933") (name fb:en.junge_deutschland_will_arbeit_und_frieden "Das junge Deutschland will Arbeit und Frieden") (name fb:m.06df93_ "Table talk, 1941-1944") (name fb:en.hitler_speeches_and_proclamations "Hitler: Speeches and Proclamations") (name fb:en.reden_und_proklamationen_1932_1945 "Reden und Proklamationen, 1932-1945"))) (type fb:book.book) what is the name of the book hitler wrote in jail? Das junge Deutschland will Arbeit und Frieden 16.656 formula (and (fb:type.object.type fb:book.book) (fb:book.written_work.author fb:en.adolf_hitler))) (value (list (name fb:en.rede_an_die_welt "Rede an die Welt") (name fb:en.mein_kampf "Mein Kampf") (name fb:m.066zf3v "Speech by the Fuehrer and Chancellor Adolf Hitler in the Reichstag on March 7th, 1936") (name fb:en.hitler_et_la_france "Hitler et la France") (name fb:en.hitlers_lagebesprechungen "Hitlers Lagebesprechungen") (name fb:m.06flch2 "Reichskanzler Adolf Hitler addressing the German Reichstag on May 17, 1933") (name fb:en.junge_deutschland_will_arbeit_und_frieden "Das junge Deutschland will Arbeit und Frieden") (name fb:m.06df93_ "Table talk, 1941-1944") (name fb:en.hitler_speeches_and_proclamations "Hitler: Speeches and Proclamations") (name fb:en.reden_und_proklamationen_1932_1945 "Reden und Proklamationen, 1932-1945"))) (type fb:book.book) what is the name of the book hitler wrote in jail? Table talk, 1941-1944 16.656 formula (and (fb:type.object.type fb:book.book) (fb:book.written_work.author fb:en.adolf_hitler))) (value (list (name fb:en.rede_an_die_welt "Rede an die Welt") (name fb:en.mein_kampf "Mein Kampf") (name fb:m.066zf3v "Speech by the Fuehrer and Chancellor Adolf Hitler in the Reichstag on March 7th, 1936") (name fb:en.hitler_et_la_france "Hitler et la France") (name fb:en.hitlers_lagebesprechungen "Hitlers Lagebesprechungen") (name fb:m.06flch2 "Reichskanzler Adolf Hitler addressing the German Reichstag on May 17, 1933") (name fb:en.junge_deutschland_will_arbeit_und_frieden "Das junge Deutschland will Arbeit und Frieden") (name fb:m.06df93_ "Table talk, 1941-1944") (name fb:en.hitler_speeches_and_proclamations "Hitler: Speeches and Proclamations") (name fb:en.reden_und_proklamationen_1932_1945 "Reden und Proklamationen, 1932-1945"))) (type fb:book.book) what is the name of the book hitler wrote in jail? Hitler: Speeches and Proclamations 16.656 formula (and (fb:type.object.type fb:book.book) (fb:book.written_work.author fb:en.adolf_hitler))) (value (list (name fb:en.rede_an_die_welt "Rede an die Welt") (name fb:en.mein_kampf "Mein Kampf") (name fb:m.066zf3v "Speech by the Fuehrer and Chancellor Adolf Hitler in the Reichstag on March 7th, 1936") (name fb:en.hitler_et_la_france "Hitler et la France") (name fb:en.hitlers_lagebesprechungen "Hitlers Lagebesprechungen") (name fb:m.06flch2 "Reichskanzler Adolf Hitler addressing the German Reichstag on May 17, 1933") (name fb:en.junge_deutschland_will_arbeit_und_frieden "Das junge Deutschland will Arbeit und Frieden") (name fb:m.06df93_ "Table talk, 1941-1944") (name fb:en.hitler_speeches_and_proclamations "Hitler: Speeches and Proclamations") (name fb:en.reden_und_proklamationen_1932_1945 "Reden und Proklamationen, 1932-1945"))) (type fb:book.book) what is the name of the book hitler wrote in jail? Reden und Proklamationen, 1932-1945 16.656 formula (and (fb:type.object.type fb:book.book) (fb:book.written_work.author fb:en.adolf_hitler))) (value (list (name fb:en.rede_an_die_welt "Rede an die Welt") (name fb:en.mein_kampf "Mein Kampf") (name fb:m.066zf3v "Speech by the Fuehrer and Chancellor Adolf Hitler in the Reichstag on March 7th, 1936") (name fb:en.hitler_et_la_france "Hitler et la France") (name fb:en.hitlers_lagebesprechungen "Hitlers Lagebesprechungen") (name fb:m.06flch2 "Reichskanzler Adolf Hitler addressing the German Reichstag on May 17, 1933") (name fb:en.junge_deutschland_will_arbeit_und_frieden "Das junge Deutschland will Arbeit und Frieden") (name fb:m.06df93_ "Table talk, 1941-1944") (name fb:en.hitler_speeches_and_proclamations "Hitler: Speeches and Proclamations") (name fb:en.reden_und_proklamationen_1932_1945 "Reden und Proklamationen, 1932-1945"))) (type fb:book.book) where was marilyn monroe found dead? White Plains 6.258 formula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.marriage.location_of_ceremony (!fb:people.person.spouse_s (var x)))) fb:en.marliyn_monroe))) (value (list (name fb:en.white_plains "White Plains") (name fb:en.los_angeles "Los Angeles") (name fb:en.san_francisco_city_hall "San Francisco City Hall"))) (type fb:location.location) where was marilyn monroe found dead? Los Angeles 6.258 formula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.marriage.location_of_ceremony (!fb:people.person.spouse_s (var x)))) fb:en.marliyn_monroe))) (value (list (name fb:en.white_plains "White Plains") (name fb:en.los_angeles "Los Angeles") (name fb:en.san_francisco_city_hall "San Francisco City Hall"))) (type fb:location.location) where was marilyn monroe found dead? San Francisco City Hall 6.258 formula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.marriage.location_of_ceremony (!fb:people.person.spouse_s (var x)))) fb:en.marliyn_monroe))) (value (list (name fb:en.white_plains "White Plains") (name fb:en.los_angeles "Los Angeles") (name fb:en.san_francisco_city_hall "San Francisco City Hall"))) (type fb:location.location) what language is spoken in greek? Greek Language 15.309 formula (and (fb:type.object.type fb:language.human_language) (!fb:people.ethnicity.languages_spoken fb:en.greek_cypriots))) (value (list (name fb:en.greek_language "Greek Language") (name fb:en.cypriot_greek "Cypriot Greek") (name fb:en.dimotiki "Demotic Greek"))) (type fb:language.human_language) what language is spoken in greek? Cypriot Greek 15.309 formula (and (fb:type.object.type fb:language.human_language) (!fb:people.ethnicity.languages_spoken fb:en.greek_cypriots))) (value (list (name fb:en.greek_language "Greek Language") (name fb:en.cypriot_greek "Cypriot Greek") (name fb:en.dimotiki "Demotic Greek"))) (type fb:language.human_language) what language is spoken in greek? Demotic Greek 15.309 formula (and (fb:type.object.type fb:language.human_language) (!fb:people.ethnicity.languages_spoken fb:en.greek_cypriots))) (value (list (name fb:en.greek_language "Greek Language") (name fb:en.cypriot_greek "Cypriot Greek") (name fb:en.dimotiki "Demotic Greek"))) (type fb:language.human_language) what team did monta ellis get traded to? Milwaukee Bucks 20.671 formula ((lambda x (!fb:basketball.basketball_roster_position.team (!fb:basketball.basketball_player.team (var x)))) fb:en.monta_ellis)) (value (list (name fb:en.milwaukee_bucks "Milwaukee Bucks"))) (type fb:basketball.basketball_team) who plays stanley hudson? Leslie David Baker 5.224 formula ((lambda x (fb:tv.tv_actor.starring_roles (fb:tv.regular_tv_appearance.character (var x)))) fb:en.stanley_hudson)) (value (list (name fb:en.leslie_david_baker "Leslie David Baker"))) (type fb:tv.tv_actor) what record label is kelly clarkson signed with? RCA Records 13.441 formula (and (fb:type.object.type fb:music.record_label) (!fb:music.artist.label fb:en.kelly_clarkson))) (value (list (name fb:en.rca_records "RCA Records") (name fb:en.sony_bmg_music_entertainment "Sony BMG Music Entertainment") (name fb:en.sony_music_entertainment "Sony Music Entertainment"))) (type (union fb:music.record_label)) what record label is kelly clarkson signed with? Sony BMG Music Entertainment 13.441 formula (and (fb:type.object.type fb:music.record_label) (!fb:music.artist.label fb:en.kelly_clarkson))) (value (list (name fb:en.rca_records "RCA Records") (name fb:en.sony_bmg_music_entertainment "Sony BMG Music Entertainment") (name fb:en.sony_music_entertainment "Sony Music Entertainment"))) (type (union fb:music.record_label)) what record label is kelly clarkson signed with? Sony Music Entertainment 13.441 formula (and (fb:type.object.type fb:music.record_label) (!fb:music.artist.label fb:en.kelly_clarkson))) (value (list (name fb:en.rca_records "RCA Records") (name fb:en.sony_bmg_music_entertainment "Sony BMG Music Entertainment") (name fb:en.sony_music_entertainment "Sony Music Entertainment"))) (type (union fb:music.record_label)) what currency should you take to vietnam? Vietnamese dong 21.694 formula (!fb:location.country.currency_used fb:en.vietnam)) (value (list (name fb:en.vietnamese_ng "Vietnamese dong"))) (type fb:finance.currency) who did roger federer married? Mirka Federer 11.206 formula ((lambda x (!fb:people.marriage.spouse (!fb:people.person.spouse_s (var x)))) fb:en.roger_federer)) (value (list (name fb:en.miroslava_vavrinec "Mirka Federer"))) (type fb:people.person) what kind of money do i need in costa rica? Internet users as percentage of population, World Development Indicators, World Bank 13.016 formula ((lambda x (!fb:measurement_unit.dated_percentage.source (!fb:location.statistical_region.internet_users_percent_population (var x)))) fb:en.costa_rica)) (value (list (name fb:g.1245ywqx8 "Internet users as percentage of population, World Development Indicators, World Bank") (name fb:m.0ndnhc0 "Internet users as percentage of population, World Development Indicators and Global Development Finance, World Bank"))) (type fb:dataworld.information_source) what kind of money do i need in costa rica? Internet users as percentage of population, World Development Indicators and Global Development Finance, World Bank 13.016 formula ((lambda x (!fb:measurement_unit.dated_percentage.source (!fb:location.statistical_region.internet_users_percent_population (var x)))) fb:en.costa_rica)) (value (list (name fb:g.1245ywqx8 "Internet users as percentage of population, World Development Indicators, World Bank") (name fb:m.0ndnhc0 "Internet users as percentage of population, World Development Indicators and Global Development Finance, World Bank"))) (type fb:dataworld.information_source) what caused the embargo against cuba? Fidel Castro 8.934 formula ((lambda x (fb:military.military_commander.military_commands (fb:military.military_command.military_combatant (var x)))) fb:en.cuba)) (value (list (name fb:en.fidel_castro "Fidel Castro") (name fb:en.che_guevara "Che Guevara") (name fb:en.raul_castro "Raúl Castro"))) (type fb:military.military_commander) what caused the embargo against cuba? Che Guevara 8.934 formula ((lambda x (fb:military.military_commander.military_commands (fb:military.military_command.military_combatant (var x)))) fb:en.cuba)) (value (list (name fb:en.fidel_castro "Fidel Castro") (name fb:en.che_guevara "Che Guevara") (name fb:en.raul_castro "Raúl Castro"))) (type fb:military.military_commander) what caused the embargo against cuba? Raúl Castro 8.934 formula ((lambda x (fb:military.military_commander.military_commands (fb:military.military_command.military_combatant (var x)))) fb:en.cuba)) (value (list (name fb:en.fidel_castro "Fidel Castro") (name fb:en.che_guevara "Che Guevara") (name fb:en.raul_castro "Raúl Castro"))) (type fb:military.military_commander) what is the name of the capital of belgium? City of Brussels 22.109 formula (!fb:location.country.capital fb:en.belgium)) (value (list (name fb:en.city_of_brussels "City of Brussels"))) (type fb:location.citytown) what kind of government does japan have now? Unitary state 13.19 formula (!fb:location.country.form_of_government fb:en.japan)) (value (list (name fb:en.unitary_state "Unitary state") (name fb:en.parliamentary_system "Parliamentary system") (name fb:en.constitutional_monarchy "Constitutional monarchy"))) (type fb:government.form_of_government) what kind of government does japan have now? Parliamentary system 13.19 formula (!fb:location.country.form_of_government fb:en.japan)) (value (list (name fb:en.unitary_state "Unitary state") (name fb:en.parliamentary_system "Parliamentary system") (name fb:en.constitutional_monarchy "Constitutional monarchy"))) (type fb:government.form_of_government) what kind of government does japan have now? Constitutional monarchy 13.19 formula (!fb:location.country.form_of_government fb:en.japan)) (value (list (name fb:en.unitary_state "Unitary state") (name fb:en.parliamentary_system "Parliamentary system") (name fb:en.constitutional_monarchy "Constitutional monarchy"))) (type fb:government.form_of_government) what pieces of music did claude debussy compose? Classical music 12.022 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.claude_debussy))) (value (list (name fb:en.european_classical_music "Classical music") (name fb:en.art_song "Art song") (name fb:en.20th_century_classical_music "20th-century classical music") (name fb:m.021dvj Ballet) (name fb:en.incidental_music "Incidental music") (name fb:en.french_opera "French opera"))) (type (union fb:music.genre)) what pieces of music did claude debussy compose? Art song 12.022 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.claude_debussy))) (value (list (name fb:en.european_classical_music "Classical music") (name fb:en.art_song "Art song") (name fb:en.20th_century_classical_music "20th-century classical music") (name fb:m.021dvj Ballet) (name fb:en.incidental_music "Incidental music") (name fb:en.french_opera "French opera"))) (type (union fb:music.genre)) what pieces of music did claude debussy compose? 20th-century classical music 12.022 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.claude_debussy))) (value (list (name fb:en.european_classical_music "Classical music") (name fb:en.art_song "Art song") (name fb:en.20th_century_classical_music "20th-century classical music") (name fb:m.021dvj Ballet) (name fb:en.incidental_music "Incidental music") (name fb:en.french_opera "French opera"))) (type (union fb:music.genre)) what pieces of music did claude debussy compose? Incidental music 12.022 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.claude_debussy))) (value (list (name fb:en.european_classical_music "Classical music") (name fb:en.art_song "Art song") (name fb:en.20th_century_classical_music "20th-century classical music") (name fb:m.021dvj Ballet) (name fb:en.incidental_music "Incidental music") (name fb:en.french_opera "French opera"))) (type (union fb:music.genre)) what pieces of music did claude debussy compose? French opera 12.022 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.claude_debussy))) (value (list (name fb:en.european_classical_music "Classical music") (name fb:en.art_song "Art song") (name fb:en.20th_century_classical_music "20th-century classical music") (name fb:m.021dvj Ballet) (name fb:en.incidental_music "Incidental music") (name fb:en.french_opera "French opera"))) (type (union fb:music.genre)) who was selena gomez in barney and friends? Jeremy Sumpter 9.062 formula ((lambda x (!fb:celebrities.friendship.friend (!fb:celebrities.celebrity.celebrity_friends (var x)))) fb:en.selena_gomez)) (value (list (name fb:en.jeremy_sumpter "Jeremy Sumpter") (name fb:en.samantha_droke "Samantha Droke") (name fb:en.vanessa_anne_hudgens "Vanessa Hudgens") (name fb:en.sara_paxton "Sara Paxton") (name fb:en.david_henrie "David Henrie") (name fb:en.justin_bieber "Justin Bieber") (name fb:m.0b3x4c5 "Dylan Sprouse") (name fb:en.taylor_swift "Taylor Swift") (name fb:m.0b3x4c3 "Cole Sprouse") (name fb:en.demi_lovato "Demi Lovato"))) (type fb:celebrities.celebrity) who was selena gomez in barney and friends? Samantha Droke 9.062 formula ((lambda x (!fb:celebrities.friendship.friend (!fb:celebrities.celebrity.celebrity_friends (var x)))) fb:en.selena_gomez)) (value (list (name fb:en.jeremy_sumpter "Jeremy Sumpter") (name fb:en.samantha_droke "Samantha Droke") (name fb:en.vanessa_anne_hudgens "Vanessa Hudgens") (name fb:en.sara_paxton "Sara Paxton") (name fb:en.david_henrie "David Henrie") (name fb:en.justin_bieber "Justin Bieber") (name fb:m.0b3x4c5 "Dylan Sprouse") (name fb:en.taylor_swift "Taylor Swift") (name fb:m.0b3x4c3 "Cole Sprouse") (name fb:en.demi_lovato "Demi Lovato"))) (type fb:celebrities.celebrity) who was selena gomez in barney and friends? Vanessa Hudgens 9.062 formula ((lambda x (!fb:celebrities.friendship.friend (!fb:celebrities.celebrity.celebrity_friends (var x)))) fb:en.selena_gomez)) (value (list (name fb:en.jeremy_sumpter "Jeremy Sumpter") (name fb:en.samantha_droke "Samantha Droke") (name fb:en.vanessa_anne_hudgens "Vanessa Hudgens") (name fb:en.sara_paxton "Sara Paxton") (name fb:en.david_henrie "David Henrie") (name fb:en.justin_bieber "Justin Bieber") (name fb:m.0b3x4c5 "Dylan Sprouse") (name fb:en.taylor_swift "Taylor Swift") (name fb:m.0b3x4c3 "Cole Sprouse") (name fb:en.demi_lovato "Demi Lovato"))) (type fb:celebrities.celebrity) who was selena gomez in barney and friends? Sara Paxton 9.062 formula ((lambda x (!fb:celebrities.friendship.friend (!fb:celebrities.celebrity.celebrity_friends (var x)))) fb:en.selena_gomez)) (value (list (name fb:en.jeremy_sumpter "Jeremy Sumpter") (name fb:en.samantha_droke "Samantha Droke") (name fb:en.vanessa_anne_hudgens "Vanessa Hudgens") (name fb:en.sara_paxton "Sara Paxton") (name fb:en.david_henrie "David Henrie") (name fb:en.justin_bieber "Justin Bieber") (name fb:m.0b3x4c5 "Dylan Sprouse") (name fb:en.taylor_swift "Taylor Swift") (name fb:m.0b3x4c3 "Cole Sprouse") (name fb:en.demi_lovato "Demi Lovato"))) (type fb:celebrities.celebrity) who was selena gomez in barney and friends? David Henrie 9.062 formula ((lambda x (!fb:celebrities.friendship.friend (!fb:celebrities.celebrity.celebrity_friends (var x)))) fb:en.selena_gomez)) (value (list (name fb:en.jeremy_sumpter "Jeremy Sumpter") (name fb:en.samantha_droke "Samantha Droke") (name fb:en.vanessa_anne_hudgens "Vanessa Hudgens") (name fb:en.sara_paxton "Sara Paxton") (name fb:en.david_henrie "David Henrie") (name fb:en.justin_bieber "Justin Bieber") (name fb:m.0b3x4c5 "Dylan Sprouse") (name fb:en.taylor_swift "Taylor Swift") (name fb:m.0b3x4c3 "Cole Sprouse") (name fb:en.demi_lovato "Demi Lovato"))) (type fb:celebrities.celebrity) who was selena gomez in barney and friends? Justin Bieber 9.062 formula ((lambda x (!fb:celebrities.friendship.friend (!fb:celebrities.celebrity.celebrity_friends (var x)))) fb:en.selena_gomez)) (value (list (name fb:en.jeremy_sumpter "Jeremy Sumpter") (name fb:en.samantha_droke "Samantha Droke") (name fb:en.vanessa_anne_hudgens "Vanessa Hudgens") (name fb:en.sara_paxton "Sara Paxton") (name fb:en.david_henrie "David Henrie") (name fb:en.justin_bieber "Justin Bieber") (name fb:m.0b3x4c5 "Dylan Sprouse") (name fb:en.taylor_swift "Taylor Swift") (name fb:m.0b3x4c3 "Cole Sprouse") (name fb:en.demi_lovato "Demi Lovato"))) (type fb:celebrities.celebrity) who was selena gomez in barney and friends? Dylan Sprouse 9.062 formula ((lambda x (!fb:celebrities.friendship.friend (!fb:celebrities.celebrity.celebrity_friends (var x)))) fb:en.selena_gomez)) (value (list (name fb:en.jeremy_sumpter "Jeremy Sumpter") (name fb:en.samantha_droke "Samantha Droke") (name fb:en.vanessa_anne_hudgens "Vanessa Hudgens") (name fb:en.sara_paxton "Sara Paxton") (name fb:en.david_henrie "David Henrie") (name fb:en.justin_bieber "Justin Bieber") (name fb:m.0b3x4c5 "Dylan Sprouse") (name fb:en.taylor_swift "Taylor Swift") (name fb:m.0b3x4c3 "Cole Sprouse") (name fb:en.demi_lovato "Demi Lovato"))) (type fb:celebrities.celebrity) who was selena gomez in barney and friends? Taylor Swift 9.062 formula ((lambda x (!fb:celebrities.friendship.friend (!fb:celebrities.celebrity.celebrity_friends (var x)))) fb:en.selena_gomez)) (value (list (name fb:en.jeremy_sumpter "Jeremy Sumpter") (name fb:en.samantha_droke "Samantha Droke") (name fb:en.vanessa_anne_hudgens "Vanessa Hudgens") (name fb:en.sara_paxton "Sara Paxton") (name fb:en.david_henrie "David Henrie") (name fb:en.justin_bieber "Justin Bieber") (name fb:m.0b3x4c5 "Dylan Sprouse") (name fb:en.taylor_swift "Taylor Swift") (name fb:m.0b3x4c3 "Cole Sprouse") (name fb:en.demi_lovato "Demi Lovato"))) (type fb:celebrities.celebrity) who was selena gomez in barney and friends? Cole Sprouse 9.062 formula ((lambda x (!fb:celebrities.friendship.friend (!fb:celebrities.celebrity.celebrity_friends (var x)))) fb:en.selena_gomez)) (value (list (name fb:en.jeremy_sumpter "Jeremy Sumpter") (name fb:en.samantha_droke "Samantha Droke") (name fb:en.vanessa_anne_hudgens "Vanessa Hudgens") (name fb:en.sara_paxton "Sara Paxton") (name fb:en.david_henrie "David Henrie") (name fb:en.justin_bieber "Justin Bieber") (name fb:m.0b3x4c5 "Dylan Sprouse") (name fb:en.taylor_swift "Taylor Swift") (name fb:m.0b3x4c3 "Cole Sprouse") (name fb:en.demi_lovato "Demi Lovato"))) (type fb:celebrities.celebrity) who was selena gomez in barney and friends? Demi Lovato 9.062 formula ((lambda x (!fb:celebrities.friendship.friend (!fb:celebrities.celebrity.celebrity_friends (var x)))) fb:en.selena_gomez)) (value (list (name fb:en.jeremy_sumpter "Jeremy Sumpter") (name fb:en.samantha_droke "Samantha Droke") (name fb:en.vanessa_anne_hudgens "Vanessa Hudgens") (name fb:en.sara_paxton "Sara Paxton") (name fb:en.david_henrie "David Henrie") (name fb:en.justin_bieber "Justin Bieber") (name fb:m.0b3x4c5 "Dylan Sprouse") (name fb:en.taylor_swift "Taylor Swift") (name fb:m.0b3x4c3 "Cole Sprouse") (name fb:en.demi_lovato "Demi Lovato"))) (type fb:celebrities.celebrity) who plays caesar flickerman in the hunger games? Stanley Tucci 9.396 formula (fb:film.actor.film (and (fb:film.performance.character fb:m.0gwc3bn) (fb:film.performance.film fb:m.0gkz15s)))) (value (list (name fb:en.stanley_tucci "Stanley Tucci"))) (type fb:film.actor) where did the gettysburg address? 300 N Washington Street Box 2458 5.407 formula ((lambda x (!fb:location.mailing_address.street_address (!fb:organization.organization.headquarters (var x)))) fb:en.gettysburg_college)) (value (list (string "300 N Washington Street Box 2458") (string "300 North Washington Street"))) (type fb:type.text) where did the gettysburg address? 300 North Washington Street 5.407 formula ((lambda x (!fb:location.mailing_address.street_address (!fb:organization.organization.headquarters (var x)))) fb:en.gettysburg_college)) (value (list (string "300 N Washington Street Box 2458") (string "300 North Washington Street"))) (type fb:type.text) who was tupac signed to? Interscope Records 9.567 formula (fb:music.record_label.artist fb:en.tupac_shakur)) (value (list (name fb:en.interscope_records "Interscope Records") (name fb:en.death_row_records "Death Row Records") (name fb:en.amaru_entertainment "Amaru Entertainment"))) (type fb:music.record_label) who was tupac signed to? Death Row Records 9.567 formula (fb:music.record_label.artist fb:en.tupac_shakur)) (value (list (name fb:en.interscope_records "Interscope Records") (name fb:en.death_row_records "Death Row Records") (name fb:en.amaru_entertainment "Amaru Entertainment"))) (type fb:music.record_label) who was tupac signed to? Amaru Entertainment 9.567 formula (fb:music.record_label.artist fb:en.tupac_shakur)) (value (list (name fb:en.interscope_records "Interscope Records") (name fb:en.death_row_records "Death Row Records") (name fb:en.amaru_entertainment "Amaru Entertainment"))) (type fb:music.record_label) what kind of tennis racquet does serena williams use? Women's singles 8.826 formula ((lambda x (!fb:tennis.tennis_tournament_championship.event_type (!fb:tennis.tennis_tournament_champion.tennis_titles (var x)))) fb:en.serena_williams)) (value (list (name fb:en.womens_singles "Women's singles") (name fb:en.womens_doubles "Women's doubles") (name fb:m.04hdtln "Mixed doubles"))) (type fb:tennis.tennis_match_type) what kind of tennis racquet does serena williams use? Women's doubles 8.826 formula ((lambda x (!fb:tennis.tennis_tournament_championship.event_type (!fb:tennis.tennis_tournament_champion.tennis_titles (var x)))) fb:en.serena_williams)) (value (list (name fb:en.womens_singles "Women's singles") (name fb:en.womens_doubles "Women's doubles") (name fb:m.04hdtln "Mixed doubles"))) (type fb:tennis.tennis_match_type) what kind of tennis racquet does serena williams use? Mixed doubles 8.826 formula ((lambda x (!fb:tennis.tennis_tournament_championship.event_type (!fb:tennis.tennis_tournament_champion.tennis_titles (var x)))) fb:en.serena_williams)) (value (list (name fb:en.womens_singles "Women's singles") (name fb:en.womens_doubles "Women's doubles") (name fb:m.04hdtln "Mixed doubles"))) (type fb:tennis.tennis_match_type) what language does colombia? Spanish Language 13.55 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.colombia))) (value (list (name fb:en.spanish "Spanish Language"))) (type (union fb:language.human_language)) who was president in 1988 in the united states? Thomas Jefferson 15.152 formula ((lambda x (!fb:business.employment_tenure.person (!fb:user.exooo.default_domain.head_of_state.president (var x)))) fb:en.united_states_of_america)) (value (list (name fb:en.thomas_jefferson "Thomas Jefferson") (name fb:en.john_adams "John Adams"))) (type fb:people.person) who was president in 1988 in the united states? John Adams 15.152 formula ((lambda x (!fb:business.employment_tenure.person (!fb:user.exooo.default_domain.head_of_state.president (var x)))) fb:en.united_states_of_america)) (value (list (name fb:en.thomas_jefferson "Thomas Jefferson") (name fb:en.john_adams "John Adams"))) (type fb:people.person) who owns google 2012? Google Trends 10.796 formula (fb:internet.website.owner_new (and (fb:internet.website_ownership.owner fb:en.google) (fb:internet.website_ownership.from (date 2012 -1 -1))))) (value (list (name fb:en.meebo Meebo) (name fb:en.google_trends "Google Trends") (name fb:en.virustotal_com VirusTotal) (name fb:en.froogle "Google Shopping"))) (type fb:internet.website) who owns google 2012? Google Shopping 10.796 formula (fb:internet.website.owner_new (and (fb:internet.website_ownership.owner fb:en.google) (fb:internet.website_ownership.from (date 2012 -1 -1))))) (value (list (name fb:en.meebo Meebo) (name fb:en.google_trends "Google Trends") (name fb:en.virustotal_com VirusTotal) (name fb:en.froogle "Google Shopping"))) (type fb:internet.website) what drink did john pemberton create? The Coca-Cola Company 8.001 formula (fb:organization.organization.founders fb:en.john_pemberton)) (value (list (name fb:en.the_coca-cola_company "The Coca-Cola Company"))) (type fb:organization.organization) what position did stanley matthews play? Associate Justice of the Supreme Court of the United States 10.218 formula ((lambda x (!fb:people.appointment.appointed_role (!fb:people.appointee.position (var x)))) fb:en.thomas_stanley_matthews)) (value (list (name fb:en.associate_justice_of_the_supreme_court_of_the_united_states "Associate Justice of the Supreme Court of the United States"))) (type fb:people.appointed_role) what type of government does brazil have 2011? Federal republic 13.043 formula (fb:government.form_of_government.countries fb:en.brazil)) (value (list (name fb:en.federal_republic "Federal republic") (name fb:en.presidential_system "Presidential system") (name fb:en.constitutional_republic "Constitutional republic"))) (type fb:government.form_of_government) what type of government does brazil have 2011? Presidential system 13.043 formula (fb:government.form_of_government.countries fb:en.brazil)) (value (list (name fb:en.federal_republic "Federal republic") (name fb:en.presidential_system "Presidential system") (name fb:en.constitutional_republic "Constitutional republic"))) (type fb:government.form_of_government) what type of government does brazil have 2011? Constitutional republic 13.043 formula (fb:government.form_of_government.countries fb:en.brazil)) (value (list (name fb:en.federal_republic "Federal republic") (name fb:en.presidential_system "Presidential system") (name fb:en.constitutional_republic "Constitutional republic"))) (type fb:government.form_of_government) who makes the voice of stewie griffin? Seth MacFarlane 7.549 formula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_character.appeared_in_tv_program (var x)))) fb:en.stewie_griffin)) (value (list (name fb:en.seth_macfarlane "Seth MacFarlane"))) (type fb:tv.tv_actor) who is angelina jolie mom and dad? WSJ Topic Index 11.629 formula ((lambda x (fb:base.articleindices.resource_topic_index.index_items (fb:base.articleindices.index_item.topic (var x)))) fb:en.angelina_jolie)) (value (list (name fb:en.wsj_topic_index "WSJ Topic Index") (name fb:en.people_celebrities "People Celebrities"))) (type fb:base.articleindices.resource_topic_index) who is angelina jolie mom and dad? People Celebrities 11.629 formula ((lambda x (fb:base.articleindices.resource_topic_index.index_items (fb:base.articleindices.index_item.topic (var x)))) fb:en.angelina_jolie)) (value (list (name fb:en.wsj_topic_index "WSJ Topic Index") (name fb:en.people_celebrities "People Celebrities"))) (type fb:base.articleindices.resource_topic_index) who is the governor of indiana 2009? Greg Zoeller 16.966 formula (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.indiana) (fb:government.government_position_held.from (date 2009 -1 -1))))) (value (list (name fb:en.greg_zoeller "Greg Zoeller"))) (type fb:government.politician) who brad pitt has dated? Jane Etta Pitt 9.101 formula (and (fb:type.object.type fb:people.person) (!fb:people.person.parents fb:en.brad_pitt))) (value (list (name fb:en.jane_etta "Jane Etta Pitt") (name fb:en.william_alvin_pitt "William Alvin Pitt"))) (type fb:people.person) who brad pitt has dated? William Alvin Pitt 9.101 formula (and (fb:type.object.type fb:people.person) (!fb:people.person.parents fb:en.brad_pitt))) (value (list (name fb:en.jane_etta "Jane Etta Pitt") (name fb:en.william_alvin_pitt "William Alvin Pitt"))) (type fb:people.person) what party does barack obama belong to? Democratic Party 16.674 formula (and (fb:type.object.type fb:government.political_party) ((lambda x (fb:government.political_party.politicians_in_this_party (fb:government.political_party_tenure.politician (var x)))) fb:en.barack_obama))) (value (list (name fb:en.democrat_party "Democratic Party"))) (type (union fb:government.political_party)) who has stephen ireland played for? Manchester City F.C. 13.441 formula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.stephen_ireland)) (value (list (name fb:en.manchester_city_fc "Manchester City F.C.") (name fb:en.aston_villa_fc "Aston Villa F.C.") (name fb:en.newcastle_united_fc "Newcastle United F.C."))) (type fb:soccer.football_team) who has stephen ireland played for? Aston Villa F.C. 13.441 formula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.stephen_ireland)) (value (list (name fb:en.manchester_city_fc "Manchester City F.C.") (name fb:en.aston_villa_fc "Aston Villa F.C.") (name fb:en.newcastle_united_fc "Newcastle United F.C."))) (type fb:soccer.football_team) who has stephen ireland played for? Newcastle United F.C. 13.441 formula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.stephen_ireland)) (value (list (name fb:en.manchester_city_fc "Manchester City F.C.") (name fb:en.aston_villa_fc "Aston Villa F.C.") (name fb:en.newcastle_united_fc "Newcastle United F.C."))) (type fb:soccer.football_team) what do people in france like to do for fun? Government of France 16.75 formula (fb:government.government.government_for fb:en.france)) (value (list (name fb:en.government_of_france "Government of France"))) (type fb:government.government) where did john mayer go to college? Berklee College of Music 13.084 formula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.john_mayer)))) (value (list (name fb:en.berklee_college_of_music "Berklee College of Music"))) (type fb:education.university) what celebrities has brody jenner dated? Lauren Katherine Conrad 13.944 formula (and (fb:type.object.type fb:celebrities.celebrity) ((lambda x (fb:celebrities.celebrity.sexual_relationships (fb:celebrities.romantic_relationship.celebrity (var x)))) fb:en.brody_jenner))) (value (list (name fb:en.lauren_conrad "Lauren Katherine Conrad") (name fb:en.nicole_richie "Nicole Richie") (name fb:en.jayde_nicole "Jayde Nicole"))) (type (union fb:celebrities.celebrity)) what celebrities has brody jenner dated? Nicole Richie 13.944 formula (and (fb:type.object.type fb:celebrities.celebrity) ((lambda x (fb:celebrities.celebrity.sexual_relationships (fb:celebrities.romantic_relationship.celebrity (var x)))) fb:en.brody_jenner))) (value (list (name fb:en.lauren_conrad "Lauren Katherine Conrad") (name fb:en.nicole_richie "Nicole Richie") (name fb:en.jayde_nicole "Jayde Nicole"))) (type (union fb:celebrities.celebrity)) what celebrities has brody jenner dated? Jayde Nicole 13.944 formula (and (fb:type.object.type fb:celebrities.celebrity) ((lambda x (fb:celebrities.celebrity.sexual_relationships (fb:celebrities.romantic_relationship.celebrity (var x)))) fb:en.brody_jenner))) (value (list (name fb:en.lauren_conrad "Lauren Katherine Conrad") (name fb:en.nicole_richie "Nicole Richie") (name fb:en.jayde_nicole "Jayde Nicole"))) (type (union fb:celebrities.celebrity)) who are china's neighbors? Sierra Leone 6.623 formula ((lambda x (!fb:location.imports_and_exports.exported_to (!fb:location.statistical_region.places_exported_to (var x)))) fb:en.china)) (value (list (name fb:en.dubai Dubai) (name fb:en.laos Laos) (name fb:en.djibouti Djibouti) (name fb:en.madagascar Madagascar) (name fb:en.angola Angola) (name fb:en.tuvalu Tuvalu) (name fb:en.algeria Algeria) (name fb:en.tanzania Tanzania) (name fb:en.sierra_leone "Sierra Leone") (name fb:en.uzbekistan_russia Uzbekistan))) (type fb:location.statistical_region) who owns volkswagen car company? Chicago Cubs 2.716 formula (fb:sports.professional_sports_team.owner_s fb:en.tribune_company)) (value (list (name fb:en.chicago_cubs "Chicago Cubs"))) (type fb:sports.professional_sports_team) what did steve mcnair died from? Ballistic trauma 18.842 formula (fb:people.cause_of_death.people fb:en.steve_mcnair)) (value (list (name fb:en.gunshot_injury "Ballistic trauma"))) (type fb:people.cause_of_death) who is the newly elected governor of california? Jean Fuller 23.138 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.california)) (value (list (name fb:en.jean_fuller "Jean Fuller") (name fb:en.mervyn_m_dymally "Mervyn M. Dymally") (name fb:en.bob_margett "Bob Margett") (name fb:en.darrell_steinberg "Darrell Steinberg") (name fb:en.mark_leno "Mark Leno") (name fb:en.james_rolph "James Rolph") (name fb:en.alex_padilla "Alex Padilla") (name fb:en.pete_wilson "Pete Wilson") (name fb:en.john_bryson "John E. Bryson") (name fb:en.frederick_n_howser "Frederick N. Howser"))) (type fb:government.politician) who is the newly elected governor of california? Mervyn M. Dymally 23.138 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.california)) (value (list (name fb:en.jean_fuller "Jean Fuller") (name fb:en.mervyn_m_dymally "Mervyn M. Dymally") (name fb:en.bob_margett "Bob Margett") (name fb:en.darrell_steinberg "Darrell Steinberg") (name fb:en.mark_leno "Mark Leno") (name fb:en.james_rolph "James Rolph") (name fb:en.alex_padilla "Alex Padilla") (name fb:en.pete_wilson "Pete Wilson") (name fb:en.john_bryson "John E. Bryson") (name fb:en.frederick_n_howser "Frederick N. Howser"))) (type fb:government.politician) who is the newly elected governor of california? Bob Margett 23.138 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.california)) (value (list (name fb:en.jean_fuller "Jean Fuller") (name fb:en.mervyn_m_dymally "Mervyn M. Dymally") (name fb:en.bob_margett "Bob Margett") (name fb:en.darrell_steinberg "Darrell Steinberg") (name fb:en.mark_leno "Mark Leno") (name fb:en.james_rolph "James Rolph") (name fb:en.alex_padilla "Alex Padilla") (name fb:en.pete_wilson "Pete Wilson") (name fb:en.john_bryson "John E. Bryson") (name fb:en.frederick_n_howser "Frederick N. Howser"))) (type fb:government.politician) who is the newly elected governor of california? Darrell Steinberg 23.138 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.california)) (value (list (name fb:en.jean_fuller "Jean Fuller") (name fb:en.mervyn_m_dymally "Mervyn M. Dymally") (name fb:en.bob_margett "Bob Margett") (name fb:en.darrell_steinberg "Darrell Steinberg") (name fb:en.mark_leno "Mark Leno") (name fb:en.james_rolph "James Rolph") (name fb:en.alex_padilla "Alex Padilla") (name fb:en.pete_wilson "Pete Wilson") (name fb:en.john_bryson "John E. Bryson") (name fb:en.frederick_n_howser "Frederick N. Howser"))) (type fb:government.politician) who is the newly elected governor of california? Mark Leno 23.138 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.california)) (value (list (name fb:en.jean_fuller "Jean Fuller") (name fb:en.mervyn_m_dymally "Mervyn M. Dymally") (name fb:en.bob_margett "Bob Margett") (name fb:en.darrell_steinberg "Darrell Steinberg") (name fb:en.mark_leno "Mark Leno") (name fb:en.james_rolph "James Rolph") (name fb:en.alex_padilla "Alex Padilla") (name fb:en.pete_wilson "Pete Wilson") (name fb:en.john_bryson "John E. Bryson") (name fb:en.frederick_n_howser "Frederick N. Howser"))) (type fb:government.politician) who is the newly elected governor of california? James Rolph 23.138 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.california)) (value (list (name fb:en.jean_fuller "Jean Fuller") (name fb:en.mervyn_m_dymally "Mervyn M. Dymally") (name fb:en.bob_margett "Bob Margett") (name fb:en.darrell_steinberg "Darrell Steinberg") (name fb:en.mark_leno "Mark Leno") (name fb:en.james_rolph "James Rolph") (name fb:en.alex_padilla "Alex Padilla") (name fb:en.pete_wilson "Pete Wilson") (name fb:en.john_bryson "John E. Bryson") (name fb:en.frederick_n_howser "Frederick N. Howser"))) (type fb:government.politician) who is the newly elected governor of california? Alex Padilla 23.138 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.california)) (value (list (name fb:en.jean_fuller "Jean Fuller") (name fb:en.mervyn_m_dymally "Mervyn M. Dymally") (name fb:en.bob_margett "Bob Margett") (name fb:en.darrell_steinberg "Darrell Steinberg") (name fb:en.mark_leno "Mark Leno") (name fb:en.james_rolph "James Rolph") (name fb:en.alex_padilla "Alex Padilla") (name fb:en.pete_wilson "Pete Wilson") (name fb:en.john_bryson "John E. Bryson") (name fb:en.frederick_n_howser "Frederick N. Howser"))) (type fb:government.politician) who is the newly elected governor of california? Pete Wilson 23.138 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.california)) (value (list (name fb:en.jean_fuller "Jean Fuller") (name fb:en.mervyn_m_dymally "Mervyn M. Dymally") (name fb:en.bob_margett "Bob Margett") (name fb:en.darrell_steinberg "Darrell Steinberg") (name fb:en.mark_leno "Mark Leno") (name fb:en.james_rolph "James Rolph") (name fb:en.alex_padilla "Alex Padilla") (name fb:en.pete_wilson "Pete Wilson") (name fb:en.john_bryson "John E. Bryson") (name fb:en.frederick_n_howser "Frederick N. Howser"))) (type fb:government.politician) who is the newly elected governor of california? John E. Bryson 23.138 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.california)) (value (list (name fb:en.jean_fuller "Jean Fuller") (name fb:en.mervyn_m_dymally "Mervyn M. Dymally") (name fb:en.bob_margett "Bob Margett") (name fb:en.darrell_steinberg "Darrell Steinberg") (name fb:en.mark_leno "Mark Leno") (name fb:en.james_rolph "James Rolph") (name fb:en.alex_padilla "Alex Padilla") (name fb:en.pete_wilson "Pete Wilson") (name fb:en.john_bryson "John E. Bryson") (name fb:en.frederick_n_howser "Frederick N. Howser"))) (type fb:government.politician) who is the newly elected governor of california? Frederick N. Howser 23.138 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.california)) (value (list (name fb:en.jean_fuller "Jean Fuller") (name fb:en.mervyn_m_dymally "Mervyn M. Dymally") (name fb:en.bob_margett "Bob Margett") (name fb:en.darrell_steinberg "Darrell Steinberg") (name fb:en.mark_leno "Mark Leno") (name fb:en.james_rolph "James Rolph") (name fb:en.alex_padilla "Alex Padilla") (name fb:en.pete_wilson "Pete Wilson") (name fb:en.john_bryson "John E. Bryson") (name fb:en.frederick_n_howser "Frederick N. Howser"))) (type fb:government.politician) who plays roxanne in ghost rider? Rita Joanne Simons 4.234 formula ((lambda x (fb:tv.tv_actor.starring_roles (fb:tv.regular_tv_appearance.character (var x)))) fb:en.roxy_mitchell)) (value (list (name fb:en.rita_simons "Rita Joanne Simons"))) (type fb:tv.tv_actor) what kind of currency does the dominican republic have? Dominican peso 14.098 formula (!fb:location.country.currency_used fb:en.dominican_republic)) (value (list (name fb:en.dominican_peso "Dominican peso"))) (type fb:finance.currency) what sport is popular in italy? Water polo 9.119 formula ((lambda x (!fb:olympics.olympic_athlete_affiliation.sport (!fb:olympics.olympic_participating_country.athletes (var x)))) fb:en.italy)) (value (list (name fb:en.water_polo "Water polo") (name fb:en.luge Luge) (name fb:en.sport_rowing Rowing) (name fb:en.table_tennis "Table tennis") (name fb:en.shooting_sports "Shooting sport") (name fb:en.bobsleigh Bobsleigh) (name fb:en.alpine_skiing "Alpine skiing") (name fb:en.swimming Swimming) (name fb:en.volleyball Volleyball) (name fb:en.archery Archery))) (type fb:olympics.olympic_sport) what sport is popular in italy? Table tennis 9.119 formula ((lambda x (!fb:olympics.olympic_athlete_affiliation.sport (!fb:olympics.olympic_participating_country.athletes (var x)))) fb:en.italy)) (value (list (name fb:en.water_polo "Water polo") (name fb:en.luge Luge) (name fb:en.sport_rowing Rowing) (name fb:en.table_tennis "Table tennis") (name fb:en.shooting_sports "Shooting sport") (name fb:en.bobsleigh Bobsleigh) (name fb:en.alpine_skiing "Alpine skiing") (name fb:en.swimming Swimming) (name fb:en.volleyball Volleyball) (name fb:en.archery Archery))) (type fb:olympics.olympic_sport) what sport is popular in italy? Shooting sport 9.119 formula ((lambda x (!fb:olympics.olympic_athlete_affiliation.sport (!fb:olympics.olympic_participating_country.athletes (var x)))) fb:en.italy)) (value (list (name fb:en.water_polo "Water polo") (name fb:en.luge Luge) (name fb:en.sport_rowing Rowing) (name fb:en.table_tennis "Table tennis") (name fb:en.shooting_sports "Shooting sport") (name fb:en.bobsleigh Bobsleigh) (name fb:en.alpine_skiing "Alpine skiing") (name fb:en.swimming Swimming) (name fb:en.volleyball Volleyball) (name fb:en.archery Archery))) (type fb:olympics.olympic_sport) what sport is popular in italy? Alpine skiing 9.119 formula ((lambda x (!fb:olympics.olympic_athlete_affiliation.sport (!fb:olympics.olympic_participating_country.athletes (var x)))) fb:en.italy)) (value (list (name fb:en.water_polo "Water polo") (name fb:en.luge Luge) (name fb:en.sport_rowing Rowing) (name fb:en.table_tennis "Table tennis") (name fb:en.shooting_sports "Shooting sport") (name fb:en.bobsleigh Bobsleigh) (name fb:en.alpine_skiing "Alpine skiing") (name fb:en.swimming Swimming) (name fb:en.volleyball Volleyball) (name fb:en.archery Archery))) (type fb:olympics.olympic_sport) what was jesse owens education? East Technical High School 12.525 formula ((lambda x (!fb:education.education.institution (!fb:people.person.education (var x)))) fb:en.jesse_owens)) (value (list (name fb:en.east_technical_high_school "East Technical High School") (name fb:en.ohio_state_university "Ohio State University"))) (type fb:education.educational_institution) what was jesse owens education? Ohio State University 12.525 formula ((lambda x (!fb:education.education.institution (!fb:people.person.education (var x)))) fb:en.jesse_owens)) (value (list (name fb:en.east_technical_high_school "East Technical High School") (name fb:en.ohio_state_university "Ohio State University"))) (type fb:education.educational_institution) where does carlos santana live? San Francisco 6.921 formula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.carlos_santana))) (value (list (name fb:en.tijuana Tijuana) (name fb:en.jalisco Jalisco) (name fb:en.san_francisco "San Francisco"))) (type fb:location.location) what is the new movie john carter about? The Doll Squad 10.202 formula ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:m.02h5xjf)) (value (list (name fb:m.04j1_bd "The Doll Squad") (name fb:en.marooned Marooned) (name fb:en.badlands_1973 Badlands) (name fb:m.080j6g3 "Random Hearts") (name fb:m.0gkrwc_ Chameleons) (name fb:en.james_micheners_dynasty "James Michener's Dynasty") (name fb:m.0cr_j6w "The Dells: Live from NYC") (name fb:en.the_hoax_2007 "The Hoax") (name fb:en.scarface_1983 Scarface) (name fb:en.love_can_be_murder "Love Can Be Murder"))) (type fb:film.film) what is the new movie john carter about? Random Hearts 10.202 formula ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:m.02h5xjf)) (value (list (name fb:m.04j1_bd "The Doll Squad") (name fb:en.marooned Marooned) (name fb:en.badlands_1973 Badlands) (name fb:m.080j6g3 "Random Hearts") (name fb:m.0gkrwc_ Chameleons) (name fb:en.james_micheners_dynasty "James Michener's Dynasty") (name fb:m.0cr_j6w "The Dells: Live from NYC") (name fb:en.the_hoax_2007 "The Hoax") (name fb:en.scarface_1983 Scarface) (name fb:en.love_can_be_murder "Love Can Be Murder"))) (type fb:film.film) what is the new movie john carter about? James Michener's Dynasty 10.202 formula ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:m.02h5xjf)) (value (list (name fb:m.04j1_bd "The Doll Squad") (name fb:en.marooned Marooned) (name fb:en.badlands_1973 Badlands) (name fb:m.080j6g3 "Random Hearts") (name fb:m.0gkrwc_ Chameleons) (name fb:en.james_micheners_dynasty "James Michener's Dynasty") (name fb:m.0cr_j6w "The Dells: Live from NYC") (name fb:en.the_hoax_2007 "The Hoax") (name fb:en.scarface_1983 Scarface) (name fb:en.love_can_be_murder "Love Can Be Murder"))) (type fb:film.film) what is the new movie john carter about? The Dells: Live from NYC 10.202 formula ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:m.02h5xjf)) (value (list (name fb:m.04j1_bd "The Doll Squad") (name fb:en.marooned Marooned) (name fb:en.badlands_1973 Badlands) (name fb:m.080j6g3 "Random Hearts") (name fb:m.0gkrwc_ Chameleons) (name fb:en.james_micheners_dynasty "James Michener's Dynasty") (name fb:m.0cr_j6w "The Dells: Live from NYC") (name fb:en.the_hoax_2007 "The Hoax") (name fb:en.scarface_1983 Scarface) (name fb:en.love_can_be_murder "Love Can Be Murder"))) (type fb:film.film) what is the new movie john carter about? The Hoax 10.202 formula ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:m.02h5xjf)) (value (list (name fb:m.04j1_bd "The Doll Squad") (name fb:en.marooned Marooned) (name fb:en.badlands_1973 Badlands) (name fb:m.080j6g3 "Random Hearts") (name fb:m.0gkrwc_ Chameleons) (name fb:en.james_micheners_dynasty "James Michener's Dynasty") (name fb:m.0cr_j6w "The Dells: Live from NYC") (name fb:en.the_hoax_2007 "The Hoax") (name fb:en.scarface_1983 Scarface) (name fb:en.love_can_be_murder "Love Can Be Murder"))) (type fb:film.film) what is the new movie john carter about? Love Can Be Murder 10.202 formula ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:m.02h5xjf)) (value (list (name fb:m.04j1_bd "The Doll Squad") (name fb:en.marooned Marooned) (name fb:en.badlands_1973 Badlands) (name fb:m.080j6g3 "Random Hearts") (name fb:m.0gkrwc_ Chameleons) (name fb:en.james_micheners_dynasty "James Michener's Dynasty") (name fb:m.0cr_j6w "The Dells: Live from NYC") (name fb:en.the_hoax_2007 "The Hoax") (name fb:en.scarface_1983 Scarface) (name fb:en.love_can_be_murder "Love Can Be Murder"))) (type fb:film.film) what county is houston tx in? Montgomery County 10.966 formula (!fb:location.hud_county_place.county fb:en.houston)) (value (list (name fb:en.montgomery_county_texas "Montgomery County"))) (type fb:location.us_county) where do the seattle seahawks play? CenturyLink Field 9.547 formula (and (fb:type.object.type fb:location.location) (fb:sports.sports_facility.teams fb:en.seattle_seahawks))) (value (list (name fb:en.qwest_field "CenturyLink Field"))) (type fb:sports.sports_facility) who does michael keaton play in cars? Rabbit Test 5.078 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.michael_keaton)) (value (list (name fb:en.rabbit_test_1978 "Rabbit Test") (name fb:en.a_different_approach "A Different Approach") (name fb:en.pacific_heights "Pacific Heights") (name fb:en.inventing_the_abbotts "Inventing the Abbotts") (name fb:en.the_post_grad_survival_guide "Post Grad") (name fb:en.jackie_brown "Jackie Brown") (name fb:m.02w16f0 Quicksand) (name fb:en.white_noise_2005 "White Noise") (name fb:en.out_of_sight "Out of Sight") (name fb:en.speechless_1994 Speechless))) (type fb:film.film) who does michael keaton play in cars? A Different Approach 5.078 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.michael_keaton)) (value (list (name fb:en.rabbit_test_1978 "Rabbit Test") (name fb:en.a_different_approach "A Different Approach") (name fb:en.pacific_heights "Pacific Heights") (name fb:en.inventing_the_abbotts "Inventing the Abbotts") (name fb:en.the_post_grad_survival_guide "Post Grad") (name fb:en.jackie_brown "Jackie Brown") (name fb:m.02w16f0 Quicksand) (name fb:en.white_noise_2005 "White Noise") (name fb:en.out_of_sight "Out of Sight") (name fb:en.speechless_1994 Speechless))) (type fb:film.film) who does michael keaton play in cars? Pacific Heights 5.078 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.michael_keaton)) (value (list (name fb:en.rabbit_test_1978 "Rabbit Test") (name fb:en.a_different_approach "A Different Approach") (name fb:en.pacific_heights "Pacific Heights") (name fb:en.inventing_the_abbotts "Inventing the Abbotts") (name fb:en.the_post_grad_survival_guide "Post Grad") (name fb:en.jackie_brown "Jackie Brown") (name fb:m.02w16f0 Quicksand) (name fb:en.white_noise_2005 "White Noise") (name fb:en.out_of_sight "Out of Sight") (name fb:en.speechless_1994 Speechless))) (type fb:film.film) who does michael keaton play in cars? Inventing the Abbotts 5.078 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.michael_keaton)) (value (list (name fb:en.rabbit_test_1978 "Rabbit Test") (name fb:en.a_different_approach "A Different Approach") (name fb:en.pacific_heights "Pacific Heights") (name fb:en.inventing_the_abbotts "Inventing the Abbotts") (name fb:en.the_post_grad_survival_guide "Post Grad") (name fb:en.jackie_brown "Jackie Brown") (name fb:m.02w16f0 Quicksand) (name fb:en.white_noise_2005 "White Noise") (name fb:en.out_of_sight "Out of Sight") (name fb:en.speechless_1994 Speechless))) (type fb:film.film) who does michael keaton play in cars? Post Grad 5.078 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.michael_keaton)) (value (list (name fb:en.rabbit_test_1978 "Rabbit Test") (name fb:en.a_different_approach "A Different Approach") (name fb:en.pacific_heights "Pacific Heights") (name fb:en.inventing_the_abbotts "Inventing the Abbotts") (name fb:en.the_post_grad_survival_guide "Post Grad") (name fb:en.jackie_brown "Jackie Brown") (name fb:m.02w16f0 Quicksand) (name fb:en.white_noise_2005 "White Noise") (name fb:en.out_of_sight "Out of Sight") (name fb:en.speechless_1994 Speechless))) (type fb:film.film) who does michael keaton play in cars? Jackie Brown 5.078 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.michael_keaton)) (value (list (name fb:en.rabbit_test_1978 "Rabbit Test") (name fb:en.a_different_approach "A Different Approach") (name fb:en.pacific_heights "Pacific Heights") (name fb:en.inventing_the_abbotts "Inventing the Abbotts") (name fb:en.the_post_grad_survival_guide "Post Grad") (name fb:en.jackie_brown "Jackie Brown") (name fb:m.02w16f0 Quicksand) (name fb:en.white_noise_2005 "White Noise") (name fb:en.out_of_sight "Out of Sight") (name fb:en.speechless_1994 Speechless))) (type fb:film.film) who does michael keaton play in cars? White Noise 5.078 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.michael_keaton)) (value (list (name fb:en.rabbit_test_1978 "Rabbit Test") (name fb:en.a_different_approach "A Different Approach") (name fb:en.pacific_heights "Pacific Heights") (name fb:en.inventing_the_abbotts "Inventing the Abbotts") (name fb:en.the_post_grad_survival_guide "Post Grad") (name fb:en.jackie_brown "Jackie Brown") (name fb:m.02w16f0 Quicksand) (name fb:en.white_noise_2005 "White Noise") (name fb:en.out_of_sight "Out of Sight") (name fb:en.speechless_1994 Speechless))) (type fb:film.film) who does michael keaton play in cars? Out of Sight 5.078 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.michael_keaton)) (value (list (name fb:en.rabbit_test_1978 "Rabbit Test") (name fb:en.a_different_approach "A Different Approach") (name fb:en.pacific_heights "Pacific Heights") (name fb:en.inventing_the_abbotts "Inventing the Abbotts") (name fb:en.the_post_grad_survival_guide "Post Grad") (name fb:en.jackie_brown "Jackie Brown") (name fb:m.02w16f0 Quicksand) (name fb:en.white_noise_2005 "White Noise") (name fb:en.out_of_sight "Out of Sight") (name fb:en.speechless_1994 Speechless))) (type fb:film.film) what are the mountains in northern spain? Pic del Port Vell 13.877 formula (!fb:location.location.partially_contains fb:en.spain)) (value (list (name fb:en.pyrenees Pyrenees) (name fb:en.tagus Tagus) (name fb:en.pic_del_port_vell_andorra "Pic del Port Vell") (name fb:en.bay_of_biscay "Bay of Biscay") (name fb:en.pica_destats "Pica d'Estats"))) (type fb:location.location) what are the mountains in northern spain? Bay of Biscay 13.877 formula (!fb:location.location.partially_contains fb:en.spain)) (value (list (name fb:en.pyrenees Pyrenees) (name fb:en.tagus Tagus) (name fb:en.pic_del_port_vell_andorra "Pic del Port Vell") (name fb:en.bay_of_biscay "Bay of Biscay") (name fb:en.pica_destats "Pica d'Estats"))) (type fb:location.location) what are the mountains in northern spain? Pica d'Estats 13.877 formula (!fb:location.location.partially_contains fb:en.spain)) (value (list (name fb:en.pyrenees Pyrenees) (name fb:en.tagus Tagus) (name fb:en.pic_del_port_vell_andorra "Pic del Port Vell") (name fb:en.bay_of_biscay "Bay of Biscay") (name fb:en.pica_destats "Pica d'Estats"))) (type fb:location.location) who became president when henry harrison died? John Tyler 6.551 formula (fb:government.us_vice_president.to_president fb:en.william_henry_harrison)) (value (list (name fb:en.john_tyler "John Tyler"))) (type fb:government.us_vice_president) what other books did louis sachar write? Sideways Arithmetic From Wayside School 13.598 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.louis_sachar))) (value (list (name fb:en.sideways_arithmetic_from_wayside_school "Sideways Arithmetic From Wayside School") (name fb:en.super_fast_out_of_control "Super Fast, Out of Control!") (name fb:en.marvin_redpost "Marvin Redpost") (name fb:m.04t4842 "Johnny's in the Basement") (name fb:m.03tgtr Holes) (name fb:en.a_flying_birthday_cake "A Flying Birthday Cake?") (name fb:en.a_magic_crystal "A magic crystal?") (name fb:m.0cmt6c "Small Steps") (name fb:en.hoyos_holes Hoyos/Holes) (name fb:en.someday_angeline "Someday Angeline"))) (type (union fb:book.book)) what other books did louis sachar write? Super Fast, Out of Control! 13.598 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.louis_sachar))) (value (list (name fb:en.sideways_arithmetic_from_wayside_school "Sideways Arithmetic From Wayside School") (name fb:en.super_fast_out_of_control "Super Fast, Out of Control!") (name fb:en.marvin_redpost "Marvin Redpost") (name fb:m.04t4842 "Johnny's in the Basement") (name fb:m.03tgtr Holes) (name fb:en.a_flying_birthday_cake "A Flying Birthday Cake?") (name fb:en.a_magic_crystal "A magic crystal?") (name fb:m.0cmt6c "Small Steps") (name fb:en.hoyos_holes Hoyos/Holes) (name fb:en.someday_angeline "Someday Angeline"))) (type (union fb:book.book)) what other books did louis sachar write? Marvin Redpost 13.598 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.louis_sachar))) (value (list (name fb:en.sideways_arithmetic_from_wayside_school "Sideways Arithmetic From Wayside School") (name fb:en.super_fast_out_of_control "Super Fast, Out of Control!") (name fb:en.marvin_redpost "Marvin Redpost") (name fb:m.04t4842 "Johnny's in the Basement") (name fb:m.03tgtr Holes) (name fb:en.a_flying_birthday_cake "A Flying Birthday Cake?") (name fb:en.a_magic_crystal "A magic crystal?") (name fb:m.0cmt6c "Small Steps") (name fb:en.hoyos_holes Hoyos/Holes) (name fb:en.someday_angeline "Someday Angeline"))) (type (union fb:book.book)) what other books did louis sachar write? Johnny's in the Basement 13.598 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.louis_sachar))) (value (list (name fb:en.sideways_arithmetic_from_wayside_school "Sideways Arithmetic From Wayside School") (name fb:en.super_fast_out_of_control "Super Fast, Out of Control!") (name fb:en.marvin_redpost "Marvin Redpost") (name fb:m.04t4842 "Johnny's in the Basement") (name fb:m.03tgtr Holes) (name fb:en.a_flying_birthday_cake "A Flying Birthday Cake?") (name fb:en.a_magic_crystal "A magic crystal?") (name fb:m.0cmt6c "Small Steps") (name fb:en.hoyos_holes Hoyos/Holes) (name fb:en.someday_angeline "Someday Angeline"))) (type (union fb:book.book)) what other books did louis sachar write? A Flying Birthday Cake? 13.598 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.louis_sachar))) (value (list (name fb:en.sideways_arithmetic_from_wayside_school "Sideways Arithmetic From Wayside School") (name fb:en.super_fast_out_of_control "Super Fast, Out of Control!") (name fb:en.marvin_redpost "Marvin Redpost") (name fb:m.04t4842 "Johnny's in the Basement") (name fb:m.03tgtr Holes) (name fb:en.a_flying_birthday_cake "A Flying Birthday Cake?") (name fb:en.a_magic_crystal "A magic crystal?") (name fb:m.0cmt6c "Small Steps") (name fb:en.hoyos_holes Hoyos/Holes) (name fb:en.someday_angeline "Someday Angeline"))) (type (union fb:book.book)) what other books did louis sachar write? A magic crystal? 13.598 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.louis_sachar))) (value (list (name fb:en.sideways_arithmetic_from_wayside_school "Sideways Arithmetic From Wayside School") (name fb:en.super_fast_out_of_control "Super Fast, Out of Control!") (name fb:en.marvin_redpost "Marvin Redpost") (name fb:m.04t4842 "Johnny's in the Basement") (name fb:m.03tgtr Holes) (name fb:en.a_flying_birthday_cake "A Flying Birthday Cake?") (name fb:en.a_magic_crystal "A magic crystal?") (name fb:m.0cmt6c "Small Steps") (name fb:en.hoyos_holes Hoyos/Holes) (name fb:en.someday_angeline "Someday Angeline"))) (type (union fb:book.book)) what other books did louis sachar write? Small Steps 13.598 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.louis_sachar))) (value (list (name fb:en.sideways_arithmetic_from_wayside_school "Sideways Arithmetic From Wayside School") (name fb:en.super_fast_out_of_control "Super Fast, Out of Control!") (name fb:en.marvin_redpost "Marvin Redpost") (name fb:m.04t4842 "Johnny's in the Basement") (name fb:m.03tgtr Holes) (name fb:en.a_flying_birthday_cake "A Flying Birthday Cake?") (name fb:en.a_magic_crystal "A magic crystal?") (name fb:m.0cmt6c "Small Steps") (name fb:en.hoyos_holes Hoyos/Holes) (name fb:en.someday_angeline "Someday Angeline"))) (type (union fb:book.book)) what other books did louis sachar write? Someday Angeline 13.598 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.louis_sachar))) (value (list (name fb:en.sideways_arithmetic_from_wayside_school "Sideways Arithmetic From Wayside School") (name fb:en.super_fast_out_of_control "Super Fast, Out of Control!") (name fb:en.marvin_redpost "Marvin Redpost") (name fb:m.04t4842 "Johnny's in the Basement") (name fb:m.03tgtr Holes) (name fb:en.a_flying_birthday_cake "A Flying Birthday Cake?") (name fb:en.a_magic_crystal "A magic crystal?") (name fb:m.0cmt6c "Small Steps") (name fb:en.hoyos_holes Hoyos/Holes) (name fb:en.someday_angeline "Someday Angeline"))) (type (union fb:book.book)) when did roth ira originate? William V. Roth, Jr. 5.22 formula (fb:symbols.name_source.namesakes fb:en.roth_ira)) (value (list (name fb:en.jr_roth_william_v "William V. Roth, Jr."))) (type fb:symbols.name_source) what is the best zelda game to start with? Zelda II: The Adventure of Link 15.81 formula ((lambda x (!fb:cvg.game_performance.game (!fb:cvg.game_character.games (var x)))) fb:en.princess_zelda)) (value (list (name fb:en.zelda_ii_the_adventure_of_link "Zelda II: The Adventure of Link") (name fb:en.the_legend_of_zelda_a_link_to_the_past "The Legend of Zelda: A Link to the Past") (name fb:en.super_smash_bros_brawl "Super Smash Bros. Brawl") (name fb:en.super_smash_bros_melee "Super Smash Bros. Melee") (name fb:en.the_legend_of_zelda "The Legend of Zelda") (name fb:en.the_legend_of_zelda_twilight_princess "The Legend of Zelda: Twilight Princess"))) (type fb:cvg.computer_videogame) what is the best zelda game to start with? The Legend of Zelda: A Link to the Past 15.81 formula ((lambda x (!fb:cvg.game_performance.game (!fb:cvg.game_character.games (var x)))) fb:en.princess_zelda)) (value (list (name fb:en.zelda_ii_the_adventure_of_link "Zelda II: The Adventure of Link") (name fb:en.the_legend_of_zelda_a_link_to_the_past "The Legend of Zelda: A Link to the Past") (name fb:en.super_smash_bros_brawl "Super Smash Bros. Brawl") (name fb:en.super_smash_bros_melee "Super Smash Bros. Melee") (name fb:en.the_legend_of_zelda "The Legend of Zelda") (name fb:en.the_legend_of_zelda_twilight_princess "The Legend of Zelda: Twilight Princess"))) (type fb:cvg.computer_videogame) what is the best zelda game to start with? Super Smash Bros. Brawl 15.81 formula ((lambda x (!fb:cvg.game_performance.game (!fb:cvg.game_character.games (var x)))) fb:en.princess_zelda)) (value (list (name fb:en.zelda_ii_the_adventure_of_link "Zelda II: The Adventure of Link") (name fb:en.the_legend_of_zelda_a_link_to_the_past "The Legend of Zelda: A Link to the Past") (name fb:en.super_smash_bros_brawl "Super Smash Bros. Brawl") (name fb:en.super_smash_bros_melee "Super Smash Bros. Melee") (name fb:en.the_legend_of_zelda "The Legend of Zelda") (name fb:en.the_legend_of_zelda_twilight_princess "The Legend of Zelda: Twilight Princess"))) (type fb:cvg.computer_videogame) what is the best zelda game to start with? Super Smash Bros. Melee 15.81 formula ((lambda x (!fb:cvg.game_performance.game (!fb:cvg.game_character.games (var x)))) fb:en.princess_zelda)) (value (list (name fb:en.zelda_ii_the_adventure_of_link "Zelda II: The Adventure of Link") (name fb:en.the_legend_of_zelda_a_link_to_the_past "The Legend of Zelda: A Link to the Past") (name fb:en.super_smash_bros_brawl "Super Smash Bros. Brawl") (name fb:en.super_smash_bros_melee "Super Smash Bros. Melee") (name fb:en.the_legend_of_zelda "The Legend of Zelda") (name fb:en.the_legend_of_zelda_twilight_princess "The Legend of Zelda: Twilight Princess"))) (type fb:cvg.computer_videogame) what is the best zelda game to start with? The Legend of Zelda 15.81 formula ((lambda x (!fb:cvg.game_performance.game (!fb:cvg.game_character.games (var x)))) fb:en.princess_zelda)) (value (list (name fb:en.zelda_ii_the_adventure_of_link "Zelda II: The Adventure of Link") (name fb:en.the_legend_of_zelda_a_link_to_the_past "The Legend of Zelda: A Link to the Past") (name fb:en.super_smash_bros_brawl "Super Smash Bros. Brawl") (name fb:en.super_smash_bros_melee "Super Smash Bros. Melee") (name fb:en.the_legend_of_zelda "The Legend of Zelda") (name fb:en.the_legend_of_zelda_twilight_princess "The Legend of Zelda: Twilight Princess"))) (type fb:cvg.computer_videogame) what is the best zelda game to start with? The Legend of Zelda: Twilight Princess 15.81 formula ((lambda x (!fb:cvg.game_performance.game (!fb:cvg.game_character.games (var x)))) fb:en.princess_zelda)) (value (list (name fb:en.zelda_ii_the_adventure_of_link "Zelda II: The Adventure of Link") (name fb:en.the_legend_of_zelda_a_link_to_the_past "The Legend of Zelda: A Link to the Past") (name fb:en.super_smash_bros_brawl "Super Smash Bros. Brawl") (name fb:en.super_smash_bros_melee "Super Smash Bros. Melee") (name fb:en.the_legend_of_zelda "The Legend of Zelda") (name fb:en.the_legend_of_zelda_twilight_princess "The Legend of Zelda: Twilight Princess"))) (type fb:cvg.computer_videogame) who does the voice for darth vader? David Prowse 13.031 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who does the voice for darth vader? James Earl Jones 13.031 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who does the voice for darth vader? Hayden Christensen 13.031 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who does the voice for darth vader? Matt Lanter 13.031 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who does the voice for darth vader? Sebastian Shaw 13.031 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who does the voice for darth vader? Robert E. Bean 13.031 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who does the voice for darth vader? Jake Lloyd 13.031 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) what states share a border with tennessee? North Carolina 12.506 formula (and (fb:type.object.type fb:location.us_state) ((lambda x (fb:location.location.adjoin_s (fb:location.adjoining_relationship.adjoins (var x)))) fb:en.tennesee))) (value (list (name fb:en.mississippi Mississippi) (name fb:en.north_carolina "North Carolina") (name fb:en.arkansas Arkansas) (name fb:en.alabama Alabama) (name fb:en.virginia Virginia) (name fb:en.kentucky Kentucky) (name fb:en.missouri Missouri) (name fb:en.georgia Georgia))) (type fb:location.us_state) what kind of government is egypt? Unitary state 11.695 formula (!fb:location.country.form_of_government fb:en.egypt)) (value (list (name fb:en.unitary_state "Unitary state") (name fb:en.republic Republic) (name fb:en.semi-presidential_system "Semi-presidential system"))) (type fb:government.form_of_government) what kind of government is egypt? Semi-presidential system 11.695 formula (!fb:location.country.form_of_government fb:en.egypt)) (value (list (name fb:en.unitary_state "Unitary state") (name fb:en.republic Republic) (name fb:en.semi-presidential_system "Semi-presidential system"))) (type fb:government.form_of_government) who is james madison and what did he do? James Monroe 20.742 formula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.appointed_by (var x)))) fb:en.james_madison)) (value (list (name fb:en.james_monroe "James Monroe") (name fb:en.william_h_crawford "William H. Crawford") (name fb:en.george_w_campbell "George W. Campbell") (name fb:en.alexander_j_dallas "Alexander J. Dallas"))) (type fb:government.politician) who is james madison and what did he do? William H. Crawford 20.742 formula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.appointed_by (var x)))) fb:en.james_madison)) (value (list (name fb:en.james_monroe "James Monroe") (name fb:en.william_h_crawford "William H. Crawford") (name fb:en.george_w_campbell "George W. Campbell") (name fb:en.alexander_j_dallas "Alexander J. Dallas"))) (type fb:government.politician) who is james madison and what did he do? George W. Campbell 20.742 formula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.appointed_by (var x)))) fb:en.james_madison)) (value (list (name fb:en.james_monroe "James Monroe") (name fb:en.william_h_crawford "William H. Crawford") (name fb:en.george_w_campbell "George W. Campbell") (name fb:en.alexander_j_dallas "Alexander J. Dallas"))) (type fb:government.politician) who is james madison and what did he do? Alexander J. Dallas 20.742 formula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.appointed_by (var x)))) fb:en.james_madison)) (value (list (name fb:en.james_monroe "James Monroe") (name fb:en.william_h_crawford "William H. Crawford") (name fb:en.george_w_campbell "George W. Campbell") (name fb:en.alexander_j_dallas "Alexander J. Dallas"))) (type fb:government.politician) what did obama do before he was elected president? Energy development 20.842 formula ((lambda x (fb:event.speech_topic.speeches_or_presentations_on_this_topic (fb:event.speech_or_presentation.speaker_s (var x)))) fb:en.barack_obama)) (value (list (name fb:en.energy_development "Energy development") (name fb:en.education_reform "Education reform"))) (type fb:event.speech_topic) what did obama do before he was elected president? Education reform 20.842 formula ((lambda x (fb:event.speech_topic.speeches_or_presentations_on_this_topic (fb:event.speech_or_presentation.speaker_s (var x)))) fb:en.barack_obama)) (value (list (name fb:en.energy_development "Energy development") (name fb:en.education_reform "Education reform"))) (type fb:event.speech_topic) where do john lennon die? New York City 6.522 formula (and (fb:type.object.type fb:location.location) (!fb:people.deceased_person.place_of_death fb:en.john_lennon))) (value (list (name fb:en.new_york_ny "New York City"))) (type fb:location.location) who plays edward on deception? Robert Pattinson 4.941 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.edward_cullen)) (value (list (name fb:en.robert_pattinson "Robert Pattinson"))) (type fb:film.actor) what games will be on nfl network this year? Madden NFL 08 12.005 formula (and (fb:type.object.type fb:cvg.computer_videogame) (!fb:cvg.game_series.games_in_series fb:en.madden_nfl))) (value (list (name fb:en.madden_nfl_08 "Madden NFL 08") (name fb:en.madden_nfl_09 "Madden NFL 09") (name fb:en.madden_nfl_2004 "Madden NFL 2004") (name fb:m.05p0f3b "Madden NFL 10") (name fb:en.john_madden_football "John Madden Football") (name fb:en.nfl_head_coach_09 "NFL Head Coach 09") (name fb:en.madden_nfl_96 "Madden NFL '96") (name fb:en.madden_nfl_98 "Madden NFL 98") (name fb:en.madden_football_64 "Madden Football 64") (name fb:en.madden_nfl_99 "Madden NFL 99"))) (type (union fb:cvg.computer_videogame)) what games will be on nfl network this year? Madden NFL 09 12.005 formula (and (fb:type.object.type fb:cvg.computer_videogame) (!fb:cvg.game_series.games_in_series fb:en.madden_nfl))) (value (list (name fb:en.madden_nfl_08 "Madden NFL 08") (name fb:en.madden_nfl_09 "Madden NFL 09") (name fb:en.madden_nfl_2004 "Madden NFL 2004") (name fb:m.05p0f3b "Madden NFL 10") (name fb:en.john_madden_football "John Madden Football") (name fb:en.nfl_head_coach_09 "NFL Head Coach 09") (name fb:en.madden_nfl_96 "Madden NFL '96") (name fb:en.madden_nfl_98 "Madden NFL 98") (name fb:en.madden_football_64 "Madden Football 64") (name fb:en.madden_nfl_99 "Madden NFL 99"))) (type (union fb:cvg.computer_videogame)) what games will be on nfl network this year? Madden NFL 2004 12.005 formula (and (fb:type.object.type fb:cvg.computer_videogame) (!fb:cvg.game_series.games_in_series fb:en.madden_nfl))) (value (list (name fb:en.madden_nfl_08 "Madden NFL 08") (name fb:en.madden_nfl_09 "Madden NFL 09") (name fb:en.madden_nfl_2004 "Madden NFL 2004") (name fb:m.05p0f3b "Madden NFL 10") (name fb:en.john_madden_football "John Madden Football") (name fb:en.nfl_head_coach_09 "NFL Head Coach 09") (name fb:en.madden_nfl_96 "Madden NFL '96") (name fb:en.madden_nfl_98 "Madden NFL 98") (name fb:en.madden_football_64 "Madden Football 64") (name fb:en.madden_nfl_99 "Madden NFL 99"))) (type (union fb:cvg.computer_videogame)) what games will be on nfl network this year? Madden NFL 10 12.005 formula (and (fb:type.object.type fb:cvg.computer_videogame) (!fb:cvg.game_series.games_in_series fb:en.madden_nfl))) (value (list (name fb:en.madden_nfl_08 "Madden NFL 08") (name fb:en.madden_nfl_09 "Madden NFL 09") (name fb:en.madden_nfl_2004 "Madden NFL 2004") (name fb:m.05p0f3b "Madden NFL 10") (name fb:en.john_madden_football "John Madden Football") (name fb:en.nfl_head_coach_09 "NFL Head Coach 09") (name fb:en.madden_nfl_96 "Madden NFL '96") (name fb:en.madden_nfl_98 "Madden NFL 98") (name fb:en.madden_football_64 "Madden Football 64") (name fb:en.madden_nfl_99 "Madden NFL 99"))) (type (union fb:cvg.computer_videogame)) what games will be on nfl network this year? John Madden Football 12.005 formula (and (fb:type.object.type fb:cvg.computer_videogame) (!fb:cvg.game_series.games_in_series fb:en.madden_nfl))) (value (list (name fb:en.madden_nfl_08 "Madden NFL 08") (name fb:en.madden_nfl_09 "Madden NFL 09") (name fb:en.madden_nfl_2004 "Madden NFL 2004") (name fb:m.05p0f3b "Madden NFL 10") (name fb:en.john_madden_football "John Madden Football") (name fb:en.nfl_head_coach_09 "NFL Head Coach 09") (name fb:en.madden_nfl_96 "Madden NFL '96") (name fb:en.madden_nfl_98 "Madden NFL 98") (name fb:en.madden_football_64 "Madden Football 64") (name fb:en.madden_nfl_99 "Madden NFL 99"))) (type (union fb:cvg.computer_videogame)) what games will be on nfl network this year? NFL Head Coach 09 12.005 formula (and (fb:type.object.type fb:cvg.computer_videogame) (!fb:cvg.game_series.games_in_series fb:en.madden_nfl))) (value (list (name fb:en.madden_nfl_08 "Madden NFL 08") (name fb:en.madden_nfl_09 "Madden NFL 09") (name fb:en.madden_nfl_2004 "Madden NFL 2004") (name fb:m.05p0f3b "Madden NFL 10") (name fb:en.john_madden_football "John Madden Football") (name fb:en.nfl_head_coach_09 "NFL Head Coach 09") (name fb:en.madden_nfl_96 "Madden NFL '96") (name fb:en.madden_nfl_98 "Madden NFL 98") (name fb:en.madden_football_64 "Madden Football 64") (name fb:en.madden_nfl_99 "Madden NFL 99"))) (type (union fb:cvg.computer_videogame)) what games will be on nfl network this year? Madden NFL '96 12.005 formula (and (fb:type.object.type fb:cvg.computer_videogame) (!fb:cvg.game_series.games_in_series fb:en.madden_nfl))) (value (list (name fb:en.madden_nfl_08 "Madden NFL 08") (name fb:en.madden_nfl_09 "Madden NFL 09") (name fb:en.madden_nfl_2004 "Madden NFL 2004") (name fb:m.05p0f3b "Madden NFL 10") (name fb:en.john_madden_football "John Madden Football") (name fb:en.nfl_head_coach_09 "NFL Head Coach 09") (name fb:en.madden_nfl_96 "Madden NFL '96") (name fb:en.madden_nfl_98 "Madden NFL 98") (name fb:en.madden_football_64 "Madden Football 64") (name fb:en.madden_nfl_99 "Madden NFL 99"))) (type (union fb:cvg.computer_videogame)) what games will be on nfl network this year? Madden NFL 98 12.005 formula (and (fb:type.object.type fb:cvg.computer_videogame) (!fb:cvg.game_series.games_in_series fb:en.madden_nfl))) (value (list (name fb:en.madden_nfl_08 "Madden NFL 08") (name fb:en.madden_nfl_09 "Madden NFL 09") (name fb:en.madden_nfl_2004 "Madden NFL 2004") (name fb:m.05p0f3b "Madden NFL 10") (name fb:en.john_madden_football "John Madden Football") (name fb:en.nfl_head_coach_09 "NFL Head Coach 09") (name fb:en.madden_nfl_96 "Madden NFL '96") (name fb:en.madden_nfl_98 "Madden NFL 98") (name fb:en.madden_football_64 "Madden Football 64") (name fb:en.madden_nfl_99 "Madden NFL 99"))) (type (union fb:cvg.computer_videogame)) what games will be on nfl network this year? Madden Football 64 12.005 formula (and (fb:type.object.type fb:cvg.computer_videogame) (!fb:cvg.game_series.games_in_series fb:en.madden_nfl))) (value (list (name fb:en.madden_nfl_08 "Madden NFL 08") (name fb:en.madden_nfl_09 "Madden NFL 09") (name fb:en.madden_nfl_2004 "Madden NFL 2004") (name fb:m.05p0f3b "Madden NFL 10") (name fb:en.john_madden_football "John Madden Football") (name fb:en.nfl_head_coach_09 "NFL Head Coach 09") (name fb:en.madden_nfl_96 "Madden NFL '96") (name fb:en.madden_nfl_98 "Madden NFL 98") (name fb:en.madden_football_64 "Madden Football 64") (name fb:en.madden_nfl_99 "Madden NFL 99"))) (type (union fb:cvg.computer_videogame)) what games will be on nfl network this year? Madden NFL 99 12.005 formula (and (fb:type.object.type fb:cvg.computer_videogame) (!fb:cvg.game_series.games_in_series fb:en.madden_nfl))) (value (list (name fb:en.madden_nfl_08 "Madden NFL 08") (name fb:en.madden_nfl_09 "Madden NFL 09") (name fb:en.madden_nfl_2004 "Madden NFL 2004") (name fb:m.05p0f3b "Madden NFL 10") (name fb:en.john_madden_football "John Madden Football") (name fb:en.nfl_head_coach_09 "NFL Head Coach 09") (name fb:en.madden_nfl_96 "Madden NFL '96") (name fb:en.madden_nfl_98 "Madden NFL 98") (name fb:en.madden_football_64 "Madden Football 64") (name fb:en.madden_nfl_99 "Madden NFL 99"))) (type (union fb:cvg.computer_videogame)) what is the current time in bangalore india? Indian Standard Time 9.062 formula (!fb:location.location.time_zones fb:en.bangalore)) (value (list (name fb:en.indian_standard_time "Indian Standard Time") (name fb:en.utcplus5_30 UTC+05:30))) (type fb:time.time_zone) what language do people from greece speak? Greek Language 17.376 formula (and (fb:type.object.type fb:language.human_language) (fb:language.human_language.countries_spoken_in fb:en.greece))) (value (list (name fb:en.greek_language "Greek Language") (name fb:en.albanian_language "Albanian language"))) (type fb:language.human_language) what language do people from greece speak? Albanian language 17.376 formula (and (fb:type.object.type fb:language.human_language) (fb:language.human_language.countries_spoken_in fb:en.greece))) (value (list (name fb:en.greek_language "Greek Language") (name fb:en.albanian_language "Albanian language"))) (type fb:language.human_language) where is the phillies spring training stadium? Citizens Bank Park 10.444 formula (and (fb:type.object.type fb:location.location) (and (fb:type.object.type fb:sports.sports_facility) (!fb:sports.sports_team.arena_stadium fb:en.philadelphia_phillies)))) (value (list (name fb:en.citizens_bank_park "Citizens Bank Park"))) (type fb:sports.sports_facility) what movies does matt dallas play in? In Between Days 9.304 formula ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.matt_dallas)) (value (list (name fb:en.wannabe_2005 Wannabe) (name fb:m.0h2r0x7 "In Between Days") (name fb:en.way_of_the_vampire "Way of the Vampire") (name fb:en.the_business_of_falling_in_love "Beauty & the Briefcase") (name fb:m.051x5f2 "Living the Dream") (name fb:m.0crsyk2 "The Indian") (name fb:m.0h2kycm "You, Me & The Circus") (name fb:m.05p309z "The Story of Bonnie and Clyde") (name fb:en.camp_slaughter "Camp Slaughter") (name fb:m.0h2kydx "The Ghost of Goodnight Lane"))) (type fb:film.film) what movies does matt dallas play in? Way of the Vampire 9.304 formula ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.matt_dallas)) (value (list (name fb:en.wannabe_2005 Wannabe) (name fb:m.0h2r0x7 "In Between Days") (name fb:en.way_of_the_vampire "Way of the Vampire") (name fb:en.the_business_of_falling_in_love "Beauty & the Briefcase") (name fb:m.051x5f2 "Living the Dream") (name fb:m.0crsyk2 "The Indian") (name fb:m.0h2kycm "You, Me & The Circus") (name fb:m.05p309z "The Story of Bonnie and Clyde") (name fb:en.camp_slaughter "Camp Slaughter") (name fb:m.0h2kydx "The Ghost of Goodnight Lane"))) (type fb:film.film) what movies does matt dallas play in? Beauty & the Briefcase 9.304 formula ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.matt_dallas)) (value (list (name fb:en.wannabe_2005 Wannabe) (name fb:m.0h2r0x7 "In Between Days") (name fb:en.way_of_the_vampire "Way of the Vampire") (name fb:en.the_business_of_falling_in_love "Beauty & the Briefcase") (name fb:m.051x5f2 "Living the Dream") (name fb:m.0crsyk2 "The Indian") (name fb:m.0h2kycm "You, Me & The Circus") (name fb:m.05p309z "The Story of Bonnie and Clyde") (name fb:en.camp_slaughter "Camp Slaughter") (name fb:m.0h2kydx "The Ghost of Goodnight Lane"))) (type fb:film.film) what movies does matt dallas play in? Living the Dream 9.304 formula ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.matt_dallas)) (value (list (name fb:en.wannabe_2005 Wannabe) (name fb:m.0h2r0x7 "In Between Days") (name fb:en.way_of_the_vampire "Way of the Vampire") (name fb:en.the_business_of_falling_in_love "Beauty & the Briefcase") (name fb:m.051x5f2 "Living the Dream") (name fb:m.0crsyk2 "The Indian") (name fb:m.0h2kycm "You, Me & The Circus") (name fb:m.05p309z "The Story of Bonnie and Clyde") (name fb:en.camp_slaughter "Camp Slaughter") (name fb:m.0h2kydx "The Ghost of Goodnight Lane"))) (type fb:film.film) what movies does matt dallas play in? The Indian 9.304 formula ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.matt_dallas)) (value (list (name fb:en.wannabe_2005 Wannabe) (name fb:m.0h2r0x7 "In Between Days") (name fb:en.way_of_the_vampire "Way of the Vampire") (name fb:en.the_business_of_falling_in_love "Beauty & the Briefcase") (name fb:m.051x5f2 "Living the Dream") (name fb:m.0crsyk2 "The Indian") (name fb:m.0h2kycm "You, Me & The Circus") (name fb:m.05p309z "The Story of Bonnie and Clyde") (name fb:en.camp_slaughter "Camp Slaughter") (name fb:m.0h2kydx "The Ghost of Goodnight Lane"))) (type fb:film.film) what movies does matt dallas play in? You, Me & The Circus 9.304 formula ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.matt_dallas)) (value (list (name fb:en.wannabe_2005 Wannabe) (name fb:m.0h2r0x7 "In Between Days") (name fb:en.way_of_the_vampire "Way of the Vampire") (name fb:en.the_business_of_falling_in_love "Beauty & the Briefcase") (name fb:m.051x5f2 "Living the Dream") (name fb:m.0crsyk2 "The Indian") (name fb:m.0h2kycm "You, Me & The Circus") (name fb:m.05p309z "The Story of Bonnie and Clyde") (name fb:en.camp_slaughter "Camp Slaughter") (name fb:m.0h2kydx "The Ghost of Goodnight Lane"))) (type fb:film.film) what movies does matt dallas play in? The Story of Bonnie and Clyde 9.304 formula ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.matt_dallas)) (value (list (name fb:en.wannabe_2005 Wannabe) (name fb:m.0h2r0x7 "In Between Days") (name fb:en.way_of_the_vampire "Way of the Vampire") (name fb:en.the_business_of_falling_in_love "Beauty & the Briefcase") (name fb:m.051x5f2 "Living the Dream") (name fb:m.0crsyk2 "The Indian") (name fb:m.0h2kycm "You, Me & The Circus") (name fb:m.05p309z "The Story of Bonnie and Clyde") (name fb:en.camp_slaughter "Camp Slaughter") (name fb:m.0h2kydx "The Ghost of Goodnight Lane"))) (type fb:film.film) what movies does matt dallas play in? Camp Slaughter 9.304 formula ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.matt_dallas)) (value (list (name fb:en.wannabe_2005 Wannabe) (name fb:m.0h2r0x7 "In Between Days") (name fb:en.way_of_the_vampire "Way of the Vampire") (name fb:en.the_business_of_falling_in_love "Beauty & the Briefcase") (name fb:m.051x5f2 "Living the Dream") (name fb:m.0crsyk2 "The Indian") (name fb:m.0h2kycm "You, Me & The Circus") (name fb:m.05p309z "The Story of Bonnie and Clyde") (name fb:en.camp_slaughter "Camp Slaughter") (name fb:m.0h2kydx "The Ghost of Goodnight Lane"))) (type fb:film.film) what movies does matt dallas play in? The Ghost of Goodnight Lane 9.304 formula ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.matt_dallas)) (value (list (name fb:en.wannabe_2005 Wannabe) (name fb:m.0h2r0x7 "In Between Days") (name fb:en.way_of_the_vampire "Way of the Vampire") (name fb:en.the_business_of_falling_in_love "Beauty & the Briefcase") (name fb:m.051x5f2 "Living the Dream") (name fb:m.0crsyk2 "The Indian") (name fb:m.0h2kycm "You, Me & The Circus") (name fb:m.05p309z "The Story of Bonnie and Clyde") (name fb:en.camp_slaughter "Camp Slaughter") (name fb:m.0h2kydx "The Ghost of Goodnight Lane"))) (type fb:film.film) who was john f kennedy's family? Kennedy family 8.922 formula (!fb:people.family_member.family fb:en.john_f_kennedy)) (value (list (name fb:en.kennedy_family "Kennedy family"))) (type fb:people.family) when was john paul ii? Myocardial infarction 5.647 formula (fb:people.cause_of_death.people fb:en.pope_john_paul_ii)) (value (list (name fb:en.heart_failure "Myocardial infarction") (name fb:en.parkinsons_disease "Parkinson's disease"))) (type fb:people.cause_of_death) when was john paul ii? Parkinson's disease 5.647 formula (fb:people.cause_of_death.people fb:en.pope_john_paul_ii)) (value (list (name fb:en.heart_failure "Myocardial infarction") (name fb:en.parkinsons_disease "Parkinson's disease"))) (type fb:people.cause_of_death) where is belgium germany? United States of America 0.135 formula (and (fb:type.object.type fb:location.location) ((lambda x (fb:location.statistical_region.places_imported_from (fb:location.imports_and_exports.imported_from (var x)))) fb:en.germany))) (value (list (name fb:en.algeria Algeria) (name fb:en.albania_france Albania) (name fb:en.afghanistan Afghanistan) (name fb:en.united_states_of_america "United States of America"))) (type fb:location.statistical_region) where did starbucks get their logo? United States of America 6.623 formula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:common.phone_number.service_location (!fb:organization.organization.phone_number (var x)))) fb:en.starbucks))) (value (list (name fb:en.united_states_of_america "United States of America"))) (type fb:location.location) where was bin laden found and killed? Maktab al-Khidamat 8.544 formula (fb:organization.organization.founders fb:en.osama_bin_laden)) (value (list (name fb:en.al-qaeda al-Qaeda) (name fb:en.maktab_al-khadamat "Maktab al-Khidamat"))) (type fb:organization.organization) what are the names of harry potter movies in order? Harry Potter and the Deathly Hallows 12.378 formula (!fb:book.book_character.appears_in_book fb:m.03647x)) (value (list (name fb:en.harry_potter_7 "Harry Potter and the Deathly Hallows") (name fb:en.harry_potter_and_the_order_of_the_phoenix "Harry Potter and the Order of the Phoenix") (name fb:en.harry_potter_and_the_prisoner_of_azkaban "Harry Potter and the Prisoner of Azkaban") (name fb:en.harry_potter_and_the_half-blood_prince "Harry Potter and the Half-Blood Prince") (name fb:en.harry_potter_and_the_goblet_of_fire "Harry Potter and the Goblet of Fire") (name fb:en.harry_potter_and_the_chamber_of_secrets "Harry Potter and the Chamber of Secrets") (name fb:m.0c_vk "Harry Potter and the Philosopher's Stone"))) (type fb:book.book) what are the names of harry potter movies in order? Harry Potter and the Order of the Phoenix 12.378 formula (!fb:book.book_character.appears_in_book fb:m.03647x)) (value (list (name fb:en.harry_potter_7 "Harry Potter and the Deathly Hallows") (name fb:en.harry_potter_and_the_order_of_the_phoenix "Harry Potter and the Order of the Phoenix") (name fb:en.harry_potter_and_the_prisoner_of_azkaban "Harry Potter and the Prisoner of Azkaban") (name fb:en.harry_potter_and_the_half-blood_prince "Harry Potter and the Half-Blood Prince") (name fb:en.harry_potter_and_the_goblet_of_fire "Harry Potter and the Goblet of Fire") (name fb:en.harry_potter_and_the_chamber_of_secrets "Harry Potter and the Chamber of Secrets") (name fb:m.0c_vk "Harry Potter and the Philosopher's Stone"))) (type fb:book.book) what are the names of harry potter movies in order? Harry Potter and the Prisoner of Azkaban 12.378 formula (!fb:book.book_character.appears_in_book fb:m.03647x)) (value (list (name fb:en.harry_potter_7 "Harry Potter and the Deathly Hallows") (name fb:en.harry_potter_and_the_order_of_the_phoenix "Harry Potter and the Order of the Phoenix") (name fb:en.harry_potter_and_the_prisoner_of_azkaban "Harry Potter and the Prisoner of Azkaban") (name fb:en.harry_potter_and_the_half-blood_prince "Harry Potter and the Half-Blood Prince") (name fb:en.harry_potter_and_the_goblet_of_fire "Harry Potter and the Goblet of Fire") (name fb:en.harry_potter_and_the_chamber_of_secrets "Harry Potter and the Chamber of Secrets") (name fb:m.0c_vk "Harry Potter and the Philosopher's Stone"))) (type fb:book.book) what are the names of harry potter movies in order? Harry Potter and the Half-Blood Prince 12.378 formula (!fb:book.book_character.appears_in_book fb:m.03647x)) (value (list (name fb:en.harry_potter_7 "Harry Potter and the Deathly Hallows") (name fb:en.harry_potter_and_the_order_of_the_phoenix "Harry Potter and the Order of the Phoenix") (name fb:en.harry_potter_and_the_prisoner_of_azkaban "Harry Potter and the Prisoner of Azkaban") (name fb:en.harry_potter_and_the_half-blood_prince "Harry Potter and the Half-Blood Prince") (name fb:en.harry_potter_and_the_goblet_of_fire "Harry Potter and the Goblet of Fire") (name fb:en.harry_potter_and_the_chamber_of_secrets "Harry Potter and the Chamber of Secrets") (name fb:m.0c_vk "Harry Potter and the Philosopher's Stone"))) (type fb:book.book) what are the names of harry potter movies in order? Harry Potter and the Goblet of Fire 12.378 formula (!fb:book.book_character.appears_in_book fb:m.03647x)) (value (list (name fb:en.harry_potter_7 "Harry Potter and the Deathly Hallows") (name fb:en.harry_potter_and_the_order_of_the_phoenix "Harry Potter and the Order of the Phoenix") (name fb:en.harry_potter_and_the_prisoner_of_azkaban "Harry Potter and the Prisoner of Azkaban") (name fb:en.harry_potter_and_the_half-blood_prince "Harry Potter and the Half-Blood Prince") (name fb:en.harry_potter_and_the_goblet_of_fire "Harry Potter and the Goblet of Fire") (name fb:en.harry_potter_and_the_chamber_of_secrets "Harry Potter and the Chamber of Secrets") (name fb:m.0c_vk "Harry Potter and the Philosopher's Stone"))) (type fb:book.book) what are the names of harry potter movies in order? Harry Potter and the Chamber of Secrets 12.378 formula (!fb:book.book_character.appears_in_book fb:m.03647x)) (value (list (name fb:en.harry_potter_7 "Harry Potter and the Deathly Hallows") (name fb:en.harry_potter_and_the_order_of_the_phoenix "Harry Potter and the Order of the Phoenix") (name fb:en.harry_potter_and_the_prisoner_of_azkaban "Harry Potter and the Prisoner of Azkaban") (name fb:en.harry_potter_and_the_half-blood_prince "Harry Potter and the Half-Blood Prince") (name fb:en.harry_potter_and_the_goblet_of_fire "Harry Potter and the Goblet of Fire") (name fb:en.harry_potter_and_the_chamber_of_secrets "Harry Potter and the Chamber of Secrets") (name fb:m.0c_vk "Harry Potter and the Philosopher's Stone"))) (type fb:book.book) what are the names of harry potter movies in order? Harry Potter and the Philosopher's Stone 12.378 formula (!fb:book.book_character.appears_in_book fb:m.03647x)) (value (list (name fb:en.harry_potter_7 "Harry Potter and the Deathly Hallows") (name fb:en.harry_potter_and_the_order_of_the_phoenix "Harry Potter and the Order of the Phoenix") (name fb:en.harry_potter_and_the_prisoner_of_azkaban "Harry Potter and the Prisoner of Azkaban") (name fb:en.harry_potter_and_the_half-blood_prince "Harry Potter and the Half-Blood Prince") (name fb:en.harry_potter_and_the_goblet_of_fire "Harry Potter and the Goblet of Fire") (name fb:en.harry_potter_and_the_chamber_of_secrets "Harry Potter and the Chamber of Secrets") (name fb:m.0c_vk "Harry Potter and the Philosopher's Stone"))) (type fb:book.book) what did pamela courson die from? Drug overdose 19.591 formula (fb:people.cause_of_death.people fb:en.pamela_courson)) (value (list (name fb:en.drug_overdose "Drug overdose") (name fb:en.heroin_overdose "Heroin overdose"))) (type fb:people.cause_of_death) what did pamela courson die from? Heroin overdose 19.591 formula (fb:people.cause_of_death.people fb:en.pamela_courson)) (value (list (name fb:en.drug_overdose "Drug overdose") (name fb:en.heroin_overdose "Heroin overdose"))) (type fb:people.cause_of_death) who plays stacey in the stacy's mom video? Lacey Turner 5.19 formula ((lambda x (fb:tv.tv_actor.starring_roles (fb:tv.regular_tv_appearance.character (var x)))) fb:en.stacey_slater)) (value (list (name fb:en.lacey_turner "Lacey Turner"))) (type fb:tv.tv_actor) who does nolan ryan play for? New York Mets 13.074 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.nolan_ryan)) (value (list (name fb:en.new_york_mets "New York Mets") (name fb:m.05kmnv1 "California Angels") (name fb:en.houston_astros "Houston Astros"))) (type fb:sports.sports_team) who does nolan ryan play for? California Angels 13.074 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.nolan_ryan)) (value (list (name fb:en.new_york_mets "New York Mets") (name fb:m.05kmnv1 "California Angels") (name fb:en.houston_astros "Houston Astros"))) (type fb:sports.sports_team) who does nolan ryan play for? Houston Astros 13.074 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.nolan_ryan)) (value (list (name fb:en.new_york_mets "New York Mets") (name fb:m.05kmnv1 "California Angels") (name fb:en.houston_astros "Houston Astros"))) (type fb:sports.sports_team) what is the currency of sweden in 2010? Swedish krona 19.947 formula (!fb:location.country.currency_used fb:en.swedem)) (value (list (name fb:en.swedish_krona "Swedish krona"))) (type fb:finance.currency) what is the head judge of the supreme court called? Ricky Polston 15.87 formula (and (fb:type.object.type fb:law.judge) ((lambda x (!fb:law.judicial_tenure.judge (!fb:law.court.judges (var x)))) fb:en.florida_supreme_court))) (value (list (name fb:en.ricky_polston "Ricky Polston") (name fb:en.joseph_b_lancaster "Joseph B. Lancaster"))) (type (union fb:law.judge)) what is the head judge of the supreme court called? Joseph B. Lancaster 15.87 formula (and (fb:type.object.type fb:law.judge) ((lambda x (!fb:law.judicial_tenure.judge (!fb:law.court.judges (var x)))) fb:en.florida_supreme_court))) (value (list (name fb:en.ricky_polston "Ricky Polston") (name fb:en.joseph_b_lancaster "Joseph B. Lancaster"))) (type (union fb:law.judge)) who was frida kahlo influenced by? Diego Rivera 13.028 formula (fb:influence.influence_node.influenced fb:en.frida_kahlo)) (value (list (name fb:en.diego_rivera "Diego Rivera"))) (type fb:influence.influence_node) when is the last time the giants won the world series? 2010 World Series 18.479 formula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.san_francisco_giants))) (value (list (name fb:en.2010_world_series "2010 World Series") (name fb:m.0ds8qct "2012 World Series"))) (type fb:sports.sports_championship_event) when is the last time the giants won the world series? 2012 World Series 18.479 formula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.san_francisco_giants))) (value (list (name fb:en.2010_world_series "2010 World Series") (name fb:m.0ds8qct "2012 World Series"))) (type fb:sports.sports_championship_event) what spain brought to the new world? The Sun Also Rises 8.454 formula (!fb:book.book_subject.works fb:en.spain)) (value (list (name fb:en.the_sun_also_rises "The Sun Also Rises") (name fb:en.blood_secret "Blood Secret") (name fb:en.death_in_the_afternoon "Death in the Afternoon") (name fb:en.shadow_of_a_bull "Shadow of a Bull") (name fb:en.road_to_santiago "Road to Santiago") (name fb:m.04wfzbs Poison) (name fb:en.for_whom_the_bell_tolls "For Whom the Bell Tolls") (name fb:en.orwell_in_spain "Orwell in Spain") (name fb:en.story_of_don_quixote_and_his_squire_sancho_panza "Don Quixote") (name fb:en.the_wound_and_dream "The Wound and Dream"))) (type fb:book.written_work) what spain brought to the new world? Blood Secret 8.454 formula (!fb:book.book_subject.works fb:en.spain)) (value (list (name fb:en.the_sun_also_rises "The Sun Also Rises") (name fb:en.blood_secret "Blood Secret") (name fb:en.death_in_the_afternoon "Death in the Afternoon") (name fb:en.shadow_of_a_bull "Shadow of a Bull") (name fb:en.road_to_santiago "Road to Santiago") (name fb:m.04wfzbs Poison) (name fb:en.for_whom_the_bell_tolls "For Whom the Bell Tolls") (name fb:en.orwell_in_spain "Orwell in Spain") (name fb:en.story_of_don_quixote_and_his_squire_sancho_panza "Don Quixote") (name fb:en.the_wound_and_dream "The Wound and Dream"))) (type fb:book.written_work) what spain brought to the new world? Death in the Afternoon 8.454 formula (!fb:book.book_subject.works fb:en.spain)) (value (list (name fb:en.the_sun_also_rises "The Sun Also Rises") (name fb:en.blood_secret "Blood Secret") (name fb:en.death_in_the_afternoon "Death in the Afternoon") (name fb:en.shadow_of_a_bull "Shadow of a Bull") (name fb:en.road_to_santiago "Road to Santiago") (name fb:m.04wfzbs Poison) (name fb:en.for_whom_the_bell_tolls "For Whom the Bell Tolls") (name fb:en.orwell_in_spain "Orwell in Spain") (name fb:en.story_of_don_quixote_and_his_squire_sancho_panza "Don Quixote") (name fb:en.the_wound_and_dream "The Wound and Dream"))) (type fb:book.written_work) what spain brought to the new world? Shadow of a Bull 8.454 formula (!fb:book.book_subject.works fb:en.spain)) (value (list (name fb:en.the_sun_also_rises "The Sun Also Rises") (name fb:en.blood_secret "Blood Secret") (name fb:en.death_in_the_afternoon "Death in the Afternoon") (name fb:en.shadow_of_a_bull "Shadow of a Bull") (name fb:en.road_to_santiago "Road to Santiago") (name fb:m.04wfzbs Poison) (name fb:en.for_whom_the_bell_tolls "For Whom the Bell Tolls") (name fb:en.orwell_in_spain "Orwell in Spain") (name fb:en.story_of_don_quixote_and_his_squire_sancho_panza "Don Quixote") (name fb:en.the_wound_and_dream "The Wound and Dream"))) (type fb:book.written_work) what spain brought to the new world? Road to Santiago 8.454 formula (!fb:book.book_subject.works fb:en.spain)) (value (list (name fb:en.the_sun_also_rises "The Sun Also Rises") (name fb:en.blood_secret "Blood Secret") (name fb:en.death_in_the_afternoon "Death in the Afternoon") (name fb:en.shadow_of_a_bull "Shadow of a Bull") (name fb:en.road_to_santiago "Road to Santiago") (name fb:m.04wfzbs Poison) (name fb:en.for_whom_the_bell_tolls "For Whom the Bell Tolls") (name fb:en.orwell_in_spain "Orwell in Spain") (name fb:en.story_of_don_quixote_and_his_squire_sancho_panza "Don Quixote") (name fb:en.the_wound_and_dream "The Wound and Dream"))) (type fb:book.written_work) what spain brought to the new world? For Whom the Bell Tolls 8.454 formula (!fb:book.book_subject.works fb:en.spain)) (value (list (name fb:en.the_sun_also_rises "The Sun Also Rises") (name fb:en.blood_secret "Blood Secret") (name fb:en.death_in_the_afternoon "Death in the Afternoon") (name fb:en.shadow_of_a_bull "Shadow of a Bull") (name fb:en.road_to_santiago "Road to Santiago") (name fb:m.04wfzbs Poison) (name fb:en.for_whom_the_bell_tolls "For Whom the Bell Tolls") (name fb:en.orwell_in_spain "Orwell in Spain") (name fb:en.story_of_don_quixote_and_his_squire_sancho_panza "Don Quixote") (name fb:en.the_wound_and_dream "The Wound and Dream"))) (type fb:book.written_work) what spain brought to the new world? Orwell in Spain 8.454 formula (!fb:book.book_subject.works fb:en.spain)) (value (list (name fb:en.the_sun_also_rises "The Sun Also Rises") (name fb:en.blood_secret "Blood Secret") (name fb:en.death_in_the_afternoon "Death in the Afternoon") (name fb:en.shadow_of_a_bull "Shadow of a Bull") (name fb:en.road_to_santiago "Road to Santiago") (name fb:m.04wfzbs Poison) (name fb:en.for_whom_the_bell_tolls "For Whom the Bell Tolls") (name fb:en.orwell_in_spain "Orwell in Spain") (name fb:en.story_of_don_quixote_and_his_squire_sancho_panza "Don Quixote") (name fb:en.the_wound_and_dream "The Wound and Dream"))) (type fb:book.written_work) what spain brought to the new world? Don Quixote 8.454 formula (!fb:book.book_subject.works fb:en.spain)) (value (list (name fb:en.the_sun_also_rises "The Sun Also Rises") (name fb:en.blood_secret "Blood Secret") (name fb:en.death_in_the_afternoon "Death in the Afternoon") (name fb:en.shadow_of_a_bull "Shadow of a Bull") (name fb:en.road_to_santiago "Road to Santiago") (name fb:m.04wfzbs Poison) (name fb:en.for_whom_the_bell_tolls "For Whom the Bell Tolls") (name fb:en.orwell_in_spain "Orwell in Spain") (name fb:en.story_of_don_quixote_and_his_squire_sancho_panza "Don Quixote") (name fb:en.the_wound_and_dream "The Wound and Dream"))) (type fb:book.written_work) what spain brought to the new world? The Wound and Dream 8.454 formula (!fb:book.book_subject.works fb:en.spain)) (value (list (name fb:en.the_sun_also_rises "The Sun Also Rises") (name fb:en.blood_secret "Blood Secret") (name fb:en.death_in_the_afternoon "Death in the Afternoon") (name fb:en.shadow_of_a_bull "Shadow of a Bull") (name fb:en.road_to_santiago "Road to Santiago") (name fb:m.04wfzbs Poison) (name fb:en.for_whom_the_bell_tolls "For Whom the Bell Tolls") (name fb:en.orwell_in_spain "Orwell in Spain") (name fb:en.story_of_don_quixote_and_his_squire_sancho_panza "Don Quixote") (name fb:en.the_wound_and_dream "The Wound and Dream"))) (type fb:book.written_work) who did vladimir lenin marry? Nadezhda Krupskaya 11.235 formula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.vladimir_lenin)) (value (list (name fb:en.nadezhda_konstantinovna_krupskaya "Nadezhda Krupskaya"))) (type fb:people.person) what year did the baltimore ravens win superbowl? Super Bowl XLVII 18.378 formula (and (fb:type.object.type fb:sports.sports_championship_event) (fb:sports.sports_championship_event.champion fb:en.baltimore_ravens))) (value (list (name fb:en.super_bowl_xlvii "Super Bowl XLVII") (name fb:en.super_bowl_xxxv "Super Bowl XXXV"))) (type fb:sports.sports_championship_event) what year did the baltimore ravens win superbowl? Super Bowl XXXV 18.378 formula (and (fb:type.object.type fb:sports.sports_championship_event) (fb:sports.sports_championship_event.champion fb:en.baltimore_ravens))) (value (list (name fb:en.super_bowl_xlvii "Super Bowl XLVII") (name fb:en.super_bowl_xxxv "Super Bowl XXXV"))) (type fb:sports.sports_championship_event) what team does cristiano ronaldo play for 2011? Portugal national football team 17.318 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo))) (value (list (name fb:en.portugal_national_football_team "Portugal national football team") (name fb:en.sporting_clube_de_portugal "Sporting Clube de Portugal") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.real_madrid "Real Madrid C.F."))) (type fb:soccer.football_team) what team does cristiano ronaldo play for 2011? Sporting Clube de Portugal 17.318 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo))) (value (list (name fb:en.portugal_national_football_team "Portugal national football team") (name fb:en.sporting_clube_de_portugal "Sporting Clube de Portugal") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.real_madrid "Real Madrid C.F."))) (type fb:soccer.football_team) what team does cristiano ronaldo play for 2011? Manchester United F.C. 17.318 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo))) (value (list (name fb:en.portugal_national_football_team "Portugal national football team") (name fb:en.sporting_clube_de_portugal "Sporting Clube de Portugal") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.real_madrid "Real Madrid C.F."))) (type fb:soccer.football_team) what team does cristiano ronaldo play for 2011? Real Madrid C.F. 17.318 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo))) (value (list (name fb:en.portugal_national_football_team "Portugal national football team") (name fb:en.sporting_clube_de_portugal "Sporting Clube de Portugal") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.real_madrid "Real Madrid C.F."))) (type fb:soccer.football_team) what is money called in italy? Triple Entente 8.608 formula (fb:military.military_combatant.includes_allies fb:en.italy)) (value (list (name fb:en.triple_entente "Triple Entente"))) (type fb:military.military_combatant) what is the government of france for 2010? Government of France 16.92 formula (fb:government.government.government_for fb:en.france)) (value (list (name fb:en.government_of_france "Government of France"))) (type fb:government.government) where did theodor schwann study? Humboldt University of Berlin 5.829 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.theodor_schwann))) (value (list (name fb:en.humboldt_university_of_berlin "Humboldt University of Berlin"))) (type fb:education.educational_institution) how old is bruno mars and where is he from? Blissful Master Index 12.384 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.bruno_mars)) (value (list (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) how old is bruno mars and where is he from? Blissful Celebrities 12.384 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.bruno_mars)) (value (list (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) who are the virginia senators 2013? Comcast SportsNet Mid-Atlantic 7.564 formula (fb:broadcast.broadcast.area_served fb:en.virginia)) (value (list (name fb:en.csn_mid_atlantic "Comcast SportsNet Mid-Atlantic") (name fb:en.wamu_88_5_fm "WAMU 88.5 FM") (name fb:en.wper WPER) (name fb:en.wbra-tv "Blue Ridge PBS"))) (type fb:broadcast.broadcast) who are the virginia senators 2013? WAMU 88.5 FM 7.564 formula (fb:broadcast.broadcast.area_served fb:en.virginia)) (value (list (name fb:en.csn_mid_atlantic "Comcast SportsNet Mid-Atlantic") (name fb:en.wamu_88_5_fm "WAMU 88.5 FM") (name fb:en.wper WPER) (name fb:en.wbra-tv "Blue Ridge PBS"))) (type fb:broadcast.broadcast) who are the virginia senators 2013? Blue Ridge PBS 7.564 formula (fb:broadcast.broadcast.area_served fb:en.virginia)) (value (list (name fb:en.csn_mid_atlantic "Comcast SportsNet Mid-Atlantic") (name fb:en.wamu_88_5_fm "WAMU 88.5 FM") (name fb:en.wper WPER) (name fb:en.wbra-tv "Blue Ridge PBS"))) (type fb:broadcast.broadcast) what was dr seuss's real name? Geisel Library 10.888 formula (fb:symbols.namesake.named_after fb:en.dr_seuss)) (value (list (name fb:en.geisel_library "Geisel Library") (name fb:en.dr_seuss_memorial "Dr. Seuss Memorial"))) (type fb:symbols.namesake) what was dr seuss's real name? Dr. Seuss Memorial 10.888 formula (fb:symbols.namesake.named_after fb:en.dr_seuss)) (value (list (name fb:en.geisel_library "Geisel Library") (name fb:en.dr_seuss_memorial "Dr. Seuss Memorial"))) (type fb:symbols.namesake) where are the nordic countries? Faroe Islands 8.188 formula (and (fb:type.object.type fb:location.location) (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.nordic_countries)))) (value (list (name fb:en.norway Norway) (name fb:en.iceland Iceland) (name fb:en.greenland Greenland) (name fb:en.faroe_islands "Faroe Islands") (name fb:en.aland "Åland Islands"))) (type fb:location.country) where are the nordic countries? Åland Islands 8.188 formula (and (fb:type.object.type fb:location.location) (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.nordic_countries)))) (value (list (name fb:en.norway Norway) (name fb:en.iceland Iceland) (name fb:en.greenland Greenland) (name fb:en.faroe_islands "Faroe Islands") (name fb:en.aland "Åland Islands"))) (type fb:location.country) what country sponsored ferdinand magellan? Kingdom of Portugal 13.084 formula (and (fb:type.object.type fb:location.country) (!fb:people.person.nationality fb:en.ferdinand_magellan))) (value (list (name fb:en.portugal Portugal) (name fb:en.kingdom_of_portugal "Kingdom of Portugal"))) (type (union fb:location.country)) what did vera ellen die from? Lung cancer 16.497 formula (fb:people.cause_of_death.people fb:en.ellen_willis)) (value (list (name fb:en.lung_cancer "Lung cancer"))) (type fb:people.cause_of_death) who will plaxico burress play for in 2011? New York Jets 15.28 formula (fb:sports.sports_team.roster (and (fb:sports.sports_team_roster.player fb:en.plaxico_burress) (fb:sports.sports_team_roster.from (date 2011 -1 -1))))) (value (list (name fb:en.new_york_jets "New York Jets"))) (type fb:sports.sports_team) what is the currency of brazil now? Brazilian real 22.205 formula (!fb:location.country.currency_used fb:en.brazil)) (value (list (name fb:en.brazilian_real "Brazilian real"))) (type fb:finance.currency) who does mike marry at the end of season 5 desperate housewives? 2005 Major League Baseball season 10.563 formula ((lambda x (!fb:sports.sports_award.season (!fb:sports.sports_award_winner.awards (var x)))) fb:en.mike_lowell)) (value (list (name fb:en.2005_major_league_baseball_season "2005 Major League Baseball season") (name fb:en.2007_major_league_baseball_season "2007 Major League Baseball season"))) (type fb:sports.sports_league_season) who does mike marry at the end of season 5 desperate housewives? 2007 Major League Baseball season 10.563 formula ((lambda x (!fb:sports.sports_award.season (!fb:sports.sports_award_winner.awards (var x)))) fb:en.mike_lowell)) (value (list (name fb:en.2005_major_league_baseball_season "2005 Major League Baseball season") (name fb:en.2007_major_league_baseball_season "2007 Major League Baseball season"))) (type fb:sports.sports_league_season) what are the predominant religions in russia? Russian Orthodox Church 19.803 formula ((lambda x (!fb:location.religion_percentage.religion (!fb:location.statistical_region.religions (var x)))) fb:en.russia)) (value (list (name fb:en.russian_orthodox_church "Russian Orthodox Church") (name fb:en.islam Islam))) (type fb:religion.religion) what countries were part of the spanish empire? United States of America 14.594 formula (and (fb:type.object.type fb:location.country) (!fb:language.human_language.countries_spoken_in fb:en.spanish))) (value (list (name fb:en.united_states_of_america "United States of America") (name fb:en.argentina Argentina) (name fb:en.canada Canada) (name fb:en.mexico Mexico) (name fb:en.nicaragua Nicaragua) (name fb:en.venezuela Venezuela) (name fb:en.barbados Barbados) (name fb:en.colombia Colombia) (name fb:en.gibraltar Gibraltar) (name fb:en.cuba Cuba))) (type (union fb:location.country)) who will coach carolina panthers in 2013? Ron Rivera 12.317 formula (!fb:american_football.football_team.current_head_coach fb:en.carolina_panthers)) (value (list (name fb:en.ron_rivera "Ron Rivera"))) (type fb:american_football.football_coach) where did louis sachar grow up? East Meadow 6.572 formula (and (fb:type.object.type fb:location.location) (fb:location.location.people_born_here fb:en.louis_sachar))) (value (list (name fb:en.east_meadow "East Meadow"))) (type fb:location.location) who plays marshall eriksen? Jason Segel 5.224 formula ((lambda x (fb:tv.tv_actor.starring_roles (fb:tv.regular_tv_appearance.character (var x)))) fb:en.marshall_eriksen)) (value (list (name fb:en.jason_segal "Jason Segel"))) (type fb:tv.tv_actor) what activities are there to do in greece? Road running 17.458 formula (and (fb:type.object.type fb:olympics.olympic_sport) ((lambda x (fb:olympics.olympic_sport.athletes (fb:olympics.olympic_athlete_affiliation.country (var x)))) fb:en.greece))) (value (list (name fb:en.sport_rowing Rowing) (name fb:en.swimming Swimming) (name fb:en.sailing Sailing) (name fb:en.road_running "Road running") (name fb:en.slalom_canoeing "Canoe Slalom") (name fb:en.shooting_sports "Shooting sport") (name fb:en.track_and_field "Track and field athletics") (name fb:en.diving Diving) (name fb:en.water_polo "Water polo") (name fb:en.race_walking Racewalking))) (type (union fb:olympics.olympic_sport)) what activities are there to do in greece? Canoe Slalom 17.458 formula (and (fb:type.object.type fb:olympics.olympic_sport) ((lambda x (fb:olympics.olympic_sport.athletes (fb:olympics.olympic_athlete_affiliation.country (var x)))) fb:en.greece))) (value (list (name fb:en.sport_rowing Rowing) (name fb:en.swimming Swimming) (name fb:en.sailing Sailing) (name fb:en.road_running "Road running") (name fb:en.slalom_canoeing "Canoe Slalom") (name fb:en.shooting_sports "Shooting sport") (name fb:en.track_and_field "Track and field athletics") (name fb:en.diving Diving) (name fb:en.water_polo "Water polo") (name fb:en.race_walking Racewalking))) (type (union fb:olympics.olympic_sport)) what activities are there to do in greece? Shooting sport 17.458 formula (and (fb:type.object.type fb:olympics.olympic_sport) ((lambda x (fb:olympics.olympic_sport.athletes (fb:olympics.olympic_athlete_affiliation.country (var x)))) fb:en.greece))) (value (list (name fb:en.sport_rowing Rowing) (name fb:en.swimming Swimming) (name fb:en.sailing Sailing) (name fb:en.road_running "Road running") (name fb:en.slalom_canoeing "Canoe Slalom") (name fb:en.shooting_sports "Shooting sport") (name fb:en.track_and_field "Track and field athletics") (name fb:en.diving Diving) (name fb:en.water_polo "Water polo") (name fb:en.race_walking Racewalking))) (type (union fb:olympics.olympic_sport)) what activities are there to do in greece? Track and field athletics 17.458 formula (and (fb:type.object.type fb:olympics.olympic_sport) ((lambda x (fb:olympics.olympic_sport.athletes (fb:olympics.olympic_athlete_affiliation.country (var x)))) fb:en.greece))) (value (list (name fb:en.sport_rowing Rowing) (name fb:en.swimming Swimming) (name fb:en.sailing Sailing) (name fb:en.road_running "Road running") (name fb:en.slalom_canoeing "Canoe Slalom") (name fb:en.shooting_sports "Shooting sport") (name fb:en.track_and_field "Track and field athletics") (name fb:en.diving Diving) (name fb:en.water_polo "Water polo") (name fb:en.race_walking Racewalking))) (type (union fb:olympics.olympic_sport)) what activities are there to do in greece? Water polo 17.458 formula (and (fb:type.object.type fb:olympics.olympic_sport) ((lambda x (fb:olympics.olympic_sport.athletes (fb:olympics.olympic_athlete_affiliation.country (var x)))) fb:en.greece))) (value (list (name fb:en.sport_rowing Rowing) (name fb:en.swimming Swimming) (name fb:en.sailing Sailing) (name fb:en.road_running "Road running") (name fb:en.slalom_canoeing "Canoe Slalom") (name fb:en.shooting_sports "Shooting sport") (name fb:en.track_and_field "Track and field athletics") (name fb:en.diving Diving) (name fb:en.water_polo "Water polo") (name fb:en.race_walking Racewalking))) (type (union fb:olympics.olympic_sport)) what to do for fun in houston? Ryan Hamilton 12.312 formula ((lambda x (fb:ice_hockey.hockey_player.former_team_s (fb:ice_hockey.hockey_previous_roster_position.team (var x)))) fb:en.houston_aeros)) (value (list (name fb:m.0c3xw2f "Ryan Hamilton") (name fb:m.0glqyf_ "Chay Genoway"))) (type fb:ice_hockey.hockey_player) what to do for fun in houston? Chay Genoway 12.312 formula ((lambda x (fb:ice_hockey.hockey_player.former_team_s (fb:ice_hockey.hockey_previous_roster_position.team (var x)))) fb:en.houston_aeros)) (value (list (name fb:m.0c3xw2f "Ryan Hamilton") (name fb:m.0glqyf_ "Chay Genoway"))) (type fb:ice_hockey.hockey_player) where did otto frank go to college? Heidelberg College 10.806 formula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.otto_frank)))) (value (list (name fb:en.heidelberg_college "Heidelberg College"))) (type fb:education.university) what else has jennifer lawrence played in? The Burning Plain 9.299 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.jennifer_lawrence)) (value (list (name fb:en.the_burning_plain "The Burning Plain") (name fb:m.0n40qmp "The Hunger Games: Catching Fire") (name fb:m.0fpmrlv "Like Crazy") (name fb:m.093dqjy "Winter’s Bone") (name fb:m.0gkz15s "The Hunger Games") (name fb:m.0r3r5jz "X-Men: Days of Future Past") (name fb:m.0cd2vh9 "X-Men: First Class") (name fb:m.09v71cj "The Beaver") (name fb:m.0ryt9m1 "American Hustle") (name fb:m.0r8p2ll Serena))) (type fb:film.film) what else has jennifer lawrence played in? The Hunger Games: Catching Fire 9.299 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.jennifer_lawrence)) (value (list (name fb:en.the_burning_plain "The Burning Plain") (name fb:m.0n40qmp "The Hunger Games: Catching Fire") (name fb:m.0fpmrlv "Like Crazy") (name fb:m.093dqjy "Winter’s Bone") (name fb:m.0gkz15s "The Hunger Games") (name fb:m.0r3r5jz "X-Men: Days of Future Past") (name fb:m.0cd2vh9 "X-Men: First Class") (name fb:m.09v71cj "The Beaver") (name fb:m.0ryt9m1 "American Hustle") (name fb:m.0r8p2ll Serena))) (type fb:film.film) what else has jennifer lawrence played in? Like Crazy 9.299 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.jennifer_lawrence)) (value (list (name fb:en.the_burning_plain "The Burning Plain") (name fb:m.0n40qmp "The Hunger Games: Catching Fire") (name fb:m.0fpmrlv "Like Crazy") (name fb:m.093dqjy "Winter’s Bone") (name fb:m.0gkz15s "The Hunger Games") (name fb:m.0r3r5jz "X-Men: Days of Future Past") (name fb:m.0cd2vh9 "X-Men: First Class") (name fb:m.09v71cj "The Beaver") (name fb:m.0ryt9m1 "American Hustle") (name fb:m.0r8p2ll Serena))) (type fb:film.film) what else has jennifer lawrence played in? Winter’s Bone 9.299 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.jennifer_lawrence)) (value (list (name fb:en.the_burning_plain "The Burning Plain") (name fb:m.0n40qmp "The Hunger Games: Catching Fire") (name fb:m.0fpmrlv "Like Crazy") (name fb:m.093dqjy "Winter’s Bone") (name fb:m.0gkz15s "The Hunger Games") (name fb:m.0r3r5jz "X-Men: Days of Future Past") (name fb:m.0cd2vh9 "X-Men: First Class") (name fb:m.09v71cj "The Beaver") (name fb:m.0ryt9m1 "American Hustle") (name fb:m.0r8p2ll Serena))) (type fb:film.film) what else has jennifer lawrence played in? The Hunger Games 9.299 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.jennifer_lawrence)) (value (list (name fb:en.the_burning_plain "The Burning Plain") (name fb:m.0n40qmp "The Hunger Games: Catching Fire") (name fb:m.0fpmrlv "Like Crazy") (name fb:m.093dqjy "Winter’s Bone") (name fb:m.0gkz15s "The Hunger Games") (name fb:m.0r3r5jz "X-Men: Days of Future Past") (name fb:m.0cd2vh9 "X-Men: First Class") (name fb:m.09v71cj "The Beaver") (name fb:m.0ryt9m1 "American Hustle") (name fb:m.0r8p2ll Serena))) (type fb:film.film) what else has jennifer lawrence played in? X-Men: Days of Future Past 9.299 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.jennifer_lawrence)) (value (list (name fb:en.the_burning_plain "The Burning Plain") (name fb:m.0n40qmp "The Hunger Games: Catching Fire") (name fb:m.0fpmrlv "Like Crazy") (name fb:m.093dqjy "Winter’s Bone") (name fb:m.0gkz15s "The Hunger Games") (name fb:m.0r3r5jz "X-Men: Days of Future Past") (name fb:m.0cd2vh9 "X-Men: First Class") (name fb:m.09v71cj "The Beaver") (name fb:m.0ryt9m1 "American Hustle") (name fb:m.0r8p2ll Serena))) (type fb:film.film) what else has jennifer lawrence played in? X-Men: First Class 9.299 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.jennifer_lawrence)) (value (list (name fb:en.the_burning_plain "The Burning Plain") (name fb:m.0n40qmp "The Hunger Games: Catching Fire") (name fb:m.0fpmrlv "Like Crazy") (name fb:m.093dqjy "Winter’s Bone") (name fb:m.0gkz15s "The Hunger Games") (name fb:m.0r3r5jz "X-Men: Days of Future Past") (name fb:m.0cd2vh9 "X-Men: First Class") (name fb:m.09v71cj "The Beaver") (name fb:m.0ryt9m1 "American Hustle") (name fb:m.0r8p2ll Serena))) (type fb:film.film) what else has jennifer lawrence played in? The Beaver 9.299 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.jennifer_lawrence)) (value (list (name fb:en.the_burning_plain "The Burning Plain") (name fb:m.0n40qmp "The Hunger Games: Catching Fire") (name fb:m.0fpmrlv "Like Crazy") (name fb:m.093dqjy "Winter’s Bone") (name fb:m.0gkz15s "The Hunger Games") (name fb:m.0r3r5jz "X-Men: Days of Future Past") (name fb:m.0cd2vh9 "X-Men: First Class") (name fb:m.09v71cj "The Beaver") (name fb:m.0ryt9m1 "American Hustle") (name fb:m.0r8p2ll Serena))) (type fb:film.film) what else has jennifer lawrence played in? American Hustle 9.299 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.jennifer_lawrence)) (value (list (name fb:en.the_burning_plain "The Burning Plain") (name fb:m.0n40qmp "The Hunger Games: Catching Fire") (name fb:m.0fpmrlv "Like Crazy") (name fb:m.093dqjy "Winter’s Bone") (name fb:m.0gkz15s "The Hunger Games") (name fb:m.0r3r5jz "X-Men: Days of Future Past") (name fb:m.0cd2vh9 "X-Men: First Class") (name fb:m.09v71cj "The Beaver") (name fb:m.0ryt9m1 "American Hustle") (name fb:m.0r8p2ll Serena))) (type fb:film.film) who is the governor of pennsylvania state now? John W. Geary 17.386 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.pennsylvania)) (value (list (name fb:en.john_w_geary "John W. Geary") (name fb:en.mark_s_schweiker "Mark S. Schweiker") (name fb:en.henry_m_hoyt "Henry M. Hoyt") (name fb:en.gifford_pinchot "Gifford Pinchot") (name fb:en.arthur_james "Arthur James") (name fb:en.francis_r_shunk "Francis R. Shunk") (name fb:en.john_s_fine "John S. Fine") (name fb:en.tim_murphy_1952 "Timothy F. Murphy") (name fb:en.john_andrew_shulze "John Andrew Shulze") (name fb:en.william_bigler "William Bigler"))) (type fb:government.politician) who is the governor of pennsylvania state now? Mark S. Schweiker 17.386 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.pennsylvania)) (value (list (name fb:en.john_w_geary "John W. Geary") (name fb:en.mark_s_schweiker "Mark S. Schweiker") (name fb:en.henry_m_hoyt "Henry M. Hoyt") (name fb:en.gifford_pinchot "Gifford Pinchot") (name fb:en.arthur_james "Arthur James") (name fb:en.francis_r_shunk "Francis R. Shunk") (name fb:en.john_s_fine "John S. Fine") (name fb:en.tim_murphy_1952 "Timothy F. Murphy") (name fb:en.john_andrew_shulze "John Andrew Shulze") (name fb:en.william_bigler "William Bigler"))) (type fb:government.politician) who is the governor of pennsylvania state now? Henry M. Hoyt 17.386 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.pennsylvania)) (value (list (name fb:en.john_w_geary "John W. Geary") (name fb:en.mark_s_schweiker "Mark S. Schweiker") (name fb:en.henry_m_hoyt "Henry M. Hoyt") (name fb:en.gifford_pinchot "Gifford Pinchot") (name fb:en.arthur_james "Arthur James") (name fb:en.francis_r_shunk "Francis R. Shunk") (name fb:en.john_s_fine "John S. Fine") (name fb:en.tim_murphy_1952 "Timothy F. Murphy") (name fb:en.john_andrew_shulze "John Andrew Shulze") (name fb:en.william_bigler "William Bigler"))) (type fb:government.politician) who is the governor of pennsylvania state now? Gifford Pinchot 17.386 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.pennsylvania)) (value (list (name fb:en.john_w_geary "John W. Geary") (name fb:en.mark_s_schweiker "Mark S. Schweiker") (name fb:en.henry_m_hoyt "Henry M. Hoyt") (name fb:en.gifford_pinchot "Gifford Pinchot") (name fb:en.arthur_james "Arthur James") (name fb:en.francis_r_shunk "Francis R. Shunk") (name fb:en.john_s_fine "John S. Fine") (name fb:en.tim_murphy_1952 "Timothy F. Murphy") (name fb:en.john_andrew_shulze "John Andrew Shulze") (name fb:en.william_bigler "William Bigler"))) (type fb:government.politician) who is the governor of pennsylvania state now? Arthur James 17.386 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.pennsylvania)) (value (list (name fb:en.john_w_geary "John W. Geary") (name fb:en.mark_s_schweiker "Mark S. Schweiker") (name fb:en.henry_m_hoyt "Henry M. Hoyt") (name fb:en.gifford_pinchot "Gifford Pinchot") (name fb:en.arthur_james "Arthur James") (name fb:en.francis_r_shunk "Francis R. Shunk") (name fb:en.john_s_fine "John S. Fine") (name fb:en.tim_murphy_1952 "Timothy F. Murphy") (name fb:en.john_andrew_shulze "John Andrew Shulze") (name fb:en.william_bigler "William Bigler"))) (type fb:government.politician) who is the governor of pennsylvania state now? Francis R. Shunk 17.386 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.pennsylvania)) (value (list (name fb:en.john_w_geary "John W. Geary") (name fb:en.mark_s_schweiker "Mark S. Schweiker") (name fb:en.henry_m_hoyt "Henry M. Hoyt") (name fb:en.gifford_pinchot "Gifford Pinchot") (name fb:en.arthur_james "Arthur James") (name fb:en.francis_r_shunk "Francis R. Shunk") (name fb:en.john_s_fine "John S. Fine") (name fb:en.tim_murphy_1952 "Timothy F. Murphy") (name fb:en.john_andrew_shulze "John Andrew Shulze") (name fb:en.william_bigler "William Bigler"))) (type fb:government.politician) who is the governor of pennsylvania state now? John S. Fine 17.386 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.pennsylvania)) (value (list (name fb:en.john_w_geary "John W. Geary") (name fb:en.mark_s_schweiker "Mark S. Schweiker") (name fb:en.henry_m_hoyt "Henry M. Hoyt") (name fb:en.gifford_pinchot "Gifford Pinchot") (name fb:en.arthur_james "Arthur James") (name fb:en.francis_r_shunk "Francis R. Shunk") (name fb:en.john_s_fine "John S. Fine") (name fb:en.tim_murphy_1952 "Timothy F. Murphy") (name fb:en.john_andrew_shulze "John Andrew Shulze") (name fb:en.william_bigler "William Bigler"))) (type fb:government.politician) who is the governor of pennsylvania state now? Timothy F. Murphy 17.386 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.pennsylvania)) (value (list (name fb:en.john_w_geary "John W. Geary") (name fb:en.mark_s_schweiker "Mark S. Schweiker") (name fb:en.henry_m_hoyt "Henry M. Hoyt") (name fb:en.gifford_pinchot "Gifford Pinchot") (name fb:en.arthur_james "Arthur James") (name fb:en.francis_r_shunk "Francis R. Shunk") (name fb:en.john_s_fine "John S. Fine") (name fb:en.tim_murphy_1952 "Timothy F. Murphy") (name fb:en.john_andrew_shulze "John Andrew Shulze") (name fb:en.william_bigler "William Bigler"))) (type fb:government.politician) who is the governor of pennsylvania state now? John Andrew Shulze 17.386 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.pennsylvania)) (value (list (name fb:en.john_w_geary "John W. Geary") (name fb:en.mark_s_schweiker "Mark S. Schweiker") (name fb:en.henry_m_hoyt "Henry M. Hoyt") (name fb:en.gifford_pinchot "Gifford Pinchot") (name fb:en.arthur_james "Arthur James") (name fb:en.francis_r_shunk "Francis R. Shunk") (name fb:en.john_s_fine "John S. Fine") (name fb:en.tim_murphy_1952 "Timothy F. Murphy") (name fb:en.john_andrew_shulze "John Andrew Shulze") (name fb:en.william_bigler "William Bigler"))) (type fb:government.politician) who is the governor of pennsylvania state now? William Bigler 17.386 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.pennsylvania)) (value (list (name fb:en.john_w_geary "John W. Geary") (name fb:en.mark_s_schweiker "Mark S. Schweiker") (name fb:en.henry_m_hoyt "Henry M. Hoyt") (name fb:en.gifford_pinchot "Gifford Pinchot") (name fb:en.arthur_james "Arthur James") (name fb:en.francis_r_shunk "Francis R. Shunk") (name fb:en.john_s_fine "John S. Fine") (name fb:en.tim_murphy_1952 "Timothy F. Murphy") (name fb:en.john_andrew_shulze "John Andrew Shulze") (name fb:en.william_bigler "William Bigler"))) (type fb:government.politician) where does the celtics practice? University of Kansas 5.601 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.boston_celtics))) (value (list (name fb:en.university_of_kansas "University of Kansas") (name fb:en.oklahoma_state_university_stillwater "Oklahoma State University–Stillwater") (name fb:en.university_of_new_mexico "University of New Mexico") (name fb:en.georgetown_university "Georgetown University") (name fb:en.saint_josephs_university "Saint Joseph's University") (name fb:en.duke_university "Duke University") (name fb:en.villanova_university "Villanova University") (name fb:en.university_of_southern_california "University of Southern California") (name fb:en.boston_college "Boston College") (name fb:en.brigham_young_university "Brigham Young University"))) (type fb:education.educational_institution) where does the celtics practice? Oklahoma State University–Stillwater 5.601 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.boston_celtics))) (value (list (name fb:en.university_of_kansas "University of Kansas") (name fb:en.oklahoma_state_university_stillwater "Oklahoma State University–Stillwater") (name fb:en.university_of_new_mexico "University of New Mexico") (name fb:en.georgetown_university "Georgetown University") (name fb:en.saint_josephs_university "Saint Joseph's University") (name fb:en.duke_university "Duke University") (name fb:en.villanova_university "Villanova University") (name fb:en.university_of_southern_california "University of Southern California") (name fb:en.boston_college "Boston College") (name fb:en.brigham_young_university "Brigham Young University"))) (type fb:education.educational_institution) where does the celtics practice? University of New Mexico 5.601 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.boston_celtics))) (value (list (name fb:en.university_of_kansas "University of Kansas") (name fb:en.oklahoma_state_university_stillwater "Oklahoma State University–Stillwater") (name fb:en.university_of_new_mexico "University of New Mexico") (name fb:en.georgetown_university "Georgetown University") (name fb:en.saint_josephs_university "Saint Joseph's University") (name fb:en.duke_university "Duke University") (name fb:en.villanova_university "Villanova University") (name fb:en.university_of_southern_california "University of Southern California") (name fb:en.boston_college "Boston College") (name fb:en.brigham_young_university "Brigham Young University"))) (type fb:education.educational_institution) where does the celtics practice? Georgetown University 5.601 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.boston_celtics))) (value (list (name fb:en.university_of_kansas "University of Kansas") (name fb:en.oklahoma_state_university_stillwater "Oklahoma State University–Stillwater") (name fb:en.university_of_new_mexico "University of New Mexico") (name fb:en.georgetown_university "Georgetown University") (name fb:en.saint_josephs_university "Saint Joseph's University") (name fb:en.duke_university "Duke University") (name fb:en.villanova_university "Villanova University") (name fb:en.university_of_southern_california "University of Southern California") (name fb:en.boston_college "Boston College") (name fb:en.brigham_young_university "Brigham Young University"))) (type fb:education.educational_institution) where does the celtics practice? Saint Joseph's University 5.601 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.boston_celtics))) (value (list (name fb:en.university_of_kansas "University of Kansas") (name fb:en.oklahoma_state_university_stillwater "Oklahoma State University–Stillwater") (name fb:en.university_of_new_mexico "University of New Mexico") (name fb:en.georgetown_university "Georgetown University") (name fb:en.saint_josephs_university "Saint Joseph's University") (name fb:en.duke_university "Duke University") (name fb:en.villanova_university "Villanova University") (name fb:en.university_of_southern_california "University of Southern California") (name fb:en.boston_college "Boston College") (name fb:en.brigham_young_university "Brigham Young University"))) (type fb:education.educational_institution) where does the celtics practice? Duke University 5.601 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.boston_celtics))) (value (list (name fb:en.university_of_kansas "University of Kansas") (name fb:en.oklahoma_state_university_stillwater "Oklahoma State University–Stillwater") (name fb:en.university_of_new_mexico "University of New Mexico") (name fb:en.georgetown_university "Georgetown University") (name fb:en.saint_josephs_university "Saint Joseph's University") (name fb:en.duke_university "Duke University") (name fb:en.villanova_university "Villanova University") (name fb:en.university_of_southern_california "University of Southern California") (name fb:en.boston_college "Boston College") (name fb:en.brigham_young_university "Brigham Young University"))) (type fb:education.educational_institution) where does the celtics practice? Villanova University 5.601 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.boston_celtics))) (value (list (name fb:en.university_of_kansas "University of Kansas") (name fb:en.oklahoma_state_university_stillwater "Oklahoma State University–Stillwater") (name fb:en.university_of_new_mexico "University of New Mexico") (name fb:en.georgetown_university "Georgetown University") (name fb:en.saint_josephs_university "Saint Joseph's University") (name fb:en.duke_university "Duke University") (name fb:en.villanova_university "Villanova University") (name fb:en.university_of_southern_california "University of Southern California") (name fb:en.boston_college "Boston College") (name fb:en.brigham_young_university "Brigham Young University"))) (type fb:education.educational_institution) where does the celtics practice? University of Southern California 5.601 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.boston_celtics))) (value (list (name fb:en.university_of_kansas "University of Kansas") (name fb:en.oklahoma_state_university_stillwater "Oklahoma State University–Stillwater") (name fb:en.university_of_new_mexico "University of New Mexico") (name fb:en.georgetown_university "Georgetown University") (name fb:en.saint_josephs_university "Saint Joseph's University") (name fb:en.duke_university "Duke University") (name fb:en.villanova_university "Villanova University") (name fb:en.university_of_southern_california "University of Southern California") (name fb:en.boston_college "Boston College") (name fb:en.brigham_young_university "Brigham Young University"))) (type fb:education.educational_institution) where does the celtics practice? Boston College 5.601 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.boston_celtics))) (value (list (name fb:en.university_of_kansas "University of Kansas") (name fb:en.oklahoma_state_university_stillwater "Oklahoma State University–Stillwater") (name fb:en.university_of_new_mexico "University of New Mexico") (name fb:en.georgetown_university "Georgetown University") (name fb:en.saint_josephs_university "Saint Joseph's University") (name fb:en.duke_university "Duke University") (name fb:en.villanova_university "Villanova University") (name fb:en.university_of_southern_california "University of Southern California") (name fb:en.boston_college "Boston College") (name fb:en.brigham_young_university "Brigham Young University"))) (type fb:education.educational_institution) where does the celtics practice? Brigham Young University 5.601 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.professional_sports_team.draft_picks (var x)))) fb:en.boston_celtics))) (value (list (name fb:en.university_of_kansas "University of Kansas") (name fb:en.oklahoma_state_university_stillwater "Oklahoma State University–Stillwater") (name fb:en.university_of_new_mexico "University of New Mexico") (name fb:en.georgetown_university "Georgetown University") (name fb:en.saint_josephs_university "Saint Joseph's University") (name fb:en.duke_university "Duke University") (name fb:en.villanova_university "Villanova University") (name fb:en.university_of_southern_california "University of Southern California") (name fb:en.boston_college "Boston College") (name fb:en.brigham_young_university "Brigham Young University"))) (type fb:education.educational_institution) what did george washington do as a teenager? Associate Justice of the Supreme Court of the United States 11.188 formula ((lambda x (!fb:people.appointment.appointed_role (!fb:people.appointer.appointment_made (var x)))) fb:en.george_washington)) (value (list (name fb:en.associate_justice_of_the_supreme_court_of_the_united_states "Associate Justice of the Supreme Court of the United States") (name fb:en.chief_justice_of_the_united_states "Chief Justice of the United States"))) (type fb:people.appointed_role) what did george washington do as a teenager? Chief Justice of the United States 11.188 formula ((lambda x (!fb:people.appointment.appointed_role (!fb:people.appointer.appointment_made (var x)))) fb:en.george_washington)) (value (list (name fb:en.associate_justice_of_the_supreme_court_of_the_united_states "Associate Justice of the Supreme Court of the United States") (name fb:en.chief_justice_of_the_united_states "Chief Justice of the United States"))) (type fb:people.appointed_role) where bin laden got killed? Saudi Arabia 2.892 formula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.osama_bin_laden))) (value (list (name fb:en.pakistan Pakistan) (name fb:en.afghanistan Afghanistan) (name fb:en.sudan Sudan) (name fb:en.saudi_arabia "Saudi Arabia"))) (type fb:location.location) where does toronto get its water from? Exhibition Stadium 9.864 formula (and (fb:type.object.type fb:location.location) (fb:sports.sports_facility.teams fb:en.toronto_blue_jays))) (value (list (name fb:en.exhibition_stadium "Exhibition Stadium") (name fb:en.rogers_centre "Rogers Centre"))) (type fb:sports.sports_facility) where does toronto get its water from? Rogers Centre 9.864 formula (and (fb:type.object.type fb:location.location) (fb:sports.sports_facility.teams fb:en.toronto_blue_jays))) (value (list (name fb:en.exhibition_stadium "Exhibition Stadium") (name fb:en.rogers_centre "Rogers Centre"))) (type fb:sports.sports_facility) what language do people from bosnia speak? Bosnian language 12.197 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.bosnia_and_herzegovina))) (value (list (name fb:en.bosnian_language "Bosnian language") (name fb:en.croatian_language "Croatian language") (name fb:en.serbian_language "Serbian language"))) (type (union fb:language.human_language)) what language do people from bosnia speak? Croatian language 12.197 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.bosnia_and_herzegovina))) (value (list (name fb:en.bosnian_language "Bosnian language") (name fb:en.croatian_language "Croatian language") (name fb:en.serbian_language "Serbian language"))) (type (union fb:language.human_language)) what language do people from bosnia speak? Serbian language 12.197 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.bosnia_and_herzegovina))) (value (list (name fb:en.bosnian_language "Bosnian language") (name fb:en.croatian_language "Croatian language") (name fb:en.serbian_language "Serbian language"))) (type (union fb:language.human_language)) who does japan import from? United States dollar 7.702 formula ((lambda x (!fb:location.imports_and_exports.currency (!fb:location.statistical_region.places_imported_from (var x)))) fb:en.japan)) (value (list (name fb:en.us "United States dollar") (name fb:en.canadian_dollar "Canadian dollar"))) (type fb:finance.currency) who does japan import from? Canadian dollar 7.702 formula ((lambda x (!fb:location.imports_and_exports.currency (!fb:location.statistical_region.places_imported_from (var x)))) fb:en.japan)) (value (list (name fb:en.us "United States dollar") (name fb:en.canadian_dollar "Canadian dollar"))) (type fb:finance.currency) what is the name of sonia gandhi daughter? Rahul Gandhi 10.217 formula (!fb:people.person.children fb:en.sonia_gandhi)) (value (list (name fb:en.rahul_gandhi "Rahul Gandhi") (name fb:en.priyanka_gandhi "Priyanka Vadra"))) (type fb:people.person) what is the name of sonia gandhi daughter? Priyanka Vadra 10.217 formula (!fb:people.person.children fb:en.sonia_gandhi)) (value (list (name fb:en.rahul_gandhi "Rahul Gandhi") (name fb:en.priyanka_gandhi "Priyanka Vadra"))) (type fb:people.person) where did charles darwin die? Heart failure 9.32 formula (fb:people.cause_of_death.people fb:en.charles_darwin)) (value (list (name fb:en.congestive_heart_failure "Heart failure") (name fb:en.coronary_thrombosis "Coronary thrombosis"))) (type fb:people.cause_of_death) where did charles darwin die? Coronary thrombosis 9.32 formula (fb:people.cause_of_death.people fb:en.charles_darwin)) (value (list (name fb:en.congestive_heart_failure "Heart failure") (name fb:en.coronary_thrombosis "Coronary thrombosis"))) (type fb:people.cause_of_death) what movies does nick cannon play in? All That 11.855 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.nick_cannon))) (value (list (name fb:en.bobby Bobby) (name fb:en.drumline_2002 Drumline) (name fb:en.all_that "All That") (name fb:en.the_nick_cannon_show "The Nick Cannon Show"))) (type (union fb:award.award_nominated_work)) what movies does nick cannon play in? The Nick Cannon Show 11.855 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.nick_cannon))) (value (list (name fb:en.bobby Bobby) (name fb:en.drumline_2002 Drumline) (name fb:en.all_that "All That") (name fb:en.the_nick_cannon_show "The Nick Cannon Show"))) (type (union fb:award.award_nominated_work)) when did the big earthquake hit san francisco? Piper Halliwell 12.564 formula (fb:fictional_universe.fictional_character.place_of_birth fb:en.san_francisco)) (value (list (name fb:en.piper_halliwell "Piper Halliwell") (name fb:en.hikaru_sulu "Hikaru Sulu") (name fb:en.prue_halliwell "Prue Halliwell") (name fb:en.phoebe_halliwell "Phoebe Halliwell") (name fb:en.angar_the_screamer "Angar the Screamer") (name fb:en.chris_halliwell "Chris Halliwell") (name fb:en.wyatt_halliwell "Wyatt Halliwell"))) (type fb:fictional_universe.fictional_character) when did the big earthquake hit san francisco? Hikaru Sulu 12.564 formula (fb:fictional_universe.fictional_character.place_of_birth fb:en.san_francisco)) (value (list (name fb:en.piper_halliwell "Piper Halliwell") (name fb:en.hikaru_sulu "Hikaru Sulu") (name fb:en.prue_halliwell "Prue Halliwell") (name fb:en.phoebe_halliwell "Phoebe Halliwell") (name fb:en.angar_the_screamer "Angar the Screamer") (name fb:en.chris_halliwell "Chris Halliwell") (name fb:en.wyatt_halliwell "Wyatt Halliwell"))) (type fb:fictional_universe.fictional_character) when did the big earthquake hit san francisco? Prue Halliwell 12.564 formula (fb:fictional_universe.fictional_character.place_of_birth fb:en.san_francisco)) (value (list (name fb:en.piper_halliwell "Piper Halliwell") (name fb:en.hikaru_sulu "Hikaru Sulu") (name fb:en.prue_halliwell "Prue Halliwell") (name fb:en.phoebe_halliwell "Phoebe Halliwell") (name fb:en.angar_the_screamer "Angar the Screamer") (name fb:en.chris_halliwell "Chris Halliwell") (name fb:en.wyatt_halliwell "Wyatt Halliwell"))) (type fb:fictional_universe.fictional_character) when did the big earthquake hit san francisco? Phoebe Halliwell 12.564 formula (fb:fictional_universe.fictional_character.place_of_birth fb:en.san_francisco)) (value (list (name fb:en.piper_halliwell "Piper Halliwell") (name fb:en.hikaru_sulu "Hikaru Sulu") (name fb:en.prue_halliwell "Prue Halliwell") (name fb:en.phoebe_halliwell "Phoebe Halliwell") (name fb:en.angar_the_screamer "Angar the Screamer") (name fb:en.chris_halliwell "Chris Halliwell") (name fb:en.wyatt_halliwell "Wyatt Halliwell"))) (type fb:fictional_universe.fictional_character) when did the big earthquake hit san francisco? Angar the Screamer 12.564 formula (fb:fictional_universe.fictional_character.place_of_birth fb:en.san_francisco)) (value (list (name fb:en.piper_halliwell "Piper Halliwell") (name fb:en.hikaru_sulu "Hikaru Sulu") (name fb:en.prue_halliwell "Prue Halliwell") (name fb:en.phoebe_halliwell "Phoebe Halliwell") (name fb:en.angar_the_screamer "Angar the Screamer") (name fb:en.chris_halliwell "Chris Halliwell") (name fb:en.wyatt_halliwell "Wyatt Halliwell"))) (type fb:fictional_universe.fictional_character) when did the big earthquake hit san francisco? Chris Halliwell 12.564 formula (fb:fictional_universe.fictional_character.place_of_birth fb:en.san_francisco)) (value (list (name fb:en.piper_halliwell "Piper Halliwell") (name fb:en.hikaru_sulu "Hikaru Sulu") (name fb:en.prue_halliwell "Prue Halliwell") (name fb:en.phoebe_halliwell "Phoebe Halliwell") (name fb:en.angar_the_screamer "Angar the Screamer") (name fb:en.chris_halliwell "Chris Halliwell") (name fb:en.wyatt_halliwell "Wyatt Halliwell"))) (type fb:fictional_universe.fictional_character) when did the big earthquake hit san francisco? Wyatt Halliwell 12.564 formula (fb:fictional_universe.fictional_character.place_of_birth fb:en.san_francisco)) (value (list (name fb:en.piper_halliwell "Piper Halliwell") (name fb:en.hikaru_sulu "Hikaru Sulu") (name fb:en.prue_halliwell "Prue Halliwell") (name fb:en.phoebe_halliwell "Phoebe Halliwell") (name fb:en.angar_the_screamer "Angar the Screamer") (name fb:en.chris_halliwell "Chris Halliwell") (name fb:en.wyatt_halliwell "Wyatt Halliwell"))) (type fb:fictional_universe.fictional_character) who was king george vi married to? Queen Elizabeth The Queen Mother 14.383 formula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.george_vi_of_the_united_kingdom)) (value (list (name fb:en.elizabeth_bowes-lyon "Queen Elizabeth The Queen Mother"))) (type fb:people.person) who voiced darth vader in the original star wars movies? David Prowse 7.45 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who voiced darth vader in the original star wars movies? James Earl Jones 7.45 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who voiced darth vader in the original star wars movies? Hayden Christensen 7.45 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who voiced darth vader in the original star wars movies? Matt Lanter 7.45 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who voiced darth vader in the original star wars movies? Sebastian Shaw 7.45 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who voiced darth vader in the original star wars movies? Robert E. Bean 7.45 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who voiced darth vader in the original star wars movies? Jake Lloyd 7.45 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) what high school did maya angelou go to? George Washington High School 18.934 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.maya_angelou))) (value (list (name fb:en.george_washington_high_school "George Washington High School") (name fb:m.0t5458w "California Labor School"))) (type fb:education.educational_institution) what high school did maya angelou go to? California Labor School 18.934 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.maya_angelou))) (value (list (name fb:en.george_washington_high_school "George Washington High School") (name fb:m.0t5458w "California Labor School"))) (type fb:education.educational_institution) where did mubarak get his wealth? Al Minufiyah 4.22 formula (and (fb:type.object.type fb:location.location) (fb:location.location.people_born_here fb:en.hosni_mubarak))) (value (list (name fb:en.al_minufiyah "Al Minufiyah"))) (type fb:location.location) who was the leader of the first communist party of china? Li Zhaoxing 16.066 formula ((lambda x (!fb:government.political_party_tenure.politician (!fb:government.political_party.politicians_in_this_party (var x)))) fb:en.communist_party_of_china)) (value (list (name fb:en.li_zhaoxing "Li Zhaoxing") (name fb:en.lin_shusen "Lin Shusen") (name fb:en.zhang_wentian "Zhang Wentian") (name fb:en.zhao_hongzhu "Zhao Hongzhu") (name fb:en.li_keqiang "Li Keqiang") (name fb:en.huang_ju "Huang Ju") (name fb:en.li_ruihuan "Li Ruihuan") (name fb:en.zhang_guotao "Zhang Guotao") (name fb:en.rewi_alley "Rewi Alley") (name fb:en.bai_enpei "Bai Enpei"))) (type fb:government.politician) who was the leader of the first communist party of china? Lin Shusen 16.066 formula ((lambda x (!fb:government.political_party_tenure.politician (!fb:government.political_party.politicians_in_this_party (var x)))) fb:en.communist_party_of_china)) (value (list (name fb:en.li_zhaoxing "Li Zhaoxing") (name fb:en.lin_shusen "Lin Shusen") (name fb:en.zhang_wentian "Zhang Wentian") (name fb:en.zhao_hongzhu "Zhao Hongzhu") (name fb:en.li_keqiang "Li Keqiang") (name fb:en.huang_ju "Huang Ju") (name fb:en.li_ruihuan "Li Ruihuan") (name fb:en.zhang_guotao "Zhang Guotao") (name fb:en.rewi_alley "Rewi Alley") (name fb:en.bai_enpei "Bai Enpei"))) (type fb:government.politician) who was the leader of the first communist party of china? Zhang Wentian 16.066 formula ((lambda x (!fb:government.political_party_tenure.politician (!fb:government.political_party.politicians_in_this_party (var x)))) fb:en.communist_party_of_china)) (value (list (name fb:en.li_zhaoxing "Li Zhaoxing") (name fb:en.lin_shusen "Lin Shusen") (name fb:en.zhang_wentian "Zhang Wentian") (name fb:en.zhao_hongzhu "Zhao Hongzhu") (name fb:en.li_keqiang "Li Keqiang") (name fb:en.huang_ju "Huang Ju") (name fb:en.li_ruihuan "Li Ruihuan") (name fb:en.zhang_guotao "Zhang Guotao") (name fb:en.rewi_alley "Rewi Alley") (name fb:en.bai_enpei "Bai Enpei"))) (type fb:government.politician) who was the leader of the first communist party of china? Zhao Hongzhu 16.066 formula ((lambda x (!fb:government.political_party_tenure.politician (!fb:government.political_party.politicians_in_this_party (var x)))) fb:en.communist_party_of_china)) (value (list (name fb:en.li_zhaoxing "Li Zhaoxing") (name fb:en.lin_shusen "Lin Shusen") (name fb:en.zhang_wentian "Zhang Wentian") (name fb:en.zhao_hongzhu "Zhao Hongzhu") (name fb:en.li_keqiang "Li Keqiang") (name fb:en.huang_ju "Huang Ju") (name fb:en.li_ruihuan "Li Ruihuan") (name fb:en.zhang_guotao "Zhang Guotao") (name fb:en.rewi_alley "Rewi Alley") (name fb:en.bai_enpei "Bai Enpei"))) (type fb:government.politician) who was the leader of the first communist party of china? Li Keqiang 16.066 formula ((lambda x (!fb:government.political_party_tenure.politician (!fb:government.political_party.politicians_in_this_party (var x)))) fb:en.communist_party_of_china)) (value (list (name fb:en.li_zhaoxing "Li Zhaoxing") (name fb:en.lin_shusen "Lin Shusen") (name fb:en.zhang_wentian "Zhang Wentian") (name fb:en.zhao_hongzhu "Zhao Hongzhu") (name fb:en.li_keqiang "Li Keqiang") (name fb:en.huang_ju "Huang Ju") (name fb:en.li_ruihuan "Li Ruihuan") (name fb:en.zhang_guotao "Zhang Guotao") (name fb:en.rewi_alley "Rewi Alley") (name fb:en.bai_enpei "Bai Enpei"))) (type fb:government.politician) who was the leader of the first communist party of china? Huang Ju 16.066 formula ((lambda x (!fb:government.political_party_tenure.politician (!fb:government.political_party.politicians_in_this_party (var x)))) fb:en.communist_party_of_china)) (value (list (name fb:en.li_zhaoxing "Li Zhaoxing") (name fb:en.lin_shusen "Lin Shusen") (name fb:en.zhang_wentian "Zhang Wentian") (name fb:en.zhao_hongzhu "Zhao Hongzhu") (name fb:en.li_keqiang "Li Keqiang") (name fb:en.huang_ju "Huang Ju") (name fb:en.li_ruihuan "Li Ruihuan") (name fb:en.zhang_guotao "Zhang Guotao") (name fb:en.rewi_alley "Rewi Alley") (name fb:en.bai_enpei "Bai Enpei"))) (type fb:government.politician) who was the leader of the first communist party of china? Li Ruihuan 16.066 formula ((lambda x (!fb:government.political_party_tenure.politician (!fb:government.political_party.politicians_in_this_party (var x)))) fb:en.communist_party_of_china)) (value (list (name fb:en.li_zhaoxing "Li Zhaoxing") (name fb:en.lin_shusen "Lin Shusen") (name fb:en.zhang_wentian "Zhang Wentian") (name fb:en.zhao_hongzhu "Zhao Hongzhu") (name fb:en.li_keqiang "Li Keqiang") (name fb:en.huang_ju "Huang Ju") (name fb:en.li_ruihuan "Li Ruihuan") (name fb:en.zhang_guotao "Zhang Guotao") (name fb:en.rewi_alley "Rewi Alley") (name fb:en.bai_enpei "Bai Enpei"))) (type fb:government.politician) who was the leader of the first communist party of china? Zhang Guotao 16.066 formula ((lambda x (!fb:government.political_party_tenure.politician (!fb:government.political_party.politicians_in_this_party (var x)))) fb:en.communist_party_of_china)) (value (list (name fb:en.li_zhaoxing "Li Zhaoxing") (name fb:en.lin_shusen "Lin Shusen") (name fb:en.zhang_wentian "Zhang Wentian") (name fb:en.zhao_hongzhu "Zhao Hongzhu") (name fb:en.li_keqiang "Li Keqiang") (name fb:en.huang_ju "Huang Ju") (name fb:en.li_ruihuan "Li Ruihuan") (name fb:en.zhang_guotao "Zhang Guotao") (name fb:en.rewi_alley "Rewi Alley") (name fb:en.bai_enpei "Bai Enpei"))) (type fb:government.politician) who was the leader of the first communist party of china? Rewi Alley 16.066 formula ((lambda x (!fb:government.political_party_tenure.politician (!fb:government.political_party.politicians_in_this_party (var x)))) fb:en.communist_party_of_china)) (value (list (name fb:en.li_zhaoxing "Li Zhaoxing") (name fb:en.lin_shusen "Lin Shusen") (name fb:en.zhang_wentian "Zhang Wentian") (name fb:en.zhao_hongzhu "Zhao Hongzhu") (name fb:en.li_keqiang "Li Keqiang") (name fb:en.huang_ju "Huang Ju") (name fb:en.li_ruihuan "Li Ruihuan") (name fb:en.zhang_guotao "Zhang Guotao") (name fb:en.rewi_alley "Rewi Alley") (name fb:en.bai_enpei "Bai Enpei"))) (type fb:government.politician) who was the leader of the first communist party of china? Bai Enpei 16.066 formula ((lambda x (!fb:government.political_party_tenure.politician (!fb:government.political_party.politicians_in_this_party (var x)))) fb:en.communist_party_of_china)) (value (list (name fb:en.li_zhaoxing "Li Zhaoxing") (name fb:en.lin_shusen "Lin Shusen") (name fb:en.zhang_wentian "Zhang Wentian") (name fb:en.zhao_hongzhu "Zhao Hongzhu") (name fb:en.li_keqiang "Li Keqiang") (name fb:en.huang_ju "Huang Ju") (name fb:en.li_ruihuan "Li Ruihuan") (name fb:en.zhang_guotao "Zhang Guotao") (name fb:en.rewi_alley "Rewi Alley") (name fb:en.bai_enpei "Bai Enpei"))) (type fb:government.politician) what did miles davis died of? Respiratory failure 18.65 formula (fb:people.cause_of_death.people fb:en.miles_davis)) (value (list (name fb:en.pneumonia Pneumonia) (name fb:en.respiratory_failure "Respiratory failure") (name fb:en.stroke Stroke))) (type fb:people.cause_of_death) when did the detroit pistons last win the championship? 1990 NBA Finals 21.049 formula (fb:sports.sports_championship_event.champion fb:en.detroit_pistons)) (value (list (name fb:en.1990_nba_finals "1990 NBA Finals") (name fb:en.2004_nba_finals "2004 NBA Finals") (name fb:en.1989_nba_finals "1989 NBA Finals"))) (type fb:sports.sports_championship_event) when did the detroit pistons last win the championship? 2004 NBA Finals 21.049 formula (fb:sports.sports_championship_event.champion fb:en.detroit_pistons)) (value (list (name fb:en.1990_nba_finals "1990 NBA Finals") (name fb:en.2004_nba_finals "2004 NBA Finals") (name fb:en.1989_nba_finals "1989 NBA Finals"))) (type fb:sports.sports_championship_event) when did the detroit pistons last win the championship? 1989 NBA Finals 21.049 formula (fb:sports.sports_championship_event.champion fb:en.detroit_pistons)) (value (list (name fb:en.1990_nba_finals "1990 NBA Finals") (name fb:en.2004_nba_finals "2004 NBA Finals") (name fb:en.1989_nba_finals "1989 NBA Finals"))) (type fb:sports.sports_championship_event) when did the philadelphia flyers win the cup? 1975 Stanley Cup Finals 17.762 formula (fb:sports.sports_championship_event.champion fb:en.philadelphia_flyers)) (value (list (name fb:en.1975_stanley_cup_finals "1975 Stanley Cup Finals") (name fb:en.1974_stanley_cup_finals "1974 Stanley Cup Finals"))) (type fb:sports.sports_championship_event) when did the philadelphia flyers win the cup? 1974 Stanley Cup Finals 17.762 formula (fb:sports.sports_championship_event.champion fb:en.philadelphia_flyers)) (value (list (name fb:en.1975_stanley_cup_finals "1975 Stanley Cup Finals") (name fb:en.1974_stanley_cup_finals "1974 Stanley Cup Finals"))) (type fb:sports.sports_championship_event) who is number 22 for the dallas cowboys? Gerald Sensabaugh 12.077 formula ((lambda x (fb:american_football.football_player.former_teams (fb:american_football.football_historical_roster_position.team (var x)))) fb:en.dallas_cowboys)) (value (list (name fb:en.gerald_sensabaugh "Gerald Sensabaugh") (name fb:en.stephen_bowen_1984 "Stephen Bowen") (name fb:en.lance_rentzel "Lance Rentzel") (name fb:en.andre_gurode "Andre Gurode") (name fb:en.roy_williams_1980 "Roy Williams") (name fb:en.phillippi_sparks "Phillippi Sparks") (name fb:en.stephen_mcgee "Stephen McGee") (name fb:en.mike_ditka "Mike Ditka") (name fb:en.montrae_holland "Montrae Holland") (name fb:en.marvin_white "Marvin White"))) (type fb:american_football.football_player) who is number 22 for the dallas cowboys? Stephen Bowen 12.077 formula ((lambda x (fb:american_football.football_player.former_teams (fb:american_football.football_historical_roster_position.team (var x)))) fb:en.dallas_cowboys)) (value (list (name fb:en.gerald_sensabaugh "Gerald Sensabaugh") (name fb:en.stephen_bowen_1984 "Stephen Bowen") (name fb:en.lance_rentzel "Lance Rentzel") (name fb:en.andre_gurode "Andre Gurode") (name fb:en.roy_williams_1980 "Roy Williams") (name fb:en.phillippi_sparks "Phillippi Sparks") (name fb:en.stephen_mcgee "Stephen McGee") (name fb:en.mike_ditka "Mike Ditka") (name fb:en.montrae_holland "Montrae Holland") (name fb:en.marvin_white "Marvin White"))) (type fb:american_football.football_player) who is number 22 for the dallas cowboys? Lance Rentzel 12.077 formula ((lambda x (fb:american_football.football_player.former_teams (fb:american_football.football_historical_roster_position.team (var x)))) fb:en.dallas_cowboys)) (value (list (name fb:en.gerald_sensabaugh "Gerald Sensabaugh") (name fb:en.stephen_bowen_1984 "Stephen Bowen") (name fb:en.lance_rentzel "Lance Rentzel") (name fb:en.andre_gurode "Andre Gurode") (name fb:en.roy_williams_1980 "Roy Williams") (name fb:en.phillippi_sparks "Phillippi Sparks") (name fb:en.stephen_mcgee "Stephen McGee") (name fb:en.mike_ditka "Mike Ditka") (name fb:en.montrae_holland "Montrae Holland") (name fb:en.marvin_white "Marvin White"))) (type fb:american_football.football_player) who is number 22 for the dallas cowboys? Andre Gurode 12.077 formula ((lambda x (fb:american_football.football_player.former_teams (fb:american_football.football_historical_roster_position.team (var x)))) fb:en.dallas_cowboys)) (value (list (name fb:en.gerald_sensabaugh "Gerald Sensabaugh") (name fb:en.stephen_bowen_1984 "Stephen Bowen") (name fb:en.lance_rentzel "Lance Rentzel") (name fb:en.andre_gurode "Andre Gurode") (name fb:en.roy_williams_1980 "Roy Williams") (name fb:en.phillippi_sparks "Phillippi Sparks") (name fb:en.stephen_mcgee "Stephen McGee") (name fb:en.mike_ditka "Mike Ditka") (name fb:en.montrae_holland "Montrae Holland") (name fb:en.marvin_white "Marvin White"))) (type fb:american_football.football_player) who is number 22 for the dallas cowboys? Roy Williams 12.077 formula ((lambda x (fb:american_football.football_player.former_teams (fb:american_football.football_historical_roster_position.team (var x)))) fb:en.dallas_cowboys)) (value (list (name fb:en.gerald_sensabaugh "Gerald Sensabaugh") (name fb:en.stephen_bowen_1984 "Stephen Bowen") (name fb:en.lance_rentzel "Lance Rentzel") (name fb:en.andre_gurode "Andre Gurode") (name fb:en.roy_williams_1980 "Roy Williams") (name fb:en.phillippi_sparks "Phillippi Sparks") (name fb:en.stephen_mcgee "Stephen McGee") (name fb:en.mike_ditka "Mike Ditka") (name fb:en.montrae_holland "Montrae Holland") (name fb:en.marvin_white "Marvin White"))) (type fb:american_football.football_player) who is number 22 for the dallas cowboys? Phillippi Sparks 12.077 formula ((lambda x (fb:american_football.football_player.former_teams (fb:american_football.football_historical_roster_position.team (var x)))) fb:en.dallas_cowboys)) (value (list (name fb:en.gerald_sensabaugh "Gerald Sensabaugh") (name fb:en.stephen_bowen_1984 "Stephen Bowen") (name fb:en.lance_rentzel "Lance Rentzel") (name fb:en.andre_gurode "Andre Gurode") (name fb:en.roy_williams_1980 "Roy Williams") (name fb:en.phillippi_sparks "Phillippi Sparks") (name fb:en.stephen_mcgee "Stephen McGee") (name fb:en.mike_ditka "Mike Ditka") (name fb:en.montrae_holland "Montrae Holland") (name fb:en.marvin_white "Marvin White"))) (type fb:american_football.football_player) who is number 22 for the dallas cowboys? Stephen McGee 12.077 formula ((lambda x (fb:american_football.football_player.former_teams (fb:american_football.football_historical_roster_position.team (var x)))) fb:en.dallas_cowboys)) (value (list (name fb:en.gerald_sensabaugh "Gerald Sensabaugh") (name fb:en.stephen_bowen_1984 "Stephen Bowen") (name fb:en.lance_rentzel "Lance Rentzel") (name fb:en.andre_gurode "Andre Gurode") (name fb:en.roy_williams_1980 "Roy Williams") (name fb:en.phillippi_sparks "Phillippi Sparks") (name fb:en.stephen_mcgee "Stephen McGee") (name fb:en.mike_ditka "Mike Ditka") (name fb:en.montrae_holland "Montrae Holland") (name fb:en.marvin_white "Marvin White"))) (type fb:american_football.football_player) who is number 22 for the dallas cowboys? Mike Ditka 12.077 formula ((lambda x (fb:american_football.football_player.former_teams (fb:american_football.football_historical_roster_position.team (var x)))) fb:en.dallas_cowboys)) (value (list (name fb:en.gerald_sensabaugh "Gerald Sensabaugh") (name fb:en.stephen_bowen_1984 "Stephen Bowen") (name fb:en.lance_rentzel "Lance Rentzel") (name fb:en.andre_gurode "Andre Gurode") (name fb:en.roy_williams_1980 "Roy Williams") (name fb:en.phillippi_sparks "Phillippi Sparks") (name fb:en.stephen_mcgee "Stephen McGee") (name fb:en.mike_ditka "Mike Ditka") (name fb:en.montrae_holland "Montrae Holland") (name fb:en.marvin_white "Marvin White"))) (type fb:american_football.football_player) who is number 22 for the dallas cowboys? Montrae Holland 12.077 formula ((lambda x (fb:american_football.football_player.former_teams (fb:american_football.football_historical_roster_position.team (var x)))) fb:en.dallas_cowboys)) (value (list (name fb:en.gerald_sensabaugh "Gerald Sensabaugh") (name fb:en.stephen_bowen_1984 "Stephen Bowen") (name fb:en.lance_rentzel "Lance Rentzel") (name fb:en.andre_gurode "Andre Gurode") (name fb:en.roy_williams_1980 "Roy Williams") (name fb:en.phillippi_sparks "Phillippi Sparks") (name fb:en.stephen_mcgee "Stephen McGee") (name fb:en.mike_ditka "Mike Ditka") (name fb:en.montrae_holland "Montrae Holland") (name fb:en.marvin_white "Marvin White"))) (type fb:american_football.football_player) who is number 22 for the dallas cowboys? Marvin White 12.077 formula ((lambda x (fb:american_football.football_player.former_teams (fb:american_football.football_historical_roster_position.team (var x)))) fb:en.dallas_cowboys)) (value (list (name fb:en.gerald_sensabaugh "Gerald Sensabaugh") (name fb:en.stephen_bowen_1984 "Stephen Bowen") (name fb:en.lance_rentzel "Lance Rentzel") (name fb:en.andre_gurode "Andre Gurode") (name fb:en.roy_williams_1980 "Roy Williams") (name fb:en.phillippi_sparks "Phillippi Sparks") (name fb:en.stephen_mcgee "Stephen McGee") (name fb:en.mike_ditka "Mike Ditka") (name fb:en.montrae_holland "Montrae Holland") (name fb:en.marvin_white "Marvin White"))) (type fb:american_football.football_player) what county is st paul nc in? Collin County 10.933 formula (!fb:location.hud_county_place.county fb:en.st_paul_texas)) (value (list (name fb:en.collin_county "Collin County"))) (type fb:location.us_county) where is olympic national park wa? National park 0.716 formula (!fb:protected_sites.protected_site.iucn_category fb:en.olympic_national_park)) (value (list (name fb:en.national_park "National park"))) (type fb:protected_sites.iucn_category) where did nat turner 1831 rebellion occur? Southampton County 2.22 formula (and (fb:type.object.type fb:location.location) (fb:location.location.people_born_here fb:en.nat_turner))) (value (list (name fb:en.southampton_county "Southampton County"))) (type fb:location.location) who would play luke skywalker? Mark Hamill 9.59 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.luke_skywalker)) (value (list (name fb:en.mark_hamill "Mark Hamill"))) (type fb:film.actor) who won the presidential election in egypt 2012? Hesham Kandil 16.515 formula (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.egypt) (fb:government.government_position_held.from (date 2012 -1 -1))))) (value (list (name fb:m.0kb9hhw "Hesham Kandil") (name fb:m.0hzrhrc "Saad El-Katatni") (name fb:m.0gy0m9w "Mohamed Morsi"))) (type fb:government.politician) who won the presidential election in egypt 2012? Saad El-Katatni 16.515 formula (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.egypt) (fb:government.government_position_held.from (date 2012 -1 -1))))) (value (list (name fb:m.0kb9hhw "Hesham Kandil") (name fb:m.0hzrhrc "Saad El-Katatni") (name fb:m.0gy0m9w "Mohamed Morsi"))) (type fb:government.politician) who won the presidential election in egypt 2012? Mohamed Morsi 16.515 formula (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.egypt) (fb:government.government_position_held.from (date 2012 -1 -1))))) (value (list (name fb:m.0kb9hhw "Hesham Kandil") (name fb:m.0hzrhrc "Saad El-Katatni") (name fb:m.0gy0m9w "Mohamed Morsi"))) (type fb:government.politician) what state is barack obama from? Barack Obama (Fred Armisen) 7.558 formula (!fb:base.saturdaynightlive.person_impersonated_on_snl.snl_impersonations fb:en.barack_obama)) (value (list (name fb:en.barack_obama_fred_armisen "Barack Obama (Fred Armisen)"))) (type fb:base.saturdaynightlive.snl_character) what years did joe montana win super bowl? Super Bowl XXXVII 9.723 formula (and (fb:type.object.type fb:sports.sports_championship_event) (!fb:sports.sports_championship.events fb:en.super_bowl))) (value (list (name fb:en.super_bowl_xxxvii "Super Bowl XXXVII") (name fb:en.super_bowl_xxii "Super Bowl XXII") (name fb:en.super_bowl_xi "Super Bowl XI") (name fb:en.super_bowl_xiii "Super Bowl XIII") (name fb:en.super_bowl_xviii "Super Bowl XVIII") (name fb:en.super_bowl_xliv "Super Bowl XLIV") (name fb:en.super_bowl_xlvi "Super Bowl XLVI") (name fb:en.super_bowl_xxvii "Super Bowl XXVII") (name fb:en.super_bowl_iii "Super Bowl III") (name fb:en.super_bowl_xxvi "Super Bowl XXVI"))) (type (union fb:sports.sports_championship_event)) what years did joe montana win super bowl? Super Bowl XXII 9.723 formula (and (fb:type.object.type fb:sports.sports_championship_event) (!fb:sports.sports_championship.events fb:en.super_bowl))) (value (list (name fb:en.super_bowl_xxxvii "Super Bowl XXXVII") (name fb:en.super_bowl_xxii "Super Bowl XXII") (name fb:en.super_bowl_xi "Super Bowl XI") (name fb:en.super_bowl_xiii "Super Bowl XIII") (name fb:en.super_bowl_xviii "Super Bowl XVIII") (name fb:en.super_bowl_xliv "Super Bowl XLIV") (name fb:en.super_bowl_xlvi "Super Bowl XLVI") (name fb:en.super_bowl_xxvii "Super Bowl XXVII") (name fb:en.super_bowl_iii "Super Bowl III") (name fb:en.super_bowl_xxvi "Super Bowl XXVI"))) (type (union fb:sports.sports_championship_event)) what years did joe montana win super bowl? Super Bowl XI 9.723 formula (and (fb:type.object.type fb:sports.sports_championship_event) (!fb:sports.sports_championship.events fb:en.super_bowl))) (value (list (name fb:en.super_bowl_xxxvii "Super Bowl XXXVII") (name fb:en.super_bowl_xxii "Super Bowl XXII") (name fb:en.super_bowl_xi "Super Bowl XI") (name fb:en.super_bowl_xiii "Super Bowl XIII") (name fb:en.super_bowl_xviii "Super Bowl XVIII") (name fb:en.super_bowl_xliv "Super Bowl XLIV") (name fb:en.super_bowl_xlvi "Super Bowl XLVI") (name fb:en.super_bowl_xxvii "Super Bowl XXVII") (name fb:en.super_bowl_iii "Super Bowl III") (name fb:en.super_bowl_xxvi "Super Bowl XXVI"))) (type (union fb:sports.sports_championship_event)) what years did joe montana win super bowl? Super Bowl XIII 9.723 formula (and (fb:type.object.type fb:sports.sports_championship_event) (!fb:sports.sports_championship.events fb:en.super_bowl))) (value (list (name fb:en.super_bowl_xxxvii "Super Bowl XXXVII") (name fb:en.super_bowl_xxii "Super Bowl XXII") (name fb:en.super_bowl_xi "Super Bowl XI") (name fb:en.super_bowl_xiii "Super Bowl XIII") (name fb:en.super_bowl_xviii "Super Bowl XVIII") (name fb:en.super_bowl_xliv "Super Bowl XLIV") (name fb:en.super_bowl_xlvi "Super Bowl XLVI") (name fb:en.super_bowl_xxvii "Super Bowl XXVII") (name fb:en.super_bowl_iii "Super Bowl III") (name fb:en.super_bowl_xxvi "Super Bowl XXVI"))) (type (union fb:sports.sports_championship_event)) what years did joe montana win super bowl? Super Bowl XVIII 9.723 formula (and (fb:type.object.type fb:sports.sports_championship_event) (!fb:sports.sports_championship.events fb:en.super_bowl))) (value (list (name fb:en.super_bowl_xxxvii "Super Bowl XXXVII") (name fb:en.super_bowl_xxii "Super Bowl XXII") (name fb:en.super_bowl_xi "Super Bowl XI") (name fb:en.super_bowl_xiii "Super Bowl XIII") (name fb:en.super_bowl_xviii "Super Bowl XVIII") (name fb:en.super_bowl_xliv "Super Bowl XLIV") (name fb:en.super_bowl_xlvi "Super Bowl XLVI") (name fb:en.super_bowl_xxvii "Super Bowl XXVII") (name fb:en.super_bowl_iii "Super Bowl III") (name fb:en.super_bowl_xxvi "Super Bowl XXVI"))) (type (union fb:sports.sports_championship_event)) what years did joe montana win super bowl? Super Bowl XLIV 9.723 formula (and (fb:type.object.type fb:sports.sports_championship_event) (!fb:sports.sports_championship.events fb:en.super_bowl))) (value (list (name fb:en.super_bowl_xxxvii "Super Bowl XXXVII") (name fb:en.super_bowl_xxii "Super Bowl XXII") (name fb:en.super_bowl_xi "Super Bowl XI") (name fb:en.super_bowl_xiii "Super Bowl XIII") (name fb:en.super_bowl_xviii "Super Bowl XVIII") (name fb:en.super_bowl_xliv "Super Bowl XLIV") (name fb:en.super_bowl_xlvi "Super Bowl XLVI") (name fb:en.super_bowl_xxvii "Super Bowl XXVII") (name fb:en.super_bowl_iii "Super Bowl III") (name fb:en.super_bowl_xxvi "Super Bowl XXVI"))) (type (union fb:sports.sports_championship_event)) what years did joe montana win super bowl? Super Bowl XLVI 9.723 formula (and (fb:type.object.type fb:sports.sports_championship_event) (!fb:sports.sports_championship.events fb:en.super_bowl))) (value (list (name fb:en.super_bowl_xxxvii "Super Bowl XXXVII") (name fb:en.super_bowl_xxii "Super Bowl XXII") (name fb:en.super_bowl_xi "Super Bowl XI") (name fb:en.super_bowl_xiii "Super Bowl XIII") (name fb:en.super_bowl_xviii "Super Bowl XVIII") (name fb:en.super_bowl_xliv "Super Bowl XLIV") (name fb:en.super_bowl_xlvi "Super Bowl XLVI") (name fb:en.super_bowl_xxvii "Super Bowl XXVII") (name fb:en.super_bowl_iii "Super Bowl III") (name fb:en.super_bowl_xxvi "Super Bowl XXVI"))) (type (union fb:sports.sports_championship_event)) what years did joe montana win super bowl? Super Bowl XXVII 9.723 formula (and (fb:type.object.type fb:sports.sports_championship_event) (!fb:sports.sports_championship.events fb:en.super_bowl))) (value (list (name fb:en.super_bowl_xxxvii "Super Bowl XXXVII") (name fb:en.super_bowl_xxii "Super Bowl XXII") (name fb:en.super_bowl_xi "Super Bowl XI") (name fb:en.super_bowl_xiii "Super Bowl XIII") (name fb:en.super_bowl_xviii "Super Bowl XVIII") (name fb:en.super_bowl_xliv "Super Bowl XLIV") (name fb:en.super_bowl_xlvi "Super Bowl XLVI") (name fb:en.super_bowl_xxvii "Super Bowl XXVII") (name fb:en.super_bowl_iii "Super Bowl III") (name fb:en.super_bowl_xxvi "Super Bowl XXVI"))) (type (union fb:sports.sports_championship_event)) what years did joe montana win super bowl? Super Bowl III 9.723 formula (and (fb:type.object.type fb:sports.sports_championship_event) (!fb:sports.sports_championship.events fb:en.super_bowl))) (value (list (name fb:en.super_bowl_xxxvii "Super Bowl XXXVII") (name fb:en.super_bowl_xxii "Super Bowl XXII") (name fb:en.super_bowl_xi "Super Bowl XI") (name fb:en.super_bowl_xiii "Super Bowl XIII") (name fb:en.super_bowl_xviii "Super Bowl XVIII") (name fb:en.super_bowl_xliv "Super Bowl XLIV") (name fb:en.super_bowl_xlvi "Super Bowl XLVI") (name fb:en.super_bowl_xxvii "Super Bowl XXVII") (name fb:en.super_bowl_iii "Super Bowl III") (name fb:en.super_bowl_xxvi "Super Bowl XXVI"))) (type (union fb:sports.sports_championship_event)) what years did joe montana win super bowl? Super Bowl XXVI 9.723 formula (and (fb:type.object.type fb:sports.sports_championship_event) (!fb:sports.sports_championship.events fb:en.super_bowl))) (value (list (name fb:en.super_bowl_xxxvii "Super Bowl XXXVII") (name fb:en.super_bowl_xxii "Super Bowl XXII") (name fb:en.super_bowl_xi "Super Bowl XI") (name fb:en.super_bowl_xiii "Super Bowl XIII") (name fb:en.super_bowl_xviii "Super Bowl XVIII") (name fb:en.super_bowl_xliv "Super Bowl XLIV") (name fb:en.super_bowl_xlvi "Super Bowl XLVI") (name fb:en.super_bowl_xxvii "Super Bowl XXVII") (name fb:en.super_bowl_iii "Super Bowl III") (name fb:en.super_bowl_xxvi "Super Bowl XXVI"))) (type (union fb:sports.sports_championship_event)) who should the minnesota vikings draft? Erasmus James 12.778 formula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.minnesota_vikings)) (value (list (name fb:en.erasmus_james "Erasmus James") (name fb:en.adrian_peterson "Adrian Peterson") (name fb:en.randy_moss "Randy Moss") (name fb:en.kevin_williams "Kevin Williams") (name fb:en.chad_greenway "Chad Greenway") (name fb:en.sidney_rice "Sidney Rice") (name fb:en.troy_williamson "Troy Williamson") (name fb:en.kenechi_udeze "Kenechi Udeze"))) (type fb:sports.drafted_athlete) who should the minnesota vikings draft? Adrian Peterson 12.778 formula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.minnesota_vikings)) (value (list (name fb:en.erasmus_james "Erasmus James") (name fb:en.adrian_peterson "Adrian Peterson") (name fb:en.randy_moss "Randy Moss") (name fb:en.kevin_williams "Kevin Williams") (name fb:en.chad_greenway "Chad Greenway") (name fb:en.sidney_rice "Sidney Rice") (name fb:en.troy_williamson "Troy Williamson") (name fb:en.kenechi_udeze "Kenechi Udeze"))) (type fb:sports.drafted_athlete) who should the minnesota vikings draft? Randy Moss 12.778 formula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.minnesota_vikings)) (value (list (name fb:en.erasmus_james "Erasmus James") (name fb:en.adrian_peterson "Adrian Peterson") (name fb:en.randy_moss "Randy Moss") (name fb:en.kevin_williams "Kevin Williams") (name fb:en.chad_greenway "Chad Greenway") (name fb:en.sidney_rice "Sidney Rice") (name fb:en.troy_williamson "Troy Williamson") (name fb:en.kenechi_udeze "Kenechi Udeze"))) (type fb:sports.drafted_athlete) who should the minnesota vikings draft? Kevin Williams 12.778 formula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.minnesota_vikings)) (value (list (name fb:en.erasmus_james "Erasmus James") (name fb:en.adrian_peterson "Adrian Peterson") (name fb:en.randy_moss "Randy Moss") (name fb:en.kevin_williams "Kevin Williams") (name fb:en.chad_greenway "Chad Greenway") (name fb:en.sidney_rice "Sidney Rice") (name fb:en.troy_williamson "Troy Williamson") (name fb:en.kenechi_udeze "Kenechi Udeze"))) (type fb:sports.drafted_athlete) who should the minnesota vikings draft? Chad Greenway 12.778 formula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.minnesota_vikings)) (value (list (name fb:en.erasmus_james "Erasmus James") (name fb:en.adrian_peterson "Adrian Peterson") (name fb:en.randy_moss "Randy Moss") (name fb:en.kevin_williams "Kevin Williams") (name fb:en.chad_greenway "Chad Greenway") (name fb:en.sidney_rice "Sidney Rice") (name fb:en.troy_williamson "Troy Williamson") (name fb:en.kenechi_udeze "Kenechi Udeze"))) (type fb:sports.drafted_athlete) who should the minnesota vikings draft? Sidney Rice 12.778 formula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.minnesota_vikings)) (value (list (name fb:en.erasmus_james "Erasmus James") (name fb:en.adrian_peterson "Adrian Peterson") (name fb:en.randy_moss "Randy Moss") (name fb:en.kevin_williams "Kevin Williams") (name fb:en.chad_greenway "Chad Greenway") (name fb:en.sidney_rice "Sidney Rice") (name fb:en.troy_williamson "Troy Williamson") (name fb:en.kenechi_udeze "Kenechi Udeze"))) (type fb:sports.drafted_athlete) who should the minnesota vikings draft? Troy Williamson 12.778 formula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.minnesota_vikings)) (value (list (name fb:en.erasmus_james "Erasmus James") (name fb:en.adrian_peterson "Adrian Peterson") (name fb:en.randy_moss "Randy Moss") (name fb:en.kevin_williams "Kevin Williams") (name fb:en.chad_greenway "Chad Greenway") (name fb:en.sidney_rice "Sidney Rice") (name fb:en.troy_williamson "Troy Williamson") (name fb:en.kenechi_udeze "Kenechi Udeze"))) (type fb:sports.drafted_athlete) who should the minnesota vikings draft? Kenechi Udeze 12.778 formula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.minnesota_vikings)) (value (list (name fb:en.erasmus_james "Erasmus James") (name fb:en.adrian_peterson "Adrian Peterson") (name fb:en.randy_moss "Randy Moss") (name fb:en.kevin_williams "Kevin Williams") (name fb:en.chad_greenway "Chad Greenway") (name fb:en.sidney_rice "Sidney Rice") (name fb:en.troy_williamson "Troy Williamson") (name fb:en.kenechi_udeze "Kenechi Udeze"))) (type fb:sports.drafted_athlete) what awards gary paulsen won? Newbery Honor 8.661 formula (and (fb:type.object.type fb:award.award_category) ((lambda x (fb:award.award_category.winners (fb:award.award_honor.award_winner (var x)))) fb:en.gary_paulsen))) (value (list (name fb:en.newbery_honor "Newbery Honor") (name fb:en.anne_v_zarrow_award_for_young_readers_literature "Anne V. Zarrow Award for Young Readers' Literature") (name fb:en.dorothy_canfield_fisher_childrens_book_award "Dorothy Canfield Fisher Children's Book Award") (name fb:en.spur_award_for_best_juvenile_nonfiction "Spur Award for Best Juvenile Nonfiction") (name fb:en.regina_medal "Regina Medal") (name fb:en.spur_award_for_best_juvenile_fiction "Spur Award for Best Juvenile Fiction"))) (type (union fb:award.award_category)) what awards gary paulsen won? Anne V. Zarrow Award for Young Readers' Literature 8.661 formula (and (fb:type.object.type fb:award.award_category) ((lambda x (fb:award.award_category.winners (fb:award.award_honor.award_winner (var x)))) fb:en.gary_paulsen))) (value (list (name fb:en.newbery_honor "Newbery Honor") (name fb:en.anne_v_zarrow_award_for_young_readers_literature "Anne V. Zarrow Award for Young Readers' Literature") (name fb:en.dorothy_canfield_fisher_childrens_book_award "Dorothy Canfield Fisher Children's Book Award") (name fb:en.spur_award_for_best_juvenile_nonfiction "Spur Award for Best Juvenile Nonfiction") (name fb:en.regina_medal "Regina Medal") (name fb:en.spur_award_for_best_juvenile_fiction "Spur Award for Best Juvenile Fiction"))) (type (union fb:award.award_category)) what awards gary paulsen won? Dorothy Canfield Fisher Children's Book Award 8.661 formula (and (fb:type.object.type fb:award.award_category) ((lambda x (fb:award.award_category.winners (fb:award.award_honor.award_winner (var x)))) fb:en.gary_paulsen))) (value (list (name fb:en.newbery_honor "Newbery Honor") (name fb:en.anne_v_zarrow_award_for_young_readers_literature "Anne V. Zarrow Award for Young Readers' Literature") (name fb:en.dorothy_canfield_fisher_childrens_book_award "Dorothy Canfield Fisher Children's Book Award") (name fb:en.spur_award_for_best_juvenile_nonfiction "Spur Award for Best Juvenile Nonfiction") (name fb:en.regina_medal "Regina Medal") (name fb:en.spur_award_for_best_juvenile_fiction "Spur Award for Best Juvenile Fiction"))) (type (union fb:award.award_category)) what awards gary paulsen won? Spur Award for Best Juvenile Nonfiction 8.661 formula (and (fb:type.object.type fb:award.award_category) ((lambda x (fb:award.award_category.winners (fb:award.award_honor.award_winner (var x)))) fb:en.gary_paulsen))) (value (list (name fb:en.newbery_honor "Newbery Honor") (name fb:en.anne_v_zarrow_award_for_young_readers_literature "Anne V. Zarrow Award for Young Readers' Literature") (name fb:en.dorothy_canfield_fisher_childrens_book_award "Dorothy Canfield Fisher Children's Book Award") (name fb:en.spur_award_for_best_juvenile_nonfiction "Spur Award for Best Juvenile Nonfiction") (name fb:en.regina_medal "Regina Medal") (name fb:en.spur_award_for_best_juvenile_fiction "Spur Award for Best Juvenile Fiction"))) (type (union fb:award.award_category)) what awards gary paulsen won? Regina Medal 8.661 formula (and (fb:type.object.type fb:award.award_category) ((lambda x (fb:award.award_category.winners (fb:award.award_honor.award_winner (var x)))) fb:en.gary_paulsen))) (value (list (name fb:en.newbery_honor "Newbery Honor") (name fb:en.anne_v_zarrow_award_for_young_readers_literature "Anne V. Zarrow Award for Young Readers' Literature") (name fb:en.dorothy_canfield_fisher_childrens_book_award "Dorothy Canfield Fisher Children's Book Award") (name fb:en.spur_award_for_best_juvenile_nonfiction "Spur Award for Best Juvenile Nonfiction") (name fb:en.regina_medal "Regina Medal") (name fb:en.spur_award_for_best_juvenile_fiction "Spur Award for Best Juvenile Fiction"))) (type (union fb:award.award_category)) what awards gary paulsen won? Spur Award for Best Juvenile Fiction 8.661 formula (and (fb:type.object.type fb:award.award_category) ((lambda x (fb:award.award_category.winners (fb:award.award_honor.award_winner (var x)))) fb:en.gary_paulsen))) (value (list (name fb:en.newbery_honor "Newbery Honor") (name fb:en.anne_v_zarrow_award_for_young_readers_literature "Anne V. Zarrow Award for Young Readers' Literature") (name fb:en.dorothy_canfield_fisher_childrens_book_award "Dorothy Canfield Fisher Children's Book Award") (name fb:en.spur_award_for_best_juvenile_nonfiction "Spur Award for Best Juvenile Nonfiction") (name fb:en.regina_medal "Regina Medal") (name fb:en.spur_award_for_best_juvenile_fiction "Spur Award for Best Juvenile Fiction"))) (type (union fb:award.award_category)) where did alexander graham bell die? Diabetes mellitus 9.379 formula (fb:people.cause_of_death.people fb:en.alexander_graham_bell)) (value (list (name fb:en.diabetes_mellitus "Diabetes mellitus") (name fb:en.pernicious_anemia "Pernicious anemia"))) (type fb:people.cause_of_death) where did alexander graham bell die? Pernicious anemia 9.379 formula (fb:people.cause_of_death.people fb:en.alexander_graham_bell)) (value (list (name fb:en.diabetes_mellitus "Diabetes mellitus") (name fb:en.pernicious_anemia "Pernicious anemia"))) (type fb:people.cause_of_death) what year did the golden state warriors win their first nba championship? 1975 NBA Finals 17.537 formula (and (fb:type.object.type fb:sports.sports_championship_event) (fb:sports.sports_championship_event.champion fb:en.golden_state_warriors))) (value (list (name fb:en.1975_nba_finals "1975 NBA Finals"))) (type fb:sports.sports_championship_event) what currency should i take to turkey? Turkish lira 23.416 formula (!fb:location.country.currency_used fb:en.turkey)) (value (list (name fb:en.turkish_lira "Turkish lira"))) (type fb:finance.currency) what type of government did mexico have? Federal republic 12.536 formula (fb:government.form_of_government.countries fb:en.mexico)) (value (list (name fb:en.federal_republic "Federal republic") (name fb:en.presidential_system "Presidential system") (name fb:en.constitutional_republic "Constitutional republic"))) (type fb:government.form_of_government) what type of government did mexico have? Presidential system 12.536 formula (fb:government.form_of_government.countries fb:en.mexico)) (value (list (name fb:en.federal_republic "Federal republic") (name fb:en.presidential_system "Presidential system") (name fb:en.constitutional_republic "Constitutional republic"))) (type fb:government.form_of_government) what type of government did mexico have? Constitutional republic 12.536 formula (fb:government.form_of_government.countries fb:en.mexico)) (value (list (name fb:en.federal_republic "Federal republic") (name fb:en.presidential_system "Presidential system") (name fb:en.constitutional_republic "Constitutional republic"))) (type fb:government.form_of_government) what countries are in the uk yahoo? United Kingdom 16.246 formula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland "Northern Ireland") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain "Kingdom of Great Britain") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england "Kingdom of England") (name fb:en.isle_of_man "Isle of Man"))) (type (union fb:location.country)) what countries are in the uk yahoo? Northern Ireland 16.246 formula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland "Northern Ireland") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain "Kingdom of Great Britain") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england "Kingdom of England") (name fb:en.isle_of_man "Isle of Man"))) (type (union fb:location.country)) what countries are in the uk yahoo? Kingdom of Great Britain 16.246 formula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland "Northern Ireland") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain "Kingdom of Great Britain") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england "Kingdom of England") (name fb:en.isle_of_man "Isle of Man"))) (type (union fb:location.country)) what countries are in the uk yahoo? Kingdom of England 16.246 formula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland "Northern Ireland") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain "Kingdom of Great Britain") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england "Kingdom of England") (name fb:en.isle_of_man "Isle of Man"))) (type (union fb:location.country)) what countries are in the uk yahoo? Isle of Man 16.246 formula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland "Northern Ireland") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain "Kingdom of Great Britain") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england "Kingdom of England") (name fb:en.isle_of_man "Isle of Man"))) (type (union fb:location.country)) what superbowl did the baltimore ravens win? Super Bowl XLVII 16.027 formula (fb:sports.sports_championship_event.champion fb:en.baltimore_ravens)) (value (list (name fb:en.super_bowl_xlvii "Super Bowl XLVII") (name fb:en.super_bowl_xxxv "Super Bowl XXXV"))) (type fb:sports.sports_championship_event) what superbowl did the baltimore ravens win? Super Bowl XXXV 16.027 formula (fb:sports.sports_championship_event.champion fb:en.baltimore_ravens)) (value (list (name fb:en.super_bowl_xlvii "Super Bowl XLVII") (name fb:en.super_bowl_xxxv "Super Bowl XXXV"))) (type fb:sports.sports_championship_event) what is the language of russia s spoken? Russian Language 18.874 formula (!fb:location.country.official_language fb:en.russia)) (value (list (name fb:en.russian_language "Russian Language"))) (type fb:language.human_language) who played lauren reed on alias? Melissa George 4.213 formula ((lambda x (fb:tv.tv_actor.starring_roles (fb:tv.regular_tv_appearance.character (var x)))) fb:en.lauren_reed)) (value (list (name fb:en.melissa_george "Melissa George"))) (type fb:tv.tv_actor) who is the king of cambodia now? Hun Sen 13.339 formula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.cambodia)) (value (list (name fb:en.hun_sen "Hun Sen") (name fb:en.norodom_sihamoni "Norodom Sihamoni"))) (type fb:government.politician) who is the king of cambodia now? Norodom Sihamoni 13.339 formula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.cambodia)) (value (list (name fb:en.hun_sen "Hun Sen") (name fb:en.norodom_sihamoni "Norodom Sihamoni"))) (type fb:government.politician) who are serena williams parents? Oracene Price 8.701 formula (!fb:people.person.parents fb:en.serena_williams)) (value (list (name fb:en.oracene_williams "Oracene Price") (name fb:en.richard_williams_1951 "Richard Williams"))) (type fb:people.person) who are serena williams parents? Richard Williams 8.701 formula (!fb:people.person.parents fb:en.serena_williams)) (value (list (name fb:en.oracene_williams "Oracene Price") (name fb:en.richard_williams_1951 "Richard Williams"))) (type fb:people.person) what schools did sir isaac newton go to? The King's School, Grantham 19.175 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.sir_newton_isaac))) (value (list (name fb:en.the_kings_school_grantham "The King's School, Grantham") (name fb:en.trinity_college_cambridge "Trinity College, Cambridge"))) (type fb:education.educational_institution) what schools did sir isaac newton go to? Trinity College, Cambridge 19.175 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.sir_newton_isaac))) (value (list (name fb:en.the_kings_school_grantham "The King's School, Grantham") (name fb:en.trinity_college_cambridge "Trinity College, Cambridge"))) (type fb:education.educational_institution) what was the cause of death for huell howser? Prostate cancer 17.228 formula (and (fb:type.object.type fb:people.cause_of_death) (!fb:people.deceased_person.cause_of_death fb:en.huell_howser))) (value (list (name fb:en.prostate_cancer "Prostate cancer"))) (type (union fb:people.cause_of_death)) what books are written by suzanne collins? The Hunger Games 14.513 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.suzanne_collins))) (value (list (name fb:en.the_hunger_games "The Hunger Games") (name fb:en.mockingjay Mockingjay) (name fb:en.gregor_and_the_marks_of_secret "Gregor and the Marks of Secret") (name fb:m.04t448h "Gregor and the Code of Claw") (name fb:en.gregor_the_overlander "Gregor the Overlander") (name fb:m.06nzqfh 12) (name fb:en.when_charlie_mcbutton_lost_power "When Charlie McButton lost power") (name fb:m.0pbrmvq "The Hunger Games Trilogy Boxed Set") (name fb:m.05p6hh0 "Catching Fire") (name fb:en.gregor_and_the_prophecy_of_bane "Gregor and the Prophecy of Bane"))) (type (union fb:book.book)) what books are written by suzanne collins? Gregor and the Marks of Secret 14.513 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.suzanne_collins))) (value (list (name fb:en.the_hunger_games "The Hunger Games") (name fb:en.mockingjay Mockingjay) (name fb:en.gregor_and_the_marks_of_secret "Gregor and the Marks of Secret") (name fb:m.04t448h "Gregor and the Code of Claw") (name fb:en.gregor_the_overlander "Gregor the Overlander") (name fb:m.06nzqfh 12) (name fb:en.when_charlie_mcbutton_lost_power "When Charlie McButton lost power") (name fb:m.0pbrmvq "The Hunger Games Trilogy Boxed Set") (name fb:m.05p6hh0 "Catching Fire") (name fb:en.gregor_and_the_prophecy_of_bane "Gregor and the Prophecy of Bane"))) (type (union fb:book.book)) what books are written by suzanne collins? Gregor and the Code of Claw 14.513 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.suzanne_collins))) (value (list (name fb:en.the_hunger_games "The Hunger Games") (name fb:en.mockingjay Mockingjay) (name fb:en.gregor_and_the_marks_of_secret "Gregor and the Marks of Secret") (name fb:m.04t448h "Gregor and the Code of Claw") (name fb:en.gregor_the_overlander "Gregor the Overlander") (name fb:m.06nzqfh 12) (name fb:en.when_charlie_mcbutton_lost_power "When Charlie McButton lost power") (name fb:m.0pbrmvq "The Hunger Games Trilogy Boxed Set") (name fb:m.05p6hh0 "Catching Fire") (name fb:en.gregor_and_the_prophecy_of_bane "Gregor and the Prophecy of Bane"))) (type (union fb:book.book)) what books are written by suzanne collins? Gregor the Overlander 14.513 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.suzanne_collins))) (value (list (name fb:en.the_hunger_games "The Hunger Games") (name fb:en.mockingjay Mockingjay) (name fb:en.gregor_and_the_marks_of_secret "Gregor and the Marks of Secret") (name fb:m.04t448h "Gregor and the Code of Claw") (name fb:en.gregor_the_overlander "Gregor the Overlander") (name fb:m.06nzqfh 12) (name fb:en.when_charlie_mcbutton_lost_power "When Charlie McButton lost power") (name fb:m.0pbrmvq "The Hunger Games Trilogy Boxed Set") (name fb:m.05p6hh0 "Catching Fire") (name fb:en.gregor_and_the_prophecy_of_bane "Gregor and the Prophecy of Bane"))) (type (union fb:book.book)) what books are written by suzanne collins? When Charlie McButton lost power 14.513 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.suzanne_collins))) (value (list (name fb:en.the_hunger_games "The Hunger Games") (name fb:en.mockingjay Mockingjay) (name fb:en.gregor_and_the_marks_of_secret "Gregor and the Marks of Secret") (name fb:m.04t448h "Gregor and the Code of Claw") (name fb:en.gregor_the_overlander "Gregor the Overlander") (name fb:m.06nzqfh 12) (name fb:en.when_charlie_mcbutton_lost_power "When Charlie McButton lost power") (name fb:m.0pbrmvq "The Hunger Games Trilogy Boxed Set") (name fb:m.05p6hh0 "Catching Fire") (name fb:en.gregor_and_the_prophecy_of_bane "Gregor and the Prophecy of Bane"))) (type (union fb:book.book)) what books are written by suzanne collins? The Hunger Games Trilogy Boxed Set 14.513 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.suzanne_collins))) (value (list (name fb:en.the_hunger_games "The Hunger Games") (name fb:en.mockingjay Mockingjay) (name fb:en.gregor_and_the_marks_of_secret "Gregor and the Marks of Secret") (name fb:m.04t448h "Gregor and the Code of Claw") (name fb:en.gregor_the_overlander "Gregor the Overlander") (name fb:m.06nzqfh 12) (name fb:en.when_charlie_mcbutton_lost_power "When Charlie McButton lost power") (name fb:m.0pbrmvq "The Hunger Games Trilogy Boxed Set") (name fb:m.05p6hh0 "Catching Fire") (name fb:en.gregor_and_the_prophecy_of_bane "Gregor and the Prophecy of Bane"))) (type (union fb:book.book)) what books are written by suzanne collins? Catching Fire 14.513 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.suzanne_collins))) (value (list (name fb:en.the_hunger_games "The Hunger Games") (name fb:en.mockingjay Mockingjay) (name fb:en.gregor_and_the_marks_of_secret "Gregor and the Marks of Secret") (name fb:m.04t448h "Gregor and the Code of Claw") (name fb:en.gregor_the_overlander "Gregor the Overlander") (name fb:m.06nzqfh 12) (name fb:en.when_charlie_mcbutton_lost_power "When Charlie McButton lost power") (name fb:m.0pbrmvq "The Hunger Games Trilogy Boxed Set") (name fb:m.05p6hh0 "Catching Fire") (name fb:en.gregor_and_the_prophecy_of_bane "Gregor and the Prophecy of Bane"))) (type (union fb:book.book)) what books are written by suzanne collins? Gregor and the Prophecy of Bane 14.513 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.suzanne_collins))) (value (list (name fb:en.the_hunger_games "The Hunger Games") (name fb:en.mockingjay Mockingjay) (name fb:en.gregor_and_the_marks_of_secret "Gregor and the Marks of Secret") (name fb:m.04t448h "Gregor and the Code of Claw") (name fb:en.gregor_the_overlander "Gregor the Overlander") (name fb:m.06nzqfh 12) (name fb:en.when_charlie_mcbutton_lost_power "When Charlie McButton lost power") (name fb:m.0pbrmvq "The Hunger Games Trilogy Boxed Set") (name fb:m.05p6hh0 "Catching Fire") (name fb:en.gregor_and_the_prophecy_of_bane "Gregor and the Prophecy of Bane"))) (type (union fb:book.book)) what team did messi play for in 2010? FC Barcelona C 17.932 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.lionel_messi))) (value (list (name fb:en.fc_barcelona_c "FC Barcelona C") (name fb:en.fc_barcelona "FC Barcelona") (name fb:en.fc_barcelona_b "FC Barcelona B") (name fb:en.argentina_national_football_team "Argentina national football team"))) (type fb:soccer.football_team) what team did messi play for in 2010? FC Barcelona 17.932 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.lionel_messi))) (value (list (name fb:en.fc_barcelona_c "FC Barcelona C") (name fb:en.fc_barcelona "FC Barcelona") (name fb:en.fc_barcelona_b "FC Barcelona B") (name fb:en.argentina_national_football_team "Argentina national football team"))) (type fb:soccer.football_team) what team did messi play for in 2010? FC Barcelona B 17.932 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.lionel_messi))) (value (list (name fb:en.fc_barcelona_c "FC Barcelona C") (name fb:en.fc_barcelona "FC Barcelona") (name fb:en.fc_barcelona_b "FC Barcelona B") (name fb:en.argentina_national_football_team "Argentina national football team"))) (type fb:soccer.football_team) what team did messi play for in 2010? Argentina national football team 17.932 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.lionel_messi))) (value (list (name fb:en.fc_barcelona_c "FC Barcelona C") (name fb:en.fc_barcelona "FC Barcelona") (name fb:en.fc_barcelona_b "FC Barcelona B") (name fb:en.argentina_national_football_team "Argentina national football team"))) (type fb:soccer.football_team) what time zone is greensburg indiana? Eastern Time Zone 12.597 formula (and (fb:type.object.type fb:time.time_zone) (fb:time.time_zone.locations_in_this_time_zone fb:en.greensburg))) (value (list (name fb:en.north_american_eastern_time_zone "Eastern Time Zone"))) (type (union fb:time.time_zone)) what fma stands for? Basic training aircraft 6.765 formula (fb:aviation.aircraft_type.aircraft_of_this_type fb:en.fma_ia_63_pampa)) (value (list (name fb:en.basic_training_aircraft "Basic training aircraft") (name fb:en.light_attack "Light attack"))) (type fb:aviation.aircraft_type) what fma stands for? Light attack 6.765 formula (fb:aviation.aircraft_type.aircraft_of_this_type fb:en.fma_ia_63_pampa)) (value (list (name fb:en.basic_training_aircraft "Basic training aircraft") (name fb:en.light_attack "Light attack"))) (type fb:aviation.aircraft_type) who plays voldemort? Ralph Fiennes 6.893 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.lord_voldemort)) (value (list (name fb:en.ralph_fiennes "Ralph Fiennes") (name fb:en.christian_coulson "Christian Coulson") (name fb:en.hero_fiennes_tiffin "Hero Fiennes-Tiffin") (name fb:en.richard_bremmer "Richard Bremmer") (name fb:en.frank_dillane "Frank Dillane"))) (type fb:film.actor) who plays voldemort? Christian Coulson 6.893 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.lord_voldemort)) (value (list (name fb:en.ralph_fiennes "Ralph Fiennes") (name fb:en.christian_coulson "Christian Coulson") (name fb:en.hero_fiennes_tiffin "Hero Fiennes-Tiffin") (name fb:en.richard_bremmer "Richard Bremmer") (name fb:en.frank_dillane "Frank Dillane"))) (type fb:film.actor) who plays voldemort? Hero Fiennes-Tiffin 6.893 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.lord_voldemort)) (value (list (name fb:en.ralph_fiennes "Ralph Fiennes") (name fb:en.christian_coulson "Christian Coulson") (name fb:en.hero_fiennes_tiffin "Hero Fiennes-Tiffin") (name fb:en.richard_bremmer "Richard Bremmer") (name fb:en.frank_dillane "Frank Dillane"))) (type fb:film.actor) who plays voldemort? Richard Bremmer 6.893 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.lord_voldemort)) (value (list (name fb:en.ralph_fiennes "Ralph Fiennes") (name fb:en.christian_coulson "Christian Coulson") (name fb:en.hero_fiennes_tiffin "Hero Fiennes-Tiffin") (name fb:en.richard_bremmer "Richard Bremmer") (name fb:en.frank_dillane "Frank Dillane"))) (type fb:film.actor) who plays voldemort? Frank Dillane 6.893 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.lord_voldemort)) (value (list (name fb:en.ralph_fiennes "Ralph Fiennes") (name fb:en.christian_coulson "Christian Coulson") (name fb:en.hero_fiennes_tiffin "Hero Fiennes-Tiffin") (name fb:en.richard_bremmer "Richard Bremmer") (name fb:en.frank_dillane "Frank Dillane"))) (type fb:film.actor) what colleges did harper lee attend? University of Oxford 17.347 formula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.harper_lee))) (value (list (name fb:en.university_of_oxford "University of Oxford") (name fb:en.university_of_alabama_school_of_law "University of Alabama School of Law") (name fb:en.huntingdon_college "Huntingdon College") (name fb:en.university_of_alabama "University of Alabama"))) (type fb:education.university) what colleges did harper lee attend? University of Alabama School of Law 17.347 formula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.harper_lee))) (value (list (name fb:en.university_of_oxford "University of Oxford") (name fb:en.university_of_alabama_school_of_law "University of Alabama School of Law") (name fb:en.huntingdon_college "Huntingdon College") (name fb:en.university_of_alabama "University of Alabama"))) (type fb:education.university) what colleges did harper lee attend? Huntingdon College 17.347 formula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.harper_lee))) (value (list (name fb:en.university_of_oxford "University of Oxford") (name fb:en.university_of_alabama_school_of_law "University of Alabama School of Law") (name fb:en.huntingdon_college "Huntingdon College") (name fb:en.university_of_alabama "University of Alabama"))) (type fb:education.university) what colleges did harper lee attend? University of Alabama 17.347 formula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.harper_lee))) (value (list (name fb:en.university_of_oxford "University of Oxford") (name fb:en.university_of_alabama_school_of_law "University of Alabama School of Law") (name fb:en.huntingdon_college "Huntingdon College") (name fb:en.university_of_alabama "University of Alabama"))) (type fb:education.university) what is the university of georgia known for? United States of America 14.885 formula (!fb:location.location.containedby fb:en.georgia)) (value (list (name fb:en.united_states_of_america "United States of America") (name fb:m.0hzc9m5 "United States, with Territories") (name fb:en.conterminous_united_states "Contiguous United States") (name fb:en.southeastern_united_states "Southeastern United States"))) (type fb:location.location) what is the university of georgia known for? United States, with Territories 14.885 formula (!fb:location.location.containedby fb:en.georgia)) (value (list (name fb:en.united_states_of_america "United States of America") (name fb:m.0hzc9m5 "United States, with Territories") (name fb:en.conterminous_united_states "Contiguous United States") (name fb:en.southeastern_united_states "Southeastern United States"))) (type fb:location.location) what is the university of georgia known for? Contiguous United States 14.885 formula (!fb:location.location.containedby fb:en.georgia)) (value (list (name fb:en.united_states_of_america "United States of America") (name fb:m.0hzc9m5 "United States, with Territories") (name fb:en.conterminous_united_states "Contiguous United States") (name fb:en.southeastern_united_states "Southeastern United States"))) (type fb:location.location) what is the university of georgia known for? Southeastern United States 14.885 formula (!fb:location.location.containedby fb:en.georgia)) (value (list (name fb:en.united_states_of_america "United States of America") (name fb:m.0hzc9m5 "United States, with Territories") (name fb:en.conterminous_united_states "Contiguous United States") (name fb:en.southeastern_united_states "Southeastern United States"))) (type fb:location.location) what jobs did john adams have before he was president? George Washington 18.733 formula (!fb:government.us_vice_president.to_president fb:en.john_adams)) (value (list (name fb:en.george_washington "George Washington"))) (type fb:government.us_president) what political party did andrew johnson belong to? Democratic Party 19.585 formula (and (fb:type.object.type fb:government.political_party) ((lambda x (fb:government.political_party.politicians_in_this_party (fb:government.political_party_tenure.politician (var x)))) fb:en.andrew_johnson))) (value (list (name fb:en.democrat_party "Democratic Party") (name fb:en.national_union_party "National Union Party") (name fb:en.republican_party "Republican Party"))) (type (union fb:government.political_party)) what political party did andrew johnson belong to? National Union Party 19.585 formula (and (fb:type.object.type fb:government.political_party) ((lambda x (fb:government.political_party.politicians_in_this_party (fb:government.political_party_tenure.politician (var x)))) fb:en.andrew_johnson))) (value (list (name fb:en.democrat_party "Democratic Party") (name fb:en.national_union_party "National Union Party") (name fb:en.republican_party "Republican Party"))) (type (union fb:government.political_party)) what political party did andrew johnson belong to? Republican Party 19.585 formula (and (fb:type.object.type fb:government.political_party) ((lambda x (fb:government.political_party.politicians_in_this_party (fb:government.political_party_tenure.politician (var x)))) fb:en.andrew_johnson))) (value (list (name fb:en.democrat_party "Democratic Party") (name fb:en.national_union_party "National Union Party") (name fb:en.republican_party "Republican Party"))) (type (union fb:government.political_party)) where was osama bin laden killed? Saudi Arabia 9.468 formula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.osama_bin_laden))) (value (list (name fb:en.pakistan Pakistan) (name fb:en.afghanistan Afghanistan) (name fb:en.sudan Sudan) (name fb:en.saudi_arabia "Saudi Arabia"))) (type fb:location.location) where are people who speak arabic from? Saudi Arabia 10.578 formula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.arabic_language))) (value (list (name fb:en.israel Israel) (name fb:en.saudi_arabia "Saudi Arabia") (name fb:en.algeria Algeria) (name fb:en.yemen Yemen) (name fb:en.syria Syria) (name fb:en.chad Chad) (name fb:en.iraq Iraq) (name fb:en.sudan Sudan) (name fb:en.morocco Morocco) (name fb:en.kuwait Kuwait))) (type fb:location.country) who was queen elizabeth ii mom? United Kingdom 6.039 formula (fb:royalty.kingdom.rulers fb:en.elizabeth_ii_of_the_united_kingdom)) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.canada Canada) (name fb:en.australia Australia) (name fb:en.jamaica Jamaica) (name fb:en.barbados Barbados) (name fb:en.new_zealand "New Zealand") (name fb:en.papua_new_guinea "Papua New Guinea") (name fb:en.antigua_and_barbuda "Antigua and Barbuda") (name fb:en.saint_kitts_and_nevis "Saint Kitts and Nevis") (name fb:en.the_bahamas Bahamas))) (type fb:royalty.kingdom) who was queen elizabeth ii mom? New Zealand 6.039 formula (fb:royalty.kingdom.rulers fb:en.elizabeth_ii_of_the_united_kingdom)) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.canada Canada) (name fb:en.australia Australia) (name fb:en.jamaica Jamaica) (name fb:en.barbados Barbados) (name fb:en.new_zealand "New Zealand") (name fb:en.papua_new_guinea "Papua New Guinea") (name fb:en.antigua_and_barbuda "Antigua and Barbuda") (name fb:en.saint_kitts_and_nevis "Saint Kitts and Nevis") (name fb:en.the_bahamas Bahamas))) (type fb:royalty.kingdom) who was queen elizabeth ii mom? Papua New Guinea 6.039 formula (fb:royalty.kingdom.rulers fb:en.elizabeth_ii_of_the_united_kingdom)) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.canada Canada) (name fb:en.australia Australia) (name fb:en.jamaica Jamaica) (name fb:en.barbados Barbados) (name fb:en.new_zealand "New Zealand") (name fb:en.papua_new_guinea "Papua New Guinea") (name fb:en.antigua_and_barbuda "Antigua and Barbuda") (name fb:en.saint_kitts_and_nevis "Saint Kitts and Nevis") (name fb:en.the_bahamas Bahamas))) (type fb:royalty.kingdom) who was queen elizabeth ii mom? Antigua and Barbuda 6.039 formula (fb:royalty.kingdom.rulers fb:en.elizabeth_ii_of_the_united_kingdom)) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.canada Canada) (name fb:en.australia Australia) (name fb:en.jamaica Jamaica) (name fb:en.barbados Barbados) (name fb:en.new_zealand "New Zealand") (name fb:en.papua_new_guinea "Papua New Guinea") (name fb:en.antigua_and_barbuda "Antigua and Barbuda") (name fb:en.saint_kitts_and_nevis "Saint Kitts and Nevis") (name fb:en.the_bahamas Bahamas))) (type fb:royalty.kingdom) who was queen elizabeth ii mom? Saint Kitts and Nevis 6.039 formula (fb:royalty.kingdom.rulers fb:en.elizabeth_ii_of_the_united_kingdom)) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.canada Canada) (name fb:en.australia Australia) (name fb:en.jamaica Jamaica) (name fb:en.barbados Barbados) (name fb:en.new_zealand "New Zealand") (name fb:en.papua_new_guinea "Papua New Guinea") (name fb:en.antigua_and_barbuda "Antigua and Barbuda") (name fb:en.saint_kitts_and_nevis "Saint Kitts and Nevis") (name fb:en.the_bahamas Bahamas))) (type fb:royalty.kingdom) what type of art did pablo picasso paint? Ceramic art 14.426 formula (and (fb:type.object.type fb:visual_art.visual_art_form) (!fb:visual_art.visual_artist.art_forms fb:en.pablo_picasso))) (value (list (name fb:en.painting Painting) (name fb:en.sculpture Sculpture) (name fb:en.drawing Drawing) (name fb:en.printmaking Printmaking) (name fb:en.ceramics "Ceramic art"))) (type (union fb:visual_art.visual_art_form)) who did ricky martin started his career with? Ricky Martin 7.458 formula (fb:organization.organization_founder.organizations_founded fb:en.ricky_martin_foundation)) (value (list (name fb:en.ricky_martin "Ricky Martin"))) (type fb:organization.organization_founder) what is ella fitzgerald parents name? William Fitzgerald 12.462 formula (!fb:people.person.parents fb:en.ella_fitzgerald)) (value (list (name fb:m.0kcwjlw "William Fitzgerald") (name fb:m.0kcwjlp "Temperance \"Tempie\" Fitzgerald"))) (type fb:people.person) what is ella fitzgerald parents name? Temperance \ 12.462 formula (!fb:people.person.parents fb:en.ella_fitzgerald)) (value (list (name fb:m.0kcwjlw "William Fitzgerald") (name fb:m.0kcwjlp "Temperance \"Tempie\" Fitzgerald"))) (type fb:people.person) what is ella fitzgerald parents name? Fitzgerald 12.462 formula (!fb:people.person.parents fb:en.ella_fitzgerald)) (value (list (name fb:m.0kcwjlw "William Fitzgerald") (name fb:m.0kcwjlp "Temperance \"Tempie\" Fitzgerald"))) (type fb:people.person) who is anne hathaway parents? Gerald Hathaway 9.612 formula (!fb:people.person.parents fb:en.anne_hathaway)) (value (list (name fb:en.gerald_hathaway "Gerald Hathaway") (name fb:en.kate_mccauley_hathaway "Kate McCauley Hathaway"))) (type fb:people.person) who is anne hathaway parents? Kate McCauley Hathaway 9.612 formula (!fb:people.person.parents fb:en.anne_hathaway)) (value (list (name fb:en.gerald_hathaway "Gerald Hathaway") (name fb:en.kate_mccauley_hathaway "Kate McCauley Hathaway"))) (type fb:people.person) who does don draper gets engaged to? Betty Draper 12.047 formula ((lambda x (fb:fictional_universe.fictional_character.married_to (fb:fictional_universe.marriage_of_fictional_characters.spouses (var x)))) fb:en.don_draper)) (value (list (name fb:en.betty_draper "Betty Draper"))) (type fb:fictional_universe.fictional_character) what was van halen first album? Top of the World 10.111 formula (and (fb:type.object.type fb:music.album) (!fb:music.artist.album fb:en.van_halen))) (value (list (name fb:m.0sm2ft_ "Top of the World") (name fb:m.0vs878g "Up for Breakfast") (name fb:en.best_of_van_halen_volume_1 "Best Of, Volume 1") (name fb:m.0np693j Tattoo) (name fb:m.0vs8611 Dreams) (name fb:m.0hznx7g "A Different Kind of Truth") (name fb:en.ou812 OU812) (name fb:m.01hm2vp "The Best of Both Worlds") (name fb:m.03xwgvg Jump) (name fb:m.0vs876c "Fire in the Hole"))) (type (union fb:music.album)) what was van halen first album? Up for Breakfast 10.111 formula (and (fb:type.object.type fb:music.album) (!fb:music.artist.album fb:en.van_halen))) (value (list (name fb:m.0sm2ft_ "Top of the World") (name fb:m.0vs878g "Up for Breakfast") (name fb:en.best_of_van_halen_volume_1 "Best Of, Volume 1") (name fb:m.0np693j Tattoo) (name fb:m.0vs8611 Dreams) (name fb:m.0hznx7g "A Different Kind of Truth") (name fb:en.ou812 OU812) (name fb:m.01hm2vp "The Best of Both Worlds") (name fb:m.03xwgvg Jump) (name fb:m.0vs876c "Fire in the Hole"))) (type (union fb:music.album)) what was van halen first album? Best Of, Volume 1 10.111 formula (and (fb:type.object.type fb:music.album) (!fb:music.artist.album fb:en.van_halen))) (value (list (name fb:m.0sm2ft_ "Top of the World") (name fb:m.0vs878g "Up for Breakfast") (name fb:en.best_of_van_halen_volume_1 "Best Of, Volume 1") (name fb:m.0np693j Tattoo) (name fb:m.0vs8611 Dreams) (name fb:m.0hznx7g "A Different Kind of Truth") (name fb:en.ou812 OU812) (name fb:m.01hm2vp "The Best of Both Worlds") (name fb:m.03xwgvg Jump) (name fb:m.0vs876c "Fire in the Hole"))) (type (union fb:music.album)) what was van halen first album? A Different Kind of Truth 10.111 formula (and (fb:type.object.type fb:music.album) (!fb:music.artist.album fb:en.van_halen))) (value (list (name fb:m.0sm2ft_ "Top of the World") (name fb:m.0vs878g "Up for Breakfast") (name fb:en.best_of_van_halen_volume_1 "Best Of, Volume 1") (name fb:m.0np693j Tattoo) (name fb:m.0vs8611 Dreams) (name fb:m.0hznx7g "A Different Kind of Truth") (name fb:en.ou812 OU812) (name fb:m.01hm2vp "The Best of Both Worlds") (name fb:m.03xwgvg Jump) (name fb:m.0vs876c "Fire in the Hole"))) (type (union fb:music.album)) what was van halen first album? The Best of Both Worlds 10.111 formula (and (fb:type.object.type fb:music.album) (!fb:music.artist.album fb:en.van_halen))) (value (list (name fb:m.0sm2ft_ "Top of the World") (name fb:m.0vs878g "Up for Breakfast") (name fb:en.best_of_van_halen_volume_1 "Best Of, Volume 1") (name fb:m.0np693j Tattoo) (name fb:m.0vs8611 Dreams) (name fb:m.0hznx7g "A Different Kind of Truth") (name fb:en.ou812 OU812) (name fb:m.01hm2vp "The Best of Both Worlds") (name fb:m.03xwgvg Jump) (name fb:m.0vs876c "Fire in the Hole"))) (type (union fb:music.album)) what was van halen first album? Fire in the Hole 10.111 formula (and (fb:type.object.type fb:music.album) (!fb:music.artist.album fb:en.van_halen))) (value (list (name fb:m.0sm2ft_ "Top of the World") (name fb:m.0vs878g "Up for Breakfast") (name fb:en.best_of_van_halen_volume_1 "Best Of, Volume 1") (name fb:m.0np693j Tattoo) (name fb:m.0vs8611 Dreams) (name fb:m.0hznx7g "A Different Kind of Truth") (name fb:en.ou812 OU812) (name fb:m.01hm2vp "The Best of Both Worlds") (name fb:m.03xwgvg Jump) (name fb:m.0vs876c "Fire in the Hole"))) (type (union fb:music.album)) what led to the split of the republican party in 1912? 2008 Republican Primary, California's 32nd Assembly District 12.631 formula (fb:government.primary_election.party fb:en.republican_party)) (value (list (name fb:m.03yxc6m "2008 Republican Primary, California’s 32nd Assembly District") (name fb:m.03yxcnl "2008 Republican Primary, California’s 65th Assembly District") (name fb:m.03yxdnz "2008 Republican Primary, California’s 29th Senate District") (name fb:m.03yxdvn "2008 Republican Primary, California’s 52nd Assembly District") (name fb:m.03yxc4n "2008 Republican Primary, California’s 74th Assembly District") (name fb:m.03yxd81 "2008 Republican Primary, California’s 73rd Assembly District") (name fb:m.03yxcdh "2008 Republican Primary, California’s 67th Assembly District") (name fb:m.0459x6l "2000 Republican Primary, Georgia’s 7th Congressional District") (name fb:m.03yxbsd "2008 Republican Primary, California’s 25th Assembly District") (name fb:m.03yxd1h "2008 Republican Primary, California’s 53rd Assembly District"))) (type fb:government.primary_election) what led to the split of the republican party in 1912? 2008 Republican Primary, California’s 65th Assembly District 12.631 formula (fb:government.primary_election.party fb:en.republican_party)) (value (list (name fb:m.03yxc6m "2008 Republican Primary, California’s 32nd Assembly District") (name fb:m.03yxcnl "2008 Republican Primary, California’s 65th Assembly District") (name fb:m.03yxdnz "2008 Republican Primary, California’s 29th Senate District") (name fb:m.03yxdvn "2008 Republican Primary, California’s 52nd Assembly District") (name fb:m.03yxc4n "2008 Republican Primary, California’s 74th Assembly District") (name fb:m.03yxd81 "2008 Republican Primary, California’s 73rd Assembly District") (name fb:m.03yxcdh "2008 Republican Primary, California’s 67th Assembly District") (name fb:m.0459x6l "2000 Republican Primary, Georgia’s 7th Congressional District") (name fb:m.03yxbsd "2008 Republican Primary, California’s 25th Assembly District") (name fb:m.03yxd1h "2008 Republican Primary, California’s 53rd Assembly District"))) (type fb:government.primary_election) what led to the split of the republican party in 1912? 2008 Republican Primary, California’s 29th Senate District 12.631 formula (fb:government.primary_election.party fb:en.republican_party)) (value (list (name fb:m.03yxc6m "2008 Republican Primary, California’s 32nd Assembly District") (name fb:m.03yxcnl "2008 Republican Primary, California’s 65th Assembly District") (name fb:m.03yxdnz "2008 Republican Primary, California’s 29th Senate District") (name fb:m.03yxdvn "2008 Republican Primary, California’s 52nd Assembly District") (name fb:m.03yxc4n "2008 Republican Primary, California’s 74th Assembly District") (name fb:m.03yxd81 "2008 Republican Primary, California’s 73rd Assembly District") (name fb:m.03yxcdh "2008 Republican Primary, California’s 67th Assembly District") (name fb:m.0459x6l "2000 Republican Primary, Georgia’s 7th Congressional District") (name fb:m.03yxbsd "2008 Republican Primary, California’s 25th Assembly District") (name fb:m.03yxd1h "2008 Republican Primary, California’s 53rd Assembly District"))) (type fb:government.primary_election) what led to the split of the republican party in 1912? 2008 Republican Primary, California’s 52nd Assembly District 12.631 formula (fb:government.primary_election.party fb:en.republican_party)) (value (list (name fb:m.03yxc6m "2008 Republican Primary, California’s 32nd Assembly District") (name fb:m.03yxcnl "2008 Republican Primary, California’s 65th Assembly District") (name fb:m.03yxdnz "2008 Republican Primary, California’s 29th Senate District") (name fb:m.03yxdvn "2008 Republican Primary, California’s 52nd Assembly District") (name fb:m.03yxc4n "2008 Republican Primary, California’s 74th Assembly District") (name fb:m.03yxd81 "2008 Republican Primary, California’s 73rd Assembly District") (name fb:m.03yxcdh "2008 Republican Primary, California’s 67th Assembly District") (name fb:m.0459x6l "2000 Republican Primary, Georgia’s 7th Congressional District") (name fb:m.03yxbsd "2008 Republican Primary, California’s 25th Assembly District") (name fb:m.03yxd1h "2008 Republican Primary, California’s 53rd Assembly District"))) (type fb:government.primary_election) what led to the split of the republican party in 1912? 2008 Republican Primary, California’s 74th Assembly District 12.631 formula (fb:government.primary_election.party fb:en.republican_party)) (value (list (name fb:m.03yxc6m "2008 Republican Primary, California’s 32nd Assembly District") (name fb:m.03yxcnl "2008 Republican Primary, California’s 65th Assembly District") (name fb:m.03yxdnz "2008 Republican Primary, California’s 29th Senate District") (name fb:m.03yxdvn "2008 Republican Primary, California’s 52nd Assembly District") (name fb:m.03yxc4n "2008 Republican Primary, California’s 74th Assembly District") (name fb:m.03yxd81 "2008 Republican Primary, California’s 73rd Assembly District") (name fb:m.03yxcdh "2008 Republican Primary, California’s 67th Assembly District") (name fb:m.0459x6l "2000 Republican Primary, Georgia’s 7th Congressional District") (name fb:m.03yxbsd "2008 Republican Primary, California’s 25th Assembly District") (name fb:m.03yxd1h "2008 Republican Primary, California’s 53rd Assembly District"))) (type fb:government.primary_election) what led to the split of the republican party in 1912? 2008 Republican Primary, California’s 73rd Assembly District 12.631 formula (fb:government.primary_election.party fb:en.republican_party)) (value (list (name fb:m.03yxc6m "2008 Republican Primary, California’s 32nd Assembly District") (name fb:m.03yxcnl "2008 Republican Primary, California’s 65th Assembly District") (name fb:m.03yxdnz "2008 Republican Primary, California’s 29th Senate District") (name fb:m.03yxdvn "2008 Republican Primary, California’s 52nd Assembly District") (name fb:m.03yxc4n "2008 Republican Primary, California’s 74th Assembly District") (name fb:m.03yxd81 "2008 Republican Primary, California’s 73rd Assembly District") (name fb:m.03yxcdh "2008 Republican Primary, California’s 67th Assembly District") (name fb:m.0459x6l "2000 Republican Primary, Georgia’s 7th Congressional District") (name fb:m.03yxbsd "2008 Republican Primary, California’s 25th Assembly District") (name fb:m.03yxd1h "2008 Republican Primary, California’s 53rd Assembly District"))) (type fb:government.primary_election) what led to the split of the republican party in 1912? 2008 Republican Primary, California’s 67th Assembly District 12.631 formula (fb:government.primary_election.party fb:en.republican_party)) (value (list (name fb:m.03yxc6m "2008 Republican Primary, California’s 32nd Assembly District") (name fb:m.03yxcnl "2008 Republican Primary, California’s 65th Assembly District") (name fb:m.03yxdnz "2008 Republican Primary, California’s 29th Senate District") (name fb:m.03yxdvn "2008 Republican Primary, California’s 52nd Assembly District") (name fb:m.03yxc4n "2008 Republican Primary, California’s 74th Assembly District") (name fb:m.03yxd81 "2008 Republican Primary, California’s 73rd Assembly District") (name fb:m.03yxcdh "2008 Republican Primary, California’s 67th Assembly District") (name fb:m.0459x6l "2000 Republican Primary, Georgia’s 7th Congressional District") (name fb:m.03yxbsd "2008 Republican Primary, California’s 25th Assembly District") (name fb:m.03yxd1h "2008 Republican Primary, California’s 53rd Assembly District"))) (type fb:government.primary_election) what led to the split of the republican party in 1912? 2000 Republican Primary, Georgia’s 7th Congressional District 12.631 formula (fb:government.primary_election.party fb:en.republican_party)) (value (list (name fb:m.03yxc6m "2008 Republican Primary, California’s 32nd Assembly District") (name fb:m.03yxcnl "2008 Republican Primary, California’s 65th Assembly District") (name fb:m.03yxdnz "2008 Republican Primary, California’s 29th Senate District") (name fb:m.03yxdvn "2008 Republican Primary, California’s 52nd Assembly District") (name fb:m.03yxc4n "2008 Republican Primary, California’s 74th Assembly District") (name fb:m.03yxd81 "2008 Republican Primary, California’s 73rd Assembly District") (name fb:m.03yxcdh "2008 Republican Primary, California’s 67th Assembly District") (name fb:m.0459x6l "2000 Republican Primary, Georgia’s 7th Congressional District") (name fb:m.03yxbsd "2008 Republican Primary, California’s 25th Assembly District") (name fb:m.03yxd1h "2008 Republican Primary, California’s 53rd Assembly District"))) (type fb:government.primary_election) what led to the split of the republican party in 1912? 2008 Republican Primary, California’s 25th Assembly District 12.631 formula (fb:government.primary_election.party fb:en.republican_party)) (value (list (name fb:m.03yxc6m "2008 Republican Primary, California’s 32nd Assembly District") (name fb:m.03yxcnl "2008 Republican Primary, California’s 65th Assembly District") (name fb:m.03yxdnz "2008 Republican Primary, California’s 29th Senate District") (name fb:m.03yxdvn "2008 Republican Primary, California’s 52nd Assembly District") (name fb:m.03yxc4n "2008 Republican Primary, California’s 74th Assembly District") (name fb:m.03yxd81 "2008 Republican Primary, California’s 73rd Assembly District") (name fb:m.03yxcdh "2008 Republican Primary, California’s 67th Assembly District") (name fb:m.0459x6l "2000 Republican Primary, Georgia’s 7th Congressional District") (name fb:m.03yxbsd "2008 Republican Primary, California’s 25th Assembly District") (name fb:m.03yxd1h "2008 Republican Primary, California’s 53rd Assembly District"))) (type fb:government.primary_election) what led to the split of the republican party in 1912? 2008 Republican Primary, California’s 53rd Assembly District 12.631 formula (fb:government.primary_election.party fb:en.republican_party)) (value (list (name fb:m.03yxc6m "2008 Republican Primary, California’s 32nd Assembly District") (name fb:m.03yxcnl "2008 Republican Primary, California’s 65th Assembly District") (name fb:m.03yxdnz "2008 Republican Primary, California’s 29th Senate District") (name fb:m.03yxdvn "2008 Republican Primary, California’s 52nd Assembly District") (name fb:m.03yxc4n "2008 Republican Primary, California’s 74th Assembly District") (name fb:m.03yxd81 "2008 Republican Primary, California’s 73rd Assembly District") (name fb:m.03yxcdh "2008 Republican Primary, California’s 67th Assembly District") (name fb:m.0459x6l "2000 Republican Primary, Georgia’s 7th Congressional District") (name fb:m.03yxbsd "2008 Republican Primary, California’s 25th Assembly District") (name fb:m.03yxd1h "2008 Republican Primary, California’s 53rd Assembly District"))) (type fb:government.primary_election) what to see in toronto top 10? Toronto Eaton Centre 15.407 formula (!fb:travel.travel_destination.tourist_attractions fb:en.toronto)) (value (list (name fb:en.toronto_eaton_centre "Toronto Eaton Centre") (name fb:en.nathan_phillips_square "Nathan Phillips Square") (name fb:en.bmo_field "BMO Field") (name fb:en.art_gallery_of_ontario "Art Gallery of Ontario") (name fb:en.gardiner_museum "Gardiner Museum") (name fb:en.museum_of_contemporary_canadian_art_mocca_toronto "Museum of Contemporary Canadian Art") (name fb:en.mcmichael_canadian_art_collection "McMichael Canadian Art Collection") (name fb:en.bata_shoe_museum "Bata Shoe Museum") (name fb:en.paramount_canadas_wonderland "Canada's Wonderland") (name fb:en.air_canada_centre "Air Canada Centre"))) (type fb:travel.tourist_attraction) what to see in toronto top 10? Nathan Phillips Square 15.407 formula (!fb:travel.travel_destination.tourist_attractions fb:en.toronto)) (value (list (name fb:en.toronto_eaton_centre "Toronto Eaton Centre") (name fb:en.nathan_phillips_square "Nathan Phillips Square") (name fb:en.bmo_field "BMO Field") (name fb:en.art_gallery_of_ontario "Art Gallery of Ontario") (name fb:en.gardiner_museum "Gardiner Museum") (name fb:en.museum_of_contemporary_canadian_art_mocca_toronto "Museum of Contemporary Canadian Art") (name fb:en.mcmichael_canadian_art_collection "McMichael Canadian Art Collection") (name fb:en.bata_shoe_museum "Bata Shoe Museum") (name fb:en.paramount_canadas_wonderland "Canada's Wonderland") (name fb:en.air_canada_centre "Air Canada Centre"))) (type fb:travel.tourist_attraction) what to see in toronto top 10? BMO Field 15.407 formula (!fb:travel.travel_destination.tourist_attractions fb:en.toronto)) (value (list (name fb:en.toronto_eaton_centre "Toronto Eaton Centre") (name fb:en.nathan_phillips_square "Nathan Phillips Square") (name fb:en.bmo_field "BMO Field") (name fb:en.art_gallery_of_ontario "Art Gallery of Ontario") (name fb:en.gardiner_museum "Gardiner Museum") (name fb:en.museum_of_contemporary_canadian_art_mocca_toronto "Museum of Contemporary Canadian Art") (name fb:en.mcmichael_canadian_art_collection "McMichael Canadian Art Collection") (name fb:en.bata_shoe_museum "Bata Shoe Museum") (name fb:en.paramount_canadas_wonderland "Canada's Wonderland") (name fb:en.air_canada_centre "Air Canada Centre"))) (type fb:travel.tourist_attraction) what to see in toronto top 10? Art Gallery of Ontario 15.407 formula (!fb:travel.travel_destination.tourist_attractions fb:en.toronto)) (value (list (name fb:en.toronto_eaton_centre "Toronto Eaton Centre") (name fb:en.nathan_phillips_square "Nathan Phillips Square") (name fb:en.bmo_field "BMO Field") (name fb:en.art_gallery_of_ontario "Art Gallery of Ontario") (name fb:en.gardiner_museum "Gardiner Museum") (name fb:en.museum_of_contemporary_canadian_art_mocca_toronto "Museum of Contemporary Canadian Art") (name fb:en.mcmichael_canadian_art_collection "McMichael Canadian Art Collection") (name fb:en.bata_shoe_museum "Bata Shoe Museum") (name fb:en.paramount_canadas_wonderland "Canada's Wonderland") (name fb:en.air_canada_centre "Air Canada Centre"))) (type fb:travel.tourist_attraction) what to see in toronto top 10? Gardiner Museum 15.407 formula (!fb:travel.travel_destination.tourist_attractions fb:en.toronto)) (value (list (name fb:en.toronto_eaton_centre "Toronto Eaton Centre") (name fb:en.nathan_phillips_square "Nathan Phillips Square") (name fb:en.bmo_field "BMO Field") (name fb:en.art_gallery_of_ontario "Art Gallery of Ontario") (name fb:en.gardiner_museum "Gardiner Museum") (name fb:en.museum_of_contemporary_canadian_art_mocca_toronto "Museum of Contemporary Canadian Art") (name fb:en.mcmichael_canadian_art_collection "McMichael Canadian Art Collection") (name fb:en.bata_shoe_museum "Bata Shoe Museum") (name fb:en.paramount_canadas_wonderland "Canada's Wonderland") (name fb:en.air_canada_centre "Air Canada Centre"))) (type fb:travel.tourist_attraction) what to see in toronto top 10? Museum of Contemporary Canadian Art 15.407 formula (!fb:travel.travel_destination.tourist_attractions fb:en.toronto)) (value (list (name fb:en.toronto_eaton_centre "Toronto Eaton Centre") (name fb:en.nathan_phillips_square "Nathan Phillips Square") (name fb:en.bmo_field "BMO Field") (name fb:en.art_gallery_of_ontario "Art Gallery of Ontario") (name fb:en.gardiner_museum "Gardiner Museum") (name fb:en.museum_of_contemporary_canadian_art_mocca_toronto "Museum of Contemporary Canadian Art") (name fb:en.mcmichael_canadian_art_collection "McMichael Canadian Art Collection") (name fb:en.bata_shoe_museum "Bata Shoe Museum") (name fb:en.paramount_canadas_wonderland "Canada's Wonderland") (name fb:en.air_canada_centre "Air Canada Centre"))) (type fb:travel.tourist_attraction) what to see in toronto top 10? McMichael Canadian Art Collection 15.407 formula (!fb:travel.travel_destination.tourist_attractions fb:en.toronto)) (value (list (name fb:en.toronto_eaton_centre "Toronto Eaton Centre") (name fb:en.nathan_phillips_square "Nathan Phillips Square") (name fb:en.bmo_field "BMO Field") (name fb:en.art_gallery_of_ontario "Art Gallery of Ontario") (name fb:en.gardiner_museum "Gardiner Museum") (name fb:en.museum_of_contemporary_canadian_art_mocca_toronto "Museum of Contemporary Canadian Art") (name fb:en.mcmichael_canadian_art_collection "McMichael Canadian Art Collection") (name fb:en.bata_shoe_museum "Bata Shoe Museum") (name fb:en.paramount_canadas_wonderland "Canada's Wonderland") (name fb:en.air_canada_centre "Air Canada Centre"))) (type fb:travel.tourist_attraction) what to see in toronto top 10? Bata Shoe Museum 15.407 formula (!fb:travel.travel_destination.tourist_attractions fb:en.toronto)) (value (list (name fb:en.toronto_eaton_centre "Toronto Eaton Centre") (name fb:en.nathan_phillips_square "Nathan Phillips Square") (name fb:en.bmo_field "BMO Field") (name fb:en.art_gallery_of_ontario "Art Gallery of Ontario") (name fb:en.gardiner_museum "Gardiner Museum") (name fb:en.museum_of_contemporary_canadian_art_mocca_toronto "Museum of Contemporary Canadian Art") (name fb:en.mcmichael_canadian_art_collection "McMichael Canadian Art Collection") (name fb:en.bata_shoe_museum "Bata Shoe Museum") (name fb:en.paramount_canadas_wonderland "Canada's Wonderland") (name fb:en.air_canada_centre "Air Canada Centre"))) (type fb:travel.tourist_attraction) what to see in toronto top 10? Canada's Wonderland 15.407 formula (!fb:travel.travel_destination.tourist_attractions fb:en.toronto)) (value (list (name fb:en.toronto_eaton_centre "Toronto Eaton Centre") (name fb:en.nathan_phillips_square "Nathan Phillips Square") (name fb:en.bmo_field "BMO Field") (name fb:en.art_gallery_of_ontario "Art Gallery of Ontario") (name fb:en.gardiner_museum "Gardiner Museum") (name fb:en.museum_of_contemporary_canadian_art_mocca_toronto "Museum of Contemporary Canadian Art") (name fb:en.mcmichael_canadian_art_collection "McMichael Canadian Art Collection") (name fb:en.bata_shoe_museum "Bata Shoe Museum") (name fb:en.paramount_canadas_wonderland "Canada's Wonderland") (name fb:en.air_canada_centre "Air Canada Centre"))) (type fb:travel.tourist_attraction) what to see in toronto top 10? Air Canada Centre 15.407 formula (!fb:travel.travel_destination.tourist_attractions fb:en.toronto)) (value (list (name fb:en.toronto_eaton_centre "Toronto Eaton Centre") (name fb:en.nathan_phillips_square "Nathan Phillips Square") (name fb:en.bmo_field "BMO Field") (name fb:en.art_gallery_of_ontario "Art Gallery of Ontario") (name fb:en.gardiner_museum "Gardiner Museum") (name fb:en.museum_of_contemporary_canadian_art_mocca_toronto "Museum of Contemporary Canadian Art") (name fb:en.mcmichael_canadian_art_collection "McMichael Canadian Art Collection") (name fb:en.bata_shoe_museum "Bata Shoe Museum") (name fb:en.paramount_canadas_wonderland "Canada's Wonderland") (name fb:en.air_canada_centre "Air Canada Centre"))) (type fb:travel.tourist_attraction) what are the supreme court cases? Edwards v. Canada 8.779 formula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada "Edwards v. Canada") (name fb:en.mckay_v_the_queen "McKay v. The Queen") (name fb:en.lovelace_v_ontario "Lovelace v. Ontario") (name fb:en.monsanto_canada_inc_v_schmeiser "Monsanto Canada Inc. v. Schmeiser") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal "Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal") (name fb:en.priestman_v_colangelo "Priestman v. Colangelo") (name fb:en.delisle_v_canada "Delisle v. Canada") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc "Kirkbi AG v. Ritvik Holdings Inc.") (name fb:m.0ch3zg5 "Haida Nation v. British Columbia") (name fb:en.kienapple_v_the_queen "Kienapple v. The Queen"))) (type fb:law.legal_case) what are the supreme court cases? McKay v. The Queen 8.779 formula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada "Edwards v. Canada") (name fb:en.mckay_v_the_queen "McKay v. The Queen") (name fb:en.lovelace_v_ontario "Lovelace v. Ontario") (name fb:en.monsanto_canada_inc_v_schmeiser "Monsanto Canada Inc. v. Schmeiser") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal "Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal") (name fb:en.priestman_v_colangelo "Priestman v. Colangelo") (name fb:en.delisle_v_canada "Delisle v. Canada") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc "Kirkbi AG v. Ritvik Holdings Inc.") (name fb:m.0ch3zg5 "Haida Nation v. British Columbia") (name fb:en.kienapple_v_the_queen "Kienapple v. The Queen"))) (type fb:law.legal_case) what are the supreme court cases? Lovelace v. Ontario 8.779 formula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada "Edwards v. Canada") (name fb:en.mckay_v_the_queen "McKay v. The Queen") (name fb:en.lovelace_v_ontario "Lovelace v. Ontario") (name fb:en.monsanto_canada_inc_v_schmeiser "Monsanto Canada Inc. v. Schmeiser") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal "Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal") (name fb:en.priestman_v_colangelo "Priestman v. Colangelo") (name fb:en.delisle_v_canada "Delisle v. Canada") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc "Kirkbi AG v. Ritvik Holdings Inc.") (name fb:m.0ch3zg5 "Haida Nation v. British Columbia") (name fb:en.kienapple_v_the_queen "Kienapple v. The Queen"))) (type fb:law.legal_case) what are the supreme court cases? Monsanto Canada Inc. v. Schmeiser 8.779 formula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada "Edwards v. Canada") (name fb:en.mckay_v_the_queen "McKay v. The Queen") (name fb:en.lovelace_v_ontario "Lovelace v. Ontario") (name fb:en.monsanto_canada_inc_v_schmeiser "Monsanto Canada Inc. v. Schmeiser") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal "Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal") (name fb:en.priestman_v_colangelo "Priestman v. Colangelo") (name fb:en.delisle_v_canada "Delisle v. Canada") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc "Kirkbi AG v. Ritvik Holdings Inc.") (name fb:m.0ch3zg5 "Haida Nation v. British Columbia") (name fb:en.kienapple_v_the_queen "Kienapple v. The Queen"))) (type fb:law.legal_case) what are the supreme court cases? Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal 8.779 formula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada "Edwards v. Canada") (name fb:en.mckay_v_the_queen "McKay v. The Queen") (name fb:en.lovelace_v_ontario "Lovelace v. Ontario") (name fb:en.monsanto_canada_inc_v_schmeiser "Monsanto Canada Inc. v. Schmeiser") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal "Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal") (name fb:en.priestman_v_colangelo "Priestman v. Colangelo") (name fb:en.delisle_v_canada "Delisle v. Canada") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc "Kirkbi AG v. Ritvik Holdings Inc.") (name fb:m.0ch3zg5 "Haida Nation v. British Columbia") (name fb:en.kienapple_v_the_queen "Kienapple v. The Queen"))) (type fb:law.legal_case) what are the supreme court cases? Priestman v. Colangelo 8.779 formula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada "Edwards v. Canada") (name fb:en.mckay_v_the_queen "McKay v. The Queen") (name fb:en.lovelace_v_ontario "Lovelace v. Ontario") (name fb:en.monsanto_canada_inc_v_schmeiser "Monsanto Canada Inc. v. Schmeiser") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal "Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal") (name fb:en.priestman_v_colangelo "Priestman v. Colangelo") (name fb:en.delisle_v_canada "Delisle v. Canada") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc "Kirkbi AG v. Ritvik Holdings Inc.") (name fb:m.0ch3zg5 "Haida Nation v. British Columbia") (name fb:en.kienapple_v_the_queen "Kienapple v. The Queen"))) (type fb:law.legal_case) what are the supreme court cases? Delisle v. Canada 8.779 formula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada "Edwards v. Canada") (name fb:en.mckay_v_the_queen "McKay v. The Queen") (name fb:en.lovelace_v_ontario "Lovelace v. Ontario") (name fb:en.monsanto_canada_inc_v_schmeiser "Monsanto Canada Inc. v. Schmeiser") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal "Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal") (name fb:en.priestman_v_colangelo "Priestman v. Colangelo") (name fb:en.delisle_v_canada "Delisle v. Canada") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc "Kirkbi AG v. Ritvik Holdings Inc.") (name fb:m.0ch3zg5 "Haida Nation v. British Columbia") (name fb:en.kienapple_v_the_queen "Kienapple v. The Queen"))) (type fb:law.legal_case) what are the supreme court cases? Kirkbi AG v. Ritvik Holdings Inc. 8.779 formula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada "Edwards v. Canada") (name fb:en.mckay_v_the_queen "McKay v. The Queen") (name fb:en.lovelace_v_ontario "Lovelace v. Ontario") (name fb:en.monsanto_canada_inc_v_schmeiser "Monsanto Canada Inc. v. Schmeiser") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal "Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal") (name fb:en.priestman_v_colangelo "Priestman v. Colangelo") (name fb:en.delisle_v_canada "Delisle v. Canada") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc "Kirkbi AG v. Ritvik Holdings Inc.") (name fb:m.0ch3zg5 "Haida Nation v. British Columbia") (name fb:en.kienapple_v_the_queen "Kienapple v. The Queen"))) (type fb:law.legal_case) what are the supreme court cases? Haida Nation v. British Columbia 8.779 formula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada "Edwards v. Canada") (name fb:en.mckay_v_the_queen "McKay v. The Queen") (name fb:en.lovelace_v_ontario "Lovelace v. Ontario") (name fb:en.monsanto_canada_inc_v_schmeiser "Monsanto Canada Inc. v. Schmeiser") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal "Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal") (name fb:en.priestman_v_colangelo "Priestman v. Colangelo") (name fb:en.delisle_v_canada "Delisle v. Canada") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc "Kirkbi AG v. Ritvik Holdings Inc.") (name fb:m.0ch3zg5 "Haida Nation v. British Columbia") (name fb:en.kienapple_v_the_queen "Kienapple v. The Queen"))) (type fb:law.legal_case) what are the supreme court cases? Kienapple v. The Queen 8.779 formula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada "Edwards v. Canada") (name fb:en.mckay_v_the_queen "McKay v. The Queen") (name fb:en.lovelace_v_ontario "Lovelace v. Ontario") (name fb:en.monsanto_canada_inc_v_schmeiser "Monsanto Canada Inc. v. Schmeiser") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal "Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal") (name fb:en.priestman_v_colangelo "Priestman v. Colangelo") (name fb:en.delisle_v_canada "Delisle v. Canada") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc "Kirkbi AG v. Ritvik Holdings Inc.") (name fb:m.0ch3zg5 "Haida Nation v. British Columbia") (name fb:en.kienapple_v_the_queen "Kienapple v. The Queen"))) (type fb:law.legal_case) when is the rainy season in bangkok thailand? Entertainment Weekly annotation index 7.614 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.bangkok)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index"))) (type fb:common.annotation_index) when is the rainy season in bangkok thailand? WSJ Speakeasy Index 7.614 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.bangkok)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index"))) (type fb:common.annotation_index) where did the israel palestine conflict start? Yom Kippur War 7.648 formula ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_combatant (var x)))) fb:en.israel)) (value (list (name fb:en.yom_kippur_war "Yom Kippur War") (name fb:en.six-day_war "Six-Day War") (name fb:en.first_intifada "First Intifada") (name fb:en.2006_israel-lebanon_conflict "Second Lebanon War") (name fb:en.suez_crisis "Suez Crisis") (name fb:en.1948_arab-israeli_war "1948 Arab–Israeli War") (name fb:en.1982_lebanon_war "1982 Lebanon War") (name fb:en.operation_defensive_shield "Operation Defensive Shield") (name fb:en.1982-2000_south_lebanon_conflict "South Lebanon conflict (1982–2000)"))) (type fb:military.military_conflict) where did the israel palestine conflict start? Six-Day War 7.648 formula ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_combatant (var x)))) fb:en.israel)) (value (list (name fb:en.yom_kippur_war "Yom Kippur War") (name fb:en.six-day_war "Six-Day War") (name fb:en.first_intifada "First Intifada") (name fb:en.2006_israel-lebanon_conflict "Second Lebanon War") (name fb:en.suez_crisis "Suez Crisis") (name fb:en.1948_arab-israeli_war "1948 Arab–Israeli War") (name fb:en.1982_lebanon_war "1982 Lebanon War") (name fb:en.operation_defensive_shield "Operation Defensive Shield") (name fb:en.1982-2000_south_lebanon_conflict "South Lebanon conflict (1982–2000)"))) (type fb:military.military_conflict) where did the israel palestine conflict start? First Intifada 7.648 formula ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_combatant (var x)))) fb:en.israel)) (value (list (name fb:en.yom_kippur_war "Yom Kippur War") (name fb:en.six-day_war "Six-Day War") (name fb:en.first_intifada "First Intifada") (name fb:en.2006_israel-lebanon_conflict "Second Lebanon War") (name fb:en.suez_crisis "Suez Crisis") (name fb:en.1948_arab-israeli_war "1948 Arab–Israeli War") (name fb:en.1982_lebanon_war "1982 Lebanon War") (name fb:en.operation_defensive_shield "Operation Defensive Shield") (name fb:en.1982-2000_south_lebanon_conflict "South Lebanon conflict (1982–2000)"))) (type fb:military.military_conflict) where did the israel palestine conflict start? Second Lebanon War 7.648 formula ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_combatant (var x)))) fb:en.israel)) (value (list (name fb:en.yom_kippur_war "Yom Kippur War") (name fb:en.six-day_war "Six-Day War") (name fb:en.first_intifada "First Intifada") (name fb:en.2006_israel-lebanon_conflict "Second Lebanon War") (name fb:en.suez_crisis "Suez Crisis") (name fb:en.1948_arab-israeli_war "1948 Arab–Israeli War") (name fb:en.1982_lebanon_war "1982 Lebanon War") (name fb:en.operation_defensive_shield "Operation Defensive Shield") (name fb:en.1982-2000_south_lebanon_conflict "South Lebanon conflict (1982–2000)"))) (type fb:military.military_conflict) where did the israel palestine conflict start? Suez Crisis 7.648 formula ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_combatant (var x)))) fb:en.israel)) (value (list (name fb:en.yom_kippur_war "Yom Kippur War") (name fb:en.six-day_war "Six-Day War") (name fb:en.first_intifada "First Intifada") (name fb:en.2006_israel-lebanon_conflict "Second Lebanon War") (name fb:en.suez_crisis "Suez Crisis") (name fb:en.1948_arab-israeli_war "1948 Arab–Israeli War") (name fb:en.1982_lebanon_war "1982 Lebanon War") (name fb:en.operation_defensive_shield "Operation Defensive Shield") (name fb:en.1982-2000_south_lebanon_conflict "South Lebanon conflict (1982–2000)"))) (type fb:military.military_conflict) where did the israel palestine conflict start? 1948 Arab–Israeli War 7.648 formula ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_combatant (var x)))) fb:en.israel)) (value (list (name fb:en.yom_kippur_war "Yom Kippur War") (name fb:en.six-day_war "Six-Day War") (name fb:en.first_intifada "First Intifada") (name fb:en.2006_israel-lebanon_conflict "Second Lebanon War") (name fb:en.suez_crisis "Suez Crisis") (name fb:en.1948_arab-israeli_war "1948 Arab–Israeli War") (name fb:en.1982_lebanon_war "1982 Lebanon War") (name fb:en.operation_defensive_shield "Operation Defensive Shield") (name fb:en.1982-2000_south_lebanon_conflict "South Lebanon conflict (1982–2000)"))) (type fb:military.military_conflict) where did the israel palestine conflict start? 1982 Lebanon War 7.648 formula ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_combatant (var x)))) fb:en.israel)) (value (list (name fb:en.yom_kippur_war "Yom Kippur War") (name fb:en.six-day_war "Six-Day War") (name fb:en.first_intifada "First Intifada") (name fb:en.2006_israel-lebanon_conflict "Second Lebanon War") (name fb:en.suez_crisis "Suez Crisis") (name fb:en.1948_arab-israeli_war "1948 Arab–Israeli War") (name fb:en.1982_lebanon_war "1982 Lebanon War") (name fb:en.operation_defensive_shield "Operation Defensive Shield") (name fb:en.1982-2000_south_lebanon_conflict "South Lebanon conflict (1982–2000)"))) (type fb:military.military_conflict) where did the israel palestine conflict start? Operation Defensive Shield 7.648 formula ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_combatant (var x)))) fb:en.israel)) (value (list (name fb:en.yom_kippur_war "Yom Kippur War") (name fb:en.six-day_war "Six-Day War") (name fb:en.first_intifada "First Intifada") (name fb:en.2006_israel-lebanon_conflict "Second Lebanon War") (name fb:en.suez_crisis "Suez Crisis") (name fb:en.1948_arab-israeli_war "1948 Arab–Israeli War") (name fb:en.1982_lebanon_war "1982 Lebanon War") (name fb:en.operation_defensive_shield "Operation Defensive Shield") (name fb:en.1982-2000_south_lebanon_conflict "South Lebanon conflict (1982–2000)"))) (type fb:military.military_conflict) where did the israel palestine conflict start? South Lebanon conflict (1982–2000) 7.648 formula ((lambda x (fb:military.military_conflict.commanders (fb:military.military_command.military_combatant (var x)))) fb:en.israel)) (value (list (name fb:en.yom_kippur_war "Yom Kippur War") (name fb:en.six-day_war "Six-Day War") (name fb:en.first_intifada "First Intifada") (name fb:en.2006_israel-lebanon_conflict "Second Lebanon War") (name fb:en.suez_crisis "Suez Crisis") (name fb:en.1948_arab-israeli_war "1948 Arab–Israeli War") (name fb:en.1982_lebanon_war "1982 Lebanon War") (name fb:en.operation_defensive_shield "Operation Defensive Shield") (name fb:en.1982-2000_south_lebanon_conflict "South Lebanon conflict (1982–2000)"))) (type fb:military.military_conflict) what country does alaska belong to? United States of America 18.301 formula (and (fb:type.object.type fb:location.country) (!fb:location.administrative_division.country fb:en.alaska))) (value (list (name fb:en.united_states_of_america "United States of America"))) (type (union fb:location.country)) where is kansas city? Arrowhead Stadium 4.823 formula (and (fb:type.object.type fb:location.location) ((lambda x (fb:location.location.street_address (fb:location.mailing_address.citytown (var x)))) fb:en.kansas_city))) (value (list (name fb:en.arrowhead_stadium "Arrowhead Stadium") (name fb:en.national_golf_club_of_kansas_city "National Golf Club of Kansas City"))) (type fb:location.location) where is kansas city? National Golf Club of Kansas City 4.823 formula (and (fb:type.object.type fb:location.location) ((lambda x (fb:location.location.street_address (fb:location.mailing_address.citytown (var x)))) fb:en.kansas_city))) (value (list (name fb:en.arrowhead_stadium "Arrowhead Stadium") (name fb:en.national_golf_club_of_kansas_city "National Golf Club of Kansas City"))) (type fb:location.location) what was pink floyd's first album? A Momentary Lapse of Reason 11.502 formula (and (fb:type.object.type fb:music.album) (!fb:music.artist.album fb:en.pink_floyd))) (value (list (name fb:en.a_momentary_lapse_of_reason "A Momentary Lapse of Reason") (name fb:en.oh_by_the_way_disc_16_the_division_bell "Oh by the Way (disc 7: Meddle)") (name fb:en.another_brick_in_the_wall_part_ii "Another Brick in the Wall, Part 2") (name fb:en.wish_you_were_here "Wish You Were Here") (name fb:en.atom_heart_mother "Atom Heart Mother") (name fb:en.animals Animals) (name fb:en.ummagumma Ummagumma) (name fb:m.01hdgwm "Take It Back") (name fb:en.meddle Meddle) (name fb:m.0rpp0pg "High Hopes"))) (type (union fb:music.album)) what was pink floyd's first album? Oh by the Way (disc 7: Meddle) 11.502 formula (and (fb:type.object.type fb:music.album) (!fb:music.artist.album fb:en.pink_floyd))) (value (list (name fb:en.a_momentary_lapse_of_reason "A Momentary Lapse of Reason") (name fb:en.oh_by_the_way_disc_16_the_division_bell "Oh by the Way (disc 7: Meddle)") (name fb:en.another_brick_in_the_wall_part_ii "Another Brick in the Wall, Part 2") (name fb:en.wish_you_were_here "Wish You Were Here") (name fb:en.atom_heart_mother "Atom Heart Mother") (name fb:en.animals Animals) (name fb:en.ummagumma Ummagumma) (name fb:m.01hdgwm "Take It Back") (name fb:en.meddle Meddle) (name fb:m.0rpp0pg "High Hopes"))) (type (union fb:music.album)) what was pink floyd's first album? Another Brick in the Wall, Part 2 11.502 formula (and (fb:type.object.type fb:music.album) (!fb:music.artist.album fb:en.pink_floyd))) (value (list (name fb:en.a_momentary_lapse_of_reason "A Momentary Lapse of Reason") (name fb:en.oh_by_the_way_disc_16_the_division_bell "Oh by the Way (disc 7: Meddle)") (name fb:en.another_brick_in_the_wall_part_ii "Another Brick in the Wall, Part 2") (name fb:en.wish_you_were_here "Wish You Were Here") (name fb:en.atom_heart_mother "Atom Heart Mother") (name fb:en.animals Animals) (name fb:en.ummagumma Ummagumma) (name fb:m.01hdgwm "Take It Back") (name fb:en.meddle Meddle) (name fb:m.0rpp0pg "High Hopes"))) (type (union fb:music.album)) what was pink floyd's first album? Wish You Were Here 11.502 formula (and (fb:type.object.type fb:music.album) (!fb:music.artist.album fb:en.pink_floyd))) (value (list (name fb:en.a_momentary_lapse_of_reason "A Momentary Lapse of Reason") (name fb:en.oh_by_the_way_disc_16_the_division_bell "Oh by the Way (disc 7: Meddle)") (name fb:en.another_brick_in_the_wall_part_ii "Another Brick in the Wall, Part 2") (name fb:en.wish_you_were_here "Wish You Were Here") (name fb:en.atom_heart_mother "Atom Heart Mother") (name fb:en.animals Animals) (name fb:en.ummagumma Ummagumma) (name fb:m.01hdgwm "Take It Back") (name fb:en.meddle Meddle) (name fb:m.0rpp0pg "High Hopes"))) (type (union fb:music.album)) what was pink floyd's first album? Atom Heart Mother 11.502 formula (and (fb:type.object.type fb:music.album) (!fb:music.artist.album fb:en.pink_floyd))) (value (list (name fb:en.a_momentary_lapse_of_reason "A Momentary Lapse of Reason") (name fb:en.oh_by_the_way_disc_16_the_division_bell "Oh by the Way (disc 7: Meddle)") (name fb:en.another_brick_in_the_wall_part_ii "Another Brick in the Wall, Part 2") (name fb:en.wish_you_were_here "Wish You Were Here") (name fb:en.atom_heart_mother "Atom Heart Mother") (name fb:en.animals Animals) (name fb:en.ummagumma Ummagumma) (name fb:m.01hdgwm "Take It Back") (name fb:en.meddle Meddle) (name fb:m.0rpp0pg "High Hopes"))) (type (union fb:music.album)) what was pink floyd's first album? Take It Back 11.502 formula (and (fb:type.object.type fb:music.album) (!fb:music.artist.album fb:en.pink_floyd))) (value (list (name fb:en.a_momentary_lapse_of_reason "A Momentary Lapse of Reason") (name fb:en.oh_by_the_way_disc_16_the_division_bell "Oh by the Way (disc 7: Meddle)") (name fb:en.another_brick_in_the_wall_part_ii "Another Brick in the Wall, Part 2") (name fb:en.wish_you_were_here "Wish You Were Here") (name fb:en.atom_heart_mother "Atom Heart Mother") (name fb:en.animals Animals) (name fb:en.ummagumma Ummagumma) (name fb:m.01hdgwm "Take It Back") (name fb:en.meddle Meddle) (name fb:m.0rpp0pg "High Hopes"))) (type (union fb:music.album)) what was pink floyd's first album? High Hopes 11.502 formula (and (fb:type.object.type fb:music.album) (!fb:music.artist.album fb:en.pink_floyd))) (value (list (name fb:en.a_momentary_lapse_of_reason "A Momentary Lapse of Reason") (name fb:en.oh_by_the_way_disc_16_the_division_bell "Oh by the Way (disc 7: Meddle)") (name fb:en.another_brick_in_the_wall_part_ii "Another Brick in the Wall, Part 2") (name fb:en.wish_you_were_here "Wish You Were Here") (name fb:en.atom_heart_mother "Atom Heart Mother") (name fb:en.animals Animals) (name fb:en.ummagumma Ummagumma) (name fb:m.01hdgwm "Take It Back") (name fb:en.meddle Meddle) (name fb:m.0rpp0pg "High Hopes"))) (type (union fb:music.album)) who did granville t. woods married? Christian Dior -3.818 formula (and (fb:type.object.type fb:people.person) (!fb:location.location.people_born_here fb:en.granville_manche))) (value (list (name fb:en.christian_dior "Christian Dior") (name fb:en.jacques_gamblin "Jacques Gamblin") (name fb:en.georges_rene_le_peley_de_pleville "Georges René Le Peley de Pléville") (name fb:en.etienne_louis_francois_honore_letourneur "Étienne-François Letourneur") (name fb:m.0g5g42w "Christophe Auguin") (name fb:en.pierre_dumanoir_le_pelley "Pierre Dumanoir le Pelley") (name fb:en.emile_paul_amable_guepratte "Émile Paul Amable Guépratte") (name fb:m.0k8lz32 "Pierre-Alexis Ponsot") (name fb:en.maurice_denis "Maurice Denis") (name fb:m.0n4b4zk "Myrtille Georges"))) (type fb:people.person) who did granville t. woods married? Jacques Gamblin -3.818 formula (and (fb:type.object.type fb:people.person) (!fb:location.location.people_born_here fb:en.granville_manche))) (value (list (name fb:en.christian_dior "Christian Dior") (name fb:en.jacques_gamblin "Jacques Gamblin") (name fb:en.georges_rene_le_peley_de_pleville "Georges René Le Peley de Pléville") (name fb:en.etienne_louis_francois_honore_letourneur "Étienne-François Letourneur") (name fb:m.0g5g42w "Christophe Auguin") (name fb:en.pierre_dumanoir_le_pelley "Pierre Dumanoir le Pelley") (name fb:en.emile_paul_amable_guepratte "Émile Paul Amable Guépratte") (name fb:m.0k8lz32 "Pierre-Alexis Ponsot") (name fb:en.maurice_denis "Maurice Denis") (name fb:m.0n4b4zk "Myrtille Georges"))) (type fb:people.person) who did granville t. woods married? Georges René Le Peley de Pléville -3.818 formula (and (fb:type.object.type fb:people.person) (!fb:location.location.people_born_here fb:en.granville_manche))) (value (list (name fb:en.christian_dior "Christian Dior") (name fb:en.jacques_gamblin "Jacques Gamblin") (name fb:en.georges_rene_le_peley_de_pleville "Georges René Le Peley de Pléville") (name fb:en.etienne_louis_francois_honore_letourneur "Étienne-François Letourneur") (name fb:m.0g5g42w "Christophe Auguin") (name fb:en.pierre_dumanoir_le_pelley "Pierre Dumanoir le Pelley") (name fb:en.emile_paul_amable_guepratte "Émile Paul Amable Guépratte") (name fb:m.0k8lz32 "Pierre-Alexis Ponsot") (name fb:en.maurice_denis "Maurice Denis") (name fb:m.0n4b4zk "Myrtille Georges"))) (type fb:people.person) who did granville t. woods married? Étienne-François Letourneur -3.818 formula (and (fb:type.object.type fb:people.person) (!fb:location.location.people_born_here fb:en.granville_manche))) (value (list (name fb:en.christian_dior "Christian Dior") (name fb:en.jacques_gamblin "Jacques Gamblin") (name fb:en.georges_rene_le_peley_de_pleville "Georges René Le Peley de Pléville") (name fb:en.etienne_louis_francois_honore_letourneur "Étienne-François Letourneur") (name fb:m.0g5g42w "Christophe Auguin") (name fb:en.pierre_dumanoir_le_pelley "Pierre Dumanoir le Pelley") (name fb:en.emile_paul_amable_guepratte "Émile Paul Amable Guépratte") (name fb:m.0k8lz32 "Pierre-Alexis Ponsot") (name fb:en.maurice_denis "Maurice Denis") (name fb:m.0n4b4zk "Myrtille Georges"))) (type fb:people.person) who did granville t. woods married? Christophe Auguin -3.818 formula (and (fb:type.object.type fb:people.person) (!fb:location.location.people_born_here fb:en.granville_manche))) (value (list (name fb:en.christian_dior "Christian Dior") (name fb:en.jacques_gamblin "Jacques Gamblin") (name fb:en.georges_rene_le_peley_de_pleville "Georges René Le Peley de Pléville") (name fb:en.etienne_louis_francois_honore_letourneur "Étienne-François Letourneur") (name fb:m.0g5g42w "Christophe Auguin") (name fb:en.pierre_dumanoir_le_pelley "Pierre Dumanoir le Pelley") (name fb:en.emile_paul_amable_guepratte "Émile Paul Amable Guépratte") (name fb:m.0k8lz32 "Pierre-Alexis Ponsot") (name fb:en.maurice_denis "Maurice Denis") (name fb:m.0n4b4zk "Myrtille Georges"))) (type fb:people.person) who did granville t. woods married? Pierre Dumanoir le Pelley -3.818 formula (and (fb:type.object.type fb:people.person) (!fb:location.location.people_born_here fb:en.granville_manche))) (value (list (name fb:en.christian_dior "Christian Dior") (name fb:en.jacques_gamblin "Jacques Gamblin") (name fb:en.georges_rene_le_peley_de_pleville "Georges René Le Peley de Pléville") (name fb:en.etienne_louis_francois_honore_letourneur "Étienne-François Letourneur") (name fb:m.0g5g42w "Christophe Auguin") (name fb:en.pierre_dumanoir_le_pelley "Pierre Dumanoir le Pelley") (name fb:en.emile_paul_amable_guepratte "Émile Paul Amable Guépratte") (name fb:m.0k8lz32 "Pierre-Alexis Ponsot") (name fb:en.maurice_denis "Maurice Denis") (name fb:m.0n4b4zk "Myrtille Georges"))) (type fb:people.person) who did granville t. woods married? Émile Paul Amable Guépratte -3.818 formula (and (fb:type.object.type fb:people.person) (!fb:location.location.people_born_here fb:en.granville_manche))) (value (list (name fb:en.christian_dior "Christian Dior") (name fb:en.jacques_gamblin "Jacques Gamblin") (name fb:en.georges_rene_le_peley_de_pleville "Georges René Le Peley de Pléville") (name fb:en.etienne_louis_francois_honore_letourneur "Étienne-François Letourneur") (name fb:m.0g5g42w "Christophe Auguin") (name fb:en.pierre_dumanoir_le_pelley "Pierre Dumanoir le Pelley") (name fb:en.emile_paul_amable_guepratte "Émile Paul Amable Guépratte") (name fb:m.0k8lz32 "Pierre-Alexis Ponsot") (name fb:en.maurice_denis "Maurice Denis") (name fb:m.0n4b4zk "Myrtille Georges"))) (type fb:people.person) who did granville t. woods married? Pierre-Alexis Ponsot -3.818 formula (and (fb:type.object.type fb:people.person) (!fb:location.location.people_born_here fb:en.granville_manche))) (value (list (name fb:en.christian_dior "Christian Dior") (name fb:en.jacques_gamblin "Jacques Gamblin") (name fb:en.georges_rene_le_peley_de_pleville "Georges René Le Peley de Pléville") (name fb:en.etienne_louis_francois_honore_letourneur "Étienne-François Letourneur") (name fb:m.0g5g42w "Christophe Auguin") (name fb:en.pierre_dumanoir_le_pelley "Pierre Dumanoir le Pelley") (name fb:en.emile_paul_amable_guepratte "Émile Paul Amable Guépratte") (name fb:m.0k8lz32 "Pierre-Alexis Ponsot") (name fb:en.maurice_denis "Maurice Denis") (name fb:m.0n4b4zk "Myrtille Georges"))) (type fb:people.person) who did granville t. woods married? Maurice Denis -3.818 formula (and (fb:type.object.type fb:people.person) (!fb:location.location.people_born_here fb:en.granville_manche))) (value (list (name fb:en.christian_dior "Christian Dior") (name fb:en.jacques_gamblin "Jacques Gamblin") (name fb:en.georges_rene_le_peley_de_pleville "Georges René Le Peley de Pléville") (name fb:en.etienne_louis_francois_honore_letourneur "Étienne-François Letourneur") (name fb:m.0g5g42w "Christophe Auguin") (name fb:en.pierre_dumanoir_le_pelley "Pierre Dumanoir le Pelley") (name fb:en.emile_paul_amable_guepratte "Émile Paul Amable Guépratte") (name fb:m.0k8lz32 "Pierre-Alexis Ponsot") (name fb:en.maurice_denis "Maurice Denis") (name fb:m.0n4b4zk "Myrtille Georges"))) (type fb:people.person) who did granville t. woods married? Myrtille Georges -3.818 formula (and (fb:type.object.type fb:people.person) (!fb:location.location.people_born_here fb:en.granville_manche))) (value (list (name fb:en.christian_dior "Christian Dior") (name fb:en.jacques_gamblin "Jacques Gamblin") (name fb:en.georges_rene_le_peley_de_pleville "Georges René Le Peley de Pléville") (name fb:en.etienne_louis_francois_honore_letourneur "Étienne-François Letourneur") (name fb:m.0g5g42w "Christophe Auguin") (name fb:en.pierre_dumanoir_le_pelley "Pierre Dumanoir le Pelley") (name fb:en.emile_paul_amable_guepratte "Émile Paul Amable Guépratte") (name fb:m.0k8lz32 "Pierre-Alexis Ponsot") (name fb:en.maurice_denis "Maurice Denis") (name fb:m.0n4b4zk "Myrtille Georges"))) (type fb:people.person) what type of government did thomas jefferson prefer? Vice President 9.285 formula ((lambda x (!fb:government.government_position_held.basic_title (!fb:government.politician.government_positions_held (var x)))) fb:en.thomas_jefferson)) (value (list (name fb:en.vice_president "Vice President") (name fb:en.president President) (name fb:en.governor Governor) (name fb:en.secretary_of_state "Secretary of State"))) (type fb:government.government_office_category) what type of government did thomas jefferson prefer? Secretary of State 9.285 formula ((lambda x (!fb:government.government_position_held.basic_title (!fb:government.politician.government_positions_held (var x)))) fb:en.thomas_jefferson)) (value (list (name fb:en.vice_president "Vice President") (name fb:en.president President) (name fb:en.governor Governor) (name fb:en.secretary_of_state "Secretary of State"))) (type fb:government.government_office_category) what language did the sioux indians speak? English Language 11.395 formula (and (fb:type.object.type fb:language.human_language) (!fb:people.ethnicity.languages_spoken fb:en.sioux))) (value (list (name fb:en.english "English Language") (name fb:en.french "French Language") (name fb:en.sioux_language "Sioux language"))) (type fb:language.human_language) what language did the sioux indians speak? French Language 11.395 formula (and (fb:type.object.type fb:language.human_language) (!fb:people.ethnicity.languages_spoken fb:en.sioux))) (value (list (name fb:en.english "English Language") (name fb:en.french "French Language") (name fb:en.sioux_language "Sioux language"))) (type fb:language.human_language) what language did the sioux indians speak? Sioux language 11.395 formula (and (fb:type.object.type fb:language.human_language) (!fb:people.ethnicity.languages_spoken fb:en.sioux))) (value (list (name fb:en.english "English Language") (name fb:en.french "French Language") (name fb:en.sioux_language "Sioux language"))) (type fb:language.human_language) what are some famous people from el salvador? Embassy of El Salvador in Ottawa 11.306 formula (fb:user.skud.embassies_and_consulates.embassy.from_country fb:en.el_salvador)) (value (list (name fb:en.embassy_of_el_salvador_in_ottawa "Embassy of El Salvador in Ottawa") (name fb:en.embassy_of_el_salvador_in_washington "Embassy of El Salvador in Washington"))) (type fb:user.skud.embassies_and_consulates.embassy) what are some famous people from el salvador? Embassy of El Salvador in Washington 11.306 formula (fb:user.skud.embassies_and_consulates.embassy.from_country fb:en.el_salvador)) (value (list (name fb:en.embassy_of_el_salvador_in_ottawa "Embassy of El Salvador in Ottawa") (name fb:en.embassy_of_el_salvador_in_washington "Embassy of El Salvador in Washington"))) (type fb:user.skud.embassies_and_consulates.embassy) who did brett gardner play for in 2008? New York Yankees 13.776 formula (fb:sports.sports_team.roster (and (fb:sports.sports_team_roster.player fb:en.brett_gardner) (fb:sports.sports_team_roster.from (date 2008 -1 -1))))) (value (list (name fb:en.new_york_yankees "New York Yankees"))) (type fb:sports.sports_team) who plays dwight in the office? Power forward 9.014 formula (fb:basketball.basketball_position.players fb:en.dwight_howard)) (value (list (name fb:en.center Center) (name fb:en.power_forward "Power forward"))) (type fb:basketball.basketball_position) who plays riley on buffy the vampire slayer? Marc Blucas 5.25 formula ((lambda x (fb:tv.tv_actor.starring_roles (fb:tv.regular_tv_appearance.character (var x)))) fb:en.riley_finn)) (value (list (name fb:en.marc_blucas "Marc Blucas"))) (type fb:tv.tv_actor) what county is san diego ca? San Diego County 16.504 formula (!fb:location.hud_county_place.county fb:en.san_diego)) (value (list (name fb:en.san_diego_county "San Diego County"))) (type fb:location.us_county) who is the miami dolphins quarterback? Entertainment Weekly annotation index 7.769 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.miami_dolphins)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index"))) (type fb:common.annotation_index) who is the miami dolphins quarterback? WSJ Speakeasy Index 7.769 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.miami_dolphins)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index"))) (type fb:common.annotation_index) where did anne frank go to school? Montessori Lyceum Amsterdam 13.328 formula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.anne_frank)))) (value (list (name fb:en.montessori_lyceum_amsterdam "Montessori Lyceum Amsterdam") (name fb:en.jewish_lyceum "Jewish Lyceum"))) (type fb:education.educational_institution) where did anne frank go to school? Jewish Lyceum 13.328 formula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.anne_frank)))) (value (list (name fb:en.montessori_lyceum_amsterdam "Montessori Lyceum Amsterdam") (name fb:en.jewish_lyceum "Jewish Lyceum"))) (type fb:education.educational_institution) what basketball player is married to monica? Shannon Brown 16.17 formula (and (fb:people.person.profession fb:en.basketball_player) ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.monica_1980))) (value (list (name fb:en.shannon_brown "Shannon Brown"))) (type fb:people.person) what do people speak in germany? German Language 14.975 formula (fb:language.human_language.countries_spoken_in fb:en.germany)) (value (list (name fb:en.german_language "German Language") (name fb:en.austro-bavarian "Bavarian Language") (name fb:en.upper_saxon_german "Saxon, Upper Language"))) (type fb:language.human_language) what do people speak in germany? Bavarian Language 14.975 formula (fb:language.human_language.countries_spoken_in fb:en.germany)) (value (list (name fb:en.german_language "German Language") (name fb:en.austro-bavarian "Bavarian Language") (name fb:en.upper_saxon_german "Saxon, Upper Language"))) (type fb:language.human_language) what do people speak in germany? Saxon, Upper Language 14.975 formula (fb:language.human_language.countries_spoken_in fb:en.germany)) (value (list (name fb:en.german_language "German Language") (name fb:en.austro-bavarian "Bavarian Language") (name fb:en.upper_saxon_german "Saxon, Upper Language"))) (type fb:language.human_language) when is the last time the denver broncos won the superbowl? Super Bowl XXXIII 20.289 formula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.denver_broncos))) (value (list (name fb:en.super_bowl_xxxiii "Super Bowl XXXIII") (name fb:en.super_bowl_xxxii "Super Bowl XXXII"))) (type fb:sports.sports_championship_event) when is the last time the denver broncos won the superbowl? Super Bowl XXXII 20.289 formula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.denver_broncos))) (value (list (name fb:en.super_bowl_xxxiii "Super Bowl XXXIII") (name fb:en.super_bowl_xxxii "Super Bowl XXXII"))) (type fb:sports.sports_championship_event) where was caesar when he was stabbed? Delaware's at-large congressional district 12.513 formula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:government.government_position_held.district_represented (!fb:government.politician.government_positions_held (var x)))) fb:en.caesar_a_rodney))) (value (list (name fb:en.delawares_at_large_congressional_district "Delaware's at-large congressional district") (name fb:en.delaware Delaware))) (type fb:government.political_district) what team did jackie robinson? UCLA Bruins football 15.307 formula ((lambda x (!fb:american_football.football_historical_roster_position.team (!fb:american_football.football_player.former_teams (var x)))) fb:en.jackie_robinson)) (value (list (name fb:en.ucla_bruins_football "UCLA Bruins football") (name fb:en.los_angeles_bulldogs "Los Angeles Bulldogs"))) (type fb:american_football.football_team) what team did jackie robinson? Los Angeles Bulldogs 15.307 formula ((lambda x (!fb:american_football.football_historical_roster_position.team (!fb:american_football.football_player.former_teams (var x)))) fb:en.jackie_robinson)) (value (list (name fb:en.ucla_bruins_football "UCLA Bruins football") (name fb:en.los_angeles_bulldogs "Los Angeles Bulldogs"))) (type fb:american_football.football_team) what time zone is chicago in right now? Central Time Zone 21.585 formula (and (fb:type.object.type fb:time.time_zone) (fb:time.time_zone.locations_in_this_time_zone fb:en.chicago))) (value (list (name fb:en.central_time_zone "Central Time Zone"))) (type (union fb:time.time_zone)) what two countries make up the dominican republic? Embassy of the Dominican Republic in Ottawa 5.954 formula (fb:user.skud.embassies_and_consulates.embassy.from_country fb:en.dominican_republic)) (value (list (name fb:en.embassy_of_the_dominican_republic_in_ottawa "Embassy of the Dominican Republic in Ottawa") (name fb:en.embassy_of_the_dominican_republic_in_washington "Embassy of the Dominican Republic in Washington"))) (type fb:user.skud.embassies_and_consulates.embassy) what two countries make up the dominican republic? Embassy of the Dominican Republic in Washington 5.954 formula (fb:user.skud.embassies_and_consulates.embassy.from_country fb:en.dominican_republic)) (value (list (name fb:en.embassy_of_the_dominican_republic_in_ottawa "Embassy of the Dominican Republic in Ottawa") (name fb:en.embassy_of_the_dominican_republic_in_washington "Embassy of the Dominican Republic in Washington"))) (type fb:user.skud.embassies_and_consulates.embassy) who was the vice president under ronald reagan? George H. W. Bush 10.763 formula (fb:government.us_vice_president.to_president fb:en.ronald_reagan)) (value (list (name fb:en.george_h_w_bush "George H. W. Bush"))) (type fb:government.us_vice_president) where do the chicago white sox play home games? U.S. Cellular Field 2.827 formula (and (fb:type.object.type fb:location.location) (!fb:sports.sports_team.arena_stadium fb:en.chicago_white_sox))) (value (list (name fb:en.us_cellular_field "U.S. Cellular Field"))) (type fb:sports.sports_facility) what part did jeff conaway play in grease? Do You Wanna Know a Secret? 6.381 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.jeff_conaway)) (value (list (name fb:m.07scgk6 "Do You Wanna Know a Secret?") (name fb:en.petes_dragon "Pete's Dragon") (name fb:m.0crsfvd "Sunset Strip") (name fb:m.0gyxk0m "The Utah Murder Project") (name fb:en.jennifer_on_my_mind "Jennifer on My Mind") (name fb:m.0gfn0ql "Almost Pregnant") (name fb:m.0crs0sn "Dumb Luck in Vegas") (name fb:m.0gvryyc "Dante's Inferno: Abandon All Hope") (name fb:m.0crrxmw "The Banker") (name fb:en.the_eagle_has_landed_1976 "The Eagle Has Landed"))) (type fb:film.film) what part did jeff conaway play in grease? Pete's Dragon 6.381 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.jeff_conaway)) (value (list (name fb:m.07scgk6 "Do You Wanna Know a Secret?") (name fb:en.petes_dragon "Pete's Dragon") (name fb:m.0crsfvd "Sunset Strip") (name fb:m.0gyxk0m "The Utah Murder Project") (name fb:en.jennifer_on_my_mind "Jennifer on My Mind") (name fb:m.0gfn0ql "Almost Pregnant") (name fb:m.0crs0sn "Dumb Luck in Vegas") (name fb:m.0gvryyc "Dante's Inferno: Abandon All Hope") (name fb:m.0crrxmw "The Banker") (name fb:en.the_eagle_has_landed_1976 "The Eagle Has Landed"))) (type fb:film.film) what part did jeff conaway play in grease? Sunset Strip 6.381 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.jeff_conaway)) (value (list (name fb:m.07scgk6 "Do You Wanna Know a Secret?") (name fb:en.petes_dragon "Pete's Dragon") (name fb:m.0crsfvd "Sunset Strip") (name fb:m.0gyxk0m "The Utah Murder Project") (name fb:en.jennifer_on_my_mind "Jennifer on My Mind") (name fb:m.0gfn0ql "Almost Pregnant") (name fb:m.0crs0sn "Dumb Luck in Vegas") (name fb:m.0gvryyc "Dante's Inferno: Abandon All Hope") (name fb:m.0crrxmw "The Banker") (name fb:en.the_eagle_has_landed_1976 "The Eagle Has Landed"))) (type fb:film.film) what part did jeff conaway play in grease? The Utah Murder Project 6.381 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.jeff_conaway)) (value (list (name fb:m.07scgk6 "Do You Wanna Know a Secret?") (name fb:en.petes_dragon "Pete's Dragon") (name fb:m.0crsfvd "Sunset Strip") (name fb:m.0gyxk0m "The Utah Murder Project") (name fb:en.jennifer_on_my_mind "Jennifer on My Mind") (name fb:m.0gfn0ql "Almost Pregnant") (name fb:m.0crs0sn "Dumb Luck in Vegas") (name fb:m.0gvryyc "Dante's Inferno: Abandon All Hope") (name fb:m.0crrxmw "The Banker") (name fb:en.the_eagle_has_landed_1976 "The Eagle Has Landed"))) (type fb:film.film) what part did jeff conaway play in grease? Jennifer on My Mind 6.381 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.jeff_conaway)) (value (list (name fb:m.07scgk6 "Do You Wanna Know a Secret?") (name fb:en.petes_dragon "Pete's Dragon") (name fb:m.0crsfvd "Sunset Strip") (name fb:m.0gyxk0m "The Utah Murder Project") (name fb:en.jennifer_on_my_mind "Jennifer on My Mind") (name fb:m.0gfn0ql "Almost Pregnant") (name fb:m.0crs0sn "Dumb Luck in Vegas") (name fb:m.0gvryyc "Dante's Inferno: Abandon All Hope") (name fb:m.0crrxmw "The Banker") (name fb:en.the_eagle_has_landed_1976 "The Eagle Has Landed"))) (type fb:film.film) what part did jeff conaway play in grease? Almost Pregnant 6.381 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.jeff_conaway)) (value (list (name fb:m.07scgk6 "Do You Wanna Know a Secret?") (name fb:en.petes_dragon "Pete's Dragon") (name fb:m.0crsfvd "Sunset Strip") (name fb:m.0gyxk0m "The Utah Murder Project") (name fb:en.jennifer_on_my_mind "Jennifer on My Mind") (name fb:m.0gfn0ql "Almost Pregnant") (name fb:m.0crs0sn "Dumb Luck in Vegas") (name fb:m.0gvryyc "Dante's Inferno: Abandon All Hope") (name fb:m.0crrxmw "The Banker") (name fb:en.the_eagle_has_landed_1976 "The Eagle Has Landed"))) (type fb:film.film) what part did jeff conaway play in grease? Dumb Luck in Vegas 6.381 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.jeff_conaway)) (value (list (name fb:m.07scgk6 "Do You Wanna Know a Secret?") (name fb:en.petes_dragon "Pete's Dragon") (name fb:m.0crsfvd "Sunset Strip") (name fb:m.0gyxk0m "The Utah Murder Project") (name fb:en.jennifer_on_my_mind "Jennifer on My Mind") (name fb:m.0gfn0ql "Almost Pregnant") (name fb:m.0crs0sn "Dumb Luck in Vegas") (name fb:m.0gvryyc "Dante's Inferno: Abandon All Hope") (name fb:m.0crrxmw "The Banker") (name fb:en.the_eagle_has_landed_1976 "The Eagle Has Landed"))) (type fb:film.film) what part did jeff conaway play in grease? Dante's Inferno: Abandon All Hope 6.381 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.jeff_conaway)) (value (list (name fb:m.07scgk6 "Do You Wanna Know a Secret?") (name fb:en.petes_dragon "Pete's Dragon") (name fb:m.0crsfvd "Sunset Strip") (name fb:m.0gyxk0m "The Utah Murder Project") (name fb:en.jennifer_on_my_mind "Jennifer on My Mind") (name fb:m.0gfn0ql "Almost Pregnant") (name fb:m.0crs0sn "Dumb Luck in Vegas") (name fb:m.0gvryyc "Dante's Inferno: Abandon All Hope") (name fb:m.0crrxmw "The Banker") (name fb:en.the_eagle_has_landed_1976 "The Eagle Has Landed"))) (type fb:film.film) what part did jeff conaway play in grease? The Banker 6.381 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.jeff_conaway)) (value (list (name fb:m.07scgk6 "Do You Wanna Know a Secret?") (name fb:en.petes_dragon "Pete's Dragon") (name fb:m.0crsfvd "Sunset Strip") (name fb:m.0gyxk0m "The Utah Murder Project") (name fb:en.jennifer_on_my_mind "Jennifer on My Mind") (name fb:m.0gfn0ql "Almost Pregnant") (name fb:m.0crs0sn "Dumb Luck in Vegas") (name fb:m.0gvryyc "Dante's Inferno: Abandon All Hope") (name fb:m.0crrxmw "The Banker") (name fb:en.the_eagle_has_landed_1976 "The Eagle Has Landed"))) (type fb:film.film) what part did jeff conaway play in grease? The Eagle Has Landed 6.381 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.jeff_conaway)) (value (list (name fb:m.07scgk6 "Do You Wanna Know a Secret?") (name fb:en.petes_dragon "Pete's Dragon") (name fb:m.0crsfvd "Sunset Strip") (name fb:m.0gyxk0m "The Utah Murder Project") (name fb:en.jennifer_on_my_mind "Jennifer on My Mind") (name fb:m.0gfn0ql "Almost Pregnant") (name fb:m.0crs0sn "Dumb Luck in Vegas") (name fb:m.0gvryyc "Dante's Inferno: Abandon All Hope") (name fb:m.0crrxmw "The Banker") (name fb:en.the_eagle_has_landed_1976 "The Eagle Has Landed"))) (type fb:film.film) what book did benjamin franklin published? Benjamin Franklin: An American Life 13.902 formula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.benjamin_franklin))) (value (list (name fb:en.benjamin_franklin_an_american_life "Benjamin Franklin: An American Life") (name fb:en.the_autobiography_of_benjamin_franklin "The Autobiography of Benjamin Franklin") (name fb:m.05_lr_w "Stealing God's Thunder: Benjamin Franklin's Lightning Rod and the Invention of America") (name fb:m.069kt_g "The Devious Dr. Franklin, Colonial Agent: Benjamin Franklin's Years in London") (name fb:en.benjamin_franklin_and_his_enemies "Benjamin Franklin and His Enemies") (name fb:m.04whkmx "The First American: The Life and Times of Benjamin Franklin"))) (type (union fb:book.book)) what book did benjamin franklin published? The Autobiography of Benjamin Franklin 13.902 formula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.benjamin_franklin))) (value (list (name fb:en.benjamin_franklin_an_american_life "Benjamin Franklin: An American Life") (name fb:en.the_autobiography_of_benjamin_franklin "The Autobiography of Benjamin Franklin") (name fb:m.05_lr_w "Stealing God's Thunder: Benjamin Franklin's Lightning Rod and the Invention of America") (name fb:m.069kt_g "The Devious Dr. Franklin, Colonial Agent: Benjamin Franklin's Years in London") (name fb:en.benjamin_franklin_and_his_enemies "Benjamin Franklin and His Enemies") (name fb:m.04whkmx "The First American: The Life and Times of Benjamin Franklin"))) (type (union fb:book.book)) what book did benjamin franklin published? Stealing God's Thunder: Benjamin Franklin's Lightning Rod and the Invention of America 13.902 formula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.benjamin_franklin))) (value (list (name fb:en.benjamin_franklin_an_american_life "Benjamin Franklin: An American Life") (name fb:en.the_autobiography_of_benjamin_franklin "The Autobiography of Benjamin Franklin") (name fb:m.05_lr_w "Stealing God's Thunder: Benjamin Franklin's Lightning Rod and the Invention of America") (name fb:m.069kt_g "The Devious Dr. Franklin, Colonial Agent: Benjamin Franklin's Years in London") (name fb:en.benjamin_franklin_and_his_enemies "Benjamin Franklin and His Enemies") (name fb:m.04whkmx "The First American: The Life and Times of Benjamin Franklin"))) (type (union fb:book.book)) what book did benjamin franklin published? The Devious Dr. Franklin, Colonial Agent: Benjamin Franklin's Years in London 13.902 formula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.benjamin_franklin))) (value (list (name fb:en.benjamin_franklin_an_american_life "Benjamin Franklin: An American Life") (name fb:en.the_autobiography_of_benjamin_franklin "The Autobiography of Benjamin Franklin") (name fb:m.05_lr_w "Stealing God's Thunder: Benjamin Franklin's Lightning Rod and the Invention of America") (name fb:m.069kt_g "The Devious Dr. Franklin, Colonial Agent: Benjamin Franklin's Years in London") (name fb:en.benjamin_franklin_and_his_enemies "Benjamin Franklin and His Enemies") (name fb:m.04whkmx "The First American: The Life and Times of Benjamin Franklin"))) (type (union fb:book.book)) what book did benjamin franklin published? Benjamin Franklin and His Enemies 13.902 formula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.benjamin_franklin))) (value (list (name fb:en.benjamin_franklin_an_american_life "Benjamin Franklin: An American Life") (name fb:en.the_autobiography_of_benjamin_franklin "The Autobiography of Benjamin Franklin") (name fb:m.05_lr_w "Stealing God's Thunder: Benjamin Franklin's Lightning Rod and the Invention of America") (name fb:m.069kt_g "The Devious Dr. Franklin, Colonial Agent: Benjamin Franklin's Years in London") (name fb:en.benjamin_franklin_and_his_enemies "Benjamin Franklin and His Enemies") (name fb:m.04whkmx "The First American: The Life and Times of Benjamin Franklin"))) (type (union fb:book.book)) what book did benjamin franklin published? The First American: The Life and Times of Benjamin Franklin 13.902 formula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.benjamin_franklin))) (value (list (name fb:en.benjamin_franklin_an_american_life "Benjamin Franklin: An American Life") (name fb:en.the_autobiography_of_benjamin_franklin "The Autobiography of Benjamin Franklin") (name fb:m.05_lr_w "Stealing God's Thunder: Benjamin Franklin's Lightning Rod and the Invention of America") (name fb:m.069kt_g "The Devious Dr. Franklin, Colonial Agent: Benjamin Franklin's Years in London") (name fb:en.benjamin_franklin_and_his_enemies "Benjamin Franklin and His Enemies") (name fb:m.04whkmx "The First American: The Life and Times of Benjamin Franklin"))) (type (union fb:book.book)) what currency to take to barbados? Barbadian dollar 21.07 formula (!fb:location.country.currency_used fb:en.barbados)) (value (list (name fb:en.barbados_dollar "Barbadian dollar"))) (type fb:finance.currency) where did they get the name stanley cup? Frederick Stanley, 16th Earl of Derby 9.309 formula (!fb:symbols.namesake.named_after fb:en.stanley_cup)) (value (list (name fb:en.frederick_stanley_16th_earl_of_derby "Frederick Stanley, 16th Earl of Derby"))) (type fb:symbols.name_source) where did tennessee williams go to college? Washington University in St. Louis 12.998 formula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.tennessee_williams)))) (value (list (name fb:en.washington_university_in_st_louis "Washington University in St. Louis") (name fb:en.university_of_missouri_columbia "University of Missouri–Columbia") (name fb:en.university_of_iowa "University of Iowa") (name fb:en.the_new_school "The New School"))) (type fb:education.university) where did tennessee williams go to college? University of Missouri–Columbia 12.998 formula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.tennessee_williams)))) (value (list (name fb:en.washington_university_in_st_louis "Washington University in St. Louis") (name fb:en.university_of_missouri_columbia "University of Missouri–Columbia") (name fb:en.university_of_iowa "University of Iowa") (name fb:en.the_new_school "The New School"))) (type fb:education.university) where did tennessee williams go to college? University of Iowa 12.998 formula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.tennessee_williams)))) (value (list (name fb:en.washington_university_in_st_louis "Washington University in St. Louis") (name fb:en.university_of_missouri_columbia "University of Missouri–Columbia") (name fb:en.university_of_iowa "University of Iowa") (name fb:en.the_new_school "The New School"))) (type fb:education.university) where did tennessee williams go to college? The New School 12.998 formula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.tennessee_williams)))) (value (list (name fb:en.washington_university_in_st_louis "Washington University in St. Louis") (name fb:en.university_of_missouri_columbia "University of Missouri–Columbia") (name fb:en.university_of_iowa "University of Iowa") (name fb:en.the_new_school "The New School"))) (type fb:education.university) what is the name of airport in new york? New York Skyports Inc. Seaplane Base 10.058 formula (!fb:location.location.nearby_airports fb:en.new_york_state)) (value (list (name fb:en.new_york_skyports_inc_seaplane_base "New York Skyports Inc. Seaplane Base"))) (type fb:aviation.airport) who was queen victoria's husband? Albert, Prince Consort 12.397 formula ((lambda x (!fb:people.marriage.spouse (!fb:people.person.spouse_s (var x)))) fb:en.victoria_of_the_united_kingdom)) (value (list (name fb:en.albert_of_saxe-coburg_and_gotha "Albert, Prince Consort"))) (type fb:people.person) where did benjamin franklin work? James Franklin Printing Shop 8.303 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:business.employer.employees (fb:business.employment_tenure.person (var x)))) fb:en.benjamin_franklin))) (value (list (name fb:en.james_franklin_printing_shop "James Franklin Printing Shop"))) (type fb:education.educational_institution) who played donna on west wing? LeBron James/Kanye West 4.458 formula ((lambda x (!fb:base.saturdaynightlive.snl_musical_performance.episode (!fb:base.saturdaynightlive.snl_musical_guest.musical_performance (var x)))) fb:en.kanye_west)) (value (list (name fb:en.lebron_james_kanye_west "LeBron James/Kanye West") (name fb:m.06xr8fx "Steve Carell/Kanye West"))) (type fb:base.saturdaynightlive.snl_episode) who played donna on west wing? Steve Carell/Kanye West 4.458 formula ((lambda x (!fb:base.saturdaynightlive.snl_musical_performance.episode (!fb:base.saturdaynightlive.snl_musical_guest.musical_performance (var x)))) fb:en.kanye_west)) (value (list (name fb:en.lebron_james_kanye_west "LeBron James/Kanye West") (name fb:m.06xr8fx "Steve Carell/Kanye West"))) (type fb:base.saturdaynightlive.snl_episode) who played meg in season 1 of family guy? Seth MacFarlane 8.575 formula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane "Seth MacFarlane") (name fb:m.0f87jy "Mike Henry") (name fb:en.lacey_chabert "Lacey Chabert") (name fb:en.patrick_warburton "Patrick Warburton") (name fb:en.alex_borstein "Alex Borstein") (name fb:en.seth_green "Seth Green") (name fb:en.alec_sulkin "Alec Sulkin") (name fb:en.mila_kunis "Mila Kunis") (name fb:en.danny_smith "Danny Smith") (name fb:en.adam_west "Adam West"))) (type fb:tv.tv_actor) who played meg in season 1 of family guy? Mike Henry 8.575 formula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane "Seth MacFarlane") (name fb:m.0f87jy "Mike Henry") (name fb:en.lacey_chabert "Lacey Chabert") (name fb:en.patrick_warburton "Patrick Warburton") (name fb:en.alex_borstein "Alex Borstein") (name fb:en.seth_green "Seth Green") (name fb:en.alec_sulkin "Alec Sulkin") (name fb:en.mila_kunis "Mila Kunis") (name fb:en.danny_smith "Danny Smith") (name fb:en.adam_west "Adam West"))) (type fb:tv.tv_actor) who played meg in season 1 of family guy? Lacey Chabert 8.575 formula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane "Seth MacFarlane") (name fb:m.0f87jy "Mike Henry") (name fb:en.lacey_chabert "Lacey Chabert") (name fb:en.patrick_warburton "Patrick Warburton") (name fb:en.alex_borstein "Alex Borstein") (name fb:en.seth_green "Seth Green") (name fb:en.alec_sulkin "Alec Sulkin") (name fb:en.mila_kunis "Mila Kunis") (name fb:en.danny_smith "Danny Smith") (name fb:en.adam_west "Adam West"))) (type fb:tv.tv_actor) who played meg in season 1 of family guy? Patrick Warburton 8.575 formula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane "Seth MacFarlane") (name fb:m.0f87jy "Mike Henry") (name fb:en.lacey_chabert "Lacey Chabert") (name fb:en.patrick_warburton "Patrick Warburton") (name fb:en.alex_borstein "Alex Borstein") (name fb:en.seth_green "Seth Green") (name fb:en.alec_sulkin "Alec Sulkin") (name fb:en.mila_kunis "Mila Kunis") (name fb:en.danny_smith "Danny Smith") (name fb:en.adam_west "Adam West"))) (type fb:tv.tv_actor) who played meg in season 1 of family guy? Alex Borstein 8.575 formula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane "Seth MacFarlane") (name fb:m.0f87jy "Mike Henry") (name fb:en.lacey_chabert "Lacey Chabert") (name fb:en.patrick_warburton "Patrick Warburton") (name fb:en.alex_borstein "Alex Borstein") (name fb:en.seth_green "Seth Green") (name fb:en.alec_sulkin "Alec Sulkin") (name fb:en.mila_kunis "Mila Kunis") (name fb:en.danny_smith "Danny Smith") (name fb:en.adam_west "Adam West"))) (type fb:tv.tv_actor) who played meg in season 1 of family guy? Seth Green 8.575 formula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane "Seth MacFarlane") (name fb:m.0f87jy "Mike Henry") (name fb:en.lacey_chabert "Lacey Chabert") (name fb:en.patrick_warburton "Patrick Warburton") (name fb:en.alex_borstein "Alex Borstein") (name fb:en.seth_green "Seth Green") (name fb:en.alec_sulkin "Alec Sulkin") (name fb:en.mila_kunis "Mila Kunis") (name fb:en.danny_smith "Danny Smith") (name fb:en.adam_west "Adam West"))) (type fb:tv.tv_actor) who played meg in season 1 of family guy? Alec Sulkin 8.575 formula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane "Seth MacFarlane") (name fb:m.0f87jy "Mike Henry") (name fb:en.lacey_chabert "Lacey Chabert") (name fb:en.patrick_warburton "Patrick Warburton") (name fb:en.alex_borstein "Alex Borstein") (name fb:en.seth_green "Seth Green") (name fb:en.alec_sulkin "Alec Sulkin") (name fb:en.mila_kunis "Mila Kunis") (name fb:en.danny_smith "Danny Smith") (name fb:en.adam_west "Adam West"))) (type fb:tv.tv_actor) who played meg in season 1 of family guy? Mila Kunis 8.575 formula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane "Seth MacFarlane") (name fb:m.0f87jy "Mike Henry") (name fb:en.lacey_chabert "Lacey Chabert") (name fb:en.patrick_warburton "Patrick Warburton") (name fb:en.alex_borstein "Alex Borstein") (name fb:en.seth_green "Seth Green") (name fb:en.alec_sulkin "Alec Sulkin") (name fb:en.mila_kunis "Mila Kunis") (name fb:en.danny_smith "Danny Smith") (name fb:en.adam_west "Adam West"))) (type fb:tv.tv_actor) who played meg in season 1 of family guy? Danny Smith 8.575 formula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane "Seth MacFarlane") (name fb:m.0f87jy "Mike Henry") (name fb:en.lacey_chabert "Lacey Chabert") (name fb:en.patrick_warburton "Patrick Warburton") (name fb:en.alex_borstein "Alex Borstein") (name fb:en.seth_green "Seth Green") (name fb:en.alec_sulkin "Alec Sulkin") (name fb:en.mila_kunis "Mila Kunis") (name fb:en.danny_smith "Danny Smith") (name fb:en.adam_west "Adam West"))) (type fb:tv.tv_actor) who played meg in season 1 of family guy? Adam West 8.575 formula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_program.regular_cast (var x)))) fb:en.family_guy)) (value (list (name fb:en.seth_macfarlane "Seth MacFarlane") (name fb:m.0f87jy "Mike Henry") (name fb:en.lacey_chabert "Lacey Chabert") (name fb:en.patrick_warburton "Patrick Warburton") (name fb:en.alex_borstein "Alex Borstein") (name fb:en.seth_green "Seth Green") (name fb:en.alec_sulkin "Alec Sulkin") (name fb:en.mila_kunis "Mila Kunis") (name fb:en.danny_smith "Danny Smith") (name fb:en.adam_west "Adam West"))) (type fb:tv.tv_actor) when was the last time the dallas cowboys won the superbowl? Super Bowl XXVII 20.626 formula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.dallas_cowboys))) (value (list (name fb:en.super_bowl_xxvii "Super Bowl XXVII") (name fb:en.super_bowl_xii "Super Bowl XII") (name fb:en.super_bowl_xxx "Super Bowl XXX") (name fb:en.super_bowl_xxviii "Super Bowl XXVIII") (name fb:en.super_bowl_vi "Super Bowl VI"))) (type fb:sports.sports_championship_event) when was the last time the dallas cowboys won the superbowl? Super Bowl XII 20.626 formula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.dallas_cowboys))) (value (list (name fb:en.super_bowl_xxvii "Super Bowl XXVII") (name fb:en.super_bowl_xii "Super Bowl XII") (name fb:en.super_bowl_xxx "Super Bowl XXX") (name fb:en.super_bowl_xxviii "Super Bowl XXVIII") (name fb:en.super_bowl_vi "Super Bowl VI"))) (type fb:sports.sports_championship_event) when was the last time the dallas cowboys won the superbowl? Super Bowl XXX 20.626 formula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.dallas_cowboys))) (value (list (name fb:en.super_bowl_xxvii "Super Bowl XXVII") (name fb:en.super_bowl_xii "Super Bowl XII") (name fb:en.super_bowl_xxx "Super Bowl XXX") (name fb:en.super_bowl_xxviii "Super Bowl XXVIII") (name fb:en.super_bowl_vi "Super Bowl VI"))) (type fb:sports.sports_championship_event) when was the last time the dallas cowboys won the superbowl? Super Bowl XXVIII 20.626 formula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.dallas_cowboys))) (value (list (name fb:en.super_bowl_xxvii "Super Bowl XXVII") (name fb:en.super_bowl_xii "Super Bowl XII") (name fb:en.super_bowl_xxx "Super Bowl XXX") (name fb:en.super_bowl_xxviii "Super Bowl XXVIII") (name fb:en.super_bowl_vi "Super Bowl VI"))) (type fb:sports.sports_championship_event) when was the last time the dallas cowboys won the superbowl? Super Bowl VI 20.626 formula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.dallas_cowboys))) (value (list (name fb:en.super_bowl_xxvii "Super Bowl XXVII") (name fb:en.super_bowl_xii "Super Bowl XII") (name fb:en.super_bowl_xxx "Super Bowl XXX") (name fb:en.super_bowl_xxviii "Super Bowl XXVIII") (name fb:en.super_bowl_vi "Super Bowl VI"))) (type fb:sports.sports_championship_event) what did napoleon bonaparte do as emperor? House of Bonaparte 11.351 formula (!fb:people.family_member.family fb:en.napoleon_i_of_france)) (value (list (name fb:en.bonaparte "House of Bonaparte"))) (type fb:people.family) where do ireland play rugby union? Irish Sea 5.077 formula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:location.adjoining_relationship.adjoins (!fb:location.location.adjoin_s (var x)))) fb:en.northern_ireland))) (value (list (name fb:en.republic_of_ireland Ireland) (name fb:m.0725n69 "Irish Sea") (name fb:m.06_htj "North Channel") (name fb:m.0725dfj Malin))) (type fb:location.location) where do ireland play rugby union? North Channel 5.077 formula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:location.adjoining_relationship.adjoins (!fb:location.location.adjoin_s (var x)))) fb:en.northern_ireland))) (value (list (name fb:en.republic_of_ireland Ireland) (name fb:m.0725n69 "Irish Sea") (name fb:m.06_htj "North Channel") (name fb:m.0725dfj Malin))) (type fb:location.location) when did celtics win the championship? 1984 NBA Finals 17.441 formula (fb:sports.sports_championship_event.champion fb:en.boston_celtics)) (value (list (name fb:en.1984_nba_finals "1984 NBA Finals") (name fb:en.1966_nba_finals "1966 NBA Finals") (name fb:en.1964_nba_finals "1964 NBA Finals") (name fb:en.1976_nba_finals "1976 NBA Finals") (name fb:en.1963_nba_finals "1963 NBA Finals") (name fb:en.1959_nba_finals "1959 NBA Finals") (name fb:en.1962_nba_finals "1962 NBA Finals") (name fb:en.1986_nba_finals "1986 NBA Finals") (name fb:en.2008_nba_finals "2008 NBA Finals") (name fb:en.1961_nba_finals "1961 NBA Finals"))) (type fb:sports.sports_championship_event) when did celtics win the championship? 1966 NBA Finals 17.441 formula (fb:sports.sports_championship_event.champion fb:en.boston_celtics)) (value (list (name fb:en.1984_nba_finals "1984 NBA Finals") (name fb:en.1966_nba_finals "1966 NBA Finals") (name fb:en.1964_nba_finals "1964 NBA Finals") (name fb:en.1976_nba_finals "1976 NBA Finals") (name fb:en.1963_nba_finals "1963 NBA Finals") (name fb:en.1959_nba_finals "1959 NBA Finals") (name fb:en.1962_nba_finals "1962 NBA Finals") (name fb:en.1986_nba_finals "1986 NBA Finals") (name fb:en.2008_nba_finals "2008 NBA Finals") (name fb:en.1961_nba_finals "1961 NBA Finals"))) (type fb:sports.sports_championship_event) when did celtics win the championship? 1964 NBA Finals 17.441 formula (fb:sports.sports_championship_event.champion fb:en.boston_celtics)) (value (list (name fb:en.1984_nba_finals "1984 NBA Finals") (name fb:en.1966_nba_finals "1966 NBA Finals") (name fb:en.1964_nba_finals "1964 NBA Finals") (name fb:en.1976_nba_finals "1976 NBA Finals") (name fb:en.1963_nba_finals "1963 NBA Finals") (name fb:en.1959_nba_finals "1959 NBA Finals") (name fb:en.1962_nba_finals "1962 NBA Finals") (name fb:en.1986_nba_finals "1986 NBA Finals") (name fb:en.2008_nba_finals "2008 NBA Finals") (name fb:en.1961_nba_finals "1961 NBA Finals"))) (type fb:sports.sports_championship_event) when did celtics win the championship? 1976 NBA Finals 17.441 formula (fb:sports.sports_championship_event.champion fb:en.boston_celtics)) (value (list (name fb:en.1984_nba_finals "1984 NBA Finals") (name fb:en.1966_nba_finals "1966 NBA Finals") (name fb:en.1964_nba_finals "1964 NBA Finals") (name fb:en.1976_nba_finals "1976 NBA Finals") (name fb:en.1963_nba_finals "1963 NBA Finals") (name fb:en.1959_nba_finals "1959 NBA Finals") (name fb:en.1962_nba_finals "1962 NBA Finals") (name fb:en.1986_nba_finals "1986 NBA Finals") (name fb:en.2008_nba_finals "2008 NBA Finals") (name fb:en.1961_nba_finals "1961 NBA Finals"))) (type fb:sports.sports_championship_event) when did celtics win the championship? 1963 NBA Finals 17.441 formula (fb:sports.sports_championship_event.champion fb:en.boston_celtics)) (value (list (name fb:en.1984_nba_finals "1984 NBA Finals") (name fb:en.1966_nba_finals "1966 NBA Finals") (name fb:en.1964_nba_finals "1964 NBA Finals") (name fb:en.1976_nba_finals "1976 NBA Finals") (name fb:en.1963_nba_finals "1963 NBA Finals") (name fb:en.1959_nba_finals "1959 NBA Finals") (name fb:en.1962_nba_finals "1962 NBA Finals") (name fb:en.1986_nba_finals "1986 NBA Finals") (name fb:en.2008_nba_finals "2008 NBA Finals") (name fb:en.1961_nba_finals "1961 NBA Finals"))) (type fb:sports.sports_championship_event) when did celtics win the championship? 1959 NBA Finals 17.441 formula (fb:sports.sports_championship_event.champion fb:en.boston_celtics)) (value (list (name fb:en.1984_nba_finals "1984 NBA Finals") (name fb:en.1966_nba_finals "1966 NBA Finals") (name fb:en.1964_nba_finals "1964 NBA Finals") (name fb:en.1976_nba_finals "1976 NBA Finals") (name fb:en.1963_nba_finals "1963 NBA Finals") (name fb:en.1959_nba_finals "1959 NBA Finals") (name fb:en.1962_nba_finals "1962 NBA Finals") (name fb:en.1986_nba_finals "1986 NBA Finals") (name fb:en.2008_nba_finals "2008 NBA Finals") (name fb:en.1961_nba_finals "1961 NBA Finals"))) (type fb:sports.sports_championship_event) when did celtics win the championship? 1962 NBA Finals 17.441 formula (fb:sports.sports_championship_event.champion fb:en.boston_celtics)) (value (list (name fb:en.1984_nba_finals "1984 NBA Finals") (name fb:en.1966_nba_finals "1966 NBA Finals") (name fb:en.1964_nba_finals "1964 NBA Finals") (name fb:en.1976_nba_finals "1976 NBA Finals") (name fb:en.1963_nba_finals "1963 NBA Finals") (name fb:en.1959_nba_finals "1959 NBA Finals") (name fb:en.1962_nba_finals "1962 NBA Finals") (name fb:en.1986_nba_finals "1986 NBA Finals") (name fb:en.2008_nba_finals "2008 NBA Finals") (name fb:en.1961_nba_finals "1961 NBA Finals"))) (type fb:sports.sports_championship_event) when did celtics win the championship? 1986 NBA Finals 17.441 formula (fb:sports.sports_championship_event.champion fb:en.boston_celtics)) (value (list (name fb:en.1984_nba_finals "1984 NBA Finals") (name fb:en.1966_nba_finals "1966 NBA Finals") (name fb:en.1964_nba_finals "1964 NBA Finals") (name fb:en.1976_nba_finals "1976 NBA Finals") (name fb:en.1963_nba_finals "1963 NBA Finals") (name fb:en.1959_nba_finals "1959 NBA Finals") (name fb:en.1962_nba_finals "1962 NBA Finals") (name fb:en.1986_nba_finals "1986 NBA Finals") (name fb:en.2008_nba_finals "2008 NBA Finals") (name fb:en.1961_nba_finals "1961 NBA Finals"))) (type fb:sports.sports_championship_event) when did celtics win the championship? 2008 NBA Finals 17.441 formula (fb:sports.sports_championship_event.champion fb:en.boston_celtics)) (value (list (name fb:en.1984_nba_finals "1984 NBA Finals") (name fb:en.1966_nba_finals "1966 NBA Finals") (name fb:en.1964_nba_finals "1964 NBA Finals") (name fb:en.1976_nba_finals "1976 NBA Finals") (name fb:en.1963_nba_finals "1963 NBA Finals") (name fb:en.1959_nba_finals "1959 NBA Finals") (name fb:en.1962_nba_finals "1962 NBA Finals") (name fb:en.1986_nba_finals "1986 NBA Finals") (name fb:en.2008_nba_finals "2008 NBA Finals") (name fb:en.1961_nba_finals "1961 NBA Finals"))) (type fb:sports.sports_championship_event) when did celtics win the championship? 1961 NBA Finals 17.441 formula (fb:sports.sports_championship_event.champion fb:en.boston_celtics)) (value (list (name fb:en.1984_nba_finals "1984 NBA Finals") (name fb:en.1966_nba_finals "1966 NBA Finals") (name fb:en.1964_nba_finals "1964 NBA Finals") (name fb:en.1976_nba_finals "1976 NBA Finals") (name fb:en.1963_nba_finals "1963 NBA Finals") (name fb:en.1959_nba_finals "1959 NBA Finals") (name fb:en.1962_nba_finals "1962 NBA Finals") (name fb:en.1986_nba_finals "1986 NBA Finals") (name fb:en.2008_nba_finals "2008 NBA Finals") (name fb:en.1961_nba_finals "1961 NBA Finals"))) (type fb:sports.sports_championship_event) what countries included in oceania? Marshall Islands 14.778 formula (and (fb:type.object.type fb:location.country) (fb:location.location.containedby fb:en.oceania))) (value (list (name fb:en.australia Australia) (name fb:en.indonesia Indonesia) (name fb:en.samoa Samoa) (name fb:en.marshall_islands "Marshall Islands") (name fb:en.new_zealand "New Zealand") (name fb:en.vanuatu Vanuatu) (name fb:en.fiji Fiji) (name fb:en.papua_new_guinea "Papua New Guinea") (name fb:en.french_polynesia "French Polynesia") (name fb:en.american_samoa "American Samoa"))) (type fb:location.country) what countries included in oceania? New Zealand 14.778 formula (and (fb:type.object.type fb:location.country) (fb:location.location.containedby fb:en.oceania))) (value (list (name fb:en.australia Australia) (name fb:en.indonesia Indonesia) (name fb:en.samoa Samoa) (name fb:en.marshall_islands "Marshall Islands") (name fb:en.new_zealand "New Zealand") (name fb:en.vanuatu Vanuatu) (name fb:en.fiji Fiji) (name fb:en.papua_new_guinea "Papua New Guinea") (name fb:en.french_polynesia "French Polynesia") (name fb:en.american_samoa "American Samoa"))) (type fb:location.country) what countries included in oceania? Papua New Guinea 14.778 formula (and (fb:type.object.type fb:location.country) (fb:location.location.containedby fb:en.oceania))) (value (list (name fb:en.australia Australia) (name fb:en.indonesia Indonesia) (name fb:en.samoa Samoa) (name fb:en.marshall_islands "Marshall Islands") (name fb:en.new_zealand "New Zealand") (name fb:en.vanuatu Vanuatu) (name fb:en.fiji Fiji) (name fb:en.papua_new_guinea "Papua New Guinea") (name fb:en.french_polynesia "French Polynesia") (name fb:en.american_samoa "American Samoa"))) (type fb:location.country) what countries included in oceania? French Polynesia 14.778 formula (and (fb:type.object.type fb:location.country) (fb:location.location.containedby fb:en.oceania))) (value (list (name fb:en.australia Australia) (name fb:en.indonesia Indonesia) (name fb:en.samoa Samoa) (name fb:en.marshall_islands "Marshall Islands") (name fb:en.new_zealand "New Zealand") (name fb:en.vanuatu Vanuatu) (name fb:en.fiji Fiji) (name fb:en.papua_new_guinea "Papua New Guinea") (name fb:en.french_polynesia "French Polynesia") (name fb:en.american_samoa "American Samoa"))) (type fb:location.country) what countries included in oceania? American Samoa 14.778 formula (and (fb:type.object.type fb:location.country) (fb:location.location.containedby fb:en.oceania))) (value (list (name fb:en.australia Australia) (name fb:en.indonesia Indonesia) (name fb:en.samoa Samoa) (name fb:en.marshall_islands "Marshall Islands") (name fb:en.new_zealand "New Zealand") (name fb:en.vanuatu Vanuatu) (name fb:en.fiji Fiji) (name fb:en.papua_new_guinea "Papua New Guinea") (name fb:en.french_polynesia "French Polynesia") (name fb:en.american_samoa "American Samoa"))) (type fb:location.country) what country is nicki minaj from? United States of America 15.11 formula (and (fb:type.object.type fb:location.country) (!fb:people.person.nationality fb:en.nicki_minaj))) (value (list (name fb:en.united_states_of_america "United States of America") (name fb:en.trinidad_and_tobago "Trinidad and Tobago"))) (type (union fb:location.country)) what country is nicki minaj from? Trinidad and Tobago 15.11 formula (and (fb:type.object.type fb:location.country) (!fb:people.person.nationality fb:en.nicki_minaj))) (value (list (name fb:en.united_states_of_america "United States of America") (name fb:en.trinidad_and_tobago "Trinidad and Tobago"))) (type (union fb:location.country)) who played harry potter dumbledore actor? Daniel Larner 8.634 formula ((lambda x (!fb:cvg.game_performance.voice_actor (!fb:cvg.game_character.games (var x)))) fb:m.03647x)) (value (list (name fb:m.0h57n0y "Daniel Larner"))) (type fb:cvg.game_voice_actor) who was the prime minister of pakistan in 1999? Nawaz Sharif 10.598 formula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.pakistan)) (value (list (name fb:en.nawaz_sharif "Nawaz Sharif") (name fb:m.0rypygy "Mir Hazar Khan Khoso") (name fb:en.muhammad_zia-ul-haq "Muhammad Zia-ul-Haq") (name fb:en.asif_ali_zardari "Asif Ali Zardari") (name fb:en.zulfikar_ali_bhutto "Zulfikar Ali Bhutto") (name fb:en.shaukat_aziz "Shaukat Aziz") (name fb:en.liaquat_ali_khan "Liaquat Ali Khan") (name fb:m.0v3cpnp "Iqbal Ahmed Khan") (name fb:en.syed_yousaf_raza_gillani "Yousaf Raza Gillani") (name fb:en.raja_pervez_ashraf "Raja Pervaiz Ashraf"))) (type fb:government.politician) who was the prime minister of pakistan in 1999? Mir Hazar Khan Khoso 10.598 formula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.pakistan)) (value (list (name fb:en.nawaz_sharif "Nawaz Sharif") (name fb:m.0rypygy "Mir Hazar Khan Khoso") (name fb:en.muhammad_zia-ul-haq "Muhammad Zia-ul-Haq") (name fb:en.asif_ali_zardari "Asif Ali Zardari") (name fb:en.zulfikar_ali_bhutto "Zulfikar Ali Bhutto") (name fb:en.shaukat_aziz "Shaukat Aziz") (name fb:en.liaquat_ali_khan "Liaquat Ali Khan") (name fb:m.0v3cpnp "Iqbal Ahmed Khan") (name fb:en.syed_yousaf_raza_gillani "Yousaf Raza Gillani") (name fb:en.raja_pervez_ashraf "Raja Pervaiz Ashraf"))) (type fb:government.politician) who was the prime minister of pakistan in 1999? Muhammad Zia-ul-Haq 10.598 formula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.pakistan)) (value (list (name fb:en.nawaz_sharif "Nawaz Sharif") (name fb:m.0rypygy "Mir Hazar Khan Khoso") (name fb:en.muhammad_zia-ul-haq "Muhammad Zia-ul-Haq") (name fb:en.asif_ali_zardari "Asif Ali Zardari") (name fb:en.zulfikar_ali_bhutto "Zulfikar Ali Bhutto") (name fb:en.shaukat_aziz "Shaukat Aziz") (name fb:en.liaquat_ali_khan "Liaquat Ali Khan") (name fb:m.0v3cpnp "Iqbal Ahmed Khan") (name fb:en.syed_yousaf_raza_gillani "Yousaf Raza Gillani") (name fb:en.raja_pervez_ashraf "Raja Pervaiz Ashraf"))) (type fb:government.politician) who was the prime minister of pakistan in 1999? Asif Ali Zardari 10.598 formula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.pakistan)) (value (list (name fb:en.nawaz_sharif "Nawaz Sharif") (name fb:m.0rypygy "Mir Hazar Khan Khoso") (name fb:en.muhammad_zia-ul-haq "Muhammad Zia-ul-Haq") (name fb:en.asif_ali_zardari "Asif Ali Zardari") (name fb:en.zulfikar_ali_bhutto "Zulfikar Ali Bhutto") (name fb:en.shaukat_aziz "Shaukat Aziz") (name fb:en.liaquat_ali_khan "Liaquat Ali Khan") (name fb:m.0v3cpnp "Iqbal Ahmed Khan") (name fb:en.syed_yousaf_raza_gillani "Yousaf Raza Gillani") (name fb:en.raja_pervez_ashraf "Raja Pervaiz Ashraf"))) (type fb:government.politician) who was the prime minister of pakistan in 1999? Zulfikar Ali Bhutto 10.598 formula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.pakistan)) (value (list (name fb:en.nawaz_sharif "Nawaz Sharif") (name fb:m.0rypygy "Mir Hazar Khan Khoso") (name fb:en.muhammad_zia-ul-haq "Muhammad Zia-ul-Haq") (name fb:en.asif_ali_zardari "Asif Ali Zardari") (name fb:en.zulfikar_ali_bhutto "Zulfikar Ali Bhutto") (name fb:en.shaukat_aziz "Shaukat Aziz") (name fb:en.liaquat_ali_khan "Liaquat Ali Khan") (name fb:m.0v3cpnp "Iqbal Ahmed Khan") (name fb:en.syed_yousaf_raza_gillani "Yousaf Raza Gillani") (name fb:en.raja_pervez_ashraf "Raja Pervaiz Ashraf"))) (type fb:government.politician) who was the prime minister of pakistan in 1999? Shaukat Aziz 10.598 formula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.pakistan)) (value (list (name fb:en.nawaz_sharif "Nawaz Sharif") (name fb:m.0rypygy "Mir Hazar Khan Khoso") (name fb:en.muhammad_zia-ul-haq "Muhammad Zia-ul-Haq") (name fb:en.asif_ali_zardari "Asif Ali Zardari") (name fb:en.zulfikar_ali_bhutto "Zulfikar Ali Bhutto") (name fb:en.shaukat_aziz "Shaukat Aziz") (name fb:en.liaquat_ali_khan "Liaquat Ali Khan") (name fb:m.0v3cpnp "Iqbal Ahmed Khan") (name fb:en.syed_yousaf_raza_gillani "Yousaf Raza Gillani") (name fb:en.raja_pervez_ashraf "Raja Pervaiz Ashraf"))) (type fb:government.politician) who was the prime minister of pakistan in 1999? Liaquat Ali Khan 10.598 formula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.pakistan)) (value (list (name fb:en.nawaz_sharif "Nawaz Sharif") (name fb:m.0rypygy "Mir Hazar Khan Khoso") (name fb:en.muhammad_zia-ul-haq "Muhammad Zia-ul-Haq") (name fb:en.asif_ali_zardari "Asif Ali Zardari") (name fb:en.zulfikar_ali_bhutto "Zulfikar Ali Bhutto") (name fb:en.shaukat_aziz "Shaukat Aziz") (name fb:en.liaquat_ali_khan "Liaquat Ali Khan") (name fb:m.0v3cpnp "Iqbal Ahmed Khan") (name fb:en.syed_yousaf_raza_gillani "Yousaf Raza Gillani") (name fb:en.raja_pervez_ashraf "Raja Pervaiz Ashraf"))) (type fb:government.politician) who was the prime minister of pakistan in 1999? Iqbal Ahmed Khan 10.598 formula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.pakistan)) (value (list (name fb:en.nawaz_sharif "Nawaz Sharif") (name fb:m.0rypygy "Mir Hazar Khan Khoso") (name fb:en.muhammad_zia-ul-haq "Muhammad Zia-ul-Haq") (name fb:en.asif_ali_zardari "Asif Ali Zardari") (name fb:en.zulfikar_ali_bhutto "Zulfikar Ali Bhutto") (name fb:en.shaukat_aziz "Shaukat Aziz") (name fb:en.liaquat_ali_khan "Liaquat Ali Khan") (name fb:m.0v3cpnp "Iqbal Ahmed Khan") (name fb:en.syed_yousaf_raza_gillani "Yousaf Raza Gillani") (name fb:en.raja_pervez_ashraf "Raja Pervaiz Ashraf"))) (type fb:government.politician) who was the prime minister of pakistan in 1999? Yousaf Raza Gillani 10.598 formula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.pakistan)) (value (list (name fb:en.nawaz_sharif "Nawaz Sharif") (name fb:m.0rypygy "Mir Hazar Khan Khoso") (name fb:en.muhammad_zia-ul-haq "Muhammad Zia-ul-Haq") (name fb:en.asif_ali_zardari "Asif Ali Zardari") (name fb:en.zulfikar_ali_bhutto "Zulfikar Ali Bhutto") (name fb:en.shaukat_aziz "Shaukat Aziz") (name fb:en.liaquat_ali_khan "Liaquat Ali Khan") (name fb:m.0v3cpnp "Iqbal Ahmed Khan") (name fb:en.syed_yousaf_raza_gillani "Yousaf Raza Gillani") (name fb:en.raja_pervez_ashraf "Raja Pervaiz Ashraf"))) (type fb:government.politician) who was the prime minister of pakistan in 1999? Raja Pervaiz Ashraf 10.598 formula ((lambda x (fb:government.politician.government_positions_held (fb:government.government_position_held.jurisdiction_of_office (var x)))) fb:en.pakistan)) (value (list (name fb:en.nawaz_sharif "Nawaz Sharif") (name fb:m.0rypygy "Mir Hazar Khan Khoso") (name fb:en.muhammad_zia-ul-haq "Muhammad Zia-ul-Haq") (name fb:en.asif_ali_zardari "Asif Ali Zardari") (name fb:en.zulfikar_ali_bhutto "Zulfikar Ali Bhutto") (name fb:en.shaukat_aziz "Shaukat Aziz") (name fb:en.liaquat_ali_khan "Liaquat Ali Khan") (name fb:m.0v3cpnp "Iqbal Ahmed Khan") (name fb:en.syed_yousaf_raza_gillani "Yousaf Raza Gillani") (name fb:en.raja_pervez_ashraf "Raja Pervaiz Ashraf"))) (type fb:government.politician) what movies did christopher plummer play in? The Last Station 10.247 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.christopher_plummer))) (value (list (name fb:en.the_last_station "The Last Station") (name fb:m.0fqmbl9 "Moguls and Movie Stars") (name fb:m.0b44shh Beginners) (name fb:en.a_beautiful_mind "A Beautiful Mind") (name fb:m.04j16jd Blizzard) (name fb:m.0k2z670 "Inherit the Wind") (name fb:en.hallmark_hall_of_fame "Hallmark Hall of Fame") (name fb:en.murder_by_decree "Murder by Decree") (name fb:m.0lrf031 "J. B.") (name fb:m.0kcl4ty Barrymore))) (type (union fb:award.award_nominated_work)) what movies did christopher plummer play in? Moguls and Movie Stars 10.247 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.christopher_plummer))) (value (list (name fb:en.the_last_station "The Last Station") (name fb:m.0fqmbl9 "Moguls and Movie Stars") (name fb:m.0b44shh Beginners) (name fb:en.a_beautiful_mind "A Beautiful Mind") (name fb:m.04j16jd Blizzard) (name fb:m.0k2z670 "Inherit the Wind") (name fb:en.hallmark_hall_of_fame "Hallmark Hall of Fame") (name fb:en.murder_by_decree "Murder by Decree") (name fb:m.0lrf031 "J. B.") (name fb:m.0kcl4ty Barrymore))) (type (union fb:award.award_nominated_work)) what movies did christopher plummer play in? A Beautiful Mind 10.247 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.christopher_plummer))) (value (list (name fb:en.the_last_station "The Last Station") (name fb:m.0fqmbl9 "Moguls and Movie Stars") (name fb:m.0b44shh Beginners) (name fb:en.a_beautiful_mind "A Beautiful Mind") (name fb:m.04j16jd Blizzard) (name fb:m.0k2z670 "Inherit the Wind") (name fb:en.hallmark_hall_of_fame "Hallmark Hall of Fame") (name fb:en.murder_by_decree "Murder by Decree") (name fb:m.0lrf031 "J. B.") (name fb:m.0kcl4ty Barrymore))) (type (union fb:award.award_nominated_work)) what movies did christopher plummer play in? Inherit the Wind 10.247 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.christopher_plummer))) (value (list (name fb:en.the_last_station "The Last Station") (name fb:m.0fqmbl9 "Moguls and Movie Stars") (name fb:m.0b44shh Beginners) (name fb:en.a_beautiful_mind "A Beautiful Mind") (name fb:m.04j16jd Blizzard) (name fb:m.0k2z670 "Inherit the Wind") (name fb:en.hallmark_hall_of_fame "Hallmark Hall of Fame") (name fb:en.murder_by_decree "Murder by Decree") (name fb:m.0lrf031 "J. B.") (name fb:m.0kcl4ty Barrymore))) (type (union fb:award.award_nominated_work)) what movies did christopher plummer play in? Hallmark Hall of Fame 10.247 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.christopher_plummer))) (value (list (name fb:en.the_last_station "The Last Station") (name fb:m.0fqmbl9 "Moguls and Movie Stars") (name fb:m.0b44shh Beginners) (name fb:en.a_beautiful_mind "A Beautiful Mind") (name fb:m.04j16jd Blizzard) (name fb:m.0k2z670 "Inherit the Wind") (name fb:en.hallmark_hall_of_fame "Hallmark Hall of Fame") (name fb:en.murder_by_decree "Murder by Decree") (name fb:m.0lrf031 "J. B.") (name fb:m.0kcl4ty Barrymore))) (type (union fb:award.award_nominated_work)) what movies did christopher plummer play in? Murder by Decree 10.247 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.christopher_plummer))) (value (list (name fb:en.the_last_station "The Last Station") (name fb:m.0fqmbl9 "Moguls and Movie Stars") (name fb:m.0b44shh Beginners) (name fb:en.a_beautiful_mind "A Beautiful Mind") (name fb:m.04j16jd Blizzard) (name fb:m.0k2z670 "Inherit the Wind") (name fb:en.hallmark_hall_of_fame "Hallmark Hall of Fame") (name fb:en.murder_by_decree "Murder by Decree") (name fb:m.0lrf031 "J. B.") (name fb:m.0kcl4ty Barrymore))) (type (union fb:award.award_nominated_work)) what movies did christopher plummer play in? J. B. 10.247 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.christopher_plummer))) (value (list (name fb:en.the_last_station "The Last Station") (name fb:m.0fqmbl9 "Moguls and Movie Stars") (name fb:m.0b44shh Beginners) (name fb:en.a_beautiful_mind "A Beautiful Mind") (name fb:m.04j16jd Blizzard) (name fb:m.0k2z670 "Inherit the Wind") (name fb:en.hallmark_hall_of_fame "Hallmark Hall of Fame") (name fb:en.murder_by_decree "Murder by Decree") (name fb:m.0lrf031 "J. B.") (name fb:m.0kcl4ty Barrymore))) (type (union fb:award.award_nominated_work)) what movies is omar epps in? Love & Basketball 10.187 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.omar_epps))) (value (list (name fb:m.04p5cr House) (name fb:en.love_basketball "Love & Basketball"))) (type (union fb:award.award_nominated_work)) what district does nancy pelosi represent? California’s 8th congressional district 13.511 formula (and (fb:type.object.type fb:government.political_district) ((lambda x (!fb:government.government_position_held.district_represented (!fb:government.politician.government_positions_held (var x)))) fb:en.nancy_pelosi))) (value (list (name fb:en.californias_8th_congressional_district "California’s 8th congressional district") (name fb:en.californias_12th_congressional_district "California’s 12th congressional district") (name fb:en.californias_5th_congressional_district "California’s 5th congressional district"))) (type (union fb:government.political_district)) what district does nancy pelosi represent? California’s 12th congressional district 13.511 formula (and (fb:type.object.type fb:government.political_district) ((lambda x (!fb:government.government_position_held.district_represented (!fb:government.politician.government_positions_held (var x)))) fb:en.nancy_pelosi))) (value (list (name fb:en.californias_8th_congressional_district "California’s 8th congressional district") (name fb:en.californias_12th_congressional_district "California’s 12th congressional district") (name fb:en.californias_5th_congressional_district "California’s 5th congressional district"))) (type (union fb:government.political_district)) what district does nancy pelosi represent? California’s 5th congressional district 13.511 formula (and (fb:type.object.type fb:government.political_district) ((lambda x (!fb:government.government_position_held.district_represented (!fb:government.politician.government_positions_held (var x)))) fb:en.nancy_pelosi))) (value (list (name fb:en.californias_8th_congressional_district "California’s 8th congressional district") (name fb:en.californias_12th_congressional_district "California’s 12th congressional district") (name fb:en.californias_5th_congressional_district "California’s 5th congressional district"))) (type (union fb:government.political_district)) where did george herbert walker bush go to college? Harvard Business School 11.426 formula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.george_w_bush)))) (value (list (name fb:en.harvard_business_school "Harvard Business School") (name fb:en.yale_university "Yale University"))) (type fb:education.university) where did george herbert walker bush go to college? Yale University 11.426 formula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.george_w_bush)))) (value (list (name fb:en.harvard_business_school "Harvard Business School") (name fb:en.yale_university "Yale University"))) (type fb:education.university) what did bruce jenner win gold medal for? Gold medal 7.906 formula (!fb:olympics.olympic_medal_honor.medal (and (!fb:olympics.olympic_athlete.medals_won fb:en.bruce_jenner) (!fb:olympics.olympic_medal.medal_winners fb:en.gold_medal)))) (value (list (name fb:en.gold_medal "Gold medal"))) (type fb:olympics.olympic_medal) where do they speak tibetan? Chinese language 11.615 formula (!fb:people.ethnicity.languages_spoken fb:en.tibetan_people)) (value (list (name fb:en.chinese_language "Chinese language") (name fb:en.nepali_language "Nepali Language") (name fb:en.standard_tibetan "Standard Tibetan") (name fb:en.tibetan_language "Tibetan languages") (name fb:en.baima_language "Baima language"))) (type fb:language.human_language) where do they speak tibetan? Nepali Language 11.615 formula (!fb:people.ethnicity.languages_spoken fb:en.tibetan_people)) (value (list (name fb:en.chinese_language "Chinese language") (name fb:en.nepali_language "Nepali Language") (name fb:en.standard_tibetan "Standard Tibetan") (name fb:en.tibetan_language "Tibetan languages") (name fb:en.baima_language "Baima language"))) (type fb:language.human_language) where do they speak tibetan? Standard Tibetan 11.615 formula (!fb:people.ethnicity.languages_spoken fb:en.tibetan_people)) (value (list (name fb:en.chinese_language "Chinese language") (name fb:en.nepali_language "Nepali Language") (name fb:en.standard_tibetan "Standard Tibetan") (name fb:en.tibetan_language "Tibetan languages") (name fb:en.baima_language "Baima language"))) (type fb:language.human_language) where do they speak tibetan? Tibetan languages 11.615 formula (!fb:people.ethnicity.languages_spoken fb:en.tibetan_people)) (value (list (name fb:en.chinese_language "Chinese language") (name fb:en.nepali_language "Nepali Language") (name fb:en.standard_tibetan "Standard Tibetan") (name fb:en.tibetan_language "Tibetan languages") (name fb:en.baima_language "Baima language"))) (type fb:language.human_language) where do they speak tibetan? Baima language 11.615 formula (!fb:people.ethnicity.languages_spoken fb:en.tibetan_people)) (value (list (name fb:en.chinese_language "Chinese language") (name fb:en.nepali_language "Nepali Language") (name fb:en.standard_tibetan "Standard Tibetan") (name fb:en.tibetan_language "Tibetan languages") (name fb:en.baima_language "Baima language"))) (type fb:language.human_language) what to do in hollywood ca this weekend? Griffith Observatory 10.442 formula (!fb:travel.travel_destination.tourist_attractions fb:en.hollywood_california)) (value (list (name fb:en.griffith_observatory "Griffith Observatory") (name fb:en.hollywood_sign "Hollywood Sign") (name fb:en.hollywood_walk_of_fame "Hollywood Walk of Fame") (name fb:en.universal_studios_hollywood "Universal Studios Hollywood") (name fb:en.kodak_theatre "Dolby Theatre") (name fb:en.graumans_chinese_theatre "TCL Chinese Theatre") (name fb:en.graumans_egyptian_theatre "Grauman's Egyptian Theatre") (name fb:en.hollywood_wax_museum "Hollywood Wax Museum") (name fb:en.universal_citywalk "Universal CityWalk") (name fb:en.hollywood_heritage_museum "Hollywood Heritage Museum"))) (type fb:travel.tourist_attraction) what to do in hollywood ca this weekend? Hollywood Sign 10.442 formula (!fb:travel.travel_destination.tourist_attractions fb:en.hollywood_california)) (value (list (name fb:en.griffith_observatory "Griffith Observatory") (name fb:en.hollywood_sign "Hollywood Sign") (name fb:en.hollywood_walk_of_fame "Hollywood Walk of Fame") (name fb:en.universal_studios_hollywood "Universal Studios Hollywood") (name fb:en.kodak_theatre "Dolby Theatre") (name fb:en.graumans_chinese_theatre "TCL Chinese Theatre") (name fb:en.graumans_egyptian_theatre "Grauman's Egyptian Theatre") (name fb:en.hollywood_wax_museum "Hollywood Wax Museum") (name fb:en.universal_citywalk "Universal CityWalk") (name fb:en.hollywood_heritage_museum "Hollywood Heritage Museum"))) (type fb:travel.tourist_attraction) what to do in hollywood ca this weekend? Hollywood Walk of Fame 10.442 formula (!fb:travel.travel_destination.tourist_attractions fb:en.hollywood_california)) (value (list (name fb:en.griffith_observatory "Griffith Observatory") (name fb:en.hollywood_sign "Hollywood Sign") (name fb:en.hollywood_walk_of_fame "Hollywood Walk of Fame") (name fb:en.universal_studios_hollywood "Universal Studios Hollywood") (name fb:en.kodak_theatre "Dolby Theatre") (name fb:en.graumans_chinese_theatre "TCL Chinese Theatre") (name fb:en.graumans_egyptian_theatre "Grauman's Egyptian Theatre") (name fb:en.hollywood_wax_museum "Hollywood Wax Museum") (name fb:en.universal_citywalk "Universal CityWalk") (name fb:en.hollywood_heritage_museum "Hollywood Heritage Museum"))) (type fb:travel.tourist_attraction) what to do in hollywood ca this weekend? Universal Studios Hollywood 10.442 formula (!fb:travel.travel_destination.tourist_attractions fb:en.hollywood_california)) (value (list (name fb:en.griffith_observatory "Griffith Observatory") (name fb:en.hollywood_sign "Hollywood Sign") (name fb:en.hollywood_walk_of_fame "Hollywood Walk of Fame") (name fb:en.universal_studios_hollywood "Universal Studios Hollywood") (name fb:en.kodak_theatre "Dolby Theatre") (name fb:en.graumans_chinese_theatre "TCL Chinese Theatre") (name fb:en.graumans_egyptian_theatre "Grauman's Egyptian Theatre") (name fb:en.hollywood_wax_museum "Hollywood Wax Museum") (name fb:en.universal_citywalk "Universal CityWalk") (name fb:en.hollywood_heritage_museum "Hollywood Heritage Museum"))) (type fb:travel.tourist_attraction) what to do in hollywood ca this weekend? Dolby Theatre 10.442 formula (!fb:travel.travel_destination.tourist_attractions fb:en.hollywood_california)) (value (list (name fb:en.griffith_observatory "Griffith Observatory") (name fb:en.hollywood_sign "Hollywood Sign") (name fb:en.hollywood_walk_of_fame "Hollywood Walk of Fame") (name fb:en.universal_studios_hollywood "Universal Studios Hollywood") (name fb:en.kodak_theatre "Dolby Theatre") (name fb:en.graumans_chinese_theatre "TCL Chinese Theatre") (name fb:en.graumans_egyptian_theatre "Grauman's Egyptian Theatre") (name fb:en.hollywood_wax_museum "Hollywood Wax Museum") (name fb:en.universal_citywalk "Universal CityWalk") (name fb:en.hollywood_heritage_museum "Hollywood Heritage Museum"))) (type fb:travel.tourist_attraction) what to do in hollywood ca this weekend? TCL Chinese Theatre 10.442 formula (!fb:travel.travel_destination.tourist_attractions fb:en.hollywood_california)) (value (list (name fb:en.griffith_observatory "Griffith Observatory") (name fb:en.hollywood_sign "Hollywood Sign") (name fb:en.hollywood_walk_of_fame "Hollywood Walk of Fame") (name fb:en.universal_studios_hollywood "Universal Studios Hollywood") (name fb:en.kodak_theatre "Dolby Theatre") (name fb:en.graumans_chinese_theatre "TCL Chinese Theatre") (name fb:en.graumans_egyptian_theatre "Grauman's Egyptian Theatre") (name fb:en.hollywood_wax_museum "Hollywood Wax Museum") (name fb:en.universal_citywalk "Universal CityWalk") (name fb:en.hollywood_heritage_museum "Hollywood Heritage Museum"))) (type fb:travel.tourist_attraction) what to do in hollywood ca this weekend? Grauman's Egyptian Theatre 10.442 formula (!fb:travel.travel_destination.tourist_attractions fb:en.hollywood_california)) (value (list (name fb:en.griffith_observatory "Griffith Observatory") (name fb:en.hollywood_sign "Hollywood Sign") (name fb:en.hollywood_walk_of_fame "Hollywood Walk of Fame") (name fb:en.universal_studios_hollywood "Universal Studios Hollywood") (name fb:en.kodak_theatre "Dolby Theatre") (name fb:en.graumans_chinese_theatre "TCL Chinese Theatre") (name fb:en.graumans_egyptian_theatre "Grauman's Egyptian Theatre") (name fb:en.hollywood_wax_museum "Hollywood Wax Museum") (name fb:en.universal_citywalk "Universal CityWalk") (name fb:en.hollywood_heritage_museum "Hollywood Heritage Museum"))) (type fb:travel.tourist_attraction) what to do in hollywood ca this weekend? Hollywood Wax Museum 10.442 formula (!fb:travel.travel_destination.tourist_attractions fb:en.hollywood_california)) (value (list (name fb:en.griffith_observatory "Griffith Observatory") (name fb:en.hollywood_sign "Hollywood Sign") (name fb:en.hollywood_walk_of_fame "Hollywood Walk of Fame") (name fb:en.universal_studios_hollywood "Universal Studios Hollywood") (name fb:en.kodak_theatre "Dolby Theatre") (name fb:en.graumans_chinese_theatre "TCL Chinese Theatre") (name fb:en.graumans_egyptian_theatre "Grauman's Egyptian Theatre") (name fb:en.hollywood_wax_museum "Hollywood Wax Museum") (name fb:en.universal_citywalk "Universal CityWalk") (name fb:en.hollywood_heritage_museum "Hollywood Heritage Museum"))) (type fb:travel.tourist_attraction) what to do in hollywood ca this weekend? Universal CityWalk 10.442 formula (!fb:travel.travel_destination.tourist_attractions fb:en.hollywood_california)) (value (list (name fb:en.griffith_observatory "Griffith Observatory") (name fb:en.hollywood_sign "Hollywood Sign") (name fb:en.hollywood_walk_of_fame "Hollywood Walk of Fame") (name fb:en.universal_studios_hollywood "Universal Studios Hollywood") (name fb:en.kodak_theatre "Dolby Theatre") (name fb:en.graumans_chinese_theatre "TCL Chinese Theatre") (name fb:en.graumans_egyptian_theatre "Grauman's Egyptian Theatre") (name fb:en.hollywood_wax_museum "Hollywood Wax Museum") (name fb:en.universal_citywalk "Universal CityWalk") (name fb:en.hollywood_heritage_museum "Hollywood Heritage Museum"))) (type fb:travel.tourist_attraction) what to do in hollywood ca this weekend? Hollywood Heritage Museum 10.442 formula (!fb:travel.travel_destination.tourist_attractions fb:en.hollywood_california)) (value (list (name fb:en.griffith_observatory "Griffith Observatory") (name fb:en.hollywood_sign "Hollywood Sign") (name fb:en.hollywood_walk_of_fame "Hollywood Walk of Fame") (name fb:en.universal_studios_hollywood "Universal Studios Hollywood") (name fb:en.kodak_theatre "Dolby Theatre") (name fb:en.graumans_chinese_theatre "TCL Chinese Theatre") (name fb:en.graumans_egyptian_theatre "Grauman's Egyptian Theatre") (name fb:en.hollywood_wax_museum "Hollywood Wax Museum") (name fb:en.universal_citywalk "Universal CityWalk") (name fb:en.hollywood_heritage_museum "Hollywood Heritage Museum"))) (type fb:travel.tourist_attraction) who ran against abraham lincoln for president in 1860? Andrew Johnson 14.104 formula (fb:government.us_vice_president.to_president fb:en.abraham_lincoln)) (value (list (name fb:en.andrew_johnson "Andrew Johnson") (name fb:en.hannibal_hamlin "Hannibal Hamlin"))) (type fb:government.us_vice_president) who ran against abraham lincoln for president in 1860? Hannibal Hamlin 14.104 formula (fb:government.us_vice_president.to_president fb:en.abraham_lincoln)) (value (list (name fb:en.andrew_johnson "Andrew Johnson") (name fb:en.hannibal_hamlin "Hannibal Hamlin"))) (type fb:government.us_vice_president) where did kim kardashian come from? Los Angeles 7.885 formula (and (fb:type.object.type fb:location.location) (fb:location.location.people_born_here fb:en.kim_kardashian))) (value (list (name fb:en.los_angeles "Los Angeles"))) (type fb:location.location) what is michael kors best known for? Entertainment Weekly annotation index 11.094 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.michael_kors)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) what is michael kors best known for? WSJ Speakeasy Index 11.094 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.michael_kors)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) what is michael kors best known for? Blissful Master Index 11.094 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.michael_kors)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) what is michael kors best known for? Blissful Celebrities 11.094 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.michael_kors)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) who plays charlie in the santa clause movies? Bruce Kirby 5.343 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.santa_claus)) (value (list (name fb:en.bruce_kirby_1928 "Bruce Kirby") (name fb:en.art_carney "Art Carney") (name fb:en.john_call "John Call") (name fb:en.tex_avery "Tex Avery") (name fb:m.0tkzz28 "Rick Touhy") (name fb:en.bud_jamison "Bud Jamison") (name fb:m.0v9kh9x "Don McManus") (name fb:en.jeff_gillen "Jeff Gillen") (name fb:en.edward_ivory "Edward Ivory") (name fb:m.0h0vhrh "Robb Pruitt"))) (type fb:film.actor) who plays charlie in the santa clause movies? Art Carney 5.343 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.santa_claus)) (value (list (name fb:en.bruce_kirby_1928 "Bruce Kirby") (name fb:en.art_carney "Art Carney") (name fb:en.john_call "John Call") (name fb:en.tex_avery "Tex Avery") (name fb:m.0tkzz28 "Rick Touhy") (name fb:en.bud_jamison "Bud Jamison") (name fb:m.0v9kh9x "Don McManus") (name fb:en.jeff_gillen "Jeff Gillen") (name fb:en.edward_ivory "Edward Ivory") (name fb:m.0h0vhrh "Robb Pruitt"))) (type fb:film.actor) who plays charlie in the santa clause movies? John Call 5.343 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.santa_claus)) (value (list (name fb:en.bruce_kirby_1928 "Bruce Kirby") (name fb:en.art_carney "Art Carney") (name fb:en.john_call "John Call") (name fb:en.tex_avery "Tex Avery") (name fb:m.0tkzz28 "Rick Touhy") (name fb:en.bud_jamison "Bud Jamison") (name fb:m.0v9kh9x "Don McManus") (name fb:en.jeff_gillen "Jeff Gillen") (name fb:en.edward_ivory "Edward Ivory") (name fb:m.0h0vhrh "Robb Pruitt"))) (type fb:film.actor) who plays charlie in the santa clause movies? Tex Avery 5.343 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.santa_claus)) (value (list (name fb:en.bruce_kirby_1928 "Bruce Kirby") (name fb:en.art_carney "Art Carney") (name fb:en.john_call "John Call") (name fb:en.tex_avery "Tex Avery") (name fb:m.0tkzz28 "Rick Touhy") (name fb:en.bud_jamison "Bud Jamison") (name fb:m.0v9kh9x "Don McManus") (name fb:en.jeff_gillen "Jeff Gillen") (name fb:en.edward_ivory "Edward Ivory") (name fb:m.0h0vhrh "Robb Pruitt"))) (type fb:film.actor) who plays charlie in the santa clause movies? Rick Touhy 5.343 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.santa_claus)) (value (list (name fb:en.bruce_kirby_1928 "Bruce Kirby") (name fb:en.art_carney "Art Carney") (name fb:en.john_call "John Call") (name fb:en.tex_avery "Tex Avery") (name fb:m.0tkzz28 "Rick Touhy") (name fb:en.bud_jamison "Bud Jamison") (name fb:m.0v9kh9x "Don McManus") (name fb:en.jeff_gillen "Jeff Gillen") (name fb:en.edward_ivory "Edward Ivory") (name fb:m.0h0vhrh "Robb Pruitt"))) (type fb:film.actor) who plays charlie in the santa clause movies? Bud Jamison 5.343 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.santa_claus)) (value (list (name fb:en.bruce_kirby_1928 "Bruce Kirby") (name fb:en.art_carney "Art Carney") (name fb:en.john_call "John Call") (name fb:en.tex_avery "Tex Avery") (name fb:m.0tkzz28 "Rick Touhy") (name fb:en.bud_jamison "Bud Jamison") (name fb:m.0v9kh9x "Don McManus") (name fb:en.jeff_gillen "Jeff Gillen") (name fb:en.edward_ivory "Edward Ivory") (name fb:m.0h0vhrh "Robb Pruitt"))) (type fb:film.actor) who plays charlie in the santa clause movies? Don McManus 5.343 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.santa_claus)) (value (list (name fb:en.bruce_kirby_1928 "Bruce Kirby") (name fb:en.art_carney "Art Carney") (name fb:en.john_call "John Call") (name fb:en.tex_avery "Tex Avery") (name fb:m.0tkzz28 "Rick Touhy") (name fb:en.bud_jamison "Bud Jamison") (name fb:m.0v9kh9x "Don McManus") (name fb:en.jeff_gillen "Jeff Gillen") (name fb:en.edward_ivory "Edward Ivory") (name fb:m.0h0vhrh "Robb Pruitt"))) (type fb:film.actor) who plays charlie in the santa clause movies? Jeff Gillen 5.343 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.santa_claus)) (value (list (name fb:en.bruce_kirby_1928 "Bruce Kirby") (name fb:en.art_carney "Art Carney") (name fb:en.john_call "John Call") (name fb:en.tex_avery "Tex Avery") (name fb:m.0tkzz28 "Rick Touhy") (name fb:en.bud_jamison "Bud Jamison") (name fb:m.0v9kh9x "Don McManus") (name fb:en.jeff_gillen "Jeff Gillen") (name fb:en.edward_ivory "Edward Ivory") (name fb:m.0h0vhrh "Robb Pruitt"))) (type fb:film.actor) who plays charlie in the santa clause movies? Edward Ivory 5.343 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.santa_claus)) (value (list (name fb:en.bruce_kirby_1928 "Bruce Kirby") (name fb:en.art_carney "Art Carney") (name fb:en.john_call "John Call") (name fb:en.tex_avery "Tex Avery") (name fb:m.0tkzz28 "Rick Touhy") (name fb:en.bud_jamison "Bud Jamison") (name fb:m.0v9kh9x "Don McManus") (name fb:en.jeff_gillen "Jeff Gillen") (name fb:en.edward_ivory "Edward Ivory") (name fb:m.0h0vhrh "Robb Pruitt"))) (type fb:film.actor) who plays charlie in the santa clause movies? Robb Pruitt 5.343 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.santa_claus)) (value (list (name fb:en.bruce_kirby_1928 "Bruce Kirby") (name fb:en.art_carney "Art Carney") (name fb:en.john_call "John Call") (name fb:en.tex_avery "Tex Avery") (name fb:m.0tkzz28 "Rick Touhy") (name fb:en.bud_jamison "Bud Jamison") (name fb:m.0v9kh9x "Don McManus") (name fb:en.jeff_gillen "Jeff Gillen") (name fb:en.edward_ivory "Edward Ivory") (name fb:m.0h0vhrh "Robb Pruitt"))) (type fb:film.actor) what was napoleon bonaparte accomplishments? Stomach cancer 4.53 formula (fb:people.cause_of_death.people fb:en.napoleon_i_of_france)) (value (list (name fb:en.gastric_cancer "Stomach cancer") (name fb:en.arsenic_poisoning "Arsenic poisoning"))) (type fb:people.cause_of_death) what was napoleon bonaparte accomplishments? Arsenic poisoning 4.53 formula (fb:people.cause_of_death.people fb:en.napoleon_i_of_france)) (value (list (name fb:en.gastric_cancer "Stomach cancer") (name fb:en.arsenic_poisoning "Arsenic poisoning"))) (type fb:people.cause_of_death) what highschool did r. kelly attend? Kenwood Academy 11.229 formula ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.r_kelly)) (value (list (name fb:en.kenwood_academy "Kenwood Academy"))) (type fb:education.educational_institution) what happened at benghazi? 2012 U.S. diplomatic missions attacks 3.249 formula (!fb:location.location.events fb:en.benghazi)) (value (list (name fb:m.0m1x86k "2012 U.S. diplomatic missions attacks") (name fb:m.0gg5z_1 "First Battle of Benghazi") (name fb:m.0m4x3cr "2012 U.S. Consulate attack in Benghazi") (name fb:m.0gj8wbw "Second Battle of Benghazi"))) (type fb:time.event) what happened at benghazi? First Battle of Benghazi 3.249 formula (!fb:location.location.events fb:en.benghazi)) (value (list (name fb:m.0m1x86k "2012 U.S. diplomatic missions attacks") (name fb:m.0gg5z_1 "First Battle of Benghazi") (name fb:m.0m4x3cr "2012 U.S. Consulate attack in Benghazi") (name fb:m.0gj8wbw "Second Battle of Benghazi"))) (type fb:time.event) what happened at benghazi? 2012 U.S. Consulate attack in Benghazi 3.249 formula (!fb:location.location.events fb:en.benghazi)) (value (list (name fb:m.0m1x86k "2012 U.S. diplomatic missions attacks") (name fb:m.0gg5z_1 "First Battle of Benghazi") (name fb:m.0m4x3cr "2012 U.S. Consulate attack in Benghazi") (name fb:m.0gj8wbw "Second Battle of Benghazi"))) (type fb:time.event) what happened at benghazi? Second Battle of Benghazi 3.249 formula (!fb:location.location.events fb:en.benghazi)) (value (list (name fb:m.0m1x86k "2012 U.S. diplomatic missions attacks") (name fb:m.0gg5z_1 "First Battle of Benghazi") (name fb:m.0m4x3cr "2012 U.S. Consulate attack in Benghazi") (name fb:m.0gj8wbw "Second Battle of Benghazi"))) (type fb:time.event) what is the percentage of youth in uganda? English Language 8.576 formula (!fb:location.country.official_language fb:en.uganda)) (value (list (name fb:en.english "English Language") (name fb:en.swahili_language "Swahili Language"))) (type fb:language.human_language) what is the percentage of youth in uganda? Swahili Language 8.576 formula (!fb:location.country.official_language fb:en.uganda)) (value (list (name fb:en.english "English Language") (name fb:en.swahili_language "Swahili Language"))) (type fb:language.human_language) what kind of money do i bring to mexico? United States of America 14.958 formula ((lambda x (!fb:location.imports_and_exports.imported_from (!fb:location.statistical_region.places_imported_from (var x)))) fb:en.mexico)) (value (list (name fb:en.united_states_of_america "United States of America") (name fb:en.portugal Portugal))) (type fb:location.statistical_region) what is the only colony on the south america continent? North America 18.631 formula (and (fb:type.object.type fb:location.continent) ((lambda x (fb:location.location.adjoin_s (fb:location.adjoining_relationship.adjoins (var x)))) fb:en.south_america))) (value (list (name fb:en.north_america "North America"))) (type (union fb:location.continent)) where do the blackhawks play? United Center 8.065 formula (and (fb:type.object.type fb:location.location) (fb:sports.sports_facility.teams fb:en.chicago_blackhawks))) (value (list (name fb:en.united_center "United Center"))) (type fb:sports.sports_facility) who plays john connor? Christian Bale 9.424 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.john_connor)) (value (list (name fb:en.christian_bale "Christian Bale") (name fb:en.nick_stahl "Nick Stahl") (name fb:en.edward_furlong "Edward Furlong"))) (type fb:film.actor) who plays john connor? Nick Stahl 9.424 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.john_connor)) (value (list (name fb:en.christian_bale "Christian Bale") (name fb:en.nick_stahl "Nick Stahl") (name fb:en.edward_furlong "Edward Furlong"))) (type fb:film.actor) who plays john connor? Edward Furlong 9.424 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.john_connor)) (value (list (name fb:en.christian_bale "Christian Bale") (name fb:en.nick_stahl "Nick Stahl") (name fb:en.edward_furlong "Edward Furlong"))) (type fb:film.actor) what is the main language spoken in mexico? Spanish Language 18.999 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.mexico))) (value (list (name fb:en.spanish "Spanish Language") (name fb:en.italian "Italian Language") (name fb:en.nahuatl_language "Nahuatl languages") (name fb:en.upur_xe9pecha "Purepecha Language") (name fb:en.chochoteco "Chochotec Language") (name fb:en.oodham "O'odham language") (name fb:en.tzeltal_language "Tzeltal language") (name fb:en.paipai_language "Paipai language") (name fb:en.chicomuceltec "Chicomuceltec Language") (name fb:en.chontal_maya_language "Chontal, Tabasco Language"))) (type (union fb:language.human_language)) what is the main language spoken in mexico? Italian Language 18.999 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.mexico))) (value (list (name fb:en.spanish "Spanish Language") (name fb:en.italian "Italian Language") (name fb:en.nahuatl_language "Nahuatl languages") (name fb:en.upur_xe9pecha "Purepecha Language") (name fb:en.chochoteco "Chochotec Language") (name fb:en.oodham "O'odham language") (name fb:en.tzeltal_language "Tzeltal language") (name fb:en.paipai_language "Paipai language") (name fb:en.chicomuceltec "Chicomuceltec Language") (name fb:en.chontal_maya_language "Chontal, Tabasco Language"))) (type (union fb:language.human_language)) what is the main language spoken in mexico? Nahuatl languages 18.999 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.mexico))) (value (list (name fb:en.spanish "Spanish Language") (name fb:en.italian "Italian Language") (name fb:en.nahuatl_language "Nahuatl languages") (name fb:en.upur_xe9pecha "Purepecha Language") (name fb:en.chochoteco "Chochotec Language") (name fb:en.oodham "O'odham language") (name fb:en.tzeltal_language "Tzeltal language") (name fb:en.paipai_language "Paipai language") (name fb:en.chicomuceltec "Chicomuceltec Language") (name fb:en.chontal_maya_language "Chontal, Tabasco Language"))) (type (union fb:language.human_language)) what is the main language spoken in mexico? Purepecha Language 18.999 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.mexico))) (value (list (name fb:en.spanish "Spanish Language") (name fb:en.italian "Italian Language") (name fb:en.nahuatl_language "Nahuatl languages") (name fb:en.upur_xe9pecha "Purepecha Language") (name fb:en.chochoteco "Chochotec Language") (name fb:en.oodham "O'odham language") (name fb:en.tzeltal_language "Tzeltal language") (name fb:en.paipai_language "Paipai language") (name fb:en.chicomuceltec "Chicomuceltec Language") (name fb:en.chontal_maya_language "Chontal, Tabasco Language"))) (type (union fb:language.human_language)) what is the main language spoken in mexico? Chochotec Language 18.999 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.mexico))) (value (list (name fb:en.spanish "Spanish Language") (name fb:en.italian "Italian Language") (name fb:en.nahuatl_language "Nahuatl languages") (name fb:en.upur_xe9pecha "Purepecha Language") (name fb:en.chochoteco "Chochotec Language") (name fb:en.oodham "O'odham language") (name fb:en.tzeltal_language "Tzeltal language") (name fb:en.paipai_language "Paipai language") (name fb:en.chicomuceltec "Chicomuceltec Language") (name fb:en.chontal_maya_language "Chontal, Tabasco Language"))) (type (union fb:language.human_language)) what is the main language spoken in mexico? O'odham language 18.999 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.mexico))) (value (list (name fb:en.spanish "Spanish Language") (name fb:en.italian "Italian Language") (name fb:en.nahuatl_language "Nahuatl languages") (name fb:en.upur_xe9pecha "Purepecha Language") (name fb:en.chochoteco "Chochotec Language") (name fb:en.oodham "O'odham language") (name fb:en.tzeltal_language "Tzeltal language") (name fb:en.paipai_language "Paipai language") (name fb:en.chicomuceltec "Chicomuceltec Language") (name fb:en.chontal_maya_language "Chontal, Tabasco Language"))) (type (union fb:language.human_language)) what is the main language spoken in mexico? Tzeltal language 18.999 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.mexico))) (value (list (name fb:en.spanish "Spanish Language") (name fb:en.italian "Italian Language") (name fb:en.nahuatl_language "Nahuatl languages") (name fb:en.upur_xe9pecha "Purepecha Language") (name fb:en.chochoteco "Chochotec Language") (name fb:en.oodham "O'odham language") (name fb:en.tzeltal_language "Tzeltal language") (name fb:en.paipai_language "Paipai language") (name fb:en.chicomuceltec "Chicomuceltec Language") (name fb:en.chontal_maya_language "Chontal, Tabasco Language"))) (type (union fb:language.human_language)) what is the main language spoken in mexico? Paipai language 18.999 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.mexico))) (value (list (name fb:en.spanish "Spanish Language") (name fb:en.italian "Italian Language") (name fb:en.nahuatl_language "Nahuatl languages") (name fb:en.upur_xe9pecha "Purepecha Language") (name fb:en.chochoteco "Chochotec Language") (name fb:en.oodham "O'odham language") (name fb:en.tzeltal_language "Tzeltal language") (name fb:en.paipai_language "Paipai language") (name fb:en.chicomuceltec "Chicomuceltec Language") (name fb:en.chontal_maya_language "Chontal, Tabasco Language"))) (type (union fb:language.human_language)) what is the main language spoken in mexico? Chicomuceltec Language 18.999 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.mexico))) (value (list (name fb:en.spanish "Spanish Language") (name fb:en.italian "Italian Language") (name fb:en.nahuatl_language "Nahuatl languages") (name fb:en.upur_xe9pecha "Purepecha Language") (name fb:en.chochoteco "Chochotec Language") (name fb:en.oodham "O'odham language") (name fb:en.tzeltal_language "Tzeltal language") (name fb:en.paipai_language "Paipai language") (name fb:en.chicomuceltec "Chicomuceltec Language") (name fb:en.chontal_maya_language "Chontal, Tabasco Language"))) (type (union fb:language.human_language)) what is the main language spoken in mexico? Chontal, Tabasco Language 18.999 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.mexico))) (value (list (name fb:en.spanish "Spanish Language") (name fb:en.italian "Italian Language") (name fb:en.nahuatl_language "Nahuatl languages") (name fb:en.upur_xe9pecha "Purepecha Language") (name fb:en.chochoteco "Chochotec Language") (name fb:en.oodham "O'odham language") (name fb:en.tzeltal_language "Tzeltal language") (name fb:en.paipai_language "Paipai language") (name fb:en.chicomuceltec "Chicomuceltec Language") (name fb:en.chontal_maya_language "Chontal, Tabasco Language"))) (type (union fb:language.human_language)) what are italians classified as? Giuseppe Squillaci 4.767 formula ((lambda x (fb:award.award_nominee.award_nominations (fb:award.award_nomination.nominated_for (var x)))) fb:m.0c4f761)) (value (list (name fb:m.0c68f68 "Giuseppe Squillaci") (name fb:m.0c1p4xb "Bruno Pupparo") (name fb:en.gaetano_carito "Gaetano Carito") (name fb:m.0c4f769 "Marco Grillo") (name fb:en.paolo_buonvino "Paolo Buonvino"))) (type fb:award.award_nominee) what are italians classified as? Bruno Pupparo 4.767 formula ((lambda x (fb:award.award_nominee.award_nominations (fb:award.award_nomination.nominated_for (var x)))) fb:m.0c4f761)) (value (list (name fb:m.0c68f68 "Giuseppe Squillaci") (name fb:m.0c1p4xb "Bruno Pupparo") (name fb:en.gaetano_carito "Gaetano Carito") (name fb:m.0c4f769 "Marco Grillo") (name fb:en.paolo_buonvino "Paolo Buonvino"))) (type fb:award.award_nominee) what are italians classified as? Gaetano Carito 4.767 formula ((lambda x (fb:award.award_nominee.award_nominations (fb:award.award_nomination.nominated_for (var x)))) fb:m.0c4f761)) (value (list (name fb:m.0c68f68 "Giuseppe Squillaci") (name fb:m.0c1p4xb "Bruno Pupparo") (name fb:en.gaetano_carito "Gaetano Carito") (name fb:m.0c4f769 "Marco Grillo") (name fb:en.paolo_buonvino "Paolo Buonvino"))) (type fb:award.award_nominee) what are italians classified as? Marco Grillo 4.767 formula ((lambda x (fb:award.award_nominee.award_nominations (fb:award.award_nomination.nominated_for (var x)))) fb:m.0c4f761)) (value (list (name fb:m.0c68f68 "Giuseppe Squillaci") (name fb:m.0c1p4xb "Bruno Pupparo") (name fb:en.gaetano_carito "Gaetano Carito") (name fb:m.0c4f769 "Marco Grillo") (name fb:en.paolo_buonvino "Paolo Buonvino"))) (type fb:award.award_nominee) what are italians classified as? Paolo Buonvino 4.767 formula ((lambda x (fb:award.award_nominee.award_nominations (fb:award.award_nomination.nominated_for (var x)))) fb:m.0c4f761)) (value (list (name fb:m.0c68f68 "Giuseppe Squillaci") (name fb:m.0c1p4xb "Bruno Pupparo") (name fb:en.gaetano_carito "Gaetano Carito") (name fb:m.0c4f769 "Marco Grillo") (name fb:en.paolo_buonvino "Paolo Buonvino"))) (type fb:award.award_nominee) who was the first governor of colonial south carolina? Strom Thurmond 13.1 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.south_carolina)) (value (list (name fb:en.strom_thurmond "Strom Thurmond") (name fb:m.0gw_nyv "Alan Wilson") (name fb:en.mark_sanford "Mark Sanford") (name fb:en.thomas_pinckney "Thomas Pinckney") (name fb:en.jim_hodges "Jim Hodges") (name fb:en.carroll_a_campbell_jr "Carroll A. Campbell, Jr.") (name fb:en.james_f_byrnes "James F. Byrnes") (name fb:en.richard_irvine_manning_iii "Richard Irvine Manning III") (name fb:en.nikki_haley "Nikki Haley") (name fb:en.james_henry_hammond "James Henry Hammond"))) (type fb:government.politician) who was the first governor of colonial south carolina? Alan Wilson 13.1 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.south_carolina)) (value (list (name fb:en.strom_thurmond "Strom Thurmond") (name fb:m.0gw_nyv "Alan Wilson") (name fb:en.mark_sanford "Mark Sanford") (name fb:en.thomas_pinckney "Thomas Pinckney") (name fb:en.jim_hodges "Jim Hodges") (name fb:en.carroll_a_campbell_jr "Carroll A. Campbell, Jr.") (name fb:en.james_f_byrnes "James F. Byrnes") (name fb:en.richard_irvine_manning_iii "Richard Irvine Manning III") (name fb:en.nikki_haley "Nikki Haley") (name fb:en.james_henry_hammond "James Henry Hammond"))) (type fb:government.politician) who was the first governor of colonial south carolina? Mark Sanford 13.1 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.south_carolina)) (value (list (name fb:en.strom_thurmond "Strom Thurmond") (name fb:m.0gw_nyv "Alan Wilson") (name fb:en.mark_sanford "Mark Sanford") (name fb:en.thomas_pinckney "Thomas Pinckney") (name fb:en.jim_hodges "Jim Hodges") (name fb:en.carroll_a_campbell_jr "Carroll A. Campbell, Jr.") (name fb:en.james_f_byrnes "James F. Byrnes") (name fb:en.richard_irvine_manning_iii "Richard Irvine Manning III") (name fb:en.nikki_haley "Nikki Haley") (name fb:en.james_henry_hammond "James Henry Hammond"))) (type fb:government.politician) who was the first governor of colonial south carolina? Thomas Pinckney 13.1 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.south_carolina)) (value (list (name fb:en.strom_thurmond "Strom Thurmond") (name fb:m.0gw_nyv "Alan Wilson") (name fb:en.mark_sanford "Mark Sanford") (name fb:en.thomas_pinckney "Thomas Pinckney") (name fb:en.jim_hodges "Jim Hodges") (name fb:en.carroll_a_campbell_jr "Carroll A. Campbell, Jr.") (name fb:en.james_f_byrnes "James F. Byrnes") (name fb:en.richard_irvine_manning_iii "Richard Irvine Manning III") (name fb:en.nikki_haley "Nikki Haley") (name fb:en.james_henry_hammond "James Henry Hammond"))) (type fb:government.politician) who was the first governor of colonial south carolina? Jim Hodges 13.1 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.south_carolina)) (value (list (name fb:en.strom_thurmond "Strom Thurmond") (name fb:m.0gw_nyv "Alan Wilson") (name fb:en.mark_sanford "Mark Sanford") (name fb:en.thomas_pinckney "Thomas Pinckney") (name fb:en.jim_hodges "Jim Hodges") (name fb:en.carroll_a_campbell_jr "Carroll A. Campbell, Jr.") (name fb:en.james_f_byrnes "James F. Byrnes") (name fb:en.richard_irvine_manning_iii "Richard Irvine Manning III") (name fb:en.nikki_haley "Nikki Haley") (name fb:en.james_henry_hammond "James Henry Hammond"))) (type fb:government.politician) who was the first governor of colonial south carolina? Carroll A. Campbell, Jr. 13.1 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.south_carolina)) (value (list (name fb:en.strom_thurmond "Strom Thurmond") (name fb:m.0gw_nyv "Alan Wilson") (name fb:en.mark_sanford "Mark Sanford") (name fb:en.thomas_pinckney "Thomas Pinckney") (name fb:en.jim_hodges "Jim Hodges") (name fb:en.carroll_a_campbell_jr "Carroll A. Campbell, Jr.") (name fb:en.james_f_byrnes "James F. Byrnes") (name fb:en.richard_irvine_manning_iii "Richard Irvine Manning III") (name fb:en.nikki_haley "Nikki Haley") (name fb:en.james_henry_hammond "James Henry Hammond"))) (type fb:government.politician) who was the first governor of colonial south carolina? James F. Byrnes 13.1 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.south_carolina)) (value (list (name fb:en.strom_thurmond "Strom Thurmond") (name fb:m.0gw_nyv "Alan Wilson") (name fb:en.mark_sanford "Mark Sanford") (name fb:en.thomas_pinckney "Thomas Pinckney") (name fb:en.jim_hodges "Jim Hodges") (name fb:en.carroll_a_campbell_jr "Carroll A. Campbell, Jr.") (name fb:en.james_f_byrnes "James F. Byrnes") (name fb:en.richard_irvine_manning_iii "Richard Irvine Manning III") (name fb:en.nikki_haley "Nikki Haley") (name fb:en.james_henry_hammond "James Henry Hammond"))) (type fb:government.politician) who was the first governor of colonial south carolina? Richard Irvine Manning III 13.1 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.south_carolina)) (value (list (name fb:en.strom_thurmond "Strom Thurmond") (name fb:m.0gw_nyv "Alan Wilson") (name fb:en.mark_sanford "Mark Sanford") (name fb:en.thomas_pinckney "Thomas Pinckney") (name fb:en.jim_hodges "Jim Hodges") (name fb:en.carroll_a_campbell_jr "Carroll A. Campbell, Jr.") (name fb:en.james_f_byrnes "James F. Byrnes") (name fb:en.richard_irvine_manning_iii "Richard Irvine Manning III") (name fb:en.nikki_haley "Nikki Haley") (name fb:en.james_henry_hammond "James Henry Hammond"))) (type fb:government.politician) who was the first governor of colonial south carolina? Nikki Haley 13.1 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.south_carolina)) (value (list (name fb:en.strom_thurmond "Strom Thurmond") (name fb:m.0gw_nyv "Alan Wilson") (name fb:en.mark_sanford "Mark Sanford") (name fb:en.thomas_pinckney "Thomas Pinckney") (name fb:en.jim_hodges "Jim Hodges") (name fb:en.carroll_a_campbell_jr "Carroll A. Campbell, Jr.") (name fb:en.james_f_byrnes "James F. Byrnes") (name fb:en.richard_irvine_manning_iii "Richard Irvine Manning III") (name fb:en.nikki_haley "Nikki Haley") (name fb:en.james_henry_hammond "James Henry Hammond"))) (type fb:government.politician) who was the first governor of colonial south carolina? James Henry Hammond 13.1 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.south_carolina)) (value (list (name fb:en.strom_thurmond "Strom Thurmond") (name fb:m.0gw_nyv "Alan Wilson") (name fb:en.mark_sanford "Mark Sanford") (name fb:en.thomas_pinckney "Thomas Pinckney") (name fb:en.jim_hodges "Jim Hodges") (name fb:en.carroll_a_campbell_jr "Carroll A. Campbell, Jr.") (name fb:en.james_f_byrnes "James F. Byrnes") (name fb:en.richard_irvine_manning_iii "Richard Irvine Manning III") (name fb:en.nikki_haley "Nikki Haley") (name fb:en.james_henry_hammond "James Henry Hammond"))) (type fb:government.politician) what was f. scott fitzgerald? Myocardial infarction 6.475 formula (fb:people.cause_of_death.people fb:en.f_scott_fitzgerald)) (value (list (name fb:en.heart_failure "Myocardial infarction"))) (type fb:people.cause_of_death) what is the dominant language spoken in jamaica? Jamaican Creole English Language 22.227 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.jamaica))) (value (list (name fb:en.jamaican_creole "Jamaican Creole English Language") (name fb:en.jamaican_english "Jamaican English"))) (type (union fb:language.human_language)) what is the dominant language spoken in jamaica? Jamaican English 22.227 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.jamaica))) (value (list (name fb:en.jamaican_creole "Jamaican Creole English Language") (name fb:en.jamaican_english "Jamaican English"))) (type (union fb:language.human_language)) who is the coach for the new york knicks? Mike Woodson 19.649 formula (and (fb:people.person.profession fb:en.coach) (!fb:basketball.basketball_team.head_coach fb:en.new_york_knicks))) (value (list (name fb:en.mike_woodson "Mike Woodson"))) (type fb:basketball.basketball_coach) who was wesley snipes? Marian Snipes 0.986 formula (and (fb:type.object.type fb:people.person) (!fb:people.person.parents fb:en.wesley_snipes))) (value (list (name fb:m.0gyhgpn "Marian Snipes") (name fb:m.0gyhgpv "Wesley R. Snipes"))) (type fb:people.person) who was wesley snipes? Wesley R. Snipes 0.986 formula (and (fb:type.object.type fb:people.person) (!fb:people.person.parents fb:en.wesley_snipes))) (value (list (name fb:m.0gyhgpn "Marian Snipes") (name fb:m.0gyhgpv "Wesley R. Snipes"))) (type fb:people.person) what kind of language does colombia speak? Spanish Language 14.211 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.colombia))) (value (list (name fb:en.spanish "Spanish Language"))) (type (union fb:language.human_language)) what currency does england use now? UK £ 20.995 formula (!fb:location.country.currency_used fb:en.england)) (value (list (name fb:en.uk "UK £"))) (type fb:finance.currency) who was the original voice of meg griffin on family guy? Mila Kunis 15.666 formula (!fb:tv.regular_tv_appearance.actor (and (!fb:tv.tv_character.appeared_in_tv_program fb:en.meg_griffin) (fb:tv.regular_tv_appearance.series fb:en.family_guy)))) (value (list (name fb:en.mila_kunis "Mila Kunis"))) (type fb:tv.tv_actor) what kind of government is mali? Unitary state 7.72 formula (!fb:location.country.form_of_government fb:en.mali)) (value (list (name fb:en.unitary_state "Unitary state") (name fb:en.republic Republic) (name fb:en.semi-presidential_system "Semi-presidential system"))) (type fb:government.form_of_government) what kind of government is mali? Semi-presidential system 7.72 formula (!fb:location.country.form_of_government fb:en.mali)) (value (list (name fb:en.unitary_state "Unitary state") (name fb:en.republic Republic) (name fb:en.semi-presidential_system "Semi-presidential system"))) (type fb:government.form_of_government) who did cristiano ronaldo play for in 2010? Portugal national football team 15.639 formula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo)) (value (list (name fb:en.portugal_national_football_team "Portugal national football team") (name fb:en.sporting_clube_de_portugal "Sporting Clube de Portugal") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.real_madrid "Real Madrid C.F."))) (type fb:soccer.football_team) who did cristiano ronaldo play for in 2010? Sporting Clube de Portugal 15.639 formula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo)) (value (list (name fb:en.portugal_national_football_team "Portugal national football team") (name fb:en.sporting_clube_de_portugal "Sporting Clube de Portugal") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.real_madrid "Real Madrid C.F."))) (type fb:soccer.football_team) who did cristiano ronaldo play for in 2010? Manchester United F.C. 15.639 formula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo)) (value (list (name fb:en.portugal_national_football_team "Portugal national football team") (name fb:en.sporting_clube_de_portugal "Sporting Clube de Portugal") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.real_madrid "Real Madrid C.F."))) (type fb:soccer.football_team) who did cristiano ronaldo play for in 2010? Real Madrid C.F. 15.639 formula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo)) (value (list (name fb:en.portugal_national_football_team "Portugal national football team") (name fb:en.sporting_clube_de_portugal "Sporting Clube de Portugal") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.real_madrid "Real Madrid C.F."))) (type fb:soccer.football_team) what is jacksonville fl timezone? Jacksonville Jaguars Helmet 5.18 formula (!fb:common.topic.image fb:en.jacksonville_jaguars)) (value (list (name fb:m.02kzx8s "Jacksonville Jaguars Helmet"))) (type fb:common.image) who does amy stiller play in dodgeball? That's Adequate 4.063 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.amy_stiller)) (value (list (name fb:en.thats_adequate "That's Adequate") (name fb:en.amy_stillers_breast "Amy Stiller's Breast") (name fb:m.0h5kk47 "Eating Matzoh") (name fb:en.southie Southie) (name fb:en.the_daytrippers "The Daytrippers") (name fb:en.highway_to_hell_1992 "Highway to Hell") (name fb:m.0br67f "The Visit") (name fb:m.0gkchht "Miss Dial") (name fb:m.0h5kkbq "Bright Day!") (name fb:en.reality_bites "Reality Bites"))) (type fb:film.film) who does amy stiller play in dodgeball? Amy Stiller's Breast 4.063 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.amy_stiller)) (value (list (name fb:en.thats_adequate "That's Adequate") (name fb:en.amy_stillers_breast "Amy Stiller's Breast") (name fb:m.0h5kk47 "Eating Matzoh") (name fb:en.southie Southie) (name fb:en.the_daytrippers "The Daytrippers") (name fb:en.highway_to_hell_1992 "Highway to Hell") (name fb:m.0br67f "The Visit") (name fb:m.0gkchht "Miss Dial") (name fb:m.0h5kkbq "Bright Day!") (name fb:en.reality_bites "Reality Bites"))) (type fb:film.film) who does amy stiller play in dodgeball? Eating Matzoh 4.063 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.amy_stiller)) (value (list (name fb:en.thats_adequate "That's Adequate") (name fb:en.amy_stillers_breast "Amy Stiller's Breast") (name fb:m.0h5kk47 "Eating Matzoh") (name fb:en.southie Southie) (name fb:en.the_daytrippers "The Daytrippers") (name fb:en.highway_to_hell_1992 "Highway to Hell") (name fb:m.0br67f "The Visit") (name fb:m.0gkchht "Miss Dial") (name fb:m.0h5kkbq "Bright Day!") (name fb:en.reality_bites "Reality Bites"))) (type fb:film.film) who does amy stiller play in dodgeball? The Daytrippers 4.063 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.amy_stiller)) (value (list (name fb:en.thats_adequate "That's Adequate") (name fb:en.amy_stillers_breast "Amy Stiller's Breast") (name fb:m.0h5kk47 "Eating Matzoh") (name fb:en.southie Southie) (name fb:en.the_daytrippers "The Daytrippers") (name fb:en.highway_to_hell_1992 "Highway to Hell") (name fb:m.0br67f "The Visit") (name fb:m.0gkchht "Miss Dial") (name fb:m.0h5kkbq "Bright Day!") (name fb:en.reality_bites "Reality Bites"))) (type fb:film.film) who does amy stiller play in dodgeball? Highway to Hell 4.063 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.amy_stiller)) (value (list (name fb:en.thats_adequate "That's Adequate") (name fb:en.amy_stillers_breast "Amy Stiller's Breast") (name fb:m.0h5kk47 "Eating Matzoh") (name fb:en.southie Southie) (name fb:en.the_daytrippers "The Daytrippers") (name fb:en.highway_to_hell_1992 "Highway to Hell") (name fb:m.0br67f "The Visit") (name fb:m.0gkchht "Miss Dial") (name fb:m.0h5kkbq "Bright Day!") (name fb:en.reality_bites "Reality Bites"))) (type fb:film.film) who does amy stiller play in dodgeball? The Visit 4.063 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.amy_stiller)) (value (list (name fb:en.thats_adequate "That's Adequate") (name fb:en.amy_stillers_breast "Amy Stiller's Breast") (name fb:m.0h5kk47 "Eating Matzoh") (name fb:en.southie Southie) (name fb:en.the_daytrippers "The Daytrippers") (name fb:en.highway_to_hell_1992 "Highway to Hell") (name fb:m.0br67f "The Visit") (name fb:m.0gkchht "Miss Dial") (name fb:m.0h5kkbq "Bright Day!") (name fb:en.reality_bites "Reality Bites"))) (type fb:film.film) who does amy stiller play in dodgeball? Miss Dial 4.063 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.amy_stiller)) (value (list (name fb:en.thats_adequate "That's Adequate") (name fb:en.amy_stillers_breast "Amy Stiller's Breast") (name fb:m.0h5kk47 "Eating Matzoh") (name fb:en.southie Southie) (name fb:en.the_daytrippers "The Daytrippers") (name fb:en.highway_to_hell_1992 "Highway to Hell") (name fb:m.0br67f "The Visit") (name fb:m.0gkchht "Miss Dial") (name fb:m.0h5kkbq "Bright Day!") (name fb:en.reality_bites "Reality Bites"))) (type fb:film.film) who does amy stiller play in dodgeball? Bright Day! 4.063 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.amy_stiller)) (value (list (name fb:en.thats_adequate "That's Adequate") (name fb:en.amy_stillers_breast "Amy Stiller's Breast") (name fb:m.0h5kk47 "Eating Matzoh") (name fb:en.southie Southie) (name fb:en.the_daytrippers "The Daytrippers") (name fb:en.highway_to_hell_1992 "Highway to Hell") (name fb:m.0br67f "The Visit") (name fb:m.0gkchht "Miss Dial") (name fb:m.0h5kkbq "Bright Day!") (name fb:en.reality_bites "Reality Bites"))) (type fb:film.film) who does amy stiller play in dodgeball? Reality Bites 4.063 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.amy_stiller)) (value (list (name fb:en.thats_adequate "That's Adequate") (name fb:en.amy_stillers_breast "Amy Stiller's Breast") (name fb:m.0h5kk47 "Eating Matzoh") (name fb:en.southie Southie) (name fb:en.the_daytrippers "The Daytrippers") (name fb:en.highway_to_hell_1992 "Highway to Hell") (name fb:m.0br67f "The Visit") (name fb:m.0gkchht "Miss Dial") (name fb:m.0h5kkbq "Bright Day!") (name fb:en.reality_bites "Reality Bites"))) (type fb:film.film) who were king henry vii children? Henry VIII of England 8.469 formula (!fb:people.person.children fb:en.henry_vii_of_england)) (value (list (name fb:en.king_henry_viii_of_england "Henry VIII of England") (name fb:en.elizabeth_tudor "Elizabeth Tudor") (name fb:en.margaret_tudor "Margaret Tudor") (name fb:en.mary_tudor "Mary Tudor, Queen of France") (name fb:m.02p4twb "Edward Tudor") (name fb:en.edmund_tudor_duke_of_somerset "Edmund Tudor, Duke of Somerset") (name fb:en.arthur_prince_of_wales "Arthur, Prince of Wales") (name fb:en.katherine_tudor "Katherine Tudor"))) (type fb:people.person) who were king henry vii children? Elizabeth Tudor 8.469 formula (!fb:people.person.children fb:en.henry_vii_of_england)) (value (list (name fb:en.king_henry_viii_of_england "Henry VIII of England") (name fb:en.elizabeth_tudor "Elizabeth Tudor") (name fb:en.margaret_tudor "Margaret Tudor") (name fb:en.mary_tudor "Mary Tudor, Queen of France") (name fb:m.02p4twb "Edward Tudor") (name fb:en.edmund_tudor_duke_of_somerset "Edmund Tudor, Duke of Somerset") (name fb:en.arthur_prince_of_wales "Arthur, Prince of Wales") (name fb:en.katherine_tudor "Katherine Tudor"))) (type fb:people.person) who were king henry vii children? Margaret Tudor 8.469 formula (!fb:people.person.children fb:en.henry_vii_of_england)) (value (list (name fb:en.king_henry_viii_of_england "Henry VIII of England") (name fb:en.elizabeth_tudor "Elizabeth Tudor") (name fb:en.margaret_tudor "Margaret Tudor") (name fb:en.mary_tudor "Mary Tudor, Queen of France") (name fb:m.02p4twb "Edward Tudor") (name fb:en.edmund_tudor_duke_of_somerset "Edmund Tudor, Duke of Somerset") (name fb:en.arthur_prince_of_wales "Arthur, Prince of Wales") (name fb:en.katherine_tudor "Katherine Tudor"))) (type fb:people.person) who were king henry vii children? Mary Tudor, Queen of France 8.469 formula (!fb:people.person.children fb:en.henry_vii_of_england)) (value (list (name fb:en.king_henry_viii_of_england "Henry VIII of England") (name fb:en.elizabeth_tudor "Elizabeth Tudor") (name fb:en.margaret_tudor "Margaret Tudor") (name fb:en.mary_tudor "Mary Tudor, Queen of France") (name fb:m.02p4twb "Edward Tudor") (name fb:en.edmund_tudor_duke_of_somerset "Edmund Tudor, Duke of Somerset") (name fb:en.arthur_prince_of_wales "Arthur, Prince of Wales") (name fb:en.katherine_tudor "Katherine Tudor"))) (type fb:people.person) who were king henry vii children? Edward Tudor 8.469 formula (!fb:people.person.children fb:en.henry_vii_of_england)) (value (list (name fb:en.king_henry_viii_of_england "Henry VIII of England") (name fb:en.elizabeth_tudor "Elizabeth Tudor") (name fb:en.margaret_tudor "Margaret Tudor") (name fb:en.mary_tudor "Mary Tudor, Queen of France") (name fb:m.02p4twb "Edward Tudor") (name fb:en.edmund_tudor_duke_of_somerset "Edmund Tudor, Duke of Somerset") (name fb:en.arthur_prince_of_wales "Arthur, Prince of Wales") (name fb:en.katherine_tudor "Katherine Tudor"))) (type fb:people.person) who were king henry vii children? Edmund Tudor, Duke of Somerset 8.469 formula (!fb:people.person.children fb:en.henry_vii_of_england)) (value (list (name fb:en.king_henry_viii_of_england "Henry VIII of England") (name fb:en.elizabeth_tudor "Elizabeth Tudor") (name fb:en.margaret_tudor "Margaret Tudor") (name fb:en.mary_tudor "Mary Tudor, Queen of France") (name fb:m.02p4twb "Edward Tudor") (name fb:en.edmund_tudor_duke_of_somerset "Edmund Tudor, Duke of Somerset") (name fb:en.arthur_prince_of_wales "Arthur, Prince of Wales") (name fb:en.katherine_tudor "Katherine Tudor"))) (type fb:people.person) who were king henry vii children? Arthur, Prince of Wales 8.469 formula (!fb:people.person.children fb:en.henry_vii_of_england)) (value (list (name fb:en.king_henry_viii_of_england "Henry VIII of England") (name fb:en.elizabeth_tudor "Elizabeth Tudor") (name fb:en.margaret_tudor "Margaret Tudor") (name fb:en.mary_tudor "Mary Tudor, Queen of France") (name fb:m.02p4twb "Edward Tudor") (name fb:en.edmund_tudor_duke_of_somerset "Edmund Tudor, Duke of Somerset") (name fb:en.arthur_prince_of_wales "Arthur, Prince of Wales") (name fb:en.katherine_tudor "Katherine Tudor"))) (type fb:people.person) who were king henry vii children? Katherine Tudor 8.469 formula (!fb:people.person.children fb:en.henry_vii_of_england)) (value (list (name fb:en.king_henry_viii_of_england "Henry VIII of England") (name fb:en.elizabeth_tudor "Elizabeth Tudor") (name fb:en.margaret_tudor "Margaret Tudor") (name fb:en.mary_tudor "Mary Tudor, Queen of France") (name fb:m.02p4twb "Edward Tudor") (name fb:en.edmund_tudor_duke_of_somerset "Edmund Tudor, Duke of Somerset") (name fb:en.arthur_prince_of_wales "Arthur, Prince of Wales") (name fb:en.katherine_tudor "Katherine Tudor"))) (type fb:people.person) who plays mary jane in the spiderman movies? Shailene Woodley 6.859 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.mary_jane_watson)) (value (list (name fb:en.shailene_woodley "Shailene Woodley") (name fb:en.kirsten_dunst "Kirsten Dunst") (name fb:m.0lpzg7k "Sara Ballantine"))) (type fb:film.actor) who plays mary jane in the spiderman movies? Kirsten Dunst 6.859 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.mary_jane_watson)) (value (list (name fb:en.shailene_woodley "Shailene Woodley") (name fb:en.kirsten_dunst "Kirsten Dunst") (name fb:m.0lpzg7k "Sara Ballantine"))) (type fb:film.actor) who plays mary jane in the spiderman movies? Sara Ballantine 6.859 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.mary_jane_watson)) (value (list (name fb:en.shailene_woodley "Shailene Woodley") (name fb:en.kirsten_dunst "Kirsten Dunst") (name fb:m.0lpzg7k "Sara Ballantine"))) (type fb:film.actor) who does mila kunis play on family guy? Meg Griffin 15.848 formula (!fb:tv.regular_tv_appearance.character (and (!fb:tv.tv_actor.starring_roles fb:en.mila_kunis) (fb:tv.regular_tv_appearance.series fb:en.family_guy)))) (value (list (name fb:en.meg_griffin "Meg Griffin"))) (type fb:tv.tv_character) when did the san francisco earthquake occur? 1960 NCAA Men's Division I Basketball Tournament 9.213 formula (!fb:location.location.events fb:en.san_francisco)) (value (list (name fb:en.1960_ncaa_mens_division_i_basketball_tournament "1960 NCAA Men's Division I Basketball Tournament") (name fb:en.1955_ncaa_mens_division_i_basketball_tournament "1955 NCAA Men's Division I Basketball Tournament") (name fb:en.1959_ncaa_mens_division_i_basketball_tournament "1959 NCAA Men's Division I Basketball Tournament") (name fb:en.2010_tour_of_california "2010 Tour of California") (name fb:m.05hq6n1 "California-Utah 1959 NCAA Men's Division I Basketball Tournament Game") (name fb:m.05hq5x2 "1959 NCAA Men's Division I Basketball Tournament- West Regional Semifinals") (name fb:m.05hq6nf "St. Mary's-Idaho State 1959 NCAA Men's Division I Basketball Tournament Game") (name fb:m.0r8cfbc "2012 Shnit International Short Film Festival") (name fb:en.1906_san_francisco_earthquake "1906 San Francisco earthquake") (name fb:m.05hpj_v "1960 NCAA Men's Division I Basketball Tournament- West Regional Quarterfinals"))) (type fb:time.event) when did the san francisco earthquake occur? 1955 NCAA Men's Division I Basketball Tournament 9.213 formula (!fb:location.location.events fb:en.san_francisco)) (value (list (name fb:en.1960_ncaa_mens_division_i_basketball_tournament "1960 NCAA Men's Division I Basketball Tournament") (name fb:en.1955_ncaa_mens_division_i_basketball_tournament "1955 NCAA Men's Division I Basketball Tournament") (name fb:en.1959_ncaa_mens_division_i_basketball_tournament "1959 NCAA Men's Division I Basketball Tournament") (name fb:en.2010_tour_of_california "2010 Tour of California") (name fb:m.05hq6n1 "California-Utah 1959 NCAA Men's Division I Basketball Tournament Game") (name fb:m.05hq5x2 "1959 NCAA Men's Division I Basketball Tournament- West Regional Semifinals") (name fb:m.05hq6nf "St. Mary's-Idaho State 1959 NCAA Men's Division I Basketball Tournament Game") (name fb:m.0r8cfbc "2012 Shnit International Short Film Festival") (name fb:en.1906_san_francisco_earthquake "1906 San Francisco earthquake") (name fb:m.05hpj_v "1960 NCAA Men's Division I Basketball Tournament- West Regional Quarterfinals"))) (type fb:time.event) when did the san francisco earthquake occur? 1959 NCAA Men's Division I Basketball Tournament 9.213 formula (!fb:location.location.events fb:en.san_francisco)) (value (list (name fb:en.1960_ncaa_mens_division_i_basketball_tournament "1960 NCAA Men's Division I Basketball Tournament") (name fb:en.1955_ncaa_mens_division_i_basketball_tournament "1955 NCAA Men's Division I Basketball Tournament") (name fb:en.1959_ncaa_mens_division_i_basketball_tournament "1959 NCAA Men's Division I Basketball Tournament") (name fb:en.2010_tour_of_california "2010 Tour of California") (name fb:m.05hq6n1 "California-Utah 1959 NCAA Men's Division I Basketball Tournament Game") (name fb:m.05hq5x2 "1959 NCAA Men's Division I Basketball Tournament- West Regional Semifinals") (name fb:m.05hq6nf "St. Mary's-Idaho State 1959 NCAA Men's Division I Basketball Tournament Game") (name fb:m.0r8cfbc "2012 Shnit International Short Film Festival") (name fb:en.1906_san_francisco_earthquake "1906 San Francisco earthquake") (name fb:m.05hpj_v "1960 NCAA Men's Division I Basketball Tournament- West Regional Quarterfinals"))) (type fb:time.event) when did the san francisco earthquake occur? 2010 Tour of California 9.213 formula (!fb:location.location.events fb:en.san_francisco)) (value (list (name fb:en.1960_ncaa_mens_division_i_basketball_tournament "1960 NCAA Men's Division I Basketball Tournament") (name fb:en.1955_ncaa_mens_division_i_basketball_tournament "1955 NCAA Men's Division I Basketball Tournament") (name fb:en.1959_ncaa_mens_division_i_basketball_tournament "1959 NCAA Men's Division I Basketball Tournament") (name fb:en.2010_tour_of_california "2010 Tour of California") (name fb:m.05hq6n1 "California-Utah 1959 NCAA Men's Division I Basketball Tournament Game") (name fb:m.05hq5x2 "1959 NCAA Men's Division I Basketball Tournament- West Regional Semifinals") (name fb:m.05hq6nf "St. Mary's-Idaho State 1959 NCAA Men's Division I Basketball Tournament Game") (name fb:m.0r8cfbc "2012 Shnit International Short Film Festival") (name fb:en.1906_san_francisco_earthquake "1906 San Francisco earthquake") (name fb:m.05hpj_v "1960 NCAA Men's Division I Basketball Tournament- West Regional Quarterfinals"))) (type fb:time.event) when did the san francisco earthquake occur? California-Utah 1959 NCAA Men's Division I Basketball Tournament Game 9.213 formula (!fb:location.location.events fb:en.san_francisco)) (value (list (name fb:en.1960_ncaa_mens_division_i_basketball_tournament "1960 NCAA Men's Division I Basketball Tournament") (name fb:en.1955_ncaa_mens_division_i_basketball_tournament "1955 NCAA Men's Division I Basketball Tournament") (name fb:en.1959_ncaa_mens_division_i_basketball_tournament "1959 NCAA Men's Division I Basketball Tournament") (name fb:en.2010_tour_of_california "2010 Tour of California") (name fb:m.05hq6n1 "California-Utah 1959 NCAA Men's Division I Basketball Tournament Game") (name fb:m.05hq5x2 "1959 NCAA Men's Division I Basketball Tournament- West Regional Semifinals") (name fb:m.05hq6nf "St. Mary's-Idaho State 1959 NCAA Men's Division I Basketball Tournament Game") (name fb:m.0r8cfbc "2012 Shnit International Short Film Festival") (name fb:en.1906_san_francisco_earthquake "1906 San Francisco earthquake") (name fb:m.05hpj_v "1960 NCAA Men's Division I Basketball Tournament- West Regional Quarterfinals"))) (type fb:time.event) when did the san francisco earthquake occur? 1959 NCAA Men's Division I Basketball Tournament- West Regional Semifinals 9.213 formula (!fb:location.location.events fb:en.san_francisco)) (value (list (name fb:en.1960_ncaa_mens_division_i_basketball_tournament "1960 NCAA Men's Division I Basketball Tournament") (name fb:en.1955_ncaa_mens_division_i_basketball_tournament "1955 NCAA Men's Division I Basketball Tournament") (name fb:en.1959_ncaa_mens_division_i_basketball_tournament "1959 NCAA Men's Division I Basketball Tournament") (name fb:en.2010_tour_of_california "2010 Tour of California") (name fb:m.05hq6n1 "California-Utah 1959 NCAA Men's Division I Basketball Tournament Game") (name fb:m.05hq5x2 "1959 NCAA Men's Division I Basketball Tournament- West Regional Semifinals") (name fb:m.05hq6nf "St. Mary's-Idaho State 1959 NCAA Men's Division I Basketball Tournament Game") (name fb:m.0r8cfbc "2012 Shnit International Short Film Festival") (name fb:en.1906_san_francisco_earthquake "1906 San Francisco earthquake") (name fb:m.05hpj_v "1960 NCAA Men's Division I Basketball Tournament- West Regional Quarterfinals"))) (type fb:time.event) when did the san francisco earthquake occur? St. Mary's-Idaho State 1959 NCAA Men's Division I Basketball Tournament Game 9.213 formula (!fb:location.location.events fb:en.san_francisco)) (value (list (name fb:en.1960_ncaa_mens_division_i_basketball_tournament "1960 NCAA Men's Division I Basketball Tournament") (name fb:en.1955_ncaa_mens_division_i_basketball_tournament "1955 NCAA Men's Division I Basketball Tournament") (name fb:en.1959_ncaa_mens_division_i_basketball_tournament "1959 NCAA Men's Division I Basketball Tournament") (name fb:en.2010_tour_of_california "2010 Tour of California") (name fb:m.05hq6n1 "California-Utah 1959 NCAA Men's Division I Basketball Tournament Game") (name fb:m.05hq5x2 "1959 NCAA Men's Division I Basketball Tournament- West Regional Semifinals") (name fb:m.05hq6nf "St. Mary's-Idaho State 1959 NCAA Men's Division I Basketball Tournament Game") (name fb:m.0r8cfbc "2012 Shnit International Short Film Festival") (name fb:en.1906_san_francisco_earthquake "1906 San Francisco earthquake") (name fb:m.05hpj_v "1960 NCAA Men's Division I Basketball Tournament- West Regional Quarterfinals"))) (type fb:time.event) when did the san francisco earthquake occur? 2012 Shnit International Short Film Festival 9.213 formula (!fb:location.location.events fb:en.san_francisco)) (value (list (name fb:en.1960_ncaa_mens_division_i_basketball_tournament "1960 NCAA Men's Division I Basketball Tournament") (name fb:en.1955_ncaa_mens_division_i_basketball_tournament "1955 NCAA Men's Division I Basketball Tournament") (name fb:en.1959_ncaa_mens_division_i_basketball_tournament "1959 NCAA Men's Division I Basketball Tournament") (name fb:en.2010_tour_of_california "2010 Tour of California") (name fb:m.05hq6n1 "California-Utah 1959 NCAA Men's Division I Basketball Tournament Game") (name fb:m.05hq5x2 "1959 NCAA Men's Division I Basketball Tournament- West Regional Semifinals") (name fb:m.05hq6nf "St. Mary's-Idaho State 1959 NCAA Men's Division I Basketball Tournament Game") (name fb:m.0r8cfbc "2012 Shnit International Short Film Festival") (name fb:en.1906_san_francisco_earthquake "1906 San Francisco earthquake") (name fb:m.05hpj_v "1960 NCAA Men's Division I Basketball Tournament- West Regional Quarterfinals"))) (type fb:time.event) when did the san francisco earthquake occur? 1906 San Francisco earthquake 9.213 formula (!fb:location.location.events fb:en.san_francisco)) (value (list (name fb:en.1960_ncaa_mens_division_i_basketball_tournament "1960 NCAA Men's Division I Basketball Tournament") (name fb:en.1955_ncaa_mens_division_i_basketball_tournament "1955 NCAA Men's Division I Basketball Tournament") (name fb:en.1959_ncaa_mens_division_i_basketball_tournament "1959 NCAA Men's Division I Basketball Tournament") (name fb:en.2010_tour_of_california "2010 Tour of California") (name fb:m.05hq6n1 "California-Utah 1959 NCAA Men's Division I Basketball Tournament Game") (name fb:m.05hq5x2 "1959 NCAA Men's Division I Basketball Tournament- West Regional Semifinals") (name fb:m.05hq6nf "St. Mary's-Idaho State 1959 NCAA Men's Division I Basketball Tournament Game") (name fb:m.0r8cfbc "2012 Shnit International Short Film Festival") (name fb:en.1906_san_francisco_earthquake "1906 San Francisco earthquake") (name fb:m.05hpj_v "1960 NCAA Men's Division I Basketball Tournament- West Regional Quarterfinals"))) (type fb:time.event) when did the san francisco earthquake occur? 1960 NCAA Men's Division I Basketball Tournament- West Regional Quarterfinals 9.213 formula (!fb:location.location.events fb:en.san_francisco)) (value (list (name fb:en.1960_ncaa_mens_division_i_basketball_tournament "1960 NCAA Men's Division I Basketball Tournament") (name fb:en.1955_ncaa_mens_division_i_basketball_tournament "1955 NCAA Men's Division I Basketball Tournament") (name fb:en.1959_ncaa_mens_division_i_basketball_tournament "1959 NCAA Men's Division I Basketball Tournament") (name fb:en.2010_tour_of_california "2010 Tour of California") (name fb:m.05hq6n1 "California-Utah 1959 NCAA Men's Division I Basketball Tournament Game") (name fb:m.05hq5x2 "1959 NCAA Men's Division I Basketball Tournament- West Regional Semifinals") (name fb:m.05hq6nf "St. Mary's-Idaho State 1959 NCAA Men's Division I Basketball Tournament Game") (name fb:m.0r8cfbc "2012 Shnit International Short Film Festival") (name fb:en.1906_san_francisco_earthquake "1906 San Francisco earthquake") (name fb:m.05hpj_v "1960 NCAA Men's Division I Basketball Tournament- West Regional Quarterfinals"))) (type fb:time.event) what athlete am i olympics? Mette Halvorsen 11.481 formula ((lambda x (!fb:olympics.olympic_demonstration_medal_honor.medalist (!fb:olympics.olympic_games.demonstration_medals_awarded (var x)))) fb:en.1992_winter_olympics)) (value (list (name fb:en.mette_halvorsen "Mette Halvorsen") (name fb:en.dordi_nordby "Dordi Nordby") (name fb:en.hanne_woods "Hanne Woods") (name fb:en.anne_jotun "Anne Jøtun") (name fb:en.marianne_aspelin "Marianne Aspelin") (name fb:en.andrea_schopp "Andrea Schöpp") (name fb:en.monika_wagner "Monika Wagner") (name fb:en.christiane_scheibel "Christiane Scheibel") (name fb:en.stephanie_mayer "Stephanie Mayer") (name fb:en.sabine_hutt "Sabine Hutt"))) (type fb:olympics.olympic_athlete) what athlete am i olympics? Dordi Nordby 11.481 formula ((lambda x (!fb:olympics.olympic_demonstration_medal_honor.medalist (!fb:olympics.olympic_games.demonstration_medals_awarded (var x)))) fb:en.1992_winter_olympics)) (value (list (name fb:en.mette_halvorsen "Mette Halvorsen") (name fb:en.dordi_nordby "Dordi Nordby") (name fb:en.hanne_woods "Hanne Woods") (name fb:en.anne_jotun "Anne Jøtun") (name fb:en.marianne_aspelin "Marianne Aspelin") (name fb:en.andrea_schopp "Andrea Schöpp") (name fb:en.monika_wagner "Monika Wagner") (name fb:en.christiane_scheibel "Christiane Scheibel") (name fb:en.stephanie_mayer "Stephanie Mayer") (name fb:en.sabine_hutt "Sabine Hutt"))) (type fb:olympics.olympic_athlete) what athlete am i olympics? Hanne Woods 11.481 formula ((lambda x (!fb:olympics.olympic_demonstration_medal_honor.medalist (!fb:olympics.olympic_games.demonstration_medals_awarded (var x)))) fb:en.1992_winter_olympics)) (value (list (name fb:en.mette_halvorsen "Mette Halvorsen") (name fb:en.dordi_nordby "Dordi Nordby") (name fb:en.hanne_woods "Hanne Woods") (name fb:en.anne_jotun "Anne Jøtun") (name fb:en.marianne_aspelin "Marianne Aspelin") (name fb:en.andrea_schopp "Andrea Schöpp") (name fb:en.monika_wagner "Monika Wagner") (name fb:en.christiane_scheibel "Christiane Scheibel") (name fb:en.stephanie_mayer "Stephanie Mayer") (name fb:en.sabine_hutt "Sabine Hutt"))) (type fb:olympics.olympic_athlete) what athlete am i olympics? Anne Jøtun 11.481 formula ((lambda x (!fb:olympics.olympic_demonstration_medal_honor.medalist (!fb:olympics.olympic_games.demonstration_medals_awarded (var x)))) fb:en.1992_winter_olympics)) (value (list (name fb:en.mette_halvorsen "Mette Halvorsen") (name fb:en.dordi_nordby "Dordi Nordby") (name fb:en.hanne_woods "Hanne Woods") (name fb:en.anne_jotun "Anne Jøtun") (name fb:en.marianne_aspelin "Marianne Aspelin") (name fb:en.andrea_schopp "Andrea Schöpp") (name fb:en.monika_wagner "Monika Wagner") (name fb:en.christiane_scheibel "Christiane Scheibel") (name fb:en.stephanie_mayer "Stephanie Mayer") (name fb:en.sabine_hutt "Sabine Hutt"))) (type fb:olympics.olympic_athlete) what athlete am i olympics? Marianne Aspelin 11.481 formula ((lambda x (!fb:olympics.olympic_demonstration_medal_honor.medalist (!fb:olympics.olympic_games.demonstration_medals_awarded (var x)))) fb:en.1992_winter_olympics)) (value (list (name fb:en.mette_halvorsen "Mette Halvorsen") (name fb:en.dordi_nordby "Dordi Nordby") (name fb:en.hanne_woods "Hanne Woods") (name fb:en.anne_jotun "Anne Jøtun") (name fb:en.marianne_aspelin "Marianne Aspelin") (name fb:en.andrea_schopp "Andrea Schöpp") (name fb:en.monika_wagner "Monika Wagner") (name fb:en.christiane_scheibel "Christiane Scheibel") (name fb:en.stephanie_mayer "Stephanie Mayer") (name fb:en.sabine_hutt "Sabine Hutt"))) (type fb:olympics.olympic_athlete) what athlete am i olympics? Andrea Schöpp 11.481 formula ((lambda x (!fb:olympics.olympic_demonstration_medal_honor.medalist (!fb:olympics.olympic_games.demonstration_medals_awarded (var x)))) fb:en.1992_winter_olympics)) (value (list (name fb:en.mette_halvorsen "Mette Halvorsen") (name fb:en.dordi_nordby "Dordi Nordby") (name fb:en.hanne_woods "Hanne Woods") (name fb:en.anne_jotun "Anne Jøtun") (name fb:en.marianne_aspelin "Marianne Aspelin") (name fb:en.andrea_schopp "Andrea Schöpp") (name fb:en.monika_wagner "Monika Wagner") (name fb:en.christiane_scheibel "Christiane Scheibel") (name fb:en.stephanie_mayer "Stephanie Mayer") (name fb:en.sabine_hutt "Sabine Hutt"))) (type fb:olympics.olympic_athlete) what athlete am i olympics? Monika Wagner 11.481 formula ((lambda x (!fb:olympics.olympic_demonstration_medal_honor.medalist (!fb:olympics.olympic_games.demonstration_medals_awarded (var x)))) fb:en.1992_winter_olympics)) (value (list (name fb:en.mette_halvorsen "Mette Halvorsen") (name fb:en.dordi_nordby "Dordi Nordby") (name fb:en.hanne_woods "Hanne Woods") (name fb:en.anne_jotun "Anne Jøtun") (name fb:en.marianne_aspelin "Marianne Aspelin") (name fb:en.andrea_schopp "Andrea Schöpp") (name fb:en.monika_wagner "Monika Wagner") (name fb:en.christiane_scheibel "Christiane Scheibel") (name fb:en.stephanie_mayer "Stephanie Mayer") (name fb:en.sabine_hutt "Sabine Hutt"))) (type fb:olympics.olympic_athlete) what athlete am i olympics? Christiane Scheibel 11.481 formula ((lambda x (!fb:olympics.olympic_demonstration_medal_honor.medalist (!fb:olympics.olympic_games.demonstration_medals_awarded (var x)))) fb:en.1992_winter_olympics)) (value (list (name fb:en.mette_halvorsen "Mette Halvorsen") (name fb:en.dordi_nordby "Dordi Nordby") (name fb:en.hanne_woods "Hanne Woods") (name fb:en.anne_jotun "Anne Jøtun") (name fb:en.marianne_aspelin "Marianne Aspelin") (name fb:en.andrea_schopp "Andrea Schöpp") (name fb:en.monika_wagner "Monika Wagner") (name fb:en.christiane_scheibel "Christiane Scheibel") (name fb:en.stephanie_mayer "Stephanie Mayer") (name fb:en.sabine_hutt "Sabine Hutt"))) (type fb:olympics.olympic_athlete) what athlete am i olympics? Stephanie Mayer 11.481 formula ((lambda x (!fb:olympics.olympic_demonstration_medal_honor.medalist (!fb:olympics.olympic_games.demonstration_medals_awarded (var x)))) fb:en.1992_winter_olympics)) (value (list (name fb:en.mette_halvorsen "Mette Halvorsen") (name fb:en.dordi_nordby "Dordi Nordby") (name fb:en.hanne_woods "Hanne Woods") (name fb:en.anne_jotun "Anne Jøtun") (name fb:en.marianne_aspelin "Marianne Aspelin") (name fb:en.andrea_schopp "Andrea Schöpp") (name fb:en.monika_wagner "Monika Wagner") (name fb:en.christiane_scheibel "Christiane Scheibel") (name fb:en.stephanie_mayer "Stephanie Mayer") (name fb:en.sabine_hutt "Sabine Hutt"))) (type fb:olympics.olympic_athlete) what athlete am i olympics? Sabine Hutt 11.481 formula ((lambda x (!fb:olympics.olympic_demonstration_medal_honor.medalist (!fb:olympics.olympic_games.demonstration_medals_awarded (var x)))) fb:en.1992_winter_olympics)) (value (list (name fb:en.mette_halvorsen "Mette Halvorsen") (name fb:en.dordi_nordby "Dordi Nordby") (name fb:en.hanne_woods "Hanne Woods") (name fb:en.anne_jotun "Anne Jøtun") (name fb:en.marianne_aspelin "Marianne Aspelin") (name fb:en.andrea_schopp "Andrea Schöpp") (name fb:en.monika_wagner "Monika Wagner") (name fb:en.christiane_scheibel "Christiane Scheibel") (name fb:en.stephanie_mayer "Stephanie Mayer") (name fb:en.sabine_hutt "Sabine Hutt"))) (type fb:olympics.olympic_athlete) who did the cleveland cavaliers draft? Shannon Brown 11.052 formula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.cleveland_cavaliers)) (value (list (name fb:en.shannon_brown "Shannon Brown") (name fb:en.j_j_hickson "J. J. Hickson") (name fb:m.0k0wkgy "Dion Waiters") (name fb:en.lebron_james "LeBron James") (name fb:en.luke_jackson "Luke Jackson"))) (type fb:sports.drafted_athlete) who did the cleveland cavaliers draft? J. J. Hickson 11.052 formula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.cleveland_cavaliers)) (value (list (name fb:en.shannon_brown "Shannon Brown") (name fb:en.j_j_hickson "J. J. Hickson") (name fb:m.0k0wkgy "Dion Waiters") (name fb:en.lebron_james "LeBron James") (name fb:en.luke_jackson "Luke Jackson"))) (type fb:sports.drafted_athlete) who did the cleveland cavaliers draft? Dion Waiters 11.052 formula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.cleveland_cavaliers)) (value (list (name fb:en.shannon_brown "Shannon Brown") (name fb:en.j_j_hickson "J. J. Hickson") (name fb:m.0k0wkgy "Dion Waiters") (name fb:en.lebron_james "LeBron James") (name fb:en.luke_jackson "Luke Jackson"))) (type fb:sports.drafted_athlete) who did the cleveland cavaliers draft? LeBron James 11.052 formula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.cleveland_cavaliers)) (value (list (name fb:en.shannon_brown "Shannon Brown") (name fb:en.j_j_hickson "J. J. Hickson") (name fb:m.0k0wkgy "Dion Waiters") (name fb:en.lebron_james "LeBron James") (name fb:en.luke_jackson "Luke Jackson"))) (type fb:sports.drafted_athlete) who did the cleveland cavaliers draft? Luke Jackson 11.052 formula ((lambda x (fb:sports.drafted_athlete.drafted (fb:sports.sports_league_draft_pick.team (var x)))) fb:en.cleveland_cavaliers)) (value (list (name fb:en.shannon_brown "Shannon Brown") (name fb:en.j_j_hickson "J. J. Hickson") (name fb:m.0k0wkgy "Dion Waiters") (name fb:en.lebron_james "LeBron James") (name fb:en.luke_jackson "Luke Jackson"))) (type fb:sports.drafted_athlete) when did gordon brown resigns? Commission for Africa 3.417 formula ((lambda x (fb:organization.organization.leadership (fb:organization.leadership.person (var x)))) fb:en.gordon_brown)) (value (list (name fb:en.commission_for_africa "Commission for Africa"))) (type fb:organization.organization) where does greek language come from? Roman Republic 9.406 formula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.greek_language))) (value (list (name fb:en.roman_republic "Roman Republic") (name fb:en.greece Greece) (name fb:en.byzantine_empire "Byzantine Empire") (name fb:en.cyprus Cyprus) (name fb:en.kingdom_of_greece "Kingdom of Greece"))) (type fb:location.country) where does greek language come from? Byzantine Empire 9.406 formula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.greek_language))) (value (list (name fb:en.roman_republic "Roman Republic") (name fb:en.greece Greece) (name fb:en.byzantine_empire "Byzantine Empire") (name fb:en.cyprus Cyprus) (name fb:en.kingdom_of_greece "Kingdom of Greece"))) (type fb:location.country) where does greek language come from? Kingdom of Greece 9.406 formula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.greek_language))) (value (list (name fb:en.roman_republic "Roman Republic") (name fb:en.greece Greece) (name fb:en.byzantine_empire "Byzantine Empire") (name fb:en.cyprus Cyprus) (name fb:en.kingdom_of_greece "Kingdom of Greece"))) (type fb:location.country) where did the australian floods take place? Australian Catholic University Faculty of Arts and Sciences 5.877 formula (and (fb:type.object.type fb:education.educational_institution) (fb:education.educational_institution.parent_institution fb:en.australian_catholic_university))) (value (list (name fb:m.05l4803 "Australian Catholic University Faculty of Arts and Sciences") (name fb:en.australian_catholic_university_faculty_of_education "Australian Catholic University Faculty of Education") (name fb:m.05l47_x "Australian Catholic University Faculty of Health Sciences") (name fb:m.05l480b "Australian Catholic University Faculty of Theology and Philosophy"))) (type fb:education.educational_institution) where did the australian floods take place? Australian Catholic University Faculty of Education 5.877 formula (and (fb:type.object.type fb:education.educational_institution) (fb:education.educational_institution.parent_institution fb:en.australian_catholic_university))) (value (list (name fb:m.05l4803 "Australian Catholic University Faculty of Arts and Sciences") (name fb:en.australian_catholic_university_faculty_of_education "Australian Catholic University Faculty of Education") (name fb:m.05l47_x "Australian Catholic University Faculty of Health Sciences") (name fb:m.05l480b "Australian Catholic University Faculty of Theology and Philosophy"))) (type fb:education.educational_institution) where did the australian floods take place? Australian Catholic University Faculty of Health Sciences 5.877 formula (and (fb:type.object.type fb:education.educational_institution) (fb:education.educational_institution.parent_institution fb:en.australian_catholic_university))) (value (list (name fb:m.05l4803 "Australian Catholic University Faculty of Arts and Sciences") (name fb:en.australian_catholic_university_faculty_of_education "Australian Catholic University Faculty of Education") (name fb:m.05l47_x "Australian Catholic University Faculty of Health Sciences") (name fb:m.05l480b "Australian Catholic University Faculty of Theology and Philosophy"))) (type fb:education.educational_institution) where did the australian floods take place? Australian Catholic University Faculty of Theology and Philosophy 5.877 formula (and (fb:type.object.type fb:education.educational_institution) (fb:education.educational_institution.parent_institution fb:en.australian_catholic_university))) (value (list (name fb:m.05l4803 "Australian Catholic University Faculty of Arts and Sciences") (name fb:en.australian_catholic_university_faculty_of_education "Australian Catholic University Faculty of Education") (name fb:m.05l47_x "Australian Catholic University Faculty of Health Sciences") (name fb:m.05l480b "Australian Catholic University Faculty of Theology and Philosophy"))) (type fb:education.educational_institution) who does darth vaders voice? David Prowse 7.801 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who does darth vaders voice? James Earl Jones 7.801 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who does darth vaders voice? Hayden Christensen 7.801 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who does darth vaders voice? Matt Lanter 7.801 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who does darth vaders voice? Sebastian Shaw 7.801 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who does darth vaders voice? Robert E. Bean 7.801 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who does darth vaders voice? Jake Lloyd 7.801 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) when is nrl grand final day? PBB GE NRL 206596 s at tn 6.791 formula (!fb:common.topic.image fb:m.03gxpgc)) (value (list (name fb:m.042h7m2 "PBB GE NRL 206596 s at tn"))) (type fb:common.image) what school did douglas macarthur go to? United States Military Academy 17.054 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.douglas_macarthur))) (value (list (name fb:en.united_states_military_academy "United States Military Academy") (name fb:en.t_m_i_the_episcopal_school_of_texas "TMI — The Episcopal School of Texas"))) (type fb:education.educational_institution) what school did douglas macarthur go to? TMI — The Episcopal School of Texas 17.054 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.douglas_macarthur))) (value (list (name fb:en.united_states_military_academy "United States Military Academy") (name fb:en.t_m_i_the_episcopal_school_of_texas "TMI — The Episcopal School of Texas"))) (type fb:education.educational_institution) what famous people are from barbados? High Commission of Barbados, Ottawa 8.001 formula (fb:user.skud.embassies_and_consulates.embassy.from_country fb:en.barbados)) (value (list (name fb:en.high_commission_of_barbados_in_ottawa "High Commission of Barbados, Ottawa"))) (type fb:user.skud.embassies_and_consulates.embassy) what are the names of michael jackson's 3 children? Prince Michael Jackson II 9.755 formula (!fb:people.person.children fb:en.michael_jackson)) (value (list (name fb:en.prince_michael_jackson_ii "Prince Michael Jackson II") (name fb:en.paris_michael_katherine_jackson "Paris-Michael Katherine Jackson") (name fb:en.michael_joseph_jackson_jr "Michael Joseph Jackson, Jr."))) (type fb:people.person) what are the names of michael jackson's 3 children? Paris-Michael Katherine Jackson 9.755 formula (!fb:people.person.children fb:en.michael_jackson)) (value (list (name fb:en.prince_michael_jackson_ii "Prince Michael Jackson II") (name fb:en.paris_michael_katherine_jackson "Paris-Michael Katherine Jackson") (name fb:en.michael_joseph_jackson_jr "Michael Joseph Jackson, Jr."))) (type fb:people.person) what are the names of michael jackson's 3 children? Michael Joseph Jackson, Jr. 9.755 formula (!fb:people.person.children fb:en.michael_jackson)) (value (list (name fb:en.prince_michael_jackson_ii "Prince Michael Jackson II") (name fb:en.paris_michael_katherine_jackson "Paris-Michael Katherine Jackson") (name fb:en.michael_joseph_jackson_jr "Michael Joseph Jackson, Jr."))) (type fb:people.person) what currency to take to turkey 2010? Turkish lira 20.736 formula (!fb:location.country.currency_used fb:en.turkey)) (value (list (name fb:en.turkish_lira "Turkish lira"))) (type fb:finance.currency) who is the current governor of arizona 2010? Kyrsten Sinema 16.302 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.arizona)) (value (list (name fb:en.kyrsten_sinema "Kyrsten Sinema") (name fb:en.raul_hector_castro "Raúl Héctor Castro") (name fb:en.sandra_day_oconnor "Sandra Day O'Connor") (name fb:m.0r4vk2l "Doug Coleman") (name fb:en.thomas_edward_campbell "Thomas Edward Campbell") (name fb:en.tom_horne "Tom Horne") (name fb:en.janet_napolitano "Janet Napolitano") (name fb:en.rawghlie_clement_stanford "Rawghlie Clement Stanford") (name fb:en.george_w_p_hunt "George W. P. Hunt") (name fb:en.benjamin_baker_moeur "Benjamin Baker Moeur"))) (type fb:government.politician) who is the current governor of arizona 2010? Raúl Héctor Castro 16.302 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.arizona)) (value (list (name fb:en.kyrsten_sinema "Kyrsten Sinema") (name fb:en.raul_hector_castro "Raúl Héctor Castro") (name fb:en.sandra_day_oconnor "Sandra Day O'Connor") (name fb:m.0r4vk2l "Doug Coleman") (name fb:en.thomas_edward_campbell "Thomas Edward Campbell") (name fb:en.tom_horne "Tom Horne") (name fb:en.janet_napolitano "Janet Napolitano") (name fb:en.rawghlie_clement_stanford "Rawghlie Clement Stanford") (name fb:en.george_w_p_hunt "George W. P. Hunt") (name fb:en.benjamin_baker_moeur "Benjamin Baker Moeur"))) (type fb:government.politician) who is the current governor of arizona 2010? Sandra Day O'Connor 16.302 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.arizona)) (value (list (name fb:en.kyrsten_sinema "Kyrsten Sinema") (name fb:en.raul_hector_castro "Raúl Héctor Castro") (name fb:en.sandra_day_oconnor "Sandra Day O'Connor") (name fb:m.0r4vk2l "Doug Coleman") (name fb:en.thomas_edward_campbell "Thomas Edward Campbell") (name fb:en.tom_horne "Tom Horne") (name fb:en.janet_napolitano "Janet Napolitano") (name fb:en.rawghlie_clement_stanford "Rawghlie Clement Stanford") (name fb:en.george_w_p_hunt "George W. P. Hunt") (name fb:en.benjamin_baker_moeur "Benjamin Baker Moeur"))) (type fb:government.politician) who is the current governor of arizona 2010? Doug Coleman 16.302 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.arizona)) (value (list (name fb:en.kyrsten_sinema "Kyrsten Sinema") (name fb:en.raul_hector_castro "Raúl Héctor Castro") (name fb:en.sandra_day_oconnor "Sandra Day O'Connor") (name fb:m.0r4vk2l "Doug Coleman") (name fb:en.thomas_edward_campbell "Thomas Edward Campbell") (name fb:en.tom_horne "Tom Horne") (name fb:en.janet_napolitano "Janet Napolitano") (name fb:en.rawghlie_clement_stanford "Rawghlie Clement Stanford") (name fb:en.george_w_p_hunt "George W. P. Hunt") (name fb:en.benjamin_baker_moeur "Benjamin Baker Moeur"))) (type fb:government.politician) who is the current governor of arizona 2010? Thomas Edward Campbell 16.302 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.arizona)) (value (list (name fb:en.kyrsten_sinema "Kyrsten Sinema") (name fb:en.raul_hector_castro "Raúl Héctor Castro") (name fb:en.sandra_day_oconnor "Sandra Day O'Connor") (name fb:m.0r4vk2l "Doug Coleman") (name fb:en.thomas_edward_campbell "Thomas Edward Campbell") (name fb:en.tom_horne "Tom Horne") (name fb:en.janet_napolitano "Janet Napolitano") (name fb:en.rawghlie_clement_stanford "Rawghlie Clement Stanford") (name fb:en.george_w_p_hunt "George W. P. Hunt") (name fb:en.benjamin_baker_moeur "Benjamin Baker Moeur"))) (type fb:government.politician) who is the current governor of arizona 2010? Tom Horne 16.302 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.arizona)) (value (list (name fb:en.kyrsten_sinema "Kyrsten Sinema") (name fb:en.raul_hector_castro "Raúl Héctor Castro") (name fb:en.sandra_day_oconnor "Sandra Day O'Connor") (name fb:m.0r4vk2l "Doug Coleman") (name fb:en.thomas_edward_campbell "Thomas Edward Campbell") (name fb:en.tom_horne "Tom Horne") (name fb:en.janet_napolitano "Janet Napolitano") (name fb:en.rawghlie_clement_stanford "Rawghlie Clement Stanford") (name fb:en.george_w_p_hunt "George W. P. Hunt") (name fb:en.benjamin_baker_moeur "Benjamin Baker Moeur"))) (type fb:government.politician) who is the current governor of arizona 2010? Janet Napolitano 16.302 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.arizona)) (value (list (name fb:en.kyrsten_sinema "Kyrsten Sinema") (name fb:en.raul_hector_castro "Raúl Héctor Castro") (name fb:en.sandra_day_oconnor "Sandra Day O'Connor") (name fb:m.0r4vk2l "Doug Coleman") (name fb:en.thomas_edward_campbell "Thomas Edward Campbell") (name fb:en.tom_horne "Tom Horne") (name fb:en.janet_napolitano "Janet Napolitano") (name fb:en.rawghlie_clement_stanford "Rawghlie Clement Stanford") (name fb:en.george_w_p_hunt "George W. P. Hunt") (name fb:en.benjamin_baker_moeur "Benjamin Baker Moeur"))) (type fb:government.politician) who is the current governor of arizona 2010? Rawghlie Clement Stanford 16.302 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.arizona)) (value (list (name fb:en.kyrsten_sinema "Kyrsten Sinema") (name fb:en.raul_hector_castro "Raúl Héctor Castro") (name fb:en.sandra_day_oconnor "Sandra Day O'Connor") (name fb:m.0r4vk2l "Doug Coleman") (name fb:en.thomas_edward_campbell "Thomas Edward Campbell") (name fb:en.tom_horne "Tom Horne") (name fb:en.janet_napolitano "Janet Napolitano") (name fb:en.rawghlie_clement_stanford "Rawghlie Clement Stanford") (name fb:en.george_w_p_hunt "George W. P. Hunt") (name fb:en.benjamin_baker_moeur "Benjamin Baker Moeur"))) (type fb:government.politician) who is the current governor of arizona 2010? George W. P. Hunt 16.302 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.arizona)) (value (list (name fb:en.kyrsten_sinema "Kyrsten Sinema") (name fb:en.raul_hector_castro "Raúl Héctor Castro") (name fb:en.sandra_day_oconnor "Sandra Day O'Connor") (name fb:m.0r4vk2l "Doug Coleman") (name fb:en.thomas_edward_campbell "Thomas Edward Campbell") (name fb:en.tom_horne "Tom Horne") (name fb:en.janet_napolitano "Janet Napolitano") (name fb:en.rawghlie_clement_stanford "Rawghlie Clement Stanford") (name fb:en.george_w_p_hunt "George W. P. Hunt") (name fb:en.benjamin_baker_moeur "Benjamin Baker Moeur"))) (type fb:government.politician) who is the current governor of arizona 2010? Benjamin Baker Moeur 16.302 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.arizona)) (value (list (name fb:en.kyrsten_sinema "Kyrsten Sinema") (name fb:en.raul_hector_castro "Raúl Héctor Castro") (name fb:en.sandra_day_oconnor "Sandra Day O'Connor") (name fb:m.0r4vk2l "Doug Coleman") (name fb:en.thomas_edward_campbell "Thomas Edward Campbell") (name fb:en.tom_horne "Tom Horne") (name fb:en.janet_napolitano "Janet Napolitano") (name fb:en.rawghlie_clement_stanford "Rawghlie Clement Stanford") (name fb:en.george_w_p_hunt "George W. P. Hunt") (name fb:en.benjamin_baker_moeur "Benjamin Baker Moeur"))) (type fb:government.politician) when was the most recent earthquake in haiti? 2010 Haiti Earthquake 12.209 formula ((lambda x (!fb:user.robert.earthquakes.earthquake_nearest_location.earthquake (!fb:user.robert.earthquakes.earthquake_epicenter.earthquakes_centered_here (var x)))) fb:en.haiti)) (value (list (name fb:m.09rkpyw "2010 Haiti Earthquake"))) (type fb:user.robert.earthquakes.earthquake) who is lamar odom playing for this year? Los Angeles Clippers 8.952 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.lamar_odom)) (value (list (name fb:en.los_angeles_clippers "Los Angeles Clippers") (name fb:en.dallas_mavericks "Dallas Mavericks") (name fb:en.minneapolis_lakers "Los Angeles Lakers"))) (type fb:sports.sports_team) who is lamar odom playing for this year? Dallas Mavericks 8.952 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.lamar_odom)) (value (list (name fb:en.los_angeles_clippers "Los Angeles Clippers") (name fb:en.dallas_mavericks "Dallas Mavericks") (name fb:en.minneapolis_lakers "Los Angeles Lakers"))) (type fb:sports.sports_team) who is lamar odom playing for this year? Los Angeles Lakers 8.952 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.lamar_odom)) (value (list (name fb:en.los_angeles_clippers "Los Angeles Clippers") (name fb:en.dallas_mavericks "Dallas Mavericks") (name fb:en.minneapolis_lakers "Los Angeles Lakers"))) (type fb:sports.sports_team) where were the great pyramids of giza built? Giza Plateau 11.191 formula (and (fb:type.object.type fb:location.location) (fb:architecture.building_complex.buildings_in_complex fb:en.great_pyramid_of_giza))) (value (list (name fb:en.giza_pyramid_complex "Giza Plateau"))) (type fb:architecture.building_complex) who designed national flag of italy? Flag of Italy 8.241 formula ((lambda x (!fb:symbols.flag_use.flag (!fb:symbols.flag_referent.flag (var x)))) fb:en.italy)) (value (list (name fb:en.flag_of_italy "Flag of Italy"))) (type fb:symbols.flag) what language do the russian speak? Russian Language 15.946 formula (and (fb:type.object.type fb:language.human_language) (!fb:people.ethnicity.languages_spoken fb:en.russians))) (value (list (name fb:en.russian_language "Russian Language"))) (type fb:language.human_language) what language do australia people speak? English Language 10.01 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.australia))) (value (list (name fb:en.english "English Language") (name fb:en.lojban Lojban) (name fb:en.esperanto "Esperanto Language"))) (type (union fb:language.human_language)) what language do australia people speak? Esperanto Language 10.01 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.australia))) (value (list (name fb:en.english "English Language") (name fb:en.lojban Lojban) (name fb:en.esperanto "Esperanto Language"))) (type (union fb:language.human_language)) where did george washington carver go to collage? Tuskegee University 14.16 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.george_washington_carver))) (value (list (name fb:en.tuskegee_university "Tuskegee University") (name fb:en.iowa_state_university "Iowa State University") (name fb:en.simpson_college "Simpson College"))) (type fb:education.educational_institution) where did george washington carver go to collage? Iowa State University 14.16 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.george_washington_carver))) (value (list (name fb:en.tuskegee_university "Tuskegee University") (name fb:en.iowa_state_university "Iowa State University") (name fb:en.simpson_college "Simpson College"))) (type fb:education.educational_institution) where did george washington carver go to collage? Simpson College 14.16 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.george_washington_carver))) (value (list (name fb:en.tuskegee_university "Tuskegee University") (name fb:en.iowa_state_university "Iowa State University") (name fb:en.simpson_college "Simpson College"))) (type fb:education.educational_institution) what sports do people play in poland? Poland national football team 11.207 formula (!fb:sports.sports_team_location.teams fb:en.poland)) (value (list (name fb:en.poland_national_football_team "Poland national football team") (name fb:en.poland_womens_national_volleyball_team "Poland women's national volleyball team") (name fb:en.poland_national_handball_team "Poland national handball team") (name fb:en.poland_womens_national_handball_team "Poland women's national handball team") (name fb:en.poland_national_volleyball_team "Poland men's national volleyball team"))) (type fb:sports.sports_team) what sports do people play in poland? Poland women's national volleyball team 11.207 formula (!fb:sports.sports_team_location.teams fb:en.poland)) (value (list (name fb:en.poland_national_football_team "Poland national football team") (name fb:en.poland_womens_national_volleyball_team "Poland women's national volleyball team") (name fb:en.poland_national_handball_team "Poland national handball team") (name fb:en.poland_womens_national_handball_team "Poland women's national handball team") (name fb:en.poland_national_volleyball_team "Poland men's national volleyball team"))) (type fb:sports.sports_team) what sports do people play in poland? Poland national handball team 11.207 formula (!fb:sports.sports_team_location.teams fb:en.poland)) (value (list (name fb:en.poland_national_football_team "Poland national football team") (name fb:en.poland_womens_national_volleyball_team "Poland women's national volleyball team") (name fb:en.poland_national_handball_team "Poland national handball team") (name fb:en.poland_womens_national_handball_team "Poland women's national handball team") (name fb:en.poland_national_volleyball_team "Poland men's national volleyball team"))) (type fb:sports.sports_team) what sports do people play in poland? Poland women's national handball team 11.207 formula (!fb:sports.sports_team_location.teams fb:en.poland)) (value (list (name fb:en.poland_national_football_team "Poland national football team") (name fb:en.poland_womens_national_volleyball_team "Poland women's national volleyball team") (name fb:en.poland_national_handball_team "Poland national handball team") (name fb:en.poland_womens_national_handball_team "Poland women's national handball team") (name fb:en.poland_national_volleyball_team "Poland men's national volleyball team"))) (type fb:sports.sports_team) what sports do people play in poland? Poland men's national volleyball team 11.207 formula (!fb:sports.sports_team_location.teams fb:en.poland)) (value (list (name fb:en.poland_national_football_team "Poland national football team") (name fb:en.poland_womens_national_volleyball_team "Poland women's national volleyball team") (name fb:en.poland_national_handball_team "Poland national handball team") (name fb:en.poland_womens_national_handball_team "Poland women's national handball team") (name fb:en.poland_national_volleyball_team "Poland men's national volleyball team"))) (type fb:sports.sports_team) who was demi lovato dating? Sonny Munroe 5.435 formula ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.actor (var x)))) fb:en.demi_lovato)) (value (list (name fb:en.sonny_munroe "Sonny Munroe") (name fb:m.0l3qr73 Angela) (name fb:m.0nf3blh "Charlotte Adams"))) (type fb:tv.tv_character) who was demi lovato dating? Charlotte Adams 5.435 formula ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.actor (var x)))) fb:en.demi_lovato)) (value (list (name fb:en.sonny_munroe "Sonny Munroe") (name fb:m.0l3qr73 Angela) (name fb:m.0nf3blh "Charlotte Adams"))) (type fb:tv.tv_character) where did tony gonzalez play college basketball? University of California, Berkeley 5.23 formula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.tony_gonzalez_1976)))) (value (list (name fb:en.university_of_california_berkeley "University of California, Berkeley"))) (type fb:education.university) what films has scarlett johansson been in? Home Alone 3 16.709 formula (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.scarlett_johansson))) (value (list (name fb:en.home_alone_3 "Home Alone 3") (name fb:en.north_1995 North) (name fb:en.a_good_woman "A Good Woman") (name fb:en.match_point "Match Point") (name fb:en.eight_legged_freaks "Eight Legged Freaks") (name fb:en.the_perfect_score "The Perfect Score") (name fb:en.the_man_who_wasnt_there "The Man Who Wasn't There") (name fb:m.0g4nxzt Buck) (name fb:m.0n15g8q "The Avengers 2") (name fb:m.0hz07jj Hitchcock))) (type (union fb:film.film)) what films has scarlett johansson been in? A Good Woman 16.709 formula (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.scarlett_johansson))) (value (list (name fb:en.home_alone_3 "Home Alone 3") (name fb:en.north_1995 North) (name fb:en.a_good_woman "A Good Woman") (name fb:en.match_point "Match Point") (name fb:en.eight_legged_freaks "Eight Legged Freaks") (name fb:en.the_perfect_score "The Perfect Score") (name fb:en.the_man_who_wasnt_there "The Man Who Wasn't There") (name fb:m.0g4nxzt Buck) (name fb:m.0n15g8q "The Avengers 2") (name fb:m.0hz07jj Hitchcock))) (type (union fb:film.film)) what films has scarlett johansson been in? Match Point 16.709 formula (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.scarlett_johansson))) (value (list (name fb:en.home_alone_3 "Home Alone 3") (name fb:en.north_1995 North) (name fb:en.a_good_woman "A Good Woman") (name fb:en.match_point "Match Point") (name fb:en.eight_legged_freaks "Eight Legged Freaks") (name fb:en.the_perfect_score "The Perfect Score") (name fb:en.the_man_who_wasnt_there "The Man Who Wasn't There") (name fb:m.0g4nxzt Buck) (name fb:m.0n15g8q "The Avengers 2") (name fb:m.0hz07jj Hitchcock))) (type (union fb:film.film)) what films has scarlett johansson been in? Eight Legged Freaks 16.709 formula (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.scarlett_johansson))) (value (list (name fb:en.home_alone_3 "Home Alone 3") (name fb:en.north_1995 North) (name fb:en.a_good_woman "A Good Woman") (name fb:en.match_point "Match Point") (name fb:en.eight_legged_freaks "Eight Legged Freaks") (name fb:en.the_perfect_score "The Perfect Score") (name fb:en.the_man_who_wasnt_there "The Man Who Wasn't There") (name fb:m.0g4nxzt Buck) (name fb:m.0n15g8q "The Avengers 2") (name fb:m.0hz07jj Hitchcock))) (type (union fb:film.film)) what films has scarlett johansson been in? The Perfect Score 16.709 formula (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.scarlett_johansson))) (value (list (name fb:en.home_alone_3 "Home Alone 3") (name fb:en.north_1995 North) (name fb:en.a_good_woman "A Good Woman") (name fb:en.match_point "Match Point") (name fb:en.eight_legged_freaks "Eight Legged Freaks") (name fb:en.the_perfect_score "The Perfect Score") (name fb:en.the_man_who_wasnt_there "The Man Who Wasn't There") (name fb:m.0g4nxzt Buck) (name fb:m.0n15g8q "The Avengers 2") (name fb:m.0hz07jj Hitchcock))) (type (union fb:film.film)) what films has scarlett johansson been in? The Man Who Wasn't There 16.709 formula (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.scarlett_johansson))) (value (list (name fb:en.home_alone_3 "Home Alone 3") (name fb:en.north_1995 North) (name fb:en.a_good_woman "A Good Woman") (name fb:en.match_point "Match Point") (name fb:en.eight_legged_freaks "Eight Legged Freaks") (name fb:en.the_perfect_score "The Perfect Score") (name fb:en.the_man_who_wasnt_there "The Man Who Wasn't There") (name fb:m.0g4nxzt Buck) (name fb:m.0n15g8q "The Avengers 2") (name fb:m.0hz07jj Hitchcock))) (type (union fb:film.film)) what films has scarlett johansson been in? The Avengers 2 16.709 formula (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.scarlett_johansson))) (value (list (name fb:en.home_alone_3 "Home Alone 3") (name fb:en.north_1995 North) (name fb:en.a_good_woman "A Good Woman") (name fb:en.match_point "Match Point") (name fb:en.eight_legged_freaks "Eight Legged Freaks") (name fb:en.the_perfect_score "The Perfect Score") (name fb:en.the_man_who_wasnt_there "The Man Who Wasn't There") (name fb:m.0g4nxzt Buck) (name fb:m.0n15g8q "The Avengers 2") (name fb:m.0hz07jj Hitchcock))) (type (union fb:film.film)) who originally voiced meg on family guy? Fox Broadcasting Company 8.401 formula ((lambda x (!fb:tv.tv_network_duration.network (!fb:tv.tv_program.original_network (var x)))) fb:en.family_guy)) (value (list (name fb:en.fox_broadcasting_company "Fox Broadcasting Company"))) (type fb:tv.tv_network) who played amy squirrel in bad teacher? Lucy Punch 8.479 formula (fb:film.actor.film (and (fb:film.performance.character fb:m.0glzmqc) (fb:film.performance.film fb:en.bad_teacher)))) (value (list (name fb:en.lucy_punch "Lucy Punch"))) (type fb:film.actor) what type of religions are in the united states? Unitarian Universalism 17.493 formula ((lambda x (!fb:location.religion_percentage.religion (!fb:location.statistical_region.religions (var x)))) fb:en.united_states_of_america)) (value (list (name fb:en.hinduism Hinduism) (name fb:en.islam Islam) (name fb:en.unitarian_universalism "Unitarian Universalism") (name fb:en.buddhism Buddhism) (name fb:en.judaism Judaism) (name fb:en.atheism Atheism) (name fb:en.christianity Christianity))) (type fb:religion.religion) who did viggo mortensen play in lord of the rings? Entertainment Weekly annotation index 5.293 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.viggo_mortensen)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities") (name fb:m.0b3y3gx "WSJ Speakeasy Index"))) (type fb:common.annotation_index) who did viggo mortensen play in lord of the rings? Blissful Master Index 5.293 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.viggo_mortensen)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities") (name fb:m.0b3y3gx "WSJ Speakeasy Index"))) (type fb:common.annotation_index) who did viggo mortensen play in lord of the rings? Blissful Celebrities 5.293 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.viggo_mortensen)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities") (name fb:m.0b3y3gx "WSJ Speakeasy Index"))) (type fb:common.annotation_index) who did viggo mortensen play in lord of the rings? WSJ Speakeasy Index 5.293 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.viggo_mortensen)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities") (name fb:m.0b3y3gx "WSJ Speakeasy Index"))) (type fb:common.annotation_index) what lands did henry hudson discover? United Kingdom 7.072 formula (!fb:people.person.nationality fb:en.henry_hudson)) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.england England))) (type fb:location.country) who was isaac newton and what did he do? 8000 Isaac Newton 19.073 formula (fb:symbols.namesake.named_after fb:en.sir_newton_isaac)) (value (list (name fb:en.newton Newton) (name fb:en.8000_isaac_newton "8000 Isaac Newton") (name fb:en.newtons_laws_of_motion "Newton's laws of motion") (name fb:en.newtons_method "Newton's method") (name fb:en.newton-euler_equations "Newton–Euler equations") (name fb:en.newtons_notation_for_differentiation "Newton's notation") (name fb:en.newtons_cannonball "Newton's cannonball") (name fb:m.03ty4g Newton) (name fb:en.newton_disc "Newton disc") (name fb:m.0fkwbs Newton))) (type fb:symbols.namesake) who was isaac newton and what did he do? Newton's laws of motion 19.073 formula (fb:symbols.namesake.named_after fb:en.sir_newton_isaac)) (value (list (name fb:en.newton Newton) (name fb:en.8000_isaac_newton "8000 Isaac Newton") (name fb:en.newtons_laws_of_motion "Newton's laws of motion") (name fb:en.newtons_method "Newton's method") (name fb:en.newton-euler_equations "Newton–Euler equations") (name fb:en.newtons_notation_for_differentiation "Newton's notation") (name fb:en.newtons_cannonball "Newton's cannonball") (name fb:m.03ty4g Newton) (name fb:en.newton_disc "Newton disc") (name fb:m.0fkwbs Newton))) (type fb:symbols.namesake) who was isaac newton and what did he do? Newton's method 19.073 formula (fb:symbols.namesake.named_after fb:en.sir_newton_isaac)) (value (list (name fb:en.newton Newton) (name fb:en.8000_isaac_newton "8000 Isaac Newton") (name fb:en.newtons_laws_of_motion "Newton's laws of motion") (name fb:en.newtons_method "Newton's method") (name fb:en.newton-euler_equations "Newton–Euler equations") (name fb:en.newtons_notation_for_differentiation "Newton's notation") (name fb:en.newtons_cannonball "Newton's cannonball") (name fb:m.03ty4g Newton) (name fb:en.newton_disc "Newton disc") (name fb:m.0fkwbs Newton))) (type fb:symbols.namesake) who was isaac newton and what did he do? Newton–Euler equations 19.073 formula (fb:symbols.namesake.named_after fb:en.sir_newton_isaac)) (value (list (name fb:en.newton Newton) (name fb:en.8000_isaac_newton "8000 Isaac Newton") (name fb:en.newtons_laws_of_motion "Newton's laws of motion") (name fb:en.newtons_method "Newton's method") (name fb:en.newton-euler_equations "Newton–Euler equations") (name fb:en.newtons_notation_for_differentiation "Newton's notation") (name fb:en.newtons_cannonball "Newton's cannonball") (name fb:m.03ty4g Newton) (name fb:en.newton_disc "Newton disc") (name fb:m.0fkwbs Newton))) (type fb:symbols.namesake) who was isaac newton and what did he do? Newton's notation 19.073 formula (fb:symbols.namesake.named_after fb:en.sir_newton_isaac)) (value (list (name fb:en.newton Newton) (name fb:en.8000_isaac_newton "8000 Isaac Newton") (name fb:en.newtons_laws_of_motion "Newton's laws of motion") (name fb:en.newtons_method "Newton's method") (name fb:en.newton-euler_equations "Newton–Euler equations") (name fb:en.newtons_notation_for_differentiation "Newton's notation") (name fb:en.newtons_cannonball "Newton's cannonball") (name fb:m.03ty4g Newton) (name fb:en.newton_disc "Newton disc") (name fb:m.0fkwbs Newton))) (type fb:symbols.namesake) who was isaac newton and what did he do? Newton's cannonball 19.073 formula (fb:symbols.namesake.named_after fb:en.sir_newton_isaac)) (value (list (name fb:en.newton Newton) (name fb:en.8000_isaac_newton "8000 Isaac Newton") (name fb:en.newtons_laws_of_motion "Newton's laws of motion") (name fb:en.newtons_method "Newton's method") (name fb:en.newton-euler_equations "Newton–Euler equations") (name fb:en.newtons_notation_for_differentiation "Newton's notation") (name fb:en.newtons_cannonball "Newton's cannonball") (name fb:m.03ty4g Newton) (name fb:en.newton_disc "Newton disc") (name fb:m.0fkwbs Newton))) (type fb:symbols.namesake) who was isaac newton and what did he do? Newton disc 19.073 formula (fb:symbols.namesake.named_after fb:en.sir_newton_isaac)) (value (list (name fb:en.newton Newton) (name fb:en.8000_isaac_newton "8000 Isaac Newton") (name fb:en.newtons_laws_of_motion "Newton's laws of motion") (name fb:en.newtons_method "Newton's method") (name fb:en.newton-euler_equations "Newton–Euler equations") (name fb:en.newtons_notation_for_differentiation "Newton's notation") (name fb:en.newtons_cannonball "Newton's cannonball") (name fb:m.03ty4g Newton) (name fb:en.newton_disc "Newton disc") (name fb:m.0fkwbs Newton))) (type fb:symbols.namesake) who did william shakespeare marry? Anne Hathaway 11.573 formula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.william_shakespeare)) (value (list (name fb:en.anne_hathaway_1556 "Anne Hathaway"))) (type fb:people.person) what movies queen latifah is in? Ice Age: The Meltdown 5.938 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.queen_latifah))) (value (list (name fb:en.ice_age_the_meltdown_2006 "Ice Age: The Meltdown") (name fb:en.chicago_2002 Chicago) (name fb:m.0_kdcw "Latifah's Had It Up 2 Here") (name fb:en.all_hail_the_queen "All Hail the Queen") (name fb:m.0_kd9p "Fly Girl") (name fb:m.0my5k4f "I Wanna Be Down") (name fb:m.05zynv8 "Living with the Dead") (name fb:en.hairspray Hairspray) (name fb:m.06_wqk4 "Valentine's Day") (name fb:en.just_wright "Just Wright"))) (type (union fb:award.award_nominated_work)) what movies queen latifah is in? Latifah's Had It Up 2 Here 5.938 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.queen_latifah))) (value (list (name fb:en.ice_age_the_meltdown_2006 "Ice Age: The Meltdown") (name fb:en.chicago_2002 Chicago) (name fb:m.0_kdcw "Latifah's Had It Up 2 Here") (name fb:en.all_hail_the_queen "All Hail the Queen") (name fb:m.0_kd9p "Fly Girl") (name fb:m.0my5k4f "I Wanna Be Down") (name fb:m.05zynv8 "Living with the Dead") (name fb:en.hairspray Hairspray) (name fb:m.06_wqk4 "Valentine's Day") (name fb:en.just_wright "Just Wright"))) (type (union fb:award.award_nominated_work)) what movies queen latifah is in? All Hail the Queen 5.938 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.queen_latifah))) (value (list (name fb:en.ice_age_the_meltdown_2006 "Ice Age: The Meltdown") (name fb:en.chicago_2002 Chicago) (name fb:m.0_kdcw "Latifah's Had It Up 2 Here") (name fb:en.all_hail_the_queen "All Hail the Queen") (name fb:m.0_kd9p "Fly Girl") (name fb:m.0my5k4f "I Wanna Be Down") (name fb:m.05zynv8 "Living with the Dead") (name fb:en.hairspray Hairspray) (name fb:m.06_wqk4 "Valentine's Day") (name fb:en.just_wright "Just Wright"))) (type (union fb:award.award_nominated_work)) what movies queen latifah is in? Fly Girl 5.938 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.queen_latifah))) (value (list (name fb:en.ice_age_the_meltdown_2006 "Ice Age: The Meltdown") (name fb:en.chicago_2002 Chicago) (name fb:m.0_kdcw "Latifah's Had It Up 2 Here") (name fb:en.all_hail_the_queen "All Hail the Queen") (name fb:m.0_kd9p "Fly Girl") (name fb:m.0my5k4f "I Wanna Be Down") (name fb:m.05zynv8 "Living with the Dead") (name fb:en.hairspray Hairspray) (name fb:m.06_wqk4 "Valentine's Day") (name fb:en.just_wright "Just Wright"))) (type (union fb:award.award_nominated_work)) what movies queen latifah is in? I Wanna Be Down 5.938 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.queen_latifah))) (value (list (name fb:en.ice_age_the_meltdown_2006 "Ice Age: The Meltdown") (name fb:en.chicago_2002 Chicago) (name fb:m.0_kdcw "Latifah's Had It Up 2 Here") (name fb:en.all_hail_the_queen "All Hail the Queen") (name fb:m.0_kd9p "Fly Girl") (name fb:m.0my5k4f "I Wanna Be Down") (name fb:m.05zynv8 "Living with the Dead") (name fb:en.hairspray Hairspray) (name fb:m.06_wqk4 "Valentine's Day") (name fb:en.just_wright "Just Wright"))) (type (union fb:award.award_nominated_work)) what movies queen latifah is in? Living with the Dead 5.938 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.queen_latifah))) (value (list (name fb:en.ice_age_the_meltdown_2006 "Ice Age: The Meltdown") (name fb:en.chicago_2002 Chicago) (name fb:m.0_kdcw "Latifah's Had It Up 2 Here") (name fb:en.all_hail_the_queen "All Hail the Queen") (name fb:m.0_kd9p "Fly Girl") (name fb:m.0my5k4f "I Wanna Be Down") (name fb:m.05zynv8 "Living with the Dead") (name fb:en.hairspray Hairspray) (name fb:m.06_wqk4 "Valentine's Day") (name fb:en.just_wright "Just Wright"))) (type (union fb:award.award_nominated_work)) what movies queen latifah is in? Valentine's Day 5.938 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.queen_latifah))) (value (list (name fb:en.ice_age_the_meltdown_2006 "Ice Age: The Meltdown") (name fb:en.chicago_2002 Chicago) (name fb:m.0_kdcw "Latifah's Had It Up 2 Here") (name fb:en.all_hail_the_queen "All Hail the Queen") (name fb:m.0_kd9p "Fly Girl") (name fb:m.0my5k4f "I Wanna Be Down") (name fb:m.05zynv8 "Living with the Dead") (name fb:en.hairspray Hairspray) (name fb:m.06_wqk4 "Valentine's Day") (name fb:en.just_wright "Just Wright"))) (type (union fb:award.award_nominated_work)) what movies queen latifah is in? Just Wright 5.938 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.queen_latifah))) (value (list (name fb:en.ice_age_the_meltdown_2006 "Ice Age: The Meltdown") (name fb:en.chicago_2002 Chicago) (name fb:m.0_kdcw "Latifah's Had It Up 2 Here") (name fb:en.all_hail_the_queen "All Hail the Queen") (name fb:m.0_kd9p "Fly Girl") (name fb:m.0my5k4f "I Wanna Be Down") (name fb:m.05zynv8 "Living with the Dead") (name fb:en.hairspray Hairspray) (name fb:m.06_wqk4 "Valentine's Day") (name fb:en.just_wright "Just Wright"))) (type (union fb:award.award_nominated_work)) where did michelle obama graduated from? Whitney M. Young Magnet High School 7.545 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.michelle_obama))) (value (list (name fb:en.whitney_young_magnet_high_school "Whitney M. Young Magnet High School") (name fb:en.princeton_university "Princeton University") (name fb:en.harvard_law_school "Harvard Law School"))) (type fb:education.educational_institution) where did michelle obama graduated from? Princeton University 7.545 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.michelle_obama))) (value (list (name fb:en.whitney_young_magnet_high_school "Whitney M. Young Magnet High School") (name fb:en.princeton_university "Princeton University") (name fb:en.harvard_law_school "Harvard Law School"))) (type fb:education.educational_institution) where did michelle obama graduated from? Harvard Law School 7.545 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.michelle_obama))) (value (list (name fb:en.whitney_young_magnet_high_school "Whitney M. Young Magnet High School") (name fb:en.princeton_university "Princeton University") (name fb:en.harvard_law_school "Harvard Law School"))) (type fb:education.educational_institution) what kind of music did franz liszt compose? Classical music 13.35 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.franz_liszt))) (value (list (name fb:en.european_classical_music "Classical music") (name fb:en.chamber_music "Chamber music") (name fb:m.05lls Opera) (name fb:en.art_song "Art song") (name fb:en.romantic_music "Romantic music"))) (type (union fb:music.genre)) what kind of music did franz liszt compose? Chamber music 13.35 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.franz_liszt))) (value (list (name fb:en.european_classical_music "Classical music") (name fb:en.chamber_music "Chamber music") (name fb:m.05lls Opera) (name fb:en.art_song "Art song") (name fb:en.romantic_music "Romantic music"))) (type (union fb:music.genre)) what kind of music did franz liszt compose? Art song 13.35 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.franz_liszt))) (value (list (name fb:en.european_classical_music "Classical music") (name fb:en.chamber_music "Chamber music") (name fb:m.05lls Opera) (name fb:en.art_song "Art song") (name fb:en.romantic_music "Romantic music"))) (type (union fb:music.genre)) what kind of music did franz liszt compose? Romantic music 13.35 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.franz_liszt))) (value (list (name fb:en.european_classical_music "Classical music") (name fb:en.chamber_music "Chamber music") (name fb:m.05lls Opera) (name fb:en.art_song "Art song") (name fb:en.romantic_music "Romantic music"))) (type (union fb:music.genre)) what document did thomas jefferson wrote? The Works of Thomas Jefferson 7.975 formula (!fb:book.author.works_written fb:en.thomas_jefferson)) (value (list (name fb:en.the_works_of_thomas_jefferson "The Works of Thomas Jefferson") (name fb:en.family_letters_of_thomas_jefferson "The family letters of Thomas Jefferson") (name fb:m.04t1mbm "A manual of parliamentary practice for the use of the Senate of the United States") (name fb:m.0dv5xvy "The Papers of Thomas Jefferson, Volume 23: 1 January to 31 May 1792") (name fb:m.0dr1cyf "The Papers of Thomas Jefferson, Volume 22: 6 August to 31 December 1791") (name fb:m.0dv5_62 "The Papers of Thomas Jefferson, Volume 24: 1 June to 31 December 1792") (name fb:en.united_states_declaration_of_independence "United States Declaration of Independence") (name fb:m.0bhjg18 Letters) (name fb:en.jefferson_bible "Jefferson Bible") (name fb:en.light_and_liberty "Light and liberty"))) (type fb:book.written_work) what document did thomas jefferson wrote? The family letters of Thomas Jefferson 7.975 formula (!fb:book.author.works_written fb:en.thomas_jefferson)) (value (list (name fb:en.the_works_of_thomas_jefferson "The Works of Thomas Jefferson") (name fb:en.family_letters_of_thomas_jefferson "The family letters of Thomas Jefferson") (name fb:m.04t1mbm "A manual of parliamentary practice for the use of the Senate of the United States") (name fb:m.0dv5xvy "The Papers of Thomas Jefferson, Volume 23: 1 January to 31 May 1792") (name fb:m.0dr1cyf "The Papers of Thomas Jefferson, Volume 22: 6 August to 31 December 1791") (name fb:m.0dv5_62 "The Papers of Thomas Jefferson, Volume 24: 1 June to 31 December 1792") (name fb:en.united_states_declaration_of_independence "United States Declaration of Independence") (name fb:m.0bhjg18 Letters) (name fb:en.jefferson_bible "Jefferson Bible") (name fb:en.light_and_liberty "Light and liberty"))) (type fb:book.written_work) what document did thomas jefferson wrote? A manual of parliamentary practice for the use of the Senate of the United States 7.975 formula (!fb:book.author.works_written fb:en.thomas_jefferson)) (value (list (name fb:en.the_works_of_thomas_jefferson "The Works of Thomas Jefferson") (name fb:en.family_letters_of_thomas_jefferson "The family letters of Thomas Jefferson") (name fb:m.04t1mbm "A manual of parliamentary practice for the use of the Senate of the United States") (name fb:m.0dv5xvy "The Papers of Thomas Jefferson, Volume 23: 1 January to 31 May 1792") (name fb:m.0dr1cyf "The Papers of Thomas Jefferson, Volume 22: 6 August to 31 December 1791") (name fb:m.0dv5_62 "The Papers of Thomas Jefferson, Volume 24: 1 June to 31 December 1792") (name fb:en.united_states_declaration_of_independence "United States Declaration of Independence") (name fb:m.0bhjg18 Letters) (name fb:en.jefferson_bible "Jefferson Bible") (name fb:en.light_and_liberty "Light and liberty"))) (type fb:book.written_work) what document did thomas jefferson wrote? The Papers of Thomas Jefferson, Volume 23: 1 January to 31 May 1792 7.975 formula (!fb:book.author.works_written fb:en.thomas_jefferson)) (value (list (name fb:en.the_works_of_thomas_jefferson "The Works of Thomas Jefferson") (name fb:en.family_letters_of_thomas_jefferson "The family letters of Thomas Jefferson") (name fb:m.04t1mbm "A manual of parliamentary practice for the use of the Senate of the United States") (name fb:m.0dv5xvy "The Papers of Thomas Jefferson, Volume 23: 1 January to 31 May 1792") (name fb:m.0dr1cyf "The Papers of Thomas Jefferson, Volume 22: 6 August to 31 December 1791") (name fb:m.0dv5_62 "The Papers of Thomas Jefferson, Volume 24: 1 June to 31 December 1792") (name fb:en.united_states_declaration_of_independence "United States Declaration of Independence") (name fb:m.0bhjg18 Letters) (name fb:en.jefferson_bible "Jefferson Bible") (name fb:en.light_and_liberty "Light and liberty"))) (type fb:book.written_work) what document did thomas jefferson wrote? The Papers of Thomas Jefferson, Volume 22: 6 August to 31 December 1791 7.975 formula (!fb:book.author.works_written fb:en.thomas_jefferson)) (value (list (name fb:en.the_works_of_thomas_jefferson "The Works of Thomas Jefferson") (name fb:en.family_letters_of_thomas_jefferson "The family letters of Thomas Jefferson") (name fb:m.04t1mbm "A manual of parliamentary practice for the use of the Senate of the United States") (name fb:m.0dv5xvy "The Papers of Thomas Jefferson, Volume 23: 1 January to 31 May 1792") (name fb:m.0dr1cyf "The Papers of Thomas Jefferson, Volume 22: 6 August to 31 December 1791") (name fb:m.0dv5_62 "The Papers of Thomas Jefferson, Volume 24: 1 June to 31 December 1792") (name fb:en.united_states_declaration_of_independence "United States Declaration of Independence") (name fb:m.0bhjg18 Letters) (name fb:en.jefferson_bible "Jefferson Bible") (name fb:en.light_and_liberty "Light and liberty"))) (type fb:book.written_work) what document did thomas jefferson wrote? The Papers of Thomas Jefferson, Volume 24: 1 June to 31 December 1792 7.975 formula (!fb:book.author.works_written fb:en.thomas_jefferson)) (value (list (name fb:en.the_works_of_thomas_jefferson "The Works of Thomas Jefferson") (name fb:en.family_letters_of_thomas_jefferson "The family letters of Thomas Jefferson") (name fb:m.04t1mbm "A manual of parliamentary practice for the use of the Senate of the United States") (name fb:m.0dv5xvy "The Papers of Thomas Jefferson, Volume 23: 1 January to 31 May 1792") (name fb:m.0dr1cyf "The Papers of Thomas Jefferson, Volume 22: 6 August to 31 December 1791") (name fb:m.0dv5_62 "The Papers of Thomas Jefferson, Volume 24: 1 June to 31 December 1792") (name fb:en.united_states_declaration_of_independence "United States Declaration of Independence") (name fb:m.0bhjg18 Letters) (name fb:en.jefferson_bible "Jefferson Bible") (name fb:en.light_and_liberty "Light and liberty"))) (type fb:book.written_work) what document did thomas jefferson wrote? United States Declaration of Independence 7.975 formula (!fb:book.author.works_written fb:en.thomas_jefferson)) (value (list (name fb:en.the_works_of_thomas_jefferson "The Works of Thomas Jefferson") (name fb:en.family_letters_of_thomas_jefferson "The family letters of Thomas Jefferson") (name fb:m.04t1mbm "A manual of parliamentary practice for the use of the Senate of the United States") (name fb:m.0dv5xvy "The Papers of Thomas Jefferson, Volume 23: 1 January to 31 May 1792") (name fb:m.0dr1cyf "The Papers of Thomas Jefferson, Volume 22: 6 August to 31 December 1791") (name fb:m.0dv5_62 "The Papers of Thomas Jefferson, Volume 24: 1 June to 31 December 1792") (name fb:en.united_states_declaration_of_independence "United States Declaration of Independence") (name fb:m.0bhjg18 Letters) (name fb:en.jefferson_bible "Jefferson Bible") (name fb:en.light_and_liberty "Light and liberty"))) (type fb:book.written_work) what document did thomas jefferson wrote? Jefferson Bible 7.975 formula (!fb:book.author.works_written fb:en.thomas_jefferson)) (value (list (name fb:en.the_works_of_thomas_jefferson "The Works of Thomas Jefferson") (name fb:en.family_letters_of_thomas_jefferson "The family letters of Thomas Jefferson") (name fb:m.04t1mbm "A manual of parliamentary practice for the use of the Senate of the United States") (name fb:m.0dv5xvy "The Papers of Thomas Jefferson, Volume 23: 1 January to 31 May 1792") (name fb:m.0dr1cyf "The Papers of Thomas Jefferson, Volume 22: 6 August to 31 December 1791") (name fb:m.0dv5_62 "The Papers of Thomas Jefferson, Volume 24: 1 June to 31 December 1792") (name fb:en.united_states_declaration_of_independence "United States Declaration of Independence") (name fb:m.0bhjg18 Letters) (name fb:en.jefferson_bible "Jefferson Bible") (name fb:en.light_and_liberty "Light and liberty"))) (type fb:book.written_work) what document did thomas jefferson wrote? Light and liberty 7.975 formula (!fb:book.author.works_written fb:en.thomas_jefferson)) (value (list (name fb:en.the_works_of_thomas_jefferson "The Works of Thomas Jefferson") (name fb:en.family_letters_of_thomas_jefferson "The family letters of Thomas Jefferson") (name fb:m.04t1mbm "A manual of parliamentary practice for the use of the Senate of the United States") (name fb:m.0dv5xvy "The Papers of Thomas Jefferson, Volume 23: 1 January to 31 May 1792") (name fb:m.0dr1cyf "The Papers of Thomas Jefferson, Volume 22: 6 August to 31 December 1791") (name fb:m.0dv5_62 "The Papers of Thomas Jefferson, Volume 24: 1 June to 31 December 1792") (name fb:en.united_states_declaration_of_independence "United States Declaration of Independence") (name fb:m.0bhjg18 Letters) (name fb:en.jefferson_bible "Jefferson Bible") (name fb:en.light_and_liberty "Light and liberty"))) (type fb:book.written_work) where is victoria british columbia? Cascade Range 3.522 formula (and (fb:type.object.type fb:location.location) (!fb:location.location.partially_contains fb:en.british_columbia))) (value (list (name fb:en.cascade_range "Cascade Range") (name fb:en.osoyoos_lake "Osoyoos Lake") (name fb:en.pend_oreille_river "Pend Oreille River") (name fb:m.0b74f_6 "Mount Williams"))) (type fb:location.location) where is victoria british columbia? Osoyoos Lake 3.522 formula (and (fb:type.object.type fb:location.location) (!fb:location.location.partially_contains fb:en.british_columbia))) (value (list (name fb:en.cascade_range "Cascade Range") (name fb:en.osoyoos_lake "Osoyoos Lake") (name fb:en.pend_oreille_river "Pend Oreille River") (name fb:m.0b74f_6 "Mount Williams"))) (type fb:location.location) where is victoria british columbia? Pend Oreille River 3.522 formula (and (fb:type.object.type fb:location.location) (!fb:location.location.partially_contains fb:en.british_columbia))) (value (list (name fb:en.cascade_range "Cascade Range") (name fb:en.osoyoos_lake "Osoyoos Lake") (name fb:en.pend_oreille_river "Pend Oreille River") (name fb:m.0b74f_6 "Mount Williams"))) (type fb:location.location) where is victoria british columbia? Mount Williams 3.522 formula (and (fb:type.object.type fb:location.location) (!fb:location.location.partially_contains fb:en.british_columbia))) (value (list (name fb:en.cascade_range "Cascade Range") (name fb:en.osoyoos_lake "Osoyoos Lake") (name fb:en.pend_oreille_river "Pend Oreille River") (name fb:m.0b74f_6 "Mount Williams"))) (type fb:location.location) how many mary mary sisters? Manny Marroquin -1.414 formula ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winner.awards_won (var x)))) fb:en.mary_mary)) (value (list (name fb:en.manny_marroquin "Manny Marroquin") (name fb:en.warryn_campbell "Warryn Campbell"))) (type fb:award.award_winner) how many mary mary sisters? Warryn Campbell -1.414 formula ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winner.awards_won (var x)))) fb:en.mary_mary)) (value (list (name fb:en.manny_marroquin "Manny Marroquin") (name fb:en.warryn_campbell "Warryn Campbell"))) (type fb:award.award_winner) what do we call the currency of france? CFP franc 29.338 formula (!fb:location.country.currency_used fb:en.france)) (value (list (name fb:en.euro Euro) (name fb:en.cfp_franc "CFP franc"))) (type fb:finance.currency) what team does david beckham play for in 2012? Real Madrid C.F. 18.67 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham))) (value (list (name fb:en.real_madrid "Real Madrid C.F.") (name fb:en.los_angeles_galaxy "LA Galaxy") (name fb:en.ac_milan "A.C. Milan") (name fb:en.paris_saint-germain_fc "Paris Saint-Germain F.C.") (name fb:en.preston_north_end_fc "Preston North End F.C.") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.england_national_under-21_football_team "England national under-21 football team") (name fb:en.england_national_football_team "England national football team"))) (type fb:soccer.football_team) what team does david beckham play for in 2012? LA Galaxy 18.67 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham))) (value (list (name fb:en.real_madrid "Real Madrid C.F.") (name fb:en.los_angeles_galaxy "LA Galaxy") (name fb:en.ac_milan "A.C. Milan") (name fb:en.paris_saint-germain_fc "Paris Saint-Germain F.C.") (name fb:en.preston_north_end_fc "Preston North End F.C.") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.england_national_under-21_football_team "England national under-21 football team") (name fb:en.england_national_football_team "England national football team"))) (type fb:soccer.football_team) what team does david beckham play for in 2012? A.C. Milan 18.67 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham))) (value (list (name fb:en.real_madrid "Real Madrid C.F.") (name fb:en.los_angeles_galaxy "LA Galaxy") (name fb:en.ac_milan "A.C. Milan") (name fb:en.paris_saint-germain_fc "Paris Saint-Germain F.C.") (name fb:en.preston_north_end_fc "Preston North End F.C.") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.england_national_under-21_football_team "England national under-21 football team") (name fb:en.england_national_football_team "England national football team"))) (type fb:soccer.football_team) what team does david beckham play for in 2012? Paris Saint-Germain F.C. 18.67 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham))) (value (list (name fb:en.real_madrid "Real Madrid C.F.") (name fb:en.los_angeles_galaxy "LA Galaxy") (name fb:en.ac_milan "A.C. Milan") (name fb:en.paris_saint-germain_fc "Paris Saint-Germain F.C.") (name fb:en.preston_north_end_fc "Preston North End F.C.") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.england_national_under-21_football_team "England national under-21 football team") (name fb:en.england_national_football_team "England national football team"))) (type fb:soccer.football_team) what team does david beckham play for in 2012? Preston North End F.C. 18.67 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham))) (value (list (name fb:en.real_madrid "Real Madrid C.F.") (name fb:en.los_angeles_galaxy "LA Galaxy") (name fb:en.ac_milan "A.C. Milan") (name fb:en.paris_saint-germain_fc "Paris Saint-Germain F.C.") (name fb:en.preston_north_end_fc "Preston North End F.C.") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.england_national_under-21_football_team "England national under-21 football team") (name fb:en.england_national_football_team "England national football team"))) (type fb:soccer.football_team) what team does david beckham play for in 2012? Manchester United F.C. 18.67 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham))) (value (list (name fb:en.real_madrid "Real Madrid C.F.") (name fb:en.los_angeles_galaxy "LA Galaxy") (name fb:en.ac_milan "A.C. Milan") (name fb:en.paris_saint-germain_fc "Paris Saint-Germain F.C.") (name fb:en.preston_north_end_fc "Preston North End F.C.") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.england_national_under-21_football_team "England national under-21 football team") (name fb:en.england_national_football_team "England national football team"))) (type fb:soccer.football_team) what team does david beckham play for in 2012? England national under-21 football team 18.67 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham))) (value (list (name fb:en.real_madrid "Real Madrid C.F.") (name fb:en.los_angeles_galaxy "LA Galaxy") (name fb:en.ac_milan "A.C. Milan") (name fb:en.paris_saint-germain_fc "Paris Saint-Germain F.C.") (name fb:en.preston_north_end_fc "Preston North End F.C.") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.england_national_under-21_football_team "England national under-21 football team") (name fb:en.england_national_football_team "England national football team"))) (type fb:soccer.football_team) what team does david beckham play for in 2012? England national football team 18.67 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.david_beckham))) (value (list (name fb:en.real_madrid "Real Madrid C.F.") (name fb:en.los_angeles_galaxy "LA Galaxy") (name fb:en.ac_milan "A.C. Milan") (name fb:en.paris_saint-germain_fc "Paris Saint-Germain F.C.") (name fb:en.preston_north_end_fc "Preston North End F.C.") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.england_national_under-21_football_team "England national under-21 football team") (name fb:en.england_national_football_team "England national football team"))) (type fb:soccer.football_team) what movies did nick cannon star in? All That 11.06 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.nick_cannon))) (value (list (name fb:en.bobby Bobby) (name fb:en.drumline_2002 Drumline) (name fb:en.all_that "All That") (name fb:en.the_nick_cannon_show "The Nick Cannon Show"))) (type fb:award.award_nominated_work) what movies did nick cannon star in? The Nick Cannon Show 11.06 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.nick_cannon))) (value (list (name fb:en.bobby Bobby) (name fb:en.drumline_2002 Drumline) (name fb:en.all_that "All That") (name fb:en.the_nick_cannon_show "The Nick Cannon Show"))) (type fb:award.award_nominated_work) who did tom landry play for? Texas Longhorns football 13.563 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.tom_landry)) (value (list (name fb:en.texas_longhorns_football "Texas Longhorns football") (name fb:m.07342k "New York Yankees") (name fb:en.new_york_giants "New York Giants"))) (type fb:sports.sports_team) who did tom landry play for? New York Yankees 13.563 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.tom_landry)) (value (list (name fb:en.texas_longhorns_football "Texas Longhorns football") (name fb:m.07342k "New York Yankees") (name fb:en.new_york_giants "New York Giants"))) (type fb:sports.sports_team) who did tom landry play for? New York Giants 13.563 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.tom_landry)) (value (list (name fb:en.texas_longhorns_football "Texas Longhorns football") (name fb:m.07342k "New York Yankees") (name fb:en.new_york_giants "New York Giants"))) (type fb:sports.sports_team) where was john jay born? United States of America 9.223 formula (and (fb:type.object.type fb:location.location) (!fb:people.person.place_of_birth fb:m.02pxm8f))) (value (list (name fb:en.united_states_of_america "United States of America"))) (type fb:location.location) when is venus brightest? Entertainment Weekly annotation index 3.153 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.venus)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index"))) (type fb:common.annotation_index) what countries makes up the uk? United Kingdom 11.401 formula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland "Northern Ireland") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain "Kingdom of Great Britain") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england "Kingdom of England") (name fb:en.isle_of_man "Isle of Man"))) (type (union fb:location.country)) what countries makes up the uk? Northern Ireland 11.401 formula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland "Northern Ireland") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain "Kingdom of Great Britain") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england "Kingdom of England") (name fb:en.isle_of_man "Isle of Man"))) (type (union fb:location.country)) what countries makes up the uk? Kingdom of Great Britain 11.401 formula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland "Northern Ireland") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain "Kingdom of Great Britain") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england "Kingdom of England") (name fb:en.isle_of_man "Isle of Man"))) (type (union fb:location.country)) what countries makes up the uk? Kingdom of England 11.401 formula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland "Northern Ireland") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain "Kingdom of Great Britain") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england "Kingdom of England") (name fb:en.isle_of_man "Isle of Man"))) (type (union fb:location.country)) what countries makes up the uk? Isle of Man 11.401 formula (and (fb:type.object.type fb:location.country) (!fb:finance.currency.countries_used fb:en.uk))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.scotland Scotland) (name fb:en.northern_ireland "Northern Ireland") (name fb:en.gibraltar Gibraltar) (name fb:en.kingdom_of_great_britain "Kingdom of Great Britain") (name fb:en.zimbabwe Zimbabwe) (name fb:en.kingdom_of_england "Kingdom of England") (name fb:en.isle_of_man "Isle of Man"))) (type (union fb:location.country)) where do they speak german? Nazi Germany 15.8 formula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.german_language))) (value (list (name fb:en.switzerland Switzerland) (name fb:en.austria-hungary Austria-Hungary) (name fb:en.germany Germany) (name fb:en.austria Austria) (name fb:en.luxembourg Luxembourg) (name fb:en.belgium Belgium) (name fb:en.nazi_germany "Nazi Germany") (name fb:en.weimar_republic "Weimar Republic") (name fb:en.german_democratic_republic "German Democratic Republic") (name fb:en.nedics_serbia "Nedić's Serbia"))) (type fb:location.country) where do they speak german? Weimar Republic 15.8 formula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.german_language))) (value (list (name fb:en.switzerland Switzerland) (name fb:en.austria-hungary Austria-Hungary) (name fb:en.germany Germany) (name fb:en.austria Austria) (name fb:en.luxembourg Luxembourg) (name fb:en.belgium Belgium) (name fb:en.nazi_germany "Nazi Germany") (name fb:en.weimar_republic "Weimar Republic") (name fb:en.german_democratic_republic "German Democratic Republic") (name fb:en.nedics_serbia "Nedić's Serbia"))) (type fb:location.country) where do they speak german? German Democratic Republic 15.8 formula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.german_language))) (value (list (name fb:en.switzerland Switzerland) (name fb:en.austria-hungary Austria-Hungary) (name fb:en.germany Germany) (name fb:en.austria Austria) (name fb:en.luxembourg Luxembourg) (name fb:en.belgium Belgium) (name fb:en.nazi_germany "Nazi Germany") (name fb:en.weimar_republic "Weimar Republic") (name fb:en.german_democratic_republic "German Democratic Republic") (name fb:en.nedics_serbia "Nedić's Serbia"))) (type fb:location.country) where do they speak german? Nedić's Serbia 15.8 formula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.german_language))) (value (list (name fb:en.switzerland Switzerland) (name fb:en.austria-hungary Austria-Hungary) (name fb:en.germany Germany) (name fb:en.austria Austria) (name fb:en.luxembourg Luxembourg) (name fb:en.belgium Belgium) (name fb:en.nazi_germany "Nazi Germany") (name fb:en.weimar_republic "Weimar Republic") (name fb:en.german_democratic_republic "German Democratic Republic") (name fb:en.nedics_serbia "Nedić's Serbia"))) (type fb:location.country) when did mark mcgwire retired? Oakland Athletics 7.655 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.mark_mcgwire)) (value (list (name fb:en.oakland_athletics "Oakland Athletics") (name fb:en.st_louis_cardinals "St. Louis Cardinals"))) (type fb:sports.sports_team) when did mark mcgwire retired? St. Louis Cardinals 7.655 formula ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.mark_mcgwire)) (value (list (name fb:en.oakland_athletics "Oakland Athletics") (name fb:en.st_louis_cardinals "St. Louis Cardinals"))) (type fb:sports.sports_team) what is colorado technical university? United States of America 7.167 formula (!fb:location.location.containedby fb:en.colorado_technical_university)) (value (list (name fb:en.united_states_of_america "United States of America") (name fb:en.north_america "North America") (name fb:en.colorado Colorado) (name fb:en.colorado_springs "Colorado Springs"))) (type fb:location.location) what is colorado technical university? North America 7.167 formula (!fb:location.location.containedby fb:en.colorado_technical_university)) (value (list (name fb:en.united_states_of_america "United States of America") (name fb:en.north_america "North America") (name fb:en.colorado Colorado) (name fb:en.colorado_springs "Colorado Springs"))) (type fb:location.location) what is colorado technical university? Colorado Springs 7.167 formula (!fb:location.location.containedby fb:en.colorado_technical_university)) (value (list (name fb:en.united_states_of_america "United States of America") (name fb:en.north_america "North America") (name fb:en.colorado Colorado) (name fb:en.colorado_springs "Colorado Springs"))) (type fb:location.location) what was the currency used in france before the euro? CFP franc 26.4 formula (and (fb:type.object.type fb:finance.currency) (fb:finance.currency.countries_used fb:en.france))) (value (list (name fb:en.euro Euro) (name fb:en.cfp_franc "CFP franc"))) (type fb:finance.currency) what is kentucky state slogan? Spotted bass 8.74 formula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.kentucky)) (value (list (name fb:en.goldenrod Goldenrod) (name fb:en.brachiopod Brachiopod) (name fb:en.spotted_bass "Spotted bass") (name fb:en.united_we_stand_divided_we_fall "United we stand, divided we fall") (name fb:en.liriodendron_tulipifera "Liriodendron tulipifera") (name fb:m.01m0p1 Cardinal) (name fb:en.milk Milk) (name fb:en.liriodendron Liriodendron) (name fb:en.viceroy_butterfly Viceroy))) (type fb:location.symbol_of_administrative_division) what is kentucky state slogan? United we stand, divided we fall 8.74 formula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.kentucky)) (value (list (name fb:en.goldenrod Goldenrod) (name fb:en.brachiopod Brachiopod) (name fb:en.spotted_bass "Spotted bass") (name fb:en.united_we_stand_divided_we_fall "United we stand, divided we fall") (name fb:en.liriodendron_tulipifera "Liriodendron tulipifera") (name fb:m.01m0p1 Cardinal) (name fb:en.milk Milk) (name fb:en.liriodendron Liriodendron) (name fb:en.viceroy_butterfly Viceroy))) (type fb:location.symbol_of_administrative_division) what is kentucky state slogan? Liriodendron tulipifera 8.74 formula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.kentucky)) (value (list (name fb:en.goldenrod Goldenrod) (name fb:en.brachiopod Brachiopod) (name fb:en.spotted_bass "Spotted bass") (name fb:en.united_we_stand_divided_we_fall "United we stand, divided we fall") (name fb:en.liriodendron_tulipifera "Liriodendron tulipifera") (name fb:m.01m0p1 Cardinal) (name fb:en.milk Milk) (name fb:en.liriodendron Liriodendron) (name fb:en.viceroy_butterfly Viceroy))) (type fb:location.symbol_of_administrative_division) what type of government does russia have 2010? Semi-presidential system 15.104 formula (fb:government.form_of_government.countries fb:en.russia)) (value (list (name fb:en.semi-presidential_system "Semi-presidential system") (name fb:en.federal_republic "Federal republic") (name fb:en.constitutional_republic "Constitutional republic"))) (type fb:government.form_of_government) what type of government does russia have 2010? Federal republic 15.104 formula (fb:government.form_of_government.countries fb:en.russia)) (value (list (name fb:en.semi-presidential_system "Semi-presidential system") (name fb:en.federal_republic "Federal republic") (name fb:en.constitutional_republic "Constitutional republic"))) (type fb:government.form_of_government) what type of government does russia have 2010? Constitutional republic 15.104 formula (fb:government.form_of_government.countries fb:en.russia)) (value (list (name fb:en.semi-presidential_system "Semi-presidential system") (name fb:en.federal_republic "Federal republic") (name fb:en.constitutional_republic "Constitutional republic"))) (type fb:government.form_of_government) what did elvis presley died from? Myocardial infarction 19.658 formula (fb:people.cause_of_death.people fb:en.elvis_presley)) (value (list (name fb:en.heart_failure "Myocardial infarction"))) (type fb:people.cause_of_death) who played samantha stephens in bewitched? Patricia Kalember 7.225 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:m.0q1rlbv)) (value (list (name fb:en.patricia_kalember "Patricia Kalember"))) (type fb:film.actor) what county is san diego in? San Diego County 17.467 formula (!fb:location.hud_county_place.county fb:en.san_diego)) (value (list (name fb:en.san_diego_county "San Diego County"))) (type fb:location.us_county) which country in north america is divided into provinces? United States of America 13.912 formula (and (fb:type.object.type fb:location.country) (!fb:location.location.partially_contains fb:en.north_america))) (value (list (name fb:en.united_states_of_america "United States of America") (name fb:en.france France) (name fb:m.0hzc9m5 "United States, with Territories"))) (type (union fb:location.country)) which country in north america is divided into provinces? United States, with Territories 13.912 formula (and (fb:type.object.type fb:location.country) (!fb:location.location.partially_contains fb:en.north_america))) (value (list (name fb:en.united_states_of_america "United States of America") (name fb:en.france France) (name fb:m.0hzc9m5 "United States, with Territories"))) (type (union fb:location.country)) when does daylight saving end in new zealand 2012? Landing at Anzac Cove 11.065 formula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.new_zealand)) (value (list (name fb:en.landing_at_anzac_cove "Landing at Anzac Cove") (name fb:en.first_suez_offensive "Raid on the Suez Canal") (name fb:m.02kxjx "Western Front") (name fb:en.vietnam_war "Vietnam War") (name fb:en.operation_desert_thunder "Operation Desert Thunder") (name fb:en.battle_of_new_georgia "New Georgia Campaign") (name fb:en.indonesia-malaysia_confrontation "Indonesia–Malaysia confrontation") (name fb:en.operation_agreement "Operation Agreement") (name fb:en.battle_of_hongorai_river "Battle of the Hongorai River") (name fb:en.world_war_ii "World War II"))) (type fb:military.military_conflict) when does daylight saving end in new zealand 2012? Raid on the Suez Canal 11.065 formula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.new_zealand)) (value (list (name fb:en.landing_at_anzac_cove "Landing at Anzac Cove") (name fb:en.first_suez_offensive "Raid on the Suez Canal") (name fb:m.02kxjx "Western Front") (name fb:en.vietnam_war "Vietnam War") (name fb:en.operation_desert_thunder "Operation Desert Thunder") (name fb:en.battle_of_new_georgia "New Georgia Campaign") (name fb:en.indonesia-malaysia_confrontation "Indonesia–Malaysia confrontation") (name fb:en.operation_agreement "Operation Agreement") (name fb:en.battle_of_hongorai_river "Battle of the Hongorai River") (name fb:en.world_war_ii "World War II"))) (type fb:military.military_conflict) when does daylight saving end in new zealand 2012? Western Front 11.065 formula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.new_zealand)) (value (list (name fb:en.landing_at_anzac_cove "Landing at Anzac Cove") (name fb:en.first_suez_offensive "Raid on the Suez Canal") (name fb:m.02kxjx "Western Front") (name fb:en.vietnam_war "Vietnam War") (name fb:en.operation_desert_thunder "Operation Desert Thunder") (name fb:en.battle_of_new_georgia "New Georgia Campaign") (name fb:en.indonesia-malaysia_confrontation "Indonesia–Malaysia confrontation") (name fb:en.operation_agreement "Operation Agreement") (name fb:en.battle_of_hongorai_river "Battle of the Hongorai River") (name fb:en.world_war_ii "World War II"))) (type fb:military.military_conflict) when does daylight saving end in new zealand 2012? Vietnam War 11.065 formula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.new_zealand)) (value (list (name fb:en.landing_at_anzac_cove "Landing at Anzac Cove") (name fb:en.first_suez_offensive "Raid on the Suez Canal") (name fb:m.02kxjx "Western Front") (name fb:en.vietnam_war "Vietnam War") (name fb:en.operation_desert_thunder "Operation Desert Thunder") (name fb:en.battle_of_new_georgia "New Georgia Campaign") (name fb:en.indonesia-malaysia_confrontation "Indonesia–Malaysia confrontation") (name fb:en.operation_agreement "Operation Agreement") (name fb:en.battle_of_hongorai_river "Battle of the Hongorai River") (name fb:en.world_war_ii "World War II"))) (type fb:military.military_conflict) when does daylight saving end in new zealand 2012? Operation Desert Thunder 11.065 formula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.new_zealand)) (value (list (name fb:en.landing_at_anzac_cove "Landing at Anzac Cove") (name fb:en.first_suez_offensive "Raid on the Suez Canal") (name fb:m.02kxjx "Western Front") (name fb:en.vietnam_war "Vietnam War") (name fb:en.operation_desert_thunder "Operation Desert Thunder") (name fb:en.battle_of_new_georgia "New Georgia Campaign") (name fb:en.indonesia-malaysia_confrontation "Indonesia–Malaysia confrontation") (name fb:en.operation_agreement "Operation Agreement") (name fb:en.battle_of_hongorai_river "Battle of the Hongorai River") (name fb:en.world_war_ii "World War II"))) (type fb:military.military_conflict) when does daylight saving end in new zealand 2012? New Georgia Campaign 11.065 formula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.new_zealand)) (value (list (name fb:en.landing_at_anzac_cove "Landing at Anzac Cove") (name fb:en.first_suez_offensive "Raid on the Suez Canal") (name fb:m.02kxjx "Western Front") (name fb:en.vietnam_war "Vietnam War") (name fb:en.operation_desert_thunder "Operation Desert Thunder") (name fb:en.battle_of_new_georgia "New Georgia Campaign") (name fb:en.indonesia-malaysia_confrontation "Indonesia–Malaysia confrontation") (name fb:en.operation_agreement "Operation Agreement") (name fb:en.battle_of_hongorai_river "Battle of the Hongorai River") (name fb:en.world_war_ii "World War II"))) (type fb:military.military_conflict) when does daylight saving end in new zealand 2012? Indonesia–Malaysia confrontation 11.065 formula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.new_zealand)) (value (list (name fb:en.landing_at_anzac_cove "Landing at Anzac Cove") (name fb:en.first_suez_offensive "Raid on the Suez Canal") (name fb:m.02kxjx "Western Front") (name fb:en.vietnam_war "Vietnam War") (name fb:en.operation_desert_thunder "Operation Desert Thunder") (name fb:en.battle_of_new_georgia "New Georgia Campaign") (name fb:en.indonesia-malaysia_confrontation "Indonesia–Malaysia confrontation") (name fb:en.operation_agreement "Operation Agreement") (name fb:en.battle_of_hongorai_river "Battle of the Hongorai River") (name fb:en.world_war_ii "World War II"))) (type fb:military.military_conflict) when does daylight saving end in new zealand 2012? Operation Agreement 11.065 formula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.new_zealand)) (value (list (name fb:en.landing_at_anzac_cove "Landing at Anzac Cove") (name fb:en.first_suez_offensive "Raid on the Suez Canal") (name fb:m.02kxjx "Western Front") (name fb:en.vietnam_war "Vietnam War") (name fb:en.operation_desert_thunder "Operation Desert Thunder") (name fb:en.battle_of_new_georgia "New Georgia Campaign") (name fb:en.indonesia-malaysia_confrontation "Indonesia–Malaysia confrontation") (name fb:en.operation_agreement "Operation Agreement") (name fb:en.battle_of_hongorai_river "Battle of the Hongorai River") (name fb:en.world_war_ii "World War II"))) (type fb:military.military_conflict) when does daylight saving end in new zealand 2012? Battle of the Hongorai River 11.065 formula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.new_zealand)) (value (list (name fb:en.landing_at_anzac_cove "Landing at Anzac Cove") (name fb:en.first_suez_offensive "Raid on the Suez Canal") (name fb:m.02kxjx "Western Front") (name fb:en.vietnam_war "Vietnam War") (name fb:en.operation_desert_thunder "Operation Desert Thunder") (name fb:en.battle_of_new_georgia "New Georgia Campaign") (name fb:en.indonesia-malaysia_confrontation "Indonesia–Malaysia confrontation") (name fb:en.operation_agreement "Operation Agreement") (name fb:en.battle_of_hongorai_river "Battle of the Hongorai River") (name fb:en.world_war_ii "World War II"))) (type fb:military.military_conflict) when does daylight saving end in new zealand 2012? World War II 11.065 formula ((lambda x (!fb:military.military_combatant_group.conflict (!fb:military.military_combatant.military_conflicts (var x)))) fb:en.new_zealand)) (value (list (name fb:en.landing_at_anzac_cove "Landing at Anzac Cove") (name fb:en.first_suez_offensive "Raid on the Suez Canal") (name fb:m.02kxjx "Western Front") (name fb:en.vietnam_war "Vietnam War") (name fb:en.operation_desert_thunder "Operation Desert Thunder") (name fb:en.battle_of_new_georgia "New Georgia Campaign") (name fb:en.indonesia-malaysia_confrontation "Indonesia–Malaysia confrontation") (name fb:en.operation_agreement "Operation Agreement") (name fb:en.battle_of_hongorai_river "Battle of the Hongorai River") (name fb:en.world_war_ii "World War II"))) (type fb:military.military_conflict) what is real name of santa claus? The Polar Express 10.808 formula (!fb:book.book_character.appears_in_book fb:m.0j3v_2w)) (value (list (name fb:en.the_polar_express "The Polar Express"))) (type fb:book.book) when did kelly slater go pro? Jimmy Slade 7.651 formula ((lambda x (fb:tv.tv_character.appeared_in_tv_program (fb:tv.regular_tv_appearance.actor (var x)))) fb:en.kelly_slater)) (value (list (name fb:en.jimmy_slade "Jimmy Slade"))) (type fb:tv.tv_character) what did coretta scott king died from? Respiratory failure 18.819 formula (fb:people.cause_of_death.people fb:en.coretta_scott_king)) (value (list (name fb:en.respiratory_failure "Respiratory failure"))) (type fb:people.cause_of_death) who was vp for nixon? Farewell address 6.309 formula ((lambda x (!fb:event.speech_or_presentation.type_or_format_of_presentation (!fb:event.public_speaker.speeches_or_presentations (var x)))) fb:en.richard_nixon)) (value (list (name fb:en.farewell_address "Farewell address") (name fb:m.02vwrkh Speech) (name fb:en.television_address "Television address"))) (type fb:event.type_of_public_presentation) who was vp for nixon? Television address 6.309 formula ((lambda x (!fb:event.speech_or_presentation.type_or_format_of_presentation (!fb:event.public_speaker.speeches_or_presentations (var x)))) fb:en.richard_nixon)) (value (list (name fb:en.farewell_address "Farewell address") (name fb:m.02vwrkh Speech) (name fb:en.television_address "Television address"))) (type fb:event.type_of_public_presentation) where honduras in the world? El Salvador 3.524 formula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:location.adjoining_relationship.adjoins (!fb:location.location.adjoin_s (var x)))) fb:en.honduras))) (value (list (name fb:en.el_salvador "El Salvador") (name fb:en.nicaragua Nicaragua) (name fb:en.guatemala Guatemala))) (type fb:location.location) who owns mazda canada? United Kingdom 2.464 formula ((lambda x (fb:military.military_combatant.casualties (fb:military.casualties.combatant (var x)))) fb:en.canada)) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.france France) (name fb:en.australia Australia) (name fb:en.dominion_of_new_zealand "Dominion of New Zealand") (name fb:en.union_of_south_africa "Union of South Africa"))) (type fb:military.military_combatant) who owns mazda canada? Dominion of New Zealand 2.464 formula ((lambda x (fb:military.military_combatant.casualties (fb:military.casualties.combatant (var x)))) fb:en.canada)) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.france France) (name fb:en.australia Australia) (name fb:en.dominion_of_new_zealand "Dominion of New Zealand") (name fb:en.union_of_south_africa "Union of South Africa"))) (type fb:military.military_combatant) who owns mazda canada? Union of South Africa 2.464 formula ((lambda x (fb:military.military_combatant.casualties (fb:military.casualties.combatant (var x)))) fb:en.canada)) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.france France) (name fb:en.australia Australia) (name fb:en.dominion_of_new_zealand "Dominion of New Zealand") (name fb:en.union_of_south_africa "Union of South Africa"))) (type fb:military.military_combatant) who does ronaldinho play for now 2011? Brazil national football team 18.212 formula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.ronaldinho)) (value (list (name fb:en.brazil_national_football_team "Brazil national football team") (name fb:en.gremio_foot_ball_porto_alegrense "Grêmio Foot-Ball Porto Alegrense") (name fb:en.clube_atletico_mineiro "Clube Atlético Mineiro") (name fb:en.ac_milan "A.C. Milan") (name fb:en.clube_de_regatas_do_flamengo "Clube de Regatas do Flamengo") (name fb:en.paris_saint-germain_fc "Paris Saint-Germain F.C.") (name fb:en.fc_barcelona "FC Barcelona"))) (type fb:soccer.football_team) who does ronaldinho play for now 2011? Grêmio Foot-Ball Porto Alegrense 18.212 formula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.ronaldinho)) (value (list (name fb:en.brazil_national_football_team "Brazil national football team") (name fb:en.gremio_foot_ball_porto_alegrense "Grêmio Foot-Ball Porto Alegrense") (name fb:en.clube_atletico_mineiro "Clube Atlético Mineiro") (name fb:en.ac_milan "A.C. Milan") (name fb:en.clube_de_regatas_do_flamengo "Clube de Regatas do Flamengo") (name fb:en.paris_saint-germain_fc "Paris Saint-Germain F.C.") (name fb:en.fc_barcelona "FC Barcelona"))) (type fb:soccer.football_team) who does ronaldinho play for now 2011? Clube Atlético Mineiro 18.212 formula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.ronaldinho)) (value (list (name fb:en.brazil_national_football_team "Brazil national football team") (name fb:en.gremio_foot_ball_porto_alegrense "Grêmio Foot-Ball Porto Alegrense") (name fb:en.clube_atletico_mineiro "Clube Atlético Mineiro") (name fb:en.ac_milan "A.C. Milan") (name fb:en.clube_de_regatas_do_flamengo "Clube de Regatas do Flamengo") (name fb:en.paris_saint-germain_fc "Paris Saint-Germain F.C.") (name fb:en.fc_barcelona "FC Barcelona"))) (type fb:soccer.football_team) who does ronaldinho play for now 2011? A.C. Milan 18.212 formula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.ronaldinho)) (value (list (name fb:en.brazil_national_football_team "Brazil national football team") (name fb:en.gremio_foot_ball_porto_alegrense "Grêmio Foot-Ball Porto Alegrense") (name fb:en.clube_atletico_mineiro "Clube Atlético Mineiro") (name fb:en.ac_milan "A.C. Milan") (name fb:en.clube_de_regatas_do_flamengo "Clube de Regatas do Flamengo") (name fb:en.paris_saint-germain_fc "Paris Saint-Germain F.C.") (name fb:en.fc_barcelona "FC Barcelona"))) (type fb:soccer.football_team) who does ronaldinho play for now 2011? Clube de Regatas do Flamengo 18.212 formula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.ronaldinho)) (value (list (name fb:en.brazil_national_football_team "Brazil national football team") (name fb:en.gremio_foot_ball_porto_alegrense "Grêmio Foot-Ball Porto Alegrense") (name fb:en.clube_atletico_mineiro "Clube Atlético Mineiro") (name fb:en.ac_milan "A.C. Milan") (name fb:en.clube_de_regatas_do_flamengo "Clube de Regatas do Flamengo") (name fb:en.paris_saint-germain_fc "Paris Saint-Germain F.C.") (name fb:en.fc_barcelona "FC Barcelona"))) (type fb:soccer.football_team) who does ronaldinho play for now 2011? Paris Saint-Germain F.C. 18.212 formula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.ronaldinho)) (value (list (name fb:en.brazil_national_football_team "Brazil national football team") (name fb:en.gremio_foot_ball_porto_alegrense "Grêmio Foot-Ball Porto Alegrense") (name fb:en.clube_atletico_mineiro "Clube Atlético Mineiro") (name fb:en.ac_milan "A.C. Milan") (name fb:en.clube_de_regatas_do_flamengo "Clube de Regatas do Flamengo") (name fb:en.paris_saint-germain_fc "Paris Saint-Germain F.C.") (name fb:en.fc_barcelona "FC Barcelona"))) (type fb:soccer.football_team) who does ronaldinho play for now 2011? FC Barcelona 18.212 formula ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.ronaldinho)) (value (list (name fb:en.brazil_national_football_team "Brazil national football team") (name fb:en.gremio_foot_ball_porto_alegrense "Grêmio Foot-Ball Porto Alegrense") (name fb:en.clube_atletico_mineiro "Clube Atlético Mineiro") (name fb:en.ac_milan "A.C. Milan") (name fb:en.clube_de_regatas_do_flamengo "Clube de Regatas do Flamengo") (name fb:en.paris_saint-germain_fc "Paris Saint-Germain F.C.") (name fb:en.fc_barcelona "FC Barcelona"))) (type fb:soccer.football_team) what galileo galilei was famous for? Solar System 11.55 formula (!fb:user.lindenb.default_domain.scientist.known_for fb:en.galileo_galilei)) (value (list (name fb:en.solar_system "Solar System") (name fb:en.heliocentrism Heliocentrism) (name fb:en.galilean_moons "Galilean moons") (name fb:en.kinematics Kinematics))) (type fb:common.topic) what galileo galilei was famous for? Galilean moons 11.55 formula (!fb:user.lindenb.default_domain.scientist.known_for fb:en.galileo_galilei)) (value (list (name fb:en.solar_system "Solar System") (name fb:en.heliocentrism Heliocentrism) (name fb:en.galilean_moons "Galilean moons") (name fb:en.kinematics Kinematics))) (type fb:common.topic) what are the major trading partners of germany? Czech Republic 16.476 formula (and (fb:type.object.type fb:biology.breed_origin) ((lambda x (!fb:location.adjoining_relationship.adjoins (!fb:location.location.adjoin_s (var x)))) fb:en.germany))) (value (list (name fb:en.france France) (name fb:en.netherlands Netherlands) (name fb:en.belgium Belgium) (name fb:en.denmark Denmark) (name fb:en.poland Poland) (name fb:en.czech_republic "Czech Republic") (name fb:en.austria Austria) (name fb:en.switzerland Switzerland))) (type (union fb:biology.breed_origin)) where did romney graduated college? Brigham Young University 10.886 formula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.ann_romney_1949)))) (value (list (name fb:en.brigham_young_university "Brigham Young University") (name fb:en.harvard_extension_school "Harvard Extension School"))) (type fb:education.university) where did romney graduated college? Harvard Extension School 10.886 formula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.ann_romney_1949)))) (value (list (name fb:en.brigham_young_university "Brigham Young University") (name fb:en.harvard_extension_school "Harvard Extension School"))) (type fb:education.university) who did johnny depp play in corpse bride? Corpse Bride 11.668 formula (fb:film.film.starring (and (fb:film.performance.actor fb:en.johnny_depp) (fb:film.performance.film fb:en.corpse_bride)))) (value (list (name fb:en.corpse_bride "Corpse Bride"))) (type fb:film.film) when was taylor swift fearless tour? Harry Styles 11.33 formula ((lambda x (!fb:celebrities.romantic_relationship.celebrity (!fb:celebrities.celebrity.sexual_relationships (var x)))) fb:en.taylor_swift)) (value (list (name fb:m.0h3cm8d "Harry Styles") (name fb:en.joe_jonas "Joe Jonas"))) (type fb:celebrities.celebrity) when was taylor swift fearless tour? Joe Jonas 11.33 formula ((lambda x (!fb:celebrities.romantic_relationship.celebrity (!fb:celebrities.celebrity.sexual_relationships (var x)))) fb:en.taylor_swift)) (value (list (name fb:m.0h3cm8d "Harry Styles") (name fb:en.joe_jonas "Joe Jonas"))) (type fb:celebrities.celebrity) where did charles darwin and his wife live? Downe, Kent 12.376 formula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.charles_darwin))) (value (list (name fb:en.london London) (name fb:en.shrewsbury Shrewsbury) (name fb:en.downe_kent "Downe, Kent") (name fb:en.england England))) (type fb:location.location) who is the voice of kitt? William Daniels 14.874 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.kitt)) (value (list (name fb:en.william_daniels "William Daniels"))) (type fb:film.actor) what is eminem's real full name? Hailie Jade Scott 9.2 formula (!fb:people.person.children fb:en.eminem)) (value (list (name fb:en.hailie_jade_scott "Hailie Jade Scott") (name fb:m.0gkbth1 "Whitney Mathers") (name fb:m.0gkbtl4 "Alaina Mathers"))) (type fb:people.person) what is eminem's real full name? Whitney Mathers 9.2 formula (!fb:people.person.children fb:en.eminem)) (value (list (name fb:en.hailie_jade_scott "Hailie Jade Scott") (name fb:m.0gkbth1 "Whitney Mathers") (name fb:m.0gkbtl4 "Alaina Mathers"))) (type fb:people.person) what is eminem's real full name? Alaina Mathers 9.2 formula (!fb:people.person.children fb:en.eminem)) (value (list (name fb:en.hailie_jade_scott "Hailie Jade Scott") (name fb:m.0gkbth1 "Whitney Mathers") (name fb:m.0gkbtl4 "Alaina Mathers"))) (type fb:people.person) who is amy grant's first husband? Vince Gill 11.198 formula ((lambda x (!fb:people.marriage.spouse (!fb:people.person.spouse_s (var x)))) fb:en.amy_grant)) (value (list (name fb:en.vince_gill "Vince Gill"))) (type fb:people.person) what are the seven nations of central america? El Salvador 13.255 formula (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.central_america))) (value (list (name fb:en.el_salvador "El Salvador") (name fb:en.guatemala Guatemala) (name fb:en.costa_rica "Costa Rica") (name fb:en.honduras Honduras) (name fb:en.greater_colombia "Gran Colombia") (name fb:en.panama Panama) (name fb:en.belize Belize))) (type (union fb:location.country)) what are the seven nations of central america? Costa Rica 13.255 formula (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.central_america))) (value (list (name fb:en.el_salvador "El Salvador") (name fb:en.guatemala Guatemala) (name fb:en.costa_rica "Costa Rica") (name fb:en.honduras Honduras) (name fb:en.greater_colombia "Gran Colombia") (name fb:en.panama Panama) (name fb:en.belize Belize))) (type (union fb:location.country)) what are the seven nations of central america? Gran Colombia 13.255 formula (and (fb:type.object.type fb:location.country) (!fb:location.location.contains fb:en.central_america))) (value (list (name fb:en.el_salvador "El Salvador") (name fb:en.guatemala Guatemala) (name fb:en.costa_rica "Costa Rica") (name fb:en.honduras Honduras) (name fb:en.greater_colombia "Gran Colombia") (name fb:en.panama Panama) (name fb:en.belize Belize))) (type (union fb:location.country)) what is jamie spears baby name? Emma Forbes 5.947 formula (fb:people.person.children fb:en.jamie_spears)) (value (list (name fb:m.07wxqnh "Emma Forbes") (name fb:m.07wxqn9 "June Spears"))) (type fb:people.person) what is jamie spears baby name? June Spears 5.947 formula (fb:people.person.children fb:en.jamie_spears)) (value (list (name fb:m.07wxqnh "Emma Forbes") (name fb:m.07wxqn9 "June Spears"))) (type fb:people.person) what countries does canada have trade agreements with? United States of America 14.352 formula (and (fb:type.object.type fb:location.country) ((lambda x (!fb:location.imports_and_exports.exported_to (!fb:location.statistical_region.places_exported_to (var x)))) fb:en.canada))) (value (list (name fb:en.united_states_of_america "United States of America") (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.japan Japan))) (type (union fb:location.country)) what countries does canada have trade agreements with? United Kingdom 14.352 formula (and (fb:type.object.type fb:location.country) ((lambda x (!fb:location.imports_and_exports.exported_to (!fb:location.statistical_region.places_exported_to (var x)))) fb:en.canada))) (value (list (name fb:en.united_states_of_america "United States of America") (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.japan Japan))) (type (union fb:location.country)) who is the mother of prince michael jackson? Joseph Jackson 12.536 formula (!fb:people.person.parents fb:en.michael_jackson)) (value (list (name fb:en.joseph_jackson "Joseph Jackson") (name fb:en.katherine_jackson "Katherine Jackson"))) (type fb:people.person) who is the mother of prince michael jackson? Katherine Jackson 12.536 formula (!fb:people.person.parents fb:en.michael_jackson)) (value (list (name fb:en.joseph_jackson "Joseph Jackson") (name fb:en.katherine_jackson "Katherine Jackson"))) (type fb:people.person) what is the clemson mascot name? The Clemson Tiger 11.404 formula (!fb:education.educational_institution.mascot fb:en.clemson_university)) (value (list (name fb:en.the_clemson_tiger "The Clemson Tiger") (name fb:en.the_tiger_and_the_cub "The Tiger and the Cub"))) (type fb:education.school_mascot) what is the clemson mascot name? The Tiger and the Cub 11.404 formula (!fb:education.educational_institution.mascot fb:en.clemson_university)) (value (list (name fb:en.the_clemson_tiger "The Clemson Tiger") (name fb:en.the_tiger_and_the_cub "The Tiger and the Cub"))) (type fb:education.school_mascot) which of the following was a contribution thomas hunt morgan made to genetics? \ 6.8 formula ((lambda x (!fb:award.award_honor.notes_description (!fb:award.award_winner.awards_won (var x)))) fb:en.thomas_hunt_morgan)) (value (list (string "\"for his discoveries concerning the role played by the chromosome in heredity\"") (string "For his establishment of the modern science of genetics which had revolutionized our understanding, not only of heredity, but of the mechanism and nature of evolution"))) (type fb:type.text) which of the following was a contribution thomas hunt morgan made to genetics? 6.8 formula ((lambda x (!fb:award.award_honor.notes_description (!fb:award.award_winner.awards_won (var x)))) fb:en.thomas_hunt_morgan)) (value (list (string "\"for his discoveries concerning the role played by the chromosome in heredity\"") (string "For his establishment of the modern science of genetics which had revolutionized our understanding, not only of heredity, but of the mechanism and nature of evolution"))) (type fb:type.text) which of the following was a contribution thomas hunt morgan made to genetics? For his establishment of the modern science of genetics which had revolutionized our understanding, not only of heredity, but of the mechanism and nature of evolution 6.8 formula ((lambda x (!fb:award.award_honor.notes_description (!fb:award.award_winner.awards_won (var x)))) fb:en.thomas_hunt_morgan)) (value (list (string "\"for his discoveries concerning the role played by the chromosome in heredity\"") (string "For his establishment of the modern science of genetics which had revolutionized our understanding, not only of heredity, but of the mechanism and nature of evolution"))) (type fb:type.text) when did we start war with iraq? Six-Day War 17.511 formula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.force_strengths (fb:military.force_strength.combatant (var x)))) fb:en.iraq))) (value (list (name fb:en.six-day_war "Six-Day War") (name fb:en.iran-iraq_war "Iran–Iraq War"))) (type (union fb:military.military_conflict)) when did we start war with iraq? Iran–Iraq War 17.511 formula (and (fb:type.object.type fb:military.military_conflict) ((lambda x (fb:military.military_conflict.force_strengths (fb:military.force_strength.combatant (var x)))) fb:en.iraq))) (value (list (name fb:en.six-day_war "Six-Day War") (name fb:en.iran-iraq_war "Iran–Iraq War"))) (type (union fb:military.military_conflict)) what guitar did kurt cobain? Fender Jag-Stang 16.729 formula (and (fb:type.object.type fb:music.guitar) (!fb:music.guitarist.guitars_played fb:en.kurt_cobain))) (value (list (name fb:en.fender_jag-stang "Fender Jag-Stang"))) (type (union fb:music.guitar)) who is the governor of virginia 2011? Ed Schrock 18.198 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.virginia)) (value (list (name fb:en.ed_schrock "Ed Schrock") (name fb:en.lloyd_c_bird "Lloyd C. Bird") (name fb:en.johnny_joannou "Johnny Joannou") (name fb:en.bill_bolling "Bill Bolling") (name fb:en.elliott_m_braxton "Elliott M. Braxton") (name fb:en.ralph_hunter_daughton "Ralph Hunter Daughton") (name fb:en.mary_margaret_whipple "Mary Margaret Whipple") (name fb:en.stephen_newman "Stephen Newman") (name fb:en.william_c_wampler_jr "William C. Wampler, Jr.") (name fb:en.louise_lucas "Louise Lucas"))) (type fb:government.politician) who is the governor of virginia 2011? Lloyd C. Bird 18.198 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.virginia)) (value (list (name fb:en.ed_schrock "Ed Schrock") (name fb:en.lloyd_c_bird "Lloyd C. Bird") (name fb:en.johnny_joannou "Johnny Joannou") (name fb:en.bill_bolling "Bill Bolling") (name fb:en.elliott_m_braxton "Elliott M. Braxton") (name fb:en.ralph_hunter_daughton "Ralph Hunter Daughton") (name fb:en.mary_margaret_whipple "Mary Margaret Whipple") (name fb:en.stephen_newman "Stephen Newman") (name fb:en.william_c_wampler_jr "William C. Wampler, Jr.") (name fb:en.louise_lucas "Louise Lucas"))) (type fb:government.politician) who is the governor of virginia 2011? Johnny Joannou 18.198 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.virginia)) (value (list (name fb:en.ed_schrock "Ed Schrock") (name fb:en.lloyd_c_bird "Lloyd C. Bird") (name fb:en.johnny_joannou "Johnny Joannou") (name fb:en.bill_bolling "Bill Bolling") (name fb:en.elliott_m_braxton "Elliott M. Braxton") (name fb:en.ralph_hunter_daughton "Ralph Hunter Daughton") (name fb:en.mary_margaret_whipple "Mary Margaret Whipple") (name fb:en.stephen_newman "Stephen Newman") (name fb:en.william_c_wampler_jr "William C. Wampler, Jr.") (name fb:en.louise_lucas "Louise Lucas"))) (type fb:government.politician) who is the governor of virginia 2011? Bill Bolling 18.198 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.virginia)) (value (list (name fb:en.ed_schrock "Ed Schrock") (name fb:en.lloyd_c_bird "Lloyd C. Bird") (name fb:en.johnny_joannou "Johnny Joannou") (name fb:en.bill_bolling "Bill Bolling") (name fb:en.elliott_m_braxton "Elliott M. Braxton") (name fb:en.ralph_hunter_daughton "Ralph Hunter Daughton") (name fb:en.mary_margaret_whipple "Mary Margaret Whipple") (name fb:en.stephen_newman "Stephen Newman") (name fb:en.william_c_wampler_jr "William C. Wampler, Jr.") (name fb:en.louise_lucas "Louise Lucas"))) (type fb:government.politician) who is the governor of virginia 2011? Elliott M. Braxton 18.198 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.virginia)) (value (list (name fb:en.ed_schrock "Ed Schrock") (name fb:en.lloyd_c_bird "Lloyd C. Bird") (name fb:en.johnny_joannou "Johnny Joannou") (name fb:en.bill_bolling "Bill Bolling") (name fb:en.elliott_m_braxton "Elliott M. Braxton") (name fb:en.ralph_hunter_daughton "Ralph Hunter Daughton") (name fb:en.mary_margaret_whipple "Mary Margaret Whipple") (name fb:en.stephen_newman "Stephen Newman") (name fb:en.william_c_wampler_jr "William C. Wampler, Jr.") (name fb:en.louise_lucas "Louise Lucas"))) (type fb:government.politician) who is the governor of virginia 2011? Ralph Hunter Daughton 18.198 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.virginia)) (value (list (name fb:en.ed_schrock "Ed Schrock") (name fb:en.lloyd_c_bird "Lloyd C. Bird") (name fb:en.johnny_joannou "Johnny Joannou") (name fb:en.bill_bolling "Bill Bolling") (name fb:en.elliott_m_braxton "Elliott M. Braxton") (name fb:en.ralph_hunter_daughton "Ralph Hunter Daughton") (name fb:en.mary_margaret_whipple "Mary Margaret Whipple") (name fb:en.stephen_newman "Stephen Newman") (name fb:en.william_c_wampler_jr "William C. Wampler, Jr.") (name fb:en.louise_lucas "Louise Lucas"))) (type fb:government.politician) who is the governor of virginia 2011? Mary Margaret Whipple 18.198 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.virginia)) (value (list (name fb:en.ed_schrock "Ed Schrock") (name fb:en.lloyd_c_bird "Lloyd C. Bird") (name fb:en.johnny_joannou "Johnny Joannou") (name fb:en.bill_bolling "Bill Bolling") (name fb:en.elliott_m_braxton "Elliott M. Braxton") (name fb:en.ralph_hunter_daughton "Ralph Hunter Daughton") (name fb:en.mary_margaret_whipple "Mary Margaret Whipple") (name fb:en.stephen_newman "Stephen Newman") (name fb:en.william_c_wampler_jr "William C. Wampler, Jr.") (name fb:en.louise_lucas "Louise Lucas"))) (type fb:government.politician) who is the governor of virginia 2011? Stephen Newman 18.198 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.virginia)) (value (list (name fb:en.ed_schrock "Ed Schrock") (name fb:en.lloyd_c_bird "Lloyd C. Bird") (name fb:en.johnny_joannou "Johnny Joannou") (name fb:en.bill_bolling "Bill Bolling") (name fb:en.elliott_m_braxton "Elliott M. Braxton") (name fb:en.ralph_hunter_daughton "Ralph Hunter Daughton") (name fb:en.mary_margaret_whipple "Mary Margaret Whipple") (name fb:en.stephen_newman "Stephen Newman") (name fb:en.william_c_wampler_jr "William C. Wampler, Jr.") (name fb:en.louise_lucas "Louise Lucas"))) (type fb:government.politician) who is the governor of virginia 2011? William C. Wampler, Jr. 18.198 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.virginia)) (value (list (name fb:en.ed_schrock "Ed Schrock") (name fb:en.lloyd_c_bird "Lloyd C. Bird") (name fb:en.johnny_joannou "Johnny Joannou") (name fb:en.bill_bolling "Bill Bolling") (name fb:en.elliott_m_braxton "Elliott M. Braxton") (name fb:en.ralph_hunter_daughton "Ralph Hunter Daughton") (name fb:en.mary_margaret_whipple "Mary Margaret Whipple") (name fb:en.stephen_newman "Stephen Newman") (name fb:en.william_c_wampler_jr "William C. Wampler, Jr.") (name fb:en.louise_lucas "Louise Lucas"))) (type fb:government.politician) who is the governor of virginia 2011? Louise Lucas 18.198 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.virginia)) (value (list (name fb:en.ed_schrock "Ed Schrock") (name fb:en.lloyd_c_bird "Lloyd C. Bird") (name fb:en.johnny_joannou "Johnny Joannou") (name fb:en.bill_bolling "Bill Bolling") (name fb:en.elliott_m_braxton "Elliott M. Braxton") (name fb:en.ralph_hunter_daughton "Ralph Hunter Daughton") (name fb:en.mary_margaret_whipple "Mary Margaret Whipple") (name fb:en.stephen_newman "Stephen Newman") (name fb:en.william_c_wampler_jr "William C. Wampler, Jr.") (name fb:en.louise_lucas "Louise Lucas"))) (type fb:government.politician) who did darth vaders voice? David Prowse 9.35 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who did darth vaders voice? James Earl Jones 9.35 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who did darth vaders voice? Hayden Christensen 9.35 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who did darth vaders voice? Matt Lanter 9.35 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who did darth vaders voice? Sebastian Shaw 9.35 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who did darth vaders voice? Robert E. Bean 9.35 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who did darth vaders voice? Jake Lloyd 9.35 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) where is walton county ga? Walton County, FL HUD Section 8 Area 1.014 formula (and (fb:type.object.type fb:location.location) ((lambda x (fb:location.location.coterminous_with (fb:location.cotermination.location (var x)))) fb:en.walton_county))) (value (list (name fb:m.075kcbp "Walton County, FL HUD Section 8 Area"))) (type fb:location.location) what cancer did jackie kennedy die of? Dan Turell 10.159 formula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell "Dan Turèll") (name fb:en.loulou_de_la_falaise "Loulou de la Falaise") (name fb:en.cseh_tamas "Cseh Tamás") (name fb:en.cella_cruz "Celia Cruz") (name fb:en.edith_piaf "Édith Piaf") (name fb:en.slim_dusty "Slim Dusty") (name fb:en.yves_saint-laurent "Yves Saint Laurent") (name fb:en.steve_lacy "Steve Lacy") (name fb:en.alma_cogan "Alma Cogan") (name fb:en.marc_jarre "Maurice Jarre"))) (type fb:people.deceased_person) what cancer did jackie kennedy die of? Loulou de la Falaise 10.159 formula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell "Dan Turèll") (name fb:en.loulou_de_la_falaise "Loulou de la Falaise") (name fb:en.cseh_tamas "Cseh Tamás") (name fb:en.cella_cruz "Celia Cruz") (name fb:en.edith_piaf "Édith Piaf") (name fb:en.slim_dusty "Slim Dusty") (name fb:en.yves_saint-laurent "Yves Saint Laurent") (name fb:en.steve_lacy "Steve Lacy") (name fb:en.alma_cogan "Alma Cogan") (name fb:en.marc_jarre "Maurice Jarre"))) (type fb:people.deceased_person) what cancer did jackie kennedy die of? Cseh Tamás 10.159 formula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell "Dan Turèll") (name fb:en.loulou_de_la_falaise "Loulou de la Falaise") (name fb:en.cseh_tamas "Cseh Tamás") (name fb:en.cella_cruz "Celia Cruz") (name fb:en.edith_piaf "Édith Piaf") (name fb:en.slim_dusty "Slim Dusty") (name fb:en.yves_saint-laurent "Yves Saint Laurent") (name fb:en.steve_lacy "Steve Lacy") (name fb:en.alma_cogan "Alma Cogan") (name fb:en.marc_jarre "Maurice Jarre"))) (type fb:people.deceased_person) what cancer did jackie kennedy die of? Celia Cruz 10.159 formula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell "Dan Turèll") (name fb:en.loulou_de_la_falaise "Loulou de la Falaise") (name fb:en.cseh_tamas "Cseh Tamás") (name fb:en.cella_cruz "Celia Cruz") (name fb:en.edith_piaf "Édith Piaf") (name fb:en.slim_dusty "Slim Dusty") (name fb:en.yves_saint-laurent "Yves Saint Laurent") (name fb:en.steve_lacy "Steve Lacy") (name fb:en.alma_cogan "Alma Cogan") (name fb:en.marc_jarre "Maurice Jarre"))) (type fb:people.deceased_person) what cancer did jackie kennedy die of? Édith Piaf 10.159 formula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell "Dan Turèll") (name fb:en.loulou_de_la_falaise "Loulou de la Falaise") (name fb:en.cseh_tamas "Cseh Tamás") (name fb:en.cella_cruz "Celia Cruz") (name fb:en.edith_piaf "Édith Piaf") (name fb:en.slim_dusty "Slim Dusty") (name fb:en.yves_saint-laurent "Yves Saint Laurent") (name fb:en.steve_lacy "Steve Lacy") (name fb:en.alma_cogan "Alma Cogan") (name fb:en.marc_jarre "Maurice Jarre"))) (type fb:people.deceased_person) what cancer did jackie kennedy die of? Slim Dusty 10.159 formula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell "Dan Turèll") (name fb:en.loulou_de_la_falaise "Loulou de la Falaise") (name fb:en.cseh_tamas "Cseh Tamás") (name fb:en.cella_cruz "Celia Cruz") (name fb:en.edith_piaf "Édith Piaf") (name fb:en.slim_dusty "Slim Dusty") (name fb:en.yves_saint-laurent "Yves Saint Laurent") (name fb:en.steve_lacy "Steve Lacy") (name fb:en.alma_cogan "Alma Cogan") (name fb:en.marc_jarre "Maurice Jarre"))) (type fb:people.deceased_person) what cancer did jackie kennedy die of? Yves Saint Laurent 10.159 formula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell "Dan Turèll") (name fb:en.loulou_de_la_falaise "Loulou de la Falaise") (name fb:en.cseh_tamas "Cseh Tamás") (name fb:en.cella_cruz "Celia Cruz") (name fb:en.edith_piaf "Édith Piaf") (name fb:en.slim_dusty "Slim Dusty") (name fb:en.yves_saint-laurent "Yves Saint Laurent") (name fb:en.steve_lacy "Steve Lacy") (name fb:en.alma_cogan "Alma Cogan") (name fb:en.marc_jarre "Maurice Jarre"))) (type fb:people.deceased_person) what cancer did jackie kennedy die of? Steve Lacy 10.159 formula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell "Dan Turèll") (name fb:en.loulou_de_la_falaise "Loulou de la Falaise") (name fb:en.cseh_tamas "Cseh Tamás") (name fb:en.cella_cruz "Celia Cruz") (name fb:en.edith_piaf "Édith Piaf") (name fb:en.slim_dusty "Slim Dusty") (name fb:en.yves_saint-laurent "Yves Saint Laurent") (name fb:en.steve_lacy "Steve Lacy") (name fb:en.alma_cogan "Alma Cogan") (name fb:en.marc_jarre "Maurice Jarre"))) (type fb:people.deceased_person) what cancer did jackie kennedy die of? Alma Cogan 10.159 formula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell "Dan Turèll") (name fb:en.loulou_de_la_falaise "Loulou de la Falaise") (name fb:en.cseh_tamas "Cseh Tamás") (name fb:en.cella_cruz "Celia Cruz") (name fb:en.edith_piaf "Édith Piaf") (name fb:en.slim_dusty "Slim Dusty") (name fb:en.yves_saint-laurent "Yves Saint Laurent") (name fb:en.steve_lacy "Steve Lacy") (name fb:en.alma_cogan "Alma Cogan") (name fb:en.marc_jarre "Maurice Jarre"))) (type fb:people.deceased_person) what cancer did jackie kennedy die of? Maurice Jarre 10.159 formula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell "Dan Turèll") (name fb:en.loulou_de_la_falaise "Loulou de la Falaise") (name fb:en.cseh_tamas "Cseh Tamás") (name fb:en.cella_cruz "Celia Cruz") (name fb:en.edith_piaf "Édith Piaf") (name fb:en.slim_dusty "Slim Dusty") (name fb:en.yves_saint-laurent "Yves Saint Laurent") (name fb:en.steve_lacy "Steve Lacy") (name fb:en.alma_cogan "Alma Cogan") (name fb:en.marc_jarre "Maurice Jarre"))) (type fb:people.deceased_person) what time zone is pennsylvania in right now? Eastern Time Zone 25.255 formula (and (fb:type.object.type fb:time.time_zone) (fb:time.time_zone.locations_in_this_time_zone fb:en.pennsylvania))) (value (list (name fb:en.north_american_eastern_time_zone "Eastern Time Zone") (name fb:en.utc-5 UTC-5))) (type (union fb:time.time_zone)) where is tupac from originally? Las Vegas 3.651 formula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.tupac_shakur))) (value (list (name fb:en.las_vegas "Las Vegas") (name fb:en.los_angeles "Los Angeles") (name fb:en.new_york_county Manhattan) (name fb:en.marin_city "Marin City"))) (type fb:location.location) where is tupac from originally? Los Angeles 3.651 formula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.tupac_shakur))) (value (list (name fb:en.las_vegas "Las Vegas") (name fb:en.los_angeles "Los Angeles") (name fb:en.new_york_county Manhattan) (name fb:en.marin_city "Marin City"))) (type fb:location.location) where is tupac from originally? Marin City 3.651 formula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.tupac_shakur))) (value (list (name fb:en.las_vegas "Las Vegas") (name fb:en.los_angeles "Los Angeles") (name fb:en.new_york_county Manhattan) (name fb:en.marin_city "Marin City"))) (type fb:location.location) what role did george lucas play in star wars? Chief Executive Officer 11.751 formula ((lambda x (!fb:organization.leadership.role (!fb:business.board_member.leader_of (var x)))) fb:en.george_lucas)) (value (list (name fb:en.chief_executive_officer "Chief Executive Officer"))) (type fb:organization.role) what sarah dessen books are movies? That Summer 5.953 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.sarah_dessen))) (value (list (name fb:en.that_summer "That Summer") (name fb:en.how_to_deal_movie_tie_in "How to Deal movie tie-in") (name fb:m.02rms6w "Just Listen") (name fb:m.0572jtj "Along for the Ride") (name fb:m.0f0r9x "Someone like You") (name fb:m.04t1t8w "Someone Like You / Keeping the Moon Flip Book") (name fb:en.keeping_the_moon "Keeping the Moon") (name fb:m.0421t07 "Lock and Key") (name fb:m.0j7j4v_ "What Happened to Goodbye") (name fb:en.this_lullaby "This Lullaby"))) (type (union fb:book.book)) what sarah dessen books are movies? How to Deal movie tie-in 5.953 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.sarah_dessen))) (value (list (name fb:en.that_summer "That Summer") (name fb:en.how_to_deal_movie_tie_in "How to Deal movie tie-in") (name fb:m.02rms6w "Just Listen") (name fb:m.0572jtj "Along for the Ride") (name fb:m.0f0r9x "Someone like You") (name fb:m.04t1t8w "Someone Like You / Keeping the Moon Flip Book") (name fb:en.keeping_the_moon "Keeping the Moon") (name fb:m.0421t07 "Lock and Key") (name fb:m.0j7j4v_ "What Happened to Goodbye") (name fb:en.this_lullaby "This Lullaby"))) (type (union fb:book.book)) what sarah dessen books are movies? Just Listen 5.953 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.sarah_dessen))) (value (list (name fb:en.that_summer "That Summer") (name fb:en.how_to_deal_movie_tie_in "How to Deal movie tie-in") (name fb:m.02rms6w "Just Listen") (name fb:m.0572jtj "Along for the Ride") (name fb:m.0f0r9x "Someone like You") (name fb:m.04t1t8w "Someone Like You / Keeping the Moon Flip Book") (name fb:en.keeping_the_moon "Keeping the Moon") (name fb:m.0421t07 "Lock and Key") (name fb:m.0j7j4v_ "What Happened to Goodbye") (name fb:en.this_lullaby "This Lullaby"))) (type (union fb:book.book)) what sarah dessen books are movies? Along for the Ride 5.953 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.sarah_dessen))) (value (list (name fb:en.that_summer "That Summer") (name fb:en.how_to_deal_movie_tie_in "How to Deal movie tie-in") (name fb:m.02rms6w "Just Listen") (name fb:m.0572jtj "Along for the Ride") (name fb:m.0f0r9x "Someone like You") (name fb:m.04t1t8w "Someone Like You / Keeping the Moon Flip Book") (name fb:en.keeping_the_moon "Keeping the Moon") (name fb:m.0421t07 "Lock and Key") (name fb:m.0j7j4v_ "What Happened to Goodbye") (name fb:en.this_lullaby "This Lullaby"))) (type (union fb:book.book)) what sarah dessen books are movies? Someone like You 5.953 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.sarah_dessen))) (value (list (name fb:en.that_summer "That Summer") (name fb:en.how_to_deal_movie_tie_in "How to Deal movie tie-in") (name fb:m.02rms6w "Just Listen") (name fb:m.0572jtj "Along for the Ride") (name fb:m.0f0r9x "Someone like You") (name fb:m.04t1t8w "Someone Like You / Keeping the Moon Flip Book") (name fb:en.keeping_the_moon "Keeping the Moon") (name fb:m.0421t07 "Lock and Key") (name fb:m.0j7j4v_ "What Happened to Goodbye") (name fb:en.this_lullaby "This Lullaby"))) (type (union fb:book.book)) what sarah dessen books are movies? Someone Like You / Keeping the Moon Flip Book 5.953 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.sarah_dessen))) (value (list (name fb:en.that_summer "That Summer") (name fb:en.how_to_deal_movie_tie_in "How to Deal movie tie-in") (name fb:m.02rms6w "Just Listen") (name fb:m.0572jtj "Along for the Ride") (name fb:m.0f0r9x "Someone like You") (name fb:m.04t1t8w "Someone Like You / Keeping the Moon Flip Book") (name fb:en.keeping_the_moon "Keeping the Moon") (name fb:m.0421t07 "Lock and Key") (name fb:m.0j7j4v_ "What Happened to Goodbye") (name fb:en.this_lullaby "This Lullaby"))) (type (union fb:book.book)) what sarah dessen books are movies? Keeping the Moon 5.953 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.sarah_dessen))) (value (list (name fb:en.that_summer "That Summer") (name fb:en.how_to_deal_movie_tie_in "How to Deal movie tie-in") (name fb:m.02rms6w "Just Listen") (name fb:m.0572jtj "Along for the Ride") (name fb:m.0f0r9x "Someone like You") (name fb:m.04t1t8w "Someone Like You / Keeping the Moon Flip Book") (name fb:en.keeping_the_moon "Keeping the Moon") (name fb:m.0421t07 "Lock and Key") (name fb:m.0j7j4v_ "What Happened to Goodbye") (name fb:en.this_lullaby "This Lullaby"))) (type (union fb:book.book)) what sarah dessen books are movies? Lock and Key 5.953 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.sarah_dessen))) (value (list (name fb:en.that_summer "That Summer") (name fb:en.how_to_deal_movie_tie_in "How to Deal movie tie-in") (name fb:m.02rms6w "Just Listen") (name fb:m.0572jtj "Along for the Ride") (name fb:m.0f0r9x "Someone like You") (name fb:m.04t1t8w "Someone Like You / Keeping the Moon Flip Book") (name fb:en.keeping_the_moon "Keeping the Moon") (name fb:m.0421t07 "Lock and Key") (name fb:m.0j7j4v_ "What Happened to Goodbye") (name fb:en.this_lullaby "This Lullaby"))) (type (union fb:book.book)) what sarah dessen books are movies? What Happened to Goodbye 5.953 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.sarah_dessen))) (value (list (name fb:en.that_summer "That Summer") (name fb:en.how_to_deal_movie_tie_in "How to Deal movie tie-in") (name fb:m.02rms6w "Just Listen") (name fb:m.0572jtj "Along for the Ride") (name fb:m.0f0r9x "Someone like You") (name fb:m.04t1t8w "Someone Like You / Keeping the Moon Flip Book") (name fb:en.keeping_the_moon "Keeping the Moon") (name fb:m.0421t07 "Lock and Key") (name fb:m.0j7j4v_ "What Happened to Goodbye") (name fb:en.this_lullaby "This Lullaby"))) (type (union fb:book.book)) what sarah dessen books are movies? This Lullaby 5.953 formula (and (fb:type.object.type fb:book.book) (!fb:book.author.works_written fb:en.sarah_dessen))) (value (list (name fb:en.that_summer "That Summer") (name fb:en.how_to_deal_movie_tie_in "How to Deal movie tie-in") (name fb:m.02rms6w "Just Listen") (name fb:m.0572jtj "Along for the Ride") (name fb:m.0f0r9x "Someone like You") (name fb:m.04t1t8w "Someone Like You / Keeping the Moon Flip Book") (name fb:en.keeping_the_moon "Keeping the Moon") (name fb:m.0421t07 "Lock and Key") (name fb:m.0j7j4v_ "What Happened to Goodbye") (name fb:en.this_lullaby "This Lullaby"))) (type (union fb:book.book)) what is the current time in kauai hawaii? Hawaii–Aleutian Time Zone 8.771 formula (!fb:location.location.time_zones fb:en.kauai)) (value (list (name fb:en.hawaii-aleutian_time_zone "Hawaii–Aleutian Time Zone") (name fb:en.utc-10 UTC−10:00))) (type fb:time.time_zone) what did dmitri mendeleev discover in 1869? Periodic Table 10.53 formula (fb:law.invention.inventor fb:en.dmitri_mendeleev)) (value (list (name fb:en.periodic_table "Periodic Table") (name fb:en.pyrocollodion Pyrocollodion) (name fb:en.pycnometer Pycnometer))) (type fb:law.invention) where was farrah fawcett buried? Westwood Village Memorial Park Cemetery 9.509 formula (and (fb:type.object.type fb:location.location) (fb:people.place_of_interment.interred_here fb:en.farrah_fawcett))) (value (list (name fb:en.westwood_village_memorial_park_cemetery "Westwood Village Memorial Park Cemetery"))) (type fb:people.place_of_interment) what are the colonies of great britain? Workers' Weekly 9.454 formula (fb:book.newspaper.circulation_areas fb:en.great_britain)) (value (list (name fb:en.workers_weekly "Workers' Weekly"))) (type fb:book.newspaper) what kind of government does cuba have today? Unitary state 12.681 formula (!fb:location.country.form_of_government fb:en.cuba)) (value (list (name fb:en.unitary_state "Unitary state") (name fb:en.republic Republic) (name fb:en.socialist_state "Socialist state") (name fb:en.semi-presidential_system "Semi-presidential system"))) (type fb:government.form_of_government) what kind of government does cuba have today? Socialist state 12.681 formula (!fb:location.country.form_of_government fb:en.cuba)) (value (list (name fb:en.unitary_state "Unitary state") (name fb:en.republic Republic) (name fb:en.socialist_state "Socialist state") (name fb:en.semi-presidential_system "Semi-presidential system"))) (type fb:government.form_of_government) what kind of government does cuba have today? Semi-presidential system 12.681 formula (!fb:location.country.form_of_government fb:en.cuba)) (value (list (name fb:en.unitary_state "Unitary state") (name fb:en.republic Republic) (name fb:en.socialist_state "Socialist state") (name fb:en.semi-presidential_system "Semi-presidential system"))) (type fb:government.form_of_government) where are english speakers distributed? Michigan State University 9.334 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:education.education.institution (!fb:education.field_of_study.students_majoring (var x)))) fb:en.english))) (value (list (name fb:en.michigan_state_university "Michigan State University") (name fb:en.yale_university "Yale University") (name fb:en.university_of_oklahoma "University of Oklahoma") (name fb:en.university_of_virginia "University of Virginia") (name fb:en.wesleyan_university "Wesleyan University") (name fb:en.miami_university "Miami University") (name fb:en.wellesley_college "Wellesley College") (name fb:en.youngstown_state_university "Youngstown State University") (name fb:en.saint_louis_university "Saint Louis University") (name fb:en.montana_state_university_-_bozeman "Montana State University - Bozeman"))) (type fb:education.educational_institution) where are english speakers distributed? Yale University 9.334 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:education.education.institution (!fb:education.field_of_study.students_majoring (var x)))) fb:en.english))) (value (list (name fb:en.michigan_state_university "Michigan State University") (name fb:en.yale_university "Yale University") (name fb:en.university_of_oklahoma "University of Oklahoma") (name fb:en.university_of_virginia "University of Virginia") (name fb:en.wesleyan_university "Wesleyan University") (name fb:en.miami_university "Miami University") (name fb:en.wellesley_college "Wellesley College") (name fb:en.youngstown_state_university "Youngstown State University") (name fb:en.saint_louis_university "Saint Louis University") (name fb:en.montana_state_university_-_bozeman "Montana State University - Bozeman"))) (type fb:education.educational_institution) where are english speakers distributed? University of Oklahoma 9.334 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:education.education.institution (!fb:education.field_of_study.students_majoring (var x)))) fb:en.english))) (value (list (name fb:en.michigan_state_university "Michigan State University") (name fb:en.yale_university "Yale University") (name fb:en.university_of_oklahoma "University of Oklahoma") (name fb:en.university_of_virginia "University of Virginia") (name fb:en.wesleyan_university "Wesleyan University") (name fb:en.miami_university "Miami University") (name fb:en.wellesley_college "Wellesley College") (name fb:en.youngstown_state_university "Youngstown State University") (name fb:en.saint_louis_university "Saint Louis University") (name fb:en.montana_state_university_-_bozeman "Montana State University - Bozeman"))) (type fb:education.educational_institution) where are english speakers distributed? University of Virginia 9.334 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:education.education.institution (!fb:education.field_of_study.students_majoring (var x)))) fb:en.english))) (value (list (name fb:en.michigan_state_university "Michigan State University") (name fb:en.yale_university "Yale University") (name fb:en.university_of_oklahoma "University of Oklahoma") (name fb:en.university_of_virginia "University of Virginia") (name fb:en.wesleyan_university "Wesleyan University") (name fb:en.miami_university "Miami University") (name fb:en.wellesley_college "Wellesley College") (name fb:en.youngstown_state_university "Youngstown State University") (name fb:en.saint_louis_university "Saint Louis University") (name fb:en.montana_state_university_-_bozeman "Montana State University - Bozeman"))) (type fb:education.educational_institution) where are english speakers distributed? Wesleyan University 9.334 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:education.education.institution (!fb:education.field_of_study.students_majoring (var x)))) fb:en.english))) (value (list (name fb:en.michigan_state_university "Michigan State University") (name fb:en.yale_university "Yale University") (name fb:en.university_of_oklahoma "University of Oklahoma") (name fb:en.university_of_virginia "University of Virginia") (name fb:en.wesleyan_university "Wesleyan University") (name fb:en.miami_university "Miami University") (name fb:en.wellesley_college "Wellesley College") (name fb:en.youngstown_state_university "Youngstown State University") (name fb:en.saint_louis_university "Saint Louis University") (name fb:en.montana_state_university_-_bozeman "Montana State University - Bozeman"))) (type fb:education.educational_institution) where are english speakers distributed? Miami University 9.334 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:education.education.institution (!fb:education.field_of_study.students_majoring (var x)))) fb:en.english))) (value (list (name fb:en.michigan_state_university "Michigan State University") (name fb:en.yale_university "Yale University") (name fb:en.university_of_oklahoma "University of Oklahoma") (name fb:en.university_of_virginia "University of Virginia") (name fb:en.wesleyan_university "Wesleyan University") (name fb:en.miami_university "Miami University") (name fb:en.wellesley_college "Wellesley College") (name fb:en.youngstown_state_university "Youngstown State University") (name fb:en.saint_louis_university "Saint Louis University") (name fb:en.montana_state_university_-_bozeman "Montana State University - Bozeman"))) (type fb:education.educational_institution) where are english speakers distributed? Wellesley College 9.334 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:education.education.institution (!fb:education.field_of_study.students_majoring (var x)))) fb:en.english))) (value (list (name fb:en.michigan_state_university "Michigan State University") (name fb:en.yale_university "Yale University") (name fb:en.university_of_oklahoma "University of Oklahoma") (name fb:en.university_of_virginia "University of Virginia") (name fb:en.wesleyan_university "Wesleyan University") (name fb:en.miami_university "Miami University") (name fb:en.wellesley_college "Wellesley College") (name fb:en.youngstown_state_university "Youngstown State University") (name fb:en.saint_louis_university "Saint Louis University") (name fb:en.montana_state_university_-_bozeman "Montana State University - Bozeman"))) (type fb:education.educational_institution) where are english speakers distributed? Youngstown State University 9.334 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:education.education.institution (!fb:education.field_of_study.students_majoring (var x)))) fb:en.english))) (value (list (name fb:en.michigan_state_university "Michigan State University") (name fb:en.yale_university "Yale University") (name fb:en.university_of_oklahoma "University of Oklahoma") (name fb:en.university_of_virginia "University of Virginia") (name fb:en.wesleyan_university "Wesleyan University") (name fb:en.miami_university "Miami University") (name fb:en.wellesley_college "Wellesley College") (name fb:en.youngstown_state_university "Youngstown State University") (name fb:en.saint_louis_university "Saint Louis University") (name fb:en.montana_state_university_-_bozeman "Montana State University - Bozeman"))) (type fb:education.educational_institution) where are english speakers distributed? Saint Louis University 9.334 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:education.education.institution (!fb:education.field_of_study.students_majoring (var x)))) fb:en.english))) (value (list (name fb:en.michigan_state_university "Michigan State University") (name fb:en.yale_university "Yale University") (name fb:en.university_of_oklahoma "University of Oklahoma") (name fb:en.university_of_virginia "University of Virginia") (name fb:en.wesleyan_university "Wesleyan University") (name fb:en.miami_university "Miami University") (name fb:en.wellesley_college "Wellesley College") (name fb:en.youngstown_state_university "Youngstown State University") (name fb:en.saint_louis_university "Saint Louis University") (name fb:en.montana_state_university_-_bozeman "Montana State University - Bozeman"))) (type fb:education.educational_institution) where are english speakers distributed? Montana State University - Bozeman 9.334 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (!fb:education.education.institution (!fb:education.field_of_study.students_majoring (var x)))) fb:en.english))) (value (list (name fb:en.michigan_state_university "Michigan State University") (name fb:en.yale_university "Yale University") (name fb:en.university_of_oklahoma "University of Oklahoma") (name fb:en.university_of_virginia "University of Virginia") (name fb:en.wesleyan_university "Wesleyan University") (name fb:en.miami_university "Miami University") (name fb:en.wellesley_college "Wellesley College") (name fb:en.youngstown_state_university "Youngstown State University") (name fb:en.saint_louis_university "Saint Louis University") (name fb:en.montana_state_university_-_bozeman "Montana State University - Bozeman"))) (type fb:education.educational_institution) what was george washington's legacy? United States Military Academy 6.456 formula (!fb:organization.organization_founder.organizations_founded fb:en.george_washington)) (value (list (name fb:en.united_states_military_academy "United States Military Academy") (name fb:en.continental_army "Continental Army") (name fb:en.united_states_army_corps_of_engineers "United States Army Corps of Engineers") (name fb:en.society_of_the_cincinnati "Society of the Cincinnati") (name fb:en.culper_ring "Culper Ring"))) (type fb:organization.organization) what was george washington's legacy? Continental Army 6.456 formula (!fb:organization.organization_founder.organizations_founded fb:en.george_washington)) (value (list (name fb:en.united_states_military_academy "United States Military Academy") (name fb:en.continental_army "Continental Army") (name fb:en.united_states_army_corps_of_engineers "United States Army Corps of Engineers") (name fb:en.society_of_the_cincinnati "Society of the Cincinnati") (name fb:en.culper_ring "Culper Ring"))) (type fb:organization.organization) what was george washington's legacy? United States Army Corps of Engineers 6.456 formula (!fb:organization.organization_founder.organizations_founded fb:en.george_washington)) (value (list (name fb:en.united_states_military_academy "United States Military Academy") (name fb:en.continental_army "Continental Army") (name fb:en.united_states_army_corps_of_engineers "United States Army Corps of Engineers") (name fb:en.society_of_the_cincinnati "Society of the Cincinnati") (name fb:en.culper_ring "Culper Ring"))) (type fb:organization.organization) what was george washington's legacy? Society of the Cincinnati 6.456 formula (!fb:organization.organization_founder.organizations_founded fb:en.george_washington)) (value (list (name fb:en.united_states_military_academy "United States Military Academy") (name fb:en.continental_army "Continental Army") (name fb:en.united_states_army_corps_of_engineers "United States Army Corps of Engineers") (name fb:en.society_of_the_cincinnati "Society of the Cincinnati") (name fb:en.culper_ring "Culper Ring"))) (type fb:organization.organization) what was george washington's legacy? Culper Ring 6.456 formula (!fb:organization.organization_founder.organizations_founded fb:en.george_washington)) (value (list (name fb:en.united_states_military_academy "United States Military Academy") (name fb:en.continental_army "Continental Army") (name fb:en.united_states_army_corps_of_engineers "United States Army Corps of Engineers") (name fb:en.society_of_the_cincinnati "Society of the Cincinnati") (name fb:en.culper_ring "Culper Ring"))) (type fb:organization.organization) who was dan white? Carbon monoxide poisoning 1.101 formula (fb:people.cause_of_death.people fb:en.dan_white)) (value (list (name fb:en.suicide Suicide) (name fb:en.carbon_monoxide_poisoning "Carbon monoxide poisoning"))) (type fb:people.cause_of_death) what language do people speak in the bahamas? English Language 11.381 formula (and (fb:type.object.type fb:language.human_language) (fb:language.human_language.countries_spoken_in fb:en.the_bahamas))) (value (list (name fb:en.english "English Language") (name fb:en.bahamian_dialect "Bahamas Creole English Language"))) (type fb:language.human_language) what language do people speak in the bahamas? Bahamas Creole English Language 11.381 formula (and (fb:type.object.type fb:language.human_language) (fb:language.human_language.countries_spoken_in fb:en.the_bahamas))) (value (list (name fb:en.english "English Language") (name fb:en.bahamian_dialect "Bahamas Creole English Language"))) (type fb:language.human_language) where did george michael go to school? Bushey Meads School 10.951 formula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.george_michael)))) (value (list (name fb:en.bushey_meads_school "Bushey Meads School"))) (type fb:education.educational_institution) what team did jeremy lin go to? Houston Rockets 16.432 formula ((lambda x (!fb:basketball.basketball_roster_position.team (!fb:basketball.basketball_player.team (var x)))) fb:en.jeremy_lin)) (value (list (name fb:en.houston_rockets "Houston Rockets"))) (type fb:basketball.basketball_team) what club does cristiano ronaldo play for in 2010? Portugal national football team 18.312 formula (and (fb:type.object.type fb:soccer.football_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo))) (value (list (name fb:en.portugal_national_football_team "Portugal national football team") (name fb:en.sporting_clube_de_portugal "Sporting Clube de Portugal") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.real_madrid "Real Madrid C.F."))) (type fb:soccer.football_team) what club does cristiano ronaldo play for in 2010? Sporting Clube de Portugal 18.312 formula (and (fb:type.object.type fb:soccer.football_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo))) (value (list (name fb:en.portugal_national_football_team "Portugal national football team") (name fb:en.sporting_clube_de_portugal "Sporting Clube de Portugal") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.real_madrid "Real Madrid C.F."))) (type fb:soccer.football_team) what club does cristiano ronaldo play for in 2010? Manchester United F.C. 18.312 formula (and (fb:type.object.type fb:soccer.football_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo))) (value (list (name fb:en.portugal_national_football_team "Portugal national football team") (name fb:en.sporting_clube_de_portugal "Sporting Clube de Portugal") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.real_madrid "Real Madrid C.F."))) (type fb:soccer.football_team) what club does cristiano ronaldo play for in 2010? Real Madrid C.F. 18.312 formula (and (fb:type.object.type fb:soccer.football_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo))) (value (list (name fb:en.portugal_national_football_team "Portugal national football team") (name fb:en.sporting_clube_de_portugal "Sporting Clube de Portugal") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.real_madrid "Real Madrid C.F."))) (type fb:soccer.football_team) what time zone is in the bahamas? Eastern Time Zone 20.053 formula (and (fb:type.object.type fb:time.time_zone) (fb:time.time_zone.locations_in_this_time_zone fb:en.cat_island))) (value (list (name fb:en.north_american_eastern_time_zone "Eastern Time Zone") (name fb:en.utc-5 UTC-5))) (type (union fb:time.time_zone)) where did african american slaves come from? United States of America 4.042 formula (and (fb:type.object.type fb:location.location) (!fb:people.ethnicity.geographic_distribution fb:en.african_american))) (value (list (name fb:en.united_states_of_america "United States of America"))) (type fb:location.location) what language do people speak in brazil? Portuguese Language 12.949 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.brazil))) (value (list (name fb:en.portuguese "Portuguese Language"))) (type (union fb:language.human_language)) who influenced samuel taylor coleridge? Ralph Waldo Emerson 9.661 formula (fb:influence.influence_node.influenced_by fb:en.samuel_taylor_coleridge)) (value (list (name fb:en.ralph_waldo_emerson "Ralph Waldo Emerson") (name fb:en.william_wordsworth "William Wordsworth") (name fb:en.william_hazlitt "William Hazlitt") (name fb:en.john_stuart_mill "John Stuart Mill") (name fb:en.mary_shelley "Mary Shelley") (name fb:en.sheridan_le_fanu "Sheridan Le Fanu") (name fb:en.robert_pinsky "Robert Pinsky") (name fb:en.robert_southey "Robert Southey") (name fb:en.walter_lowenfels "Walter Lowenfels") (name fb:en.theodore_parker "Theodore Parker"))) (type fb:influence.influence_node) who influenced samuel taylor coleridge? William Wordsworth 9.661 formula (fb:influence.influence_node.influenced_by fb:en.samuel_taylor_coleridge)) (value (list (name fb:en.ralph_waldo_emerson "Ralph Waldo Emerson") (name fb:en.william_wordsworth "William Wordsworth") (name fb:en.william_hazlitt "William Hazlitt") (name fb:en.john_stuart_mill "John Stuart Mill") (name fb:en.mary_shelley "Mary Shelley") (name fb:en.sheridan_le_fanu "Sheridan Le Fanu") (name fb:en.robert_pinsky "Robert Pinsky") (name fb:en.robert_southey "Robert Southey") (name fb:en.walter_lowenfels "Walter Lowenfels") (name fb:en.theodore_parker "Theodore Parker"))) (type fb:influence.influence_node) who influenced samuel taylor coleridge? William Hazlitt 9.661 formula (fb:influence.influence_node.influenced_by fb:en.samuel_taylor_coleridge)) (value (list (name fb:en.ralph_waldo_emerson "Ralph Waldo Emerson") (name fb:en.william_wordsworth "William Wordsworth") (name fb:en.william_hazlitt "William Hazlitt") (name fb:en.john_stuart_mill "John Stuart Mill") (name fb:en.mary_shelley "Mary Shelley") (name fb:en.sheridan_le_fanu "Sheridan Le Fanu") (name fb:en.robert_pinsky "Robert Pinsky") (name fb:en.robert_southey "Robert Southey") (name fb:en.walter_lowenfels "Walter Lowenfels") (name fb:en.theodore_parker "Theodore Parker"))) (type fb:influence.influence_node) who influenced samuel taylor coleridge? John Stuart Mill 9.661 formula (fb:influence.influence_node.influenced_by fb:en.samuel_taylor_coleridge)) (value (list (name fb:en.ralph_waldo_emerson "Ralph Waldo Emerson") (name fb:en.william_wordsworth "William Wordsworth") (name fb:en.william_hazlitt "William Hazlitt") (name fb:en.john_stuart_mill "John Stuart Mill") (name fb:en.mary_shelley "Mary Shelley") (name fb:en.sheridan_le_fanu "Sheridan Le Fanu") (name fb:en.robert_pinsky "Robert Pinsky") (name fb:en.robert_southey "Robert Southey") (name fb:en.walter_lowenfels "Walter Lowenfels") (name fb:en.theodore_parker "Theodore Parker"))) (type fb:influence.influence_node) who influenced samuel taylor coleridge? Mary Shelley 9.661 formula (fb:influence.influence_node.influenced_by fb:en.samuel_taylor_coleridge)) (value (list (name fb:en.ralph_waldo_emerson "Ralph Waldo Emerson") (name fb:en.william_wordsworth "William Wordsworth") (name fb:en.william_hazlitt "William Hazlitt") (name fb:en.john_stuart_mill "John Stuart Mill") (name fb:en.mary_shelley "Mary Shelley") (name fb:en.sheridan_le_fanu "Sheridan Le Fanu") (name fb:en.robert_pinsky "Robert Pinsky") (name fb:en.robert_southey "Robert Southey") (name fb:en.walter_lowenfels "Walter Lowenfels") (name fb:en.theodore_parker "Theodore Parker"))) (type fb:influence.influence_node) who influenced samuel taylor coleridge? Sheridan Le Fanu 9.661 formula (fb:influence.influence_node.influenced_by fb:en.samuel_taylor_coleridge)) (value (list (name fb:en.ralph_waldo_emerson "Ralph Waldo Emerson") (name fb:en.william_wordsworth "William Wordsworth") (name fb:en.william_hazlitt "William Hazlitt") (name fb:en.john_stuart_mill "John Stuart Mill") (name fb:en.mary_shelley "Mary Shelley") (name fb:en.sheridan_le_fanu "Sheridan Le Fanu") (name fb:en.robert_pinsky "Robert Pinsky") (name fb:en.robert_southey "Robert Southey") (name fb:en.walter_lowenfels "Walter Lowenfels") (name fb:en.theodore_parker "Theodore Parker"))) (type fb:influence.influence_node) who influenced samuel taylor coleridge? Robert Pinsky 9.661 formula (fb:influence.influence_node.influenced_by fb:en.samuel_taylor_coleridge)) (value (list (name fb:en.ralph_waldo_emerson "Ralph Waldo Emerson") (name fb:en.william_wordsworth "William Wordsworth") (name fb:en.william_hazlitt "William Hazlitt") (name fb:en.john_stuart_mill "John Stuart Mill") (name fb:en.mary_shelley "Mary Shelley") (name fb:en.sheridan_le_fanu "Sheridan Le Fanu") (name fb:en.robert_pinsky "Robert Pinsky") (name fb:en.robert_southey "Robert Southey") (name fb:en.walter_lowenfels "Walter Lowenfels") (name fb:en.theodore_parker "Theodore Parker"))) (type fb:influence.influence_node) who influenced samuel taylor coleridge? Robert Southey 9.661 formula (fb:influence.influence_node.influenced_by fb:en.samuel_taylor_coleridge)) (value (list (name fb:en.ralph_waldo_emerson "Ralph Waldo Emerson") (name fb:en.william_wordsworth "William Wordsworth") (name fb:en.william_hazlitt "William Hazlitt") (name fb:en.john_stuart_mill "John Stuart Mill") (name fb:en.mary_shelley "Mary Shelley") (name fb:en.sheridan_le_fanu "Sheridan Le Fanu") (name fb:en.robert_pinsky "Robert Pinsky") (name fb:en.robert_southey "Robert Southey") (name fb:en.walter_lowenfels "Walter Lowenfels") (name fb:en.theodore_parker "Theodore Parker"))) (type fb:influence.influence_node) who influenced samuel taylor coleridge? Walter Lowenfels 9.661 formula (fb:influence.influence_node.influenced_by fb:en.samuel_taylor_coleridge)) (value (list (name fb:en.ralph_waldo_emerson "Ralph Waldo Emerson") (name fb:en.william_wordsworth "William Wordsworth") (name fb:en.william_hazlitt "William Hazlitt") (name fb:en.john_stuart_mill "John Stuart Mill") (name fb:en.mary_shelley "Mary Shelley") (name fb:en.sheridan_le_fanu "Sheridan Le Fanu") (name fb:en.robert_pinsky "Robert Pinsky") (name fb:en.robert_southey "Robert Southey") (name fb:en.walter_lowenfels "Walter Lowenfels") (name fb:en.theodore_parker "Theodore Parker"))) (type fb:influence.influence_node) who influenced samuel taylor coleridge? Theodore Parker 9.661 formula (fb:influence.influence_node.influenced_by fb:en.samuel_taylor_coleridge)) (value (list (name fb:en.ralph_waldo_emerson "Ralph Waldo Emerson") (name fb:en.william_wordsworth "William Wordsworth") (name fb:en.william_hazlitt "William Hazlitt") (name fb:en.john_stuart_mill "John Stuart Mill") (name fb:en.mary_shelley "Mary Shelley") (name fb:en.sheridan_le_fanu "Sheridan Le Fanu") (name fb:en.robert_pinsky "Robert Pinsky") (name fb:en.robert_southey "Robert Southey") (name fb:en.walter_lowenfels "Walter Lowenfels") (name fb:en.theodore_parker "Theodore Parker"))) (type fb:influence.influence_node) what does kim kardashian work as? Disaster Movie 12.041 formula ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.kim_kardashian)) (value (list (name fb:en.disaster_movie "Disaster Movie") (name fb:en.keeping_up_with_the_kardashians "Keeping Up with the Kardashians"))) (type fb:award.award_nominated_work) what does kim kardashian work as? Keeping Up with the Kardashians 12.041 formula ((lambda x (!fb:award.award_nomination.nominated_for (!fb:award.award_nominee.award_nominations (var x)))) fb:en.kim_kardashian)) (value (list (name fb:en.disaster_movie "Disaster Movie") (name fb:en.keeping_up_with_the_kardashians "Keeping Up with the Kardashians"))) (type fb:award.award_nominated_work) where did the mississippi river end? U.S. Route 30 in Illinois 12.29 formula (and (fb:type.object.type fb:location.location) ((lambda x (fb:transportation.road.end1 (fb:transportation.road_starting_point.location (var x)))) fb:en.mississippi_river))) (value (list (name fb:en.u_s_route_30_in_illinois "U.S. Route 30 in Illinois") (name fb:en.u_s_route_40_in_illinois "U.S. Route 40 in Illinois") (name fb:en.tennessee_state_route_21 "Tennessee State Route 21") (name fb:en.illinois_route_136 "Illinois Route 136") (name fb:en.tennessee_state_route_19 "Tennessee State Route 19"))) (type fb:transportation.road) where did the mississippi river end? U.S. Route 40 in Illinois 12.29 formula (and (fb:type.object.type fb:location.location) ((lambda x (fb:transportation.road.end1 (fb:transportation.road_starting_point.location (var x)))) fb:en.mississippi_river))) (value (list (name fb:en.u_s_route_30_in_illinois "U.S. Route 30 in Illinois") (name fb:en.u_s_route_40_in_illinois "U.S. Route 40 in Illinois") (name fb:en.tennessee_state_route_21 "Tennessee State Route 21") (name fb:en.illinois_route_136 "Illinois Route 136") (name fb:en.tennessee_state_route_19 "Tennessee State Route 19"))) (type fb:transportation.road) where did the mississippi river end? Tennessee State Route 21 12.29 formula (and (fb:type.object.type fb:location.location) ((lambda x (fb:transportation.road.end1 (fb:transportation.road_starting_point.location (var x)))) fb:en.mississippi_river))) (value (list (name fb:en.u_s_route_30_in_illinois "U.S. Route 30 in Illinois") (name fb:en.u_s_route_40_in_illinois "U.S. Route 40 in Illinois") (name fb:en.tennessee_state_route_21 "Tennessee State Route 21") (name fb:en.illinois_route_136 "Illinois Route 136") (name fb:en.tennessee_state_route_19 "Tennessee State Route 19"))) (type fb:transportation.road) where did the mississippi river end? Illinois Route 136 12.29 formula (and (fb:type.object.type fb:location.location) ((lambda x (fb:transportation.road.end1 (fb:transportation.road_starting_point.location (var x)))) fb:en.mississippi_river))) (value (list (name fb:en.u_s_route_30_in_illinois "U.S. Route 30 in Illinois") (name fb:en.u_s_route_40_in_illinois "U.S. Route 40 in Illinois") (name fb:en.tennessee_state_route_21 "Tennessee State Route 21") (name fb:en.illinois_route_136 "Illinois Route 136") (name fb:en.tennessee_state_route_19 "Tennessee State Route 19"))) (type fb:transportation.road) where did the mississippi river end? Tennessee State Route 19 12.29 formula (and (fb:type.object.type fb:location.location) ((lambda x (fb:transportation.road.end1 (fb:transportation.road_starting_point.location (var x)))) fb:en.mississippi_river))) (value (list (name fb:en.u_s_route_30_in_illinois "U.S. Route 30 in Illinois") (name fb:en.u_s_route_40_in_illinois "U.S. Route 40 in Illinois") (name fb:en.tennessee_state_route_21 "Tennessee State Route 21") (name fb:en.illinois_route_136 "Illinois Route 136") (name fb:en.tennessee_state_route_19 "Tennessee State Route 19"))) (type fb:transportation.road) who played carlton lassiter on psych? Timothy Omundson 6.261 formula (fb:tv.tv_actor.starring_roles (and (fb:tv.regular_tv_appearance.character fb:en.carlton_lassiter) (fb:tv.regular_tv_appearance.series fb:en.psych)))) (value (list (name fb:en.timothy_omundson "Timothy Omundson"))) (type fb:tv.tv_actor) who is president of israel? Uri Orbach 10.8 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.israel)) (value (list (name fb:en.uri_orbakh "Uri Orbach") (name fb:en.tzipi_livni "Tzipi Livni") (name fb:m.0g9z94d "Naftali Bennett") (name fb:en.yitzhak_rabin "Yitzhak Rabin") (name fb:en.silvan_shalom "Silvan Shalom") (name fb:en.yuval_steinitz "Yuval Steinitz") (name fb:en.david_ben-gurion "David Ben-Gurion") (name fb:en.yair_lapid "Yair Lapid") (name fb:en.moshe_sharett "Moshe Sharett") (name fb:en.eli_yishai "Eli Yishai"))) (type fb:government.politician) who is president of israel? Tzipi Livni 10.8 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.israel)) (value (list (name fb:en.uri_orbakh "Uri Orbach") (name fb:en.tzipi_livni "Tzipi Livni") (name fb:m.0g9z94d "Naftali Bennett") (name fb:en.yitzhak_rabin "Yitzhak Rabin") (name fb:en.silvan_shalom "Silvan Shalom") (name fb:en.yuval_steinitz "Yuval Steinitz") (name fb:en.david_ben-gurion "David Ben-Gurion") (name fb:en.yair_lapid "Yair Lapid") (name fb:en.moshe_sharett "Moshe Sharett") (name fb:en.eli_yishai "Eli Yishai"))) (type fb:government.politician) who is president of israel? Naftali Bennett 10.8 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.israel)) (value (list (name fb:en.uri_orbakh "Uri Orbach") (name fb:en.tzipi_livni "Tzipi Livni") (name fb:m.0g9z94d "Naftali Bennett") (name fb:en.yitzhak_rabin "Yitzhak Rabin") (name fb:en.silvan_shalom "Silvan Shalom") (name fb:en.yuval_steinitz "Yuval Steinitz") (name fb:en.david_ben-gurion "David Ben-Gurion") (name fb:en.yair_lapid "Yair Lapid") (name fb:en.moshe_sharett "Moshe Sharett") (name fb:en.eli_yishai "Eli Yishai"))) (type fb:government.politician) who is president of israel? Yitzhak Rabin 10.8 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.israel)) (value (list (name fb:en.uri_orbakh "Uri Orbach") (name fb:en.tzipi_livni "Tzipi Livni") (name fb:m.0g9z94d "Naftali Bennett") (name fb:en.yitzhak_rabin "Yitzhak Rabin") (name fb:en.silvan_shalom "Silvan Shalom") (name fb:en.yuval_steinitz "Yuval Steinitz") (name fb:en.david_ben-gurion "David Ben-Gurion") (name fb:en.yair_lapid "Yair Lapid") (name fb:en.moshe_sharett "Moshe Sharett") (name fb:en.eli_yishai "Eli Yishai"))) (type fb:government.politician) who is president of israel? Silvan Shalom 10.8 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.israel)) (value (list (name fb:en.uri_orbakh "Uri Orbach") (name fb:en.tzipi_livni "Tzipi Livni") (name fb:m.0g9z94d "Naftali Bennett") (name fb:en.yitzhak_rabin "Yitzhak Rabin") (name fb:en.silvan_shalom "Silvan Shalom") (name fb:en.yuval_steinitz "Yuval Steinitz") (name fb:en.david_ben-gurion "David Ben-Gurion") (name fb:en.yair_lapid "Yair Lapid") (name fb:en.moshe_sharett "Moshe Sharett") (name fb:en.eli_yishai "Eli Yishai"))) (type fb:government.politician) who is president of israel? Yuval Steinitz 10.8 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.israel)) (value (list (name fb:en.uri_orbakh "Uri Orbach") (name fb:en.tzipi_livni "Tzipi Livni") (name fb:m.0g9z94d "Naftali Bennett") (name fb:en.yitzhak_rabin "Yitzhak Rabin") (name fb:en.silvan_shalom "Silvan Shalom") (name fb:en.yuval_steinitz "Yuval Steinitz") (name fb:en.david_ben-gurion "David Ben-Gurion") (name fb:en.yair_lapid "Yair Lapid") (name fb:en.moshe_sharett "Moshe Sharett") (name fb:en.eli_yishai "Eli Yishai"))) (type fb:government.politician) who is president of israel? David Ben-Gurion 10.8 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.israel)) (value (list (name fb:en.uri_orbakh "Uri Orbach") (name fb:en.tzipi_livni "Tzipi Livni") (name fb:m.0g9z94d "Naftali Bennett") (name fb:en.yitzhak_rabin "Yitzhak Rabin") (name fb:en.silvan_shalom "Silvan Shalom") (name fb:en.yuval_steinitz "Yuval Steinitz") (name fb:en.david_ben-gurion "David Ben-Gurion") (name fb:en.yair_lapid "Yair Lapid") (name fb:en.moshe_sharett "Moshe Sharett") (name fb:en.eli_yishai "Eli Yishai"))) (type fb:government.politician) who is president of israel? Yair Lapid 10.8 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.israel)) (value (list (name fb:en.uri_orbakh "Uri Orbach") (name fb:en.tzipi_livni "Tzipi Livni") (name fb:m.0g9z94d "Naftali Bennett") (name fb:en.yitzhak_rabin "Yitzhak Rabin") (name fb:en.silvan_shalom "Silvan Shalom") (name fb:en.yuval_steinitz "Yuval Steinitz") (name fb:en.david_ben-gurion "David Ben-Gurion") (name fb:en.yair_lapid "Yair Lapid") (name fb:en.moshe_sharett "Moshe Sharett") (name fb:en.eli_yishai "Eli Yishai"))) (type fb:government.politician) who is president of israel? Moshe Sharett 10.8 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.israel)) (value (list (name fb:en.uri_orbakh "Uri Orbach") (name fb:en.tzipi_livni "Tzipi Livni") (name fb:m.0g9z94d "Naftali Bennett") (name fb:en.yitzhak_rabin "Yitzhak Rabin") (name fb:en.silvan_shalom "Silvan Shalom") (name fb:en.yuval_steinitz "Yuval Steinitz") (name fb:en.david_ben-gurion "David Ben-Gurion") (name fb:en.yair_lapid "Yair Lapid") (name fb:en.moshe_sharett "Moshe Sharett") (name fb:en.eli_yishai "Eli Yishai"))) (type fb:government.politician) who is president of israel? Eli Yishai 10.8 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.israel)) (value (list (name fb:en.uri_orbakh "Uri Orbach") (name fb:en.tzipi_livni "Tzipi Livni") (name fb:m.0g9z94d "Naftali Bennett") (name fb:en.yitzhak_rabin "Yitzhak Rabin") (name fb:en.silvan_shalom "Silvan Shalom") (name fb:en.yuval_steinitz "Yuval Steinitz") (name fb:en.david_ben-gurion "David Ben-Gurion") (name fb:en.yair_lapid "Yair Lapid") (name fb:en.moshe_sharett "Moshe Sharett") (name fb:en.eli_yishai "Eli Yishai"))) (type fb:government.politician) who plays harley quinn? Hynden Walch 7.362 formula ((lambda x (fb:tv.tv_actor.starring_roles (fb:tv.regular_tv_appearance.character (var x)))) fb:en.harley_quinn)) (value (list (name fb:en.hynden_walch "Hynden Walch") (name fb:en.mia_sara "Mia Sara") (name fb:en.arleen_sorkin "Arleen Sorkin"))) (type fb:tv.tv_actor) who plays harley quinn? Mia Sara 7.362 formula ((lambda x (fb:tv.tv_actor.starring_roles (fb:tv.regular_tv_appearance.character (var x)))) fb:en.harley_quinn)) (value (list (name fb:en.hynden_walch "Hynden Walch") (name fb:en.mia_sara "Mia Sara") (name fb:en.arleen_sorkin "Arleen Sorkin"))) (type fb:tv.tv_actor) who plays harley quinn? Arleen Sorkin 7.362 formula ((lambda x (fb:tv.tv_actor.starring_roles (fb:tv.regular_tv_appearance.character (var x)))) fb:en.harley_quinn)) (value (list (name fb:en.hynden_walch "Hynden Walch") (name fb:en.mia_sara "Mia Sara") (name fb:en.arleen_sorkin "Arleen Sorkin"))) (type fb:tv.tv_actor) what percent of people are overweight in the uk? John Gleeson 8.712 formula ((lambda x (fb:visual_art.art_owner.artworks_owned (fb:visual_art.artwork_owner_relationship.purchase_currency (var x)))) fb:en.uk)) (value (list (name fb:en.john_gleeson "John Gleeson") (name fb:en.andrew_lloyd_webber_art_foundation "Andrew Lloyd Webber Art Foundation") (name fb:en.jonathan_h_kagan "Jonathan H Kagan") (name fb:en.american_numismatic_society "American Numismatic Society") (name fb:en.museum_of_modern_art "Museum of Modern Art") (name fb:en.tate_britain "Tate Gallery, Britain") (name fb:en.national_gallery_london "National Gallery, London") (name fb:en.national_gallery_of_scotland "Scottish National Gallery") (name fb:en.kenneth_thomson_2nd_baron_thomson_of_fleet "Kenneth Thomson, 2nd Baron Thomson of Fleet") (name fb:en.j_paul_getty_museum "J. Paul Getty Museum"))) (type fb:visual_art.art_owner) what percent of people are overweight in the uk? Andrew Lloyd Webber Art Foundation 8.712 formula ((lambda x (fb:visual_art.art_owner.artworks_owned (fb:visual_art.artwork_owner_relationship.purchase_currency (var x)))) fb:en.uk)) (value (list (name fb:en.john_gleeson "John Gleeson") (name fb:en.andrew_lloyd_webber_art_foundation "Andrew Lloyd Webber Art Foundation") (name fb:en.jonathan_h_kagan "Jonathan H Kagan") (name fb:en.american_numismatic_society "American Numismatic Society") (name fb:en.museum_of_modern_art "Museum of Modern Art") (name fb:en.tate_britain "Tate Gallery, Britain") (name fb:en.national_gallery_london "National Gallery, London") (name fb:en.national_gallery_of_scotland "Scottish National Gallery") (name fb:en.kenneth_thomson_2nd_baron_thomson_of_fleet "Kenneth Thomson, 2nd Baron Thomson of Fleet") (name fb:en.j_paul_getty_museum "J. Paul Getty Museum"))) (type fb:visual_art.art_owner) what percent of people are overweight in the uk? Jonathan H Kagan 8.712 formula ((lambda x (fb:visual_art.art_owner.artworks_owned (fb:visual_art.artwork_owner_relationship.purchase_currency (var x)))) fb:en.uk)) (value (list (name fb:en.john_gleeson "John Gleeson") (name fb:en.andrew_lloyd_webber_art_foundation "Andrew Lloyd Webber Art Foundation") (name fb:en.jonathan_h_kagan "Jonathan H Kagan") (name fb:en.american_numismatic_society "American Numismatic Society") (name fb:en.museum_of_modern_art "Museum of Modern Art") (name fb:en.tate_britain "Tate Gallery, Britain") (name fb:en.national_gallery_london "National Gallery, London") (name fb:en.national_gallery_of_scotland "Scottish National Gallery") (name fb:en.kenneth_thomson_2nd_baron_thomson_of_fleet "Kenneth Thomson, 2nd Baron Thomson of Fleet") (name fb:en.j_paul_getty_museum "J. Paul Getty Museum"))) (type fb:visual_art.art_owner) what percent of people are overweight in the uk? American Numismatic Society 8.712 formula ((lambda x (fb:visual_art.art_owner.artworks_owned (fb:visual_art.artwork_owner_relationship.purchase_currency (var x)))) fb:en.uk)) (value (list (name fb:en.john_gleeson "John Gleeson") (name fb:en.andrew_lloyd_webber_art_foundation "Andrew Lloyd Webber Art Foundation") (name fb:en.jonathan_h_kagan "Jonathan H Kagan") (name fb:en.american_numismatic_society "American Numismatic Society") (name fb:en.museum_of_modern_art "Museum of Modern Art") (name fb:en.tate_britain "Tate Gallery, Britain") (name fb:en.national_gallery_london "National Gallery, London") (name fb:en.national_gallery_of_scotland "Scottish National Gallery") (name fb:en.kenneth_thomson_2nd_baron_thomson_of_fleet "Kenneth Thomson, 2nd Baron Thomson of Fleet") (name fb:en.j_paul_getty_museum "J. Paul Getty Museum"))) (type fb:visual_art.art_owner) what percent of people are overweight in the uk? Museum of Modern Art 8.712 formula ((lambda x (fb:visual_art.art_owner.artworks_owned (fb:visual_art.artwork_owner_relationship.purchase_currency (var x)))) fb:en.uk)) (value (list (name fb:en.john_gleeson "John Gleeson") (name fb:en.andrew_lloyd_webber_art_foundation "Andrew Lloyd Webber Art Foundation") (name fb:en.jonathan_h_kagan "Jonathan H Kagan") (name fb:en.american_numismatic_society "American Numismatic Society") (name fb:en.museum_of_modern_art "Museum of Modern Art") (name fb:en.tate_britain "Tate Gallery, Britain") (name fb:en.national_gallery_london "National Gallery, London") (name fb:en.national_gallery_of_scotland "Scottish National Gallery") (name fb:en.kenneth_thomson_2nd_baron_thomson_of_fleet "Kenneth Thomson, 2nd Baron Thomson of Fleet") (name fb:en.j_paul_getty_museum "J. Paul Getty Museum"))) (type fb:visual_art.art_owner) what percent of people are overweight in the uk? Tate Gallery, Britain 8.712 formula ((lambda x (fb:visual_art.art_owner.artworks_owned (fb:visual_art.artwork_owner_relationship.purchase_currency (var x)))) fb:en.uk)) (value (list (name fb:en.john_gleeson "John Gleeson") (name fb:en.andrew_lloyd_webber_art_foundation "Andrew Lloyd Webber Art Foundation") (name fb:en.jonathan_h_kagan "Jonathan H Kagan") (name fb:en.american_numismatic_society "American Numismatic Society") (name fb:en.museum_of_modern_art "Museum of Modern Art") (name fb:en.tate_britain "Tate Gallery, Britain") (name fb:en.national_gallery_london "National Gallery, London") (name fb:en.national_gallery_of_scotland "Scottish National Gallery") (name fb:en.kenneth_thomson_2nd_baron_thomson_of_fleet "Kenneth Thomson, 2nd Baron Thomson of Fleet") (name fb:en.j_paul_getty_museum "J. Paul Getty Museum"))) (type fb:visual_art.art_owner) what percent of people are overweight in the uk? National Gallery, London 8.712 formula ((lambda x (fb:visual_art.art_owner.artworks_owned (fb:visual_art.artwork_owner_relationship.purchase_currency (var x)))) fb:en.uk)) (value (list (name fb:en.john_gleeson "John Gleeson") (name fb:en.andrew_lloyd_webber_art_foundation "Andrew Lloyd Webber Art Foundation") (name fb:en.jonathan_h_kagan "Jonathan H Kagan") (name fb:en.american_numismatic_society "American Numismatic Society") (name fb:en.museum_of_modern_art "Museum of Modern Art") (name fb:en.tate_britain "Tate Gallery, Britain") (name fb:en.national_gallery_london "National Gallery, London") (name fb:en.national_gallery_of_scotland "Scottish National Gallery") (name fb:en.kenneth_thomson_2nd_baron_thomson_of_fleet "Kenneth Thomson, 2nd Baron Thomson of Fleet") (name fb:en.j_paul_getty_museum "J. Paul Getty Museum"))) (type fb:visual_art.art_owner) what percent of people are overweight in the uk? Scottish National Gallery 8.712 formula ((lambda x (fb:visual_art.art_owner.artworks_owned (fb:visual_art.artwork_owner_relationship.purchase_currency (var x)))) fb:en.uk)) (value (list (name fb:en.john_gleeson "John Gleeson") (name fb:en.andrew_lloyd_webber_art_foundation "Andrew Lloyd Webber Art Foundation") (name fb:en.jonathan_h_kagan "Jonathan H Kagan") (name fb:en.american_numismatic_society "American Numismatic Society") (name fb:en.museum_of_modern_art "Museum of Modern Art") (name fb:en.tate_britain "Tate Gallery, Britain") (name fb:en.national_gallery_london "National Gallery, London") (name fb:en.national_gallery_of_scotland "Scottish National Gallery") (name fb:en.kenneth_thomson_2nd_baron_thomson_of_fleet "Kenneth Thomson, 2nd Baron Thomson of Fleet") (name fb:en.j_paul_getty_museum "J. Paul Getty Museum"))) (type fb:visual_art.art_owner) what percent of people are overweight in the uk? Kenneth Thomson, 2nd Baron Thomson of Fleet 8.712 formula ((lambda x (fb:visual_art.art_owner.artworks_owned (fb:visual_art.artwork_owner_relationship.purchase_currency (var x)))) fb:en.uk)) (value (list (name fb:en.john_gleeson "John Gleeson") (name fb:en.andrew_lloyd_webber_art_foundation "Andrew Lloyd Webber Art Foundation") (name fb:en.jonathan_h_kagan "Jonathan H Kagan") (name fb:en.american_numismatic_society "American Numismatic Society") (name fb:en.museum_of_modern_art "Museum of Modern Art") (name fb:en.tate_britain "Tate Gallery, Britain") (name fb:en.national_gallery_london "National Gallery, London") (name fb:en.national_gallery_of_scotland "Scottish National Gallery") (name fb:en.kenneth_thomson_2nd_baron_thomson_of_fleet "Kenneth Thomson, 2nd Baron Thomson of Fleet") (name fb:en.j_paul_getty_museum "J. Paul Getty Museum"))) (type fb:visual_art.art_owner) what percent of people are overweight in the uk? J. Paul Getty Museum 8.712 formula ((lambda x (fb:visual_art.art_owner.artworks_owned (fb:visual_art.artwork_owner_relationship.purchase_currency (var x)))) fb:en.uk)) (value (list (name fb:en.john_gleeson "John Gleeson") (name fb:en.andrew_lloyd_webber_art_foundation "Andrew Lloyd Webber Art Foundation") (name fb:en.jonathan_h_kagan "Jonathan H Kagan") (name fb:en.american_numismatic_society "American Numismatic Society") (name fb:en.museum_of_modern_art "Museum of Modern Art") (name fb:en.tate_britain "Tate Gallery, Britain") (name fb:en.national_gallery_london "National Gallery, London") (name fb:en.national_gallery_of_scotland "Scottish National Gallery") (name fb:en.kenneth_thomson_2nd_baron_thomson_of_fleet "Kenneth Thomson, 2nd Baron Thomson of Fleet") (name fb:en.j_paul_getty_museum "J. Paul Getty Museum"))) (type fb:visual_art.art_owner) who is ruling libya? Abdul Hafiz Ghoga 10.738 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 "Abdul Hafiz Ghoga") (name fb:m.0kvg5wq "Mohammed Ali Salim") (name fb:en.muammar_al-gaddafi "Muammar al-Gaddafi") (name fb:en.mahmud_sulayman_al_maghribi "Mahmud Sulayman al-Maghribi") (name fb:en.abdessalam_jalloud "Abdessalam Jalloud") (name fb:m.0h96pms "Mohammed Magariaf") (name fb:m.0hglttd "Abdurrahim El-Keib") (name fb:en.baghdadi_mahmudi "Baghdadi Mahmudi") (name fb:m.0r3w6t0 "Mohamed Abdelaziz") (name fb:m.0gjbh05 "Ali Tarhouni"))) (type fb:government.politician) who is ruling libya? Mohammed Ali Salim 10.738 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 "Abdul Hafiz Ghoga") (name fb:m.0kvg5wq "Mohammed Ali Salim") (name fb:en.muammar_al-gaddafi "Muammar al-Gaddafi") (name fb:en.mahmud_sulayman_al_maghribi "Mahmud Sulayman al-Maghribi") (name fb:en.abdessalam_jalloud "Abdessalam Jalloud") (name fb:m.0h96pms "Mohammed Magariaf") (name fb:m.0hglttd "Abdurrahim El-Keib") (name fb:en.baghdadi_mahmudi "Baghdadi Mahmudi") (name fb:m.0r3w6t0 "Mohamed Abdelaziz") (name fb:m.0gjbh05 "Ali Tarhouni"))) (type fb:government.politician) who is ruling libya? Muammar al-Gaddafi 10.738 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 "Abdul Hafiz Ghoga") (name fb:m.0kvg5wq "Mohammed Ali Salim") (name fb:en.muammar_al-gaddafi "Muammar al-Gaddafi") (name fb:en.mahmud_sulayman_al_maghribi "Mahmud Sulayman al-Maghribi") (name fb:en.abdessalam_jalloud "Abdessalam Jalloud") (name fb:m.0h96pms "Mohammed Magariaf") (name fb:m.0hglttd "Abdurrahim El-Keib") (name fb:en.baghdadi_mahmudi "Baghdadi Mahmudi") (name fb:m.0r3w6t0 "Mohamed Abdelaziz") (name fb:m.0gjbh05 "Ali Tarhouni"))) (type fb:government.politician) who is ruling libya? Mahmud Sulayman al-Maghribi 10.738 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 "Abdul Hafiz Ghoga") (name fb:m.0kvg5wq "Mohammed Ali Salim") (name fb:en.muammar_al-gaddafi "Muammar al-Gaddafi") (name fb:en.mahmud_sulayman_al_maghribi "Mahmud Sulayman al-Maghribi") (name fb:en.abdessalam_jalloud "Abdessalam Jalloud") (name fb:m.0h96pms "Mohammed Magariaf") (name fb:m.0hglttd "Abdurrahim El-Keib") (name fb:en.baghdadi_mahmudi "Baghdadi Mahmudi") (name fb:m.0r3w6t0 "Mohamed Abdelaziz") (name fb:m.0gjbh05 "Ali Tarhouni"))) (type fb:government.politician) who is ruling libya? Abdessalam Jalloud 10.738 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 "Abdul Hafiz Ghoga") (name fb:m.0kvg5wq "Mohammed Ali Salim") (name fb:en.muammar_al-gaddafi "Muammar al-Gaddafi") (name fb:en.mahmud_sulayman_al_maghribi "Mahmud Sulayman al-Maghribi") (name fb:en.abdessalam_jalloud "Abdessalam Jalloud") (name fb:m.0h96pms "Mohammed Magariaf") (name fb:m.0hglttd "Abdurrahim El-Keib") (name fb:en.baghdadi_mahmudi "Baghdadi Mahmudi") (name fb:m.0r3w6t0 "Mohamed Abdelaziz") (name fb:m.0gjbh05 "Ali Tarhouni"))) (type fb:government.politician) who is ruling libya? Mohammed Magariaf 10.738 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 "Abdul Hafiz Ghoga") (name fb:m.0kvg5wq "Mohammed Ali Salim") (name fb:en.muammar_al-gaddafi "Muammar al-Gaddafi") (name fb:en.mahmud_sulayman_al_maghribi "Mahmud Sulayman al-Maghribi") (name fb:en.abdessalam_jalloud "Abdessalam Jalloud") (name fb:m.0h96pms "Mohammed Magariaf") (name fb:m.0hglttd "Abdurrahim El-Keib") (name fb:en.baghdadi_mahmudi "Baghdadi Mahmudi") (name fb:m.0r3w6t0 "Mohamed Abdelaziz") (name fb:m.0gjbh05 "Ali Tarhouni"))) (type fb:government.politician) who is ruling libya? Abdurrahim El-Keib 10.738 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 "Abdul Hafiz Ghoga") (name fb:m.0kvg5wq "Mohammed Ali Salim") (name fb:en.muammar_al-gaddafi "Muammar al-Gaddafi") (name fb:en.mahmud_sulayman_al_maghribi "Mahmud Sulayman al-Maghribi") (name fb:en.abdessalam_jalloud "Abdessalam Jalloud") (name fb:m.0h96pms "Mohammed Magariaf") (name fb:m.0hglttd "Abdurrahim El-Keib") (name fb:en.baghdadi_mahmudi "Baghdadi Mahmudi") (name fb:m.0r3w6t0 "Mohamed Abdelaziz") (name fb:m.0gjbh05 "Ali Tarhouni"))) (type fb:government.politician) who is ruling libya? Baghdadi Mahmudi 10.738 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 "Abdul Hafiz Ghoga") (name fb:m.0kvg5wq "Mohammed Ali Salim") (name fb:en.muammar_al-gaddafi "Muammar al-Gaddafi") (name fb:en.mahmud_sulayman_al_maghribi "Mahmud Sulayman al-Maghribi") (name fb:en.abdessalam_jalloud "Abdessalam Jalloud") (name fb:m.0h96pms "Mohammed Magariaf") (name fb:m.0hglttd "Abdurrahim El-Keib") (name fb:en.baghdadi_mahmudi "Baghdadi Mahmudi") (name fb:m.0r3w6t0 "Mohamed Abdelaziz") (name fb:m.0gjbh05 "Ali Tarhouni"))) (type fb:government.politician) who is ruling libya? Mohamed Abdelaziz 10.738 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 "Abdul Hafiz Ghoga") (name fb:m.0kvg5wq "Mohammed Ali Salim") (name fb:en.muammar_al-gaddafi "Muammar al-Gaddafi") (name fb:en.mahmud_sulayman_al_maghribi "Mahmud Sulayman al-Maghribi") (name fb:en.abdessalam_jalloud "Abdessalam Jalloud") (name fb:m.0h96pms "Mohammed Magariaf") (name fb:m.0hglttd "Abdurrahim El-Keib") (name fb:en.baghdadi_mahmudi "Baghdadi Mahmudi") (name fb:m.0r3w6t0 "Mohamed Abdelaziz") (name fb:m.0gjbh05 "Ali Tarhouni"))) (type fb:government.politician) who is ruling libya? Ali Tarhouni 10.738 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.libya)) (value (list (name fb:m.0gg5c41 "Abdul Hafiz Ghoga") (name fb:m.0kvg5wq "Mohammed Ali Salim") (name fb:en.muammar_al-gaddafi "Muammar al-Gaddafi") (name fb:en.mahmud_sulayman_al_maghribi "Mahmud Sulayman al-Maghribi") (name fb:en.abdessalam_jalloud "Abdessalam Jalloud") (name fb:m.0h96pms "Mohammed Magariaf") (name fb:m.0hglttd "Abdurrahim El-Keib") (name fb:en.baghdadi_mahmudi "Baghdadi Mahmudi") (name fb:m.0r3w6t0 "Mohamed Abdelaziz") (name fb:m.0gjbh05 "Ali Tarhouni"))) (type fb:government.politician) when does ziva start on ncis? Cote de Pablo 3.038 formula (fb:tv.tv_actor.starring_roles (and (fb:tv.regular_tv_appearance.character fb:en.ziva_david) (fb:tv.regular_tv_appearance.series fb:en.ncis)))) (value (list (name fb:en.cote_de_pablo "Cote de Pablo"))) (type fb:tv.tv_actor) what is the name of the national anthem of canada ( 2 words )? O Canada 14.425 formula ((lambda x (!fb:government.national_anthem_of_a_country.anthem (!fb:location.country.national_anthem (var x)))) fb:en.canada)) (value (list (name fb:en.o_canada "O Canada"))) (type fb:government.national_anthem) what did mark zuckerberg study? Harvard University 7.827 formula ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.mark_zuckerberg)) (value (list (name fb:en.harvard_university "Harvard University") (name fb:en.ardsley_high_school "Ardsley High School") (name fb:en.mercy_college "Mercy College") (name fb:en.phillips_exeter_academy "Phillips Exeter Academy"))) (type fb:education.educational_institution) what did mark zuckerberg study? Ardsley High School 7.827 formula ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.mark_zuckerberg)) (value (list (name fb:en.harvard_university "Harvard University") (name fb:en.ardsley_high_school "Ardsley High School") (name fb:en.mercy_college "Mercy College") (name fb:en.phillips_exeter_academy "Phillips Exeter Academy"))) (type fb:education.educational_institution) what did mark zuckerberg study? Mercy College 7.827 formula ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.mark_zuckerberg)) (value (list (name fb:en.harvard_university "Harvard University") (name fb:en.ardsley_high_school "Ardsley High School") (name fb:en.mercy_college "Mercy College") (name fb:en.phillips_exeter_academy "Phillips Exeter Academy"))) (type fb:education.educational_institution) what did mark zuckerberg study? Phillips Exeter Academy 7.827 formula ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.mark_zuckerberg)) (value (list (name fb:en.harvard_university "Harvard University") (name fb:en.ardsley_high_school "Ardsley High School") (name fb:en.mercy_college "Mercy College") (name fb:en.phillips_exeter_academy "Phillips Exeter Academy"))) (type fb:education.educational_institution) which country was michael jackson born? United States of America 16.651 formula (and (fb:type.object.type fb:location.country) (!fb:people.person.nationality fb:en.michael_jackson))) (value (list (name fb:en.united_states_of_america "United States of America"))) (type fb:location.country) what countries require travel visas for us citizens? United States of America 7.083 formula (and (fb:type.object.type fb:location.country) (!fb:film.film.country fb:m.0h2y9n4))) (value (list (name fb:en.united_states_of_america "United States of America"))) (type (union fb:location.country)) what country was stalin in charge of? United States of America 13.517 formula (and (fb:type.object.type fb:location.country) (!fb:film.film.country fb:m.047nxmg))) (value (list (name fb:en.united_states_of_america "United States of America") (name fb:en.hungary Hungary))) (type (union fb:location.country)) what is monta ellis career high points? Golden State Warriors 2.587 formula ((lambda x (!fb:basketball.basketball_historical_roster_position.team (!fb:basketball.basketball_player.former_teams (var x)))) fb:en.monta_ellis)) (value (list (name fb:en.golden_state_warriors "Golden State Warriors"))) (type fb:basketball.basketball_team) what do the symbols on the nevada flag mean? Mountain Bluebird 19.231 formula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.nevada)) (value (list (name fb:en.mountain_bluebird "Mountain Bluebird") (name fb:en.lahontan_cutthroat_trout "Lahontan cutthroat trout") (name fb:en.single-leaf_pinyon "Single-leaf Pinyon") (name fb:en.desert_tortoise "Desert tortoise") (name fb:m.0hzdmyn "All For Our Country") (name fb:m.05syf8p Sagebrush))) (type fb:location.symbol_of_administrative_division) what do the symbols on the nevada flag mean? Lahontan cutthroat trout 19.231 formula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.nevada)) (value (list (name fb:en.mountain_bluebird "Mountain Bluebird") (name fb:en.lahontan_cutthroat_trout "Lahontan cutthroat trout") (name fb:en.single-leaf_pinyon "Single-leaf Pinyon") (name fb:en.desert_tortoise "Desert tortoise") (name fb:m.0hzdmyn "All For Our Country") (name fb:m.05syf8p Sagebrush))) (type fb:location.symbol_of_administrative_division) what do the symbols on the nevada flag mean? Single-leaf Pinyon 19.231 formula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.nevada)) (value (list (name fb:en.mountain_bluebird "Mountain Bluebird") (name fb:en.lahontan_cutthroat_trout "Lahontan cutthroat trout") (name fb:en.single-leaf_pinyon "Single-leaf Pinyon") (name fb:en.desert_tortoise "Desert tortoise") (name fb:m.0hzdmyn "All For Our Country") (name fb:m.05syf8p Sagebrush))) (type fb:location.symbol_of_administrative_division) what do the symbols on the nevada flag mean? Desert tortoise 19.231 formula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.nevada)) (value (list (name fb:en.mountain_bluebird "Mountain Bluebird") (name fb:en.lahontan_cutthroat_trout "Lahontan cutthroat trout") (name fb:en.single-leaf_pinyon "Single-leaf Pinyon") (name fb:en.desert_tortoise "Desert tortoise") (name fb:m.0hzdmyn "All For Our Country") (name fb:m.05syf8p Sagebrush))) (type fb:location.symbol_of_administrative_division) what do the symbols on the nevada flag mean? All For Our Country 19.231 formula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.nevada)) (value (list (name fb:en.mountain_bluebird "Mountain Bluebird") (name fb:en.lahontan_cutthroat_trout "Lahontan cutthroat trout") (name fb:en.single-leaf_pinyon "Single-leaf Pinyon") (name fb:en.desert_tortoise "Desert tortoise") (name fb:m.0hzdmyn "All For Our Country") (name fb:m.05syf8p Sagebrush))) (type fb:location.symbol_of_administrative_division) what has shannen doherty played in? Friends 'Til the End 8.252 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.shannen_doherty)) (value (list (name fb:en.mallrats Mallrats) (name fb:en.friends_til_the_end "Friends 'Til the End") (name fb:m.0gks9h_ "The Ticket") (name fb:en.category_7_the_end_of_the_world "Category 7: The End of the World") (name fb:en.the_delphi_effect "The Delphi Effect") (name fb:en.heathers Heathers) (name fb:m.0dg3g14 "Almost Dead") (name fb:m.0h063_t Gretl) (name fb:en.satans_school_for_girls "Satan's School for Girls") (name fb:en.blindfold_acts_of_obsession "Blindfold: Acts of Obsession"))) (type fb:film.film) what has shannen doherty played in? The Ticket 8.252 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.shannen_doherty)) (value (list (name fb:en.mallrats Mallrats) (name fb:en.friends_til_the_end "Friends 'Til the End") (name fb:m.0gks9h_ "The Ticket") (name fb:en.category_7_the_end_of_the_world "Category 7: The End of the World") (name fb:en.the_delphi_effect "The Delphi Effect") (name fb:en.heathers Heathers) (name fb:m.0dg3g14 "Almost Dead") (name fb:m.0h063_t Gretl) (name fb:en.satans_school_for_girls "Satan's School for Girls") (name fb:en.blindfold_acts_of_obsession "Blindfold: Acts of Obsession"))) (type fb:film.film) what has shannen doherty played in? Category 7: The End of the World 8.252 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.shannen_doherty)) (value (list (name fb:en.mallrats Mallrats) (name fb:en.friends_til_the_end "Friends 'Til the End") (name fb:m.0gks9h_ "The Ticket") (name fb:en.category_7_the_end_of_the_world "Category 7: The End of the World") (name fb:en.the_delphi_effect "The Delphi Effect") (name fb:en.heathers Heathers) (name fb:m.0dg3g14 "Almost Dead") (name fb:m.0h063_t Gretl) (name fb:en.satans_school_for_girls "Satan's School for Girls") (name fb:en.blindfold_acts_of_obsession "Blindfold: Acts of Obsession"))) (type fb:film.film) what has shannen doherty played in? The Delphi Effect 8.252 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.shannen_doherty)) (value (list (name fb:en.mallrats Mallrats) (name fb:en.friends_til_the_end "Friends 'Til the End") (name fb:m.0gks9h_ "The Ticket") (name fb:en.category_7_the_end_of_the_world "Category 7: The End of the World") (name fb:en.the_delphi_effect "The Delphi Effect") (name fb:en.heathers Heathers) (name fb:m.0dg3g14 "Almost Dead") (name fb:m.0h063_t Gretl) (name fb:en.satans_school_for_girls "Satan's School for Girls") (name fb:en.blindfold_acts_of_obsession "Blindfold: Acts of Obsession"))) (type fb:film.film) what has shannen doherty played in? Almost Dead 8.252 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.shannen_doherty)) (value (list (name fb:en.mallrats Mallrats) (name fb:en.friends_til_the_end "Friends 'Til the End") (name fb:m.0gks9h_ "The Ticket") (name fb:en.category_7_the_end_of_the_world "Category 7: The End of the World") (name fb:en.the_delphi_effect "The Delphi Effect") (name fb:en.heathers Heathers) (name fb:m.0dg3g14 "Almost Dead") (name fb:m.0h063_t Gretl) (name fb:en.satans_school_for_girls "Satan's School for Girls") (name fb:en.blindfold_acts_of_obsession "Blindfold: Acts of Obsession"))) (type fb:film.film) what has shannen doherty played in? Satan's School for Girls 8.252 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.shannen_doherty)) (value (list (name fb:en.mallrats Mallrats) (name fb:en.friends_til_the_end "Friends 'Til the End") (name fb:m.0gks9h_ "The Ticket") (name fb:en.category_7_the_end_of_the_world "Category 7: The End of the World") (name fb:en.the_delphi_effect "The Delphi Effect") (name fb:en.heathers Heathers) (name fb:m.0dg3g14 "Almost Dead") (name fb:m.0h063_t Gretl) (name fb:en.satans_school_for_girls "Satan's School for Girls") (name fb:en.blindfold_acts_of_obsession "Blindfold: Acts of Obsession"))) (type fb:film.film) what has shannen doherty played in? Blindfold: Acts of Obsession 8.252 formula ((lambda x (fb:film.film.starring (fb:film.performance.actor (var x)))) fb:en.shannen_doherty)) (value (list (name fb:en.mallrats Mallrats) (name fb:en.friends_til_the_end "Friends 'Til the End") (name fb:m.0gks9h_ "The Ticket") (name fb:en.category_7_the_end_of_the_world "Category 7: The End of the World") (name fb:en.the_delphi_effect "The Delphi Effect") (name fb:en.heathers Heathers) (name fb:m.0dg3g14 "Almost Dead") (name fb:m.0h063_t Gretl) (name fb:en.satans_school_for_girls "Satan's School for Girls") (name fb:en.blindfold_acts_of_obsession "Blindfold: Acts of Obsession"))) (type fb:film.film) what college did joakim noah? University of Florida 14.245 formula (and (fb:type.object.type fb:education.university) ((lambda x (!fb:sports.sports_league_draft_pick.school (!fb:sports.drafted_athlete.drafted (var x)))) fb:en.joakim_noah))) (value (list (name fb:en.uf "University of Florida"))) (type (union fb:education.university)) when was the last time the red sox won 100 games? 2004 World Series 20.491 formula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.boston_red_sox))) (value (list (name fb:en.2004_world_series "2004 World Series") (name fb:en.2007_world_series "2007 World Series") (name fb:en.1918_world_series "1918 World Series") (name fb:en.1912_world_series "1912 World Series") (name fb:en.1916_world_series "1916 World Series") (name fb:en.1903_world_series "1903 World Series") (name fb:en.1915_world_series "1915 World Series"))) (type fb:sports.sports_championship_event) when was the last time the red sox won 100 games? 2007 World Series 20.491 formula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.boston_red_sox))) (value (list (name fb:en.2004_world_series "2004 World Series") (name fb:en.2007_world_series "2007 World Series") (name fb:en.1918_world_series "1918 World Series") (name fb:en.1912_world_series "1912 World Series") (name fb:en.1916_world_series "1916 World Series") (name fb:en.1903_world_series "1903 World Series") (name fb:en.1915_world_series "1915 World Series"))) (type fb:sports.sports_championship_event) when was the last time the red sox won 100 games? 1918 World Series 20.491 formula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.boston_red_sox))) (value (list (name fb:en.2004_world_series "2004 World Series") (name fb:en.2007_world_series "2007 World Series") (name fb:en.1918_world_series "1918 World Series") (name fb:en.1912_world_series "1912 World Series") (name fb:en.1916_world_series "1916 World Series") (name fb:en.1903_world_series "1903 World Series") (name fb:en.1915_world_series "1915 World Series"))) (type fb:sports.sports_championship_event) when was the last time the red sox won 100 games? 1912 World Series 20.491 formula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.boston_red_sox))) (value (list (name fb:en.2004_world_series "2004 World Series") (name fb:en.2007_world_series "2007 World Series") (name fb:en.1918_world_series "1918 World Series") (name fb:en.1912_world_series "1912 World Series") (name fb:en.1916_world_series "1916 World Series") (name fb:en.1903_world_series "1903 World Series") (name fb:en.1915_world_series "1915 World Series"))) (type fb:sports.sports_championship_event) when was the last time the red sox won 100 games? 1916 World Series 20.491 formula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.boston_red_sox))) (value (list (name fb:en.2004_world_series "2004 World Series") (name fb:en.2007_world_series "2007 World Series") (name fb:en.1918_world_series "1918 World Series") (name fb:en.1912_world_series "1912 World Series") (name fb:en.1916_world_series "1916 World Series") (name fb:en.1903_world_series "1903 World Series") (name fb:en.1915_world_series "1915 World Series"))) (type fb:sports.sports_championship_event) when was the last time the red sox won 100 games? 1903 World Series 20.491 formula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.boston_red_sox))) (value (list (name fb:en.2004_world_series "2004 World Series") (name fb:en.2007_world_series "2007 World Series") (name fb:en.1918_world_series "1918 World Series") (name fb:en.1912_world_series "1912 World Series") (name fb:en.1916_world_series "1916 World Series") (name fb:en.1903_world_series "1903 World Series") (name fb:en.1915_world_series "1915 World Series"))) (type fb:sports.sports_championship_event) when was the last time the red sox won 100 games? 1915 World Series 20.491 formula (and (fb:type.object.type fb:time.event) (fb:sports.sports_championship_event.champion fb:en.boston_red_sox))) (value (list (name fb:en.2004_world_series "2004 World Series") (name fb:en.2007_world_series "2007 World Series") (name fb:en.1918_world_series "1918 World Series") (name fb:en.1912_world_series "1912 World Series") (name fb:en.1916_world_series "1916 World Series") (name fb:en.1903_world_series "1903 World Series") (name fb:en.1915_world_series "1915 World Series"))) (type fb:sports.sports_championship_event) who plays billy elliot? Jamie Bell 5.398 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:m.0by43z3)) (value (list (name fb:en.jamie_bell "Jamie Bell"))) (type fb:film.actor) what team will michael vick play for in 2011? Philadelphia Eagles 18.205 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.michael_vick))) (value (list (name fb:en.philadelphia_eagles "Philadelphia Eagles") (name fb:en.virginia_tech_hokies_football "Virginia Tech Hokies football") (name fb:en.atlanta_falcons "Atlanta Falcons"))) (type fb:sports.sports_team) what team will michael vick play for in 2011? Virginia Tech Hokies football 18.205 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.michael_vick))) (value (list (name fb:en.philadelphia_eagles "Philadelphia Eagles") (name fb:en.virginia_tech_hokies_football "Virginia Tech Hokies football") (name fb:en.atlanta_falcons "Atlanta Falcons"))) (type fb:sports.sports_team) what team will michael vick play for in 2011? Atlanta Falcons 18.205 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.michael_vick))) (value (list (name fb:en.philadelphia_eagles "Philadelphia Eagles") (name fb:en.virginia_tech_hokies_football "Virginia Tech Hokies football") (name fb:en.atlanta_falcons "Atlanta Falcons"))) (type fb:sports.sports_team) what kourtney kardashian boyfriends name? Robert Kardashian 6.367 formula (fb:people.person.children fb:en.kourtney_kardashian)) (value (list (name fb:en.robert_kardashian "Robert Kardashian") (name fb:en.kris_kardashian "Kris Jenner"))) (type fb:people.person) what kourtney kardashian boyfriends name? Kris Jenner 6.367 formula (fb:people.person.children fb:en.kourtney_kardashian)) (value (list (name fb:en.robert_kardashian "Robert Kardashian") (name fb:en.kris_kardashian "Kris Jenner"))) (type fb:people.person) what form of government does australia use? Parliamentary system 15.255 formula (fb:government.form_of_government.countries fb:en.australia)) (value (list (name fb:en.parliamentary_system "Parliamentary system") (name fb:en.constitutional_monarchy "Constitutional monarchy") (name fb:en.federal_constitutional_monarchy "Federal monarchy"))) (type fb:government.form_of_government) what form of government does australia use? Constitutional monarchy 15.255 formula (fb:government.form_of_government.countries fb:en.australia)) (value (list (name fb:en.parliamentary_system "Parliamentary system") (name fb:en.constitutional_monarchy "Constitutional monarchy") (name fb:en.federal_constitutional_monarchy "Federal monarchy"))) (type fb:government.form_of_government) what form of government does australia use? Federal monarchy 15.255 formula (fb:government.form_of_government.countries fb:en.australia)) (value (list (name fb:en.parliamentary_system "Parliamentary system") (name fb:en.constitutional_monarchy "Constitutional monarchy") (name fb:en.federal_constitutional_monarchy "Federal monarchy"))) (type fb:government.form_of_government) what team did howie long? Villanova Wildcats football 13.721 formula ((lambda x (!fb:american_football.football_historical_roster_position.team (!fb:american_football.football_player.former_teams (var x)))) fb:en.howie_long)) (value (list (name fb:m.0crj6pn "Villanova Wildcats football") (name fb:en.oakland_raiders "Oakland Raiders"))) (type fb:american_football.football_team) what team did howie long? Oakland Raiders 13.721 formula ((lambda x (!fb:american_football.football_historical_roster_position.team (!fb:american_football.football_player.former_teams (var x)))) fb:en.howie_long)) (value (list (name fb:m.0crj6pn "Villanova Wildcats football") (name fb:en.oakland_raiders "Oakland Raiders"))) (type fb:american_football.football_team) what to see in christchurch new zealand? Internet users as percentage of population, World Development Indicators and Global Development Finance, World Bank 11.762 formula ((lambda x (!fb:measurement_unit.dated_percentage.source (!fb:location.statistical_region.internet_users_percent_population (var x)))) fb:en.new_zealand)) (value (list (name fb:m.0ndnhc0 "Internet users as percentage of population, World Development Indicators and Global Development Finance, World Bank") (name fb:g.1245ywqx8 "Internet users as percentage of population, World Development Indicators, World Bank"))) (type fb:dataworld.information_source) what to see in christchurch new zealand? Internet users as percentage of population, World Development Indicators, World Bank 11.762 formula ((lambda x (!fb:measurement_unit.dated_percentage.source (!fb:location.statistical_region.internet_users_percent_population (var x)))) fb:en.new_zealand)) (value (list (name fb:m.0ndnhc0 "Internet users as percentage of population, World Development Indicators and Global Development Finance, World Bank") (name fb:g.1245ywqx8 "Internet users as percentage of population, World Development Indicators, World Bank"))) (type fb:dataworld.information_source) where is chris paul from? Los Angeles 1.92 formula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.chris_paul))) (value (list (name fb:en.charlotte_nc Charlotte) (name fb:en.los_angeles "Los Angeles") (name fb:en.winston_salem_nc Winston-Salem))) (type fb:location.location) what business did andrew carnegie dominate? Homestead Steel Works 5.892 formula ((lambda x (fb:business.employer.employees (fb:business.employment_tenure.person (var x)))) fb:en.andrew_carnegie)) (value (list (name fb:en.homestead_steel_works "Homestead Steel Works") (name fb:en.keystone_bridge_company "Keystone Bridge Company") (name fb:en.pennsylvania_railroad "Pennsylvania Railroad"))) (type fb:business.employer) what business did andrew carnegie dominate? Keystone Bridge Company 5.892 formula ((lambda x (fb:business.employer.employees (fb:business.employment_tenure.person (var x)))) fb:en.andrew_carnegie)) (value (list (name fb:en.homestead_steel_works "Homestead Steel Works") (name fb:en.keystone_bridge_company "Keystone Bridge Company") (name fb:en.pennsylvania_railroad "Pennsylvania Railroad"))) (type fb:business.employer) what business did andrew carnegie dominate? Pennsylvania Railroad 5.892 formula ((lambda x (fb:business.employer.employees (fb:business.employment_tenure.person (var x)))) fb:en.andrew_carnegie)) (value (list (name fb:en.homestead_steel_works "Homestead Steel Works") (name fb:en.keystone_bridge_company "Keystone Bridge Company") (name fb:en.pennsylvania_railroad "Pennsylvania Railroad"))) (type fb:business.employer) what was sir isaac newton's inventions? Reflecting telescope 14.337 formula (!fb:law.inventor.inventions fb:en.sir_newton_isaac)) (value (list (name fb:en.reflecting_telescope "Reflecting telescope"))) (type fb:law.invention) where to visit in paris with children? Disneyland Park 9.439 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.paris))) (value (list (name fb:en.disneyland_park "Disneyland Park") (name fb:en.louvre Louvre) (name fb:en.centre_georges_pompidou "Centre Georges Pompidou") (name fb:en.pantheon_paris "Panthéon, Paris") (name fb:en.champs-elysees Champs-Élysées) (name fb:en.galerie_nationale_du_jeu_de_paume "Galerie nationale du Jeu de Paume") (name fb:en.musee_dorsay "Musée d'Orsay") (name fb:en.les_invalides "Les Invalides") (name fb:en.parc_asterix "Parc Astérix") (name fb:en.eiffel_tower "Eiffel Tower"))) (type fb:travel.tourist_attraction) where to visit in paris with children? Centre Georges Pompidou 9.439 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.paris))) (value (list (name fb:en.disneyland_park "Disneyland Park") (name fb:en.louvre Louvre) (name fb:en.centre_georges_pompidou "Centre Georges Pompidou") (name fb:en.pantheon_paris "Panthéon, Paris") (name fb:en.champs-elysees Champs-Élysées) (name fb:en.galerie_nationale_du_jeu_de_paume "Galerie nationale du Jeu de Paume") (name fb:en.musee_dorsay "Musée d'Orsay") (name fb:en.les_invalides "Les Invalides") (name fb:en.parc_asterix "Parc Astérix") (name fb:en.eiffel_tower "Eiffel Tower"))) (type fb:travel.tourist_attraction) where to visit in paris with children? Panthéon, Paris 9.439 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.paris))) (value (list (name fb:en.disneyland_park "Disneyland Park") (name fb:en.louvre Louvre) (name fb:en.centre_georges_pompidou "Centre Georges Pompidou") (name fb:en.pantheon_paris "Panthéon, Paris") (name fb:en.champs-elysees Champs-Élysées) (name fb:en.galerie_nationale_du_jeu_de_paume "Galerie nationale du Jeu de Paume") (name fb:en.musee_dorsay "Musée d'Orsay") (name fb:en.les_invalides "Les Invalides") (name fb:en.parc_asterix "Parc Astérix") (name fb:en.eiffel_tower "Eiffel Tower"))) (type fb:travel.tourist_attraction) where to visit in paris with children? Galerie nationale du Jeu de Paume 9.439 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.paris))) (value (list (name fb:en.disneyland_park "Disneyland Park") (name fb:en.louvre Louvre) (name fb:en.centre_georges_pompidou "Centre Georges Pompidou") (name fb:en.pantheon_paris "Panthéon, Paris") (name fb:en.champs-elysees Champs-Élysées) (name fb:en.galerie_nationale_du_jeu_de_paume "Galerie nationale du Jeu de Paume") (name fb:en.musee_dorsay "Musée d'Orsay") (name fb:en.les_invalides "Les Invalides") (name fb:en.parc_asterix "Parc Astérix") (name fb:en.eiffel_tower "Eiffel Tower"))) (type fb:travel.tourist_attraction) where to visit in paris with children? Musée d'Orsay 9.439 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.paris))) (value (list (name fb:en.disneyland_park "Disneyland Park") (name fb:en.louvre Louvre) (name fb:en.centre_georges_pompidou "Centre Georges Pompidou") (name fb:en.pantheon_paris "Panthéon, Paris") (name fb:en.champs-elysees Champs-Élysées) (name fb:en.galerie_nationale_du_jeu_de_paume "Galerie nationale du Jeu de Paume") (name fb:en.musee_dorsay "Musée d'Orsay") (name fb:en.les_invalides "Les Invalides") (name fb:en.parc_asterix "Parc Astérix") (name fb:en.eiffel_tower "Eiffel Tower"))) (type fb:travel.tourist_attraction) where to visit in paris with children? Les Invalides 9.439 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.paris))) (value (list (name fb:en.disneyland_park "Disneyland Park") (name fb:en.louvre Louvre) (name fb:en.centre_georges_pompidou "Centre Georges Pompidou") (name fb:en.pantheon_paris "Panthéon, Paris") (name fb:en.champs-elysees Champs-Élysées) (name fb:en.galerie_nationale_du_jeu_de_paume "Galerie nationale du Jeu de Paume") (name fb:en.musee_dorsay "Musée d'Orsay") (name fb:en.les_invalides "Les Invalides") (name fb:en.parc_asterix "Parc Astérix") (name fb:en.eiffel_tower "Eiffel Tower"))) (type fb:travel.tourist_attraction) where to visit in paris with children? Parc Astérix 9.439 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.paris))) (value (list (name fb:en.disneyland_park "Disneyland Park") (name fb:en.louvre Louvre) (name fb:en.centre_georges_pompidou "Centre Georges Pompidou") (name fb:en.pantheon_paris "Panthéon, Paris") (name fb:en.champs-elysees Champs-Élysées) (name fb:en.galerie_nationale_du_jeu_de_paume "Galerie nationale du Jeu de Paume") (name fb:en.musee_dorsay "Musée d'Orsay") (name fb:en.les_invalides "Les Invalides") (name fb:en.parc_asterix "Parc Astérix") (name fb:en.eiffel_tower "Eiffel Tower"))) (type fb:travel.tourist_attraction) where to visit in paris with children? Eiffel Tower 9.439 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.paris))) (value (list (name fb:en.disneyland_park "Disneyland Park") (name fb:en.louvre Louvre) (name fb:en.centre_georges_pompidou "Centre Georges Pompidou") (name fb:en.pantheon_paris "Panthéon, Paris") (name fb:en.champs-elysees Champs-Élysées) (name fb:en.galerie_nationale_du_jeu_de_paume "Galerie nationale du Jeu de Paume") (name fb:en.musee_dorsay "Musée d'Orsay") (name fb:en.les_invalides "Les Invalides") (name fb:en.parc_asterix "Parc Astérix") (name fb:en.eiffel_tower "Eiffel Tower"))) (type fb:travel.tourist_attraction) who did shaq first play for? Shaquille O'Neal 6.543 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:m.0h5slkk)) (value (list (name fb:en.shaquille_oneal "Shaquille O'Neal"))) (type fb:film.actor) who was the artist of mickey mouse? Wayne Allwine 8.08 formula ((lambda x (!fb:tv.regular_tv_appearance.actor (!fb:tv.tv_character.appeared_in_tv_program (var x)))) fb:en.mickey_mouse)) (value (list (name fb:en.wayne_allwine "Wayne Allwine"))) (type fb:tv.tv_actor) what football team is michael vick on? Virginia Tech Hokies football 14.943 formula ((lambda x (!fb:american_football.football_historical_roster_position.team (!fb:american_football.football_player.former_teams (var x)))) fb:en.michael_vick)) (value (list (name fb:en.virginia_tech_hokies_football "Virginia Tech Hokies football") (name fb:en.atlanta_falcons "Atlanta Falcons"))) (type fb:american_football.football_team) what football team is michael vick on? Atlanta Falcons 14.943 formula ((lambda x (!fb:american_football.football_historical_roster_position.team (!fb:american_football.football_player.former_teams (var x)))) fb:en.michael_vick)) (value (list (name fb:en.virginia_tech_hokies_football "Virginia Tech Hokies football") (name fb:en.atlanta_falcons "Atlanta Falcons"))) (type fb:american_football.football_team) where does the columbia river start? Columbia River Gorge 9.33 formula (and (fb:type.object.type fb:location.location) (fb:travel.tourist_attraction.near_travel_destination fb:en.columbia_river))) (value (list (name fb:en.columbia_river_gorge "Columbia River Gorge"))) (type fb:travel.tourist_attraction) what are all the names of the harry potter books? Harry Potter and the Deathly Hallows 13.882 formula (!fb:book.book_character.appears_in_book fb:m.03647x)) (value (list (name fb:en.harry_potter_7 "Harry Potter and the Deathly Hallows") (name fb:en.harry_potter_and_the_order_of_the_phoenix "Harry Potter and the Order of the Phoenix") (name fb:en.harry_potter_and_the_prisoner_of_azkaban "Harry Potter and the Prisoner of Azkaban") (name fb:en.harry_potter_and_the_half-blood_prince "Harry Potter and the Half-Blood Prince") (name fb:en.harry_potter_and_the_goblet_of_fire "Harry Potter and the Goblet of Fire") (name fb:en.harry_potter_and_the_chamber_of_secrets "Harry Potter and the Chamber of Secrets") (name fb:m.0c_vk "Harry Potter and the Philosopher's Stone"))) (type fb:book.book) what are all the names of the harry potter books? Harry Potter and the Order of the Phoenix 13.882 formula (!fb:book.book_character.appears_in_book fb:m.03647x)) (value (list (name fb:en.harry_potter_7 "Harry Potter and the Deathly Hallows") (name fb:en.harry_potter_and_the_order_of_the_phoenix "Harry Potter and the Order of the Phoenix") (name fb:en.harry_potter_and_the_prisoner_of_azkaban "Harry Potter and the Prisoner of Azkaban") (name fb:en.harry_potter_and_the_half-blood_prince "Harry Potter and the Half-Blood Prince") (name fb:en.harry_potter_and_the_goblet_of_fire "Harry Potter and the Goblet of Fire") (name fb:en.harry_potter_and_the_chamber_of_secrets "Harry Potter and the Chamber of Secrets") (name fb:m.0c_vk "Harry Potter and the Philosopher's Stone"))) (type fb:book.book) what are all the names of the harry potter books? Harry Potter and the Prisoner of Azkaban 13.882 formula (!fb:book.book_character.appears_in_book fb:m.03647x)) (value (list (name fb:en.harry_potter_7 "Harry Potter and the Deathly Hallows") (name fb:en.harry_potter_and_the_order_of_the_phoenix "Harry Potter and the Order of the Phoenix") (name fb:en.harry_potter_and_the_prisoner_of_azkaban "Harry Potter and the Prisoner of Azkaban") (name fb:en.harry_potter_and_the_half-blood_prince "Harry Potter and the Half-Blood Prince") (name fb:en.harry_potter_and_the_goblet_of_fire "Harry Potter and the Goblet of Fire") (name fb:en.harry_potter_and_the_chamber_of_secrets "Harry Potter and the Chamber of Secrets") (name fb:m.0c_vk "Harry Potter and the Philosopher's Stone"))) (type fb:book.book) what are all the names of the harry potter books? Harry Potter and the Half-Blood Prince 13.882 formula (!fb:book.book_character.appears_in_book fb:m.03647x)) (value (list (name fb:en.harry_potter_7 "Harry Potter and the Deathly Hallows") (name fb:en.harry_potter_and_the_order_of_the_phoenix "Harry Potter and the Order of the Phoenix") (name fb:en.harry_potter_and_the_prisoner_of_azkaban "Harry Potter and the Prisoner of Azkaban") (name fb:en.harry_potter_and_the_half-blood_prince "Harry Potter and the Half-Blood Prince") (name fb:en.harry_potter_and_the_goblet_of_fire "Harry Potter and the Goblet of Fire") (name fb:en.harry_potter_and_the_chamber_of_secrets "Harry Potter and the Chamber of Secrets") (name fb:m.0c_vk "Harry Potter and the Philosopher's Stone"))) (type fb:book.book) what are all the names of the harry potter books? Harry Potter and the Goblet of Fire 13.882 formula (!fb:book.book_character.appears_in_book fb:m.03647x)) (value (list (name fb:en.harry_potter_7 "Harry Potter and the Deathly Hallows") (name fb:en.harry_potter_and_the_order_of_the_phoenix "Harry Potter and the Order of the Phoenix") (name fb:en.harry_potter_and_the_prisoner_of_azkaban "Harry Potter and the Prisoner of Azkaban") (name fb:en.harry_potter_and_the_half-blood_prince "Harry Potter and the Half-Blood Prince") (name fb:en.harry_potter_and_the_goblet_of_fire "Harry Potter and the Goblet of Fire") (name fb:en.harry_potter_and_the_chamber_of_secrets "Harry Potter and the Chamber of Secrets") (name fb:m.0c_vk "Harry Potter and the Philosopher's Stone"))) (type fb:book.book) what are all the names of the harry potter books? Harry Potter and the Chamber of Secrets 13.882 formula (!fb:book.book_character.appears_in_book fb:m.03647x)) (value (list (name fb:en.harry_potter_7 "Harry Potter and the Deathly Hallows") (name fb:en.harry_potter_and_the_order_of_the_phoenix "Harry Potter and the Order of the Phoenix") (name fb:en.harry_potter_and_the_prisoner_of_azkaban "Harry Potter and the Prisoner of Azkaban") (name fb:en.harry_potter_and_the_half-blood_prince "Harry Potter and the Half-Blood Prince") (name fb:en.harry_potter_and_the_goblet_of_fire "Harry Potter and the Goblet of Fire") (name fb:en.harry_potter_and_the_chamber_of_secrets "Harry Potter and the Chamber of Secrets") (name fb:m.0c_vk "Harry Potter and the Philosopher's Stone"))) (type fb:book.book) what are all the names of the harry potter books? Harry Potter and the Philosopher's Stone 13.882 formula (!fb:book.book_character.appears_in_book fb:m.03647x)) (value (list (name fb:en.harry_potter_7 "Harry Potter and the Deathly Hallows") (name fb:en.harry_potter_and_the_order_of_the_phoenix "Harry Potter and the Order of the Phoenix") (name fb:en.harry_potter_and_the_prisoner_of_azkaban "Harry Potter and the Prisoner of Azkaban") (name fb:en.harry_potter_and_the_half-blood_prince "Harry Potter and the Half-Blood Prince") (name fb:en.harry_potter_and_the_goblet_of_fire "Harry Potter and the Goblet of Fire") (name fb:en.harry_potter_and_the_chamber_of_secrets "Harry Potter and the Chamber of Secrets") (name fb:m.0c_vk "Harry Potter and the Philosopher's Stone"))) (type fb:book.book) what banjo does scott avett play? Lead vocalist 5.866 formula ((lambda x (fb:music.performance_role.regular_performances (fb:music.group_membership.member (var x)))) fb:en.scott_avett)) (value (list (name fb:en.piano Piano) (name fb:en.guitar Guitar) (name fb:en.drumset Drums) (name fb:en.lead_vocalist_bass_guitar "Lead vocalist") (name fb:m.0c0n9v9 "Backing Vocals") (name fb:en.banjo banjo) (name fb:en.harmonica harmonica))) (type fb:music.performance_role) what banjo does scott avett play? Backing Vocals 5.866 formula ((lambda x (fb:music.performance_role.regular_performances (fb:music.group_membership.member (var x)))) fb:en.scott_avett)) (value (list (name fb:en.piano Piano) (name fb:en.guitar Guitar) (name fb:en.drumset Drums) (name fb:en.lead_vocalist_bass_guitar "Lead vocalist") (name fb:m.0c0n9v9 "Backing Vocals") (name fb:en.banjo banjo) (name fb:en.harmonica harmonica))) (type fb:music.performance_role) who was sir walter raleigh and what did he do? Elizabeth Raleigh 19.269 formula ((lambda x (!fb:people.marriage.spouse (!fb:people.person.spouse_s (var x)))) fb:en.walter_raleigh)) (value (list (name fb:en.elizabeth_raleigh "Elizabeth Raleigh"))) (type fb:people.person) what currency can you use in barbados? Barbadian dollar 22.075 formula (!fb:location.country.currency_used fb:en.barbados)) (value (list (name fb:en.barbados_dollar "Barbadian dollar"))) (type fb:finance.currency) who is angelina jolie? WSJ Topic Index 7.26 formula ((lambda x (fb:base.articleindices.resource_topic_index.index_items (fb:base.articleindices.index_item.topic (var x)))) fb:en.angelina_jolie)) (value (list (name fb:en.wsj_topic_index "WSJ Topic Index") (name fb:en.people_celebrities "People Celebrities"))) (type fb:base.articleindices.resource_topic_index) who is angelina jolie? People Celebrities 7.26 formula ((lambda x (fb:base.articleindices.resource_topic_index.index_items (fb:base.articleindices.index_item.topic (var x)))) fb:en.angelina_jolie)) (value (list (name fb:en.wsj_topic_index "WSJ Topic Index") (name fb:en.people_celebrities "People Celebrities"))) (type fb:base.articleindices.resource_topic_index) what is the state flower of new mexico? Greater Roadrunner 15.842 formula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.new_mexico)) (value (list (name fb:en.greater_roadrunner "Greater Roadrunner") (name fb:en.pinyon_pine "Pinyon pine") (name fb:en.cutthroat_trout "Cutthroat trout") (name fb:m.0hzbf1c "Yucca flower") (name fb:en.sandia_hairstreak "Sandia Hairstreak") (name fb:en.crescit_eundo "Crescit eundo") (name fb:en.cnemidophorus_neomexicanus "New Mexico whiptail") (name fb:en.spea_multiplicata "New Mexico spadefoot toad"))) (type fb:location.symbol_of_administrative_division) what is the state flower of new mexico? Pinyon pine 15.842 formula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.new_mexico)) (value (list (name fb:en.greater_roadrunner "Greater Roadrunner") (name fb:en.pinyon_pine "Pinyon pine") (name fb:en.cutthroat_trout "Cutthroat trout") (name fb:m.0hzbf1c "Yucca flower") (name fb:en.sandia_hairstreak "Sandia Hairstreak") (name fb:en.crescit_eundo "Crescit eundo") (name fb:en.cnemidophorus_neomexicanus "New Mexico whiptail") (name fb:en.spea_multiplicata "New Mexico spadefoot toad"))) (type fb:location.symbol_of_administrative_division) what is the state flower of new mexico? Cutthroat trout 15.842 formula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.new_mexico)) (value (list (name fb:en.greater_roadrunner "Greater Roadrunner") (name fb:en.pinyon_pine "Pinyon pine") (name fb:en.cutthroat_trout "Cutthroat trout") (name fb:m.0hzbf1c "Yucca flower") (name fb:en.sandia_hairstreak "Sandia Hairstreak") (name fb:en.crescit_eundo "Crescit eundo") (name fb:en.cnemidophorus_neomexicanus "New Mexico whiptail") (name fb:en.spea_multiplicata "New Mexico spadefoot toad"))) (type fb:location.symbol_of_administrative_division) what is the state flower of new mexico? Yucca flower 15.842 formula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.new_mexico)) (value (list (name fb:en.greater_roadrunner "Greater Roadrunner") (name fb:en.pinyon_pine "Pinyon pine") (name fb:en.cutthroat_trout "Cutthroat trout") (name fb:m.0hzbf1c "Yucca flower") (name fb:en.sandia_hairstreak "Sandia Hairstreak") (name fb:en.crescit_eundo "Crescit eundo") (name fb:en.cnemidophorus_neomexicanus "New Mexico whiptail") (name fb:en.spea_multiplicata "New Mexico spadefoot toad"))) (type fb:location.symbol_of_administrative_division) what is the state flower of new mexico? Sandia Hairstreak 15.842 formula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.new_mexico)) (value (list (name fb:en.greater_roadrunner "Greater Roadrunner") (name fb:en.pinyon_pine "Pinyon pine") (name fb:en.cutthroat_trout "Cutthroat trout") (name fb:m.0hzbf1c "Yucca flower") (name fb:en.sandia_hairstreak "Sandia Hairstreak") (name fb:en.crescit_eundo "Crescit eundo") (name fb:en.cnemidophorus_neomexicanus "New Mexico whiptail") (name fb:en.spea_multiplicata "New Mexico spadefoot toad"))) (type fb:location.symbol_of_administrative_division) what is the state flower of new mexico? Crescit eundo 15.842 formula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.new_mexico)) (value (list (name fb:en.greater_roadrunner "Greater Roadrunner") (name fb:en.pinyon_pine "Pinyon pine") (name fb:en.cutthroat_trout "Cutthroat trout") (name fb:m.0hzbf1c "Yucca flower") (name fb:en.sandia_hairstreak "Sandia Hairstreak") (name fb:en.crescit_eundo "Crescit eundo") (name fb:en.cnemidophorus_neomexicanus "New Mexico whiptail") (name fb:en.spea_multiplicata "New Mexico spadefoot toad"))) (type fb:location.symbol_of_administrative_division) what is the state flower of new mexico? New Mexico whiptail 15.842 formula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.new_mexico)) (value (list (name fb:en.greater_roadrunner "Greater Roadrunner") (name fb:en.pinyon_pine "Pinyon pine") (name fb:en.cutthroat_trout "Cutthroat trout") (name fb:m.0hzbf1c "Yucca flower") (name fb:en.sandia_hairstreak "Sandia Hairstreak") (name fb:en.crescit_eundo "Crescit eundo") (name fb:en.cnemidophorus_neomexicanus "New Mexico whiptail") (name fb:en.spea_multiplicata "New Mexico spadefoot toad"))) (type fb:location.symbol_of_administrative_division) what is the state flower of new mexico? New Mexico spadefoot toad 15.842 formula ((lambda x (!fb:location.location_symbol_relationship.symbol (!fb:government.governmental_jurisdiction.official_symbols (var x)))) fb:en.new_mexico)) (value (list (name fb:en.greater_roadrunner "Greater Roadrunner") (name fb:en.pinyon_pine "Pinyon pine") (name fb:en.cutthroat_trout "Cutthroat trout") (name fb:m.0hzbf1c "Yucca flower") (name fb:en.sandia_hairstreak "Sandia Hairstreak") (name fb:en.crescit_eundo "Crescit eundo") (name fb:en.cnemidophorus_neomexicanus "New Mexico whiptail") (name fb:en.spea_multiplicata "New Mexico spadefoot toad"))) (type fb:location.symbol_of_administrative_division) which countries speak germanic languages? Kingdom of the Netherlands 7.348 formula (and (fb:type.object.type fb:location.country) (fb:location.country.official_language fb:en.frisian_language))) (value (list (name fb:en.kingdom_of_the_netherlands "Kingdom of the Netherlands"))) (type fb:location.country) who plays eowyn in lord of the rings? Ralph Fiennes 2.831 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.lord_voldemort)) (value (list (name fb:en.ralph_fiennes "Ralph Fiennes") (name fb:en.christian_coulson "Christian Coulson") (name fb:en.hero_fiennes_tiffin "Hero Fiennes-Tiffin") (name fb:en.richard_bremmer "Richard Bremmer") (name fb:en.frank_dillane "Frank Dillane"))) (type fb:film.actor) who plays eowyn in lord of the rings? Christian Coulson 2.831 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.lord_voldemort)) (value (list (name fb:en.ralph_fiennes "Ralph Fiennes") (name fb:en.christian_coulson "Christian Coulson") (name fb:en.hero_fiennes_tiffin "Hero Fiennes-Tiffin") (name fb:en.richard_bremmer "Richard Bremmer") (name fb:en.frank_dillane "Frank Dillane"))) (type fb:film.actor) who plays eowyn in lord of the rings? Hero Fiennes-Tiffin 2.831 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.lord_voldemort)) (value (list (name fb:en.ralph_fiennes "Ralph Fiennes") (name fb:en.christian_coulson "Christian Coulson") (name fb:en.hero_fiennes_tiffin "Hero Fiennes-Tiffin") (name fb:en.richard_bremmer "Richard Bremmer") (name fb:en.frank_dillane "Frank Dillane"))) (type fb:film.actor) who plays eowyn in lord of the rings? Richard Bremmer 2.831 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.lord_voldemort)) (value (list (name fb:en.ralph_fiennes "Ralph Fiennes") (name fb:en.christian_coulson "Christian Coulson") (name fb:en.hero_fiennes_tiffin "Hero Fiennes-Tiffin") (name fb:en.richard_bremmer "Richard Bremmer") (name fb:en.frank_dillane "Frank Dillane"))) (type fb:film.actor) who plays eowyn in lord of the rings? Frank Dillane 2.831 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.lord_voldemort)) (value (list (name fb:en.ralph_fiennes "Ralph Fiennes") (name fb:en.christian_coulson "Christian Coulson") (name fb:en.hero_fiennes_tiffin "Hero Fiennes-Tiffin") (name fb:en.richard_bremmer "Richard Bremmer") (name fb:en.frank_dillane "Frank Dillane"))) (type fb:film.actor) where is augusta masters 2012? United States of America 3.347 formula (and (fb:type.object.type fb:location.location) (fb:location.location.contains fb:en.augusta_state_university))) (value (list (name fb:en.united_states_of_america "United States of America") (name fb:en.georgia Georgia) (name fb:en.augusta Augusta))) (type fb:location.location) what type of cancer did eva peron die from? Dan Turèll 11.525 formula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell "Dan Turèll") (name fb:en.loulou_de_la_falaise "Loulou de la Falaise") (name fb:en.cseh_tamas "Cseh Tamás") (name fb:en.cella_cruz "Celia Cruz") (name fb:en.edith_piaf "Édith Piaf") (name fb:en.slim_dusty "Slim Dusty") (name fb:en.yves_saint-laurent "Yves Saint Laurent") (name fb:en.steve_lacy "Steve Lacy") (name fb:en.alma_cogan "Alma Cogan") (name fb:en.marc_jarre "Maurice Jarre"))) (type fb:people.deceased_person) what type of cancer did eva peron die from? Loulou de la Falaise 11.525 formula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell "Dan Turèll") (name fb:en.loulou_de_la_falaise "Loulou de la Falaise") (name fb:en.cseh_tamas "Cseh Tamás") (name fb:en.cella_cruz "Celia Cruz") (name fb:en.edith_piaf "Édith Piaf") (name fb:en.slim_dusty "Slim Dusty") (name fb:en.yves_saint-laurent "Yves Saint Laurent") (name fb:en.steve_lacy "Steve Lacy") (name fb:en.alma_cogan "Alma Cogan") (name fb:en.marc_jarre "Maurice Jarre"))) (type fb:people.deceased_person) what type of cancer did eva peron die from? Cseh Tamás 11.525 formula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell "Dan Turèll") (name fb:en.loulou_de_la_falaise "Loulou de la Falaise") (name fb:en.cseh_tamas "Cseh Tamás") (name fb:en.cella_cruz "Celia Cruz") (name fb:en.edith_piaf "Édith Piaf") (name fb:en.slim_dusty "Slim Dusty") (name fb:en.yves_saint-laurent "Yves Saint Laurent") (name fb:en.steve_lacy "Steve Lacy") (name fb:en.alma_cogan "Alma Cogan") (name fb:en.marc_jarre "Maurice Jarre"))) (type fb:people.deceased_person) what type of cancer did eva peron die from? Celia Cruz 11.525 formula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell "Dan Turèll") (name fb:en.loulou_de_la_falaise "Loulou de la Falaise") (name fb:en.cseh_tamas "Cseh Tamás") (name fb:en.cella_cruz "Celia Cruz") (name fb:en.edith_piaf "Édith Piaf") (name fb:en.slim_dusty "Slim Dusty") (name fb:en.yves_saint-laurent "Yves Saint Laurent") (name fb:en.steve_lacy "Steve Lacy") (name fb:en.alma_cogan "Alma Cogan") (name fb:en.marc_jarre "Maurice Jarre"))) (type fb:people.deceased_person) what type of cancer did eva peron die from? Édith Piaf 11.525 formula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell "Dan Turèll") (name fb:en.loulou_de_la_falaise "Loulou de la Falaise") (name fb:en.cseh_tamas "Cseh Tamás") (name fb:en.cella_cruz "Celia Cruz") (name fb:en.edith_piaf "Édith Piaf") (name fb:en.slim_dusty "Slim Dusty") (name fb:en.yves_saint-laurent "Yves Saint Laurent") (name fb:en.steve_lacy "Steve Lacy") (name fb:en.alma_cogan "Alma Cogan") (name fb:en.marc_jarre "Maurice Jarre"))) (type fb:people.deceased_person) what type of cancer did eva peron die from? Slim Dusty 11.525 formula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell "Dan Turèll") (name fb:en.loulou_de_la_falaise "Loulou de la Falaise") (name fb:en.cseh_tamas "Cseh Tamás") (name fb:en.cella_cruz "Celia Cruz") (name fb:en.edith_piaf "Édith Piaf") (name fb:en.slim_dusty "Slim Dusty") (name fb:en.yves_saint-laurent "Yves Saint Laurent") (name fb:en.steve_lacy "Steve Lacy") (name fb:en.alma_cogan "Alma Cogan") (name fb:en.marc_jarre "Maurice Jarre"))) (type fb:people.deceased_person) what type of cancer did eva peron die from? Yves Saint Laurent 11.525 formula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell "Dan Turèll") (name fb:en.loulou_de_la_falaise "Loulou de la Falaise") (name fb:en.cseh_tamas "Cseh Tamás") (name fb:en.cella_cruz "Celia Cruz") (name fb:en.edith_piaf "Édith Piaf") (name fb:en.slim_dusty "Slim Dusty") (name fb:en.yves_saint-laurent "Yves Saint Laurent") (name fb:en.steve_lacy "Steve Lacy") (name fb:en.alma_cogan "Alma Cogan") (name fb:en.marc_jarre "Maurice Jarre"))) (type fb:people.deceased_person) what type of cancer did eva peron die from? Steve Lacy 11.525 formula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell "Dan Turèll") (name fb:en.loulou_de_la_falaise "Loulou de la Falaise") (name fb:en.cseh_tamas "Cseh Tamás") (name fb:en.cella_cruz "Celia Cruz") (name fb:en.edith_piaf "Édith Piaf") (name fb:en.slim_dusty "Slim Dusty") (name fb:en.yves_saint-laurent "Yves Saint Laurent") (name fb:en.steve_lacy "Steve Lacy") (name fb:en.alma_cogan "Alma Cogan") (name fb:en.marc_jarre "Maurice Jarre"))) (type fb:people.deceased_person) what type of cancer did eva peron die from? Alma Cogan 11.525 formula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell "Dan Turèll") (name fb:en.loulou_de_la_falaise "Loulou de la Falaise") (name fb:en.cseh_tamas "Cseh Tamás") (name fb:en.cella_cruz "Celia Cruz") (name fb:en.edith_piaf "Édith Piaf") (name fb:en.slim_dusty "Slim Dusty") (name fb:en.yves_saint-laurent "Yves Saint Laurent") (name fb:en.steve_lacy "Steve Lacy") (name fb:en.alma_cogan "Alma Cogan") (name fb:en.marc_jarre "Maurice Jarre"))) (type fb:people.deceased_person) what type of cancer did eva peron die from? Maurice Jarre 11.525 formula (!fb:people.cause_of_death.people fb:en.cancer)) (value (list (name fb:en.dan_turell "Dan Turèll") (name fb:en.loulou_de_la_falaise "Loulou de la Falaise") (name fb:en.cseh_tamas "Cseh Tamás") (name fb:en.cella_cruz "Celia Cruz") (name fb:en.edith_piaf "Édith Piaf") (name fb:en.slim_dusty "Slim Dusty") (name fb:en.yves_saint-laurent "Yves Saint Laurent") (name fb:en.steve_lacy "Steve Lacy") (name fb:en.alma_cogan "Alma Cogan") (name fb:en.marc_jarre "Maurice Jarre"))) (type fb:people.deceased_person) who did terrell owens play for in 2010? Cincinnati Bengals 16.583 formula (fb:sports.sports_team.roster (and (fb:sports.sports_team_roster.player fb:en.terrell_owens) (fb:sports.sports_team_roster.from (date 2010 -1 -1))))) (value (list (name fb:en.cincinnati_bengals "Cincinnati Bengals"))) (type fb:sports.sports_team) where is denmark south carolina? United States of America 2.684 formula (and (fb:type.object.type fb:location.location) (fb:location.location.contains fb:m.0q3805p))) (value (list (name fb:en.united_states_of_america "United States of America"))) (type fb:location.location) what books did ernest hemingway write? A Moveable Feast 12.292 formula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.ernest_hemingway))) (value (list (name fb:en.a_moveable_feast "A Moveable Feast") (name fb:en.the_paris_review_interviews_vol_1 "The Paris Review Interviews, Vol. 1") (name fb:en.wild_nights "Wild Nights!") (name fb:en.that_book_of_perfectly_useless_information "That Book ...of Perfectly Useless Information") (name fb:m.065xk7w "The Breaking Point: Hemingway, Dos Passos, and the Murder of Jose Robles") (name fb:en.hemingway_life_into_art "Hemingway: Life into Art"))) (type (union fb:book.book)) what books did ernest hemingway write? The Paris Review Interviews, Vol. 1 12.292 formula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.ernest_hemingway))) (value (list (name fb:en.a_moveable_feast "A Moveable Feast") (name fb:en.the_paris_review_interviews_vol_1 "The Paris Review Interviews, Vol. 1") (name fb:en.wild_nights "Wild Nights!") (name fb:en.that_book_of_perfectly_useless_information "That Book ...of Perfectly Useless Information") (name fb:m.065xk7w "The Breaking Point: Hemingway, Dos Passos, and the Murder of Jose Robles") (name fb:en.hemingway_life_into_art "Hemingway: Life into Art"))) (type (union fb:book.book)) what books did ernest hemingway write? Wild Nights! 12.292 formula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.ernest_hemingway))) (value (list (name fb:en.a_moveable_feast "A Moveable Feast") (name fb:en.the_paris_review_interviews_vol_1 "The Paris Review Interviews, Vol. 1") (name fb:en.wild_nights "Wild Nights!") (name fb:en.that_book_of_perfectly_useless_information "That Book ...of Perfectly Useless Information") (name fb:m.065xk7w "The Breaking Point: Hemingway, Dos Passos, and the Murder of Jose Robles") (name fb:en.hemingway_life_into_art "Hemingway: Life into Art"))) (type (union fb:book.book)) what books did ernest hemingway write? That Book ...of Perfectly Useless Information 12.292 formula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.ernest_hemingway))) (value (list (name fb:en.a_moveable_feast "A Moveable Feast") (name fb:en.the_paris_review_interviews_vol_1 "The Paris Review Interviews, Vol. 1") (name fb:en.wild_nights "Wild Nights!") (name fb:en.that_book_of_perfectly_useless_information "That Book ...of Perfectly Useless Information") (name fb:m.065xk7w "The Breaking Point: Hemingway, Dos Passos, and the Murder of Jose Robles") (name fb:en.hemingway_life_into_art "Hemingway: Life into Art"))) (type (union fb:book.book)) what books did ernest hemingway write? The Breaking Point: Hemingway, Dos Passos, and the Murder of Jose Robles 12.292 formula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.ernest_hemingway))) (value (list (name fb:en.a_moveable_feast "A Moveable Feast") (name fb:en.the_paris_review_interviews_vol_1 "The Paris Review Interviews, Vol. 1") (name fb:en.wild_nights "Wild Nights!") (name fb:en.that_book_of_perfectly_useless_information "That Book ...of Perfectly Useless Information") (name fb:m.065xk7w "The Breaking Point: Hemingway, Dos Passos, and the Murder of Jose Robles") (name fb:en.hemingway_life_into_art "Hemingway: Life into Art"))) (type (union fb:book.book)) what books did ernest hemingway write? Hemingway: Life into Art 12.292 formula (and (fb:type.object.type fb:book.book) (!fb:book.book_subject.works fb:en.ernest_hemingway))) (value (list (name fb:en.a_moveable_feast "A Moveable Feast") (name fb:en.the_paris_review_interviews_vol_1 "The Paris Review Interviews, Vol. 1") (name fb:en.wild_nights "Wild Nights!") (name fb:en.that_book_of_perfectly_useless_information "That Book ...of Perfectly Useless Information") (name fb:m.065xk7w "The Breaking Point: Hemingway, Dos Passos, and the Murder of Jose Robles") (name fb:en.hemingway_life_into_art "Hemingway: Life into Art"))) (type (union fb:book.book)) what year did baltimore ravens win super bowl? Super Bowl XLVII 15.692 formula (and (fb:type.object.type fb:sports.sports_championship_event) (fb:sports.sports_championship_event.champion fb:en.baltimore_ravens))) (value (list (name fb:en.super_bowl_xlvii "Super Bowl XLVII") (name fb:en.super_bowl_xxxv "Super Bowl XXXV"))) (type fb:sports.sports_championship_event) what year did baltimore ravens win super bowl? Super Bowl XXXV 15.692 formula (and (fb:type.object.type fb:sports.sports_championship_event) (fb:sports.sports_championship_event.champion fb:en.baltimore_ravens))) (value (list (name fb:en.super_bowl_xlvii "Super Bowl XLVII") (name fb:en.super_bowl_xxxv "Super Bowl XXXV"))) (type fb:sports.sports_championship_event) what part of the country is ohio considered? United States of America 18.087 formula (and (fb:type.object.type fb:location.country) (!fb:location.administrative_division.country fb:en.ohio))) (value (list (name fb:en.united_states_of_america "United States of America"))) (type (union fb:location.country)) what team is cristiano ronaldo play for? Portugal national football team 16.823 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo))) (value (list (name fb:en.portugal_national_football_team "Portugal national football team") (name fb:en.sporting_clube_de_portugal "Sporting Clube de Portugal") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.real_madrid "Real Madrid C.F."))) (type fb:soccer.football_team) what team is cristiano ronaldo play for? Sporting Clube de Portugal 16.823 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo))) (value (list (name fb:en.portugal_national_football_team "Portugal national football team") (name fb:en.sporting_clube_de_portugal "Sporting Clube de Portugal") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.real_madrid "Real Madrid C.F."))) (type fb:soccer.football_team) what team is cristiano ronaldo play for? Manchester United F.C. 16.823 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo))) (value (list (name fb:en.portugal_national_football_team "Portugal national football team") (name fb:en.sporting_clube_de_portugal "Sporting Clube de Portugal") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.real_madrid "Real Madrid C.F."))) (type fb:soccer.football_team) what team is cristiano ronaldo play for? Real Madrid C.F. 16.823 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:soccer.football_team.current_roster (fb:soccer.football_roster_position.player (var x)))) fb:en.cristiano_ronaldo))) (value (list (name fb:en.portugal_national_football_team "Portugal national football team") (name fb:en.sporting_clube_de_portugal "Sporting Clube de Portugal") (name fb:en.manchester_united_fc "Manchester United F.C.") (name fb:en.real_madrid "Real Madrid C.F."))) (type fb:soccer.football_team) what standard time is michigan? Central Time Zone 12.706 formula (!fb:location.location.time_zones fb:en.michigan)) (value (list (name fb:en.central_time_zone "Central Time Zone") (name fb:en.north_american_eastern_time_zone "Eastern Time Zone") (name fb:en.utc-5 UTC-5))) (type fb:time.time_zone) what standard time is michigan? Eastern Time Zone 12.706 formula (!fb:location.location.time_zones fb:en.michigan)) (value (list (name fb:en.central_time_zone "Central Time Zone") (name fb:en.north_american_eastern_time_zone "Eastern Time Zone") (name fb:en.utc-5 UTC-5))) (type fb:time.time_zone) what currency can you use in jamaica? Jamaican dollar 24.953 formula (!fb:location.country.currency_used fb:en.jamaica)) (value (list (name fb:en.jamaican_dollar "Jamaican dollar"))) (type fb:finance.currency) what drugs lindsay lohan abuse? Alcoholic beverage 12.42 formula (and (fb:type.object.type fb:celebrities.abused_substance) ((lambda x (fb:celebrities.abused_substance.abused_by (fb:celebrities.substance_abuse_problem.celebrity (var x)))) fb:en.lindsay_lohan))) (value (list (name fb:en.alcoholic_beverage "Alcoholic beverage"))) (type (union fb:celebrities.abused_substance)) when did carolina panthers go to superbowl? 2006 Stanley Cup Finals 11.31 formula (fb:sports.sports_championship_event.champion fb:en.carolina_hurricanes)) (value (list (name fb:en.2006_stanley_cup_finals "2006 Stanley Cup Finals") (name fb:en.2006_stanley_cup_playoffs "2006 Stanley Cup playoffs"))) (type fb:sports.sports_championship_event) when did carolina panthers go to superbowl? 2006 Stanley Cup playoffs 11.31 formula (fb:sports.sports_championship_event.champion fb:en.carolina_hurricanes)) (value (list (name fb:en.2006_stanley_cup_finals "2006 Stanley Cup Finals") (name fb:en.2006_stanley_cup_playoffs "2006 Stanley Cup playoffs"))) (type fb:sports.sports_championship_event) what is michael kors real name? Joan Hamburger 8.742 formula (!fb:people.person.parents fb:en.michael_kors)) (value (list (name fb:m.0ngpzwm "Joan Hamburger") (name fb:m.0ngpzyv "Karl Anderson"))) (type fb:people.person) what is michael kors real name? Karl Anderson 8.742 formula (!fb:people.person.parents fb:en.michael_kors)) (value (list (name fb:m.0ngpzwm "Joan Hamburger") (name fb:m.0ngpzyv "Karl Anderson"))) (type fb:people.person) who won the governor election in texas? Elisha M. Pease 10.516 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.texas)) (value (list (name fb:en.elisha_m_pease "Elisha M. Pease") (name fb:en.fletcher_stockdale "Fletcher Stockdale") (name fb:en.francis_lubbock "Francis Lubbock") (name fb:en.rick_perry "Rick Perry") (name fb:en.james_allred "James Allred") (name fb:en.price_daniel "Price Daniel") (name fb:en.oran_m_roberts "Oran M. Roberts") (name fb:m.0tkjl5_ "Shirley Abbott") (name fb:en.william_p_hobby "William P. Hobby") (name fb:en.greg_abbott "Greg Abbott"))) (type fb:government.politician) who won the governor election in texas? Fletcher Stockdale 10.516 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.texas)) (value (list (name fb:en.elisha_m_pease "Elisha M. Pease") (name fb:en.fletcher_stockdale "Fletcher Stockdale") (name fb:en.francis_lubbock "Francis Lubbock") (name fb:en.rick_perry "Rick Perry") (name fb:en.james_allred "James Allred") (name fb:en.price_daniel "Price Daniel") (name fb:en.oran_m_roberts "Oran M. Roberts") (name fb:m.0tkjl5_ "Shirley Abbott") (name fb:en.william_p_hobby "William P. Hobby") (name fb:en.greg_abbott "Greg Abbott"))) (type fb:government.politician) who won the governor election in texas? Francis Lubbock 10.516 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.texas)) (value (list (name fb:en.elisha_m_pease "Elisha M. Pease") (name fb:en.fletcher_stockdale "Fletcher Stockdale") (name fb:en.francis_lubbock "Francis Lubbock") (name fb:en.rick_perry "Rick Perry") (name fb:en.james_allred "James Allred") (name fb:en.price_daniel "Price Daniel") (name fb:en.oran_m_roberts "Oran M. Roberts") (name fb:m.0tkjl5_ "Shirley Abbott") (name fb:en.william_p_hobby "William P. Hobby") (name fb:en.greg_abbott "Greg Abbott"))) (type fb:government.politician) who won the governor election in texas? Rick Perry 10.516 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.texas)) (value (list (name fb:en.elisha_m_pease "Elisha M. Pease") (name fb:en.fletcher_stockdale "Fletcher Stockdale") (name fb:en.francis_lubbock "Francis Lubbock") (name fb:en.rick_perry "Rick Perry") (name fb:en.james_allred "James Allred") (name fb:en.price_daniel "Price Daniel") (name fb:en.oran_m_roberts "Oran M. Roberts") (name fb:m.0tkjl5_ "Shirley Abbott") (name fb:en.william_p_hobby "William P. Hobby") (name fb:en.greg_abbott "Greg Abbott"))) (type fb:government.politician) who won the governor election in texas? James Allred 10.516 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.texas)) (value (list (name fb:en.elisha_m_pease "Elisha M. Pease") (name fb:en.fletcher_stockdale "Fletcher Stockdale") (name fb:en.francis_lubbock "Francis Lubbock") (name fb:en.rick_perry "Rick Perry") (name fb:en.james_allred "James Allred") (name fb:en.price_daniel "Price Daniel") (name fb:en.oran_m_roberts "Oran M. Roberts") (name fb:m.0tkjl5_ "Shirley Abbott") (name fb:en.william_p_hobby "William P. Hobby") (name fb:en.greg_abbott "Greg Abbott"))) (type fb:government.politician) who won the governor election in texas? Price Daniel 10.516 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.texas)) (value (list (name fb:en.elisha_m_pease "Elisha M. Pease") (name fb:en.fletcher_stockdale "Fletcher Stockdale") (name fb:en.francis_lubbock "Francis Lubbock") (name fb:en.rick_perry "Rick Perry") (name fb:en.james_allred "James Allred") (name fb:en.price_daniel "Price Daniel") (name fb:en.oran_m_roberts "Oran M. Roberts") (name fb:m.0tkjl5_ "Shirley Abbott") (name fb:en.william_p_hobby "William P. Hobby") (name fb:en.greg_abbott "Greg Abbott"))) (type fb:government.politician) who won the governor election in texas? Oran M. Roberts 10.516 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.texas)) (value (list (name fb:en.elisha_m_pease "Elisha M. Pease") (name fb:en.fletcher_stockdale "Fletcher Stockdale") (name fb:en.francis_lubbock "Francis Lubbock") (name fb:en.rick_perry "Rick Perry") (name fb:en.james_allred "James Allred") (name fb:en.price_daniel "Price Daniel") (name fb:en.oran_m_roberts "Oran M. Roberts") (name fb:m.0tkjl5_ "Shirley Abbott") (name fb:en.william_p_hobby "William P. Hobby") (name fb:en.greg_abbott "Greg Abbott"))) (type fb:government.politician) who won the governor election in texas? Shirley Abbott 10.516 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.texas)) (value (list (name fb:en.elisha_m_pease "Elisha M. Pease") (name fb:en.fletcher_stockdale "Fletcher Stockdale") (name fb:en.francis_lubbock "Francis Lubbock") (name fb:en.rick_perry "Rick Perry") (name fb:en.james_allred "James Allred") (name fb:en.price_daniel "Price Daniel") (name fb:en.oran_m_roberts "Oran M. Roberts") (name fb:m.0tkjl5_ "Shirley Abbott") (name fb:en.william_p_hobby "William P. Hobby") (name fb:en.greg_abbott "Greg Abbott"))) (type fb:government.politician) who won the governor election in texas? William P. Hobby 10.516 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.texas)) (value (list (name fb:en.elisha_m_pease "Elisha M. Pease") (name fb:en.fletcher_stockdale "Fletcher Stockdale") (name fb:en.francis_lubbock "Francis Lubbock") (name fb:en.rick_perry "Rick Perry") (name fb:en.james_allred "James Allred") (name fb:en.price_daniel "Price Daniel") (name fb:en.oran_m_roberts "Oran M. Roberts") (name fb:m.0tkjl5_ "Shirley Abbott") (name fb:en.william_p_hobby "William P. Hobby") (name fb:en.greg_abbott "Greg Abbott"))) (type fb:government.politician) who won the governor election in texas? Greg Abbott 10.516 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.texas)) (value (list (name fb:en.elisha_m_pease "Elisha M. Pease") (name fb:en.fletcher_stockdale "Fletcher Stockdale") (name fb:en.francis_lubbock "Francis Lubbock") (name fb:en.rick_perry "Rick Perry") (name fb:en.james_allred "James Allred") (name fb:en.price_daniel "Price Daniel") (name fb:en.oran_m_roberts "Oran M. Roberts") (name fb:m.0tkjl5_ "Shirley Abbott") (name fb:en.william_p_hobby "William P. Hobby") (name fb:en.greg_abbott "Greg Abbott"))) (type fb:government.politician) what does helen flanagan do? Coronation Street 1.768 formula ((lambda x (fb:tv.tv_program.regular_cast (fb:tv.regular_tv_appearance.actor (var x)))) fb:en.helen_flanagan)) (value (list (name fb:en.coronation_street "Coronation Street"))) (type fb:tv.tv_program) where is tennessee river? Watts Bar Lake 2.639 formula (and (fb:type.object.type fb:location.location) (fb:geography.lake.inflow fb:en.tennessee_river))) (value (list (name fb:en.watts_bar_lake "Watts Bar Lake") (name fb:en.guntersville_lake "Guntersville Lake") (name fb:en.nickajack_lake "Nickajack Lake") (name fb:en.chickamauga_lake "Chickamauga Lake") (name fb:en.wilson_lake_alabama "Wilson Lake"))) (type fb:geography.lake) where is tennessee river? Guntersville Lake 2.639 formula (and (fb:type.object.type fb:location.location) (fb:geography.lake.inflow fb:en.tennessee_river))) (value (list (name fb:en.watts_bar_lake "Watts Bar Lake") (name fb:en.guntersville_lake "Guntersville Lake") (name fb:en.nickajack_lake "Nickajack Lake") (name fb:en.chickamauga_lake "Chickamauga Lake") (name fb:en.wilson_lake_alabama "Wilson Lake"))) (type fb:geography.lake) where is tennessee river? Nickajack Lake 2.639 formula (and (fb:type.object.type fb:location.location) (fb:geography.lake.inflow fb:en.tennessee_river))) (value (list (name fb:en.watts_bar_lake "Watts Bar Lake") (name fb:en.guntersville_lake "Guntersville Lake") (name fb:en.nickajack_lake "Nickajack Lake") (name fb:en.chickamauga_lake "Chickamauga Lake") (name fb:en.wilson_lake_alabama "Wilson Lake"))) (type fb:geography.lake) where is tennessee river? Chickamauga Lake 2.639 formula (and (fb:type.object.type fb:location.location) (fb:geography.lake.inflow fb:en.tennessee_river))) (value (list (name fb:en.watts_bar_lake "Watts Bar Lake") (name fb:en.guntersville_lake "Guntersville Lake") (name fb:en.nickajack_lake "Nickajack Lake") (name fb:en.chickamauga_lake "Chickamauga Lake") (name fb:en.wilson_lake_alabama "Wilson Lake"))) (type fb:geography.lake) where is tennessee river? Wilson Lake 2.639 formula (and (fb:type.object.type fb:location.location) (fb:geography.lake.inflow fb:en.tennessee_river))) (value (list (name fb:en.watts_bar_lake "Watts Bar Lake") (name fb:en.guntersville_lake "Guntersville Lake") (name fb:en.nickajack_lake "Nickajack Lake") (name fb:en.chickamauga_lake "Chickamauga Lake") (name fb:en.wilson_lake_alabama "Wilson Lake"))) (type fb:geography.lake) what are some major events in venezuela? Venezuelan War of Independence 19.202 formula (and (fb:type.object.type fb:time.event) (!fb:location.location.events fb:en.venezuela))) (value (list (name fb:en.venezuelan_war_of_independence "Venezuelan War of Independence") (name fb:en.machurucuto_incident "Machurucuto Incident") (name fb:en.may_2007_rctv_protests "May 2007 RCTV protests") (name fb:m.0dgqgqf "Venezuela Crisis of 1902–1903") (name fb:m.0cnymms "Dutch–Venezuela War") (name fb:en.los_maniceros_massacre "Los Maniceros massacre") (name fb:m.0ggbq0x "Bombardment of Fort San Carlos") (name fb:m.0c0349z "12th G-15 summit") (name fb:en.battle_of_san_mateo "Battle of La Victoria"))) (type (union fb:time.event)) what are some major events in venezuela? Machurucuto Incident 19.202 formula (and (fb:type.object.type fb:time.event) (!fb:location.location.events fb:en.venezuela))) (value (list (name fb:en.venezuelan_war_of_independence "Venezuelan War of Independence") (name fb:en.machurucuto_incident "Machurucuto Incident") (name fb:en.may_2007_rctv_protests "May 2007 RCTV protests") (name fb:m.0dgqgqf "Venezuela Crisis of 1902–1903") (name fb:m.0cnymms "Dutch–Venezuela War") (name fb:en.los_maniceros_massacre "Los Maniceros massacre") (name fb:m.0ggbq0x "Bombardment of Fort San Carlos") (name fb:m.0c0349z "12th G-15 summit") (name fb:en.battle_of_san_mateo "Battle of La Victoria"))) (type (union fb:time.event)) what are some major events in venezuela? May 2007 RCTV protests 19.202 formula (and (fb:type.object.type fb:time.event) (!fb:location.location.events fb:en.venezuela))) (value (list (name fb:en.venezuelan_war_of_independence "Venezuelan War of Independence") (name fb:en.machurucuto_incident "Machurucuto Incident") (name fb:en.may_2007_rctv_protests "May 2007 RCTV protests") (name fb:m.0dgqgqf "Venezuela Crisis of 1902–1903") (name fb:m.0cnymms "Dutch–Venezuela War") (name fb:en.los_maniceros_massacre "Los Maniceros massacre") (name fb:m.0ggbq0x "Bombardment of Fort San Carlos") (name fb:m.0c0349z "12th G-15 summit") (name fb:en.battle_of_san_mateo "Battle of La Victoria"))) (type (union fb:time.event)) what are some major events in venezuela? Venezuela Crisis of 1902–1903 19.202 formula (and (fb:type.object.type fb:time.event) (!fb:location.location.events fb:en.venezuela))) (value (list (name fb:en.venezuelan_war_of_independence "Venezuelan War of Independence") (name fb:en.machurucuto_incident "Machurucuto Incident") (name fb:en.may_2007_rctv_protests "May 2007 RCTV protests") (name fb:m.0dgqgqf "Venezuela Crisis of 1902–1903") (name fb:m.0cnymms "Dutch–Venezuela War") (name fb:en.los_maniceros_massacre "Los Maniceros massacre") (name fb:m.0ggbq0x "Bombardment of Fort San Carlos") (name fb:m.0c0349z "12th G-15 summit") (name fb:en.battle_of_san_mateo "Battle of La Victoria"))) (type (union fb:time.event)) what are some major events in venezuela? Dutch–Venezuela War 19.202 formula (and (fb:type.object.type fb:time.event) (!fb:location.location.events fb:en.venezuela))) (value (list (name fb:en.venezuelan_war_of_independence "Venezuelan War of Independence") (name fb:en.machurucuto_incident "Machurucuto Incident") (name fb:en.may_2007_rctv_protests "May 2007 RCTV protests") (name fb:m.0dgqgqf "Venezuela Crisis of 1902–1903") (name fb:m.0cnymms "Dutch–Venezuela War") (name fb:en.los_maniceros_massacre "Los Maniceros massacre") (name fb:m.0ggbq0x "Bombardment of Fort San Carlos") (name fb:m.0c0349z "12th G-15 summit") (name fb:en.battle_of_san_mateo "Battle of La Victoria"))) (type (union fb:time.event)) what are some major events in venezuela? Los Maniceros massacre 19.202 formula (and (fb:type.object.type fb:time.event) (!fb:location.location.events fb:en.venezuela))) (value (list (name fb:en.venezuelan_war_of_independence "Venezuelan War of Independence") (name fb:en.machurucuto_incident "Machurucuto Incident") (name fb:en.may_2007_rctv_protests "May 2007 RCTV protests") (name fb:m.0dgqgqf "Venezuela Crisis of 1902–1903") (name fb:m.0cnymms "Dutch–Venezuela War") (name fb:en.los_maniceros_massacre "Los Maniceros massacre") (name fb:m.0ggbq0x "Bombardment of Fort San Carlos") (name fb:m.0c0349z "12th G-15 summit") (name fb:en.battle_of_san_mateo "Battle of La Victoria"))) (type (union fb:time.event)) what are some major events in venezuela? Bombardment of Fort San Carlos 19.202 formula (and (fb:type.object.type fb:time.event) (!fb:location.location.events fb:en.venezuela))) (value (list (name fb:en.venezuelan_war_of_independence "Venezuelan War of Independence") (name fb:en.machurucuto_incident "Machurucuto Incident") (name fb:en.may_2007_rctv_protests "May 2007 RCTV protests") (name fb:m.0dgqgqf "Venezuela Crisis of 1902–1903") (name fb:m.0cnymms "Dutch–Venezuela War") (name fb:en.los_maniceros_massacre "Los Maniceros massacre") (name fb:m.0ggbq0x "Bombardment of Fort San Carlos") (name fb:m.0c0349z "12th G-15 summit") (name fb:en.battle_of_san_mateo "Battle of La Victoria"))) (type (union fb:time.event)) what are some major events in venezuela? 12th G-15 summit 19.202 formula (and (fb:type.object.type fb:time.event) (!fb:location.location.events fb:en.venezuela))) (value (list (name fb:en.venezuelan_war_of_independence "Venezuelan War of Independence") (name fb:en.machurucuto_incident "Machurucuto Incident") (name fb:en.may_2007_rctv_protests "May 2007 RCTV protests") (name fb:m.0dgqgqf "Venezuela Crisis of 1902–1903") (name fb:m.0cnymms "Dutch–Venezuela War") (name fb:en.los_maniceros_massacre "Los Maniceros massacre") (name fb:m.0ggbq0x "Bombardment of Fort San Carlos") (name fb:m.0c0349z "12th G-15 summit") (name fb:en.battle_of_san_mateo "Battle of La Victoria"))) (type (union fb:time.event)) what are some major events in venezuela? Battle of La Victoria 19.202 formula (and (fb:type.object.type fb:time.event) (!fb:location.location.events fb:en.venezuela))) (value (list (name fb:en.venezuelan_war_of_independence "Venezuelan War of Independence") (name fb:en.machurucuto_incident "Machurucuto Incident") (name fb:en.may_2007_rctv_protests "May 2007 RCTV protests") (name fb:m.0dgqgqf "Venezuela Crisis of 1902–1903") (name fb:m.0cnymms "Dutch–Venezuela War") (name fb:en.los_maniceros_massacre "Los Maniceros massacre") (name fb:m.0ggbq0x "Bombardment of Fort San Carlos") (name fb:m.0c0349z "12th G-15 summit") (name fb:en.battle_of_san_mateo "Battle of La Victoria"))) (type (union fb:time.event)) what guitar does corey taylor play? Bass guitar 6.481 formula (!fb:music.group_member.instruments_played fb:en.corey_taylor)) (value (list (name fb:en.guitar Guitar) (name fb:en.bass_guitar "Bass guitar") (name fb:en.drum Drum))) (type fb:music.instrument) who was president after franklin d. roosevelt? Harry S. Truman 12.275 formula (fb:government.us_vice_president.to_president fb:en.franklin_d_roosevelt)) (value (list (name fb:en.harry_s_truman "Harry S. Truman") (name fb:en.henry_a_wallace "Henry A. Wallace") (name fb:en.john_nance_garner "John Nance Garner"))) (type fb:government.us_vice_president) who was president after franklin d. roosevelt? Henry A. Wallace 12.275 formula (fb:government.us_vice_president.to_president fb:en.franklin_d_roosevelt)) (value (list (name fb:en.harry_s_truman "Harry S. Truman") (name fb:en.henry_a_wallace "Henry A. Wallace") (name fb:en.john_nance_garner "John Nance Garner"))) (type fb:government.us_vice_president) who was president after franklin d. roosevelt? John Nance Garner 12.275 formula (fb:government.us_vice_president.to_president fb:en.franklin_d_roosevelt)) (value (list (name fb:en.harry_s_truman "Harry S. Truman") (name fb:en.henry_a_wallace "Henry A. Wallace") (name fb:en.john_nance_garner "John Nance Garner"))) (type fb:government.us_vice_president) under what political system does the united states government operate? Federal republic 13.862 formula (!fb:location.country.form_of_government fb:en.united_states_of_america)) (value (list (name fb:en.federal_republic "Federal republic") (name fb:en.presidential_system "Presidential system") (name fb:en.constitutional_republic "Constitutional republic"))) (type fb:government.form_of_government) under what political system does the united states government operate? Presidential system 13.862 formula (!fb:location.country.form_of_government fb:en.united_states_of_america)) (value (list (name fb:en.federal_republic "Federal republic") (name fb:en.presidential_system "Presidential system") (name fb:en.constitutional_republic "Constitutional republic"))) (type fb:government.form_of_government) under what political system does the united states government operate? Constitutional republic 13.862 formula (!fb:location.country.form_of_government fb:en.united_states_of_america)) (value (list (name fb:en.federal_republic "Federal republic") (name fb:en.presidential_system "Presidential system") (name fb:en.constitutional_republic "Constitutional republic"))) (type fb:government.form_of_government) where did jennifer arnold go to medical school? University of California, Los Angeles 11.461 formula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.jennifer_arnold)))) (value (list (name fb:en.university_of_california_los_angeles "University of California, Los Angeles") (name fb:en.university_of_nairobi "University of Nairobi"))) (type fb:education.educational_institution) where did jennifer arnold go to medical school? University of Nairobi 11.461 formula (and (fb:type.object.type fb:education.educational_institution) (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.jennifer_arnold)))) (value (list (name fb:en.university_of_california_los_angeles "University of California, Los Angeles") (name fb:en.university_of_nairobi "University of Nairobi"))) (type fb:education.educational_institution) what is the state motto of ohio? West Virginia 12.038 formula (and (fb:type.object.type fb:location.us_state) ((lambda x (!fb:location.adjoining_relationship.adjoins (!fb:location.location.adjoin_s (var x)))) fb:en.ohio))) (value (list (name fb:en.pennsylvania Pennsylvania) (name fb:en.west_virginia "West Virginia") (name fb:en.kentucky Kentucky) (name fb:en.indiana Indiana) (name fb:en.michigan Michigan))) (type (union fb:location.us_state)) what type of music did mozart composed? Classical music 15.242 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.wolfgang_amadeus_mozart))) (value (list (name fb:en.european_classical_music "Classical music") (name fb:en.chamber_music "Chamber music") (name fb:m.05lls Opera) (name fb:en.art_song "Art song") (name fb:m.021dvj Ballet))) (type (union fb:music.genre)) what type of music did mozart composed? Chamber music 15.242 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.wolfgang_amadeus_mozart))) (value (list (name fb:en.european_classical_music "Classical music") (name fb:en.chamber_music "Chamber music") (name fb:m.05lls Opera) (name fb:en.art_song "Art song") (name fb:m.021dvj Ballet))) (type (union fb:music.genre)) what type of music did mozart composed? Art song 15.242 formula (and (fb:type.object.type fb:music.genre) (!fb:music.artist.genre fb:en.wolfgang_amadeus_mozart))) (value (list (name fb:en.european_classical_music "Classical music") (name fb:en.chamber_music "Chamber music") (name fb:m.05lls Opera) (name fb:en.art_song "Art song") (name fb:m.021dvj Ballet))) (type (union fb:music.genre)) what stones albums did mick taylor play on? Swinging London 13.382 formula (and (fb:type.object.type fb:music.album) ((lambda x (!fb:music.recording_contribution.album (!fb:music.artist.contribution (var x)))) fb:en.mick_taylor))) (value (list (name fb:m.01jmsv4 Crusade) (name fb:en.downwind Downwind) (name fb:m.01lj2v3 "Swinging London"))) (type (union fb:music.album)) how many kids were there in the kennedy family? Kennedy family 5.354 formula (!fb:people.family_member.family fb:en.john_f_kennedy)) (value (list (name fb:en.kennedy_family "Kennedy family"))) (type fb:people.family) which barcelona airport is closest to the port? Barcelona–El Prat Airport 16.351 formula (!fb:location.location.nearby_airports fb:en.barcelona)) (value (list (name fb:en.barcelona_international_airport "Barcelona–El Prat Airport"))) (type fb:aviation.airport) where has the english language evolved from? United Kingdom 14.814 formula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.english))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.canada Canada) (name fb:en.south_africa "South Africa") (name fb:en.philippines Philippines) (name fb:en.hong_kong "Hong Kong") (name fb:en.republic_of_ireland Ireland) (name fb:en.nigeria Nigeria) (name fb:en.northern_ireland "Northern Ireland"))) (type fb:location.country) where has the english language evolved from? South Africa 14.814 formula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.english))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.canada Canada) (name fb:en.south_africa "South Africa") (name fb:en.philippines Philippines) (name fb:en.hong_kong "Hong Kong") (name fb:en.republic_of_ireland Ireland) (name fb:en.nigeria Nigeria) (name fb:en.northern_ireland "Northern Ireland"))) (type fb:location.country) where has the english language evolved from? Hong Kong 14.814 formula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.english))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.canada Canada) (name fb:en.south_africa "South Africa") (name fb:en.philippines Philippines) (name fb:en.hong_kong "Hong Kong") (name fb:en.republic_of_ireland Ireland) (name fb:en.nigeria Nigeria) (name fb:en.northern_ireland "Northern Ireland"))) (type fb:location.country) where has the english language evolved from? Northern Ireland 14.814 formula (and (fb:type.object.type fb:location.location) (fb:location.country.official_language fb:en.english))) (value (list (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom") (name fb:en.wales Wales) (name fb:en.england England) (name fb:en.canada Canada) (name fb:en.south_africa "South Africa") (name fb:en.philippines Philippines) (name fb:en.hong_kong "Hong Kong") (name fb:en.republic_of_ireland Ireland) (name fb:en.nigeria Nigeria) (name fb:en.northern_ireland "Northern Ireland"))) (type fb:location.country) what does matt damon play in? WSJ Topic Index 8.739 formula ((lambda x (fb:base.articleindices.resource_topic_index.index_items (fb:base.articleindices.index_item.topic (var x)))) fb:en.matt_damon)) (value (list (name fb:en.wsj_topic_index "WSJ Topic Index") (name fb:en.people_celebrities "People Celebrities"))) (type fb:base.articleindices.resource_topic_index) what does matt damon play in? People Celebrities 8.739 formula ((lambda x (fb:base.articleindices.resource_topic_index.index_items (fb:base.articleindices.index_item.topic (var x)))) fb:en.matt_damon)) (value (list (name fb:en.wsj_topic_index "WSJ Topic Index") (name fb:en.people_celebrities "People Celebrities"))) (type fb:base.articleindices.resource_topic_index) what was scottie pippen known for? Chicago Bulls 8.817 formula ((lambda x (!fb:basketball.basketball_historical_roster_position.team (!fb:basketball.basketball_player.former_teams (var x)))) fb:en.scottie_pippen)) (value (list (name fb:en.chicago_bulls "Chicago Bulls"))) (type fb:basketball.basketball_team) what continent does canada belong to? North America 20.156 formula (and (fb:type.object.type fb:location.continent) (!fb:location.location.containedby fb:en.canada))) (value (list (name fb:en.north_america "North America"))) (type (union fb:location.continent)) where did kobe earthquake happen? Great Hanshin earthquake 5.013 formula ((lambda x (!fb:user.robert.earthquakes.earthquake_nearest_location.earthquake (!fb:user.robert.earthquakes.earthquake_epicenter.earthquakes_centered_here (var x)))) fb:en.kobe)) (value (list (name fb:en.great_hanshin_earthquake "Great Hanshin earthquake"))) (type fb:user.robert.earthquakes.earthquake) what other movies is josh hutcherson in? The Kids Are All Right 11.657 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.josh_hutcherson))) (value (list (name fb:m.09tqkv2 "The Kids Are All Right") (name fb:m.0gkz15s "The Hunger Games") (name fb:en.bridge_to_terabithia_2007 "Bridge to Terabithia"))) (type (union fb:award.award_nominated_work)) what other movies is josh hutcherson in? The Hunger Games 11.657 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.josh_hutcherson))) (value (list (name fb:m.09tqkv2 "The Kids Are All Right") (name fb:m.0gkz15s "The Hunger Games") (name fb:en.bridge_to_terabithia_2007 "Bridge to Terabithia"))) (type (union fb:award.award_nominated_work)) what other movies is josh hutcherson in? Bridge to Terabithia 11.657 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.josh_hutcherson))) (value (list (name fb:m.09tqkv2 "The Kids Are All Right") (name fb:m.0gkz15s "The Hunger Games") (name fb:en.bridge_to_terabithia_2007 "Bridge to Terabithia"))) (type (union fb:award.award_nominated_work)) what was hitler the leader of? Nazi Party 14.767 formula ((lambda x (fb:government.political_party.politicians_in_this_party (fb:government.political_party_tenure.politician (var x)))) fb:en.adolf_hitler)) (value (list (name fb:en.national_socialist_german_workers_party "Nazi Party") (name fb:en.german_workers_party "German Workers' Party"))) (type fb:government.political_party) what was hitler the leader of? German Workers' Party 14.767 formula ((lambda x (fb:government.political_party.politicians_in_this_party (fb:government.political_party_tenure.politician (var x)))) fb:en.adolf_hitler)) (value (list (name fb:en.national_socialist_german_workers_party "Nazi Party") (name fb:en.german_workers_party "German Workers' Party"))) (type fb:government.political_party) what awards did marilyn monroe won? Playboy Playmate 13.908 formula (and (fb:type.object.type fb:award.award_category) ((lambda x (!fb:award.award_honor.award (!fb:award.award_winner.awards_won (var x)))) fb:en.marliyn_monroe))) (value (list (name fb:en.playmate "Playboy Playmate") (name fb:m.0c1fs8r "David di Donatello Golden Plate Award") (name fb:m.0l_d69j "Golden Globe Henrietta Award for World Film Favorites") (name fb:en.golden_globe_award_for_best_actress_-_motion_picture_musical_or_comedy "Golden Globe Award for Best Actress - Musical or Comedy Film"))) (type (union fb:award.award_category)) what awards did marilyn monroe won? David di Donatello Golden Plate Award 13.908 formula (and (fb:type.object.type fb:award.award_category) ((lambda x (!fb:award.award_honor.award (!fb:award.award_winner.awards_won (var x)))) fb:en.marliyn_monroe))) (value (list (name fb:en.playmate "Playboy Playmate") (name fb:m.0c1fs8r "David di Donatello Golden Plate Award") (name fb:m.0l_d69j "Golden Globe Henrietta Award for World Film Favorites") (name fb:en.golden_globe_award_for_best_actress_-_motion_picture_musical_or_comedy "Golden Globe Award for Best Actress - Musical or Comedy Film"))) (type (union fb:award.award_category)) what awards did marilyn monroe won? Golden Globe Henrietta Award for World Film Favorites 13.908 formula (and (fb:type.object.type fb:award.award_category) ((lambda x (!fb:award.award_honor.award (!fb:award.award_winner.awards_won (var x)))) fb:en.marliyn_monroe))) (value (list (name fb:en.playmate "Playboy Playmate") (name fb:m.0c1fs8r "David di Donatello Golden Plate Award") (name fb:m.0l_d69j "Golden Globe Henrietta Award for World Film Favorites") (name fb:en.golden_globe_award_for_best_actress_-_motion_picture_musical_or_comedy "Golden Globe Award for Best Actress - Musical or Comedy Film"))) (type (union fb:award.award_category)) what awards did marilyn monroe won? Golden Globe Award for Best Actress - Musical or Comedy Film 13.908 formula (and (fb:type.object.type fb:award.award_category) ((lambda x (!fb:award.award_honor.award (!fb:award.award_winner.awards_won (var x)))) fb:en.marliyn_monroe))) (value (list (name fb:en.playmate "Playboy Playmate") (name fb:m.0c1fs8r "David di Donatello Golden Plate Award") (name fb:m.0l_d69j "Golden Globe Henrietta Award for World Film Favorites") (name fb:en.golden_globe_award_for_best_actress_-_motion_picture_musical_or_comedy "Golden Globe Award for Best Actress - Musical or Comedy Film"))) (type (union fb:award.award_category)) what kind of government does iran have after 1979? Unitary state 15.289 formula (!fb:location.country.form_of_government fb:en.iran)) (value (list (name fb:en.unitary_state "Unitary state") (name fb:en.theocracy Theocracy) (name fb:en.islamic_republic "Islamic republic"))) (type fb:government.form_of_government) what kind of government does iran have after 1979? Islamic republic 15.289 formula (!fb:location.country.form_of_government fb:en.iran)) (value (list (name fb:en.unitary_state "Unitary state") (name fb:en.theocracy Theocracy) (name fb:en.islamic_republic "Islamic republic"))) (type fb:government.form_of_government) where did harper lee attend high school? University of Oxford 10.773 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.harper_lee))) (value (list (name fb:en.university_of_oxford "University of Oxford") (name fb:en.university_of_alabama_school_of_law "University of Alabama School of Law") (name fb:m.0crdc8g "Monroe County High School") (name fb:en.huntingdon_college "Huntingdon College") (name fb:en.university_of_alabama "University of Alabama"))) (type fb:education.educational_institution) where did harper lee attend high school? University of Alabama School of Law 10.773 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.harper_lee))) (value (list (name fb:en.university_of_oxford "University of Oxford") (name fb:en.university_of_alabama_school_of_law "University of Alabama School of Law") (name fb:m.0crdc8g "Monroe County High School") (name fb:en.huntingdon_college "Huntingdon College") (name fb:en.university_of_alabama "University of Alabama"))) (type fb:education.educational_institution) where did harper lee attend high school? Monroe County High School 10.773 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.harper_lee))) (value (list (name fb:en.university_of_oxford "University of Oxford") (name fb:en.university_of_alabama_school_of_law "University of Alabama School of Law") (name fb:m.0crdc8g "Monroe County High School") (name fb:en.huntingdon_college "Huntingdon College") (name fb:en.university_of_alabama "University of Alabama"))) (type fb:education.educational_institution) where did harper lee attend high school? Huntingdon College 10.773 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.harper_lee))) (value (list (name fb:en.university_of_oxford "University of Oxford") (name fb:en.university_of_alabama_school_of_law "University of Alabama School of Law") (name fb:m.0crdc8g "Monroe County High School") (name fb:en.huntingdon_college "Huntingdon College") (name fb:en.university_of_alabama "University of Alabama"))) (type fb:education.educational_institution) where did harper lee attend high school? University of Alabama 10.773 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.harper_lee))) (value (list (name fb:en.university_of_oxford "University of Oxford") (name fb:en.university_of_alabama_school_of_law "University of Alabama School of Law") (name fb:m.0crdc8g "Monroe County High School") (name fb:en.huntingdon_college "Huntingdon College") (name fb:en.university_of_alabama "University of Alabama"))) (type fb:education.educational_institution) what college did jrr tolkien go to? University of Oxford 15.802 formula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.j_r_r_tolkien))) (value (list (name fb:en.university_of_oxford "University of Oxford") (name fb:en.exeter_college_oxford "Exeter College, Oxford"))) (type fb:education.university) what college did jrr tolkien go to? Exeter College, Oxford 15.802 formula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.j_r_r_tolkien))) (value (list (name fb:en.university_of_oxford "University of Oxford") (name fb:en.exeter_college_oxford "Exeter College, Oxford"))) (type fb:education.university) who won the league cup in 2002? Venus Williams 7.497 formula ((lambda x (fb:tennis.tennis_player.matches_won (fb:tennis.tennis_match.date (var x)))) (date 2002 -1 -1))) (value (list (name fb:en.venus_williams "Venus Williams") (name fb:en.serena_williams "Serena Williams") (name fb:en.yevgeny_kafelnikov "Yevgeny Kafelnikov") (name fb:en.lleyton_hewitt "Lleyton Hewitt") (name fb:en.juan_carlos_ferrero "Juan Carlos Ferrero") (name fb:en.nicolas_escude "Nicolas Escudé"))) (type fb:tennis.tennis_player) who won the league cup in 2002? Serena Williams 7.497 formula ((lambda x (fb:tennis.tennis_player.matches_won (fb:tennis.tennis_match.date (var x)))) (date 2002 -1 -1))) (value (list (name fb:en.venus_williams "Venus Williams") (name fb:en.serena_williams "Serena Williams") (name fb:en.yevgeny_kafelnikov "Yevgeny Kafelnikov") (name fb:en.lleyton_hewitt "Lleyton Hewitt") (name fb:en.juan_carlos_ferrero "Juan Carlos Ferrero") (name fb:en.nicolas_escude "Nicolas Escudé"))) (type fb:tennis.tennis_player) who won the league cup in 2002? Yevgeny Kafelnikov 7.497 formula ((lambda x (fb:tennis.tennis_player.matches_won (fb:tennis.tennis_match.date (var x)))) (date 2002 -1 -1))) (value (list (name fb:en.venus_williams "Venus Williams") (name fb:en.serena_williams "Serena Williams") (name fb:en.yevgeny_kafelnikov "Yevgeny Kafelnikov") (name fb:en.lleyton_hewitt "Lleyton Hewitt") (name fb:en.juan_carlos_ferrero "Juan Carlos Ferrero") (name fb:en.nicolas_escude "Nicolas Escudé"))) (type fb:tennis.tennis_player) who won the league cup in 2002? Lleyton Hewitt 7.497 formula ((lambda x (fb:tennis.tennis_player.matches_won (fb:tennis.tennis_match.date (var x)))) (date 2002 -1 -1))) (value (list (name fb:en.venus_williams "Venus Williams") (name fb:en.serena_williams "Serena Williams") (name fb:en.yevgeny_kafelnikov "Yevgeny Kafelnikov") (name fb:en.lleyton_hewitt "Lleyton Hewitt") (name fb:en.juan_carlos_ferrero "Juan Carlos Ferrero") (name fb:en.nicolas_escude "Nicolas Escudé"))) (type fb:tennis.tennis_player) who won the league cup in 2002? Juan Carlos Ferrero 7.497 formula ((lambda x (fb:tennis.tennis_player.matches_won (fb:tennis.tennis_match.date (var x)))) (date 2002 -1 -1))) (value (list (name fb:en.venus_williams "Venus Williams") (name fb:en.serena_williams "Serena Williams") (name fb:en.yevgeny_kafelnikov "Yevgeny Kafelnikov") (name fb:en.lleyton_hewitt "Lleyton Hewitt") (name fb:en.juan_carlos_ferrero "Juan Carlos Ferrero") (name fb:en.nicolas_escude "Nicolas Escudé"))) (type fb:tennis.tennis_player) who won the league cup in 2002? Nicolas Escudé 7.497 formula ((lambda x (fb:tennis.tennis_player.matches_won (fb:tennis.tennis_match.date (var x)))) (date 2002 -1 -1))) (value (list (name fb:en.venus_williams "Venus Williams") (name fb:en.serena_williams "Serena Williams") (name fb:en.yevgeny_kafelnikov "Yevgeny Kafelnikov") (name fb:en.lleyton_hewitt "Lleyton Hewitt") (name fb:en.juan_carlos_ferrero "Juan Carlos Ferrero") (name fb:en.nicolas_escude "Nicolas Escudé"))) (type fb:tennis.tennis_player) in what country do people speak danish? Faroe Islands 12.794 formula (and (fb:type.object.type fb:location.country) (fb:location.country.official_language fb:en.danish_language))) (value (list (name fb:en.denmark Denmark) (name fb:en.faroe_islands "Faroe Islands"))) (type fb:location.country) where should a family stay in paris? Daphne Millbrook 8.625 formula (!fb:fictional_universe.fictional_setting.characters_that_have_lived_here fb:en.paris)) (value (list (name fb:m.0gdp61p "Daphne Millbrook"))) (type fb:fictional_universe.fictional_character) what was the name of benjamin franklin wife? Deborah Read 11.061 formula ((lambda x (!fb:people.marriage.spouse (!fb:people.person.spouse_s (var x)))) fb:en.benjamin_franklin)) (value (list (name fb:en.deborah_read "Deborah Read"))) (type fb:people.person) what type of government was utilized in ancient egypt? Unitary state 16.128 formula (fb:government.form_of_government.countries fb:en.egypt)) (value (list (name fb:en.unitary_state "Unitary state") (name fb:en.republic Republic) (name fb:en.semi-presidential_system "Semi-presidential system"))) (type fb:government.form_of_government) what type of government was utilized in ancient egypt? Semi-presidential system 16.128 formula (fb:government.form_of_government.countries fb:en.egypt)) (value (list (name fb:en.unitary_state "Unitary state") (name fb:en.republic Republic) (name fb:en.semi-presidential_system "Semi-presidential system"))) (type fb:government.form_of_government) what is the milwaukee brewers stadium called? Miller Park 16.449 formula (and (fb:type.object.type fb:sports.sports_facility) (fb:sports.sports_facility.teams fb:en.milwaukee_brewers))) (value (list (name fb:en.miller_park "Miller Park"))) (type (union fb:sports.sports_facility)) what other movies has tom hardy played in? The Firm 13.795 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.tom_cruise))) (value (list (name fb:en.the_firm "The Firm") (name fb:en.born_on_the_fourth_of_july_1989 "Born on the Fourth of July") (name fb:en.collateral Collateral) (name fb:en.interview_with_the_vampire_the_vampire_chronicles "Interview with the Vampire: The Vampire Chronicles") (name fb:m.051zy_b "A Few Good Men") (name fb:en.cocktail_1989 Cocktail) (name fb:en.jerry_maguire "Jerry Maguire") (name fb:en.tropic_thunder "Tropic Thunder") (name fb:en.magnolia_2000 Magnolia) (name fb:en.war_of_the_worlds "War of the Worlds"))) (type (union fb:award.award_nominated_work)) what other movies has tom hardy played in? Born on the Fourth of July 13.795 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.tom_cruise))) (value (list (name fb:en.the_firm "The Firm") (name fb:en.born_on_the_fourth_of_july_1989 "Born on the Fourth of July") (name fb:en.collateral Collateral) (name fb:en.interview_with_the_vampire_the_vampire_chronicles "Interview with the Vampire: The Vampire Chronicles") (name fb:m.051zy_b "A Few Good Men") (name fb:en.cocktail_1989 Cocktail) (name fb:en.jerry_maguire "Jerry Maguire") (name fb:en.tropic_thunder "Tropic Thunder") (name fb:en.magnolia_2000 Magnolia) (name fb:en.war_of_the_worlds "War of the Worlds"))) (type (union fb:award.award_nominated_work)) what other movies has tom hardy played in? Interview with the Vampire: The Vampire Chronicles 13.795 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.tom_cruise))) (value (list (name fb:en.the_firm "The Firm") (name fb:en.born_on_the_fourth_of_july_1989 "Born on the Fourth of July") (name fb:en.collateral Collateral) (name fb:en.interview_with_the_vampire_the_vampire_chronicles "Interview with the Vampire: The Vampire Chronicles") (name fb:m.051zy_b "A Few Good Men") (name fb:en.cocktail_1989 Cocktail) (name fb:en.jerry_maguire "Jerry Maguire") (name fb:en.tropic_thunder "Tropic Thunder") (name fb:en.magnolia_2000 Magnolia) (name fb:en.war_of_the_worlds "War of the Worlds"))) (type (union fb:award.award_nominated_work)) what other movies has tom hardy played in? A Few Good Men 13.795 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.tom_cruise))) (value (list (name fb:en.the_firm "The Firm") (name fb:en.born_on_the_fourth_of_july_1989 "Born on the Fourth of July") (name fb:en.collateral Collateral) (name fb:en.interview_with_the_vampire_the_vampire_chronicles "Interview with the Vampire: The Vampire Chronicles") (name fb:m.051zy_b "A Few Good Men") (name fb:en.cocktail_1989 Cocktail) (name fb:en.jerry_maguire "Jerry Maguire") (name fb:en.tropic_thunder "Tropic Thunder") (name fb:en.magnolia_2000 Magnolia) (name fb:en.war_of_the_worlds "War of the Worlds"))) (type (union fb:award.award_nominated_work)) what other movies has tom hardy played in? Jerry Maguire 13.795 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.tom_cruise))) (value (list (name fb:en.the_firm "The Firm") (name fb:en.born_on_the_fourth_of_july_1989 "Born on the Fourth of July") (name fb:en.collateral Collateral) (name fb:en.interview_with_the_vampire_the_vampire_chronicles "Interview with the Vampire: The Vampire Chronicles") (name fb:m.051zy_b "A Few Good Men") (name fb:en.cocktail_1989 Cocktail) (name fb:en.jerry_maguire "Jerry Maguire") (name fb:en.tropic_thunder "Tropic Thunder") (name fb:en.magnolia_2000 Magnolia) (name fb:en.war_of_the_worlds "War of the Worlds"))) (type (union fb:award.award_nominated_work)) what other movies has tom hardy played in? Tropic Thunder 13.795 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.tom_cruise))) (value (list (name fb:en.the_firm "The Firm") (name fb:en.born_on_the_fourth_of_july_1989 "Born on the Fourth of July") (name fb:en.collateral Collateral) (name fb:en.interview_with_the_vampire_the_vampire_chronicles "Interview with the Vampire: The Vampire Chronicles") (name fb:m.051zy_b "A Few Good Men") (name fb:en.cocktail_1989 Cocktail) (name fb:en.jerry_maguire "Jerry Maguire") (name fb:en.tropic_thunder "Tropic Thunder") (name fb:en.magnolia_2000 Magnolia) (name fb:en.war_of_the_worlds "War of the Worlds"))) (type (union fb:award.award_nominated_work)) what other movies has tom hardy played in? War of the Worlds 13.795 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.tom_cruise))) (value (list (name fb:en.the_firm "The Firm") (name fb:en.born_on_the_fourth_of_july_1989 "Born on the Fourth of July") (name fb:en.collateral Collateral) (name fb:en.interview_with_the_vampire_the_vampire_chronicles "Interview with the Vampire: The Vampire Chronicles") (name fb:m.051zy_b "A Few Good Men") (name fb:en.cocktail_1989 Cocktail) (name fb:en.jerry_maguire "Jerry Maguire") (name fb:en.tropic_thunder "Tropic Thunder") (name fb:en.magnolia_2000 Magnolia) (name fb:en.war_of_the_worlds "War of the Worlds"))) (type (union fb:award.award_nominated_work)) what language do maltese speak? Maltese people 9.46 formula (fb:people.ethnicity.languages_spoken fb:en.maltese_language)) (value (list (name fb:en.maltese_people "Maltese people") (name fb:en.maltese_americans "Maltese American") (name fb:en.maltese_in_britain "Maltese people in the United Kingdom"))) (type fb:people.ethnicity) what language do maltese speak? Maltese American 9.46 formula (fb:people.ethnicity.languages_spoken fb:en.maltese_language)) (value (list (name fb:en.maltese_people "Maltese people") (name fb:en.maltese_americans "Maltese American") (name fb:en.maltese_in_britain "Maltese people in the United Kingdom"))) (type fb:people.ethnicity) what language do maltese speak? Maltese people in the United Kingdom 9.46 formula (fb:people.ethnicity.languages_spoken fb:en.maltese_language)) (value (list (name fb:en.maltese_people "Maltese people") (name fb:en.maltese_americans "Maltese American") (name fb:en.maltese_in_britain "Maltese people in the United Kingdom"))) (type fb:people.ethnicity) what did thomas edison do for the world? Incandescent light bulb 14.631 formula (!fb:user.lindenb.default_domain.scientist.known_for fb:en.thomas_edison)) (value (list (name fb:en.phonograph Phonograph) (name fb:en.incandescent_light_bulb "Incandescent light bulb"))) (type fb:common.topic) where is shakira from? Los Angeles 0.116 formula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.shakira))) (value (list (name fb:en.barranquilla Barranquilla) (name fb:en.los_angeles "Los Angeles"))) (type fb:location.location) what is the most populated state in united states? South Carolina 17.268 formula (and (fb:type.object.type fb:location.us_state) (fb:location.administrative_division.first_level_division_of fb:en.united_states_of_america))) (value (list (name fb:en.texas Texas) (name fb:en.utah Utah) (name fb:en.louisiana Louisiana) (name fb:en.south_carolina "South Carolina") (name fb:en.west_virginia "West Virginia") (name fb:en.wyoming Wyoming) (name fb:en.virginia Virginia) (name fb:en.washington Washington) (name fb:en.wisconsin Wisconsin) (name fb:en.new_york_state "New York"))) (type (union fb:location.us_state)) what is the most populated state in united states? West Virginia 17.268 formula (and (fb:type.object.type fb:location.us_state) (fb:location.administrative_division.first_level_division_of fb:en.united_states_of_america))) (value (list (name fb:en.texas Texas) (name fb:en.utah Utah) (name fb:en.louisiana Louisiana) (name fb:en.south_carolina "South Carolina") (name fb:en.west_virginia "West Virginia") (name fb:en.wyoming Wyoming) (name fb:en.virginia Virginia) (name fb:en.washington Washington) (name fb:en.wisconsin Wisconsin) (name fb:en.new_york_state "New York"))) (type (union fb:location.us_state)) what is the most populated state in united states? New York 17.268 formula (and (fb:type.object.type fb:location.us_state) (fb:location.administrative_division.first_level_division_of fb:en.united_states_of_america))) (value (list (name fb:en.texas Texas) (name fb:en.utah Utah) (name fb:en.louisiana Louisiana) (name fb:en.south_carolina "South Carolina") (name fb:en.west_virginia "West Virginia") (name fb:en.wyoming Wyoming) (name fb:en.virginia Virginia) (name fb:en.washington Washington) (name fb:en.wisconsin Wisconsin) (name fb:en.new_york_state "New York"))) (type (union fb:location.us_state)) who is my state senator arizona? Barry Goldwater 8.135 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.arizona)) (value (list (name fb:en.barry_goldwater "Barry Goldwater") (name fb:en.ralph_h_cameron "Ralph H. Cameron") (name fb:en.jon_kyl "Jon Kyl") (name fb:en.john_mccain "John McCain") (name fb:en.carl_t_hayden "Carl Hayden") (name fb:en.marcus_a_smith "Marcus A. Smith") (name fb:en.ernest_mcfarland "Ernest McFarland") (name fb:en.jeff_flake "Jeff Flake") (name fb:en.paul_fannin "Paul Fannin") (name fb:en.dennis_deconcini "Dennis DeConcini"))) (type fb:government.politician) who is my state senator arizona? Ralph H. Cameron 8.135 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.arizona)) (value (list (name fb:en.barry_goldwater "Barry Goldwater") (name fb:en.ralph_h_cameron "Ralph H. Cameron") (name fb:en.jon_kyl "Jon Kyl") (name fb:en.john_mccain "John McCain") (name fb:en.carl_t_hayden "Carl Hayden") (name fb:en.marcus_a_smith "Marcus A. Smith") (name fb:en.ernest_mcfarland "Ernest McFarland") (name fb:en.jeff_flake "Jeff Flake") (name fb:en.paul_fannin "Paul Fannin") (name fb:en.dennis_deconcini "Dennis DeConcini"))) (type fb:government.politician) who is my state senator arizona? Jon Kyl 8.135 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.arizona)) (value (list (name fb:en.barry_goldwater "Barry Goldwater") (name fb:en.ralph_h_cameron "Ralph H. Cameron") (name fb:en.jon_kyl "Jon Kyl") (name fb:en.john_mccain "John McCain") (name fb:en.carl_t_hayden "Carl Hayden") (name fb:en.marcus_a_smith "Marcus A. Smith") (name fb:en.ernest_mcfarland "Ernest McFarland") (name fb:en.jeff_flake "Jeff Flake") (name fb:en.paul_fannin "Paul Fannin") (name fb:en.dennis_deconcini "Dennis DeConcini"))) (type fb:government.politician) who is my state senator arizona? John McCain 8.135 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.arizona)) (value (list (name fb:en.barry_goldwater "Barry Goldwater") (name fb:en.ralph_h_cameron "Ralph H. Cameron") (name fb:en.jon_kyl "Jon Kyl") (name fb:en.john_mccain "John McCain") (name fb:en.carl_t_hayden "Carl Hayden") (name fb:en.marcus_a_smith "Marcus A. Smith") (name fb:en.ernest_mcfarland "Ernest McFarland") (name fb:en.jeff_flake "Jeff Flake") (name fb:en.paul_fannin "Paul Fannin") (name fb:en.dennis_deconcini "Dennis DeConcini"))) (type fb:government.politician) who is my state senator arizona? Carl Hayden 8.135 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.arizona)) (value (list (name fb:en.barry_goldwater "Barry Goldwater") (name fb:en.ralph_h_cameron "Ralph H. Cameron") (name fb:en.jon_kyl "Jon Kyl") (name fb:en.john_mccain "John McCain") (name fb:en.carl_t_hayden "Carl Hayden") (name fb:en.marcus_a_smith "Marcus A. Smith") (name fb:en.ernest_mcfarland "Ernest McFarland") (name fb:en.jeff_flake "Jeff Flake") (name fb:en.paul_fannin "Paul Fannin") (name fb:en.dennis_deconcini "Dennis DeConcini"))) (type fb:government.politician) who is my state senator arizona? Marcus A. Smith 8.135 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.arizona)) (value (list (name fb:en.barry_goldwater "Barry Goldwater") (name fb:en.ralph_h_cameron "Ralph H. Cameron") (name fb:en.jon_kyl "Jon Kyl") (name fb:en.john_mccain "John McCain") (name fb:en.carl_t_hayden "Carl Hayden") (name fb:en.marcus_a_smith "Marcus A. Smith") (name fb:en.ernest_mcfarland "Ernest McFarland") (name fb:en.jeff_flake "Jeff Flake") (name fb:en.paul_fannin "Paul Fannin") (name fb:en.dennis_deconcini "Dennis DeConcini"))) (type fb:government.politician) who is my state senator arizona? Ernest McFarland 8.135 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.arizona)) (value (list (name fb:en.barry_goldwater "Barry Goldwater") (name fb:en.ralph_h_cameron "Ralph H. Cameron") (name fb:en.jon_kyl "Jon Kyl") (name fb:en.john_mccain "John McCain") (name fb:en.carl_t_hayden "Carl Hayden") (name fb:en.marcus_a_smith "Marcus A. Smith") (name fb:en.ernest_mcfarland "Ernest McFarland") (name fb:en.jeff_flake "Jeff Flake") (name fb:en.paul_fannin "Paul Fannin") (name fb:en.dennis_deconcini "Dennis DeConcini"))) (type fb:government.politician) who is my state senator arizona? Jeff Flake 8.135 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.arizona)) (value (list (name fb:en.barry_goldwater "Barry Goldwater") (name fb:en.ralph_h_cameron "Ralph H. Cameron") (name fb:en.jon_kyl "Jon Kyl") (name fb:en.john_mccain "John McCain") (name fb:en.carl_t_hayden "Carl Hayden") (name fb:en.marcus_a_smith "Marcus A. Smith") (name fb:en.ernest_mcfarland "Ernest McFarland") (name fb:en.jeff_flake "Jeff Flake") (name fb:en.paul_fannin "Paul Fannin") (name fb:en.dennis_deconcini "Dennis DeConcini"))) (type fb:government.politician) who is my state senator arizona? Paul Fannin 8.135 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.arizona)) (value (list (name fb:en.barry_goldwater "Barry Goldwater") (name fb:en.ralph_h_cameron "Ralph H. Cameron") (name fb:en.jon_kyl "Jon Kyl") (name fb:en.john_mccain "John McCain") (name fb:en.carl_t_hayden "Carl Hayden") (name fb:en.marcus_a_smith "Marcus A. Smith") (name fb:en.ernest_mcfarland "Ernest McFarland") (name fb:en.jeff_flake "Jeff Flake") (name fb:en.paul_fannin "Paul Fannin") (name fb:en.dennis_deconcini "Dennis DeConcini"))) (type fb:government.politician) who is my state senator arizona? Dennis DeConcini 8.135 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.arizona)) (value (list (name fb:en.barry_goldwater "Barry Goldwater") (name fb:en.ralph_h_cameron "Ralph H. Cameron") (name fb:en.jon_kyl "Jon Kyl") (name fb:en.john_mccain "John McCain") (name fb:en.carl_t_hayden "Carl Hayden") (name fb:en.marcus_a_smith "Marcus A. Smith") (name fb:en.ernest_mcfarland "Ernest McFarland") (name fb:en.jeff_flake "Jeff Flake") (name fb:en.paul_fannin "Paul Fannin") (name fb:en.dennis_deconcini "Dennis DeConcini"))) (type fb:government.politician) when does the vietnam war end? 20th century 14.815 formula (fb:time.event.includes_event fb:en.vietnam_war)) (value (list (name fb:en.20th_century "20th century") (name fb:en.1970s 1970s) (name fb:en.cold_war "Cold War") (name fb:en.1960s 1960s))) (type fb:time.event) when does the vietnam war end? Cold War 14.815 formula (fb:time.event.includes_event fb:en.vietnam_war)) (value (list (name fb:en.20th_century "20th century") (name fb:en.1970s 1970s) (name fb:en.cold_war "Cold War") (name fb:en.1960s 1960s))) (type fb:time.event) where does the tennessee river go? Ohio River 5.783 formula (and (fb:type.object.type fb:location.location) (!fb:geography.river.mouth fb:en.tennessee_river))) (value (list (name fb:en.ohio_river "Ohio River"))) (type fb:location.location) who did tom hanks play in apollo 13? Apollo 13 9.061 formula (fb:film.film.starring (and (fb:film.performance.actor fb:en.tom_hanks) (fb:film.performance.film fb:en.apollo_13_1995)))) (value (list (name fb:en.apollo_13_1995 "Apollo 13"))) (type fb:film.film) what language do they in ghana? English Language 16.748 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.ghana))) (value (list (name fb:en.english "English Language"))) (type (union fb:language.human_language)) what is utah's state capitol? Bonneville cutthroat trout 7.447 formula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.utah)) (value (list (name fb:en.bonneville_cutthroat_trout "Bonneville cutthroat trout") (name fb:en.calochortus_nuttallii "Calochortus nuttallii") (name fb:en.california_gull "California Gull") (name fb:m.0hzdkw5 Industry) (name fb:en.blue_spruce "Picea pungens"))) (type fb:location.symbol_of_administrative_division) what is utah's state capitol? Calochortus nuttallii 7.447 formula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.utah)) (value (list (name fb:en.bonneville_cutthroat_trout "Bonneville cutthroat trout") (name fb:en.calochortus_nuttallii "Calochortus nuttallii") (name fb:en.california_gull "California Gull") (name fb:m.0hzdkw5 Industry) (name fb:en.blue_spruce "Picea pungens"))) (type fb:location.symbol_of_administrative_division) what is utah's state capitol? California Gull 7.447 formula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.utah)) (value (list (name fb:en.bonneville_cutthroat_trout "Bonneville cutthroat trout") (name fb:en.calochortus_nuttallii "Calochortus nuttallii") (name fb:en.california_gull "California Gull") (name fb:m.0hzdkw5 Industry) (name fb:en.blue_spruce "Picea pungens"))) (type fb:location.symbol_of_administrative_division) what is utah's state capitol? Picea pungens 7.447 formula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.utah)) (value (list (name fb:en.bonneville_cutthroat_trout "Bonneville cutthroat trout") (name fb:en.calochortus_nuttallii "Calochortus nuttallii") (name fb:en.california_gull "California Gull") (name fb:m.0hzdkw5 Industry) (name fb:en.blue_spruce "Picea pungens"))) (type fb:location.symbol_of_administrative_division) what team does jeremy lin play for 2013? Houston Rockets 14.758 formula ((lambda x (!fb:basketball.basketball_roster_position.team (!fb:basketball.basketball_player.team (var x)))) fb:en.jeremy_lin)) (value (list (name fb:en.houston_rockets "Houston Rockets"))) (type fb:basketball.basketball_team) who are the u s senators of pennsylvania? State tree 4.7 formula ((lambda x (fb:location.offical_symbol_variety.symbols_of_this_kind (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.pennsylvania)) (value (list (name fb:en.state_tree "State tree") (name fb:en.state_beverage "State beverage") (name fb:en.state_fish "State Fish") (name fb:en.state_flower "State flower") (name fb:en.state_bird "State bird") (name fb:en.motto Motto))) (type fb:location.offical_symbol_variety) who are the u s senators of pennsylvania? State beverage 4.7 formula ((lambda x (fb:location.offical_symbol_variety.symbols_of_this_kind (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.pennsylvania)) (value (list (name fb:en.state_tree "State tree") (name fb:en.state_beverage "State beverage") (name fb:en.state_fish "State Fish") (name fb:en.state_flower "State flower") (name fb:en.state_bird "State bird") (name fb:en.motto Motto))) (type fb:location.offical_symbol_variety) who are the u s senators of pennsylvania? State Fish 4.7 formula ((lambda x (fb:location.offical_symbol_variety.symbols_of_this_kind (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.pennsylvania)) (value (list (name fb:en.state_tree "State tree") (name fb:en.state_beverage "State beverage") (name fb:en.state_fish "State Fish") (name fb:en.state_flower "State flower") (name fb:en.state_bird "State bird") (name fb:en.motto Motto))) (type fb:location.offical_symbol_variety) who are the u s senators of pennsylvania? State flower 4.7 formula ((lambda x (fb:location.offical_symbol_variety.symbols_of_this_kind (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.pennsylvania)) (value (list (name fb:en.state_tree "State tree") (name fb:en.state_beverage "State beverage") (name fb:en.state_fish "State Fish") (name fb:en.state_flower "State flower") (name fb:en.state_bird "State bird") (name fb:en.motto Motto))) (type fb:location.offical_symbol_variety) who are the u s senators of pennsylvania? State bird 4.7 formula ((lambda x (fb:location.offical_symbol_variety.symbols_of_this_kind (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.pennsylvania)) (value (list (name fb:en.state_tree "State tree") (name fb:en.state_beverage "State beverage") (name fb:en.state_fish "State Fish") (name fb:en.state_flower "State flower") (name fb:en.state_bird "State bird") (name fb:en.motto Motto))) (type fb:location.offical_symbol_variety) what kind of language does france speak? French Language 17.894 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.france))) (value (list (name fb:en.french "French Language"))) (type (union fb:language.human_language)) what degree did martin luther king earn? Bachelor of Divinity 18.039 formula (and (fb:type.object.type fb:education.educational_degree) ((lambda x (fb:education.educational_degree.people_with_this_degree (fb:education.education.student (var x)))) fb:en.martin_luther_king_jr))) (value (list (name fb:en.bachelor_of_divinity "Bachelor of Divinity") (name fb:en.dr_philos PhD) (name fb:en.a_b "Bachelor of Arts"))) (type (union fb:education.educational_degree)) what degree did martin luther king earn? Bachelor of Arts 18.039 formula (and (fb:type.object.type fb:education.educational_degree) ((lambda x (fb:education.educational_degree.people_with_this_degree (fb:education.education.student (var x)))) fb:en.martin_luther_king_jr))) (value (list (name fb:en.bachelor_of_divinity "Bachelor of Divinity") (name fb:en.dr_philos PhD) (name fb:en.a_b "Bachelor of Arts"))) (type (union fb:education.educational_degree)) what does sarabi? The Lion King -0.58 formula ((lambda x (fb:film.film.starring (fb:film.performance.character (var x)))) fb:en.sarabi)) (value (list (name fb:en.the_lion_king "The Lion King"))) (type fb:film.film) who were wright brothers? Myocardial infarction -1.144 formula (fb:people.cause_of_death.people fb:en.syreeta)) (value (list (name fb:en.heart_failure "Myocardial infarction") (name fb:en.cardiovascular_disease "Cardiovascular disease") (name fb:en.breast_cancer "Breast cancer"))) (type fb:people.cause_of_death) who were wright brothers? Cardiovascular disease -1.144 formula (fb:people.cause_of_death.people fb:en.syreeta)) (value (list (name fb:en.heart_failure "Myocardial infarction") (name fb:en.cardiovascular_disease "Cardiovascular disease") (name fb:en.breast_cancer "Breast cancer"))) (type fb:people.cause_of_death) who were wright brothers? Breast cancer -1.144 formula (fb:people.cause_of_death.people fb:en.syreeta)) (value (list (name fb:en.heart_failure "Myocardial infarction") (name fb:en.cardiovascular_disease "Cardiovascular disease") (name fb:en.breast_cancer "Breast cancer"))) (type fb:people.cause_of_death) what team did peyton manning's dad play for? Indianapolis Colts 12.557 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.peyton_manning))) (value (list (name fb:en.indianapolis_colts "Indianapolis Colts") (name fb:en.denver_broncos "Denver Broncos"))) (type fb:sports.sports_team) what team did peyton manning's dad play for? Denver Broncos 12.557 formula (and (fb:type.object.type fb:sports.sports_team) ((lambda x (fb:sports.sports_team.roster (fb:sports.sports_team_roster.player (var x)))) fb:en.peyton_manning))) (value (list (name fb:en.indianapolis_colts "Indianapolis Colts") (name fb:en.denver_broncos "Denver Broncos"))) (type fb:sports.sports_team) what school did john henry thompson go to? University of Oxford 14.635 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.john_henry_cardinal_newman))) (value (list (name fb:en.university_of_oxford "University of Oxford") (name fb:en.trinity_college_oxford "Trinity College, Oxford"))) (type fb:education.educational_institution) what school did john henry thompson go to? Trinity College, Oxford 14.635 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.john_henry_cardinal_newman))) (value (list (name fb:en.university_of_oxford "University of Oxford") (name fb:en.trinity_college_oxford "Trinity College, Oxford"))) (type fb:education.educational_institution) what did jesse owens won? Track and field 7.873 formula ((lambda x (!fb:award.award_honor.notes_description (!fb:award.award_winner.awards_won (var x)))) fb:en.jesse_owens)) (value (list (string "Track and field"))) (type fb:type.text) what is the name of the currency used in peru? Peruvian nuevo sol 21.546 formula (and (fb:type.object.type fb:finance.currency) (fb:finance.currency.countries_used fb:en.peru))) (value (list (name fb:en.peruvian_nuevo_sol "Peruvian nuevo sol"))) (type fb:finance.currency) who is on the board of facebook? Kristen Cornett: Facebook! 8.05 formula (fb:common.image.image_tags fb:en.facebook)) (value (list (name fb:m.0970b57 "Kristen Cornett: Facebook!"))) (type fb:common.image) who is judy garland father? Francis Avent Gumm 14.168 formula (!fb:people.person.parents fb:en.judy_garland)) (value (list (name fb:m.0gyhn8m "Francis Avent Gumm") (name fb:m.0gyhn8b "Ethel Marion Milne"))) (type fb:people.person) who is judy garland father? Ethel Marion Milne 14.168 formula (!fb:people.person.parents fb:en.judy_garland)) (value (list (name fb:m.0gyhn8m "Francis Avent Gumm") (name fb:m.0gyhn8b "Ethel Marion Milne"))) (type fb:people.person) what school did robert f kennedy go to? London School of Economics 19.282 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.john_f_kennedy))) (value (list (name fb:en.london_school_of_economics "London School of Economics") (name fb:en.edward_devotion_school "Edward Devotion School") (name fb:en.princeton_university "Princeton University") (name fb:en.stanford_graduate_school_of_business "Stanford Graduate School of Business") (name fb:en.riverdale_country_school "Riverdale Country School") (name fb:en.harvard_college "Harvard College") (name fb:en.choate_rosemary_hall "Choate Rosemary Hall") (name fb:m.05yk0g "Canterbury School") (name fb:en.noble_and_greenough_school "Noble and Greenough School") (name fb:en.dexter_school "Dexter School"))) (type fb:education.educational_institution) what school did robert f kennedy go to? Edward Devotion School 19.282 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.john_f_kennedy))) (value (list (name fb:en.london_school_of_economics "London School of Economics") (name fb:en.edward_devotion_school "Edward Devotion School") (name fb:en.princeton_university "Princeton University") (name fb:en.stanford_graduate_school_of_business "Stanford Graduate School of Business") (name fb:en.riverdale_country_school "Riverdale Country School") (name fb:en.harvard_college "Harvard College") (name fb:en.choate_rosemary_hall "Choate Rosemary Hall") (name fb:m.05yk0g "Canterbury School") (name fb:en.noble_and_greenough_school "Noble and Greenough School") (name fb:en.dexter_school "Dexter School"))) (type fb:education.educational_institution) what school did robert f kennedy go to? Princeton University 19.282 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.john_f_kennedy))) (value (list (name fb:en.london_school_of_economics "London School of Economics") (name fb:en.edward_devotion_school "Edward Devotion School") (name fb:en.princeton_university "Princeton University") (name fb:en.stanford_graduate_school_of_business "Stanford Graduate School of Business") (name fb:en.riverdale_country_school "Riverdale Country School") (name fb:en.harvard_college "Harvard College") (name fb:en.choate_rosemary_hall "Choate Rosemary Hall") (name fb:m.05yk0g "Canterbury School") (name fb:en.noble_and_greenough_school "Noble and Greenough School") (name fb:en.dexter_school "Dexter School"))) (type fb:education.educational_institution) what school did robert f kennedy go to? Stanford Graduate School of Business 19.282 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.john_f_kennedy))) (value (list (name fb:en.london_school_of_economics "London School of Economics") (name fb:en.edward_devotion_school "Edward Devotion School") (name fb:en.princeton_university "Princeton University") (name fb:en.stanford_graduate_school_of_business "Stanford Graduate School of Business") (name fb:en.riverdale_country_school "Riverdale Country School") (name fb:en.harvard_college "Harvard College") (name fb:en.choate_rosemary_hall "Choate Rosemary Hall") (name fb:m.05yk0g "Canterbury School") (name fb:en.noble_and_greenough_school "Noble and Greenough School") (name fb:en.dexter_school "Dexter School"))) (type fb:education.educational_institution) what school did robert f kennedy go to? Riverdale Country School 19.282 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.john_f_kennedy))) (value (list (name fb:en.london_school_of_economics "London School of Economics") (name fb:en.edward_devotion_school "Edward Devotion School") (name fb:en.princeton_university "Princeton University") (name fb:en.stanford_graduate_school_of_business "Stanford Graduate School of Business") (name fb:en.riverdale_country_school "Riverdale Country School") (name fb:en.harvard_college "Harvard College") (name fb:en.choate_rosemary_hall "Choate Rosemary Hall") (name fb:m.05yk0g "Canterbury School") (name fb:en.noble_and_greenough_school "Noble and Greenough School") (name fb:en.dexter_school "Dexter School"))) (type fb:education.educational_institution) what school did robert f kennedy go to? Harvard College 19.282 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.john_f_kennedy))) (value (list (name fb:en.london_school_of_economics "London School of Economics") (name fb:en.edward_devotion_school "Edward Devotion School") (name fb:en.princeton_university "Princeton University") (name fb:en.stanford_graduate_school_of_business "Stanford Graduate School of Business") (name fb:en.riverdale_country_school "Riverdale Country School") (name fb:en.harvard_college "Harvard College") (name fb:en.choate_rosemary_hall "Choate Rosemary Hall") (name fb:m.05yk0g "Canterbury School") (name fb:en.noble_and_greenough_school "Noble and Greenough School") (name fb:en.dexter_school "Dexter School"))) (type fb:education.educational_institution) what school did robert f kennedy go to? Choate Rosemary Hall 19.282 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.john_f_kennedy))) (value (list (name fb:en.london_school_of_economics "London School of Economics") (name fb:en.edward_devotion_school "Edward Devotion School") (name fb:en.princeton_university "Princeton University") (name fb:en.stanford_graduate_school_of_business "Stanford Graduate School of Business") (name fb:en.riverdale_country_school "Riverdale Country School") (name fb:en.harvard_college "Harvard College") (name fb:en.choate_rosemary_hall "Choate Rosemary Hall") (name fb:m.05yk0g "Canterbury School") (name fb:en.noble_and_greenough_school "Noble and Greenough School") (name fb:en.dexter_school "Dexter School"))) (type fb:education.educational_institution) what school did robert f kennedy go to? Canterbury School 19.282 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.john_f_kennedy))) (value (list (name fb:en.london_school_of_economics "London School of Economics") (name fb:en.edward_devotion_school "Edward Devotion School") (name fb:en.princeton_university "Princeton University") (name fb:en.stanford_graduate_school_of_business "Stanford Graduate School of Business") (name fb:en.riverdale_country_school "Riverdale Country School") (name fb:en.harvard_college "Harvard College") (name fb:en.choate_rosemary_hall "Choate Rosemary Hall") (name fb:m.05yk0g "Canterbury School") (name fb:en.noble_and_greenough_school "Noble and Greenough School") (name fb:en.dexter_school "Dexter School"))) (type fb:education.educational_institution) what school did robert f kennedy go to? Noble and Greenough School 19.282 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.john_f_kennedy))) (value (list (name fb:en.london_school_of_economics "London School of Economics") (name fb:en.edward_devotion_school "Edward Devotion School") (name fb:en.princeton_university "Princeton University") (name fb:en.stanford_graduate_school_of_business "Stanford Graduate School of Business") (name fb:en.riverdale_country_school "Riverdale Country School") (name fb:en.harvard_college "Harvard College") (name fb:en.choate_rosemary_hall "Choate Rosemary Hall") (name fb:m.05yk0g "Canterbury School") (name fb:en.noble_and_greenough_school "Noble and Greenough School") (name fb:en.dexter_school "Dexter School"))) (type fb:education.educational_institution) what school did robert f kennedy go to? Dexter School 19.282 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.john_f_kennedy))) (value (list (name fb:en.london_school_of_economics "London School of Economics") (name fb:en.edward_devotion_school "Edward Devotion School") (name fb:en.princeton_university "Princeton University") (name fb:en.stanford_graduate_school_of_business "Stanford Graduate School of Business") (name fb:en.riverdale_country_school "Riverdale Country School") (name fb:en.harvard_college "Harvard College") (name fb:en.choate_rosemary_hall "Choate Rosemary Hall") (name fb:m.05yk0g "Canterbury School") (name fb:en.noble_and_greenough_school "Noble and Greenough School") (name fb:en.dexter_school "Dexter School"))) (type fb:education.educational_institution) what drug killed marilyn monroe? Drug overdose 7.507 formula (!fb:people.deceased_person.cause_of_death fb:en.marliyn_monroe)) (value (list (name fb:en.suicide Suicide) (name fb:en.barbiturate Barbiturate) (name fb:en.drug_overdose "Drug overdose"))) (type fb:people.cause_of_death) what is los angeles california time zone? Pacific Time Zone 15.782 formula (and (fb:type.object.type fb:time.time_zone) (fb:time.time_zone.locations_in_this_time_zone fb:en.los_angeles))) (value (list (name fb:en.pacific_time_zone "Pacific Time Zone"))) (type (union fb:time.time_zone)) what did nicolas cage name his son? Weston Coppola Cage 10.148 formula (!fb:people.person.children fb:en.nicolas_cage)) (value (list (name fb:en.weston_coppola_cage "Weston Coppola Cage") (name fb:en.kal_el_coppola_cage "Kal-El Coppola Cage"))) (type fb:people.person) what did nicolas cage name his son? Kal-El Coppola Cage 10.148 formula (!fb:people.person.children fb:en.nicolas_cage)) (value (list (name fb:en.weston_coppola_cage "Weston Coppola Cage") (name fb:en.kal_el_coppola_cage "Kal-El Coppola Cage"))) (type fb:people.person) what is berkshire hathaway invested in? Property and Casualty Insurance 8.563 formula (fb:business.industry.companies fb:en.berkshire_hathaway)) (value (list (name fb:en.property_and_casualty_insurance "Property and Casualty Insurance") (name fb:en.fire_marine_and_casualty_insurance "Fire, Marine, and Casualty Insurance") (name fb:en.newspaper_publishers "Newspaper Publishers") (name fb:en.diversified_investments "Diversified Investments"))) (type fb:business.industry) what is berkshire hathaway invested in? Fire, Marine, and Casualty Insurance 8.563 formula (fb:business.industry.companies fb:en.berkshire_hathaway)) (value (list (name fb:en.property_and_casualty_insurance "Property and Casualty Insurance") (name fb:en.fire_marine_and_casualty_insurance "Fire, Marine, and Casualty Insurance") (name fb:en.newspaper_publishers "Newspaper Publishers") (name fb:en.diversified_investments "Diversified Investments"))) (type fb:business.industry) what is berkshire hathaway invested in? Newspaper Publishers 8.563 formula (fb:business.industry.companies fb:en.berkshire_hathaway)) (value (list (name fb:en.property_and_casualty_insurance "Property and Casualty Insurance") (name fb:en.fire_marine_and_casualty_insurance "Fire, Marine, and Casualty Insurance") (name fb:en.newspaper_publishers "Newspaper Publishers") (name fb:en.diversified_investments "Diversified Investments"))) (type fb:business.industry) what is berkshire hathaway invested in? Diversified Investments 8.563 formula (fb:business.industry.companies fb:en.berkshire_hathaway)) (value (list (name fb:en.property_and_casualty_insurance "Property and Casualty Insurance") (name fb:en.fire_marine_and_casualty_insurance "Fire, Marine, and Casualty Insurance") (name fb:en.newspaper_publishers "Newspaper Publishers") (name fb:en.diversified_investments "Diversified Investments"))) (type fb:business.industry) what currency should take to mexico? Mexican peso 20.644 formula (!fb:location.country.currency_used fb:en.mexico)) (value (list (name fb:en.mexican_peso "Mexican peso"))) (type fb:finance.currency) who is the state governor of florida? Lawton Chiles 16.604 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.florida)) (value (list (name fb:en.lawton_chiles "Lawton Chiles") (name fb:en.fuller_warren "Fuller Warren") (name fb:en.leroy_collins "LeRoy Collins") (name fb:en.wayne_mixson "Wayne Mixson") (name fb:en.charlie_crist "Charlie Crist") (name fb:en.richard_k_call "Richard K. Call") (name fb:en.james_e_broome "James E. Broome") (name fb:en.david_s_walker "David S. Walker") (name fb:en.pam_bondi "Pam Bondi") (name fb:en.john_w_martin "John W. Martin"))) (type fb:government.politician) who is the state governor of florida? Fuller Warren 16.604 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.florida)) (value (list (name fb:en.lawton_chiles "Lawton Chiles") (name fb:en.fuller_warren "Fuller Warren") (name fb:en.leroy_collins "LeRoy Collins") (name fb:en.wayne_mixson "Wayne Mixson") (name fb:en.charlie_crist "Charlie Crist") (name fb:en.richard_k_call "Richard K. Call") (name fb:en.james_e_broome "James E. Broome") (name fb:en.david_s_walker "David S. Walker") (name fb:en.pam_bondi "Pam Bondi") (name fb:en.john_w_martin "John W. Martin"))) (type fb:government.politician) who is the state governor of florida? LeRoy Collins 16.604 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.florida)) (value (list (name fb:en.lawton_chiles "Lawton Chiles") (name fb:en.fuller_warren "Fuller Warren") (name fb:en.leroy_collins "LeRoy Collins") (name fb:en.wayne_mixson "Wayne Mixson") (name fb:en.charlie_crist "Charlie Crist") (name fb:en.richard_k_call "Richard K. Call") (name fb:en.james_e_broome "James E. Broome") (name fb:en.david_s_walker "David S. Walker") (name fb:en.pam_bondi "Pam Bondi") (name fb:en.john_w_martin "John W. Martin"))) (type fb:government.politician) who is the state governor of florida? Wayne Mixson 16.604 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.florida)) (value (list (name fb:en.lawton_chiles "Lawton Chiles") (name fb:en.fuller_warren "Fuller Warren") (name fb:en.leroy_collins "LeRoy Collins") (name fb:en.wayne_mixson "Wayne Mixson") (name fb:en.charlie_crist "Charlie Crist") (name fb:en.richard_k_call "Richard K. Call") (name fb:en.james_e_broome "James E. Broome") (name fb:en.david_s_walker "David S. Walker") (name fb:en.pam_bondi "Pam Bondi") (name fb:en.john_w_martin "John W. Martin"))) (type fb:government.politician) who is the state governor of florida? Charlie Crist 16.604 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.florida)) (value (list (name fb:en.lawton_chiles "Lawton Chiles") (name fb:en.fuller_warren "Fuller Warren") (name fb:en.leroy_collins "LeRoy Collins") (name fb:en.wayne_mixson "Wayne Mixson") (name fb:en.charlie_crist "Charlie Crist") (name fb:en.richard_k_call "Richard K. Call") (name fb:en.james_e_broome "James E. Broome") (name fb:en.david_s_walker "David S. Walker") (name fb:en.pam_bondi "Pam Bondi") (name fb:en.john_w_martin "John W. Martin"))) (type fb:government.politician) who is the state governor of florida? Richard K. Call 16.604 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.florida)) (value (list (name fb:en.lawton_chiles "Lawton Chiles") (name fb:en.fuller_warren "Fuller Warren") (name fb:en.leroy_collins "LeRoy Collins") (name fb:en.wayne_mixson "Wayne Mixson") (name fb:en.charlie_crist "Charlie Crist") (name fb:en.richard_k_call "Richard K. Call") (name fb:en.james_e_broome "James E. Broome") (name fb:en.david_s_walker "David S. Walker") (name fb:en.pam_bondi "Pam Bondi") (name fb:en.john_w_martin "John W. Martin"))) (type fb:government.politician) who is the state governor of florida? James E. Broome 16.604 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.florida)) (value (list (name fb:en.lawton_chiles "Lawton Chiles") (name fb:en.fuller_warren "Fuller Warren") (name fb:en.leroy_collins "LeRoy Collins") (name fb:en.wayne_mixson "Wayne Mixson") (name fb:en.charlie_crist "Charlie Crist") (name fb:en.richard_k_call "Richard K. Call") (name fb:en.james_e_broome "James E. Broome") (name fb:en.david_s_walker "David S. Walker") (name fb:en.pam_bondi "Pam Bondi") (name fb:en.john_w_martin "John W. Martin"))) (type fb:government.politician) who is the state governor of florida? David S. Walker 16.604 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.florida)) (value (list (name fb:en.lawton_chiles "Lawton Chiles") (name fb:en.fuller_warren "Fuller Warren") (name fb:en.leroy_collins "LeRoy Collins") (name fb:en.wayne_mixson "Wayne Mixson") (name fb:en.charlie_crist "Charlie Crist") (name fb:en.richard_k_call "Richard K. Call") (name fb:en.james_e_broome "James E. Broome") (name fb:en.david_s_walker "David S. Walker") (name fb:en.pam_bondi "Pam Bondi") (name fb:en.john_w_martin "John W. Martin"))) (type fb:government.politician) who is the state governor of florida? Pam Bondi 16.604 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.florida)) (value (list (name fb:en.lawton_chiles "Lawton Chiles") (name fb:en.fuller_warren "Fuller Warren") (name fb:en.leroy_collins "LeRoy Collins") (name fb:en.wayne_mixson "Wayne Mixson") (name fb:en.charlie_crist "Charlie Crist") (name fb:en.richard_k_call "Richard K. Call") (name fb:en.james_e_broome "James E. Broome") (name fb:en.david_s_walker "David S. Walker") (name fb:en.pam_bondi "Pam Bondi") (name fb:en.john_w_martin "John W. Martin"))) (type fb:government.politician) who is the state governor of florida? John W. Martin 16.604 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.florida)) (value (list (name fb:en.lawton_chiles "Lawton Chiles") (name fb:en.fuller_warren "Fuller Warren") (name fb:en.leroy_collins "LeRoy Collins") (name fb:en.wayne_mixson "Wayne Mixson") (name fb:en.charlie_crist "Charlie Crist") (name fb:en.richard_k_call "Richard K. Call") (name fb:en.james_e_broome "James E. Broome") (name fb:en.david_s_walker "David S. Walker") (name fb:en.pam_bondi "Pam Bondi") (name fb:en.john_w_martin "John W. Martin"))) (type fb:government.politician) who was jessica simpson married too? Nick Lachey 12.066 formula ((lambda x (!fb:people.marriage.spouse (!fb:people.person.spouse_s (var x)))) fb:en.jessica_simpson)) (value (list (name fb:en.nick_lachey "Nick Lachey"))) (type fb:people.person) what do they speak in scotland? English Language 16.735 formula (fb:language.human_language.countries_spoken_in fb:en.scotland)) (value (list (name fb:en.english "English Language") (name fb:en.old_english_language "Old English"))) (type fb:language.human_language) what do they speak in scotland? Old English 16.735 formula (fb:language.human_language.countries_spoken_in fb:en.scotland)) (value (list (name fb:en.english "English Language") (name fb:en.old_english_language "Old English"))) (type fb:language.human_language) what did john dalton study? Sedgley Park School, Wolverhampton 5.728 formula ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:m.0gffp8l)) (value (list (name fb:m.0gy1xhs "Sedgley Park School, Wolverhampton"))) (type fb:education.educational_institution) what songs do zac brown band sing? Knee Deep 12.888 formula (and (fb:type.object.type fb:music.composition) (!fb:music.composer.compositions fb:en.zac_brown))) (value (list (name fb:en.knee_deep "Knee Deep") (name fb:m.0j2k__3 Free))) (type (union fb:music.composition)) who formed the american federation of labor? Samuel Gompers 3.681 formula (!fb:organization.organization.founders fb:en.american_federation_of_labor)) (value (list (name fb:en.samuel_gompers "Samuel Gompers"))) (type fb:organization.organization_founder) what to visit in denver? Westin Westminster 7.929 formula (!fb:travel.travel_destination.tourist_attractions fb:en.denver)) (value (list (name fb:en.the_westin_westminster "Westin Westminster") (name fb:m.0cp03nr "Children's Museum of Denver") (name fb:en.molly_brown_house "Molly Brown House") (name fb:en.denver_botanic_gardens "Denver Botanic Gardens") (name fb:en.six_flags_elitch_gardens "Elitch Gardens") (name fb:en.forney_transportation_museum "Forney Transportation Museum") (name fb:en.colorado_state_capitol "Colorado State Capitol") (name fb:m.0j1z2v4 "North Building") (name fb:m.0j1z2ts "Frederic C. Hamilton Building") (name fb:en.denver_museum_of_nature_and_science "Denver Museum of Nature and Science"))) (type fb:travel.tourist_attraction) what to visit in denver? Children's Museum of Denver 7.929 formula (!fb:travel.travel_destination.tourist_attractions fb:en.denver)) (value (list (name fb:en.the_westin_westminster "Westin Westminster") (name fb:m.0cp03nr "Children's Museum of Denver") (name fb:en.molly_brown_house "Molly Brown House") (name fb:en.denver_botanic_gardens "Denver Botanic Gardens") (name fb:en.six_flags_elitch_gardens "Elitch Gardens") (name fb:en.forney_transportation_museum "Forney Transportation Museum") (name fb:en.colorado_state_capitol "Colorado State Capitol") (name fb:m.0j1z2v4 "North Building") (name fb:m.0j1z2ts "Frederic C. Hamilton Building") (name fb:en.denver_museum_of_nature_and_science "Denver Museum of Nature and Science"))) (type fb:travel.tourist_attraction) what to visit in denver? Molly Brown House 7.929 formula (!fb:travel.travel_destination.tourist_attractions fb:en.denver)) (value (list (name fb:en.the_westin_westminster "Westin Westminster") (name fb:m.0cp03nr "Children's Museum of Denver") (name fb:en.molly_brown_house "Molly Brown House") (name fb:en.denver_botanic_gardens "Denver Botanic Gardens") (name fb:en.six_flags_elitch_gardens "Elitch Gardens") (name fb:en.forney_transportation_museum "Forney Transportation Museum") (name fb:en.colorado_state_capitol "Colorado State Capitol") (name fb:m.0j1z2v4 "North Building") (name fb:m.0j1z2ts "Frederic C. Hamilton Building") (name fb:en.denver_museum_of_nature_and_science "Denver Museum of Nature and Science"))) (type fb:travel.tourist_attraction) what to visit in denver? Denver Botanic Gardens 7.929 formula (!fb:travel.travel_destination.tourist_attractions fb:en.denver)) (value (list (name fb:en.the_westin_westminster "Westin Westminster") (name fb:m.0cp03nr "Children's Museum of Denver") (name fb:en.molly_brown_house "Molly Brown House") (name fb:en.denver_botanic_gardens "Denver Botanic Gardens") (name fb:en.six_flags_elitch_gardens "Elitch Gardens") (name fb:en.forney_transportation_museum "Forney Transportation Museum") (name fb:en.colorado_state_capitol "Colorado State Capitol") (name fb:m.0j1z2v4 "North Building") (name fb:m.0j1z2ts "Frederic C. Hamilton Building") (name fb:en.denver_museum_of_nature_and_science "Denver Museum of Nature and Science"))) (type fb:travel.tourist_attraction) what to visit in denver? Elitch Gardens 7.929 formula (!fb:travel.travel_destination.tourist_attractions fb:en.denver)) (value (list (name fb:en.the_westin_westminster "Westin Westminster") (name fb:m.0cp03nr "Children's Museum of Denver") (name fb:en.molly_brown_house "Molly Brown House") (name fb:en.denver_botanic_gardens "Denver Botanic Gardens") (name fb:en.six_flags_elitch_gardens "Elitch Gardens") (name fb:en.forney_transportation_museum "Forney Transportation Museum") (name fb:en.colorado_state_capitol "Colorado State Capitol") (name fb:m.0j1z2v4 "North Building") (name fb:m.0j1z2ts "Frederic C. Hamilton Building") (name fb:en.denver_museum_of_nature_and_science "Denver Museum of Nature and Science"))) (type fb:travel.tourist_attraction) what to visit in denver? Forney Transportation Museum 7.929 formula (!fb:travel.travel_destination.tourist_attractions fb:en.denver)) (value (list (name fb:en.the_westin_westminster "Westin Westminster") (name fb:m.0cp03nr "Children's Museum of Denver") (name fb:en.molly_brown_house "Molly Brown House") (name fb:en.denver_botanic_gardens "Denver Botanic Gardens") (name fb:en.six_flags_elitch_gardens "Elitch Gardens") (name fb:en.forney_transportation_museum "Forney Transportation Museum") (name fb:en.colorado_state_capitol "Colorado State Capitol") (name fb:m.0j1z2v4 "North Building") (name fb:m.0j1z2ts "Frederic C. Hamilton Building") (name fb:en.denver_museum_of_nature_and_science "Denver Museum of Nature and Science"))) (type fb:travel.tourist_attraction) what to visit in denver? Colorado State Capitol 7.929 formula (!fb:travel.travel_destination.tourist_attractions fb:en.denver)) (value (list (name fb:en.the_westin_westminster "Westin Westminster") (name fb:m.0cp03nr "Children's Museum of Denver") (name fb:en.molly_brown_house "Molly Brown House") (name fb:en.denver_botanic_gardens "Denver Botanic Gardens") (name fb:en.six_flags_elitch_gardens "Elitch Gardens") (name fb:en.forney_transportation_museum "Forney Transportation Museum") (name fb:en.colorado_state_capitol "Colorado State Capitol") (name fb:m.0j1z2v4 "North Building") (name fb:m.0j1z2ts "Frederic C. Hamilton Building") (name fb:en.denver_museum_of_nature_and_science "Denver Museum of Nature and Science"))) (type fb:travel.tourist_attraction) what to visit in denver? North Building 7.929 formula (!fb:travel.travel_destination.tourist_attractions fb:en.denver)) (value (list (name fb:en.the_westin_westminster "Westin Westminster") (name fb:m.0cp03nr "Children's Museum of Denver") (name fb:en.molly_brown_house "Molly Brown House") (name fb:en.denver_botanic_gardens "Denver Botanic Gardens") (name fb:en.six_flags_elitch_gardens "Elitch Gardens") (name fb:en.forney_transportation_museum "Forney Transportation Museum") (name fb:en.colorado_state_capitol "Colorado State Capitol") (name fb:m.0j1z2v4 "North Building") (name fb:m.0j1z2ts "Frederic C. Hamilton Building") (name fb:en.denver_museum_of_nature_and_science "Denver Museum of Nature and Science"))) (type fb:travel.tourist_attraction) what to visit in denver? Frederic C. Hamilton Building 7.929 formula (!fb:travel.travel_destination.tourist_attractions fb:en.denver)) (value (list (name fb:en.the_westin_westminster "Westin Westminster") (name fb:m.0cp03nr "Children's Museum of Denver") (name fb:en.molly_brown_house "Molly Brown House") (name fb:en.denver_botanic_gardens "Denver Botanic Gardens") (name fb:en.six_flags_elitch_gardens "Elitch Gardens") (name fb:en.forney_transportation_museum "Forney Transportation Museum") (name fb:en.colorado_state_capitol "Colorado State Capitol") (name fb:m.0j1z2v4 "North Building") (name fb:m.0j1z2ts "Frederic C. Hamilton Building") (name fb:en.denver_museum_of_nature_and_science "Denver Museum of Nature and Science"))) (type fb:travel.tourist_attraction) what to visit in denver? Denver Museum of Nature and Science 7.929 formula (!fb:travel.travel_destination.tourist_attractions fb:en.denver)) (value (list (name fb:en.the_westin_westminster "Westin Westminster") (name fb:m.0cp03nr "Children's Museum of Denver") (name fb:en.molly_brown_house "Molly Brown House") (name fb:en.denver_botanic_gardens "Denver Botanic Gardens") (name fb:en.six_flags_elitch_gardens "Elitch Gardens") (name fb:en.forney_transportation_museum "Forney Transportation Museum") (name fb:en.colorado_state_capitol "Colorado State Capitol") (name fb:m.0j1z2v4 "North Building") (name fb:m.0j1z2ts "Frederic C. Hamilton Building") (name fb:en.denver_museum_of_nature_and_science "Denver Museum of Nature and Science"))) (type fb:travel.tourist_attraction) what do unitarian universalist believe? Christopher Reeve 10.377 formula (fb:people.person.religion fb:en.unitarian_universalism)) (value (list (name fb:en.christopher_reeve "Christopher Reeve") (name fb:en.hosea_ballou "Hosea Ballou") (name fb:en.linus_pauling "Linus Pauling") (name fb:en.frank_lloyd_wright "Frank Lloyd Wright") (name fb:en.pete_stark "Pete Stark") (name fb:en.walt_whitman "Walt Whitman") (name fb:en.may_sarton "May Sarton") (name fb:en.ray_bradbury "Ray Bradbury") (name fb:en.rod_serling "Rod Serling") (name fb:en.edward_everett "Edward Everett"))) (type fb:people.person) what do unitarian universalist believe? Hosea Ballou 10.377 formula (fb:people.person.religion fb:en.unitarian_universalism)) (value (list (name fb:en.christopher_reeve "Christopher Reeve") (name fb:en.hosea_ballou "Hosea Ballou") (name fb:en.linus_pauling "Linus Pauling") (name fb:en.frank_lloyd_wright "Frank Lloyd Wright") (name fb:en.pete_stark "Pete Stark") (name fb:en.walt_whitman "Walt Whitman") (name fb:en.may_sarton "May Sarton") (name fb:en.ray_bradbury "Ray Bradbury") (name fb:en.rod_serling "Rod Serling") (name fb:en.edward_everett "Edward Everett"))) (type fb:people.person) what do unitarian universalist believe? Linus Pauling 10.377 formula (fb:people.person.religion fb:en.unitarian_universalism)) (value (list (name fb:en.christopher_reeve "Christopher Reeve") (name fb:en.hosea_ballou "Hosea Ballou") (name fb:en.linus_pauling "Linus Pauling") (name fb:en.frank_lloyd_wright "Frank Lloyd Wright") (name fb:en.pete_stark "Pete Stark") (name fb:en.walt_whitman "Walt Whitman") (name fb:en.may_sarton "May Sarton") (name fb:en.ray_bradbury "Ray Bradbury") (name fb:en.rod_serling "Rod Serling") (name fb:en.edward_everett "Edward Everett"))) (type fb:people.person) what do unitarian universalist believe? Frank Lloyd Wright 10.377 formula (fb:people.person.religion fb:en.unitarian_universalism)) (value (list (name fb:en.christopher_reeve "Christopher Reeve") (name fb:en.hosea_ballou "Hosea Ballou") (name fb:en.linus_pauling "Linus Pauling") (name fb:en.frank_lloyd_wright "Frank Lloyd Wright") (name fb:en.pete_stark "Pete Stark") (name fb:en.walt_whitman "Walt Whitman") (name fb:en.may_sarton "May Sarton") (name fb:en.ray_bradbury "Ray Bradbury") (name fb:en.rod_serling "Rod Serling") (name fb:en.edward_everett "Edward Everett"))) (type fb:people.person) what do unitarian universalist believe? Pete Stark 10.377 formula (fb:people.person.religion fb:en.unitarian_universalism)) (value (list (name fb:en.christopher_reeve "Christopher Reeve") (name fb:en.hosea_ballou "Hosea Ballou") (name fb:en.linus_pauling "Linus Pauling") (name fb:en.frank_lloyd_wright "Frank Lloyd Wright") (name fb:en.pete_stark "Pete Stark") (name fb:en.walt_whitman "Walt Whitman") (name fb:en.may_sarton "May Sarton") (name fb:en.ray_bradbury "Ray Bradbury") (name fb:en.rod_serling "Rod Serling") (name fb:en.edward_everett "Edward Everett"))) (type fb:people.person) what do unitarian universalist believe? Walt Whitman 10.377 formula (fb:people.person.religion fb:en.unitarian_universalism)) (value (list (name fb:en.christopher_reeve "Christopher Reeve") (name fb:en.hosea_ballou "Hosea Ballou") (name fb:en.linus_pauling "Linus Pauling") (name fb:en.frank_lloyd_wright "Frank Lloyd Wright") (name fb:en.pete_stark "Pete Stark") (name fb:en.walt_whitman "Walt Whitman") (name fb:en.may_sarton "May Sarton") (name fb:en.ray_bradbury "Ray Bradbury") (name fb:en.rod_serling "Rod Serling") (name fb:en.edward_everett "Edward Everett"))) (type fb:people.person) what do unitarian universalist believe? May Sarton 10.377 formula (fb:people.person.religion fb:en.unitarian_universalism)) (value (list (name fb:en.christopher_reeve "Christopher Reeve") (name fb:en.hosea_ballou "Hosea Ballou") (name fb:en.linus_pauling "Linus Pauling") (name fb:en.frank_lloyd_wright "Frank Lloyd Wright") (name fb:en.pete_stark "Pete Stark") (name fb:en.walt_whitman "Walt Whitman") (name fb:en.may_sarton "May Sarton") (name fb:en.ray_bradbury "Ray Bradbury") (name fb:en.rod_serling "Rod Serling") (name fb:en.edward_everett "Edward Everett"))) (type fb:people.person) what do unitarian universalist believe? Ray Bradbury 10.377 formula (fb:people.person.religion fb:en.unitarian_universalism)) (value (list (name fb:en.christopher_reeve "Christopher Reeve") (name fb:en.hosea_ballou "Hosea Ballou") (name fb:en.linus_pauling "Linus Pauling") (name fb:en.frank_lloyd_wright "Frank Lloyd Wright") (name fb:en.pete_stark "Pete Stark") (name fb:en.walt_whitman "Walt Whitman") (name fb:en.may_sarton "May Sarton") (name fb:en.ray_bradbury "Ray Bradbury") (name fb:en.rod_serling "Rod Serling") (name fb:en.edward_everett "Edward Everett"))) (type fb:people.person) what do unitarian universalist believe? Rod Serling 10.377 formula (fb:people.person.religion fb:en.unitarian_universalism)) (value (list (name fb:en.christopher_reeve "Christopher Reeve") (name fb:en.hosea_ballou "Hosea Ballou") (name fb:en.linus_pauling "Linus Pauling") (name fb:en.frank_lloyd_wright "Frank Lloyd Wright") (name fb:en.pete_stark "Pete Stark") (name fb:en.walt_whitman "Walt Whitman") (name fb:en.may_sarton "May Sarton") (name fb:en.ray_bradbury "Ray Bradbury") (name fb:en.rod_serling "Rod Serling") (name fb:en.edward_everett "Edward Everett"))) (type fb:people.person) what do unitarian universalist believe? Edward Everett 10.377 formula (fb:people.person.religion fb:en.unitarian_universalism)) (value (list (name fb:en.christopher_reeve "Christopher Reeve") (name fb:en.hosea_ballou "Hosea Ballou") (name fb:en.linus_pauling "Linus Pauling") (name fb:en.frank_lloyd_wright "Frank Lloyd Wright") (name fb:en.pete_stark "Pete Stark") (name fb:en.walt_whitman "Walt Whitman") (name fb:en.may_sarton "May Sarton") (name fb:en.ray_bradbury "Ray Bradbury") (name fb:en.rod_serling "Rod Serling") (name fb:en.edward_everett "Edward Everett"))) (type fb:people.person) what did john hancock do for the american revolution? United States Declaration of Independence 11.73 formula (!fb:user.tfmorris.default_domain.signatory.documents_signed fb:en.john_hancock)) (value (list (name fb:en.united_states_declaration_of_independence "United States Declaration of Independence") (name fb:en.articles_of_confederation "Articles of Confederation"))) (type fb:user.tfmorris.default_domain.document) what did john hancock do for the american revolution? Articles of Confederation 11.73 formula (!fb:user.tfmorris.default_domain.signatory.documents_signed fb:en.john_hancock)) (value (list (name fb:en.united_states_declaration_of_independence "United States Declaration of Independence") (name fb:en.articles_of_confederation "Articles of Confederation"))) (type fb:user.tfmorris.default_domain.document) what type of government does italy have 2011? Parliamentary republic 10.454 formula (fb:government.form_of_government.countries fb:en.italy)) (value (list (name fb:en.parliamentary_republic "Parliamentary republic") (name fb:en.constitutional_republic "Constitutional republic") (name fb:m.0v265vn "Unitary republic"))) (type fb:government.form_of_government) what type of government does italy have 2011? Constitutional republic 10.454 formula (fb:government.form_of_government.countries fb:en.italy)) (value (list (name fb:en.parliamentary_republic "Parliamentary republic") (name fb:en.constitutional_republic "Constitutional republic") (name fb:m.0v265vn "Unitary republic"))) (type fb:government.form_of_government) what type of government does italy have 2011? Unitary republic 10.454 formula (fb:government.form_of_government.countries fb:en.italy)) (value (list (name fb:en.parliamentary_republic "Parliamentary republic") (name fb:en.constitutional_republic "Constitutional republic") (name fb:m.0v265vn "Unitary republic"))) (type fb:government.form_of_government) which state did anne hutchinson found? Rhode Island 10.252 formula (and (fb:type.object.type fb:location.us_state) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.anne_hutchinson))) (value (list (name fb:en.rhode_island "Rhode Island") (name fb:en.massachusetts Massachusetts))) (type (union fb:location.us_state)) what province is montreal canada located? United States of America 10.372 formula (and (fb:type.object.type fb:location.administrative_division) ((lambda x (fb:location.statistical_region.places_imported_from (fb:location.imports_and_exports.imported_from (var x)))) fb:en.canada))) (value (list (name fb:en.united_states_of_america "United States of America") (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom"))) (type (union fb:location.administrative_division)) what province is montreal canada located? United Kingdom 10.372 formula (and (fb:type.object.type fb:location.administrative_division) ((lambda x (fb:location.statistical_region.places_imported_from (fb:location.imports_and_exports.imported_from (var x)))) fb:en.canada))) (value (list (name fb:en.united_states_of_america "United States of America") (name fb:en.united_kingdom_of_great_britain_and_ireland "United Kingdom"))) (type (union fb:location.administrative_division)) where does bronx begin? East River 3.734 formula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:location.adjoining_relationship.adjoins (!fb:location.location.adjoin_s (var x)))) fb:en.the_bronx))) (value (list (name fb:en.east_river "East River"))) (type fb:location.location) who does kellan lutz play in prom night? Prom Night 9.05 formula (fb:film.film.starring (and (fb:film.performance.actor fb:en.kellan_lutz) (fb:film.performance.film fb:en.prom_night)))) (value (list (name fb:en.prom_night "Prom Night"))) (type fb:film.film) what language does people in iceland speak? Icelandic Language 12.648 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.iceland))) (value (list (name fb:en.icelandic_language "Icelandic Language"))) (type (union fb:language.human_language)) who has coached the carolina panthers? Ron Rivera 13.147 formula (fb:american_football.football_coach.current_team_head_coached fb:en.carolina_panthers)) (value (list (name fb:en.ron_rivera "Ron Rivera"))) (type fb:american_football.football_coach) what are the eight stages of erikson's theory? Developmental psychology 2.015 formula (!fb:education.academic.research_areas fb:en.erik_erikson)) (value (list (name fb:en.developmental_psychology "Developmental psychology"))) (type fb:education.field_of_study) what time zone is toronto gmt? Eastern Time Zone 18.97 formula (and (fb:type.object.type fb:time.time_zone) (fb:time.time_zone.locations_in_this_time_zone fb:en.toronto))) (value (list (name fb:en.north_american_eastern_time_zone "Eastern Time Zone"))) (type (union fb:time.time_zone)) who won utah attorney general? John Swallow 7.715 formula (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.utah) (fb:government.government_position_held.basic_title fb:en.attorney_general)))) (value (list (name fb:m.09v9vs_ "John Swallow") (name fb:en.mark_shurtleff "Mark Shurtleff"))) (type fb:government.politician) who won utah attorney general? Mark Shurtleff 7.715 formula (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.utah) (fb:government.government_position_held.basic_title fb:en.attorney_general)))) (value (list (name fb:m.09v9vs_ "John Swallow") (name fb:en.mark_shurtleff "Mark Shurtleff"))) (type fb:government.politician) who is the leader of libya 2011? Abdul Hafiz Ghoga 14.513 formula (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.libya) (fb:government.government_position_held.from (date 2011 -1 -1))))) (value (list (name fb:m.0gg5c41 "Abdul Hafiz Ghoga") (name fb:m.0hglttd "Abdurrahim El-Keib") (name fb:m.0gjbh05 "Ali Tarhouni") (name fb:m.0gg6wgg "Mustafa Abdul Jalil") (name fb:m.0gh76k6 "Mahmoud Jibril") (name fb:m.0hhpnsl "Mustafa A.G. Abushagur"))) (type fb:government.politician) who is the leader of libya 2011? Abdurrahim El-Keib 14.513 formula (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.libya) (fb:government.government_position_held.from (date 2011 -1 -1))))) (value (list (name fb:m.0gg5c41 "Abdul Hafiz Ghoga") (name fb:m.0hglttd "Abdurrahim El-Keib") (name fb:m.0gjbh05 "Ali Tarhouni") (name fb:m.0gg6wgg "Mustafa Abdul Jalil") (name fb:m.0gh76k6 "Mahmoud Jibril") (name fb:m.0hhpnsl "Mustafa A.G. Abushagur"))) (type fb:government.politician) who is the leader of libya 2011? Ali Tarhouni 14.513 formula (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.libya) (fb:government.government_position_held.from (date 2011 -1 -1))))) (value (list (name fb:m.0gg5c41 "Abdul Hafiz Ghoga") (name fb:m.0hglttd "Abdurrahim El-Keib") (name fb:m.0gjbh05 "Ali Tarhouni") (name fb:m.0gg6wgg "Mustafa Abdul Jalil") (name fb:m.0gh76k6 "Mahmoud Jibril") (name fb:m.0hhpnsl "Mustafa A.G. Abushagur"))) (type fb:government.politician) who is the leader of libya 2011? Mustafa Abdul Jalil 14.513 formula (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.libya) (fb:government.government_position_held.from (date 2011 -1 -1))))) (value (list (name fb:m.0gg5c41 "Abdul Hafiz Ghoga") (name fb:m.0hglttd "Abdurrahim El-Keib") (name fb:m.0gjbh05 "Ali Tarhouni") (name fb:m.0gg6wgg "Mustafa Abdul Jalil") (name fb:m.0gh76k6 "Mahmoud Jibril") (name fb:m.0hhpnsl "Mustafa A.G. Abushagur"))) (type fb:government.politician) who is the leader of libya 2011? Mahmoud Jibril 14.513 formula (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.libya) (fb:government.government_position_held.from (date 2011 -1 -1))))) (value (list (name fb:m.0gg5c41 "Abdul Hafiz Ghoga") (name fb:m.0hglttd "Abdurrahim El-Keib") (name fb:m.0gjbh05 "Ali Tarhouni") (name fb:m.0gg6wgg "Mustafa Abdul Jalil") (name fb:m.0gh76k6 "Mahmoud Jibril") (name fb:m.0hhpnsl "Mustafa A.G. Abushagur"))) (type fb:government.politician) who is the leader of libya 2011? Mustafa A.G. Abushagur 14.513 formula (!fb:government.government_position_held.office_holder (and (!fb:government.governmental_jurisdiction.governing_officials fb:en.libya) (fb:government.government_position_held.from (date 2011 -1 -1))))) (value (list (name fb:m.0gg5c41 "Abdul Hafiz Ghoga") (name fb:m.0hglttd "Abdurrahim El-Keib") (name fb:m.0gjbh05 "Ali Tarhouni") (name fb:m.0gg6wgg "Mustafa Abdul Jalil") (name fb:m.0gh76k6 "Mahmoud Jibril") (name fb:m.0hhpnsl "Mustafa A.G. Abushagur"))) (type fb:government.politician) what the language spoken in indonesia? English Language 17.303 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.indonesia))) (value (list (name fb:en.english "English Language") (name fb:en.dutch_language "Dutch Language") (name fb:en.malay_language "Malay Language") (name fb:en.indonesian_language "Indonesian Language") (name fb:en.javanese_language "Javanese Language") (name fb:en.sundanese_language "Sunda Language") (name fb:en.balinese_language "Bali Language") (name fb:en.tobelo_language "Tobelo Language") (name fb:en.batak_languange "Batak Language") (name fb:en.madurese_language "Madura Language"))) (type (union fb:language.human_language)) what the language spoken in indonesia? Dutch Language 17.303 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.indonesia))) (value (list (name fb:en.english "English Language") (name fb:en.dutch_language "Dutch Language") (name fb:en.malay_language "Malay Language") (name fb:en.indonesian_language "Indonesian Language") (name fb:en.javanese_language "Javanese Language") (name fb:en.sundanese_language "Sunda Language") (name fb:en.balinese_language "Bali Language") (name fb:en.tobelo_language "Tobelo Language") (name fb:en.batak_languange "Batak Language") (name fb:en.madurese_language "Madura Language"))) (type (union fb:language.human_language)) what the language spoken in indonesia? Malay Language 17.303 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.indonesia))) (value (list (name fb:en.english "English Language") (name fb:en.dutch_language "Dutch Language") (name fb:en.malay_language "Malay Language") (name fb:en.indonesian_language "Indonesian Language") (name fb:en.javanese_language "Javanese Language") (name fb:en.sundanese_language "Sunda Language") (name fb:en.balinese_language "Bali Language") (name fb:en.tobelo_language "Tobelo Language") (name fb:en.batak_languange "Batak Language") (name fb:en.madurese_language "Madura Language"))) (type (union fb:language.human_language)) what the language spoken in indonesia? Indonesian Language 17.303 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.indonesia))) (value (list (name fb:en.english "English Language") (name fb:en.dutch_language "Dutch Language") (name fb:en.malay_language "Malay Language") (name fb:en.indonesian_language "Indonesian Language") (name fb:en.javanese_language "Javanese Language") (name fb:en.sundanese_language "Sunda Language") (name fb:en.balinese_language "Bali Language") (name fb:en.tobelo_language "Tobelo Language") (name fb:en.batak_languange "Batak Language") (name fb:en.madurese_language "Madura Language"))) (type (union fb:language.human_language)) what the language spoken in indonesia? Javanese Language 17.303 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.indonesia))) (value (list (name fb:en.english "English Language") (name fb:en.dutch_language "Dutch Language") (name fb:en.malay_language "Malay Language") (name fb:en.indonesian_language "Indonesian Language") (name fb:en.javanese_language "Javanese Language") (name fb:en.sundanese_language "Sunda Language") (name fb:en.balinese_language "Bali Language") (name fb:en.tobelo_language "Tobelo Language") (name fb:en.batak_languange "Batak Language") (name fb:en.madurese_language "Madura Language"))) (type (union fb:language.human_language)) what the language spoken in indonesia? Sunda Language 17.303 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.indonesia))) (value (list (name fb:en.english "English Language") (name fb:en.dutch_language "Dutch Language") (name fb:en.malay_language "Malay Language") (name fb:en.indonesian_language "Indonesian Language") (name fb:en.javanese_language "Javanese Language") (name fb:en.sundanese_language "Sunda Language") (name fb:en.balinese_language "Bali Language") (name fb:en.tobelo_language "Tobelo Language") (name fb:en.batak_languange "Batak Language") (name fb:en.madurese_language "Madura Language"))) (type (union fb:language.human_language)) what the language spoken in indonesia? Bali Language 17.303 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.indonesia))) (value (list (name fb:en.english "English Language") (name fb:en.dutch_language "Dutch Language") (name fb:en.malay_language "Malay Language") (name fb:en.indonesian_language "Indonesian Language") (name fb:en.javanese_language "Javanese Language") (name fb:en.sundanese_language "Sunda Language") (name fb:en.balinese_language "Bali Language") (name fb:en.tobelo_language "Tobelo Language") (name fb:en.batak_languange "Batak Language") (name fb:en.madurese_language "Madura Language"))) (type (union fb:language.human_language)) what the language spoken in indonesia? Tobelo Language 17.303 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.indonesia))) (value (list (name fb:en.english "English Language") (name fb:en.dutch_language "Dutch Language") (name fb:en.malay_language "Malay Language") (name fb:en.indonesian_language "Indonesian Language") (name fb:en.javanese_language "Javanese Language") (name fb:en.sundanese_language "Sunda Language") (name fb:en.balinese_language "Bali Language") (name fb:en.tobelo_language "Tobelo Language") (name fb:en.batak_languange "Batak Language") (name fb:en.madurese_language "Madura Language"))) (type (union fb:language.human_language)) what the language spoken in indonesia? Batak Language 17.303 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.indonesia))) (value (list (name fb:en.english "English Language") (name fb:en.dutch_language "Dutch Language") (name fb:en.malay_language "Malay Language") (name fb:en.indonesian_language "Indonesian Language") (name fb:en.javanese_language "Javanese Language") (name fb:en.sundanese_language "Sunda Language") (name fb:en.balinese_language "Bali Language") (name fb:en.tobelo_language "Tobelo Language") (name fb:en.batak_languange "Batak Language") (name fb:en.madurese_language "Madura Language"))) (type (union fb:language.human_language)) what the language spoken in indonesia? Madura Language 17.303 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.indonesia))) (value (list (name fb:en.english "English Language") (name fb:en.dutch_language "Dutch Language") (name fb:en.malay_language "Malay Language") (name fb:en.indonesian_language "Indonesian Language") (name fb:en.javanese_language "Javanese Language") (name fb:en.sundanese_language "Sunda Language") (name fb:en.balinese_language "Bali Language") (name fb:en.tobelo_language "Tobelo Language") (name fb:en.batak_languange "Batak Language") (name fb:en.madurese_language "Madura Language"))) (type (union fb:language.human_language)) who coaches the carolina panthers? Ron Rivera 12.548 formula (and (fb:people.person.profession fb:en.coach) (!fb:american_football.football_team.current_head_coach fb:en.carolina_panthers))) (value (list (name fb:en.ron_rivera "Ron Rivera"))) (type fb:american_football.football_coach) who played darth vader at the end of return of the jedi? David Prowse 10.311 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who played darth vader at the end of return of the jedi? James Earl Jones 10.311 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who played darth vader at the end of return of the jedi? Hayden Christensen 10.311 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who played darth vader at the end of return of the jedi? Matt Lanter 10.311 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who played darth vader at the end of return of the jedi? Sebastian Shaw 10.311 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who played darth vader at the end of return of the jedi? Robert E. Bean 10.311 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) who played darth vader at the end of return of the jedi? Jake Lloyd 10.311 formula ((lambda x (fb:film.actor.film (fb:film.performance.character (var x)))) fb:en.darth_vader)) (value (list (name fb:en.david_prowse "David Prowse") (name fb:en.james_earl_jones "James Earl Jones") (name fb:en.hayden_christensen "Hayden Christensen") (name fb:en.matt_lanter "Matt Lanter") (name fb:en.sebastian_shaw_1905 "Sebastian Shaw") (name fb:en.robert_e_bean "Robert E. Bean") (name fb:en.jake_lloyd "Jake Lloyd"))) (type fb:film.actor) when was herbert hoover born and died? West Branch 13.054 formula (!fb:people.person.place_of_birth fb:en.herbert_hoover)) (value (list (name fb:en.west_branch_iowa "West Branch"))) (type fb:location.location) what movies did joan crawford play in? What Ever Happened to Baby Jane? 12.234 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.joan_crawford))) (value (list (name fb:en.what_ever_happened_to_baby_jane "What Ever Happened to Baby Jane?") (name fb:en.sudden_fear "Sudden Fear") (name fb:en.possessed_1947 Possessed) (name fb:en.mildred_pierce_1945 "Mildred Pierce"))) (type (union fb:award.award_nominated_work)) what movies did joan crawford play in? Sudden Fear 12.234 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.joan_crawford))) (value (list (name fb:en.what_ever_happened_to_baby_jane "What Ever Happened to Baby Jane?") (name fb:en.sudden_fear "Sudden Fear") (name fb:en.possessed_1947 Possessed) (name fb:en.mildred_pierce_1945 "Mildred Pierce"))) (type (union fb:award.award_nominated_work)) what movies did joan crawford play in? Mildred Pierce 12.234 formula (and (fb:type.object.type fb:award.award_nominated_work) ((lambda x (fb:award.award_nominated_work.award_nominations (fb:award.award_nomination.award_nominee (var x)))) fb:en.joan_crawford))) (value (list (name fb:en.what_ever_happened_to_baby_jane "What Ever Happened to Baby Jane?") (name fb:en.sudden_fear "Sudden Fear") (name fb:en.possessed_1947 Possessed) (name fb:en.mildred_pierce_1945 "Mildred Pierce"))) (type (union fb:award.award_nominated_work)) what products does the united states export? Enzo the Dog 13.785 formula (fb:biology.organism.place_of_birth fb:en.united_states_of_america)) (value (list (name fb:en.enzo_the_dog "Enzo the Dog") (name fb:m.0sgpq0p Happy) (name fb:m.0p3qrhn "Benny the Bull"))) (type fb:biology.organism) what products does the united states export? Benny the Bull 13.785 formula (fb:biology.organism.place_of_birth fb:en.united_states_of_america)) (value (list (name fb:en.enzo_the_dog "Enzo the Dog") (name fb:m.0sgpq0p Happy) (name fb:m.0p3qrhn "Benny the Bull"))) (type fb:biology.organism) what did james polk do before he was president? George M. Dallas 14.433 formula (and (fb:type.object.type fb:government.us_vice_president) (!fb:government.us_president.vice_president fb:en.james_k_polk))) (value (list (name fb:en.george_m_dallas "George M. Dallas"))) (type (union fb:government.us_vice_president)) what is the kentucky state bird? Spotted bass 9.944 formula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.kentucky)) (value (list (name fb:en.goldenrod Goldenrod) (name fb:en.brachiopod Brachiopod) (name fb:en.spotted_bass "Spotted bass") (name fb:en.united_we_stand_divided_we_fall "United we stand, divided we fall") (name fb:en.liriodendron_tulipifera "Liriodendron tulipifera") (name fb:m.01m0p1 Cardinal) (name fb:en.milk Milk) (name fb:en.liriodendron Liriodendron) (name fb:en.viceroy_butterfly Viceroy))) (type fb:location.symbol_of_administrative_division) what is the kentucky state bird? United we stand, divided we fall 9.944 formula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.kentucky)) (value (list (name fb:en.goldenrod Goldenrod) (name fb:en.brachiopod Brachiopod) (name fb:en.spotted_bass "Spotted bass") (name fb:en.united_we_stand_divided_we_fall "United we stand, divided we fall") (name fb:en.liriodendron_tulipifera "Liriodendron tulipifera") (name fb:m.01m0p1 Cardinal) (name fb:en.milk Milk) (name fb:en.liriodendron Liriodendron) (name fb:en.viceroy_butterfly Viceroy))) (type fb:location.symbol_of_administrative_division) what is the kentucky state bird? Liriodendron tulipifera 9.944 formula ((lambda x (fb:location.symbol_of_administrative_division.official_symbol_of (fb:location.location_symbol_relationship.administrative_division (var x)))) fb:en.kentucky)) (value (list (name fb:en.goldenrod Goldenrod) (name fb:en.brachiopod Brachiopod) (name fb:en.spotted_bass "Spotted bass") (name fb:en.united_we_stand_divided_we_fall "United we stand, divided we fall") (name fb:en.liriodendron_tulipifera "Liriodendron tulipifera") (name fb:m.01m0p1 Cardinal) (name fb:en.milk Milk) (name fb:en.liriodendron Liriodendron) (name fb:en.viceroy_butterfly Viceroy))) (type fb:location.symbol_of_administrative_division) what there to do in salt lake city utah? Salt Lake City 10.048 formula (and (fb:type.object.type fb:location.citytown) (!fb:location.hud_county_place.place fb:en.salt_lake_city))) (value (list (name fb:en.salt_lake_city "Salt Lake City"))) (type (union fb:location.citytown)) what is the state of montana known for? North Dakota 15.949 formula (and (fb:type.object.type fb:location.us_state) ((lambda x (!fb:location.adjoining_relationship.adjoins (!fb:location.location.adjoin_s (var x)))) fb:en.montana))) (value (list (name fb:en.idaho Idaho) (name fb:en.north_dakota "North Dakota") (name fb:en.wyoming Wyoming) (name fb:en.south_dakota "South Dakota"))) (type (union fb:location.us_state)) what is the state of montana known for? South Dakota 15.949 formula (and (fb:type.object.type fb:location.us_state) ((lambda x (!fb:location.adjoining_relationship.adjoins (!fb:location.location.adjoin_s (var x)))) fb:en.montana))) (value (list (name fb:en.idaho Idaho) (name fb:en.north_dakota "North Dakota") (name fb:en.wyoming Wyoming) (name fb:en.south_dakota "South Dakota"))) (type (union fb:location.us_state)) who will be the red sox next coach? DeMarlo Hale 15.944 formula ((lambda x (!fb:baseball.current_coaching_tenure.baseball_coach (!fb:baseball.baseball_team.current_coaches (var x)))) fb:en.boston_red_sox)) (value (list (name fb:en.demarlo_hale "DeMarlo Hale") (name fb:en.brad_mills "Brad Mills") (name fb:en.tim_bogar "Tim Bogar") (name fb:en.alex_ochoa "Alex Ochoa") (name fb:en.dave_magadan "Dave Magadan") (name fb:en.gary_tuck "Gary Tuck"))) (type fb:baseball.baseball_coach) who will be the red sox next coach? Brad Mills 15.944 formula ((lambda x (!fb:baseball.current_coaching_tenure.baseball_coach (!fb:baseball.baseball_team.current_coaches (var x)))) fb:en.boston_red_sox)) (value (list (name fb:en.demarlo_hale "DeMarlo Hale") (name fb:en.brad_mills "Brad Mills") (name fb:en.tim_bogar "Tim Bogar") (name fb:en.alex_ochoa "Alex Ochoa") (name fb:en.dave_magadan "Dave Magadan") (name fb:en.gary_tuck "Gary Tuck"))) (type fb:baseball.baseball_coach) who will be the red sox next coach? Tim Bogar 15.944 formula ((lambda x (!fb:baseball.current_coaching_tenure.baseball_coach (!fb:baseball.baseball_team.current_coaches (var x)))) fb:en.boston_red_sox)) (value (list (name fb:en.demarlo_hale "DeMarlo Hale") (name fb:en.brad_mills "Brad Mills") (name fb:en.tim_bogar "Tim Bogar") (name fb:en.alex_ochoa "Alex Ochoa") (name fb:en.dave_magadan "Dave Magadan") (name fb:en.gary_tuck "Gary Tuck"))) (type fb:baseball.baseball_coach) who will be the red sox next coach? Alex Ochoa 15.944 formula ((lambda x (!fb:baseball.current_coaching_tenure.baseball_coach (!fb:baseball.baseball_team.current_coaches (var x)))) fb:en.boston_red_sox)) (value (list (name fb:en.demarlo_hale "DeMarlo Hale") (name fb:en.brad_mills "Brad Mills") (name fb:en.tim_bogar "Tim Bogar") (name fb:en.alex_ochoa "Alex Ochoa") (name fb:en.dave_magadan "Dave Magadan") (name fb:en.gary_tuck "Gary Tuck"))) (type fb:baseball.baseball_coach) who will be the red sox next coach? Dave Magadan 15.944 formula ((lambda x (!fb:baseball.current_coaching_tenure.baseball_coach (!fb:baseball.baseball_team.current_coaches (var x)))) fb:en.boston_red_sox)) (value (list (name fb:en.demarlo_hale "DeMarlo Hale") (name fb:en.brad_mills "Brad Mills") (name fb:en.tim_bogar "Tim Bogar") (name fb:en.alex_ochoa "Alex Ochoa") (name fb:en.dave_magadan "Dave Magadan") (name fb:en.gary_tuck "Gary Tuck"))) (type fb:baseball.baseball_coach) who will be the red sox next coach? Gary Tuck 15.944 formula ((lambda x (!fb:baseball.current_coaching_tenure.baseball_coach (!fb:baseball.baseball_team.current_coaches (var x)))) fb:en.boston_red_sox)) (value (list (name fb:en.demarlo_hale "DeMarlo Hale") (name fb:en.brad_mills "Brad Mills") (name fb:en.tim_bogar "Tim Bogar") (name fb:en.alex_ochoa "Alex Ochoa") (name fb:en.dave_magadan "Dave Magadan") (name fb:en.gary_tuck "Gary Tuck"))) (type fb:baseball.baseball_coach) who is the current ohio state senator? Thomas Worthington 11.834 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.ohio)) (value (list (name fb:en.thomas_worthington "Thomas Worthington") (name fb:en.william_henry_harrison "William Henry Harrison") (name fb:en.james_w_huffman "James W. Huffman") (name fb:en.kingsley_a_taft "Kingsley A. Taft") (name fb:en.jacob_burnet "Jacob Burnet") (name fb:en.mike_dewine "Mike DeWine") (name fb:en.ethan_allen_brown "Ethan Allen Brown") (name fb:en.benjamin_ruggles "Benjamin Ruggles") (name fb:en.william_a_trimble "William A. Trimble") (name fb:en.simeon_d_fess "Simeon D. Fess"))) (type fb:government.politician) who is the current ohio state senator? William Henry Harrison 11.834 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.ohio)) (value (list (name fb:en.thomas_worthington "Thomas Worthington") (name fb:en.william_henry_harrison "William Henry Harrison") (name fb:en.james_w_huffman "James W. Huffman") (name fb:en.kingsley_a_taft "Kingsley A. Taft") (name fb:en.jacob_burnet "Jacob Burnet") (name fb:en.mike_dewine "Mike DeWine") (name fb:en.ethan_allen_brown "Ethan Allen Brown") (name fb:en.benjamin_ruggles "Benjamin Ruggles") (name fb:en.william_a_trimble "William A. Trimble") (name fb:en.simeon_d_fess "Simeon D. Fess"))) (type fb:government.politician) who is the current ohio state senator? James W. Huffman 11.834 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.ohio)) (value (list (name fb:en.thomas_worthington "Thomas Worthington") (name fb:en.william_henry_harrison "William Henry Harrison") (name fb:en.james_w_huffman "James W. Huffman") (name fb:en.kingsley_a_taft "Kingsley A. Taft") (name fb:en.jacob_burnet "Jacob Burnet") (name fb:en.mike_dewine "Mike DeWine") (name fb:en.ethan_allen_brown "Ethan Allen Brown") (name fb:en.benjamin_ruggles "Benjamin Ruggles") (name fb:en.william_a_trimble "William A. Trimble") (name fb:en.simeon_d_fess "Simeon D. Fess"))) (type fb:government.politician) who is the current ohio state senator? Kingsley A. Taft 11.834 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.ohio)) (value (list (name fb:en.thomas_worthington "Thomas Worthington") (name fb:en.william_henry_harrison "William Henry Harrison") (name fb:en.james_w_huffman "James W. Huffman") (name fb:en.kingsley_a_taft "Kingsley A. Taft") (name fb:en.jacob_burnet "Jacob Burnet") (name fb:en.mike_dewine "Mike DeWine") (name fb:en.ethan_allen_brown "Ethan Allen Brown") (name fb:en.benjamin_ruggles "Benjamin Ruggles") (name fb:en.william_a_trimble "William A. Trimble") (name fb:en.simeon_d_fess "Simeon D. Fess"))) (type fb:government.politician) who is the current ohio state senator? Jacob Burnet 11.834 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.ohio)) (value (list (name fb:en.thomas_worthington "Thomas Worthington") (name fb:en.william_henry_harrison "William Henry Harrison") (name fb:en.james_w_huffman "James W. Huffman") (name fb:en.kingsley_a_taft "Kingsley A. Taft") (name fb:en.jacob_burnet "Jacob Burnet") (name fb:en.mike_dewine "Mike DeWine") (name fb:en.ethan_allen_brown "Ethan Allen Brown") (name fb:en.benjamin_ruggles "Benjamin Ruggles") (name fb:en.william_a_trimble "William A. Trimble") (name fb:en.simeon_d_fess "Simeon D. Fess"))) (type fb:government.politician) who is the current ohio state senator? Mike DeWine 11.834 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.ohio)) (value (list (name fb:en.thomas_worthington "Thomas Worthington") (name fb:en.william_henry_harrison "William Henry Harrison") (name fb:en.james_w_huffman "James W. Huffman") (name fb:en.kingsley_a_taft "Kingsley A. Taft") (name fb:en.jacob_burnet "Jacob Burnet") (name fb:en.mike_dewine "Mike DeWine") (name fb:en.ethan_allen_brown "Ethan Allen Brown") (name fb:en.benjamin_ruggles "Benjamin Ruggles") (name fb:en.william_a_trimble "William A. Trimble") (name fb:en.simeon_d_fess "Simeon D. Fess"))) (type fb:government.politician) who is the current ohio state senator? Ethan Allen Brown 11.834 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.ohio)) (value (list (name fb:en.thomas_worthington "Thomas Worthington") (name fb:en.william_henry_harrison "William Henry Harrison") (name fb:en.james_w_huffman "James W. Huffman") (name fb:en.kingsley_a_taft "Kingsley A. Taft") (name fb:en.jacob_burnet "Jacob Burnet") (name fb:en.mike_dewine "Mike DeWine") (name fb:en.ethan_allen_brown "Ethan Allen Brown") (name fb:en.benjamin_ruggles "Benjamin Ruggles") (name fb:en.william_a_trimble "William A. Trimble") (name fb:en.simeon_d_fess "Simeon D. Fess"))) (type fb:government.politician) who is the current ohio state senator? Benjamin Ruggles 11.834 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.ohio)) (value (list (name fb:en.thomas_worthington "Thomas Worthington") (name fb:en.william_henry_harrison "William Henry Harrison") (name fb:en.james_w_huffman "James W. Huffman") (name fb:en.kingsley_a_taft "Kingsley A. Taft") (name fb:en.jacob_burnet "Jacob Burnet") (name fb:en.mike_dewine "Mike DeWine") (name fb:en.ethan_allen_brown "Ethan Allen Brown") (name fb:en.benjamin_ruggles "Benjamin Ruggles") (name fb:en.william_a_trimble "William A. Trimble") (name fb:en.simeon_d_fess "Simeon D. Fess"))) (type fb:government.politician) who is the current ohio state senator? William A. Trimble 11.834 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.ohio)) (value (list (name fb:en.thomas_worthington "Thomas Worthington") (name fb:en.william_henry_harrison "William Henry Harrison") (name fb:en.james_w_huffman "James W. Huffman") (name fb:en.kingsley_a_taft "Kingsley A. Taft") (name fb:en.jacob_burnet "Jacob Burnet") (name fb:en.mike_dewine "Mike DeWine") (name fb:en.ethan_allen_brown "Ethan Allen Brown") (name fb:en.benjamin_ruggles "Benjamin Ruggles") (name fb:en.william_a_trimble "William A. Trimble") (name fb:en.simeon_d_fess "Simeon D. Fess"))) (type fb:government.politician) who is the current ohio state senator? Simeon D. Fess 11.834 formula ((lambda x (!fb:government.government_position_held.office_holder (!fb:government.political_district.representatives (var x)))) fb:en.ohio)) (value (list (name fb:en.thomas_worthington "Thomas Worthington") (name fb:en.william_henry_harrison "William Henry Harrison") (name fb:en.james_w_huffman "James W. Huffman") (name fb:en.kingsley_a_taft "Kingsley A. Taft") (name fb:en.jacob_burnet "Jacob Burnet") (name fb:en.mike_dewine "Mike DeWine") (name fb:en.ethan_allen_brown "Ethan Allen Brown") (name fb:en.benjamin_ruggles "Benjamin Ruggles") (name fb:en.william_a_trimble "William A. Trimble") (name fb:en.simeon_d_fess "Simeon D. Fess"))) (type fb:government.politician) what are the major languages spoken in the united kingdom? English Language 21.692 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.united_kingdom_of_great_britain_and_ireland))) (value (list (name fb:en.english "English Language") (name fb:en.gaelic_irish Irish) (name fb:en.scottish_gaelic_language "Scottish Gaelic language") (name fb:en.scots_language "Scots Language") (name fb:en.cornish_language "Cornish Language") (name fb:en.welsh_language "Welsh Language") (name fb:en.esperanto "Esperanto Language") (name fb:en.british_sign_language "British Sign Language"))) (type fb:language.human_language) what are the major languages spoken in the united kingdom? Scottish Gaelic language 21.692 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.united_kingdom_of_great_britain_and_ireland))) (value (list (name fb:en.english "English Language") (name fb:en.gaelic_irish Irish) (name fb:en.scottish_gaelic_language "Scottish Gaelic language") (name fb:en.scots_language "Scots Language") (name fb:en.cornish_language "Cornish Language") (name fb:en.welsh_language "Welsh Language") (name fb:en.esperanto "Esperanto Language") (name fb:en.british_sign_language "British Sign Language"))) (type fb:language.human_language) what are the major languages spoken in the united kingdom? Scots Language 21.692 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.united_kingdom_of_great_britain_and_ireland))) (value (list (name fb:en.english "English Language") (name fb:en.gaelic_irish Irish) (name fb:en.scottish_gaelic_language "Scottish Gaelic language") (name fb:en.scots_language "Scots Language") (name fb:en.cornish_language "Cornish Language") (name fb:en.welsh_language "Welsh Language") (name fb:en.esperanto "Esperanto Language") (name fb:en.british_sign_language "British Sign Language"))) (type fb:language.human_language) what are the major languages spoken in the united kingdom? Cornish Language 21.692 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.united_kingdom_of_great_britain_and_ireland))) (value (list (name fb:en.english "English Language") (name fb:en.gaelic_irish Irish) (name fb:en.scottish_gaelic_language "Scottish Gaelic language") (name fb:en.scots_language "Scots Language") (name fb:en.cornish_language "Cornish Language") (name fb:en.welsh_language "Welsh Language") (name fb:en.esperanto "Esperanto Language") (name fb:en.british_sign_language "British Sign Language"))) (type fb:language.human_language) what are the major languages spoken in the united kingdom? Welsh Language 21.692 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.united_kingdom_of_great_britain_and_ireland))) (value (list (name fb:en.english "English Language") (name fb:en.gaelic_irish Irish) (name fb:en.scottish_gaelic_language "Scottish Gaelic language") (name fb:en.scots_language "Scots Language") (name fb:en.cornish_language "Cornish Language") (name fb:en.welsh_language "Welsh Language") (name fb:en.esperanto "Esperanto Language") (name fb:en.british_sign_language "British Sign Language"))) (type fb:language.human_language) what are the major languages spoken in the united kingdom? Esperanto Language 21.692 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.united_kingdom_of_great_britain_and_ireland))) (value (list (name fb:en.english "English Language") (name fb:en.gaelic_irish Irish) (name fb:en.scottish_gaelic_language "Scottish Gaelic language") (name fb:en.scots_language "Scots Language") (name fb:en.cornish_language "Cornish Language") (name fb:en.welsh_language "Welsh Language") (name fb:en.esperanto "Esperanto Language") (name fb:en.british_sign_language "British Sign Language"))) (type fb:language.human_language) what are the major languages spoken in the united kingdom? British Sign Language 21.692 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.united_kingdom_of_great_britain_and_ireland))) (value (list (name fb:en.english "English Language") (name fb:en.gaelic_irish Irish) (name fb:en.scottish_gaelic_language "Scottish Gaelic language") (name fb:en.scots_language "Scots Language") (name fb:en.cornish_language "Cornish Language") (name fb:en.welsh_language "Welsh Language") (name fb:en.esperanto "Esperanto Language") (name fb:en.british_sign_language "British Sign Language"))) (type fb:language.human_language) what percentage of cases does the us supreme court take? Edwards v. Canada 7.762 formula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada "Edwards v. Canada") (name fb:en.mckay_v_the_queen "McKay v. The Queen") (name fb:en.lovelace_v_ontario "Lovelace v. Ontario") (name fb:en.monsanto_canada_inc_v_schmeiser "Monsanto Canada Inc. v. Schmeiser") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal "Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal") (name fb:en.priestman_v_colangelo "Priestman v. Colangelo") (name fb:en.delisle_v_canada "Delisle v. Canada") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc "Kirkbi AG v. Ritvik Holdings Inc.") (name fb:m.0ch3zg5 "Haida Nation v. British Columbia") (name fb:en.kienapple_v_the_queen "Kienapple v. The Queen"))) (type fb:law.legal_case) what percentage of cases does the us supreme court take? McKay v. The Queen 7.762 formula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada "Edwards v. Canada") (name fb:en.mckay_v_the_queen "McKay v. The Queen") (name fb:en.lovelace_v_ontario "Lovelace v. Ontario") (name fb:en.monsanto_canada_inc_v_schmeiser "Monsanto Canada Inc. v. Schmeiser") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal "Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal") (name fb:en.priestman_v_colangelo "Priestman v. Colangelo") (name fb:en.delisle_v_canada "Delisle v. Canada") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc "Kirkbi AG v. Ritvik Holdings Inc.") (name fb:m.0ch3zg5 "Haida Nation v. British Columbia") (name fb:en.kienapple_v_the_queen "Kienapple v. The Queen"))) (type fb:law.legal_case) what percentage of cases does the us supreme court take? Lovelace v. Ontario 7.762 formula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada "Edwards v. Canada") (name fb:en.mckay_v_the_queen "McKay v. The Queen") (name fb:en.lovelace_v_ontario "Lovelace v. Ontario") (name fb:en.monsanto_canada_inc_v_schmeiser "Monsanto Canada Inc. v. Schmeiser") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal "Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal") (name fb:en.priestman_v_colangelo "Priestman v. Colangelo") (name fb:en.delisle_v_canada "Delisle v. Canada") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc "Kirkbi AG v. Ritvik Holdings Inc.") (name fb:m.0ch3zg5 "Haida Nation v. British Columbia") (name fb:en.kienapple_v_the_queen "Kienapple v. The Queen"))) (type fb:law.legal_case) what percentage of cases does the us supreme court take? Monsanto Canada Inc. v. Schmeiser 7.762 formula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada "Edwards v. Canada") (name fb:en.mckay_v_the_queen "McKay v. The Queen") (name fb:en.lovelace_v_ontario "Lovelace v. Ontario") (name fb:en.monsanto_canada_inc_v_schmeiser "Monsanto Canada Inc. v. Schmeiser") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal "Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal") (name fb:en.priestman_v_colangelo "Priestman v. Colangelo") (name fb:en.delisle_v_canada "Delisle v. Canada") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc "Kirkbi AG v. Ritvik Holdings Inc.") (name fb:m.0ch3zg5 "Haida Nation v. British Columbia") (name fb:en.kienapple_v_the_queen "Kienapple v. The Queen"))) (type fb:law.legal_case) what percentage of cases does the us supreme court take? Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal 7.762 formula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada "Edwards v. Canada") (name fb:en.mckay_v_the_queen "McKay v. The Queen") (name fb:en.lovelace_v_ontario "Lovelace v. Ontario") (name fb:en.monsanto_canada_inc_v_schmeiser "Monsanto Canada Inc. v. Schmeiser") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal "Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal") (name fb:en.priestman_v_colangelo "Priestman v. Colangelo") (name fb:en.delisle_v_canada "Delisle v. Canada") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc "Kirkbi AG v. Ritvik Holdings Inc.") (name fb:m.0ch3zg5 "Haida Nation v. British Columbia") (name fb:en.kienapple_v_the_queen "Kienapple v. The Queen"))) (type fb:law.legal_case) what percentage of cases does the us supreme court take? Priestman v. Colangelo 7.762 formula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada "Edwards v. Canada") (name fb:en.mckay_v_the_queen "McKay v. The Queen") (name fb:en.lovelace_v_ontario "Lovelace v. Ontario") (name fb:en.monsanto_canada_inc_v_schmeiser "Monsanto Canada Inc. v. Schmeiser") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal "Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal") (name fb:en.priestman_v_colangelo "Priestman v. Colangelo") (name fb:en.delisle_v_canada "Delisle v. Canada") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc "Kirkbi AG v. Ritvik Holdings Inc.") (name fb:m.0ch3zg5 "Haida Nation v. British Columbia") (name fb:en.kienapple_v_the_queen "Kienapple v. The Queen"))) (type fb:law.legal_case) what percentage of cases does the us supreme court take? Delisle v. Canada 7.762 formula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada "Edwards v. Canada") (name fb:en.mckay_v_the_queen "McKay v. The Queen") (name fb:en.lovelace_v_ontario "Lovelace v. Ontario") (name fb:en.monsanto_canada_inc_v_schmeiser "Monsanto Canada Inc. v. Schmeiser") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal "Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal") (name fb:en.priestman_v_colangelo "Priestman v. Colangelo") (name fb:en.delisle_v_canada "Delisle v. Canada") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc "Kirkbi AG v. Ritvik Holdings Inc.") (name fb:m.0ch3zg5 "Haida Nation v. British Columbia") (name fb:en.kienapple_v_the_queen "Kienapple v. The Queen"))) (type fb:law.legal_case) what percentage of cases does the us supreme court take? Kirkbi AG v. Ritvik Holdings Inc. 7.762 formula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada "Edwards v. Canada") (name fb:en.mckay_v_the_queen "McKay v. The Queen") (name fb:en.lovelace_v_ontario "Lovelace v. Ontario") (name fb:en.monsanto_canada_inc_v_schmeiser "Monsanto Canada Inc. v. Schmeiser") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal "Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal") (name fb:en.priestman_v_colangelo "Priestman v. Colangelo") (name fb:en.delisle_v_canada "Delisle v. Canada") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc "Kirkbi AG v. Ritvik Holdings Inc.") (name fb:m.0ch3zg5 "Haida Nation v. British Columbia") (name fb:en.kienapple_v_the_queen "Kienapple v. The Queen"))) (type fb:law.legal_case) what percentage of cases does the us supreme court take? Haida Nation v. British Columbia 7.762 formula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada "Edwards v. Canada") (name fb:en.mckay_v_the_queen "McKay v. The Queen") (name fb:en.lovelace_v_ontario "Lovelace v. Ontario") (name fb:en.monsanto_canada_inc_v_schmeiser "Monsanto Canada Inc. v. Schmeiser") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal "Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal") (name fb:en.priestman_v_colangelo "Priestman v. Colangelo") (name fb:en.delisle_v_canada "Delisle v. Canada") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc "Kirkbi AG v. Ritvik Holdings Inc.") (name fb:m.0ch3zg5 "Haida Nation v. British Columbia") (name fb:en.kienapple_v_the_queen "Kienapple v. The Queen"))) (type fb:law.legal_case) what percentage of cases does the us supreme court take? Kienapple v. The Queen 7.762 formula (!fb:law.court.legal_cases fb:en.supreme_court_of_canada)) (value (list (name fb:en.edwards_v_canada "Edwards v. Canada") (name fb:en.mckay_v_the_queen "McKay v. The Queen") (name fb:en.lovelace_v_ontario "Lovelace v. Ontario") (name fb:en.monsanto_canada_inc_v_schmeiser "Monsanto Canada Inc. v. Schmeiser") (name fb:en.henry_birks_sons_ltd_v_the_city_of_montreal "Henry Birks & Sons (Montreal) Ltd. v. the City of Montreal") (name fb:en.priestman_v_colangelo "Priestman v. Colangelo") (name fb:en.delisle_v_canada "Delisle v. Canada") (name fb:en.kirkbi_ag_v_ritvik_holdings_inc "Kirkbi AG v. Ritvik Holdings Inc.") (name fb:m.0ch3zg5 "Haida Nation v. British Columbia") (name fb:en.kienapple_v_the_queen "Kienapple v. The Queen"))) (type fb:law.legal_case) who was ulysses s. grant? Jim Walsh 4.928 formula (!fb:symbols.name_source.namesakes fb:en.ulysses_s_grant)) (value (list (name fb:m.0v3dktt "Jim Walsh") (name fb:en.3154_grant "3154 Grant"))) (type fb:symbols.namesake) who was ulysses s. grant? 3154 Grant 4.928 formula (!fb:symbols.name_source.namesakes fb:en.ulysses_s_grant)) (value (list (name fb:m.0v3dktt "Jim Walsh") (name fb:en.3154_grant "3154 Grant"))) (type fb:symbols.namesake) when was the last time the boston bruins went to the stanley cup? 1939 Stanley Cup Finals 14.511 formula (fb:sports.sports_championship_event.champion fb:en.boston_bruins)) (value (list (name fb:en.1939_stanley_cup_finals "1939 Stanley Cup Finals") (name fb:en.1972_stanley_cup_finals "1972 Stanley Cup Finals") (name fb:en.1970_stanley_cup_finals "1970 Stanley Cup Finals") (name fb:m.0glrlkc "2011 Stanley Cup Finals") (name fb:en.1929_stanley_cup_finals "1929 Stanley Cup Finals") (name fb:en.1941_stanley_cup_finals "1941 Stanley Cup Finals"))) (type fb:sports.sports_championship_event) when was the last time the boston bruins went to the stanley cup? 1972 Stanley Cup Finals 14.511 formula (fb:sports.sports_championship_event.champion fb:en.boston_bruins)) (value (list (name fb:en.1939_stanley_cup_finals "1939 Stanley Cup Finals") (name fb:en.1972_stanley_cup_finals "1972 Stanley Cup Finals") (name fb:en.1970_stanley_cup_finals "1970 Stanley Cup Finals") (name fb:m.0glrlkc "2011 Stanley Cup Finals") (name fb:en.1929_stanley_cup_finals "1929 Stanley Cup Finals") (name fb:en.1941_stanley_cup_finals "1941 Stanley Cup Finals"))) (type fb:sports.sports_championship_event) when was the last time the boston bruins went to the stanley cup? 1970 Stanley Cup Finals 14.511 formula (fb:sports.sports_championship_event.champion fb:en.boston_bruins)) (value (list (name fb:en.1939_stanley_cup_finals "1939 Stanley Cup Finals") (name fb:en.1972_stanley_cup_finals "1972 Stanley Cup Finals") (name fb:en.1970_stanley_cup_finals "1970 Stanley Cup Finals") (name fb:m.0glrlkc "2011 Stanley Cup Finals") (name fb:en.1929_stanley_cup_finals "1929 Stanley Cup Finals") (name fb:en.1941_stanley_cup_finals "1941 Stanley Cup Finals"))) (type fb:sports.sports_championship_event) when was the last time the boston bruins went to the stanley cup? 2011 Stanley Cup Finals 14.511 formula (fb:sports.sports_championship_event.champion fb:en.boston_bruins)) (value (list (name fb:en.1939_stanley_cup_finals "1939 Stanley Cup Finals") (name fb:en.1972_stanley_cup_finals "1972 Stanley Cup Finals") (name fb:en.1970_stanley_cup_finals "1970 Stanley Cup Finals") (name fb:m.0glrlkc "2011 Stanley Cup Finals") (name fb:en.1929_stanley_cup_finals "1929 Stanley Cup Finals") (name fb:en.1941_stanley_cup_finals "1941 Stanley Cup Finals"))) (type fb:sports.sports_championship_event) when was the last time the boston bruins went to the stanley cup? 1929 Stanley Cup Finals 14.511 formula (fb:sports.sports_championship_event.champion fb:en.boston_bruins)) (value (list (name fb:en.1939_stanley_cup_finals "1939 Stanley Cup Finals") (name fb:en.1972_stanley_cup_finals "1972 Stanley Cup Finals") (name fb:en.1970_stanley_cup_finals "1970 Stanley Cup Finals") (name fb:m.0glrlkc "2011 Stanley Cup Finals") (name fb:en.1929_stanley_cup_finals "1929 Stanley Cup Finals") (name fb:en.1941_stanley_cup_finals "1941 Stanley Cup Finals"))) (type fb:sports.sports_championship_event) when was the last time the boston bruins went to the stanley cup? 1941 Stanley Cup Finals 14.511 formula (fb:sports.sports_championship_event.champion fb:en.boston_bruins)) (value (list (name fb:en.1939_stanley_cup_finals "1939 Stanley Cup Finals") (name fb:en.1972_stanley_cup_finals "1972 Stanley Cup Finals") (name fb:en.1970_stanley_cup_finals "1970 Stanley Cup Finals") (name fb:m.0glrlkc "2011 Stanley Cup Finals") (name fb:en.1929_stanley_cup_finals "1929 Stanley Cup Finals") (name fb:en.1941_stanley_cup_finals "1941 Stanley Cup Finals"))) (type fb:sports.sports_championship_event) who is meredith gray married to in real life? Entertainment Weekly annotation index 5.146 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.real_life)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) who is meredith gray married to in real life? Blissful Master Index 5.146 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.real_life)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) who is meredith gray married to in real life? Blissful Celebrities 5.146 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.real_life)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) what inspired michelangelo buonarroti? February 18 -0.723 formula (and (fb:type.object.type fb:common.topic) (!fb:common.image.appears_in_topic_gallery fb:m.044pm7v))) (value (list (name fb:en.february_18 "February 18"))) (type fb:common.topic) what does monsanto own? Roundup Ready® 8.968 formula ((lambda x (fb:business.brand.owner_s (fb:business.company_brand_relationship.company (var x)))) fb:en.monsanto)) (value (list (name fb:m.0hnqbfg "Roundup Ready®") (name fb:en.roundup Roundup) (name fb:m.0h5tlnk Weathermax))) (type fb:business.brand) who did woody harrelson play on cheers? Bullet For Adolf 5.784 formula (!fb:theater.theater_director.plays_directed fb:en.woody_harrelson)) (value (list (name fb:m.0lh02yc "Bullet For Adolf"))) (type fb:theater.theater_production) what language do they speak in sweden yahoo? Swedish Language 16.745 formula (!fb:location.country.official_language fb:en.swedem)) (value (list (name fb:en.swedish_language "Swedish Language"))) (type fb:language.human_language) what language did they speak in ghana? English Language 17.697 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.official_language fb:en.ghana))) (value (list (name fb:en.english "English Language"))) (type (union fb:language.human_language)) what form of government do we have in the philippines? Unitary state 22.005 formula (fb:government.form_of_government.countries fb:en.philippines)) (value (list (name fb:en.unitary_state "Unitary state") (name fb:en.republic Republic) (name fb:en.presidential_system "Presidential system") (name fb:en.constitutional_republic "Constitutional republic"))) (type fb:government.form_of_government) what form of government do we have in the philippines? Presidential system 22.005 formula (fb:government.form_of_government.countries fb:en.philippines)) (value (list (name fb:en.unitary_state "Unitary state") (name fb:en.republic Republic) (name fb:en.presidential_system "Presidential system") (name fb:en.constitutional_republic "Constitutional republic"))) (type fb:government.form_of_government) what form of government do we have in the philippines? Constitutional republic 22.005 formula (fb:government.form_of_government.countries fb:en.philippines)) (value (list (name fb:en.unitary_state "Unitary state") (name fb:en.republic Republic) (name fb:en.presidential_system "Presidential system") (name fb:en.constitutional_republic "Constitutional republic"))) (type fb:government.form_of_government) what colleges did mitt romney attend? Harvard University 20.044 formula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.mitt_romney))) (value (list (name fb:en.harvard_university "Harvard University") (name fb:en.stanford_university "Stanford University") (name fb:en.harvard_business_school "Harvard Business School") (name fb:en.harvard_law_school "Harvard Law School") (name fb:en.brigham_young_university "Brigham Young University"))) (type fb:education.university) what colleges did mitt romney attend? Stanford University 20.044 formula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.mitt_romney))) (value (list (name fb:en.harvard_university "Harvard University") (name fb:en.stanford_university "Stanford University") (name fb:en.harvard_business_school "Harvard Business School") (name fb:en.harvard_law_school "Harvard Law School") (name fb:en.brigham_young_university "Brigham Young University"))) (type fb:education.university) what colleges did mitt romney attend? Harvard Business School 20.044 formula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.mitt_romney))) (value (list (name fb:en.harvard_university "Harvard University") (name fb:en.stanford_university "Stanford University") (name fb:en.harvard_business_school "Harvard Business School") (name fb:en.harvard_law_school "Harvard Law School") (name fb:en.brigham_young_university "Brigham Young University"))) (type fb:education.university) what colleges did mitt romney attend? Harvard Law School 20.044 formula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.mitt_romney))) (value (list (name fb:en.harvard_university "Harvard University") (name fb:en.stanford_university "Stanford University") (name fb:en.harvard_business_school "Harvard Business School") (name fb:en.harvard_law_school "Harvard Law School") (name fb:en.brigham_young_university "Brigham Young University"))) (type fb:education.university) what colleges did mitt romney attend? Brigham Young University 20.044 formula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.mitt_romney))) (value (list (name fb:en.harvard_university "Harvard University") (name fb:en.stanford_university "Stanford University") (name fb:en.harvard_business_school "Harvard Business School") (name fb:en.harvard_law_school "Harvard Law School") (name fb:en.brigham_young_university "Brigham Young University"))) (type fb:education.university) who was the secretary of state when andrew jackson was president? John C. Calhoun 17.154 formula (fb:government.us_vice_president.to_president fb:en.andrew_jackson)) (value (list (name fb:en.john_c_calhoun "John C. Calhoun") (name fb:en.martin_van_buren "Martin Van Buren"))) (type fb:government.us_vice_president) who was the secretary of state when andrew jackson was president? Martin Van Buren 17.154 formula (fb:government.us_vice_president.to_president fb:en.andrew_jackson)) (value (list (name fb:en.john_c_calhoun "John C. Calhoun") (name fb:en.martin_van_buren "Martin Van Buren"))) (type fb:government.us_vice_president) who does ron stoppable's voice? Will Friedle 5.59 formula ((lambda x (!fb:film.performance.actor (!fb:film.film_character.portrayed_in_films (var x)))) fb:en.ron_stoppable)) (value (list (name fb:en.will_friedle "Will Friedle"))) (type fb:film.actor) what currency is accepted in new zealand? New Zealand dollar 23.448 formula (and (fb:type.object.type fb:finance.currency) (!fb:location.country.currency_used fb:en.new_zealand))) (value (list (name fb:en.new_zealand_dollar "New Zealand dollar"))) (type fb:finance.currency) what places are in the west midlands? Foundry Trade Journal 7.437 formula ((lambda x (fb:book.journal.place_of_publication (fb:book.place_of_publication_period.place_of_publication (var x)))) fb:en.west_midlands)) (value (list (name fb:m.0gbv_mc "Foundry Trade Journal"))) (type fb:book.journal) what to do with kids in asheville nc? Carl Sandburg Home National Historic Site 7.194 formula (!fb:travel.travel_destination.tourist_attractions fb:en.asheville)) (value (list (name fb:en.carl_sandburg_home_national_historic_site "Carl Sandburg Home National Historic Site") (name fb:en.pisgah_national_forest "Pisgah National Forest") (name fb:en.grove_park_inn "Grove Park Inn") (name fb:en.blue_ridge_parkway "Blue Ridge Parkway") (name fb:en.biltmore_estate "Biltmore Estate") (name fb:en.thomas_wolfe_house "Thomas Wolfe House") (name fb:en.folk_art_center "Folk Art Center") (name fb:en.smith_mcdowell_house_museum "Smith-McDowell House") (name fb:m.0k5mxqg "Asheville Art Museum") (name fb:en.bele_chere "Bele Chere"))) (type fb:travel.tourist_attraction) what to do with kids in asheville nc? Pisgah National Forest 7.194 formula (!fb:travel.travel_destination.tourist_attractions fb:en.asheville)) (value (list (name fb:en.carl_sandburg_home_national_historic_site "Carl Sandburg Home National Historic Site") (name fb:en.pisgah_national_forest "Pisgah National Forest") (name fb:en.grove_park_inn "Grove Park Inn") (name fb:en.blue_ridge_parkway "Blue Ridge Parkway") (name fb:en.biltmore_estate "Biltmore Estate") (name fb:en.thomas_wolfe_house "Thomas Wolfe House") (name fb:en.folk_art_center "Folk Art Center") (name fb:en.smith_mcdowell_house_museum "Smith-McDowell House") (name fb:m.0k5mxqg "Asheville Art Museum") (name fb:en.bele_chere "Bele Chere"))) (type fb:travel.tourist_attraction) what to do with kids in asheville nc? Grove Park Inn 7.194 formula (!fb:travel.travel_destination.tourist_attractions fb:en.asheville)) (value (list (name fb:en.carl_sandburg_home_national_historic_site "Carl Sandburg Home National Historic Site") (name fb:en.pisgah_national_forest "Pisgah National Forest") (name fb:en.grove_park_inn "Grove Park Inn") (name fb:en.blue_ridge_parkway "Blue Ridge Parkway") (name fb:en.biltmore_estate "Biltmore Estate") (name fb:en.thomas_wolfe_house "Thomas Wolfe House") (name fb:en.folk_art_center "Folk Art Center") (name fb:en.smith_mcdowell_house_museum "Smith-McDowell House") (name fb:m.0k5mxqg "Asheville Art Museum") (name fb:en.bele_chere "Bele Chere"))) (type fb:travel.tourist_attraction) what to do with kids in asheville nc? Blue Ridge Parkway 7.194 formula (!fb:travel.travel_destination.tourist_attractions fb:en.asheville)) (value (list (name fb:en.carl_sandburg_home_national_historic_site "Carl Sandburg Home National Historic Site") (name fb:en.pisgah_national_forest "Pisgah National Forest") (name fb:en.grove_park_inn "Grove Park Inn") (name fb:en.blue_ridge_parkway "Blue Ridge Parkway") (name fb:en.biltmore_estate "Biltmore Estate") (name fb:en.thomas_wolfe_house "Thomas Wolfe House") (name fb:en.folk_art_center "Folk Art Center") (name fb:en.smith_mcdowell_house_museum "Smith-McDowell House") (name fb:m.0k5mxqg "Asheville Art Museum") (name fb:en.bele_chere "Bele Chere"))) (type fb:travel.tourist_attraction) what to do with kids in asheville nc? Biltmore Estate 7.194 formula (!fb:travel.travel_destination.tourist_attractions fb:en.asheville)) (value (list (name fb:en.carl_sandburg_home_national_historic_site "Carl Sandburg Home National Historic Site") (name fb:en.pisgah_national_forest "Pisgah National Forest") (name fb:en.grove_park_inn "Grove Park Inn") (name fb:en.blue_ridge_parkway "Blue Ridge Parkway") (name fb:en.biltmore_estate "Biltmore Estate") (name fb:en.thomas_wolfe_house "Thomas Wolfe House") (name fb:en.folk_art_center "Folk Art Center") (name fb:en.smith_mcdowell_house_museum "Smith-McDowell House") (name fb:m.0k5mxqg "Asheville Art Museum") (name fb:en.bele_chere "Bele Chere"))) (type fb:travel.tourist_attraction) what to do with kids in asheville nc? Thomas Wolfe House 7.194 formula (!fb:travel.travel_destination.tourist_attractions fb:en.asheville)) (value (list (name fb:en.carl_sandburg_home_national_historic_site "Carl Sandburg Home National Historic Site") (name fb:en.pisgah_national_forest "Pisgah National Forest") (name fb:en.grove_park_inn "Grove Park Inn") (name fb:en.blue_ridge_parkway "Blue Ridge Parkway") (name fb:en.biltmore_estate "Biltmore Estate") (name fb:en.thomas_wolfe_house "Thomas Wolfe House") (name fb:en.folk_art_center "Folk Art Center") (name fb:en.smith_mcdowell_house_museum "Smith-McDowell House") (name fb:m.0k5mxqg "Asheville Art Museum") (name fb:en.bele_chere "Bele Chere"))) (type fb:travel.tourist_attraction) what to do with kids in asheville nc? Folk Art Center 7.194 formula (!fb:travel.travel_destination.tourist_attractions fb:en.asheville)) (value (list (name fb:en.carl_sandburg_home_national_historic_site "Carl Sandburg Home National Historic Site") (name fb:en.pisgah_national_forest "Pisgah National Forest") (name fb:en.grove_park_inn "Grove Park Inn") (name fb:en.blue_ridge_parkway "Blue Ridge Parkway") (name fb:en.biltmore_estate "Biltmore Estate") (name fb:en.thomas_wolfe_house "Thomas Wolfe House") (name fb:en.folk_art_center "Folk Art Center") (name fb:en.smith_mcdowell_house_museum "Smith-McDowell House") (name fb:m.0k5mxqg "Asheville Art Museum") (name fb:en.bele_chere "Bele Chere"))) (type fb:travel.tourist_attraction) what to do with kids in asheville nc? Smith-McDowell House 7.194 formula (!fb:travel.travel_destination.tourist_attractions fb:en.asheville)) (value (list (name fb:en.carl_sandburg_home_national_historic_site "Carl Sandburg Home National Historic Site") (name fb:en.pisgah_national_forest "Pisgah National Forest") (name fb:en.grove_park_inn "Grove Park Inn") (name fb:en.blue_ridge_parkway "Blue Ridge Parkway") (name fb:en.biltmore_estate "Biltmore Estate") (name fb:en.thomas_wolfe_house "Thomas Wolfe House") (name fb:en.folk_art_center "Folk Art Center") (name fb:en.smith_mcdowell_house_museum "Smith-McDowell House") (name fb:m.0k5mxqg "Asheville Art Museum") (name fb:en.bele_chere "Bele Chere"))) (type fb:travel.tourist_attraction) what to do with kids in asheville nc? Asheville Art Museum 7.194 formula (!fb:travel.travel_destination.tourist_attractions fb:en.asheville)) (value (list (name fb:en.carl_sandburg_home_national_historic_site "Carl Sandburg Home National Historic Site") (name fb:en.pisgah_national_forest "Pisgah National Forest") (name fb:en.grove_park_inn "Grove Park Inn") (name fb:en.blue_ridge_parkway "Blue Ridge Parkway") (name fb:en.biltmore_estate "Biltmore Estate") (name fb:en.thomas_wolfe_house "Thomas Wolfe House") (name fb:en.folk_art_center "Folk Art Center") (name fb:en.smith_mcdowell_house_museum "Smith-McDowell House") (name fb:m.0k5mxqg "Asheville Art Museum") (name fb:en.bele_chere "Bele Chere"))) (type fb:travel.tourist_attraction) what to do with kids in asheville nc? Bele Chere 7.194 formula (!fb:travel.travel_destination.tourist_attractions fb:en.asheville)) (value (list (name fb:en.carl_sandburg_home_national_historic_site "Carl Sandburg Home National Historic Site") (name fb:en.pisgah_national_forest "Pisgah National Forest") (name fb:en.grove_park_inn "Grove Park Inn") (name fb:en.blue_ridge_parkway "Blue Ridge Parkway") (name fb:en.biltmore_estate "Biltmore Estate") (name fb:en.thomas_wolfe_house "Thomas Wolfe House") (name fb:en.folk_art_center "Folk Art Center") (name fb:en.smith_mcdowell_house_museum "Smith-McDowell House") (name fb:m.0k5mxqg "Asheville Art Museum") (name fb:en.bele_chere "Bele Chere"))) (type fb:travel.tourist_attraction) who did kurt warner play 4? Northern Iowa Panthers football 7.583 formula ((lambda x (fb:american_football.football_team.historical_roster (fb:american_football.football_historical_roster_position.player (var x)))) fb:en.kurt_warner)) (value (list (name fb:en.northern_iowa_panthers_football "Northern Iowa Panthers football") (name fb:en.new_york_giants "New York Giants") (name fb:en.st_louis_rams "St. Louis Rams") (name fb:m.05bd9b5 "Iowa Barnstormers") (name fb:en.arizona_cardinals "Arizona Cardinals") (name fb:en.amsterdam_admirals "Amsterdam Admirals"))) (type fb:american_football.football_team) who did kurt warner play 4? New York Giants 7.583 formula ((lambda x (fb:american_football.football_team.historical_roster (fb:american_football.football_historical_roster_position.player (var x)))) fb:en.kurt_warner)) (value (list (name fb:en.northern_iowa_panthers_football "Northern Iowa Panthers football") (name fb:en.new_york_giants "New York Giants") (name fb:en.st_louis_rams "St. Louis Rams") (name fb:m.05bd9b5 "Iowa Barnstormers") (name fb:en.arizona_cardinals "Arizona Cardinals") (name fb:en.amsterdam_admirals "Amsterdam Admirals"))) (type fb:american_football.football_team) who did kurt warner play 4? St. Louis Rams 7.583 formula ((lambda x (fb:american_football.football_team.historical_roster (fb:american_football.football_historical_roster_position.player (var x)))) fb:en.kurt_warner)) (value (list (name fb:en.northern_iowa_panthers_football "Northern Iowa Panthers football") (name fb:en.new_york_giants "New York Giants") (name fb:en.st_louis_rams "St. Louis Rams") (name fb:m.05bd9b5 "Iowa Barnstormers") (name fb:en.arizona_cardinals "Arizona Cardinals") (name fb:en.amsterdam_admirals "Amsterdam Admirals"))) (type fb:american_football.football_team) who did kurt warner play 4? Iowa Barnstormers 7.583 formula ((lambda x (fb:american_football.football_team.historical_roster (fb:american_football.football_historical_roster_position.player (var x)))) fb:en.kurt_warner)) (value (list (name fb:en.northern_iowa_panthers_football "Northern Iowa Panthers football") (name fb:en.new_york_giants "New York Giants") (name fb:en.st_louis_rams "St. Louis Rams") (name fb:m.05bd9b5 "Iowa Barnstormers") (name fb:en.arizona_cardinals "Arizona Cardinals") (name fb:en.amsterdam_admirals "Amsterdam Admirals"))) (type fb:american_football.football_team) who did kurt warner play 4? Arizona Cardinals 7.583 formula ((lambda x (fb:american_football.football_team.historical_roster (fb:american_football.football_historical_roster_position.player (var x)))) fb:en.kurt_warner)) (value (list (name fb:en.northern_iowa_panthers_football "Northern Iowa Panthers football") (name fb:en.new_york_giants "New York Giants") (name fb:en.st_louis_rams "St. Louis Rams") (name fb:m.05bd9b5 "Iowa Barnstormers") (name fb:en.arizona_cardinals "Arizona Cardinals") (name fb:en.amsterdam_admirals "Amsterdam Admirals"))) (type fb:american_football.football_team) who did kurt warner play 4? Amsterdam Admirals 7.583 formula ((lambda x (fb:american_football.football_team.historical_roster (fb:american_football.football_historical_roster_position.player (var x)))) fb:en.kurt_warner)) (value (list (name fb:en.northern_iowa_panthers_football "Northern Iowa Panthers football") (name fb:en.new_york_giants "New York Giants") (name fb:en.st_louis_rams "St. Louis Rams") (name fb:m.05bd9b5 "Iowa Barnstormers") (name fb:en.arizona_cardinals "Arizona Cardinals") (name fb:en.amsterdam_admirals "Amsterdam Admirals"))) (type fb:american_football.football_team) who is dirk nowitzki wife? Jessica Olsson 11.737 formula ((lambda x (!fb:people.marriage.spouse (!fb:people.person.spouse_s (var x)))) fb:en.dirk_nowitzki)) (value (list (name fb:m.0j4vb1g "Jessica Olsson"))) (type fb:people.person) where is spanish spoken most? United States of America 11.927 formula (and (fb:type.object.type fb:location.location) (fb:location.country.languages_spoken fb:en.spanish))) (value (list (name fb:en.united_states_of_america "United States of America") (name fb:en.argentina Argentina) (name fb:en.canada Canada) (name fb:en.mexico Mexico) (name fb:en.nicaragua Nicaragua) (name fb:en.venezuela Venezuela) (name fb:en.barbados Barbados) (name fb:en.colombia Colombia) (name fb:en.gibraltar Gibraltar) (name fb:en.cuba Cuba))) (type fb:location.country) who does myles kennedy sing for? Myles Kennedy and The Conspirators 5.897 formula ((lambda x (fb:music.musical_group.member (fb:music.group_membership.member (var x)))) fb:en.myles_kennedy)) (value (list (name fb:m.0rqmx26 "Myles Kennedy and The Conspirators") (name fb:en.sadus Sadus) (name fb:en.alter_bridge "Alter Bridge") (name fb:en.the_mayfield_four "The Mayfield Four"))) (type fb:music.musical_group) who does myles kennedy sing for? Alter Bridge 5.897 formula ((lambda x (fb:music.musical_group.member (fb:music.group_membership.member (var x)))) fb:en.myles_kennedy)) (value (list (name fb:m.0rqmx26 "Myles Kennedy and The Conspirators") (name fb:en.sadus Sadus) (name fb:en.alter_bridge "Alter Bridge") (name fb:en.the_mayfield_four "The Mayfield Four"))) (type fb:music.musical_group) who does myles kennedy sing for? The Mayfield Four 5.897 formula ((lambda x (fb:music.musical_group.member (fb:music.group_membership.member (var x)))) fb:en.myles_kennedy)) (value (list (name fb:m.0rqmx26 "Myles Kennedy and The Conspirators") (name fb:en.sadus Sadus) (name fb:en.alter_bridge "Alter Bridge") (name fb:en.the_mayfield_four "The Mayfield Four"))) (type fb:music.musical_group) what currency shall i take to croatia? Croatian kuna 21.098 formula (!fb:location.country.currency_used fb:en.croatia)) (value (list (name fb:en.croatian_kuna "Croatian kuna"))) (type fb:finance.currency) what team is raul ibanez on? Ibanez RG220 3.107 formula (!fb:common.topic.image fb:en.ibanez)) (value (list (name fb:m.0787q70 97IbanezRG570) (name fb:m.02fnl_h "Ibanez RG220"))) (type fb:common.image) what tv series did mark harmon star in? Reasonable Doubts 10.201 formula (and (fb:type.object.type fb:tv.tv_program) ((lambda x (!fb:tv.regular_tv_appearance.series (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.mark_harmon))) (value (list (name fb:en.reasonable_doubts "Reasonable Doubts") (name fb:m.05p4qwd Sam) (name fb:m.02996d Centennial) (name fb:en.charlie_grace "Charlie Grace") (name fb:en.ncis NCIS) (name fb:en.st_elsewhere "St. Elsewhere") (name fb:en.240-robert 240-Robert) (name fb:m.02kk_c "From the Earth to the Moon") (name fb:en.chicago_hope "Chicago Hope") (name fb:en.flamingo_road "Flamingo Road"))) (type (union fb:tv.tv_program)) what tv series did mark harmon star in? Charlie Grace 10.201 formula (and (fb:type.object.type fb:tv.tv_program) ((lambda x (!fb:tv.regular_tv_appearance.series (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.mark_harmon))) (value (list (name fb:en.reasonable_doubts "Reasonable Doubts") (name fb:m.05p4qwd Sam) (name fb:m.02996d Centennial) (name fb:en.charlie_grace "Charlie Grace") (name fb:en.ncis NCIS) (name fb:en.st_elsewhere "St. Elsewhere") (name fb:en.240-robert 240-Robert) (name fb:m.02kk_c "From the Earth to the Moon") (name fb:en.chicago_hope "Chicago Hope") (name fb:en.flamingo_road "Flamingo Road"))) (type (union fb:tv.tv_program)) what tv series did mark harmon star in? St. Elsewhere 10.201 formula (and (fb:type.object.type fb:tv.tv_program) ((lambda x (!fb:tv.regular_tv_appearance.series (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.mark_harmon))) (value (list (name fb:en.reasonable_doubts "Reasonable Doubts") (name fb:m.05p4qwd Sam) (name fb:m.02996d Centennial) (name fb:en.charlie_grace "Charlie Grace") (name fb:en.ncis NCIS) (name fb:en.st_elsewhere "St. Elsewhere") (name fb:en.240-robert 240-Robert) (name fb:m.02kk_c "From the Earth to the Moon") (name fb:en.chicago_hope "Chicago Hope") (name fb:en.flamingo_road "Flamingo Road"))) (type (union fb:tv.tv_program)) what tv series did mark harmon star in? From the Earth to the Moon 10.201 formula (and (fb:type.object.type fb:tv.tv_program) ((lambda x (!fb:tv.regular_tv_appearance.series (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.mark_harmon))) (value (list (name fb:en.reasonable_doubts "Reasonable Doubts") (name fb:m.05p4qwd Sam) (name fb:m.02996d Centennial) (name fb:en.charlie_grace "Charlie Grace") (name fb:en.ncis NCIS) (name fb:en.st_elsewhere "St. Elsewhere") (name fb:en.240-robert 240-Robert) (name fb:m.02kk_c "From the Earth to the Moon") (name fb:en.chicago_hope "Chicago Hope") (name fb:en.flamingo_road "Flamingo Road"))) (type (union fb:tv.tv_program)) what tv series did mark harmon star in? Chicago Hope 10.201 formula (and (fb:type.object.type fb:tv.tv_program) ((lambda x (!fb:tv.regular_tv_appearance.series (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.mark_harmon))) (value (list (name fb:en.reasonable_doubts "Reasonable Doubts") (name fb:m.05p4qwd Sam) (name fb:m.02996d Centennial) (name fb:en.charlie_grace "Charlie Grace") (name fb:en.ncis NCIS) (name fb:en.st_elsewhere "St. Elsewhere") (name fb:en.240-robert 240-Robert) (name fb:m.02kk_c "From the Earth to the Moon") (name fb:en.chicago_hope "Chicago Hope") (name fb:en.flamingo_road "Flamingo Road"))) (type (union fb:tv.tv_program)) what tv series did mark harmon star in? Flamingo Road 10.201 formula (and (fb:type.object.type fb:tv.tv_program) ((lambda x (!fb:tv.regular_tv_appearance.series (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.mark_harmon))) (value (list (name fb:en.reasonable_doubts "Reasonable Doubts") (name fb:m.05p4qwd Sam) (name fb:m.02996d Centennial) (name fb:en.charlie_grace "Charlie Grace") (name fb:en.ncis NCIS) (name fb:en.st_elsewhere "St. Elsewhere") (name fb:en.240-robert 240-Robert) (name fb:m.02kk_c "From the Earth to the Moon") (name fb:en.chicago_hope "Chicago Hope") (name fb:en.flamingo_road "Flamingo Road"))) (type (union fb:tv.tv_program)) who plays anakin skywalker in star wars 1? Zac Efron 0.154 formula ((lambda x (!fb:tv.tv_guest_role.actor (!fb:tv.tv_character.appeared_in_tv_episodes (var x)))) fb:m.0ng0cwt)) (value (list (name fb:en.zac_efron "Zac Efron"))) (type fb:tv.tv_actor) where does michelle pfeiffer live now? Orange County 8.491 formula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.michelle_pfeiffer))) (value (list (name fb:en.orange_county "Orange County"))) (type fb:location.location) what was laura ingalls wilder famous for? Diabetes mellitus 8.029 formula (fb:people.cause_of_death.people fb:en.laura_ingalls_wilder)) (value (list (name fb:en.diabetes_mellitus "Diabetes mellitus"))) (type fb:people.cause_of_death) who is nick lachey married to? Jessica Simpson 17.561 formula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.nick_lachey)) (value (list (name fb:en.jessica_simpson "Jessica Simpson") (name fb:en.vanessa_minnillo "Vanessa Minnillo"))) (type fb:people.person) who is nick lachey married to? Vanessa Minnillo 17.561 formula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.nick_lachey)) (value (list (name fb:en.jessica_simpson "Jessica Simpson") (name fb:en.vanessa_minnillo "Vanessa Minnillo"))) (type fb:people.person) where did madonna grew up? New York City 9.943 formula (and (fb:type.object.type fb:location.location) (!fb:music.artist.origin fb:en.madonna))) (value (list (name fb:en.new_york_ny "New York City"))) (type fb:location.location) what college did john stockton go to? Gonzaga University 17.491 formula (and (fb:type.object.type fb:education.university) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.john_stockton))) (value (list (name fb:en.gonzaga_university "Gonzaga University"))) (type fb:education.university) what kind of currency does mexico use? Mexican peso 17.659 formula (!fb:location.country.currency_used fb:en.mexico)) (value (list (name fb:en.mexican_peso "Mexican peso"))) (type fb:finance.currency) who owns chrysler corporation 2011? Robert S. Miller 5.79 formula ((lambda x (!fb:organization.organization_board_membership.member (!fb:organization.organization.board_members (var x)))) fb:en.chrysler)) (value (list (name fb:en.robert_steve_miller "Robert S. Miller") (name fb:en.robert_james_eaton "Robert J. Eaton") (name fb:en.james_e_press "James E. Press") (name fb:en.robert_lutz "Bob Lutz") (name fb:en.peter_magowan "Peter A. Magowan"))) (type fb:business.board_member) who owns chrysler corporation 2011? Robert J. Eaton 5.79 formula ((lambda x (!fb:organization.organization_board_membership.member (!fb:organization.organization.board_members (var x)))) fb:en.chrysler)) (value (list (name fb:en.robert_steve_miller "Robert S. Miller") (name fb:en.robert_james_eaton "Robert J. Eaton") (name fb:en.james_e_press "James E. Press") (name fb:en.robert_lutz "Bob Lutz") (name fb:en.peter_magowan "Peter A. Magowan"))) (type fb:business.board_member) who owns chrysler corporation 2011? James E. Press 5.79 formula ((lambda x (!fb:organization.organization_board_membership.member (!fb:organization.organization.board_members (var x)))) fb:en.chrysler)) (value (list (name fb:en.robert_steve_miller "Robert S. Miller") (name fb:en.robert_james_eaton "Robert J. Eaton") (name fb:en.james_e_press "James E. Press") (name fb:en.robert_lutz "Bob Lutz") (name fb:en.peter_magowan "Peter A. Magowan"))) (type fb:business.board_member) who owns chrysler corporation 2011? Bob Lutz 5.79 formula ((lambda x (!fb:organization.organization_board_membership.member (!fb:organization.organization.board_members (var x)))) fb:en.chrysler)) (value (list (name fb:en.robert_steve_miller "Robert S. Miller") (name fb:en.robert_james_eaton "Robert J. Eaton") (name fb:en.james_e_press "James E. Press") (name fb:en.robert_lutz "Bob Lutz") (name fb:en.peter_magowan "Peter A. Magowan"))) (type fb:business.board_member) who owns chrysler corporation 2011? Peter A. Magowan 5.79 formula ((lambda x (!fb:organization.organization_board_membership.member (!fb:organization.organization.board_members (var x)))) fb:en.chrysler)) (value (list (name fb:en.robert_steve_miller "Robert S. Miller") (name fb:en.robert_james_eaton "Robert J. Eaton") (name fb:en.james_e_press "James E. Press") (name fb:en.robert_lutz "Bob Lutz") (name fb:en.peter_magowan "Peter A. Magowan"))) (type fb:business.board_member) who has ray allen dated? Flora Allen 7.535 formula (and (fb:type.object.type fb:people.person) (!fb:people.person.parents fb:en.ray_allen))) (value (list (name fb:m.0j2h2gw "Flora Allen") (name fb:m.0j2h2h1 "Walter Allen"))) (type fb:people.person) who has ray allen dated? Walter Allen 7.535 formula (and (fb:type.object.type fb:people.person) (!fb:people.person.parents fb:en.ray_allen))) (value (list (name fb:m.0j2h2gw "Flora Allen") (name fb:m.0j2h2h1 "Walter Allen"))) (type fb:people.person) who is running for vice president with barack obama 2012? Joe Biden 13.542 formula (fb:government.us_vice_president.to_president fb:en.barack_obama)) (value (list (name fb:en.jr_biden_joseph_r "Joe Biden"))) (type fb:government.us_vice_president) what language do people from the uk speak? United States of America 8.821 formula ((lambda x (fb:location.statistical_region.places_imported_from (fb:location.imports_and_exports.currency (var x)))) fb:en.uk)) (value (list (name fb:en.republic_of_ireland Ireland) (name fb:en.france France) (name fb:en.netherlands Netherlands) (name fb:en.italy Italy) (name fb:en.belgium Belgium) (name fb:en.singapore Singapore) (name fb:en.spain Spain) (name fb:en.germany Germany) (name fb:en.switzerland Switzerland) (name fb:en.united_states_of_america "United States of America"))) (type fb:location.statistical_region) what kind of government is south korea? Unitary state 10.696 formula (!fb:location.country.form_of_government fb:en.south_korea)) (value (list (name fb:en.unitary_state "Unitary state") (name fb:en.presidential_system "Presidential system") (name fb:en.constitutional_republic "Constitutional republic"))) (type fb:government.form_of_government) what kind of government is south korea? Presidential system 10.696 formula (!fb:location.country.form_of_government fb:en.south_korea)) (value (list (name fb:en.unitary_state "Unitary state") (name fb:en.presidential_system "Presidential system") (name fb:en.constitutional_republic "Constitutional republic"))) (type fb:government.form_of_government) what kind of government is south korea? Constitutional republic 10.696 formula (!fb:location.country.form_of_government fb:en.south_korea)) (value (list (name fb:en.unitary_state "Unitary state") (name fb:en.presidential_system "Presidential system") (name fb:en.constitutional_republic "Constitutional republic"))) (type fb:government.form_of_government) who did ben franklin marry? Emma Franklin 8.828 formula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:m.0ph3zvx)) (value (list (name fb:m.0qj15xw "Emma Franklin"))) (type fb:people.person) what sri lanka capital? Sri Jayawardenapura Kotte 10.82 formula (!fb:location.country.capital fb:en.sri_lanka)) (value (list (name fb:en.kotte "Sri Jayawardenapura Kotte"))) (type fb:location.citytown) what kind of government does poland have? Parliamentary republic 14.572 formula (!fb:location.country.form_of_government fb:en.poland)) (value (list (name fb:en.democracy Democracy) (name fb:en.parliamentary_republic "Parliamentary republic"))) (type fb:government.form_of_government) what famous people came from delaware? State Senator 6.32 formula ((lambda x (!fb:government.government_position_held.basic_title (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.delaware)) (value (list (name fb:en.state_senator "State Senator") (name fb:en.governor Governor) (name fb:en.attorney_general "Attorney general") (name fb:en.lieutenant_governor "Lieutenant Governor") (name fb:m.09n5b9 "Secretary of state"))) (type fb:government.government_office_category) what famous people came from delaware? Attorney general 6.32 formula ((lambda x (!fb:government.government_position_held.basic_title (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.delaware)) (value (list (name fb:en.state_senator "State Senator") (name fb:en.governor Governor) (name fb:en.attorney_general "Attorney general") (name fb:en.lieutenant_governor "Lieutenant Governor") (name fb:m.09n5b9 "Secretary of state"))) (type fb:government.government_office_category) what famous people came from delaware? Lieutenant Governor 6.32 formula ((lambda x (!fb:government.government_position_held.basic_title (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.delaware)) (value (list (name fb:en.state_senator "State Senator") (name fb:en.governor Governor) (name fb:en.attorney_general "Attorney general") (name fb:en.lieutenant_governor "Lieutenant Governor") (name fb:m.09n5b9 "Secretary of state"))) (type fb:government.government_office_category) what famous people came from delaware? Secretary of state 6.32 formula ((lambda x (!fb:government.government_position_held.basic_title (!fb:government.governmental_jurisdiction.governing_officials (var x)))) fb:en.delaware)) (value (list (name fb:en.state_senator "State Senator") (name fb:en.governor Governor) (name fb:en.attorney_general "Attorney general") (name fb:en.lieutenant_governor "Lieutenant Governor") (name fb:m.09n5b9 "Secretary of state"))) (type fb:government.government_office_category) who was with president lincoln when he was assassinated? Andrew Johnson 24.338 formula (fb:government.us_vice_president.to_president fb:en.abraham_lincoln)) (value (list (name fb:en.andrew_johnson "Andrew Johnson") (name fb:en.hannibal_hamlin "Hannibal Hamlin"))) (type fb:government.us_vice_president) who was with president lincoln when he was assassinated? Hannibal Hamlin 24.338 formula (fb:government.us_vice_president.to_president fb:en.abraham_lincoln)) (value (list (name fb:en.andrew_johnson "Andrew Johnson") (name fb:en.hannibal_hamlin "Hannibal Hamlin"))) (type fb:government.us_vice_president) what type of guitar does johnny depp play? Engaged to 12.095 formula ((lambda x (!fb:celebrities.romantic_relationship.relationship_type (!fb:celebrities.celebrity.sexual_relationships (var x)))) fb:en.johnny_depp)) (value (list (name fb:en.dated Dated) (name fb:en.engaged_to "Engaged to") (name fb:en.lived_with "Lived with"))) (type fb:celebrities.romantic_relationship_type) what type of guitar does johnny depp play? Lived with 12.095 formula ((lambda x (!fb:celebrities.romantic_relationship.relationship_type (!fb:celebrities.celebrity.sexual_relationships (var x)))) fb:en.johnny_depp)) (value (list (name fb:en.dated Dated) (name fb:en.engaged_to "Engaged to") (name fb:en.lived_with "Lived with"))) (type fb:celebrities.romantic_relationship_type) where to stay in singapore blog? Universal Studios Singapore 8.003 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.singapore))) (value (list (name fb:en.universal_studios_singapore "Universal Studios Singapore") (name fb:en.jurong_birdpark "Jurong BirdPark") (name fb:en.kampung_days "Kampung Days") (name fb:en.singapore_botanic_gardens "Singapore Botanic Gardens") (name fb:en.singapore_flyer "Singapore Flyer") (name fb:en.armenian_church_singapore "Armenian Church, Singapore") (name fb:en.sri_mariamman_temple "Sri Mariamman Temple, Singapore") (name fb:en.singapore_zoo "Singapore Zoo") (name fb:en.underwater_world_singapore "Underwater World, Singapore") (name fb:en.night_safari_singapore "Night Safari, Singapore"))) (type fb:travel.tourist_attraction) where to stay in singapore blog? Jurong BirdPark 8.003 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.singapore))) (value (list (name fb:en.universal_studios_singapore "Universal Studios Singapore") (name fb:en.jurong_birdpark "Jurong BirdPark") (name fb:en.kampung_days "Kampung Days") (name fb:en.singapore_botanic_gardens "Singapore Botanic Gardens") (name fb:en.singapore_flyer "Singapore Flyer") (name fb:en.armenian_church_singapore "Armenian Church, Singapore") (name fb:en.sri_mariamman_temple "Sri Mariamman Temple, Singapore") (name fb:en.singapore_zoo "Singapore Zoo") (name fb:en.underwater_world_singapore "Underwater World, Singapore") (name fb:en.night_safari_singapore "Night Safari, Singapore"))) (type fb:travel.tourist_attraction) where to stay in singapore blog? Kampung Days 8.003 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.singapore))) (value (list (name fb:en.universal_studios_singapore "Universal Studios Singapore") (name fb:en.jurong_birdpark "Jurong BirdPark") (name fb:en.kampung_days "Kampung Days") (name fb:en.singapore_botanic_gardens "Singapore Botanic Gardens") (name fb:en.singapore_flyer "Singapore Flyer") (name fb:en.armenian_church_singapore "Armenian Church, Singapore") (name fb:en.sri_mariamman_temple "Sri Mariamman Temple, Singapore") (name fb:en.singapore_zoo "Singapore Zoo") (name fb:en.underwater_world_singapore "Underwater World, Singapore") (name fb:en.night_safari_singapore "Night Safari, Singapore"))) (type fb:travel.tourist_attraction) where to stay in singapore blog? Singapore Botanic Gardens 8.003 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.singapore))) (value (list (name fb:en.universal_studios_singapore "Universal Studios Singapore") (name fb:en.jurong_birdpark "Jurong BirdPark") (name fb:en.kampung_days "Kampung Days") (name fb:en.singapore_botanic_gardens "Singapore Botanic Gardens") (name fb:en.singapore_flyer "Singapore Flyer") (name fb:en.armenian_church_singapore "Armenian Church, Singapore") (name fb:en.sri_mariamman_temple "Sri Mariamman Temple, Singapore") (name fb:en.singapore_zoo "Singapore Zoo") (name fb:en.underwater_world_singapore "Underwater World, Singapore") (name fb:en.night_safari_singapore "Night Safari, Singapore"))) (type fb:travel.tourist_attraction) where to stay in singapore blog? Singapore Flyer 8.003 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.singapore))) (value (list (name fb:en.universal_studios_singapore "Universal Studios Singapore") (name fb:en.jurong_birdpark "Jurong BirdPark") (name fb:en.kampung_days "Kampung Days") (name fb:en.singapore_botanic_gardens "Singapore Botanic Gardens") (name fb:en.singapore_flyer "Singapore Flyer") (name fb:en.armenian_church_singapore "Armenian Church, Singapore") (name fb:en.sri_mariamman_temple "Sri Mariamman Temple, Singapore") (name fb:en.singapore_zoo "Singapore Zoo") (name fb:en.underwater_world_singapore "Underwater World, Singapore") (name fb:en.night_safari_singapore "Night Safari, Singapore"))) (type fb:travel.tourist_attraction) where to stay in singapore blog? Armenian Church, Singapore 8.003 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.singapore))) (value (list (name fb:en.universal_studios_singapore "Universal Studios Singapore") (name fb:en.jurong_birdpark "Jurong BirdPark") (name fb:en.kampung_days "Kampung Days") (name fb:en.singapore_botanic_gardens "Singapore Botanic Gardens") (name fb:en.singapore_flyer "Singapore Flyer") (name fb:en.armenian_church_singapore "Armenian Church, Singapore") (name fb:en.sri_mariamman_temple "Sri Mariamman Temple, Singapore") (name fb:en.singapore_zoo "Singapore Zoo") (name fb:en.underwater_world_singapore "Underwater World, Singapore") (name fb:en.night_safari_singapore "Night Safari, Singapore"))) (type fb:travel.tourist_attraction) where to stay in singapore blog? Sri Mariamman Temple, Singapore 8.003 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.singapore))) (value (list (name fb:en.universal_studios_singapore "Universal Studios Singapore") (name fb:en.jurong_birdpark "Jurong BirdPark") (name fb:en.kampung_days "Kampung Days") (name fb:en.singapore_botanic_gardens "Singapore Botanic Gardens") (name fb:en.singapore_flyer "Singapore Flyer") (name fb:en.armenian_church_singapore "Armenian Church, Singapore") (name fb:en.sri_mariamman_temple "Sri Mariamman Temple, Singapore") (name fb:en.singapore_zoo "Singapore Zoo") (name fb:en.underwater_world_singapore "Underwater World, Singapore") (name fb:en.night_safari_singapore "Night Safari, Singapore"))) (type fb:travel.tourist_attraction) where to stay in singapore blog? Singapore Zoo 8.003 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.singapore))) (value (list (name fb:en.universal_studios_singapore "Universal Studios Singapore") (name fb:en.jurong_birdpark "Jurong BirdPark") (name fb:en.kampung_days "Kampung Days") (name fb:en.singapore_botanic_gardens "Singapore Botanic Gardens") (name fb:en.singapore_flyer "Singapore Flyer") (name fb:en.armenian_church_singapore "Armenian Church, Singapore") (name fb:en.sri_mariamman_temple "Sri Mariamman Temple, Singapore") (name fb:en.singapore_zoo "Singapore Zoo") (name fb:en.underwater_world_singapore "Underwater World, Singapore") (name fb:en.night_safari_singapore "Night Safari, Singapore"))) (type fb:travel.tourist_attraction) where to stay in singapore blog? Underwater World, Singapore 8.003 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.singapore))) (value (list (name fb:en.universal_studios_singapore "Universal Studios Singapore") (name fb:en.jurong_birdpark "Jurong BirdPark") (name fb:en.kampung_days "Kampung Days") (name fb:en.singapore_botanic_gardens "Singapore Botanic Gardens") (name fb:en.singapore_flyer "Singapore Flyer") (name fb:en.armenian_church_singapore "Armenian Church, Singapore") (name fb:en.sri_mariamman_temple "Sri Mariamman Temple, Singapore") (name fb:en.singapore_zoo "Singapore Zoo") (name fb:en.underwater_world_singapore "Underwater World, Singapore") (name fb:en.night_safari_singapore "Night Safari, Singapore"))) (type fb:travel.tourist_attraction) where to stay in singapore blog? Night Safari, Singapore 8.003 formula (and (fb:type.object.type fb:location.location) (!fb:travel.travel_destination.tourist_attractions fb:en.singapore))) (value (list (name fb:en.universal_studios_singapore "Universal Studios Singapore") (name fb:en.jurong_birdpark "Jurong BirdPark") (name fb:en.kampung_days "Kampung Days") (name fb:en.singapore_botanic_gardens "Singapore Botanic Gardens") (name fb:en.singapore_flyer "Singapore Flyer") (name fb:en.armenian_church_singapore "Armenian Church, Singapore") (name fb:en.sri_mariamman_temple "Sri Mariamman Temple, Singapore") (name fb:en.singapore_zoo "Singapore Zoo") (name fb:en.underwater_world_singapore "Underwater World, Singapore") (name fb:en.night_safari_singapore "Night Safari, Singapore"))) (type fb:travel.tourist_attraction) what episode of how i met your mother is carrie underwood on? Russell Crowe, Jenna Bush, Carrie Underwood 14.832 formula ((lambda x (!fb:tv.tv_guest_role.episodes_appeared_in (!fb:tv.tv_actor.guest_roles (var x)))) fb:en.carrie_underwood)) (value (list (name fb:m.0bbt_3x Hooked) (name fb:m.06x4sd3 "Russell Crowe, Jenna Bush, Carrie Underwood") (name fb:m.07l7tcy "The 49th Annual Grammy Awards") (name fb:m.07n5gjc "Renee Zelleweger/Kevin Connelly") (name fb:m.06yz6xn "Carrie Underwood, Patricia Cornwell") (name fb:m.07lzps8 "Super Bowl XLIV") (name fb:m.06xyjl0 "and then there were 16...") (name fb:m.07n2twn "2007 CMA Music Festival") (name fb:m.07n5nrm "Steve Carell, Blake Lively, Carrie Underwood") (name fb:m.06xykhx "Idol Gives Back"))) (type fb:tv.tv_series_episode) what episode of how i met your mother is carrie underwood on? The 49th Annual Grammy Awards 14.832 formula ((lambda x (!fb:tv.tv_guest_role.episodes_appeared_in (!fb:tv.tv_actor.guest_roles (var x)))) fb:en.carrie_underwood)) (value (list (name fb:m.0bbt_3x Hooked) (name fb:m.06x4sd3 "Russell Crowe, Jenna Bush, Carrie Underwood") (name fb:m.07l7tcy "The 49th Annual Grammy Awards") (name fb:m.07n5gjc "Renee Zelleweger/Kevin Connelly") (name fb:m.06yz6xn "Carrie Underwood, Patricia Cornwell") (name fb:m.07lzps8 "Super Bowl XLIV") (name fb:m.06xyjl0 "and then there were 16...") (name fb:m.07n2twn "2007 CMA Music Festival") (name fb:m.07n5nrm "Steve Carell, Blake Lively, Carrie Underwood") (name fb:m.06xykhx "Idol Gives Back"))) (type fb:tv.tv_series_episode) what episode of how i met your mother is carrie underwood on? Renee Zelleweger/Kevin Connelly 14.832 formula ((lambda x (!fb:tv.tv_guest_role.episodes_appeared_in (!fb:tv.tv_actor.guest_roles (var x)))) fb:en.carrie_underwood)) (value (list (name fb:m.0bbt_3x Hooked) (name fb:m.06x4sd3 "Russell Crowe, Jenna Bush, Carrie Underwood") (name fb:m.07l7tcy "The 49th Annual Grammy Awards") (name fb:m.07n5gjc "Renee Zelleweger/Kevin Connelly") (name fb:m.06yz6xn "Carrie Underwood, Patricia Cornwell") (name fb:m.07lzps8 "Super Bowl XLIV") (name fb:m.06xyjl0 "and then there were 16...") (name fb:m.07n2twn "2007 CMA Music Festival") (name fb:m.07n5nrm "Steve Carell, Blake Lively, Carrie Underwood") (name fb:m.06xykhx "Idol Gives Back"))) (type fb:tv.tv_series_episode) what episode of how i met your mother is carrie underwood on? Carrie Underwood, Patricia Cornwell 14.832 formula ((lambda x (!fb:tv.tv_guest_role.episodes_appeared_in (!fb:tv.tv_actor.guest_roles (var x)))) fb:en.carrie_underwood)) (value (list (name fb:m.0bbt_3x Hooked) (name fb:m.06x4sd3 "Russell Crowe, Jenna Bush, Carrie Underwood") (name fb:m.07l7tcy "The 49th Annual Grammy Awards") (name fb:m.07n5gjc "Renee Zelleweger/Kevin Connelly") (name fb:m.06yz6xn "Carrie Underwood, Patricia Cornwell") (name fb:m.07lzps8 "Super Bowl XLIV") (name fb:m.06xyjl0 "and then there were 16...") (name fb:m.07n2twn "2007 CMA Music Festival") (name fb:m.07n5nrm "Steve Carell, Blake Lively, Carrie Underwood") (name fb:m.06xykhx "Idol Gives Back"))) (type fb:tv.tv_series_episode) what episode of how i met your mother is carrie underwood on? Super Bowl XLIV 14.832 formula ((lambda x (!fb:tv.tv_guest_role.episodes_appeared_in (!fb:tv.tv_actor.guest_roles (var x)))) fb:en.carrie_underwood)) (value (list (name fb:m.0bbt_3x Hooked) (name fb:m.06x4sd3 "Russell Crowe, Jenna Bush, Carrie Underwood") (name fb:m.07l7tcy "The 49th Annual Grammy Awards") (name fb:m.07n5gjc "Renee Zelleweger/Kevin Connelly") (name fb:m.06yz6xn "Carrie Underwood, Patricia Cornwell") (name fb:m.07lzps8 "Super Bowl XLIV") (name fb:m.06xyjl0 "and then there were 16...") (name fb:m.07n2twn "2007 CMA Music Festival") (name fb:m.07n5nrm "Steve Carell, Blake Lively, Carrie Underwood") (name fb:m.06xykhx "Idol Gives Back"))) (type fb:tv.tv_series_episode) what episode of how i met your mother is carrie underwood on? and then there were 16... 14.832 formula ((lambda x (!fb:tv.tv_guest_role.episodes_appeared_in (!fb:tv.tv_actor.guest_roles (var x)))) fb:en.carrie_underwood)) (value (list (name fb:m.0bbt_3x Hooked) (name fb:m.06x4sd3 "Russell Crowe, Jenna Bush, Carrie Underwood") (name fb:m.07l7tcy "The 49th Annual Grammy Awards") (name fb:m.07n5gjc "Renee Zelleweger/Kevin Connelly") (name fb:m.06yz6xn "Carrie Underwood, Patricia Cornwell") (name fb:m.07lzps8 "Super Bowl XLIV") (name fb:m.06xyjl0 "and then there were 16...") (name fb:m.07n2twn "2007 CMA Music Festival") (name fb:m.07n5nrm "Steve Carell, Blake Lively, Carrie Underwood") (name fb:m.06xykhx "Idol Gives Back"))) (type fb:tv.tv_series_episode) what episode of how i met your mother is carrie underwood on? 2007 CMA Music Festival 14.832 formula ((lambda x (!fb:tv.tv_guest_role.episodes_appeared_in (!fb:tv.tv_actor.guest_roles (var x)))) fb:en.carrie_underwood)) (value (list (name fb:m.0bbt_3x Hooked) (name fb:m.06x4sd3 "Russell Crowe, Jenna Bush, Carrie Underwood") (name fb:m.07l7tcy "The 49th Annual Grammy Awards") (name fb:m.07n5gjc "Renee Zelleweger/Kevin Connelly") (name fb:m.06yz6xn "Carrie Underwood, Patricia Cornwell") (name fb:m.07lzps8 "Super Bowl XLIV") (name fb:m.06xyjl0 "and then there were 16...") (name fb:m.07n2twn "2007 CMA Music Festival") (name fb:m.07n5nrm "Steve Carell, Blake Lively, Carrie Underwood") (name fb:m.06xykhx "Idol Gives Back"))) (type fb:tv.tv_series_episode) what episode of how i met your mother is carrie underwood on? Steve Carell, Blake Lively, Carrie Underwood 14.832 formula ((lambda x (!fb:tv.tv_guest_role.episodes_appeared_in (!fb:tv.tv_actor.guest_roles (var x)))) fb:en.carrie_underwood)) (value (list (name fb:m.0bbt_3x Hooked) (name fb:m.06x4sd3 "Russell Crowe, Jenna Bush, Carrie Underwood") (name fb:m.07l7tcy "The 49th Annual Grammy Awards") (name fb:m.07n5gjc "Renee Zelleweger/Kevin Connelly") (name fb:m.06yz6xn "Carrie Underwood, Patricia Cornwell") (name fb:m.07lzps8 "Super Bowl XLIV") (name fb:m.06xyjl0 "and then there were 16...") (name fb:m.07n2twn "2007 CMA Music Festival") (name fb:m.07n5nrm "Steve Carell, Blake Lively, Carrie Underwood") (name fb:m.06xykhx "Idol Gives Back"))) (type fb:tv.tv_series_episode) what episode of how i met your mother is carrie underwood on? Idol Gives Back 14.832 formula ((lambda x (!fb:tv.tv_guest_role.episodes_appeared_in (!fb:tv.tv_actor.guest_roles (var x)))) fb:en.carrie_underwood)) (value (list (name fb:m.0bbt_3x Hooked) (name fb:m.06x4sd3 "Russell Crowe, Jenna Bush, Carrie Underwood") (name fb:m.07l7tcy "The 49th Annual Grammy Awards") (name fb:m.07n5gjc "Renee Zelleweger/Kevin Connelly") (name fb:m.06yz6xn "Carrie Underwood, Patricia Cornwell") (name fb:m.07lzps8 "Super Bowl XLIV") (name fb:m.06xyjl0 "and then there were 16...") (name fb:m.07n2twn "2007 CMA Music Festival") (name fb:m.07n5nrm "Steve Carell, Blake Lively, Carrie Underwood") (name fb:m.06xykhx "Idol Gives Back"))) (type fb:tv.tv_series_episode) who are the 9 justices of the supreme court 2011? Ricky Polston 10.945 formula (and (fb:type.object.type fb:law.judge) ((lambda x (!fb:law.judicial_tenure.judge (!fb:law.court.judges (var x)))) fb:en.florida_supreme_court))) (value (list (name fb:en.ricky_polston "Ricky Polston") (name fb:en.joseph_b_lancaster "Joseph B. Lancaster"))) (type (union fb:law.judge)) who are the 9 justices of the supreme court 2011? Joseph B. Lancaster 10.945 formula (and (fb:type.object.type fb:law.judge) ((lambda x (!fb:law.judicial_tenure.judge (!fb:law.court.judges (var x)))) fb:en.florida_supreme_court))) (value (list (name fb:en.ricky_polston "Ricky Polston") (name fb:en.joseph_b_lancaster "Joseph B. Lancaster"))) (type (union fb:law.judge)) who did cher have a son with? Chaz Bono 15.481 formula (!fb:people.person.children fb:en.cher)) (value (list (name fb:en.chastity_bono "Chaz Bono") (name fb:en.elijah_blue_allman_1976 "Elijah Blue Allman"))) (type fb:people.person) who did cher have a son with? Elijah Blue Allman 15.481 formula (!fb:people.person.children fb:en.cher)) (value (list (name fb:en.chastity_bono "Chaz Bono") (name fb:en.elijah_blue_allman_1976 "Elijah Blue Allman"))) (type fb:people.person) who played carmen cortez in spy kids? Alexa Vega 8.277 formula (fb:film.actor.film (and (fb:film.performance.character fb:en.carmen_cortez) (fb:film.performance.film fb:m.02rrfzf)))) (value (list (name fb:en.alexa_vega "Alexa Vega"))) (type fb:film.actor) what is the political system in germany? United States of America 13.778 formula ((lambda x (fb:location.statistical_region.places_imported_from (fb:location.imports_and_exports.imported_from (var x)))) fb:en.germany)) (value (list (name fb:en.algeria Algeria) (name fb:en.albania_france Albania) (name fb:en.afghanistan Afghanistan) (name fb:en.united_states_of_america "United States of America"))) (type fb:location.statistical_region) what is the currency in turkey called? Turkish lira 20.316 formula (!fb:location.country.currency_used fb:en.turkey)) (value (list (name fb:en.turkish_lira "Turkish lira"))) (type fb:finance.currency) what school did mark zuckerberg attend? Harvard University 16.55 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.mark_zuckerberg))) (value (list (name fb:en.harvard_university "Harvard University") (name fb:en.ardsley_high_school "Ardsley High School") (name fb:en.mercy_college "Mercy College") (name fb:en.phillips_exeter_academy "Phillips Exeter Academy"))) (type fb:education.educational_institution) what school did mark zuckerberg attend? Ardsley High School 16.55 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.mark_zuckerberg))) (value (list (name fb:en.harvard_university "Harvard University") (name fb:en.ardsley_high_school "Ardsley High School") (name fb:en.mercy_college "Mercy College") (name fb:en.phillips_exeter_academy "Phillips Exeter Academy"))) (type fb:education.educational_institution) what school did mark zuckerberg attend? Mercy College 16.55 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.mark_zuckerberg))) (value (list (name fb:en.harvard_university "Harvard University") (name fb:en.ardsley_high_school "Ardsley High School") (name fb:en.mercy_college "Mercy College") (name fb:en.phillips_exeter_academy "Phillips Exeter Academy"))) (type fb:education.educational_institution) what school did mark zuckerberg attend? Phillips Exeter Academy 16.55 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.mark_zuckerberg))) (value (list (name fb:en.harvard_university "Harvard University") (name fb:en.ardsley_high_school "Ardsley High School") (name fb:en.mercy_college "Mercy College") (name fb:en.phillips_exeter_academy "Phillips Exeter Academy"))) (type fb:education.educational_institution) what language is spoken in argentina? Spanish Language 20.401 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.argentina))) (value (list (name fb:en.spanish "Spanish Language") (name fb:en.italian "Italian Language") (name fb:en.yiddish_language "Yiddish Language"))) (type (union fb:language.human_language)) what language is spoken in argentina? Italian Language 20.401 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.argentina))) (value (list (name fb:en.spanish "Spanish Language") (name fb:en.italian "Italian Language") (name fb:en.yiddish_language "Yiddish Language"))) (type (union fb:language.human_language)) what language is spoken in argentina? Yiddish Language 20.401 formula (and (fb:type.object.type fb:language.human_language) (!fb:location.country.languages_spoken fb:en.argentina))) (value (list (name fb:en.spanish "Spanish Language") (name fb:en.italian "Italian Language") (name fb:en.yiddish_language "Yiddish Language"))) (type (union fb:language.human_language)) who won the american league east in 2012? Rafael Nadal 4.684 formula ((lambda x (fb:tennis.tennis_player.matches_won (fb:tennis.tennis_match.date (var x)))) (date 2012 -1 -1))) (value (list (name fb:en.rafael_nadal "Rafael Nadal") (name fb:en.novak_djokovic "Novak Djokovic") (name fb:en.gael_monfils "Gaël Monfils") (name fb:en.andrew_murray "Andy Murray") (name fb:en.serena_williams "Serena Williams") (name fb:en.roger_federer "Roger Federer") (name fb:en.virginie_razzano "Virginie Razzano") (name fb:en.yaroslava_shvedova "Yaroslava Shvedova") (name fb:en.dominika_cibulkova "Dominika Cibulková") (name fb:en.john_isner "John Isner"))) (type fb:tennis.tennis_player) who won the american league east in 2012? Novak Djokovic 4.684 formula ((lambda x (fb:tennis.tennis_player.matches_won (fb:tennis.tennis_match.date (var x)))) (date 2012 -1 -1))) (value (list (name fb:en.rafael_nadal "Rafael Nadal") (name fb:en.novak_djokovic "Novak Djokovic") (name fb:en.gael_monfils "Gaël Monfils") (name fb:en.andrew_murray "Andy Murray") (name fb:en.serena_williams "Serena Williams") (name fb:en.roger_federer "Roger Federer") (name fb:en.virginie_razzano "Virginie Razzano") (name fb:en.yaroslava_shvedova "Yaroslava Shvedova") (name fb:en.dominika_cibulkova "Dominika Cibulková") (name fb:en.john_isner "John Isner"))) (type fb:tennis.tennis_player) who won the american league east in 2012? Gaël Monfils 4.684 formula ((lambda x (fb:tennis.tennis_player.matches_won (fb:tennis.tennis_match.date (var x)))) (date 2012 -1 -1))) (value (list (name fb:en.rafael_nadal "Rafael Nadal") (name fb:en.novak_djokovic "Novak Djokovic") (name fb:en.gael_monfils "Gaël Monfils") (name fb:en.andrew_murray "Andy Murray") (name fb:en.serena_williams "Serena Williams") (name fb:en.roger_federer "Roger Federer") (name fb:en.virginie_razzano "Virginie Razzano") (name fb:en.yaroslava_shvedova "Yaroslava Shvedova") (name fb:en.dominika_cibulkova "Dominika Cibulková") (name fb:en.john_isner "John Isner"))) (type fb:tennis.tennis_player) who won the american league east in 2012? Andy Murray 4.684 formula ((lambda x (fb:tennis.tennis_player.matches_won (fb:tennis.tennis_match.date (var x)))) (date 2012 -1 -1))) (value (list (name fb:en.rafael_nadal "Rafael Nadal") (name fb:en.novak_djokovic "Novak Djokovic") (name fb:en.gael_monfils "Gaël Monfils") (name fb:en.andrew_murray "Andy Murray") (name fb:en.serena_williams "Serena Williams") (name fb:en.roger_federer "Roger Federer") (name fb:en.virginie_razzano "Virginie Razzano") (name fb:en.yaroslava_shvedova "Yaroslava Shvedova") (name fb:en.dominika_cibulkova "Dominika Cibulková") (name fb:en.john_isner "John Isner"))) (type fb:tennis.tennis_player) who won the american league east in 2012? Serena Williams 4.684 formula ((lambda x (fb:tennis.tennis_player.matches_won (fb:tennis.tennis_match.date (var x)))) (date 2012 -1 -1))) (value (list (name fb:en.rafael_nadal "Rafael Nadal") (name fb:en.novak_djokovic "Novak Djokovic") (name fb:en.gael_monfils "Gaël Monfils") (name fb:en.andrew_murray "Andy Murray") (name fb:en.serena_williams "Serena Williams") (name fb:en.roger_federer "Roger Federer") (name fb:en.virginie_razzano "Virginie Razzano") (name fb:en.yaroslava_shvedova "Yaroslava Shvedova") (name fb:en.dominika_cibulkova "Dominika Cibulková") (name fb:en.john_isner "John Isner"))) (type fb:tennis.tennis_player) who won the american league east in 2012? Roger Federer 4.684 formula ((lambda x (fb:tennis.tennis_player.matches_won (fb:tennis.tennis_match.date (var x)))) (date 2012 -1 -1))) (value (list (name fb:en.rafael_nadal "Rafael Nadal") (name fb:en.novak_djokovic "Novak Djokovic") (name fb:en.gael_monfils "Gaël Monfils") (name fb:en.andrew_murray "Andy Murray") (name fb:en.serena_williams "Serena Williams") (name fb:en.roger_federer "Roger Federer") (name fb:en.virginie_razzano "Virginie Razzano") (name fb:en.yaroslava_shvedova "Yaroslava Shvedova") (name fb:en.dominika_cibulkova "Dominika Cibulková") (name fb:en.john_isner "John Isner"))) (type fb:tennis.tennis_player) who won the american league east in 2012? Virginie Razzano 4.684 formula ((lambda x (fb:tennis.tennis_player.matches_won (fb:tennis.tennis_match.date (var x)))) (date 2012 -1 -1))) (value (list (name fb:en.rafael_nadal "Rafael Nadal") (name fb:en.novak_djokovic "Novak Djokovic") (name fb:en.gael_monfils "Gaël Monfils") (name fb:en.andrew_murray "Andy Murray") (name fb:en.serena_williams "Serena Williams") (name fb:en.roger_federer "Roger Federer") (name fb:en.virginie_razzano "Virginie Razzano") (name fb:en.yaroslava_shvedova "Yaroslava Shvedova") (name fb:en.dominika_cibulkova "Dominika Cibulková") (name fb:en.john_isner "John Isner"))) (type fb:tennis.tennis_player) who won the american league east in 2012? Yaroslava Shvedova 4.684 formula ((lambda x (fb:tennis.tennis_player.matches_won (fb:tennis.tennis_match.date (var x)))) (date 2012 -1 -1))) (value (list (name fb:en.rafael_nadal "Rafael Nadal") (name fb:en.novak_djokovic "Novak Djokovic") (name fb:en.gael_monfils "Gaël Monfils") (name fb:en.andrew_murray "Andy Murray") (name fb:en.serena_williams "Serena Williams") (name fb:en.roger_federer "Roger Federer") (name fb:en.virginie_razzano "Virginie Razzano") (name fb:en.yaroslava_shvedova "Yaroslava Shvedova") (name fb:en.dominika_cibulkova "Dominika Cibulková") (name fb:en.john_isner "John Isner"))) (type fb:tennis.tennis_player) who won the american league east in 2012? Dominika Cibulková 4.684 formula ((lambda x (fb:tennis.tennis_player.matches_won (fb:tennis.tennis_match.date (var x)))) (date 2012 -1 -1))) (value (list (name fb:en.rafael_nadal "Rafael Nadal") (name fb:en.novak_djokovic "Novak Djokovic") (name fb:en.gael_monfils "Gaël Monfils") (name fb:en.andrew_murray "Andy Murray") (name fb:en.serena_williams "Serena Williams") (name fb:en.roger_federer "Roger Federer") (name fb:en.virginie_razzano "Virginie Razzano") (name fb:en.yaroslava_shvedova "Yaroslava Shvedova") (name fb:en.dominika_cibulkova "Dominika Cibulková") (name fb:en.john_isner "John Isner"))) (type fb:tennis.tennis_player) who won the american league east in 2012? John Isner 4.684 formula ((lambda x (fb:tennis.tennis_player.matches_won (fb:tennis.tennis_match.date (var x)))) (date 2012 -1 -1))) (value (list (name fb:en.rafael_nadal "Rafael Nadal") (name fb:en.novak_djokovic "Novak Djokovic") (name fb:en.gael_monfils "Gaël Monfils") (name fb:en.andrew_murray "Andy Murray") (name fb:en.serena_williams "Serena Williams") (name fb:en.roger_federer "Roger Federer") (name fb:en.virginie_razzano "Virginie Razzano") (name fb:en.yaroslava_shvedova "Yaroslava Shvedova") (name fb:en.dominika_cibulkova "Dominika Cibulková") (name fb:en.john_isner "John Isner"))) (type fb:tennis.tennis_player) what did isaac newton explain? Ralph Waldo Emerson 10.409 formula (fb:influence.influence_node.influenced_by fb:en.sir_newton_isaac)) (value (list (name fb:en.ralph_waldo_emerson "Ralph Waldo Emerson") (name fb:en.albert_einstein "Albert Einstein") (name fb:en.thomas_jefferson "Thomas Jefferson") (name fb:en.immanuel_kant "Immanuel Kant") (name fb:en.gregory_chaitin "Gregory Chaitin") (name fb:en.emanuel_swedenborg "Emanuel Swedenborg") (name fb:en.david_hume "David Hume") (name fb:en.george_boole "George Boole") (name fb:en.voltaire Voltaire) (name fb:en.george_berkeley "George Berkeley"))) (type fb:influence.influence_node) what did isaac newton explain? Albert Einstein 10.409 formula (fb:influence.influence_node.influenced_by fb:en.sir_newton_isaac)) (value (list (name fb:en.ralph_waldo_emerson "Ralph Waldo Emerson") (name fb:en.albert_einstein "Albert Einstein") (name fb:en.thomas_jefferson "Thomas Jefferson") (name fb:en.immanuel_kant "Immanuel Kant") (name fb:en.gregory_chaitin "Gregory Chaitin") (name fb:en.emanuel_swedenborg "Emanuel Swedenborg") (name fb:en.david_hume "David Hume") (name fb:en.george_boole "George Boole") (name fb:en.voltaire Voltaire) (name fb:en.george_berkeley "George Berkeley"))) (type fb:influence.influence_node) what did isaac newton explain? Thomas Jefferson 10.409 formula (fb:influence.influence_node.influenced_by fb:en.sir_newton_isaac)) (value (list (name fb:en.ralph_waldo_emerson "Ralph Waldo Emerson") (name fb:en.albert_einstein "Albert Einstein") (name fb:en.thomas_jefferson "Thomas Jefferson") (name fb:en.immanuel_kant "Immanuel Kant") (name fb:en.gregory_chaitin "Gregory Chaitin") (name fb:en.emanuel_swedenborg "Emanuel Swedenborg") (name fb:en.david_hume "David Hume") (name fb:en.george_boole "George Boole") (name fb:en.voltaire Voltaire) (name fb:en.george_berkeley "George Berkeley"))) (type fb:influence.influence_node) what did isaac newton explain? Immanuel Kant 10.409 formula (fb:influence.influence_node.influenced_by fb:en.sir_newton_isaac)) (value (list (name fb:en.ralph_waldo_emerson "Ralph Waldo Emerson") (name fb:en.albert_einstein "Albert Einstein") (name fb:en.thomas_jefferson "Thomas Jefferson") (name fb:en.immanuel_kant "Immanuel Kant") (name fb:en.gregory_chaitin "Gregory Chaitin") (name fb:en.emanuel_swedenborg "Emanuel Swedenborg") (name fb:en.david_hume "David Hume") (name fb:en.george_boole "George Boole") (name fb:en.voltaire Voltaire) (name fb:en.george_berkeley "George Berkeley"))) (type fb:influence.influence_node) what did isaac newton explain? Gregory Chaitin 10.409 formula (fb:influence.influence_node.influenced_by fb:en.sir_newton_isaac)) (value (list (name fb:en.ralph_waldo_emerson "Ralph Waldo Emerson") (name fb:en.albert_einstein "Albert Einstein") (name fb:en.thomas_jefferson "Thomas Jefferson") (name fb:en.immanuel_kant "Immanuel Kant") (name fb:en.gregory_chaitin "Gregory Chaitin") (name fb:en.emanuel_swedenborg "Emanuel Swedenborg") (name fb:en.david_hume "David Hume") (name fb:en.george_boole "George Boole") (name fb:en.voltaire Voltaire) (name fb:en.george_berkeley "George Berkeley"))) (type fb:influence.influence_node) what did isaac newton explain? Emanuel Swedenborg 10.409 formula (fb:influence.influence_node.influenced_by fb:en.sir_newton_isaac)) (value (list (name fb:en.ralph_waldo_emerson "Ralph Waldo Emerson") (name fb:en.albert_einstein "Albert Einstein") (name fb:en.thomas_jefferson "Thomas Jefferson") (name fb:en.immanuel_kant "Immanuel Kant") (name fb:en.gregory_chaitin "Gregory Chaitin") (name fb:en.emanuel_swedenborg "Emanuel Swedenborg") (name fb:en.david_hume "David Hume") (name fb:en.george_boole "George Boole") (name fb:en.voltaire Voltaire) (name fb:en.george_berkeley "George Berkeley"))) (type fb:influence.influence_node) what did isaac newton explain? David Hume 10.409 formula (fb:influence.influence_node.influenced_by fb:en.sir_newton_isaac)) (value (list (name fb:en.ralph_waldo_emerson "Ralph Waldo Emerson") (name fb:en.albert_einstein "Albert Einstein") (name fb:en.thomas_jefferson "Thomas Jefferson") (name fb:en.immanuel_kant "Immanuel Kant") (name fb:en.gregory_chaitin "Gregory Chaitin") (name fb:en.emanuel_swedenborg "Emanuel Swedenborg") (name fb:en.david_hume "David Hume") (name fb:en.george_boole "George Boole") (name fb:en.voltaire Voltaire) (name fb:en.george_berkeley "George Berkeley"))) (type fb:influence.influence_node) what did isaac newton explain? George Boole 10.409 formula (fb:influence.influence_node.influenced_by fb:en.sir_newton_isaac)) (value (list (name fb:en.ralph_waldo_emerson "Ralph Waldo Emerson") (name fb:en.albert_einstein "Albert Einstein") (name fb:en.thomas_jefferson "Thomas Jefferson") (name fb:en.immanuel_kant "Immanuel Kant") (name fb:en.gregory_chaitin "Gregory Chaitin") (name fb:en.emanuel_swedenborg "Emanuel Swedenborg") (name fb:en.david_hume "David Hume") (name fb:en.george_boole "George Boole") (name fb:en.voltaire Voltaire) (name fb:en.george_berkeley "George Berkeley"))) (type fb:influence.influence_node) what did isaac newton explain? George Berkeley 10.409 formula (fb:influence.influence_node.influenced_by fb:en.sir_newton_isaac)) (value (list (name fb:en.ralph_waldo_emerson "Ralph Waldo Emerson") (name fb:en.albert_einstein "Albert Einstein") (name fb:en.thomas_jefferson "Thomas Jefferson") (name fb:en.immanuel_kant "Immanuel Kant") (name fb:en.gregory_chaitin "Gregory Chaitin") (name fb:en.emanuel_swedenborg "Emanuel Swedenborg") (name fb:en.david_hume "David Hume") (name fb:en.george_boole "George Boole") (name fb:en.voltaire Voltaire) (name fb:en.george_berkeley "George Berkeley"))) (type fb:influence.influence_node) what school did wilfred owen go to? University of London 17.455 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.wilfred_owen))) (value (list (name fb:en.university_of_london "University of London") (name fb:en.university_of_reading "University of Reading"))) (type fb:education.educational_institution) what school did wilfred owen go to? University of Reading 17.455 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:education.educational_institution.students_graduates (fb:education.education.student (var x)))) fb:en.wilfred_owen))) (value (list (name fb:en.university_of_london "University of London") (name fb:en.university_of_reading "University of Reading"))) (type fb:education.educational_institution) who is kevin jonas married to? Danielle Deleasa 15.649 formula ((lambda x (fb:people.person.spouse_s (fb:people.marriage.spouse (var x)))) fb:en.paul_kevin_jonas_ii)) (value (list (name fb:en.danielle_deleasa "Danielle Deleasa"))) (type fb:people.person) where does airtran airways fly? Hartsfield Jackson Atlanta International Airport 8.274 formula (and (fb:type.object.type fb:location.location) (fb:aviation.airport.hub_for fb:en.airtran_airways))) (value (list (name fb:en.hartsfield-jackson_atlanta_international_airport "Hartsfield–Jackson Atlanta International Airport") (name fb:en.general_mitchell_international_airport "General Mitchell International Airport") (name fb:en.orlando_international_airport "Orlando International Airport"))) (type fb:aviation.airport) where does airtran airways fly? General Mitchell International Airport 8.274 formula (and (fb:type.object.type fb:location.location) (fb:aviation.airport.hub_for fb:en.airtran_airways))) (value (list (name fb:en.hartsfield-jackson_atlanta_international_airport "Hartsfield–Jackson Atlanta International Airport") (name fb:en.general_mitchell_international_airport "General Mitchell International Airport") (name fb:en.orlando_international_airport "Orlando International Airport"))) (type fb:aviation.airport) where does airtran airways fly? Orlando International Airport 8.274 formula (and (fb:type.object.type fb:location.location) (fb:aviation.airport.hub_for fb:en.airtran_airways))) (value (list (name fb:en.hartsfield-jackson_atlanta_international_airport "Hartsfield–Jackson Atlanta International Airport") (name fb:en.general_mitchell_international_airport "General Mitchell International Airport") (name fb:en.orlando_international_airport "Orlando International Airport"))) (type fb:aviation.airport) ================================================ FILE: oqa-data/predictions/sempre-wikianswers.txt ================================================ What language was the olympic motto written in? The Nature of This Paradigm Dancing -4.647 formula (and (fb:type.object.type fb:common.topic) (!fb:book.book_subject.works fb:m.04g7d))) (value (list (name fb:m.0jvm94g "The Nature of This Paradigm Dancing") (name fb:m.06s8xq_ "Language and the Internet") (name fb:m.02qqfd5 "Egyptian Grammar: Being an Introduction to the Study of Hieroglyphs") (name fb:en.british_edda "The British Edda") (name fb:m.0hr7008 "Mandaean Book of John") (name fb:en.language_in_danger "Language in Danger"))) (type fb:book.written_work) What language was the olympic motto written in? Language and the Internet -4.647 formula (and (fb:type.object.type fb:common.topic) (!fb:book.book_subject.works fb:m.04g7d))) (value (list (name fb:m.0jvm94g "The Nature of This Paradigm Dancing") (name fb:m.06s8xq_ "Language and the Internet") (name fb:m.02qqfd5 "Egyptian Grammar: Being an Introduction to the Study of Hieroglyphs") (name fb:en.british_edda "The British Edda") (name fb:m.0hr7008 "Mandaean Book of John") (name fb:en.language_in_danger "Language in Danger"))) (type fb:book.written_work) What language was the olympic motto written in? Egyptian Grammar: Being an Introduction to the Study of Hieroglyphs -4.647 formula (and (fb:type.object.type fb:common.topic) (!fb:book.book_subject.works fb:m.04g7d))) (value (list (name fb:m.0jvm94g "The Nature of This Paradigm Dancing") (name fb:m.06s8xq_ "Language and the Internet") (name fb:m.02qqfd5 "Egyptian Grammar: Being an Introduction to the Study of Hieroglyphs") (name fb:en.british_edda "The British Edda") (name fb:m.0hr7008 "Mandaean Book of John") (name fb:en.language_in_danger "Language in Danger"))) (type fb:book.written_work) What language was the olympic motto written in? The British Edda -4.647 formula (and (fb:type.object.type fb:common.topic) (!fb:book.book_subject.works fb:m.04g7d))) (value (list (name fb:m.0jvm94g "The Nature of This Paradigm Dancing") (name fb:m.06s8xq_ "Language and the Internet") (name fb:m.02qqfd5 "Egyptian Grammar: Being an Introduction to the Study of Hieroglyphs") (name fb:en.british_edda "The British Edda") (name fb:m.0hr7008 "Mandaean Book of John") (name fb:en.language_in_danger "Language in Danger"))) (type fb:book.written_work) What language was the olympic motto written in? Mandaean Book of John -4.647 formula (and (fb:type.object.type fb:common.topic) (!fb:book.book_subject.works fb:m.04g7d))) (value (list (name fb:m.0jvm94g "The Nature of This Paradigm Dancing") (name fb:m.06s8xq_ "Language and the Internet") (name fb:m.02qqfd5 "Egyptian Grammar: Being an Introduction to the Study of Hieroglyphs") (name fb:en.british_edda "The British Edda") (name fb:m.0hr7008 "Mandaean Book of John") (name fb:en.language_in_danger "Language in Danger"))) (type fb:book.written_work) What language was the olympic motto written in? Language in Danger -4.647 formula (and (fb:type.object.type fb:common.topic) (!fb:book.book_subject.works fb:m.04g7d))) (value (list (name fb:m.0jvm94g "The Nature of This Paradigm Dancing") (name fb:m.06s8xq_ "Language and the Internet") (name fb:m.02qqfd5 "Egyptian Grammar: Being an Introduction to the Study of Hieroglyphs") (name fb:en.british_edda "The British Edda") (name fb:m.0hr7008 "Mandaean Book of John") (name fb:en.language_in_danger "Language in Danger"))) (type fb:book.written_work) Where was Chris Brown born? New York -3.708 formula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:people.place_lived.location (!fb:people.person.places_lived (var x)))) fb:en.chris_brown))) (value (list (name fb:en.virginia Virginia) (name fb:en.new_york_state "New York"))) (type fb:location.location) Why was Britain so scared on Germany in WW1? Ritter Sport -5.697 formula (fb:food.candy_bar.sold_in fb:en.germany)) (value (list (name fb:en.ritter_sport "Ritter Sport") (name fb:en.curly_wurly "Curly Wurly"))) (type fb:food.candy_bar) Why was Britain so scared on Germany in WW1? Curly Wurly -5.697 formula (fb:food.candy_bar.sold_in fb:en.germany)) (value (list (name fb:en.ritter_sport "Ritter Sport") (name fb:en.curly_wurly "Curly Wurly"))) (type fb:food.candy_bar) What films has Lenny Henry been in? Harry Potter and the Prisoner of Azkaban 0.951 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.lenny_henry)))) (value (list (name fb:en.harry_potter_and_the_prisoner_of_azkaban_2004 "Harry Potter and the Prisoner of Azkaban") (name fb:m.03d6pk4 "Coast to Coast") (name fb:m.0b4k1y Penelope) (name fb:m.0ggbb0m "The Pirates! Band of Misfits") (name fb:en.mirrormask MirrorMask) (name fb:en.bernard_and_the_genie "Bernard and the Genie") (name fb:en.little_robots_reach_for_the_sky "Little Robots: Reach for the Sky") (name fb:m.0crw3g2 "French and Saunders: Live") (name fb:m.04j25ld "Prince Cinders") (name fb:m.02pg_l4 "True Identity"))) (type fb:film.film) What films has Lenny Henry been in? Coast to Coast 0.951 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.lenny_henry)))) (value (list (name fb:en.harry_potter_and_the_prisoner_of_azkaban_2004 "Harry Potter and the Prisoner of Azkaban") (name fb:m.03d6pk4 "Coast to Coast") (name fb:m.0b4k1y Penelope) (name fb:m.0ggbb0m "The Pirates! Band of Misfits") (name fb:en.mirrormask MirrorMask) (name fb:en.bernard_and_the_genie "Bernard and the Genie") (name fb:en.little_robots_reach_for_the_sky "Little Robots: Reach for the Sky") (name fb:m.0crw3g2 "French and Saunders: Live") (name fb:m.04j25ld "Prince Cinders") (name fb:m.02pg_l4 "True Identity"))) (type fb:film.film) What films has Lenny Henry been in? The Pirates! Band of Misfits 0.951 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.lenny_henry)))) (value (list (name fb:en.harry_potter_and_the_prisoner_of_azkaban_2004 "Harry Potter and the Prisoner of Azkaban") (name fb:m.03d6pk4 "Coast to Coast") (name fb:m.0b4k1y Penelope) (name fb:m.0ggbb0m "The Pirates! Band of Misfits") (name fb:en.mirrormask MirrorMask) (name fb:en.bernard_and_the_genie "Bernard and the Genie") (name fb:en.little_robots_reach_for_the_sky "Little Robots: Reach for the Sky") (name fb:m.0crw3g2 "French and Saunders: Live") (name fb:m.04j25ld "Prince Cinders") (name fb:m.02pg_l4 "True Identity"))) (type fb:film.film) What films has Lenny Henry been in? Bernard and the Genie 0.951 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.lenny_henry)))) (value (list (name fb:en.harry_potter_and_the_prisoner_of_azkaban_2004 "Harry Potter and the Prisoner of Azkaban") (name fb:m.03d6pk4 "Coast to Coast") (name fb:m.0b4k1y Penelope) (name fb:m.0ggbb0m "The Pirates! Band of Misfits") (name fb:en.mirrormask MirrorMask) (name fb:en.bernard_and_the_genie "Bernard and the Genie") (name fb:en.little_robots_reach_for_the_sky "Little Robots: Reach for the Sky") (name fb:m.0crw3g2 "French and Saunders: Live") (name fb:m.04j25ld "Prince Cinders") (name fb:m.02pg_l4 "True Identity"))) (type fb:film.film) What films has Lenny Henry been in? Little Robots: Reach for the Sky 0.951 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.lenny_henry)))) (value (list (name fb:en.harry_potter_and_the_prisoner_of_azkaban_2004 "Harry Potter and the Prisoner of Azkaban") (name fb:m.03d6pk4 "Coast to Coast") (name fb:m.0b4k1y Penelope) (name fb:m.0ggbb0m "The Pirates! Band of Misfits") (name fb:en.mirrormask MirrorMask) (name fb:en.bernard_and_the_genie "Bernard and the Genie") (name fb:en.little_robots_reach_for_the_sky "Little Robots: Reach for the Sky") (name fb:m.0crw3g2 "French and Saunders: Live") (name fb:m.04j25ld "Prince Cinders") (name fb:m.02pg_l4 "True Identity"))) (type fb:film.film) What films has Lenny Henry been in? French and Saunders: Live 0.951 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.lenny_henry)))) (value (list (name fb:en.harry_potter_and_the_prisoner_of_azkaban_2004 "Harry Potter and the Prisoner of Azkaban") (name fb:m.03d6pk4 "Coast to Coast") (name fb:m.0b4k1y Penelope) (name fb:m.0ggbb0m "The Pirates! Band of Misfits") (name fb:en.mirrormask MirrorMask) (name fb:en.bernard_and_the_genie "Bernard and the Genie") (name fb:en.little_robots_reach_for_the_sky "Little Robots: Reach for the Sky") (name fb:m.0crw3g2 "French and Saunders: Live") (name fb:m.04j25ld "Prince Cinders") (name fb:m.02pg_l4 "True Identity"))) (type fb:film.film) What films has Lenny Henry been in? Prince Cinders 0.951 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.lenny_henry)))) (value (list (name fb:en.harry_potter_and_the_prisoner_of_azkaban_2004 "Harry Potter and the Prisoner of Azkaban") (name fb:m.03d6pk4 "Coast to Coast") (name fb:m.0b4k1y Penelope) (name fb:m.0ggbb0m "The Pirates! Band of Misfits") (name fb:en.mirrormask MirrorMask) (name fb:en.bernard_and_the_genie "Bernard and the Genie") (name fb:en.little_robots_reach_for_the_sky "Little Robots: Reach for the Sky") (name fb:m.0crw3g2 "French and Saunders: Live") (name fb:m.04j25ld "Prince Cinders") (name fb:m.02pg_l4 "True Identity"))) (type fb:film.film) What films has Lenny Henry been in? True Identity 0.951 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:film.film) ((lambda x (!fb:film.performance.film (!fb:film.actor.film (var x)))) fb:en.lenny_henry)))) (value (list (name fb:en.harry_potter_and_the_prisoner_of_azkaban_2004 "Harry Potter and the Prisoner of Azkaban") (name fb:m.03d6pk4 "Coast to Coast") (name fb:m.0b4k1y Penelope) (name fb:m.0ggbb0m "The Pirates! Band of Misfits") (name fb:en.mirrormask MirrorMask) (name fb:en.bernard_and_the_genie "Bernard and the Genie") (name fb:en.little_robots_reach_for_the_sky "Little Robots: Reach for the Sky") (name fb:m.0crw3g2 "French and Saunders: Live") (name fb:m.04j25ld "Prince Cinders") (name fb:m.02pg_l4 "True Identity"))) (type fb:film.film) What are some similarities between a dog and a squirrel? How many legs does a dog have if you call the tail a leg? Four. Calling a tail a leg doesn't make it a leg. -3.633 formula (and (fb:type.object.type fb:common.topic) (!fb:media_common.quotation_subject.quotations_about_this_subject fb:en.dog))) (value (list (name fb:m.048d1l7 "How many legs does a dog have if you call the tail a leg? Four. Calling a tail a leg doesn't make it a leg.") (name fb:m.048f_22 "You may drive a dog off the King's armchair, and it will climb into the preacher's pulpit; he views the world unmoved, unembarrassed, unabashed.") (name fb:m.048f_xf "A door is what a dog is perpetually on the wrong side of.") (name fb:m.048crwj "Dog. A kind of additional or subsidiary Deity designed to catch the overflow and surplus of the world's worship.") (name fb:m.048cr_j "The nose of the bulldog has been slanted backwards so that he can breathe without letting go.") (name fb:m.048h20l "The meeting in the open of two dogs, strangers to each other, is one of the most painful, thrilling, and pregnant of all conceivable encounters; it is surrounded by an atmosphere of the last canniness, presided over by a constraint for which I have no precise name; they simply cannot pass each other, their mutual embarrassment is frightful to behold.") (name fb:m.048dt0t "In order to really enjoy a dog, one doesn't merely try to train him to be semi-human. The point of it is to open oneself to the possibility of becoming partly a dog.") (name fb:m.048cqhv "The great pleasure of a dog is that you may make a fool of yourself with him and not only will he not scold you, but he will make a fool of himself too.") (name fb:m.048fpt4 "If you are a dog and your owner suggests that you wear a sweater suggest that he wear a tail.") (name fb:m.048cm2n "If a dog doesn't put you first where are you both? In what relation? A dog needs God. It lives by your glances, your wishes. It even shares your humor. This happens about the fifth year. If it doesn't happen you are only keeping an animal."))) (type fb:media_common.quotation) What are some similarities between a dog and a squirrel? You may drive a dog off the King's armchair, and it will climb into the preacher's pulpit; he views the world unmoved, unembarrassed, unabashed. -3.633 formula (and (fb:type.object.type fb:common.topic) (!fb:media_common.quotation_subject.quotations_about_this_subject fb:en.dog))) (value (list (name fb:m.048d1l7 "How many legs does a dog have if you call the tail a leg? Four. Calling a tail a leg doesn't make it a leg.") (name fb:m.048f_22 "You may drive a dog off the King's armchair, and it will climb into the preacher's pulpit; he views the world unmoved, unembarrassed, unabashed.") (name fb:m.048f_xf "A door is what a dog is perpetually on the wrong side of.") (name fb:m.048crwj "Dog. A kind of additional or subsidiary Deity designed to catch the overflow and surplus of the world's worship.") (name fb:m.048cr_j "The nose of the bulldog has been slanted backwards so that he can breathe without letting go.") (name fb:m.048h20l "The meeting in the open of two dogs, strangers to each other, is one of the most painful, thrilling, and pregnant of all conceivable encounters; it is surrounded by an atmosphere of the last canniness, presided over by a constraint for which I have no precise name; they simply cannot pass each other, their mutual embarrassment is frightful to behold.") (name fb:m.048dt0t "In order to really enjoy a dog, one doesn't merely try to train him to be semi-human. The point of it is to open oneself to the possibility of becoming partly a dog.") (name fb:m.048cqhv "The great pleasure of a dog is that you may make a fool of yourself with him and not only will he not scold you, but he will make a fool of himself too.") (name fb:m.048fpt4 "If you are a dog and your owner suggests that you wear a sweater suggest that he wear a tail.") (name fb:m.048cm2n "If a dog doesn't put you first where are you both? In what relation? A dog needs God. It lives by your glances, your wishes. It even shares your humor. This happens about the fifth year. If it doesn't happen you are only keeping an animal."))) (type fb:media_common.quotation) What are some similarities between a dog and a squirrel? A door is what a dog is perpetually on the wrong side of. -3.633 formula (and (fb:type.object.type fb:common.topic) (!fb:media_common.quotation_subject.quotations_about_this_subject fb:en.dog))) (value (list (name fb:m.048d1l7 "How many legs does a dog have if you call the tail a leg? Four. Calling a tail a leg doesn't make it a leg.") (name fb:m.048f_22 "You may drive a dog off the King's armchair, and it will climb into the preacher's pulpit; he views the world unmoved, unembarrassed, unabashed.") (name fb:m.048f_xf "A door is what a dog is perpetually on the wrong side of.") (name fb:m.048crwj "Dog. A kind of additional or subsidiary Deity designed to catch the overflow and surplus of the world's worship.") (name fb:m.048cr_j "The nose of the bulldog has been slanted backwards so that he can breathe without letting go.") (name fb:m.048h20l "The meeting in the open of two dogs, strangers to each other, is one of the most painful, thrilling, and pregnant of all conceivable encounters; it is surrounded by an atmosphere of the last canniness, presided over by a constraint for which I have no precise name; they simply cannot pass each other, their mutual embarrassment is frightful to behold.") (name fb:m.048dt0t "In order to really enjoy a dog, one doesn't merely try to train him to be semi-human. The point of it is to open oneself to the possibility of becoming partly a dog.") (name fb:m.048cqhv "The great pleasure of a dog is that you may make a fool of yourself with him and not only will he not scold you, but he will make a fool of himself too.") (name fb:m.048fpt4 "If you are a dog and your owner suggests that you wear a sweater suggest that he wear a tail.") (name fb:m.048cm2n "If a dog doesn't put you first where are you both? In what relation? A dog needs God. It lives by your glances, your wishes. It even shares your humor. This happens about the fifth year. If it doesn't happen you are only keeping an animal."))) (type fb:media_common.quotation) What are some similarities between a dog and a squirrel? Dog. A kind of additional or subsidiary Deity designed to catch the overflow and surplus of the world's worship. -3.633 formula (and (fb:type.object.type fb:common.topic) (!fb:media_common.quotation_subject.quotations_about_this_subject fb:en.dog))) (value (list (name fb:m.048d1l7 "How many legs does a dog have if you call the tail a leg? Four. Calling a tail a leg doesn't make it a leg.") (name fb:m.048f_22 "You may drive a dog off the King's armchair, and it will climb into the preacher's pulpit; he views the world unmoved, unembarrassed, unabashed.") (name fb:m.048f_xf "A door is what a dog is perpetually on the wrong side of.") (name fb:m.048crwj "Dog. A kind of additional or subsidiary Deity designed to catch the overflow and surplus of the world's worship.") (name fb:m.048cr_j "The nose of the bulldog has been slanted backwards so that he can breathe without letting go.") (name fb:m.048h20l "The meeting in the open of two dogs, strangers to each other, is one of the most painful, thrilling, and pregnant of all conceivable encounters; it is surrounded by an atmosphere of the last canniness, presided over by a constraint for which I have no precise name; they simply cannot pass each other, their mutual embarrassment is frightful to behold.") (name fb:m.048dt0t "In order to really enjoy a dog, one doesn't merely try to train him to be semi-human. The point of it is to open oneself to the possibility of becoming partly a dog.") (name fb:m.048cqhv "The great pleasure of a dog is that you may make a fool of yourself with him and not only will he not scold you, but he will make a fool of himself too.") (name fb:m.048fpt4 "If you are a dog and your owner suggests that you wear a sweater suggest that he wear a tail.") (name fb:m.048cm2n "If a dog doesn't put you first where are you both? In what relation? A dog needs God. It lives by your glances, your wishes. It even shares your humor. This happens about the fifth year. If it doesn't happen you are only keeping an animal."))) (type fb:media_common.quotation) What are some similarities between a dog and a squirrel? The nose of the bulldog has been slanted backwards so that he can breathe without letting go. -3.633 formula (and (fb:type.object.type fb:common.topic) (!fb:media_common.quotation_subject.quotations_about_this_subject fb:en.dog))) (value (list (name fb:m.048d1l7 "How many legs does a dog have if you call the tail a leg? Four. Calling a tail a leg doesn't make it a leg.") (name fb:m.048f_22 "You may drive a dog off the King's armchair, and it will climb into the preacher's pulpit; he views the world unmoved, unembarrassed, unabashed.") (name fb:m.048f_xf "A door is what a dog is perpetually on the wrong side of.") (name fb:m.048crwj "Dog. A kind of additional or subsidiary Deity designed to catch the overflow and surplus of the world's worship.") (name fb:m.048cr_j "The nose of the bulldog has been slanted backwards so that he can breathe without letting go.") (name fb:m.048h20l "The meeting in the open of two dogs, strangers to each other, is one of the most painful, thrilling, and pregnant of all conceivable encounters; it is surrounded by an atmosphere of the last canniness, presided over by a constraint for which I have no precise name; they simply cannot pass each other, their mutual embarrassment is frightful to behold.") (name fb:m.048dt0t "In order to really enjoy a dog, one doesn't merely try to train him to be semi-human. The point of it is to open oneself to the possibility of becoming partly a dog.") (name fb:m.048cqhv "The great pleasure of a dog is that you may make a fool of yourself with him and not only will he not scold you, but he will make a fool of himself too.") (name fb:m.048fpt4 "If you are a dog and your owner suggests that you wear a sweater suggest that he wear a tail.") (name fb:m.048cm2n "If a dog doesn't put you first where are you both? In what relation? A dog needs God. It lives by your glances, your wishes. It even shares your humor. This happens about the fifth year. If it doesn't happen you are only keeping an animal."))) (type fb:media_common.quotation) What are some similarities between a dog and a squirrel? The meeting in the open of two dogs, strangers to each other, is one of the most painful, thrilling, and pregnant of all conceivable encounters; it is surrounded by an atmosphere of the last canniness, presided over by a constraint for which I have no precise name; they simply cannot pass each other, their mutual embarrassment is frightful to behold. -3.633 formula (and (fb:type.object.type fb:common.topic) (!fb:media_common.quotation_subject.quotations_about_this_subject fb:en.dog))) (value (list (name fb:m.048d1l7 "How many legs does a dog have if you call the tail a leg? Four. Calling a tail a leg doesn't make it a leg.") (name fb:m.048f_22 "You may drive a dog off the King's armchair, and it will climb into the preacher's pulpit; he views the world unmoved, unembarrassed, unabashed.") (name fb:m.048f_xf "A door is what a dog is perpetually on the wrong side of.") (name fb:m.048crwj "Dog. A kind of additional or subsidiary Deity designed to catch the overflow and surplus of the world's worship.") (name fb:m.048cr_j "The nose of the bulldog has been slanted backwards so that he can breathe without letting go.") (name fb:m.048h20l "The meeting in the open of two dogs, strangers to each other, is one of the most painful, thrilling, and pregnant of all conceivable encounters; it is surrounded by an atmosphere of the last canniness, presided over by a constraint for which I have no precise name; they simply cannot pass each other, their mutual embarrassment is frightful to behold.") (name fb:m.048dt0t "In order to really enjoy a dog, one doesn't merely try to train him to be semi-human. The point of it is to open oneself to the possibility of becoming partly a dog.") (name fb:m.048cqhv "The great pleasure of a dog is that you may make a fool of yourself with him and not only will he not scold you, but he will make a fool of himself too.") (name fb:m.048fpt4 "If you are a dog and your owner suggests that you wear a sweater suggest that he wear a tail.") (name fb:m.048cm2n "If a dog doesn't put you first where are you both? In what relation? A dog needs God. It lives by your glances, your wishes. It even shares your humor. This happens about the fifth year. If it doesn't happen you are only keeping an animal."))) (type fb:media_common.quotation) What are some similarities between a dog and a squirrel? In order to really enjoy a dog, one doesn't merely try to train him to be semi-human. The point of it is to open oneself to the possibility of becoming partly a dog. -3.633 formula (and (fb:type.object.type fb:common.topic) (!fb:media_common.quotation_subject.quotations_about_this_subject fb:en.dog))) (value (list (name fb:m.048d1l7 "How many legs does a dog have if you call the tail a leg? Four. Calling a tail a leg doesn't make it a leg.") (name fb:m.048f_22 "You may drive a dog off the King's armchair, and it will climb into the preacher's pulpit; he views the world unmoved, unembarrassed, unabashed.") (name fb:m.048f_xf "A door is what a dog is perpetually on the wrong side of.") (name fb:m.048crwj "Dog. A kind of additional or subsidiary Deity designed to catch the overflow and surplus of the world's worship.") (name fb:m.048cr_j "The nose of the bulldog has been slanted backwards so that he can breathe without letting go.") (name fb:m.048h20l "The meeting in the open of two dogs, strangers to each other, is one of the most painful, thrilling, and pregnant of all conceivable encounters; it is surrounded by an atmosphere of the last canniness, presided over by a constraint for which I have no precise name; they simply cannot pass each other, their mutual embarrassment is frightful to behold.") (name fb:m.048dt0t "In order to really enjoy a dog, one doesn't merely try to train him to be semi-human. The point of it is to open oneself to the possibility of becoming partly a dog.") (name fb:m.048cqhv "The great pleasure of a dog is that you may make a fool of yourself with him and not only will he not scold you, but he will make a fool of himself too.") (name fb:m.048fpt4 "If you are a dog and your owner suggests that you wear a sweater suggest that he wear a tail.") (name fb:m.048cm2n "If a dog doesn't put you first where are you both? In what relation? A dog needs God. It lives by your glances, your wishes. It even shares your humor. This happens about the fifth year. If it doesn't happen you are only keeping an animal."))) (type fb:media_common.quotation) What are some similarities between a dog and a squirrel? The great pleasure of a dog is that you may make a fool of yourself with him and not only will he not scold you, but he will make a fool of himself too. -3.633 formula (and (fb:type.object.type fb:common.topic) (!fb:media_common.quotation_subject.quotations_about_this_subject fb:en.dog))) (value (list (name fb:m.048d1l7 "How many legs does a dog have if you call the tail a leg? Four. Calling a tail a leg doesn't make it a leg.") (name fb:m.048f_22 "You may drive a dog off the King's armchair, and it will climb into the preacher's pulpit; he views the world unmoved, unembarrassed, unabashed.") (name fb:m.048f_xf "A door is what a dog is perpetually on the wrong side of.") (name fb:m.048crwj "Dog. A kind of additional or subsidiary Deity designed to catch the overflow and surplus of the world's worship.") (name fb:m.048cr_j "The nose of the bulldog has been slanted backwards so that he can breathe without letting go.") (name fb:m.048h20l "The meeting in the open of two dogs, strangers to each other, is one of the most painful, thrilling, and pregnant of all conceivable encounters; it is surrounded by an atmosphere of the last canniness, presided over by a constraint for which I have no precise name; they simply cannot pass each other, their mutual embarrassment is frightful to behold.") (name fb:m.048dt0t "In order to really enjoy a dog, one doesn't merely try to train him to be semi-human. The point of it is to open oneself to the possibility of becoming partly a dog.") (name fb:m.048cqhv "The great pleasure of a dog is that you may make a fool of yourself with him and not only will he not scold you, but he will make a fool of himself too.") (name fb:m.048fpt4 "If you are a dog and your owner suggests that you wear a sweater suggest that he wear a tail.") (name fb:m.048cm2n "If a dog doesn't put you first where are you both? In what relation? A dog needs God. It lives by your glances, your wishes. It even shares your humor. This happens about the fifth year. If it doesn't happen you are only keeping an animal."))) (type fb:media_common.quotation) What are some similarities between a dog and a squirrel? If you are a dog and your owner suggests that you wear a sweater suggest that he wear a tail. -3.633 formula (and (fb:type.object.type fb:common.topic) (!fb:media_common.quotation_subject.quotations_about_this_subject fb:en.dog))) (value (list (name fb:m.048d1l7 "How many legs does a dog have if you call the tail a leg? Four. Calling a tail a leg doesn't make it a leg.") (name fb:m.048f_22 "You may drive a dog off the King's armchair, and it will climb into the preacher's pulpit; he views the world unmoved, unembarrassed, unabashed.") (name fb:m.048f_xf "A door is what a dog is perpetually on the wrong side of.") (name fb:m.048crwj "Dog. A kind of additional or subsidiary Deity designed to catch the overflow and surplus of the world's worship.") (name fb:m.048cr_j "The nose of the bulldog has been slanted backwards so that he can breathe without letting go.") (name fb:m.048h20l "The meeting in the open of two dogs, strangers to each other, is one of the most painful, thrilling, and pregnant of all conceivable encounters; it is surrounded by an atmosphere of the last canniness, presided over by a constraint for which I have no precise name; they simply cannot pass each other, their mutual embarrassment is frightful to behold.") (name fb:m.048dt0t "In order to really enjoy a dog, one doesn't merely try to train him to be semi-human. The point of it is to open oneself to the possibility of becoming partly a dog.") (name fb:m.048cqhv "The great pleasure of a dog is that you may make a fool of yourself with him and not only will he not scold you, but he will make a fool of himself too.") (name fb:m.048fpt4 "If you are a dog and your owner suggests that you wear a sweater suggest that he wear a tail.") (name fb:m.048cm2n "If a dog doesn't put you first where are you both? In what relation? A dog needs God. It lives by your glances, your wishes. It even shares your humor. This happens about the fifth year. If it doesn't happen you are only keeping an animal."))) (type fb:media_common.quotation) What are some similarities between a dog and a squirrel? If a dog doesn't put you first where are you both? In what relation? A dog needs God. It lives by your glances, your wishes. It even shares your humor. This happens about the fifth year. If it doesn't happen you are only keeping an animal. -3.633 formula (and (fb:type.object.type fb:common.topic) (!fb:media_common.quotation_subject.quotations_about_this_subject fb:en.dog))) (value (list (name fb:m.048d1l7 "How many legs does a dog have if you call the tail a leg? Four. Calling a tail a leg doesn't make it a leg.") (name fb:m.048f_22 "You may drive a dog off the King's armchair, and it will climb into the preacher's pulpit; he views the world unmoved, unembarrassed, unabashed.") (name fb:m.048f_xf "A door is what a dog is perpetually on the wrong side of.") (name fb:m.048crwj "Dog. A kind of additional or subsidiary Deity designed to catch the overflow and surplus of the world's worship.") (name fb:m.048cr_j "The nose of the bulldog has been slanted backwards so that he can breathe without letting go.") (name fb:m.048h20l "The meeting in the open of two dogs, strangers to each other, is one of the most painful, thrilling, and pregnant of all conceivable encounters; it is surrounded by an atmosphere of the last canniness, presided over by a constraint for which I have no precise name; they simply cannot pass each other, their mutual embarrassment is frightful to behold.") (name fb:m.048dt0t "In order to really enjoy a dog, one doesn't merely try to train him to be semi-human. The point of it is to open oneself to the possibility of becoming partly a dog.") (name fb:m.048cqhv "The great pleasure of a dog is that you may make a fool of yourself with him and not only will he not scold you, but he will make a fool of himself too.") (name fb:m.048fpt4 "If you are a dog and your owner suggests that you wear a sweater suggest that he wear a tail.") (name fb:m.048cm2n "If a dog doesn't put you first where are you both? In what relation? A dog needs God. It lives by your glances, your wishes. It even shares your humor. This happens about the fifth year. If it doesn't happen you are only keeping an animal."))) (type fb:media_common.quotation) Freight account is a contra purchase account true or false? Kon To Ra -1.657 formula (!fb:common.topic.alias fb:en.contra)) (value (list (string Probotector) (string Gryzor) (string "Kon To Ra"))) (type fb:type.text) Which is bigger country Somalia or Kenya? Somali Language -4.455 formula (fb:language.human_language.main_country fb:en.somalia)) (value (list (name fb:en.somali_languages "Somali Language") (name fb:en.mushungulu "Mushungulu Language") (name fb:en.boon_language "Boon Language") (name fb:en.tunni "Tunni Language") (name fb:en.maay "Maay Language") (name fb:m.02hxy8r "Garre Language") (name fb:en.dabarre "Dabarre Language") (name fb:en.jiiddu "Jiiddu Language"))) (type fb:language.human_language) Which is bigger country Somalia or Kenya? Mushungulu Language -4.455 formula (fb:language.human_language.main_country fb:en.somalia)) (value (list (name fb:en.somali_languages "Somali Language") (name fb:en.mushungulu "Mushungulu Language") (name fb:en.boon_language "Boon Language") (name fb:en.tunni "Tunni Language") (name fb:en.maay "Maay Language") (name fb:m.02hxy8r "Garre Language") (name fb:en.dabarre "Dabarre Language") (name fb:en.jiiddu "Jiiddu Language"))) (type fb:language.human_language) Which is bigger country Somalia or Kenya? Boon Language -4.455 formula (fb:language.human_language.main_country fb:en.somalia)) (value (list (name fb:en.somali_languages "Somali Language") (name fb:en.mushungulu "Mushungulu Language") (name fb:en.boon_language "Boon Language") (name fb:en.tunni "Tunni Language") (name fb:en.maay "Maay Language") (name fb:m.02hxy8r "Garre Language") (name fb:en.dabarre "Dabarre Language") (name fb:en.jiiddu "Jiiddu Language"))) (type fb:language.human_language) Which is bigger country Somalia or Kenya? Tunni Language -4.455 formula (fb:language.human_language.main_country fb:en.somalia)) (value (list (name fb:en.somali_languages "Somali Language") (name fb:en.mushungulu "Mushungulu Language") (name fb:en.boon_language "Boon Language") (name fb:en.tunni "Tunni Language") (name fb:en.maay "Maay Language") (name fb:m.02hxy8r "Garre Language") (name fb:en.dabarre "Dabarre Language") (name fb:en.jiiddu "Jiiddu Language"))) (type fb:language.human_language) Which is bigger country Somalia or Kenya? Maay Language -4.455 formula (fb:language.human_language.main_country fb:en.somalia)) (value (list (name fb:en.somali_languages "Somali Language") (name fb:en.mushungulu "Mushungulu Language") (name fb:en.boon_language "Boon Language") (name fb:en.tunni "Tunni Language") (name fb:en.maay "Maay Language") (name fb:m.02hxy8r "Garre Language") (name fb:en.dabarre "Dabarre Language") (name fb:en.jiiddu "Jiiddu Language"))) (type fb:language.human_language) Which is bigger country Somalia or Kenya? Garre Language -4.455 formula (fb:language.human_language.main_country fb:en.somalia)) (value (list (name fb:en.somali_languages "Somali Language") (name fb:en.mushungulu "Mushungulu Language") (name fb:en.boon_language "Boon Language") (name fb:en.tunni "Tunni Language") (name fb:en.maay "Maay Language") (name fb:m.02hxy8r "Garre Language") (name fb:en.dabarre "Dabarre Language") (name fb:en.jiiddu "Jiiddu Language"))) (type fb:language.human_language) Which is bigger country Somalia or Kenya? Dabarre Language -4.455 formula (fb:language.human_language.main_country fb:en.somalia)) (value (list (name fb:en.somali_languages "Somali Language") (name fb:en.mushungulu "Mushungulu Language") (name fb:en.boon_language "Boon Language") (name fb:en.tunni "Tunni Language") (name fb:en.maay "Maay Language") (name fb:m.02hxy8r "Garre Language") (name fb:en.dabarre "Dabarre Language") (name fb:en.jiiddu "Jiiddu Language"))) (type fb:language.human_language) Which is bigger country Somalia or Kenya? Jiiddu Language -4.455 formula (fb:language.human_language.main_country fb:en.somalia)) (value (list (name fb:en.somali_languages "Somali Language") (name fb:en.mushungulu "Mushungulu Language") (name fb:en.boon_language "Boon Language") (name fb:en.tunni "Tunni Language") (name fb:en.maay "Maay Language") (name fb:m.02hxy8r "Garre Language") (name fb:en.dabarre "Dabarre Language") (name fb:en.jiiddu "Jiiddu Language"))) (type fb:language.human_language) Where did you get water in the 1800's? Wheat beer -2.511 formula (fb:food.dish.ingredients fb:en.cpd_c00001_h2o)) (value (list (name fb:en.mead Mead) (name fb:en.bagel Bagel) (name fb:en.lazarakia Lazarakia) (name fb:en.wheat_beer "Wheat beer") (name fb:en.chicken_soup "Chicken soup") (name fb:en.matzo Matzo) (name fb:en.court_bouillon Court-bouillon) (name fb:en.ice_pop "Ice pop") (name fb:en.ho_tteok Hotteok) (name fb:en.matzo_pancake "Matzo Pancake"))) (type fb:food.dish) Where did you get water in the 1800's? Chicken soup -2.511 formula (fb:food.dish.ingredients fb:en.cpd_c00001_h2o)) (value (list (name fb:en.mead Mead) (name fb:en.bagel Bagel) (name fb:en.lazarakia Lazarakia) (name fb:en.wheat_beer "Wheat beer") (name fb:en.chicken_soup "Chicken soup") (name fb:en.matzo Matzo) (name fb:en.court_bouillon Court-bouillon) (name fb:en.ice_pop "Ice pop") (name fb:en.ho_tteok Hotteok) (name fb:en.matzo_pancake "Matzo Pancake"))) (type fb:food.dish) Where did you get water in the 1800's? Ice pop -2.511 formula (fb:food.dish.ingredients fb:en.cpd_c00001_h2o)) (value (list (name fb:en.mead Mead) (name fb:en.bagel Bagel) (name fb:en.lazarakia Lazarakia) (name fb:en.wheat_beer "Wheat beer") (name fb:en.chicken_soup "Chicken soup") (name fb:en.matzo Matzo) (name fb:en.court_bouillon Court-bouillon) (name fb:en.ice_pop "Ice pop") (name fb:en.ho_tteok Hotteok) (name fb:en.matzo_pancake "Matzo Pancake"))) (type fb:food.dish) Where did you get water in the 1800's? Matzo Pancake -2.511 formula (fb:food.dish.ingredients fb:en.cpd_c00001_h2o)) (value (list (name fb:en.mead Mead) (name fb:en.bagel Bagel) (name fb:en.lazarakia Lazarakia) (name fb:en.wheat_beer "Wheat beer") (name fb:en.chicken_soup "Chicken soup") (name fb:en.matzo Matzo) (name fb:en.court_bouillon Court-bouillon) (name fb:en.ice_pop "Ice pop") (name fb:en.ho_tteok Hotteok) (name fb:en.matzo_pancake "Matzo Pancake"))) (type fb:food.dish) What is a 8 cylinder engine? Pontiac 5.0L 8 Cylinder 305 FFS 5.071 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:automotive.engine) (fb:automotive.engine.engine_type fb:en.8_cylinder)))) (value (list (name fb:en.pontiac_5_0l_8_cylinder_305_ffs "Pontiac 5.0L 8 Cylinder 305 FFS") (name fb:en.ford_5_4l_8_cylinder "Ford 5.4L 8 cylinder") (name fb:en.lincoln_4_9l_8_cylinder_ffs "Lincoln 4.9L 8 Cylinder FFS") (name fb:en.ford_5_8l_8_cylinder_ffs "Ford 5.8L 8 Cylinder FFS") (name fb:en.ford_4_9l_8_cylinder_ffs "Ford 4.9L 8 Cylinder FFS") (name fb:en.mercury_4_9l_8_cylinder_ffs "Mercury 4.9L 8 Cylinder FFS") (name fb:en.ford_4_6l_8_cylinder_224hp_275_ft_lbs "Ford 4.6L 8 cylinder 224hp 275 ft-lbs") (name fb:en.buick_5_0l_8_cylinder_gm_olds_ffs "Buick 5.0L 8 Cylinder GM-OLDS FFS") (name fb:en.mercedes_benz_5_0l_8_cylinder_premium "Mercedes-Benz 5.0L 8 Cylinder Premium") (name fb:en.mercedes_benz_5_4l_8_cylinder_premium "Mercedes-Benz 5.4L 8 Cylinder Premium"))) (type fb:automotive.engine) What is a 8 cylinder engine? Ford 5.4L 8 cylinder 5.071 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:automotive.engine) (fb:automotive.engine.engine_type fb:en.8_cylinder)))) (value (list (name fb:en.pontiac_5_0l_8_cylinder_305_ffs "Pontiac 5.0L 8 Cylinder 305 FFS") (name fb:en.ford_5_4l_8_cylinder "Ford 5.4L 8 cylinder") (name fb:en.lincoln_4_9l_8_cylinder_ffs "Lincoln 4.9L 8 Cylinder FFS") (name fb:en.ford_5_8l_8_cylinder_ffs "Ford 5.8L 8 Cylinder FFS") (name fb:en.ford_4_9l_8_cylinder_ffs "Ford 4.9L 8 Cylinder FFS") (name fb:en.mercury_4_9l_8_cylinder_ffs "Mercury 4.9L 8 Cylinder FFS") (name fb:en.ford_4_6l_8_cylinder_224hp_275_ft_lbs "Ford 4.6L 8 cylinder 224hp 275 ft-lbs") (name fb:en.buick_5_0l_8_cylinder_gm_olds_ffs "Buick 5.0L 8 Cylinder GM-OLDS FFS") (name fb:en.mercedes_benz_5_0l_8_cylinder_premium "Mercedes-Benz 5.0L 8 Cylinder Premium") (name fb:en.mercedes_benz_5_4l_8_cylinder_premium "Mercedes-Benz 5.4L 8 Cylinder Premium"))) (type fb:automotive.engine) What is a 8 cylinder engine? Lincoln 4.9L 8 Cylinder FFS 5.071 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:automotive.engine) (fb:automotive.engine.engine_type fb:en.8_cylinder)))) (value (list (name fb:en.pontiac_5_0l_8_cylinder_305_ffs "Pontiac 5.0L 8 Cylinder 305 FFS") (name fb:en.ford_5_4l_8_cylinder "Ford 5.4L 8 cylinder") (name fb:en.lincoln_4_9l_8_cylinder_ffs "Lincoln 4.9L 8 Cylinder FFS") (name fb:en.ford_5_8l_8_cylinder_ffs "Ford 5.8L 8 Cylinder FFS") (name fb:en.ford_4_9l_8_cylinder_ffs "Ford 4.9L 8 Cylinder FFS") (name fb:en.mercury_4_9l_8_cylinder_ffs "Mercury 4.9L 8 Cylinder FFS") (name fb:en.ford_4_6l_8_cylinder_224hp_275_ft_lbs "Ford 4.6L 8 cylinder 224hp 275 ft-lbs") (name fb:en.buick_5_0l_8_cylinder_gm_olds_ffs "Buick 5.0L 8 Cylinder GM-OLDS FFS") (name fb:en.mercedes_benz_5_0l_8_cylinder_premium "Mercedes-Benz 5.0L 8 Cylinder Premium") (name fb:en.mercedes_benz_5_4l_8_cylinder_premium "Mercedes-Benz 5.4L 8 Cylinder Premium"))) (type fb:automotive.engine) What is a 8 cylinder engine? Ford 5.8L 8 Cylinder FFS 5.071 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:automotive.engine) (fb:automotive.engine.engine_type fb:en.8_cylinder)))) (value (list (name fb:en.pontiac_5_0l_8_cylinder_305_ffs "Pontiac 5.0L 8 Cylinder 305 FFS") (name fb:en.ford_5_4l_8_cylinder "Ford 5.4L 8 cylinder") (name fb:en.lincoln_4_9l_8_cylinder_ffs "Lincoln 4.9L 8 Cylinder FFS") (name fb:en.ford_5_8l_8_cylinder_ffs "Ford 5.8L 8 Cylinder FFS") (name fb:en.ford_4_9l_8_cylinder_ffs "Ford 4.9L 8 Cylinder FFS") (name fb:en.mercury_4_9l_8_cylinder_ffs "Mercury 4.9L 8 Cylinder FFS") (name fb:en.ford_4_6l_8_cylinder_224hp_275_ft_lbs "Ford 4.6L 8 cylinder 224hp 275 ft-lbs") (name fb:en.buick_5_0l_8_cylinder_gm_olds_ffs "Buick 5.0L 8 Cylinder GM-OLDS FFS") (name fb:en.mercedes_benz_5_0l_8_cylinder_premium "Mercedes-Benz 5.0L 8 Cylinder Premium") (name fb:en.mercedes_benz_5_4l_8_cylinder_premium "Mercedes-Benz 5.4L 8 Cylinder Premium"))) (type fb:automotive.engine) What is a 8 cylinder engine? Ford 4.9L 8 Cylinder FFS 5.071 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:automotive.engine) (fb:automotive.engine.engine_type fb:en.8_cylinder)))) (value (list (name fb:en.pontiac_5_0l_8_cylinder_305_ffs "Pontiac 5.0L 8 Cylinder 305 FFS") (name fb:en.ford_5_4l_8_cylinder "Ford 5.4L 8 cylinder") (name fb:en.lincoln_4_9l_8_cylinder_ffs "Lincoln 4.9L 8 Cylinder FFS") (name fb:en.ford_5_8l_8_cylinder_ffs "Ford 5.8L 8 Cylinder FFS") (name fb:en.ford_4_9l_8_cylinder_ffs "Ford 4.9L 8 Cylinder FFS") (name fb:en.mercury_4_9l_8_cylinder_ffs "Mercury 4.9L 8 Cylinder FFS") (name fb:en.ford_4_6l_8_cylinder_224hp_275_ft_lbs "Ford 4.6L 8 cylinder 224hp 275 ft-lbs") (name fb:en.buick_5_0l_8_cylinder_gm_olds_ffs "Buick 5.0L 8 Cylinder GM-OLDS FFS") (name fb:en.mercedes_benz_5_0l_8_cylinder_premium "Mercedes-Benz 5.0L 8 Cylinder Premium") (name fb:en.mercedes_benz_5_4l_8_cylinder_premium "Mercedes-Benz 5.4L 8 Cylinder Premium"))) (type fb:automotive.engine) What is a 8 cylinder engine? Mercury 4.9L 8 Cylinder FFS 5.071 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:automotive.engine) (fb:automotive.engine.engine_type fb:en.8_cylinder)))) (value (list (name fb:en.pontiac_5_0l_8_cylinder_305_ffs "Pontiac 5.0L 8 Cylinder 305 FFS") (name fb:en.ford_5_4l_8_cylinder "Ford 5.4L 8 cylinder") (name fb:en.lincoln_4_9l_8_cylinder_ffs "Lincoln 4.9L 8 Cylinder FFS") (name fb:en.ford_5_8l_8_cylinder_ffs "Ford 5.8L 8 Cylinder FFS") (name fb:en.ford_4_9l_8_cylinder_ffs "Ford 4.9L 8 Cylinder FFS") (name fb:en.mercury_4_9l_8_cylinder_ffs "Mercury 4.9L 8 Cylinder FFS") (name fb:en.ford_4_6l_8_cylinder_224hp_275_ft_lbs "Ford 4.6L 8 cylinder 224hp 275 ft-lbs") (name fb:en.buick_5_0l_8_cylinder_gm_olds_ffs "Buick 5.0L 8 Cylinder GM-OLDS FFS") (name fb:en.mercedes_benz_5_0l_8_cylinder_premium "Mercedes-Benz 5.0L 8 Cylinder Premium") (name fb:en.mercedes_benz_5_4l_8_cylinder_premium "Mercedes-Benz 5.4L 8 Cylinder Premium"))) (type fb:automotive.engine) What is a 8 cylinder engine? Ford 4.6L 8 cylinder 224hp 275 ft-lbs 5.071 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:automotive.engine) (fb:automotive.engine.engine_type fb:en.8_cylinder)))) (value (list (name fb:en.pontiac_5_0l_8_cylinder_305_ffs "Pontiac 5.0L 8 Cylinder 305 FFS") (name fb:en.ford_5_4l_8_cylinder "Ford 5.4L 8 cylinder") (name fb:en.lincoln_4_9l_8_cylinder_ffs "Lincoln 4.9L 8 Cylinder FFS") (name fb:en.ford_5_8l_8_cylinder_ffs "Ford 5.8L 8 Cylinder FFS") (name fb:en.ford_4_9l_8_cylinder_ffs "Ford 4.9L 8 Cylinder FFS") (name fb:en.mercury_4_9l_8_cylinder_ffs "Mercury 4.9L 8 Cylinder FFS") (name fb:en.ford_4_6l_8_cylinder_224hp_275_ft_lbs "Ford 4.6L 8 cylinder 224hp 275 ft-lbs") (name fb:en.buick_5_0l_8_cylinder_gm_olds_ffs "Buick 5.0L 8 Cylinder GM-OLDS FFS") (name fb:en.mercedes_benz_5_0l_8_cylinder_premium "Mercedes-Benz 5.0L 8 Cylinder Premium") (name fb:en.mercedes_benz_5_4l_8_cylinder_premium "Mercedes-Benz 5.4L 8 Cylinder Premium"))) (type fb:automotive.engine) What is a 8 cylinder engine? Buick 5.0L 8 Cylinder GM-OLDS FFS 5.071 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:automotive.engine) (fb:automotive.engine.engine_type fb:en.8_cylinder)))) (value (list (name fb:en.pontiac_5_0l_8_cylinder_305_ffs "Pontiac 5.0L 8 Cylinder 305 FFS") (name fb:en.ford_5_4l_8_cylinder "Ford 5.4L 8 cylinder") (name fb:en.lincoln_4_9l_8_cylinder_ffs "Lincoln 4.9L 8 Cylinder FFS") (name fb:en.ford_5_8l_8_cylinder_ffs "Ford 5.8L 8 Cylinder FFS") (name fb:en.ford_4_9l_8_cylinder_ffs "Ford 4.9L 8 Cylinder FFS") (name fb:en.mercury_4_9l_8_cylinder_ffs "Mercury 4.9L 8 Cylinder FFS") (name fb:en.ford_4_6l_8_cylinder_224hp_275_ft_lbs "Ford 4.6L 8 cylinder 224hp 275 ft-lbs") (name fb:en.buick_5_0l_8_cylinder_gm_olds_ffs "Buick 5.0L 8 Cylinder GM-OLDS FFS") (name fb:en.mercedes_benz_5_0l_8_cylinder_premium "Mercedes-Benz 5.0L 8 Cylinder Premium") (name fb:en.mercedes_benz_5_4l_8_cylinder_premium "Mercedes-Benz 5.4L 8 Cylinder Premium"))) (type fb:automotive.engine) What is a 8 cylinder engine? Mercedes-Benz 5.0L 8 Cylinder Premium 5.071 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:automotive.engine) (fb:automotive.engine.engine_type fb:en.8_cylinder)))) (value (list (name fb:en.pontiac_5_0l_8_cylinder_305_ffs "Pontiac 5.0L 8 Cylinder 305 FFS") (name fb:en.ford_5_4l_8_cylinder "Ford 5.4L 8 cylinder") (name fb:en.lincoln_4_9l_8_cylinder_ffs "Lincoln 4.9L 8 Cylinder FFS") (name fb:en.ford_5_8l_8_cylinder_ffs "Ford 5.8L 8 Cylinder FFS") (name fb:en.ford_4_9l_8_cylinder_ffs "Ford 4.9L 8 Cylinder FFS") (name fb:en.mercury_4_9l_8_cylinder_ffs "Mercury 4.9L 8 Cylinder FFS") (name fb:en.ford_4_6l_8_cylinder_224hp_275_ft_lbs "Ford 4.6L 8 cylinder 224hp 275 ft-lbs") (name fb:en.buick_5_0l_8_cylinder_gm_olds_ffs "Buick 5.0L 8 Cylinder GM-OLDS FFS") (name fb:en.mercedes_benz_5_0l_8_cylinder_premium "Mercedes-Benz 5.0L 8 Cylinder Premium") (name fb:en.mercedes_benz_5_4l_8_cylinder_premium "Mercedes-Benz 5.4L 8 Cylinder Premium"))) (type fb:automotive.engine) What is a 8 cylinder engine? Mercedes-Benz 5.4L 8 Cylinder Premium 5.071 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:automotive.engine) (fb:automotive.engine.engine_type fb:en.8_cylinder)))) (value (list (name fb:en.pontiac_5_0l_8_cylinder_305_ffs "Pontiac 5.0L 8 Cylinder 305 FFS") (name fb:en.ford_5_4l_8_cylinder "Ford 5.4L 8 cylinder") (name fb:en.lincoln_4_9l_8_cylinder_ffs "Lincoln 4.9L 8 Cylinder FFS") (name fb:en.ford_5_8l_8_cylinder_ffs "Ford 5.8L 8 Cylinder FFS") (name fb:en.ford_4_9l_8_cylinder_ffs "Ford 4.9L 8 Cylinder FFS") (name fb:en.mercury_4_9l_8_cylinder_ffs "Mercury 4.9L 8 Cylinder FFS") (name fb:en.ford_4_6l_8_cylinder_224hp_275_ft_lbs "Ford 4.6L 8 cylinder 224hp 275 ft-lbs") (name fb:en.buick_5_0l_8_cylinder_gm_olds_ffs "Buick 5.0L 8 Cylinder GM-OLDS FFS") (name fb:en.mercedes_benz_5_0l_8_cylinder_premium "Mercedes-Benz 5.0L 8 Cylinder Premium") (name fb:en.mercedes_benz_5_4l_8_cylinder_premium "Mercedes-Benz 5.4L 8 Cylinder Premium"))) (type fb:automotive.engine) Who does slavery effect slavery effected people? Anna Kingsley 0.175 formula (and (fb:people.person.profession fb:en.slavery) (!fb:people.profession.people_with_this_profession fb:en.slavery))) (value (list (name fb:en.anna_kingsley "Anna Kingsley") (name fb:en.robert_drury_1687 "Robert Drury") (name fb:en.john_hemings "John Hemings") (name fb:en.isaac_jefferson "Isaac Jefferson") (name fb:en.sally_hemings "Sally Hemings") (name fb:en.james_hemings "James Hemings") (name fb:en.saartjie_baartman "Sarah Baartman") (name fb:en.ayuba_suleiman_diallo "Ayuba Suleiman Diallo") (name fb:m.09rth6f "James Wells") (name fb:m.0knvsyn "John Punch"))) (type fb:people.person) Who does slavery effect slavery effected people? Robert Drury 0.175 formula (and (fb:people.person.profession fb:en.slavery) (!fb:people.profession.people_with_this_profession fb:en.slavery))) (value (list (name fb:en.anna_kingsley "Anna Kingsley") (name fb:en.robert_drury_1687 "Robert Drury") (name fb:en.john_hemings "John Hemings") (name fb:en.isaac_jefferson "Isaac Jefferson") (name fb:en.sally_hemings "Sally Hemings") (name fb:en.james_hemings "James Hemings") (name fb:en.saartjie_baartman "Sarah Baartman") (name fb:en.ayuba_suleiman_diallo "Ayuba Suleiman Diallo") (name fb:m.09rth6f "James Wells") (name fb:m.0knvsyn "John Punch"))) (type fb:people.person) Who does slavery effect slavery effected people? John Hemings 0.175 formula (and (fb:people.person.profession fb:en.slavery) (!fb:people.profession.people_with_this_profession fb:en.slavery))) (value (list (name fb:en.anna_kingsley "Anna Kingsley") (name fb:en.robert_drury_1687 "Robert Drury") (name fb:en.john_hemings "John Hemings") (name fb:en.isaac_jefferson "Isaac Jefferson") (name fb:en.sally_hemings "Sally Hemings") (name fb:en.james_hemings "James Hemings") (name fb:en.saartjie_baartman "Sarah Baartman") (name fb:en.ayuba_suleiman_diallo "Ayuba Suleiman Diallo") (name fb:m.09rth6f "James Wells") (name fb:m.0knvsyn "John Punch"))) (type fb:people.person) Who does slavery effect slavery effected people? Isaac Jefferson 0.175 formula (and (fb:people.person.profession fb:en.slavery) (!fb:people.profession.people_with_this_profession fb:en.slavery))) (value (list (name fb:en.anna_kingsley "Anna Kingsley") (name fb:en.robert_drury_1687 "Robert Drury") (name fb:en.john_hemings "John Hemings") (name fb:en.isaac_jefferson "Isaac Jefferson") (name fb:en.sally_hemings "Sally Hemings") (name fb:en.james_hemings "James Hemings") (name fb:en.saartjie_baartman "Sarah Baartman") (name fb:en.ayuba_suleiman_diallo "Ayuba Suleiman Diallo") (name fb:m.09rth6f "James Wells") (name fb:m.0knvsyn "John Punch"))) (type fb:people.person) Who does slavery effect slavery effected people? Sally Hemings 0.175 formula (and (fb:people.person.profession fb:en.slavery) (!fb:people.profession.people_with_this_profession fb:en.slavery))) (value (list (name fb:en.anna_kingsley "Anna Kingsley") (name fb:en.robert_drury_1687 "Robert Drury") (name fb:en.john_hemings "John Hemings") (name fb:en.isaac_jefferson "Isaac Jefferson") (name fb:en.sally_hemings "Sally Hemings") (name fb:en.james_hemings "James Hemings") (name fb:en.saartjie_baartman "Sarah Baartman") (name fb:en.ayuba_suleiman_diallo "Ayuba Suleiman Diallo") (name fb:m.09rth6f "James Wells") (name fb:m.0knvsyn "John Punch"))) (type fb:people.person) Who does slavery effect slavery effected people? James Hemings 0.175 formula (and (fb:people.person.profession fb:en.slavery) (!fb:people.profession.people_with_this_profession fb:en.slavery))) (value (list (name fb:en.anna_kingsley "Anna Kingsley") (name fb:en.robert_drury_1687 "Robert Drury") (name fb:en.john_hemings "John Hemings") (name fb:en.isaac_jefferson "Isaac Jefferson") (name fb:en.sally_hemings "Sally Hemings") (name fb:en.james_hemings "James Hemings") (name fb:en.saartjie_baartman "Sarah Baartman") (name fb:en.ayuba_suleiman_diallo "Ayuba Suleiman Diallo") (name fb:m.09rth6f "James Wells") (name fb:m.0knvsyn "John Punch"))) (type fb:people.person) Who does slavery effect slavery effected people? Sarah Baartman 0.175 formula (and (fb:people.person.profession fb:en.slavery) (!fb:people.profession.people_with_this_profession fb:en.slavery))) (value (list (name fb:en.anna_kingsley "Anna Kingsley") (name fb:en.robert_drury_1687 "Robert Drury") (name fb:en.john_hemings "John Hemings") (name fb:en.isaac_jefferson "Isaac Jefferson") (name fb:en.sally_hemings "Sally Hemings") (name fb:en.james_hemings "James Hemings") (name fb:en.saartjie_baartman "Sarah Baartman") (name fb:en.ayuba_suleiman_diallo "Ayuba Suleiman Diallo") (name fb:m.09rth6f "James Wells") (name fb:m.0knvsyn "John Punch"))) (type fb:people.person) Who does slavery effect slavery effected people? Ayuba Suleiman Diallo 0.175 formula (and (fb:people.person.profession fb:en.slavery) (!fb:people.profession.people_with_this_profession fb:en.slavery))) (value (list (name fb:en.anna_kingsley "Anna Kingsley") (name fb:en.robert_drury_1687 "Robert Drury") (name fb:en.john_hemings "John Hemings") (name fb:en.isaac_jefferson "Isaac Jefferson") (name fb:en.sally_hemings "Sally Hemings") (name fb:en.james_hemings "James Hemings") (name fb:en.saartjie_baartman "Sarah Baartman") (name fb:en.ayuba_suleiman_diallo "Ayuba Suleiman Diallo") (name fb:m.09rth6f "James Wells") (name fb:m.0knvsyn "John Punch"))) (type fb:people.person) Who does slavery effect slavery effected people? James Wells 0.175 formula (and (fb:people.person.profession fb:en.slavery) (!fb:people.profession.people_with_this_profession fb:en.slavery))) (value (list (name fb:en.anna_kingsley "Anna Kingsley") (name fb:en.robert_drury_1687 "Robert Drury") (name fb:en.john_hemings "John Hemings") (name fb:en.isaac_jefferson "Isaac Jefferson") (name fb:en.sally_hemings "Sally Hemings") (name fb:en.james_hemings "James Hemings") (name fb:en.saartjie_baartman "Sarah Baartman") (name fb:en.ayuba_suleiman_diallo "Ayuba Suleiman Diallo") (name fb:m.09rth6f "James Wells") (name fb:m.0knvsyn "John Punch"))) (type fb:people.person) Who does slavery effect slavery effected people? John Punch 0.175 formula (and (fb:people.person.profession fb:en.slavery) (!fb:people.profession.people_with_this_profession fb:en.slavery))) (value (list (name fb:en.anna_kingsley "Anna Kingsley") (name fb:en.robert_drury_1687 "Robert Drury") (name fb:en.john_hemings "John Hemings") (name fb:en.isaac_jefferson "Isaac Jefferson") (name fb:en.sally_hemings "Sally Hemings") (name fb:en.james_hemings "James Hemings") (name fb:en.saartjie_baartman "Sarah Baartman") (name fb:en.ayuba_suleiman_diallo "Ayuba Suleiman Diallo") (name fb:m.09rth6f "James Wells") (name fb:m.0knvsyn "John Punch"))) (type fb:people.person) What is a DISS fitting? Dave Eggers -2.337 formula ((lambda x (fb:award.award_winner.awards_won (fb:award.award_honor.honored_for (var x)))) fb:m.027cdhk)) (value (list (name fb:en.dave_eggers "Dave Eggers"))) (type fb:award.award_winner) How is mineral salts transported throughout the plant? Different minerals -2.397 formula (!fb:common.topic.image fb:en.mineral)) (value (list (name fb:m.041vfhn "Different minerals") (name fb:m.02bghff "An assortment of minerals. Photo from US Geological Survey"))) (type fb:common.image) How is mineral salts transported throughout the plant? An assortment of minerals. Photo from US Geological Survey -2.397 formula (!fb:common.topic.image fb:en.mineral)) (value (list (name fb:m.041vfhn "Different minerals") (name fb:m.02bghff "An assortment of minerals. Photo from US Geological Survey"))) (type fb:common.image) What is Belle's prince's name? Bass guitar 0.43 formula (and (fb:type.object.type fb:common.topic) (!fb:music.group_member.instruments_played fb:en.prince_1958))) (value (list (name fb:en.piano Piano) (name fb:en.guitar Guitar) (name fb:en.bass_guitar "Bass guitar") (name fb:en.synthesizer synthesizer) (name fb:en.keyboard_instrument Keyboard) (name fb:en.percussion_instrument Percussion) (name fb:en.drumset Drums) (name fb:en.keytar Keytar) (name fb:en.electric_guitar "Electric guitar") (name fb:en.drum Drum))) (type fb:music.instrument) What is Belle's prince's name? Electric guitar 0.43 formula (and (fb:type.object.type fb:common.topic) (!fb:music.group_member.instruments_played fb:en.prince_1958))) (value (list (name fb:en.piano Piano) (name fb:en.guitar Guitar) (name fb:en.bass_guitar "Bass guitar") (name fb:en.synthesizer synthesizer) (name fb:en.keyboard_instrument Keyboard) (name fb:en.percussion_instrument Percussion) (name fb:en.drumset Drums) (name fb:en.keytar Keytar) (name fb:en.electric_guitar "Electric guitar") (name fb:en.drum Drum))) (type fb:music.instrument) What stds can you get from unprotected sex? All the Way -1.945 formula (and (fb:type.object.type fb:common.topic) (!fb:media_common.adaptation.adapted_from fb:en.sex_drive))) (value (list (name fb:m.0h5nyjm "All the Way"))) (type fb:media_common.adapted_work) What is the current record for Denver Broncos consecutive home sellouts? 2002 NFL season 1.376 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:sports.sports_team_season_record.season (!fb:sports.sports_team.season_record (var x)))) fb:en.denver_broncos))) (value (list (name fb:en.2002_nfl_season "2002 NFL season") (name fb:en.1998_nfl_season "1998 NFL season") (name fb:en.1968_nfl_season "1968 NFL season") (name fb:en.1971_nfl_season "1971 NFL season") (name fb:en.1990_nfl_season "1990 NFL season") (name fb:en.1974_nfl_season "1974 NFL season") (name fb:en.2008_nfl_season "2008 NFL season") (name fb:en.1966_nfl_season "1966 NFL season") (name fb:en.1962_nfl_season "1962 NFL season") (name fb:en.2004_nfl_season "2004 NFL season"))) (type fb:sports.sports_league_season) What is the current record for Denver Broncos consecutive home sellouts? 1998 NFL season 1.376 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:sports.sports_team_season_record.season (!fb:sports.sports_team.season_record (var x)))) fb:en.denver_broncos))) (value (list (name fb:en.2002_nfl_season "2002 NFL season") (name fb:en.1998_nfl_season "1998 NFL season") (name fb:en.1968_nfl_season "1968 NFL season") (name fb:en.1971_nfl_season "1971 NFL season") (name fb:en.1990_nfl_season "1990 NFL season") (name fb:en.1974_nfl_season "1974 NFL season") (name fb:en.2008_nfl_season "2008 NFL season") (name fb:en.1966_nfl_season "1966 NFL season") (name fb:en.1962_nfl_season "1962 NFL season") (name fb:en.2004_nfl_season "2004 NFL season"))) (type fb:sports.sports_league_season) What is the current record for Denver Broncos consecutive home sellouts? 1968 NFL season 1.376 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:sports.sports_team_season_record.season (!fb:sports.sports_team.season_record (var x)))) fb:en.denver_broncos))) (value (list (name fb:en.2002_nfl_season "2002 NFL season") (name fb:en.1998_nfl_season "1998 NFL season") (name fb:en.1968_nfl_season "1968 NFL season") (name fb:en.1971_nfl_season "1971 NFL season") (name fb:en.1990_nfl_season "1990 NFL season") (name fb:en.1974_nfl_season "1974 NFL season") (name fb:en.2008_nfl_season "2008 NFL season") (name fb:en.1966_nfl_season "1966 NFL season") (name fb:en.1962_nfl_season "1962 NFL season") (name fb:en.2004_nfl_season "2004 NFL season"))) (type fb:sports.sports_league_season) What is the current record for Denver Broncos consecutive home sellouts? 1971 NFL season 1.376 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:sports.sports_team_season_record.season (!fb:sports.sports_team.season_record (var x)))) fb:en.denver_broncos))) (value (list (name fb:en.2002_nfl_season "2002 NFL season") (name fb:en.1998_nfl_season "1998 NFL season") (name fb:en.1968_nfl_season "1968 NFL season") (name fb:en.1971_nfl_season "1971 NFL season") (name fb:en.1990_nfl_season "1990 NFL season") (name fb:en.1974_nfl_season "1974 NFL season") (name fb:en.2008_nfl_season "2008 NFL season") (name fb:en.1966_nfl_season "1966 NFL season") (name fb:en.1962_nfl_season "1962 NFL season") (name fb:en.2004_nfl_season "2004 NFL season"))) (type fb:sports.sports_league_season) What is the current record for Denver Broncos consecutive home sellouts? 1990 NFL season 1.376 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:sports.sports_team_season_record.season (!fb:sports.sports_team.season_record (var x)))) fb:en.denver_broncos))) (value (list (name fb:en.2002_nfl_season "2002 NFL season") (name fb:en.1998_nfl_season "1998 NFL season") (name fb:en.1968_nfl_season "1968 NFL season") (name fb:en.1971_nfl_season "1971 NFL season") (name fb:en.1990_nfl_season "1990 NFL season") (name fb:en.1974_nfl_season "1974 NFL season") (name fb:en.2008_nfl_season "2008 NFL season") (name fb:en.1966_nfl_season "1966 NFL season") (name fb:en.1962_nfl_season "1962 NFL season") (name fb:en.2004_nfl_season "2004 NFL season"))) (type fb:sports.sports_league_season) What is the current record for Denver Broncos consecutive home sellouts? 1974 NFL season 1.376 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:sports.sports_team_season_record.season (!fb:sports.sports_team.season_record (var x)))) fb:en.denver_broncos))) (value (list (name fb:en.2002_nfl_season "2002 NFL season") (name fb:en.1998_nfl_season "1998 NFL season") (name fb:en.1968_nfl_season "1968 NFL season") (name fb:en.1971_nfl_season "1971 NFL season") (name fb:en.1990_nfl_season "1990 NFL season") (name fb:en.1974_nfl_season "1974 NFL season") (name fb:en.2008_nfl_season "2008 NFL season") (name fb:en.1966_nfl_season "1966 NFL season") (name fb:en.1962_nfl_season "1962 NFL season") (name fb:en.2004_nfl_season "2004 NFL season"))) (type fb:sports.sports_league_season) What is the current record for Denver Broncos consecutive home sellouts? 2008 NFL season 1.376 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:sports.sports_team_season_record.season (!fb:sports.sports_team.season_record (var x)))) fb:en.denver_broncos))) (value (list (name fb:en.2002_nfl_season "2002 NFL season") (name fb:en.1998_nfl_season "1998 NFL season") (name fb:en.1968_nfl_season "1968 NFL season") (name fb:en.1971_nfl_season "1971 NFL season") (name fb:en.1990_nfl_season "1990 NFL season") (name fb:en.1974_nfl_season "1974 NFL season") (name fb:en.2008_nfl_season "2008 NFL season") (name fb:en.1966_nfl_season "1966 NFL season") (name fb:en.1962_nfl_season "1962 NFL season") (name fb:en.2004_nfl_season "2004 NFL season"))) (type fb:sports.sports_league_season) What is the current record for Denver Broncos consecutive home sellouts? 1966 NFL season 1.376 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:sports.sports_team_season_record.season (!fb:sports.sports_team.season_record (var x)))) fb:en.denver_broncos))) (value (list (name fb:en.2002_nfl_season "2002 NFL season") (name fb:en.1998_nfl_season "1998 NFL season") (name fb:en.1968_nfl_season "1968 NFL season") (name fb:en.1971_nfl_season "1971 NFL season") (name fb:en.1990_nfl_season "1990 NFL season") (name fb:en.1974_nfl_season "1974 NFL season") (name fb:en.2008_nfl_season "2008 NFL season") (name fb:en.1966_nfl_season "1966 NFL season") (name fb:en.1962_nfl_season "1962 NFL season") (name fb:en.2004_nfl_season "2004 NFL season"))) (type fb:sports.sports_league_season) What is the current record for Denver Broncos consecutive home sellouts? 1962 NFL season 1.376 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:sports.sports_team_season_record.season (!fb:sports.sports_team.season_record (var x)))) fb:en.denver_broncos))) (value (list (name fb:en.2002_nfl_season "2002 NFL season") (name fb:en.1998_nfl_season "1998 NFL season") (name fb:en.1968_nfl_season "1968 NFL season") (name fb:en.1971_nfl_season "1971 NFL season") (name fb:en.1990_nfl_season "1990 NFL season") (name fb:en.1974_nfl_season "1974 NFL season") (name fb:en.2008_nfl_season "2008 NFL season") (name fb:en.1966_nfl_season "1966 NFL season") (name fb:en.1962_nfl_season "1962 NFL season") (name fb:en.2004_nfl_season "2004 NFL season"))) (type fb:sports.sports_league_season) What is the current record for Denver Broncos consecutive home sellouts? 2004 NFL season 1.376 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:sports.sports_team_season_record.season (!fb:sports.sports_team.season_record (var x)))) fb:en.denver_broncos))) (value (list (name fb:en.2002_nfl_season "2002 NFL season") (name fb:en.1998_nfl_season "1998 NFL season") (name fb:en.1968_nfl_season "1968 NFL season") (name fb:en.1971_nfl_season "1971 NFL season") (name fb:en.1990_nfl_season "1990 NFL season") (name fb:en.1974_nfl_season "1974 NFL season") (name fb:en.2008_nfl_season "2008 NFL season") (name fb:en.1966_nfl_season "1966 NFL season") (name fb:en.1962_nfl_season "1962 NFL season") (name fb:en.2004_nfl_season "2004 NFL season"))) (type fb:sports.sports_league_season) Which museum in France use to be a railway station? Brasserie Artisanale du -4.669 formula (!fb:food.beer_country_region.beers_from_here fb:en.france)) (value (list (name fb:en.brasserie_artisanale_du_tregor_dremmwel_doree "Brasserie Artisanale du Tr��gor Dremmwel Dor��e") (name fb:en.l_l_alphand_ambree "L&L Alphand Ambr��e") (name fb:en.fischer_adelscott "Fischer Adelscott") (name fb:en.duyck_jenlain_ambree "Duyck Jenlain Ambr��e") (name fb:en.la_choulette_la_porte_du_hainaut "La Choulette La Porte du Hainaut") (name fb:en.castelain_jade_biere_biologique "Castelain Jade Bi��re Biologique") (name fb:en.haut_limousin_la_gueule_noire_du_limousin "Haut Limousin La Gueule Noire du Limousin") (name fb:en.heineken_edelweiss "Heineken Edelweiss") (name fb:en.wendelbrau Wendelbrau) (name fb:en.brasserie_de_la_pigeonnelle_loirette "Brasserie de la Pigeonnelle Loirette"))) (type fb:food.beer) Which museum in France use to be a railway station? L&L Alphand Ambr��e -4.669 formula (!fb:food.beer_country_region.beers_from_here fb:en.france)) (value (list (name fb:en.brasserie_artisanale_du_tregor_dremmwel_doree "Brasserie Artisanale du Tr��gor Dremmwel Dor��e") (name fb:en.l_l_alphand_ambree "L&L Alphand Ambr��e") (name fb:en.fischer_adelscott "Fischer Adelscott") (name fb:en.duyck_jenlain_ambree "Duyck Jenlain Ambr��e") (name fb:en.la_choulette_la_porte_du_hainaut "La Choulette La Porte du Hainaut") (name fb:en.castelain_jade_biere_biologique "Castelain Jade Bi��re Biologique") (name fb:en.haut_limousin_la_gueule_noire_du_limousin "Haut Limousin La Gueule Noire du Limousin") (name fb:en.heineken_edelweiss "Heineken Edelweiss") (name fb:en.wendelbrau Wendelbrau) (name fb:en.brasserie_de_la_pigeonnelle_loirette "Brasserie de la Pigeonnelle Loirette"))) (type fb:food.beer) Which museum in France use to be a railway station? Fischer Adelscott -4.669 formula (!fb:food.beer_country_region.beers_from_here fb:en.france)) (value (list (name fb:en.brasserie_artisanale_du_tregor_dremmwel_doree "Brasserie Artisanale du Tr��gor Dremmwel Dor��e") (name fb:en.l_l_alphand_ambree "L&L Alphand Ambr��e") (name fb:en.fischer_adelscott "Fischer Adelscott") (name fb:en.duyck_jenlain_ambree "Duyck Jenlain Ambr��e") (name fb:en.la_choulette_la_porte_du_hainaut "La Choulette La Porte du Hainaut") (name fb:en.castelain_jade_biere_biologique "Castelain Jade Bi��re Biologique") (name fb:en.haut_limousin_la_gueule_noire_du_limousin "Haut Limousin La Gueule Noire du Limousin") (name fb:en.heineken_edelweiss "Heineken Edelweiss") (name fb:en.wendelbrau Wendelbrau) (name fb:en.brasserie_de_la_pigeonnelle_loirette "Brasserie de la Pigeonnelle Loirette"))) (type fb:food.beer) Which museum in France use to be a railway station? Duyck Jenlain Ambr��e -4.669 formula (!fb:food.beer_country_region.beers_from_here fb:en.france)) (value (list (name fb:en.brasserie_artisanale_du_tregor_dremmwel_doree "Brasserie Artisanale du Tr��gor Dremmwel Dor��e") (name fb:en.l_l_alphand_ambree "L&L Alphand Ambr��e") (name fb:en.fischer_adelscott "Fischer Adelscott") (name fb:en.duyck_jenlain_ambree "Duyck Jenlain Ambr��e") (name fb:en.la_choulette_la_porte_du_hainaut "La Choulette La Porte du Hainaut") (name fb:en.castelain_jade_biere_biologique "Castelain Jade Bi��re Biologique") (name fb:en.haut_limousin_la_gueule_noire_du_limousin "Haut Limousin La Gueule Noire du Limousin") (name fb:en.heineken_edelweiss "Heineken Edelweiss") (name fb:en.wendelbrau Wendelbrau) (name fb:en.brasserie_de_la_pigeonnelle_loirette "Brasserie de la Pigeonnelle Loirette"))) (type fb:food.beer) Which museum in France use to be a railway station? La Choulette La Porte du Hainaut -4.669 formula (!fb:food.beer_country_region.beers_from_here fb:en.france)) (value (list (name fb:en.brasserie_artisanale_du_tregor_dremmwel_doree "Brasserie Artisanale du Tr��gor Dremmwel Dor��e") (name fb:en.l_l_alphand_ambree "L&L Alphand Ambr��e") (name fb:en.fischer_adelscott "Fischer Adelscott") (name fb:en.duyck_jenlain_ambree "Duyck Jenlain Ambr��e") (name fb:en.la_choulette_la_porte_du_hainaut "La Choulette La Porte du Hainaut") (name fb:en.castelain_jade_biere_biologique "Castelain Jade Bi��re Biologique") (name fb:en.haut_limousin_la_gueule_noire_du_limousin "Haut Limousin La Gueule Noire du Limousin") (name fb:en.heineken_edelweiss "Heineken Edelweiss") (name fb:en.wendelbrau Wendelbrau) (name fb:en.brasserie_de_la_pigeonnelle_loirette "Brasserie de la Pigeonnelle Loirette"))) (type fb:food.beer) Which museum in France use to be a railway station? Castelain Jade Bi��re Biologique -4.669 formula (!fb:food.beer_country_region.beers_from_here fb:en.france)) (value (list (name fb:en.brasserie_artisanale_du_tregor_dremmwel_doree "Brasserie Artisanale du Tr��gor Dremmwel Dor��e") (name fb:en.l_l_alphand_ambree "L&L Alphand Ambr��e") (name fb:en.fischer_adelscott "Fischer Adelscott") (name fb:en.duyck_jenlain_ambree "Duyck Jenlain Ambr��e") (name fb:en.la_choulette_la_porte_du_hainaut "La Choulette La Porte du Hainaut") (name fb:en.castelain_jade_biere_biologique "Castelain Jade Bi��re Biologique") (name fb:en.haut_limousin_la_gueule_noire_du_limousin "Haut Limousin La Gueule Noire du Limousin") (name fb:en.heineken_edelweiss "Heineken Edelweiss") (name fb:en.wendelbrau Wendelbrau) (name fb:en.brasserie_de_la_pigeonnelle_loirette "Brasserie de la Pigeonnelle Loirette"))) (type fb:food.beer) Which museum in France use to be a railway station? Haut Limousin La Gueule Noire du Limousin -4.669 formula (!fb:food.beer_country_region.beers_from_here fb:en.france)) (value (list (name fb:en.brasserie_artisanale_du_tregor_dremmwel_doree "Brasserie Artisanale du Tr��gor Dremmwel Dor��e") (name fb:en.l_l_alphand_ambree "L&L Alphand Ambr��e") (name fb:en.fischer_adelscott "Fischer Adelscott") (name fb:en.duyck_jenlain_ambree "Duyck Jenlain Ambr��e") (name fb:en.la_choulette_la_porte_du_hainaut "La Choulette La Porte du Hainaut") (name fb:en.castelain_jade_biere_biologique "Castelain Jade Bi��re Biologique") (name fb:en.haut_limousin_la_gueule_noire_du_limousin "Haut Limousin La Gueule Noire du Limousin") (name fb:en.heineken_edelweiss "Heineken Edelweiss") (name fb:en.wendelbrau Wendelbrau) (name fb:en.brasserie_de_la_pigeonnelle_loirette "Brasserie de la Pigeonnelle Loirette"))) (type fb:food.beer) Which museum in France use to be a railway station? Heineken Edelweiss -4.669 formula (!fb:food.beer_country_region.beers_from_here fb:en.france)) (value (list (name fb:en.brasserie_artisanale_du_tregor_dremmwel_doree "Brasserie Artisanale du Tr��gor Dremmwel Dor��e") (name fb:en.l_l_alphand_ambree "L&L Alphand Ambr��e") (name fb:en.fischer_adelscott "Fischer Adelscott") (name fb:en.duyck_jenlain_ambree "Duyck Jenlain Ambr��e") (name fb:en.la_choulette_la_porte_du_hainaut "La Choulette La Porte du Hainaut") (name fb:en.castelain_jade_biere_biologique "Castelain Jade Bi��re Biologique") (name fb:en.haut_limousin_la_gueule_noire_du_limousin "Haut Limousin La Gueule Noire du Limousin") (name fb:en.heineken_edelweiss "Heineken Edelweiss") (name fb:en.wendelbrau Wendelbrau) (name fb:en.brasserie_de_la_pigeonnelle_loirette "Brasserie de la Pigeonnelle Loirette"))) (type fb:food.beer) Which museum in France use to be a railway station? Brasserie de la Pigeonnelle Loirette -4.669 formula (!fb:food.beer_country_region.beers_from_here fb:en.france)) (value (list (name fb:en.brasserie_artisanale_du_tregor_dremmwel_doree "Brasserie Artisanale du Tr��gor Dremmwel Dor��e") (name fb:en.l_l_alphand_ambree "L&L Alphand Ambr��e") (name fb:en.fischer_adelscott "Fischer Adelscott") (name fb:en.duyck_jenlain_ambree "Duyck Jenlain Ambr��e") (name fb:en.la_choulette_la_porte_du_hainaut "La Choulette La Porte du Hainaut") (name fb:en.castelain_jade_biere_biologique "Castelain Jade Bi��re Biologique") (name fb:en.haut_limousin_la_gueule_noire_du_limousin "Haut Limousin La Gueule Noire du Limousin") (name fb:en.heineken_edelweiss "Heineken Edelweiss") (name fb:en.wendelbrau Wendelbrau) (name fb:en.brasserie_de_la_pigeonnelle_loirette "Brasserie de la Pigeonnelle Loirette"))) (type fb:food.beer) Who invented jet propulsion? Eleanor F. Helin -4.004 formula (and (fb:type.object.type fb:people.person) ((lambda x (!fb:business.employment_tenure.person (!fb:business.employer.employees (var x)))) fb:en.jet_propulsion_laboratory))) (value (list (name fb:en.eleanor_f_helin "Eleanor F. Helin") (name fb:en.thomas_w_kenny "Thomas W. Kenny") (name fb:en.jack_parsons "John Whiteside Parsons") (name fb:en.james_l_adams "James L. Adams"))) (type fb:people.person) Who invented jet propulsion? Thomas W. Kenny -4.004 formula (and (fb:type.object.type fb:people.person) ((lambda x (!fb:business.employment_tenure.person (!fb:business.employer.employees (var x)))) fb:en.jet_propulsion_laboratory))) (value (list (name fb:en.eleanor_f_helin "Eleanor F. Helin") (name fb:en.thomas_w_kenny "Thomas W. Kenny") (name fb:en.jack_parsons "John Whiteside Parsons") (name fb:en.james_l_adams "James L. Adams"))) (type fb:people.person) Who invented jet propulsion? John Whiteside Parsons -4.004 formula (and (fb:type.object.type fb:people.person) ((lambda x (!fb:business.employment_tenure.person (!fb:business.employer.employees (var x)))) fb:en.jet_propulsion_laboratory))) (value (list (name fb:en.eleanor_f_helin "Eleanor F. Helin") (name fb:en.thomas_w_kenny "Thomas W. Kenny") (name fb:en.jack_parsons "John Whiteside Parsons") (name fb:en.james_l_adams "James L. Adams"))) (type fb:people.person) Who invented jet propulsion? James L. Adams -4.004 formula (and (fb:type.object.type fb:people.person) ((lambda x (!fb:business.employment_tenure.person (!fb:business.employer.employees (var x)))) fb:en.jet_propulsion_laboratory))) (value (list (name fb:en.eleanor_f_helin "Eleanor F. Helin") (name fb:en.thomas_w_kenny "Thomas W. Kenny") (name fb:en.jack_parsons "John Whiteside Parsons") (name fb:en.james_l_adams "James L. Adams"))) (type fb:people.person) What type of microbe is chicken pox? Baron Spreckle 0.587 formula (and (fb:type.object.type fb:common.topic) (fb:biology.organism.organism_type fb:en.chicken))) (value (list (name fb:en.baron_spreckle "Baron Spreckle") (name fb:en.mike_the_headless_chicken "Mike the Headless Chicken") (name fb:m.04ygq5h Matilda))) (type fb:biology.organism) What type of microbe is chicken pox? Mike the Headless Chicken 0.587 formula (and (fb:type.object.type fb:common.topic) (fb:biology.organism.organism_type fb:en.chicken))) (value (list (name fb:en.baron_spreckle "Baron Spreckle") (name fb:en.mike_the_headless_chicken "Mike the Headless Chicken") (name fb:m.04ygq5h Matilda))) (type fb:biology.organism) How do you frogs catch their food? Food & Drink -1.904 formula (!fb:freebase.equivalent_topic.equivalent_domain fb:en.food_industry)) (value (list (name fb:m.011s "Food & Drink"))) (type fb:freebase.domain_profile) Cointreau vs grand marnier? Felix M. Warburg House -7.059 formula ((lambda x (fb:exhibitions.exhibition_venue.exhibitions_at_this_venue (fb:exhibitions.exhibition_run.sponsor (var x)))) fb:en.grand_marnier)) (value (list (name fb:m.0by0zd5 "Felix M. Warburg House"))) (type fb:exhibitions.exhibition_venue) How old is Jamie Kennedy? Entertainment Weekly annotation index -1.292 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.jamie_kennedy)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) How old is Jamie Kennedy? Blissful Master Index -1.292 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.jamie_kennedy)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) How old is Jamie Kennedy? Blissful Celebrities -1.292 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.jamie_kennedy)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) What country gave Christopher Columbus money to buy his ships? Republic of Genoa -1.188 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:location.country) (!fb:people.person.nationality fb:en.christopher_columbus)))) (value (list (name fb:en.republic_of_genoa "Republic of Genoa"))) (type fb:location.country) What geographical features are in New Zealand? Overseas Chinese -0.228 formula (and (fb:type.object.type fb:common.topic) (fb:people.ethnicity.geographic_distribution fb:en.new_zealand))) (value (list (name fb:en.overseas_chinese "Overseas Chinese") (name fb:m.02jvpv Kiwi) (name fb:en.maori "M��ori people") (name fb:en.filipino_people Filipino) (name fb:en.tongans "Demographics of Tonga") (name fb:en.romnichal Romanichal))) (type fb:people.ethnicity) What geographical features are in New Zealand? M��ori people -0.228 formula (and (fb:type.object.type fb:common.topic) (fb:people.ethnicity.geographic_distribution fb:en.new_zealand))) (value (list (name fb:en.overseas_chinese "Overseas Chinese") (name fb:m.02jvpv Kiwi) (name fb:en.maori "M��ori people") (name fb:en.filipino_people Filipino) (name fb:en.tongans "Demographics of Tonga") (name fb:en.romnichal Romanichal))) (type fb:people.ethnicity) What geographical features are in New Zealand? Demographics of Tonga -0.228 formula (and (fb:type.object.type fb:common.topic) (fb:people.ethnicity.geographic_distribution fb:en.new_zealand))) (value (list (name fb:en.overseas_chinese "Overseas Chinese") (name fb:m.02jvpv Kiwi) (name fb:en.maori "M��ori people") (name fb:en.filipino_people Filipino) (name fb:en.tongans "Demographics of Tonga") (name fb:en.romnichal Romanichal))) (type fb:people.ethnicity) How many times did sergio oliva won mr Olympia? Pacific Time Zone -5.08 formula (!fb:location.location.time_zones fb:en.olympia_washington)) (value (list (name fb:en.pacific_time_zone "Pacific Time Zone"))) (type fb:time.time_zone) Who is called Daughter of peace? Entertainment Weekly annotation index -6.228 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:m.0988r5)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index"))) (type fb:common.annotation_index) What letters often come before T at the end of a word? Hideaki Anno -5.563 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:award.award_winner.awards_won (fb:award.award_honor.honored_for (var x)))) fb:en.the_end_of_evangelion))) (value (list (name fb:en.hideaki_anno "Hideaki Anno") (name fb:en.kazuya_tsurumaki "Kazuya Tsurumaki"))) (type fb:award.award_winner) What letters often come before T at the end of a word? Kazuya Tsurumaki -5.563 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:award.award_winner.awards_won (fb:award.award_honor.honored_for (var x)))) fb:en.the_end_of_evangelion))) (value (list (name fb:en.hideaki_anno "Hideaki Anno") (name fb:en.kazuya_tsurumaki "Kazuya Tsurumaki"))) (type fb:award.award_winner) When quantitative technique cannot be used? Canonical Version -2.411 formula (!fb:common.topic.notable_types fb:m.0dxc8m3)) (value (list (name fb:music.single "Canonical Version") (name fb:music.recording "Musical Recording"))) (type fb:type.type) When quantitative technique cannot be used? Musical Recording -2.411 formula (!fb:common.topic.notable_types fb:m.0dxc8m3)) (value (list (name fb:music.single "Canonical Version") (name fb:music.recording "Musical Recording"))) (type fb:type.type) What religion was missionary Jim Elliot? Plymouth Brethren 1.939 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:religion.religion) (!fb:people.person.religion fb:en.jim_elliot)))) (value (list (name fb:en.baptist Baptists) (name fb:en.plymouth_brethren "Plymouth Brethren"))) (type fb:religion.religion) How do you convince the school principal to start a earth club? University of Minnesota 1.206 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:organization.organization.phone_number (fb:common.phone_number.service_location (var x)))) fb:en.earth))) (value (list (name fb:en.university_of_minnesota "University of Minnesota") (name fb:en.university_of_mumbai "University of Mumbai"))) (type (union fb:education.educational_institution)) How do you convince the school principal to start a earth club? University of Mumbai 1.206 formula (and (fb:type.object.type fb:education.educational_institution) ((lambda x (fb:organization.organization.phone_number (fb:common.phone_number.service_location (var x)))) fb:en.earth))) (value (list (name fb:en.university_of_minnesota "University of Minnesota") (name fb:en.university_of_mumbai "University of Mumbai"))) (type (union fb:education.educational_institution)) Can you take benadryl if you took xanax 4 hours ago? 4 Hours (original single mix) -2.304 formula (fb:music.recording.canonical_version fb:en.4_hours)) (value (list (name fb:m.0tmrn6 "4 Hours (original single mix)") (name fb:m.012fftw "4 Hours") (name fb:m.0g1bbzt "4 Hours") (name fb:m.0drp6gb "4 Hours (remixed)"))) (type fb:music.recording) Can you take benadryl if you took xanax 4 hours ago? 4 Hours -2.304 formula (fb:music.recording.canonical_version fb:en.4_hours)) (value (list (name fb:m.0tmrn6 "4 Hours (original single mix)") (name fb:m.012fftw "4 Hours") (name fb:m.0g1bbzt "4 Hours") (name fb:m.0drp6gb "4 Hours (remixed)"))) (type fb:music.recording) Can you take benadryl if you took xanax 4 hours ago? 4 Hours -2.304 formula (fb:music.recording.canonical_version fb:en.4_hours)) (value (list (name fb:m.0tmrn6 "4 Hours (original single mix)") (name fb:m.012fftw "4 Hours") (name fb:m.0g1bbzt "4 Hours") (name fb:m.0drp6gb "4 Hours (remixed)"))) (type fb:music.recording) Can you take benadryl if you took xanax 4 hours ago? 4 Hours (remixed) -2.304 formula (fb:music.recording.canonical_version fb:en.4_hours)) (value (list (name fb:m.0tmrn6 "4 Hours (original single mix)") (name fb:m.012fftw "4 Hours") (name fb:m.0g1bbzt "4 Hours") (name fb:m.0drp6gb "4 Hours (remixed)"))) (type fb:music.recording) Can you build games on Roblox whithout Builders Club? First-person Shooter -0.201 formula (fb:cvg.cvg_genre.games fb:en.roblox)) (value (list (name fb:en.first-person_shooter "First-person Shooter") (name fb:m.021bp2 "Simulation video game") (name fb:en.mmorpg "Massively multiplayer online role-playing game") (name fb:en.massively_multiplayer_online_game "Massively multiplayer online game"))) (type fb:cvg.cvg_genre) Can you build games on Roblox whithout Builders Club? Simulation video game -0.201 formula (fb:cvg.cvg_genre.games fb:en.roblox)) (value (list (name fb:en.first-person_shooter "First-person Shooter") (name fb:m.021bp2 "Simulation video game") (name fb:en.mmorpg "Massively multiplayer online role-playing game") (name fb:en.massively_multiplayer_online_game "Massively multiplayer online game"))) (type fb:cvg.cvg_genre) Can you build games on Roblox whithout Builders Club? Massively multiplayer online role-playing game -0.201 formula (fb:cvg.cvg_genre.games fb:en.roblox)) (value (list (name fb:en.first-person_shooter "First-person Shooter") (name fb:m.021bp2 "Simulation video game") (name fb:en.mmorpg "Massively multiplayer online role-playing game") (name fb:en.massively_multiplayer_online_game "Massively multiplayer online game"))) (type fb:cvg.cvg_genre) Can you build games on Roblox whithout Builders Club? Massively multiplayer online game -0.201 formula (fb:cvg.cvg_genre.games fb:en.roblox)) (value (list (name fb:en.first-person_shooter "First-person Shooter") (name fb:m.021bp2 "Simulation video game") (name fb:en.mmorpg "Massively multiplayer online role-playing game") (name fb:en.massively_multiplayer_online_game "Massively multiplayer online game"))) (type fb:cvg.cvg_genre) What other movies is gerran howell in? Entertainment Weekly annotation index -8.414 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:m.03bxws2)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index"))) (type fb:common.annotation_index) When was John Steinbeck's first book published? The grapes of wrath 2.738 formula (!fb:book.author.book_editions_published fb:en.john_steinbeck)) (value (list (name fb:m.04yml93 "The grapes of wrath") (name fb:m.04yq7g6 "East of Eden.") (name fb:m.04ttl7v "The wayward bus") (name fb:m.04v029f "The grapes of wrath") (name fb:m.059bg8x "Of mice and men") (name fb:m.04vxbln "Of mice and men") (name fb:m.04vkq1g "The grapes of wrath") (name fb:m.04v027d "The grapes of wrath") (name fb:m.059bg7_ "Of mice and men") (name fb:m.04v9tf3 "The pearl"))) (type fb:book.book_edition) When was John Steinbeck's first book published? East of Eden. 2.738 formula (!fb:book.author.book_editions_published fb:en.john_steinbeck)) (value (list (name fb:m.04yml93 "The grapes of wrath") (name fb:m.04yq7g6 "East of Eden.") (name fb:m.04ttl7v "The wayward bus") (name fb:m.04v029f "The grapes of wrath") (name fb:m.059bg8x "Of mice and men") (name fb:m.04vxbln "Of mice and men") (name fb:m.04vkq1g "The grapes of wrath") (name fb:m.04v027d "The grapes of wrath") (name fb:m.059bg7_ "Of mice and men") (name fb:m.04v9tf3 "The pearl"))) (type fb:book.book_edition) When was John Steinbeck's first book published? The wayward bus 2.738 formula (!fb:book.author.book_editions_published fb:en.john_steinbeck)) (value (list (name fb:m.04yml93 "The grapes of wrath") (name fb:m.04yq7g6 "East of Eden.") (name fb:m.04ttl7v "The wayward bus") (name fb:m.04v029f "The grapes of wrath") (name fb:m.059bg8x "Of mice and men") (name fb:m.04vxbln "Of mice and men") (name fb:m.04vkq1g "The grapes of wrath") (name fb:m.04v027d "The grapes of wrath") (name fb:m.059bg7_ "Of mice and men") (name fb:m.04v9tf3 "The pearl"))) (type fb:book.book_edition) When was John Steinbeck's first book published? The grapes of wrath 2.738 formula (!fb:book.author.book_editions_published fb:en.john_steinbeck)) (value (list (name fb:m.04yml93 "The grapes of wrath") (name fb:m.04yq7g6 "East of Eden.") (name fb:m.04ttl7v "The wayward bus") (name fb:m.04v029f "The grapes of wrath") (name fb:m.059bg8x "Of mice and men") (name fb:m.04vxbln "Of mice and men") (name fb:m.04vkq1g "The grapes of wrath") (name fb:m.04v027d "The grapes of wrath") (name fb:m.059bg7_ "Of mice and men") (name fb:m.04v9tf3 "The pearl"))) (type fb:book.book_edition) When was John Steinbeck's first book published? Of mice and men 2.738 formula (!fb:book.author.book_editions_published fb:en.john_steinbeck)) (value (list (name fb:m.04yml93 "The grapes of wrath") (name fb:m.04yq7g6 "East of Eden.") (name fb:m.04ttl7v "The wayward bus") (name fb:m.04v029f "The grapes of wrath") (name fb:m.059bg8x "Of mice and men") (name fb:m.04vxbln "Of mice and men") (name fb:m.04vkq1g "The grapes of wrath") (name fb:m.04v027d "The grapes of wrath") (name fb:m.059bg7_ "Of mice and men") (name fb:m.04v9tf3 "The pearl"))) (type fb:book.book_edition) When was John Steinbeck's first book published? Of mice and men 2.738 formula (!fb:book.author.book_editions_published fb:en.john_steinbeck)) (value (list (name fb:m.04yml93 "The grapes of wrath") (name fb:m.04yq7g6 "East of Eden.") (name fb:m.04ttl7v "The wayward bus") (name fb:m.04v029f "The grapes of wrath") (name fb:m.059bg8x "Of mice and men") (name fb:m.04vxbln "Of mice and men") (name fb:m.04vkq1g "The grapes of wrath") (name fb:m.04v027d "The grapes of wrath") (name fb:m.059bg7_ "Of mice and men") (name fb:m.04v9tf3 "The pearl"))) (type fb:book.book_edition) When was John Steinbeck's first book published? The grapes of wrath 2.738 formula (!fb:book.author.book_editions_published fb:en.john_steinbeck)) (value (list (name fb:m.04yml93 "The grapes of wrath") (name fb:m.04yq7g6 "East of Eden.") (name fb:m.04ttl7v "The wayward bus") (name fb:m.04v029f "The grapes of wrath") (name fb:m.059bg8x "Of mice and men") (name fb:m.04vxbln "Of mice and men") (name fb:m.04vkq1g "The grapes of wrath") (name fb:m.04v027d "The grapes of wrath") (name fb:m.059bg7_ "Of mice and men") (name fb:m.04v9tf3 "The pearl"))) (type fb:book.book_edition) When was John Steinbeck's first book published? The grapes of wrath 2.738 formula (!fb:book.author.book_editions_published fb:en.john_steinbeck)) (value (list (name fb:m.04yml93 "The grapes of wrath") (name fb:m.04yq7g6 "East of Eden.") (name fb:m.04ttl7v "The wayward bus") (name fb:m.04v029f "The grapes of wrath") (name fb:m.059bg8x "Of mice and men") (name fb:m.04vxbln "Of mice and men") (name fb:m.04vkq1g "The grapes of wrath") (name fb:m.04v027d "The grapes of wrath") (name fb:m.059bg7_ "Of mice and men") (name fb:m.04v9tf3 "The pearl"))) (type fb:book.book_edition) When was John Steinbeck's first book published? Of mice and men 2.738 formula (!fb:book.author.book_editions_published fb:en.john_steinbeck)) (value (list (name fb:m.04yml93 "The grapes of wrath") (name fb:m.04yq7g6 "East of Eden.") (name fb:m.04ttl7v "The wayward bus") (name fb:m.04v029f "The grapes of wrath") (name fb:m.059bg8x "Of mice and men") (name fb:m.04vxbln "Of mice and men") (name fb:m.04vkq1g "The grapes of wrath") (name fb:m.04v027d "The grapes of wrath") (name fb:m.059bg7_ "Of mice and men") (name fb:m.04v9tf3 "The pearl"))) (type fb:book.book_edition) When was John Steinbeck's first book published? The pearl 2.738 formula (!fb:book.author.book_editions_published fb:en.john_steinbeck)) (value (list (name fb:m.04yml93 "The grapes of wrath") (name fb:m.04yq7g6 "East of Eden.") (name fb:m.04ttl7v "The wayward bus") (name fb:m.04v029f "The grapes of wrath") (name fb:m.059bg8x "Of mice and men") (name fb:m.04vxbln "Of mice and men") (name fb:m.04vkq1g "The grapes of wrath") (name fb:m.04v027d "The grapes of wrath") (name fb:m.059bg7_ "Of mice and men") (name fb:m.04v9tf3 "The pearl"))) (type fb:book.book_edition) What are facts about the Renaissance period? The Pastoral Concert -0.582 formula (and (fb:type.object.type fb:common.topic) (fb:visual_art.artwork.period_or_movement fb:en.renaissance))) (value (list (name fb:m.043zcsc Slaves) (name fb:m.05c95lf Masse) (name fb:en.the_pastoral_concert "The Pastoral Concert") (name fb:en.st_michael_slaying_the_devil "St Michael slaying the devil") (name fb:m.0g5h2kh "The Counterattack of Michelotto da Cotignola at the Battle of San Romano") (name fb:en.portrait_of_prince_philip_of_spain "Portrait of Prince Philip of Spain") (name fb:en.madonna_of_the_steps "Madonna of the Stairs") (name fb:en.mona_lisa "Mona Lisa") (name fb:en.il_condottiero "Il Condottiero") (name fb:en.diana_and_callisto "Diana and Callisto"))) (type fb:visual_art.artwork) What are facts about the Renaissance period? St Michael slaying the devil -0.582 formula (and (fb:type.object.type fb:common.topic) (fb:visual_art.artwork.period_or_movement fb:en.renaissance))) (value (list (name fb:m.043zcsc Slaves) (name fb:m.05c95lf Masse) (name fb:en.the_pastoral_concert "The Pastoral Concert") (name fb:en.st_michael_slaying_the_devil "St Michael slaying the devil") (name fb:m.0g5h2kh "The Counterattack of Michelotto da Cotignola at the Battle of San Romano") (name fb:en.portrait_of_prince_philip_of_spain "Portrait of Prince Philip of Spain") (name fb:en.madonna_of_the_steps "Madonna of the Stairs") (name fb:en.mona_lisa "Mona Lisa") (name fb:en.il_condottiero "Il Condottiero") (name fb:en.diana_and_callisto "Diana and Callisto"))) (type fb:visual_art.artwork) What are facts about the Renaissance period? The Counterattack of Michelotto da Cotignola at the Battle of San Romano -0.582 formula (and (fb:type.object.type fb:common.topic) (fb:visual_art.artwork.period_or_movement fb:en.renaissance))) (value (list (name fb:m.043zcsc Slaves) (name fb:m.05c95lf Masse) (name fb:en.the_pastoral_concert "The Pastoral Concert") (name fb:en.st_michael_slaying_the_devil "St Michael slaying the devil") (name fb:m.0g5h2kh "The Counterattack of Michelotto da Cotignola at the Battle of San Romano") (name fb:en.portrait_of_prince_philip_of_spain "Portrait of Prince Philip of Spain") (name fb:en.madonna_of_the_steps "Madonna of the Stairs") (name fb:en.mona_lisa "Mona Lisa") (name fb:en.il_condottiero "Il Condottiero") (name fb:en.diana_and_callisto "Diana and Callisto"))) (type fb:visual_art.artwork) What are facts about the Renaissance period? Portrait of Prince Philip of Spain -0.582 formula (and (fb:type.object.type fb:common.topic) (fb:visual_art.artwork.period_or_movement fb:en.renaissance))) (value (list (name fb:m.043zcsc Slaves) (name fb:m.05c95lf Masse) (name fb:en.the_pastoral_concert "The Pastoral Concert") (name fb:en.st_michael_slaying_the_devil "St Michael slaying the devil") (name fb:m.0g5h2kh "The Counterattack of Michelotto da Cotignola at the Battle of San Romano") (name fb:en.portrait_of_prince_philip_of_spain "Portrait of Prince Philip of Spain") (name fb:en.madonna_of_the_steps "Madonna of the Stairs") (name fb:en.mona_lisa "Mona Lisa") (name fb:en.il_condottiero "Il Condottiero") (name fb:en.diana_and_callisto "Diana and Callisto"))) (type fb:visual_art.artwork) What are facts about the Renaissance period? Madonna of the Stairs -0.582 formula (and (fb:type.object.type fb:common.topic) (fb:visual_art.artwork.period_or_movement fb:en.renaissance))) (value (list (name fb:m.043zcsc Slaves) (name fb:m.05c95lf Masse) (name fb:en.the_pastoral_concert "The Pastoral Concert") (name fb:en.st_michael_slaying_the_devil "St Michael slaying the devil") (name fb:m.0g5h2kh "The Counterattack of Michelotto da Cotignola at the Battle of San Romano") (name fb:en.portrait_of_prince_philip_of_spain "Portrait of Prince Philip of Spain") (name fb:en.madonna_of_the_steps "Madonna of the Stairs") (name fb:en.mona_lisa "Mona Lisa") (name fb:en.il_condottiero "Il Condottiero") (name fb:en.diana_and_callisto "Diana and Callisto"))) (type fb:visual_art.artwork) What are facts about the Renaissance period? Mona Lisa -0.582 formula (and (fb:type.object.type fb:common.topic) (fb:visual_art.artwork.period_or_movement fb:en.renaissance))) (value (list (name fb:m.043zcsc Slaves) (name fb:m.05c95lf Masse) (name fb:en.the_pastoral_concert "The Pastoral Concert") (name fb:en.st_michael_slaying_the_devil "St Michael slaying the devil") (name fb:m.0g5h2kh "The Counterattack of Michelotto da Cotignola at the Battle of San Romano") (name fb:en.portrait_of_prince_philip_of_spain "Portrait of Prince Philip of Spain") (name fb:en.madonna_of_the_steps "Madonna of the Stairs") (name fb:en.mona_lisa "Mona Lisa") (name fb:en.il_condottiero "Il Condottiero") (name fb:en.diana_and_callisto "Diana and Callisto"))) (type fb:visual_art.artwork) What are facts about the Renaissance period? Il Condottiero -0.582 formula (and (fb:type.object.type fb:common.topic) (fb:visual_art.artwork.period_or_movement fb:en.renaissance))) (value (list (name fb:m.043zcsc Slaves) (name fb:m.05c95lf Masse) (name fb:en.the_pastoral_concert "The Pastoral Concert") (name fb:en.st_michael_slaying_the_devil "St Michael slaying the devil") (name fb:m.0g5h2kh "The Counterattack of Michelotto da Cotignola at the Battle of San Romano") (name fb:en.portrait_of_prince_philip_of_spain "Portrait of Prince Philip of Spain") (name fb:en.madonna_of_the_steps "Madonna of the Stairs") (name fb:en.mona_lisa "Mona Lisa") (name fb:en.il_condottiero "Il Condottiero") (name fb:en.diana_and_callisto "Diana and Callisto"))) (type fb:visual_art.artwork) What are facts about the Renaissance period? Diana and Callisto -0.582 formula (and (fb:type.object.type fb:common.topic) (fb:visual_art.artwork.period_or_movement fb:en.renaissance))) (value (list (name fb:m.043zcsc Slaves) (name fb:m.05c95lf Masse) (name fb:en.the_pastoral_concert "The Pastoral Concert") (name fb:en.st_michael_slaying_the_devil "St Michael slaying the devil") (name fb:m.0g5h2kh "The Counterattack of Michelotto da Cotignola at the Battle of San Romano") (name fb:en.portrait_of_prince_philip_of_spain "Portrait of Prince Philip of Spain") (name fb:en.madonna_of_the_steps "Madonna of the Stairs") (name fb:en.mona_lisa "Mona Lisa") (name fb:en.il_condottiero "Il Condottiero") (name fb:en.diana_and_callisto "Diana and Callisto"))) (type fb:visual_art.artwork) Should people lose their jobs to help the environment? Piante spontanee del nostro territorio - volume III. Flora del mare di Monopoli -7.391 formula (!fb:book.book_subject.works fb:en.environment)) (value (list (name fb:m.0g51whl "Piante spontanee del nostro territorio - volume III. Flora del mare di Monopoli") (name fb:en.the_skeptical_environmentalist "The Skeptical Environmentalist: Measuring the Real State of the World") (name fb:m.0ghgg2v "Nuclear Snow in Japanese Springtime An Editorial Poem-Commentary") (name fb:m.0h0t3qx "Lean Logic") (name fb:en.the_ecological_indian_myth_and_history "The Ecological Indian: Myth and History") (name fb:m.0d9q8y "Road Rage") (name fb:m.062ndsk "One With Nineveh: Politics, Consumption, and the Human Future") (name fb:m.06s_jzz "Hard Green: Saving the Environment from the Environmentalists - A Conservative Manifesto") (name fb:m.06y_c2f "No Ordinary Land: Encounters in a Changing Environment"))) (type fb:book.written_work) Should people lose their jobs to help the environment? The Skeptical Environmentalist: Measuring the Real State of the World -7.391 formula (!fb:book.book_subject.works fb:en.environment)) (value (list (name fb:m.0g51whl "Piante spontanee del nostro territorio - volume III. Flora del mare di Monopoli") (name fb:en.the_skeptical_environmentalist "The Skeptical Environmentalist: Measuring the Real State of the World") (name fb:m.0ghgg2v "Nuclear Snow in Japanese Springtime An Editorial Poem-Commentary") (name fb:m.0h0t3qx "Lean Logic") (name fb:en.the_ecological_indian_myth_and_history "The Ecological Indian: Myth and History") (name fb:m.0d9q8y "Road Rage") (name fb:m.062ndsk "One With Nineveh: Politics, Consumption, and the Human Future") (name fb:m.06s_jzz "Hard Green: Saving the Environment from the Environmentalists - A Conservative Manifesto") (name fb:m.06y_c2f "No Ordinary Land: Encounters in a Changing Environment"))) (type fb:book.written_work) Should people lose their jobs to help the environment? Nuclear Snow in Japanese Springtime An Editorial Poem-Commentary -7.391 formula (!fb:book.book_subject.works fb:en.environment)) (value (list (name fb:m.0g51whl "Piante spontanee del nostro territorio - volume III. Flora del mare di Monopoli") (name fb:en.the_skeptical_environmentalist "The Skeptical Environmentalist: Measuring the Real State of the World") (name fb:m.0ghgg2v "Nuclear Snow in Japanese Springtime An Editorial Poem-Commentary") (name fb:m.0h0t3qx "Lean Logic") (name fb:en.the_ecological_indian_myth_and_history "The Ecological Indian: Myth and History") (name fb:m.0d9q8y "Road Rage") (name fb:m.062ndsk "One With Nineveh: Politics, Consumption, and the Human Future") (name fb:m.06s_jzz "Hard Green: Saving the Environment from the Environmentalists - A Conservative Manifesto") (name fb:m.06y_c2f "No Ordinary Land: Encounters in a Changing Environment"))) (type fb:book.written_work) Should people lose their jobs to help the environment? Lean Logic -7.391 formula (!fb:book.book_subject.works fb:en.environment)) (value (list (name fb:m.0g51whl "Piante spontanee del nostro territorio - volume III. Flora del mare di Monopoli") (name fb:en.the_skeptical_environmentalist "The Skeptical Environmentalist: Measuring the Real State of the World") (name fb:m.0ghgg2v "Nuclear Snow in Japanese Springtime An Editorial Poem-Commentary") (name fb:m.0h0t3qx "Lean Logic") (name fb:en.the_ecological_indian_myth_and_history "The Ecological Indian: Myth and History") (name fb:m.0d9q8y "Road Rage") (name fb:m.062ndsk "One With Nineveh: Politics, Consumption, and the Human Future") (name fb:m.06s_jzz "Hard Green: Saving the Environment from the Environmentalists - A Conservative Manifesto") (name fb:m.06y_c2f "No Ordinary Land: Encounters in a Changing Environment"))) (type fb:book.written_work) Should people lose their jobs to help the environment? The Ecological Indian: Myth and History -7.391 formula (!fb:book.book_subject.works fb:en.environment)) (value (list (name fb:m.0g51whl "Piante spontanee del nostro territorio - volume III. Flora del mare di Monopoli") (name fb:en.the_skeptical_environmentalist "The Skeptical Environmentalist: Measuring the Real State of the World") (name fb:m.0ghgg2v "Nuclear Snow in Japanese Springtime An Editorial Poem-Commentary") (name fb:m.0h0t3qx "Lean Logic") (name fb:en.the_ecological_indian_myth_and_history "The Ecological Indian: Myth and History") (name fb:m.0d9q8y "Road Rage") (name fb:m.062ndsk "One With Nineveh: Politics, Consumption, and the Human Future") (name fb:m.06s_jzz "Hard Green: Saving the Environment from the Environmentalists - A Conservative Manifesto") (name fb:m.06y_c2f "No Ordinary Land: Encounters in a Changing Environment"))) (type fb:book.written_work) Should people lose their jobs to help the environment? Road Rage -7.391 formula (!fb:book.book_subject.works fb:en.environment)) (value (list (name fb:m.0g51whl "Piante spontanee del nostro territorio - volume III. Flora del mare di Monopoli") (name fb:en.the_skeptical_environmentalist "The Skeptical Environmentalist: Measuring the Real State of the World") (name fb:m.0ghgg2v "Nuclear Snow in Japanese Springtime An Editorial Poem-Commentary") (name fb:m.0h0t3qx "Lean Logic") (name fb:en.the_ecological_indian_myth_and_history "The Ecological Indian: Myth and History") (name fb:m.0d9q8y "Road Rage") (name fb:m.062ndsk "One With Nineveh: Politics, Consumption, and the Human Future") (name fb:m.06s_jzz "Hard Green: Saving the Environment from the Environmentalists - A Conservative Manifesto") (name fb:m.06y_c2f "No Ordinary Land: Encounters in a Changing Environment"))) (type fb:book.written_work) Should people lose their jobs to help the environment? One With Nineveh: Politics, Consumption, and the Human Future -7.391 formula (!fb:book.book_subject.works fb:en.environment)) (value (list (name fb:m.0g51whl "Piante spontanee del nostro territorio - volume III. Flora del mare di Monopoli") (name fb:en.the_skeptical_environmentalist "The Skeptical Environmentalist: Measuring the Real State of the World") (name fb:m.0ghgg2v "Nuclear Snow in Japanese Springtime An Editorial Poem-Commentary") (name fb:m.0h0t3qx "Lean Logic") (name fb:en.the_ecological_indian_myth_and_history "The Ecological Indian: Myth and History") (name fb:m.0d9q8y "Road Rage") (name fb:m.062ndsk "One With Nineveh: Politics, Consumption, and the Human Future") (name fb:m.06s_jzz "Hard Green: Saving the Environment from the Environmentalists - A Conservative Manifesto") (name fb:m.06y_c2f "No Ordinary Land: Encounters in a Changing Environment"))) (type fb:book.written_work) Should people lose their jobs to help the environment? Hard Green: Saving the Environment from the Environmentalists - A Conservative Manifesto -7.391 formula (!fb:book.book_subject.works fb:en.environment)) (value (list (name fb:m.0g51whl "Piante spontanee del nostro territorio - volume III. Flora del mare di Monopoli") (name fb:en.the_skeptical_environmentalist "The Skeptical Environmentalist: Measuring the Real State of the World") (name fb:m.0ghgg2v "Nuclear Snow in Japanese Springtime An Editorial Poem-Commentary") (name fb:m.0h0t3qx "Lean Logic") (name fb:en.the_ecological_indian_myth_and_history "The Ecological Indian: Myth and History") (name fb:m.0d9q8y "Road Rage") (name fb:m.062ndsk "One With Nineveh: Politics, Consumption, and the Human Future") (name fb:m.06s_jzz "Hard Green: Saving the Environment from the Environmentalists - A Conservative Manifesto") (name fb:m.06y_c2f "No Ordinary Land: Encounters in a Changing Environment"))) (type fb:book.written_work) Should people lose their jobs to help the environment? No Ordinary Land: Encounters in a Changing Environment -7.391 formula (!fb:book.book_subject.works fb:en.environment)) (value (list (name fb:m.0g51whl "Piante spontanee del nostro territorio - volume III. Flora del mare di Monopoli") (name fb:en.the_skeptical_environmentalist "The Skeptical Environmentalist: Measuring the Real State of the World") (name fb:m.0ghgg2v "Nuclear Snow in Japanese Springtime An Editorial Poem-Commentary") (name fb:m.0h0t3qx "Lean Logic") (name fb:en.the_ecological_indian_myth_and_history "The Ecological Indian: Myth and History") (name fb:m.0d9q8y "Road Rage") (name fb:m.062ndsk "One With Nineveh: Politics, Consumption, and the Human Future") (name fb:m.06s_jzz "Hard Green: Saving the Environment from the Environmentalists - A Conservative Manifesto") (name fb:m.06y_c2f "No Ordinary Land: Encounters in a Changing Environment"))) (type fb:book.written_work) Who was the person who invented Taco Bell? Richard Goodman 0.161 formula (and (fb:type.object.type fb:people.person) (and (fb:type.object.type fb:people.person) ((lambda x (!fb:business.employment_tenure.person (!fb:business.employer.employees (var x)))) fb:en.taco_bell)))) (value (list (name fb:m.03wqwjp "Richard Goodman") (name fb:en.glen_bell "Glen Bell"))) (type fb:people.person) Who was the person who invented Taco Bell? Glen Bell 0.161 formula (and (fb:type.object.type fb:people.person) (and (fb:type.object.type fb:people.person) ((lambda x (!fb:business.employment_tenure.person (!fb:business.employer.employees (var x)))) fb:en.taco_bell)))) (value (list (name fb:m.03wqwjp "Richard Goodman") (name fb:en.glen_bell "Glen Bell"))) (type fb:people.person) What type of rock comprises the ocean floor? Metamorphic rock -0.337 formula (and (fb:type.object.type fb:common.topic) (fb:geology.rock_type.parent_rock_type fb:m.01cbzq))) (value (list (name fb:en.metamorphic_rock "Metamorphic rock") (name fb:en.igneous_rock "Igneous rock") (name fb:en.sedimentary_rock "Sedimentary rock"))) (type fb:geology.rock_type) What type of rock comprises the ocean floor? Igneous rock -0.337 formula (and (fb:type.object.type fb:common.topic) (fb:geology.rock_type.parent_rock_type fb:m.01cbzq))) (value (list (name fb:en.metamorphic_rock "Metamorphic rock") (name fb:en.igneous_rock "Igneous rock") (name fb:en.sedimentary_rock "Sedimentary rock"))) (type fb:geology.rock_type) What type of rock comprises the ocean floor? Sedimentary rock -0.337 formula (and (fb:type.object.type fb:common.topic) (fb:geology.rock_type.parent_rock_type fb:m.01cbzq))) (value (list (name fb:en.metamorphic_rock "Metamorphic rock") (name fb:en.igneous_rock "Igneous rock") (name fb:en.sedimentary_rock "Sedimentary rock"))) (type fb:geology.rock_type) What religon did John Locke believe in? Edmund Burke -3.274 formula (and (fb:type.object.type fb:common.topic) (fb:influence.influence_node.influenced_by fb:en.john_locke))) (value (list (name fb:en.edmund_burke "Edmund Burke") (name fb:en.thomas_jefferson "Thomas Jefferson") (name fb:en.arthur_schopenhauer "Arthur Schopenhauer") (name fb:en.adam_smith "Adam Smith") (name fb:en.ayn_rand "Ayn Rand") (name fb:en.immanuel_kant "Immanuel Kant") (name fb:en.bertrand_russell "Bertrand Russell") (name fb:en.john_rawls "John Rawls") (name fb:en.john_dewey "John Dewey") (name fb:en.david_hume "David Hume"))) (type fb:influence.influence_node) What religon did John Locke believe in? Thomas Jefferson -3.274 formula (and (fb:type.object.type fb:common.topic) (fb:influence.influence_node.influenced_by fb:en.john_locke))) (value (list (name fb:en.edmund_burke "Edmund Burke") (name fb:en.thomas_jefferson "Thomas Jefferson") (name fb:en.arthur_schopenhauer "Arthur Schopenhauer") (name fb:en.adam_smith "Adam Smith") (name fb:en.ayn_rand "Ayn Rand") (name fb:en.immanuel_kant "Immanuel Kant") (name fb:en.bertrand_russell "Bertrand Russell") (name fb:en.john_rawls "John Rawls") (name fb:en.john_dewey "John Dewey") (name fb:en.david_hume "David Hume"))) (type fb:influence.influence_node) What religon did John Locke believe in? Arthur Schopenhauer -3.274 formula (and (fb:type.object.type fb:common.topic) (fb:influence.influence_node.influenced_by fb:en.john_locke))) (value (list (name fb:en.edmund_burke "Edmund Burke") (name fb:en.thomas_jefferson "Thomas Jefferson") (name fb:en.arthur_schopenhauer "Arthur Schopenhauer") (name fb:en.adam_smith "Adam Smith") (name fb:en.ayn_rand "Ayn Rand") (name fb:en.immanuel_kant "Immanuel Kant") (name fb:en.bertrand_russell "Bertrand Russell") (name fb:en.john_rawls "John Rawls") (name fb:en.john_dewey "John Dewey") (name fb:en.david_hume "David Hume"))) (type fb:influence.influence_node) What religon did John Locke believe in? Adam Smith -3.274 formula (and (fb:type.object.type fb:common.topic) (fb:influence.influence_node.influenced_by fb:en.john_locke))) (value (list (name fb:en.edmund_burke "Edmund Burke") (name fb:en.thomas_jefferson "Thomas Jefferson") (name fb:en.arthur_schopenhauer "Arthur Schopenhauer") (name fb:en.adam_smith "Adam Smith") (name fb:en.ayn_rand "Ayn Rand") (name fb:en.immanuel_kant "Immanuel Kant") (name fb:en.bertrand_russell "Bertrand Russell") (name fb:en.john_rawls "John Rawls") (name fb:en.john_dewey "John Dewey") (name fb:en.david_hume "David Hume"))) (type fb:influence.influence_node) What religon did John Locke believe in? Ayn Rand -3.274 formula (and (fb:type.object.type fb:common.topic) (fb:influence.influence_node.influenced_by fb:en.john_locke))) (value (list (name fb:en.edmund_burke "Edmund Burke") (name fb:en.thomas_jefferson "Thomas Jefferson") (name fb:en.arthur_schopenhauer "Arthur Schopenhauer") (name fb:en.adam_smith "Adam Smith") (name fb:en.ayn_rand "Ayn Rand") (name fb:en.immanuel_kant "Immanuel Kant") (name fb:en.bertrand_russell "Bertrand Russell") (name fb:en.john_rawls "John Rawls") (name fb:en.john_dewey "John Dewey") (name fb:en.david_hume "David Hume"))) (type fb:influence.influence_node) What religon did John Locke believe in? Immanuel Kant -3.274 formula (and (fb:type.object.type fb:common.topic) (fb:influence.influence_node.influenced_by fb:en.john_locke))) (value (list (name fb:en.edmund_burke "Edmund Burke") (name fb:en.thomas_jefferson "Thomas Jefferson") (name fb:en.arthur_schopenhauer "Arthur Schopenhauer") (name fb:en.adam_smith "Adam Smith") (name fb:en.ayn_rand "Ayn Rand") (name fb:en.immanuel_kant "Immanuel Kant") (name fb:en.bertrand_russell "Bertrand Russell") (name fb:en.john_rawls "John Rawls") (name fb:en.john_dewey "John Dewey") (name fb:en.david_hume "David Hume"))) (type fb:influence.influence_node) What religon did John Locke believe in? Bertrand Russell -3.274 formula (and (fb:type.object.type fb:common.topic) (fb:influence.influence_node.influenced_by fb:en.john_locke))) (value (list (name fb:en.edmund_burke "Edmund Burke") (name fb:en.thomas_jefferson "Thomas Jefferson") (name fb:en.arthur_schopenhauer "Arthur Schopenhauer") (name fb:en.adam_smith "Adam Smith") (name fb:en.ayn_rand "Ayn Rand") (name fb:en.immanuel_kant "Immanuel Kant") (name fb:en.bertrand_russell "Bertrand Russell") (name fb:en.john_rawls "John Rawls") (name fb:en.john_dewey "John Dewey") (name fb:en.david_hume "David Hume"))) (type fb:influence.influence_node) What religon did John Locke believe in? John Rawls -3.274 formula (and (fb:type.object.type fb:common.topic) (fb:influence.influence_node.influenced_by fb:en.john_locke))) (value (list (name fb:en.edmund_burke "Edmund Burke") (name fb:en.thomas_jefferson "Thomas Jefferson") (name fb:en.arthur_schopenhauer "Arthur Schopenhauer") (name fb:en.adam_smith "Adam Smith") (name fb:en.ayn_rand "Ayn Rand") (name fb:en.immanuel_kant "Immanuel Kant") (name fb:en.bertrand_russell "Bertrand Russell") (name fb:en.john_rawls "John Rawls") (name fb:en.john_dewey "John Dewey") (name fb:en.david_hume "David Hume"))) (type fb:influence.influence_node) What religon did John Locke believe in? John Dewey -3.274 formula (and (fb:type.object.type fb:common.topic) (fb:influence.influence_node.influenced_by fb:en.john_locke))) (value (list (name fb:en.edmund_burke "Edmund Burke") (name fb:en.thomas_jefferson "Thomas Jefferson") (name fb:en.arthur_schopenhauer "Arthur Schopenhauer") (name fb:en.adam_smith "Adam Smith") (name fb:en.ayn_rand "Ayn Rand") (name fb:en.immanuel_kant "Immanuel Kant") (name fb:en.bertrand_russell "Bertrand Russell") (name fb:en.john_rawls "John Rawls") (name fb:en.john_dewey "John Dewey") (name fb:en.david_hume "David Hume"))) (type fb:influence.influence_node) What religon did John Locke believe in? David Hume -3.274 formula (and (fb:type.object.type fb:common.topic) (fb:influence.influence_node.influenced_by fb:en.john_locke))) (value (list (name fb:en.edmund_burke "Edmund Burke") (name fb:en.thomas_jefferson "Thomas Jefferson") (name fb:en.arthur_schopenhauer "Arthur Schopenhauer") (name fb:en.adam_smith "Adam Smith") (name fb:en.ayn_rand "Ayn Rand") (name fb:en.immanuel_kant "Immanuel Kant") (name fb:en.bertrand_russell "Bertrand Russell") (name fb:en.john_rawls "John Rawls") (name fb:en.john_dewey "John Dewey") (name fb:en.david_hume "David Hume"))) (type fb:influence.influence_node) What are the periods of the mesozoic era oldest to most recent? The Day of the Dinosaur -0.303 formula (and (fb:type.object.type fb:common.topic) (!fb:book.book_subject.works fb:en.mesozoic))) (value (list (name fb:en.the_day_of_the_dinosaur "The Day of the Dinosaur") (name fb:m.04t15hp "End of an Era"))) (type fb:book.written_work) What are the periods of the mesozoic era oldest to most recent? End of an Era -0.303 formula (and (fb:type.object.type fb:common.topic) (!fb:book.book_subject.works fb:en.mesozoic))) (value (list (name fb:en.the_day_of_the_dinosaur "The Day of the Dinosaur") (name fb:m.04t15hp "End of an Era"))) (type fb:book.written_work) Isn't sucking a girl's vagina disgusting? Wedge of Chastity -3.082 formula (fb:visual_art.artwork.art_subject fb:en.vagina)) (value (list (name fb:en.wedge_of_chastity "Wedge of Chastity"))) (type fb:visual_art.artwork) What is on the back of a British Penny? Dave Eggers -4.09 formula ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:m.027cdhk)) (value (list (name fb:en.dave_eggers "Dave Eggers"))) (type fb:award.award_winner) How did medieval people think you caught the black death? Teddy Pendergrass -2.017 formula (!fb:people.ethnicity.people fb:en.black_people)) (value (list (name fb:en.teddy_prendergrass "Teddy Pendergrass") (name fb:en.stacey_dash "Stacey Dash") (name fb:en.dwayne_tyree "Dwayne W.Tyree") (name fb:en.remy_mars "Remy Mars") (name fb:en.aron_ridge "Aron Ridge") (name fb:en.kacorot Kacorot) (name fb:en.shilpa_shetty "Shilpa Shetty") (name fb:en.randy_cochran "Randy Cochran") (name fb:en.maurice_jamal "Maurice Jamal") (name fb:en.hortense_ellis "Hortense Ellis"))) (type fb:people.person) How did medieval people think you caught the black death? Stacey Dash -2.017 formula (!fb:people.ethnicity.people fb:en.black_people)) (value (list (name fb:en.teddy_prendergrass "Teddy Pendergrass") (name fb:en.stacey_dash "Stacey Dash") (name fb:en.dwayne_tyree "Dwayne W.Tyree") (name fb:en.remy_mars "Remy Mars") (name fb:en.aron_ridge "Aron Ridge") (name fb:en.kacorot Kacorot) (name fb:en.shilpa_shetty "Shilpa Shetty") (name fb:en.randy_cochran "Randy Cochran") (name fb:en.maurice_jamal "Maurice Jamal") (name fb:en.hortense_ellis "Hortense Ellis"))) (type fb:people.person) How did medieval people think you caught the black death? Dwayne W.Tyree -2.017 formula (!fb:people.ethnicity.people fb:en.black_people)) (value (list (name fb:en.teddy_prendergrass "Teddy Pendergrass") (name fb:en.stacey_dash "Stacey Dash") (name fb:en.dwayne_tyree "Dwayne W.Tyree") (name fb:en.remy_mars "Remy Mars") (name fb:en.aron_ridge "Aron Ridge") (name fb:en.kacorot Kacorot) (name fb:en.shilpa_shetty "Shilpa Shetty") (name fb:en.randy_cochran "Randy Cochran") (name fb:en.maurice_jamal "Maurice Jamal") (name fb:en.hortense_ellis "Hortense Ellis"))) (type fb:people.person) How did medieval people think you caught the black death? Remy Mars -2.017 formula (!fb:people.ethnicity.people fb:en.black_people)) (value (list (name fb:en.teddy_prendergrass "Teddy Pendergrass") (name fb:en.stacey_dash "Stacey Dash") (name fb:en.dwayne_tyree "Dwayne W.Tyree") (name fb:en.remy_mars "Remy Mars") (name fb:en.aron_ridge "Aron Ridge") (name fb:en.kacorot Kacorot) (name fb:en.shilpa_shetty "Shilpa Shetty") (name fb:en.randy_cochran "Randy Cochran") (name fb:en.maurice_jamal "Maurice Jamal") (name fb:en.hortense_ellis "Hortense Ellis"))) (type fb:people.person) How did medieval people think you caught the black death? Aron Ridge -2.017 formula (!fb:people.ethnicity.people fb:en.black_people)) (value (list (name fb:en.teddy_prendergrass "Teddy Pendergrass") (name fb:en.stacey_dash "Stacey Dash") (name fb:en.dwayne_tyree "Dwayne W.Tyree") (name fb:en.remy_mars "Remy Mars") (name fb:en.aron_ridge "Aron Ridge") (name fb:en.kacorot Kacorot) (name fb:en.shilpa_shetty "Shilpa Shetty") (name fb:en.randy_cochran "Randy Cochran") (name fb:en.maurice_jamal "Maurice Jamal") (name fb:en.hortense_ellis "Hortense Ellis"))) (type fb:people.person) How did medieval people think you caught the black death? Shilpa Shetty -2.017 formula (!fb:people.ethnicity.people fb:en.black_people)) (value (list (name fb:en.teddy_prendergrass "Teddy Pendergrass") (name fb:en.stacey_dash "Stacey Dash") (name fb:en.dwayne_tyree "Dwayne W.Tyree") (name fb:en.remy_mars "Remy Mars") (name fb:en.aron_ridge "Aron Ridge") (name fb:en.kacorot Kacorot) (name fb:en.shilpa_shetty "Shilpa Shetty") (name fb:en.randy_cochran "Randy Cochran") (name fb:en.maurice_jamal "Maurice Jamal") (name fb:en.hortense_ellis "Hortense Ellis"))) (type fb:people.person) How did medieval people think you caught the black death? Randy Cochran -2.017 formula (!fb:people.ethnicity.people fb:en.black_people)) (value (list (name fb:en.teddy_prendergrass "Teddy Pendergrass") (name fb:en.stacey_dash "Stacey Dash") (name fb:en.dwayne_tyree "Dwayne W.Tyree") (name fb:en.remy_mars "Remy Mars") (name fb:en.aron_ridge "Aron Ridge") (name fb:en.kacorot Kacorot) (name fb:en.shilpa_shetty "Shilpa Shetty") (name fb:en.randy_cochran "Randy Cochran") (name fb:en.maurice_jamal "Maurice Jamal") (name fb:en.hortense_ellis "Hortense Ellis"))) (type fb:people.person) How did medieval people think you caught the black death? Maurice Jamal -2.017 formula (!fb:people.ethnicity.people fb:en.black_people)) (value (list (name fb:en.teddy_prendergrass "Teddy Pendergrass") (name fb:en.stacey_dash "Stacey Dash") (name fb:en.dwayne_tyree "Dwayne W.Tyree") (name fb:en.remy_mars "Remy Mars") (name fb:en.aron_ridge "Aron Ridge") (name fb:en.kacorot Kacorot) (name fb:en.shilpa_shetty "Shilpa Shetty") (name fb:en.randy_cochran "Randy Cochran") (name fb:en.maurice_jamal "Maurice Jamal") (name fb:en.hortense_ellis "Hortense Ellis"))) (type fb:people.person) How did medieval people think you caught the black death? Hortense Ellis -2.017 formula (!fb:people.ethnicity.people fb:en.black_people)) (value (list (name fb:en.teddy_prendergrass "Teddy Pendergrass") (name fb:en.stacey_dash "Stacey Dash") (name fb:en.dwayne_tyree "Dwayne W.Tyree") (name fb:en.remy_mars "Remy Mars") (name fb:en.aron_ridge "Aron Ridge") (name fb:en.kacorot Kacorot) (name fb:en.shilpa_shetty "Shilpa Shetty") (name fb:en.randy_cochran "Randy Cochran") (name fb:en.maurice_jamal "Maurice Jamal") (name fb:en.hortense_ellis "Hortense Ellis"))) (type fb:people.person) What state is lake superior located? United States of America 1.311 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:location.administrative_division) (!fb:location.location.containedby fb:en.superior)))) (value (list (name fb:en.united_states_of_america "United States of America") (name fb:en.wisconsin Wisconsin) (name fb:en.douglas_county_wisconsin "Douglas County"))) (type fb:location.administrative_division) What state is lake superior located? Douglas County 1.311 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:location.administrative_division) (!fb:location.location.containedby fb:en.superior)))) (value (list (name fb:en.united_states_of_america "United States of America") (name fb:en.wisconsin Wisconsin) (name fb:en.douglas_county_wisconsin "Douglas County"))) (type fb:location.administrative_division) Who was Joseph lowery? Evelyn G. Lowery -6.984 formula (and (fb:type.object.type fb:people.person) ((lambda x (!fb:people.marriage.spouse (!fb:people.person.spouse_s (var x)))) fb:en.joseph_lowery))) (value (list (name fb:en.evelyn_g_lowery "Evelyn G. Lowery"))) (type fb:people.person) Who invented black history month? Edward J. Laurent -2.62 formula (and (fb:type.object.type fb:people.person) ((lambda x (fb:people.person.education (fb:education.education.minor (var x)))) fb:en.history))) (value (list (name fb:en.edward_j_laurent "Edward J. Laurent") (name fb:en.mark_deklin "Mark Deklin") (name fb:en.lloyd_e_scott "Lloyd E. Scott"))) (type fb:people.person) Who invented black history month? Mark Deklin -2.62 formula (and (fb:type.object.type fb:people.person) ((lambda x (fb:people.person.education (fb:education.education.minor (var x)))) fb:en.history))) (value (list (name fb:en.edward_j_laurent "Edward J. Laurent") (name fb:en.mark_deklin "Mark Deklin") (name fb:en.lloyd_e_scott "Lloyd E. Scott"))) (type fb:people.person) Who invented black history month? Lloyd E. Scott -2.62 formula (and (fb:type.object.type fb:people.person) ((lambda x (fb:people.person.education (fb:education.education.minor (var x)))) fb:en.history))) (value (list (name fb:en.edward_j_laurent "Edward J. Laurent") (name fb:en.mark_deklin "Mark Deklin") (name fb:en.lloyd_e_scott "Lloyd E. Scott"))) (type fb:people.person) Does Walmart have in Distribution Centers in Louisiana? Louisiana Creole people -2.038 formula (fb:people.ethnicity.geographic_distribution fb:en.louisiana)) (value (list (name fb:en.cajun Cajun) (name fb:en.louisiana_creole_people "Louisiana Creole people"))) (type fb:people.ethnicity) What was the first written agreement of self government in America? George C. Edwards III -5.202 formula (and (fb:type.object.type fb:common.topic) (fb:book.author.works_written fb:m.06d3v62))) (value (list (name fb:en.george_c_edwards_iii "George C. Edwards III"))) (type fb:book.author) Give me a summary of tangerine middle's major sinkhole? Tangerine 0.05 injectable solution 0.651 formula ((lambda x (fb:medicine.drug_formulation.strength (fb:medicine.drug_strength.active_ingredient (var x)))) fb:en.tangerine)) (value (list (name fb:m.0hqtmhk "Tangerine 0.05 injectable solution") (name fb:m.0hqrc_t "Tangerine 0.1 injectable solution"))) (type fb:medicine.drug_formulation) Give me a summary of tangerine middle's major sinkhole? Tangerine 0.1 injectable solution 0.651 formula ((lambda x (fb:medicine.drug_formulation.strength (fb:medicine.drug_strength.active_ingredient (var x)))) fb:en.tangerine)) (value (list (name fb:m.0hqtmhk "Tangerine 0.05 injectable solution") (name fb:m.0hqrc_t "Tangerine 0.1 injectable solution"))) (type fb:medicine.drug_formulation) How is an indirect tax different from a direct tax? Library of Congress Classification 0.194 formula (!fb:user.tsegaran.random.taxonomy_entry.taxonomy (and (!fb:user.tsegaran.random.taxonomy_subject.entry fb:en.tax) (!fb:user.tsegaran.random.taxonomy_subject.entry fb:en.tax)))) (value (list (name fb:en.library_of_congress_classification "Library of Congress Classification"))) (type fb:user.tsegaran.random.subject_taxonomy) What simile does the author use to describe judge Taylor? Judith Sheindlin -1.136 formula (and (fb:type.object.type fb:common.topic) (and (fb:people.person.profession fb:en.author) (!fb:people.profession.people_with_this_profession fb:en.judge)))) (value (list (name fb:en.judith_sheindlin "Judith Sheindlin") (name fb:en.darmy_bailey "D'Army Bailey") (name fb:en.george_j_mitchell "George J. Mitchell") (name fb:en.william_gummow "William Gummow") (name fb:en.harry_blackmun "Harry Blackmun") (name fb:en.ronald_wilson "Ronald Wilson") (name fb:en.glenda_hatchett "Glenda Hatchett") (name fb:m.0m0dtdy "Penny Brown Reynolds") (name fb:en.jerry_sheindlin "Jerry Sheindlin") (name fb:en.kenneth_del_vecchio "Ken Del Vecchio"))) (type fb:people.person) What simile does the author use to describe judge Taylor? D'Army Bailey -1.136 formula (and (fb:type.object.type fb:common.topic) (and (fb:people.person.profession fb:en.author) (!fb:people.profession.people_with_this_profession fb:en.judge)))) (value (list (name fb:en.judith_sheindlin "Judith Sheindlin") (name fb:en.darmy_bailey "D'Army Bailey") (name fb:en.george_j_mitchell "George J. Mitchell") (name fb:en.william_gummow "William Gummow") (name fb:en.harry_blackmun "Harry Blackmun") (name fb:en.ronald_wilson "Ronald Wilson") (name fb:en.glenda_hatchett "Glenda Hatchett") (name fb:m.0m0dtdy "Penny Brown Reynolds") (name fb:en.jerry_sheindlin "Jerry Sheindlin") (name fb:en.kenneth_del_vecchio "Ken Del Vecchio"))) (type fb:people.person) What simile does the author use to describe judge Taylor? George J. Mitchell -1.136 formula (and (fb:type.object.type fb:common.topic) (and (fb:people.person.profession fb:en.author) (!fb:people.profession.people_with_this_profession fb:en.judge)))) (value (list (name fb:en.judith_sheindlin "Judith Sheindlin") (name fb:en.darmy_bailey "D'Army Bailey") (name fb:en.george_j_mitchell "George J. Mitchell") (name fb:en.william_gummow "William Gummow") (name fb:en.harry_blackmun "Harry Blackmun") (name fb:en.ronald_wilson "Ronald Wilson") (name fb:en.glenda_hatchett "Glenda Hatchett") (name fb:m.0m0dtdy "Penny Brown Reynolds") (name fb:en.jerry_sheindlin "Jerry Sheindlin") (name fb:en.kenneth_del_vecchio "Ken Del Vecchio"))) (type fb:people.person) What simile does the author use to describe judge Taylor? William Gummow -1.136 formula (and (fb:type.object.type fb:common.topic) (and (fb:people.person.profession fb:en.author) (!fb:people.profession.people_with_this_profession fb:en.judge)))) (value (list (name fb:en.judith_sheindlin "Judith Sheindlin") (name fb:en.darmy_bailey "D'Army Bailey") (name fb:en.george_j_mitchell "George J. Mitchell") (name fb:en.william_gummow "William Gummow") (name fb:en.harry_blackmun "Harry Blackmun") (name fb:en.ronald_wilson "Ronald Wilson") (name fb:en.glenda_hatchett "Glenda Hatchett") (name fb:m.0m0dtdy "Penny Brown Reynolds") (name fb:en.jerry_sheindlin "Jerry Sheindlin") (name fb:en.kenneth_del_vecchio "Ken Del Vecchio"))) (type fb:people.person) What simile does the author use to describe judge Taylor? Harry Blackmun -1.136 formula (and (fb:type.object.type fb:common.topic) (and (fb:people.person.profession fb:en.author) (!fb:people.profession.people_with_this_profession fb:en.judge)))) (value (list (name fb:en.judith_sheindlin "Judith Sheindlin") (name fb:en.darmy_bailey "D'Army Bailey") (name fb:en.george_j_mitchell "George J. Mitchell") (name fb:en.william_gummow "William Gummow") (name fb:en.harry_blackmun "Harry Blackmun") (name fb:en.ronald_wilson "Ronald Wilson") (name fb:en.glenda_hatchett "Glenda Hatchett") (name fb:m.0m0dtdy "Penny Brown Reynolds") (name fb:en.jerry_sheindlin "Jerry Sheindlin") (name fb:en.kenneth_del_vecchio "Ken Del Vecchio"))) (type fb:people.person) What simile does the author use to describe judge Taylor? Ronald Wilson -1.136 formula (and (fb:type.object.type fb:common.topic) (and (fb:people.person.profession fb:en.author) (!fb:people.profession.people_with_this_profession fb:en.judge)))) (value (list (name fb:en.judith_sheindlin "Judith Sheindlin") (name fb:en.darmy_bailey "D'Army Bailey") (name fb:en.george_j_mitchell "George J. Mitchell") (name fb:en.william_gummow "William Gummow") (name fb:en.harry_blackmun "Harry Blackmun") (name fb:en.ronald_wilson "Ronald Wilson") (name fb:en.glenda_hatchett "Glenda Hatchett") (name fb:m.0m0dtdy "Penny Brown Reynolds") (name fb:en.jerry_sheindlin "Jerry Sheindlin") (name fb:en.kenneth_del_vecchio "Ken Del Vecchio"))) (type fb:people.person) What simile does the author use to describe judge Taylor? Glenda Hatchett -1.136 formula (and (fb:type.object.type fb:common.topic) (and (fb:people.person.profession fb:en.author) (!fb:people.profession.people_with_this_profession fb:en.judge)))) (value (list (name fb:en.judith_sheindlin "Judith Sheindlin") (name fb:en.darmy_bailey "D'Army Bailey") (name fb:en.george_j_mitchell "George J. Mitchell") (name fb:en.william_gummow "William Gummow") (name fb:en.harry_blackmun "Harry Blackmun") (name fb:en.ronald_wilson "Ronald Wilson") (name fb:en.glenda_hatchett "Glenda Hatchett") (name fb:m.0m0dtdy "Penny Brown Reynolds") (name fb:en.jerry_sheindlin "Jerry Sheindlin") (name fb:en.kenneth_del_vecchio "Ken Del Vecchio"))) (type fb:people.person) What simile does the author use to describe judge Taylor? Penny Brown Reynolds -1.136 formula (and (fb:type.object.type fb:common.topic) (and (fb:people.person.profession fb:en.author) (!fb:people.profession.people_with_this_profession fb:en.judge)))) (value (list (name fb:en.judith_sheindlin "Judith Sheindlin") (name fb:en.darmy_bailey "D'Army Bailey") (name fb:en.george_j_mitchell "George J. Mitchell") (name fb:en.william_gummow "William Gummow") (name fb:en.harry_blackmun "Harry Blackmun") (name fb:en.ronald_wilson "Ronald Wilson") (name fb:en.glenda_hatchett "Glenda Hatchett") (name fb:m.0m0dtdy "Penny Brown Reynolds") (name fb:en.jerry_sheindlin "Jerry Sheindlin") (name fb:en.kenneth_del_vecchio "Ken Del Vecchio"))) (type fb:people.person) What simile does the author use to describe judge Taylor? Jerry Sheindlin -1.136 formula (and (fb:type.object.type fb:common.topic) (and (fb:people.person.profession fb:en.author) (!fb:people.profession.people_with_this_profession fb:en.judge)))) (value (list (name fb:en.judith_sheindlin "Judith Sheindlin") (name fb:en.darmy_bailey "D'Army Bailey") (name fb:en.george_j_mitchell "George J. Mitchell") (name fb:en.william_gummow "William Gummow") (name fb:en.harry_blackmun "Harry Blackmun") (name fb:en.ronald_wilson "Ronald Wilson") (name fb:en.glenda_hatchett "Glenda Hatchett") (name fb:m.0m0dtdy "Penny Brown Reynolds") (name fb:en.jerry_sheindlin "Jerry Sheindlin") (name fb:en.kenneth_del_vecchio "Ken Del Vecchio"))) (type fb:people.person) What simile does the author use to describe judge Taylor? Ken Del Vecchio -1.136 formula (and (fb:type.object.type fb:common.topic) (and (fb:people.person.profession fb:en.author) (!fb:people.profession.people_with_this_profession fb:en.judge)))) (value (list (name fb:en.judith_sheindlin "Judith Sheindlin") (name fb:en.darmy_bailey "D'Army Bailey") (name fb:en.george_j_mitchell "George J. Mitchell") (name fb:en.william_gummow "William Gummow") (name fb:en.harry_blackmun "Harry Blackmun") (name fb:en.ronald_wilson "Ronald Wilson") (name fb:en.glenda_hatchett "Glenda Hatchett") (name fb:m.0m0dtdy "Penny Brown Reynolds") (name fb:en.jerry_sheindlin "Jerry Sheindlin") (name fb:en.kenneth_del_vecchio "Ken Del Vecchio"))) (type fb:people.person) What is the strongest Nsaid's drug for muscle and joint pain? Hugh Huxley -1.264 formula (and (fb:type.object.type fb:common.topic) (fb:user.lindenb.default_domain.scientist.known_for fb:en.muscle))) (value (list (name fb:en.hugh_huxley "Hugh Huxley"))) (type fb:user.lindenb.default_domain.scientist) Where does Justin Bieber like to hang out? United States of America -8.211 formula (and (fb:type.object.type fb:location.location) (!fb:music.release.region fb:m.0g3mr7n))) (value (list (name fb:en.united_states_of_america "United States of America"))) (type fb:location.location) What KIND OF work is Jackie Jackson doing now? Johnny Cash -0.828 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:award.award_winner.awards_won (fb:award.award_honor.honored_for (var x)))) fb:m.0bwhdy))) (value (list (name fb:en.johnny_cash "Johnny Cash") (name fb:en.june_carter_cash "June Carter Cash"))) (type fb:award.award_winner) What KIND OF work is Jackie Jackson doing now? June Carter Cash -0.828 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:award.award_winner.awards_won (fb:award.award_honor.honored_for (var x)))) fb:m.0bwhdy))) (value (list (name fb:en.johnny_cash "Johnny Cash") (name fb:en.june_carter_cash "June Carter Cash"))) (type fb:award.award_winner) Why do people move to Texas? Nic Endo -3.93 formula (!fb:location.location.people_born_here fb:en.texas)) (value (list (name fb:en.nic_endo "Nic Endo") (name fb:en.wayne_hancock "Wayne Hancock") (name fb:en.glynn_r_donaho "Glynn R. Donaho") (name fb:en.george_fix "George Fix") (name fb:en.peter_roussel "Peter Roussel") (name fb:en.nan_ryan "Nan Ryan") (name fb:en.lisa_kleypas "Lisa Kleypas") (name fb:en.cameron_fox "Cameron Fox") (name fb:en.gangaji Gangaji) (name fb:en.grady_booch "Grady Booch"))) (type fb:people.person) Why do people move to Texas? Wayne Hancock -3.93 formula (!fb:location.location.people_born_here fb:en.texas)) (value (list (name fb:en.nic_endo "Nic Endo") (name fb:en.wayne_hancock "Wayne Hancock") (name fb:en.glynn_r_donaho "Glynn R. Donaho") (name fb:en.george_fix "George Fix") (name fb:en.peter_roussel "Peter Roussel") (name fb:en.nan_ryan "Nan Ryan") (name fb:en.lisa_kleypas "Lisa Kleypas") (name fb:en.cameron_fox "Cameron Fox") (name fb:en.gangaji Gangaji) (name fb:en.grady_booch "Grady Booch"))) (type fb:people.person) Why do people move to Texas? Glynn R. Donaho -3.93 formula (!fb:location.location.people_born_here fb:en.texas)) (value (list (name fb:en.nic_endo "Nic Endo") (name fb:en.wayne_hancock "Wayne Hancock") (name fb:en.glynn_r_donaho "Glynn R. Donaho") (name fb:en.george_fix "George Fix") (name fb:en.peter_roussel "Peter Roussel") (name fb:en.nan_ryan "Nan Ryan") (name fb:en.lisa_kleypas "Lisa Kleypas") (name fb:en.cameron_fox "Cameron Fox") (name fb:en.gangaji Gangaji) (name fb:en.grady_booch "Grady Booch"))) (type fb:people.person) Why do people move to Texas? George Fix -3.93 formula (!fb:location.location.people_born_here fb:en.texas)) (value (list (name fb:en.nic_endo "Nic Endo") (name fb:en.wayne_hancock "Wayne Hancock") (name fb:en.glynn_r_donaho "Glynn R. Donaho") (name fb:en.george_fix "George Fix") (name fb:en.peter_roussel "Peter Roussel") (name fb:en.nan_ryan "Nan Ryan") (name fb:en.lisa_kleypas "Lisa Kleypas") (name fb:en.cameron_fox "Cameron Fox") (name fb:en.gangaji Gangaji) (name fb:en.grady_booch "Grady Booch"))) (type fb:people.person) Why do people move to Texas? Peter Roussel -3.93 formula (!fb:location.location.people_born_here fb:en.texas)) (value (list (name fb:en.nic_endo "Nic Endo") (name fb:en.wayne_hancock "Wayne Hancock") (name fb:en.glynn_r_donaho "Glynn R. Donaho") (name fb:en.george_fix "George Fix") (name fb:en.peter_roussel "Peter Roussel") (name fb:en.nan_ryan "Nan Ryan") (name fb:en.lisa_kleypas "Lisa Kleypas") (name fb:en.cameron_fox "Cameron Fox") (name fb:en.gangaji Gangaji) (name fb:en.grady_booch "Grady Booch"))) (type fb:people.person) Why do people move to Texas? Nan Ryan -3.93 formula (!fb:location.location.people_born_here fb:en.texas)) (value (list (name fb:en.nic_endo "Nic Endo") (name fb:en.wayne_hancock "Wayne Hancock") (name fb:en.glynn_r_donaho "Glynn R. Donaho") (name fb:en.george_fix "George Fix") (name fb:en.peter_roussel "Peter Roussel") (name fb:en.nan_ryan "Nan Ryan") (name fb:en.lisa_kleypas "Lisa Kleypas") (name fb:en.cameron_fox "Cameron Fox") (name fb:en.gangaji Gangaji) (name fb:en.grady_booch "Grady Booch"))) (type fb:people.person) Why do people move to Texas? Lisa Kleypas -3.93 formula (!fb:location.location.people_born_here fb:en.texas)) (value (list (name fb:en.nic_endo "Nic Endo") (name fb:en.wayne_hancock "Wayne Hancock") (name fb:en.glynn_r_donaho "Glynn R. Donaho") (name fb:en.george_fix "George Fix") (name fb:en.peter_roussel "Peter Roussel") (name fb:en.nan_ryan "Nan Ryan") (name fb:en.lisa_kleypas "Lisa Kleypas") (name fb:en.cameron_fox "Cameron Fox") (name fb:en.gangaji Gangaji) (name fb:en.grady_booch "Grady Booch"))) (type fb:people.person) Why do people move to Texas? Cameron Fox -3.93 formula (!fb:location.location.people_born_here fb:en.texas)) (value (list (name fb:en.nic_endo "Nic Endo") (name fb:en.wayne_hancock "Wayne Hancock") (name fb:en.glynn_r_donaho "Glynn R. Donaho") (name fb:en.george_fix "George Fix") (name fb:en.peter_roussel "Peter Roussel") (name fb:en.nan_ryan "Nan Ryan") (name fb:en.lisa_kleypas "Lisa Kleypas") (name fb:en.cameron_fox "Cameron Fox") (name fb:en.gangaji Gangaji) (name fb:en.grady_booch "Grady Booch"))) (type fb:people.person) Why do people move to Texas? Grady Booch -3.93 formula (!fb:location.location.people_born_here fb:en.texas)) (value (list (name fb:en.nic_endo "Nic Endo") (name fb:en.wayne_hancock "Wayne Hancock") (name fb:en.glynn_r_donaho "Glynn R. Donaho") (name fb:en.george_fix "George Fix") (name fb:en.peter_roussel "Peter Roussel") (name fb:en.nan_ryan "Nan Ryan") (name fb:en.lisa_kleypas "Lisa Kleypas") (name fb:en.cameron_fox "Cameron Fox") (name fb:en.gangaji Gangaji) (name fb:en.grady_booch "Grady Booch"))) (type fb:people.person) What year did Atlanta host the summer olympic games? 1996 Summer Olympics -0.422 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:olympics.olympic_games) (!fb:olympics.olympic_host_city.olympics_hosted fb:en.atlanta)))) (value (list (name fb:en.1996_summer_olympics "1996 Summer Olympics"))) (type fb:olympics.olympic_games) Did Bill Clinton endorse Al Gore for president? Al Gore -1.8 formula (!fb:government.us_president.vice_president fb:en.bill_clinton)) (value (list (name fb:en.jr_albert "Al Gore"))) (type fb:government.us_vice_president) How did the New York Colony start? R/V Atlantis (AGOR-25), Cruise AT2-02, 1997-05-16 to 1997-05-18 0.754 formula (fb:base.oceanography.research_cruise.start_port fb:en.new_york_state)) (value (list (name fb:m.0h6nj6r "R/V Atlantis (AGOR-25), Cruise AT2-02, 1997-05-16 to 1997-05-18") (name fb:m.0h6fqhn "R/V Atlantis II, Cruise AII112-33, 1985-11-03 to 1985-11-04") (name fb:m.0h6fv20 "R/V Bear, Cruise 108C, 1954-10-16 to 1954-10-16"))) (type fb:base.oceanography.research_cruise) How did the New York Colony start? R/V Atlantis II, Cruise AII112-33, 1985-11-03 to 1985-11-04 0.754 formula (fb:base.oceanography.research_cruise.start_port fb:en.new_york_state)) (value (list (name fb:m.0h6nj6r "R/V Atlantis (AGOR-25), Cruise AT2-02, 1997-05-16 to 1997-05-18") (name fb:m.0h6fqhn "R/V Atlantis II, Cruise AII112-33, 1985-11-03 to 1985-11-04") (name fb:m.0h6fv20 "R/V Bear, Cruise 108C, 1954-10-16 to 1954-10-16"))) (type fb:base.oceanography.research_cruise) How did the New York Colony start? R/V Bear, Cruise 108C, 1954-10-16 to 1954-10-16 0.754 formula (fb:base.oceanography.research_cruise.start_port fb:en.new_york_state)) (value (list (name fb:m.0h6nj6r "R/V Atlantis (AGOR-25), Cruise AT2-02, 1997-05-16 to 1997-05-18") (name fb:m.0h6fqhn "R/V Atlantis II, Cruise AII112-33, 1985-11-03 to 1985-11-04") (name fb:m.0h6fv20 "R/V Bear, Cruise 108C, 1954-10-16 to 1954-10-16"))) (type fb:base.oceanography.research_cruise) What are the major rivers in Alabama? Comcast/Charter Sports Southeast -0.979 formula (and (fb:type.object.type fb:common.topic) (fb:tv.tv_network.areas_served fb:en.alabama))) (value (list (name fb:en.sportsouth SportSouth) (name fb:en.comcast_sports_southeast_charter_sports_southeast "Comcast/Charter Sports Southeast") (name fb:en.fsn_florida "Fox Sports Florida"))) (type fb:tv.tv_network) What are the major rivers in Alabama? Fox Sports Florida -0.979 formula (and (fb:type.object.type fb:common.topic) (fb:tv.tv_network.areas_served fb:en.alabama))) (value (list (name fb:en.sportsouth SportSouth) (name fb:en.comcast_sports_southeast_charter_sports_southeast "Comcast/Charter Sports Southeast") (name fb:en.fsn_florida "Fox Sports Florida"))) (type fb:tv.tv_network) Can you pop a zit on your penis? Non-human penises Iceland Phallological Museum -1.221 formula (fb:common.image.appears_in_topic_gallery fb:en.penis)) (value (list (name fb:m.0fsq0_9 "Non-human penises Iceland Phallological Museum") (name fb:m.04sndc8 "Labelled bw flaccid penis") (name fb:m.0bcr7hd "Labelled flaccid penis"))) (type fb:common.image) Can you pop a zit on your penis? Labelled bw flaccid penis -1.221 formula (fb:common.image.appears_in_topic_gallery fb:en.penis)) (value (list (name fb:m.0fsq0_9 "Non-human penises Iceland Phallological Museum") (name fb:m.04sndc8 "Labelled bw flaccid penis") (name fb:m.0bcr7hd "Labelled flaccid penis"))) (type fb:common.image) Can you pop a zit on your penis? Labelled flaccid penis -1.221 formula (fb:common.image.appears_in_topic_gallery fb:en.penis)) (value (list (name fb:m.0fsq0_9 "Non-human penises Iceland Phallological Museum") (name fb:m.04sndc8 "Labelled bw flaccid penis") (name fb:m.0bcr7hd "Labelled flaccid penis"))) (type fb:common.image) What was the horse and buggy era like? The Tower of Blue Horses -3.145 formula (and (fb:type.object.type fb:common.topic) (!fb:visual_art.art_subject.artwork_on_the_subject fb:en.domesticated_horse))) (value (list (name fb:en.the_tower_of_blue_horses "The Tower of Blue Horses") (name fb:en.the_little_blue_horse "The Little Blue Horse") (name fb:m.0448ldw "Running Horse") (name fb:en.equine_pleasures "Equine Pleasures") (name fb:m.0b_bmqv "Automedon with the Horses of Achilles") (name fb:en.mare_colt "Mare & Colt") (name fb:en.standing_horse "Standing Horse"))) (type fb:visual_art.artwork) What was the horse and buggy era like? The Little Blue Horse -3.145 formula (and (fb:type.object.type fb:common.topic) (!fb:visual_art.art_subject.artwork_on_the_subject fb:en.domesticated_horse))) (value (list (name fb:en.the_tower_of_blue_horses "The Tower of Blue Horses") (name fb:en.the_little_blue_horse "The Little Blue Horse") (name fb:m.0448ldw "Running Horse") (name fb:en.equine_pleasures "Equine Pleasures") (name fb:m.0b_bmqv "Automedon with the Horses of Achilles") (name fb:en.mare_colt "Mare & Colt") (name fb:en.standing_horse "Standing Horse"))) (type fb:visual_art.artwork) What was the horse and buggy era like? Running Horse -3.145 formula (and (fb:type.object.type fb:common.topic) (!fb:visual_art.art_subject.artwork_on_the_subject fb:en.domesticated_horse))) (value (list (name fb:en.the_tower_of_blue_horses "The Tower of Blue Horses") (name fb:en.the_little_blue_horse "The Little Blue Horse") (name fb:m.0448ldw "Running Horse") (name fb:en.equine_pleasures "Equine Pleasures") (name fb:m.0b_bmqv "Automedon with the Horses of Achilles") (name fb:en.mare_colt "Mare & Colt") (name fb:en.standing_horse "Standing Horse"))) (type fb:visual_art.artwork) What was the horse and buggy era like? Equine Pleasures -3.145 formula (and (fb:type.object.type fb:common.topic) (!fb:visual_art.art_subject.artwork_on_the_subject fb:en.domesticated_horse))) (value (list (name fb:en.the_tower_of_blue_horses "The Tower of Blue Horses") (name fb:en.the_little_blue_horse "The Little Blue Horse") (name fb:m.0448ldw "Running Horse") (name fb:en.equine_pleasures "Equine Pleasures") (name fb:m.0b_bmqv "Automedon with the Horses of Achilles") (name fb:en.mare_colt "Mare & Colt") (name fb:en.standing_horse "Standing Horse"))) (type fb:visual_art.artwork) What was the horse and buggy era like? Automedon with the Horses of Achilles -3.145 formula (and (fb:type.object.type fb:common.topic) (!fb:visual_art.art_subject.artwork_on_the_subject fb:en.domesticated_horse))) (value (list (name fb:en.the_tower_of_blue_horses "The Tower of Blue Horses") (name fb:en.the_little_blue_horse "The Little Blue Horse") (name fb:m.0448ldw "Running Horse") (name fb:en.equine_pleasures "Equine Pleasures") (name fb:m.0b_bmqv "Automedon with the Horses of Achilles") (name fb:en.mare_colt "Mare & Colt") (name fb:en.standing_horse "Standing Horse"))) (type fb:visual_art.artwork) What was the horse and buggy era like? Mare & Colt -3.145 formula (and (fb:type.object.type fb:common.topic) (!fb:visual_art.art_subject.artwork_on_the_subject fb:en.domesticated_horse))) (value (list (name fb:en.the_tower_of_blue_horses "The Tower of Blue Horses") (name fb:en.the_little_blue_horse "The Little Blue Horse") (name fb:m.0448ldw "Running Horse") (name fb:en.equine_pleasures "Equine Pleasures") (name fb:m.0b_bmqv "Automedon with the Horses of Achilles") (name fb:en.mare_colt "Mare & Colt") (name fb:en.standing_horse "Standing Horse"))) (type fb:visual_art.artwork) What was the horse and buggy era like? Standing Horse -3.145 formula (and (fb:type.object.type fb:common.topic) (!fb:visual_art.art_subject.artwork_on_the_subject fb:en.domesticated_horse))) (value (list (name fb:en.the_tower_of_blue_horses "The Tower of Blue Horses") (name fb:en.the_little_blue_horse "The Little Blue Horse") (name fb:m.0448ldw "Running Horse") (name fb:en.equine_pleasures "Equine Pleasures") (name fb:m.0b_bmqv "Automedon with the Horses of Achilles") (name fb:en.mare_colt "Mare & Colt") (name fb:en.standing_horse "Standing Horse"))) (type fb:visual_art.artwork) Why is fat albert gay? Entertainment Weekly annotation index -4.22 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.gay)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) Why is fat albert gay? WSJ Speakeasy Index -4.22 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.gay)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) Why is fat albert gay? Blissful Master Index -4.22 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.gay)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) Why is fat albert gay? Blissful Celebrities -4.22 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.gay)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) Poem on environment in Hindi language? Nuclear Snow in Japanese Springtime An Editorial Poem-Commentary -3.189 formula (and (fb:type.object.type fb:book.poem) (!fb:book.book_subject.works fb:en.environment))) (value (list (name fb:m.0ghgg2v "Nuclear Snow in Japanese Springtime An Editorial Poem-Commentary"))) (type (union fb:book.poem)) Where are the best paid bricklaying jobs in Australia? New Zealand -3.716 formula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:location.adjoining_relationship.adjoins (!fb:location.location.adjoin_s (var x)))) fb:en.australia))) (value (list (name fb:en.indonesia Indonesia) (name fb:en.new_zealand "New Zealand") (name fb:en.vanuatu Vanuatu) (name fb:en.papua_new_guinea "Papua New Guinea") (name fb:en.east_timor Timor-Leste) (name fb:en.new_caledonia "New Caledonia") (name fb:en.solomon_islands "Solomon Islands"))) (type fb:location.location) Where are the best paid bricklaying jobs in Australia? Papua New Guinea -3.716 formula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:location.adjoining_relationship.adjoins (!fb:location.location.adjoin_s (var x)))) fb:en.australia))) (value (list (name fb:en.indonesia Indonesia) (name fb:en.new_zealand "New Zealand") (name fb:en.vanuatu Vanuatu) (name fb:en.papua_new_guinea "Papua New Guinea") (name fb:en.east_timor Timor-Leste) (name fb:en.new_caledonia "New Caledonia") (name fb:en.solomon_islands "Solomon Islands"))) (type fb:location.location) Where are the best paid bricklaying jobs in Australia? New Caledonia -3.716 formula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:location.adjoining_relationship.adjoins (!fb:location.location.adjoin_s (var x)))) fb:en.australia))) (value (list (name fb:en.indonesia Indonesia) (name fb:en.new_zealand "New Zealand") (name fb:en.vanuatu Vanuatu) (name fb:en.papua_new_guinea "Papua New Guinea") (name fb:en.east_timor Timor-Leste) (name fb:en.new_caledonia "New Caledonia") (name fb:en.solomon_islands "Solomon Islands"))) (type fb:location.location) Where are the best paid bricklaying jobs in Australia? Solomon Islands -3.716 formula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:location.adjoining_relationship.adjoins (!fb:location.location.adjoin_s (var x)))) fb:en.australia))) (value (list (name fb:en.indonesia Indonesia) (name fb:en.new_zealand "New Zealand") (name fb:en.vanuatu Vanuatu) (name fb:en.papua_new_guinea "Papua New Guinea") (name fb:en.east_timor Timor-Leste) (name fb:en.new_caledonia "New Caledonia") (name fb:en.solomon_islands "Solomon Islands"))) (type fb:location.location) Does WWE star Ricaord Rodriguez have a girlfriend? Pleiades large -4.598 formula (fb:common.image.appears_in_topic_gallery fb:en.star)) (value (list (name fb:m.02bh5b5 "Pleiades large") (name fb:m.042qv6v "123107main image feature 371 ys 4") (name fb:m.07ksw8_ "Dibuix de Leo"))) (type fb:common.image) Does WWE star Ricaord Rodriguez have a girlfriend? 123107main image feature 371 ys 4 -4.598 formula (fb:common.image.appears_in_topic_gallery fb:en.star)) (value (list (name fb:m.02bh5b5 "Pleiades large") (name fb:m.042qv6v "123107main image feature 371 ys 4") (name fb:m.07ksw8_ "Dibuix de Leo"))) (type fb:common.image) Does WWE star Ricaord Rodriguez have a girlfriend? Dibuix de Leo -4.598 formula (fb:common.image.appears_in_topic_gallery fb:en.star)) (value (list (name fb:m.02bh5b5 "Pleiades large") (name fb:m.042qv6v "123107main image feature 371 ys 4") (name fb:m.07ksw8_ "Dibuix de Leo"))) (type fb:common.image) Can a school id give you cancer? Albert Sabin -1.621 formula (!fb:education.field_of_study.academics_in_this_field fb:en.cancer)) (value (list (name fb:en.albert_sabin "Albert Sabin"))) (type fb:education.academic) Where is the flasher location on a 1991 Acura Legend? United States of America 1.376 formula (and (fb:type.object.type fb:location.location) ((lambda x (!fb:common.phone_number.service_location (!fb:organization.organization.phone_number (var x)))) fb:en.acura))) (value (list (name fb:en.united_states_of_america "United States of America") (name fb:en.canada Canada))) (type fb:location.location) What is Ghana's vegetation? United States dollar -3.2 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:measurement_unit.dated_money_value.currency (!fb:location.statistical_region.foreign_direct_investment_net_inflows (var x)))) fb:en.ghana))) (value (list (name fb:en.us "United States dollar"))) (type fb:finance.currency) When did Taylor Lautner start karate lessons? Boy on Beach -2.937 formula ((lambda x (!fb:tv.regular_tv_appearance.character (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.taylor_lautner)) (value (list (name fb:m.0gwrlzt Oliver) (name fb:en.boy_on_beach "Boy on Beach") (name fb:m.0gwrly3 Aaron) (name fb:m.0gwrlzf "Young Blood") (name fb:en.jack_spivey "Jack Spivey") (name fb:en.reggie_wasserstein "Reggie Wasserstein") (name fb:m.0gwrlyp Tyrone) (name fb:m.0gwrlz1 Dennis))) (type fb:tv.tv_character) When did Taylor Lautner start karate lessons? Young Blood -2.937 formula ((lambda x (!fb:tv.regular_tv_appearance.character (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.taylor_lautner)) (value (list (name fb:m.0gwrlzt Oliver) (name fb:en.boy_on_beach "Boy on Beach") (name fb:m.0gwrly3 Aaron) (name fb:m.0gwrlzf "Young Blood") (name fb:en.jack_spivey "Jack Spivey") (name fb:en.reggie_wasserstein "Reggie Wasserstein") (name fb:m.0gwrlyp Tyrone) (name fb:m.0gwrlz1 Dennis))) (type fb:tv.tv_character) When did Taylor Lautner start karate lessons? Jack Spivey -2.937 formula ((lambda x (!fb:tv.regular_tv_appearance.character (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.taylor_lautner)) (value (list (name fb:m.0gwrlzt Oliver) (name fb:en.boy_on_beach "Boy on Beach") (name fb:m.0gwrly3 Aaron) (name fb:m.0gwrlzf "Young Blood") (name fb:en.jack_spivey "Jack Spivey") (name fb:en.reggie_wasserstein "Reggie Wasserstein") (name fb:m.0gwrlyp Tyrone) (name fb:m.0gwrlz1 Dennis))) (type fb:tv.tv_character) When did Taylor Lautner start karate lessons? Reggie Wasserstein -2.937 formula ((lambda x (!fb:tv.regular_tv_appearance.character (!fb:tv.tv_actor.starring_roles (var x)))) fb:en.taylor_lautner)) (value (list (name fb:m.0gwrlzt Oliver) (name fb:en.boy_on_beach "Boy on Beach") (name fb:m.0gwrly3 Aaron) (name fb:m.0gwrlzf "Young Blood") (name fb:en.jack_spivey "Jack Spivey") (name fb:en.reggie_wasserstein "Reggie Wasserstein") (name fb:m.0gwrlyp Tyrone) (name fb:m.0gwrlz1 Dennis))) (type fb:tv.tv_character) How can a student be more organized? Entertainment Weekly annotation index -2.301 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.organized_crime)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index"))) (type fb:common.annotation_index) Where do you put an apostrophe In I would? Green Craig's -1.98 formula (!fb:common.topic.image fb:en.apostrophe)) (value (list (name fb:m.052q565 "Green Craig's") (name fb:m.03t4l17 "The apostrophe at its worst"))) (type fb:common.image) Where do you put an apostrophe In I would? The apostrophe at its worst -1.98 formula (!fb:common.topic.image fb:en.apostrophe)) (value (list (name fb:m.052q565 "Green Craig's") (name fb:m.03t4l17 "The apostrophe at its worst"))) (type fb:common.image) How many Oscars has John Williams won? Outstanding Original Main Title Theme Music 0.138 formula ((lambda x (!fb:award.award_honor.notes_description (!fb:award.award_winner.awards_won (var x)))) fb:en.john_willams)) (value (list (string Composer) (string "Outstanding Original Main Title Theme Music") (string "Best Pop Instrumental Recording"))) (type fb:type.text) How many Oscars has John Williams won? Best Pop Instrumental Recording 0.138 formula ((lambda x (!fb:award.award_honor.notes_description (!fb:award.award_winner.awards_won (var x)))) fb:en.john_willams)) (value (list (string Composer) (string "Outstanding Original Main Title Theme Music") (string "Best Pop Instrumental Recording"))) (type fb:type.text) What is the legal age a child can be left home? A Woman Peeling Apples -2.627 formula (and (fb:type.object.type fb:common.topic) (fb:visual_art.artwork.art_subject fb:en.child))) (value (list (name fb:en.a_woman_peeling_apples "A Woman Peeling Apples"))) (type fb:visual_art.artwork) What countries did sir Francis Drake discover? Kingdom of England 2.013 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:location.country) (!fb:people.person.nationality fb:en.francis_drake)))) (value (list (name fb:en.england England) (name fb:en.kingdom_of_england "Kingdom of England"))) (type fb:location.country) How do wheat disperse seeds? Identification of Wheat -2.448 formula ((lambda x (fb:biology.plant_disease_documentation.plant_disease_documentation (fb:biology.plant_disease_triangle.host (var x)))) fb:en.wheat)) (value (list (name fb:m.0cgl2y2 "Identification of Wheat���Dasypyrum breviaristatum addition lines with stripe rust resistance using C-banding and genomic in situ hybridization") (name fb:m.0ch96w1 "Stem rust of small grains and grasses caused by Puccinia graminis"))) (type fb:biology.plant_disease_documentation) How do wheat disperse seeds? Stem rust of small grains and grasses caused by Puccinia graminis -2.448 formula ((lambda x (fb:biology.plant_disease_documentation.plant_disease_documentation (fb:biology.plant_disease_triangle.host (var x)))) fb:en.wheat)) (value (list (name fb:m.0cgl2y2 "Identification of Wheat���Dasypyrum breviaristatum addition lines with stripe rust resistance using C-banding and genomic in situ hybridization") (name fb:m.0ch96w1 "Stem rust of small grains and grasses caused by Puccinia graminis"))) (type fb:biology.plant_disease_documentation) Why were the first great civilizations centered around river valleys? River Scene -6.601 formula (!fb:visual_art.art_subject.artwork_on_the_subject fb:en.river)) (value (list (name fb:en.river_scene "River Scene"))) (type fb:visual_art.artwork) What was the original name for Puerto Rico given by Christopher Columbus? Government of Puerto Rico -2.879 formula (and (fb:type.object.type fb:common.topic) (fb:government.government.government_for fb:en.puerto_rico))) (value (list (name fb:en.government_of_puerto_rico "Government of Puerto Rico"))) (type fb:government.government) What is it called when you play a violin with a bow? Itzhak Perlman 0.327 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:music.artist.contribution (fb:music.recording_contribution.performance_role (var x)))) fb:en.violin))) (value (list (name fb:en.itzhak_perlman "Itzhak Perlman") (name fb:en.jonh_georgiadis "John Georgiadis") (name fb:m.03xn9kj "John Wittenberg") (name fb:en.scarlet_rivera "Scarlet Rivera") (name fb:en.bruce_dukov "Bruce Dukov") (name fb:en.david_mansfield "David Mansfield") (name fb:m.0g4yv37 "Tom Savage") (name fb:en.jessica_linnebach "Jessica Linnebach") (name fb:en.michael_province "Michael Province") (name fb:m.05ss6s7 "Bobby Lalonde"))) (type fb:music.artist) What is it called when you play a violin with a bow? John Georgiadis 0.327 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:music.artist.contribution (fb:music.recording_contribution.performance_role (var x)))) fb:en.violin))) (value (list (name fb:en.itzhak_perlman "Itzhak Perlman") (name fb:en.jonh_georgiadis "John Georgiadis") (name fb:m.03xn9kj "John Wittenberg") (name fb:en.scarlet_rivera "Scarlet Rivera") (name fb:en.bruce_dukov "Bruce Dukov") (name fb:en.david_mansfield "David Mansfield") (name fb:m.0g4yv37 "Tom Savage") (name fb:en.jessica_linnebach "Jessica Linnebach") (name fb:en.michael_province "Michael Province") (name fb:m.05ss6s7 "Bobby Lalonde"))) (type fb:music.artist) What is it called when you play a violin with a bow? John Wittenberg 0.327 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:music.artist.contribution (fb:music.recording_contribution.performance_role (var x)))) fb:en.violin))) (value (list (name fb:en.itzhak_perlman "Itzhak Perlman") (name fb:en.jonh_georgiadis "John Georgiadis") (name fb:m.03xn9kj "John Wittenberg") (name fb:en.scarlet_rivera "Scarlet Rivera") (name fb:en.bruce_dukov "Bruce Dukov") (name fb:en.david_mansfield "David Mansfield") (name fb:m.0g4yv37 "Tom Savage") (name fb:en.jessica_linnebach "Jessica Linnebach") (name fb:en.michael_province "Michael Province") (name fb:m.05ss6s7 "Bobby Lalonde"))) (type fb:music.artist) What is it called when you play a violin with a bow? Scarlet Rivera 0.327 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:music.artist.contribution (fb:music.recording_contribution.performance_role (var x)))) fb:en.violin))) (value (list (name fb:en.itzhak_perlman "Itzhak Perlman") (name fb:en.jonh_georgiadis "John Georgiadis") (name fb:m.03xn9kj "John Wittenberg") (name fb:en.scarlet_rivera "Scarlet Rivera") (name fb:en.bruce_dukov "Bruce Dukov") (name fb:en.david_mansfield "David Mansfield") (name fb:m.0g4yv37 "Tom Savage") (name fb:en.jessica_linnebach "Jessica Linnebach") (name fb:en.michael_province "Michael Province") (name fb:m.05ss6s7 "Bobby Lalonde"))) (type fb:music.artist) What is it called when you play a violin with a bow? Bruce Dukov 0.327 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:music.artist.contribution (fb:music.recording_contribution.performance_role (var x)))) fb:en.violin))) (value (list (name fb:en.itzhak_perlman "Itzhak Perlman") (name fb:en.jonh_georgiadis "John Georgiadis") (name fb:m.03xn9kj "John Wittenberg") (name fb:en.scarlet_rivera "Scarlet Rivera") (name fb:en.bruce_dukov "Bruce Dukov") (name fb:en.david_mansfield "David Mansfield") (name fb:m.0g4yv37 "Tom Savage") (name fb:en.jessica_linnebach "Jessica Linnebach") (name fb:en.michael_province "Michael Province") (name fb:m.05ss6s7 "Bobby Lalonde"))) (type fb:music.artist) What is it called when you play a violin with a bow? David Mansfield 0.327 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:music.artist.contribution (fb:music.recording_contribution.performance_role (var x)))) fb:en.violin))) (value (list (name fb:en.itzhak_perlman "Itzhak Perlman") (name fb:en.jonh_georgiadis "John Georgiadis") (name fb:m.03xn9kj "John Wittenberg") (name fb:en.scarlet_rivera "Scarlet Rivera") (name fb:en.bruce_dukov "Bruce Dukov") (name fb:en.david_mansfield "David Mansfield") (name fb:m.0g4yv37 "Tom Savage") (name fb:en.jessica_linnebach "Jessica Linnebach") (name fb:en.michael_province "Michael Province") (name fb:m.05ss6s7 "Bobby Lalonde"))) (type fb:music.artist) What is it called when you play a violin with a bow? Tom Savage 0.327 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:music.artist.contribution (fb:music.recording_contribution.performance_role (var x)))) fb:en.violin))) (value (list (name fb:en.itzhak_perlman "Itzhak Perlman") (name fb:en.jonh_georgiadis "John Georgiadis") (name fb:m.03xn9kj "John Wittenberg") (name fb:en.scarlet_rivera "Scarlet Rivera") (name fb:en.bruce_dukov "Bruce Dukov") (name fb:en.david_mansfield "David Mansfield") (name fb:m.0g4yv37 "Tom Savage") (name fb:en.jessica_linnebach "Jessica Linnebach") (name fb:en.michael_province "Michael Province") (name fb:m.05ss6s7 "Bobby Lalonde"))) (type fb:music.artist) What is it called when you play a violin with a bow? Jessica Linnebach 0.327 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:music.artist.contribution (fb:music.recording_contribution.performance_role (var x)))) fb:en.violin))) (value (list (name fb:en.itzhak_perlman "Itzhak Perlman") (name fb:en.jonh_georgiadis "John Georgiadis") (name fb:m.03xn9kj "John Wittenberg") (name fb:en.scarlet_rivera "Scarlet Rivera") (name fb:en.bruce_dukov "Bruce Dukov") (name fb:en.david_mansfield "David Mansfield") (name fb:m.0g4yv37 "Tom Savage") (name fb:en.jessica_linnebach "Jessica Linnebach") (name fb:en.michael_province "Michael Province") (name fb:m.05ss6s7 "Bobby Lalonde"))) (type fb:music.artist) What is it called when you play a violin with a bow? Michael Province 0.327 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:music.artist.contribution (fb:music.recording_contribution.performance_role (var x)))) fb:en.violin))) (value (list (name fb:en.itzhak_perlman "Itzhak Perlman") (name fb:en.jonh_georgiadis "John Georgiadis") (name fb:m.03xn9kj "John Wittenberg") (name fb:en.scarlet_rivera "Scarlet Rivera") (name fb:en.bruce_dukov "Bruce Dukov") (name fb:en.david_mansfield "David Mansfield") (name fb:m.0g4yv37 "Tom Savage") (name fb:en.jessica_linnebach "Jessica Linnebach") (name fb:en.michael_province "Michael Province") (name fb:m.05ss6s7 "Bobby Lalonde"))) (type fb:music.artist) What is it called when you play a violin with a bow? Bobby Lalonde 0.327 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:music.artist.contribution (fb:music.recording_contribution.performance_role (var x)))) fb:en.violin))) (value (list (name fb:en.itzhak_perlman "Itzhak Perlman") (name fb:en.jonh_georgiadis "John Georgiadis") (name fb:m.03xn9kj "John Wittenberg") (name fb:en.scarlet_rivera "Scarlet Rivera") (name fb:en.bruce_dukov "Bruce Dukov") (name fb:en.david_mansfield "David Mansfield") (name fb:m.0g4yv37 "Tom Savage") (name fb:en.jessica_linnebach "Jessica Linnebach") (name fb:en.michael_province "Michael Province") (name fb:m.05ss6s7 "Bobby Lalonde"))) (type fb:music.artist) How many times can you marry in Tennessee? Central Time Zone 1.349 formula (!fb:location.location.time_zones fb:en.tennesee)) (value (list (name fb:en.central_time_zone "Central Time Zone") (name fb:en.north_american_eastern_time_zone "Eastern Time Zone") (name fb:en.utc-5 UTC-5) (name fb:en.utc-6 UTC���06:00))) (type fb:time.time_zone) How many times can you marry in Tennessee? Eastern Time Zone 1.349 formula (!fb:location.location.time_zones fb:en.tennesee)) (value (list (name fb:en.central_time_zone "Central Time Zone") (name fb:en.north_american_eastern_time_zone "Eastern Time Zone") (name fb:en.utc-5 UTC-5) (name fb:en.utc-6 UTC���06:00))) (type fb:time.time_zone) What songs has Alicia Keys composed? New Day 2.123 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:music.composition) (!fb:music.composer.compositions fb:en.alicia_keys)))) (value (list (name fb:m.07s2d1 Fallin') (name fb:m.0k9fx8n "New Day") (name fb:en.a_womans_worth "A Woman's Worth") (name fb:en.if_i_aint_got_you "If I Ain't Got You") (name fb:en.empire_state_of_mind "Empire State of Mind") (name fb:m.0n9wh96 "Fire We Make") (name fb:m.0n9whkm "That's When I Knew") (name fb:m.0n9wg7f "When It's All Over") (name fb:m.02p77z0 Girlfriend) (name fb:m.0ndwvh0 "Brand New Me"))) (type fb:music.composition) What songs has Alicia Keys composed? A Woman's Worth 2.123 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:music.composition) (!fb:music.composer.compositions fb:en.alicia_keys)))) (value (list (name fb:m.07s2d1 Fallin') (name fb:m.0k9fx8n "New Day") (name fb:en.a_womans_worth "A Woman's Worth") (name fb:en.if_i_aint_got_you "If I Ain't Got You") (name fb:en.empire_state_of_mind "Empire State of Mind") (name fb:m.0n9wh96 "Fire We Make") (name fb:m.0n9whkm "That's When I Knew") (name fb:m.0n9wg7f "When It's All Over") (name fb:m.02p77z0 Girlfriend) (name fb:m.0ndwvh0 "Brand New Me"))) (type fb:music.composition) What songs has Alicia Keys composed? If I Ain't Got You 2.123 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:music.composition) (!fb:music.composer.compositions fb:en.alicia_keys)))) (value (list (name fb:m.07s2d1 Fallin') (name fb:m.0k9fx8n "New Day") (name fb:en.a_womans_worth "A Woman's Worth") (name fb:en.if_i_aint_got_you "If I Ain't Got You") (name fb:en.empire_state_of_mind "Empire State of Mind") (name fb:m.0n9wh96 "Fire We Make") (name fb:m.0n9whkm "That's When I Knew") (name fb:m.0n9wg7f "When It's All Over") (name fb:m.02p77z0 Girlfriend) (name fb:m.0ndwvh0 "Brand New Me"))) (type fb:music.composition) What songs has Alicia Keys composed? Empire State of Mind 2.123 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:music.composition) (!fb:music.composer.compositions fb:en.alicia_keys)))) (value (list (name fb:m.07s2d1 Fallin') (name fb:m.0k9fx8n "New Day") (name fb:en.a_womans_worth "A Woman's Worth") (name fb:en.if_i_aint_got_you "If I Ain't Got You") (name fb:en.empire_state_of_mind "Empire State of Mind") (name fb:m.0n9wh96 "Fire We Make") (name fb:m.0n9whkm "That's When I Knew") (name fb:m.0n9wg7f "When It's All Over") (name fb:m.02p77z0 Girlfriend) (name fb:m.0ndwvh0 "Brand New Me"))) (type fb:music.composition) What songs has Alicia Keys composed? Fire We Make 2.123 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:music.composition) (!fb:music.composer.compositions fb:en.alicia_keys)))) (value (list (name fb:m.07s2d1 Fallin') (name fb:m.0k9fx8n "New Day") (name fb:en.a_womans_worth "A Woman's Worth") (name fb:en.if_i_aint_got_you "If I Ain't Got You") (name fb:en.empire_state_of_mind "Empire State of Mind") (name fb:m.0n9wh96 "Fire We Make") (name fb:m.0n9whkm "That's When I Knew") (name fb:m.0n9wg7f "When It's All Over") (name fb:m.02p77z0 Girlfriend) (name fb:m.0ndwvh0 "Brand New Me"))) (type fb:music.composition) What songs has Alicia Keys composed? That's When I Knew 2.123 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:music.composition) (!fb:music.composer.compositions fb:en.alicia_keys)))) (value (list (name fb:m.07s2d1 Fallin') (name fb:m.0k9fx8n "New Day") (name fb:en.a_womans_worth "A Woman's Worth") (name fb:en.if_i_aint_got_you "If I Ain't Got You") (name fb:en.empire_state_of_mind "Empire State of Mind") (name fb:m.0n9wh96 "Fire We Make") (name fb:m.0n9whkm "That's When I Knew") (name fb:m.0n9wg7f "When It's All Over") (name fb:m.02p77z0 Girlfriend) (name fb:m.0ndwvh0 "Brand New Me"))) (type fb:music.composition) What songs has Alicia Keys composed? When It's All Over 2.123 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:music.composition) (!fb:music.composer.compositions fb:en.alicia_keys)))) (value (list (name fb:m.07s2d1 Fallin') (name fb:m.0k9fx8n "New Day") (name fb:en.a_womans_worth "A Woman's Worth") (name fb:en.if_i_aint_got_you "If I Ain't Got You") (name fb:en.empire_state_of_mind "Empire State of Mind") (name fb:m.0n9wh96 "Fire We Make") (name fb:m.0n9whkm "That's When I Knew") (name fb:m.0n9wg7f "When It's All Over") (name fb:m.02p77z0 Girlfriend) (name fb:m.0ndwvh0 "Brand New Me"))) (type fb:music.composition) What songs has Alicia Keys composed? Brand New Me 2.123 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:music.composition) (!fb:music.composer.compositions fb:en.alicia_keys)))) (value (list (name fb:m.07s2d1 Fallin') (name fb:m.0k9fx8n "New Day") (name fb:en.a_womans_worth "A Woman's Worth") (name fb:en.if_i_aint_got_you "If I Ain't Got You") (name fb:en.empire_state_of_mind "Empire State of Mind") (name fb:m.0n9wh96 "Fire We Make") (name fb:m.0n9whkm "That's When I Knew") (name fb:m.0n9wg7f "When It's All Over") (name fb:m.02p77z0 Girlfriend) (name fb:m.0ndwvh0 "Brand New Me"))) (type fb:music.composition) What is the most expensive custom made software ever made? Rand McNally -1.549 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:business.company_product_relationship.company (!fb:business.consumer_product.company (var x)))) fb:en.computer_software))) (value (list (name fb:en.rand_mcnally_staff "Rand McNally"))) (type fb:business.consumer_company) If a man drink alcohol will effect baby? Alcoholic beverages -4.031 formula (fb:common.image.appears_in_topic_gallery fb:en.drink)) (value (list (name fb:m.03shz_j "Alcoholic beverages") (name fb:m.02bd49z "Oranges and orange juice") (name fb:m.03tj3bv FountainSoda))) (type fb:common.image) If a man drink alcohol will effect baby? Oranges and orange juice -4.031 formula (fb:common.image.appears_in_topic_gallery fb:en.drink)) (value (list (name fb:m.03shz_j "Alcoholic beverages") (name fb:m.02bd49z "Oranges and orange juice") (name fb:m.03tj3bv FountainSoda))) (type fb:common.image) Why is there the British flag on the upper left corner of the Australian flag? Flag of the Chuvash Republic 2.972 formula (fb:location.symbol_of_administrative_division.official_symbol_of (and (fb:location.location_symbol_relationship.Kind_of_symbol fb:en.flag) (!fb:location.offical_symbol_variety.symbols_of_this_kind fb:en.flag)))) (value (list (name fb:en.flag_of_chuvashia "Flag of the Chuvash Republic") (name fb:en.flag_of_quebec "Flag of Quebec") (name fb:en.flag_of_new_zealand "Flag of New Zealand"))) (type fb:location.symbol_of_administrative_division) Why is there the British flag on the upper left corner of the Australian flag? Flag of Quebec 2.972 formula (fb:location.symbol_of_administrative_division.official_symbol_of (and (fb:location.location_symbol_relationship.Kind_of_symbol fb:en.flag) (!fb:location.offical_symbol_variety.symbols_of_this_kind fb:en.flag)))) (value (list (name fb:en.flag_of_chuvashia "Flag of the Chuvash Republic") (name fb:en.flag_of_quebec "Flag of Quebec") (name fb:en.flag_of_new_zealand "Flag of New Zealand"))) (type fb:location.symbol_of_administrative_division) Why is there the British flag on the upper left corner of the Australian flag? Flag of New Zealand 2.972 formula (fb:location.symbol_of_administrative_division.official_symbol_of (and (fb:location.location_symbol_relationship.Kind_of_symbol fb:en.flag) (!fb:location.offical_symbol_variety.symbols_of_this_kind fb:en.flag)))) (value (list (name fb:en.flag_of_chuvashia "Flag of the Chuvash Republic") (name fb:en.flag_of_quebec "Flag of Quebec") (name fb:en.flag_of_new_zealand "Flag of New Zealand"))) (type fb:location.symbol_of_administrative_division) What tissue type does embryonic ectoderm develop into? Organic Thing -6.882 formula (!fb:common.topic.notable_types fb:en.ectoderm)) (value (list (name fb:base.tagit.organic_thing "Organic Thing") (name fb:base.tagasauris.organic_object "Organic Object") (name fb:medicine.anatomical_structure "Anatomical structure"))) (type fb:type.type) What tissue type does embryonic ectoderm develop into? Organic Object -6.882 formula (!fb:common.topic.notable_types fb:en.ectoderm)) (value (list (name fb:base.tagit.organic_thing "Organic Thing") (name fb:base.tagasauris.organic_object "Organic Object") (name fb:medicine.anatomical_structure "Anatomical structure"))) (type fb:type.type) What tissue type does embryonic ectoderm develop into? Anatomical structure -6.882 formula (!fb:common.topic.notable_types fb:en.ectoderm)) (value (list (name fb:base.tagit.organic_thing "Organic Thing") (name fb:base.tagasauris.organic_object "Organic Object") (name fb:medicine.anatomical_structure "Anatomical structure"))) (type fb:type.type) Follicles are a structural feature of what gland? Human submaxillary gland. At the right is a group of mucous alveoli, at the left a group of serous alveoli -5.726 formula (fb:common.image.appears_in_topic_gallery fb:en.gland)) (value (list (name fb:m.02bpzfn "Human submaxillary gland. At the right is a group of mucous alveoli, at the left a group of serous alveoli"))) (type fb:common.image) Is it true that DNA is deoxyribonucleic acid? Entertainment Weekly annotation index -0.071 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.dna)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index"))) (type fb:common.annotation_index) What were some major submarine battles in world war one? Pacific War 0.907 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:military.military_conflict) (!fb:time.event.includes_event fb:en.world_war_ii)))) (value (list (name fb:en.pacific_war "Pacific War") (name fb:en.battle_of_the_eastern_solomons "Battle of the Eastern Solomons") (name fb:en.operation_weserubung "Operation Weser��bung") (name fb:en.norwegian_campaign "Norwegian Campaign") (name fb:en.battle_of_las_piedras "Battle of Las Piedras") (name fb:m.02kxjx "Western Front") (name fb:en.operation_saturn "Operation Little Saturn") (name fb:en.battle_of_stalingrad "Battle of Stalingrad") (name fb:en.battle_of_midtskogen "Battle of Midtskogen") (name fb:en.first_battle_of_el_alamein "First Battle of El Alamein"))) (type fb:military.military_conflict) What were some major submarine battles in world war one? Battle of the Eastern Solomons 0.907 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:military.military_conflict) (!fb:time.event.includes_event fb:en.world_war_ii)))) (value (list (name fb:en.pacific_war "Pacific War") (name fb:en.battle_of_the_eastern_solomons "Battle of the Eastern Solomons") (name fb:en.operation_weserubung "Operation Weser��bung") (name fb:en.norwegian_campaign "Norwegian Campaign") (name fb:en.battle_of_las_piedras "Battle of Las Piedras") (name fb:m.02kxjx "Western Front") (name fb:en.operation_saturn "Operation Little Saturn") (name fb:en.battle_of_stalingrad "Battle of Stalingrad") (name fb:en.battle_of_midtskogen "Battle of Midtskogen") (name fb:en.first_battle_of_el_alamein "First Battle of El Alamein"))) (type fb:military.military_conflict) What were some major submarine battles in world war one? Operation Weser��bung 0.907 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:military.military_conflict) (!fb:time.event.includes_event fb:en.world_war_ii)))) (value (list (name fb:en.pacific_war "Pacific War") (name fb:en.battle_of_the_eastern_solomons "Battle of the Eastern Solomons") (name fb:en.operation_weserubung "Operation Weser��bung") (name fb:en.norwegian_campaign "Norwegian Campaign") (name fb:en.battle_of_las_piedras "Battle of Las Piedras") (name fb:m.02kxjx "Western Front") (name fb:en.operation_saturn "Operation Little Saturn") (name fb:en.battle_of_stalingrad "Battle of Stalingrad") (name fb:en.battle_of_midtskogen "Battle of Midtskogen") (name fb:en.first_battle_of_el_alamein "First Battle of El Alamein"))) (type fb:military.military_conflict) What were some major submarine battles in world war one? Norwegian Campaign 0.907 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:military.military_conflict) (!fb:time.event.includes_event fb:en.world_war_ii)))) (value (list (name fb:en.pacific_war "Pacific War") (name fb:en.battle_of_the_eastern_solomons "Battle of the Eastern Solomons") (name fb:en.operation_weserubung "Operation Weser��bung") (name fb:en.norwegian_campaign "Norwegian Campaign") (name fb:en.battle_of_las_piedras "Battle of Las Piedras") (name fb:m.02kxjx "Western Front") (name fb:en.operation_saturn "Operation Little Saturn") (name fb:en.battle_of_stalingrad "Battle of Stalingrad") (name fb:en.battle_of_midtskogen "Battle of Midtskogen") (name fb:en.first_battle_of_el_alamein "First Battle of El Alamein"))) (type fb:military.military_conflict) What were some major submarine battles in world war one? Battle of Las Piedras 0.907 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:military.military_conflict) (!fb:time.event.includes_event fb:en.world_war_ii)))) (value (list (name fb:en.pacific_war "Pacific War") (name fb:en.battle_of_the_eastern_solomons "Battle of the Eastern Solomons") (name fb:en.operation_weserubung "Operation Weser��bung") (name fb:en.norwegian_campaign "Norwegian Campaign") (name fb:en.battle_of_las_piedras "Battle of Las Piedras") (name fb:m.02kxjx "Western Front") (name fb:en.operation_saturn "Operation Little Saturn") (name fb:en.battle_of_stalingrad "Battle of Stalingrad") (name fb:en.battle_of_midtskogen "Battle of Midtskogen") (name fb:en.first_battle_of_el_alamein "First Battle of El Alamein"))) (type fb:military.military_conflict) What were some major submarine battles in world war one? Western Front 0.907 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:military.military_conflict) (!fb:time.event.includes_event fb:en.world_war_ii)))) (value (list (name fb:en.pacific_war "Pacific War") (name fb:en.battle_of_the_eastern_solomons "Battle of the Eastern Solomons") (name fb:en.operation_weserubung "Operation Weser��bung") (name fb:en.norwegian_campaign "Norwegian Campaign") (name fb:en.battle_of_las_piedras "Battle of Las Piedras") (name fb:m.02kxjx "Western Front") (name fb:en.operation_saturn "Operation Little Saturn") (name fb:en.battle_of_stalingrad "Battle of Stalingrad") (name fb:en.battle_of_midtskogen "Battle of Midtskogen") (name fb:en.first_battle_of_el_alamein "First Battle of El Alamein"))) (type fb:military.military_conflict) What were some major submarine battles in world war one? Operation Little Saturn 0.907 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:military.military_conflict) (!fb:time.event.includes_event fb:en.world_war_ii)))) (value (list (name fb:en.pacific_war "Pacific War") (name fb:en.battle_of_the_eastern_solomons "Battle of the Eastern Solomons") (name fb:en.operation_weserubung "Operation Weser��bung") (name fb:en.norwegian_campaign "Norwegian Campaign") (name fb:en.battle_of_las_piedras "Battle of Las Piedras") (name fb:m.02kxjx "Western Front") (name fb:en.operation_saturn "Operation Little Saturn") (name fb:en.battle_of_stalingrad "Battle of Stalingrad") (name fb:en.battle_of_midtskogen "Battle of Midtskogen") (name fb:en.first_battle_of_el_alamein "First Battle of El Alamein"))) (type fb:military.military_conflict) What were some major submarine battles in world war one? Battle of Stalingrad 0.907 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:military.military_conflict) (!fb:time.event.includes_event fb:en.world_war_ii)))) (value (list (name fb:en.pacific_war "Pacific War") (name fb:en.battle_of_the_eastern_solomons "Battle of the Eastern Solomons") (name fb:en.operation_weserubung "Operation Weser��bung") (name fb:en.norwegian_campaign "Norwegian Campaign") (name fb:en.battle_of_las_piedras "Battle of Las Piedras") (name fb:m.02kxjx "Western Front") (name fb:en.operation_saturn "Operation Little Saturn") (name fb:en.battle_of_stalingrad "Battle of Stalingrad") (name fb:en.battle_of_midtskogen "Battle of Midtskogen") (name fb:en.first_battle_of_el_alamein "First Battle of El Alamein"))) (type fb:military.military_conflict) What were some major submarine battles in world war one? Battle of Midtskogen 0.907 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:military.military_conflict) (!fb:time.event.includes_event fb:en.world_war_ii)))) (value (list (name fb:en.pacific_war "Pacific War") (name fb:en.battle_of_the_eastern_solomons "Battle of the Eastern Solomons") (name fb:en.operation_weserubung "Operation Weser��bung") (name fb:en.norwegian_campaign "Norwegian Campaign") (name fb:en.battle_of_las_piedras "Battle of Las Piedras") (name fb:m.02kxjx "Western Front") (name fb:en.operation_saturn "Operation Little Saturn") (name fb:en.battle_of_stalingrad "Battle of Stalingrad") (name fb:en.battle_of_midtskogen "Battle of Midtskogen") (name fb:en.first_battle_of_el_alamein "First Battle of El Alamein"))) (type fb:military.military_conflict) What were some major submarine battles in world war one? First Battle of El Alamein 0.907 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:military.military_conflict) (!fb:time.event.includes_event fb:en.world_war_ii)))) (value (list (name fb:en.pacific_war "Pacific War") (name fb:en.battle_of_the_eastern_solomons "Battle of the Eastern Solomons") (name fb:en.operation_weserubung "Operation Weser��bung") (name fb:en.norwegian_campaign "Norwegian Campaign") (name fb:en.battle_of_las_piedras "Battle of Las Piedras") (name fb:m.02kxjx "Western Front") (name fb:en.operation_saturn "Operation Little Saturn") (name fb:en.battle_of_stalingrad "Battle of Stalingrad") (name fb:en.battle_of_midtskogen "Battle of Midtskogen") (name fb:en.first_battle_of_el_alamein "First Battle of El Alamein"))) (type fb:military.military_conflict) Which flower is usually associated with Easter? Russian Resurrection icon -9.424 formula (!fb:common.topic.image fb:en.easter)) (value (list (name fb:m.02bdcwb "Russian Resurrection icon") (name fb:m.0bc71bv Easter) (name fb:m.0bcqk0z Easter))) (type fb:common.image) Does the Apple iPod touch have a monthly fee? Young Man with an Apple -1.117 formula (fb:visual_art.artwork.art_subject fb:en.apple)) (value (list (name fb:en.young_man_with_an_apple "Young Man with an Apple") (name fb:en.still_life_with_apples "Still Life with Apples") (name fb:en.still_life_with_watermelons_and_apples "Still Life with Watermelons and Apples") (name fb:m.0hgz9st "Still Life with Apples") (name fb:en.still_life_with_apples_and_grapes "Still Life with Apples and Grapes") (name fb:en.the_basket_of_apples "The Basket of Apples") (name fb:en.the_plate_of_apples "The Plate of Apples") (name fb:en.pommes_et_serviette "Pommes et Serviette") (name fb:en.still_life_with_apples_pears_lemons_and_grapes "Still Life with Apples, Pears, Lemons and Grapes") (name fb:en.a_woman_peeling_apples "A Woman Peeling Apples"))) (type fb:visual_art.artwork) Does the Apple iPod touch have a monthly fee? Still Life with Apples -1.117 formula (fb:visual_art.artwork.art_subject fb:en.apple)) (value (list (name fb:en.young_man_with_an_apple "Young Man with an Apple") (name fb:en.still_life_with_apples "Still Life with Apples") (name fb:en.still_life_with_watermelons_and_apples "Still Life with Watermelons and Apples") (name fb:m.0hgz9st "Still Life with Apples") (name fb:en.still_life_with_apples_and_grapes "Still Life with Apples and Grapes") (name fb:en.the_basket_of_apples "The Basket of Apples") (name fb:en.the_plate_of_apples "The Plate of Apples") (name fb:en.pommes_et_serviette "Pommes et Serviette") (name fb:en.still_life_with_apples_pears_lemons_and_grapes "Still Life with Apples, Pears, Lemons and Grapes") (name fb:en.a_woman_peeling_apples "A Woman Peeling Apples"))) (type fb:visual_art.artwork) Does the Apple iPod touch have a monthly fee? Still Life with Watermelons and Apples -1.117 formula (fb:visual_art.artwork.art_subject fb:en.apple)) (value (list (name fb:en.young_man_with_an_apple "Young Man with an Apple") (name fb:en.still_life_with_apples "Still Life with Apples") (name fb:en.still_life_with_watermelons_and_apples "Still Life with Watermelons and Apples") (name fb:m.0hgz9st "Still Life with Apples") (name fb:en.still_life_with_apples_and_grapes "Still Life with Apples and Grapes") (name fb:en.the_basket_of_apples "The Basket of Apples") (name fb:en.the_plate_of_apples "The Plate of Apples") (name fb:en.pommes_et_serviette "Pommes et Serviette") (name fb:en.still_life_with_apples_pears_lemons_and_grapes "Still Life with Apples, Pears, Lemons and Grapes") (name fb:en.a_woman_peeling_apples "A Woman Peeling Apples"))) (type fb:visual_art.artwork) Does the Apple iPod touch have a monthly fee? Still Life with Apples -1.117 formula (fb:visual_art.artwork.art_subject fb:en.apple)) (value (list (name fb:en.young_man_with_an_apple "Young Man with an Apple") (name fb:en.still_life_with_apples "Still Life with Apples") (name fb:en.still_life_with_watermelons_and_apples "Still Life with Watermelons and Apples") (name fb:m.0hgz9st "Still Life with Apples") (name fb:en.still_life_with_apples_and_grapes "Still Life with Apples and Grapes") (name fb:en.the_basket_of_apples "The Basket of Apples") (name fb:en.the_plate_of_apples "The Plate of Apples") (name fb:en.pommes_et_serviette "Pommes et Serviette") (name fb:en.still_life_with_apples_pears_lemons_and_grapes "Still Life with Apples, Pears, Lemons and Grapes") (name fb:en.a_woman_peeling_apples "A Woman Peeling Apples"))) (type fb:visual_art.artwork) Does the Apple iPod touch have a monthly fee? Still Life with Apples and Grapes -1.117 formula (fb:visual_art.artwork.art_subject fb:en.apple)) (value (list (name fb:en.young_man_with_an_apple "Young Man with an Apple") (name fb:en.still_life_with_apples "Still Life with Apples") (name fb:en.still_life_with_watermelons_and_apples "Still Life with Watermelons and Apples") (name fb:m.0hgz9st "Still Life with Apples") (name fb:en.still_life_with_apples_and_grapes "Still Life with Apples and Grapes") (name fb:en.the_basket_of_apples "The Basket of Apples") (name fb:en.the_plate_of_apples "The Plate of Apples") (name fb:en.pommes_et_serviette "Pommes et Serviette") (name fb:en.still_life_with_apples_pears_lemons_and_grapes "Still Life with Apples, Pears, Lemons and Grapes") (name fb:en.a_woman_peeling_apples "A Woman Peeling Apples"))) (type fb:visual_art.artwork) Does the Apple iPod touch have a monthly fee? The Basket of Apples -1.117 formula (fb:visual_art.artwork.art_subject fb:en.apple)) (value (list (name fb:en.young_man_with_an_apple "Young Man with an Apple") (name fb:en.still_life_with_apples "Still Life with Apples") (name fb:en.still_life_with_watermelons_and_apples "Still Life with Watermelons and Apples") (name fb:m.0hgz9st "Still Life with Apples") (name fb:en.still_life_with_apples_and_grapes "Still Life with Apples and Grapes") (name fb:en.the_basket_of_apples "The Basket of Apples") (name fb:en.the_plate_of_apples "The Plate of Apples") (name fb:en.pommes_et_serviette "Pommes et Serviette") (name fb:en.still_life_with_apples_pears_lemons_and_grapes "Still Life with Apples, Pears, Lemons and Grapes") (name fb:en.a_woman_peeling_apples "A Woman Peeling Apples"))) (type fb:visual_art.artwork) Does the Apple iPod touch have a monthly fee? The Plate of Apples -1.117 formula (fb:visual_art.artwork.art_subject fb:en.apple)) (value (list (name fb:en.young_man_with_an_apple "Young Man with an Apple") (name fb:en.still_life_with_apples "Still Life with Apples") (name fb:en.still_life_with_watermelons_and_apples "Still Life with Watermelons and Apples") (name fb:m.0hgz9st "Still Life with Apples") (name fb:en.still_life_with_apples_and_grapes "Still Life with Apples and Grapes") (name fb:en.the_basket_of_apples "The Basket of Apples") (name fb:en.the_plate_of_apples "The Plate of Apples") (name fb:en.pommes_et_serviette "Pommes et Serviette") (name fb:en.still_life_with_apples_pears_lemons_and_grapes "Still Life with Apples, Pears, Lemons and Grapes") (name fb:en.a_woman_peeling_apples "A Woman Peeling Apples"))) (type fb:visual_art.artwork) Does the Apple iPod touch have a monthly fee? Pommes et Serviette -1.117 formula (fb:visual_art.artwork.art_subject fb:en.apple)) (value (list (name fb:en.young_man_with_an_apple "Young Man with an Apple") (name fb:en.still_life_with_apples "Still Life with Apples") (name fb:en.still_life_with_watermelons_and_apples "Still Life with Watermelons and Apples") (name fb:m.0hgz9st "Still Life with Apples") (name fb:en.still_life_with_apples_and_grapes "Still Life with Apples and Grapes") (name fb:en.the_basket_of_apples "The Basket of Apples") (name fb:en.the_plate_of_apples "The Plate of Apples") (name fb:en.pommes_et_serviette "Pommes et Serviette") (name fb:en.still_life_with_apples_pears_lemons_and_grapes "Still Life with Apples, Pears, Lemons and Grapes") (name fb:en.a_woman_peeling_apples "A Woman Peeling Apples"))) (type fb:visual_art.artwork) Does the Apple iPod touch have a monthly fee? Still Life with Apples, Pears, Lemons and Grapes -1.117 formula (fb:visual_art.artwork.art_subject fb:en.apple)) (value (list (name fb:en.young_man_with_an_apple "Young Man with an Apple") (name fb:en.still_life_with_apples "Still Life with Apples") (name fb:en.still_life_with_watermelons_and_apples "Still Life with Watermelons and Apples") (name fb:m.0hgz9st "Still Life with Apples") (name fb:en.still_life_with_apples_and_grapes "Still Life with Apples and Grapes") (name fb:en.the_basket_of_apples "The Basket of Apples") (name fb:en.the_plate_of_apples "The Plate of Apples") (name fb:en.pommes_et_serviette "Pommes et Serviette") (name fb:en.still_life_with_apples_pears_lemons_and_grapes "Still Life with Apples, Pears, Lemons and Grapes") (name fb:en.a_woman_peeling_apples "A Woman Peeling Apples"))) (type fb:visual_art.artwork) Does the Apple iPod touch have a monthly fee? A Woman Peeling Apples -1.117 formula (fb:visual_art.artwork.art_subject fb:en.apple)) (value (list (name fb:en.young_man_with_an_apple "Young Man with an Apple") (name fb:en.still_life_with_apples "Still Life with Apples") (name fb:en.still_life_with_watermelons_and_apples "Still Life with Watermelons and Apples") (name fb:m.0hgz9st "Still Life with Apples") (name fb:en.still_life_with_apples_and_grapes "Still Life with Apples and Grapes") (name fb:en.the_basket_of_apples "The Basket of Apples") (name fb:en.the_plate_of_apples "The Plate of Apples") (name fb:en.pommes_et_serviette "Pommes et Serviette") (name fb:en.still_life_with_apples_pears_lemons_and_grapes "Still Life with Apples, Pears, Lemons and Grapes") (name fb:en.a_woman_peeling_apples "A Woman Peeling Apples"))) (type fb:visual_art.artwork) How vacuum is created in condenser? Toluene with sodium-benzophenone -3.411 formula (!fb:common.topic.image fb:en.condenser)) (value (list (name fb:m.02h3n1v "Toluene with sodium-benzophenone") (name fb:m.029g_zh "Image 1: Fractional distillation apparatus using a Liebig condenser"))) (type fb:common.image) How vacuum is created in condenser? Image 1: Fractional distillation apparatus using a Liebig condenser -3.411 formula (!fb:common.topic.image fb:en.condenser)) (value (list (name fb:m.02h3n1v "Toluene with sodium-benzophenone") (name fb:m.029g_zh "Image 1: Fractional distillation apparatus using a Liebig condenser"))) (type fb:common.image) What ballets did Anna Pavlova perform in? Golders Green Crematorium -6.116 formula (and (fb:type.object.type fb:common.topic) (fb:people.place_of_interment.interred_here fb:en.anna_pavlova))) (value (list (name fb:en.golders_green_crematorium "Golders Green Crematorium"))) (type fb:people.place_of_interment) What colours suit brown hair and green eyes? Rosa -0.034 formula (and (fb:type.object.type fb:common.topic) (fb:base.horticulture.cultured_plant.foliage_color fb:en.green))) (value (list (name fb:en.rosa_jacqueminot "Rosa 'G��n��ral Jacqueminot'") (name fb:en.vitis_labrusca_niagara "Niagara grape") (name fb:en.vitis_labrusca_catawba Catawba) (name fb:en.wood_spurge "Euphorbia amygdaloides") (name fb:m.0g9j4gs "Rosa 'Amiga Mia'"))) (type fb:base.horticulture.cultured_plant) What colours suit brown hair and green eyes? Niagara grape -0.034 formula (and (fb:type.object.type fb:common.topic) (fb:base.horticulture.cultured_plant.foliage_color fb:en.green))) (value (list (name fb:en.rosa_jacqueminot "Rosa 'G��n��ral Jacqueminot'") (name fb:en.vitis_labrusca_niagara "Niagara grape") (name fb:en.vitis_labrusca_catawba Catawba) (name fb:en.wood_spurge "Euphorbia amygdaloides") (name fb:m.0g9j4gs "Rosa 'Amiga Mia'"))) (type fb:base.horticulture.cultured_plant) What colours suit brown hair and green eyes? Euphorbia amygdaloides -0.034 formula (and (fb:type.object.type fb:common.topic) (fb:base.horticulture.cultured_plant.foliage_color fb:en.green))) (value (list (name fb:en.rosa_jacqueminot "Rosa 'G��n��ral Jacqueminot'") (name fb:en.vitis_labrusca_niagara "Niagara grape") (name fb:en.vitis_labrusca_catawba Catawba) (name fb:en.wood_spurge "Euphorbia amygdaloides") (name fb:m.0g9j4gs "Rosa 'Amiga Mia'"))) (type fb:base.horticulture.cultured_plant) What colours suit brown hair and green eyes? Rosa 'Amiga Mia' -0.034 formula (and (fb:type.object.type fb:common.topic) (fb:base.horticulture.cultured_plant.foliage_color fb:en.green))) (value (list (name fb:en.rosa_jacqueminot "Rosa 'G��n��ral Jacqueminot'") (name fb:en.vitis_labrusca_niagara "Niagara grape") (name fb:en.vitis_labrusca_catawba Catawba) (name fb:en.wood_spurge "Euphorbia amygdaloides") (name fb:m.0g9j4gs "Rosa 'Amiga Mia'"))) (type fb:base.horticulture.cultured_plant) Difference between nontemplate and template strand? University of Chicago -8.01 formula ((lambda x (fb:business.employer.employees (fb:business.employment_tenure.person (var x)))) fb:en.mark_strand)) (value (list (name fb:en.university_of_chicago "University of Chicago") (name fb:en.columbia_university "Columbia University"))) (type fb:business.employer) Difference between nontemplate and template strand? Columbia University -8.01 formula ((lambda x (fb:business.employer.employees (fb:business.employment_tenure.person (var x)))) fb:en.mark_strand)) (value (list (name fb:en.university_of_chicago "University of Chicago") (name fb:en.columbia_university "Columbia University"))) (type fb:business.employer) Is tin more reactive to silver? Silver nitrate -0.478 formula (!fb:medicine.drug_ingredient.more_specific_ingredient fb:en.silver)) (value (list (name fb:en.silver Silver) (name fb:en.silver_nitrate "Silver nitrate") (name fb:m.0hqxtsd "Silver citrate"))) (type fb:medicine.drug_ingredient) Is tin more reactive to silver? Silver citrate -0.478 formula (!fb:medicine.drug_ingredient.more_specific_ingredient fb:en.silver)) (value (list (name fb:en.silver Silver) (name fb:en.silver_nitrate "Silver nitrate") (name fb:m.0hqxtsd "Silver citrate"))) (type fb:medicine.drug_ingredient) Does Venus's revolve around the sun? The Toilet of Venus -2.696 formula (!fb:visual_art.art_subject.artwork_on_the_subject fb:m.09cxs)) (value (list (name fb:en.the_toilet_of_venus "The Toilet of Venus") (name fb:en.venus_and_cupid_at_the_forge_of_vulcan "Venus and Cupid at the Forge of Vulcan") (name fb:en.sleeping_venus "Sleeping Venus") (name fb:en.venus_and_cupid "Venus and Cupid") (name fb:en.the_education_of_cupid "The Education of Cupid") (name fb:en.venus_cupid_folly_and_time "Venus, Cupid, Folly and Time") (name fb:en.venus_jupiter_and_mars "Venus, Jupiter and Mars") (name fb:en.the_rokeby_venus "Rokeby Venus") (name fb:en.primavera Primavera) (name fb:en.colonna_venus "Colonna Venus"))) (type fb:visual_art.artwork) Does Venus's revolve around the sun? Venus and Cupid at the Forge of Vulcan -2.696 formula (!fb:visual_art.art_subject.artwork_on_the_subject fb:m.09cxs)) (value (list (name fb:en.the_toilet_of_venus "The Toilet of Venus") (name fb:en.venus_and_cupid_at_the_forge_of_vulcan "Venus and Cupid at the Forge of Vulcan") (name fb:en.sleeping_venus "Sleeping Venus") (name fb:en.venus_and_cupid "Venus and Cupid") (name fb:en.the_education_of_cupid "The Education of Cupid") (name fb:en.venus_cupid_folly_and_time "Venus, Cupid, Folly and Time") (name fb:en.venus_jupiter_and_mars "Venus, Jupiter and Mars") (name fb:en.the_rokeby_venus "Rokeby Venus") (name fb:en.primavera Primavera) (name fb:en.colonna_venus "Colonna Venus"))) (type fb:visual_art.artwork) Does Venus's revolve around the sun? Sleeping Venus -2.696 formula (!fb:visual_art.art_subject.artwork_on_the_subject fb:m.09cxs)) (value (list (name fb:en.the_toilet_of_venus "The Toilet of Venus") (name fb:en.venus_and_cupid_at_the_forge_of_vulcan "Venus and Cupid at the Forge of Vulcan") (name fb:en.sleeping_venus "Sleeping Venus") (name fb:en.venus_and_cupid "Venus and Cupid") (name fb:en.the_education_of_cupid "The Education of Cupid") (name fb:en.venus_cupid_folly_and_time "Venus, Cupid, Folly and Time") (name fb:en.venus_jupiter_and_mars "Venus, Jupiter and Mars") (name fb:en.the_rokeby_venus "Rokeby Venus") (name fb:en.primavera Primavera) (name fb:en.colonna_venus "Colonna Venus"))) (type fb:visual_art.artwork) Does Venus's revolve around the sun? Venus and Cupid -2.696 formula (!fb:visual_art.art_subject.artwork_on_the_subject fb:m.09cxs)) (value (list (name fb:en.the_toilet_of_venus "The Toilet of Venus") (name fb:en.venus_and_cupid_at_the_forge_of_vulcan "Venus and Cupid at the Forge of Vulcan") (name fb:en.sleeping_venus "Sleeping Venus") (name fb:en.venus_and_cupid "Venus and Cupid") (name fb:en.the_education_of_cupid "The Education of Cupid") (name fb:en.venus_cupid_folly_and_time "Venus, Cupid, Folly and Time") (name fb:en.venus_jupiter_and_mars "Venus, Jupiter and Mars") (name fb:en.the_rokeby_venus "Rokeby Venus") (name fb:en.primavera Primavera) (name fb:en.colonna_venus "Colonna Venus"))) (type fb:visual_art.artwork) Does Venus's revolve around the sun? The Education of Cupid -2.696 formula (!fb:visual_art.art_subject.artwork_on_the_subject fb:m.09cxs)) (value (list (name fb:en.the_toilet_of_venus "The Toilet of Venus") (name fb:en.venus_and_cupid_at_the_forge_of_vulcan "Venus and Cupid at the Forge of Vulcan") (name fb:en.sleeping_venus "Sleeping Venus") (name fb:en.venus_and_cupid "Venus and Cupid") (name fb:en.the_education_of_cupid "The Education of Cupid") (name fb:en.venus_cupid_folly_and_time "Venus, Cupid, Folly and Time") (name fb:en.venus_jupiter_and_mars "Venus, Jupiter and Mars") (name fb:en.the_rokeby_venus "Rokeby Venus") (name fb:en.primavera Primavera) (name fb:en.colonna_venus "Colonna Venus"))) (type fb:visual_art.artwork) Does Venus's revolve around the sun? Venus, Cupid, Folly and Time -2.696 formula (!fb:visual_art.art_subject.artwork_on_the_subject fb:m.09cxs)) (value (list (name fb:en.the_toilet_of_venus "The Toilet of Venus") (name fb:en.venus_and_cupid_at_the_forge_of_vulcan "Venus and Cupid at the Forge of Vulcan") (name fb:en.sleeping_venus "Sleeping Venus") (name fb:en.venus_and_cupid "Venus and Cupid") (name fb:en.the_education_of_cupid "The Education of Cupid") (name fb:en.venus_cupid_folly_and_time "Venus, Cupid, Folly and Time") (name fb:en.venus_jupiter_and_mars "Venus, Jupiter and Mars") (name fb:en.the_rokeby_venus "Rokeby Venus") (name fb:en.primavera Primavera) (name fb:en.colonna_venus "Colonna Venus"))) (type fb:visual_art.artwork) Does Venus's revolve around the sun? Venus, Jupiter and Mars -2.696 formula (!fb:visual_art.art_subject.artwork_on_the_subject fb:m.09cxs)) (value (list (name fb:en.the_toilet_of_venus "The Toilet of Venus") (name fb:en.venus_and_cupid_at_the_forge_of_vulcan "Venus and Cupid at the Forge of Vulcan") (name fb:en.sleeping_venus "Sleeping Venus") (name fb:en.venus_and_cupid "Venus and Cupid") (name fb:en.the_education_of_cupid "The Education of Cupid") (name fb:en.venus_cupid_folly_and_time "Venus, Cupid, Folly and Time") (name fb:en.venus_jupiter_and_mars "Venus, Jupiter and Mars") (name fb:en.the_rokeby_venus "Rokeby Venus") (name fb:en.primavera Primavera) (name fb:en.colonna_venus "Colonna Venus"))) (type fb:visual_art.artwork) Does Venus's revolve around the sun? Rokeby Venus -2.696 formula (!fb:visual_art.art_subject.artwork_on_the_subject fb:m.09cxs)) (value (list (name fb:en.the_toilet_of_venus "The Toilet of Venus") (name fb:en.venus_and_cupid_at_the_forge_of_vulcan "Venus and Cupid at the Forge of Vulcan") (name fb:en.sleeping_venus "Sleeping Venus") (name fb:en.venus_and_cupid "Venus and Cupid") (name fb:en.the_education_of_cupid "The Education of Cupid") (name fb:en.venus_cupid_folly_and_time "Venus, Cupid, Folly and Time") (name fb:en.venus_jupiter_and_mars "Venus, Jupiter and Mars") (name fb:en.the_rokeby_venus "Rokeby Venus") (name fb:en.primavera Primavera) (name fb:en.colonna_venus "Colonna Venus"))) (type fb:visual_art.artwork) Does Venus's revolve around the sun? Colonna Venus -2.696 formula (!fb:visual_art.art_subject.artwork_on_the_subject fb:m.09cxs)) (value (list (name fb:en.the_toilet_of_venus "The Toilet of Venus") (name fb:en.venus_and_cupid_at_the_forge_of_vulcan "Venus and Cupid at the Forge of Vulcan") (name fb:en.sleeping_venus "Sleeping Venus") (name fb:en.venus_and_cupid "Venus and Cupid") (name fb:en.the_education_of_cupid "The Education of Cupid") (name fb:en.venus_cupid_folly_and_time "Venus, Cupid, Folly and Time") (name fb:en.venus_jupiter_and_mars "Venus, Jupiter and Mars") (name fb:en.the_rokeby_venus "Rokeby Venus") (name fb:en.primavera Primavera) (name fb:en.colonna_venus "Colonna Venus"))) (type fb:visual_art.artwork) Is baby a concrete noun? Boryspil International Airport -2.177 formula ((lambda x (fb:aviation.airport.runway_information (fb:aviation.airport_runway.surface (var x)))) fb:en.concrete)) (value (list (name fb:en.boryspil_airport "Boryspil International Airport") (name fb:en.denver_international_airport "Denver International Airport") (name fb:en.kiev-zhulyany_airport "Kyiv Zhuliany International Airport") (name fb:en.dnipropetrovsk_international_airport "Dnipropetrovsk International Airport") (name fb:en.sokol_airport "Sokol Airport") (name fb:en.stuttgart_airport "Stuttgart Airport") (name fb:en.cambridge_airport "Cambridge Airport") (name fb:en.nasa_shuttle_landing_facility "Shuttle Landing Facility"))) (type fb:aviation.airport) Is baby a concrete noun? Denver International Airport -2.177 formula ((lambda x (fb:aviation.airport.runway_information (fb:aviation.airport_runway.surface (var x)))) fb:en.concrete)) (value (list (name fb:en.boryspil_airport "Boryspil International Airport") (name fb:en.denver_international_airport "Denver International Airport") (name fb:en.kiev-zhulyany_airport "Kyiv Zhuliany International Airport") (name fb:en.dnipropetrovsk_international_airport "Dnipropetrovsk International Airport") (name fb:en.sokol_airport "Sokol Airport") (name fb:en.stuttgart_airport "Stuttgart Airport") (name fb:en.cambridge_airport "Cambridge Airport") (name fb:en.nasa_shuttle_landing_facility "Shuttle Landing Facility"))) (type fb:aviation.airport) Is baby a concrete noun? Kyiv Zhuliany International Airport -2.177 formula ((lambda x (fb:aviation.airport.runway_information (fb:aviation.airport_runway.surface (var x)))) fb:en.concrete)) (value (list (name fb:en.boryspil_airport "Boryspil International Airport") (name fb:en.denver_international_airport "Denver International Airport") (name fb:en.kiev-zhulyany_airport "Kyiv Zhuliany International Airport") (name fb:en.dnipropetrovsk_international_airport "Dnipropetrovsk International Airport") (name fb:en.sokol_airport "Sokol Airport") (name fb:en.stuttgart_airport "Stuttgart Airport") (name fb:en.cambridge_airport "Cambridge Airport") (name fb:en.nasa_shuttle_landing_facility "Shuttle Landing Facility"))) (type fb:aviation.airport) Is baby a concrete noun? Dnipropetrovsk International Airport -2.177 formula ((lambda x (fb:aviation.airport.runway_information (fb:aviation.airport_runway.surface (var x)))) fb:en.concrete)) (value (list (name fb:en.boryspil_airport "Boryspil International Airport") (name fb:en.denver_international_airport "Denver International Airport") (name fb:en.kiev-zhulyany_airport "Kyiv Zhuliany International Airport") (name fb:en.dnipropetrovsk_international_airport "Dnipropetrovsk International Airport") (name fb:en.sokol_airport "Sokol Airport") (name fb:en.stuttgart_airport "Stuttgart Airport") (name fb:en.cambridge_airport "Cambridge Airport") (name fb:en.nasa_shuttle_landing_facility "Shuttle Landing Facility"))) (type fb:aviation.airport) Is baby a concrete noun? Sokol Airport -2.177 formula ((lambda x (fb:aviation.airport.runway_information (fb:aviation.airport_runway.surface (var x)))) fb:en.concrete)) (value (list (name fb:en.boryspil_airport "Boryspil International Airport") (name fb:en.denver_international_airport "Denver International Airport") (name fb:en.kiev-zhulyany_airport "Kyiv Zhuliany International Airport") (name fb:en.dnipropetrovsk_international_airport "Dnipropetrovsk International Airport") (name fb:en.sokol_airport "Sokol Airport") (name fb:en.stuttgart_airport "Stuttgart Airport") (name fb:en.cambridge_airport "Cambridge Airport") (name fb:en.nasa_shuttle_landing_facility "Shuttle Landing Facility"))) (type fb:aviation.airport) Is baby a concrete noun? Stuttgart Airport -2.177 formula ((lambda x (fb:aviation.airport.runway_information (fb:aviation.airport_runway.surface (var x)))) fb:en.concrete)) (value (list (name fb:en.boryspil_airport "Boryspil International Airport") (name fb:en.denver_international_airport "Denver International Airport") (name fb:en.kiev-zhulyany_airport "Kyiv Zhuliany International Airport") (name fb:en.dnipropetrovsk_international_airport "Dnipropetrovsk International Airport") (name fb:en.sokol_airport "Sokol Airport") (name fb:en.stuttgart_airport "Stuttgart Airport") (name fb:en.cambridge_airport "Cambridge Airport") (name fb:en.nasa_shuttle_landing_facility "Shuttle Landing Facility"))) (type fb:aviation.airport) Is baby a concrete noun? Cambridge Airport -2.177 formula ((lambda x (fb:aviation.airport.runway_information (fb:aviation.airport_runway.surface (var x)))) fb:en.concrete)) (value (list (name fb:en.boryspil_airport "Boryspil International Airport") (name fb:en.denver_international_airport "Denver International Airport") (name fb:en.kiev-zhulyany_airport "Kyiv Zhuliany International Airport") (name fb:en.dnipropetrovsk_international_airport "Dnipropetrovsk International Airport") (name fb:en.sokol_airport "Sokol Airport") (name fb:en.stuttgart_airport "Stuttgart Airport") (name fb:en.cambridge_airport "Cambridge Airport") (name fb:en.nasa_shuttle_landing_facility "Shuttle Landing Facility"))) (type fb:aviation.airport) Is baby a concrete noun? Shuttle Landing Facility -2.177 formula ((lambda x (fb:aviation.airport.runway_information (fb:aviation.airport_runway.surface (var x)))) fb:en.concrete)) (value (list (name fb:en.boryspil_airport "Boryspil International Airport") (name fb:en.denver_international_airport "Denver International Airport") (name fb:en.kiev-zhulyany_airport "Kyiv Zhuliany International Airport") (name fb:en.dnipropetrovsk_international_airport "Dnipropetrovsk International Airport") (name fb:en.sokol_airport "Sokol Airport") (name fb:en.stuttgart_airport "Stuttgart Airport") (name fb:en.cambridge_airport "Cambridge Airport") (name fb:en.nasa_shuttle_landing_facility "Shuttle Landing Facility"))) (type fb:aviation.airport) What is early system in operating system? KDE Display Manager -0.266 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:computer.software.compatible_oses (fb:computer.software_compatibility.operating_system (var x)))) fb:en.solaris_operating_system))) (value (list (name fb:en.kdm "KDE Display Manager") (name fb:en.shanes_chess_information_database "Shane's Chess Information Database") (name fb:en.mercurial Mercurial) (name fb:en.coldfusion ColdFusion) (name fb:en.adobe_photoshop "Adobe Photoshop") (name fb:en.openbravo Openbravo) (name fb:en.openameos OpenAmeos) (name fb:en.magicdraw_uml MagicDraw) (name fb:en.mysql MySQL) (name fb:m.02v_74c Cinderella))) (type fb:computer.software) What is early system in operating system? Shane's Chess Information Database -0.266 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:computer.software.compatible_oses (fb:computer.software_compatibility.operating_system (var x)))) fb:en.solaris_operating_system))) (value (list (name fb:en.kdm "KDE Display Manager") (name fb:en.shanes_chess_information_database "Shane's Chess Information Database") (name fb:en.mercurial Mercurial) (name fb:en.coldfusion ColdFusion) (name fb:en.adobe_photoshop "Adobe Photoshop") (name fb:en.openbravo Openbravo) (name fb:en.openameos OpenAmeos) (name fb:en.magicdraw_uml MagicDraw) (name fb:en.mysql MySQL) (name fb:m.02v_74c Cinderella))) (type fb:computer.software) What is early system in operating system? Adobe Photoshop -0.266 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:computer.software.compatible_oses (fb:computer.software_compatibility.operating_system (var x)))) fb:en.solaris_operating_system))) (value (list (name fb:en.kdm "KDE Display Manager") (name fb:en.shanes_chess_information_database "Shane's Chess Information Database") (name fb:en.mercurial Mercurial) (name fb:en.coldfusion ColdFusion) (name fb:en.adobe_photoshop "Adobe Photoshop") (name fb:en.openbravo Openbravo) (name fb:en.openameos OpenAmeos) (name fb:en.magicdraw_uml MagicDraw) (name fb:en.mysql MySQL) (name fb:m.02v_74c Cinderella))) (type fb:computer.software) What kind of cell has a nonspontaneous voltage? Double bass -1.586 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:music.performance_role.guest_performances (fb:music.recording_contribution.album (var x)))) fb:en.kind_of_blue))) (value (list (name fb:en.piano Piano) (name fb:en.drum Drum) (name fb:en.double_bass "Double bass") (name fb:en.alto_saxophone "Alto saxophone") (name fb:en.trumpet Trumpet) (name fb:en.tenor_saxophone "Tenor saxophone"))) (type fb:music.performance_role) What kind of cell has a nonspontaneous voltage? Alto saxophone -1.586 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:music.performance_role.guest_performances (fb:music.recording_contribution.album (var x)))) fb:en.kind_of_blue))) (value (list (name fb:en.piano Piano) (name fb:en.drum Drum) (name fb:en.double_bass "Double bass") (name fb:en.alto_saxophone "Alto saxophone") (name fb:en.trumpet Trumpet) (name fb:en.tenor_saxophone "Tenor saxophone"))) (type fb:music.performance_role) What kind of cell has a nonspontaneous voltage? Tenor saxophone -1.586 formula (and (fb:type.object.type fb:common.topic) ((lambda x (fb:music.performance_role.guest_performances (fb:music.recording_contribution.album (var x)))) fb:en.kind_of_blue))) (value (list (name fb:en.piano Piano) (name fb:en.drum Drum) (name fb:en.double_bass "Double bass") (name fb:en.alto_saxophone "Alto saxophone") (name fb:en.trumpet Trumpet) (name fb:en.tenor_saxophone "Tenor saxophone"))) (type fb:music.performance_role) What is the relative location of South Africa? South Africa national football team 1.023 formula (and (fb:type.object.type fb:common.topic) (fb:sports.sports_team.location fb:en.south_africa))) (value (list (name fb:en.south_africa_national_football_team "South Africa national football team") (name fb:en.south_african_cricket_team "South Africa national cricket team") (name fb:en.south_africa_national_netball_team "South Africa national netball team") (name fb:en.south_african_national_australian_rules_football_team "South Africa national Australian rules football team") (name fb:en.south_africa_national_korfball_team "South Africa national korfball team") (name fb:en.south_africa_national_beach_soccer_team "South Africa national beach soccer team") (name fb:en.south_africa_fed_cup_team "South Africa Fed Cup team") (name fb:en.south_africa_national_rugby_union_team "South Africa national rugby union team") (name fb:en.south_africa_national_baseball_team "South Africa national baseball team") (name fb:en.south_africa_womens_national_rugby_union_team "South Africa women's national rugby union team"))) (type fb:sports.sports_team) What is the relative location of South Africa? South Africa national cricket team 1.023 formula (and (fb:type.object.type fb:common.topic) (fb:sports.sports_team.location fb:en.south_africa))) (value (list (name fb:en.south_africa_national_football_team "South Africa national football team") (name fb:en.south_african_cricket_team "South Africa national cricket team") (name fb:en.south_africa_national_netball_team "South Africa national netball team") (name fb:en.south_african_national_australian_rules_football_team "South Africa national Australian rules football team") (name fb:en.south_africa_national_korfball_team "South Africa national korfball team") (name fb:en.south_africa_national_beach_soccer_team "South Africa national beach soccer team") (name fb:en.south_africa_fed_cup_team "South Africa Fed Cup team") (name fb:en.south_africa_national_rugby_union_team "South Africa national rugby union team") (name fb:en.south_africa_national_baseball_team "South Africa national baseball team") (name fb:en.south_africa_womens_national_rugby_union_team "South Africa women's national rugby union team"))) (type fb:sports.sports_team) What is the relative location of South Africa? South Africa national netball team 1.023 formula (and (fb:type.object.type fb:common.topic) (fb:sports.sports_team.location fb:en.south_africa))) (value (list (name fb:en.south_africa_national_football_team "South Africa national football team") (name fb:en.south_african_cricket_team "South Africa national cricket team") (name fb:en.south_africa_national_netball_team "South Africa national netball team") (name fb:en.south_african_national_australian_rules_football_team "South Africa national Australian rules football team") (name fb:en.south_africa_national_korfball_team "South Africa national korfball team") (name fb:en.south_africa_national_beach_soccer_team "South Africa national beach soccer team") (name fb:en.south_africa_fed_cup_team "South Africa Fed Cup team") (name fb:en.south_africa_national_rugby_union_team "South Africa national rugby union team") (name fb:en.south_africa_national_baseball_team "South Africa national baseball team") (name fb:en.south_africa_womens_national_rugby_union_team "South Africa women's national rugby union team"))) (type fb:sports.sports_team) What is the relative location of South Africa? South Africa national Australian rules football team 1.023 formula (and (fb:type.object.type fb:common.topic) (fb:sports.sports_team.location fb:en.south_africa))) (value (list (name fb:en.south_africa_national_football_team "South Africa national football team") (name fb:en.south_african_cricket_team "South Africa national cricket team") (name fb:en.south_africa_national_netball_team "South Africa national netball team") (name fb:en.south_african_national_australian_rules_football_team "South Africa national Australian rules football team") (name fb:en.south_africa_national_korfball_team "South Africa national korfball team") (name fb:en.south_africa_national_beach_soccer_team "South Africa national beach soccer team") (name fb:en.south_africa_fed_cup_team "South Africa Fed Cup team") (name fb:en.south_africa_national_rugby_union_team "South Africa national rugby union team") (name fb:en.south_africa_national_baseball_team "South Africa national baseball team") (name fb:en.south_africa_womens_national_rugby_union_team "South Africa women's national rugby union team"))) (type fb:sports.sports_team) What is the relative location of South Africa? South Africa national korfball team 1.023 formula (and (fb:type.object.type fb:common.topic) (fb:sports.sports_team.location fb:en.south_africa))) (value (list (name fb:en.south_africa_national_football_team "South Africa national football team") (name fb:en.south_african_cricket_team "South Africa national cricket team") (name fb:en.south_africa_national_netball_team "South Africa national netball team") (name fb:en.south_african_national_australian_rules_football_team "South Africa national Australian rules football team") (name fb:en.south_africa_national_korfball_team "South Africa national korfball team") (name fb:en.south_africa_national_beach_soccer_team "South Africa national beach soccer team") (name fb:en.south_africa_fed_cup_team "South Africa Fed Cup team") (name fb:en.south_africa_national_rugby_union_team "South Africa national rugby union team") (name fb:en.south_africa_national_baseball_team "South Africa national baseball team") (name fb:en.south_africa_womens_national_rugby_union_team "South Africa women's national rugby union team"))) (type fb:sports.sports_team) What is the relative location of South Africa? South Africa national beach soccer team 1.023 formula (and (fb:type.object.type fb:common.topic) (fb:sports.sports_team.location fb:en.south_africa))) (value (list (name fb:en.south_africa_national_football_team "South Africa national football team") (name fb:en.south_african_cricket_team "South Africa national cricket team") (name fb:en.south_africa_national_netball_team "South Africa national netball team") (name fb:en.south_african_national_australian_rules_football_team "South Africa national Australian rules football team") (name fb:en.south_africa_national_korfball_team "South Africa national korfball team") (name fb:en.south_africa_national_beach_soccer_team "South Africa national beach soccer team") (name fb:en.south_africa_fed_cup_team "South Africa Fed Cup team") (name fb:en.south_africa_national_rugby_union_team "South Africa national rugby union team") (name fb:en.south_africa_national_baseball_team "South Africa national baseball team") (name fb:en.south_africa_womens_national_rugby_union_team "South Africa women's national rugby union team"))) (type fb:sports.sports_team) What is the relative location of South Africa? South Africa Fed Cup team 1.023 formula (and (fb:type.object.type fb:common.topic) (fb:sports.sports_team.location fb:en.south_africa))) (value (list (name fb:en.south_africa_national_football_team "South Africa national football team") (name fb:en.south_african_cricket_team "South Africa national cricket team") (name fb:en.south_africa_national_netball_team "South Africa national netball team") (name fb:en.south_african_national_australian_rules_football_team "South Africa national Australian rules football team") (name fb:en.south_africa_national_korfball_team "South Africa national korfball team") (name fb:en.south_africa_national_beach_soccer_team "South Africa national beach soccer team") (name fb:en.south_africa_fed_cup_team "South Africa Fed Cup team") (name fb:en.south_africa_national_rugby_union_team "South Africa national rugby union team") (name fb:en.south_africa_national_baseball_team "South Africa national baseball team") (name fb:en.south_africa_womens_national_rugby_union_team "South Africa women's national rugby union team"))) (type fb:sports.sports_team) What is the relative location of South Africa? South Africa national rugby union team 1.023 formula (and (fb:type.object.type fb:common.topic) (fb:sports.sports_team.location fb:en.south_africa))) (value (list (name fb:en.south_africa_national_football_team "South Africa national football team") (name fb:en.south_african_cricket_team "South Africa national cricket team") (name fb:en.south_africa_national_netball_team "South Africa national netball team") (name fb:en.south_african_national_australian_rules_football_team "South Africa national Australian rules football team") (name fb:en.south_africa_national_korfball_team "South Africa national korfball team") (name fb:en.south_africa_national_beach_soccer_team "South Africa national beach soccer team") (name fb:en.south_africa_fed_cup_team "South Africa Fed Cup team") (name fb:en.south_africa_national_rugby_union_team "South Africa national rugby union team") (name fb:en.south_africa_national_baseball_team "South Africa national baseball team") (name fb:en.south_africa_womens_national_rugby_union_team "South Africa women's national rugby union team"))) (type fb:sports.sports_team) What is the relative location of South Africa? South Africa national baseball team 1.023 formula (and (fb:type.object.type fb:common.topic) (fb:sports.sports_team.location fb:en.south_africa))) (value (list (name fb:en.south_africa_national_football_team "South Africa national football team") (name fb:en.south_african_cricket_team "South Africa national cricket team") (name fb:en.south_africa_national_netball_team "South Africa national netball team") (name fb:en.south_african_national_australian_rules_football_team "South Africa national Australian rules football team") (name fb:en.south_africa_national_korfball_team "South Africa national korfball team") (name fb:en.south_africa_national_beach_soccer_team "South Africa national beach soccer team") (name fb:en.south_africa_fed_cup_team "South Africa Fed Cup team") (name fb:en.south_africa_national_rugby_union_team "South Africa national rugby union team") (name fb:en.south_africa_national_baseball_team "South Africa national baseball team") (name fb:en.south_africa_womens_national_rugby_union_team "South Africa women's national rugby union team"))) (type fb:sports.sports_team) What is the relative location of South Africa? South Africa women's national rugby union team 1.023 formula (and (fb:type.object.type fb:common.topic) (fb:sports.sports_team.location fb:en.south_africa))) (value (list (name fb:en.south_africa_national_football_team "South Africa national football team") (name fb:en.south_african_cricket_team "South Africa national cricket team") (name fb:en.south_africa_national_netball_team "South Africa national netball team") (name fb:en.south_african_national_australian_rules_football_team "South Africa national Australian rules football team") (name fb:en.south_africa_national_korfball_team "South Africa national korfball team") (name fb:en.south_africa_national_beach_soccer_team "South Africa national beach soccer team") (name fb:en.south_africa_fed_cup_team "South Africa Fed Cup team") (name fb:en.south_africa_national_rugby_union_team "South Africa national rugby union team") (name fb:en.south_africa_national_baseball_team "South Africa national baseball team") (name fb:en.south_africa_womens_national_rugby_union_team "South Africa women's national rugby union team"))) (type fb:sports.sports_team) The wonderful Wizard of Oz was written by? L. Frank Baum -1.754 formula (fb:book.author.works_written fb:m.06bphdt)) (value (list (name fb:en.l_frank_baum "L. Frank Baum") (name fb:en.grace_mabie "Grace Mabie"))) (type fb:book.author) The wonderful Wizard of Oz was written by? Grace Mabie -1.754 formula (fb:book.author.works_written fb:m.06bphdt)) (value (list (name fb:en.l_frank_baum "L. Frank Baum") (name fb:en.grace_mabie "Grace Mabie"))) (type fb:book.author) Which is not a component of ignition system? Scene 3D Rendering... Ignition Systems BREMI Premium Car Systems... Ignition Coil -10.286 formula (fb:common.image.appears_in_topic_gallery fb:en.ignition_system)) (value (list (name fb:m.0h5qcls "Scene 3D Rendering... Ignition Systems BREMI Premium Car Systems... Ignition Coil") (name fb:m.0h5rm8n "Bremi Ignition Parts") (name fb:m.02f1cg1 Verdelerkap) (name fb:m.078tjkn Magnetzuend))) (type fb:common.image) Which is not a component of ignition system? Bremi Ignition Parts -10.286 formula (fb:common.image.appears_in_topic_gallery fb:en.ignition_system)) (value (list (name fb:m.0h5qcls "Scene 3D Rendering... Ignition Systems BREMI Premium Car Systems... Ignition Coil") (name fb:m.0h5rm8n "Bremi Ignition Parts") (name fb:m.02f1cg1 Verdelerkap) (name fb:m.078tjkn Magnetzuend))) (type fb:common.image) What are Colorado's longitude and latitude? Rocky Mountain PBS -1.988 formula (and (fb:type.object.type fb:common.topic) (fb:broadcast.broadcast.area_served fb:en.colorado))) (value (list (name fb:en.kfka KFKA) (name fb:en.rocky_mountain_pbs "Rocky Mountain PBS"))) (type fb:broadcast.broadcast) How is chlamydia transmitted? Entertainment Weekly annotation index -4.558 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.sexually_transmitted_disease)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index"))) (type fb:common.annotation_index) How is chlamydia transmitted? WSJ Speakeasy Index -4.558 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.sexually_transmitted_disease)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index"))) (type fb:common.annotation_index) What animal is not a vertebrate? Two Monkeys Stealing Fruit from a Basket -2.736 formula (and (fb:type.object.type fb:common.topic) (!fb:visual_art.art_subject.artwork_on_the_subject fb:en.animalia_101))) (value (list (name fb:en.two_monkeys_stealing_fruit_from_a_basket "Two Monkeys Stealing Fruit from a Basket") (name fb:m.05bh6mr "Fruit and Vegetables with a Monkey, Parrot and Squirrel"))) (type fb:visual_art.artwork) What animal is not a vertebrate? Fruit and Vegetables with a Monkey, Parrot and Squirrel -2.736 formula (and (fb:type.object.type fb:common.topic) (!fb:visual_art.art_subject.artwork_on_the_subject fb:en.animalia_101))) (value (list (name fb:en.two_monkeys_stealing_fruit_from_a_basket "Two Monkeys Stealing Fruit from a Basket") (name fb:m.05bh6mr "Fruit and Vegetables with a Monkey, Parrot and Squirrel"))) (type fb:visual_art.artwork) Did the Vietnam war start before world war 2? Battle of Hill 881 -0.576 formula (and (fb:type.object.type fb:military.military_conflict) (fb:time.event.included_in_event fb:en.vietnam_war))) (value (list (name fb:en.battle_of_hill_881 "Battle of Hill 881") (name fb:en.operation_barrell_roll "Operation Barrel Roll") (name fb:en.battle_of_hamburger_hill "Battle of Hamburger Hill") (name fb:en.operation_starlite "Operation Starlite") (name fb:en.secret_war "Laotian Civil War") (name fb:m.0ch447g "Battle of Prek Klok II") (name fb:m.0ddgjm4 "Operation Coronado II") (name fb:en.battle_of_kompong_speu "Battle of Kompong Speu") (name fb:en.operation_union "Operation Union") (name fb:en.operation_swift "Operation Swift"))) (type (union fb:military.military_conflict)) Did the Vietnam war start before world war 2? Operation Barrel Roll -0.576 formula (and (fb:type.object.type fb:military.military_conflict) (fb:time.event.included_in_event fb:en.vietnam_war))) (value (list (name fb:en.battle_of_hill_881 "Battle of Hill 881") (name fb:en.operation_barrell_roll "Operation Barrel Roll") (name fb:en.battle_of_hamburger_hill "Battle of Hamburger Hill") (name fb:en.operation_starlite "Operation Starlite") (name fb:en.secret_war "Laotian Civil War") (name fb:m.0ch447g "Battle of Prek Klok II") (name fb:m.0ddgjm4 "Operation Coronado II") (name fb:en.battle_of_kompong_speu "Battle of Kompong Speu") (name fb:en.operation_union "Operation Union") (name fb:en.operation_swift "Operation Swift"))) (type (union fb:military.military_conflict)) Did the Vietnam war start before world war 2? Battle of Hamburger Hill -0.576 formula (and (fb:type.object.type fb:military.military_conflict) (fb:time.event.included_in_event fb:en.vietnam_war))) (value (list (name fb:en.battle_of_hill_881 "Battle of Hill 881") (name fb:en.operation_barrell_roll "Operation Barrel Roll") (name fb:en.battle_of_hamburger_hill "Battle of Hamburger Hill") (name fb:en.operation_starlite "Operation Starlite") (name fb:en.secret_war "Laotian Civil War") (name fb:m.0ch447g "Battle of Prek Klok II") (name fb:m.0ddgjm4 "Operation Coronado II") (name fb:en.battle_of_kompong_speu "Battle of Kompong Speu") (name fb:en.operation_union "Operation Union") (name fb:en.operation_swift "Operation Swift"))) (type (union fb:military.military_conflict)) Did the Vietnam war start before world war 2? Operation Starlite -0.576 formula (and (fb:type.object.type fb:military.military_conflict) (fb:time.event.included_in_event fb:en.vietnam_war))) (value (list (name fb:en.battle_of_hill_881 "Battle of Hill 881") (name fb:en.operation_barrell_roll "Operation Barrel Roll") (name fb:en.battle_of_hamburger_hill "Battle of Hamburger Hill") (name fb:en.operation_starlite "Operation Starlite") (name fb:en.secret_war "Laotian Civil War") (name fb:m.0ch447g "Battle of Prek Klok II") (name fb:m.0ddgjm4 "Operation Coronado II") (name fb:en.battle_of_kompong_speu "Battle of Kompong Speu") (name fb:en.operation_union "Operation Union") (name fb:en.operation_swift "Operation Swift"))) (type (union fb:military.military_conflict)) Did the Vietnam war start before world war 2? Laotian Civil War -0.576 formula (and (fb:type.object.type fb:military.military_conflict) (fb:time.event.included_in_event fb:en.vietnam_war))) (value (list (name fb:en.battle_of_hill_881 "Battle of Hill 881") (name fb:en.operation_barrell_roll "Operation Barrel Roll") (name fb:en.battle_of_hamburger_hill "Battle of Hamburger Hill") (name fb:en.operation_starlite "Operation Starlite") (name fb:en.secret_war "Laotian Civil War") (name fb:m.0ch447g "Battle of Prek Klok II") (name fb:m.0ddgjm4 "Operation Coronado II") (name fb:en.battle_of_kompong_speu "Battle of Kompong Speu") (name fb:en.operation_union "Operation Union") (name fb:en.operation_swift "Operation Swift"))) (type (union fb:military.military_conflict)) Did the Vietnam war start before world war 2? Battle of Prek Klok II -0.576 formula (and (fb:type.object.type fb:military.military_conflict) (fb:time.event.included_in_event fb:en.vietnam_war))) (value (list (name fb:en.battle_of_hill_881 "Battle of Hill 881") (name fb:en.operation_barrell_roll "Operation Barrel Roll") (name fb:en.battle_of_hamburger_hill "Battle of Hamburger Hill") (name fb:en.operation_starlite "Operation Starlite") (name fb:en.secret_war "Laotian Civil War") (name fb:m.0ch447g "Battle of Prek Klok II") (name fb:m.0ddgjm4 "Operation Coronado II") (name fb:en.battle_of_kompong_speu "Battle of Kompong Speu") (name fb:en.operation_union "Operation Union") (name fb:en.operation_swift "Operation Swift"))) (type (union fb:military.military_conflict)) Did the Vietnam war start before world war 2? Operation Coronado II -0.576 formula (and (fb:type.object.type fb:military.military_conflict) (fb:time.event.included_in_event fb:en.vietnam_war))) (value (list (name fb:en.battle_of_hill_881 "Battle of Hill 881") (name fb:en.operation_barrell_roll "Operation Barrel Roll") (name fb:en.battle_of_hamburger_hill "Battle of Hamburger Hill") (name fb:en.operation_starlite "Operation Starlite") (name fb:en.secret_war "Laotian Civil War") (name fb:m.0ch447g "Battle of Prek Klok II") (name fb:m.0ddgjm4 "Operation Coronado II") (name fb:en.battle_of_kompong_speu "Battle of Kompong Speu") (name fb:en.operation_union "Operation Union") (name fb:en.operation_swift "Operation Swift"))) (type (union fb:military.military_conflict)) Did the Vietnam war start before world war 2? Battle of Kompong Speu -0.576 formula (and (fb:type.object.type fb:military.military_conflict) (fb:time.event.included_in_event fb:en.vietnam_war))) (value (list (name fb:en.battle_of_hill_881 "Battle of Hill 881") (name fb:en.operation_barrell_roll "Operation Barrel Roll") (name fb:en.battle_of_hamburger_hill "Battle of Hamburger Hill") (name fb:en.operation_starlite "Operation Starlite") (name fb:en.secret_war "Laotian Civil War") (name fb:m.0ch447g "Battle of Prek Klok II") (name fb:m.0ddgjm4 "Operation Coronado II") (name fb:en.battle_of_kompong_speu "Battle of Kompong Speu") (name fb:en.operation_union "Operation Union") (name fb:en.operation_swift "Operation Swift"))) (type (union fb:military.military_conflict)) Did the Vietnam war start before world war 2? Operation Union -0.576 formula (and (fb:type.object.type fb:military.military_conflict) (fb:time.event.included_in_event fb:en.vietnam_war))) (value (list (name fb:en.battle_of_hill_881 "Battle of Hill 881") (name fb:en.operation_barrell_roll "Operation Barrel Roll") (name fb:en.battle_of_hamburger_hill "Battle of Hamburger Hill") (name fb:en.operation_starlite "Operation Starlite") (name fb:en.secret_war "Laotian Civil War") (name fb:m.0ch447g "Battle of Prek Klok II") (name fb:m.0ddgjm4 "Operation Coronado II") (name fb:en.battle_of_kompong_speu "Battle of Kompong Speu") (name fb:en.operation_union "Operation Union") (name fb:en.operation_swift "Operation Swift"))) (type (union fb:military.military_conflict)) Did the Vietnam war start before world war 2? Operation Swift -0.576 formula (and (fb:type.object.type fb:military.military_conflict) (fb:time.event.included_in_event fb:en.vietnam_war))) (value (list (name fb:en.battle_of_hill_881 "Battle of Hill 881") (name fb:en.operation_barrell_roll "Operation Barrel Roll") (name fb:en.battle_of_hamburger_hill "Battle of Hamburger Hill") (name fb:en.operation_starlite "Operation Starlite") (name fb:en.secret_war "Laotian Civil War") (name fb:m.0ch447g "Battle of Prek Klok II") (name fb:m.0ddgjm4 "Operation Coronado II") (name fb:en.battle_of_kompong_speu "Battle of Kompong Speu") (name fb:en.operation_union "Operation Union") (name fb:en.operation_swift "Operation Swift"))) (type (union fb:military.military_conflict)) What is the largest county in Kentucky? Blissful Master Index -2.815 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.kentucky))) (value (list (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) What is the largest county in Kentucky? Blissful Celebrities -2.815 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.kentucky))) (value (list (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) What iS Donald Trump's handicap? Blissful Master Index -2.242 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.donald_trump))) (value (list (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) What iS Donald Trump's handicap? Blissful Celebrities -2.242 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.donald_trump))) (value (list (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) Is karpagam university genuine? Entertainment Weekly annotation index -4.417 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.university)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index"))) (type fb:common.annotation_index) Is karpagam university genuine? WSJ Speakeasy Index -4.417 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.university)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index"))) (type fb:common.annotation_index) In what year did Jason Lancaster leave Mayday Parade? Blissful Master Index -3.446 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.mayday_parade))) (value (list (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) In what year did Jason Lancaster leave Mayday Parade? Blissful Celebrities -3.446 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.mayday_parade))) (value (list (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) How many kids in India get married? Internet users as percentage of population, World Development Indicators, World Bank -2.799 formula ((lambda x (!fb:measurement_unit.dated_percentage.source (!fb:location.statistical_region.internet_users_percent_population (var x)))) fb:en.india)) (value (list (name fb:g.1245ywqx8 "Internet users as percentage of population, World Development Indicators, World Bank") (name fb:m.0ndnhc0 "Internet users as percentage of population, World Development Indicators and Global Development Finance, World Bank"))) (type fb:dataworld.information_source) How many kids in India get married? Internet users as percentage of population, World Development Indicators and Global Development Finance, World Bank -2.799 formula ((lambda x (!fb:measurement_unit.dated_percentage.source (!fb:location.statistical_region.internet_users_percent_population (var x)))) fb:en.india)) (value (list (name fb:g.1245ywqx8 "Internet users as percentage of population, World Development Indicators, World Bank") (name fb:m.0ndnhc0 "Internet users as percentage of population, World Development Indicators and Global Development Finance, World Bank"))) (type fb:dataworld.information_source) Magnesium oxide ionic or molecular? Molecular Sciences Institute -4.034 formula (!fb:organization.organization_sector.organizations_in_this_sector fb:en.molecular_biology)) (value (list (name fb:en.molecular_sciences_institute "Molecular Sciences Institute"))) (type fb:organization.organization) What are some quotes form they poured fire on us from the sky? Fire is never a gentle master 3.566 formula (and (fb:type.object.type fb:common.topic) (and (fb:type.object.type fb:media_common.quotation) (!fb:media_common.quotation_subject.quotations_about_this_subject fb:en.fire)))) (value (list (name fb:en.fire_is_never_a_gentle_master "Fire is never a gentle master"))) (type fb:media_common.quotation) What tissues are infected by cholera? Pathogenic bacteria -6.2 formula (and (fb:type.object.type fb:common.topic) (!fb:medicine.infectious_disease.infectious_agent_type fb:en.cholera))) (value (list (name fb:en.virus Virus) (name fb:en.pathogenic_bacteria "Pathogenic bacteria"))) (type fb:medicine.type_of_infectious_agent) Why helium does not form compounds? Helium 0.99 gas -6.193 formula (!fb:medicine.drug_ingredient.active_moiety_of_formulation fb:m.025rt79)) (value (list (name fb:m.0hqrkv7 "Helium 0.99 gas") (name fb:m.0hqsbx0 "Helium and oxygen 700/300 gas") (name fb:m.0hqrg_r "Helium 999 gas") (name fb:m.0hqt44c "Helium and oxygen 800/200 gas") (name fb:m.0hqr9nq "Helium 995 gas") (name fb:m.0hqtddb "Helium, oxygen 0.79/0.21 gas") (name fb:m.0hqttxg "Helium and oxygen 600/400 gas") (name fb:m.0hqr9ht "Helium oxygen 800/200 gas") (name fb:m.0hqr647 "Helium oxygen mixture 0.6/0.4 gas") (name fb:m.0hqv0b3 "Helium 990 gas"))) (type fb:medicine.drug_formulation) Why helium does not form compounds? Helium and oxygen 700/300 gas -6.193 formula (!fb:medicine.drug_ingredient.active_moiety_of_formulation fb:m.025rt79)) (value (list (name fb:m.0hqrkv7 "Helium 0.99 gas") (name fb:m.0hqsbx0 "Helium and oxygen 700/300 gas") (name fb:m.0hqrg_r "Helium 999 gas") (name fb:m.0hqt44c "Helium and oxygen 800/200 gas") (name fb:m.0hqr9nq "Helium 995 gas") (name fb:m.0hqtddb "Helium, oxygen 0.79/0.21 gas") (name fb:m.0hqttxg "Helium and oxygen 600/400 gas") (name fb:m.0hqr9ht "Helium oxygen 800/200 gas") (name fb:m.0hqr647 "Helium oxygen mixture 0.6/0.4 gas") (name fb:m.0hqv0b3 "Helium 990 gas"))) (type fb:medicine.drug_formulation) Why helium does not form compounds? Helium 999 gas -6.193 formula (!fb:medicine.drug_ingredient.active_moiety_of_formulation fb:m.025rt79)) (value (list (name fb:m.0hqrkv7 "Helium 0.99 gas") (name fb:m.0hqsbx0 "Helium and oxygen 700/300 gas") (name fb:m.0hqrg_r "Helium 999 gas") (name fb:m.0hqt44c "Helium and oxygen 800/200 gas") (name fb:m.0hqr9nq "Helium 995 gas") (name fb:m.0hqtddb "Helium, oxygen 0.79/0.21 gas") (name fb:m.0hqttxg "Helium and oxygen 600/400 gas") (name fb:m.0hqr9ht "Helium oxygen 800/200 gas") (name fb:m.0hqr647 "Helium oxygen mixture 0.6/0.4 gas") (name fb:m.0hqv0b3 "Helium 990 gas"))) (type fb:medicine.drug_formulation) Why helium does not form compounds? Helium and oxygen 800/200 gas -6.193 formula (!fb:medicine.drug_ingredient.active_moiety_of_formulation fb:m.025rt79)) (value (list (name fb:m.0hqrkv7 "Helium 0.99 gas") (name fb:m.0hqsbx0 "Helium and oxygen 700/300 gas") (name fb:m.0hqrg_r "Helium 999 gas") (name fb:m.0hqt44c "Helium and oxygen 800/200 gas") (name fb:m.0hqr9nq "Helium 995 gas") (name fb:m.0hqtddb "Helium, oxygen 0.79/0.21 gas") (name fb:m.0hqttxg "Helium and oxygen 600/400 gas") (name fb:m.0hqr9ht "Helium oxygen 800/200 gas") (name fb:m.0hqr647 "Helium oxygen mixture 0.6/0.4 gas") (name fb:m.0hqv0b3 "Helium 990 gas"))) (type fb:medicine.drug_formulation) Why helium does not form compounds? Helium 995 gas -6.193 formula (!fb:medicine.drug_ingredient.active_moiety_of_formulation fb:m.025rt79)) (value (list (name fb:m.0hqrkv7 "Helium 0.99 gas") (name fb:m.0hqsbx0 "Helium and oxygen 700/300 gas") (name fb:m.0hqrg_r "Helium 999 gas") (name fb:m.0hqt44c "Helium and oxygen 800/200 gas") (name fb:m.0hqr9nq "Helium 995 gas") (name fb:m.0hqtddb "Helium, oxygen 0.79/0.21 gas") (name fb:m.0hqttxg "Helium and oxygen 600/400 gas") (name fb:m.0hqr9ht "Helium oxygen 800/200 gas") (name fb:m.0hqr647 "Helium oxygen mixture 0.6/0.4 gas") (name fb:m.0hqv0b3 "Helium 990 gas"))) (type fb:medicine.drug_formulation) Why helium does not form compounds? Helium, oxygen 0.79/0.21 gas -6.193 formula (!fb:medicine.drug_ingredient.active_moiety_of_formulation fb:m.025rt79)) (value (list (name fb:m.0hqrkv7 "Helium 0.99 gas") (name fb:m.0hqsbx0 "Helium and oxygen 700/300 gas") (name fb:m.0hqrg_r "Helium 999 gas") (name fb:m.0hqt44c "Helium and oxygen 800/200 gas") (name fb:m.0hqr9nq "Helium 995 gas") (name fb:m.0hqtddb "Helium, oxygen 0.79/0.21 gas") (name fb:m.0hqttxg "Helium and oxygen 600/400 gas") (name fb:m.0hqr9ht "Helium oxygen 800/200 gas") (name fb:m.0hqr647 "Helium oxygen mixture 0.6/0.4 gas") (name fb:m.0hqv0b3 "Helium 990 gas"))) (type fb:medicine.drug_formulation) Why helium does not form compounds? Helium and oxygen 600/400 gas -6.193 formula (!fb:medicine.drug_ingredient.active_moiety_of_formulation fb:m.025rt79)) (value (list (name fb:m.0hqrkv7 "Helium 0.99 gas") (name fb:m.0hqsbx0 "Helium and oxygen 700/300 gas") (name fb:m.0hqrg_r "Helium 999 gas") (name fb:m.0hqt44c "Helium and oxygen 800/200 gas") (name fb:m.0hqr9nq "Helium 995 gas") (name fb:m.0hqtddb "Helium, oxygen 0.79/0.21 gas") (name fb:m.0hqttxg "Helium and oxygen 600/400 gas") (name fb:m.0hqr9ht "Helium oxygen 800/200 gas") (name fb:m.0hqr647 "Helium oxygen mixture 0.6/0.4 gas") (name fb:m.0hqv0b3 "Helium 990 gas"))) (type fb:medicine.drug_formulation) Why helium does not form compounds? Helium oxygen 800/200 gas -6.193 formula (!fb:medicine.drug_ingredient.active_moiety_of_formulation fb:m.025rt79)) (value (list (name fb:m.0hqrkv7 "Helium 0.99 gas") (name fb:m.0hqsbx0 "Helium and oxygen 700/300 gas") (name fb:m.0hqrg_r "Helium 999 gas") (name fb:m.0hqt44c "Helium and oxygen 800/200 gas") (name fb:m.0hqr9nq "Helium 995 gas") (name fb:m.0hqtddb "Helium, oxygen 0.79/0.21 gas") (name fb:m.0hqttxg "Helium and oxygen 600/400 gas") (name fb:m.0hqr9ht "Helium oxygen 800/200 gas") (name fb:m.0hqr647 "Helium oxygen mixture 0.6/0.4 gas") (name fb:m.0hqv0b3 "Helium 990 gas"))) (type fb:medicine.drug_formulation) Why helium does not form compounds? Helium oxygen mixture 0.6/0.4 gas -6.193 formula (!fb:medicine.drug_ingredient.active_moiety_of_formulation fb:m.025rt79)) (value (list (name fb:m.0hqrkv7 "Helium 0.99 gas") (name fb:m.0hqsbx0 "Helium and oxygen 700/300 gas") (name fb:m.0hqrg_r "Helium 999 gas") (name fb:m.0hqt44c "Helium and oxygen 800/200 gas") (name fb:m.0hqr9nq "Helium 995 gas") (name fb:m.0hqtddb "Helium, oxygen 0.79/0.21 gas") (name fb:m.0hqttxg "Helium and oxygen 600/400 gas") (name fb:m.0hqr9ht "Helium oxygen 800/200 gas") (name fb:m.0hqr647 "Helium oxygen mixture 0.6/0.4 gas") (name fb:m.0hqv0b3 "Helium 990 gas"))) (type fb:medicine.drug_formulation) Why helium does not form compounds? Helium 990 gas -6.193 formula (!fb:medicine.drug_ingredient.active_moiety_of_formulation fb:m.025rt79)) (value (list (name fb:m.0hqrkv7 "Helium 0.99 gas") (name fb:m.0hqsbx0 "Helium and oxygen 700/300 gas") (name fb:m.0hqrg_r "Helium 999 gas") (name fb:m.0hqt44c "Helium and oxygen 800/200 gas") (name fb:m.0hqr9nq "Helium 995 gas") (name fb:m.0hqtddb "Helium, oxygen 0.79/0.21 gas") (name fb:m.0hqttxg "Helium and oxygen 600/400 gas") (name fb:m.0hqr9ht "Helium oxygen 800/200 gas") (name fb:m.0hqr647 "Helium oxygen mixture 0.6/0.4 gas") (name fb:m.0hqv0b3 "Helium 990 gas"))) (type fb:medicine.drug_formulation) Where is the amplifier on BMW e34? Milbertshofen-Am Hart -3.095 formula (and (fb:type.object.type fb:location.location) (!fb:organization.organization.place_founded fb:en.bmw))) (value (list (name fb:en.milbertshofen_am_hart "Milbertshofen-Am Hart"))) (type fb:location.location) If Adam and Eve were alive today how old would they be? West Philadelphia 0.179 formula (!fb:music.artist.origin fb:en.eve_1978)) (value (list (name fb:en.philadelphia Philadelphia) (name fb:en.camden Camden) (name fb:en.west_philadelphia "West Philadelphia"))) (type fb:location.location) What is the most poplar dog name? Dogs Playing Poker 0.174 formula (and (fb:type.object.type fb:common.topic) (!fb:visual_art.art_subject.art_series_on_the_subject fb:en.dog))) (value (list (name fb:en.dogs_playing_poker "Dogs Playing Poker"))) (type fb:visual_art.art_series) What is a CRO? Dave Eggers -2.826 formula ((lambda x (!fb:award.award_honor.award_winner (!fb:award.award_winning_work.awards_won (var x)))) fb:m.027cdhk)) (value (list (name fb:en.dave_eggers "Dave Eggers"))) (type fb:award.award_winner) What can cat litter do to a pregnant woman's baby? A Dog and a Cat near a Partially Disembowelled Deer -0.227 formula (and (fb:type.object.type fb:common.topic) (fb:visual_art.artwork.art_subject fb:en.cat))) (value (list (name fb:en.a_dog_and_a_cat_near_a_partially_disembowelled_deer "A Dog and a Cat near a Partially Disembowelled Deer"))) (type fb:visual_art.artwork) Is Zelda the best game ever? The Legend of Zelda: Ocarina of Time -1.973 formula (!fb:cvg.game_series.games_in_series fb:en.the_legend_of_zelda_series)) (value (list (name fb:en.the_legend_of_zelda_ocarina_of_time "The Legend of Zelda: Ocarina of Time") (name fb:en.the_legend_of_zelda_twilight_princess "The Legend of Zelda: Twilight Princess") (name fb:en.zelda_ii_the_adventure_of_link "Zelda II: The Adventure of Link") (name fb:en.the_legend_of_zelda_links_awakening "The Legend of Zelda: Link's Awakening") (name fb:en.the_legend_of_zelda_collectors_edition "The Legend of Zelda: Collector's Edition") (name fb:m.09v5sg4 "The Legend of Zelda: Skyward Sword") (name fb:en.the_legend_of_zelda_spirit_tracks "The Legend of Zelda: Spirit Tracks") (name fb:en.the_legend_of_zelda_majoras_mask "The Legend of Zelda: Majora's Mask") (name fb:m.0gmdhxs "The Legend of Zelda: Ocarina of Time 3D") (name fb:en.the_legend_of_zelda_a_link_to_the_past_four_swords "The Legend of Zelda: A Link to the Past & Four Swords"))) (type fb:cvg.computer_videogame) Is Zelda the best game ever? The Legend of Zelda: Twilight Princess -1.973 formula (!fb:cvg.game_series.games_in_series fb:en.the_legend_of_zelda_series)) (value (list (name fb:en.the_legend_of_zelda_ocarina_of_time "The Legend of Zelda: Ocarina of Time") (name fb:en.the_legend_of_zelda_twilight_princess "The Legend of Zelda: Twilight Princess") (name fb:en.zelda_ii_the_adventure_of_link "Zelda II: The Adventure of Link") (name fb:en.the_legend_of_zelda_links_awakening "The Legend of Zelda: Link's Awakening") (name fb:en.the_legend_of_zelda_collectors_edition "The Legend of Zelda: Collector's Edition") (name fb:m.09v5sg4 "The Legend of Zelda: Skyward Sword") (name fb:en.the_legend_of_zelda_spirit_tracks "The Legend of Zelda: Spirit Tracks") (name fb:en.the_legend_of_zelda_majoras_mask "The Legend of Zelda: Majora's Mask") (name fb:m.0gmdhxs "The Legend of Zelda: Ocarina of Time 3D") (name fb:en.the_legend_of_zelda_a_link_to_the_past_four_swords "The Legend of Zelda: A Link to the Past & Four Swords"))) (type fb:cvg.computer_videogame) Is Zelda the best game ever? Zelda II: The Adventure of Link -1.973 formula (!fb:cvg.game_series.games_in_series fb:en.the_legend_of_zelda_series)) (value (list (name fb:en.the_legend_of_zelda_ocarina_of_time "The Legend of Zelda: Ocarina of Time") (name fb:en.the_legend_of_zelda_twilight_princess "The Legend of Zelda: Twilight Princess") (name fb:en.zelda_ii_the_adventure_of_link "Zelda II: The Adventure of Link") (name fb:en.the_legend_of_zelda_links_awakening "The Legend of Zelda: Link's Awakening") (name fb:en.the_legend_of_zelda_collectors_edition "The Legend of Zelda: Collector's Edition") (name fb:m.09v5sg4 "The Legend of Zelda: Skyward Sword") (name fb:en.the_legend_of_zelda_spirit_tracks "The Legend of Zelda: Spirit Tracks") (name fb:en.the_legend_of_zelda_majoras_mask "The Legend of Zelda: Majora's Mask") (name fb:m.0gmdhxs "The Legend of Zelda: Ocarina of Time 3D") (name fb:en.the_legend_of_zelda_a_link_to_the_past_four_swords "The Legend of Zelda: A Link to the Past & Four Swords"))) (type fb:cvg.computer_videogame) Is Zelda the best game ever? The Legend of Zelda: Link's Awakening -1.973 formula (!fb:cvg.game_series.games_in_series fb:en.the_legend_of_zelda_series)) (value (list (name fb:en.the_legend_of_zelda_ocarina_of_time "The Legend of Zelda: Ocarina of Time") (name fb:en.the_legend_of_zelda_twilight_princess "The Legend of Zelda: Twilight Princess") (name fb:en.zelda_ii_the_adventure_of_link "Zelda II: The Adventure of Link") (name fb:en.the_legend_of_zelda_links_awakening "The Legend of Zelda: Link's Awakening") (name fb:en.the_legend_of_zelda_collectors_edition "The Legend of Zelda: Collector's Edition") (name fb:m.09v5sg4 "The Legend of Zelda: Skyward Sword") (name fb:en.the_legend_of_zelda_spirit_tracks "The Legend of Zelda: Spirit Tracks") (name fb:en.the_legend_of_zelda_majoras_mask "The Legend of Zelda: Majora's Mask") (name fb:m.0gmdhxs "The Legend of Zelda: Ocarina of Time 3D") (name fb:en.the_legend_of_zelda_a_link_to_the_past_four_swords "The Legend of Zelda: A Link to the Past & Four Swords"))) (type fb:cvg.computer_videogame) Is Zelda the best game ever? The Legend of Zelda: Collector's Edition -1.973 formula (!fb:cvg.game_series.games_in_series fb:en.the_legend_of_zelda_series)) (value (list (name fb:en.the_legend_of_zelda_ocarina_of_time "The Legend of Zelda: Ocarina of Time") (name fb:en.the_legend_of_zelda_twilight_princess "The Legend of Zelda: Twilight Princess") (name fb:en.zelda_ii_the_adventure_of_link "Zelda II: The Adventure of Link") (name fb:en.the_legend_of_zelda_links_awakening "The Legend of Zelda: Link's Awakening") (name fb:en.the_legend_of_zelda_collectors_edition "The Legend of Zelda: Collector's Edition") (name fb:m.09v5sg4 "The Legend of Zelda: Skyward Sword") (name fb:en.the_legend_of_zelda_spirit_tracks "The Legend of Zelda: Spirit Tracks") (name fb:en.the_legend_of_zelda_majoras_mask "The Legend of Zelda: Majora's Mask") (name fb:m.0gmdhxs "The Legend of Zelda: Ocarina of Time 3D") (name fb:en.the_legend_of_zelda_a_link_to_the_past_four_swords "The Legend of Zelda: A Link to the Past & Four Swords"))) (type fb:cvg.computer_videogame) Is Zelda the best game ever? The Legend of Zelda: Skyward Sword -1.973 formula (!fb:cvg.game_series.games_in_series fb:en.the_legend_of_zelda_series)) (value (list (name fb:en.the_legend_of_zelda_ocarina_of_time "The Legend of Zelda: Ocarina of Time") (name fb:en.the_legend_of_zelda_twilight_princess "The Legend of Zelda: Twilight Princess") (name fb:en.zelda_ii_the_adventure_of_link "Zelda II: The Adventure of Link") (name fb:en.the_legend_of_zelda_links_awakening "The Legend of Zelda: Link's Awakening") (name fb:en.the_legend_of_zelda_collectors_edition "The Legend of Zelda: Collector's Edition") (name fb:m.09v5sg4 "The Legend of Zelda: Skyward Sword") (name fb:en.the_legend_of_zelda_spirit_tracks "The Legend of Zelda: Spirit Tracks") (name fb:en.the_legend_of_zelda_majoras_mask "The Legend of Zelda: Majora's Mask") (name fb:m.0gmdhxs "The Legend of Zelda: Ocarina of Time 3D") (name fb:en.the_legend_of_zelda_a_link_to_the_past_four_swords "The Legend of Zelda: A Link to the Past & Four Swords"))) (type fb:cvg.computer_videogame) Is Zelda the best game ever? The Legend of Zelda: Spirit Tracks -1.973 formula (!fb:cvg.game_series.games_in_series fb:en.the_legend_of_zelda_series)) (value (list (name fb:en.the_legend_of_zelda_ocarina_of_time "The Legend of Zelda: Ocarina of Time") (name fb:en.the_legend_of_zelda_twilight_princess "The Legend of Zelda: Twilight Princess") (name fb:en.zelda_ii_the_adventure_of_link "Zelda II: The Adventure of Link") (name fb:en.the_legend_of_zelda_links_awakening "The Legend of Zelda: Link's Awakening") (name fb:en.the_legend_of_zelda_collectors_edition "The Legend of Zelda: Collector's Edition") (name fb:m.09v5sg4 "The Legend of Zelda: Skyward Sword") (name fb:en.the_legend_of_zelda_spirit_tracks "The Legend of Zelda: Spirit Tracks") (name fb:en.the_legend_of_zelda_majoras_mask "The Legend of Zelda: Majora's Mask") (name fb:m.0gmdhxs "The Legend of Zelda: Ocarina of Time 3D") (name fb:en.the_legend_of_zelda_a_link_to_the_past_four_swords "The Legend of Zelda: A Link to the Past & Four Swords"))) (type fb:cvg.computer_videogame) Is Zelda the best game ever? The Legend of Zelda: Majora's Mask -1.973 formula (!fb:cvg.game_series.games_in_series fb:en.the_legend_of_zelda_series)) (value (list (name fb:en.the_legend_of_zelda_ocarina_of_time "The Legend of Zelda: Ocarina of Time") (name fb:en.the_legend_of_zelda_twilight_princess "The Legend of Zelda: Twilight Princess") (name fb:en.zelda_ii_the_adventure_of_link "Zelda II: The Adventure of Link") (name fb:en.the_legend_of_zelda_links_awakening "The Legend of Zelda: Link's Awakening") (name fb:en.the_legend_of_zelda_collectors_edition "The Legend of Zelda: Collector's Edition") (name fb:m.09v5sg4 "The Legend of Zelda: Skyward Sword") (name fb:en.the_legend_of_zelda_spirit_tracks "The Legend of Zelda: Spirit Tracks") (name fb:en.the_legend_of_zelda_majoras_mask "The Legend of Zelda: Majora's Mask") (name fb:m.0gmdhxs "The Legend of Zelda: Ocarina of Time 3D") (name fb:en.the_legend_of_zelda_a_link_to_the_past_four_swords "The Legend of Zelda: A Link to the Past & Four Swords"))) (type fb:cvg.computer_videogame) Is Zelda the best game ever? The Legend of Zelda: Ocarina of Time 3D -1.973 formula (!fb:cvg.game_series.games_in_series fb:en.the_legend_of_zelda_series)) (value (list (name fb:en.the_legend_of_zelda_ocarina_of_time "The Legend of Zelda: Ocarina of Time") (name fb:en.the_legend_of_zelda_twilight_princess "The Legend of Zelda: Twilight Princess") (name fb:en.zelda_ii_the_adventure_of_link "Zelda II: The Adventure of Link") (name fb:en.the_legend_of_zelda_links_awakening "The Legend of Zelda: Link's Awakening") (name fb:en.the_legend_of_zelda_collectors_edition "The Legend of Zelda: Collector's Edition") (name fb:m.09v5sg4 "The Legend of Zelda: Skyward Sword") (name fb:en.the_legend_of_zelda_spirit_tracks "The Legend of Zelda: Spirit Tracks") (name fb:en.the_legend_of_zelda_majoras_mask "The Legend of Zelda: Majora's Mask") (name fb:m.0gmdhxs "The Legend of Zelda: Ocarina of Time 3D") (name fb:en.the_legend_of_zelda_a_link_to_the_past_four_swords "The Legend of Zelda: A Link to the Past & Four Swords"))) (type fb:cvg.computer_videogame) Is Zelda the best game ever? The Legend of Zelda: A Link to the Past & Four Swords -1.973 formula (!fb:cvg.game_series.games_in_series fb:en.the_legend_of_zelda_series)) (value (list (name fb:en.the_legend_of_zelda_ocarina_of_time "The Legend of Zelda: Ocarina of Time") (name fb:en.the_legend_of_zelda_twilight_princess "The Legend of Zelda: Twilight Princess") (name fb:en.zelda_ii_the_adventure_of_link "Zelda II: The Adventure of Link") (name fb:en.the_legend_of_zelda_links_awakening "The Legend of Zelda: Link's Awakening") (name fb:en.the_legend_of_zelda_collectors_edition "The Legend of Zelda: Collector's Edition") (name fb:m.09v5sg4 "The Legend of Zelda: Skyward Sword") (name fb:en.the_legend_of_zelda_spirit_tracks "The Legend of Zelda: Spirit Tracks") (name fb:en.the_legend_of_zelda_majoras_mask "The Legend of Zelda: Majora's Mask") (name fb:m.0gmdhxs "The Legend of Zelda: Ocarina of Time 3D") (name fb:en.the_legend_of_zelda_a_link_to_the_past_four_swords "The Legend of Zelda: A Link to the Past & Four Swords"))) (type fb:cvg.computer_videogame) What makes a burp smell like sulfur? Acetylcarnitine/Adenosine cyclic 3',5'-phosphate/.alpha.-lipoic acid/.alpha.-tocopherol acetate, dl-/Ascorbic acid/Calcium cation/Anhydrous citric acid/Cobalamin/Colchicum autumnale bulb/Conium maculatum flowering top/Cupric cation/Herring sperm dna/Ferric cation/Folic acid/Fumaric acid/Pyruvaldehyde/Potassium cation/Magnesium cation/Manganese cation (2+)/Manganese phosphate, dibasic/Diethyl oxalacetate/Sodium cation/Niacin/Pantothenic acid/Phosphorus/Podophyllum/Pyridoxine/Riboflavin/Saccharomyces cerevisiae rna/Selenomethionine/Succinic acid/Sulfur/Thiamine/Zinc homeopathic preparation -5.152 formula (and (fb:type.object.type fb:common.topic) (!fb:medicine.drug_ingredient.active_moiety_of_drug fb:en.sulfur))) (value (list (name fb:m.0hqwgfq "Acetylcarnitine/Adenosine cyclic 3',5'-phosphate/.alpha.-lipoic acid/.alpha.-tocopherol acetate, dl-/Ascorbic acid/Calcium cation/Anhydrous citric acid/Cobalamin/Colchicum autumnale bulb/Conium maculatum flowering top/Cupric cation/Herring sperm dna/Ferric cation/Folic acid/Fumaric acid/Pyruvaldehyde/Potassium cation/Magnesium cation/Manganese cation (2+)/Manganese phosphate, dibasic/Diethyl oxalacetate/Sodium cation/Niacin/Pantothenic acid/Phosphorus/Podophyllum/Pyridoxine/Riboflavin/Saccharomyces cerevisiae rna/Selenomethionine/Succinic acid/Sulfur/Thiamine/Zinc homeopathic preparation") (name fb:m.0hqvvg3 "Aldesleukin/Arsenic trioxide/Atropa belladonna/Canakinumab/Echinacea angustifolia/Graphite/Melatonin/Plantago major/Solanum dulcamara flower/Sulfur homeopathic preparation") (name fb:m.0hqvffl "Aethusa cynapium/Semecarpus anacardium juice/Celery seed/Oyster shell calcium carbonate, crude/Gamboge/Histamine/Goldenseal/Skim milk/Cow milk/Pulsatilla vulgaris/Sepia officinalis juice/Sulfur homeopathic preparation") (name fb:m.0hqvvlk "Onion/Ambrosia artemisiifolia/Euphrasia stricta/Schoenocaulon officinale seed/Sus scrofa adrenal gland/Pork liver/Histamine/Arsenic trioxide/Phosphorus/Pulsatilla vulgaris/Sulfur/Platanus occidentalis pollen/Fagus grandifolia pollen/Juglans nigra pollen/Salix nigra pollen/Acer negundo pollen/Populus deltoides pollen/Betula occidentalis pollen/Quercus rubra pollen/Carya ovata pollen/Poa pratensis top/Dactylis glomerata top/Agrostis gigantea top/Phleum pratense top/Ambrosia acanthicarpa pollen/Ambrosia trifida pollen/Ambrosia psilostachya pollen/Ambrosia artemisiifolia pollen/Rumex acetosella pollen/Rumex crispus pollen/Fraxinus americana pollen/Ulmus americana pollen homeopathic preparation") (name fb:en.sulfur Sulfur) (name fb:m.0hqw7g8 "Epinephrine/Red clover/Alfalfa/Arsenic trioxide/Phosphorus/Pulsatilla vulgaris/Histamine/Sulfur/Ambrosia artemisiifolia/Beef liver/Rumex acetosella pollen/Rumex crispus pollen/Poa pratensis pollen/Dactylis glomerata top/Agrostis gigantea top/Phleum pratense pollen/Solidago virgaurea pollen/Ambrosia acanthicarpa pollen/Ambrosia psilostachya pollen/Fraxinus americana pollen/Fagus grandifolia pollen/Betula occidentalis pollen/Acer negundo pollen/Populus deltoides pollen/Ulmus americana pollen/Carya cordiformis pollen/Quercus rubra pollen/Platanus occidentalis pollen/Juglans nigra pollen/Salix nigra pollen/Potassium cation homeopathic preparation") (name fb:m.0hqwsp9 Sulfur/Resorcinol) (name fb:m.0hqw1ks ".alpha.-ketoglutaric acid/.alpha.-lipoic acid/Sus scrofa artery/Ascorbic acid/Barium oxalosuccinate/Bryonia alba root/Calcitonin human/Sus scrofa cartilage/Chlorine/Black cohosh/Colchicum autumnale bulb/Sus scrofa conjunctiva/Solanum dulcamara flower/Velafermin/Sus scrofa umbilical cord/Sus scrofa adrenal gland/Nadide/Diethyl oxalacetate/Nerve growth factor/Sus scrofa parathyroid gland/Sus scrofa placenta/Quinhydrone/Toxicodendron pubescens leaf/Strontium cation/Sulfur/Sus scrofa vein/Prasterone homeopathic preparation") (name fb:m.0hqw4np "Actaea spicata root/Aesculus hippocastanum flower/Arnica montana/Bellis perennis/Bryonia alba root/Oyster shell calcium carbonate, crude/Calcium fluoride/Causticum/Black cohosh/Formic acid/Hypericum perforatum/Ledum palustre twig/Lithium cation/Magnesium cation/Phosphorus/Phytolacca americana root/Pulsatilla vulgaris/Rhododendron aureum leaf/Toxicodendron pubescens leaf/Ruta graveolens flowering top/Salicylic acid/Sepia officinalis juice/Sulfur/Zinc homeopathic preparation") (name fb:m.0hqx1rf "Aconitum napellus/Apis mellifera/Arnica montana/Arsenic cation (3+)/Atropa belladonna/Bellis perennis/Bryonia alba root/Calendula officinalis flowering top/Matricaria recutita/Helianthemum canadense/Clematis recta flowering top/Ferrum phosphoricum/Chloride ion/Hypericum perforatum/Strychnos ignatii seed/Impatiens glandulifera flower/Ornithogalum umbellatum/Passiflora incarnata flower/Phosphorus/Prunus cerasifera flower/Toxicodendron pubescens leaf/Sulfur/Comfrey root/Veratrum album root homeopathic preparation"))) (type fb:medicine.drug) What makes a burp smell like sulfur? Aldesleukin/Arsenic trioxide/Atropa belladonna/Canakinumab/Echinacea angustifolia/Graphite/Melatonin/Plantago major/Solanum dulcamara flower/Sulfur homeopathic preparation -5.152 formula (and (fb:type.object.type fb:common.topic) (!fb:medicine.drug_ingredient.active_moiety_of_drug fb:en.sulfur))) (value (list (name fb:m.0hqwgfq "Acetylcarnitine/Adenosine cyclic 3',5'-phosphate/.alpha.-lipoic acid/.alpha.-tocopherol acetate, dl-/Ascorbic acid/Calcium cation/Anhydrous citric acid/Cobalamin/Colchicum autumnale bulb/Conium maculatum flowering top/Cupric cation/Herring sperm dna/Ferric cation/Folic acid/Fumaric acid/Pyruvaldehyde/Potassium cation/Magnesium cation/Manganese cation (2+)/Manganese phosphate, dibasic/Diethyl oxalacetate/Sodium cation/Niacin/Pantothenic acid/Phosphorus/Podophyllum/Pyridoxine/Riboflavin/Saccharomyces cerevisiae rna/Selenomethionine/Succinic acid/Sulfur/Thiamine/Zinc homeopathic preparation") (name fb:m.0hqvvg3 "Aldesleukin/Arsenic trioxide/Atropa belladonna/Canakinumab/Echinacea angustifolia/Graphite/Melatonin/Plantago major/Solanum dulcamara flower/Sulfur homeopathic preparation") (name fb:m.0hqvffl "Aethusa cynapium/Semecarpus anacardium juice/Celery seed/Oyster shell calcium carbonate, crude/Gamboge/Histamine/Goldenseal/Skim milk/Cow milk/Pulsatilla vulgaris/Sepia officinalis juice/Sulfur homeopathic preparation") (name fb:m.0hqvvlk "Onion/Ambrosia artemisiifolia/Euphrasia stricta/Schoenocaulon officinale seed/Sus scrofa adrenal gland/Pork liver/Histamine/Arsenic trioxide/Phosphorus/Pulsatilla vulgaris/Sulfur/Platanus occidentalis pollen/Fagus grandifolia pollen/Juglans nigra pollen/Salix nigra pollen/Acer negundo pollen/Populus deltoides pollen/Betula occidentalis pollen/Quercus rubra pollen/Carya ovata pollen/Poa pratensis top/Dactylis glomerata top/Agrostis gigantea top/Phleum pratense top/Ambrosia acanthicarpa pollen/Ambrosia trifida pollen/Ambrosia psilostachya pollen/Ambrosia artemisiifolia pollen/Rumex acetosella pollen/Rumex crispus pollen/Fraxinus americana pollen/Ulmus americana pollen homeopathic preparation") (name fb:en.sulfur Sulfur) (name fb:m.0hqw7g8 "Epinephrine/Red clover/Alfalfa/Arsenic trioxide/Phosphorus/Pulsatilla vulgaris/Histamine/Sulfur/Ambrosia artemisiifolia/Beef liver/Rumex acetosella pollen/Rumex crispus pollen/Poa pratensis pollen/Dactylis glomerata top/Agrostis gigantea top/Phleum pratense pollen/Solidago virgaurea pollen/Ambrosia acanthicarpa pollen/Ambrosia psilostachya pollen/Fraxinus americana pollen/Fagus grandifolia pollen/Betula occidentalis pollen/Acer negundo pollen/Populus deltoides pollen/Ulmus americana pollen/Carya cordiformis pollen/Quercus rubra pollen/Platanus occidentalis pollen/Juglans nigra pollen/Salix nigra pollen/Potassium cation homeopathic preparation") (name fb:m.0hqwsp9 Sulfur/Resorcinol) (name fb:m.0hqw1ks ".alpha.-ketoglutaric acid/.alpha.-lipoic acid/Sus scrofa artery/Ascorbic acid/Barium oxalosuccinate/Bryonia alba root/Calcitonin human/Sus scrofa cartilage/Chlorine/Black cohosh/Colchicum autumnale bulb/Sus scrofa conjunctiva/Solanum dulcamara flower/Velafermin/Sus scrofa umbilical cord/Sus scrofa adrenal gland/Nadide/Diethyl oxalacetate/Nerve growth factor/Sus scrofa parathyroid gland/Sus scrofa placenta/Quinhydrone/Toxicodendron pubescens leaf/Strontium cation/Sulfur/Sus scrofa vein/Prasterone homeopathic preparation") (name fb:m.0hqw4np "Actaea spicata root/Aesculus hippocastanum flower/Arnica montana/Bellis perennis/Bryonia alba root/Oyster shell calcium carbonate, crude/Calcium fluoride/Causticum/Black cohosh/Formic acid/Hypericum perforatum/Ledum palustre twig/Lithium cation/Magnesium cation/Phosphorus/Phytolacca americana root/Pulsatilla vulgaris/Rhododendron aureum leaf/Toxicodendron pubescens leaf/Ruta graveolens flowering top/Salicylic acid/Sepia officinalis juice/Sulfur/Zinc homeopathic preparation") (name fb:m.0hqx1rf "Aconitum napellus/Apis mellifera/Arnica montana/Arsenic cation (3+)/Atropa belladonna/Bellis perennis/Bryonia alba root/Calendula officinalis flowering top/Matricaria recutita/Helianthemum canadense/Clematis recta flowering top/Ferrum phosphoricum/Chloride ion/Hypericum perforatum/Strychnos ignatii seed/Impatiens glandulifera flower/Ornithogalum umbellatum/Passiflora incarnata flower/Phosphorus/Prunus cerasifera flower/Toxicodendron pubescens leaf/Sulfur/Comfrey root/Veratrum album root homeopathic preparation"))) (type fb:medicine.drug) What makes a burp smell like sulfur? Aethusa cynapium/Semecarpus anacardium juice/Celery seed/Oyster shell calcium carbonate, crude/Gamboge/Histamine/Goldenseal/Skim milk/Cow milk/Pulsatilla vulgaris/Sepia officinalis juice/Sulfur homeopathic preparation -5.152 formula (and (fb:type.object.type fb:common.topic) (!fb:medicine.drug_ingredient.active_moiety_of_drug fb:en.sulfur))) (value (list (name fb:m.0hqwgfq "Acetylcarnitine/Adenosine cyclic 3',5'-phosphate/.alpha.-lipoic acid/.alpha.-tocopherol acetate, dl-/Ascorbic acid/Calcium cation/Anhydrous citric acid/Cobalamin/Colchicum autumnale bulb/Conium maculatum flowering top/Cupric cation/Herring sperm dna/Ferric cation/Folic acid/Fumaric acid/Pyruvaldehyde/Potassium cation/Magnesium cation/Manganese cation (2+)/Manganese phosphate, dibasic/Diethyl oxalacetate/Sodium cation/Niacin/Pantothenic acid/Phosphorus/Podophyllum/Pyridoxine/Riboflavin/Saccharomyces cerevisiae rna/Selenomethionine/Succinic acid/Sulfur/Thiamine/Zinc homeopathic preparation") (name fb:m.0hqvvg3 "Aldesleukin/Arsenic trioxide/Atropa belladonna/Canakinumab/Echinacea angustifolia/Graphite/Melatonin/Plantago major/Solanum dulcamara flower/Sulfur homeopathic preparation") (name fb:m.0hqvffl "Aethusa cynapium/Semecarpus anacardium juice/Celery seed/Oyster shell calcium carbonate, crude/Gamboge/Histamine/Goldenseal/Skim milk/Cow milk/Pulsatilla vulgaris/Sepia officinalis juice/Sulfur homeopathic preparation") (name fb:m.0hqvvlk "Onion/Ambrosia artemisiifolia/Euphrasia stricta/Schoenocaulon officinale seed/Sus scrofa adrenal gland/Pork liver/Histamine/Arsenic trioxide/Phosphorus/Pulsatilla vulgaris/Sulfur/Platanus occidentalis pollen/Fagus grandifolia pollen/Juglans nigra pollen/Salix nigra pollen/Acer negundo pollen/Populus deltoides pollen/Betula occidentalis pollen/Quercus rubra pollen/Carya ovata pollen/Poa pratensis top/Dactylis glomerata top/Agrostis gigantea top/Phleum pratense top/Ambrosia acanthicarpa pollen/Ambrosia trifida pollen/Ambrosia psilostachya pollen/Ambrosia artemisiifolia pollen/Rumex acetosella pollen/Rumex crispus pollen/Fraxinus americana pollen/Ulmus americana pollen homeopathic preparation") (name fb:en.sulfur Sulfur) (name fb:m.0hqw7g8 "Epinephrine/Red clover/Alfalfa/Arsenic trioxide/Phosphorus/Pulsatilla vulgaris/Histamine/Sulfur/Ambrosia artemisiifolia/Beef liver/Rumex acetosella pollen/Rumex crispus pollen/Poa pratensis pollen/Dactylis glomerata top/Agrostis gigantea top/Phleum pratense pollen/Solidago virgaurea pollen/Ambrosia acanthicarpa pollen/Ambrosia psilostachya pollen/Fraxinus americana pollen/Fagus grandifolia pollen/Betula occidentalis pollen/Acer negundo pollen/Populus deltoides pollen/Ulmus americana pollen/Carya cordiformis pollen/Quercus rubra pollen/Platanus occidentalis pollen/Juglans nigra pollen/Salix nigra pollen/Potassium cation homeopathic preparation") (name fb:m.0hqwsp9 Sulfur/Resorcinol) (name fb:m.0hqw1ks ".alpha.-ketoglutaric acid/.alpha.-lipoic acid/Sus scrofa artery/Ascorbic acid/Barium oxalosuccinate/Bryonia alba root/Calcitonin human/Sus scrofa cartilage/Chlorine/Black cohosh/Colchicum autumnale bulb/Sus scrofa conjunctiva/Solanum dulcamara flower/Velafermin/Sus scrofa umbilical cord/Sus scrofa adrenal gland/Nadide/Diethyl oxalacetate/Nerve growth factor/Sus scrofa parathyroid gland/Sus scrofa placenta/Quinhydrone/Toxicodendron pubescens leaf/Strontium cation/Sulfur/Sus scrofa vein/Prasterone homeopathic preparation") (name fb:m.0hqw4np "Actaea spicata root/Aesculus hippocastanum flower/Arnica montana/Bellis perennis/Bryonia alba root/Oyster shell calcium carbonate, crude/Calcium fluoride/Causticum/Black cohosh/Formic acid/Hypericum perforatum/Ledum palustre twig/Lithium cation/Magnesium cation/Phosphorus/Phytolacca americana root/Pulsatilla vulgaris/Rhododendron aureum leaf/Toxicodendron pubescens leaf/Ruta graveolens flowering top/Salicylic acid/Sepia officinalis juice/Sulfur/Zinc homeopathic preparation") (name fb:m.0hqx1rf "Aconitum napellus/Apis mellifera/Arnica montana/Arsenic cation (3+)/Atropa belladonna/Bellis perennis/Bryonia alba root/Calendula officinalis flowering top/Matricaria recutita/Helianthemum canadense/Clematis recta flowering top/Ferrum phosphoricum/Chloride ion/Hypericum perforatum/Strychnos ignatii seed/Impatiens glandulifera flower/Ornithogalum umbellatum/Passiflora incarnata flower/Phosphorus/Prunus cerasifera flower/Toxicodendron pubescens leaf/Sulfur/Comfrey root/Veratrum album root homeopathic preparation"))) (type fb:medicine.drug) What makes a burp smell like sulfur? Onion/Ambrosia artemisiifolia/Euphrasia stricta/Schoenocaulon officinale seed/Sus scrofa adrenal gland/Pork liver/Histamine/Arsenic trioxide/Phosphorus/Pulsatilla vulgaris/Sulfur/Platanus occidentalis pollen/Fagus grandifolia pollen/Juglans nigra pollen/Salix nigra pollen/Acer negundo pollen/Populus deltoides pollen/Betula occidentalis pollen/Quercus rubra pollen/Carya ovata pollen/Poa pratensis top/Dactylis glomerata top/Agrostis gigantea top/Phleum pratense top/Ambrosia acanthicarpa pollen/Ambrosia trifida pollen/Ambrosia psilostachya pollen/Ambrosia artemisiifolia pollen/Rumex acetosella pollen/Rumex crispus pollen/Fraxinus americana pollen/Ulmus americana pollen homeopathic preparation -5.152 formula (and (fb:type.object.type fb:common.topic) (!fb:medicine.drug_ingredient.active_moiety_of_drug fb:en.sulfur))) (value (list (name fb:m.0hqwgfq "Acetylcarnitine/Adenosine cyclic 3',5'-phosphate/.alpha.-lipoic acid/.alpha.-tocopherol acetate, dl-/Ascorbic acid/Calcium cation/Anhydrous citric acid/Cobalamin/Colchicum autumnale bulb/Conium maculatum flowering top/Cupric cation/Herring sperm dna/Ferric cation/Folic acid/Fumaric acid/Pyruvaldehyde/Potassium cation/Magnesium cation/Manganese cation (2+)/Manganese phosphate, dibasic/Diethyl oxalacetate/Sodium cation/Niacin/Pantothenic acid/Phosphorus/Podophyllum/Pyridoxine/Riboflavin/Saccharomyces cerevisiae rna/Selenomethionine/Succinic acid/Sulfur/Thiamine/Zinc homeopathic preparation") (name fb:m.0hqvvg3 "Aldesleukin/Arsenic trioxide/Atropa belladonna/Canakinumab/Echinacea angustifolia/Graphite/Melatonin/Plantago major/Solanum dulcamara flower/Sulfur homeopathic preparation") (name fb:m.0hqvffl "Aethusa cynapium/Semecarpus anacardium juice/Celery seed/Oyster shell calcium carbonate, crude/Gamboge/Histamine/Goldenseal/Skim milk/Cow milk/Pulsatilla vulgaris/Sepia officinalis juice/Sulfur homeopathic preparation") (name fb:m.0hqvvlk "Onion/Ambrosia artemisiifolia/Euphrasia stricta/Schoenocaulon officinale seed/Sus scrofa adrenal gland/Pork liver/Histamine/Arsenic trioxide/Phosphorus/Pulsatilla vulgaris/Sulfur/Platanus occidentalis pollen/Fagus grandifolia pollen/Juglans nigra pollen/Salix nigra pollen/Acer negundo pollen/Populus deltoides pollen/Betula occidentalis pollen/Quercus rubra pollen/Carya ovata pollen/Poa pratensis top/Dactylis glomerata top/Agrostis gigantea top/Phleum pratense top/Ambrosia acanthicarpa pollen/Ambrosia trifida pollen/Ambrosia psilostachya pollen/Ambrosia artemisiifolia pollen/Rumex acetosella pollen/Rumex crispus pollen/Fraxinus americana pollen/Ulmus americana pollen homeopathic preparation") (name fb:en.sulfur Sulfur) (name fb:m.0hqw7g8 "Epinephrine/Red clover/Alfalfa/Arsenic trioxide/Phosphorus/Pulsatilla vulgaris/Histamine/Sulfur/Ambrosia artemisiifolia/Beef liver/Rumex acetosella pollen/Rumex crispus pollen/Poa pratensis pollen/Dactylis glomerata top/Agrostis gigantea top/Phleum pratense pollen/Solidago virgaurea pollen/Ambrosia acanthicarpa pollen/Ambrosia psilostachya pollen/Fraxinus americana pollen/Fagus grandifolia pollen/Betula occidentalis pollen/Acer negundo pollen/Populus deltoides pollen/Ulmus americana pollen/Carya cordiformis pollen/Quercus rubra pollen/Platanus occidentalis pollen/Juglans nigra pollen/Salix nigra pollen/Potassium cation homeopathic preparation") (name fb:m.0hqwsp9 Sulfur/Resorcinol) (name fb:m.0hqw1ks ".alpha.-ketoglutaric acid/.alpha.-lipoic acid/Sus scrofa artery/Ascorbic acid/Barium oxalosuccinate/Bryonia alba root/Calcitonin human/Sus scrofa cartilage/Chlorine/Black cohosh/Colchicum autumnale bulb/Sus scrofa conjunctiva/Solanum dulcamara flower/Velafermin/Sus scrofa umbilical cord/Sus scrofa adrenal gland/Nadide/Diethyl oxalacetate/Nerve growth factor/Sus scrofa parathyroid gland/Sus scrofa placenta/Quinhydrone/Toxicodendron pubescens leaf/Strontium cation/Sulfur/Sus scrofa vein/Prasterone homeopathic preparation") (name fb:m.0hqw4np "Actaea spicata root/Aesculus hippocastanum flower/Arnica montana/Bellis perennis/Bryonia alba root/Oyster shell calcium carbonate, crude/Calcium fluoride/Causticum/Black cohosh/Formic acid/Hypericum perforatum/Ledum palustre twig/Lithium cation/Magnesium cation/Phosphorus/Phytolacca americana root/Pulsatilla vulgaris/Rhododendron aureum leaf/Toxicodendron pubescens leaf/Ruta graveolens flowering top/Salicylic acid/Sepia officinalis juice/Sulfur/Zinc homeopathic preparation") (name fb:m.0hqx1rf "Aconitum napellus/Apis mellifera/Arnica montana/Arsenic cation (3+)/Atropa belladonna/Bellis perennis/Bryonia alba root/Calendula officinalis flowering top/Matricaria recutita/Helianthemum canadense/Clematis recta flowering top/Ferrum phosphoricum/Chloride ion/Hypericum perforatum/Strychnos ignatii seed/Impatiens glandulifera flower/Ornithogalum umbellatum/Passiflora incarnata flower/Phosphorus/Prunus cerasifera flower/Toxicodendron pubescens leaf/Sulfur/Comfrey root/Veratrum album root homeopathic preparation"))) (type fb:medicine.drug) What makes a burp smell like sulfur? Epinephrine/Red clover/Alfalfa/Arsenic trioxide/Phosphorus/Pulsatilla vulgaris/Histamine/Sulfur/Ambrosia artemisiifolia/Beef liver/Rumex acetosella pollen/Rumex crispus pollen/Poa pratensis pollen/Dactylis glomerata top/Agrostis gigantea top/Phleum pratense pollen/Solidago virgaurea pollen/Ambrosia acanthicarpa pollen/Ambrosia psilostachya pollen/Fraxinus americana pollen/Fagus grandifolia pollen/Betula occidentalis pollen/Acer negundo pollen/Populus deltoides pollen/Ulmus americana pollen/Carya cordiformis pollen/Quercus rubra pollen/Platanus occidentalis pollen/Juglans nigra pollen/Salix nigra pollen/Potassium cation homeopathic preparation -5.152 formula (and (fb:type.object.type fb:common.topic) (!fb:medicine.drug_ingredient.active_moiety_of_drug fb:en.sulfur))) (value (list (name fb:m.0hqwgfq "Acetylcarnitine/Adenosine cyclic 3',5'-phosphate/.alpha.-lipoic acid/.alpha.-tocopherol acetate, dl-/Ascorbic acid/Calcium cation/Anhydrous citric acid/Cobalamin/Colchicum autumnale bulb/Conium maculatum flowering top/Cupric cation/Herring sperm dna/Ferric cation/Folic acid/Fumaric acid/Pyruvaldehyde/Potassium cation/Magnesium cation/Manganese cation (2+)/Manganese phosphate, dibasic/Diethyl oxalacetate/Sodium cation/Niacin/Pantothenic acid/Phosphorus/Podophyllum/Pyridoxine/Riboflavin/Saccharomyces cerevisiae rna/Selenomethionine/Succinic acid/Sulfur/Thiamine/Zinc homeopathic preparation") (name fb:m.0hqvvg3 "Aldesleukin/Arsenic trioxide/Atropa belladonna/Canakinumab/Echinacea angustifolia/Graphite/Melatonin/Plantago major/Solanum dulcamara flower/Sulfur homeopathic preparation") (name fb:m.0hqvffl "Aethusa cynapium/Semecarpus anacardium juice/Celery seed/Oyster shell calcium carbonate, crude/Gamboge/Histamine/Goldenseal/Skim milk/Cow milk/Pulsatilla vulgaris/Sepia officinalis juice/Sulfur homeopathic preparation") (name fb:m.0hqvvlk "Onion/Ambrosia artemisiifolia/Euphrasia stricta/Schoenocaulon officinale seed/Sus scrofa adrenal gland/Pork liver/Histamine/Arsenic trioxide/Phosphorus/Pulsatilla vulgaris/Sulfur/Platanus occidentalis pollen/Fagus grandifolia pollen/Juglans nigra pollen/Salix nigra pollen/Acer negundo pollen/Populus deltoides pollen/Betula occidentalis pollen/Quercus rubra pollen/Carya ovata pollen/Poa pratensis top/Dactylis glomerata top/Agrostis gigantea top/Phleum pratense top/Ambrosia acanthicarpa pollen/Ambrosia trifida pollen/Ambrosia psilostachya pollen/Ambrosia artemisiifolia pollen/Rumex acetosella pollen/Rumex crispus pollen/Fraxinus americana pollen/Ulmus americana pollen homeopathic preparation") (name fb:en.sulfur Sulfur) (name fb:m.0hqw7g8 "Epinephrine/Red clover/Alfalfa/Arsenic trioxide/Phosphorus/Pulsatilla vulgaris/Histamine/Sulfur/Ambrosia artemisiifolia/Beef liver/Rumex acetosella pollen/Rumex crispus pollen/Poa pratensis pollen/Dactylis glomerata top/Agrostis gigantea top/Phleum pratense pollen/Solidago virgaurea pollen/Ambrosia acanthicarpa pollen/Ambrosia psilostachya pollen/Fraxinus americana pollen/Fagus grandifolia pollen/Betula occidentalis pollen/Acer negundo pollen/Populus deltoides pollen/Ulmus americana pollen/Carya cordiformis pollen/Quercus rubra pollen/Platanus occidentalis pollen/Juglans nigra pollen/Salix nigra pollen/Potassium cation homeopathic preparation") (name fb:m.0hqwsp9 Sulfur/Resorcinol) (name fb:m.0hqw1ks ".alpha.-ketoglutaric acid/.alpha.-lipoic acid/Sus scrofa artery/Ascorbic acid/Barium oxalosuccinate/Bryonia alba root/Calcitonin human/Sus scrofa cartilage/Chlorine/Black cohosh/Colchicum autumnale bulb/Sus scrofa conjunctiva/Solanum dulcamara flower/Velafermin/Sus scrofa umbilical cord/Sus scrofa adrenal gland/Nadide/Diethyl oxalacetate/Nerve growth factor/Sus scrofa parathyroid gland/Sus scrofa placenta/Quinhydrone/Toxicodendron pubescens leaf/Strontium cation/Sulfur/Sus scrofa vein/Prasterone homeopathic preparation") (name fb:m.0hqw4np "Actaea spicata root/Aesculus hippocastanum flower/Arnica montana/Bellis perennis/Bryonia alba root/Oyster shell calcium carbonate, crude/Calcium fluoride/Causticum/Black cohosh/Formic acid/Hypericum perforatum/Ledum palustre twig/Lithium cation/Magnesium cation/Phosphorus/Phytolacca americana root/Pulsatilla vulgaris/Rhododendron aureum leaf/Toxicodendron pubescens leaf/Ruta graveolens flowering top/Salicylic acid/Sepia officinalis juice/Sulfur/Zinc homeopathic preparation") (name fb:m.0hqx1rf "Aconitum napellus/Apis mellifera/Arnica montana/Arsenic cation (3+)/Atropa belladonna/Bellis perennis/Bryonia alba root/Calendula officinalis flowering top/Matricaria recutita/Helianthemum canadense/Clematis recta flowering top/Ferrum phosphoricum/Chloride ion/Hypericum perforatum/Strychnos ignatii seed/Impatiens glandulifera flower/Ornithogalum umbellatum/Passiflora incarnata flower/Phosphorus/Prunus cerasifera flower/Toxicodendron pubescens leaf/Sulfur/Comfrey root/Veratrum album root homeopathic preparation"))) (type fb:medicine.drug) What makes a burp smell like sulfur? .alpha.-ketoglutaric acid/.alpha.-lipoic acid/Sus scrofa artery/Ascorbic acid/Barium oxalosuccinate/Bryonia alba root/Calcitonin human/Sus scrofa cartilage/Chlorine/Black cohosh/Colchicum autumnale bulb/Sus scrofa conjunctiva/Solanum dulcamara flower/Velafermin/Sus scrofa umbilical cord/Sus scrofa adrenal gland/Nadide/Diethyl oxalacetate/Nerve growth factor/Sus scrofa parathyroid gland/Sus scrofa placenta/Quinhydrone/Toxicodendron pubescens leaf/Strontium cation/Sulfur/Sus scrofa vein/Prasterone homeopathic preparation -5.152 formula (and (fb:type.object.type fb:common.topic) (!fb:medicine.drug_ingredient.active_moiety_of_drug fb:en.sulfur))) (value (list (name fb:m.0hqwgfq "Acetylcarnitine/Adenosine cyclic 3',5'-phosphate/.alpha.-lipoic acid/.alpha.-tocopherol acetate, dl-/Ascorbic acid/Calcium cation/Anhydrous citric acid/Cobalamin/Colchicum autumnale bulb/Conium maculatum flowering top/Cupric cation/Herring sperm dna/Ferric cation/Folic acid/Fumaric acid/Pyruvaldehyde/Potassium cation/Magnesium cation/Manganese cation (2+)/Manganese phosphate, dibasic/Diethyl oxalacetate/Sodium cation/Niacin/Pantothenic acid/Phosphorus/Podophyllum/Pyridoxine/Riboflavin/Saccharomyces cerevisiae rna/Selenomethionine/Succinic acid/Sulfur/Thiamine/Zinc homeopathic preparation") (name fb:m.0hqvvg3 "Aldesleukin/Arsenic trioxide/Atropa belladonna/Canakinumab/Echinacea angustifolia/Graphite/Melatonin/Plantago major/Solanum dulcamara flower/Sulfur homeopathic preparation") (name fb:m.0hqvffl "Aethusa cynapium/Semecarpus anacardium juice/Celery seed/Oyster shell calcium carbonate, crude/Gamboge/Histamine/Goldenseal/Skim milk/Cow milk/Pulsatilla vulgaris/Sepia officinalis juice/Sulfur homeopathic preparation") (name fb:m.0hqvvlk "Onion/Ambrosia artemisiifolia/Euphrasia stricta/Schoenocaulon officinale seed/Sus scrofa adrenal gland/Pork liver/Histamine/Arsenic trioxide/Phosphorus/Pulsatilla vulgaris/Sulfur/Platanus occidentalis pollen/Fagus grandifolia pollen/Juglans nigra pollen/Salix nigra pollen/Acer negundo pollen/Populus deltoides pollen/Betula occidentalis pollen/Quercus rubra pollen/Carya ovata pollen/Poa pratensis top/Dactylis glomerata top/Agrostis gigantea top/Phleum pratense top/Ambrosia acanthicarpa pollen/Ambrosia trifida pollen/Ambrosia psilostachya pollen/Ambrosia artemisiifolia pollen/Rumex acetosella pollen/Rumex crispus pollen/Fraxinus americana pollen/Ulmus americana pollen homeopathic preparation") (name fb:en.sulfur Sulfur) (name fb:m.0hqw7g8 "Epinephrine/Red clover/Alfalfa/Arsenic trioxide/Phosphorus/Pulsatilla vulgaris/Histamine/Sulfur/Ambrosia artemisiifolia/Beef liver/Rumex acetosella pollen/Rumex crispus pollen/Poa pratensis pollen/Dactylis glomerata top/Agrostis gigantea top/Phleum pratense pollen/Solidago virgaurea pollen/Ambrosia acanthicarpa pollen/Ambrosia psilostachya pollen/Fraxinus americana pollen/Fagus grandifolia pollen/Betula occidentalis pollen/Acer negundo pollen/Populus deltoides pollen/Ulmus americana pollen/Carya cordiformis pollen/Quercus rubra pollen/Platanus occidentalis pollen/Juglans nigra pollen/Salix nigra pollen/Potassium cation homeopathic preparation") (name fb:m.0hqwsp9 Sulfur/Resorcinol) (name fb:m.0hqw1ks ".alpha.-ketoglutaric acid/.alpha.-lipoic acid/Sus scrofa artery/Ascorbic acid/Barium oxalosuccinate/Bryonia alba root/Calcitonin human/Sus scrofa cartilage/Chlorine/Black cohosh/Colchicum autumnale bulb/Sus scrofa conjunctiva/Solanum dulcamara flower/Velafermin/Sus scrofa umbilical cord/Sus scrofa adrenal gland/Nadide/Diethyl oxalacetate/Nerve growth factor/Sus scrofa parathyroid gland/Sus scrofa placenta/Quinhydrone/Toxicodendron pubescens leaf/Strontium cation/Sulfur/Sus scrofa vein/Prasterone homeopathic preparation") (name fb:m.0hqw4np "Actaea spicata root/Aesculus hippocastanum flower/Arnica montana/Bellis perennis/Bryonia alba root/Oyster shell calcium carbonate, crude/Calcium fluoride/Causticum/Black cohosh/Formic acid/Hypericum perforatum/Ledum palustre twig/Lithium cation/Magnesium cation/Phosphorus/Phytolacca americana root/Pulsatilla vulgaris/Rhododendron aureum leaf/Toxicodendron pubescens leaf/Ruta graveolens flowering top/Salicylic acid/Sepia officinalis juice/Sulfur/Zinc homeopathic preparation") (name fb:m.0hqx1rf "Aconitum napellus/Apis mellifera/Arnica montana/Arsenic cation (3+)/Atropa belladonna/Bellis perennis/Bryonia alba root/Calendula officinalis flowering top/Matricaria recutita/Helianthemum canadense/Clematis recta flowering top/Ferrum phosphoricum/Chloride ion/Hypericum perforatum/Strychnos ignatii seed/Impatiens glandulifera flower/Ornithogalum umbellatum/Passiflora incarnata flower/Phosphorus/Prunus cerasifera flower/Toxicodendron pubescens leaf/Sulfur/Comfrey root/Veratrum album root homeopathic preparation"))) (type fb:medicine.drug) What makes a burp smell like sulfur? Actaea spicata root/Aesculus hippocastanum flower/Arnica montana/Bellis perennis/Bryonia alba root/Oyster shell calcium carbonate, crude/Calcium fluoride/Causticum/Black cohosh/Formic acid/Hypericum perforatum/Ledum palustre twig/Lithium cation/Magnesium cation/Phosphorus/Phytolacca americana root/Pulsatilla vulgaris/Rhododendron aureum leaf/Toxicodendron pubescens leaf/Ruta graveolens flowering top/Salicylic acid/Sepia officinalis juice/Sulfur/Zinc homeopathic preparation -5.152 formula (and (fb:type.object.type fb:common.topic) (!fb:medicine.drug_ingredient.active_moiety_of_drug fb:en.sulfur))) (value (list (name fb:m.0hqwgfq "Acetylcarnitine/Adenosine cyclic 3',5'-phosphate/.alpha.-lipoic acid/.alpha.-tocopherol acetate, dl-/Ascorbic acid/Calcium cation/Anhydrous citric acid/Cobalamin/Colchicum autumnale bulb/Conium maculatum flowering top/Cupric cation/Herring sperm dna/Ferric cation/Folic acid/Fumaric acid/Pyruvaldehyde/Potassium cation/Magnesium cation/Manganese cation (2+)/Manganese phosphate, dibasic/Diethyl oxalacetate/Sodium cation/Niacin/Pantothenic acid/Phosphorus/Podophyllum/Pyridoxine/Riboflavin/Saccharomyces cerevisiae rna/Selenomethionine/Succinic acid/Sulfur/Thiamine/Zinc homeopathic preparation") (name fb:m.0hqvvg3 "Aldesleukin/Arsenic trioxide/Atropa belladonna/Canakinumab/Echinacea angustifolia/Graphite/Melatonin/Plantago major/Solanum dulcamara flower/Sulfur homeopathic preparation") (name fb:m.0hqvffl "Aethusa cynapium/Semecarpus anacardium juice/Celery seed/Oyster shell calcium carbonate, crude/Gamboge/Histamine/Goldenseal/Skim milk/Cow milk/Pulsatilla vulgaris/Sepia officinalis juice/Sulfur homeopathic preparation") (name fb:m.0hqvvlk "Onion/Ambrosia artemisiifolia/Euphrasia stricta/Schoenocaulon officinale seed/Sus scrofa adrenal gland/Pork liver/Histamine/Arsenic trioxide/Phosphorus/Pulsatilla vulgaris/Sulfur/Platanus occidentalis pollen/Fagus grandifolia pollen/Juglans nigra pollen/Salix nigra pollen/Acer negundo pollen/Populus deltoides pollen/Betula occidentalis pollen/Quercus rubra pollen/Carya ovata pollen/Poa pratensis top/Dactylis glomerata top/Agrostis gigantea top/Phleum pratense top/Ambrosia acanthicarpa pollen/Ambrosia trifida pollen/Ambrosia psilostachya pollen/Ambrosia artemisiifolia pollen/Rumex acetosella pollen/Rumex crispus pollen/Fraxinus americana pollen/Ulmus americana pollen homeopathic preparation") (name fb:en.sulfur Sulfur) (name fb:m.0hqw7g8 "Epinephrine/Red clover/Alfalfa/Arsenic trioxide/Phosphorus/Pulsatilla vulgaris/Histamine/Sulfur/Ambrosia artemisiifolia/Beef liver/Rumex acetosella pollen/Rumex crispus pollen/Poa pratensis pollen/Dactylis glomerata top/Agrostis gigantea top/Phleum pratense pollen/Solidago virgaurea pollen/Ambrosia acanthicarpa pollen/Ambrosia psilostachya pollen/Fraxinus americana pollen/Fagus grandifolia pollen/Betula occidentalis pollen/Acer negundo pollen/Populus deltoides pollen/Ulmus americana pollen/Carya cordiformis pollen/Quercus rubra pollen/Platanus occidentalis pollen/Juglans nigra pollen/Salix nigra pollen/Potassium cation homeopathic preparation") (name fb:m.0hqwsp9 Sulfur/Resorcinol) (name fb:m.0hqw1ks ".alpha.-ketoglutaric acid/.alpha.-lipoic acid/Sus scrofa artery/Ascorbic acid/Barium oxalosuccinate/Bryonia alba root/Calcitonin human/Sus scrofa cartilage/Chlorine/Black cohosh/Colchicum autumnale bulb/Sus scrofa conjunctiva/Solanum dulcamara flower/Velafermin/Sus scrofa umbilical cord/Sus scrofa adrenal gland/Nadide/Diethyl oxalacetate/Nerve growth factor/Sus scrofa parathyroid gland/Sus scrofa placenta/Quinhydrone/Toxicodendron pubescens leaf/Strontium cation/Sulfur/Sus scrofa vein/Prasterone homeopathic preparation") (name fb:m.0hqw4np "Actaea spicata root/Aesculus hippocastanum flower/Arnica montana/Bellis perennis/Bryonia alba root/Oyster shell calcium carbonate, crude/Calcium fluoride/Causticum/Black cohosh/Formic acid/Hypericum perforatum/Ledum palustre twig/Lithium cation/Magnesium cation/Phosphorus/Phytolacca americana root/Pulsatilla vulgaris/Rhododendron aureum leaf/Toxicodendron pubescens leaf/Ruta graveolens flowering top/Salicylic acid/Sepia officinalis juice/Sulfur/Zinc homeopathic preparation") (name fb:m.0hqx1rf "Aconitum napellus/Apis mellifera/Arnica montana/Arsenic cation (3+)/Atropa belladonna/Bellis perennis/Bryonia alba root/Calendula officinalis flowering top/Matricaria recutita/Helianthemum canadense/Clematis recta flowering top/Ferrum phosphoricum/Chloride ion/Hypericum perforatum/Strychnos ignatii seed/Impatiens glandulifera flower/Ornithogalum umbellatum/Passiflora incarnata flower/Phosphorus/Prunus cerasifera flower/Toxicodendron pubescens leaf/Sulfur/Comfrey root/Veratrum album root homeopathic preparation"))) (type fb:medicine.drug) What makes a burp smell like sulfur? Aconitum napellus/Apis mellifera/Arnica montana/Arsenic cation (3+)/Atropa belladonna/Bellis perennis/Bryonia alba root/Calendula officinalis flowering top/Matricaria recutita/Helianthemum canadense/Clematis recta flowering top/Ferrum phosphoricum/Chloride ion/Hypericum perforatum/Strychnos ignatii seed/Impatiens glandulifera flower/Ornithogalum umbellatum/Passiflora incarnata flower/Phosphorus/Prunus cerasifera flower/Toxicodendron pubescens leaf/Sulfur/Comfrey root/Veratrum album root homeopathic preparation -5.152 formula (and (fb:type.object.type fb:common.topic) (!fb:medicine.drug_ingredient.active_moiety_of_drug fb:en.sulfur))) (value (list (name fb:m.0hqwgfq "Acetylcarnitine/Adenosine cyclic 3',5'-phosphate/.alpha.-lipoic acid/.alpha.-tocopherol acetate, dl-/Ascorbic acid/Calcium cation/Anhydrous citric acid/Cobalamin/Colchicum autumnale bulb/Conium maculatum flowering top/Cupric cation/Herring sperm dna/Ferric cation/Folic acid/Fumaric acid/Pyruvaldehyde/Potassium cation/Magnesium cation/Manganese cation (2+)/Manganese phosphate, dibasic/Diethyl oxalacetate/Sodium cation/Niacin/Pantothenic acid/Phosphorus/Podophyllum/Pyridoxine/Riboflavin/Saccharomyces cerevisiae rna/Selenomethionine/Succinic acid/Sulfur/Thiamine/Zinc homeopathic preparation") (name fb:m.0hqvvg3 "Aldesleukin/Arsenic trioxide/Atropa belladonna/Canakinumab/Echinacea angustifolia/Graphite/Melatonin/Plantago major/Solanum dulcamara flower/Sulfur homeopathic preparation") (name fb:m.0hqvffl "Aethusa cynapium/Semecarpus anacardium juice/Celery seed/Oyster shell calcium carbonate, crude/Gamboge/Histamine/Goldenseal/Skim milk/Cow milk/Pulsatilla vulgaris/Sepia officinalis juice/Sulfur homeopathic preparation") (name fb:m.0hqvvlk "Onion/Ambrosia artemisiifolia/Euphrasia stricta/Schoenocaulon officinale seed/Sus scrofa adrenal gland/Pork liver/Histamine/Arsenic trioxide/Phosphorus/Pulsatilla vulgaris/Sulfur/Platanus occidentalis pollen/Fagus grandifolia pollen/Juglans nigra pollen/Salix nigra pollen/Acer negundo pollen/Populus deltoides pollen/Betula occidentalis pollen/Quercus rubra pollen/Carya ovata pollen/Poa pratensis top/Dactylis glomerata top/Agrostis gigantea top/Phleum pratense top/Ambrosia acanthicarpa pollen/Ambrosia trifida pollen/Ambrosia psilostachya pollen/Ambrosia artemisiifolia pollen/Rumex acetosella pollen/Rumex crispus pollen/Fraxinus americana pollen/Ulmus americana pollen homeopathic preparation") (name fb:en.sulfur Sulfur) (name fb:m.0hqw7g8 "Epinephrine/Red clover/Alfalfa/Arsenic trioxide/Phosphorus/Pulsatilla vulgaris/Histamine/Sulfur/Ambrosia artemisiifolia/Beef liver/Rumex acetosella pollen/Rumex crispus pollen/Poa pratensis pollen/Dactylis glomerata top/Agrostis gigantea top/Phleum pratense pollen/Solidago virgaurea pollen/Ambrosia acanthicarpa pollen/Ambrosia psilostachya pollen/Fraxinus americana pollen/Fagus grandifolia pollen/Betula occidentalis pollen/Acer negundo pollen/Populus deltoides pollen/Ulmus americana pollen/Carya cordiformis pollen/Quercus rubra pollen/Platanus occidentalis pollen/Juglans nigra pollen/Salix nigra pollen/Potassium cation homeopathic preparation") (name fb:m.0hqwsp9 Sulfur/Resorcinol) (name fb:m.0hqw1ks ".alpha.-ketoglutaric acid/.alpha.-lipoic acid/Sus scrofa artery/Ascorbic acid/Barium oxalosuccinate/Bryonia alba root/Calcitonin human/Sus scrofa cartilage/Chlorine/Black cohosh/Colchicum autumnale bulb/Sus scrofa conjunctiva/Solanum dulcamara flower/Velafermin/Sus scrofa umbilical cord/Sus scrofa adrenal gland/Nadide/Diethyl oxalacetate/Nerve growth factor/Sus scrofa parathyroid gland/Sus scrofa placenta/Quinhydrone/Toxicodendron pubescens leaf/Strontium cation/Sulfur/Sus scrofa vein/Prasterone homeopathic preparation") (name fb:m.0hqw4np "Actaea spicata root/Aesculus hippocastanum flower/Arnica montana/Bellis perennis/Bryonia alba root/Oyster shell calcium carbonate, crude/Calcium fluoride/Causticum/Black cohosh/Formic acid/Hypericum perforatum/Ledum palustre twig/Lithium cation/Magnesium cation/Phosphorus/Phytolacca americana root/Pulsatilla vulgaris/Rhododendron aureum leaf/Toxicodendron pubescens leaf/Ruta graveolens flowering top/Salicylic acid/Sepia officinalis juice/Sulfur/Zinc homeopathic preparation") (name fb:m.0hqx1rf "Aconitum napellus/Apis mellifera/Arnica montana/Arsenic cation (3+)/Atropa belladonna/Bellis perennis/Bryonia alba root/Calendula officinalis flowering top/Matricaria recutita/Helianthemum canadense/Clematis recta flowering top/Ferrum phosphoricum/Chloride ion/Hypericum perforatum/Strychnos ignatii seed/Impatiens glandulifera flower/Ornithogalum umbellatum/Passiflora incarnata flower/Phosphorus/Prunus cerasifera flower/Toxicodendron pubescens leaf/Sulfur/Comfrey root/Veratrum album root homeopathic preparation"))) (type fb:medicine.drug) Can you put food coloring in paint? Fast food -0.445 formula (fb:business.industry.parent_industry fb:en.food_industry)) (value (list (name fb:en.fast_food "Fast food") (name fb:en.food_engineering "Food engineering"))) (type fb:business.industry) Can you put food coloring in paint? Food engineering -0.445 formula (fb:business.industry.parent_industry fb:en.food_industry)) (value (list (name fb:en.fast_food "Fast food") (name fb:en.food_engineering "Food engineering"))) (type fb:business.industry) What is the date of Saint Anne's death? Michael Packe -1.665 formula (and (fb:type.object.type fb:common.topic) (fb:people.deceased_person.place_of_death fb:en.st_anne_alderney))) (value (list (name fb:en.michael_packe "Michael Packe"))) (type fb:people.deceased_person) Who was the first Asian Victoria's Secret model? Sarita Stella 0.962 formula (and (fb:type.object.type fb:people.person) (and (fb:people.person.profession fb:en.model) (fb:people.person.place_of_birth fb:en.victoria)))) (value (list (name fb:en.sarita_stella "Sarita Stella") (name fb:en.nikki_whelan "Nicky Whelan"))) (type fb:people.person) Who was the first Asian Victoria's Secret model? Nicky Whelan 0.962 formula (and (fb:type.object.type fb:people.person) (and (fb:people.person.profession fb:en.model) (fb:people.person.place_of_birth fb:en.victoria)))) (value (list (name fb:en.sarita_stella "Sarita Stella") (name fb:en.nikki_whelan "Nicky Whelan"))) (type fb:people.person) Is a locust tree poisonous? Desert locust -2.159 formula (fb:common.image.appears_in_topic_gallery fb:en.locust)) (value (list (name fb:m.02br_dn "Desert locust") (name fb:m.03tdn5n "Oxya yezoensis ale(left) and male(right).") (name fb:m.04pggcz "Desert locust, Schistocerca gregariaMale (on top) and female"))) (type fb:common.image) Is a locust tree poisonous? Oxya yezoensis ale(left) and male(right). -2.159 formula (fb:common.image.appears_in_topic_gallery fb:en.locust)) (value (list (name fb:m.02br_dn "Desert locust") (name fb:m.03tdn5n "Oxya yezoensis ale(left) and male(right).") (name fb:m.04pggcz "Desert locust, Schistocerca gregariaMale (on top) and female"))) (type fb:common.image) Is a locust tree poisonous? Desert locust, Schistocerca gregariaMale (on top) and female -2.159 formula (fb:common.image.appears_in_topic_gallery fb:en.locust)) (value (list (name fb:m.02br_dn "Desert locust") (name fb:m.03tdn5n "Oxya yezoensis ale(left) and male(right).") (name fb:m.04pggcz "Desert locust, Schistocerca gregariaMale (on top) and female"))) (type fb:common.image) What is the scientific classification of a rose? Rosa canina 1.407 formula (and (fb:type.object.type fb:common.topic) (fb:biology.organism_classification.higher_classification fb:en.rose))) (value (list (name fb:en.dog_rose "Rosa canina") (name fb:en.rosa_precious_platinum "Rosa 'Precious Platinum'") (name fb:m.0gx5cq3 "Rosa 'World's Fair'") (name fb:m.0gfr6pv "Rosa 'Veterans' Honor'") (name fb:en.rosa_sericea "Rosa sericea") (name fb:m.0c02nwq "Rosa woodsii") (name fb:en.rosa_moschata "Rosa moschata") (name fb:en.rosa_davidii "Rosa davidii") (name fb:en.rosa_centifolia "Rosa �� centifolia") (name fb:en.rosa_moyesii "Rosa moyesii"))) (type fb:biology.organism_classification) What is the scientific classification of a rose? Rosa 'Precious Platinum' 1.407 formula (and (fb:type.object.type fb:common.topic) (fb:biology.organism_classification.higher_classification fb:en.rose))) (value (list (name fb:en.dog_rose "Rosa canina") (name fb:en.rosa_precious_platinum "Rosa 'Precious Platinum'") (name fb:m.0gx5cq3 "Rosa 'World's Fair'") (name fb:m.0gfr6pv "Rosa 'Veterans' Honor'") (name fb:en.rosa_sericea "Rosa sericea") (name fb:m.0c02nwq "Rosa woodsii") (name fb:en.rosa_moschata "Rosa moschata") (name fb:en.rosa_davidii "Rosa davidii") (name fb:en.rosa_centifolia "Rosa �� centifolia") (name fb:en.rosa_moyesii "Rosa moyesii"))) (type fb:biology.organism_classification) What is the scientific classification of a rose? Rosa 'World's Fair' 1.407 formula (and (fb:type.object.type fb:common.topic) (fb:biology.organism_classification.higher_classification fb:en.rose))) (value (list (name fb:en.dog_rose "Rosa canina") (name fb:en.rosa_precious_platinum "Rosa 'Precious Platinum'") (name fb:m.0gx5cq3 "Rosa 'World's Fair'") (name fb:m.0gfr6pv "Rosa 'Veterans' Honor'") (name fb:en.rosa_sericea "Rosa sericea") (name fb:m.0c02nwq "Rosa woodsii") (name fb:en.rosa_moschata "Rosa moschata") (name fb:en.rosa_davidii "Rosa davidii") (name fb:en.rosa_centifolia "Rosa �� centifolia") (name fb:en.rosa_moyesii "Rosa moyesii"))) (type fb:biology.organism_classification) What is the scientific classification of a rose? Rosa 'Veterans' Honor' 1.407 formula (and (fb:type.object.type fb:common.topic) (fb:biology.organism_classification.higher_classification fb:en.rose))) (value (list (name fb:en.dog_rose "Rosa canina") (name fb:en.rosa_precious_platinum "Rosa 'Precious Platinum'") (name fb:m.0gx5cq3 "Rosa 'World's Fair'") (name fb:m.0gfr6pv "Rosa 'Veterans' Honor'") (name fb:en.rosa_sericea "Rosa sericea") (name fb:m.0c02nwq "Rosa woodsii") (name fb:en.rosa_moschata "Rosa moschata") (name fb:en.rosa_davidii "Rosa davidii") (name fb:en.rosa_centifolia "Rosa �� centifolia") (name fb:en.rosa_moyesii "Rosa moyesii"))) (type fb:biology.organism_classification) What is the scientific classification of a rose? Rosa sericea 1.407 formula (and (fb:type.object.type fb:common.topic) (fb:biology.organism_classification.higher_classification fb:en.rose))) (value (list (name fb:en.dog_rose "Rosa canina") (name fb:en.rosa_precious_platinum "Rosa 'Precious Platinum'") (name fb:m.0gx5cq3 "Rosa 'World's Fair'") (name fb:m.0gfr6pv "Rosa 'Veterans' Honor'") (name fb:en.rosa_sericea "Rosa sericea") (name fb:m.0c02nwq "Rosa woodsii") (name fb:en.rosa_moschata "Rosa moschata") (name fb:en.rosa_davidii "Rosa davidii") (name fb:en.rosa_centifolia "Rosa �� centifolia") (name fb:en.rosa_moyesii "Rosa moyesii"))) (type fb:biology.organism_classification) What is the scientific classification of a rose? Rosa woodsii 1.407 formula (and (fb:type.object.type fb:common.topic) (fb:biology.organism_classification.higher_classification fb:en.rose))) (value (list (name fb:en.dog_rose "Rosa canina") (name fb:en.rosa_precious_platinum "Rosa 'Precious Platinum'") (name fb:m.0gx5cq3 "Rosa 'World's Fair'") (name fb:m.0gfr6pv "Rosa 'Veterans' Honor'") (name fb:en.rosa_sericea "Rosa sericea") (name fb:m.0c02nwq "Rosa woodsii") (name fb:en.rosa_moschata "Rosa moschata") (name fb:en.rosa_davidii "Rosa davidii") (name fb:en.rosa_centifolia "Rosa �� centifolia") (name fb:en.rosa_moyesii "Rosa moyesii"))) (type fb:biology.organism_classification) What is the scientific classification of a rose? Rosa moschata 1.407 formula (and (fb:type.object.type fb:common.topic) (fb:biology.organism_classification.higher_classification fb:en.rose))) (value (list (name fb:en.dog_rose "Rosa canina") (name fb:en.rosa_precious_platinum "Rosa 'Precious Platinum'") (name fb:m.0gx5cq3 "Rosa 'World's Fair'") (name fb:m.0gfr6pv "Rosa 'Veterans' Honor'") (name fb:en.rosa_sericea "Rosa sericea") (name fb:m.0c02nwq "Rosa woodsii") (name fb:en.rosa_moschata "Rosa moschata") (name fb:en.rosa_davidii "Rosa davidii") (name fb:en.rosa_centifolia "Rosa �� centifolia") (name fb:en.rosa_moyesii "Rosa moyesii"))) (type fb:biology.organism_classification) What is the scientific classification of a rose? Rosa davidii 1.407 formula (and (fb:type.object.type fb:common.topic) (fb:biology.organism_classification.higher_classification fb:en.rose))) (value (list (name fb:en.dog_rose "Rosa canina") (name fb:en.rosa_precious_platinum "Rosa 'Precious Platinum'") (name fb:m.0gx5cq3 "Rosa 'World's Fair'") (name fb:m.0gfr6pv "Rosa 'Veterans' Honor'") (name fb:en.rosa_sericea "Rosa sericea") (name fb:m.0c02nwq "Rosa woodsii") (name fb:en.rosa_moschata "Rosa moschata") (name fb:en.rosa_davidii "Rosa davidii") (name fb:en.rosa_centifolia "Rosa �� centifolia") (name fb:en.rosa_moyesii "Rosa moyesii"))) (type fb:biology.organism_classification) What is the scientific classification of a rose? Rosa �� centifolia 1.407 formula (and (fb:type.object.type fb:common.topic) (fb:biology.organism_classification.higher_classification fb:en.rose))) (value (list (name fb:en.dog_rose "Rosa canina") (name fb:en.rosa_precious_platinum "Rosa 'Precious Platinum'") (name fb:m.0gx5cq3 "Rosa 'World's Fair'") (name fb:m.0gfr6pv "Rosa 'Veterans' Honor'") (name fb:en.rosa_sericea "Rosa sericea") (name fb:m.0c02nwq "Rosa woodsii") (name fb:en.rosa_moschata "Rosa moschata") (name fb:en.rosa_davidii "Rosa davidii") (name fb:en.rosa_centifolia "Rosa �� centifolia") (name fb:en.rosa_moyesii "Rosa moyesii"))) (type fb:biology.organism_classification) What is the scientific classification of a rose? Rosa moyesii 1.407 formula (and (fb:type.object.type fb:common.topic) (fb:biology.organism_classification.higher_classification fb:en.rose))) (value (list (name fb:en.dog_rose "Rosa canina") (name fb:en.rosa_precious_platinum "Rosa 'Precious Platinum'") (name fb:m.0gx5cq3 "Rosa 'World's Fair'") (name fb:m.0gfr6pv "Rosa 'Veterans' Honor'") (name fb:en.rosa_sericea "Rosa sericea") (name fb:m.0c02nwq "Rosa woodsii") (name fb:en.rosa_moschata "Rosa moschata") (name fb:en.rosa_davidii "Rosa davidii") (name fb:en.rosa_centifolia "Rosa �� centifolia") (name fb:en.rosa_moyesii "Rosa moyesii"))) (type fb:biology.organism_classification) How long is the film bride wars? Makeup Artist 0.524 formula ((lambda x (!fb:film.film_crew_gig.film_crew_role (!fb:film.film.other_crew (var x)))) fb:en.bride_wars)) (value (list (name fb:en.makeup_artist "Makeup Artist") (name fb:en.supervising_sound_editor "Supervising Sound Editor") (name fb:en.vfx_producer "Visual Effects Producer") (name fb:m.098j4cg "ADR Mixer") (name fb:en.visual_effects_supervisor "Visual Effects Supervisor") (name fb:en.makeup_department_head "Makeup Department Head") (name fb:en.hair_stylist "Hair Stylist") (name fb:en.adr_recordist "ADR Recordist") (name fb:en.production_sound_mixer "Sound Mixer") (name fb:en.re_recording_mixer "Sound Re-Recording Mixer"))) (type fb:film.film_job) How long is the film bride wars? Supervising Sound Editor 0.524 formula ((lambda x (!fb:film.film_crew_gig.film_crew_role (!fb:film.film.other_crew (var x)))) fb:en.bride_wars)) (value (list (name fb:en.makeup_artist "Makeup Artist") (name fb:en.supervising_sound_editor "Supervising Sound Editor") (name fb:en.vfx_producer "Visual Effects Producer") (name fb:m.098j4cg "ADR Mixer") (name fb:en.visual_effects_supervisor "Visual Effects Supervisor") (name fb:en.makeup_department_head "Makeup Department Head") (name fb:en.hair_stylist "Hair Stylist") (name fb:en.adr_recordist "ADR Recordist") (name fb:en.production_sound_mixer "Sound Mixer") (name fb:en.re_recording_mixer "Sound Re-Recording Mixer"))) (type fb:film.film_job) How long is the film bride wars? Visual Effects Producer 0.524 formula ((lambda x (!fb:film.film_crew_gig.film_crew_role (!fb:film.film.other_crew (var x)))) fb:en.bride_wars)) (value (list (name fb:en.makeup_artist "Makeup Artist") (name fb:en.supervising_sound_editor "Supervising Sound Editor") (name fb:en.vfx_producer "Visual Effects Producer") (name fb:m.098j4cg "ADR Mixer") (name fb:en.visual_effects_supervisor "Visual Effects Supervisor") (name fb:en.makeup_department_head "Makeup Department Head") (name fb:en.hair_stylist "Hair Stylist") (name fb:en.adr_recordist "ADR Recordist") (name fb:en.production_sound_mixer "Sound Mixer") (name fb:en.re_recording_mixer "Sound Re-Recording Mixer"))) (type fb:film.film_job) How long is the film bride wars? ADR Mixer 0.524 formula ((lambda x (!fb:film.film_crew_gig.film_crew_role (!fb:film.film.other_crew (var x)))) fb:en.bride_wars)) (value (list (name fb:en.makeup_artist "Makeup Artist") (name fb:en.supervising_sound_editor "Supervising Sound Editor") (name fb:en.vfx_producer "Visual Effects Producer") (name fb:m.098j4cg "ADR Mixer") (name fb:en.visual_effects_supervisor "Visual Effects Supervisor") (name fb:en.makeup_department_head "Makeup Department Head") (name fb:en.hair_stylist "Hair Stylist") (name fb:en.adr_recordist "ADR Recordist") (name fb:en.production_sound_mixer "Sound Mixer") (name fb:en.re_recording_mixer "Sound Re-Recording Mixer"))) (type fb:film.film_job) How long is the film bride wars? Visual Effects Supervisor 0.524 formula ((lambda x (!fb:film.film_crew_gig.film_crew_role (!fb:film.film.other_crew (var x)))) fb:en.bride_wars)) (value (list (name fb:en.makeup_artist "Makeup Artist") (name fb:en.supervising_sound_editor "Supervising Sound Editor") (name fb:en.vfx_producer "Visual Effects Producer") (name fb:m.098j4cg "ADR Mixer") (name fb:en.visual_effects_supervisor "Visual Effects Supervisor") (name fb:en.makeup_department_head "Makeup Department Head") (name fb:en.hair_stylist "Hair Stylist") (name fb:en.adr_recordist "ADR Recordist") (name fb:en.production_sound_mixer "Sound Mixer") (name fb:en.re_recording_mixer "Sound Re-Recording Mixer"))) (type fb:film.film_job) How long is the film bride wars? Makeup Department Head 0.524 formula ((lambda x (!fb:film.film_crew_gig.film_crew_role (!fb:film.film.other_crew (var x)))) fb:en.bride_wars)) (value (list (name fb:en.makeup_artist "Makeup Artist") (name fb:en.supervising_sound_editor "Supervising Sound Editor") (name fb:en.vfx_producer "Visual Effects Producer") (name fb:m.098j4cg "ADR Mixer") (name fb:en.visual_effects_supervisor "Visual Effects Supervisor") (name fb:en.makeup_department_head "Makeup Department Head") (name fb:en.hair_stylist "Hair Stylist") (name fb:en.adr_recordist "ADR Recordist") (name fb:en.production_sound_mixer "Sound Mixer") (name fb:en.re_recording_mixer "Sound Re-Recording Mixer"))) (type fb:film.film_job) How long is the film bride wars? Hair Stylist 0.524 formula ((lambda x (!fb:film.film_crew_gig.film_crew_role (!fb:film.film.other_crew (var x)))) fb:en.bride_wars)) (value (list (name fb:en.makeup_artist "Makeup Artist") (name fb:en.supervising_sound_editor "Supervising Sound Editor") (name fb:en.vfx_producer "Visual Effects Producer") (name fb:m.098j4cg "ADR Mixer") (name fb:en.visual_effects_supervisor "Visual Effects Supervisor") (name fb:en.makeup_department_head "Makeup Department Head") (name fb:en.hair_stylist "Hair Stylist") (name fb:en.adr_recordist "ADR Recordist") (name fb:en.production_sound_mixer "Sound Mixer") (name fb:en.re_recording_mixer "Sound Re-Recording Mixer"))) (type fb:film.film_job) How long is the film bride wars? ADR Recordist 0.524 formula ((lambda x (!fb:film.film_crew_gig.film_crew_role (!fb:film.film.other_crew (var x)))) fb:en.bride_wars)) (value (list (name fb:en.makeup_artist "Makeup Artist") (name fb:en.supervising_sound_editor "Supervising Sound Editor") (name fb:en.vfx_producer "Visual Effects Producer") (name fb:m.098j4cg "ADR Mixer") (name fb:en.visual_effects_supervisor "Visual Effects Supervisor") (name fb:en.makeup_department_head "Makeup Department Head") (name fb:en.hair_stylist "Hair Stylist") (name fb:en.adr_recordist "ADR Recordist") (name fb:en.production_sound_mixer "Sound Mixer") (name fb:en.re_recording_mixer "Sound Re-Recording Mixer"))) (type fb:film.film_job) How long is the film bride wars? Sound Mixer 0.524 formula ((lambda x (!fb:film.film_crew_gig.film_crew_role (!fb:film.film.other_crew (var x)))) fb:en.bride_wars)) (value (list (name fb:en.makeup_artist "Makeup Artist") (name fb:en.supervising_sound_editor "Supervising Sound Editor") (name fb:en.vfx_producer "Visual Effects Producer") (name fb:m.098j4cg "ADR Mixer") (name fb:en.visual_effects_supervisor "Visual Effects Supervisor") (name fb:en.makeup_department_head "Makeup Department Head") (name fb:en.hair_stylist "Hair Stylist") (name fb:en.adr_recordist "ADR Recordist") (name fb:en.production_sound_mixer "Sound Mixer") (name fb:en.re_recording_mixer "Sound Re-Recording Mixer"))) (type fb:film.film_job) How long is the film bride wars? Sound Re-Recording Mixer 0.524 formula ((lambda x (!fb:film.film_crew_gig.film_crew_role (!fb:film.film.other_crew (var x)))) fb:en.bride_wars)) (value (list (name fb:en.makeup_artist "Makeup Artist") (name fb:en.supervising_sound_editor "Supervising Sound Editor") (name fb:en.vfx_producer "Visual Effects Producer") (name fb:m.098j4cg "ADR Mixer") (name fb:en.visual_effects_supervisor "Visual Effects Supervisor") (name fb:en.makeup_department_head "Makeup Department Head") (name fb:en.hair_stylist "Hair Stylist") (name fb:en.adr_recordist "ADR Recordist") (name fb:en.production_sound_mixer "Sound Mixer") (name fb:en.re_recording_mixer "Sound Re-Recording Mixer"))) (type fb:film.film_job) What are hoardings and their types? Canonical Version -2.224 formula (!fb:common.topic.notable_types fb:m.0dvbs03)) (value (list (name fb:music.single "Canonical Version") (name fb:music.recording "Musical Recording"))) (type fb:type.type) What are hoardings and their types? Musical Recording -2.224 formula (!fb:common.topic.notable_types fb:m.0dvbs03)) (value (list (name fb:music.single "Canonical Version") (name fb:music.recording "Musical Recording"))) (type fb:type.type) Who wrote cat on a hot tin roof? A Dog and a Cat near a Partially Disembowelled Deer -4.126 formula (fb:visual_art.artwork.art_subject fb:en.cat)) (value (list (name fb:en.a_dog_and_a_cat_near_a_partially_disembowelled_deer "A Dog and a Cat near a Partially Disembowelled Deer"))) (type fb:visual_art.artwork) Is Barack Obama's maternal grandfather alive? Entertainment Weekly annotation index -0.649 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.barack_obama)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index") (name fb:m.0bvlr64 "Blissful Master Index"))) (type fb:common.annotation_index) Is Barack Obama's maternal grandfather alive? WSJ Speakeasy Index -0.649 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.barack_obama)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index") (name fb:m.0bvlr64 "Blissful Master Index"))) (type fb:common.annotation_index) Is Barack Obama's maternal grandfather alive? Blissful Master Index -0.649 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.barack_obama)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index") (name fb:m.0bvlr64 "Blissful Master Index"))) (type fb:common.annotation_index) Why did bolivar's unification of Latin America not last? Newspaper circulation area -6.515 formula (!fb:common.topic.notable_types fb:en.latin_america)) (value (list (name fb:periodicals.newspaper_circulation_area "Newspaper circulation area") (name fb:location.location Location) (name fb:base.skosbase.vocabulary_equivalent_topic "Vocabulary Equivalent Topic") (name fb:book.book_subject "Literature Subject") (name fb:user.tsegaran.random.taxonomy_subject "Taxonomy Subject") (name fb:base.ontologies.ontology_instance "Ontology Instance") (name fb:organization.organization_scope "Organization scope") (name fb:media_common.netflix_genre "Netflix Genre") (name fb:location.region Region) (name fb:user.djproctor.science_and_development.base_topic Topic))) (type fb:type.type) Why did bolivar's unification of Latin America not last? Vocabulary Equivalent Topic -6.515 formula (!fb:common.topic.notable_types fb:en.latin_america)) (value (list (name fb:periodicals.newspaper_circulation_area "Newspaper circulation area") (name fb:location.location Location) (name fb:base.skosbase.vocabulary_equivalent_topic "Vocabulary Equivalent Topic") (name fb:book.book_subject "Literature Subject") (name fb:user.tsegaran.random.taxonomy_subject "Taxonomy Subject") (name fb:base.ontologies.ontology_instance "Ontology Instance") (name fb:organization.organization_scope "Organization scope") (name fb:media_common.netflix_genre "Netflix Genre") (name fb:location.region Region) (name fb:user.djproctor.science_and_development.base_topic Topic))) (type fb:type.type) Why did bolivar's unification of Latin America not last? Literature Subject -6.515 formula (!fb:common.topic.notable_types fb:en.latin_america)) (value (list (name fb:periodicals.newspaper_circulation_area "Newspaper circulation area") (name fb:location.location Location) (name fb:base.skosbase.vocabulary_equivalent_topic "Vocabulary Equivalent Topic") (name fb:book.book_subject "Literature Subject") (name fb:user.tsegaran.random.taxonomy_subject "Taxonomy Subject") (name fb:base.ontologies.ontology_instance "Ontology Instance") (name fb:organization.organization_scope "Organization scope") (name fb:media_common.netflix_genre "Netflix Genre") (name fb:location.region Region) (name fb:user.djproctor.science_and_development.base_topic Topic))) (type fb:type.type) Why did bolivar's unification of Latin America not last? Taxonomy Subject -6.515 formula (!fb:common.topic.notable_types fb:en.latin_america)) (value (list (name fb:periodicals.newspaper_circulation_area "Newspaper circulation area") (name fb:location.location Location) (name fb:base.skosbase.vocabulary_equivalent_topic "Vocabulary Equivalent Topic") (name fb:book.book_subject "Literature Subject") (name fb:user.tsegaran.random.taxonomy_subject "Taxonomy Subject") (name fb:base.ontologies.ontology_instance "Ontology Instance") (name fb:organization.organization_scope "Organization scope") (name fb:media_common.netflix_genre "Netflix Genre") (name fb:location.region Region) (name fb:user.djproctor.science_and_development.base_topic Topic))) (type fb:type.type) Why did bolivar's unification of Latin America not last? Ontology Instance -6.515 formula (!fb:common.topic.notable_types fb:en.latin_america)) (value (list (name fb:periodicals.newspaper_circulation_area "Newspaper circulation area") (name fb:location.location Location) (name fb:base.skosbase.vocabulary_equivalent_topic "Vocabulary Equivalent Topic") (name fb:book.book_subject "Literature Subject") (name fb:user.tsegaran.random.taxonomy_subject "Taxonomy Subject") (name fb:base.ontologies.ontology_instance "Ontology Instance") (name fb:organization.organization_scope "Organization scope") (name fb:media_common.netflix_genre "Netflix Genre") (name fb:location.region Region) (name fb:user.djproctor.science_and_development.base_topic Topic))) (type fb:type.type) Why did bolivar's unification of Latin America not last? Organization scope -6.515 formula (!fb:common.topic.notable_types fb:en.latin_america)) (value (list (name fb:periodicals.newspaper_circulation_area "Newspaper circulation area") (name fb:location.location Location) (name fb:base.skosbase.vocabulary_equivalent_topic "Vocabulary Equivalent Topic") (name fb:book.book_subject "Literature Subject") (name fb:user.tsegaran.random.taxonomy_subject "Taxonomy Subject") (name fb:base.ontologies.ontology_instance "Ontology Instance") (name fb:organization.organization_scope "Organization scope") (name fb:media_common.netflix_genre "Netflix Genre") (name fb:location.region Region) (name fb:user.djproctor.science_and_development.base_topic Topic))) (type fb:type.type) Why did bolivar's unification of Latin America not last? Netflix Genre -6.515 formula (!fb:common.topic.notable_types fb:en.latin_america)) (value (list (name fb:periodicals.newspaper_circulation_area "Newspaper circulation area") (name fb:location.location Location) (name fb:base.skosbase.vocabulary_equivalent_topic "Vocabulary Equivalent Topic") (name fb:book.book_subject "Literature Subject") (name fb:user.tsegaran.random.taxonomy_subject "Taxonomy Subject") (name fb:base.ontologies.ontology_instance "Ontology Instance") (name fb:organization.organization_scope "Organization scope") (name fb:media_common.netflix_genre "Netflix Genre") (name fb:location.region Region) (name fb:user.djproctor.science_and_development.base_topic Topic))) (type fb:type.type) How old are people in London? National Express Group 0.354 formula ((lambda x (!fb:travel.transportation.transport_operator (!fb:travel.travel_destination.how_to_get_here (var x)))) fb:en.london)) (value (list (name fb:en.national_express_group "National Express Group") (name fb:en.eurolines Eurolines) (name fb:en.megabus Megabus) (name fb:en.eurostar Eurostar) (name fb:en.national_rail "National Rail"))) (type fb:travel.transport_operator) How old are people in London? National Rail 0.354 formula ((lambda x (!fb:travel.transportation.transport_operator (!fb:travel.travel_destination.how_to_get_here (var x)))) fb:en.london)) (value (list (name fb:en.national_express_group "National Express Group") (name fb:en.eurolines Eurolines) (name fb:en.megabus Megabus) (name fb:en.eurostar Eurostar) (name fb:en.national_rail "National Rail"))) (type fb:travel.transport_operator) Do greek soldiers get dog tags? Mr. Pish Drives 0.013 formula (fb:common.image.image_tags fb:en.dog)) (value (list (name fb:m.0l1ynxw 1.jpg) (name fb:m.0dc5s1c "Mr. Pish Drives"))) (type fb:common.image) Did chris brown have good grades in high school? Entertainment Weekly annotation index -2.538 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.chris_brown)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) Did chris brown have good grades in high school? WSJ Speakeasy Index -2.538 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.chris_brown)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) Did chris brown have good grades in high school? Blissful Master Index -2.538 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.chris_brown)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) Did chris brown have good grades in high school? Blissful Celebrities -2.538 formula ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.chris_brown)) (value (list (name fb:m.08vh4w5 "Entertainment Weekly annotation index") (name fb:m.0b3y3gx "WSJ Speakeasy Index") (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) How old was Nelson Mandela after prison? Nelson Mandela Metropolitan University 0.729 formula (fb:symbols.namesake.named_after fb:en.nelson_mandela)) (value (list (name fb:en.nelson_mandela_metropolitan_university "Nelson Mandela Metropolitan University") (name fb:m.0pwlnw "Nelson Mandela") (name fb:m.0sm_wj "Nelson Mandela") (name fb:en.nelson_mandela_municipality "Nelson Mandela Bay Metropolitan Municipality") (name fb:en.nelson_mandela_institution "Nelson Mandela Institution"))) (type fb:symbols.namesake) How old was Nelson Mandela after prison? Nelson Mandela 0.729 formula (fb:symbols.namesake.named_after fb:en.nelson_mandela)) (value (list (name fb:en.nelson_mandela_metropolitan_university "Nelson Mandela Metropolitan University") (name fb:m.0pwlnw "Nelson Mandela") (name fb:m.0sm_wj "Nelson Mandela") (name fb:en.nelson_mandela_municipality "Nelson Mandela Bay Metropolitan Municipality") (name fb:en.nelson_mandela_institution "Nelson Mandela Institution"))) (type fb:symbols.namesake) How old was Nelson Mandela after prison? Nelson Mandela 0.729 formula (fb:symbols.namesake.named_after fb:en.nelson_mandela)) (value (list (name fb:en.nelson_mandela_metropolitan_university "Nelson Mandela Metropolitan University") (name fb:m.0pwlnw "Nelson Mandela") (name fb:m.0sm_wj "Nelson Mandela") (name fb:en.nelson_mandela_municipality "Nelson Mandela Bay Metropolitan Municipality") (name fb:en.nelson_mandela_institution "Nelson Mandela Institution"))) (type fb:symbols.namesake) How old was Nelson Mandela after prison? Nelson Mandela Bay Metropolitan Municipality 0.729 formula (fb:symbols.namesake.named_after fb:en.nelson_mandela)) (value (list (name fb:en.nelson_mandela_metropolitan_university "Nelson Mandela Metropolitan University") (name fb:m.0pwlnw "Nelson Mandela") (name fb:m.0sm_wj "Nelson Mandela") (name fb:en.nelson_mandela_municipality "Nelson Mandela Bay Metropolitan Municipality") (name fb:en.nelson_mandela_institution "Nelson Mandela Institution"))) (type fb:symbols.namesake) How old was Nelson Mandela after prison? Nelson Mandela Institution 0.729 formula (fb:symbols.namesake.named_after fb:en.nelson_mandela)) (value (list (name fb:en.nelson_mandela_metropolitan_university "Nelson Mandela Metropolitan University") (name fb:m.0pwlnw "Nelson Mandela") (name fb:m.0sm_wj "Nelson Mandela") (name fb:en.nelson_mandela_municipality "Nelson Mandela Bay Metropolitan Municipality") (name fb:en.nelson_mandela_institution "Nelson Mandela Institution"))) (type fb:symbols.namesake) Where you get high jump and glide in Kingdom Hearts 2? Douglas County 1.293 formula (and (fb:type.object.type fb:location.location) (fb:location.location.contains fb:en.glide))) (value (list (name fb:en.oregon Oregon) (name fb:en.douglas_county_oregon "Douglas County"))) (type fb:location.location) Are panthers black? Siberia Airlines Flight 1812 -2.535 formula (fb:event.disaster.areas_affected fb:en.black_sea)) (value (list (name fb:en.siberia_airlines_flight_1812 "Siberia Airlines Flight 1812"))) (type fb:event.disaster) What is Yo Gabba Gabba? Blissful Master Index -3.094 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.yo_gabba_gabba))) (value (list (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) What is Yo Gabba Gabba? Blissful Celebrities -3.094 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:common.webpage.in_index (!fb:common.topic.webpage (var x)))) fb:en.yo_gabba_gabba))) (value (list (name fb:m.0bvlr64 "Blissful Master Index") (name fb:en.blissful_celebrities "Blissful Celebrities"))) (type fb:common.annotation_index) Why did Samuel warn the Israelites against having a monarch? Mosaic Tribes -7.467 formula (fb:common.image.appears_in_topic_gallery fb:en.israelite)) (value (list (name fb:m.04smqtp "Mosaic Tribes") (name fb:m.02bfg7c "1759 map Holy Land and 12 Tribes"))) (type fb:common.image) Why did Samuel warn the Israelites against having a monarch? 1759 map Holy Land and 12 Tribes -7.467 formula (fb:common.image.appears_in_topic_gallery fb:en.israelite)) (value (list (name fb:m.04smqtp "Mosaic Tribes") (name fb:m.02bfg7c "1759 map Holy Land and 12 Tribes"))) (type fb:common.image) What type of government was the House of Burgesses? Executive Producer 0.307 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:tv.tv_producer_term.producer_type (!fb:tv.tv_program.tv_producer (var x)))) fb:m.04p5cr))) (value (list (name fb:en.producer Producer) (name fb:en.executive_producer "Executive Producer") (name fb:en.supervising_producer "Supervising Producer") (name fb:en.consulting_producer "Consulting Producer"))) (type fb:tv.tv_producer_type) What type of government was the House of Burgesses? Supervising Producer 0.307 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:tv.tv_producer_term.producer_type (!fb:tv.tv_program.tv_producer (var x)))) fb:m.04p5cr))) (value (list (name fb:en.producer Producer) (name fb:en.executive_producer "Executive Producer") (name fb:en.supervising_producer "Supervising Producer") (name fb:en.consulting_producer "Consulting Producer"))) (type fb:tv.tv_producer_type) What type of government was the House of Burgesses? Consulting Producer 0.307 formula (and (fb:type.object.type fb:common.topic) ((lambda x (!fb:tv.tv_producer_term.producer_type (!fb:tv.tv_program.tv_producer (var x)))) fb:m.04p5cr))) (value (list (name fb:en.producer Producer) (name fb:en.executive_producer "Executive Producer") (name fb:en.supervising_producer "Supervising Producer") (name fb:en.consulting_producer "Consulting Producer"))) (type fb:tv.tv_producer_type) Where are Abraham Lincoln's parents buried? Oak Ridge Cemetery -1.956 formula (and (fb:type.object.type fb:location.location) (!fb:people.deceased_person.place_of_burial fb:en.abraham_lincoln))) (value (list (name fb:en.oak_ridge_cemetery "Oak Ridge Cemetery"))) (type fb:people.place_of_interment) ================================================ FILE: oqa-data/src/main/scripts/download-oqa-data.sh ================================================ #!/usr/bin/env bash # Bash3 Boilerplate. Copyright (c) 2014, kvz.io set -o errexit set -o pipefail set -o nounset # set -o xtrace # Set magic variables for current file & dir __dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" url="http://knowitall.cs.washington.edu/oqa/data" output_prefix=${__dir}/../../../ wget_opts="-r --no-parent --accept '*.txt,*.gz' --directory-prefix ${output_prefix}" if !(hash wget 2>/dev/null); then echo "Could not find wget." exit 1 fi wget \ --recursive \ --no-parent \ --accept '*.txt,*.gz' \ --directory-prefix ${output_prefix} \ "$url" wget \ -O ${output_prefix}/knowitall.cs.washington.edu/oqa/data/wikianswers/questions-normalized.txt.gz \ 'https://s3-us-west-2.amazonaws.com/ai2-oqa/questions-normalized.txt.gz' wget \ -O ${output_prefix}/knowitall.cs.washington.edu/oqa/data/wikianswers/wikianswers-brown-clusters-c1000.txt.gz \ 'https://s3-us-west-2.amazonaws.com/ai2-oqa/wikianswers-brown-clusters-c1000.txt.gz' ================================================ FILE: oqa-lm/README.md ================================================ Language Model ============== OQA uses a language model for scoring during inference. It uses the [KenLM](https://kheafield.com/code/kenlm/) software for language modeling. This sub-project has code for downloading KenLM, building KenLM, and using KenLM to construct a language model from WikiAnswers. The OQA code accesses the KenLM language model by querying an HTTP server started via a python script. To build KenLM, you will need Boost installed and the corresponding environment variables set to the Boost `lib` and `include` paths. Using Homebrew on a Mac, I had to set these environment variables: export LDFLAGS=-L/usr/local/Cellar/boost/1.57.0/lib export LD_LIBRARY_PATH=/usr/local/Cellar/boost/1.57.0/lib export CPLUS_INCLUDE_PATH=/usr/local/Cellar/boost/1.57.0/include Below are the steps needed to get the language model component of OQA started. Please look at the script sources if you are interested in what is going on in more detail. Each step below depends on the previous step. # Installing KenLM Run `./src/main/scripts/install-kenlm.sh` to download and build KenLM. **Gotcha:** If you receive an error like this after KenLM builds: error: [Errno 13] Permission denied: '/usr/local/lib/python2.7/dist-packages/kenlm.so' then you need to run `sudo` to install the KenLM python bindings. To do this, run these steps: 1. `cd kenlm` 2. `sudo python setup.py install` # Building the Language Model You will need to have downloaded the OQA data in order to complete this step. Run `./src/main/scripts/build-lm.sh` to build the language model from the WikiAnswers data. # Starting the Language Model Server Run `./src/main/scripts/start.sh` to start the server. This will start an HTTP server on `localhost:9090`. Check the log in `lm.err` for any errors. You may need to install the `web.py` python module. # Stopping the Language Model Server Run `./src/main/scripts/stop.sh` to stop the server. ================================================ FILE: oqa-lm/src/main/scripts/build-lm.sh ================================================ #!/usr/bin/env bash # Bash3 Boilerplate. Copyright (c) 2014, kvz.io set -o errexit set -o pipefail set -o nounset __dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" base=${__dir}/../../../ kenlm=${base}/kenlm data_dir=${base}/../oqa-data/ data=${data_dir}/knowitall.cs.washington.edu/oqa/data/wikianswers/questions-normalized.txt.gz output=${base}/questions $kenlm/bin/lmplz -o 5 < "$data" > ${output}.arpa $kenlm/bin/build_binary ${output}.arpa ${output}.binary ================================================ FILE: oqa-lm/src/main/scripts/install-kenlm.sh ================================================ #!/usr/bin/env bash # Bash3 Boilerplate. Copyright (c) 2014, kvz.io set -o errexit set -o pipefail set -o nounset # set -o xtrace # Set magic variables for current file & dir __dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" if !(hash wget 2>/dev/null); then echo "Could not find wget." exit 1 fi if !(hash python 2>/dev/null); then echo "Could not find python." exit 1 fi kenlm_url="http://kheafield.com/code/kenlm.tar.gz" lm_dir="${__dir}/../../../" if [ ! -f "${lm_dir}/kenlm.tar.gz" ]; then wget -O "${lm_dir}/kenlm.tar.gz" "${kenlm_url}" fi cd ${lm_dir} tar xvfz kenlm.tar.gz cd kenlm ./bjam -j4 python setup.py install ================================================ FILE: oqa-lm/src/main/scripts/server.py ================================================ #!/usr/bin/env python # -*- coding: utf-8 -*- import web import sys import kenlm import json import os dir = os.path.dirname(os.path.realpath(__file__)) lm_path = '%s/../../../questions.binary' % dir port = 9090 sys.stderr.write("Loading language model from %s..." % lm_path) lm = kenlm.LanguageModel(lm_path) sys.stderr.write("Done.\n") urls = ('/score', 'score') class MyApplication(web.application): def run(self, port=8080, *middleware): func = self.wsgifunc(*middleware) return web.httpserver.runsimple(func, ('0.0.0.0', port)) app = MyApplication(urls, globals()) class score: def get_scores(self, queries): return [lm.score(q) for q in queries] def GET(self): i = web.input(_unicode=False) queries = [q.strip() for q in i.q.split('|')] print >>sys.stderr, "queries:\n%s" % str('\n'.join(queries)) return '\n'.join('%0.4f' % s for s in self.get_scores(queries)) def POST(self): return self.GET() if __name__ == '__main__': app.run(port=port) ================================================ FILE: oqa-lm/src/main/scripts/start.sh ================================================ #!/bin/bash #set -u #set -e __dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" path="${__dir}/../../../" script="${path}/src/main/scripts/server.py" echo $script nohup $script > ${path}/lm.out 2> ${path}/lm.err & EXIT_CODE=$? ps -p $! > /dev/null if [ $? -eq 0 ]; then echo $! > "${path}/lm.pid" echo "Process forked, pid: $!" else echo "Failed to start lm" exit 1 fi exit $EXIT_CODE ================================================ FILE: oqa-lm/src/main/scripts/stop.sh ================================================ #!/bin/bash set -u set -e __dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" path="${__dir}/../../../" pid=`cat $path/lm.pid` kill $pid ================================================ FILE: oqa-solr/README.md ================================================ OQA Solr Components =================== OQA uses [Apache Solr](http://lucene.apache.org/solr/) for storing, indexing, and querying data. Three components of OQA are stored in Solr: 1. The knowledge base (called `triplestore`) 2. The query rewrite templates (called `relsyn`) 3. The paraphrase templates (called `paraphrase`) This sub-project has code for starting/stopping solr instances and adding data to the indexes. All of the steps below assume that the OQA data has already been downloaded. For simplicity, I have checked in the configured Solr instances for the above three components in this repository. It is possible to scale this out using SolrCloud, but I have not included any code for doing so. The commands below will start one Solr server for each component. # Starting the Solr Instances To start the Solr instances, run `./src/main/scripts/start-all.sh`. This will start the following Solr servers: * [http://localhost:8983/solr/#/triplestore](http://localhost:8983/solr/#/triplestore) * [http://localhost:8984/solr/#/relsyn](http://localhost:8984/solr/#/relsyn) * [http://localhost:8985/solr/#/paraphrase](http://localhost:8985/solr/#/paraphrase) **Gotcha:** Sometimes it takes a few minutes to start the Solr instances. Tail the `{triplestore, relsyn, paraphrase}.out` files in each Solr subdirectory for more information. If you see a message like `Waiting until we see more replicas up` then give it a bit. Also see [this stackoverflow post](http://stackoverflow.com/questions/15674529/solrcloud-replica-waiting-time-configuration) for more information. # Stopping the Solr Instances To stop the Solr instances, run `./src/main/scripts/stop-all.sh`. # Indexing the Data To index the data, first start the Solr instances. Due to the size of the data, it is helpful to index only a part of the data first. Run the following script to index a subset of the data: `./src/main/scripts/create-indexes-small.sh`. If that completes, run this script to index the full data: `./src/main/scripts/create-indexes.sh`. ================================================ FILE: oqa-solr/paraphrase/README.txt ================================================ # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. Solr example ------------ This directory contains an instance of the Jetty Servlet container setup to run Solr using an example configuration. To run this example: java -jar start.jar in this example directory, and when Solr is started connect to http://localhost:8983/solr/ To add documents to the index, use the post.jar (or post.sh script) in the example/exampledocs subdirectory (while Solr is running), for example: cd exampledocs java -jar post.jar *.xml Or: sh post.sh *.xml For more information about this example please read... * example/solr/README.txt For more information about the "Solr Home" and Solr specific configuration * http://lucene.apache.org/solr/tutorial.html For a Tutorial using this example configuration * http://wiki.apache.org/solr/SolrResources For a list of other tutorials and introductory articles. Notes About These Examples -------------------------- * SolrHome * By default, start.jar starts Solr in Jetty using the default Solr Home directory of "./solr/" (relative to the working directory of hte servlet container). To run other example configurations, you can specify the solr.solr.home system property when starting jetty... java -Dsolr.solr.home=multicore -jar start.jar java -Dsolr.solr.home=example-DIH/solr -jar start.jar * References to Jar Files Outside This Directory * Various example SolrHome dirs contained in this directory may use "" statements in the solrconfig.xml file to reference plugin jars outside of this directory for loading "contrib" plugins via relative paths. If you make a copy of this example server and wish to use the ExtractingRequestHandler (SolrCell), DataImportHandler (DIH), UIMA, the clustering component, or any other modules in "contrib", you will need to copy the required jars or update the paths to those jars in your solrconfig.xml. * Logging * By default, Jetty & Solr will log to the console a logs/solr.log. This can be convenient when first getting started, but eventually you will want to log just to a file. To configure logging, edit the log4j.properties file in "resources". It is also possible to setup log4j or other popular logging frameworks. ================================================ FILE: oqa-solr/paraphrase/cloud-scripts/zkcli.bat ================================================ REM You can override pass the following parameters to this script: REM set JVM=java REM Find location of this script set SDIR=%~dp0 if "%SDIR:~-1%"=="\" set SDIR=%SDIR:~0,-1% "%JVM%" -classpath "%SDIR%\..\solr-webapp\webapp\WEB-INF\lib\*;%SDIR%\..\lib\ext" org.apache.solr.cloud.ZkCLI %* ================================================ FILE: oqa-solr/paraphrase/cloud-scripts/zkcli.sh ================================================ #!/usr/bin/env bash # You can override pass the following parameters to this script: # JVM="java" # Find location of this script sdir="`dirname \"$0\"`" $JVM -classpath "$sdir/../solr-webapp/webapp/WEB-INF/lib/*:$sdir/../lib/ext/*" org.apache.solr.cloud.ZkCLI ${1+"$@"} ================================================ FILE: oqa-solr/paraphrase/contexts/solr-jetty-context.xml ================================================ /webapps/solr.war /etc/webdefault.xml /solr-webapp ================================================ FILE: oqa-solr/paraphrase/etc/create-solrtest.keystore.sh ================================================ #!/bin/bash -ex # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. ############ # This script shows how the solrtest.keystore file used for solr tests # and these example configs was generated. # # Running this script should only be necessary if the keystore file # needs to be replaced, which shouldn't be required until sometime around # the year 4751. # # NOTE: the "-ext" option used in the "keytool" command requires that you have # the java7 version of keytool, but the generated key will work with any # version of java echo "### remove old keystore" rm -f solrtest.keystore echo "### create keystore and keys" keytool -keystore solrtest.keystore -storepass "secret" -alias solrtest -keypass "secret" -genkey -keyalg RSA -dname "cn=localhost, ou=SolrTest, o=lucene.apache.org, c=US" -ext "san=ip:127.0.0.1" -validity 999999 ================================================ FILE: oqa-solr/paraphrase/etc/jetty.xml ================================================ 10 10000 false log4j.configuration etc/log4j.properties 50000 1500 false true false false 1000 false false org.eclipse.jetty.server.webapp.ContainerIncludeJarPattern .*/servlet-api-[^/]*\.jar$ /contexts 0 ================================================ FILE: oqa-solr/paraphrase/etc/logging.properties ================================================ # # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # # To use this log config, start solr with the following system property: # -Djava.util.logging.config.file=etc/logging.properties ## Default global logging level: .level = INFO ## Log every update command (add, delete, commit, ...) #org.apache.solr.update.processor.LogUpdateProcessor.level = FINE ## Where to log (space separated list). handlers = java.util.logging.FileHandler java.util.logging.FileHandler.level = FINE java.util.logging.FileHandler.formatter = java.util.logging.SimpleFormatter # 1 GB limit per file java.util.logging.FileHandler.limit = 1073741824 # Log to the logs directory, with log files named solrxxx.log java.util.logging.FileHandler.pattern = ./logs/solr%u.log ================================================ FILE: oqa-solr/paraphrase/etc/webdefault.xml ================================================ Default web.xml file. This file is applied to a Web application before it's own WEB_INF/web.xml file org.eclipse.jetty.servlet.listener.ELContextCleaner org.eclipse.jetty.servlet.listener.IntrospectorCleaner default org.eclipse.jetty.servlet.DefaultServlet aliases false acceptRanges true dirAllowed true welcomeServlets false redirectWelcome false maxCacheSize 256000000 maxCachedFileSize 200000000 maxCachedFiles 2048 gzip true useFileMappedBuffer true 0 default / jsp org.apache.jasper.servlet.JspServlet logVerbosityLevel DEBUG fork false xpoweredBy false 0 jsp *.jsp *.jspf *.jspx *.xsp *.JSP *.JSPF *.JSPX *.XSP 30 index.html index.htm index.jsp ar ISO-8859-6 be ISO-8859-5 bg ISO-8859-5 ca ISO-8859-1 cs ISO-8859-2 da ISO-8859-1 de ISO-8859-1 el ISO-8859-7 en ISO-8859-1 es ISO-8859-1 et ISO-8859-1 fi ISO-8859-1 fr ISO-8859-1 hr ISO-8859-2 hu ISO-8859-2 is ISO-8859-1 it ISO-8859-1 iw ISO-8859-8 ja Shift_JIS ko EUC-KR lt ISO-8859-2 lv ISO-8859-2 mk ISO-8859-5 nl ISO-8859-1 no ISO-8859-1 pl ISO-8859-2 pt ISO-8859-1 ro ISO-8859-2 ru ISO-8859-5 sh ISO-8859-5 sk ISO-8859-2 sl ISO-8859-2 sq ISO-8859-2 sr ISO-8859-5 sv ISO-8859-1 tr ISO-8859-9 uk ISO-8859-5 zh GB2312 zh_TW Big5 Disable TRACE / TRACE ================================================ FILE: oqa-solr/paraphrase/example-DIH/README.txt ================================================ # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. Solr DataImportHandler example configuration -------------------------------------------- Change to the parent (example) directory. Start solr by executing the following command > cd .. > java -Dsolr.solr.home="./example-DIH/solr/" -jar start.jar in this directory, and when Solr is started connect to http://localhost:8983/solr/ To import data from the hsqldb database, connect to http://localhost:8983/solr/db/dataimport?command=full-import To import data from the slashdot feed, connect to http://localhost:8983/solr/rss/dataimport?command=full-import To import data from your imap server 1. Edit the example-DIH/solr/mail/conf/data-config.xml and add details about username, password, imap server 2. Connect to http://localhost:8983/solr/mail/dataimport?command=full-import To copy data from db Solr core, connect to http://localhost:8983/solr/solr/dataimport?command=full-import See also README.txt in the solr subdirectory, and check http://wiki.apache.org/solr/DataImportHandler for detailed usage guide and tutorial. ================================================ FILE: oqa-solr/paraphrase/example-DIH/hsqldb/ex.log ================================================ /*C1*/SET SCHEMA PUBLIC CONNECT USER SA ================================================ FILE: oqa-solr/paraphrase/example-DIH/hsqldb/ex.properties ================================================ #HSQL Database Engine 1.8.0.5 #Fri Aug 29 10:24:33 IST 2008 hsqldb.script_format=0 runtime.gc_interval=0 sql.enforce_strict_size=false hsqldb.cache_size_scale=8 readonly=false hsqldb.nio_data_file=true hsqldb.cache_scale=14 version=1.8.0 hsqldb.default_table_type=memory hsqldb.cache_file_scale=1 hsqldb.log_size=200 modified=yes hsqldb.cache_version=1.7.0 hsqldb.original_version=1.8.0 hsqldb.compatible_version=1.8.0 ================================================ FILE: oqa-solr/paraphrase/example-DIH/hsqldb/ex.script ================================================ CREATE SCHEMA PUBLIC AUTHORIZATION DBA CREATE CACHED TABLE ITEM(ID CHAR(8),NAME VARCHAR(100),MANU VARCHAR(50),WEIGHT REAL,PRICE REAL,POPULARITY INTEGER,INCLUDES VARCHAR(200),LAST_MODIFIED TIMESTAMP DEFAULT NOW) CREATE CACHED TABLE FEATURE(ITEM_ID CHAR(8),DESCRIPTION VARCHAR(200),LAST_MODIFIED TIMESTAMP DEFAULT NOW) CREATE CACHED TABLE CATEGORY(ID INTEGER,DESCRIPTION VARCHAR(30),LAST_MODIFIED TIMESTAMP DEFAULT NOW) CREATE CACHED TABLE ITEM_CATEGORY(ITEM_ID CHAR(8),CATEGORY_ID INTEGER,LAST_MODIFIED TIMESTAMP DEFAULT NOW) SET TABLE ITEM INDEX'15056 0' SET TABLE FEATURE INDEX'22424 0' SET TABLE CATEGORY INDEX'18856 0' SET TABLE ITEM_CATEGORY INDEX'17328 0' CREATE USER SA PASSWORD "" GRANT DBA TO SA SET WRITE_DELAY 20 ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/db/conf/admin-extra.html ================================================ ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/db/conf/admin-extra.menu-bottom.html ================================================ ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/db/conf/admin-extra.menu-top.html ================================================ ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/db/conf/db-data-config.xml ================================================ ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/db/conf/elevate.xml ================================================ ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/db/conf/protwords.txt ================================================ # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. #----------------------------------------------------------------------- # Use a protected word file to protect against the stemmer reducing two # unrelated words to the same base word. # Some non-words that normally won't be encountered, # just to test that they won't be stemmed. dontstems zwhacky ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/db/conf/schema.xml ================================================ id text ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/db/conf/scripts.conf ================================================ # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. user= solr_hostname=localhost solr_port=8983 rsyncd_port=18983 data_dir= webapp_name=solr master_host= master_data_dir= master_status_dir= ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/db/conf/solrconfig.xml ================================================ LUCENE_43 100000 1024 true 50 200 solr 0 10 rocks 0 10 static newSearcher warming query from solrconfig.xml false 4 explicit 1 0.5 spell word manu,cat 1 db-data-config.xml explicit string elevate.xml explicit elevator solrpingquery all explicit true 100 70 0.5 [-\w ,/\n\"']{20,200} ]]> ]]> 5 *:* ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/db/conf/stopwords.txt ================================================ # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. #----------------------------------------------------------------------- # a couple of test stopwords to test that the words are really being # configured from this file: stopworda stopwordb #Standard english stop words taken from Lucene's StopAnalyzer a an and are as at be but by for if in into is it no not of on or s such t that the their then there these they this to was will with ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/db/conf/synonyms.txt ================================================ # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. #----------------------------------------------------------------------- #some test synonym mappings unlikely to appear in real input text aaa => aaaa bbb => bbbb1 bbbb2 ccc => cccc1,cccc2 a\=>a => b\=>b a\,a => b\,b fooaaa,baraaa,bazaaa # Some synonym groups specific to this example GB,gib,gigabyte,gigabytes MB,mib,megabyte,megabytes Television, Televisions, TV, TVs #notice we use "gib" instead of "GiB" so any WordDelimiterFilter coming #after us won't split it into two words. # Synonym mappings can be used for spelling correction too pixima => pixma ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/db/conf/xslt/example.xsl ================================================ <xsl:value-of select="$title"/>

This has been formatted by the sample "example.xsl" transform - use your own XSLT to get a nicer page
javascript:toggle("");?
exp
================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/db/conf/xslt/example_atom.xsl ================================================ Example Solr Atom 1.0 Feed This has been formatted by the sample "example_atom.xsl" transform - use your own XSLT to get a nicer Atom feed. Apache Solr solr-user@lucene.apache.org tag:localhost,2007:example <xsl:value-of select="str[@name='name']"/> tag:localhost,2007: ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/db/conf/xslt/example_rss.xsl ================================================ Example Solr RSS 2.0 Feed http://localhost:8983/solr This has been formatted by the sample "example_rss.xsl" transform - use your own XSLT to get a nicer RSS feed. en-us http://localhost:8983/solr <xsl:value-of select="str[@name='name']"/> http://localhost:8983/solr/select?q=id: http://localhost:8983/solr/select?q=id: ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/db/conf/xslt/luke.xsl ================================================ Solr Luke Request Handler Response <xsl:value-of select="$title"/>

Index statistics

Field statistics

Document statistics

5 5 800 600 blue
-25 0
1 - - - - - - - - - - - - - namespace="svg" implementation="#AdobeSVG" ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/mail/conf/admin-extra.html ================================================ ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/mail/conf/admin-extra.menu-bottom.html ================================================ ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/mail/conf/admin-extra.menu-top.html ================================================ ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/mail/conf/data-config.xml ================================================ ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/mail/conf/protwords.txt ================================================ # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. #----------------------------------------------------------------------- # Use a protected word file to protect against the stemmer reducing two # unrelated words to the same base word. # Some non-words that normally won't be encountered, # just to test that they won't be stemmed. dontstems zwhacky ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/mail/conf/schema.xml ================================================ messageId catchAllField ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/mail/conf/solrconfig.xml ================================================ LUCENE_43 1024 true 50 200 solr 0 10 rocks 0 10 static newSearcher warming query from solrconfig.xml fast_warm 0 10 static firstSearcher warming query from solrconfig.xml false 2 explicit dismax explicit 0.01 text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0 manu^1.1 cat^1.4 text^0.2 features^1.1 name^1.5 manu^1.4 manu_exact^1.9 ord(popularity)^0.5 recip(rord(price),1,1000,1000)^0.3 id,name,price,score 2<-1 5<-2 6<90% 100 *:* text features name 0 name regex dismax explicit text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0 2<-1 5<-2 6<90% incubationdate_dt:[* TO NOW/DAY-1MONTH]^2.2 inStock:true cat manu_exact price:[* TO 500] price:[500 TO *] textSpell default spell ./spellchecker1 jarowinkler spell org.apache.lucene.search.spell.JaroWinklerDistance ./spellchecker2 solr.FileBasedSpellChecker file spellings.txt UTF-8 ./spellcheckerFile false false 1 spellcheck data-config.xml true tvComponent termsComp solrpingquery all explicit true 100 70 0.5 [-\w ,/\n\"']{20,200} ]]> ]]> 5 solr ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/mail/conf/stopwords.txt ================================================ # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. #----------------------------------------------------------------------- # a couple of test stopwords to test that the words are really being # configured from this file: stopworda stopwordb #Standard english stop words taken from Lucene's StopAnalyzer a an and are as at be but by for if in into is it no not of on or s such t that the their then there these they this to was will with ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/mail/conf/synonyms.txt ================================================ # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. #----------------------------------------------------------------------- #some test synonym mappings unlikely to appear in real input text aaa => aaaa bbb => bbbb1 bbbb2 ccc => cccc1,cccc2 a\=>a => b\=>b a\,a => b\,b fooaaa,baraaa,bazaaa # Some synonym groups specific to this example GB,gib,gigabyte,gigabytes MB,mib,megabyte,megabytes Television, Televisions, TV, TVs #notice we use "gib" instead of "GiB" so any WordDelimiterFilter coming #after us won't split it into two words. # Synonym mappings can be used for spelling correction too pixima => pixma ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/rss/conf/admin-extra.html ================================================ ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/rss/conf/admin-extra.menu-bottom.html ================================================ ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/rss/conf/admin-extra.menu-top.html ================================================ ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/rss/conf/elevate.xml ================================================ ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/rss/conf/protwords.txt ================================================ # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. #----------------------------------------------------------------------- # Use a protected word file to protect against the stemmer reducing two # unrelated words to the same base word. # Some non-words that normally won't be encountered, # just to test that they won't be stemmed. dontstems zwhacky ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/rss/conf/rss-data-config.xml ================================================ ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/rss/conf/schema.xml ================================================ link all_text ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/rss/conf/scripts.conf ================================================ # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. user= solr_hostname=localhost solr_port=8983 rsyncd_port=18983 data_dir= webapp_name=solr master_host= master_data_dir= master_status_dir= ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/rss/conf/solrconfig.xml ================================================ LUCENE_43 100000 1024 true 50 200 solr 0 10 rocks 0 10 static newSearcher warming query from solrconfig.xml false 4 explicit 1 0.5 spell word manu,cat 1 rss-data-config.xml explicit string elevate.xml explicit elevator solrpingquery all explicit true 100 70 0.5 [-\w ,/\n\"']{20,200} 5 *:* ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/rss/conf/stopwords.txt ================================================ # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. #----------------------------------------------------------------------- # a couple of test stopwords to test that the words are really being # configured from this file: stopworda stopwordb #Standard english stop words taken from Lucene's StopAnalyzer a an and are as at be but by for if in into is it no not of on or s such t that the their then there these they this to was will with ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/rss/conf/synonyms.txt ================================================ # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. #----------------------------------------------------------------------- #some test synonym mappings unlikely to appear in real input text aaa => aaaa bbb => bbbb1 bbbb2 ccc => cccc1,cccc2 a\=>a => b\=>b a\,a => b\,b fooaaa,baraaa,bazaaa # Some synonym groups specific to this example GB,gib,gigabyte,gigabytes MB,mib,megabyte,megabytes Television, Televisions, TV, TVs #notice we use "gib" instead of "GiB" so any WordDelimiterFilter coming #after us won't split it into two words. # Synonym mappings can be used for spelling correction too pixima => pixma ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/solr/conf/admin-extra.html ================================================ ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/solr/conf/admin-extra.menu-bottom.html ================================================ ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/solr/conf/admin-extra.menu-top.html ================================================ ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/solr/conf/elevate.xml ================================================ ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/solr/conf/protwords.txt ================================================ # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. #----------------------------------------------------------------------- # Use a protected word file to protect against the stemmer reducing two # unrelated words to the same base word. # Some non-words that normally won't be encountered, # just to test that they won't be stemmed. dontstems zwhacky ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/solr/conf/schema.xml ================================================ id text ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/solr/conf/scripts.conf ================================================ # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. user= solr_hostname=localhost solr_port=8983 rsyncd_port=18983 data_dir= webapp_name=solr master_host= master_data_dir= master_status_dir= ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/solr/conf/solr-data-config.xml ================================================ ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/solr/conf/solrconfig.xml ================================================ LUCENE_43 100000 1024 true 50 200 solr 0 10 rocks 0 10 static newSearcher warming query from solrconfig.xml false 4 explicit 1 0.5 spell word manu,cat 1 solr-data-config.xml explicit string elevate.xml explicit elevator solrpingquery all explicit true 100 70 0.5 [-\w ,/\n\"']{20,200} ]]> ]]> 5 *:* ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/solr/conf/stopwords.txt ================================================ # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. #----------------------------------------------------------------------- # a couple of test stopwords to test that the words are really being # configured from this file: stopworda stopwordb #Standard english stop words taken from Lucene's StopAnalyzer a an and are as at be but by for if in into is it no not of on or s such t that the their then there these they this to was will with ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/solr/conf/synonyms.txt ================================================ # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. #----------------------------------------------------------------------- #some test synonym mappings unlikely to appear in real input text aaa => aaaa bbb => bbbb1 bbbb2 ccc => cccc1,cccc2 a\=>a => b\=>b a\,a => b\,b fooaaa,baraaa,bazaaa # Some synonym groups specific to this example GB,gib,gigabyte,gigabytes MB,mib,megabyte,megabytes Television, Televisions, TV, TVs #notice we use "gib" instead of "GiB" so any WordDelimiterFilter coming #after us won't split it into two words. # Synonym mappings can be used for spelling correction too pixima => pixma ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/solr.xml ================================================ ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/tika/conf/admin-extra.html ================================================ ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/tika/conf/admin-extra.menu-bottom.html ================================================ ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/tika/conf/admin-extra.menu-top.html ================================================ ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/tika/conf/schema.xml ================================================ text ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/tika/conf/solrconfig.xml ================================================ LUCENE_43 100000 1024 true 50 200 solr 0 10 rocks 0 10 static newSearcher warming query from solrconfig.xml false 4 explicit tika-data-config.xml explicit solrpingquery all *:* ================================================ FILE: oqa-solr/paraphrase/example-DIH/solr/tika/conf/tika-data-config.xml ================================================ ================================================ FILE: oqa-solr/paraphrase/exampledocs/books.csv ================================================ id,cat,name,price,inStock,author,series_t,sequence_i,genre_s 0553573403,book,A Game of Thrones,7.99,true,George R.R. Martin,"A Song of Ice and Fire",1,fantasy 0553579908,book,A Clash of Kings,7.99,true,George R.R. Martin,"A Song of Ice and Fire",2,fantasy 055357342X,book,A Storm of Swords,7.99,true,George R.R. Martin,"A Song of Ice and Fire",3,fantasy 0553293354,book,Foundation,7.99,true,Isaac Asimov,Foundation Novels,1,scifi 0812521390,book,The Black Company,6.99,false,Glen Cook,The Chronicles of The Black Company,1,fantasy 0812550706,book,Ender's Game,6.99,true,Orson Scott Card,Ender,1,scifi 0441385532,book,Jhereg,7.95,false,Steven Brust,Vlad Taltos,1,fantasy 0380014300,book,Nine Princes In Amber,6.99,true,Roger Zelazny,the Chronicles of Amber,1,fantasy 0805080481,book,The Book of Three,5.99,true,Lloyd Alexander,The Chronicles of Prydain,1,fantasy 080508049X,book,The Black Cauldron,5.99,true,Lloyd Alexander,The Chronicles of Prydain,2,fantasy ================================================ FILE: oqa-solr/paraphrase/exampledocs/books.json ================================================ [ { "id" : "978-0641723445", "cat" : ["book","hardcover"], "name" : "The Lightning Thief", "author" : "Rick Riordan", "series_t" : "Percy Jackson and the Olympians", "sequence_i" : 1, "genre_s" : "fantasy", "inStock" : true, "price" : 12.50, "pages_i" : 384 } , { "id" : "978-1423103349", "cat" : ["book","paperback"], "name" : "The Sea of Monsters", "author" : "Rick Riordan", "series_t" : "Percy Jackson and the Olympians", "sequence_i" : 2, "genre_s" : "fantasy", "inStock" : true, "price" : 6.49, "pages_i" : 304 } , { "id" : "978-1857995879", "cat" : ["book","paperback"], "name" : "Sophie's World : The Greek Philosophers", "author" : "Jostein Gaarder", "sequence_i" : 1, "genre_s" : "fantasy", "inStock" : true, "price" : 3.07, "pages_i" : 64 } , { "id" : "978-1933988177", "cat" : ["book","paperback"], "name" : "Lucene in Action, Second Edition", "author" : "Michael McCandless", "sequence_i" : 1, "genre_s" : "IT", "inStock" : true, "price" : 30.50, "pages_i" : 475 } ] ================================================ FILE: oqa-solr/paraphrase/exampledocs/gb18030-example.xml ================================================ GB18030TEST Test with some GB18030 encoded characters No accents here һ This is a feature (translated) ļǺй This document is very shiny (translated) 0 true ================================================ FILE: oqa-solr/paraphrase/exampledocs/hd.xml ================================================ SP2514N Samsung SpinPoint P120 SP2514N - hard drive - 250 GB - ATA-133 Samsung Electronics Co. Ltd. samsung electronics hard drive 7200RPM, 8MB cache, IDE Ultra ATA-133 NoiseGuard, SilentSeek technology, Fluid Dynamic Bearing (FDB) motor 92 6 true 2006-02-13T15:26:37Z 35.0752,-97.032 6H500F0 Maxtor DiamondMax 11 - hard drive - 500 GB - SATA-300 Maxtor Corp. maxtor electronics hard drive SATA 3.0Gb/s, NCQ 8.5ms seek 16MB cache 350 6 true 45.17614,-93.87341 2006-02-13T15:26:37Z ================================================ FILE: oqa-solr/paraphrase/exampledocs/ipod_other.xml ================================================ F8V7067-APL-KIT Belkin Mobile Power Cord for iPod w/ Dock Belkin belkin electronics connector car power adapter, white 4 19.95 1 false 45.18014,-93.87741 2005-08-01T16:30:25Z IW-02 iPod & iPod Mini USB 2.0 Cable Belkin belkin electronics connector car power adapter for iPod, white 2 11.50 1 false 37.7752,-122.4232 2006-02-14T23:55:59Z ================================================ FILE: oqa-solr/paraphrase/exampledocs/ipod_video.xml ================================================ MA147LL/A Apple 60 GB iPod with Video Playback Black Apple Computer Inc. apple electronics music iTunes, Podcasts, Audiobooks Stores up to 15,000 songs, 25,000 photos, or 150 hours of video 2.5-inch, 320x240 color TFT LCD display with LED backlight Up to 20 hours of battery life Plays AAC, MP3, WAV, AIFF, Audible, Apple Lossless, H.264 video Notes, Calendar, Phone book, Hold button, Date display, Photo wallet, Built-in games, JPEG photo playback, Upgradeable firmware, USB 2.0 compatibility, Playback speed control, Rechargeable capability, Battery level indication earbud headphones, USB cable 5.5 399.00 10 true 37.7752,-100.0232 2005-10-12T08:00:00Z ================================================ FILE: oqa-solr/paraphrase/exampledocs/manufacturers.xml ================================================ adata A-Data Technology 46221 Landing Parkway Fremont, CA 94538 apple Apple 1 Infinite Way, Cupertino CA asus ASUS Computer 800 Corporate Way Fremont, CA 94539 ati ATI Technologies 33 Commerce Valley Drive East Thornhill, ON L3T 7N6 Canada belkin Belkin 12045 E. Waterfront Drive Playa Vista, CA 90094 canon Canon, Inc. One Canon Plaza Lake Success, NY 11042 corsair Corsair Microsystems 46221 Landing Parkway Fremont, CA 94538 dell Dell, Inc. One Dell Way Round Rock, Texas 78682 maxtor Maxtor Corporation 920 Disc Drive Scotts Valley, CA 95066 samsung Samsung Electronics Co. Ltd. 105 Challenger Rd. Ridgefield Park, NJ 07660-0511 viewsonic ViewSonic Corp 381 Brea Canyon Road Walnut, CA 91789-0708 ================================================ FILE: oqa-solr/paraphrase/exampledocs/mem.xml ================================================ TWINX2048-3200PRO CORSAIR XMS 2GB (2 x 1GB) 184-Pin DDR SDRAM Unbuffered DDR 400 (PC 3200) Dual Channel Kit System Memory - Retail Corsair Microsystems Inc. corsair electronics memory CAS latency 2, 2-3-3-6 timing, 2.75v, unbuffered, heat-spreader 185 5 true 37.7752,-122.4232 2006-02-13T15:26:37Z electronics|6.0 memory|3.0 VS1GB400C3 CORSAIR ValueSelect 1GB 184-Pin DDR SDRAM Unbuffered DDR 400 (PC 3200) System Memory - Retail Corsair Microsystems Inc. corsair electronics memory 74.99 7 true 37.7752,-100.0232 2006-02-13T15:26:37Z electronics|4.0 memory|2.0 VDBDB1A16 A-DATA V-Series 1GB 184-Pin DDR SDRAM Unbuffered DDR 400 (PC 3200) System Memory - OEM A-DATA Technology Inc. corsair electronics memory CAS latency 3, 2.7v 0 true 45.18414,-93.88141 2006-02-13T15:26:37Z electronics|0.9 memory|0.1 ================================================ FILE: oqa-solr/paraphrase/exampledocs/money.xml ================================================ USD One Dollar Bank of America boa currency Coins and notes 1,USD true EUR One Euro European Union eu currency Coins and notes 1,EUR true GBP One British Pound U.K. uk currency Coins and notes 1,GBP true NOK One Krone Bank of Norway nor currency Coins and notes 1,NOK true ================================================ FILE: oqa-solr/paraphrase/exampledocs/monitor.xml ================================================ 3007WFP Dell Widescreen UltraSharp 3007WFP Dell, Inc. dell electronics monitor 30" TFT active matrix LCD, 2560 x 1600, .25mm dot pitch, 700:1 contrast USB cable 401.6 2199 6 true 43.17614,-90.57341 ================================================ FILE: oqa-solr/paraphrase/exampledocs/monitor2.xml ================================================ VA902B ViewSonic VA902B - flat panel display - TFT - 19" ViewSonic Corp. viewsonic electronics monitor 19" TFT active matrix LCD, 8ms response time, 1280 x 1024 native resolution 190.4 279.95 6 true 45.18814,-93.88541 ================================================ FILE: oqa-solr/paraphrase/exampledocs/mp500.xml ================================================ 0579B002 Canon PIXMA MP500 All-In-One Photo Printer Canon Inc. canon electronics multifunction printer printer scanner copier Multifunction ink-jet color photo printer Flatbed scanner, optical scan resolution of 1,200 x 2,400 dpi 2.5" color LCD preview screen Duplex Copying Printing speed up to 29ppm black, 19ppm color Hi-Speed USB memory card: CompactFlash, Micro Drive, SmartMedia, Memory Stick, Memory Stick Pro, SD Card, and MultiMediaCard 352 179.99 6 true 45.19214,-93.89941 ================================================ FILE: oqa-solr/paraphrase/exampledocs/post.sh ================================================ #!/bin/sh # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. FILES=$* URL=http://localhost:8983/solr/update for f in $FILES; do echo Posting file $f to $URL curl $URL --data-binary @$f -H 'Content-type:application/xml' echo done #send the commit command to make sure all the changes are flushed and visible #curl $URL --data-binary '' -H 'Content-type:application/xml' curl "$URL?softCommit=true" echo ================================================ FILE: oqa-solr/paraphrase/exampledocs/sd500.xml ================================================ 9885A004 Canon PowerShot SD500 Canon Inc. canon electronics camera 3x zoop, 7.1 megapixel Digital ELPH movie clips up to 640x480 @30 fps 2.0" TFT LCD, 118,000 pixels built in flash, red-eye reduction 32MB SD card, USB cable, AV cable, battery 6.4 329.95 7 true 2006-02-13T15:26:37Z 45.19614,-93.90341 ================================================ FILE: oqa-solr/paraphrase/exampledocs/solr.xml ================================================ SOLR1000 Solr, the Enterprise Search Server Apache Software Foundation software search Advanced Full-Text Search Capabilities using Lucene Optimized for High Volume Web Traffic Standards Based Open Interfaces - XML and HTTP Comprehensive HTML Administration Interfaces Scalability - Efficient Replication to other Solr Search Servers Flexible and Adaptable with XML configuration and Schema Good unicode support: héllo (hello with an accent over the e) 0 10 true 2006-01-17T00:00:00.000Z ================================================ FILE: oqa-solr/paraphrase/exampledocs/test_utf8.sh ================================================ #!/bin/sh # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. #Test script to tell if the server is accepting UTF-8 #The python writer currently escapes non-ascii chars, so it's good for testing URL=http://localhost:8983/solr if [ ! -z $1 ]; then URL=$1 fi curl "$URL/select?q=hello¶ms=explicit&wt=python" 2> /dev/null | grep 'hello' > /dev/null 2>&1 if [ $? = 0 ]; then echo "Solr server is up." else echo "ERROR: Could not curl to Solr - is curl installed? Is Solr not running?" exit 1 fi curl "$URL/select?q=h%C3%A9llo&echoParams=explicit&wt=python" 2> /dev/null | grep 'h\\u00e9llo' > /dev/null 2>&1 if [ $? = 0 ]; then echo "HTTP GET is accepting UTF-8" else echo "ERROR: HTTP GET is not accepting UTF-8" fi curl $URL/select --data-binary 'q=h%C3%A9llo&echoParams=explicit&wt=python' -H 'Content-type:application/x-www-form-urlencoded; charset=UTF-8' 2> /dev/null | grep 'h\\u00e9llo' > /dev/null 2>&1 if [ $? = 0 ]; then echo "HTTP POST is accepting UTF-8" else echo "ERROR: HTTP POST is not accepting UTF-8" fi curl $URL/select --data-binary 'q=h%C3%A9llo&echoParams=explicit&wt=python' 2> /dev/null | grep 'h\\u00e9llo' > /dev/null 2>&1 if [ $? = 0 ]; then echo "HTTP POST defaults to UTF-8" else echo "HTTP POST does not default to UTF-8" fi #A unicode character outside of the BMP (a circle with an x inside) CHAR="𐌈" CODEPOINT='0x10308' #URL encoded UTF8 of the codepoint URL_UTF8='%F0%90%8C%88' #expected return of the python writer (currently uses UTF-16 surrogates) EXPECTED='\\ud800\\udf08' curl "$URL/select?q=$URL_UTF8&echoParams=explicit&wt=python" 2> /dev/null | grep $EXPECTED > /dev/null 2>&1 if [ $? = 0 ]; then echo "HTTP GET is accepting UTF-8 beyond the basic multilingual plane" else echo "ERROR: HTTP GET is not accepting UTF-8 beyond the basic multilingual plane" fi curl $URL/select --data-binary "q=$URL_UTF8&echoParams=explicit&wt=python" -H 'Content-type:application/x-www-form-urlencoded; charset=UTF-8' 2> /dev/null | grep $EXPECTED > /dev/null 2>&1 if [ $? = 0 ]; then echo "HTTP POST is accepting UTF-8 beyond the basic multilingual plane" else echo "ERROR: HTTP POST is not accepting UTF-8 beyond the basic multilingual plane" fi curl "$URL/select?q=$URL_UTF8&echoParams=explicit&wt=python" --data-binary '' 2> /dev/null | grep $EXPECTED > /dev/null 2>&1 if [ $? = 0 ]; then echo "HTTP POST + URL params is accepting UTF-8 beyond the basic multilingual plane" else echo "ERROR: HTTP POST + URL params is not accepting UTF-8 beyond the basic multilingual plane" fi #curl "$URL/select?q=$URL_UTF8&echoParams=explicit&wt=json" 2> /dev/null | od -tx1 -w1000 | sed 's/ //g' | grep 'f4808198' > /dev/null 2>&1 curl "$URL/select?q=$URL_UTF8&echoParams=explicit&wt=json" 2> /dev/null | grep "$CHAR" > /dev/null 2>&1 if [ $? = 0 ]; then echo "Response correctly returns UTF-8 beyond the basic multilingual plane" else echo "ERROR: Response can't return UTF-8 beyond the basic multilingual plane" fi ================================================ FILE: oqa-solr/paraphrase/exampledocs/utf8-example.xml ================================================ UTF8TEST Test with some UTF-8 encoded characters Apache Software Foundation software search No accents here This is an e acute: é eaiou with circumflexes: êâîôû eaiou with umlauts: ëäïöü tag with escaped chars: <nicetag/> escaped ampersand: Bonnie & Clyde Outside the BMP:𐌈 codepoint=10308, a circle with an x inside. UTF8=f0908c88 UTF16=d800 df08 0 true ================================================ FILE: oqa-solr/paraphrase/exampledocs/vidcard.xml ================================================ EN7800GTX/2DHTV/256M ASUS Extreme N7800GTX/2DHTV (256 MB) ASUS Computer Inc. asus electronics graphics card NVIDIA GeForce 7800 GTX GPU/VPU clocked at 486MHz 256MB GDDR3 Memory clocked at 1.35GHz PCI Express x16 Dual DVI connectors, HDTV out, video input OpenGL 2.0, DirectX 9.0 16 479.95 7 40.7143,-74.006 false 2006-02-13T15:26:37Z/DAY 100-435805 ATI Radeon X1900 XTX 512 MB PCIE Video Card ATI Technologies ati electronics graphics card ATI RADEON X1900 GPU/VPU clocked at 650MHz 512MB GDDR3 SDRAM clocked at 1.55GHz PCI Express x16 dual DVI, HDTV, svideo, composite out OpenGL 2.0, DirectX 9.0 48 649.99 7 false 2006-02-13T15:26:37Z/DAY 40.7143,-74.006 ================================================ FILE: oqa-solr/paraphrase/multicore/README.txt ================================================ This is an alternative setup structure to support multiple cores. To run this configuration, start jetty in the example/ directory using: java -Dsolr.solr.home=multicore -jar start.jar For general examples on standard solr configuration, see the "solr" directory. ================================================ FILE: oqa-solr/paraphrase/multicore/core0/conf/schema.xml ================================================ id name ================================================ FILE: oqa-solr/paraphrase/multicore/core0/conf/solrconfig.xml ================================================ LUCENE_43 ${solr.core0.data.dir:} ${solr.core0.data.dir:} true solrpingquery all solr ================================================ FILE: oqa-solr/paraphrase/multicore/core1/conf/schema.xml ================================================ id name ================================================ FILE: oqa-solr/paraphrase/multicore/core1/conf/solrconfig.xml ================================================ LUCENE_43 ${solr.core1.data.dir:} ${solr.core1.data.dir:} true solrpingquery all solr ================================================ FILE: oqa-solr/paraphrase/multicore/exampledocs/ipod_other.xml ================================================ F8V7067-APL-KIT Belkin Mobile Power Cord for iPod w/ Dock IW-02 iPod & iPod Mini USB 2.0 Cable ================================================ FILE: oqa-solr/paraphrase/multicore/exampledocs/ipod_video.xml ================================================ MA147LL/A Apple 60 GB iPod with Video Playback Black ================================================ FILE: oqa-solr/paraphrase/multicore/solr.xml ================================================ ================================================ FILE: oqa-solr/paraphrase/multicore/zoo.cfg ================================================ # The number of milliseconds of each tick tickTime=2000 # The number of ticks that the initial # synchronization phase can take initLimit=10 # The number of ticks that can pass between # sending a request and getting an acknowledgement syncLimit=5 # the directory where the snapshot is stored. # dataDir=/opt/zookeeper/data # NOTE: Solr defaults the dataDir to /zoo_data # the port at which the clients will connect # clientPort=2181 # NOTE: Solr sets this based on zkRun / zkHost params ================================================ FILE: oqa-solr/paraphrase/resources/log4j.properties ================================================ # Logging level log4j.rootLogger=INFO, file, CONSOLE log4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender log4j.appender.CONSOLE.layout=org.apache.log4j.PatternLayout log4j.appender.CONSOLE.layout.ConversionPattern=%-4r [%t] %-5p %c %x \u2013 %m%n #- size rotation with log cleanup. log4j.appender.file=org.apache.log4j.RollingFileAppender log4j.appender.file.MaxFileSize=4MB log4j.appender.file.MaxBackupIndex=9 #- File to log to and log format log4j.appender.file.File=logs/solr.log log4j.appender.file.layout=org.apache.log4j.PatternLayout log4j.appender.file.layout.ConversionPattern=%-5p - %d{yyyy-MM-dd HH:mm:ss.SSS}; %C; %m\n log4j.logger.org.apache.zookeeper=WARN ================================================ FILE: oqa-solr/paraphrase/solr/README.txt ================================================ # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. Example Solr Home Directory ============================= This directory is provided as an example of what a "Solr Home" directory should look like. It's not strictly necessary that you copy all of the files in this directory when setting up a new instance of Solr, but it is recommended. Basic Directory Structure ------------------------- The Solr Home directory typically contains the following... * solr.xml * This is the primary configuration file Solr looks for when starting. This file specifies the list of "SolrCores" it should load, and high level configuration options that should be used for all SolrCores. Please see the comments in ./solr.xml for more details. If no solr.xml file is found, then Solr assumes that there should be a single SolrCore named "collection1" and that the "Instance Directory" for collection1 should be the same as the Solr Home Directory. * Individual SolrCore Instance Directories * Although solr.xml can be configured to look for SolrCore Instance Directories in any path, simple sub-directories of the Solr Home Dir using relative paths are common for many installations. In this directory you can see the "./collection1" Instance Directory. * A Shared 'lib' Directory * Although solr.xml can be configured with an optional "sharedLib" attribute that can point to any path, it is common to use a "./lib" sub-directory of the Solr Home Directory. * ZooKeeper Files * When using SolrCloud using the embedded ZooKeeper option for Solr, it is common to have a "zoo.cfg" file and "zoo_data" directories in the Solr Home Directory. Please see the SolrCloud wiki page for more details... https://wiki.apache.org/solr/SolrCloud ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/README.txt ================================================ # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. Example SolrCore Instance Directory ============================= This directory is provided as an example of what an "Instance Directory" should look like for a SolrCore It's not strictly necessary that you copy all of the files in this directory when setting up a new SolrCores, but it is recommended. Basic Directory Structure ------------------------- The Solr Home directory typically contains the following sub-directories... conf/ This directory is mandatory and must contain your solrconfig.xml and schema.xml. Any other optional configuration files would also be kept here. data/ This directory is the default location where Solr will keep your index, and is used by the replication scripts for dealing with snapshots. You can override this location in the conf/solrconfig.xml. Solr will create this directory if it does not already exist. lib/ This directory is optional. If it exists, Solr will load any Jars found in this directory and use them to resolve any "plugins" specified in your solrconfig.xml or schema.xml (ie: Analyzers, Request Handlers, etc...). Alternatively you can use the syntax in conf/solrconfig.xml to direct Solr to your plugins. See the example conf/solrconfig.xml file for details. ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/admin-extra.html ================================================ ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/admin-extra.menu-bottom.html ================================================ ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/admin-extra.menu-top.html ================================================ ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/currency.xml ================================================ ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/elevate.xml ================================================ ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/lang/contractions_ca.txt ================================================ # Set of Catalan contractions for ElisionFilter # TODO: load this as a resource from the analyzer and sync it in build.xml d l m n s t ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/lang/contractions_fr.txt ================================================ # Set of French contractions for ElisionFilter # TODO: load this as a resource from the analyzer and sync it in build.xml l m t qu n s j d c jusqu quoiqu lorsqu puisqu ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/lang/contractions_ga.txt ================================================ # Set of Irish contractions for ElisionFilter # TODO: load this as a resource from the analyzer and sync it in build.xml d m b ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/lang/contractions_it.txt ================================================ # Set of Italian contractions for ElisionFilter # TODO: load this as a resource from the analyzer and sync it in build.xml c l all dall dell nell sull coll pell gl agl dagl degl negl sugl un m t s v d ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/lang/hyphenations_ga.txt ================================================ # Set of Irish hyphenations for StopFilter # TODO: load this as a resource from the analyzer and sync it in build.xml h n t ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/lang/stemdict_nl.txt ================================================ # Set of overrides for the dutch stemmer # TODO: load this as a resource from the analyzer and sync it in build.xml fiets fiets bromfiets bromfiets ei eier kind kinder ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/lang/stoptags_ja.txt ================================================ # # This file defines a Japanese stoptag set for JapanesePartOfSpeechStopFilter. # # Any token with a part-of-speech tag that exactly matches those defined in this # file are removed from the token stream. # # Set your own stoptags by uncommenting the lines below. Note that comments are # not allowed on the same line as a stoptag. See LUCENE-3745 for frequency lists, # etc. that can be useful for building you own stoptag set. # # The entire possible tagset is provided below for convenience. # ##### # noun: unclassified nouns #名詞 # # noun-common: Common nouns or nouns where the sub-classification is undefined #名詞-一般 # # noun-proper: Proper nouns where the sub-classification is undefined #名詞-固有名詞 # # noun-proper-misc: miscellaneous proper nouns #名詞-固有名詞-一般 # # noun-proper-person: Personal names where the sub-classification is undefined #名詞-固有名詞-人名 # # noun-proper-person-misc: names that cannot be divided into surname and # given name; foreign names; names where the surname or given name is unknown. # e.g. お市の方 #名詞-固有名詞-人名-一般 # # noun-proper-person-surname: Mainly Japanese surnames. # e.g. 山田 #名詞-固有名詞-人名-姓 # # noun-proper-person-given_name: Mainly Japanese given names. # e.g. 太郎 #名詞-固有名詞-人名-名 # # noun-proper-organization: Names representing organizations. # e.g. 通産省, NHK #名詞-固有名詞-組織 # # noun-proper-place: Place names where the sub-classification is undefined #名詞-固有名詞-地域 # # noun-proper-place-misc: Place names excluding countries. # e.g. アジア, バルセロナ, 京都 #名詞-固有名詞-地域-一般 # # noun-proper-place-country: Country names. # e.g. 日本, オーストラリア #名詞-固有名詞-地域-国 # # noun-pronoun: Pronouns where the sub-classification is undefined #名詞-代名詞 # # noun-pronoun-misc: miscellaneous pronouns: # e.g. それ, ここ, あいつ, あなた, あちこち, いくつ, どこか, なに, みなさん, みんな, わたくし, われわれ #名詞-代名詞-一般 # # noun-pronoun-contraction: Spoken language contraction made by combining a # pronoun and the particle 'wa'. # e.g. ありゃ, こりゃ, こりゃあ, そりゃ, そりゃあ #名詞-代名詞-縮約 # # noun-adverbial: Temporal nouns such as names of days or months that behave # like adverbs. Nouns that represent amount or ratios and can be used adverbially, # e.g. 金曜, 一月, 午後, 少量 #名詞-副詞可能 # # noun-verbal: Nouns that take arguments with case and can appear followed by # 'suru' and related verbs (する, できる, なさる, くださる) # e.g. インプット, 愛着, 悪化, 悪戦苦闘, 一安心, 下取り #名詞-サ変接続 # # noun-adjective-base: The base form of adjectives, words that appear before な ("na") # e.g. 健康, 安易, 駄目, だめ #名詞-形容動詞語幹 # # noun-numeric: Arabic numbers, Chinese numerals, and counters like 何 (回), 数. # e.g. 0, 1, 2, 何, 数, 幾 #名詞-数 # # noun-affix: noun affixes where the sub-classification is undefined #名詞-非自立 # # noun-affix-misc: Of adnominalizers, the case-marker の ("no"), and words that # attach to the base form of inflectional words, words that cannot be classified # into any of the other categories below. This category includes indefinite nouns. # e.g. あかつき, 暁, かい, 甲斐, 気, きらい, 嫌い, くせ, 癖, こと, 事, ごと, 毎, しだい, 次第, # 順, せい, 所為, ついで, 序で, つもり, 積もり, 点, どころ, の, はず, 筈, はずみ, 弾み, # 拍子, ふう, ふり, 振り, ほう, 方, 旨, もの, 物, 者, ゆえ, 故, ゆえん, 所以, わけ, 訳, # わり, 割り, 割, ん-口語/, もん-口語/ #名詞-非自立-一般 # # noun-affix-adverbial: noun affixes that that can behave as adverbs. # e.g. あいだ, 間, あげく, 挙げ句, あと, 後, 余り, 以外, 以降, 以後, 以上, 以前, 一方, うえ, # 上, うち, 内, おり, 折り, かぎり, 限り, きり, っきり, 結果, ころ, 頃, さい, 際, 最中, さなか, # 最中, じたい, 自体, たび, 度, ため, 為, つど, 都度, とおり, 通り, とき, 時, ところ, 所, # とたん, 途端, なか, 中, のち, 後, ばあい, 場合, 日, ぶん, 分, ほか, 他, まえ, 前, まま, # 儘, 侭, みぎり, 矢先 #名詞-非自立-副詞可能 # # noun-affix-aux: noun affixes treated as 助動詞 ("auxiliary verb") in school grammars # with the stem よう(だ) ("you(da)"). # e.g. よう, やう, 様 (よう) #名詞-非自立-助動詞語幹 # # noun-affix-adjective-base: noun affixes that can connect to the indeclinable # connection form な (aux "da"). # e.g. みたい, ふう #名詞-非自立-形容動詞語幹 # # noun-special: special nouns where the sub-classification is undefined. #名詞-特殊 # # noun-special-aux: The そうだ ("souda") stem form that is used for reporting news, is # treated as 助動詞 ("auxiliary verb") in school grammars, and attach to the base # form of inflectional words. # e.g. そう #名詞-特殊-助動詞語幹 # # noun-suffix: noun suffixes where the sub-classification is undefined. #名詞-接尾 # # noun-suffix-misc: Of the nouns or stem forms of other parts of speech that connect # to ガル or タイ and can combine into compound nouns, words that cannot be classified into # any of the other categories below. In general, this category is more inclusive than # 接尾語 ("suffix") and is usually the last element in a compound noun. # e.g. おき, かた, 方, 甲斐 (がい), がかり, ぎみ, 気味, ぐるみ, (~した) さ, 次第, 済 (ず) み, # よう, (でき)っこ, 感, 観, 性, 学, 類, 面, 用 #名詞-接尾-一般 # # noun-suffix-person: Suffixes that form nouns and attach to person names more often # than other nouns. # e.g. 君, 様, 著 #名詞-接尾-人名 # # noun-suffix-place: Suffixes that form nouns and attach to place names more often # than other nouns. # e.g. 町, 市, 県 #名詞-接尾-地域 # # noun-suffix-verbal: Of the suffixes that attach to nouns and form nouns, those that # can appear before スル ("suru"). # e.g. 化, 視, 分け, 入り, 落ち, 買い #名詞-接尾-サ変接続 # # noun-suffix-aux: The stem form of そうだ (様態) that is used to indicate conditions, # is treated as 助動詞 ("auxiliary verb") in school grammars, and attach to the # conjunctive form of inflectional words. # e.g. そう #名詞-接尾-助動詞語幹 # # noun-suffix-adjective-base: Suffixes that attach to other nouns or the conjunctive # form of inflectional words and appear before the copula だ ("da"). # e.g. 的, げ, がち #名詞-接尾-形容動詞語幹 # # noun-suffix-adverbial: Suffixes that attach to other nouns and can behave as adverbs. # e.g. 後 (ご), 以後, 以降, 以前, 前後, 中, 末, 上, 時 (じ) #名詞-接尾-副詞可能 # # noun-suffix-classifier: Suffixes that attach to numbers and form nouns. This category # is more inclusive than 助数詞 ("classifier") and includes common nouns that attach # to numbers. # e.g. 個, つ, 本, 冊, パーセント, cm, kg, カ月, か国, 区画, 時間, 時半 #名詞-接尾-助数詞 # # noun-suffix-special: Special suffixes that mainly attach to inflecting words. # e.g. (楽し) さ, (考え) 方 #名詞-接尾-特殊 # # noun-suffix-conjunctive: Nouns that behave like conjunctions and join two words # together. # e.g. (日本) 対 (アメリカ), 対 (アメリカ), (3) 対 (5), (女優) 兼 (主婦) #名詞-接続詞的 # # noun-verbal_aux: Nouns that attach to the conjunctive particle て ("te") and are # semantically verb-like. # e.g. ごらん, ご覧, 御覧, 頂戴 #名詞-動詞非自立的 # # noun-quotation: text that cannot be segmented into words, proverbs, Chinese poetry, # dialects, English, etc. Currently, the only entry for 名詞 引用文字列 ("noun quotation") # is いわく ("iwaku"). #名詞-引用文字列 # # noun-nai_adjective: Words that appear before the auxiliary verb ない ("nai") and # behave like an adjective. # e.g. 申し訳, 仕方, とんでも, 違い #名詞-ナイ形容詞語幹 # ##### # prefix: unclassified prefixes #接頭詞 # # prefix-nominal: Prefixes that attach to nouns (including adjective stem forms) # excluding numerical expressions. # e.g. お (水), 某 (氏), 同 (社), 故 (~氏), 高 (品質), お (見事), ご (立派) #接頭詞-名詞接続 # # prefix-verbal: Prefixes that attach to the imperative form of a verb or a verb # in conjunctive form followed by なる/なさる/くださる. # e.g. お (読みなさい), お (座り) #接頭詞-動詞接続 # # prefix-adjectival: Prefixes that attach to adjectives. # e.g. お (寒いですねえ), バカ (でかい) #接頭詞-形容詞接続 # # prefix-numerical: Prefixes that attach to numerical expressions. # e.g. 約, およそ, 毎時 #接頭詞-数接続 # ##### # verb: unclassified verbs #動詞 # # verb-main: #動詞-自立 # # verb-auxiliary: #動詞-非自立 # # verb-suffix: #動詞-接尾 # ##### # adjective: unclassified adjectives #形容詞 # # adjective-main: #形容詞-自立 # # adjective-auxiliary: #形容詞-非自立 # # adjective-suffix: #形容詞-接尾 # ##### # adverb: unclassified adverbs #副詞 # # adverb-misc: Words that can be segmented into one unit and where adnominal # modification is not possible. # e.g. あいかわらず, 多分 #副詞-一般 # # adverb-particle_conjunction: Adverbs that can be followed by の, は, に, # な, する, だ, etc. # e.g. こんなに, そんなに, あんなに, なにか, なんでも #副詞-助詞類接続 # ##### # adnominal: Words that only have noun-modifying forms. # e.g. この, その, あの, どの, いわゆる, なんらかの, 何らかの, いろんな, こういう, そういう, ああいう, # どういう, こんな, そんな, あんな, どんな, 大きな, 小さな, おかしな, ほんの, たいした, # 「(, も) さる (ことながら)」, 微々たる, 堂々たる, 単なる, いかなる, 我が」「同じ, 亡き #連体詞 # ##### # conjunction: Conjunctions that can occur independently. # e.g. が, けれども, そして, じゃあ, それどころか 接続詞 # ##### # particle: unclassified particles. 助詞 # # particle-case: case particles where the subclassification is undefined. 助詞-格助詞 # # particle-case-misc: Case particles. # e.g. から, が, で, と, に, へ, より, を, の, にて 助詞-格助詞-一般 # # particle-case-quote: the "to" that appears after nouns, a person’s speech, # quotation marks, expressions of decisions from a meeting, reasons, judgements, # conjectures, etc. # e.g. ( だ) と (述べた.), ( である) と (して執行猶予...) 助詞-格助詞-引用 # # particle-case-compound: Compounds of particles and verbs that mainly behave # like case particles. # e.g. という, といった, とかいう, として, とともに, と共に, でもって, にあたって, に当たって, に当って, # にあたり, に当たり, に当り, に当たる, にあたる, において, に於いて,に於て, における, に於ける, # にかけ, にかけて, にかんし, に関し, にかんして, に関して, にかんする, に関する, に際し, # に際して, にしたがい, に従い, に従う, にしたがって, に従って, にたいし, に対し, にたいして, # に対して, にたいする, に対する, について, につき, につけ, につけて, につれ, につれて, にとって, # にとり, にまつわる, によって, に依って, に因って, により, に依り, に因り, による, に依る, に因る, # にわたって, にわたる, をもって, を以って, を通じ, を通じて, を通して, をめぐって, をめぐり, をめぐる, # って-口語/, ちゅう-関西弁「という」/, (何) ていう (人)-口語/, っていう-口語/, といふ, とかいふ 助詞-格助詞-連語 # # particle-conjunctive: # e.g. から, からには, が, けれど, けれども, けど, し, つつ, て, で, と, ところが, どころか, とも, ども, # ながら, なり, ので, のに, ば, ものの, や ( した), やいなや, (ころん) じゃ(いけない)-口語/, # (行っ) ちゃ(いけない)-口語/, (言っ) たって (しかたがない)-口語/, (それがなく)ったって (平気)-口語/ 助詞-接続助詞 # # particle-dependency: # e.g. こそ, さえ, しか, すら, は, も, ぞ 助詞-係助詞 # # particle-adverbial: # e.g. がてら, かも, くらい, 位, ぐらい, しも, (学校) じゃ(これが流行っている)-口語/, # (それ)じゃあ (よくない)-口語/, ずつ, (私) なぞ, など, (私) なり (に), (先生) なんか (大嫌い)-口語/, # (私) なんぞ, (先生) なんて (大嫌い)-口語/, のみ, だけ, (私) だって-口語/, だに, # (彼)ったら-口語/, (お茶) でも (いかが), 等 (とう), (今後) とも, ばかり, ばっか-口語/, ばっかり-口語/, # ほど, 程, まで, 迄, (誰) も (が)([助詞-格助詞] および [助詞-係助詞] の前に位置する「も」) 助詞-副助詞 # # particle-interjective: particles with interjective grammatical roles. # e.g. (松島) や 助詞-間投助詞 # # particle-coordinate: # e.g. と, たり, だの, だり, とか, なり, や, やら 助詞-並立助詞 # # particle-final: # e.g. かい, かしら, さ, ぜ, (だ)っけ-口語/, (とまってる) で-方言/, な, ナ, なあ-口語/, ぞ, ね, ネ, # ねぇ-口語/, ねえ-口語/, ねん-方言/, の, のう-口語/, や, よ, ヨ, よぉ-口語/, わ, わい-口語/ 助詞-終助詞 # # particle-adverbial/conjunctive/final: The particle "ka" when unknown whether it is # adverbial, conjunctive, or sentence final. For example: # (a) 「A か B か」. Ex:「(国内で運用する) か,(海外で運用する) か (.)」 # (b) Inside an adverb phrase. Ex:「(幸いという) か (, 死者はいなかった.)」 # 「(祈りが届いたせい) か (, 試験に合格した.)」 # (c) 「かのように」. Ex:「(何もなかった) か (のように振る舞った.)」 # e.g. か 助詞-副助詞/並立助詞/終助詞 # # particle-adnominalizer: The "no" that attaches to nouns and modifies # non-inflectional words. 助詞-連体化 # # particle-adnominalizer: The "ni" and "to" that appear following nouns and adverbs # that are giongo, giseigo, or gitaigo. # e.g. に, と 助詞-副詞化 # # particle-special: A particle that does not fit into one of the above classifications. # This includes particles that are used in Tanka, Haiku, and other poetry. # e.g. かな, けむ, ( しただろう) に, (あんた) にゃ(わからん), (俺) ん (家) 助詞-特殊 # ##### # auxiliary-verb: 助動詞 # ##### # interjection: Greetings and other exclamations. # e.g. おはよう, おはようございます, こんにちは, こんばんは, ありがとう, どうもありがとう, ありがとうございます, # いただきます, ごちそうさま, さよなら, さようなら, はい, いいえ, ごめん, ごめんなさい #感動詞 # ##### # symbol: unclassified Symbols. 記号 # # symbol-misc: A general symbol not in one of the categories below. # e.g. [○◎@$〒→+] 記号-一般 # # symbol-comma: Commas # e.g. [,、] 記号-読点 # # symbol-period: Periods and full stops. # e.g. [..。] 記号-句点 # # symbol-space: Full-width whitespace. 記号-空白 # # symbol-open_bracket: # e.g. [({‘“『【] 記号-括弧開 # # symbol-close_bracket: # e.g. [)}’”』」】] 記号-括弧閉 # # symbol-alphabetic: #記号-アルファベット # ##### # other: unclassified other #その他 # # other-interjection: Words that are hard to classify as noun-suffixes or # sentence-final particles. # e.g. (だ)ァ その他-間投 # ##### # filler: Aizuchi that occurs during a conversation or sounds inserted as filler. # e.g. あの, うんと, えと フィラー # ##### # non-verbal: non-verbal sound. 非言語音 # ##### # fragment: #語断片 # ##### # unknown: unknown part of speech. #未知語 # ##### End of file ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_ar.txt ================================================ # This file was created by Jacques Savoy and is distributed under the BSD license. # See http://members.unine.ch/jacques.savoy/clef/index.html. # Also see http://www.opensource.org/licenses/bsd-license.html # Cleaned on October 11, 2009 (not normalized, so use before normalization) # This means that when modifying this list, you might need to add some # redundant entries, for example containing forms with both أ and ا من ومن منها منه في وفي فيها فيه و ف ثم او أو ب بها به ا أ اى اي أي أى لا ولا الا ألا إلا لكن ما وما كما فما عن مع اذا إذا ان أن إن انها أنها إنها انه أنه إنه بان بأن فان فأن وان وأن وإن التى التي الذى الذي الذين الى الي إلى إلي على عليها عليه اما أما إما ايضا أيضا كل وكل لم ولم لن ولن هى هي هو وهى وهي وهو فهى فهي فهو انت أنت لك لها له هذه هذا تلك ذلك هناك كانت كان يكون تكون وكانت وكان غير بعض قد نحو بين بينما منذ ضمن حيث الان الآن خلال بعد قبل حتى عند عندما لدى جميع ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_bg.txt ================================================ # This file was created by Jacques Savoy and is distributed under the BSD license. # See http://members.unine.ch/jacques.savoy/clef/index.html. # Also see http://www.opensource.org/licenses/bsd-license.html а аз ако ала бе без беше би бил била били било близо бъдат бъде бяха в вас ваш ваша вероятно вече взема ви вие винаги все всеки всички всичко всяка във въпреки върху г ги главно го д да дали до докато докога дори досега доста е едва един ето за зад заедно заради засега затова защо защото и из или им има имат иска й каза как каква какво както какъв като кога когато което които кой който колко която къде където към ли м ме между мен ми мнозина мога могат може моля момента му н на над назад най направи напред например нас не него нея ни ние никой нито но някои някой няма обаче около освен особено от отгоре отново още пак по повече повечето под поне поради после почти прави пред преди през при пък първо с са само се сега си скоро след сме според сред срещу сте съм със също т тази така такива такъв там твой те тези ти тн то това тогава този той толкова точно трябва тук тъй тя тях у харесва ч че често чрез ще щом я ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_ca.txt ================================================ # Catalan stopwords from http://github.com/vcl/cue.language (Apache 2 Licensed) a abans ací ah així això al als aleshores algun alguna algunes alguns alhora allà allí allò altra altre altres amb ambdós ambdues apa aquell aquella aquelles aquells aquest aquesta aquestes aquests aquí baix cada cadascú cadascuna cadascunes cadascuns com contra d'un d'una d'unes d'uns dalt de del dels des després dins dintre donat doncs durant e eh el els em en encara ens entre érem eren éreu es és esta està estàvem estaven estàveu esteu et etc ets fins fora gairebé ha han has havia he hem heu hi ho i igual iguals ja l'hi la les li li'n llavors m'he ma mal malgrat mateix mateixa mateixes mateixos me mentre més meu meus meva meves molt molta moltes molts mon mons n'he n'hi ne ni no nogensmenys només nosaltres nostra nostre nostres o oh oi on pas pel pels per però perquè poc poca pocs poques potser propi qual quals quan quant que què quelcom qui quin quina quines quins s'ha s'han sa semblant semblants ses seu seus seva seva seves si sobre sobretot sóc solament sols son són sons sota sou t'ha t'han t'he ta tal també tampoc tan tant tanta tantes teu teus teva teves ton tons tot tota totes tots un una unes uns us va vaig vam van vas veu vosaltres vostra vostre vostres ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_cz.txt ================================================ a s k o i u v z dnes cz tímto budeš budem byli jseš můj svým ta tomto tohle tuto tyto jej zda proč máte tato kam tohoto kdo kteří mi nám tom tomuto mít nic proto kterou byla toho protože asi ho naši napište re což tím takže svých její svými jste aj tu tedy teto bylo kde ke pravé ji nad nejsou či pod téma mezi přes ty pak vám ani když však neg jsem tento článku články aby jsme před pta jejich byl ještě až bez také pouze první vaše která nás nový tipy pokud může strana jeho své jiné zprávy nové není vás jen podle zde už být více bude již než který by které co nebo ten tak má při od po jsou jak další ale si se ve to jako za zpět ze do pro je na atd atp jakmile přičemž já on ona ono oni ony my vy jí ji mě mne jemu tomu těm těmu němu němuž jehož jíž jelikož jež jakož načež ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_da.txt ================================================ | From svn.tartarus.org/snowball/trunk/website/algorithms/danish/stop.txt | This file is distributed under the BSD License. | See http://snowball.tartarus.org/license.php | Also see http://www.opensource.org/licenses/bsd-license.html | - Encoding was converted to UTF-8. | - This notice was added. | A Danish stop word list. Comments begin with vertical bar. Each stop | word is at the start of a line. | This is a ranked list (commonest to rarest) of stopwords derived from | a large text sample. og | and i | in jeg | I det | that (dem. pronoun)/it (pers. pronoun) at | that (in front of a sentence)/to (with infinitive) en | a/an den | it (pers. pronoun)/that (dem. pronoun) til | to/at/for/until/against/by/of/into, more er | present tense of "to be" som | who, as på | on/upon/in/on/at/to/after/of/with/for, on de | they med | with/by/in, along han | he af | of/by/from/off/for/in/with/on, off for | at/for/to/from/by/of/ago, in front/before, because ikke | not der | who/which, there/those var | past tense of "to be" mig | me/myself sig | oneself/himself/herself/itself/themselves men | but et | a/an/one, one (number), someone/somebody/one har | present tense of "to have" om | round/about/for/in/a, about/around/down, if vi | we min | my havde | past tense of "to have" ham | him hun | she nu | now over | over/above/across/by/beyond/past/on/about, over/past da | then, when/as/since fra | from/off/since, off, since du | you ud | out sin | his/her/its/one's dem | them os | us/ourselves op | up man | you/one hans | his hvor | where eller | or hvad | what skal | must/shall etc. selv | myself/youself/herself/ourselves etc., even her | here alle | all/everyone/everybody etc. vil | will (verb) blev | past tense of "to stay/to remain/to get/to become" kunne | could ind | in når | when være | present tense of "to be" dog | however/yet/after all noget | something ville | would jo | you know/you see (adv), yes deres | their/theirs efter | after/behind/according to/for/by/from, later/afterwards ned | down skulle | should denne | this end | than dette | this mit | my/mine også | also under | under/beneath/below/during, below/underneath have | have dig | you anden | other hende | her mine | my alt | everything meget | much/very, plenty of sit | his, her, its, one's sine | his, her, its, one's vor | our mod | against disse | these hvis | if din | your/yours nogle | some hos | by/at blive | be/become mange | many ad | by/through bliver | present tense of "to be/to become" hendes | her/hers været | be thi | for (conj) jer | you sådan | such, like this/like that ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_de.txt ================================================ | From svn.tartarus.org/snowball/trunk/website/algorithms/german/stop.txt | This file is distributed under the BSD License. | See http://snowball.tartarus.org/license.php | Also see http://www.opensource.org/licenses/bsd-license.html | - Encoding was converted to UTF-8. | - This notice was added. | A German stop word list. Comments begin with vertical bar. Each stop | word is at the start of a line. | The number of forms in this list is reduced significantly by passing it | through the German stemmer. aber | but alle | all allem allen aller alles als | than, as also | so am | an + dem an | at ander | other andere anderem anderen anderer anderes anderm andern anderr anders auch | also auf | on aus | out of bei | by bin | am bis | until bist | art da | there damit | with it dann | then der | the den des dem die das daß | that derselbe | the same derselben denselben desselben demselben dieselbe dieselben dasselbe dazu | to that dein | thy deine deinem deinen deiner deines denn | because derer | of those dessen | of him dich | thee dir | to thee du | thou dies | this diese diesem diesen dieser dieses doch | (several meanings) dort | (over) there durch | through ein | a eine einem einen einer eines einig | some einige einigem einigen einiger einiges einmal | once er | he ihn | him ihm | to him es | it etwas | something euer | your eure eurem euren eurer eures für | for gegen | towards gewesen | p.p. of sein hab | have habe | have haben | have hat | has hatte | had hatten | had hier | here hin | there hinter | behind ich | I mich | me mir | to me ihr | you, to her ihre ihrem ihren ihrer ihres euch | to you im | in + dem in | in indem | while ins | in + das ist | is jede | each, every jedem jeden jeder jedes jene | that jenem jenen jener jenes jetzt | now kann | can kein | no keine keinem keinen keiner keines können | can könnte | could machen | do man | one manche | some, many a manchem manchen mancher manches mein | my meine meinem meinen meiner meines mit | with muss | must musste | had to nach | to(wards) nicht | not nichts | nothing noch | still, yet nun | now nur | only ob | whether oder | or ohne | without sehr | very sein | his seine seinem seinen seiner seines selbst | self sich | herself sie | they, she ihnen | to them sind | are so | so solche | such solchem solchen solcher solches soll | shall sollte | should sondern | but sonst | else über | over um | about, around und | and uns | us unse unsem unsen unser unses unter | under viel | much vom | von + dem von | from vor | before während | while war | was waren | were warst | wast was | what weg | away, off weil | because weiter | further welche | which welchem welchen welcher welches wenn | when werde | will werden | will wie | how wieder | again will | want wir | we wird | will wirst | willst wo | where wollen | want wollte | wanted würde | would würden | would zu | to zum | zu + dem zur | zu + der zwar | indeed zwischen | between ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_el.txt ================================================ # Lucene Greek Stopwords list # Note: by default this file is used after GreekLowerCaseFilter, # so when modifying this file use 'σ' instead of 'ς' ο η το οι τα του τησ των τον την και κι κ ειμαι εισαι ειναι ειμαστε ειστε στο στον στη στην μα αλλα απο για προσ με σε ωσ παρα αντι κατα μετα θα να δε δεν μη μην επι ενω εαν αν τοτε που πωσ ποιοσ ποια ποιο ποιοι ποιεσ ποιων ποιουσ αυτοσ αυτη αυτο αυτοι αυτων αυτουσ αυτεσ αυτα εκεινοσ εκεινη εκεινο εκεινοι εκεινεσ εκεινα εκεινων εκεινουσ οπωσ ομωσ ισωσ οσο οτι ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_en.txt ================================================ # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # a couple of test stopwords to test that the words are really being # configured from this file: stopworda stopwordb # Standard english stop words taken from Lucene's StopAnalyzer a an and are as at be but by for if in into is it no not of on or such that the their then there these they this to was will with ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_es.txt ================================================ | From svn.tartarus.org/snowball/trunk/website/algorithms/spanish/stop.txt | This file is distributed under the BSD License. | See http://snowball.tartarus.org/license.php | Also see http://www.opensource.org/licenses/bsd-license.html | - Encoding was converted to UTF-8. | - This notice was added. | A Spanish stop word list. Comments begin with vertical bar. Each stop | word is at the start of a line. | The following is a ranked list (commonest to rarest) of stopwords | deriving from a large sample of text. | Extra words have been added at the end. de | from, of la | the, her que | who, that el | the en | in y | and a | to los | the, them del | de + el se | himself, from him etc las | the, them por | for, by, etc un | a para | for con | with no | no una | a su | his, her al | a + el | es from SER lo | him como | how más | more pero | pero sus | su plural le | to him, her ya | already o | or | fue from SER este | this | ha from HABER sí | himself etc porque | because esta | this | son from SER entre | between | está from ESTAR cuando | when muy | very sin | without sobre | on | ser from SER | tiene from TENER también | also me | me hasta | until hay | there is/are donde | where | han from HABER quien | whom, that | están from ESTAR | estado from ESTAR desde | from todo | all nos | us durante | during | estados from ESTAR todos | all uno | a les | to them ni | nor contra | against otros | other | fueron from SER ese | that eso | that | había from HABER ante | before ellos | they e | and (variant of y) esto | this mí | me antes | before algunos | some qué | what? unos | a yo | I otro | other otras | other otra | other él | he tanto | so much, many esa | that estos | these mucho | much, many quienes | who nada | nothing muchos | many cual | who | sea from SER poco | few ella | she estar | to be | haber from HABER estas | these | estaba from ESTAR | estamos from ESTAR algunas | some algo | something nosotros | we | other forms mi | me mis | mi plural tú | thou te | thee ti | thee tu | thy tus | tu plural ellas | they nosotras | we vosotros | you vosotras | you os | you mío | mine mía | míos | mías | tuyo | thine tuya | tuyos | tuyas | suyo | his, hers, theirs suya | suyos | suyas | nuestro | ours nuestra | nuestros | nuestras | vuestro | yours vuestra | vuestros | vuestras | esos | those esas | those | forms of estar, to be (not including the infinitive): estoy estás está estamos estáis están esté estés estemos estéis estén estaré estarás estará estaremos estaréis estarán estaría estarías estaríamos estaríais estarían estaba estabas estábamos estabais estaban estuve estuviste estuvo estuvimos estuvisteis estuvieron estuviera estuvieras estuviéramos estuvierais estuvieran estuviese estuvieses estuviésemos estuvieseis estuviesen estando estado estada estados estadas estad | forms of haber, to have (not including the infinitive): he has ha hemos habéis han haya hayas hayamos hayáis hayan habré habrás habrá habremos habréis habrán habría habrías habríamos habríais habrían había habías habíamos habíais habían hube hubiste hubo hubimos hubisteis hubieron hubiera hubieras hubiéramos hubierais hubieran hubiese hubieses hubiésemos hubieseis hubiesen habiendo habido habida habidos habidas | forms of ser, to be (not including the infinitive): soy eres es somos sois son sea seas seamos seáis sean seré serás será seremos seréis serán sería serías seríamos seríais serían era eras éramos erais eran fui fuiste fue fuimos fuisteis fueron fuera fueras fuéramos fuerais fueran fuese fueses fuésemos fueseis fuesen siendo sido | sed also means 'thirst' | forms of tener, to have (not including the infinitive): tengo tienes tiene tenemos tenéis tienen tenga tengas tengamos tengáis tengan tendré tendrás tendrá tendremos tendréis tendrán tendría tendrías tendríamos tendríais tendrían tenía tenías teníamos teníais tenían tuve tuviste tuvo tuvimos tuvisteis tuvieron tuviera tuvieras tuviéramos tuvierais tuvieran tuviese tuvieses tuviésemos tuvieseis tuviesen teniendo tenido tenida tenidos tenidas tened ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_eu.txt ================================================ # example set of basque stopwords al anitz arabera asko baina bat batean batek bati batzuei batzuek batzuetan batzuk bera beraiek berau berauek bere berori beroriek beste bezala da dago dira ditu du dute edo egin ere eta eurak ez gainera gu gutxi guzti haiei haiek haietan hainbeste hala han handik hango hara hari hark hartan hau hauei hauek hauetan hemen hemendik hemengo hi hona honek honela honetan honi hor hori horiei horiek horietan horko horra horrek horrela horretan horri hortik hura izan ni noiz nola non nondik nongo nor nora ze zein zen zenbait zenbat zer zergatik ziren zituen zu zuek zuen zuten ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_fa.txt ================================================ # This file was created by Jacques Savoy and is distributed under the BSD license. # See http://members.unine.ch/jacques.savoy/clef/index.html. # Also see http://www.opensource.org/licenses/bsd-license.html # Note: by default this file is used after normalization, so when adding entries # to this file, use the arabic 'ي' instead of 'ی' انان نداشته سراسر خياه ايشان وي تاكنون بيشتري دوم پس ناشي وگو يا داشتند سپس هنگام هرگز پنج نشان امسال ديگر گروهي شدند چطور ده و دو نخستين ولي چرا چه وسط ه كدام قابل يك رفت هفت همچنين در هزار بله بلي شايد اما شناسي گرفته دهد داشته دانست داشتن خواهيم ميليارد وقتيكه امد خواهد جز اورده شده بلكه خدمات شدن برخي نبود بسياري جلوگيري حق كردند نوعي بعري نكرده نظير نبايد بوده بودن داد اورد هست جايي شود دنبال داده بايد سابق هيچ همان انجا كمتر كجاست گردد كسي تر مردم تان دادن بودند سري جدا ندارند مگر يكديگر دارد دهند بنابراين هنگامي سمت جا انچه خود دادند زياد دارند اثر بدون بهترين بيشتر البته به براساس بيرون كرد بعضي گرفت توي اي ميليون او جريان تول بر مانند برابر باشيم مدتي گويند اكنون تا تنها جديد چند بي نشده كردن كردم گويد كرده كنيم نمي نزد روي قصد فقط بالاي ديگران اين ديروز توسط سوم ايم دانند سوي استفاده شما كنار داريم ساخته طور امده رفته نخست بيست نزديك طي كنيد از انها تمامي داشت يكي طريق اش چيست روب نمايد گفت چندين چيزي تواند ام ايا با ان ايد ترين اينكه ديگري راه هايي بروز همچنان پاعين كس حدود مختلف مقابل چيز گيرد ندارد ضد همچون سازي شان مورد باره مرسي خويش برخوردار چون خارج شش هنوز تحت ضمن هستيم گفته فكر بسيار پيش براي روزهاي انكه نخواهد بالا كل وقتي كي چنين كه گيري نيست است كجا كند نيز يابد بندي حتي توانند عقب خواست كنند بين تمام همه ما باشند مثل شد اري باشد اره طبق بعد اگر صورت غير جاي بيش ريزي اند زيرا چگونه بار لطفا مي درباره من ديده همين گذاري برداري علت گذاشته هم فوق نه ها شوند اباد همواره هر اول خواهند چهار نام امروز مان هاي قبل كنم سعي تازه را هستند زير جلوي عنوان بود ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_fi.txt ================================================ | From svn.tartarus.org/snowball/trunk/website/algorithms/finnish/stop.txt | This file is distributed under the BSD License. | See http://snowball.tartarus.org/license.php | Also see http://www.opensource.org/licenses/bsd-license.html | - Encoding was converted to UTF-8. | - This notice was added. | forms of BE olla olen olet on olemme olette ovat ole | negative form oli olisi olisit olisin olisimme olisitte olisivat olit olin olimme olitte olivat ollut olleet en | negation et ei emme ette eivät |Nom Gen Acc Part Iness Elat Illat Adess Ablat Allat Ess Trans minä minun minut minua minussa minusta minuun minulla minulta minulle | I sinä sinun sinut sinua sinussa sinusta sinuun sinulla sinulta sinulle | you hän hänen hänet häntä hänessä hänestä häneen hänellä häneltä hänelle | he she me meidän meidät meitä meissä meistä meihin meillä meiltä meille | we te teidän teidät teitä teissä teistä teihin teillä teiltä teille | you he heidän heidät heitä heissä heistä heihin heillä heiltä heille | they tämä tämän tätä tässä tästä tähän tallä tältä tälle tänä täksi | this tuo tuon tuotä tuossa tuosta tuohon tuolla tuolta tuolle tuona tuoksi | that se sen sitä siinä siitä siihen sillä siltä sille sinä siksi | it nämä näiden näitä näissä näistä näihin näillä näiltä näille näinä näiksi | these nuo noiden noita noissa noista noihin noilla noilta noille noina noiksi | those ne niiden niitä niissä niistä niihin niillä niiltä niille niinä niiksi | they kuka kenen kenet ketä kenessä kenestä keneen kenellä keneltä kenelle kenenä keneksi| who ketkä keiden ketkä keitä keissä keistä keihin keillä keiltä keille keinä keiksi | (pl) mikä minkä minkä mitä missä mistä mihin millä miltä mille minä miksi | which what mitkä | (pl) joka jonka jota jossa josta johon jolla jolta jolle jona joksi | who which jotka joiden joita joissa joista joihin joilla joilta joille joina joiksi | (pl) | conjunctions että | that ja | and jos | if koska | because kuin | than mutta | but niin | so sekä | and sillä | for tai | or vaan | but vai | or vaikka | although | prepositions kanssa | with mukaan | according to noin | about poikki | across yli | over, across | other kun | when niin | so nyt | now itse | self ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_fr.txt ================================================ | From svn.tartarus.org/snowball/trunk/website/algorithms/french/stop.txt | This file is distributed under the BSD License. | See http://snowball.tartarus.org/license.php | Also see http://www.opensource.org/licenses/bsd-license.html | - Encoding was converted to UTF-8. | - This notice was added. | A French stop word list. Comments begin with vertical bar. Each stop | word is at the start of a line. au | a + le aux | a + les avec | with ce | this ces | these dans | with de | of des | de + les du | de + le elle | she en | `of them' etc et | and eux | them il | he je | I la | the le | the leur | their lui | him ma | my (fem) mais | but me | me même | same; as in moi-même (myself) etc mes | me (pl) moi | me mon | my (masc) ne | not nos | our (pl) notre | our nous | we on | one ou | where par | by pas | not pour | for qu | que before vowel que | that qui | who sa | his, her (fem) se | oneself ses | his (pl) son | his, her (masc) sur | on ta | thy (fem) te | thee tes | thy (pl) toi | thee ton | thy (masc) tu | thou un | a une | a vos | your (pl) votre | your vous | you | single letter forms c | c' d | d' j | j' l | l' à | to, at m | m' n | n' s | s' t | t' y | there | forms of être (not including the infinitive): été étée étées étés étant suis es est sommes êtes sont serai seras sera serons serez seront serais serait serions seriez seraient étais était étions étiez étaient fus fut fûmes fûtes furent sois soit soyons soyez soient fusse fusses fût fussions fussiez fussent | forms of avoir (not including the infinitive): ayant eu eue eues eus ai as avons avez ont aurai auras aura aurons aurez auront aurais aurait aurions auriez auraient avais avait avions aviez avaient eut eûmes eûtes eurent aie aies ait ayons ayez aient eusse eusses eût eussions eussiez eussent | Later additions (from Jean-Christophe Deschamps) ceci | this cela | that celà | that cet | this cette | this ici | here ils | they les | the (pl) leurs | their (pl) quel | which quels | which quelle | which quelles | which sans | without soi | oneself ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_ga.txt ================================================ a ach ag agus an aon ar arna as b' ba beirt bhúr caoga ceathair ceathrar chomh chtó chuig chun cois céad cúig cúigear d' daichead dar de deich deichniúr den dhá do don dtí dá dár dó faoi faoin faoina faoinár fara fiche gach gan go gur haon hocht i iad idir in ina ins inár is le leis lena lenár m' mar mo mé na nach naoi naonúr ná ní níor nó nócha ocht ochtar os roimh sa seacht seachtar seachtó seasca seisear siad sibh sinn sna sé sí tar thar thú triúr trí trína trínár tríocha tú um ár é éis í ó ón óna ónár ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_gl.txt ================================================ # galican stopwords a aínda alí aquel aquela aquelas aqueles aquilo aquí ao aos as así á ben cando che co coa comigo con connosco contigo convosco coas cos cun cuns cunha cunhas da dalgunha dalgunhas dalgún dalgúns das de del dela delas deles desde deste do dos dun duns dunha dunhas e el ela elas eles en era eran esa esas ese eses esta estar estaba está están este estes estiven estou eu é facer foi foron fun había hai iso isto la las lle lles lo los mais me meu meus min miña miñas moi na nas neste nin no non nos nosa nosas noso nosos nós nun nunha nuns nunhas o os ou ó ós para pero pode pois pola polas polo polos por que se senón ser seu seus sexa sido sobre súa súas tamén tan te ten teñen teño ter teu teus ti tido tiña tiven túa túas un unha unhas uns vos vosa vosas voso vosos vós ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_hi.txt ================================================ # Also see http://www.opensource.org/licenses/bsd-license.html # See http://members.unine.ch/jacques.savoy/clef/index.html. # This file was created by Jacques Savoy and is distributed under the BSD license. # Note: by default this file also contains forms normalized by HindiNormalizer # for spelling variation (see section below), such that it can be used whether or # not you enable that feature. When adding additional entries to this list, # please add the normalized form as well. अंदर अत अपना अपनी अपने अभी आदि आप इत्यादि इन इनका इन्हीं इन्हें इन्हों इस इसका इसकी इसके इसमें इसी इसे उन उनका उनकी उनके उनको उन्हीं उन्हें उन्हों उस उसके उसी उसे एक एवं एस ऐसे और कई कर करता करते करना करने करें कहते कहा का काफ़ी कि कितना किन्हें किन्हों किया किर किस किसी किसे की कुछ कुल के को कोई कौन कौनसा गया घर जब जहाँ जा जितना जिन जिन्हें जिन्हों जिस जिसे जीधर जैसा जैसे जो तक तब तरह तिन तिन्हें तिन्हों तिस तिसे तो था थी थे दबारा दिया दुसरा दूसरे दो द्वारा न नहीं ना निहायत नीचे ने पर पर पहले पूरा पे फिर बनी बही बहुत बाद बाला बिलकुल भी भीतर मगर मानो मे में यदि यह यहाँ यही या यिह ये रखें रहा रहे ऱ्वासा लिए लिये लेकिन व वर्ग वह वह वहाँ वहीं वाले वुह वे वग़ैरह संग सकता सकते सबसे सभी साथ साबुत साभ सारा से सो ही हुआ हुई हुए है हैं हो होता होती होते होना होने # additional normalized forms of the above अपनि जेसे होति सभि तिंहों इंहों दवारा इसि किंहें थि उंहों ओर जिंहें वहिं अभि बनि हि उंहिं उंहें हें वगेरह एसे रवासा कोन निचे काफि उसि पुरा भितर हे बहि वहां कोइ यहां जिंहों तिंहें किसि कइ यहि इंहिं जिधर इंहें अदि इतयादि हुइ कोनसा इसकि दुसरे जहां अप किंहों उनकि भि वरग हुअ जेसा नहिं ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_hu.txt ================================================ | From svn.tartarus.org/snowball/trunk/website/algorithms/hungarian/stop.txt | This file is distributed under the BSD License. | See http://snowball.tartarus.org/license.php | Also see http://www.opensource.org/licenses/bsd-license.html | - Encoding was converted to UTF-8. | - This notice was added. | Hungarian stop word list | prepared by Anna Tordai a ahogy ahol aki akik akkor alatt által általában amely amelyek amelyekben amelyeket amelyet amelynek ami amit amolyan amíg amikor át abban ahhoz annak arra arról az azok azon azt azzal azért aztán azután azonban bár be belül benne cikk cikkek cikkeket csak de e eddig egész egy egyes egyetlen egyéb egyik egyre ekkor el elég ellen elő először előtt első én éppen ebben ehhez emilyen ennek erre ez ezt ezek ezen ezzel ezért és fel felé hanem hiszen hogy hogyan igen így illetve ill. ill ilyen ilyenkor ison ismét itt jó jól jobban kell kellett keresztül keressünk ki kívül között közül legalább lehet lehetett legyen lenne lenni lesz lett maga magát majd majd már más másik meg még mellett mert mely melyek mi mit míg miért milyen mikor minden mindent mindenki mindig mint mintha mivel most nagy nagyobb nagyon ne néha nekem neki nem néhány nélkül nincs olyan ott össze ő ők őket pedig persze rá s saját sem semmi sok sokat sokkal számára szemben szerint szinte talán tehát teljes tovább továbbá több úgy ugyanis új újabb újra után utána utolsó vagy vagyis valaki valami valamint való vagyok van vannak volt voltam voltak voltunk vissza vele viszont volna ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_hy.txt ================================================ # example set of Armenian stopwords. այդ այլ այն այս դու դուք եմ են ենք ես եք է էի էին էինք էիր էիք էր ըստ թ ի ին իսկ իր կամ համար հետ հետո մենք մեջ մի ն նա նաև նրա նրանք որ որը որոնք որպես ու ում պիտի վրա և ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_id.txt ================================================ # from appendix D of: A Study of Stemming Effects on Information # Retrieval in Bahasa Indonesia ada adanya adalah adapun agak agaknya agar akan akankah akhirnya aku akulah amat amatlah anda andalah antar diantaranya antara antaranya diantara apa apaan mengapa apabila apakah apalagi apatah atau ataukah ataupun bagai bagaikan sebagai sebagainya bagaimana bagaimanapun sebagaimana bagaimanakah bagi bahkan bahwa bahwasanya sebaliknya banyak sebanyak beberapa seberapa begini beginian beginikah beginilah sebegini begitu begitukah begitulah begitupun sebegitu belum belumlah sebelum sebelumnya sebenarnya berapa berapakah berapalah berapapun betulkah sebetulnya biasa biasanya bila bilakah bisa bisakah sebisanya boleh bolehkah bolehlah buat bukan bukankah bukanlah bukannya cuma percuma dahulu dalam dan dapat dari daripada dekat demi demikian demikianlah sedemikian dengan depan di dia dialah dini diri dirinya terdiri dong dulu enggak enggaknya entah entahlah terhadap terhadapnya hal hampir hanya hanyalah harus haruslah harusnya seharusnya hendak hendaklah hendaknya hingga sehingga ia ialah ibarat ingin inginkah inginkan ini inikah inilah itu itukah itulah jangan jangankan janganlah jika jikalau juga justru kala kalau kalaulah kalaupun kalian kami kamilah kamu kamulah kan kapan kapankah kapanpun dikarenakan karena karenanya ke kecil kemudian kenapa kepada kepadanya ketika seketika khususnya kini kinilah kiranya sekiranya kita kitalah kok lagi lagian selagi lah lain lainnya melainkan selaku lalu melalui terlalu lama lamanya selama selama selamanya lebih terlebih bermacam macam semacam maka makanya makin malah malahan mampu mampukah mana manakala manalagi masih masihkah semasih masing mau maupun semaunya memang mereka merekalah meski meskipun semula mungkin mungkinkah nah namun nanti nantinya nyaris oleh olehnya seorang seseorang pada padanya padahal paling sepanjang pantas sepantasnya sepantasnyalah para pasti pastilah per pernah pula pun merupakan rupanya serupa saat saatnya sesaat saja sajalah saling bersama sama sesama sambil sampai sana sangat sangatlah saya sayalah se sebab sebabnya sebuah tersebut tersebutlah sedang sedangkan sedikit sedikitnya segala segalanya segera sesegera sejak sejenak sekali sekalian sekalipun sesekali sekaligus sekarang sekarang sekitar sekitarnya sela selain selalu seluruh seluruhnya semakin sementara sempat semua semuanya sendiri sendirinya seolah seperti sepertinya sering seringnya serta siapa siapakah siapapun disini disinilah sini sinilah sesuatu sesuatunya suatu sesudah sesudahnya sudah sudahkah sudahlah supaya tadi tadinya tak tanpa setelah telah tentang tentu tentulah tentunya tertentu seterusnya tapi tetapi setiap tiap setidaknya tidak tidakkah tidaklah toh waduh wah wahai sewaktu walau walaupun wong yaitu yakni yang ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_it.txt ================================================ | From svn.tartarus.org/snowball/trunk/website/algorithms/italian/stop.txt | This file is distributed under the BSD License. | See http://snowball.tartarus.org/license.php | Also see http://www.opensource.org/licenses/bsd-license.html | - Encoding was converted to UTF-8. | - This notice was added. | An Italian stop word list. Comments begin with vertical bar. Each stop | word is at the start of a line. ad | a (to) before vowel al | a + il allo | a + lo ai | a + i agli | a + gli all | a + l' agl | a + gl' alla | a + la alle | a + le con | with col | con + il coi | con + i (forms collo, cogli etc are now very rare) da | from dal | da + il dallo | da + lo dai | da + i dagli | da + gli dall | da + l' dagl | da + gll' dalla | da + la dalle | da + le di | of del | di + il dello | di + lo dei | di + i degli | di + gli dell | di + l' degl | di + gl' della | di + la delle | di + le in | in nel | in + el nello | in + lo nei | in + i negli | in + gli nell | in + l' negl | in + gl' nella | in + la nelle | in + le su | on sul | su + il sullo | su + lo sui | su + i sugli | su + gli sull | su + l' sugl | su + gl' sulla | su + la sulle | su + le per | through, by tra | among contro | against io | I tu | thou lui | he lei | she noi | we voi | you loro | they mio | my mia | miei | mie | tuo | tua | tuoi | thy tue | suo | sua | suoi | his, her sue | nostro | our nostra | nostri | nostre | vostro | your vostra | vostri | vostre | mi | me ti | thee ci | us, there vi | you, there lo | him, the la | her, the li | them le | them, the gli | to him, the ne | from there etc il | the un | a uno | a una | a ma | but ed | and se | if perché | why, because anche | also come | how dov | where (as dov') dove | where che | who, that chi | who cui | whom non | not più | more quale | who, that quanto | how much quanti | quanta | quante | quello | that quelli | quella | quelle | questo | this questi | questa | queste | si | yes tutto | all tutti | all | single letter forms: a | at c | as c' for ce or ci e | and i | the l | as l' o | or | forms of avere, to have (not including the infinitive): ho hai ha abbiamo avete hanno abbia abbiate abbiano avrò avrai avrà avremo avrete avranno avrei avresti avrebbe avremmo avreste avrebbero avevo avevi aveva avevamo avevate avevano ebbi avesti ebbe avemmo aveste ebbero avessi avesse avessimo avessero avendo avuto avuta avuti avute | forms of essere, to be (not including the infinitive): sono sei è siamo siete sia siate siano sarò sarai sarà saremo sarete saranno sarei saresti sarebbe saremmo sareste sarebbero ero eri era eravamo eravate erano fui fosti fu fummo foste furono fossi fosse fossimo fossero essendo | forms of fare, to do (not including the infinitive, fa, fat-): faccio fai facciamo fanno faccia facciate facciano farò farai farà faremo farete faranno farei faresti farebbe faremmo fareste farebbero facevo facevi faceva facevamo facevate facevano feci facesti fece facemmo faceste fecero facessi facesse facessimo facessero facendo | forms of stare, to be (not including the infinitive): sto stai sta stiamo stanno stia stiate stiano starò starai starà staremo starete staranno starei staresti starebbe staremmo stareste starebbero stavo stavi stava stavamo stavate stavano stetti stesti stette stemmo steste stettero stessi stesse stessimo stessero stando ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_ja.txt ================================================ # # This file defines a stopword set for Japanese. # # This set is made up of hand-picked frequent terms from segmented Japanese Wikipedia. # Punctuation characters and frequent kanji have mostly been left out. See LUCENE-3745 # for frequency lists, etc. that can be useful for making your own set (if desired) # # Note that there is an overlap between these stopwords and the terms stopped when used # in combination with the JapanesePartOfSpeechStopFilter. When editing this file, note # that comments are not allowed on the same line as stopwords. # # Also note that stopping is done in a case-insensitive manner. Change your StopFilter # configuration if you need case-sensitive stopping. Lastly, note that stopping is done # using the same character width as the entries in this file. Since this StopFilter is # normally done after a CJKWidthFilter in your chain, you would usually want your romaji # entries to be in half-width and your kana entries to be in full-width. # の に は を た が で て と し れ さ ある いる も する から な こと として い や れる など なっ ない この ため その あっ よう また もの という あり まで られ なる へ か だ これ によって により おり より による ず なり られる において ば なかっ なく しかし について せ だっ その後 できる それ う ので なお のみ でき き つ における および いう さらに でも ら たり その他 に関する たち ます ん なら に対して 特に せる 及び これら とき では にて ほか ながら うち そして とともに ただし かつて それぞれ または お ほど ものの に対する ほとんど と共に といった です とも ところ ここ ##### End of file ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_lv.txt ================================================ # Set of Latvian stopwords from A Stemming Algorithm for Latvian, Karlis Kreslins # the original list of over 800 forms was refined: # pronouns, adverbs, interjections were removed # # prepositions aiz ap ar apakš ārpus augšpus bez caur dēļ gar iekš iz kopš labad lejpus līdz no otrpus pa par pār pēc pie pirms pret priekš starp šaipus uz viņpus virs virspus zem apakšpus # Conjunctions un bet jo ja ka lai tomēr tikko turpretī arī kaut gan tādēļ tā ne tikvien vien kā ir te vai kamēr # Particles ar diezin droši diemžēl nebūt ik it taču nu pat tiklab iekšpus nedz tik nevis turpretim jeb iekam iekām iekāms kolīdz līdzko tiklīdz jebšu tālab tāpēc nekā itin jā jau jel nē nezin tad tikai vis tak iekams vien # modal verbs būt biju biji bija bijām bijāt esmu esi esam esat būšu būsi būs būsim būsiet tikt tiku tiki tika tikām tikāt tieku tiec tiek tiekam tiekat tikšu tiks tiksim tiksiet tapt tapi tapāt topat tapšu tapsi taps tapsim tapsiet kļūt kļuvu kļuvi kļuva kļuvām kļuvāt kļūstu kļūsti kļūst kļūstam kļūstat kļūšu kļūsi kļūs kļūsim kļūsiet # verbs varēt varēju varējām varēšu varēsim var varēji varējāt varēsi varēsiet varat varēja varēs ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_nl.txt ================================================ | From svn.tartarus.org/snowball/trunk/website/algorithms/dutch/stop.txt | This file is distributed under the BSD License. | See http://snowball.tartarus.org/license.php | Also see http://www.opensource.org/licenses/bsd-license.html | - Encoding was converted to UTF-8. | - This notice was added. | A Dutch stop word list. Comments begin with vertical bar. Each stop | word is at the start of a line. | This is a ranked list (commonest to rarest) of stopwords derived from | a large sample of Dutch text. | Dutch stop words frequently exhibit homonym clashes. These are indicated | clearly below. de | the en | and van | of, from ik | I, the ego te | (1) chez, at etc, (2) to, (3) too dat | that, which die | that, those, who, which in | in, inside een | a, an, one hij | he het | the, it niet | not, nothing, naught zijn | (1) to be, being, (2) his, one's, its is | is was | (1) was, past tense of all persons sing. of 'zijn' (to be) (2) wax, (3) the washing, (4) rise of river op | on, upon, at, in, up, used up aan | on, upon, to (as dative) met | with, by als | like, such as, when voor | (1) before, in front of, (2) furrow had | had, past tense all persons sing. of 'hebben' (have) er | there maar | but, only om | round, about, for etc hem | him dan | then zou | should/would, past tense all persons sing. of 'zullen' of | or, whether, if wat | what, something, anything mijn | possessive and noun 'mine' men | people, 'one' dit | this zo | so, thus, in this way door | through by over | over, across ze | she, her, they, them zich | oneself bij | (1) a bee, (2) by, near, at ook | also, too tot | till, until je | you mij | me uit | out of, from der | Old Dutch form of 'van der' still found in surnames daar | (1) there, (2) because haar | (1) her, their, them, (2) hair naar | (1) unpleasant, unwell etc, (2) towards, (3) as heb | present first person sing. of 'to have' hoe | how, why heeft | present third person sing. of 'to have' hebben | 'to have' and various parts thereof deze | this u | you want | (1) for, (2) mitten, (3) rigging nog | yet, still zal | 'shall', first and third person sing. of verb 'zullen' (will) me | me zij | she, they nu | now ge | 'thou', still used in Belgium and south Netherlands geen | none omdat | because iets | something, somewhat worden | to become, grow, get toch | yet, still al | all, every, each waren | (1) 'were' (2) to wander, (3) wares, (3) veel | much, many meer | (1) more, (2) lake doen | to do, to make toen | then, when moet | noun 'spot/mote' and present form of 'to must' ben | (1) am, (2) 'are' in interrogative second person singular of 'to be' zonder | without kan | noun 'can' and present form of 'to be able' hun | their, them dus | so, consequently alles | all, everything, anything onder | under, beneath ja | yes, of course eens | once, one day hier | here wie | who werd | imperfect third person sing. of 'become' altijd | always doch | yet, but etc wordt | present third person sing. of 'become' wezen | (1) to be, (2) 'been' as in 'been fishing', (3) orphans kunnen | to be able ons | us/our zelf | self tegen | against, towards, at na | after, near reeds | already wil | (1) present tense of 'want', (2) 'will', noun, (3) fender kon | could; past tense of 'to be able' niets | nothing uw | your iemand | somebody geweest | been; past participle of 'be' andere | other ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_no.txt ================================================ | From svn.tartarus.org/snowball/trunk/website/algorithms/norwegian/stop.txt | This file is distributed under the BSD License. | See http://snowball.tartarus.org/license.php | Also see http://www.opensource.org/licenses/bsd-license.html | - Encoding was converted to UTF-8. | - This notice was added. | A Norwegian stop word list. Comments begin with vertical bar. Each stop | word is at the start of a line. | This stop word list is for the dominant bokmål dialect. Words unique | to nynorsk are marked *. | Revised by Jan Bruusgaard , Jan 2005 og | and i | in jeg | I det | it/this/that at | to (w. inf.) en | a/an et | a/an den | it/this/that til | to er | is/am/are som | who/that på | on de | they / you(formal) med | with han | he av | of ikke | not ikkje | not * der | there så | so var | was/were meg | me seg | you men | but ett | one har | have om | about vi | we min | my mitt | my ha | have hadde | had hun | she nå | now over | over da | when/as ved | by/know fra | from du | you ut | out sin | your dem | them oss | us opp | up man | you/one kan | can hans | his hvor | where eller | or hva | what skal | shall/must selv | self (reflective) sjøl | self (reflective) her | here alle | all vil | will bli | become ble | became blei | became * blitt | have become kunne | could inn | in når | when være | be kom | come noen | some noe | some ville | would dere | you som | who/which/that deres | their/theirs kun | only/just ja | yes etter | after ned | down skulle | should denne | this for | for/because deg | you si | hers/his sine | hers/his sitt | hers/his mot | against å | to meget | much hvorfor | why dette | this disse | these/those uten | without hvordan | how ingen | none din | your ditt | your blir | become samme | same hvilken | which hvilke | which (plural) sånn | such a inni | inside/within mellom | between vår | our hver | each hvem | who vors | us/ours hvis | whose både | both bare | only/just enn | than fordi | as/because før | before mange | many også | also slik | just vært | been være | to be båe | both * begge | both siden | since dykk | your * dykkar | yours * dei | they * deira | them * deires | theirs * deim | them * di | your (fem.) * då | as/when * eg | I * ein | a/an * eit | a/an * eitt | a/an * elles | or * honom | he * hjå | at * ho | she * hoe | she * henne | her hennar | her/hers hennes | hers hoss | how * hossen | how * ikkje | not * ingi | noone * inkje | noone * korleis | how * korso | how * kva | what/which * kvar | where * kvarhelst | where * kven | who/whom * kvi | why * kvifor | why * me | we * medan | while * mi | my * mine | my * mykje | much * no | now * nokon | some (masc./neut.) * noka | some (fem.) * nokor | some * noko | some * nokre | some * si | his/hers * sia | since * sidan | since * so | so * somt | some * somme | some * um | about* upp | up * vere | be * vore | was * verte | become * vort | become * varte | became * vart | became * ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_pt.txt ================================================ | From svn.tartarus.org/snowball/trunk/website/algorithms/portuguese/stop.txt | This file is distributed under the BSD License. | See http://snowball.tartarus.org/license.php | Also see http://www.opensource.org/licenses/bsd-license.html | - Encoding was converted to UTF-8. | - This notice was added. | A Portuguese stop word list. Comments begin with vertical bar. Each stop | word is at the start of a line. | The following is a ranked list (commonest to rarest) of stopwords | deriving from a large sample of text. | Extra words have been added at the end. de | of, from a | the; to, at; her o | the; him que | who, that e | and do | de + o da | de + a em | in um | a para | for | é from SER com | with não | not, no uma | a os | the; them no | em + o se | himself etc na | em + a por | for mais | more as | the; them dos | de + os como | as, like mas | but | foi from SER ao | a + o ele | he das | de + as | tem from TER à | a + a seu | his sua | her ou | or | ser from SER quando | when muito | much | há from HAV nos | em + os; us já | already, now | está from EST eu | I também | also só | only, just pelo | per + o pela | per + a até | up to isso | that ela | he entre | between | era from SER depois | after sem | without mesmo | same aos | a + os | ter from TER seus | his quem | whom nas | em + as me | me esse | that eles | they | estão from EST você | you | tinha from TER | foram from SER essa | that num | em + um nem | nor suas | her meu | my às | a + as minha | my | têm from TER numa | em + uma pelos | per + os elas | they | havia from HAV | seja from SER qual | which | será from SER nós | we | tenho from TER lhe | to him, her deles | of them essas | those esses | those pelas | per + as este | this | fosse from SER dele | of him | other words. There are many contractions such as naquele = em+aquele, | mo = me+o, but they are rare. | Indefinite article plural forms are also rare. tu | thou te | thee vocês | you (plural) vos | you lhes | to them meus | my minhas teu | thy tua teus tuas nosso | our nossa nossos nossas dela | of her delas | of them esta | this estes | these estas | these aquele | that aquela | that aqueles | those aquelas | those isto | this aquilo | that | forms of estar, to be (not including the infinitive): estou está estamos estão estive esteve estivemos estiveram estava estávamos estavam estivera estivéramos esteja estejamos estejam estivesse estivéssemos estivessem estiver estivermos estiverem | forms of haver, to have (not including the infinitive): hei há havemos hão houve houvemos houveram houvera houvéramos haja hajamos hajam houvesse houvéssemos houvessem houver houvermos houverem houverei houverá houveremos houverão houveria houveríamos houveriam | forms of ser, to be (not including the infinitive): sou somos são era éramos eram fui foi fomos foram fora fôramos seja sejamos sejam fosse fôssemos fossem for formos forem serei será seremos serão seria seríamos seriam | forms of ter, to have (not including the infinitive): tenho tem temos tém tinha tínhamos tinham tive teve tivemos tiveram tivera tivéramos tenha tenhamos tenham tivesse tivéssemos tivessem tiver tivermos tiverem terei terá teremos terão teria teríamos teriam ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_ro.txt ================================================ # This file was created by Jacques Savoy and is distributed under the BSD license. # See http://members.unine.ch/jacques.savoy/clef/index.html. # Also see http://www.opensource.org/licenses/bsd-license.html acea aceasta această aceea acei aceia acel acela acele acelea acest acesta aceste acestea aceşti aceştia acolo acum ai aia aibă aici al ăla ale alea ălea altceva altcineva am ar are aş aşadar asemenea asta ăsta astăzi astea ăstea ăştia asupra aţi au avea avem aveţi azi bine bucur bună ca că căci când care cărei căror cărui cât câte câţi către câtva ce cel ceva chiar cînd cine cineva cît cîte cîţi cîtva contra cu cum cumva curând curînd da dă dacă dar datorită de deci deja deoarece departe deşi din dinaintea dintr dintre drept după ea ei el ele eram este eşti eu face fără fi fie fiecare fii fim fiţi iar ieri îi îl îmi împotriva în înainte înaintea încât încît încotro între întrucât întrucît îţi la lângă le li lîngă lor lui mă mâine mea mei mele mereu meu mi mine mult multă mulţi ne nicăieri nici nimeni nişte noastră noastre noi noştri nostru nu ori oricând oricare oricât orice oricînd oricine oricît oricum oriunde până pe pentru peste pînă poate pot prea prima primul prin printr sa să săi sale sau său se şi sînt sîntem sînteţi spre sub sunt suntem sunteţi ta tăi tale tău te ţi ţie tine toată toate tot toţi totuşi tu un una unde undeva unei unele uneori unor vă vi voastră voastre voi voştri vostru vouă vreo vreun ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_ru.txt ================================================ | From svn.tartarus.org/snowball/trunk/website/algorithms/russian/stop.txt | This file is distributed under the BSD License. | See http://snowball.tartarus.org/license.php | Also see http://www.opensource.org/licenses/bsd-license.html | - Encoding was converted to UTF-8. | - This notice was added. | a russian stop word list. comments begin with vertical bar. each stop | word is at the start of a line. | this is a ranked list (commonest to rarest) of stopwords derived from | a large text sample. | letter `ё' is translated to `е'. и | and в | in/into во | alternative form не | not что | what/that он | he на | on/onto я | i с | from со | alternative form как | how а | milder form of `no' (but) то | conjunction and form of `that' все | all она | she так | so, thus его | him но | but да | yes/and ты | thou к | towards, by у | around, chez же | intensifier particle вы | you за | beyond, behind бы | conditional/subj. particle по | up to, along только | only ее | her мне | to me было | it was вот | here is/are, particle от | away from меня | me еще | still, yet, more нет | no, there isnt/arent о | about из | out of ему | to him теперь | now когда | when даже | even ну | so, well вдруг | suddenly ли | interrogative particle если | if уже | already, but homonym of `narrower' или | or ни | neither быть | to be был | he was него | prepositional form of его до | up to вас | you accusative нибудь | indef. suffix preceded by hyphen опять | again уж | already, but homonym of `adder' вам | to you сказал | he said ведь | particle `after all' там | there потом | then себя | oneself ничего | nothing ей | to her может | usually with `быть' as `maybe' они | they тут | here где | where есть | there is/are надо | got to, must ней | prepositional form of ей для | for мы | we тебя | thee их | them, their чем | than была | she was сам | self чтоб | in order to без | without будто | as if человек | man, person, one чего | genitive form of `what' раз | once тоже | also себе | to oneself под | beneath жизнь | life будет | will be ж | short form of intensifer particle `же' тогда | then кто | who этот | this говорил | was saying того | genitive form of `that' потому | for that reason этого | genitive form of `this' какой | which совсем | altogether ним | prepositional form of `его', `они' здесь | here этом | prepositional form of `этот' один | one почти | almost мой | my тем | instrumental/dative plural of `тот', `то' чтобы | full form of `in order that' нее | her (acc.) кажется | it seems сейчас | now были | they were куда | where to зачем | why сказать | to say всех | all (acc., gen. preposn. plural) никогда | never сегодня | today можно | possible, one can при | by наконец | finally два | two об | alternative form of `о', about другой | another хоть | even после | after над | above больше | more тот | that one (masc.) через | across, in эти | these нас | us про | about всего | in all, only, of all них | prepositional form of `они' (they) какая | which, feminine много | lots разве | interrogative particle сказала | she said три | three эту | this, acc. fem. sing. моя | my, feminine впрочем | moreover, besides хорошо | good свою | ones own, acc. fem. sing. этой | oblique form of `эта', fem. `this' перед | in front of иногда | sometimes лучше | better чуть | a little том | preposn. form of `that one' нельзя | one must not такой | such a one им | to them более | more всегда | always конечно | of course всю | acc. fem. sing of `all' между | between | b: some paradigms | | personal pronouns | | я меня мне мной [мною] | ты тебя тебе тобой [тобою] | он его ему им [него, нему, ним] | она ее эи ею [нее, нэи, нею] | оно его ему им [него, нему, ним] | | мы нас нам нами | вы вас вам вами | они их им ими [них, ним, ними] | | себя себе собой [собою] | | demonstrative pronouns: этот (this), тот (that) | | этот эта это эти | этого эты это эти | этого этой этого этих | этому этой этому этим | этим этой этим [этою] этими | этом этой этом этих | | тот та то те | того ту то те | того той того тех | тому той тому тем | тем той тем [тою] теми | том той том тех | | determinative pronouns | | (a) весь (all) | | весь вся все все | всего всю все все | всего всей всего всех | всему всей всему всем | всем всей всем [всею] всеми | всем всей всем всех | | (b) сам (himself etc) | | сам сама само сами | самого саму само самих | самого самой самого самих | самому самой самому самим | самим самой самим [самою] самими | самом самой самом самих | | stems of verbs `to be', `to have', `to do' and modal | | быть бы буд быв есть суть | име | дел | мог мож мочь | уме | хоч хот | долж | можн | нужн | нельзя ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_sv.txt ================================================ | From svn.tartarus.org/snowball/trunk/website/algorithms/swedish/stop.txt | This file is distributed under the BSD License. | See http://snowball.tartarus.org/license.php | Also see http://www.opensource.org/licenses/bsd-license.html | - Encoding was converted to UTF-8. | - This notice was added. | A Swedish stop word list. Comments begin with vertical bar. Each stop | word is at the start of a line. | This is a ranked list (commonest to rarest) of stopwords derived from | a large text sample. | Swedish stop words occasionally exhibit homonym clashes. For example | så = so, but also seed. These are indicated clearly below. och | and det | it, this/that att | to (with infinitive) i | in, at en | a jag | I hon | she som | who, that han | he på | on den | it, this/that med | with var | where, each sig | him(self) etc för | for så | so (also: seed) till | to är | is men | but ett | a om | if; around, about hade | had de | they, these/those av | of icke | not, no mig | me du | you henne | her då | then, when sin | his nu | now har | have inte | inte någon = no one hans | his honom | him skulle | 'sake' hennes | her där | there min | my man | one (pronoun) ej | nor vid | at, by, on (also: vast) kunde | could något | some etc från | from, off ut | out när | when efter | after, behind upp | up vi | we dem | them vara | be vad | what över | over än | than dig | you kan | can sina | his här | here ha | have mot | towards alla | all under | under (also: wonder) någon | some etc eller | or (else) allt | all mycket | much sedan | since ju | why denna | this/that själv | myself, yourself etc detta | this/that åt | to utan | without varit | was hur | how ingen | no mitt | my ni | you bli | to be, become blev | from bli oss | us din | thy dessa | these/those några | some etc deras | their blir | from bli mina | my samma | (the) same vilken | who, that er | you, your sådan | such a vår | our blivit | from bli dess | its inom | within mellan | between sådant | such a varför | why varje | each vilka | who, that ditt | thy vem | who vilket | who, that sitta | his sådana | such a vart | each dina | thy vars | whose vårt | our våra | our ert | your era | your vilkas | whose ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_th.txt ================================================ # Thai stopwords from: # "Opinion Detection in Thai Political News Columns # Based on Subjectivity Analysis" # Khampol Sukhum, Supot Nitsuwat, and Choochart Haruechaiyasak ไว้ ไม่ ไป ได้ ให้ ใน โดย แห่ง แล้ว และ แรก แบบ แต่ เอง เห็น เลย เริ่ม เรา เมื่อ เพื่อ เพราะ เป็นการ เป็น เปิดเผย เปิด เนื่องจาก เดียวกัน เดียว เช่น เฉพาะ เคย เข้า เขา อีก อาจ อะไร ออก อย่าง อยู่ อยาก หาก หลาย หลังจาก หลัง หรือ หนึ่ง ส่วน ส่ง สุด สําหรับ ว่า วัน ลง ร่วม ราย รับ ระหว่าง รวม ยัง มี มาก มา พร้อม พบ ผ่าน ผล บาง น่า นี้ นํา นั้น นัก นอกจาก ทุก ที่สุด ที่ ทําให้ ทํา ทาง ทั้งนี้ ทั้ง ถ้า ถูก ถึง ต้อง ต่างๆ ต่าง ต่อ ตาม ตั้งแต่ ตั้ง ด้าน ด้วย ดัง ซึ่ง ช่วง จึง จาก จัด จะ คือ ความ ครั้ง คง ขึ้น ของ ขอ ขณะ ก่อน ก็ การ กับ กัน กว่า กล่าว ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/lang/stopwords_tr.txt ================================================ # Turkish stopwords from LUCENE-559 # merged with the list from "Information Retrieval on Turkish Texts" # (http://www.users.muohio.edu/canf/papers/JASIST2008offPrint.pdf) acaba altmış altı ama ancak arada aslında ayrıca bana bazı belki ben benden beni benim beri beş bile bin bir birçok biri birkaç birkez birşey birşeyi biz bize bizden bizi bizim böyle böylece bu buna bunda bundan bunlar bunları bunların bunu bunun burada çok çünkü da daha dahi de defa değil diğer diye doksan dokuz dolayı dolayısıyla dört edecek eden ederek edilecek ediliyor edilmesi ediyor eğer elli en etmesi etti ettiği ettiğini gibi göre halen hangi hatta hem henüz hep hepsi her herhangi herkesin hiç hiçbir için iki ile ilgili ise işte itibaren itibariyle kadar karşın katrilyon kendi kendilerine kendini kendisi kendisine kendisini kez ki kim kimden kime kimi kimse kırk milyar milyon mu mü mı nasıl ne neden nedenle nerde nerede nereye niye niçin o olan olarak oldu olduğu olduğunu olduklarını olmadı olmadığı olmak olması olmayan olmaz olsa olsun olup olur olursa oluyor on ona ondan onlar onlardan onları onların onu onun otuz oysa öyle pek rağmen sadece sanki sekiz seksen sen senden seni senin siz sizden sizi sizin şey şeyden şeyi şeyler şöyle şu şuna şunda şundan şunları şunu tarafından trilyon tüm üç üzere var vardı ve veya ya yani yapacak yapılan yapılması yapıyor yapmak yaptı yaptığı yaptığını yaptıkları yedi yerine yetmiş yine yirmi yoksa yüz zaten ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/lang/userdict_ja.txt ================================================ # # This is a sample user dictionary for Kuromoji (JapaneseTokenizer) # # Add entries to this file in order to override the statistical model in terms # of segmentation, readings and part-of-speech tags. Notice that entries do # not have weights since they are always used when found. This is by-design # in order to maximize ease-of-use. # # Entries are defined using the following CSV format: # , ... , ... , # # Notice that a single half-width space separates tokens and readings, and # that the number tokens and readings must match exactly. # # Also notice that multiple entries with the same is undefined. # # Whitespace only lines are ignored. Comments are not allowed on entry lines. # # Custom segmentation for kanji compounds 日本経済新聞,日本 経済 新聞,ニホン ケイザイ シンブン,カスタム名詞 関西国際空港,関西 国際 空港,カンサイ コクサイ クウコウ,カスタム名詞 # Custom segmentation for compound katakana トートバッグ,トート バッグ,トート バッグ,かずカナ名詞 ショルダーバッグ,ショルダー バッグ,ショルダー バッグ,かずカナ名詞 # Custom reading for former sumo wrestler 朝青龍,朝青龍,アサショウリュウ,カスタム人名 ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/mapping-FoldToASCII.txt ================================================ # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # This map converts alphabetic, numeric, and symbolic Unicode characters # which are not in the first 127 ASCII characters (the "Basic Latin" Unicode # block) into their ASCII equivalents, if one exists. # # Characters from the following Unicode blocks are converted; however, only # those characters with reasonable ASCII alternatives are converted: # # - C1 Controls and Latin-1 Supplement: http://www.unicode.org/charts/PDF/U0080.pdf # - Latin Extended-A: http://www.unicode.org/charts/PDF/U0100.pdf # - Latin Extended-B: http://www.unicode.org/charts/PDF/U0180.pdf # - Latin Extended Additional: http://www.unicode.org/charts/PDF/U1E00.pdf # - Latin Extended-C: http://www.unicode.org/charts/PDF/U2C60.pdf # - Latin Extended-D: http://www.unicode.org/charts/PDF/UA720.pdf # - IPA Extensions: http://www.unicode.org/charts/PDF/U0250.pdf # - Phonetic Extensions: http://www.unicode.org/charts/PDF/U1D00.pdf # - Phonetic Extensions Supplement: http://www.unicode.org/charts/PDF/U1D80.pdf # - General Punctuation: http://www.unicode.org/charts/PDF/U2000.pdf # - Superscripts and Subscripts: http://www.unicode.org/charts/PDF/U2070.pdf # - Enclosed Alphanumerics: http://www.unicode.org/charts/PDF/U2460.pdf # - Dingbats: http://www.unicode.org/charts/PDF/U2700.pdf # - Supplemental Punctuation: http://www.unicode.org/charts/PDF/U2E00.pdf # - Alphabetic Presentation Forms: http://www.unicode.org/charts/PDF/UFB00.pdf # - Halfwidth and Fullwidth Forms: http://www.unicode.org/charts/PDF/UFF00.pdf # # See: http://en.wikipedia.org/wiki/Latin_characters_in_Unicode # # The set of character conversions supported by this map is a superset of # those supported by the map represented by mapping-ISOLatin1Accent.txt. # # See the bottom of this file for the Perl script used to generate the contents # of this file (without this header) from ASCIIFoldingFilter.java. # Syntax: # "source" => "target" # "source".length() > 0 (source cannot be empty.) # "target".length() >= 0 (target can be empty.) # À [LATIN CAPITAL LETTER A WITH GRAVE] "\u00C0" => "A" # Á [LATIN CAPITAL LETTER A WITH ACUTE] "\u00C1" => "A" #  [LATIN CAPITAL LETTER A WITH CIRCUMFLEX] "\u00C2" => "A" # à [LATIN CAPITAL LETTER A WITH TILDE] "\u00C3" => "A" # Ä [LATIN CAPITAL LETTER A WITH DIAERESIS] "\u00C4" => "A" # Å [LATIN CAPITAL LETTER A WITH RING ABOVE] "\u00C5" => "A" # Ā [LATIN CAPITAL LETTER A WITH MACRON] "\u0100" => "A" # Ă [LATIN CAPITAL LETTER A WITH BREVE] "\u0102" => "A" # Ą [LATIN CAPITAL LETTER A WITH OGONEK] "\u0104" => "A" # Ə http://en.wikipedia.org/wiki/Schwa [LATIN CAPITAL LETTER SCHWA] "\u018F" => "A" # Ǎ [LATIN CAPITAL LETTER A WITH CARON] "\u01CD" => "A" # Ǟ [LATIN CAPITAL LETTER A WITH DIAERESIS AND MACRON] "\u01DE" => "A" # Ǡ [LATIN CAPITAL LETTER A WITH DOT ABOVE AND MACRON] "\u01E0" => "A" # Ǻ [LATIN CAPITAL LETTER A WITH RING ABOVE AND ACUTE] "\u01FA" => "A" # Ȁ [LATIN CAPITAL LETTER A WITH DOUBLE GRAVE] "\u0200" => "A" # Ȃ [LATIN CAPITAL LETTER A WITH INVERTED BREVE] "\u0202" => "A" # Ȧ [LATIN CAPITAL LETTER A WITH DOT ABOVE] "\u0226" => "A" # Ⱥ [LATIN CAPITAL LETTER A WITH STROKE] "\u023A" => "A" # ᴀ [LATIN LETTER SMALL CAPITAL A] "\u1D00" => "A" # Ḁ [LATIN CAPITAL LETTER A WITH RING BELOW] "\u1E00" => "A" # Ạ [LATIN CAPITAL LETTER A WITH DOT BELOW] "\u1EA0" => "A" # Ả [LATIN CAPITAL LETTER A WITH HOOK ABOVE] "\u1EA2" => "A" # Ấ [LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND ACUTE] "\u1EA4" => "A" # Ầ [LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND GRAVE] "\u1EA6" => "A" # Ẩ [LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND HOOK ABOVE] "\u1EA8" => "A" # Ẫ [LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND TILDE] "\u1EAA" => "A" # Ậ [LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND DOT BELOW] "\u1EAC" => "A" # Ắ [LATIN CAPITAL LETTER A WITH BREVE AND ACUTE] "\u1EAE" => "A" # Ằ [LATIN CAPITAL LETTER A WITH BREVE AND GRAVE] "\u1EB0" => "A" # Ẳ [LATIN CAPITAL LETTER A WITH BREVE AND HOOK ABOVE] "\u1EB2" => "A" # Ẵ [LATIN CAPITAL LETTER A WITH BREVE AND TILDE] "\u1EB4" => "A" # Ặ [LATIN CAPITAL LETTER A WITH BREVE AND DOT BELOW] "\u1EB6" => "A" # Ⓐ [CIRCLED LATIN CAPITAL LETTER A] "\u24B6" => "A" # A [FULLWIDTH LATIN CAPITAL LETTER A] "\uFF21" => "A" # à [LATIN SMALL LETTER A WITH GRAVE] "\u00E0" => "a" # á [LATIN SMALL LETTER A WITH ACUTE] "\u00E1" => "a" # â [LATIN SMALL LETTER A WITH CIRCUMFLEX] "\u00E2" => "a" # ã [LATIN SMALL LETTER A WITH TILDE] "\u00E3" => "a" # ä [LATIN SMALL LETTER A WITH DIAERESIS] "\u00E4" => "a" # å [LATIN SMALL LETTER A WITH RING ABOVE] "\u00E5" => "a" # ā [LATIN SMALL LETTER A WITH MACRON] "\u0101" => "a" # ă [LATIN SMALL LETTER A WITH BREVE] "\u0103" => "a" # ą [LATIN SMALL LETTER A WITH OGONEK] "\u0105" => "a" # ǎ [LATIN SMALL LETTER A WITH CARON] "\u01CE" => "a" # ǟ [LATIN SMALL LETTER A WITH DIAERESIS AND MACRON] "\u01DF" => "a" # ǡ [LATIN SMALL LETTER A WITH DOT ABOVE AND MACRON] "\u01E1" => "a" # ǻ [LATIN SMALL LETTER A WITH RING ABOVE AND ACUTE] "\u01FB" => "a" # ȁ [LATIN SMALL LETTER A WITH DOUBLE GRAVE] "\u0201" => "a" # ȃ [LATIN SMALL LETTER A WITH INVERTED BREVE] "\u0203" => "a" # ȧ [LATIN SMALL LETTER A WITH DOT ABOVE] "\u0227" => "a" # ɐ [LATIN SMALL LETTER TURNED A] "\u0250" => "a" # ə [LATIN SMALL LETTER SCHWA] "\u0259" => "a" # ɚ [LATIN SMALL LETTER SCHWA WITH HOOK] "\u025A" => "a" # ᶏ [LATIN SMALL LETTER A WITH RETROFLEX HOOK] "\u1D8F" => "a" # ᶕ [LATIN SMALL LETTER SCHWA WITH RETROFLEX HOOK] "\u1D95" => "a" # ạ [LATIN SMALL LETTER A WITH RING BELOW] "\u1E01" => "a" # ả [LATIN SMALL LETTER A WITH RIGHT HALF RING] "\u1E9A" => "a" # ạ [LATIN SMALL LETTER A WITH DOT BELOW] "\u1EA1" => "a" # ả [LATIN SMALL LETTER A WITH HOOK ABOVE] "\u1EA3" => "a" # ấ [LATIN SMALL LETTER A WITH CIRCUMFLEX AND ACUTE] "\u1EA5" => "a" # ầ [LATIN SMALL LETTER A WITH CIRCUMFLEX AND GRAVE] "\u1EA7" => "a" # ẩ [LATIN SMALL LETTER A WITH CIRCUMFLEX AND HOOK ABOVE] "\u1EA9" => "a" # ẫ [LATIN SMALL LETTER A WITH CIRCUMFLEX AND TILDE] "\u1EAB" => "a" # ậ [LATIN SMALL LETTER A WITH CIRCUMFLEX AND DOT BELOW] "\u1EAD" => "a" # ắ [LATIN SMALL LETTER A WITH BREVE AND ACUTE] "\u1EAF" => "a" # ằ [LATIN SMALL LETTER A WITH BREVE AND GRAVE] "\u1EB1" => "a" # ẳ [LATIN SMALL LETTER A WITH BREVE AND HOOK ABOVE] "\u1EB3" => "a" # ẵ [LATIN SMALL LETTER A WITH BREVE AND TILDE] "\u1EB5" => "a" # ặ [LATIN SMALL LETTER A WITH BREVE AND DOT BELOW] "\u1EB7" => "a" # ₐ [LATIN SUBSCRIPT SMALL LETTER A] "\u2090" => "a" # ₔ [LATIN SUBSCRIPT SMALL LETTER SCHWA] "\u2094" => "a" # ⓐ [CIRCLED LATIN SMALL LETTER A] "\u24D0" => "a" # ⱥ [LATIN SMALL LETTER A WITH STROKE] "\u2C65" => "a" # Ɐ [LATIN CAPITAL LETTER TURNED A] "\u2C6F" => "a" # a [FULLWIDTH LATIN SMALL LETTER A] "\uFF41" => "a" # Ꜳ [LATIN CAPITAL LETTER AA] "\uA732" => "AA" # Æ [LATIN CAPITAL LETTER AE] "\u00C6" => "AE" # Ǣ [LATIN CAPITAL LETTER AE WITH MACRON] "\u01E2" => "AE" # Ǽ [LATIN CAPITAL LETTER AE WITH ACUTE] "\u01FC" => "AE" # ᴁ [LATIN LETTER SMALL CAPITAL AE] "\u1D01" => "AE" # Ꜵ [LATIN CAPITAL LETTER AO] "\uA734" => "AO" # Ꜷ [LATIN CAPITAL LETTER AU] "\uA736" => "AU" # Ꜹ [LATIN CAPITAL LETTER AV] "\uA738" => "AV" # Ꜻ [LATIN CAPITAL LETTER AV WITH HORIZONTAL BAR] "\uA73A" => "AV" # Ꜽ [LATIN CAPITAL LETTER AY] "\uA73C" => "AY" # ⒜ [PARENTHESIZED LATIN SMALL LETTER A] "\u249C" => "(a)" # ꜳ [LATIN SMALL LETTER AA] "\uA733" => "aa" # æ [LATIN SMALL LETTER AE] "\u00E6" => "ae" # ǣ [LATIN SMALL LETTER AE WITH MACRON] "\u01E3" => "ae" # ǽ [LATIN SMALL LETTER AE WITH ACUTE] "\u01FD" => "ae" # ᴂ [LATIN SMALL LETTER TURNED AE] "\u1D02" => "ae" # ꜵ [LATIN SMALL LETTER AO] "\uA735" => "ao" # ꜷ [LATIN SMALL LETTER AU] "\uA737" => "au" # ꜹ [LATIN SMALL LETTER AV] "\uA739" => "av" # ꜻ [LATIN SMALL LETTER AV WITH HORIZONTAL BAR] "\uA73B" => "av" # ꜽ [LATIN SMALL LETTER AY] "\uA73D" => "ay" # Ɓ [LATIN CAPITAL LETTER B WITH HOOK] "\u0181" => "B" # Ƃ [LATIN CAPITAL LETTER B WITH TOPBAR] "\u0182" => "B" # Ƀ [LATIN CAPITAL LETTER B WITH STROKE] "\u0243" => "B" # ʙ [LATIN LETTER SMALL CAPITAL B] "\u0299" => "B" # ᴃ [LATIN LETTER SMALL CAPITAL BARRED B] "\u1D03" => "B" # Ḃ [LATIN CAPITAL LETTER B WITH DOT ABOVE] "\u1E02" => "B" # Ḅ [LATIN CAPITAL LETTER B WITH DOT BELOW] "\u1E04" => "B" # Ḇ [LATIN CAPITAL LETTER B WITH LINE BELOW] "\u1E06" => "B" # Ⓑ [CIRCLED LATIN CAPITAL LETTER B] "\u24B7" => "B" # B [FULLWIDTH LATIN CAPITAL LETTER B] "\uFF22" => "B" # ƀ [LATIN SMALL LETTER B WITH STROKE] "\u0180" => "b" # ƃ [LATIN SMALL LETTER B WITH TOPBAR] "\u0183" => "b" # ɓ [LATIN SMALL LETTER B WITH HOOK] "\u0253" => "b" # ᵬ [LATIN SMALL LETTER B WITH MIDDLE TILDE] "\u1D6C" => "b" # ᶀ [LATIN SMALL LETTER B WITH PALATAL HOOK] "\u1D80" => "b" # ḃ [LATIN SMALL LETTER B WITH DOT ABOVE] "\u1E03" => "b" # ḅ [LATIN SMALL LETTER B WITH DOT BELOW] "\u1E05" => "b" # ḇ [LATIN SMALL LETTER B WITH LINE BELOW] "\u1E07" => "b" # ⓑ [CIRCLED LATIN SMALL LETTER B] "\u24D1" => "b" # b [FULLWIDTH LATIN SMALL LETTER B] "\uFF42" => "b" # ⒝ [PARENTHESIZED LATIN SMALL LETTER B] "\u249D" => "(b)" # Ç [LATIN CAPITAL LETTER C WITH CEDILLA] "\u00C7" => "C" # Ć [LATIN CAPITAL LETTER C WITH ACUTE] "\u0106" => "C" # Ĉ [LATIN CAPITAL LETTER C WITH CIRCUMFLEX] "\u0108" => "C" # Ċ [LATIN CAPITAL LETTER C WITH DOT ABOVE] "\u010A" => "C" # Č [LATIN CAPITAL LETTER C WITH CARON] "\u010C" => "C" # Ƈ [LATIN CAPITAL LETTER C WITH HOOK] "\u0187" => "C" # Ȼ [LATIN CAPITAL LETTER C WITH STROKE] "\u023B" => "C" # ʗ [LATIN LETTER STRETCHED C] "\u0297" => "C" # ᴄ [LATIN LETTER SMALL CAPITAL C] "\u1D04" => "C" # Ḉ [LATIN CAPITAL LETTER C WITH CEDILLA AND ACUTE] "\u1E08" => "C" # Ⓒ [CIRCLED LATIN CAPITAL LETTER C] "\u24B8" => "C" # C [FULLWIDTH LATIN CAPITAL LETTER C] "\uFF23" => "C" # ç [LATIN SMALL LETTER C WITH CEDILLA] "\u00E7" => "c" # ć [LATIN SMALL LETTER C WITH ACUTE] "\u0107" => "c" # ĉ [LATIN SMALL LETTER C WITH CIRCUMFLEX] "\u0109" => "c" # ċ [LATIN SMALL LETTER C WITH DOT ABOVE] "\u010B" => "c" # č [LATIN SMALL LETTER C WITH CARON] "\u010D" => "c" # ƈ [LATIN SMALL LETTER C WITH HOOK] "\u0188" => "c" # ȼ [LATIN SMALL LETTER C WITH STROKE] "\u023C" => "c" # ɕ [LATIN SMALL LETTER C WITH CURL] "\u0255" => "c" # ḉ [LATIN SMALL LETTER C WITH CEDILLA AND ACUTE] "\u1E09" => "c" # ↄ [LATIN SMALL LETTER REVERSED C] "\u2184" => "c" # ⓒ [CIRCLED LATIN SMALL LETTER C] "\u24D2" => "c" # Ꜿ [LATIN CAPITAL LETTER REVERSED C WITH DOT] "\uA73E" => "c" # ꜿ [LATIN SMALL LETTER REVERSED C WITH DOT] "\uA73F" => "c" # c [FULLWIDTH LATIN SMALL LETTER C] "\uFF43" => "c" # ⒞ [PARENTHESIZED LATIN SMALL LETTER C] "\u249E" => "(c)" # Ð [LATIN CAPITAL LETTER ETH] "\u00D0" => "D" # Ď [LATIN CAPITAL LETTER D WITH CARON] "\u010E" => "D" # Đ [LATIN CAPITAL LETTER D WITH STROKE] "\u0110" => "D" # Ɖ [LATIN CAPITAL LETTER AFRICAN D] "\u0189" => "D" # Ɗ [LATIN CAPITAL LETTER D WITH HOOK] "\u018A" => "D" # Ƌ [LATIN CAPITAL LETTER D WITH TOPBAR] "\u018B" => "D" # ᴅ [LATIN LETTER SMALL CAPITAL D] "\u1D05" => "D" # ᴆ [LATIN LETTER SMALL CAPITAL ETH] "\u1D06" => "D" # Ḋ [LATIN CAPITAL LETTER D WITH DOT ABOVE] "\u1E0A" => "D" # Ḍ [LATIN CAPITAL LETTER D WITH DOT BELOW] "\u1E0C" => "D" # Ḏ [LATIN CAPITAL LETTER D WITH LINE BELOW] "\u1E0E" => "D" # Ḑ [LATIN CAPITAL LETTER D WITH CEDILLA] "\u1E10" => "D" # Ḓ [LATIN CAPITAL LETTER D WITH CIRCUMFLEX BELOW] "\u1E12" => "D" # Ⓓ [CIRCLED LATIN CAPITAL LETTER D] "\u24B9" => "D" # Ꝺ [LATIN CAPITAL LETTER INSULAR D] "\uA779" => "D" # D [FULLWIDTH LATIN CAPITAL LETTER D] "\uFF24" => "D" # ð [LATIN SMALL LETTER ETH] "\u00F0" => "d" # ď [LATIN SMALL LETTER D WITH CARON] "\u010F" => "d" # đ [LATIN SMALL LETTER D WITH STROKE] "\u0111" => "d" # ƌ [LATIN SMALL LETTER D WITH TOPBAR] "\u018C" => "d" # ȡ [LATIN SMALL LETTER D WITH CURL] "\u0221" => "d" # ɖ [LATIN SMALL LETTER D WITH TAIL] "\u0256" => "d" # ɗ [LATIN SMALL LETTER D WITH HOOK] "\u0257" => "d" # ᵭ [LATIN SMALL LETTER D WITH MIDDLE TILDE] "\u1D6D" => "d" # ᶁ [LATIN SMALL LETTER D WITH PALATAL HOOK] "\u1D81" => "d" # ᶑ [LATIN SMALL LETTER D WITH HOOK AND TAIL] "\u1D91" => "d" # ḋ [LATIN SMALL LETTER D WITH DOT ABOVE] "\u1E0B" => "d" # ḍ [LATIN SMALL LETTER D WITH DOT BELOW] "\u1E0D" => "d" # ḏ [LATIN SMALL LETTER D WITH LINE BELOW] "\u1E0F" => "d" # ḑ [LATIN SMALL LETTER D WITH CEDILLA] "\u1E11" => "d" # ḓ [LATIN SMALL LETTER D WITH CIRCUMFLEX BELOW] "\u1E13" => "d" # ⓓ [CIRCLED LATIN SMALL LETTER D] "\u24D3" => "d" # ꝺ [LATIN SMALL LETTER INSULAR D] "\uA77A" => "d" # d [FULLWIDTH LATIN SMALL LETTER D] "\uFF44" => "d" # DŽ [LATIN CAPITAL LETTER DZ WITH CARON] "\u01C4" => "DZ" # DZ [LATIN CAPITAL LETTER DZ] "\u01F1" => "DZ" # Dž [LATIN CAPITAL LETTER D WITH SMALL LETTER Z WITH CARON] "\u01C5" => "Dz" # Dz [LATIN CAPITAL LETTER D WITH SMALL LETTER Z] "\u01F2" => "Dz" # ⒟ [PARENTHESIZED LATIN SMALL LETTER D] "\u249F" => "(d)" # ȸ [LATIN SMALL LETTER DB DIGRAPH] "\u0238" => "db" # dž [LATIN SMALL LETTER DZ WITH CARON] "\u01C6" => "dz" # dz [LATIN SMALL LETTER DZ] "\u01F3" => "dz" # ʣ [LATIN SMALL LETTER DZ DIGRAPH] "\u02A3" => "dz" # ʥ [LATIN SMALL LETTER DZ DIGRAPH WITH CURL] "\u02A5" => "dz" # È [LATIN CAPITAL LETTER E WITH GRAVE] "\u00C8" => "E" # É [LATIN CAPITAL LETTER E WITH ACUTE] "\u00C9" => "E" # Ê [LATIN CAPITAL LETTER E WITH CIRCUMFLEX] "\u00CA" => "E" # Ë [LATIN CAPITAL LETTER E WITH DIAERESIS] "\u00CB" => "E" # Ē [LATIN CAPITAL LETTER E WITH MACRON] "\u0112" => "E" # Ĕ [LATIN CAPITAL LETTER E WITH BREVE] "\u0114" => "E" # Ė [LATIN CAPITAL LETTER E WITH DOT ABOVE] "\u0116" => "E" # Ę [LATIN CAPITAL LETTER E WITH OGONEK] "\u0118" => "E" # Ě [LATIN CAPITAL LETTER E WITH CARON] "\u011A" => "E" # Ǝ [LATIN CAPITAL LETTER REVERSED E] "\u018E" => "E" # Ɛ [LATIN CAPITAL LETTER OPEN E] "\u0190" => "E" # Ȅ [LATIN CAPITAL LETTER E WITH DOUBLE GRAVE] "\u0204" => "E" # Ȇ [LATIN CAPITAL LETTER E WITH INVERTED BREVE] "\u0206" => "E" # Ȩ [LATIN CAPITAL LETTER E WITH CEDILLA] "\u0228" => "E" # Ɇ [LATIN CAPITAL LETTER E WITH STROKE] "\u0246" => "E" # ᴇ [LATIN LETTER SMALL CAPITAL E] "\u1D07" => "E" # Ḕ [LATIN CAPITAL LETTER E WITH MACRON AND GRAVE] "\u1E14" => "E" # Ḗ [LATIN CAPITAL LETTER E WITH MACRON AND ACUTE] "\u1E16" => "E" # Ḙ [LATIN CAPITAL LETTER E WITH CIRCUMFLEX BELOW] "\u1E18" => "E" # Ḛ [LATIN CAPITAL LETTER E WITH TILDE BELOW] "\u1E1A" => "E" # Ḝ [LATIN CAPITAL LETTER E WITH CEDILLA AND BREVE] "\u1E1C" => "E" # Ẹ [LATIN CAPITAL LETTER E WITH DOT BELOW] "\u1EB8" => "E" # Ẻ [LATIN CAPITAL LETTER E WITH HOOK ABOVE] "\u1EBA" => "E" # Ẽ [LATIN CAPITAL LETTER E WITH TILDE] "\u1EBC" => "E" # Ế [LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND ACUTE] "\u1EBE" => "E" # Ề [LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND GRAVE] "\u1EC0" => "E" # Ể [LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND HOOK ABOVE] "\u1EC2" => "E" # Ễ [LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND TILDE] "\u1EC4" => "E" # Ệ [LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND DOT BELOW] "\u1EC6" => "E" # Ⓔ [CIRCLED LATIN CAPITAL LETTER E] "\u24BA" => "E" # ⱻ [LATIN LETTER SMALL CAPITAL TURNED E] "\u2C7B" => "E" # E [FULLWIDTH LATIN CAPITAL LETTER E] "\uFF25" => "E" # è [LATIN SMALL LETTER E WITH GRAVE] "\u00E8" => "e" # é [LATIN SMALL LETTER E WITH ACUTE] "\u00E9" => "e" # ê [LATIN SMALL LETTER E WITH CIRCUMFLEX] "\u00EA" => "e" # ë [LATIN SMALL LETTER E WITH DIAERESIS] "\u00EB" => "e" # ē [LATIN SMALL LETTER E WITH MACRON] "\u0113" => "e" # ĕ [LATIN SMALL LETTER E WITH BREVE] "\u0115" => "e" # ė [LATIN SMALL LETTER E WITH DOT ABOVE] "\u0117" => "e" # ę [LATIN SMALL LETTER E WITH OGONEK] "\u0119" => "e" # ě [LATIN SMALL LETTER E WITH CARON] "\u011B" => "e" # ǝ [LATIN SMALL LETTER TURNED E] "\u01DD" => "e" # ȅ [LATIN SMALL LETTER E WITH DOUBLE GRAVE] "\u0205" => "e" # ȇ [LATIN SMALL LETTER E WITH INVERTED BREVE] "\u0207" => "e" # ȩ [LATIN SMALL LETTER E WITH CEDILLA] "\u0229" => "e" # ɇ [LATIN SMALL LETTER E WITH STROKE] "\u0247" => "e" # ɘ [LATIN SMALL LETTER REVERSED E] "\u0258" => "e" # ɛ [LATIN SMALL LETTER OPEN E] "\u025B" => "e" # ɜ [LATIN SMALL LETTER REVERSED OPEN E] "\u025C" => "e" # ɝ [LATIN SMALL LETTER REVERSED OPEN E WITH HOOK] "\u025D" => "e" # ɞ [LATIN SMALL LETTER CLOSED REVERSED OPEN E] "\u025E" => "e" # ʚ [LATIN SMALL LETTER CLOSED OPEN E] "\u029A" => "e" # ᴈ [LATIN SMALL LETTER TURNED OPEN E] "\u1D08" => "e" # ᶒ [LATIN SMALL LETTER E WITH RETROFLEX HOOK] "\u1D92" => "e" # ᶓ [LATIN SMALL LETTER OPEN E WITH RETROFLEX HOOK] "\u1D93" => "e" # ᶔ [LATIN SMALL LETTER REVERSED OPEN E WITH RETROFLEX HOOK] "\u1D94" => "e" # ḕ [LATIN SMALL LETTER E WITH MACRON AND GRAVE] "\u1E15" => "e" # ḗ [LATIN SMALL LETTER E WITH MACRON AND ACUTE] "\u1E17" => "e" # ḙ [LATIN SMALL LETTER E WITH CIRCUMFLEX BELOW] "\u1E19" => "e" # ḛ [LATIN SMALL LETTER E WITH TILDE BELOW] "\u1E1B" => "e" # ḝ [LATIN SMALL LETTER E WITH CEDILLA AND BREVE] "\u1E1D" => "e" # ẹ [LATIN SMALL LETTER E WITH DOT BELOW] "\u1EB9" => "e" # ẻ [LATIN SMALL LETTER E WITH HOOK ABOVE] "\u1EBB" => "e" # ẽ [LATIN SMALL LETTER E WITH TILDE] "\u1EBD" => "e" # ế [LATIN SMALL LETTER E WITH CIRCUMFLEX AND ACUTE] "\u1EBF" => "e" # ề [LATIN SMALL LETTER E WITH CIRCUMFLEX AND GRAVE] "\u1EC1" => "e" # ể [LATIN SMALL LETTER E WITH CIRCUMFLEX AND HOOK ABOVE] "\u1EC3" => "e" # ễ [LATIN SMALL LETTER E WITH CIRCUMFLEX AND TILDE] "\u1EC5" => "e" # ệ [LATIN SMALL LETTER E WITH CIRCUMFLEX AND DOT BELOW] "\u1EC7" => "e" # ₑ [LATIN SUBSCRIPT SMALL LETTER E] "\u2091" => "e" # ⓔ [CIRCLED LATIN SMALL LETTER E] "\u24D4" => "e" # ⱸ [LATIN SMALL LETTER E WITH NOTCH] "\u2C78" => "e" # e [FULLWIDTH LATIN SMALL LETTER E] "\uFF45" => "e" # ⒠ [PARENTHESIZED LATIN SMALL LETTER E] "\u24A0" => "(e)" # Ƒ [LATIN CAPITAL LETTER F WITH HOOK] "\u0191" => "F" # Ḟ [LATIN CAPITAL LETTER F WITH DOT ABOVE] "\u1E1E" => "F" # Ⓕ [CIRCLED LATIN CAPITAL LETTER F] "\u24BB" => "F" # ꜰ [LATIN LETTER SMALL CAPITAL F] "\uA730" => "F" # Ꝼ [LATIN CAPITAL LETTER INSULAR F] "\uA77B" => "F" # ꟻ [LATIN EPIGRAPHIC LETTER REVERSED F] "\uA7FB" => "F" # F [FULLWIDTH LATIN CAPITAL LETTER F] "\uFF26" => "F" # ƒ [LATIN SMALL LETTER F WITH HOOK] "\u0192" => "f" # ᵮ [LATIN SMALL LETTER F WITH MIDDLE TILDE] "\u1D6E" => "f" # ᶂ [LATIN SMALL LETTER F WITH PALATAL HOOK] "\u1D82" => "f" # ḟ [LATIN SMALL LETTER F WITH DOT ABOVE] "\u1E1F" => "f" # ẛ [LATIN SMALL LETTER LONG S WITH DOT ABOVE] "\u1E9B" => "f" # ⓕ [CIRCLED LATIN SMALL LETTER F] "\u24D5" => "f" # ꝼ [LATIN SMALL LETTER INSULAR F] "\uA77C" => "f" # f [FULLWIDTH LATIN SMALL LETTER F] "\uFF46" => "f" # ⒡ [PARENTHESIZED LATIN SMALL LETTER F] "\u24A1" => "(f)" # ff [LATIN SMALL LIGATURE FF] "\uFB00" => "ff" # ffi [LATIN SMALL LIGATURE FFI] "\uFB03" => "ffi" # ffl [LATIN SMALL LIGATURE FFL] "\uFB04" => "ffl" # fi [LATIN SMALL LIGATURE FI] "\uFB01" => "fi" # fl [LATIN SMALL LIGATURE FL] "\uFB02" => "fl" # Ĝ [LATIN CAPITAL LETTER G WITH CIRCUMFLEX] "\u011C" => "G" # Ğ [LATIN CAPITAL LETTER G WITH BREVE] "\u011E" => "G" # Ġ [LATIN CAPITAL LETTER G WITH DOT ABOVE] "\u0120" => "G" # Ģ [LATIN CAPITAL LETTER G WITH CEDILLA] "\u0122" => "G" # Ɠ [LATIN CAPITAL LETTER G WITH HOOK] "\u0193" => "G" # Ǥ [LATIN CAPITAL LETTER G WITH STROKE] "\u01E4" => "G" # ǥ [LATIN SMALL LETTER G WITH STROKE] "\u01E5" => "G" # Ǧ [LATIN CAPITAL LETTER G WITH CARON] "\u01E6" => "G" # ǧ [LATIN SMALL LETTER G WITH CARON] "\u01E7" => "G" # Ǵ [LATIN CAPITAL LETTER G WITH ACUTE] "\u01F4" => "G" # ɢ [LATIN LETTER SMALL CAPITAL G] "\u0262" => "G" # ʛ [LATIN LETTER SMALL CAPITAL G WITH HOOK] "\u029B" => "G" # Ḡ [LATIN CAPITAL LETTER G WITH MACRON] "\u1E20" => "G" # Ⓖ [CIRCLED LATIN CAPITAL LETTER G] "\u24BC" => "G" # Ᵹ [LATIN CAPITAL LETTER INSULAR G] "\uA77D" => "G" # Ꝿ [LATIN CAPITAL LETTER TURNED INSULAR G] "\uA77E" => "G" # G [FULLWIDTH LATIN CAPITAL LETTER G] "\uFF27" => "G" # ĝ [LATIN SMALL LETTER G WITH CIRCUMFLEX] "\u011D" => "g" # ğ [LATIN SMALL LETTER G WITH BREVE] "\u011F" => "g" # ġ [LATIN SMALL LETTER G WITH DOT ABOVE] "\u0121" => "g" # ģ [LATIN SMALL LETTER G WITH CEDILLA] "\u0123" => "g" # ǵ [LATIN SMALL LETTER G WITH ACUTE] "\u01F5" => "g" # ɠ [LATIN SMALL LETTER G WITH HOOK] "\u0260" => "g" # ɡ [LATIN SMALL LETTER SCRIPT G] "\u0261" => "g" # ᵷ [LATIN SMALL LETTER TURNED G] "\u1D77" => "g" # ᵹ [LATIN SMALL LETTER INSULAR G] "\u1D79" => "g" # ᶃ [LATIN SMALL LETTER G WITH PALATAL HOOK] "\u1D83" => "g" # ḡ [LATIN SMALL LETTER G WITH MACRON] "\u1E21" => "g" # ⓖ [CIRCLED LATIN SMALL LETTER G] "\u24D6" => "g" # ꝿ [LATIN SMALL LETTER TURNED INSULAR G] "\uA77F" => "g" # g [FULLWIDTH LATIN SMALL LETTER G] "\uFF47" => "g" # ⒢ [PARENTHESIZED LATIN SMALL LETTER G] "\u24A2" => "(g)" # Ĥ [LATIN CAPITAL LETTER H WITH CIRCUMFLEX] "\u0124" => "H" # Ħ [LATIN CAPITAL LETTER H WITH STROKE] "\u0126" => "H" # Ȟ [LATIN CAPITAL LETTER H WITH CARON] "\u021E" => "H" # ʜ [LATIN LETTER SMALL CAPITAL H] "\u029C" => "H" # Ḣ [LATIN CAPITAL LETTER H WITH DOT ABOVE] "\u1E22" => "H" # Ḥ [LATIN CAPITAL LETTER H WITH DOT BELOW] "\u1E24" => "H" # Ḧ [LATIN CAPITAL LETTER H WITH DIAERESIS] "\u1E26" => "H" # Ḩ [LATIN CAPITAL LETTER H WITH CEDILLA] "\u1E28" => "H" # Ḫ [LATIN CAPITAL LETTER H WITH BREVE BELOW] "\u1E2A" => "H" # Ⓗ [CIRCLED LATIN CAPITAL LETTER H] "\u24BD" => "H" # Ⱨ [LATIN CAPITAL LETTER H WITH DESCENDER] "\u2C67" => "H" # Ⱶ [LATIN CAPITAL LETTER HALF H] "\u2C75" => "H" # H [FULLWIDTH LATIN CAPITAL LETTER H] "\uFF28" => "H" # ĥ [LATIN SMALL LETTER H WITH CIRCUMFLEX] "\u0125" => "h" # ħ [LATIN SMALL LETTER H WITH STROKE] "\u0127" => "h" # ȟ [LATIN SMALL LETTER H WITH CARON] "\u021F" => "h" # ɥ [LATIN SMALL LETTER TURNED H] "\u0265" => "h" # ɦ [LATIN SMALL LETTER H WITH HOOK] "\u0266" => "h" # ʮ [LATIN SMALL LETTER TURNED H WITH FISHHOOK] "\u02AE" => "h" # ʯ [LATIN SMALL LETTER TURNED H WITH FISHHOOK AND TAIL] "\u02AF" => "h" # ḣ [LATIN SMALL LETTER H WITH DOT ABOVE] "\u1E23" => "h" # ḥ [LATIN SMALL LETTER H WITH DOT BELOW] "\u1E25" => "h" # ḧ [LATIN SMALL LETTER H WITH DIAERESIS] "\u1E27" => "h" # ḩ [LATIN SMALL LETTER H WITH CEDILLA] "\u1E29" => "h" # ḫ [LATIN SMALL LETTER H WITH BREVE BELOW] "\u1E2B" => "h" # ẖ [LATIN SMALL LETTER H WITH LINE BELOW] "\u1E96" => "h" # ⓗ [CIRCLED LATIN SMALL LETTER H] "\u24D7" => "h" # ⱨ [LATIN SMALL LETTER H WITH DESCENDER] "\u2C68" => "h" # ⱶ [LATIN SMALL LETTER HALF H] "\u2C76" => "h" # h [FULLWIDTH LATIN SMALL LETTER H] "\uFF48" => "h" # Ƕ http://en.wikipedia.org/wiki/Hwair [LATIN CAPITAL LETTER HWAIR] "\u01F6" => "HV" # ⒣ [PARENTHESIZED LATIN SMALL LETTER H] "\u24A3" => "(h)" # ƕ [LATIN SMALL LETTER HV] "\u0195" => "hv" # Ì [LATIN CAPITAL LETTER I WITH GRAVE] "\u00CC" => "I" # Í [LATIN CAPITAL LETTER I WITH ACUTE] "\u00CD" => "I" # Î [LATIN CAPITAL LETTER I WITH CIRCUMFLEX] "\u00CE" => "I" # Ï [LATIN CAPITAL LETTER I WITH DIAERESIS] "\u00CF" => "I" # Ĩ [LATIN CAPITAL LETTER I WITH TILDE] "\u0128" => "I" # Ī [LATIN CAPITAL LETTER I WITH MACRON] "\u012A" => "I" # Ĭ [LATIN CAPITAL LETTER I WITH BREVE] "\u012C" => "I" # Į [LATIN CAPITAL LETTER I WITH OGONEK] "\u012E" => "I" # İ [LATIN CAPITAL LETTER I WITH DOT ABOVE] "\u0130" => "I" # Ɩ [LATIN CAPITAL LETTER IOTA] "\u0196" => "I" # Ɨ [LATIN CAPITAL LETTER I WITH STROKE] "\u0197" => "I" # Ǐ [LATIN CAPITAL LETTER I WITH CARON] "\u01CF" => "I" # Ȉ [LATIN CAPITAL LETTER I WITH DOUBLE GRAVE] "\u0208" => "I" # Ȋ [LATIN CAPITAL LETTER I WITH INVERTED BREVE] "\u020A" => "I" # ɪ [LATIN LETTER SMALL CAPITAL I] "\u026A" => "I" # ᵻ [LATIN SMALL CAPITAL LETTER I WITH STROKE] "\u1D7B" => "I" # Ḭ [LATIN CAPITAL LETTER I WITH TILDE BELOW] "\u1E2C" => "I" # Ḯ [LATIN CAPITAL LETTER I WITH DIAERESIS AND ACUTE] "\u1E2E" => "I" # Ỉ [LATIN CAPITAL LETTER I WITH HOOK ABOVE] "\u1EC8" => "I" # Ị [LATIN CAPITAL LETTER I WITH DOT BELOW] "\u1ECA" => "I" # Ⓘ [CIRCLED LATIN CAPITAL LETTER I] "\u24BE" => "I" # ꟾ [LATIN EPIGRAPHIC LETTER I LONGA] "\uA7FE" => "I" # I [FULLWIDTH LATIN CAPITAL LETTER I] "\uFF29" => "I" # ì [LATIN SMALL LETTER I WITH GRAVE] "\u00EC" => "i" # í [LATIN SMALL LETTER I WITH ACUTE] "\u00ED" => "i" # î [LATIN SMALL LETTER I WITH CIRCUMFLEX] "\u00EE" => "i" # ï [LATIN SMALL LETTER I WITH DIAERESIS] "\u00EF" => "i" # ĩ [LATIN SMALL LETTER I WITH TILDE] "\u0129" => "i" # ī [LATIN SMALL LETTER I WITH MACRON] "\u012B" => "i" # ĭ [LATIN SMALL LETTER I WITH BREVE] "\u012D" => "i" # į [LATIN SMALL LETTER I WITH OGONEK] "\u012F" => "i" # ı [LATIN SMALL LETTER DOTLESS I] "\u0131" => "i" # ǐ [LATIN SMALL LETTER I WITH CARON] "\u01D0" => "i" # ȉ [LATIN SMALL LETTER I WITH DOUBLE GRAVE] "\u0209" => "i" # ȋ [LATIN SMALL LETTER I WITH INVERTED BREVE] "\u020B" => "i" # ɨ [LATIN SMALL LETTER I WITH STROKE] "\u0268" => "i" # ᴉ [LATIN SMALL LETTER TURNED I] "\u1D09" => "i" # ᵢ [LATIN SUBSCRIPT SMALL LETTER I] "\u1D62" => "i" # ᵼ [LATIN SMALL LETTER IOTA WITH STROKE] "\u1D7C" => "i" # ᶖ [LATIN SMALL LETTER I WITH RETROFLEX HOOK] "\u1D96" => "i" # ḭ [LATIN SMALL LETTER I WITH TILDE BELOW] "\u1E2D" => "i" # ḯ [LATIN SMALL LETTER I WITH DIAERESIS AND ACUTE] "\u1E2F" => "i" # ỉ [LATIN SMALL LETTER I WITH HOOK ABOVE] "\u1EC9" => "i" # ị [LATIN SMALL LETTER I WITH DOT BELOW] "\u1ECB" => "i" # ⁱ [SUPERSCRIPT LATIN SMALL LETTER I] "\u2071" => "i" # ⓘ [CIRCLED LATIN SMALL LETTER I] "\u24D8" => "i" # i [FULLWIDTH LATIN SMALL LETTER I] "\uFF49" => "i" # IJ [LATIN CAPITAL LIGATURE IJ] "\u0132" => "IJ" # ⒤ [PARENTHESIZED LATIN SMALL LETTER I] "\u24A4" => "(i)" # ij [LATIN SMALL LIGATURE IJ] "\u0133" => "ij" # Ĵ [LATIN CAPITAL LETTER J WITH CIRCUMFLEX] "\u0134" => "J" # Ɉ [LATIN CAPITAL LETTER J WITH STROKE] "\u0248" => "J" # ᴊ [LATIN LETTER SMALL CAPITAL J] "\u1D0A" => "J" # Ⓙ [CIRCLED LATIN CAPITAL LETTER J] "\u24BF" => "J" # J [FULLWIDTH LATIN CAPITAL LETTER J] "\uFF2A" => "J" # ĵ [LATIN SMALL LETTER J WITH CIRCUMFLEX] "\u0135" => "j" # ǰ [LATIN SMALL LETTER J WITH CARON] "\u01F0" => "j" # ȷ [LATIN SMALL LETTER DOTLESS J] "\u0237" => "j" # ɉ [LATIN SMALL LETTER J WITH STROKE] "\u0249" => "j" # ɟ [LATIN SMALL LETTER DOTLESS J WITH STROKE] "\u025F" => "j" # ʄ [LATIN SMALL LETTER DOTLESS J WITH STROKE AND HOOK] "\u0284" => "j" # ʝ [LATIN SMALL LETTER J WITH CROSSED-TAIL] "\u029D" => "j" # ⓙ [CIRCLED LATIN SMALL LETTER J] "\u24D9" => "j" # ⱼ [LATIN SUBSCRIPT SMALL LETTER J] "\u2C7C" => "j" # j [FULLWIDTH LATIN SMALL LETTER J] "\uFF4A" => "j" # ⒥ [PARENTHESIZED LATIN SMALL LETTER J] "\u24A5" => "(j)" # Ķ [LATIN CAPITAL LETTER K WITH CEDILLA] "\u0136" => "K" # Ƙ [LATIN CAPITAL LETTER K WITH HOOK] "\u0198" => "K" # Ǩ [LATIN CAPITAL LETTER K WITH CARON] "\u01E8" => "K" # ᴋ [LATIN LETTER SMALL CAPITAL K] "\u1D0B" => "K" # Ḱ [LATIN CAPITAL LETTER K WITH ACUTE] "\u1E30" => "K" # Ḳ [LATIN CAPITAL LETTER K WITH DOT BELOW] "\u1E32" => "K" # Ḵ [LATIN CAPITAL LETTER K WITH LINE BELOW] "\u1E34" => "K" # Ⓚ [CIRCLED LATIN CAPITAL LETTER K] "\u24C0" => "K" # Ⱪ [LATIN CAPITAL LETTER K WITH DESCENDER] "\u2C69" => "K" # Ꝁ [LATIN CAPITAL LETTER K WITH STROKE] "\uA740" => "K" # Ꝃ [LATIN CAPITAL LETTER K WITH DIAGONAL STROKE] "\uA742" => "K" # Ꝅ [LATIN CAPITAL LETTER K WITH STROKE AND DIAGONAL STROKE] "\uA744" => "K" # K [FULLWIDTH LATIN CAPITAL LETTER K] "\uFF2B" => "K" # ķ [LATIN SMALL LETTER K WITH CEDILLA] "\u0137" => "k" # ƙ [LATIN SMALL LETTER K WITH HOOK] "\u0199" => "k" # ǩ [LATIN SMALL LETTER K WITH CARON] "\u01E9" => "k" # ʞ [LATIN SMALL LETTER TURNED K] "\u029E" => "k" # ᶄ [LATIN SMALL LETTER K WITH PALATAL HOOK] "\u1D84" => "k" # ḱ [LATIN SMALL LETTER K WITH ACUTE] "\u1E31" => "k" # ḳ [LATIN SMALL LETTER K WITH DOT BELOW] "\u1E33" => "k" # ḵ [LATIN SMALL LETTER K WITH LINE BELOW] "\u1E35" => "k" # ⓚ [CIRCLED LATIN SMALL LETTER K] "\u24DA" => "k" # ⱪ [LATIN SMALL LETTER K WITH DESCENDER] "\u2C6A" => "k" # ꝁ [LATIN SMALL LETTER K WITH STROKE] "\uA741" => "k" # ꝃ [LATIN SMALL LETTER K WITH DIAGONAL STROKE] "\uA743" => "k" # ꝅ [LATIN SMALL LETTER K WITH STROKE AND DIAGONAL STROKE] "\uA745" => "k" # k [FULLWIDTH LATIN SMALL LETTER K] "\uFF4B" => "k" # ⒦ [PARENTHESIZED LATIN SMALL LETTER K] "\u24A6" => "(k)" # Ĺ [LATIN CAPITAL LETTER L WITH ACUTE] "\u0139" => "L" # Ļ [LATIN CAPITAL LETTER L WITH CEDILLA] "\u013B" => "L" # Ľ [LATIN CAPITAL LETTER L WITH CARON] "\u013D" => "L" # Ŀ [LATIN CAPITAL LETTER L WITH MIDDLE DOT] "\u013F" => "L" # Ł [LATIN CAPITAL LETTER L WITH STROKE] "\u0141" => "L" # Ƚ [LATIN CAPITAL LETTER L WITH BAR] "\u023D" => "L" # ʟ [LATIN LETTER SMALL CAPITAL L] "\u029F" => "L" # ᴌ [LATIN LETTER SMALL CAPITAL L WITH STROKE] "\u1D0C" => "L" # Ḷ [LATIN CAPITAL LETTER L WITH DOT BELOW] "\u1E36" => "L" # Ḹ [LATIN CAPITAL LETTER L WITH DOT BELOW AND MACRON] "\u1E38" => "L" # Ḻ [LATIN CAPITAL LETTER L WITH LINE BELOW] "\u1E3A" => "L" # Ḽ [LATIN CAPITAL LETTER L WITH CIRCUMFLEX BELOW] "\u1E3C" => "L" # Ⓛ [CIRCLED LATIN CAPITAL LETTER L] "\u24C1" => "L" # Ⱡ [LATIN CAPITAL LETTER L WITH DOUBLE BAR] "\u2C60" => "L" # Ɫ [LATIN CAPITAL LETTER L WITH MIDDLE TILDE] "\u2C62" => "L" # Ꝇ [LATIN CAPITAL LETTER BROKEN L] "\uA746" => "L" # Ꝉ [LATIN CAPITAL LETTER L WITH HIGH STROKE] "\uA748" => "L" # Ꞁ [LATIN CAPITAL LETTER TURNED L] "\uA780" => "L" # L [FULLWIDTH LATIN CAPITAL LETTER L] "\uFF2C" => "L" # ĺ [LATIN SMALL LETTER L WITH ACUTE] "\u013A" => "l" # ļ [LATIN SMALL LETTER L WITH CEDILLA] "\u013C" => "l" # ľ [LATIN SMALL LETTER L WITH CARON] "\u013E" => "l" # ŀ [LATIN SMALL LETTER L WITH MIDDLE DOT] "\u0140" => "l" # ł [LATIN SMALL LETTER L WITH STROKE] "\u0142" => "l" # ƚ [LATIN SMALL LETTER L WITH BAR] "\u019A" => "l" # ȴ [LATIN SMALL LETTER L WITH CURL] "\u0234" => "l" # ɫ [LATIN SMALL LETTER L WITH MIDDLE TILDE] "\u026B" => "l" # ɬ [LATIN SMALL LETTER L WITH BELT] "\u026C" => "l" # ɭ [LATIN SMALL LETTER L WITH RETROFLEX HOOK] "\u026D" => "l" # ᶅ [LATIN SMALL LETTER L WITH PALATAL HOOK] "\u1D85" => "l" # ḷ [LATIN SMALL LETTER L WITH DOT BELOW] "\u1E37" => "l" # ḹ [LATIN SMALL LETTER L WITH DOT BELOW AND MACRON] "\u1E39" => "l" # ḻ [LATIN SMALL LETTER L WITH LINE BELOW] "\u1E3B" => "l" # ḽ [LATIN SMALL LETTER L WITH CIRCUMFLEX BELOW] "\u1E3D" => "l" # ⓛ [CIRCLED LATIN SMALL LETTER L] "\u24DB" => "l" # ⱡ [LATIN SMALL LETTER L WITH DOUBLE BAR] "\u2C61" => "l" # ꝇ [LATIN SMALL LETTER BROKEN L] "\uA747" => "l" # ꝉ [LATIN SMALL LETTER L WITH HIGH STROKE] "\uA749" => "l" # ꞁ [LATIN SMALL LETTER TURNED L] "\uA781" => "l" # l [FULLWIDTH LATIN SMALL LETTER L] "\uFF4C" => "l" # LJ [LATIN CAPITAL LETTER LJ] "\u01C7" => "LJ" # Ỻ [LATIN CAPITAL LETTER MIDDLE-WELSH LL] "\u1EFA" => "LL" # Lj [LATIN CAPITAL LETTER L WITH SMALL LETTER J] "\u01C8" => "Lj" # ⒧ [PARENTHESIZED LATIN SMALL LETTER L] "\u24A7" => "(l)" # lj [LATIN SMALL LETTER LJ] "\u01C9" => "lj" # ỻ [LATIN SMALL LETTER MIDDLE-WELSH LL] "\u1EFB" => "ll" # ʪ [LATIN SMALL LETTER LS DIGRAPH] "\u02AA" => "ls" # ʫ [LATIN SMALL LETTER LZ DIGRAPH] "\u02AB" => "lz" # Ɯ [LATIN CAPITAL LETTER TURNED M] "\u019C" => "M" # ᴍ [LATIN LETTER SMALL CAPITAL M] "\u1D0D" => "M" # Ḿ [LATIN CAPITAL LETTER M WITH ACUTE] "\u1E3E" => "M" # Ṁ [LATIN CAPITAL LETTER M WITH DOT ABOVE] "\u1E40" => "M" # Ṃ [LATIN CAPITAL LETTER M WITH DOT BELOW] "\u1E42" => "M" # Ⓜ [CIRCLED LATIN CAPITAL LETTER M] "\u24C2" => "M" # Ɱ [LATIN CAPITAL LETTER M WITH HOOK] "\u2C6E" => "M" # ꟽ [LATIN EPIGRAPHIC LETTER INVERTED M] "\uA7FD" => "M" # ꟿ [LATIN EPIGRAPHIC LETTER ARCHAIC M] "\uA7FF" => "M" # M [FULLWIDTH LATIN CAPITAL LETTER M] "\uFF2D" => "M" # ɯ [LATIN SMALL LETTER TURNED M] "\u026F" => "m" # ɰ [LATIN SMALL LETTER TURNED M WITH LONG LEG] "\u0270" => "m" # ɱ [LATIN SMALL LETTER M WITH HOOK] "\u0271" => "m" # ᵯ [LATIN SMALL LETTER M WITH MIDDLE TILDE] "\u1D6F" => "m" # ᶆ [LATIN SMALL LETTER M WITH PALATAL HOOK] "\u1D86" => "m" # ḿ [LATIN SMALL LETTER M WITH ACUTE] "\u1E3F" => "m" # ṁ [LATIN SMALL LETTER M WITH DOT ABOVE] "\u1E41" => "m" # ṃ [LATIN SMALL LETTER M WITH DOT BELOW] "\u1E43" => "m" # ⓜ [CIRCLED LATIN SMALL LETTER M] "\u24DC" => "m" # m [FULLWIDTH LATIN SMALL LETTER M] "\uFF4D" => "m" # ⒨ [PARENTHESIZED LATIN SMALL LETTER M] "\u24A8" => "(m)" # Ñ [LATIN CAPITAL LETTER N WITH TILDE] "\u00D1" => "N" # Ń [LATIN CAPITAL LETTER N WITH ACUTE] "\u0143" => "N" # Ņ [LATIN CAPITAL LETTER N WITH CEDILLA] "\u0145" => "N" # Ň [LATIN CAPITAL LETTER N WITH CARON] "\u0147" => "N" # Ŋ http://en.wikipedia.org/wiki/Eng_(letter) [LATIN CAPITAL LETTER ENG] "\u014A" => "N" # Ɲ [LATIN CAPITAL LETTER N WITH LEFT HOOK] "\u019D" => "N" # Ǹ [LATIN CAPITAL LETTER N WITH GRAVE] "\u01F8" => "N" # Ƞ [LATIN CAPITAL LETTER N WITH LONG RIGHT LEG] "\u0220" => "N" # ɴ [LATIN LETTER SMALL CAPITAL N] "\u0274" => "N" # ᴎ [LATIN LETTER SMALL CAPITAL REVERSED N] "\u1D0E" => "N" # Ṅ [LATIN CAPITAL LETTER N WITH DOT ABOVE] "\u1E44" => "N" # Ṇ [LATIN CAPITAL LETTER N WITH DOT BELOW] "\u1E46" => "N" # Ṉ [LATIN CAPITAL LETTER N WITH LINE BELOW] "\u1E48" => "N" # Ṋ [LATIN CAPITAL LETTER N WITH CIRCUMFLEX BELOW] "\u1E4A" => "N" # Ⓝ [CIRCLED LATIN CAPITAL LETTER N] "\u24C3" => "N" # N [FULLWIDTH LATIN CAPITAL LETTER N] "\uFF2E" => "N" # ñ [LATIN SMALL LETTER N WITH TILDE] "\u00F1" => "n" # ń [LATIN SMALL LETTER N WITH ACUTE] "\u0144" => "n" # ņ [LATIN SMALL LETTER N WITH CEDILLA] "\u0146" => "n" # ň [LATIN SMALL LETTER N WITH CARON] "\u0148" => "n" # ʼn [LATIN SMALL LETTER N PRECEDED BY APOSTROPHE] "\u0149" => "n" # ŋ http://en.wikipedia.org/wiki/Eng_(letter) [LATIN SMALL LETTER ENG] "\u014B" => "n" # ƞ [LATIN SMALL LETTER N WITH LONG RIGHT LEG] "\u019E" => "n" # ǹ [LATIN SMALL LETTER N WITH GRAVE] "\u01F9" => "n" # ȵ [LATIN SMALL LETTER N WITH CURL] "\u0235" => "n" # ɲ [LATIN SMALL LETTER N WITH LEFT HOOK] "\u0272" => "n" # ɳ [LATIN SMALL LETTER N WITH RETROFLEX HOOK] "\u0273" => "n" # ᵰ [LATIN SMALL LETTER N WITH MIDDLE TILDE] "\u1D70" => "n" # ᶇ [LATIN SMALL LETTER N WITH PALATAL HOOK] "\u1D87" => "n" # ṅ [LATIN SMALL LETTER N WITH DOT ABOVE] "\u1E45" => "n" # ṇ [LATIN SMALL LETTER N WITH DOT BELOW] "\u1E47" => "n" # ṉ [LATIN SMALL LETTER N WITH LINE BELOW] "\u1E49" => "n" # ṋ [LATIN SMALL LETTER N WITH CIRCUMFLEX BELOW] "\u1E4B" => "n" # ⁿ [SUPERSCRIPT LATIN SMALL LETTER N] "\u207F" => "n" # ⓝ [CIRCLED LATIN SMALL LETTER N] "\u24DD" => "n" # n [FULLWIDTH LATIN SMALL LETTER N] "\uFF4E" => "n" # NJ [LATIN CAPITAL LETTER NJ] "\u01CA" => "NJ" # Nj [LATIN CAPITAL LETTER N WITH SMALL LETTER J] "\u01CB" => "Nj" # ⒩ [PARENTHESIZED LATIN SMALL LETTER N] "\u24A9" => "(n)" # nj [LATIN SMALL LETTER NJ] "\u01CC" => "nj" # Ò [LATIN CAPITAL LETTER O WITH GRAVE] "\u00D2" => "O" # Ó [LATIN CAPITAL LETTER O WITH ACUTE] "\u00D3" => "O" # Ô [LATIN CAPITAL LETTER O WITH CIRCUMFLEX] "\u00D4" => "O" # Õ [LATIN CAPITAL LETTER O WITH TILDE] "\u00D5" => "O" # Ö [LATIN CAPITAL LETTER O WITH DIAERESIS] "\u00D6" => "O" # Ø [LATIN CAPITAL LETTER O WITH STROKE] "\u00D8" => "O" # Ō [LATIN CAPITAL LETTER O WITH MACRON] "\u014C" => "O" # Ŏ [LATIN CAPITAL LETTER O WITH BREVE] "\u014E" => "O" # Ő [LATIN CAPITAL LETTER O WITH DOUBLE ACUTE] "\u0150" => "O" # Ɔ [LATIN CAPITAL LETTER OPEN O] "\u0186" => "O" # Ɵ [LATIN CAPITAL LETTER O WITH MIDDLE TILDE] "\u019F" => "O" # Ơ [LATIN CAPITAL LETTER O WITH HORN] "\u01A0" => "O" # Ǒ [LATIN CAPITAL LETTER O WITH CARON] "\u01D1" => "O" # Ǫ [LATIN CAPITAL LETTER O WITH OGONEK] "\u01EA" => "O" # Ǭ [LATIN CAPITAL LETTER O WITH OGONEK AND MACRON] "\u01EC" => "O" # Ǿ [LATIN CAPITAL LETTER O WITH STROKE AND ACUTE] "\u01FE" => "O" # Ȍ [LATIN CAPITAL LETTER O WITH DOUBLE GRAVE] "\u020C" => "O" # Ȏ [LATIN CAPITAL LETTER O WITH INVERTED BREVE] "\u020E" => "O" # Ȫ [LATIN CAPITAL LETTER O WITH DIAERESIS AND MACRON] "\u022A" => "O" # Ȭ [LATIN CAPITAL LETTER O WITH TILDE AND MACRON] "\u022C" => "O" # Ȯ [LATIN CAPITAL LETTER O WITH DOT ABOVE] "\u022E" => "O" # Ȱ [LATIN CAPITAL LETTER O WITH DOT ABOVE AND MACRON] "\u0230" => "O" # ᴏ [LATIN LETTER SMALL CAPITAL O] "\u1D0F" => "O" # ᴐ [LATIN LETTER SMALL CAPITAL OPEN O] "\u1D10" => "O" # Ṍ [LATIN CAPITAL LETTER O WITH TILDE AND ACUTE] "\u1E4C" => "O" # Ṏ [LATIN CAPITAL LETTER O WITH TILDE AND DIAERESIS] "\u1E4E" => "O" # Ṑ [LATIN CAPITAL LETTER O WITH MACRON AND GRAVE] "\u1E50" => "O" # Ṓ [LATIN CAPITAL LETTER O WITH MACRON AND ACUTE] "\u1E52" => "O" # Ọ [LATIN CAPITAL LETTER O WITH DOT BELOW] "\u1ECC" => "O" # Ỏ [LATIN CAPITAL LETTER O WITH HOOK ABOVE] "\u1ECE" => "O" # Ố [LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND ACUTE] "\u1ED0" => "O" # Ồ [LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND GRAVE] "\u1ED2" => "O" # Ổ [LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE] "\u1ED4" => "O" # Ỗ [LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND TILDE] "\u1ED6" => "O" # Ộ [LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND DOT BELOW] "\u1ED8" => "O" # Ớ [LATIN CAPITAL LETTER O WITH HORN AND ACUTE] "\u1EDA" => "O" # Ờ [LATIN CAPITAL LETTER O WITH HORN AND GRAVE] "\u1EDC" => "O" # Ở [LATIN CAPITAL LETTER O WITH HORN AND HOOK ABOVE] "\u1EDE" => "O" # Ỡ [LATIN CAPITAL LETTER O WITH HORN AND TILDE] "\u1EE0" => "O" # Ợ [LATIN CAPITAL LETTER O WITH HORN AND DOT BELOW] "\u1EE2" => "O" # Ⓞ [CIRCLED LATIN CAPITAL LETTER O] "\u24C4" => "O" # Ꝋ [LATIN CAPITAL LETTER O WITH LONG STROKE OVERLAY] "\uA74A" => "O" # Ꝍ [LATIN CAPITAL LETTER O WITH LOOP] "\uA74C" => "O" # O [FULLWIDTH LATIN CAPITAL LETTER O] "\uFF2F" => "O" # ò [LATIN SMALL LETTER O WITH GRAVE] "\u00F2" => "o" # ó [LATIN SMALL LETTER O WITH ACUTE] "\u00F3" => "o" # ô [LATIN SMALL LETTER O WITH CIRCUMFLEX] "\u00F4" => "o" # õ [LATIN SMALL LETTER O WITH TILDE] "\u00F5" => "o" # ö [LATIN SMALL LETTER O WITH DIAERESIS] "\u00F6" => "o" # ø [LATIN SMALL LETTER O WITH STROKE] "\u00F8" => "o" # ō [LATIN SMALL LETTER O WITH MACRON] "\u014D" => "o" # ŏ [LATIN SMALL LETTER O WITH BREVE] "\u014F" => "o" # ő [LATIN SMALL LETTER O WITH DOUBLE ACUTE] "\u0151" => "o" # ơ [LATIN SMALL LETTER O WITH HORN] "\u01A1" => "o" # ǒ [LATIN SMALL LETTER O WITH CARON] "\u01D2" => "o" # ǫ [LATIN SMALL LETTER O WITH OGONEK] "\u01EB" => "o" # ǭ [LATIN SMALL LETTER O WITH OGONEK AND MACRON] "\u01ED" => "o" # ǿ [LATIN SMALL LETTER O WITH STROKE AND ACUTE] "\u01FF" => "o" # ȍ [LATIN SMALL LETTER O WITH DOUBLE GRAVE] "\u020D" => "o" # ȏ [LATIN SMALL LETTER O WITH INVERTED BREVE] "\u020F" => "o" # ȫ [LATIN SMALL LETTER O WITH DIAERESIS AND MACRON] "\u022B" => "o" # ȭ [LATIN SMALL LETTER O WITH TILDE AND MACRON] "\u022D" => "o" # ȯ [LATIN SMALL LETTER O WITH DOT ABOVE] "\u022F" => "o" # ȱ [LATIN SMALL LETTER O WITH DOT ABOVE AND MACRON] "\u0231" => "o" # ɔ [LATIN SMALL LETTER OPEN O] "\u0254" => "o" # ɵ [LATIN SMALL LETTER BARRED O] "\u0275" => "o" # ᴖ [LATIN SMALL LETTER TOP HALF O] "\u1D16" => "o" # ᴗ [LATIN SMALL LETTER BOTTOM HALF O] "\u1D17" => "o" # ᶗ [LATIN SMALL LETTER OPEN O WITH RETROFLEX HOOK] "\u1D97" => "o" # ṍ [LATIN SMALL LETTER O WITH TILDE AND ACUTE] "\u1E4D" => "o" # ṏ [LATIN SMALL LETTER O WITH TILDE AND DIAERESIS] "\u1E4F" => "o" # ṑ [LATIN SMALL LETTER O WITH MACRON AND GRAVE] "\u1E51" => "o" # ṓ [LATIN SMALL LETTER O WITH MACRON AND ACUTE] "\u1E53" => "o" # ọ [LATIN SMALL LETTER O WITH DOT BELOW] "\u1ECD" => "o" # ỏ [LATIN SMALL LETTER O WITH HOOK ABOVE] "\u1ECF" => "o" # ố [LATIN SMALL LETTER O WITH CIRCUMFLEX AND ACUTE] "\u1ED1" => "o" # ồ [LATIN SMALL LETTER O WITH CIRCUMFLEX AND GRAVE] "\u1ED3" => "o" # ổ [LATIN SMALL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE] "\u1ED5" => "o" # ỗ [LATIN SMALL LETTER O WITH CIRCUMFLEX AND TILDE] "\u1ED7" => "o" # ộ [LATIN SMALL LETTER O WITH CIRCUMFLEX AND DOT BELOW] "\u1ED9" => "o" # ớ [LATIN SMALL LETTER O WITH HORN AND ACUTE] "\u1EDB" => "o" # ờ [LATIN SMALL LETTER O WITH HORN AND GRAVE] "\u1EDD" => "o" # ở [LATIN SMALL LETTER O WITH HORN AND HOOK ABOVE] "\u1EDF" => "o" # ỡ [LATIN SMALL LETTER O WITH HORN AND TILDE] "\u1EE1" => "o" # ợ [LATIN SMALL LETTER O WITH HORN AND DOT BELOW] "\u1EE3" => "o" # ₒ [LATIN SUBSCRIPT SMALL LETTER O] "\u2092" => "o" # ⓞ [CIRCLED LATIN SMALL LETTER O] "\u24DE" => "o" # ⱺ [LATIN SMALL LETTER O WITH LOW RING INSIDE] "\u2C7A" => "o" # ꝋ [LATIN SMALL LETTER O WITH LONG STROKE OVERLAY] "\uA74B" => "o" # ꝍ [LATIN SMALL LETTER O WITH LOOP] "\uA74D" => "o" # o [FULLWIDTH LATIN SMALL LETTER O] "\uFF4F" => "o" # Œ [LATIN CAPITAL LIGATURE OE] "\u0152" => "OE" # ɶ [LATIN LETTER SMALL CAPITAL OE] "\u0276" => "OE" # Ꝏ [LATIN CAPITAL LETTER OO] "\uA74E" => "OO" # Ȣ http://en.wikipedia.org/wiki/OU [LATIN CAPITAL LETTER OU] "\u0222" => "OU" # ᴕ [LATIN LETTER SMALL CAPITAL OU] "\u1D15" => "OU" # ⒪ [PARENTHESIZED LATIN SMALL LETTER O] "\u24AA" => "(o)" # œ [LATIN SMALL LIGATURE OE] "\u0153" => "oe" # ᴔ [LATIN SMALL LETTER TURNED OE] "\u1D14" => "oe" # ꝏ [LATIN SMALL LETTER OO] "\uA74F" => "oo" # ȣ http://en.wikipedia.org/wiki/OU [LATIN SMALL LETTER OU] "\u0223" => "ou" # Ƥ [LATIN CAPITAL LETTER P WITH HOOK] "\u01A4" => "P" # ᴘ [LATIN LETTER SMALL CAPITAL P] "\u1D18" => "P" # Ṕ [LATIN CAPITAL LETTER P WITH ACUTE] "\u1E54" => "P" # Ṗ [LATIN CAPITAL LETTER P WITH DOT ABOVE] "\u1E56" => "P" # Ⓟ [CIRCLED LATIN CAPITAL LETTER P] "\u24C5" => "P" # Ᵽ [LATIN CAPITAL LETTER P WITH STROKE] "\u2C63" => "P" # Ꝑ [LATIN CAPITAL LETTER P WITH STROKE THROUGH DESCENDER] "\uA750" => "P" # Ꝓ [LATIN CAPITAL LETTER P WITH FLOURISH] "\uA752" => "P" # Ꝕ [LATIN CAPITAL LETTER P WITH SQUIRREL TAIL] "\uA754" => "P" # P [FULLWIDTH LATIN CAPITAL LETTER P] "\uFF30" => "P" # ƥ [LATIN SMALL LETTER P WITH HOOK] "\u01A5" => "p" # ᵱ [LATIN SMALL LETTER P WITH MIDDLE TILDE] "\u1D71" => "p" # ᵽ [LATIN SMALL LETTER P WITH STROKE] "\u1D7D" => "p" # ᶈ [LATIN SMALL LETTER P WITH PALATAL HOOK] "\u1D88" => "p" # ṕ [LATIN SMALL LETTER P WITH ACUTE] "\u1E55" => "p" # ṗ [LATIN SMALL LETTER P WITH DOT ABOVE] "\u1E57" => "p" # ⓟ [CIRCLED LATIN SMALL LETTER P] "\u24DF" => "p" # ꝑ [LATIN SMALL LETTER P WITH STROKE THROUGH DESCENDER] "\uA751" => "p" # ꝓ [LATIN SMALL LETTER P WITH FLOURISH] "\uA753" => "p" # ꝕ [LATIN SMALL LETTER P WITH SQUIRREL TAIL] "\uA755" => "p" # ꟼ [LATIN EPIGRAPHIC LETTER REVERSED P] "\uA7FC" => "p" # p [FULLWIDTH LATIN SMALL LETTER P] "\uFF50" => "p" # ⒫ [PARENTHESIZED LATIN SMALL LETTER P] "\u24AB" => "(p)" # Ɋ [LATIN CAPITAL LETTER SMALL Q WITH HOOK TAIL] "\u024A" => "Q" # Ⓠ [CIRCLED LATIN CAPITAL LETTER Q] "\u24C6" => "Q" # Ꝗ [LATIN CAPITAL LETTER Q WITH STROKE THROUGH DESCENDER] "\uA756" => "Q" # Ꝙ [LATIN CAPITAL LETTER Q WITH DIAGONAL STROKE] "\uA758" => "Q" # Q [FULLWIDTH LATIN CAPITAL LETTER Q] "\uFF31" => "Q" # ĸ http://en.wikipedia.org/wiki/Kra_(letter) [LATIN SMALL LETTER KRA] "\u0138" => "q" # ɋ [LATIN SMALL LETTER Q WITH HOOK TAIL] "\u024B" => "q" # ʠ [LATIN SMALL LETTER Q WITH HOOK] "\u02A0" => "q" # ⓠ [CIRCLED LATIN SMALL LETTER Q] "\u24E0" => "q" # ꝗ [LATIN SMALL LETTER Q WITH STROKE THROUGH DESCENDER] "\uA757" => "q" # ꝙ [LATIN SMALL LETTER Q WITH DIAGONAL STROKE] "\uA759" => "q" # q [FULLWIDTH LATIN SMALL LETTER Q] "\uFF51" => "q" # ⒬ [PARENTHESIZED LATIN SMALL LETTER Q] "\u24AC" => "(q)" # ȹ [LATIN SMALL LETTER QP DIGRAPH] "\u0239" => "qp" # Ŕ [LATIN CAPITAL LETTER R WITH ACUTE] "\u0154" => "R" # Ŗ [LATIN CAPITAL LETTER R WITH CEDILLA] "\u0156" => "R" # Ř [LATIN CAPITAL LETTER R WITH CARON] "\u0158" => "R" # Ȓ [LATIN CAPITAL LETTER R WITH DOUBLE GRAVE] "\u0210" => "R" # Ȓ [LATIN CAPITAL LETTER R WITH INVERTED BREVE] "\u0212" => "R" # Ɍ [LATIN CAPITAL LETTER R WITH STROKE] "\u024C" => "R" # ʀ [LATIN LETTER SMALL CAPITAL R] "\u0280" => "R" # ʁ [LATIN LETTER SMALL CAPITAL INVERTED R] "\u0281" => "R" # ᴙ [LATIN LETTER SMALL CAPITAL REVERSED R] "\u1D19" => "R" # ᴚ [LATIN LETTER SMALL CAPITAL TURNED R] "\u1D1A" => "R" # Ṙ [LATIN CAPITAL LETTER R WITH DOT ABOVE] "\u1E58" => "R" # Ṛ [LATIN CAPITAL LETTER R WITH DOT BELOW] "\u1E5A" => "R" # Ṝ [LATIN CAPITAL LETTER R WITH DOT BELOW AND MACRON] "\u1E5C" => "R" # Ṟ [LATIN CAPITAL LETTER R WITH LINE BELOW] "\u1E5E" => "R" # Ⓡ [CIRCLED LATIN CAPITAL LETTER R] "\u24C7" => "R" # Ɽ [LATIN CAPITAL LETTER R WITH TAIL] "\u2C64" => "R" # Ꝛ [LATIN CAPITAL LETTER R ROTUNDA] "\uA75A" => "R" # Ꞃ [LATIN CAPITAL LETTER INSULAR R] "\uA782" => "R" # R [FULLWIDTH LATIN CAPITAL LETTER R] "\uFF32" => "R" # ŕ [LATIN SMALL LETTER R WITH ACUTE] "\u0155" => "r" # ŗ [LATIN SMALL LETTER R WITH CEDILLA] "\u0157" => "r" # ř [LATIN SMALL LETTER R WITH CARON] "\u0159" => "r" # ȑ [LATIN SMALL LETTER R WITH DOUBLE GRAVE] "\u0211" => "r" # ȓ [LATIN SMALL LETTER R WITH INVERTED BREVE] "\u0213" => "r" # ɍ [LATIN SMALL LETTER R WITH STROKE] "\u024D" => "r" # ɼ [LATIN SMALL LETTER R WITH LONG LEG] "\u027C" => "r" # ɽ [LATIN SMALL LETTER R WITH TAIL] "\u027D" => "r" # ɾ [LATIN SMALL LETTER R WITH FISHHOOK] "\u027E" => "r" # ɿ [LATIN SMALL LETTER REVERSED R WITH FISHHOOK] "\u027F" => "r" # ᵣ [LATIN SUBSCRIPT SMALL LETTER R] "\u1D63" => "r" # ᵲ [LATIN SMALL LETTER R WITH MIDDLE TILDE] "\u1D72" => "r" # ᵳ [LATIN SMALL LETTER R WITH FISHHOOK AND MIDDLE TILDE] "\u1D73" => "r" # ᶉ [LATIN SMALL LETTER R WITH PALATAL HOOK] "\u1D89" => "r" # ṙ [LATIN SMALL LETTER R WITH DOT ABOVE] "\u1E59" => "r" # ṛ [LATIN SMALL LETTER R WITH DOT BELOW] "\u1E5B" => "r" # ṝ [LATIN SMALL LETTER R WITH DOT BELOW AND MACRON] "\u1E5D" => "r" # ṟ [LATIN SMALL LETTER R WITH LINE BELOW] "\u1E5F" => "r" # ⓡ [CIRCLED LATIN SMALL LETTER R] "\u24E1" => "r" # ꝛ [LATIN SMALL LETTER R ROTUNDA] "\uA75B" => "r" # ꞃ [LATIN SMALL LETTER INSULAR R] "\uA783" => "r" # r [FULLWIDTH LATIN SMALL LETTER R] "\uFF52" => "r" # ⒭ [PARENTHESIZED LATIN SMALL LETTER R] "\u24AD" => "(r)" # Ś [LATIN CAPITAL LETTER S WITH ACUTE] "\u015A" => "S" # Ŝ [LATIN CAPITAL LETTER S WITH CIRCUMFLEX] "\u015C" => "S" # Ş [LATIN CAPITAL LETTER S WITH CEDILLA] "\u015E" => "S" # Š [LATIN CAPITAL LETTER S WITH CARON] "\u0160" => "S" # Ș [LATIN CAPITAL LETTER S WITH COMMA BELOW] "\u0218" => "S" # Ṡ [LATIN CAPITAL LETTER S WITH DOT ABOVE] "\u1E60" => "S" # Ṣ [LATIN CAPITAL LETTER S WITH DOT BELOW] "\u1E62" => "S" # Ṥ [LATIN CAPITAL LETTER S WITH ACUTE AND DOT ABOVE] "\u1E64" => "S" # Ṧ [LATIN CAPITAL LETTER S WITH CARON AND DOT ABOVE] "\u1E66" => "S" # Ṩ [LATIN CAPITAL LETTER S WITH DOT BELOW AND DOT ABOVE] "\u1E68" => "S" # Ⓢ [CIRCLED LATIN CAPITAL LETTER S] "\u24C8" => "S" # ꜱ [LATIN LETTER SMALL CAPITAL S] "\uA731" => "S" # ꞅ [LATIN SMALL LETTER INSULAR S] "\uA785" => "S" # S [FULLWIDTH LATIN CAPITAL LETTER S] "\uFF33" => "S" # ś [LATIN SMALL LETTER S WITH ACUTE] "\u015B" => "s" # ŝ [LATIN SMALL LETTER S WITH CIRCUMFLEX] "\u015D" => "s" # ş [LATIN SMALL LETTER S WITH CEDILLA] "\u015F" => "s" # š [LATIN SMALL LETTER S WITH CARON] "\u0161" => "s" # ſ http://en.wikipedia.org/wiki/Long_S [LATIN SMALL LETTER LONG S] "\u017F" => "s" # ș [LATIN SMALL LETTER S WITH COMMA BELOW] "\u0219" => "s" # ȿ [LATIN SMALL LETTER S WITH SWASH TAIL] "\u023F" => "s" # ʂ [LATIN SMALL LETTER S WITH HOOK] "\u0282" => "s" # ᵴ [LATIN SMALL LETTER S WITH MIDDLE TILDE] "\u1D74" => "s" # ᶊ [LATIN SMALL LETTER S WITH PALATAL HOOK] "\u1D8A" => "s" # ṡ [LATIN SMALL LETTER S WITH DOT ABOVE] "\u1E61" => "s" # ṣ [LATIN SMALL LETTER S WITH DOT BELOW] "\u1E63" => "s" # ṥ [LATIN SMALL LETTER S WITH ACUTE AND DOT ABOVE] "\u1E65" => "s" # ṧ [LATIN SMALL LETTER S WITH CARON AND DOT ABOVE] "\u1E67" => "s" # ṩ [LATIN SMALL LETTER S WITH DOT BELOW AND DOT ABOVE] "\u1E69" => "s" # ẜ [LATIN SMALL LETTER LONG S WITH DIAGONAL STROKE] "\u1E9C" => "s" # ẝ [LATIN SMALL LETTER LONG S WITH HIGH STROKE] "\u1E9D" => "s" # ⓢ [CIRCLED LATIN SMALL LETTER S] "\u24E2" => "s" # Ꞅ [LATIN CAPITAL LETTER INSULAR S] "\uA784" => "s" # s [FULLWIDTH LATIN SMALL LETTER S] "\uFF53" => "s" # ẞ [LATIN CAPITAL LETTER SHARP S] "\u1E9E" => "SS" # ⒮ [PARENTHESIZED LATIN SMALL LETTER S] "\u24AE" => "(s)" # ß [LATIN SMALL LETTER SHARP S] "\u00DF" => "ss" # st [LATIN SMALL LIGATURE ST] "\uFB06" => "st" # Ţ [LATIN CAPITAL LETTER T WITH CEDILLA] "\u0162" => "T" # Ť [LATIN CAPITAL LETTER T WITH CARON] "\u0164" => "T" # Ŧ [LATIN CAPITAL LETTER T WITH STROKE] "\u0166" => "T" # Ƭ [LATIN CAPITAL LETTER T WITH HOOK] "\u01AC" => "T" # Ʈ [LATIN CAPITAL LETTER T WITH RETROFLEX HOOK] "\u01AE" => "T" # Ț [LATIN CAPITAL LETTER T WITH COMMA BELOW] "\u021A" => "T" # Ⱦ [LATIN CAPITAL LETTER T WITH DIAGONAL STROKE] "\u023E" => "T" # ᴛ [LATIN LETTER SMALL CAPITAL T] "\u1D1B" => "T" # Ṫ [LATIN CAPITAL LETTER T WITH DOT ABOVE] "\u1E6A" => "T" # Ṭ [LATIN CAPITAL LETTER T WITH DOT BELOW] "\u1E6C" => "T" # Ṯ [LATIN CAPITAL LETTER T WITH LINE BELOW] "\u1E6E" => "T" # Ṱ [LATIN CAPITAL LETTER T WITH CIRCUMFLEX BELOW] "\u1E70" => "T" # Ⓣ [CIRCLED LATIN CAPITAL LETTER T] "\u24C9" => "T" # Ꞇ [LATIN CAPITAL LETTER INSULAR T] "\uA786" => "T" # T [FULLWIDTH LATIN CAPITAL LETTER T] "\uFF34" => "T" # ţ [LATIN SMALL LETTER T WITH CEDILLA] "\u0163" => "t" # ť [LATIN SMALL LETTER T WITH CARON] "\u0165" => "t" # ŧ [LATIN SMALL LETTER T WITH STROKE] "\u0167" => "t" # ƫ [LATIN SMALL LETTER T WITH PALATAL HOOK] "\u01AB" => "t" # ƭ [LATIN SMALL LETTER T WITH HOOK] "\u01AD" => "t" # ț [LATIN SMALL LETTER T WITH COMMA BELOW] "\u021B" => "t" # ȶ [LATIN SMALL LETTER T WITH CURL] "\u0236" => "t" # ʇ [LATIN SMALL LETTER TURNED T] "\u0287" => "t" # ʈ [LATIN SMALL LETTER T WITH RETROFLEX HOOK] "\u0288" => "t" # ᵵ [LATIN SMALL LETTER T WITH MIDDLE TILDE] "\u1D75" => "t" # ṫ [LATIN SMALL LETTER T WITH DOT ABOVE] "\u1E6B" => "t" # ṭ [LATIN SMALL LETTER T WITH DOT BELOW] "\u1E6D" => "t" # ṯ [LATIN SMALL LETTER T WITH LINE BELOW] "\u1E6F" => "t" # ṱ [LATIN SMALL LETTER T WITH CIRCUMFLEX BELOW] "\u1E71" => "t" # ẗ [LATIN SMALL LETTER T WITH DIAERESIS] "\u1E97" => "t" # ⓣ [CIRCLED LATIN SMALL LETTER T] "\u24E3" => "t" # ⱦ [LATIN SMALL LETTER T WITH DIAGONAL STROKE] "\u2C66" => "t" # t [FULLWIDTH LATIN SMALL LETTER T] "\uFF54" => "t" # Þ [LATIN CAPITAL LETTER THORN] "\u00DE" => "TH" # Ꝧ [LATIN CAPITAL LETTER THORN WITH STROKE THROUGH DESCENDER] "\uA766" => "TH" # Ꜩ [LATIN CAPITAL LETTER TZ] "\uA728" => "TZ" # ⒯ [PARENTHESIZED LATIN SMALL LETTER T] "\u24AF" => "(t)" # ʨ [LATIN SMALL LETTER TC DIGRAPH WITH CURL] "\u02A8" => "tc" # þ [LATIN SMALL LETTER THORN] "\u00FE" => "th" # ᵺ [LATIN SMALL LETTER TH WITH STRIKETHROUGH] "\u1D7A" => "th" # ꝧ [LATIN SMALL LETTER THORN WITH STROKE THROUGH DESCENDER] "\uA767" => "th" # ʦ [LATIN SMALL LETTER TS DIGRAPH] "\u02A6" => "ts" # ꜩ [LATIN SMALL LETTER TZ] "\uA729" => "tz" # Ù [LATIN CAPITAL LETTER U WITH GRAVE] "\u00D9" => "U" # Ú [LATIN CAPITAL LETTER U WITH ACUTE] "\u00DA" => "U" # Û [LATIN CAPITAL LETTER U WITH CIRCUMFLEX] "\u00DB" => "U" # Ü [LATIN CAPITAL LETTER U WITH DIAERESIS] "\u00DC" => "U" # Ũ [LATIN CAPITAL LETTER U WITH TILDE] "\u0168" => "U" # Ū [LATIN CAPITAL LETTER U WITH MACRON] "\u016A" => "U" # Ŭ [LATIN CAPITAL LETTER U WITH BREVE] "\u016C" => "U" # Ů [LATIN CAPITAL LETTER U WITH RING ABOVE] "\u016E" => "U" # Ű [LATIN CAPITAL LETTER U WITH DOUBLE ACUTE] "\u0170" => "U" # Ų [LATIN CAPITAL LETTER U WITH OGONEK] "\u0172" => "U" # Ư [LATIN CAPITAL LETTER U WITH HORN] "\u01AF" => "U" # Ǔ [LATIN CAPITAL LETTER U WITH CARON] "\u01D3" => "U" # Ǖ [LATIN CAPITAL LETTER U WITH DIAERESIS AND MACRON] "\u01D5" => "U" # Ǘ [LATIN CAPITAL LETTER U WITH DIAERESIS AND ACUTE] "\u01D7" => "U" # Ǚ [LATIN CAPITAL LETTER U WITH DIAERESIS AND CARON] "\u01D9" => "U" # Ǜ [LATIN CAPITAL LETTER U WITH DIAERESIS AND GRAVE] "\u01DB" => "U" # Ȕ [LATIN CAPITAL LETTER U WITH DOUBLE GRAVE] "\u0214" => "U" # Ȗ [LATIN CAPITAL LETTER U WITH INVERTED BREVE] "\u0216" => "U" # Ʉ [LATIN CAPITAL LETTER U BAR] "\u0244" => "U" # ᴜ [LATIN LETTER SMALL CAPITAL U] "\u1D1C" => "U" # ᵾ [LATIN SMALL CAPITAL LETTER U WITH STROKE] "\u1D7E" => "U" # Ṳ [LATIN CAPITAL LETTER U WITH DIAERESIS BELOW] "\u1E72" => "U" # Ṵ [LATIN CAPITAL LETTER U WITH TILDE BELOW] "\u1E74" => "U" # Ṷ [LATIN CAPITAL LETTER U WITH CIRCUMFLEX BELOW] "\u1E76" => "U" # Ṹ [LATIN CAPITAL LETTER U WITH TILDE AND ACUTE] "\u1E78" => "U" # Ṻ [LATIN CAPITAL LETTER U WITH MACRON AND DIAERESIS] "\u1E7A" => "U" # Ụ [LATIN CAPITAL LETTER U WITH DOT BELOW] "\u1EE4" => "U" # Ủ [LATIN CAPITAL LETTER U WITH HOOK ABOVE] "\u1EE6" => "U" # Ứ [LATIN CAPITAL LETTER U WITH HORN AND ACUTE] "\u1EE8" => "U" # Ừ [LATIN CAPITAL LETTER U WITH HORN AND GRAVE] "\u1EEA" => "U" # Ử [LATIN CAPITAL LETTER U WITH HORN AND HOOK ABOVE] "\u1EEC" => "U" # Ữ [LATIN CAPITAL LETTER U WITH HORN AND TILDE] "\u1EEE" => "U" # Ự [LATIN CAPITAL LETTER U WITH HORN AND DOT BELOW] "\u1EF0" => "U" # Ⓤ [CIRCLED LATIN CAPITAL LETTER U] "\u24CA" => "U" # U [FULLWIDTH LATIN CAPITAL LETTER U] "\uFF35" => "U" # ù [LATIN SMALL LETTER U WITH GRAVE] "\u00F9" => "u" # ú [LATIN SMALL LETTER U WITH ACUTE] "\u00FA" => "u" # û [LATIN SMALL LETTER U WITH CIRCUMFLEX] "\u00FB" => "u" # ü [LATIN SMALL LETTER U WITH DIAERESIS] "\u00FC" => "u" # ũ [LATIN SMALL LETTER U WITH TILDE] "\u0169" => "u" # ū [LATIN SMALL LETTER U WITH MACRON] "\u016B" => "u" # ŭ [LATIN SMALL LETTER U WITH BREVE] "\u016D" => "u" # ů [LATIN SMALL LETTER U WITH RING ABOVE] "\u016F" => "u" # ű [LATIN SMALL LETTER U WITH DOUBLE ACUTE] "\u0171" => "u" # ų [LATIN SMALL LETTER U WITH OGONEK] "\u0173" => "u" # ư [LATIN SMALL LETTER U WITH HORN] "\u01B0" => "u" # ǔ [LATIN SMALL LETTER U WITH CARON] "\u01D4" => "u" # ǖ [LATIN SMALL LETTER U WITH DIAERESIS AND MACRON] "\u01D6" => "u" # ǘ [LATIN SMALL LETTER U WITH DIAERESIS AND ACUTE] "\u01D8" => "u" # ǚ [LATIN SMALL LETTER U WITH DIAERESIS AND CARON] "\u01DA" => "u" # ǜ [LATIN SMALL LETTER U WITH DIAERESIS AND GRAVE] "\u01DC" => "u" # ȕ [LATIN SMALL LETTER U WITH DOUBLE GRAVE] "\u0215" => "u" # ȗ [LATIN SMALL LETTER U WITH INVERTED BREVE] "\u0217" => "u" # ʉ [LATIN SMALL LETTER U BAR] "\u0289" => "u" # ᵤ [LATIN SUBSCRIPT SMALL LETTER U] "\u1D64" => "u" # ᶙ [LATIN SMALL LETTER U WITH RETROFLEX HOOK] "\u1D99" => "u" # ṳ [LATIN SMALL LETTER U WITH DIAERESIS BELOW] "\u1E73" => "u" # ṵ [LATIN SMALL LETTER U WITH TILDE BELOW] "\u1E75" => "u" # ṷ [LATIN SMALL LETTER U WITH CIRCUMFLEX BELOW] "\u1E77" => "u" # ṹ [LATIN SMALL LETTER U WITH TILDE AND ACUTE] "\u1E79" => "u" # ṻ [LATIN SMALL LETTER U WITH MACRON AND DIAERESIS] "\u1E7B" => "u" # ụ [LATIN SMALL LETTER U WITH DOT BELOW] "\u1EE5" => "u" # ủ [LATIN SMALL LETTER U WITH HOOK ABOVE] "\u1EE7" => "u" # ứ [LATIN SMALL LETTER U WITH HORN AND ACUTE] "\u1EE9" => "u" # ừ [LATIN SMALL LETTER U WITH HORN AND GRAVE] "\u1EEB" => "u" # ử [LATIN SMALL LETTER U WITH HORN AND HOOK ABOVE] "\u1EED" => "u" # ữ [LATIN SMALL LETTER U WITH HORN AND TILDE] "\u1EEF" => "u" # ự [LATIN SMALL LETTER U WITH HORN AND DOT BELOW] "\u1EF1" => "u" # ⓤ [CIRCLED LATIN SMALL LETTER U] "\u24E4" => "u" # u [FULLWIDTH LATIN SMALL LETTER U] "\uFF55" => "u" # ⒰ [PARENTHESIZED LATIN SMALL LETTER U] "\u24B0" => "(u)" # ᵫ [LATIN SMALL LETTER UE] "\u1D6B" => "ue" # Ʋ [LATIN CAPITAL LETTER V WITH HOOK] "\u01B2" => "V" # Ʌ [LATIN CAPITAL LETTER TURNED V] "\u0245" => "V" # ᴠ [LATIN LETTER SMALL CAPITAL V] "\u1D20" => "V" # Ṽ [LATIN CAPITAL LETTER V WITH TILDE] "\u1E7C" => "V" # Ṿ [LATIN CAPITAL LETTER V WITH DOT BELOW] "\u1E7E" => "V" # Ỽ [LATIN CAPITAL LETTER MIDDLE-WELSH V] "\u1EFC" => "V" # Ⓥ [CIRCLED LATIN CAPITAL LETTER V] "\u24CB" => "V" # Ꝟ [LATIN CAPITAL LETTER V WITH DIAGONAL STROKE] "\uA75E" => "V" # Ꝩ [LATIN CAPITAL LETTER VEND] "\uA768" => "V" # V [FULLWIDTH LATIN CAPITAL LETTER V] "\uFF36" => "V" # ʋ [LATIN SMALL LETTER V WITH HOOK] "\u028B" => "v" # ʌ [LATIN SMALL LETTER TURNED V] "\u028C" => "v" # ᵥ [LATIN SUBSCRIPT SMALL LETTER V] "\u1D65" => "v" # ᶌ [LATIN SMALL LETTER V WITH PALATAL HOOK] "\u1D8C" => "v" # ṽ [LATIN SMALL LETTER V WITH TILDE] "\u1E7D" => "v" # ṿ [LATIN SMALL LETTER V WITH DOT BELOW] "\u1E7F" => "v" # ⓥ [CIRCLED LATIN SMALL LETTER V] "\u24E5" => "v" # ⱱ [LATIN SMALL LETTER V WITH RIGHT HOOK] "\u2C71" => "v" # ⱴ [LATIN SMALL LETTER V WITH CURL] "\u2C74" => "v" # ꝟ [LATIN SMALL LETTER V WITH DIAGONAL STROKE] "\uA75F" => "v" # v [FULLWIDTH LATIN SMALL LETTER V] "\uFF56" => "v" # Ꝡ [LATIN CAPITAL LETTER VY] "\uA760" => "VY" # ⒱ [PARENTHESIZED LATIN SMALL LETTER V] "\u24B1" => "(v)" # ꝡ [LATIN SMALL LETTER VY] "\uA761" => "vy" # Ŵ [LATIN CAPITAL LETTER W WITH CIRCUMFLEX] "\u0174" => "W" # Ƿ http://en.wikipedia.org/wiki/Wynn [LATIN CAPITAL LETTER WYNN] "\u01F7" => "W" # ᴡ [LATIN LETTER SMALL CAPITAL W] "\u1D21" => "W" # Ẁ [LATIN CAPITAL LETTER W WITH GRAVE] "\u1E80" => "W" # Ẃ [LATIN CAPITAL LETTER W WITH ACUTE] "\u1E82" => "W" # Ẅ [LATIN CAPITAL LETTER W WITH DIAERESIS] "\u1E84" => "W" # Ẇ [LATIN CAPITAL LETTER W WITH DOT ABOVE] "\u1E86" => "W" # Ẉ [LATIN CAPITAL LETTER W WITH DOT BELOW] "\u1E88" => "W" # Ⓦ [CIRCLED LATIN CAPITAL LETTER W] "\u24CC" => "W" # Ⱳ [LATIN CAPITAL LETTER W WITH HOOK] "\u2C72" => "W" # W [FULLWIDTH LATIN CAPITAL LETTER W] "\uFF37" => "W" # ŵ [LATIN SMALL LETTER W WITH CIRCUMFLEX] "\u0175" => "w" # ƿ http://en.wikipedia.org/wiki/Wynn [LATIN LETTER WYNN] "\u01BF" => "w" # ʍ [LATIN SMALL LETTER TURNED W] "\u028D" => "w" # ẁ [LATIN SMALL LETTER W WITH GRAVE] "\u1E81" => "w" # ẃ [LATIN SMALL LETTER W WITH ACUTE] "\u1E83" => "w" # ẅ [LATIN SMALL LETTER W WITH DIAERESIS] "\u1E85" => "w" # ẇ [LATIN SMALL LETTER W WITH DOT ABOVE] "\u1E87" => "w" # ẉ [LATIN SMALL LETTER W WITH DOT BELOW] "\u1E89" => "w" # ẘ [LATIN SMALL LETTER W WITH RING ABOVE] "\u1E98" => "w" # ⓦ [CIRCLED LATIN SMALL LETTER W] "\u24E6" => "w" # ⱳ [LATIN SMALL LETTER W WITH HOOK] "\u2C73" => "w" # w [FULLWIDTH LATIN SMALL LETTER W] "\uFF57" => "w" # ⒲ [PARENTHESIZED LATIN SMALL LETTER W] "\u24B2" => "(w)" # Ẋ [LATIN CAPITAL LETTER X WITH DOT ABOVE] "\u1E8A" => "X" # Ẍ [LATIN CAPITAL LETTER X WITH DIAERESIS] "\u1E8C" => "X" # Ⓧ [CIRCLED LATIN CAPITAL LETTER X] "\u24CD" => "X" # X [FULLWIDTH LATIN CAPITAL LETTER X] "\uFF38" => "X" # ᶍ [LATIN SMALL LETTER X WITH PALATAL HOOK] "\u1D8D" => "x" # ẋ [LATIN SMALL LETTER X WITH DOT ABOVE] "\u1E8B" => "x" # ẍ [LATIN SMALL LETTER X WITH DIAERESIS] "\u1E8D" => "x" # ₓ [LATIN SUBSCRIPT SMALL LETTER X] "\u2093" => "x" # ⓧ [CIRCLED LATIN SMALL LETTER X] "\u24E7" => "x" # x [FULLWIDTH LATIN SMALL LETTER X] "\uFF58" => "x" # ⒳ [PARENTHESIZED LATIN SMALL LETTER X] "\u24B3" => "(x)" # Ý [LATIN CAPITAL LETTER Y WITH ACUTE] "\u00DD" => "Y" # Ŷ [LATIN CAPITAL LETTER Y WITH CIRCUMFLEX] "\u0176" => "Y" # Ÿ [LATIN CAPITAL LETTER Y WITH DIAERESIS] "\u0178" => "Y" # Ƴ [LATIN CAPITAL LETTER Y WITH HOOK] "\u01B3" => "Y" # Ȳ [LATIN CAPITAL LETTER Y WITH MACRON] "\u0232" => "Y" # Ɏ [LATIN CAPITAL LETTER Y WITH STROKE] "\u024E" => "Y" # ʏ [LATIN LETTER SMALL CAPITAL Y] "\u028F" => "Y" # Ẏ [LATIN CAPITAL LETTER Y WITH DOT ABOVE] "\u1E8E" => "Y" # Ỳ [LATIN CAPITAL LETTER Y WITH GRAVE] "\u1EF2" => "Y" # Ỵ [LATIN CAPITAL LETTER Y WITH DOT BELOW] "\u1EF4" => "Y" # Ỷ [LATIN CAPITAL LETTER Y WITH HOOK ABOVE] "\u1EF6" => "Y" # Ỹ [LATIN CAPITAL LETTER Y WITH TILDE] "\u1EF8" => "Y" # Ỿ [LATIN CAPITAL LETTER Y WITH LOOP] "\u1EFE" => "Y" # Ⓨ [CIRCLED LATIN CAPITAL LETTER Y] "\u24CE" => "Y" # Y [FULLWIDTH LATIN CAPITAL LETTER Y] "\uFF39" => "Y" # ý [LATIN SMALL LETTER Y WITH ACUTE] "\u00FD" => "y" # ÿ [LATIN SMALL LETTER Y WITH DIAERESIS] "\u00FF" => "y" # ŷ [LATIN SMALL LETTER Y WITH CIRCUMFLEX] "\u0177" => "y" # ƴ [LATIN SMALL LETTER Y WITH HOOK] "\u01B4" => "y" # ȳ [LATIN SMALL LETTER Y WITH MACRON] "\u0233" => "y" # ɏ [LATIN SMALL LETTER Y WITH STROKE] "\u024F" => "y" # ʎ [LATIN SMALL LETTER TURNED Y] "\u028E" => "y" # ẏ [LATIN SMALL LETTER Y WITH DOT ABOVE] "\u1E8F" => "y" # ẙ [LATIN SMALL LETTER Y WITH RING ABOVE] "\u1E99" => "y" # ỳ [LATIN SMALL LETTER Y WITH GRAVE] "\u1EF3" => "y" # ỵ [LATIN SMALL LETTER Y WITH DOT BELOW] "\u1EF5" => "y" # ỷ [LATIN SMALL LETTER Y WITH HOOK ABOVE] "\u1EF7" => "y" # ỹ [LATIN SMALL LETTER Y WITH TILDE] "\u1EF9" => "y" # ỿ [LATIN SMALL LETTER Y WITH LOOP] "\u1EFF" => "y" # ⓨ [CIRCLED LATIN SMALL LETTER Y] "\u24E8" => "y" # y [FULLWIDTH LATIN SMALL LETTER Y] "\uFF59" => "y" # ⒴ [PARENTHESIZED LATIN SMALL LETTER Y] "\u24B4" => "(y)" # Ź [LATIN CAPITAL LETTER Z WITH ACUTE] "\u0179" => "Z" # Ż [LATIN CAPITAL LETTER Z WITH DOT ABOVE] "\u017B" => "Z" # Ž [LATIN CAPITAL LETTER Z WITH CARON] "\u017D" => "Z" # Ƶ [LATIN CAPITAL LETTER Z WITH STROKE] "\u01B5" => "Z" # Ȝ http://en.wikipedia.org/wiki/Yogh [LATIN CAPITAL LETTER YOGH] "\u021C" => "Z" # Ȥ [LATIN CAPITAL LETTER Z WITH HOOK] "\u0224" => "Z" # ᴢ [LATIN LETTER SMALL CAPITAL Z] "\u1D22" => "Z" # Ẑ [LATIN CAPITAL LETTER Z WITH CIRCUMFLEX] "\u1E90" => "Z" # Ẓ [LATIN CAPITAL LETTER Z WITH DOT BELOW] "\u1E92" => "Z" # Ẕ [LATIN CAPITAL LETTER Z WITH LINE BELOW] "\u1E94" => "Z" # Ⓩ [CIRCLED LATIN CAPITAL LETTER Z] "\u24CF" => "Z" # Ⱬ [LATIN CAPITAL LETTER Z WITH DESCENDER] "\u2C6B" => "Z" # Ꝣ [LATIN CAPITAL LETTER VISIGOTHIC Z] "\uA762" => "Z" # Z [FULLWIDTH LATIN CAPITAL LETTER Z] "\uFF3A" => "Z" # ź [LATIN SMALL LETTER Z WITH ACUTE] "\u017A" => "z" # ż [LATIN SMALL LETTER Z WITH DOT ABOVE] "\u017C" => "z" # ž [LATIN SMALL LETTER Z WITH CARON] "\u017E" => "z" # ƶ [LATIN SMALL LETTER Z WITH STROKE] "\u01B6" => "z" # ȝ http://en.wikipedia.org/wiki/Yogh [LATIN SMALL LETTER YOGH] "\u021D" => "z" # ȥ [LATIN SMALL LETTER Z WITH HOOK] "\u0225" => "z" # ɀ [LATIN SMALL LETTER Z WITH SWASH TAIL] "\u0240" => "z" # ʐ [LATIN SMALL LETTER Z WITH RETROFLEX HOOK] "\u0290" => "z" # ʑ [LATIN SMALL LETTER Z WITH CURL] "\u0291" => "z" # ᵶ [LATIN SMALL LETTER Z WITH MIDDLE TILDE] "\u1D76" => "z" # ᶎ [LATIN SMALL LETTER Z WITH PALATAL HOOK] "\u1D8E" => "z" # ẑ [LATIN SMALL LETTER Z WITH CIRCUMFLEX] "\u1E91" => "z" # ẓ [LATIN SMALL LETTER Z WITH DOT BELOW] "\u1E93" => "z" # ẕ [LATIN SMALL LETTER Z WITH LINE BELOW] "\u1E95" => "z" # ⓩ [CIRCLED LATIN SMALL LETTER Z] "\u24E9" => "z" # ⱬ [LATIN SMALL LETTER Z WITH DESCENDER] "\u2C6C" => "z" # ꝣ [LATIN SMALL LETTER VISIGOTHIC Z] "\uA763" => "z" # z [FULLWIDTH LATIN SMALL LETTER Z] "\uFF5A" => "z" # ⒵ [PARENTHESIZED LATIN SMALL LETTER Z] "\u24B5" => "(z)" # ⁰ [SUPERSCRIPT ZERO] "\u2070" => "0" # ₀ [SUBSCRIPT ZERO] "\u2080" => "0" # ⓪ [CIRCLED DIGIT ZERO] "\u24EA" => "0" # ⓿ [NEGATIVE CIRCLED DIGIT ZERO] "\u24FF" => "0" # 0 [FULLWIDTH DIGIT ZERO] "\uFF10" => "0" # ¹ [SUPERSCRIPT ONE] "\u00B9" => "1" # ₁ [SUBSCRIPT ONE] "\u2081" => "1" # ① [CIRCLED DIGIT ONE] "\u2460" => "1" # ⓵ [DOUBLE CIRCLED DIGIT ONE] "\u24F5" => "1" # ❶ [DINGBAT NEGATIVE CIRCLED DIGIT ONE] "\u2776" => "1" # ➀ [DINGBAT CIRCLED SANS-SERIF DIGIT ONE] "\u2780" => "1" # ➊ [DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT ONE] "\u278A" => "1" # 1 [FULLWIDTH DIGIT ONE] "\uFF11" => "1" # ⒈ [DIGIT ONE FULL STOP] "\u2488" => "1." # ⑴ [PARENTHESIZED DIGIT ONE] "\u2474" => "(1)" # ² [SUPERSCRIPT TWO] "\u00B2" => "2" # ₂ [SUBSCRIPT TWO] "\u2082" => "2" # ② [CIRCLED DIGIT TWO] "\u2461" => "2" # ⓶ [DOUBLE CIRCLED DIGIT TWO] "\u24F6" => "2" # ❷ [DINGBAT NEGATIVE CIRCLED DIGIT TWO] "\u2777" => "2" # ➁ [DINGBAT CIRCLED SANS-SERIF DIGIT TWO] "\u2781" => "2" # ➋ [DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT TWO] "\u278B" => "2" # 2 [FULLWIDTH DIGIT TWO] "\uFF12" => "2" # ⒉ [DIGIT TWO FULL STOP] "\u2489" => "2." # ⑵ [PARENTHESIZED DIGIT TWO] "\u2475" => "(2)" # ³ [SUPERSCRIPT THREE] "\u00B3" => "3" # ₃ [SUBSCRIPT THREE] "\u2083" => "3" # ③ [CIRCLED DIGIT THREE] "\u2462" => "3" # ⓷ [DOUBLE CIRCLED DIGIT THREE] "\u24F7" => "3" # ❸ [DINGBAT NEGATIVE CIRCLED DIGIT THREE] "\u2778" => "3" # ➂ [DINGBAT CIRCLED SANS-SERIF DIGIT THREE] "\u2782" => "3" # ➌ [DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT THREE] "\u278C" => "3" # 3 [FULLWIDTH DIGIT THREE] "\uFF13" => "3" # ⒊ [DIGIT THREE FULL STOP] "\u248A" => "3." # ⑶ [PARENTHESIZED DIGIT THREE] "\u2476" => "(3)" # ⁴ [SUPERSCRIPT FOUR] "\u2074" => "4" # ₄ [SUBSCRIPT FOUR] "\u2084" => "4" # ④ [CIRCLED DIGIT FOUR] "\u2463" => "4" # ⓸ [DOUBLE CIRCLED DIGIT FOUR] "\u24F8" => "4" # ❹ [DINGBAT NEGATIVE CIRCLED DIGIT FOUR] "\u2779" => "4" # ➃ [DINGBAT CIRCLED SANS-SERIF DIGIT FOUR] "\u2783" => "4" # ➍ [DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT FOUR] "\u278D" => "4" # 4 [FULLWIDTH DIGIT FOUR] "\uFF14" => "4" # ⒋ [DIGIT FOUR FULL STOP] "\u248B" => "4." # ⑷ [PARENTHESIZED DIGIT FOUR] "\u2477" => "(4)" # ⁵ [SUPERSCRIPT FIVE] "\u2075" => "5" # ₅ [SUBSCRIPT FIVE] "\u2085" => "5" # ⑤ [CIRCLED DIGIT FIVE] "\u2464" => "5" # ⓹ [DOUBLE CIRCLED DIGIT FIVE] "\u24F9" => "5" # ❺ [DINGBAT NEGATIVE CIRCLED DIGIT FIVE] "\u277A" => "5" # ➄ [DINGBAT CIRCLED SANS-SERIF DIGIT FIVE] "\u2784" => "5" # ➎ [DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT FIVE] "\u278E" => "5" # 5 [FULLWIDTH DIGIT FIVE] "\uFF15" => "5" # ⒌ [DIGIT FIVE FULL STOP] "\u248C" => "5." # ⑸ [PARENTHESIZED DIGIT FIVE] "\u2478" => "(5)" # ⁶ [SUPERSCRIPT SIX] "\u2076" => "6" # ₆ [SUBSCRIPT SIX] "\u2086" => "6" # ⑥ [CIRCLED DIGIT SIX] "\u2465" => "6" # ⓺ [DOUBLE CIRCLED DIGIT SIX] "\u24FA" => "6" # ❻ [DINGBAT NEGATIVE CIRCLED DIGIT SIX] "\u277B" => "6" # ➅ [DINGBAT CIRCLED SANS-SERIF DIGIT SIX] "\u2785" => "6" # ➏ [DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT SIX] "\u278F" => "6" # 6 [FULLWIDTH DIGIT SIX] "\uFF16" => "6" # ⒍ [DIGIT SIX FULL STOP] "\u248D" => "6." # ⑹ [PARENTHESIZED DIGIT SIX] "\u2479" => "(6)" # ⁷ [SUPERSCRIPT SEVEN] "\u2077" => "7" # ₇ [SUBSCRIPT SEVEN] "\u2087" => "7" # ⑦ [CIRCLED DIGIT SEVEN] "\u2466" => "7" # ⓻ [DOUBLE CIRCLED DIGIT SEVEN] "\u24FB" => "7" # ❼ [DINGBAT NEGATIVE CIRCLED DIGIT SEVEN] "\u277C" => "7" # ➆ [DINGBAT CIRCLED SANS-SERIF DIGIT SEVEN] "\u2786" => "7" # ➐ [DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT SEVEN] "\u2790" => "7" # 7 [FULLWIDTH DIGIT SEVEN] "\uFF17" => "7" # ⒎ [DIGIT SEVEN FULL STOP] "\u248E" => "7." # ⑺ [PARENTHESIZED DIGIT SEVEN] "\u247A" => "(7)" # ⁸ [SUPERSCRIPT EIGHT] "\u2078" => "8" # ₈ [SUBSCRIPT EIGHT] "\u2088" => "8" # ⑧ [CIRCLED DIGIT EIGHT] "\u2467" => "8" # ⓼ [DOUBLE CIRCLED DIGIT EIGHT] "\u24FC" => "8" # ❽ [DINGBAT NEGATIVE CIRCLED DIGIT EIGHT] "\u277D" => "8" # ➇ [DINGBAT CIRCLED SANS-SERIF DIGIT EIGHT] "\u2787" => "8" # ➑ [DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT EIGHT] "\u2791" => "8" # 8 [FULLWIDTH DIGIT EIGHT] "\uFF18" => "8" # ⒏ [DIGIT EIGHT FULL STOP] "\u248F" => "8." # ⑻ [PARENTHESIZED DIGIT EIGHT] "\u247B" => "(8)" # ⁹ [SUPERSCRIPT NINE] "\u2079" => "9" # ₉ [SUBSCRIPT NINE] "\u2089" => "9" # ⑨ [CIRCLED DIGIT NINE] "\u2468" => "9" # ⓽ [DOUBLE CIRCLED DIGIT NINE] "\u24FD" => "9" # ❾ [DINGBAT NEGATIVE CIRCLED DIGIT NINE] "\u277E" => "9" # ➈ [DINGBAT CIRCLED SANS-SERIF DIGIT NINE] "\u2788" => "9" # ➒ [DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT NINE] "\u2792" => "9" # 9 [FULLWIDTH DIGIT NINE] "\uFF19" => "9" # ⒐ [DIGIT NINE FULL STOP] "\u2490" => "9." # ⑼ [PARENTHESIZED DIGIT NINE] "\u247C" => "(9)" # ⑩ [CIRCLED NUMBER TEN] "\u2469" => "10" # ⓾ [DOUBLE CIRCLED NUMBER TEN] "\u24FE" => "10" # ❿ [DINGBAT NEGATIVE CIRCLED NUMBER TEN] "\u277F" => "10" # ➉ [DINGBAT CIRCLED SANS-SERIF NUMBER TEN] "\u2789" => "10" # ➓ [DINGBAT NEGATIVE CIRCLED SANS-SERIF NUMBER TEN] "\u2793" => "10" # ⒑ [NUMBER TEN FULL STOP] "\u2491" => "10." # ⑽ [PARENTHESIZED NUMBER TEN] "\u247D" => "(10)" # ⑪ [CIRCLED NUMBER ELEVEN] "\u246A" => "11" # ⓫ [NEGATIVE CIRCLED NUMBER ELEVEN] "\u24EB" => "11" # ⒒ [NUMBER ELEVEN FULL STOP] "\u2492" => "11." # ⑾ [PARENTHESIZED NUMBER ELEVEN] "\u247E" => "(11)" # ⑫ [CIRCLED NUMBER TWELVE] "\u246B" => "12" # ⓬ [NEGATIVE CIRCLED NUMBER TWELVE] "\u24EC" => "12" # ⒓ [NUMBER TWELVE FULL STOP] "\u2493" => "12." # ⑿ [PARENTHESIZED NUMBER TWELVE] "\u247F" => "(12)" # ⑬ [CIRCLED NUMBER THIRTEEN] "\u246C" => "13" # ⓭ [NEGATIVE CIRCLED NUMBER THIRTEEN] "\u24ED" => "13" # ⒔ [NUMBER THIRTEEN FULL STOP] "\u2494" => "13." # ⒀ [PARENTHESIZED NUMBER THIRTEEN] "\u2480" => "(13)" # ⑭ [CIRCLED NUMBER FOURTEEN] "\u246D" => "14" # ⓮ [NEGATIVE CIRCLED NUMBER FOURTEEN] "\u24EE" => "14" # ⒕ [NUMBER FOURTEEN FULL STOP] "\u2495" => "14." # ⒁ [PARENTHESIZED NUMBER FOURTEEN] "\u2481" => "(14)" # ⑮ [CIRCLED NUMBER FIFTEEN] "\u246E" => "15" # ⓯ [NEGATIVE CIRCLED NUMBER FIFTEEN] "\u24EF" => "15" # ⒖ [NUMBER FIFTEEN FULL STOP] "\u2496" => "15." # ⒂ [PARENTHESIZED NUMBER FIFTEEN] "\u2482" => "(15)" # ⑯ [CIRCLED NUMBER SIXTEEN] "\u246F" => "16" # ⓰ [NEGATIVE CIRCLED NUMBER SIXTEEN] "\u24F0" => "16" # ⒗ [NUMBER SIXTEEN FULL STOP] "\u2497" => "16." # ⒃ [PARENTHESIZED NUMBER SIXTEEN] "\u2483" => "(16)" # ⑰ [CIRCLED NUMBER SEVENTEEN] "\u2470" => "17" # ⓱ [NEGATIVE CIRCLED NUMBER SEVENTEEN] "\u24F1" => "17" # ⒘ [NUMBER SEVENTEEN FULL STOP] "\u2498" => "17." # ⒄ [PARENTHESIZED NUMBER SEVENTEEN] "\u2484" => "(17)" # ⑱ [CIRCLED NUMBER EIGHTEEN] "\u2471" => "18" # ⓲ [NEGATIVE CIRCLED NUMBER EIGHTEEN] "\u24F2" => "18" # ⒙ [NUMBER EIGHTEEN FULL STOP] "\u2499" => "18." # ⒅ [PARENTHESIZED NUMBER EIGHTEEN] "\u2485" => "(18)" # ⑲ [CIRCLED NUMBER NINETEEN] "\u2472" => "19" # ⓳ [NEGATIVE CIRCLED NUMBER NINETEEN] "\u24F3" => "19" # ⒚ [NUMBER NINETEEN FULL STOP] "\u249A" => "19." # ⒆ [PARENTHESIZED NUMBER NINETEEN] "\u2486" => "(19)" # ⑳ [CIRCLED NUMBER TWENTY] "\u2473" => "20" # ⓴ [NEGATIVE CIRCLED NUMBER TWENTY] "\u24F4" => "20" # ⒛ [NUMBER TWENTY FULL STOP] "\u249B" => "20." # ⒇ [PARENTHESIZED NUMBER TWENTY] "\u2487" => "(20)" # « [LEFT-POINTING DOUBLE ANGLE QUOTATION MARK] "\u00AB" => "\"" # » [RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK] "\u00BB" => "\"" # “ [LEFT DOUBLE QUOTATION MARK] "\u201C" => "\"" # ” [RIGHT DOUBLE QUOTATION MARK] "\u201D" => "\"" # „ [DOUBLE LOW-9 QUOTATION MARK] "\u201E" => "\"" # ″ [DOUBLE PRIME] "\u2033" => "\"" # ‶ [REVERSED DOUBLE PRIME] "\u2036" => "\"" # ❝ [HEAVY DOUBLE TURNED COMMA QUOTATION MARK ORNAMENT] "\u275D" => "\"" # ❞ [HEAVY DOUBLE COMMA QUOTATION MARK ORNAMENT] "\u275E" => "\"" # ❮ [HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT] "\u276E" => "\"" # ❯ [HEAVY RIGHT-POINTING ANGLE QUOTATION MARK ORNAMENT] "\u276F" => "\"" # " [FULLWIDTH QUOTATION MARK] "\uFF02" => "\"" # ‘ [LEFT SINGLE QUOTATION MARK] "\u2018" => "\'" # ’ [RIGHT SINGLE QUOTATION MARK] "\u2019" => "\'" # ‚ [SINGLE LOW-9 QUOTATION MARK] "\u201A" => "\'" # ‛ [SINGLE HIGH-REVERSED-9 QUOTATION MARK] "\u201B" => "\'" # ′ [PRIME] "\u2032" => "\'" # ‵ [REVERSED PRIME] "\u2035" => "\'" # ‹ [SINGLE LEFT-POINTING ANGLE QUOTATION MARK] "\u2039" => "\'" # › [SINGLE RIGHT-POINTING ANGLE QUOTATION MARK] "\u203A" => "\'" # ❛ [HEAVY SINGLE TURNED COMMA QUOTATION MARK ORNAMENT] "\u275B" => "\'" # ❜ [HEAVY SINGLE COMMA QUOTATION MARK ORNAMENT] "\u275C" => "\'" # ' [FULLWIDTH APOSTROPHE] "\uFF07" => "\'" # ‐ [HYPHEN] "\u2010" => "-" # ‑ [NON-BREAKING HYPHEN] "\u2011" => "-" # ‒ [FIGURE DASH] "\u2012" => "-" # – [EN DASH] "\u2013" => "-" # — [EM DASH] "\u2014" => "-" # ⁻ [SUPERSCRIPT MINUS] "\u207B" => "-" # ₋ [SUBSCRIPT MINUS] "\u208B" => "-" # - [FULLWIDTH HYPHEN-MINUS] "\uFF0D" => "-" # ⁅ [LEFT SQUARE BRACKET WITH QUILL] "\u2045" => "[" # ❲ [LIGHT LEFT TORTOISE SHELL BRACKET ORNAMENT] "\u2772" => "[" # [ [FULLWIDTH LEFT SQUARE BRACKET] "\uFF3B" => "[" # ⁆ [RIGHT SQUARE BRACKET WITH QUILL] "\u2046" => "]" # ❳ [LIGHT RIGHT TORTOISE SHELL BRACKET ORNAMENT] "\u2773" => "]" # ] [FULLWIDTH RIGHT SQUARE BRACKET] "\uFF3D" => "]" # ⁽ [SUPERSCRIPT LEFT PARENTHESIS] "\u207D" => "(" # ₍ [SUBSCRIPT LEFT PARENTHESIS] "\u208D" => "(" # ❨ [MEDIUM LEFT PARENTHESIS ORNAMENT] "\u2768" => "(" # ❪ [MEDIUM FLATTENED LEFT PARENTHESIS ORNAMENT] "\u276A" => "(" # ( [FULLWIDTH LEFT PARENTHESIS] "\uFF08" => "(" # ⸨ [LEFT DOUBLE PARENTHESIS] "\u2E28" => "((" # ⁾ [SUPERSCRIPT RIGHT PARENTHESIS] "\u207E" => ")" # ₎ [SUBSCRIPT RIGHT PARENTHESIS] "\u208E" => ")" # ❩ [MEDIUM RIGHT PARENTHESIS ORNAMENT] "\u2769" => ")" # ❫ [MEDIUM FLATTENED RIGHT PARENTHESIS ORNAMENT] "\u276B" => ")" # ) [FULLWIDTH RIGHT PARENTHESIS] "\uFF09" => ")" # ⸩ [RIGHT DOUBLE PARENTHESIS] "\u2E29" => "))" # ❬ [MEDIUM LEFT-POINTING ANGLE BRACKET ORNAMENT] "\u276C" => "<" # ❰ [HEAVY LEFT-POINTING ANGLE BRACKET ORNAMENT] "\u2770" => "<" # < [FULLWIDTH LESS-THAN SIGN] "\uFF1C" => "<" # ❭ [MEDIUM RIGHT-POINTING ANGLE BRACKET ORNAMENT] "\u276D" => ">" # ❱ [HEAVY RIGHT-POINTING ANGLE BRACKET ORNAMENT] "\u2771" => ">" # > [FULLWIDTH GREATER-THAN SIGN] "\uFF1E" => ">" # ❴ [MEDIUM LEFT CURLY BRACKET ORNAMENT] "\u2774" => "{" # { [FULLWIDTH LEFT CURLY BRACKET] "\uFF5B" => "{" # ❵ [MEDIUM RIGHT CURLY BRACKET ORNAMENT] "\u2775" => "}" # } [FULLWIDTH RIGHT CURLY BRACKET] "\uFF5D" => "}" # ⁺ [SUPERSCRIPT PLUS SIGN] "\u207A" => "+" # ₊ [SUBSCRIPT PLUS SIGN] "\u208A" => "+" # + [FULLWIDTH PLUS SIGN] "\uFF0B" => "+" # ⁼ [SUPERSCRIPT EQUALS SIGN] "\u207C" => "=" # ₌ [SUBSCRIPT EQUALS SIGN] "\u208C" => "=" # = [FULLWIDTH EQUALS SIGN] "\uFF1D" => "=" # ! [FULLWIDTH EXCLAMATION MARK] "\uFF01" => "!" # ‼ [DOUBLE EXCLAMATION MARK] "\u203C" => "!!" # ⁉ [EXCLAMATION QUESTION MARK] "\u2049" => "!?" # # [FULLWIDTH NUMBER SIGN] "\uFF03" => "#" # $ [FULLWIDTH DOLLAR SIGN] "\uFF04" => "$" # ⁒ [COMMERCIAL MINUS SIGN] "\u2052" => "%" # % [FULLWIDTH PERCENT SIGN] "\uFF05" => "%" # & [FULLWIDTH AMPERSAND] "\uFF06" => "&" # ⁎ [LOW ASTERISK] "\u204E" => "*" # * [FULLWIDTH ASTERISK] "\uFF0A" => "*" # , [FULLWIDTH COMMA] "\uFF0C" => "," # . [FULLWIDTH FULL STOP] "\uFF0E" => "." # ⁄ [FRACTION SLASH] "\u2044" => "/" # / [FULLWIDTH SOLIDUS] "\uFF0F" => "/" # : [FULLWIDTH COLON] "\uFF1A" => ":" # ⁏ [REVERSED SEMICOLON] "\u204F" => ";" # ; [FULLWIDTH SEMICOLON] "\uFF1B" => ";" # ? [FULLWIDTH QUESTION MARK] "\uFF1F" => "?" # ⁇ [DOUBLE QUESTION MARK] "\u2047" => "??" # ⁈ [QUESTION EXCLAMATION MARK] "\u2048" => "?!" # @ [FULLWIDTH COMMERCIAL AT] "\uFF20" => "@" # \ [FULLWIDTH REVERSE SOLIDUS] "\uFF3C" => "\\" # ‸ [CARET] "\u2038" => "^" # ^ [FULLWIDTH CIRCUMFLEX ACCENT] "\uFF3E" => "^" # _ [FULLWIDTH LOW LINE] "\uFF3F" => "_" # ⁓ [SWUNG DASH] "\u2053" => "~" # ~ [FULLWIDTH TILDE] "\uFF5E" => "~" ################################################################ # Below is the Perl script used to generate the above mappings # # from ASCIIFoldingFilter.java: # ################################################################ # # #!/usr/bin/perl # # use warnings; # use strict; # # my @source_chars = (); # my @source_char_descriptions = (); # my $target = ''; # # while (<>) { # if (/case\s+'(\\u[A-F0-9]+)':\s*\/\/\s*(.*)/i) { # push @source_chars, $1; # push @source_char_descriptions, $2; # next; # } # if (/output\[[^\]]+\]\s*=\s*'(\\'|\\\\|.)'/) { # $target .= $1; # next; # } # if (/break;/) { # $target = "\\\"" if ($target eq '"'); # for my $source_char_num (0..$#source_chars) { # print "# $source_char_descriptions[$source_char_num]\n"; # print "\"$source_chars[$source_char_num]\" => \"$target\"\n\n"; # } # @source_chars = (); # @source_char_descriptions = (); # $target = ''; # } # } ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/mapping-ISOLatin1Accent.txt ================================================ # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Syntax: # "source" => "target" # "source".length() > 0 (source cannot be empty.) # "target".length() >= 0 (target can be empty.) # example: # "À" => "A" # "\u00C0" => "A" # "\u00C0" => "\u0041" # "ß" => "ss" # "\t" => " " # "\n" => "" # À => A "\u00C0" => "A" # Á => A "\u00C1" => "A" #  => A "\u00C2" => "A" # à => A "\u00C3" => "A" # Ä => A "\u00C4" => "A" # Å => A "\u00C5" => "A" # Æ => AE "\u00C6" => "AE" # Ç => C "\u00C7" => "C" # È => E "\u00C8" => "E" # É => E "\u00C9" => "E" # Ê => E "\u00CA" => "E" # Ë => E "\u00CB" => "E" # Ì => I "\u00CC" => "I" # Í => I "\u00CD" => "I" # Î => I "\u00CE" => "I" # Ï => I "\u00CF" => "I" # IJ => IJ "\u0132" => "IJ" # Ð => D "\u00D0" => "D" # Ñ => N "\u00D1" => "N" # Ò => O "\u00D2" => "O" # Ó => O "\u00D3" => "O" # Ô => O "\u00D4" => "O" # Õ => O "\u00D5" => "O" # Ö => O "\u00D6" => "O" # Ø => O "\u00D8" => "O" # Œ => OE "\u0152" => "OE" # Þ "\u00DE" => "TH" # Ù => U "\u00D9" => "U" # Ú => U "\u00DA" => "U" # Û => U "\u00DB" => "U" # Ü => U "\u00DC" => "U" # Ý => Y "\u00DD" => "Y" # Ÿ => Y "\u0178" => "Y" # à => a "\u00E0" => "a" # á => a "\u00E1" => "a" # â => a "\u00E2" => "a" # ã => a "\u00E3" => "a" # ä => a "\u00E4" => "a" # å => a "\u00E5" => "a" # æ => ae "\u00E6" => "ae" # ç => c "\u00E7" => "c" # è => e "\u00E8" => "e" # é => e "\u00E9" => "e" # ê => e "\u00EA" => "e" # ë => e "\u00EB" => "e" # ì => i "\u00EC" => "i" # í => i "\u00ED" => "i" # î => i "\u00EE" => "i" # ï => i "\u00EF" => "i" # ij => ij "\u0133" => "ij" # ð => d "\u00F0" => "d" # ñ => n "\u00F1" => "n" # ò => o "\u00F2" => "o" # ó => o "\u00F3" => "o" # ô => o "\u00F4" => "o" # õ => o "\u00F5" => "o" # ö => o "\u00F6" => "o" # ø => o "\u00F8" => "o" # œ => oe "\u0153" => "oe" # ß => ss "\u00DF" => "ss" # þ => th "\u00FE" => "th" # ù => u "\u00F9" => "u" # ú => u "\u00FA" => "u" # û => u "\u00FB" => "u" # ü => u "\u00FC" => "u" # ý => y "\u00FD" => "y" # ÿ => y "\u00FF" => "y" # ff => ff "\uFB00" => "ff" # fi => fi "\uFB01" => "fi" # fl => fl "\uFB02" => "fl" # ffi => ffi "\uFB03" => "ffi" # ffl => ffl "\uFB04" => "ffl" # ſt => ft "\uFB05" => "ft" # st => st "\uFB06" => "st" ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/protwords.txt ================================================ # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. #----------------------------------------------------------------------- # Use a protected word file to protect against the stemmer reducing two # unrelated words to the same base word. # Some non-words that normally won't be encountered, # just to test that they won't be stemmed. dontstems zwhacky ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/schema.xml ================================================ id ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/scripts.conf ================================================ # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. user= solr_hostname=localhost solr_port=8983 rsyncd_port=18983 data_dir= webapp_name=solr master_host= master_data_dir= master_status_dir= ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/solrconfig.xml ================================================ LUCENE_43 ${solr.data.dir:} ${solr.lock.type:native} ${solr.ulog.dir:} 15000 false 1024 true 20 200 static firstSearcher warming in solrconfig.xml false 2 explicit 10 rel explicit json true rel true json true explicit velocity browse layout Solritas edismax text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0 manu^1.1 cat^1.4 title^10.0 description^5.0 keywords^5.0 author^2.0 resourcename^1.0 rel 100% *:* 10 *,score text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0 manu^1.1 cat^1.4 title^10.0 description^5.0 keywords^5.0 author^2.0 resourcename^1.0 text,features,name,sku,id,manu,cat,title,description,keywords,author,resourcename 3 on cat manu_exact content_type author_s ipod GB 1 cat,inStock after price 0 600 50 popularity 0 10 3 manufacturedate_dt NOW/YEAR-10YEARS NOW +1YEAR before after on content features title name html <b> </b> 0 title 0 name 3 200 content 750 on false 5 2 5 true true 5 3 spellcheck application/json application/csv true ignored_ true links ignored_ solrpingquery all explicit true text_general default rel solr.DirectSolrSpellChecker internal 0.5 2 1 5 4 0.01 wordbreak solr.WordBreakSolrSpellChecker name true true 10 rel default wordbreak on true 10 5 5 true true 10 5 spellcheck rel true tvComponent default org.carrot2.clustering.lingo.LingoClusteringAlgorithm 20 clustering/carrot2 ENGLISH stc org.carrot2.clustering.stc.STCClusteringAlgorithm true default true name id features true false edismax text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0 manu^1.1 cat^1.4 *:* 10 *,score clustering true false terms string elevate.xml explicit rel elevator 100 70 0.5 [-\w ,/\n\"']{20,200} ]]> ]]> ,, ,, ,, ,, ,]]> ]]> 10 .,!? WORD en US text/plain; charset=UTF-8 5 *:* ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/spellings.txt ================================================ pizza history ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/stopwords.txt ================================================ # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/synonyms.txt ================================================ # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. #----------------------------------------------------------------------- #some test synonym mappings unlikely to appear in real input text aaafoo => aaabar bbbfoo => bbbfoo bbbbar cccfoo => cccbar cccbaz fooaaa,baraaa,bazaaa # Some synonym groups specific to this example GB,gib,gigabyte,gigabytes MB,mib,megabyte,megabytes Television, Televisions, TV, TVs #notice we use "gib" instead of "GiB" so any WordDelimiterFilter coming #after us won't split it into two words. # Synonym mappings can be used for spelling correction too pixima => pixma ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/update-script.js ================================================ /* This is a basic skeleton JavaScript update processor. In order for this to be executed, it must be properly wired into solrconfig.xml; by default it is commented out in the example solrconfig.xml and must be uncommented to be enabled. See http://wiki.apache.org/solr/ScriptUpdateProcessor for more details. */ function processAdd(cmd) { doc = cmd.solrDoc; // org.apache.solr.common.SolrInputDocument id = doc.getFieldValue("id"); logger.info("update-script#processAdd: id=" + id); // Set a field value: // doc.setField("foo_s", "whatever"); // Get a configuration parameter: // config_param = params.get('config_param'); // "params" only exists if processor configured with // Get a request parameter: // some_param = req.getParams().get("some_param") // Add a field of field names that match a pattern: // - Potentially useful to determine the fields/attributes represented in a result set, via faceting on field_name_ss // field_names = doc.getFieldNames().toArray(); // for(i=0; i < field_names.length; i++) { // field_name = field_names[i]; // if (/attr_.*/.test(field_name)) { doc.addField("attribute_ss", field_names[i]); } // } } function processDelete(cmd) { // no-op } function processMergeIndexes(cmd) { // no-op } function processCommit(cmd) { // no-op } function processRollback(cmd) { // no-op } function finish() { // no-op } ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/velocity/VM_global_library.vm ================================================ #macro(param $key)$request.params.get($key)#end #macro(url_root)/solr#end ## TODO: s/url_for_solr/url_for_core/ and s/url_root/url_for_solr/ #macro(core_name)$request.core.name#end #macro(url_for_solr)#{url_root}#if($request.core.name != "")/$request.core.name#end#end #macro(url_for_home)#url_for_solr/browse#end #macro(q)&q=$!{esc.url($params.get('q'))}#end #macro(fqs $p)#foreach($fq in $p)#if($velocityCount>1)&#{end}fq=$esc.url($fq)#end#end #macro(debug)#if($request.params.get('debugQuery'))&debugQuery=true#end#end #macro(boostPrice)#if($request.params.get('bf') == 'price')&bf=price#end#end #macro(annotate)#if($request.params.get('annotateBrowse'))&annotateBrowse=true#end#end #macro(annTitle $msg)#if($annotate == true)title="$msg"#end#end #macro(spatial)#if($request.params.get('sfield'))&sfield=store#end#if($request.params.get('pt'))&pt=$request.params.get('pt')#end#if($request.params.get('d'))&d=$request.params.get('d')#end#end #macro(qOpts)#set($queryOpts = $request.params.get("queryOpts"))#if($queryOpts && $queryOpts != "")&queryOpts=$queryOpts#end#end #macro(group)#if($request.params.getBool("group") == true)&group=true#end#if($request.params.get("group.field"))#foreach($grp in $request.params.getParams('group.field'))&group.field=$grp#end#end#end #macro(sort $p)#if($p)#foreach($s in $p)&sort=$esc.url($s)#end#end#end #macro(lensNoQ)?#if($request.params.getParams('fq') and $list.size($request.params.getParams('fq')) > 0)&#fqs($request.params.getParams('fq'))#end#sort($request.params.getParams('sort'))#debug#boostPrice#annotate#spatial#qOpts#group#end #macro(lens)#lensNoQ#q#end #macro(url_for_lens)#{url_for_home}#lens#end #macro(url_for_start $start)#url_for_home#lens&start=$start#end #macro(url_for_filters $p)#url_for_home?#q#boostPrice#spatial#qOpts#if($list.size($p) > 0)&#fqs($p)#end#debug#end #macro(url_for_nested_facet_query $field)#url_for_home#lens&fq=$esc.url($field)#end ## TODO: convert to use {!raw f=$field}$value (with escaping of course) #macro(url_for_facet_filter $field $value)#url_for_home#lens&fq=$esc.url($field):%22$esc.url($value)%22#end #macro(url_for_facet_date_filter $field $value)#url_for_home#lens&fq=$esc.url($field):$esc.url($value)#end #macro(url_for_facet_range_filter $field $value)#url_for_home#lens&fq=$esc.url($field):$esc.url($value)#end #macro(link_to_previous_page $text) #if($page.current_page_number > 1) #set($prev_start = $page.start - $page.results_per_page) $text #end #end #macro(link_to_next_page $text) #if($page.current_page_number < $page.page_count) #set($next_start = $page.start + $page.results_per_page) $text #end #end #macro(link_to_page $page_number $text) #if($page_number == $page.current_page_number) $text #else #if($page_number <= $page.page_count) #set($page_start = $page_number * $page.results_per_page - $page.results_per_page) $text #end #end #end #macro(display_facet_query $field, $display, $fieldName) #if($field.size() > 0) $display
    #foreach ($facet in $field) #if ($facet.value > 0) #set($facetURL = "#url_for_nested_facet_query($facet.key)") #if ($facetURL != '')
  • $facet.key ($facet.value)
  • #end #end #end
#end #end #macro(display_facet_range $field, $display, $fieldName, $start, $end, $gap, $before, $after) $display
    #if($before && $before != "") #set($value = "[* TO " + "#format_value($start)" + "}") #set($facetURL = "#url_for_facet_range_filter($fieldName, $value)")
  • Less than #format_value($start) ($before)
  • #end #foreach ($facet in $field) #set($rangeEnd = "#range_get_to_value($facet.key, $gap)") #set($value = "[" + $facet.key + " TO " + $rangeEnd + "}") #set($facetURL = "#url_for_facet_range_filter($fieldName, $value)") #if ($facetURL != '')
  • $facet.key - #format_value($rangeEnd) ($facet.value)
  • #end #end #if($end && $end != "" && $after > 0) #set($value = "[" + "#format_value($end)" + " TO *}") #set($facetURL = "#url_for_facet_range_filter($fieldName, $value)")
  • More than #format_value($end) ($after)
  • #end
#end ## $pivots is a list of facet_pivot #macro(display_facet_pivot $pivots, $display) #if($pivots.size() > 0) $display #end #end #macro(field $f) #if($response.response.highlighting.get($docId).get($f).get(0)) #set($pad = "") #foreach($v in $response.response.highlighting.get($docId).get($f)) $pad$v## #set($pad = " ... ") #end #else #foreach($v in $doc.getFieldValues($f)) $v## #end #end #end #macro(utc_date $theDate) $date.format("yyyy-MM-dd'T'HH:mm:ss'Z'",$theDate,$date.getLocale(),$date.getTimeZone().getTimeZone("UTC"))## #end #macro(format_value $val) #if(${val.class.name} == "java.util.Date") #utc_date($val)## #else $val## #end #end #macro(range_get_to_value $inval, $gapval) #if(${gapval.class.name} == "java.lang.String") $inval$gapval## #elseif(${gapval.class.name} == "java.lang.Float" || ${inval.class.name} == "java.lang.Float") $math.toDouble($math.add($inval,$gapval))## #else $math.add($inval,$gapval)## #end #end ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/velocity/browse.vm ================================================ #set($searcher=$request.searcher) #set($params=$request.params) #set($clusters = $response.response.clusters) #set($mltResults = $response.response.get("moreLikeThis")) #set($annotate = $params.get("annotateBrowse")) #parse('query.vm') #parse('did_you_mean.vm')
#if(${response.response.error.code})

ERROR ${response.response.error.code}

${response.response.error.msg} #end
#if($response.response.get('grouped')) #foreach($grouping in $response.response.get('grouped')) #parse("hitGrouped.vm") #end #else #foreach($doc in $response.results) #parse("hit.vm") #end #end
================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/velocity/cluster.vm ================================================

Clusters

Run Solr with java -Dsolr.clustering.enabled=true -jar start.jar to see results
================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/velocity/clusterResults.vm ================================================ #foreach ($clusters in $response.response.clusters) #set($labels = $clusters.get('labels')) #set($docs = $clusters.get('docs'))

#foreach ($label in $labels)$label#if( $foreach.hasNext ),#end#end

    #foreach ($cluDoc in $docs)
  1. $cluDoc
  2. #end
#end ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/velocity/debug.vm ================================================ #if($params.getBool("debugQuery",false)) toggle explain
$response.getExplainMap().get($doc.getFirstValue('id'))
toggle all fields #foreach($fieldname in $doc.fieldNames)
$fieldname : #foreach($value in $doc.getFieldValues($fieldname)) $esc.html($value) #end #end
#end ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/velocity/did_you_mean.vm ================================================ #set($dym = $response.response.spellcheck.suggestions.collation.collationQuery) #if($dym) Did you mean $esc.html($dym)? #end ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/velocity/facet_fields.vm ================================================ #if($response.facetFields)

Field Facets

#foreach($field in $response.facetFields) ## Hide facets without value #if($field.values.size() > 0) $field.name
    #foreach($facet in $field.values)
  • $facet.name ($facet.count)
  • #end
#end #end #end ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/velocity/facet_pivot.vm ================================================

Pivot Facets

#set($pivot = $response.response.facet_counts.facet_pivot) #display_facet_pivot($pivot, "") ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/velocity/facet_queries.vm ================================================ #set($field = $response.response.facet_counts.facet_queries)

Query Facets

#display_facet_query($field, "", "") ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/velocity/facet_ranges.vm ================================================

Range Facets

#foreach ($field in $response.response.facet_counts.facet_ranges) ## Hide facets without value #if($field.value.counts.size() > 0) #set($name = $field.key) #set($display = $name) #set($f = $field.value.counts) #set($start = $field.value.start) #set($end = $field.value.end) #set($gap = $field.value.gap) #set($before = $field.value.before) #set($after = $field.value.after) #display_facet_range($f, $display, $name, $start, $end, $gap, $before, $after) #end #end ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/velocity/facets.vm ================================================ #parse('facet_fields.vm') #parse('facet_queries.vm') #parse('facet_ranges.vm') #parse('facet_pivot.vm') #parse('cluster.vm') ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/velocity/footer.vm ================================================
Options: #if($request.params.get('debugQuery')) disable debug #else enable debug #end #if($annotate) disable annotation #else enable annotation #end XML
Documentation: Solr Home Page, Solr Wiki
Disclaimer: The locations displayed in this demonstration are purely fictional. It is more than likely that no store with the items listed actually exists at that location!
================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/velocity/head.vm ================================================ ## An example of using an arbitrary request parameter #param('title') ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/velocity/header.vm ================================================ ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/velocity/hit.vm ================================================ #set($docId = $doc.getFieldValue('id'))
#if($doc.getFieldValue('name')) #parse("product-doc.vm") #elseif($doc.getFieldValue('compName_s')) #parse("join-doc.vm") #else #parse("richtext-doc.vm") #end
================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/velocity/hitGrouped.vm ================================================
$grouping.key
Total Matches in Group: $grouping.value.matches
#foreach ($group in $grouping.value.groups)
$group.groupValue ($group.doclist.numFound)
#foreach ($doc in $group.doclist) #set($docId = $doc.getFieldValue('id')) #if($doc.getFieldValue('name')) #parse("product-doc.vm") #elseif($doc.getFieldValue('compName_s')) #parse("join-doc.vm") #else #parse("richtext-doc.vm") #end #end
#end
#if($params.getBool("debugQuery",false)) toggle explain
$response.getExplainMap().get($doc.getFirstValue('id'))
#end ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/velocity/join-doc.vm ================================================
#field('compName_s')
Id: #field('id') (company-details document for join)
Address: #field('address_s')
#parse('debug.vm') ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/velocity/jquery.autocomplete.css ================================================ .ac_results { padding: 0px; border: 1px solid black; background-color: white; overflow: hidden; z-index: 99999; } .ac_results ul { width: 100%; list-style-position: outside; list-style: none; padding: 0; margin: 0; } .ac_results li { margin: 0px; padding: 2px 5px; cursor: default; display: block; /* if width will be 100% horizontal scrollbar will apear when scroll mode will be used */ /*width: 100%;*/ font: menu; font-size: 12px; /* it is very important, if line-height not setted or setted in relative units scroll will be broken in firefox */ line-height: 16px; overflow: hidden; } .ac_loading { background: white url('indicator.gif') right center no-repeat; } .ac_odd { background-color: #eee; } .ac_over { background-color: #0A246A; color: white; } ================================================ FILE: oqa-solr/paraphrase/solr/paraphrase/conf/velocity/jquery.autocomplete.js ================================================ /* * Autocomplete - jQuery plugin 1.1pre * * Copyright (c) 2007 Dylan Verheul, Dan G. Switzer, Anjesh Tuladhar, Jörn Zaefferer * * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html * * Revision: $Id: jquery.autocomplete.js 5785 2008-07-12 10:37:33Z joern.zaefferer $ * */ ;(function($) { $.fn.extend({ autocomplete: function(urlOrData, options) { var isUrl = typeof urlOrData == "string"; options = $.extend({}, $.Autocompleter.defaults, { url: isUrl ? urlOrData : null, data: isUrl ? null : urlOrData, delay: isUrl ? $.Autocompleter.defaults.delay : 10, max: options && !options.scroll ? 10 : 150 }, options); // if highlight is set to false, replace it with a do-nothing function options.highlight = options.highlight || function(value) { return value; }; // if the formatMatch option is not specified, then use formatItem for backwards compatibility options.formatMatch = options.formatMatch || options.formatItem; return this.each(function() { new $.Autocompleter(this, options); }); }, result: function(handler) { return this.bind("result", handler); }, search: function(handler) { return this.trigger("search", [handler]); }, flushCache: function() { return this.trigger("flushCache"); }, setOptions: function(options){ return this.trigger("setOptions", [options]); }, unautocomplete: function() { return this.trigger("unautocomplete"); } }); $.Autocompleter = function(input, options) { var KEY = { UP: 38, DOWN: 40, DEL: 46, TAB: 9, RETURN: 13, ESC: 27, COMMA: 188, PAGEUP: 33, PAGEDOWN: 34, BACKSPACE: 8 }; // Create $ object for input element var $input = $(input).attr("autocomplete", "off").addClass(options.inputClass); var timeout; var previousValue = ""; var cache = $.Autocompleter.Cache(options); var hasFocus = 0; var lastKeyPressCode; var config = { mouseDownOnSelect: false }; var select = $.Autocompleter.Select(options, input, selectCurrent, config); var blockSubmit; // prevent form submit in opera when selecting with return key $.browser.opera && $(input.form).bind("submit.autocomplete", function() { if (blockSubmit) { blockSubmit = false; return false; } }); // only opera doesn't trigger keydown multiple times while pressed, others don't work with keypress at all $input.bind(($.browser.opera ? "keypress" : "keydown") + ".autocomplete", function(event) { // track last key pressed lastKeyPressCode = event.keyCode; switch(event.keyCode) { case KEY.UP: event.preventDefault(); if ( select.visible() ) { select.prev(); } else { onChange(0, true); } break; case KEY.DOWN: event.preventDefault(); if ( select.visible() ) { select.next(); } else { onChange(0, true); } break; case KEY.PAGEUP: event.preventDefault(); if ( select.visible() ) { select.pageUp(); } else { onChange(0, true); } break; case KEY.PAGEDOWN: event.preventDefault(); if ( select.visible() ) { select.pageDown(); } else { onChange(0, true); } break; // matches also semicolon case options.multiple && $.trim(options.multipleSeparator) == "," && KEY.COMMA: case KEY.TAB: case KEY.RETURN: if( selectCurrent() ) { // stop default to prevent a form submit, Opera needs special handling event.preventDefault(); blockSubmit = true; return false; } break; case KEY.ESC: select.hide(); break; default: clearTimeout(timeout); timeout = setTimeout(onChange, options.delay); break; } }).focus(function(){ // track whether the field has focus, we shouldn't process any // results if the field no longer has focus hasFocus++; }).blur(function() { hasFocus = 0; if (!config.mouseDownOnSelect) { hideResults(); } }).click(function() { // show select when clicking in a focused field if ( hasFocus++ > 1 && !select.visible() ) { onChange(0, true); } }).bind("search", function() { // TODO why not just specifying both arguments? var fn = (arguments.length > 1) ? arguments[1] : null; function findValueCallback(q, data) { var result; if( data && data.length ) { for (var i=0; i < data.length; i++) { if( data[i].result.toLowerCase() == q.toLowerCase() ) { result = data[i]; break; } } } if( typeof fn == "function" ) fn(result); else $input.trigger("result", result && [result.data, result.value]); } $.each(trimWords($input.val()), function(i, value) { request(value, findValueCallback, findValueCallback); }); }).bind("flushCache", function() { cache.flush(); }).bind("setOptions", function() { $.extend(options, arguments[1]); // if we've updated the data, repopulate if ( "data" in arguments[1] ) cache.populate(); }).bind("unautocomplete", function() { select.unbind(); $input.unbind(); $(input.form).unbind(".autocomplete"); }); function selectCurrent() { var selected = select.selected(); if( !selected ) return false; var v = selected.result; previousValue = v; if ( options.multiple ) { var words = trimWords($input.val()); if ( words.length > 1 ) { v = words.slice(0, words.length - 1).join( options.multipleSeparator ) + options.multipleSeparator + v; } v += options.multipleSeparator; } $input.val(v); hideResultsNow(); $input.trigger("result", [selected.data, selected.value]); return true; } function onChange(crap, skipPrevCheck) { if( lastKeyPressCode == KEY.DEL ) { select.hide(); return; } var currentValue = $input.val(); if ( !skipPrevCheck && currentValue == previousValue ) return; previousValue = currentValue; currentValue = lastWord(currentValue); if ( currentValue.length >= options.minChars) { $input.addClass(options.loadingClass); if (!options.matchCase) currentValue = currentValue.toLowerCase(); request(currentValue, receiveData, hideResultsNow); } else { stopLoading(); select.hide(); } }; function trimWords(value) { if ( !value ) { return [""]; } var words = value.split( options.multipleSeparator ); var result = []; $.each(words, function(i, value) { if ( $.trim(value) ) result[i] = $.trim(value); }); return result; } function lastWord(value) { if ( !options.multiple ) return value; var words = trimWords(value); return words[words.length - 1]; } // fills in the input box w/the first match (assumed to be the best match) // q: the term entered // sValue: the first matching result function autoFill(q, sValue){ // autofill in the complete box w/the first match as long as the user hasn't entered in more data // if the last user key pressed was backspace, don't autofill if( options.autoFill && (lastWord($input.val()).toLowerCase() == q.toLowerCase()) && lastKeyPressCode != KEY.BACKSPACE ) { // fill in the value (keep the case the user has typed) $input.val($input.val() + sValue.substring(lastWord(previousValue).length)); // select the portion of the value not typed by the user (so the next character will erase) $.Autocompleter.Selection(input, previousValue.length, previousValue.length + sValue.length); } }; function hideResults() { clearTimeout(timeout); timeout = setTimeout(hideResultsNow, 200); }; function hideResultsNow() { var wasVisible = select.visible(); select.hide(); clearTimeout(timeout); stopLoading(); if (options.mustMatch) { // call search and run callback $input.search( function (result){ // if no value found, clear the input box if( !result ) { if (options.multiple) { var words = trimWords($input.val()).slice(0, -1); $input.val( words.join(options.multipleSeparator) + (words.length ? options.multipleSeparator : "") ); } else $input.val( "" ); } } ); } if (wasVisible) // position cursor at end of input field $.Autocompleter.Selection(input, input.value.length, input.value.length); }; function receiveData(q, data) { if ( data && data.length && hasFocus ) { stopLoading(); select.display(data, q); autoFill(q, data[0].value); select.show(); } else { hideResultsNow(); } }; function request(term, success, failure) { if (!options.matchCase) term = term.toLowerCase(); var data = cache.load(term); data = null; // Avoid buggy cache and go to Solr every time // recieve the cached data if (data && data.length) { success(term, data); // if an AJAX url has been supplied, try loading the data now } else if( (typeof options.url == "string") && (options.url.length > 0) ){ var extraParams = { timestamp: +new Date() }; $.each(options.extraParams, function(key, param) { extraParams[key] = typeof param == "function" ? param() : param; }); $.ajax({ // try to leverage ajaxQueue plugin to abort previous requests mode: "abort", // limit abortion to this input port: "autocomplete" + input.name, dataType: options.dataType, url: options.url, data: $.extend({ q: lastWord(term), limit: options.max }, extraParams), success: function(data) { var parsed = options.parse && options.parse(data) || parse(data); cache.add(term, parsed); success(term, parsed); } }); } else { // if we have a failure, we need to empty the list -- this prevents the the [TAB] key from selecting the last successful match select.emptyList(); failure(term); } }; function parse(data) { var parsed = []; var rows = data.split("\n"); for (var i=0; i < rows.length; i++) { var row = $.trim(rows[i]); if (row) { row = row.split("|"); parsed[parsed.length] = { data: row, value: row[0], result: options.formatResult && options.formatResult(row, row[0]) || row[0] }; } } return parsed; }; function stopLoading() { $input.removeClass(options.loadingClass); }; }; $.Autocompleter.defaults = { inputClass: "ac_input", resultsClass: "ac_results", loadingClass: "ac_loading", minChars: 1, delay: 400, matchCase: false, matchSubset: true, matchContains: false, cacheLength: 10, max: 100, mustMatch: false, extraParams: {}, selectFirst: false, formatItem: function(row) { return row[0]; }, formatMatch: null, autoFill: false, width: 0, multiple: false, multipleSeparator: ", ", highlight: function(value, term) { return value.replace(new RegExp("(?![^&;]+;)(?!<[^<>]*)(" + term.replace(/([\^\$\(\)\[\]\{\}\*\.\+\?\|\\])/gi, "\\$1") + ")(?![^<>]*>)(?![^&;]+;)", "gi"), "$1"); }, scroll: true, scrollHeight: 180 }; $.Autocompleter.Cache = function(options) { var data = {}; var length = 0; function matchSubset(s, sub) { if (!options.matchCase) s = s.toLowerCase(); var i = s.indexOf(sub); if (options.matchContains == "word"){ i = s.toLowerCase().search("\\b" + sub.toLowerCase()); } if (i == -1) return false; return i == 0 || options.matchContains; }; function add(q, value) { if (length > options.cacheLength){ flush(); } if (!data[q]){ length++; } data[q] = value; } function populate(){ if( !options.data ) return false; // track the matches var stMatchSets = {}, nullData = 0; // no url was specified, we need to adjust the cache length to make sure it fits the local data store if( !options.url ) options.cacheLength = 1; // track all options for minChars = 0 stMatchSets[""] = []; // loop through the array and create a lookup structure for ( var i = 0, ol = options.data.length; i < ol; i++ ) { var rawValue = options.data[i]; // if rawValue is a string, make an array otherwise just reference the array rawValue = (typeof rawValue == "string") ? [rawValue] : rawValue; var value = options.formatMatch(rawValue, i+1, options.data.length); if ( value === false ) continue; var firstChar = value.charAt(0).toLowerCase(); // if no lookup array for this character exists, look it up now if( !stMatchSets[firstChar] ) stMatchSets[firstChar] = []; // if the match is a string var row = { value: value, data: rawValue, result: options.formatResult && options.formatResult(rawValue) || value }; // push the current match into the set list stMatchSets[firstChar].push(row); // keep track of minChars zero items if ( nullData++ < options.max ) { stMatchSets[""].push(row); } }; // add the data items to the cache $.each(stMatchSets, function(i, value) { // increase the cache size options.cacheLength++; // add to the cache add(i, value); }); } // populate any existing data setTimeout(populate, 25); function flush(){ data = {}; length = 0; } return { flush: flush, add: add, populate: populate, load: function(q) { if (!options.cacheLength || !length) return null; /* * if dealing w/local data and matchContains than we must make sure * to loop through all the data collections looking for matches */ if( !options.url && options.matchContains ){ // track all matches var csub = []; // loop through all the data grids for matches for( var k in data ){ // don't search through the stMatchSets[""] (minChars: 0) cache // this prevents duplicates if( k.length > 0 ){ var c = data[k]; $.each(c, function(i, x) { // if we've got a match, add it to the array if (matchSubset(x.value, q)) { csub.push(x); } }); } } return csub; } else // if the exact item exists, use it if (data[q]){ return data[q]; } else if (options.matchSubset) { for (var i = q.length - 1; i >= options.minChars; i--) { var c = data[q.substr(0, i)]; if (c) { var csub = []; $.each(c, function(i, x) { if (matchSubset(x.value, q)) { csub[csub.length] = x; } }); return csub; } } } return null; } }; }; $.Autocompleter.Select = function (options, input, select, config) { var CLASSES = { ACTIVE: "ac_over" }; var listItems, active = -1, data, term = "", needsInit = true, element, list; // Create results function init() { if (!needsInit) return; element = $("
") .hide() .addClass(options.resultsClass) .css("position", "absolute") .appendTo(document.body); list = $("